
    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_67892d49edf3ab81b8d9e2cd.woff2')format("woff");}.ff1_c00000{font-family:ff1_c00000;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00000;src:url('chunks/assets/font_6f012478c1ff12ea34ef32eb.woff2')format("woff");}.ff2_c00000{font-family:ff2_c00000;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00000;src:url('chunks/assets/font_c609fb0f4b0e066e8669c860.woff2')format("woff");}.ff3_c00000{font-family:ff3_c00000;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00000;src:url('chunks/assets/font_bc78fc41b77d9e3ac923db5e.woff2')format("woff");}.ff4_c00000{font-family:ff4_c00000;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00000;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff5_c00000{font-family:ff5_c00000;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00000{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00000{vertical-align:0.000000px;}
.ls0_c00000{letter-spacing:-3.000000px;}
.ls1_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:-30.540000px;}
.ws1_c00000{word-spacing:-0.090000px;}
.ws2_c00000{word-spacing:0.000000px;}
._3_c00000{margin-left:-22.950000px;}
._2_c00000{margin-left:-20.070000px;}
._1_c00000{margin-left:-13.590000px;}
._0_c00000{width:6.480000px;}
.fc2_c00000{color:transparent;}
.fc1_c00000{color:rgb(128,128,128);}
.fc0_c00000{color:rgb(0,0,0);}
.fs3_c00000{font-size:48.000000px;}
.fs1_c00000{font-size:60.000000px;}
.fs2_c00000{font-size:90.000000px;}
.fs0_c00000{font-size:105.000000px;}
.y0_c00000{bottom:0.000000px;}
.y7_c00000{bottom:3.105000px;}
.y6_c00000{bottom:7.228363px;}
.y3_c00000{bottom:127.200000px;}
.y2_c00000{bottom:412.200000px;}
.y1_c00000{bottom:422.550000px;}
.y5_c00000{bottom:442.500000px;}
.y4_c00000{bottom:457.050000px;}
.h5_c00000{height:13.200074px;}
.h6_c00000{height:43.804688px;}
.h3_c00000{height:62.880000px;}
.h4_c00000{height:88.286133px;}
.h2_c00000{height:110.040000px;}
.h1_c00000{height:867.750000px;}
.h0_c00000{height:868.050000px;}
.w2_c00000{width:104.875500px;}
.w0_c00000{width:639.375000px;}
.w1_c00000{width:639.750000px;}
.x0_c00000{left:0.000000px;}
.x1_c00000{left:7.800000px;}
.x2_c00000{left:10.800000px;}
.x4_c00000{left:126.600000px;}
.x3_c00000{left:131.250000px;}
.x5_c00000{left:271.501740px;}
@media print{
.v0_c00000{vertical-align:0.000000pt;}
.ls0_c00000{letter-spacing:-2.666667pt;}
.ls1_c00000{letter-spacing:0.000000pt;}
.ws0_c00000{word-spacing:-27.146667pt;}
.ws1_c00000{word-spacing:-0.080000pt;}
.ws2_c00000{word-spacing:0.000000pt;}
._3_c00000{margin-left:-20.400000pt;}
._2_c00000{margin-left:-17.840000pt;}
._1_c00000{margin-left:-12.080000pt;}
._0_c00000{width:5.760000pt;}
.fs3_c00000{font-size:42.666667pt;}
.fs1_c00000{font-size:53.333333pt;}
.fs2_c00000{font-size:80.000000pt;}
.fs0_c00000{font-size:93.333333pt;}
.y0_c00000{bottom:0.000000pt;}
.y7_c00000{bottom:2.760000pt;}
.y6_c00000{bottom:6.425212pt;}
.y3_c00000{bottom:113.066667pt;}
.y2_c00000{bottom:366.400000pt;}
.y1_c00000{bottom:375.600000pt;}
.y5_c00000{bottom:393.333333pt;}
.y4_c00000{bottom:406.266667pt;}
.h5_c00000{height:11.733399pt;}
.h6_c00000{height:38.937500pt;}
.h3_c00000{height:55.893333pt;}
.h4_c00000{height:78.476562pt;}
.h2_c00000{height:97.813333pt;}
.h1_c00000{height:771.333333pt;}
.h0_c00000{height:771.600000pt;}
.w2_c00000{width:93.222667pt;}
.w0_c00000{width:568.333333pt;}
.w1_c00000{width:568.666667pt;}
.x0_c00000{left:0.000000pt;}
.x1_c00000{left:6.933333pt;}
.x2_c00000{left:9.600000pt;}
.x4_c00000{left:112.533333pt;}
.x3_c00000{left:116.666667pt;}
.x5_c00000{left:241.334880pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4bfe86344eeb63f49849d421.woff2')format("woff");}.ff1_c00001{font-family:ff1_c00001;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00001;src:url('chunks/assets/font_6320aae78dd1f8bad11fc859.woff2')format("woff");}.ff2_c00001{font-family:ff2_c00001;line-height:1.437000;font-style:normal;font-weight:normal;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_ef7d6f28cd0b7d092681a2ca.woff2')format("woff");}.ff3_c00001{font-family:ff3_c00001;line-height:1.437000;font-style:normal;font-weight:normal;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_7a127b078db633186f340c3c.woff2')format("woff");}.ff4_c00001{font-family:ff4_c00001;line-height:1.437000;font-style:normal;font-weight:normal;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_8b9d71a12ed7f2de81b36abe.woff2')format("woff");}.ff5_c00001{font-family:ff5_c00001;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00001;src:url('chunks/assets/font_9623a8284fd06d422efe20d3.woff2')format("woff");}.ff6_c00001{font-family:ff6_c00001;line-height:1.437000;font-style:normal;font-weight:normal;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_7005291ecf6930f4550c929b.woff2')format("woff");}.ff7_c00001{font-family:ff7_c00001;line-height:1.575000;font-style:normal;font-weight:normal;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_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff8_c00001{font-family:ff8_c00001;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_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);}
.m0_c00001{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.v0_c00001{vertical-align:0.000000px;}
.v1_c00001{vertical-align:10.800000px;}
.ls2_c00001{letter-spacing:-3.000000px;}
.ls1_c00001{letter-spacing:0.000000px;}
.ls0_c00001{letter-spacing:2.700000px;}
.ls3_c00001{letter-spacing:3.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:-44.040000px;}
.ws4_c00001{word-spacing:-39.018000px;}
.ws1_c00001{word-spacing:-33.600000px;}
.ws6_c00001{word-spacing:-30.540000px;}
.ws3_c00001{word-spacing:-16.623000px;}
.ws0_c00001{word-spacing:-13.776000px;}
.ws7_c00001{word-spacing:0.000000px;}
.ws5_c00001{word-spacing:210.540000px;}
._5_c00001{margin-left:-47.790000px;}
._6_c00001{margin-left:-29.400000px;}
._d_c00001{margin-left:-14.094000px;}
._c_c00001{margin-left:-8.721000px;}
._b_c00001{margin-left:-5.871000px;}
._8_c00001{margin-left:-3.885000px;}
._0_c00001{margin-left:-1.824000px;}
._a_c00001{width:1.692000px;}
._3_c00001{width:3.480000px;}
._9_c00001{width:4.794000px;}
._2_c00001{width:5.940000px;}
._1_c00001{width:7.140000px;}
._7_c00001{width:10.185000px;}
._4_c00001{width:28.770000px;}
.fc2_c00001{color:transparent;}
.fc1_c00001{color:rgb(128,128,128);}
.fc0_c00001{color:rgb(0,0,0);}
.fs0_c00001{font-size:24.000000px;}
.fs6_c00001{font-size:27.000000px;}
.fs7_c00001{font-size:48.000000px;}
.fs5_c00001{font-size:54.000000px;}
.fs4_c00001{font-size:57.000000px;}
.fs2_c00001{font-size:60.000000px;}
.fs3_c00001{font-size:84.000000px;}
.fs1_c00001{font-size:105.000000px;}
.y0_c00001{bottom:0.000000px;}
.yd_c00001{bottom:3.105000px;}
.yc_c00001{bottom:7.228355px;}
.yb_c00001{bottom:8.385000px;}
.ya_c00001{bottom:42.135000px;}
.y9_c00001{bottom:120.735000px;}
.y8_c00001{bottom:123.135000px;}
.y7_c00001{bottom:136.335000px;}
.y6_c00001{bottom:407.985000px;}
.y3_c00001{bottom:418.785000px;}
.y2_c00001{bottom:472.185000px;}
.y1_c00001{bottom:501.135000px;}
.y5_c00001{bottom:600.435000px;}
.y4_c00001{bottom:657.435000px;}
.h9_c00001{height:13.200074px;}
.h2_c00001{height:30.386719px;}
.ha_c00001{height:43.804688px;}
.h7_c00001{height:52.971680px;}
.h6_c00001{height:59.736000px;}
.h4_c00001{height:62.880000px;}
.h8_c00001{height:73.680000px;}
.h5_c00001{height:88.032000px;}
.h3_c00001{height:110.040000px;}
.h1_c00001{height:873.750000px;}
.h0_c00001{height:873.975000px;}
.w2_c00001{width:104.875500px;}
.w1_c00001{width:625.500000px;}
.w0_c00001{width:625.575000px;}
.x0_c00001{left:0.000000px;}
.x2_c00001{left:11.400000px;}
.x7_c00001{left:30.150000px;}
.x1_c00001{left:51.750000px;}
.x8_c00001{left:106.050000px;}
.xa_c00001{left:156.000000px;}
.x4_c00001{left:216.900000px;}
.x9_c00001{left:231.150000px;}
.x5_c00001{left:232.650000px;}
.x3_c00001{left:244.350000px;}
.x6_c00001{left:261.900000px;}
.xb_c00001{left:264.601730px;}
@media print{
.v0_c00001{vertical-align:0.000000pt;}
.v1_c00001{vertical-align:9.600000pt;}
.ls2_c00001{letter-spacing:-2.666667pt;}
.ls1_c00001{letter-spacing:0.000000pt;}
.ls0_c00001{letter-spacing:2.400000pt;}
.ls3_c00001{letter-spacing:2.666667pt;}
.ws2_c00001{word-spacing:-39.146667pt;}
.ws4_c00001{word-spacing:-34.682667pt;}
.ws1_c00001{word-spacing:-29.866667pt;}
.ws6_c00001{word-spacing:-27.146667pt;}
.ws3_c00001{word-spacing:-14.776000pt;}
.ws0_c00001{word-spacing:-12.245333pt;}
.ws7_c00001{word-spacing:0.000000pt;}
.ws5_c00001{word-spacing:187.146667pt;}
._5_c00001{margin-left:-42.480000pt;}
._6_c00001{margin-left:-26.133333pt;}
._d_c00001{margin-left:-12.528000pt;}
._c_c00001{margin-left:-7.752000pt;}
._b_c00001{margin-left:-5.218667pt;}
._8_c00001{margin-left:-3.453333pt;}
._0_c00001{margin-left:-1.621333pt;}
._a_c00001{width:1.504000pt;}
._3_c00001{width:3.093333pt;}
._9_c00001{width:4.261333pt;}
._2_c00001{width:5.280000pt;}
._1_c00001{width:6.346667pt;}
._7_c00001{width:9.053333pt;}
._4_c00001{width:25.573333pt;}
.fs0_c00001{font-size:21.333333pt;}
.fs6_c00001{font-size:24.000000pt;}
.fs7_c00001{font-size:42.666667pt;}
.fs5_c00001{font-size:48.000000pt;}
.fs4_c00001{font-size:50.666667pt;}
.fs2_c00001{font-size:53.333333pt;}
.fs3_c00001{font-size:74.666667pt;}
.fs1_c00001{font-size:93.333333pt;}
.y0_c00001{bottom:0.000000pt;}
.yd_c00001{bottom:2.760000pt;}
.yc_c00001{bottom:6.425204pt;}
.yb_c00001{bottom:7.453333pt;}
.ya_c00001{bottom:37.453333pt;}
.y9_c00001{bottom:107.320000pt;}
.y8_c00001{bottom:109.453333pt;}
.y7_c00001{bottom:121.186667pt;}
.y6_c00001{bottom:362.653333pt;}
.y3_c00001{bottom:372.253333pt;}
.y2_c00001{bottom:419.720000pt;}
.y1_c00001{bottom:445.453333pt;}
.y5_c00001{bottom:533.720000pt;}
.y4_c00001{bottom:584.386667pt;}
.h9_c00001{height:11.733399pt;}
.h2_c00001{height:27.010417pt;}
.ha_c00001{height:38.937500pt;}
.h7_c00001{height:47.085938pt;}
.h6_c00001{height:53.098667pt;}
.h4_c00001{height:55.893333pt;}
.h8_c00001{height:65.493333pt;}
.h5_c00001{height:78.250667pt;}
.h3_c00001{height:97.813333pt;}
.h1_c00001{height:776.666667pt;}
.h0_c00001{height:776.866667pt;}
.w2_c00001{width:93.222667pt;}
.w1_c00001{width:556.000000pt;}
.w0_c00001{width:556.066667pt;}
.x0_c00001{left:0.000000pt;}
.x2_c00001{left:10.133333pt;}
.x7_c00001{left:26.800000pt;}
.x1_c00001{left:46.000000pt;}
.x8_c00001{left:94.266667pt;}
.xa_c00001{left:138.666667pt;}
.x4_c00001{left:192.800000pt;}
.x9_c00001{left:205.466667pt;}
.x5_c00001{left:206.800000pt;}
.x3_c00001{left:217.200000pt;}
.x6_c00001{left:232.800000pt;}
.xb_c00001{left:235.201538pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e0f442403ba7a631573fe166.woff2')format("woff");}.ff1_c00002{font-family:ff1_c00002;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00002;src:url('chunks/assets/font_8ae695d03e7926198d56fefb.woff2')format("woff");}.ff2_c00002{font-family:ff2_c00002;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00002;src:url('chunks/assets/font_0e1cbb7d7821c7c5081469c4.woff2')format("woff");}.ff3_c00002{font-family:ff3_c00002;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00002;src:url('chunks/assets/font_7b8c3d2d7112a074985fa599.woff2')format("woff");}.ff4_c00002{font-family:ff4_c00002;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00002;src:url('chunks/assets/font_8ac5bfd4ee9543b490e384ac.woff2')format("woff");}.ff5_c00002{font-family:ff5_c00002;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00002;src:url('chunks/assets/font_c28017f0202969f576cf63c2.woff2')format("woff");}.ff6_c00002{font-family:ff6_c00002;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00002;src:url('chunks/assets/font_5b5ccc25356dbb88af6c631d.woff2')format("woff");}.ff7_c00002{font-family:ff7_c00002;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00002;src:url('chunks/assets/font_c6c09406af0cc2961f537bde.woff2')format("woff");}.ff8_c00002{font-family:ff8_c00002;line-height:1.012793;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00002;src:url('chunks/assets/font_cc783a18a12e3ecdd89f61e2.woff2')format("woff");}.ff9_c00002{font-family:ff9_c00002;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00002;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ffa_c00002{font-family:ffa_c00002;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00002{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00002{vertical-align:0.000000px;}
.v1_c00002{vertical-align:26.400000px;}
.v2_c00002{vertical-align:110.400000px;}
.ls3_c00002{letter-spacing:-3.000000px;}
.ls1_c00002{letter-spacing:0.000000px;}
.ls2_c00002{letter-spacing:3.000000px;}
.ls0_c00002{letter-spacing:9.000000px;}
.ls4_c00002{letter-spacing:33.000000px;}
.sc__c00002{text-shadow:none;}
.sc0_c00002{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00002{-webkit-text-stroke:0px transparent;}
.sc0_c00002{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00002{word-spacing:-87.834000px;}
.ws5_c00002{word-spacing:-80.370000px;}
.ws1_c00002{word-spacing:-50.196000px;}
.ws4_c00002{word-spacing:-48.492000px;}
.ws9_c00002{word-spacing:-44.040000px;}
.ws2_c00002{word-spacing:-40.756800px;}
.ws3_c00002{word-spacing:-38.193600px;}
.ws0_c00002{word-spacing:-19.620000px;}
.ws8_c00002{word-spacing:-19.560000px;}
.wsa_c00002{word-spacing:0.000000px;}
.ws7_c00002{word-spacing:77.670000px;}
._a_c00002{margin-left:-17.160000px;}
._5_c00002{margin-left:-12.915000px;}
._3_c00002{margin-left:-11.883000px;}
._7_c00002{margin-left:-10.704000px;}
._4_c00002{margin-left:-5.472000px;}
._6_c00002{margin-left:-1.905600px;}
._2_c00002{width:1.680000px;}
._8_c00002{width:2.952000px;}
._c_c00002{width:6.897600px;}
._d_c00002{width:8.064000px;}
._9_c00002{width:13.812000px;}
._0_c00002{width:22.140000px;}
._b_c00002{width:23.208000px;}
._1_c00002{width:825.240000px;}
.fc2_c00002{color:transparent;}
.fc1_c00002{color:rgb(128,128,128);}
.fc0_c00002{color:rgb(0,0,0);}
.fs1_c00002{font-size:24.000000px;}
.fs3_c00002{font-size:45.600000px;}
.fs9_c00002{font-size:48.000000px;}
.fs2_c00002{font-size:57.000000px;}
.fs0_c00002{font-size:60.000000px;}
.fs4_c00002{font-size:67.200000px;}
.fs5_c00002{font-size:84.000000px;}
.fs8_c00002{font-size:90.000000px;}
.fs6_c00002{font-size:105.000000px;}
.fs7_c00002{font-size:114.000000px;}
.y0_c00002{bottom:0.000000px;}
.y6_c00002{bottom:3.105000px;}
.y5_c00002{bottom:7.228369px;}
.y3_c00002{bottom:48.570000px;}
.y4_c00002{bottom:59.070000px;}
.y1_c00002{bottom:83.070000px;}
.y2_c00002{bottom:115.020000px;}
.h6_c00002{height:13.200073px;}
.h7_c00002{height:43.804688px;}
.h2_c00002{height:86.136000px;}
.h3_c00002{height:88.032000px;}
.h5_c00002{height:88.330078px;}
.h4_c00002{height:138.489844px;}
.h1_c00002{height:832.500000px;}
.h0_c00002{height:832.650000px;}
.w2_c00002{width:104.875500px;}
.w1_c00002{width:594.750000px;}
.w0_c00002{width:594.825000px;}
.x0_c00002{left:0.000000px;}
.x1_c00002{left:221.850000px;}
.x5_c00002{left:249.226730px;}
.x3_c00002{left:423.600000px;}
.x2_c00002{left:500.850000px;}
.x4_c00002{left:547.050000px;}
@media print{
.v0_c00002{vertical-align:0.000000pt;}
.v1_c00002{vertical-align:23.466667pt;}
.v2_c00002{vertical-align:98.133333pt;}
.ls3_c00002{letter-spacing:-2.666667pt;}
.ls1_c00002{letter-spacing:0.000000pt;}
.ls2_c00002{letter-spacing:2.666667pt;}
.ls0_c00002{letter-spacing:8.000000pt;}
.ls4_c00002{letter-spacing:29.333333pt;}
.ws6_c00002{word-spacing:-78.074667pt;}
.ws5_c00002{word-spacing:-71.440000pt;}
.ws1_c00002{word-spacing:-44.618667pt;}
.ws4_c00002{word-spacing:-43.104000pt;}
.ws9_c00002{word-spacing:-39.146667pt;}
.ws2_c00002{word-spacing:-36.228267pt;}
.ws3_c00002{word-spacing:-33.949867pt;}
.ws0_c00002{word-spacing:-17.440000pt;}
.ws8_c00002{word-spacing:-17.386667pt;}
.wsa_c00002{word-spacing:0.000000pt;}
.ws7_c00002{word-spacing:69.040000pt;}
._a_c00002{margin-left:-15.253333pt;}
._5_c00002{margin-left:-11.480000pt;}
._3_c00002{margin-left:-10.562667pt;}
._7_c00002{margin-left:-9.514667pt;}
._4_c00002{margin-left:-4.864000pt;}
._6_c00002{margin-left:-1.693867pt;}
._2_c00002{width:1.493333pt;}
._8_c00002{width:2.624000pt;}
._c_c00002{width:6.131200pt;}
._d_c00002{width:7.168000pt;}
._9_c00002{width:12.277333pt;}
._0_c00002{width:19.680000pt;}
._b_c00002{width:20.629333pt;}
._1_c00002{width:733.546667pt;}
.fs1_c00002{font-size:21.333333pt;}
.fs3_c00002{font-size:40.533333pt;}
.fs9_c00002{font-size:42.666667pt;}
.fs2_c00002{font-size:50.666667pt;}
.fs0_c00002{font-size:53.333333pt;}
.fs4_c00002{font-size:59.733333pt;}
.fs5_c00002{font-size:74.666667pt;}
.fs8_c00002{font-size:80.000000pt;}
.fs6_c00002{font-size:93.333333pt;}
.fs7_c00002{font-size:101.333333pt;}
.y0_c00002{bottom:0.000000pt;}
.y6_c00002{bottom:2.760000pt;}
.y5_c00002{bottom:6.425217pt;}
.y3_c00002{bottom:43.173333pt;}
.y4_c00002{bottom:52.506667pt;}
.y1_c00002{bottom:73.840000pt;}
.y2_c00002{bottom:102.240000pt;}
.h6_c00002{height:11.733399pt;}
.h7_c00002{height:38.937500pt;}
.h2_c00002{height:76.565333pt;}
.h3_c00002{height:78.250667pt;}
.h5_c00002{height:78.515625pt;}
.h4_c00002{height:123.102083pt;}
.h1_c00002{height:740.000000pt;}
.h0_c00002{height:740.133333pt;}
.w2_c00002{width:93.222667pt;}
.w1_c00002{width:528.666667pt;}
.w0_c00002{width:528.733333pt;}
.x0_c00002{left:0.000000pt;}
.x1_c00002{left:197.200000pt;}
.x5_c00002{left:221.534871pt;}
.x3_c00002{left:376.533333pt;}
.x2_c00002{left:445.200000pt;}
.x4_c00002{left:486.266667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff1_c00003{font-family:ff1_c00003;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00003{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00003{vertical-align:0.000000px;}
.ls0_c00003{letter-spacing:0.000000px;}
.sc__c00003{text-shadow:none;}
.sc0_c00003{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00003{-webkit-text-stroke:0px transparent;}
.sc0_c00003{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00003{word-spacing:0.000000px;}
.fc0_c00003{color:rgb(128,128,128);}
.fs0_c00003{font-size:48.000000px;}
.y0_c00003{bottom:0.000000px;}
.y2_c00003{bottom:3.105000px;}
.y1_c00003{bottom:7.228371px;}
.h2_c00003{height:13.200074px;}
.h3_c00003{height:43.804688px;}
.h0_c00003{height:820.275000px;}
.h1_c00003{height:820.500000px;}
.w2_c00003{width:104.875500px;}
.w0_c00003{width:591.600000px;}
.w1_c00003{width:591.750000px;}
.x0_c00003{left:0.000000px;}
.x1_c00003{left:247.614258px;}
@media print{
.v0_c00003{vertical-align:0.000000pt;}
.ls0_c00003{letter-spacing:0.000000pt;}
.ws0_c00003{word-spacing:0.000000pt;}
.fs0_c00003{font-size:42.666667pt;}
.y0_c00003{bottom:0.000000pt;}
.y2_c00003{bottom:2.760000pt;}
.y1_c00003{bottom:6.425219pt;}
.h2_c00003{height:11.733399pt;}
.h3_c00003{height:38.937500pt;}
.h0_c00003{height:729.133333pt;}
.h1_c00003{height:729.333333pt;}
.w2_c00003{width:93.222667pt;}
.w0_c00003{width:525.866667pt;}
.w1_c00003{width:526.000000pt;}
.x0_c00003{left:0.000000pt;}
.x1_c00003{left:220.101563pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f2bc1f405acd9b3fe350e964.woff2')format("woff");}.ff1_c00004{font-family:ff1_c00004;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00004;src:url('chunks/assets/font_d25f5bb59d3dee5628f5cb84.woff2')format("woff");}.ff2_c00004{font-family:ff2_c00004;line-height:1.012793;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00004;src:url('chunks/assets/font_de142681eb45dd0ef64b9ef4.woff2')format("woff");}.ff3_c00004{font-family:ff3_c00004;line-height:1.575000;font-style:normal;font-weight:normal;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_1d4f7b952a32088164604839.woff2')format("woff");}.ff4_c00004{font-family:ff4_c00004;line-height:1.575000;font-style:normal;font-weight:normal;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_5f22e6f441cf23d28499b915.woff2')format("woff");}.ff5_c00004{font-family:ff5_c00004;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00004;src:url('chunks/assets/font_130e501843253c3e0105d079.woff2')format("woff");}.ff6_c00004{font-family:ff6_c00004;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00004;src:url('chunks/assets/font_394bd4397da8edda54e79d40.woff2')format("woff");}.ff7_c00004{font-family:ff7_c00004;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00004;src:url('chunks/assets/font_158ce579f81f6ea9faa69af2.woff2')format("woff");}.ff8_c00004{font-family:ff8_c00004;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00004;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff9_c00004{font-family:ff9_c00004;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00004{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00004{vertical-align:-18.000000px;}
.v0_c00004{vertical-align:0.000000px;}
.ls3_c00004{letter-spacing:-6.000000px;}
.ls4_c00004{letter-spacing:-3.000000px;}
.ls1_c00004{letter-spacing:0.000000px;}
.ls0_c00004{letter-spacing:3.000000px;}
.ls2_c00004{letter-spacing:15.000000px;}
.sc__c00004{text-shadow:none;}
.sc0_c00004{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00004{-webkit-text-stroke:0px transparent;}
.sc0_c00004{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00004{word-spacing:-30.540000px;}
.ws0_c00004{word-spacing:-22.500000px;}
.ws1_c00004{word-spacing:-6.900000px;}
.ws4_c00004{word-spacing:0.000000px;}
.ws2_c00004{word-spacing:5.883000px;}
._21_c00004{margin-left:-47.187000px;}
._28_c00004{margin-left:-35.238000px;}
._20_c00004{margin-left:-33.915000px;}
._26_c00004{margin-left:-31.131000px;}
._23_c00004{margin-left:-28.455000px;}
._1f_c00004{margin-left:-20.100000px;}
._25_c00004{margin-left:-15.912000px;}
._27_c00004{margin-left:-11.481000px;}
._1c_c00004{margin-left:-10.233000px;}
._18_c00004{margin-left:-8.736000px;}
._17_c00004{margin-left:-6.570000px;}
._1e_c00004{margin-left:-5.313000px;}
._14_c00004{margin-left:-4.050000px;}
._9_c00004{margin-left:-2.856000px;}
._8_c00004{margin-left:-1.530000px;}
._15_c00004{width:1.440000px;}
._16_c00004{width:2.880000px;}
._19_c00004{width:4.971000px;}
._1a_c00004{width:6.213000px;}
._1b_c00004{width:7.440000px;}
._d_c00004{width:8.652000px;}
._29_c00004{width:10.140000px;}
._0_c00004{width:11.550000px;}
._1_c00004{width:13.020000px;}
._5_c00004{width:14.175000px;}
._2_c00004{width:15.645000px;}
._7_c00004{width:16.905000px;}
._4_c00004{width:18.270000px;}
._3_c00004{width:20.370000px;}
._13_c00004{width:21.396000px;}
._b_c00004{width:22.401000px;}
._10_c00004{width:24.225000px;}
._a_c00004{width:25.434000px;}
._11_c00004{width:27.132000px;}
._2a_c00004{width:30.870000px;}
._f_c00004{width:33.402000px;}
._22_c00004{width:47.460000px;}
._c_c00004{width:51.072000px;}
._e_c00004{width:53.271000px;}
._24_c00004{width:57.090000px;}
._12_c00004{width:61.560000px;}
._6_c00004{width:73.710000px;}
._1d_c00004{width:255.945000px;}
._2b_c00004{width:545.481000px;}
.fc2_c00004{color:transparent;}
.fc1_c00004{color:rgb(128,128,128);}
.fc0_c00004{color:rgb(0,0,0);}
.fs6_c00004{font-size:48.000000px;}
.fs2_c00004{font-size:57.000000px;}
.fs4_c00004{font-size:60.000000px;}
.fs3_c00004{font-size:90.000000px;}
.fs1_c00004{font-size:102.000000px;}
.fs0_c00004{font-size:105.000000px;}
.fs5_c00004{font-size:117.000000px;}
.y0_c00004{bottom:0.000000px;}
.yd_c00004{bottom:3.105000px;}
.yc_c00004{bottom:7.228371px;}
.yb_c00004{bottom:42.315000px;}
.ya_c00004{bottom:330.165000px;}
.y9_c00004{bottom:341.865000px;}
.y8_c00004{bottom:558.615000px;}
.y7_c00004{bottom:579.165000px;}
.y6_c00004{bottom:599.415000px;}
.y5_c00004{bottom:634.515000px;}
.y4_c00004{bottom:673.965000px;}
.y3_c00004{bottom:702.015000px;}
.y2_c00004{bottom:729.015000px;}
.y1_c00004{bottom:773.865000px;}
.h8_c00004{height:13.200074px;}
.h9_c00004{height:43.804688px;}
.h6_c00004{height:59.736000px;}
.h5_c00004{height:62.880000px;}
.h3_c00004{height:87.865430px;}
.h4_c00004{height:96.030000px;}
.h2_c00004{height:110.040000px;}
.h7_c00004{height:120.257563px;}
.h0_c00004{height:825.675000px;}
.h1_c00004{height:825.750000px;}
.w2_c00004{width:104.875500px;}
.w1_c00004{width:600.750000px;}
.w0_c00004{width:601.050000px;}
.x0_c00004{left:0.000000px;}
.x2_c00004{left:31.500000px;}
.x6_c00004{left:34.050000px;}
.xb_c00004{left:58.500000px;}
.x7_c00004{left:71.550000px;}
.x1_c00004{left:80.250000px;}
.x3_c00004{left:82.800000px;}
.x8_c00004{left:182.250000px;}
.x5_c00004{left:186.600000px;}
.x4_c00004{left:219.150000px;}
.xc_c00004{left:252.339249px;}
.xa_c00004{left:464.850000px;}
.x9_c00004{left:483.600000px;}
@media print{
.v1_c00004{vertical-align:-16.000000pt;}
.v0_c00004{vertical-align:0.000000pt;}
.ls3_c00004{letter-spacing:-5.333333pt;}
.ls4_c00004{letter-spacing:-2.666667pt;}
.ls1_c00004{letter-spacing:0.000000pt;}
.ls0_c00004{letter-spacing:2.666667pt;}
.ls2_c00004{letter-spacing:13.333333pt;}
.ws3_c00004{word-spacing:-27.146667pt;}
.ws0_c00004{word-spacing:-20.000000pt;}
.ws1_c00004{word-spacing:-6.133333pt;}
.ws4_c00004{word-spacing:0.000000pt;}
.ws2_c00004{word-spacing:5.229333pt;}
._21_c00004{margin-left:-41.944000pt;}
._28_c00004{margin-left:-31.322667pt;}
._20_c00004{margin-left:-30.146667pt;}
._26_c00004{margin-left:-27.672000pt;}
._23_c00004{margin-left:-25.293333pt;}
._1f_c00004{margin-left:-17.866667pt;}
._25_c00004{margin-left:-14.144000pt;}
._27_c00004{margin-left:-10.205333pt;}
._1c_c00004{margin-left:-9.096000pt;}
._18_c00004{margin-left:-7.765333pt;}
._17_c00004{margin-left:-5.840000pt;}
._1e_c00004{margin-left:-4.722667pt;}
._14_c00004{margin-left:-3.600000pt;}
._9_c00004{margin-left:-2.538667pt;}
._8_c00004{margin-left:-1.360000pt;}
._15_c00004{width:1.280000pt;}
._16_c00004{width:2.560000pt;}
._19_c00004{width:4.418667pt;}
._1a_c00004{width:5.522667pt;}
._1b_c00004{width:6.613333pt;}
._d_c00004{width:7.690667pt;}
._29_c00004{width:9.013333pt;}
._0_c00004{width:10.266667pt;}
._1_c00004{width:11.573333pt;}
._5_c00004{width:12.600000pt;}
._2_c00004{width:13.906667pt;}
._7_c00004{width:15.026667pt;}
._4_c00004{width:16.240000pt;}
._3_c00004{width:18.106667pt;}
._13_c00004{width:19.018667pt;}
._b_c00004{width:19.912000pt;}
._10_c00004{width:21.533333pt;}
._a_c00004{width:22.608000pt;}
._11_c00004{width:24.117333pt;}
._2a_c00004{width:27.440000pt;}
._f_c00004{width:29.690667pt;}
._22_c00004{width:42.186667pt;}
._c_c00004{width:45.397333pt;}
._e_c00004{width:47.352000pt;}
._24_c00004{width:50.746667pt;}
._12_c00004{width:54.720000pt;}
._6_c00004{width:65.520000pt;}
._1d_c00004{width:227.506667pt;}
._2b_c00004{width:484.872000pt;}
.fs6_c00004{font-size:42.666667pt;}
.fs2_c00004{font-size:50.666667pt;}
.fs4_c00004{font-size:53.333333pt;}
.fs3_c00004{font-size:80.000000pt;}
.fs1_c00004{font-size:90.666667pt;}
.fs0_c00004{font-size:93.333333pt;}
.fs5_c00004{font-size:104.000000pt;}
.y0_c00004{bottom:0.000000pt;}
.yd_c00004{bottom:2.760000pt;}
.yc_c00004{bottom:6.425219pt;}
.yb_c00004{bottom:37.613333pt;}
.ya_c00004{bottom:293.480000pt;}
.y9_c00004{bottom:303.880000pt;}
.y8_c00004{bottom:496.546667pt;}
.y7_c00004{bottom:514.813333pt;}
.y6_c00004{bottom:532.813333pt;}
.y5_c00004{bottom:564.013333pt;}
.y4_c00004{bottom:599.080000pt;}
.y3_c00004{bottom:624.013333pt;}
.y2_c00004{bottom:648.013333pt;}
.y1_c00004{bottom:687.880000pt;}
.h8_c00004{height:11.733399pt;}
.h9_c00004{height:38.937500pt;}
.h6_c00004{height:53.098667pt;}
.h5_c00004{height:55.893333pt;}
.h3_c00004{height:78.102604pt;}
.h4_c00004{height:85.360000pt;}
.h2_c00004{height:97.813333pt;}
.h7_c00004{height:106.895612pt;}
.h0_c00004{height:733.933333pt;}
.h1_c00004{height:734.000000pt;}
.w2_c00004{width:93.222667pt;}
.w1_c00004{width:534.000000pt;}
.w0_c00004{width:534.266667pt;}
.x0_c00004{left:0.000000pt;}
.x2_c00004{left:28.000000pt;}
.x6_c00004{left:30.266667pt;}
.xb_c00004{left:52.000000pt;}
.x7_c00004{left:63.600000pt;}
.x1_c00004{left:71.333333pt;}
.x3_c00004{left:73.600000pt;}
.x8_c00004{left:162.000000pt;}
.x5_c00004{left:165.866667pt;}
.x4_c00004{left:194.800000pt;}
.xc_c00004{left:224.301554pt;}
.xa_c00004{left:413.200000pt;}
.x9_c00004{left:429.866667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_55df0fe315cc581c03b1e0e9.woff2')format("woff");}.ff1_c00005{font-family:ff1_c00005;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00005;src:url('chunks/assets/font_110a95b34eeb5c8f83bc6320.woff2')format("woff");}.ff2_c00005{font-family:ff2_c00005;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00005;src:url('chunks/assets/font_6bf119939e5d686ae65fa7c1.woff2')format("woff");}.ff3_c00005{font-family:ff3_c00005;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00005;src:url('chunks/assets/font_e7bfd42e3e7b08b05ed816b5.woff2')format("woff");}.ff4_c00005{font-family:ff4_c00005;line-height:1.012793;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00005;src:url('chunks/assets/font_37f291a2511072fe604b1d16.woff2')format("woff");}.ff5_c00005{font-family:ff5_c00005;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00005;src:url('chunks/assets/font_809ccbe3300b98a0d875d989.woff2')format("woff");}.ff6_c00005{font-family:ff6_c00005;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00005;src:url('chunks/assets/font_54a85365bbcf50c3571a2f46.woff2')format("woff");}.ff7_c00005{font-family:ff7_c00005;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00005;src:url('chunks/assets/font_730c3c48e6b0bf20cf213f9b.woff2')format("woff");}.ff8_c00005{font-family:ff8_c00005;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00005;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff9_c00005{font-family:ff9_c00005;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00005{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00005{vertical-align:0.000000px;}
.v1_c00005{vertical-align:78.600000px;}
.ls8_c00005{letter-spacing:-6.000000px;}
.ls3_c00005{letter-spacing:-3.000000px;}
.ls5_c00005{letter-spacing:0.000000px;}
.ls4_c00005{letter-spacing:3.000000px;}
.ls6_c00005{letter-spacing:6.000000px;}
.ls0_c00005{letter-spacing:10.500000px;}
.ls2_c00005{letter-spacing:12.288000px;}
.ls1_c00005{letter-spacing:46.263000px;}
.ls7_c00005{letter-spacing:258.000000px;}
.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;}
}
.ws8_c00005{word-spacing:-25.095000px;}
.ws5_c00005{word-spacing:-22.500000px;}
.ws6_c00005{word-spacing:-18.084000px;}
.ws4_c00005{word-spacing:-16.983000px;}
.ws1_c00005{word-spacing:-16.623000px;}
.ws2_c00005{word-spacing:-16.500000px;}
.ws3_c00005{word-spacing:-11.784000px;}
.wsa_c00005{word-spacing:0.000000px;}
.ws9_c00005{word-spacing:5.883000px;}
.ws0_c00005{word-spacing:17.088000px;}
.ws7_c00005{word-spacing:502.872000px;}
._48_c00005{margin-left:-270.228000px;}
._49_c00005{margin-left:-261.072000px;}
._47_c00005{margin-left:-243.321000px;}
._46_c00005{margin-left:-38.400000px;}
._44_c00005{margin-left:-33.495000px;}
._1f_c00005{margin-left:-32.424000px;}
._18_c00005{margin-left:-31.140000px;}
._21_c00005{margin-left:-30.072000px;}
._13_c00005{margin-left:-26.505000px;}
._35_c00005{margin-left:-24.396000px;}
._8_c00005{margin-left:-22.800000px;}
._36_c00005{margin-left:-20.907000px;}
._12_c00005{margin-left:-19.152000px;}
._15_c00005{margin-left:-17.019000px;}
._9_c00005{margin-left:-15.732000px;}
._f_c00005{margin-left:-14.250000px;}
._3_c00005{margin-left:-12.456000px;}
._d_c00005{margin-left:-11.118000px;}
._37_c00005{margin-left:-9.957000px;}
._11_c00005{margin-left:-8.517000px;}
._c_c00005{margin-left:-7.452000px;}
._b_c00005{margin-left:-6.318000px;}
._a_c00005{margin-left:-4.869000px;}
._16_c00005{margin-left:-3.846000px;}
._5_c00005{margin-left:-2.268000px;}
._4_c00005{margin-left:-1.008000px;}
._14_c00005{width:1.653000px;}
._1c_c00005{width:3.024000px;}
._0_c00005{width:4.956000px;}
._2d_c00005{width:6.000000px;}
._25_c00005{width:7.008000px;}
._10_c00005{width:8.265000px;}
._2_c00005{width:10.332000px;}
._29_c00005{width:11.520000px;}
._27_c00005{width:13.236000px;}
._1b_c00005{width:16.062000px;}
._26_c00005{width:17.928000px;}
._1a_c00005{width:21.021000px;}
._2c_c00005{width:23.916000px;}
._1_c00005{width:27.720000px;}
._23_c00005{width:29.295000px;}
._45_c00005{width:30.450000px;}
._41_c00005{width:35.478000px;}
._17_c00005{width:39.852000px;}
._19_c00005{width:46.797000px;}
._3a_c00005{width:48.036000px;}
._34_c00005{width:51.948000px;}
._30_c00005{width:53.088000px;}
._22_c00005{width:56.364000px;}
._1d_c00005{width:60.822000px;}
._3d_c00005{width:62.829000px;}
._7_c00005{width:78.450000px;}
._43_c00005{width:79.644000px;}
._31_c00005{width:88.188000px;}
._1e_c00005{width:92.466000px;}
._e_c00005{width:99.180000px;}
._2f_c00005{width:101.175000px;}
._33_c00005{width:103.668000px;}
._3f_c00005{width:114.894000px;}
._20_c00005{width:116.928000px;}
._42_c00005{width:128.022000px;}
._28_c00005{width:137.304000px;}
._32_c00005{width:161.700000px;}
._38_c00005{width:166.560000px;}
._3b_c00005{width:176.343000px;}
._2a_c00005{width:182.604000px;}
._2b_c00005{width:193.704000px;}
._2e_c00005{width:213.168000px;}
._3e_c00005{width:219.945000px;}
._3c_c00005{width:297.927000px;}
._40_c00005{width:367.992000px;}
._39_c00005{width:386.637000px;}
._4b_c00005{width:497.505000px;}
._6_c00005{width:583.620000px;}
._4a_c00005{width:606.183000px;}
._24_c00005{width:787.038000px;}
.fc2_c00005{color:transparent;}
.fc1_c00005{color:rgb(128,128,128);}
.fc0_c00005{color:rgb(0,0,0);}
.fs3_c00005{font-size:24.000000px;}
.fs4_c00005{font-size:27.000000px;}
.fs9_c00005{font-size:48.000000px;}
.fs6_c00005{font-size:51.000000px;}
.fs2_c00005{font-size:54.000000px;}
.fs1_c00005{font-size:57.000000px;}
.fs0_c00005{font-size:84.000000px;}
.fs7_c00005{font-size:90.000000px;}
.fs5_c00005{font-size:105.000000px;}
.fs8_c00005{font-size:117.000000px;}
.y0_c00005{bottom:0.000000px;}
.y14_c00005{bottom:3.105000px;}
.y13_c00005{bottom:7.228363px;}
.y12_c00005{bottom:28.650000px;}
.y11_c00005{bottom:57.600000px;}
.y10_c00005{bottom:466.350000px;}
.yf_c00005{bottom:492.300000px;}
.ye_c00005{bottom:527.400000px;}
.yd_c00005{bottom:547.050000px;}
.yc_c00005{bottom:556.200000px;}
.yb_c00005{bottom:578.700000px;}
.ya_c00005{bottom:584.250000px;}
.y9_c00005{bottom:618.300000px;}
.y6_c00005{bottom:635.400000px;}
.y5_c00005{bottom:652.950000px;}
.y8_c00005{bottom:667.500000px;}
.y4_c00005{bottom:687.450000px;}
.y7_c00005{bottom:695.850000px;}
.y3_c00005{bottom:703.650000px;}
.y1_c00005{bottom:709.350000px;}
.y2_c00005{bottom:718.200000px;}
.ha_c00005{height:13.200074px;}
.h7_c00005{height:25.152000px;}
.h4_c00005{height:30.386719px;}
.hb_c00005{height:43.804688px;}
.h3_c00005{height:59.736000px;}
.h5_c00005{height:88.032000px;}
.h8_c00005{height:88.330078px;}
.h6_c00005{height:110.040000px;}
.h9_c00005{height:120.257563px;}
.h2_c00005{height:138.336000px;}
.h1_c00005{height:827.250000px;}
.h0_c00005{height:827.550000px;}
.w2_c00005{width:104.875500px;}
.w1_c00005{width:609.750000px;}
.w0_c00005{width:609.900000px;}
.x0_c00005{left:0.000000px;}
.x1_c00005{left:34.800000px;}
.xd_c00005{left:69.150000px;}
.xb_c00005{left:72.900000px;}
.xa_c00005{left:77.700000px;}
.x9_c00005{left:99.600000px;}
.xe_c00005{left:106.350000px;}
.x12_c00005{left:147.900000px;}
.x10_c00005{left:161.100000px;}
.xc_c00005{left:172.950000px;}
.x3_c00005{left:207.300000px;}
.x6_c00005{left:213.000000px;}
.x4_c00005{left:224.850000px;}
.x2_c00005{left:239.250000px;}
.x13_c00005{left:256.764267px;}
.x5_c00005{left:287.850000px;}
.x11_c00005{left:322.350000px;}
.xf_c00005{left:428.400000px;}
.x8_c00005{left:507.900000px;}
.x7_c00005{left:511.650000px;}
@media print{
.v0_c00005{vertical-align:0.000000pt;}
.v1_c00005{vertical-align:69.866667pt;}
.ls8_c00005{letter-spacing:-5.333333pt;}
.ls3_c00005{letter-spacing:-2.666667pt;}
.ls5_c00005{letter-spacing:0.000000pt;}
.ls4_c00005{letter-spacing:2.666667pt;}
.ls6_c00005{letter-spacing:5.333333pt;}
.ls0_c00005{letter-spacing:9.333333pt;}
.ls2_c00005{letter-spacing:10.922667pt;}
.ls1_c00005{letter-spacing:41.122667pt;}
.ls7_c00005{letter-spacing:229.333333pt;}
.ws8_c00005{word-spacing:-22.306667pt;}
.ws5_c00005{word-spacing:-20.000000pt;}
.ws6_c00005{word-spacing:-16.074667pt;}
.ws4_c00005{word-spacing:-15.096000pt;}
.ws1_c00005{word-spacing:-14.776000pt;}
.ws2_c00005{word-spacing:-14.666667pt;}
.ws3_c00005{word-spacing:-10.474667pt;}
.wsa_c00005{word-spacing:0.000000pt;}
.ws9_c00005{word-spacing:5.229333pt;}
.ws0_c00005{word-spacing:15.189333pt;}
.ws7_c00005{word-spacing:446.997333pt;}
._48_c00005{margin-left:-240.202667pt;}
._49_c00005{margin-left:-232.064000pt;}
._47_c00005{margin-left:-216.285333pt;}
._46_c00005{margin-left:-34.133333pt;}
._44_c00005{margin-left:-29.773333pt;}
._1f_c00005{margin-left:-28.821333pt;}
._18_c00005{margin-left:-27.680000pt;}
._21_c00005{margin-left:-26.730667pt;}
._13_c00005{margin-left:-23.560000pt;}
._35_c00005{margin-left:-21.685333pt;}
._8_c00005{margin-left:-20.266667pt;}
._36_c00005{margin-left:-18.584000pt;}
._12_c00005{margin-left:-17.024000pt;}
._15_c00005{margin-left:-15.128000pt;}
._9_c00005{margin-left:-13.984000pt;}
._f_c00005{margin-left:-12.666667pt;}
._3_c00005{margin-left:-11.072000pt;}
._d_c00005{margin-left:-9.882667pt;}
._37_c00005{margin-left:-8.850667pt;}
._11_c00005{margin-left:-7.570667pt;}
._c_c00005{margin-left:-6.624000pt;}
._b_c00005{margin-left:-5.616000pt;}
._a_c00005{margin-left:-4.328000pt;}
._16_c00005{margin-left:-3.418667pt;}
._5_c00005{margin-left:-2.016000pt;}
._4_c00005{margin-left:-0.896000pt;}
._14_c00005{width:1.469333pt;}
._1c_c00005{width:2.688000pt;}
._0_c00005{width:4.405333pt;}
._2d_c00005{width:5.333333pt;}
._25_c00005{width:6.229333pt;}
._10_c00005{width:7.346667pt;}
._2_c00005{width:9.184000pt;}
._29_c00005{width:10.240000pt;}
._27_c00005{width:11.765333pt;}
._1b_c00005{width:14.277333pt;}
._26_c00005{width:15.936000pt;}
._1a_c00005{width:18.685333pt;}
._2c_c00005{width:21.258667pt;}
._1_c00005{width:24.640000pt;}
._23_c00005{width:26.040000pt;}
._45_c00005{width:27.066667pt;}
._41_c00005{width:31.536000pt;}
._17_c00005{width:35.424000pt;}
._19_c00005{width:41.597333pt;}
._3a_c00005{width:42.698667pt;}
._34_c00005{width:46.176000pt;}
._30_c00005{width:47.189333pt;}
._22_c00005{width:50.101333pt;}
._1d_c00005{width:54.064000pt;}
._3d_c00005{width:55.848000pt;}
._7_c00005{width:69.733333pt;}
._43_c00005{width:70.794667pt;}
._31_c00005{width:78.389333pt;}
._1e_c00005{width:82.192000pt;}
._e_c00005{width:88.160000pt;}
._2f_c00005{width:89.933333pt;}
._33_c00005{width:92.149333pt;}
._3f_c00005{width:102.128000pt;}
._20_c00005{width:103.936000pt;}
._42_c00005{width:113.797333pt;}
._28_c00005{width:122.048000pt;}
._32_c00005{width:143.733333pt;}
._38_c00005{width:148.053333pt;}
._3b_c00005{width:156.749333pt;}
._2a_c00005{width:162.314667pt;}
._2b_c00005{width:172.181333pt;}
._2e_c00005{width:189.482667pt;}
._3e_c00005{width:195.506667pt;}
._3c_c00005{width:264.824000pt;}
._40_c00005{width:327.104000pt;}
._39_c00005{width:343.677333pt;}
._4b_c00005{width:442.226667pt;}
._6_c00005{width:518.773333pt;}
._4a_c00005{width:538.829333pt;}
._24_c00005{width:699.589333pt;}
.fs3_c00005{font-size:21.333333pt;}
.fs4_c00005{font-size:24.000000pt;}
.fs9_c00005{font-size:42.666667pt;}
.fs6_c00005{font-size:45.333333pt;}
.fs2_c00005{font-size:48.000000pt;}
.fs1_c00005{font-size:50.666667pt;}
.fs0_c00005{font-size:74.666667pt;}
.fs7_c00005{font-size:80.000000pt;}
.fs5_c00005{font-size:93.333333pt;}
.fs8_c00005{font-size:104.000000pt;}
.y0_c00005{bottom:0.000000pt;}
.y14_c00005{bottom:2.760000pt;}
.y13_c00005{bottom:6.425212pt;}
.y12_c00005{bottom:25.466667pt;}
.y11_c00005{bottom:51.200000pt;}
.y10_c00005{bottom:414.533333pt;}
.yf_c00005{bottom:437.600000pt;}
.ye_c00005{bottom:468.800000pt;}
.yd_c00005{bottom:486.266667pt;}
.yc_c00005{bottom:494.400000pt;}
.yb_c00005{bottom:514.400000pt;}
.ya_c00005{bottom:519.333333pt;}
.y9_c00005{bottom:549.600000pt;}
.y6_c00005{bottom:564.800000pt;}
.y5_c00005{bottom:580.400000pt;}
.y8_c00005{bottom:593.333333pt;}
.y4_c00005{bottom:611.066667pt;}
.y7_c00005{bottom:618.533333pt;}
.y3_c00005{bottom:625.466667pt;}
.y1_c00005{bottom:630.533333pt;}
.y2_c00005{bottom:638.400000pt;}
.ha_c00005{height:11.733399pt;}
.h7_c00005{height:22.357333pt;}
.h4_c00005{height:27.010417pt;}
.hb_c00005{height:38.937500pt;}
.h3_c00005{height:53.098667pt;}
.h5_c00005{height:78.250667pt;}
.h8_c00005{height:78.515625pt;}
.h6_c00005{height:97.813333pt;}
.h9_c00005{height:106.895612pt;}
.h2_c00005{height:122.965333pt;}
.h1_c00005{height:735.333333pt;}
.h0_c00005{height:735.600000pt;}
.w2_c00005{width:93.222667pt;}
.w1_c00005{width:542.000000pt;}
.w0_c00005{width:542.133333pt;}
.x0_c00005{left:0.000000pt;}
.x1_c00005{left:30.933333pt;}
.xd_c00005{left:61.466667pt;}
.xb_c00005{left:64.800000pt;}
.xa_c00005{left:69.066667pt;}
.x9_c00005{left:88.533333pt;}
.xe_c00005{left:94.533333pt;}
.x12_c00005{left:131.466667pt;}
.x10_c00005{left:143.200000pt;}
.xc_c00005{left:153.733333pt;}
.x3_c00005{left:184.266667pt;}
.x6_c00005{left:189.333333pt;}
.x4_c00005{left:199.866667pt;}
.x2_c00005{left:212.666667pt;}
.x13_c00005{left:228.234904pt;}
.x5_c00005{left:255.866667pt;}
.x11_c00005{left:286.533333pt;}
.xf_c00005{left:380.800000pt;}
.x8_c00005{left:451.466667pt;}
.x7_c00005{left:454.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_163dd4e4ba7c6ec47b593a9e.woff2')format("woff");}.ff1_c00006{font-family:ff1_c00006;line-height:1.437000;font-style:normal;font-weight:normal;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_cc783a18a12e3ecdd89f61e2.woff2')format("woff");}.ff2_c00006{font-family:ff2_c00006;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00006;src:url('chunks/assets/font_c9f039269a6f17fe682908d6.woff2')format("woff");}.ff3_c00006{font-family:ff3_c00006;line-height:1.437000;font-style:normal;font-weight:normal;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_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff4_c00006{font-family:ff4_c00006;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00006{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00006{vertical-align:0.000000px;}
.ls2_c00006{letter-spacing:-3.000000px;}
.ls3_c00006{letter-spacing:0.000000px;}
.ls1_c00006{letter-spacing:3.000000px;}
.ls0_c00006{letter-spacing:15.600000px;}
.sc__c00006{text-shadow:none;}
.sc0_c00006{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00006{-webkit-text-stroke:0px transparent;}
.sc0_c00006{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00006{word-spacing:-18.084000px;}
.ws1_c00006{word-spacing:0.000000px;}
._d_c00006{margin-left:-24.024000px;}
._3_c00006{margin-left:-15.576000px;}
._18_c00006{margin-left:-14.328000px;}
._5_c00006{margin-left:-9.900000px;}
._4_c00006{margin-left:-8.712000px;}
._b_c00006{margin-left:-7.308000px;}
._2_c00006{margin-left:-5.676000px;}
._10_c00006{margin-left:-4.488000px;}
._0_c00006{margin-left:-3.168000px;}
._1_c00006{margin-left:-1.980000px;}
._a_c00006{width:1.596000px;}
._c_c00006{width:3.276000px;}
._11_c00006{width:4.788000px;}
._12_c00006{width:5.880000px;}
._8_c00006{width:6.972000px;}
._7_c00006{width:7.980000px;}
._9_c00006{width:9.408000px;}
._6_c00006{width:10.500000px;}
._13_c00006{width:11.796000px;}
._14_c00006{width:13.752000px;}
._17_c00006{width:14.904000px;}
._16_c00006{width:16.968000px;}
._15_c00006{width:20.664000px;}
._19_c00006{width:24.948000px;}
._f_c00006{width:39.780000px;}
._e_c00006{width:266.952000px;}
._1a_c00006{width:464.628000px;}
.fc2_c00006{color:transparent;}
.fc1_c00006{color:rgb(128,128,128);}
.fc0_c00006{color:rgb(0,0,0);}
.fs4_c00006{font-size:48.000000px;}
.fs3_c00006{font-size:54.000000px;}
.fs1_c00006{font-size:84.000000px;}
.fs2_c00006{font-size:90.000000px;}
.fs0_c00006{font-size:132.000000px;}
.y0_c00006{bottom:0.000000px;}
.y1e_c00006{bottom:3.105000px;}
.y1d_c00006{bottom:7.228369px;}
.y1c_c00006{bottom:64.020000px;}
.y1b_c00006{bottom:87.720000px;}
.y1a_c00006{bottom:112.770000px;}
.y19_c00006{bottom:137.670000px;}
.y18_c00006{bottom:161.970000px;}
.y17_c00006{bottom:186.570000px;}
.y16_c00006{bottom:211.320000px;}
.y15_c00006{bottom:236.220000px;}
.y14_c00006{bottom:260.520000px;}
.y13_c00006{bottom:286.470000px;}
.y12_c00006{bottom:310.170000px;}
.y11_c00006{bottom:334.020000px;}
.y10_c00006{bottom:358.320000px;}
.yf_c00006{bottom:383.070000px;}
.ye_c00006{bottom:408.420000px;}
.yd_c00006{bottom:432.270000px;}
.yc_c00006{bottom:455.970000px;}
.yb_c00006{bottom:480.570000px;}
.ya_c00006{bottom:505.470000px;}
.y9_c00006{bottom:529.170000px;}
.y8_c00006{bottom:554.220000px;}
.y7_c00006{bottom:579.870000px;}
.y6_c00006{bottom:604.770000px;}
.y5_c00006{bottom:629.070000px;}
.y4_c00006{bottom:653.370000px;}
.y3_c00006{bottom:678.720000px;}
.y2_c00006{bottom:702.720000px;}
.y1_c00006{bottom:767.820000px;}
.h5_c00006{height:13.200073px;}
.h6_c00006{height:43.804688px;}
.h3_c00006{height:88.032000px;}
.h4_c00006{height:88.330078px;}
.h2_c00006{height:138.336000px;}
.h1_c00006{height:832.500000px;}
.h0_c00006{height:832.650000px;}
.w2_c00006{width:104.875500px;}
.w0_c00006{width:606.450000px;}
.w1_c00006{width:606.750000px;}
.x0_c00006{left:0.000000px;}
.x7_c00006{left:38.550000px;}
.x6_c00006{left:39.600000px;}
.x9_c00006{left:40.800000px;}
.xa_c00006{left:41.850000px;}
.x8_c00006{left:42.900000px;}
.x3_c00006{left:66.750000px;}
.x1_c00006{left:128.250000px;}
.x2_c00006{left:156.900000px;}
.x5_c00006{left:165.000000px;}
.x4_c00006{left:166.650000px;}
.xc_c00006{left:255.039230px;}
.xb_c00006{left:348.000000px;}
@media print{
.v0_c00006{vertical-align:0.000000pt;}
.ls2_c00006{letter-spacing:-2.666667pt;}
.ls3_c00006{letter-spacing:0.000000pt;}
.ls1_c00006{letter-spacing:2.666667pt;}
.ls0_c00006{letter-spacing:13.866667pt;}
.ws0_c00006{word-spacing:-16.074667pt;}
.ws1_c00006{word-spacing:0.000000pt;}
._d_c00006{margin-left:-21.354667pt;}
._3_c00006{margin-left:-13.845333pt;}
._18_c00006{margin-left:-12.736000pt;}
._5_c00006{margin-left:-8.800000pt;}
._4_c00006{margin-left:-7.744000pt;}
._b_c00006{margin-left:-6.496000pt;}
._2_c00006{margin-left:-5.045333pt;}
._10_c00006{margin-left:-3.989333pt;}
._0_c00006{margin-left:-2.816000pt;}
._1_c00006{margin-left:-1.760000pt;}
._a_c00006{width:1.418667pt;}
._c_c00006{width:2.912000pt;}
._11_c00006{width:4.256000pt;}
._12_c00006{width:5.226667pt;}
._8_c00006{width:6.197333pt;}
._7_c00006{width:7.093333pt;}
._9_c00006{width:8.362667pt;}
._6_c00006{width:9.333333pt;}
._13_c00006{width:10.485333pt;}
._14_c00006{width:12.224000pt;}
._17_c00006{width:13.248000pt;}
._16_c00006{width:15.082667pt;}
._15_c00006{width:18.368000pt;}
._19_c00006{width:22.176000pt;}
._f_c00006{width:35.360000pt;}
._e_c00006{width:237.290667pt;}
._1a_c00006{width:413.002667pt;}
.fs4_c00006{font-size:42.666667pt;}
.fs3_c00006{font-size:48.000000pt;}
.fs1_c00006{font-size:74.666667pt;}
.fs2_c00006{font-size:80.000000pt;}
.fs0_c00006{font-size:117.333333pt;}
.y0_c00006{bottom:0.000000pt;}
.y1e_c00006{bottom:2.760000pt;}
.y1d_c00006{bottom:6.425217pt;}
.y1c_c00006{bottom:56.906667pt;}
.y1b_c00006{bottom:77.973333pt;}
.y1a_c00006{bottom:100.240000pt;}
.y19_c00006{bottom:122.373333pt;}
.y18_c00006{bottom:143.973333pt;}
.y17_c00006{bottom:165.840000pt;}
.y16_c00006{bottom:187.840000pt;}
.y15_c00006{bottom:209.973333pt;}
.y14_c00006{bottom:231.573333pt;}
.y13_c00006{bottom:254.640000pt;}
.y12_c00006{bottom:275.706667pt;}
.y11_c00006{bottom:296.906667pt;}
.y10_c00006{bottom:318.506667pt;}
.yf_c00006{bottom:340.506667pt;}
.ye_c00006{bottom:363.040000pt;}
.yd_c00006{bottom:384.240000pt;}
.yc_c00006{bottom:405.306667pt;}
.yb_c00006{bottom:427.173333pt;}
.ya_c00006{bottom:449.306667pt;}
.y9_c00006{bottom:470.373333pt;}
.y8_c00006{bottom:492.640000pt;}
.y7_c00006{bottom:515.440000pt;}
.y6_c00006{bottom:537.573333pt;}
.y5_c00006{bottom:559.173333pt;}
.y4_c00006{bottom:580.773333pt;}
.y3_c00006{bottom:603.306667pt;}
.y2_c00006{bottom:624.640000pt;}
.y1_c00006{bottom:682.506667pt;}
.h5_c00006{height:11.733399pt;}
.h6_c00006{height:38.937500pt;}
.h3_c00006{height:78.250667pt;}
.h4_c00006{height:78.515625pt;}
.h2_c00006{height:122.965333pt;}
.h1_c00006{height:740.000000pt;}
.h0_c00006{height:740.133333pt;}
.w2_c00006{width:93.222667pt;}
.w0_c00006{width:539.066667pt;}
.w1_c00006{width:539.333333pt;}
.x0_c00006{left:0.000000pt;}
.x7_c00006{left:34.266667pt;}
.x6_c00006{left:35.200000pt;}
.x9_c00006{left:36.266667pt;}
.xa_c00006{left:37.200000pt;}
.x8_c00006{left:38.133333pt;}
.x3_c00006{left:59.333333pt;}
.x1_c00006{left:114.000000pt;}
.x2_c00006{left:139.466667pt;}
.x5_c00006{left:146.666667pt;}
.x4_c00006{left:148.133333pt;}
.xc_c00006{left:226.701538pt;}
.xb_c00006{left:309.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_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_c64fbedfa4f514efa80774ca.woff2')format("woff");}.ff1_c00007{font-family:ff1_c00007;line-height:1.575000;font-style:normal;font-weight:normal;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_0272180612c3ac82cccba7f0.woff2')format("woff");}.ff2_c00007{font-family:ff2_c00007;line-height:1.575000;font-style:normal;font-weight:normal;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_2670161c76686f9fe0487d4e.woff2')format("woff");}.ff3_c00007{font-family:ff3_c00007;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00007;src:url('chunks/assets/font_bd396ea68a56945a55ae5cc9.woff2')format("woff");}.ff4_c00007{font-family:ff4_c00007;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00007;src:url('chunks/assets/font_9572693727f7a402e0f7453c.woff2')format("woff");}.ff5_c00007{font-family:ff5_c00007;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00007;src:url('chunks/assets/font_a92b08b98990ea1c1737d9ac.woff2')format("woff");}.ff6_c00007{font-family:ff6_c00007;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00007;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff7_c00007{font-family:ff7_c00007;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00007{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00007{vertical-align:0.000000px;}
.ls2_c00007{letter-spacing:-6.000000px;}
.ls3_c00007{letter-spacing:-3.000000px;}
.ls1_c00007{letter-spacing:0.000000px;}
.ls0_c00007{letter-spacing:3.900000px;}
.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:-30.540000px;}
.ws3_c00007{word-spacing:-18.084000px;}
.ws2_c00007{word-spacing:-17.250000px;}
.ws1_c00007{word-spacing:-0.051000px;}
.ws4_c00007{word-spacing:0.000000px;}
._10_c00007{margin-left:-22.110000px;}
._f_c00007{margin-left:-19.326000px;}
._12_c00007{margin-left:-16.830000px;}
._17_c00007{margin-left:-14.310000px;}
._11_c00007{margin-left:-12.960000px;}
._13_c00007{margin-left:-11.070000px;}
._b_c00007{margin-left:-9.270000px;}
._e_c00007{margin-left:-7.920000px;}
._2_c00007{margin-left:-6.390000px;}
._0_c00007{margin-left:-4.770000px;}
._3_c00007{margin-left:-3.600000px;}
._1_c00007{margin-left:-2.520000px;}
._5_c00007{margin-left:-1.080000px;}
._a_c00007{width:1.620000px;}
._15_c00007{width:3.600000px;}
._4_c00007{width:4.860000px;}
._d_c00007{width:6.930000px;}
._8_c00007{width:8.370000px;}
._6_c00007{width:9.630000px;}
._7_c00007{width:10.890000px;}
._c_c00007{width:12.870000px;}
._9_c00007{width:14.310000px;}
._19_c00007{width:15.849000px;}
._1b_c00007{width:19.350000px;}
._16_c00007{width:24.750000px;}
._1c_c00007{width:25.926000px;}
._1a_c00007{width:50.934000px;}
._14_c00007{width:95.760000px;}
._18_c00007{width:343.590000px;}
.fc2_c00007{color:transparent;}
.fc1_c00007{color:rgb(128,128,128);}
.fc0_c00007{color:rgb(0,0,0);}
.fs6_c00007{font-size:48.000000px;}
.fs1_c00007{font-size:51.000000px;}
.fs3_c00007{font-size:60.000000px;}
.fs5_c00007{font-size:84.000000px;}
.fs0_c00007{font-size:90.000000px;}
.fs4_c00007{font-size:93.000000px;}
.fs2_c00007{font-size:114.000000px;}
.y0_c00007{bottom:0.000000px;}
.y1f_c00007{bottom:3.105000px;}
.y1e_c00007{bottom:7.228363px;}
.y1d_c00007{bottom:64.200000px;}
.y1c_c00007{bottom:91.500000px;}
.y1b_c00007{bottom:116.400000px;}
.y1a_c00007{bottom:140.850000px;}
.y19_c00007{bottom:167.400000px;}
.y18_c00007{bottom:195.450000px;}
.y17_c00007{bottom:224.100000px;}
.y16_c00007{bottom:252.900000px;}
.y15_c00007{bottom:278.400000px;}
.y14_c00007{bottom:302.400000px;}
.y13_c00007{bottom:326.400000px;}
.y12_c00007{bottom:350.400000px;}
.y11_c00007{bottom:375.000000px;}
.y10_c00007{bottom:399.300000px;}
.yf_c00007{bottom:423.600000px;}
.ye_c00007{bottom:448.500000px;}
.yd_c00007{bottom:473.250000px;}
.yc_c00007{bottom:497.100000px;}
.yb_c00007{bottom:521.550000px;}
.ya_c00007{bottom:546.150000px;}
.y9_c00007{bottom:571.050000px;}
.y8_c00007{bottom:595.650000px;}
.y7_c00007{bottom:620.400000px;}
.y6_c00007{bottom:645.300000px;}
.y5_c00007{bottom:669.900000px;}
.y4_c00007{bottom:694.950000px;}
.y3_c00007{bottom:718.950000px;}
.y2_c00007{bottom:742.800000px;}
.y1_c00007{bottom:767.250000px;}
.h6_c00007{height:13.200074px;}
.h7_c00007{height:43.804688px;}
.h5_c00007{height:88.032000px;}
.h2_c00007{height:96.030000px;}
.h4_c00007{height:99.231000px;}
.h3_c00007{height:121.638000px;}
.h1_c00007{height:827.250000px;}
.h0_c00007{height:827.550000px;}
.w2_c00007{width:104.875500px;}
.w1_c00007{width:597.000000px;}
.w0_c00007{width:597.225000px;}
.x0_c00007{left:0.000000px;}
.x7_c00007{left:16.500000px;}
.x5_c00007{left:66.150000px;}
.x3_c00007{left:76.350000px;}
.x1_c00007{left:78.600000px;}
.x2_c00007{left:79.650000px;}
.x4_c00007{left:80.700000px;}
.x6_c00007{left:82.350000px;}
.x8_c00007{left:181.950000px;}
.xa_c00007{left:250.426758px;}
.x9_c00007{left:535.950000px;}
@media print{
.v0_c00007{vertical-align:0.000000pt;}
.ls2_c00007{letter-spacing:-5.333333pt;}
.ls3_c00007{letter-spacing:-2.666667pt;}
.ls1_c00007{letter-spacing:0.000000pt;}
.ls0_c00007{letter-spacing:3.466667pt;}
.ws0_c00007{word-spacing:-27.146667pt;}
.ws3_c00007{word-spacing:-16.074667pt;}
.ws2_c00007{word-spacing:-15.333333pt;}
.ws1_c00007{word-spacing:-0.045333pt;}
.ws4_c00007{word-spacing:0.000000pt;}
._10_c00007{margin-left:-19.653333pt;}
._f_c00007{margin-left:-17.178667pt;}
._12_c00007{margin-left:-14.960000pt;}
._17_c00007{margin-left:-12.720000pt;}
._11_c00007{margin-left:-11.520000pt;}
._13_c00007{margin-left:-9.840000pt;}
._b_c00007{margin-left:-8.240000pt;}
._e_c00007{margin-left:-7.040000pt;}
._2_c00007{margin-left:-5.680000pt;}
._0_c00007{margin-left:-4.240000pt;}
._3_c00007{margin-left:-3.200000pt;}
._1_c00007{margin-left:-2.240000pt;}
._5_c00007{margin-left:-0.960000pt;}
._a_c00007{width:1.440000pt;}
._15_c00007{width:3.200000pt;}
._4_c00007{width:4.320000pt;}
._d_c00007{width:6.160000pt;}
._8_c00007{width:7.440000pt;}
._6_c00007{width:8.560000pt;}
._7_c00007{width:9.680000pt;}
._c_c00007{width:11.440000pt;}
._9_c00007{width:12.720000pt;}
._19_c00007{width:14.088000pt;}
._1b_c00007{width:17.200000pt;}
._16_c00007{width:22.000000pt;}
._1c_c00007{width:23.045333pt;}
._1a_c00007{width:45.274667pt;}
._14_c00007{width:85.120000pt;}
._18_c00007{width:305.413333pt;}
.fs6_c00007{font-size:42.666667pt;}
.fs1_c00007{font-size:45.333333pt;}
.fs3_c00007{font-size:53.333333pt;}
.fs5_c00007{font-size:74.666667pt;}
.fs0_c00007{font-size:80.000000pt;}
.fs4_c00007{font-size:82.666667pt;}
.fs2_c00007{font-size:101.333333pt;}
.y0_c00007{bottom:0.000000pt;}
.y1f_c00007{bottom:2.760000pt;}
.y1e_c00007{bottom:6.425212pt;}
.y1d_c00007{bottom:57.066667pt;}
.y1c_c00007{bottom:81.333333pt;}
.y1b_c00007{bottom:103.466667pt;}
.y1a_c00007{bottom:125.200000pt;}
.y19_c00007{bottom:148.800000pt;}
.y18_c00007{bottom:173.733333pt;}
.y17_c00007{bottom:199.200000pt;}
.y16_c00007{bottom:224.800000pt;}
.y15_c00007{bottom:247.466667pt;}
.y14_c00007{bottom:268.800000pt;}
.y13_c00007{bottom:290.133333pt;}
.y12_c00007{bottom:311.466667pt;}
.y11_c00007{bottom:333.333333pt;}
.y10_c00007{bottom:354.933333pt;}
.yf_c00007{bottom:376.533333pt;}
.ye_c00007{bottom:398.666667pt;}
.yd_c00007{bottom:420.666667pt;}
.yc_c00007{bottom:441.866667pt;}
.yb_c00007{bottom:463.600000pt;}
.ya_c00007{bottom:485.466667pt;}
.y9_c00007{bottom:507.600000pt;}
.y8_c00007{bottom:529.466667pt;}
.y7_c00007{bottom:551.466667pt;}
.y6_c00007{bottom:573.600000pt;}
.y5_c00007{bottom:595.466667pt;}
.y4_c00007{bottom:617.733333pt;}
.y3_c00007{bottom:639.066667pt;}
.y2_c00007{bottom:660.266667pt;}
.y1_c00007{bottom:682.000000pt;}
.h6_c00007{height:11.733399pt;}
.h7_c00007{height:38.937500pt;}
.h5_c00007{height:78.250667pt;}
.h2_c00007{height:85.360000pt;}
.h4_c00007{height:88.205333pt;}
.h3_c00007{height:108.122667pt;}
.h1_c00007{height:735.333333pt;}
.h0_c00007{height:735.600000pt;}
.w2_c00007{width:93.222667pt;}
.w1_c00007{width:530.666667pt;}
.w0_c00007{width:530.866667pt;}
.x0_c00007{left:0.000000pt;}
.x7_c00007{left:14.666667pt;}
.x5_c00007{left:58.800000pt;}
.x3_c00007{left:67.866667pt;}
.x1_c00007{left:69.866667pt;}
.x2_c00007{left:70.800000pt;}
.x4_c00007{left:71.733333pt;}
.x6_c00007{left:73.200000pt;}
.x8_c00007{left:161.733333pt;}
.xa_c00007{left:222.601563pt;}
.x9_c00007{left:476.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d3dadc85c61fa55cc7c75f98.woff2')format("woff");}.ff1_c00008{font-family:ff1_c00008;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00008;src:url('chunks/assets/font_cc783a18a12e3ecdd89f61e2.woff2')format("woff");}.ff2_c00008{font-family:ff2_c00008;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00008;src:url('chunks/assets/font_db73e6dfa8384c7a733fbe24.woff2')format("woff");}.ff3_c00008{font-family:ff3_c00008;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00008;src:url('chunks/assets/font_4c629919d94bf73ad3a51e2c.woff2')format("woff");}.ff4_c00008{font-family:ff4_c00008;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00008;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff5_c00008{font-family:ff5_c00008;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00008{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00008{vertical-align:0.000000px;}
.v1_c00008{vertical-align:13.200000px;}
.ls3_c00008{letter-spacing:-6.000000px;}
.ls0_c00008{letter-spacing:-3.000000px;}
.ls1_c00008{letter-spacing:0.000000px;}
.ls2_c00008{letter-spacing:3.000000px;}
.sc__c00008{text-shadow:none;}
.sc0_c00008{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00008{-webkit-text-stroke:0px transparent;}
.sc0_c00008{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00008{word-spacing:-39.960000px;}
.ws1_c00008{word-spacing:-21.084000px;}
.ws0_c00008{word-spacing:-18.084000px;}
.ws4_c00008{word-spacing:0.000000px;}
.ws3_c00008{word-spacing:482.196000px;}
._1f_c00008{margin-left:-22.491000px;}
._20_c00008{margin-left:-21.261000px;}
._11_c00008{margin-left:-13.944000px;}
._1_c00008{margin-left:-10.716000px;}
._1b_c00008{margin-left:-8.652000px;}
._7_c00008{margin-left:-6.468000px;}
._3_c00008{margin-left:-4.536000px;}
._13_c00008{margin-left:-3.360000px;}
._10_c00008{margin-left:-2.100000px;}
._5_c00008{margin-left:-1.092000px;}
._8_c00008{width:1.008000px;}
._0_c00008{width:2.016000px;}
._2_c00008{width:3.024000px;}
._d_c00008{width:4.836000px;}
._14_c00008{width:5.880000px;}
._e_c00008{width:7.044000px;}
._a_c00008{width:8.376000px;}
._c_c00008{width:9.468000px;}
._6_c00008{width:11.256000px;}
._9_c00008{width:12.732000px;}
._f_c00008{width:14.112000px;}
._16_c00008{width:15.204000px;}
._15_c00008{width:16.284000px;}
._b_c00008{width:17.724000px;}
._1a_c00008{width:19.740000px;}
._19_c00008{width:25.704000px;}
._17_c00008{width:29.652000px;}
._18_c00008{width:31.752000px;}
._1c_c00008{width:41.364000px;}
._1e_c00008{width:296.016000px;}
._4_c00008{width:349.440000px;}
._12_c00008{width:500.304000px;}
._1d_c00008{width:875.616000px;}
.fc2_c00008{color:transparent;}
.fc1_c00008{color:rgb(128,128,128);}
.fc0_c00008{color:rgb(0,0,0);}
.fs6_c00008{font-size:48.000000px;}
.fs4_c00008{font-size:57.000000px;}
.fs1_c00008{font-size:60.000000px;}
.fs0_c00008{font-size:84.000000px;}
.fs2_c00008{font-size:90.000000px;}
.fs5_c00008{font-size:93.000000px;}
.fs3_c00008{font-size:105.000000px;}
.y0_c00008{bottom:0.000000px;}
.y15_c00008{bottom:3.105000px;}
.y14_c00008{bottom:7.228369px;}
.y13_c00008{bottom:229.470000px;}
.y12_c00008{bottom:313.470000px;}
.y11_c00008{bottom:337.770000px;}
.y10_c00008{bottom:406.620000px;}
.yf_c00008{bottom:432.270000px;}
.ye_c00008{bottom:456.270000px;}
.yd_c00008{bottom:480.270000px;}
.yc_c00008{bottom:506.520000px;}
.yb_c00008{bottom:530.520000px;}
.ya_c00008{bottom:554.220000px;}
.y9_c00008{bottom:579.120000px;}
.y8_c00008{bottom:603.420000px;}
.y7_c00008{bottom:627.720000px;}
.y6_c00008{bottom:652.020000px;}
.y5_c00008{bottom:676.620000px;}
.y4_c00008{bottom:700.620000px;}
.y3_c00008{bottom:724.920000px;}
.y2_c00008{bottom:750.270000px;}
.y1_c00008{bottom:775.170000px;}
.h6_c00008{height:13.200073px;}
.h7_c00008{height:43.804688px;}
.h2_c00008{height:88.032000px;}
.h3_c00008{height:88.330078px;}
.h4_c00008{height:110.040000px;}
.h5_c00008{height:114.012000px;}
.h1_c00008{height:832.500000px;}
.h0_c00008{height:832.650000px;}
.w2_c00008{width:104.875500px;}
.w0_c00008{width:606.450000px;}
.w1_c00008{width:606.750000px;}
.x0_c00008{left:0.000000px;}
.x3_c00008{left:35.100000px;}
.x1_c00008{left:39.150000px;}
.x2_c00008{left:40.200000px;}
.x4_c00008{left:42.150000px;}
.x5_c00008{left:43.950000px;}
.x6_c00008{left:45.600000px;}
.x9_c00008{left:126.600000px;}
.x7_c00008{left:142.050000px;}
.x8_c00008{left:235.650000px;}
.xa_c00008{left:255.039230px;}
@media print{
.v0_c00008{vertical-align:0.000000pt;}
.v1_c00008{vertical-align:11.733333pt;}
.ls3_c00008{letter-spacing:-5.333333pt;}
.ls0_c00008{letter-spacing:-2.666667pt;}
.ls1_c00008{letter-spacing:0.000000pt;}
.ls2_c00008{letter-spacing:2.666667pt;}
.ws2_c00008{word-spacing:-35.520000pt;}
.ws1_c00008{word-spacing:-18.741333pt;}
.ws0_c00008{word-spacing:-16.074667pt;}
.ws4_c00008{word-spacing:0.000000pt;}
.ws3_c00008{word-spacing:428.618667pt;}
._1f_c00008{margin-left:-19.992000pt;}
._20_c00008{margin-left:-18.898667pt;}
._11_c00008{margin-left:-12.394667pt;}
._1_c00008{margin-left:-9.525333pt;}
._1b_c00008{margin-left:-7.690667pt;}
._7_c00008{margin-left:-5.749333pt;}
._3_c00008{margin-left:-4.032000pt;}
._13_c00008{margin-left:-2.986667pt;}
._10_c00008{margin-left:-1.866667pt;}
._5_c00008{margin-left:-0.970667pt;}
._8_c00008{width:0.896000pt;}
._0_c00008{width:1.792000pt;}
._2_c00008{width:2.688000pt;}
._d_c00008{width:4.298667pt;}
._14_c00008{width:5.226667pt;}
._e_c00008{width:6.261333pt;}
._a_c00008{width:7.445333pt;}
._c_c00008{width:8.416000pt;}
._6_c00008{width:10.005333pt;}
._9_c00008{width:11.317333pt;}
._f_c00008{width:12.544000pt;}
._16_c00008{width:13.514667pt;}
._15_c00008{width:14.474667pt;}
._b_c00008{width:15.754667pt;}
._1a_c00008{width:17.546667pt;}
._19_c00008{width:22.848000pt;}
._17_c00008{width:26.357333pt;}
._18_c00008{width:28.224000pt;}
._1c_c00008{width:36.768000pt;}
._1e_c00008{width:263.125333pt;}
._4_c00008{width:310.613333pt;}
._12_c00008{width:444.714667pt;}
._1d_c00008{width:778.325333pt;}
.fs6_c00008{font-size:42.666667pt;}
.fs4_c00008{font-size:50.666667pt;}
.fs1_c00008{font-size:53.333333pt;}
.fs0_c00008{font-size:74.666667pt;}
.fs2_c00008{font-size:80.000000pt;}
.fs5_c00008{font-size:82.666667pt;}
.fs3_c00008{font-size:93.333333pt;}
.y0_c00008{bottom:0.000000pt;}
.y15_c00008{bottom:2.760000pt;}
.y14_c00008{bottom:6.425217pt;}
.y13_c00008{bottom:203.973333pt;}
.y12_c00008{bottom:278.640000pt;}
.y11_c00008{bottom:300.240000pt;}
.y10_c00008{bottom:361.440000pt;}
.yf_c00008{bottom:384.240000pt;}
.ye_c00008{bottom:405.573333pt;}
.yd_c00008{bottom:426.906667pt;}
.yc_c00008{bottom:450.240000pt;}
.yb_c00008{bottom:471.573333pt;}
.ya_c00008{bottom:492.640000pt;}
.y9_c00008{bottom:514.773333pt;}
.y8_c00008{bottom:536.373333pt;}
.y7_c00008{bottom:557.973333pt;}
.y6_c00008{bottom:579.573333pt;}
.y5_c00008{bottom:601.440000pt;}
.y4_c00008{bottom:622.773333pt;}
.y3_c00008{bottom:644.373333pt;}
.y2_c00008{bottom:666.906667pt;}
.y1_c00008{bottom:689.040000pt;}
.h6_c00008{height:11.733399pt;}
.h7_c00008{height:38.937500pt;}
.h2_c00008{height:78.250667pt;}
.h3_c00008{height:78.515625pt;}
.h4_c00008{height:97.813333pt;}
.h5_c00008{height:101.344000pt;}
.h1_c00008{height:740.000000pt;}
.h0_c00008{height:740.133333pt;}
.w2_c00008{width:93.222667pt;}
.w0_c00008{width:539.066667pt;}
.w1_c00008{width:539.333333pt;}
.x0_c00008{left:0.000000pt;}
.x3_c00008{left:31.200000pt;}
.x1_c00008{left:34.800000pt;}
.x2_c00008{left:35.733333pt;}
.x4_c00008{left:37.466667pt;}
.x5_c00008{left:39.066667pt;}
.x6_c00008{left:40.533333pt;}
.x9_c00008{left:112.533333pt;}
.x7_c00008{left:126.266667pt;}
.x8_c00008{left:209.466667pt;}
.xa_c00008{left:226.701538pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_488fad4782038675965f8009.woff2')format("woff");}.ff1_c00009{font-family:ff1_c00009;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00009;src:url('chunks/assets/font_f705b0fad6ce1f2183ce8a1f.woff2')format("woff");}.ff2_c00009{font-family:ff2_c00009;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00009;src:url('chunks/assets/font_71e8854ce8260ecda2db2143.woff2')format("woff");}.ff3_c00009{font-family:ff3_c00009;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00009;src:url('chunks/assets/font_b42a6ce20f513025dc39902f.woff2')format("woff");}.ff4_c00009{font-family:ff4_c00009;line-height:1.402354;font-style:normal;font-weight:normal;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_db5cb431e6f66f8e7681fe2e.woff2')format("woff");}.ff5_c00009{font-family:ff5_c00009;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00009;src:url('chunks/assets/font_be38aa5100590acf55af713d.woff2')format("woff");}.ff6_c00009{font-family:ff6_c00009;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00009;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff7_c00009{font-family:ff7_c00009;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00009{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00009{vertical-align:0.000000px;}
.v1_c00009{vertical-align:63.000000px;}
.v2_c00009{vertical-align:160.200000px;}
.ls5_c00009{letter-spacing:-6.000000px;}
.ls2_c00009{letter-spacing:-3.000000px;}
.ls4_c00009{letter-spacing:0.000000px;}
.ls3_c00009{letter-spacing:3.000000px;}
.ls1_c00009{letter-spacing:14.700000px;}
.ls6_c00009{letter-spacing:33.000000px;}
.ls0_c00009{letter-spacing:38.418000px;}
.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;}
}
.ws2_c00009{word-spacing:-87.834000px;}
.ws1_c00009{word-spacing:-21.045000px;}
.ws3_c00009{word-spacing:-0.090000px;}
.ws4_c00009{word-spacing:0.000000px;}
.ws0_c00009{word-spacing:5.883000px;}
._22_c00009{margin-left:-37.980000px;}
._16_c00009{margin-left:-21.840000px;}
._1c_c00009{margin-left:-18.375000px;}
._13_c00009{margin-left:-16.905000px;}
._1_c00009{margin-left:-15.435000px;}
._4_c00009{margin-left:-14.280000px;}
._1e_c00009{margin-left:-13.140000px;}
._3_c00009{margin-left:-11.970000px;}
._17_c00009{margin-left:-10.815000px;}
._0_c00009{margin-left:-9.240000px;}
._2_c00009{margin-left:-7.245000px;}
._6_c00009{margin-left:-5.565000px;}
._18_c00009{margin-left:-4.410000px;}
._12_c00009{margin-left:-3.255000px;}
._5_c00009{margin-left:-2.205000px;}
._14_c00009{margin-left:-1.050000px;}
._11_c00009{width:2.100000px;}
._e_c00009{width:3.360000px;}
._f_c00009{width:4.410000px;}
._10_c00009{width:5.460000px;}
._1b_c00009{width:6.510000px;}
._c_c00009{width:8.190000px;}
._d_c00009{width:9.240000px;}
._19_c00009{width:11.025000px;}
._21_c00009{width:12.105000px;}
._1a_c00009{width:13.230000px;}
._15_c00009{width:14.385000px;}
._20_c00009{width:15.645000px;}
._1f_c00009{width:16.905000px;}
._b_c00009{width:18.060000px;}
._1d_c00009{width:20.265000px;}
._a_c00009{width:23.205000px;}
._8_c00009{width:74.106000px;}
._9_c00009{width:107.736000px;}
._7_c00009{width:195.240000px;}
.fc2_c00009{color:transparent;}
.fc1_c00009{color:rgb(128,128,128);}
.fc0_c00009{color:rgb(0,0,0);}
.fs6_c00009{font-size:48.000000px;}
.fs1_c00009{font-size:57.000000px;}
.fs5_c00009{font-size:90.000000px;}
.fs0_c00009{font-size:105.000000px;}
.fs4_c00009{font-size:114.000000px;}
.fs3_c00009{font-size:117.000000px;}
.fs2_c00009{font-size:318.000000px;}
.y0_c00009{bottom:0.000000px;}
.y14_c00009{bottom:3.105000px;}
.y13_c00009{bottom:7.228371px;}
.y12_c00009{bottom:67.515000px;}
.y11_c00009{bottom:149.565000px;}
.y10_c00009{bottom:214.365000px;}
.yf_c00009{bottom:278.565000px;}
.ye_c00009{bottom:341.565000px;}
.yd_c00009{bottom:372.615000px;}
.yc_c00009{bottom:397.965000px;}
.yb_c00009{bottom:433.365000px;}
.ya_c00009{bottom:463.365000px;}
.y9_c00009{bottom:494.415000px;}
.y8_c00009{bottom:525.165000px;}
.y7_c00009{bottom:556.515000px;}
.y6_c00009{bottom:586.665000px;}
.y5_c00009{bottom:616.665000px;}
.y4_c00009{bottom:648.015000px;}
.y2_c00009{bottom:669.165000px;}
.y3_c00009{bottom:678.465000px;}
.y1_c00009{bottom:767.265000px;}
.h8_c00009{height:13.200074px;}
.h9_c00009{height:43.804688px;}
.h7_c00009{height:88.286133px;}
.h4_c00009{height:110.040000px;}
.h5_c00009{height:120.257563px;}
.h2_c00009{height:122.736000px;}
.h6_c00009{height:123.576000px;}
.h3_c00009{height:333.264000px;}
.h0_c00009{height:820.275000px;}
.h1_c00009{height:820.500000px;}
.w2_c00009{width:104.875500px;}
.w1_c00009{width:591.750000px;}
.w0_c00009{width:591.825000px;}
.x0_c00009{left:0.000000px;}
.x5_c00009{left:80.250000px;}
.x6_c00009{left:81.300000px;}
.x8_c00009{left:82.950000px;}
.x7_c00009{left:84.600000px;}
.x4_c00009{left:86.700000px;}
.x2_c00009{left:89.400000px;}
.x9_c00009{left:112.050000px;}
.x3_c00009{left:158.400000px;}
.x1_c00009{left:216.900000px;}
.xd_c00009{left:247.726730px;}
.xb_c00009{left:288.000000px;}
.xa_c00009{left:314.100000px;}
.xc_c00009{left:496.500000px;}
@media print{
.v0_c00009{vertical-align:0.000000pt;}
.v1_c00009{vertical-align:56.000000pt;}
.v2_c00009{vertical-align:142.400000pt;}
.ls5_c00009{letter-spacing:-5.333333pt;}
.ls2_c00009{letter-spacing:-2.666667pt;}
.ls4_c00009{letter-spacing:0.000000pt;}
.ls3_c00009{letter-spacing:2.666667pt;}
.ls1_c00009{letter-spacing:13.066667pt;}
.ls6_c00009{letter-spacing:29.333333pt;}
.ls0_c00009{letter-spacing:34.149333pt;}
.ws2_c00009{word-spacing:-78.074667pt;}
.ws1_c00009{word-spacing:-18.706667pt;}
.ws3_c00009{word-spacing:-0.080000pt;}
.ws4_c00009{word-spacing:0.000000pt;}
.ws0_c00009{word-spacing:5.229333pt;}
._22_c00009{margin-left:-33.760000pt;}
._16_c00009{margin-left:-19.413333pt;}
._1c_c00009{margin-left:-16.333333pt;}
._13_c00009{margin-left:-15.026667pt;}
._1_c00009{margin-left:-13.720000pt;}
._4_c00009{margin-left:-12.693333pt;}
._1e_c00009{margin-left:-11.680000pt;}
._3_c00009{margin-left:-10.640000pt;}
._17_c00009{margin-left:-9.613333pt;}
._0_c00009{margin-left:-8.213333pt;}
._2_c00009{margin-left:-6.440000pt;}
._6_c00009{margin-left:-4.946667pt;}
._18_c00009{margin-left:-3.920000pt;}
._12_c00009{margin-left:-2.893333pt;}
._5_c00009{margin-left:-1.960000pt;}
._14_c00009{margin-left:-0.933333pt;}
._11_c00009{width:1.866667pt;}
._e_c00009{width:2.986667pt;}
._f_c00009{width:3.920000pt;}
._10_c00009{width:4.853333pt;}
._1b_c00009{width:5.786667pt;}
._c_c00009{width:7.280000pt;}
._d_c00009{width:8.213333pt;}
._19_c00009{width:9.800000pt;}
._21_c00009{width:10.760000pt;}
._1a_c00009{width:11.760000pt;}
._15_c00009{width:12.786667pt;}
._20_c00009{width:13.906667pt;}
._1f_c00009{width:15.026667pt;}
._b_c00009{width:16.053333pt;}
._1d_c00009{width:18.013333pt;}
._a_c00009{width:20.626667pt;}
._8_c00009{width:65.872000pt;}
._9_c00009{width:95.765333pt;}
._7_c00009{width:173.546667pt;}
.fs6_c00009{font-size:42.666667pt;}
.fs1_c00009{font-size:50.666667pt;}
.fs5_c00009{font-size:80.000000pt;}
.fs0_c00009{font-size:93.333333pt;}
.fs4_c00009{font-size:101.333333pt;}
.fs3_c00009{font-size:104.000000pt;}
.fs2_c00009{font-size:282.666667pt;}
.y0_c00009{bottom:0.000000pt;}
.y14_c00009{bottom:2.760000pt;}
.y13_c00009{bottom:6.425219pt;}
.y12_c00009{bottom:60.013333pt;}
.y11_c00009{bottom:132.946667pt;}
.y10_c00009{bottom:190.546667pt;}
.yf_c00009{bottom:247.613333pt;}
.ye_c00009{bottom:303.613333pt;}
.yd_c00009{bottom:331.213333pt;}
.yc_c00009{bottom:353.746667pt;}
.yb_c00009{bottom:385.213333pt;}
.ya_c00009{bottom:411.880000pt;}
.y9_c00009{bottom:439.480000pt;}
.y8_c00009{bottom:466.813333pt;}
.y7_c00009{bottom:494.680000pt;}
.y6_c00009{bottom:521.480000pt;}
.y5_c00009{bottom:548.146667pt;}
.y4_c00009{bottom:576.013333pt;}
.y2_c00009{bottom:594.813333pt;}
.y3_c00009{bottom:603.080000pt;}
.y1_c00009{bottom:682.013333pt;}
.h8_c00009{height:11.733399pt;}
.h9_c00009{height:38.937500pt;}
.h7_c00009{height:78.476562pt;}
.h4_c00009{height:97.813333pt;}
.h5_c00009{height:106.895612pt;}
.h2_c00009{height:109.098667pt;}
.h6_c00009{height:109.845333pt;}
.h3_c00009{height:296.234667pt;}
.h0_c00009{height:729.133333pt;}
.h1_c00009{height:729.333333pt;}
.w2_c00009{width:93.222667pt;}
.w1_c00009{width:526.000000pt;}
.w0_c00009{width:526.066667pt;}
.x0_c00009{left:0.000000pt;}
.x5_c00009{left:71.333333pt;}
.x6_c00009{left:72.266667pt;}
.x8_c00009{left:73.733333pt;}
.x7_c00009{left:75.200000pt;}
.x4_c00009{left:77.066667pt;}
.x2_c00009{left:79.466667pt;}
.x9_c00009{left:99.600000pt;}
.x3_c00009{left:140.800000pt;}
.x1_c00009{left:192.800000pt;}
.xd_c00009{left:220.201538pt;}
.xb_c00009{left:256.000000pt;}
.xa_c00009{left:279.200000pt;}
.xc_c00009{left:441.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_64735d99851f791fd2c9aed2.woff2')format("woff");}.ff1_c00010{font-family:ff1_c00010;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00010;src:url('chunks/assets/font_2e9b5da0d003c506754172d2.woff2')format("woff");}.ff2_c00010{font-family:ff2_c00010;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00010;src:url('chunks/assets/font_d2a03fe206c07a5a1f0d84d8.woff2')format("woff");}.ff3_c00010{font-family:ff3_c00010;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00010;src:url('chunks/assets/font_e21891ebebe5be5328c21c2d.woff2')format("woff");}.ff4_c00010{font-family:ff4_c00010;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00010;src:url('chunks/assets/font_b2a6fb1fb46ed5b82f8eedae.woff2')format("woff");}.ff5_c00010{font-family:ff5_c00010;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00010;src:url('chunks/assets/font_fc45589c1df6b58981c3360c.woff2')format("woff");}.ff6_c00010{font-family:ff6_c00010;line-height:1.012793;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00010;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff7_c00010{font-family:ff7_c00010;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00010{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00010{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.v2_c00010{vertical-align:-99.600000px;}
.v0_c00010{vertical-align:0.000000px;}
.v1_c00010{vertical-align:228.600000px;}
.ls4_c00010{letter-spacing:-3.000000px;}
.ls6_c00010{letter-spacing:0.000000px;}
.ls5_c00010{letter-spacing:3.000000px;}
.ls7_c00010{letter-spacing:12.000000px;}
.ls0_c00010{letter-spacing:27.984000px;}
.ls2_c00010{letter-spacing:39.888000px;}
.ls1_c00010{letter-spacing:42.000000px;}
.ls3_c00010{letter-spacing:546.045000px;}
.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;}
}
.ws5_c00010{word-spacing:-65.100000px;}
.ws6_c00010{word-spacing:-48.144000px;}
.ws3_c00010{word-spacing:-23.250000px;}
.ws0_c00010{word-spacing:-21.045000px;}
.ws1_c00010{word-spacing:-9.000000px;}
.ws4_c00010{word-spacing:-1.272000px;}
.ws7_c00010{word-spacing:0.000000px;}
.ws2_c00010{word-spacing:9.528000px;}
._2e_c00010{margin-left:-15.960000px;}
._30_c00010{margin-left:-11.970000px;}
._2d_c00010{margin-left:-10.815000px;}
._2f_c00010{margin-left:-9.765000px;}
._27_c00010{margin-left:-8.715000px;}
._29_c00010{margin-left:-7.560000px;}
._1_c00010{margin-left:-6.195000px;}
._28_c00010{margin-left:-4.725000px;}
._0_c00010{margin-left:-3.675000px;}
._2_c00010{margin-left:-1.995000px;}
._31_c00010{width:1.248000px;}
._20_c00010{width:3.264000px;}
._22_c00010{width:5.040000px;}
._1d_c00010{width:6.576000px;}
._23_c00010{width:7.752000px;}
._1f_c00010{width:11.232000px;}
._16_c00010{width:12.384000px;}
._1a_c00010{width:14.304000px;}
._12_c00010{width:16.416000px;}
._21_c00010{width:17.520000px;}
._15_c00010{width:18.528000px;}
._3_c00010{width:20.328000px;}
._9_c00010{width:22.176000px;}
._6_c00010{width:23.592000px;}
._10_c00010{width:25.608000px;}
._8_c00010{width:27.432000px;}
._24_c00010{width:28.536000px;}
._4_c00010{width:29.544000px;}
._f_c00010{width:30.744000px;}
._5_c00010{width:31.800000px;}
._7_c00010{width:32.952000px;}
._c_c00010{width:34.032000px;}
._d_c00010{width:35.136000px;}
._26_c00010{width:36.528000px;}
._19_c00010{width:38.088000px;}
._a_c00010{width:39.600000px;}
._25_c00010{width:40.704000px;}
._1e_c00010{width:41.712000px;}
._13_c00010{width:42.840000px;}
._2c_c00010{width:44.475000px;}
._1b_c00010{width:45.744000px;}
._e_c00010{width:47.304000px;}
._2b_c00010{width:49.584000px;}
._14_c00010{width:50.688000px;}
._18_c00010{width:53.064000px;}
._1c_c00010{width:54.072000px;}
._b_c00010{width:55.176000px;}
._32_c00010{width:56.616000px;}
._2a_c00010{width:57.648000px;}
._17_c00010{width:129.792000px;}
._11_c00010{width:197.400000px;}
.fc2_c00010{color:transparent;}
.fc1_c00010{color:rgb(128,128,128);}
.fc0_c00010{color:rgb(0,0,0);}
.fs1_c00010{font-size:24.000000px;}
.fs5_c00010{font-size:48.000000px;}
.fs3_c00010{font-size:93.000000px;}
.fs4_c00010{font-size:102.000000px;}
.fs0_c00010{font-size:105.000000px;}
.fs2_c00010{font-size:318.000000px;}
.y0_c00010{bottom:0.000000px;}
.y16_c00010{bottom:3.105000px;}
.y15_c00010{bottom:7.228355px;}
.y14_c00010{bottom:73.785000px;}
.y13_c00010{bottom:103.935000px;}
.y12_c00010{bottom:131.985000px;}
.y11_c00010{bottom:161.235000px;}
.y10_c00010{bottom:188.985000px;}
.yf_c00010{bottom:216.585000px;}
.ye_c00010{bottom:245.235000px;}
.yd_c00010{bottom:327.735000px;}
.ya_c00010{bottom:401.085000px;}
.yc_c00010{bottom:401.985000px;}
.yb_c00010{bottom:431.235000px;}
.y9_c00010{bottom:485.685000px;}
.y8_c00010{bottom:567.285000px;}
.y7_c00010{bottom:596.385000px;}
.y6_c00010{bottom:624.735000px;}
.y5_c00010{bottom:653.085000px;}
.y4_c00010{bottom:681.285000px;}
.y3_c00010{bottom:710.085000px;}
.y2_c00010{bottom:738.735000px;}
.y1_c00010{bottom:767.685000px;}
.h7_c00010{height:13.200074px;}
.h3_c00010{height:23.554688px;}
.h4_c00010{height:25.152000px;}
.h8_c00010{height:43.804688px;}
.h6_c00010{height:91.274414px;}
.h2_c00010{height:110.040000px;}
.h5_c00010{height:402.624023px;}
.h0_c00010{height:836.175000px;}
.h1_c00010{height:836.250000px;}
.w1_c00010{width:104.875500px;}
.w0_c00010{width:590.250000px;}
.x0_c00010{left:0.000000px;}
.x8_c00010{left:32.100000px;}
.x5_c00010{left:33.150000px;}
.x6_c00010{left:34.800000px;}
.xf_c00010{left:39.750000px;}
.x10_c00010{left:40.800000px;}
.x11_c00010{left:41.850000px;}
.x3_c00010{left:48.900000px;}
.x4_c00010{left:70.500000px;}
.xd_c00010{left:84.600000px;}
.x2_c00010{left:93.150000px;}
.xa_c00010{left:96.450000px;}
.x9_c00010{left:97.500000px;}
.xe_c00010{left:100.800000px;}
.x7_c00010{left:153.150000px;}
.x1_c00010{left:173.700000px;}
.xc_c00010{left:196.350000px;}
.x12_c00010{left:246.939240px;}
.xb_c00010{left:270.900000px;}
@media print{
.v2_c00010{vertical-align:-88.533333pt;}
.v0_c00010{vertical-align:0.000000pt;}
.v1_c00010{vertical-align:203.200000pt;}
.ls4_c00010{letter-spacing:-2.666667pt;}
.ls6_c00010{letter-spacing:0.000000pt;}
.ls5_c00010{letter-spacing:2.666667pt;}
.ls7_c00010{letter-spacing:10.666667pt;}
.ls0_c00010{letter-spacing:24.874667pt;}
.ls2_c00010{letter-spacing:35.456000pt;}
.ls1_c00010{letter-spacing:37.333333pt;}
.ls3_c00010{letter-spacing:485.373333pt;}
.ws5_c00010{word-spacing:-57.866667pt;}
.ws6_c00010{word-spacing:-42.794667pt;}
.ws3_c00010{word-spacing:-20.666667pt;}
.ws0_c00010{word-spacing:-18.706667pt;}
.ws1_c00010{word-spacing:-8.000000pt;}
.ws4_c00010{word-spacing:-1.130667pt;}
.ws7_c00010{word-spacing:0.000000pt;}
.ws2_c00010{word-spacing:8.469333pt;}
._2e_c00010{margin-left:-14.186667pt;}
._30_c00010{margin-left:-10.640000pt;}
._2d_c00010{margin-left:-9.613333pt;}
._2f_c00010{margin-left:-8.680000pt;}
._27_c00010{margin-left:-7.746667pt;}
._29_c00010{margin-left:-6.720000pt;}
._1_c00010{margin-left:-5.506667pt;}
._28_c00010{margin-left:-4.200000pt;}
._0_c00010{margin-left:-3.266667pt;}
._2_c00010{margin-left:-1.773333pt;}
._31_c00010{width:1.109333pt;}
._20_c00010{width:2.901333pt;}
._22_c00010{width:4.480000pt;}
._1d_c00010{width:5.845333pt;}
._23_c00010{width:6.890667pt;}
._1f_c00010{width:9.984000pt;}
._16_c00010{width:11.008000pt;}
._1a_c00010{width:12.714667pt;}
._12_c00010{width:14.592000pt;}
._21_c00010{width:15.573333pt;}
._15_c00010{width:16.469333pt;}
._3_c00010{width:18.069333pt;}
._9_c00010{width:19.712000pt;}
._6_c00010{width:20.970667pt;}
._10_c00010{width:22.762667pt;}
._8_c00010{width:24.384000pt;}
._24_c00010{width:25.365333pt;}
._4_c00010{width:26.261333pt;}
._f_c00010{width:27.328000pt;}
._5_c00010{width:28.266667pt;}
._7_c00010{width:29.290667pt;}
._c_c00010{width:30.250667pt;}
._d_c00010{width:31.232000pt;}
._26_c00010{width:32.469333pt;}
._19_c00010{width:33.856000pt;}
._a_c00010{width:35.200000pt;}
._25_c00010{width:36.181333pt;}
._1e_c00010{width:37.077333pt;}
._13_c00010{width:38.080000pt;}
._2c_c00010{width:39.533333pt;}
._1b_c00010{width:40.661333pt;}
._e_c00010{width:42.048000pt;}
._2b_c00010{width:44.074667pt;}
._14_c00010{width:45.056000pt;}
._18_c00010{width:47.168000pt;}
._1c_c00010{width:48.064000pt;}
._b_c00010{width:49.045333pt;}
._32_c00010{width:50.325333pt;}
._2a_c00010{width:51.242667pt;}
._17_c00010{width:115.370667pt;}
._11_c00010{width:175.466667pt;}
.fs1_c00010{font-size:21.333333pt;}
.fs5_c00010{font-size:42.666667pt;}
.fs3_c00010{font-size:82.666667pt;}
.fs4_c00010{font-size:90.666667pt;}
.fs0_c00010{font-size:93.333333pt;}
.fs2_c00010{font-size:282.666667pt;}
.y0_c00010{bottom:0.000000pt;}
.y16_c00010{bottom:2.760000pt;}
.y15_c00010{bottom:6.425204pt;}
.y14_c00010{bottom:65.586667pt;}
.y13_c00010{bottom:92.386667pt;}
.y12_c00010{bottom:117.320000pt;}
.y11_c00010{bottom:143.320000pt;}
.y10_c00010{bottom:167.986667pt;}
.yf_c00010{bottom:192.520000pt;}
.ye_c00010{bottom:217.986667pt;}
.yd_c00010{bottom:291.320000pt;}
.ya_c00010{bottom:356.520000pt;}
.yc_c00010{bottom:357.320000pt;}
.yb_c00010{bottom:383.320000pt;}
.y9_c00010{bottom:431.720000pt;}
.y8_c00010{bottom:504.253333pt;}
.y7_c00010{bottom:530.120000pt;}
.y6_c00010{bottom:555.320000pt;}
.y5_c00010{bottom:580.520000pt;}
.y4_c00010{bottom:605.586667pt;}
.y3_c00010{bottom:631.186667pt;}
.y2_c00010{bottom:656.653333pt;}
.y1_c00010{bottom:682.386667pt;}
.h7_c00010{height:11.733399pt;}
.h3_c00010{height:20.937500pt;}
.h4_c00010{height:22.357333pt;}
.h8_c00010{height:38.937500pt;}
.h6_c00010{height:81.132812pt;}
.h2_c00010{height:97.813333pt;}
.h5_c00010{height:357.888021pt;}
.h0_c00010{height:743.266667pt;}
.h1_c00010{height:743.333333pt;}
.w1_c00010{width:93.222667pt;}
.w0_c00010{width:524.666667pt;}
.x0_c00010{left:0.000000pt;}
.x8_c00010{left:28.533333pt;}
.x5_c00010{left:29.466667pt;}
.x6_c00010{left:30.933333pt;}
.xf_c00010{left:35.333333pt;}
.x10_c00010{left:36.266667pt;}
.x11_c00010{left:37.200000pt;}
.x3_c00010{left:43.466667pt;}
.x4_c00010{left:62.666667pt;}
.xd_c00010{left:75.200000pt;}
.x2_c00010{left:82.800000pt;}
.xa_c00010{left:85.733333pt;}
.x9_c00010{left:86.666667pt;}
.xe_c00010{left:89.600000pt;}
.x7_c00010{left:136.133333pt;}
.x1_c00010{left:154.400000pt;}
.xc_c00010{left:174.533333pt;}
.x12_c00010{left:219.501546pt;}
.xb_c00010{left:240.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_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_b206c0ce9020426184954f65.woff2')format("woff");}.ff1_c00011{font-family:ff1_c00011;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00011;src:url('chunks/assets/font_8e760afe02cbc280b62c8392.woff2')format("woff");}.ff2_c00011{font-family:ff2_c00011;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00011;src:url('chunks/assets/font_48fea12b0e5623482344f9a1.woff2')format("woff");}.ff3_c00011{font-family:ff3_c00011;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00011;src:url('chunks/assets/font_cc9cc070de5bd409f29719a0.woff2')format("woff");}.ff4_c00011{font-family:ff4_c00011;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00011;src:url('chunks/assets/font_b79d342256552588d8abd7e3.woff2')format("woff");}.ff5_c00011{font-family:ff5_c00011;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00011;src:url('chunks/assets/font_7c7b114d6d8510036cb24ad0.woff2')format("woff");}.ff6_c00011{font-family:ff6_c00011;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00011;src:url('chunks/assets/font_d8f532fc57fffdc8babd9c40.woff2')format("woff");}.ff7_c00011{font-family:ff7_c00011;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00011;src:url('chunks/assets/font_67e9f571148affaab322f98d.woff2')format("woff");}.ff8_c00011{font-family:ff8_c00011;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00011;src:url('chunks/assets/font_ab06dc2bdfe75b7c18e130c6.woff2')format("woff");}.ff9_c00011{font-family:ff9_c00011;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00011;src:url('chunks/assets/font_99bcb127aef8cb4057b71b66.woff2')format("woff");}.ffa_c00011{font-family:ffa_c00011;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00011;src:url('chunks/assets/font_eeef9765eba429bac45a45c2.woff2')format("woff");}.ffb_c00011{font-family:ffb_c00011;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc_c00011;src:url('chunks/assets/font_c121cfcfd51a0485579843c5.woff2')format("woff");}.ffc_c00011{font-family:ffc_c00011;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd_c00011;src:url('chunks/assets/font_fee667f601e9e26d95da1d1f.woff2')format("woff");}.ffd_c00011{font-family:ffd_c00011;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe_c00011;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ffe_c00011{font-family:ffe_c00011;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00011{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3_c00011{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m1_c00011{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m2_c00011{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m4_c00011{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.v1_c00011{vertical-align:-16.200000px;}
.v0_c00011{vertical-align:0.000000px;}
.ls1f_c00011{letter-spacing:-6.000000px;}
.ls1e_c00011{letter-spacing:-3.000000px;}
.ls1b_c00011{letter-spacing:0.000000px;}
.lsd_c00011{letter-spacing:0.072000px;}
.ls7_c00011{letter-spacing:1.020000px;}
.lsa_c00011{letter-spacing:1.620000px;}
.ls15_c00011{letter-spacing:2.184000px;}
.ls16_c00011{letter-spacing:2.220000px;}
.ls17_c00011{letter-spacing:2.664000px;}
.ls1c_c00011{letter-spacing:3.000000px;}
.ls4_c00011{letter-spacing:3.984000px;}
.ls0_c00011{letter-spacing:4.800000px;}
.ls3_c00011{letter-spacing:5.184000px;}
.ls8_c00011{letter-spacing:5.472000px;}
.ls2_c00011{letter-spacing:6.000000px;}
.lse_c00011{letter-spacing:6.180000px;}
.ls13_c00011{letter-spacing:6.384000px;}
.lsf_c00011{letter-spacing:6.780000px;}
.lsc_c00011{letter-spacing:7.560000px;}
.ls11_c00011{letter-spacing:8.160000px;}
.ls12_c00011{letter-spacing:8.460000px;}
.ls14_c00011{letter-spacing:8.760000px;}
.ls9_c00011{letter-spacing:8.820000px;}
.lsb_c00011{letter-spacing:8.940000px;}
.ls18_c00011{letter-spacing:9.180000px;}
.ls5_c00011{letter-spacing:10.020000px;}
.ls6_c00011{letter-spacing:10.560000px;}
.ls1a_c00011{letter-spacing:12.360000px;}
.ls10_c00011{letter-spacing:12.540000px;}
.ls19_c00011{letter-spacing:14.736000px;}
.ls1_c00011{letter-spacing:26.880000px;}
.ls1d_c00011{letter-spacing:39.000000px;}
.sc__c00011{text-shadow:none;}
.sc0_c00011{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00011{-webkit-text-stroke:0px transparent;}
.sc0_c00011{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws11_c00011{word-spacing:-25.095000px;}
.wsc_c00011{word-spacing:-22.416000px;}
.ws0_c00011{word-spacing:-22.140000px;}
.ws6_c00011{word-spacing:-21.060000px;}
.ws10_c00011{word-spacing:-21.045000px;}
.ws1_c00011{word-spacing:-20.340000px;}
.ws5_c00011{word-spacing:-16.416000px;}
.ws2_c00011{word-spacing:-15.060000px;}
.wse_c00011{word-spacing:-14.460000px;}
.ws3_c00011{word-spacing:-14.160000px;}
.ws8_c00011{word-spacing:-7.140000px;}
.wsb_c00011{word-spacing:-4.656000px;}
.wsa_c00011{word-spacing:-4.584000px;}
.ws4_c00011{word-spacing:-0.720000px;}
.ws9_c00011{word-spacing:-0.060000px;}
.ws7_c00011{word-spacing:-0.051000px;}
.ws12_c00011{word-spacing:0.000000px;}
.wsd_c00011{word-spacing:0.780000px;}
.wsf_c00011{word-spacing:5.883000px;}
._2a_c00011{margin-left:-49.260000px;}
._27_c00011{margin-left:-39.120000px;}
._31_c00011{margin-left:-37.020000px;}
._30_c00011{margin-left:-35.940000px;}
._28_c00011{margin-left:-33.480000px;}
._25_c00011{margin-left:-31.515000px;}
._26_c00011{margin-left:-30.180000px;}
._29_c00011{margin-left:-29.100000px;}
._38_c00011{margin-left:-28.035000px;}
._1f_c00011{margin-left:-20.046000px;}
._17_c00011{margin-left:-18.600000px;}
._1e_c00011{margin-left:-16.419000px;}
._19_c00011{margin-left:-15.408000px;}
._1c_c00011{margin-left:-13.716000px;}
._12_c00011{margin-left:-12.420000px;}
._b_c00011{margin-left:-10.980000px;}
._1d_c00011{margin-left:-9.372000px;}
._1a_c00011{margin-left:-8.124000px;}
._10_c00011{margin-left:-6.600000px;}
._18_c00011{margin-left:-4.518000px;}
._c_c00011{margin-left:-3.360000px;}
._11_c00011{margin-left:-2.310000px;}
._e_c00011{margin-left:-1.260000px;}
._d_c00011{width:1.800000px;}
._13_c00011{width:3.090000px;}
._f_c00011{width:4.140000px;}
._7_c00011{width:5.670000px;}
._a_c00011{width:6.840000px;}
._15_c00011{width:8.355000px;}
._8_c00011{width:9.765000px;}
._5_c00011{width:11.445000px;}
._6_c00011{width:13.020000px;}
._3_c00011{width:14.490000px;}
._0_c00011{width:16.170000px;}
._1_c00011{width:17.535000px;}
._24_c00011{width:19.338000px;}
._16_c00011{width:23.460000px;}
._4_c00011{width:28.035000px;}
._14_c00011{width:30.540000px;}
._33_c00011{width:31.956000px;}
._2_c00011{width:34.230000px;}
._34_c00011{width:37.695000px;}
._23_c00011{width:46.740000px;}
._3d_c00011{width:51.291000px;}
._9_c00011{width:54.300000px;}
._2d_c00011{width:56.640000px;}
._1b_c00011{width:59.715000px;}
._2b_c00011{width:63.360000px;}
._2e_c00011{width:68.700000px;}
._2f_c00011{width:71.760000px;}
._2c_c00011{width:74.160000px;}
._36_c00011{width:83.562000px;}
._20_c00011{width:86.292000px;}
._3a_c00011{width:101.916000px;}
._32_c00011{width:119.970000px;}
._22_c00011{width:127.080000px;}
._39_c00011{width:302.535000px;}
._3b_c00011{width:354.072000px;}
._37_c00011{width:714.624000px;}
._3c_c00011{width:751.206000px;}
._35_c00011{width:937.056000px;}
._21_c00011{width:978.780000px;}
.fc2_c00011{color:transparent;}
.fc1_c00011{color:rgb(128,128,128);}
.fc0_c00011{color:rgb(0,0,0);}
.fs6_c00011{font-size:24.000000px;}
.fs2_c00011{font-size:48.000000px;}
.fs3_c00011{font-size:51.000000px;}
.fs1_c00011{font-size:60.000000px;}
.fs5_c00011{font-size:84.000000px;}
.fs4_c00011{font-size:90.000000px;}
.fs0_c00011{font-size:105.000000px;}
.fs7_c00011{font-size:117.000000px;}
.y0_c00011{bottom:0.000000px;}
.y20_c00011{bottom:3.105000px;}
.y1f_c00011{bottom:7.228363px;}
.y1d_c00011{bottom:68.400000px;}
.y1c_c00011{bottom:101.550000px;}
.y1b_c00011{bottom:121.500000px;}
.y1a_c00011{bottom:129.300000px;}
.y19_c00011{bottom:156.900000px;}
.y18_c00011{bottom:287.250000px;}
.y17_c00011{bottom:304.200000px;}
.y16_c00011{bottom:339.150000px;}
.y15_c00011{bottom:356.700000px;}
.y1e_c00011{bottom:370.200000px;}
.y14_c00011{bottom:374.700000px;}
.y13_c00011{bottom:410.700000px;}
.y12_c00011{bottom:428.250000px;}
.y11_c00011{bottom:446.250000px;}
.y10_c00011{bottom:464.700000px;}
.yf_c00011{bottom:482.700000px;}
.ye_c00011{bottom:500.850000px;}
.yd_c00011{bottom:518.700000px;}
.yc_c00011{bottom:536.400000px;}
.yb_c00011{bottom:555.150000px;}
.ya_c00011{bottom:572.400000px;}
.y9_c00011{bottom:591.300000px;}
.y8_c00011{bottom:609.150000px;}
.y7_c00011{bottom:630.150000px;}
.y6_c00011{bottom:644.400000px;}
.y5_c00011{bottom:663.300000px;}
.y4_c00011{bottom:681.150000px;}
.y3_c00011{bottom:699.000000px;}
.y2_c00011{bottom:716.550000px;}
.y1_c00011{bottom:757.650000px;}
.hb_c00011{height:13.200074px;}
.h8_c00011{height:23.554688px;}
.hc_c00011{height:43.804688px;}
.h4_c00011{height:62.880000px;}
.h3_c00011{height:64.020000px;}
.h5_c00011{height:65.040000px;}
.h6_c00011{height:75.966797px;}
.ha_c00011{height:88.032000px;}
.h7_c00011{height:88.286133px;}
.h2_c00011{height:110.040000px;}
.h9_c00011{height:120.257563px;}
.h1_c00011{height:827.250000px;}
.h0_c00011{height:827.550000px;}
.w2_c00011{width:104.875500px;}
.w1_c00011{width:597.000000px;}
.w0_c00011{width:597.225000px;}
.x0_c00011{left:0.000000px;}
.x7_c00011{left:72.900000px;}
.x6_c00011{left:76.200000px;}
.x5_c00011{left:77.550000px;}
.x3_c00011{left:78.600000px;}
.x4_c00011{left:79.950000px;}
.x2_c00011{left:81.450000px;}
.xa_c00011{left:84.750000px;}
.x8_c00011{left:96.900000px;}
.xb_c00011{left:103.650000px;}
.xc_c00011{left:167.100000px;}
.x1_c00011{left:170.850000px;}
.x10_c00011{left:190.350000px;}
.xd_c00011{left:201.150000px;}
.xf_c00011{left:203.400000px;}
.x11_c00011{left:206.550000px;}
.x13_c00011{left:214.650000px;}
.x15_c00011{left:250.426758px;}
.xe_c00011{left:263.850000px;}
.x12_c00011{left:352.350000px;}
.x9_c00011{left:398.850000px;}
.x14_c00011{left:587.250000px;}
@media print{
.v1_c00011{vertical-align:-14.400000pt;}
.v0_c00011{vertical-align:0.000000pt;}
.ls1f_c00011{letter-spacing:-5.333333pt;}
.ls1e_c00011{letter-spacing:-2.666667pt;}
.ls1b_c00011{letter-spacing:0.000000pt;}
.lsd_c00011{letter-spacing:0.064000pt;}
.ls7_c00011{letter-spacing:0.906667pt;}
.lsa_c00011{letter-spacing:1.440000pt;}
.ls15_c00011{letter-spacing:1.941333pt;}
.ls16_c00011{letter-spacing:1.973333pt;}
.ls17_c00011{letter-spacing:2.368000pt;}
.ls1c_c00011{letter-spacing:2.666667pt;}
.ls4_c00011{letter-spacing:3.541333pt;}
.ls0_c00011{letter-spacing:4.266667pt;}
.ls3_c00011{letter-spacing:4.608000pt;}
.ls8_c00011{letter-spacing:4.864000pt;}
.ls2_c00011{letter-spacing:5.333333pt;}
.lse_c00011{letter-spacing:5.493333pt;}
.ls13_c00011{letter-spacing:5.674667pt;}
.lsf_c00011{letter-spacing:6.026667pt;}
.lsc_c00011{letter-spacing:6.720000pt;}
.ls11_c00011{letter-spacing:7.253333pt;}
.ls12_c00011{letter-spacing:7.520000pt;}
.ls14_c00011{letter-spacing:7.786667pt;}
.ls9_c00011{letter-spacing:7.840000pt;}
.lsb_c00011{letter-spacing:7.946667pt;}
.ls18_c00011{letter-spacing:8.160000pt;}
.ls5_c00011{letter-spacing:8.906667pt;}
.ls6_c00011{letter-spacing:9.386667pt;}
.ls1a_c00011{letter-spacing:10.986667pt;}
.ls10_c00011{letter-spacing:11.146667pt;}
.ls19_c00011{letter-spacing:13.098667pt;}
.ls1_c00011{letter-spacing:23.893333pt;}
.ls1d_c00011{letter-spacing:34.666667pt;}
.ws11_c00011{word-spacing:-22.306667pt;}
.wsc_c00011{word-spacing:-19.925333pt;}
.ws0_c00011{word-spacing:-19.680000pt;}
.ws6_c00011{word-spacing:-18.720000pt;}
.ws10_c00011{word-spacing:-18.706667pt;}
.ws1_c00011{word-spacing:-18.080000pt;}
.ws5_c00011{word-spacing:-14.592000pt;}
.ws2_c00011{word-spacing:-13.386667pt;}
.wse_c00011{word-spacing:-12.853333pt;}
.ws3_c00011{word-spacing:-12.586667pt;}
.ws8_c00011{word-spacing:-6.346667pt;}
.wsb_c00011{word-spacing:-4.138667pt;}
.wsa_c00011{word-spacing:-4.074667pt;}
.ws4_c00011{word-spacing:-0.640000pt;}
.ws9_c00011{word-spacing:-0.053333pt;}
.ws7_c00011{word-spacing:-0.045333pt;}
.ws12_c00011{word-spacing:0.000000pt;}
.wsd_c00011{word-spacing:0.693333pt;}
.wsf_c00011{word-spacing:5.229333pt;}
._2a_c00011{margin-left:-43.786667pt;}
._27_c00011{margin-left:-34.773333pt;}
._31_c00011{margin-left:-32.906667pt;}
._30_c00011{margin-left:-31.946667pt;}
._28_c00011{margin-left:-29.760000pt;}
._25_c00011{margin-left:-28.013333pt;}
._26_c00011{margin-left:-26.826667pt;}
._29_c00011{margin-left:-25.866667pt;}
._38_c00011{margin-left:-24.920000pt;}
._1f_c00011{margin-left:-17.818667pt;}
._17_c00011{margin-left:-16.533333pt;}
._1e_c00011{margin-left:-14.594667pt;}
._19_c00011{margin-left:-13.696000pt;}
._1c_c00011{margin-left:-12.192000pt;}
._12_c00011{margin-left:-11.040000pt;}
._b_c00011{margin-left:-9.760000pt;}
._1d_c00011{margin-left:-8.330667pt;}
._1a_c00011{margin-left:-7.221333pt;}
._10_c00011{margin-left:-5.866667pt;}
._18_c00011{margin-left:-4.016000pt;}
._c_c00011{margin-left:-2.986667pt;}
._11_c00011{margin-left:-2.053333pt;}
._e_c00011{margin-left:-1.120000pt;}
._d_c00011{width:1.600000pt;}
._13_c00011{width:2.746667pt;}
._f_c00011{width:3.680000pt;}
._7_c00011{width:5.040000pt;}
._a_c00011{width:6.080000pt;}
._15_c00011{width:7.426667pt;}
._8_c00011{width:8.680000pt;}
._5_c00011{width:10.173333pt;}
._6_c00011{width:11.573333pt;}
._3_c00011{width:12.880000pt;}
._0_c00011{width:14.373333pt;}
._1_c00011{width:15.586667pt;}
._24_c00011{width:17.189333pt;}
._16_c00011{width:20.853333pt;}
._4_c00011{width:24.920000pt;}
._14_c00011{width:27.146667pt;}
._33_c00011{width:28.405333pt;}
._2_c00011{width:30.426667pt;}
._34_c00011{width:33.506667pt;}
._23_c00011{width:41.546667pt;}
._3d_c00011{width:45.592000pt;}
._9_c00011{width:48.266667pt;}
._2d_c00011{width:50.346667pt;}
._1b_c00011{width:53.080000pt;}
._2b_c00011{width:56.320000pt;}
._2e_c00011{width:61.066667pt;}
._2f_c00011{width:63.786667pt;}
._2c_c00011{width:65.920000pt;}
._36_c00011{width:74.277333pt;}
._20_c00011{width:76.704000pt;}
._3a_c00011{width:90.592000pt;}
._32_c00011{width:106.640000pt;}
._22_c00011{width:112.960000pt;}
._39_c00011{width:268.920000pt;}
._3b_c00011{width:314.730667pt;}
._37_c00011{width:635.221333pt;}
._3c_c00011{width:667.738667pt;}
._35_c00011{width:832.938667pt;}
._21_c00011{width:870.026667pt;}
.fs6_c00011{font-size:21.333333pt;}
.fs2_c00011{font-size:42.666667pt;}
.fs3_c00011{font-size:45.333333pt;}
.fs1_c00011{font-size:53.333333pt;}
.fs5_c00011{font-size:74.666667pt;}
.fs4_c00011{font-size:80.000000pt;}
.fs0_c00011{font-size:93.333333pt;}
.fs7_c00011{font-size:104.000000pt;}
.y0_c00011{bottom:0.000000pt;}
.y20_c00011{bottom:2.760000pt;}
.y1f_c00011{bottom:6.425212pt;}
.y1d_c00011{bottom:60.800000pt;}
.y1c_c00011{bottom:90.266667pt;}
.y1b_c00011{bottom:108.000000pt;}
.y1a_c00011{bottom:114.933333pt;}
.y19_c00011{bottom:139.466667pt;}
.y18_c00011{bottom:255.333333pt;}
.y17_c00011{bottom:270.400000pt;}
.y16_c00011{bottom:301.466667pt;}
.y15_c00011{bottom:317.066667pt;}
.y1e_c00011{bottom:329.066667pt;}
.y14_c00011{bottom:333.066667pt;}
.y13_c00011{bottom:365.066667pt;}
.y12_c00011{bottom:380.666667pt;}
.y11_c00011{bottom:396.666667pt;}
.y10_c00011{bottom:413.066667pt;}
.yf_c00011{bottom:429.066667pt;}
.ye_c00011{bottom:445.200000pt;}
.yd_c00011{bottom:461.066667pt;}
.yc_c00011{bottom:476.800000pt;}
.yb_c00011{bottom:493.466667pt;}
.ya_c00011{bottom:508.800000pt;}
.y9_c00011{bottom:525.600000pt;}
.y8_c00011{bottom:541.466667pt;}
.y7_c00011{bottom:560.133333pt;}
.y6_c00011{bottom:572.800000pt;}
.y5_c00011{bottom:589.600000pt;}
.y4_c00011{bottom:605.466667pt;}
.y3_c00011{bottom:621.333333pt;}
.y2_c00011{bottom:636.933333pt;}
.y1_c00011{bottom:673.466667pt;}
.hb_c00011{height:11.733399pt;}
.h8_c00011{height:20.937500pt;}
.hc_c00011{height:38.937500pt;}
.h4_c00011{height:55.893333pt;}
.h3_c00011{height:56.906667pt;}
.h5_c00011{height:57.813333pt;}
.h6_c00011{height:67.526042pt;}
.ha_c00011{height:78.250667pt;}
.h7_c00011{height:78.476562pt;}
.h2_c00011{height:97.813333pt;}
.h9_c00011{height:106.895612pt;}
.h1_c00011{height:735.333333pt;}
.h0_c00011{height:735.600000pt;}
.w2_c00011{width:93.222667pt;}
.w1_c00011{width:530.666667pt;}
.w0_c00011{width:530.866667pt;}
.x0_c00011{left:0.000000pt;}
.x7_c00011{left:64.800000pt;}
.x6_c00011{left:67.733333pt;}
.x5_c00011{left:68.933333pt;}
.x3_c00011{left:69.866667pt;}
.x4_c00011{left:71.066667pt;}
.x2_c00011{left:72.400000pt;}
.xa_c00011{left:75.333333pt;}
.x8_c00011{left:86.133333pt;}
.xb_c00011{left:92.133333pt;}
.xc_c00011{left:148.533333pt;}
.x1_c00011{left:151.866667pt;}
.x10_c00011{left:169.200000pt;}
.xd_c00011{left:178.800000pt;}
.xf_c00011{left:180.800000pt;}
.x11_c00011{left:183.600000pt;}
.x13_c00011{left:190.800000pt;}
.x15_c00011{left:222.601563pt;}
.xe_c00011{left:234.533333pt;}
.x12_c00011{left:313.200000pt;}
.x9_c00011{left:354.533333pt;}
.x14_c00011{left:522.000000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e5d0aae9d5cccaed63bca8ad.woff2')format("woff");}.ff1_c00012{font-family:ff1_c00012;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00012;src:url('chunks/assets/font_f6b2f6f4a149c9d8d38659c9.woff2')format("woff");}.ff2_c00012{font-family:ff2_c00012;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00012;src:url('chunks/assets/font_7cecf9f37a31f01ea942daab.woff2')format("woff");}.ff3_c00012{font-family:ff3_c00012;line-height:1.575000;font-style:normal;font-weight:normal;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_dfaf8b3cfba0bb98400b2654.woff2')format("woff");}.ff4_c00012{font-family:ff4_c00012;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00012;src:url('chunks/assets/font_46b9f297ddccb54fe3c09d9c.woff2')format("woff");}.ff5_c00012{font-family:ff5_c00012;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00012;src:url('chunks/assets/font_c95e19c3e833e730f2f722b6.woff2')format("woff");}.ff6_c00012{font-family:ff6_c00012;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00012;src:url('chunks/assets/font_7164f7fc20c479aacf7b7c04.woff2')format("woff");}.ff7_c00012{font-family:ff7_c00012;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00012;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff8_c00012{font-family:ff8_c00012;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00012{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00012{vertical-align:-2.400000px;}
.v0_c00012{vertical-align:0.000000px;}
.ls15_c00012{letter-spacing:-3.000000px;}
.ls13_c00012{letter-spacing:0.000000px;}
.lsc_c00012{letter-spacing:0.717000px;}
.ls12_c00012{letter-spacing:2.202000px;}
.ls9_c00012{letter-spacing:2.250000px;}
.lsf_c00012{letter-spacing:3.402000px;}
.lsd_c00012{letter-spacing:3.612000px;}
.ls1_c00012{letter-spacing:3.900000px;}
.lsa_c00012{letter-spacing:4.812000px;}
.ls8_c00012{letter-spacing:4.908000px;}
.ls10_c00012{letter-spacing:5.412000px;}
.ls7_c00012{letter-spacing:5.805000px;}
.ls14_c00012{letter-spacing:6.000000px;}
.lsb_c00012{letter-spacing:7.050000px;}
.ls11_c00012{letter-spacing:7.317000px;}
.ls5_c00012{letter-spacing:7.347000px;}
.ls4_c00012{letter-spacing:7.371000px;}
.ls3_c00012{letter-spacing:12.147000px;}
.ls2_c00012{letter-spacing:14.250000px;}
.ls6_c00012{letter-spacing:14.580000px;}
.lse_c00012{letter-spacing:16.347000px;}
.ls0_c00012{letter-spacing:60.540000px;}
.sc__c00012{text-shadow:none;}
.sc0_c00012{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00012{-webkit-text-stroke:0px transparent;}
.sc0_c00012{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00012{word-spacing:-25.095000px;}
.ws2_c00012{word-spacing:-21.813000px;}
.ws1_c00012{word-spacing:-15.750000px;}
.ws3_c00012{word-spacing:-12.750000px;}
.ws4_c00012{word-spacing:0.000000px;}
._25_c00012{margin-left:-24.900000px;}
._1a_c00012{margin-left:-18.588000px;}
._21_c00012{margin-left:-16.410000px;}
._22_c00012{margin-left:-15.387000px;}
._1b_c00012{margin-left:-14.298000px;}
._1c_c00012{margin-left:-12.528000px;}
._20_c00012{margin-left:-10.620000px;}
._1d_c00012{margin-left:-8.484000px;}
._f_c00012{margin-left:-7.308000px;}
._12_c00012{margin-left:-5.607000px;}
._14_c00012{margin-left:-4.431000px;}
._11_c00012{margin-left:-3.402000px;}
._10_c00012{margin-left:-2.142000px;}
._1e_c00012{margin-left:-1.134000px;}
._a_c00012{width:1.050000px;}
._c_c00012{width:2.877000px;}
._15_c00012{width:3.969000px;}
._d_c00012{width:5.334000px;}
._e_c00012{width:7.056000px;}
._b_c00012{width:8.253000px;}
._13_c00012{width:9.471000px;}
._6_c00012{width:10.920000px;}
._5_c00012{width:12.705000px;}
._3_c00012{width:13.965000px;}
._9_c00012{width:17.535000px;}
._2_c00012{width:18.585000px;}
._0_c00012{width:20.265000px;}
._8_c00012{width:21.420000px;}
._1_c00012{width:22.470000px;}
._19_c00012{width:23.742000px;}
._16_c00012{width:25.851000px;}
._24_c00012{width:31.005000px;}
._23_c00012{width:35.658000px;}
._4_c00012{width:38.745000px;}
._7_c00012{width:42.945000px;}
._1f_c00012{width:55.062000px;}
._18_c00012{width:84.378000px;}
._17_c00012{width:138.936000px;}
.fc2_c00012{color:transparent;}
.fc1_c00012{color:rgb(128,128,128);}
.fc0_c00012{color:rgb(0,0,0);}
.fs4_c00012{font-size:45.000000px;}
.fs6_c00012{font-size:48.000000px;}
.fs3_c00012{font-size:57.000000px;}
.fs1_c00012{font-size:60.000000px;}
.fs2_c00012{font-size:63.000000px;}
.fs5_c00012{font-size:84.000000px;}
.fs0_c00012{font-size:105.000000px;}
.y0_c00012{bottom:0.000000px;}
.y48_c00012{bottom:3.105000px;}
.y47_c00012{bottom:7.228355px;}
.y46_c00012{bottom:45.435000px;}
.y26_c00012{bottom:65.385000px;}
.y25_c00012{bottom:84.585000px;}
.y45_c00012{bottom:84.735000px;}
.y24_c00012{bottom:101.535000px;}
.y44_c00012{bottom:102.135000px;}
.y23_c00012{bottom:120.435000px;}
.y43_c00012{bottom:120.735000px;}
.y22_c00012{bottom:138.585000px;}
.y21_c00012{bottom:156.585000px;}
.y42_c00012{bottom:157.185000px;}
.y41_c00012{bottom:175.185000px;}
.y20_c00012{bottom:176.085000px;}
.y40_c00012{bottom:192.585000px;}
.y1f_c00012{bottom:193.335000px;}
.y3f_c00012{bottom:210.585000px;}
.y1e_c00012{bottom:211.185000px;}
.y3e_c00012{bottom:229.035000px;}
.y1d_c00012{bottom:229.785000px;}
.y3d_c00012{bottom:246.585000px;}
.y1c_c00012{bottom:247.335000px;}
.y1b_c00012{bottom:265.635000px;}
.y3c_c00012{bottom:283.185000px;}
.y1a_c00012{bottom:284.085000px;}
.y3b_c00012{bottom:301.635000px;}
.y19_c00012{bottom:301.935000px;}
.y3a_c00012{bottom:318.885000px;}
.y18_c00012{bottom:319.635000px;}
.y17_c00012{bottom:337.485000px;}
.y39_c00012{bottom:337.785000px;}
.y38_c00012{bottom:355.635000px;}
.y16_c00012{bottom:356.385000px;}
.y37_c00012{bottom:372.885000px;}
.y15_c00012{bottom:373.485000px;}
.y14_c00012{bottom:391.035000px;}
.y36_c00012{bottom:391.185000px;}
.y13_c00012{bottom:409.035000px;}
.y35_c00012{bottom:409.635000px;}
.y12_c00012{bottom:426.885000px;}
.y34_c00012{bottom:427.185000px;}
.y33_c00012{bottom:445.185000px;}
.y11_c00012{bottom:445.785000px;}
.y10_c00012{bottom:463.035000px;}
.y32_c00012{bottom:463.335000px;}
.y31_c00012{bottom:479.835000px;}
.yf_c00012{bottom:480.135000px;}
.ye_c00012{bottom:498.135000px;}
.yd_c00012{bottom:515.985000px;}
.y30_c00012{bottom:534.285000px;}
.yc_c00012{bottom:534.885000px;}
.y2f_c00012{bottom:552.135000px;}
.yb_c00012{bottom:552.435000px;}
.ya_c00012{bottom:569.385000px;}
.y2e_c00012{bottom:569.985000px;}
.y2d_c00012{bottom:587.835000px;}
.y9_c00012{bottom:588.585000px;}
.y8_c00012{bottom:605.685000px;}
.y2c_c00012{bottom:606.135000px;}
.y2b_c00012{bottom:623.385000px;}
.y7_c00012{bottom:624.285000px;}
.y6_c00012{bottom:642.285000px;}
.y2a_c00012{bottom:642.585000px;}
.y29_c00012{bottom:659.835000px;}
.y5_c00012{bottom:660.435000px;}
.y4_c00012{bottom:677.985000px;}
.y28_c00012{bottom:678.585000px;}
.y27_c00012{bottom:695.835000px;}
.y3_c00012{bottom:696.735000px;}
.y2_c00012{bottom:742.785000px;}
.y1_c00012{bottom:772.785000px;}
.h8_c00012{height:13.200074px;}
.h9_c00012{height:43.804688px;}
.h6_c00012{height:62.880000px;}
.h3_c00012{height:65.892000px;}
.h5_c00012{height:67.221000px;}
.h4_c00012{height:68.292000px;}
.h7_c00012{height:88.032000px;}
.h2_c00012{height:110.040000px;}
.h0_c00012{height:836.175000px;}
.h1_c00012{height:836.250000px;}
.w2_c00012{width:104.875500px;}
.w0_c00012{width:569.700000px;}
.w1_c00012{width:570.000000px;}
.x0_c00012{left:0.000000px;}
.x3_c00012{left:5.700000px;}
.x9_c00012{left:9.750000px;}
.x6_c00012{left:15.150000px;}
.x8_c00012{left:16.500000px;}
.x1_c00012{left:18.150000px;}
.x5_c00012{left:27.900000px;}
.xb_c00012{left:29.700000px;}
.x7_c00012{left:32.700000px;}
.xa_c00012{left:34.800000px;}
.x4_c00012{left:36.000000px;}
.x2_c00012{left:162.900000px;}
.x14_c00012{left:236.664230px;}
.xf_c00012{left:246.300000px;}
.xc_c00012{left:248.400000px;}
.x12_c00012{left:258.900000px;}
.x11_c00012{left:260.850000px;}
.xe_c00012{left:264.600000px;}
.xd_c00012{left:267.300000px;}
.x10_c00012{left:277.800000px;}
.x13_c00012{left:359.400000px;}
@media print{
.v1_c00012{vertical-align:-2.133333pt;}
.v0_c00012{vertical-align:0.000000pt;}
.ls15_c00012{letter-spacing:-2.666667pt;}
.ls13_c00012{letter-spacing:0.000000pt;}
.lsc_c00012{letter-spacing:0.637333pt;}
.ls12_c00012{letter-spacing:1.957333pt;}
.ls9_c00012{letter-spacing:2.000000pt;}
.lsf_c00012{letter-spacing:3.024000pt;}
.lsd_c00012{letter-spacing:3.210667pt;}
.ls1_c00012{letter-spacing:3.466667pt;}
.lsa_c00012{letter-spacing:4.277333pt;}
.ls8_c00012{letter-spacing:4.362667pt;}
.ls10_c00012{letter-spacing:4.810667pt;}
.ls7_c00012{letter-spacing:5.160000pt;}
.ls14_c00012{letter-spacing:5.333333pt;}
.lsb_c00012{letter-spacing:6.266667pt;}
.ls11_c00012{letter-spacing:6.504000pt;}
.ls5_c00012{letter-spacing:6.530667pt;}
.ls4_c00012{letter-spacing:6.552000pt;}
.ls3_c00012{letter-spacing:10.797333pt;}
.ls2_c00012{letter-spacing:12.666667pt;}
.ls6_c00012{letter-spacing:12.960000pt;}
.lse_c00012{letter-spacing:14.530667pt;}
.ls0_c00012{letter-spacing:53.813333pt;}
.ws0_c00012{word-spacing:-22.306667pt;}
.ws2_c00012{word-spacing:-19.389333pt;}
.ws1_c00012{word-spacing:-14.000000pt;}
.ws3_c00012{word-spacing:-11.333333pt;}
.ws4_c00012{word-spacing:0.000000pt;}
._25_c00012{margin-left:-22.133333pt;}
._1a_c00012{margin-left:-16.522667pt;}
._21_c00012{margin-left:-14.586667pt;}
._22_c00012{margin-left:-13.677333pt;}
._1b_c00012{margin-left:-12.709333pt;}
._1c_c00012{margin-left:-11.136000pt;}
._20_c00012{margin-left:-9.440000pt;}
._1d_c00012{margin-left:-7.541333pt;}
._f_c00012{margin-left:-6.496000pt;}
._12_c00012{margin-left:-4.984000pt;}
._14_c00012{margin-left:-3.938667pt;}
._11_c00012{margin-left:-3.024000pt;}
._10_c00012{margin-left:-1.904000pt;}
._1e_c00012{margin-left:-1.008000pt;}
._a_c00012{width:0.933333pt;}
._c_c00012{width:2.557333pt;}
._15_c00012{width:3.528000pt;}
._d_c00012{width:4.741333pt;}
._e_c00012{width:6.272000pt;}
._b_c00012{width:7.336000pt;}
._13_c00012{width:8.418667pt;}
._6_c00012{width:9.706667pt;}
._5_c00012{width:11.293333pt;}
._3_c00012{width:12.413333pt;}
._9_c00012{width:15.586667pt;}
._2_c00012{width:16.520000pt;}
._0_c00012{width:18.013333pt;}
._8_c00012{width:19.040000pt;}
._1_c00012{width:19.973333pt;}
._19_c00012{width:21.104000pt;}
._16_c00012{width:22.978667pt;}
._24_c00012{width:27.560000pt;}
._23_c00012{width:31.696000pt;}
._4_c00012{width:34.440000pt;}
._7_c00012{width:38.173333pt;}
._1f_c00012{width:48.944000pt;}
._18_c00012{width:75.002667pt;}
._17_c00012{width:123.498667pt;}
.fs4_c00012{font-size:40.000000pt;}
.fs6_c00012{font-size:42.666667pt;}
.fs3_c00012{font-size:50.666667pt;}
.fs1_c00012{font-size:53.333333pt;}
.fs2_c00012{font-size:56.000000pt;}
.fs5_c00012{font-size:74.666667pt;}
.fs0_c00012{font-size:93.333333pt;}
.y0_c00012{bottom:0.000000pt;}
.y48_c00012{bottom:2.760000pt;}
.y47_c00012{bottom:6.425204pt;}
.y46_c00012{bottom:40.386667pt;}
.y26_c00012{bottom:58.120000pt;}
.y25_c00012{bottom:75.186667pt;}
.y45_c00012{bottom:75.320000pt;}
.y24_c00012{bottom:90.253333pt;}
.y44_c00012{bottom:90.786667pt;}
.y23_c00012{bottom:107.053333pt;}
.y43_c00012{bottom:107.320000pt;}
.y22_c00012{bottom:123.186667pt;}
.y21_c00012{bottom:139.186667pt;}
.y42_c00012{bottom:139.720000pt;}
.y41_c00012{bottom:155.720000pt;}
.y20_c00012{bottom:156.520000pt;}
.y40_c00012{bottom:171.186667pt;}
.y1f_c00012{bottom:171.853333pt;}
.y3f_c00012{bottom:187.186667pt;}
.y1e_c00012{bottom:187.720000pt;}
.y3e_c00012{bottom:203.586667pt;}
.y1d_c00012{bottom:204.253333pt;}
.y3d_c00012{bottom:219.186667pt;}
.y1c_c00012{bottom:219.853333pt;}
.y1b_c00012{bottom:236.120000pt;}
.y3c_c00012{bottom:251.720000pt;}
.y1a_c00012{bottom:252.520000pt;}
.y3b_c00012{bottom:268.120000pt;}
.y19_c00012{bottom:268.386667pt;}
.y3a_c00012{bottom:283.453333pt;}
.y18_c00012{bottom:284.120000pt;}
.y17_c00012{bottom:299.986667pt;}
.y39_c00012{bottom:300.253333pt;}
.y38_c00012{bottom:316.120000pt;}
.y16_c00012{bottom:316.786667pt;}
.y37_c00012{bottom:331.453333pt;}
.y15_c00012{bottom:331.986667pt;}
.y14_c00012{bottom:347.586667pt;}
.y36_c00012{bottom:347.720000pt;}
.y13_c00012{bottom:363.586667pt;}
.y35_c00012{bottom:364.120000pt;}
.y12_c00012{bottom:379.453333pt;}
.y34_c00012{bottom:379.720000pt;}
.y33_c00012{bottom:395.720000pt;}
.y11_c00012{bottom:396.253333pt;}
.y10_c00012{bottom:411.586667pt;}
.y32_c00012{bottom:411.853333pt;}
.y31_c00012{bottom:426.520000pt;}
.yf_c00012{bottom:426.786667pt;}
.ye_c00012{bottom:442.786667pt;}
.yd_c00012{bottom:458.653333pt;}
.y30_c00012{bottom:474.920000pt;}
.yc_c00012{bottom:475.453333pt;}
.y2f_c00012{bottom:490.786667pt;}
.yb_c00012{bottom:491.053333pt;}
.ya_c00012{bottom:506.120000pt;}
.y2e_c00012{bottom:506.653333pt;}
.y2d_c00012{bottom:522.520000pt;}
.y9_c00012{bottom:523.186667pt;}
.y8_c00012{bottom:538.386667pt;}
.y2c_c00012{bottom:538.786667pt;}
.y2b_c00012{bottom:554.120000pt;}
.y7_c00012{bottom:554.920000pt;}
.y6_c00012{bottom:570.920000pt;}
.y2a_c00012{bottom:571.186667pt;}
.y29_c00012{bottom:586.520000pt;}
.y5_c00012{bottom:587.053333pt;}
.y4_c00012{bottom:602.653333pt;}
.y28_c00012{bottom:603.186667pt;}
.y27_c00012{bottom:618.520000pt;}
.y3_c00012{bottom:619.320000pt;}
.y2_c00012{bottom:660.253333pt;}
.y1_c00012{bottom:686.920000pt;}
.h8_c00012{height:11.733399pt;}
.h9_c00012{height:38.937500pt;}
.h6_c00012{height:55.893333pt;}
.h3_c00012{height:58.570667pt;}
.h5_c00012{height:59.752000pt;}
.h4_c00012{height:60.704000pt;}
.h7_c00012{height:78.250667pt;}
.h2_c00012{height:97.813333pt;}
.h0_c00012{height:743.266667pt;}
.h1_c00012{height:743.333333pt;}
.w2_c00012{width:93.222667pt;}
.w0_c00012{width:506.400000pt;}
.w1_c00012{width:506.666667pt;}
.x0_c00012{left:0.000000pt;}
.x3_c00012{left:5.066667pt;}
.x9_c00012{left:8.666667pt;}
.x6_c00012{left:13.466667pt;}
.x8_c00012{left:14.666667pt;}
.x1_c00012{left:16.133333pt;}
.x5_c00012{left:24.800000pt;}
.xb_c00012{left:26.400000pt;}
.x7_c00012{left:29.066667pt;}
.xa_c00012{left:30.933333pt;}
.x4_c00012{left:32.000000pt;}
.x2_c00012{left:144.800000pt;}
.x14_c00012{left:210.368205pt;}
.xf_c00012{left:218.933333pt;}
.xc_c00012{left:220.800000pt;}
.x12_c00012{left:230.133333pt;}
.x11_c00012{left:231.866667pt;}
.xe_c00012{left:235.200000pt;}
.xd_c00012{left:237.600000pt;}
.x10_c00012{left:246.933333pt;}
.x13_c00012{left:319.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_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_64a444590b23ec5b7770e379.woff2')format("woff");}.ff1_c00013{font-family:ff1_c00013;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00013;src:url('chunks/assets/font_8382996c185e109f3b8d50b5.woff2')format("woff");}.ff2_c00013{font-family:ff2_c00013;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00013;src:url('chunks/assets/font_604a1ed436653d855cc4998f.woff2')format("woff");}.ff3_c00013{font-family:ff3_c00013;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00013;src:url('chunks/assets/font_e8e75470412e687310ae3e0f.woff2')format("woff");}.ff4_c00013{font-family:ff4_c00013;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00013;src:url('chunks/assets/font_2640986504df9a50f5dba466.woff2')format("woff");}.ff5_c00013{font-family:ff5_c00013;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00013;src:url('chunks/assets/font_5b044eb6f31003255c8f5362.woff2')format("woff");}.ff6_c00013{font-family:ff6_c00013;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00013;src:url('chunks/assets/font_f2bd75bf68fb750c7ee58e84.woff2')format("woff");}.ff7_c00013{font-family:ff7_c00013;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00013;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff8_c00013{font-family:ff8_c00013;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00013{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00013{vertical-align:0.000000px;}
.ls9_c00013{letter-spacing:-9.000000px;}
.ls7_c00013{letter-spacing:-3.000000px;}
.ls6_c00013{letter-spacing:0.000000px;}
.ls8_c00013{letter-spacing:3.000000px;}
.ls0_c00013{letter-spacing:5.880000px;}
.lsa_c00013{letter-spacing:6.000000px;}
.ls2_c00013{letter-spacing:7.005000px;}
.ls4_c00013{letter-spacing:7.281000px;}
.ls3_c00013{letter-spacing:9.000000px;}
.ls1_c00013{letter-spacing:9.600000px;}
.ls5_c00013{letter-spacing:11.400000px;}
.sc__c00013{text-shadow:none;}
.sc0_c00013{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00013{-webkit-text-stroke:0px transparent;}
.sc0_c00013{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00013{word-spacing:-23.250000px;}
.wsa_c00013{word-spacing:-21.084000px;}
.ws7_c00013{word-spacing:-20.295000px;}
.ws6_c00013{word-spacing:-18.000000px;}
.ws8_c00013{word-spacing:-15.750000px;}
.ws4_c00013{word-spacing:-15.060000px;}
.ws5_c00013{word-spacing:-14.160000px;}
.ws1_c00013{word-spacing:-9.000000px;}
.ws0_c00013{word-spacing:-8.112000px;}
.ws9_c00013{word-spacing:-7.323000px;}
.wsb_c00013{word-spacing:0.000000px;}
.ws3_c00013{word-spacing:0.480000px;}
._11_c00013{margin-left:-38.745000px;}
._d_c00013{margin-left:-32.655000px;}
._14_c00013{margin-left:-29.673000px;}
._12_c00013{margin-left:-28.140000px;}
._36_c00013{margin-left:-27.000000px;}
._10_c00013{margin-left:-25.410000px;}
._b_c00013{margin-left:-24.003000px;}
._f_c00013{margin-left:-22.890000px;}
._9_c00013{margin-left:-21.420000px;}
._13_c00013{margin-left:-18.333000px;}
._c_c00013{margin-left:-16.590000px;}
._a_c00013{margin-left:-14.805000px;}
._6_c00013{margin-left:-11.928000px;}
._8_c00013{margin-left:-9.912000px;}
._1c_c00013{margin-left:-8.895000px;}
._7_c00013{margin-left:-7.644000px;}
._3_c00013{margin-left:-6.468000px;}
._4_c00013{margin-left:-5.460000px;}
._28_c00013{margin-left:-4.368000px;}
._2_c00013{margin-left:-3.192000px;}
._33_c00013{margin-left:-2.181000px;}
._1b_c00013{margin-left:-1.140000px;}
._19_c00013{width:1.224000px;}
._5_c00013{width:2.268000px;}
._16_c00013{width:3.720000px;}
._15_c00013{width:4.920000px;}
._e_c00013{width:6.090000px;}
._20_c00013{width:7.242000px;}
._1d_c00013{width:8.832000px;}
._1a_c00013{width:10.212000px;}
._17_c00013{width:11.820000px;}
._18_c00013{width:13.260000px;}
._34_c00013{width:16.206000px;}
._25_c00013{width:17.532000px;}
._21_c00013{width:19.590000px;}
._1e_c00013{width:22.248000px;}
._0_c00013{width:23.952000px;}
._1_c00013{width:26.448000px;}
._1f_c00013{width:27.708000px;}
._23_c00013{width:31.836000px;}
._26_c00013{width:33.528000px;}
._31_c00013{width:35.892000px;}
._22_c00013{width:44.568000px;}
._32_c00013{width:46.092000px;}
._27_c00013{width:48.168000px;}
._24_c00013{width:60.624000px;}
._2e_c00013{width:65.538000px;}
._2b_c00013{width:69.732000px;}
._35_c00013{width:77.736000px;}
._2d_c00013{width:79.974000px;}
._2a_c00013{width:82.068000px;}
._29_c00013{width:159.252000px;}
._2c_c00013{width:569.772000px;}
._2f_c00013{width:588.834000px;}
._30_c00013{width:750.198000px;}
.fc2_c00013{color:transparent;}
.fc1_c00013{color:rgb(128,128,128);}
.fc0_c00013{color:rgb(0,0,0);}
.fs5_c00013{font-size:24.000000px;}
.fs6_c00013{font-size:45.000000px;}
.fs0_c00013{font-size:48.000000px;}
.fs7_c00013{font-size:54.000000px;}
.fs3_c00013{font-size:60.000000px;}
.fs8_c00013{font-size:63.000000px;}
.fs1_c00013{font-size:84.000000px;}
.fs4_c00013{font-size:93.000000px;}
.fs2_c00013{font-size:105.000000px;}
.y0_c00013{bottom:0.000000px;}
.y4d_c00013{bottom:3.105000px;}
.y4c_c00013{bottom:7.228355px;}
.y4b_c00013{bottom:35.385000px;}
.y4a_c00013{bottom:51.585000px;}
.y44_c00013{bottom:52.185000px;}
.y43_c00013{bottom:70.785000px;}
.y49_c00013{bottom:71.085000px;}
.y42_c00013{bottom:89.385000px;}
.y48_c00013{bottom:89.985000px;}
.y41_c00013{bottom:107.685000px;}
.y47_c00013{bottom:109.035000px;}
.y40_c00013{bottom:125.835000px;}
.y46_c00013{bottom:126.885000px;}
.y3f_c00013{bottom:144.735000px;}
.y45_c00013{bottom:145.335000px;}
.y3e_c00013{bottom:162.885000px;}
.y3d_c00013{bottom:180.885000px;}
.y2f_c00013{bottom:181.785000px;}
.y2e_c00013{bottom:198.735000px;}
.y3c_c00013{bottom:199.485000px;}
.y3b_c00013{bottom:217.035000px;}
.y2d_c00013{bottom:217.635000px;}
.y2c_c00013{bottom:235.185000px;}
.y3a_c00013{bottom:236.535000px;}
.y2b_c00013{bottom:253.785000px;}
.y2a_c00013{bottom:271.035000px;}
.y39_c00013{bottom:271.635000px;}
.y29_c00013{bottom:289.185000px;}
.y38_c00013{bottom:289.785000px;}
.y28_c00013{bottom:306.135000px;}
.y37_c00013{bottom:307.335000px;}
.y27_c00013{bottom:324.585000px;}
.y36_c00013{bottom:325.035000px;}
.y26_c00013{bottom:341.835000px;}
.y35_c00013{bottom:342.885000px;}
.y34_c00013{bottom:360.435000px;}
.y25_c00013{bottom:360.735000px;}
.y33_c00013{bottom:378.285000px;}
.y24_c00013{bottom:379.635000px;}
.y23_c00013{bottom:396.435000px;}
.y32_c00013{bottom:396.885000px;}
.y31_c00013{bottom:413.385000px;}
.y22_c00013{bottom:413.685000px;}
.y21_c00013{bottom:431.685000px;}
.y30_c00013{bottom:431.985000px;}
.y20_c00013{bottom:450.585000px;}
.y1f_c00013{bottom:467.685000px;}
.y1e_c00013{bottom:486.585000px;}
.y1d_c00013{bottom:504.135000px;}
.y1c_c00013{bottom:521.985000px;}
.y1b_c00013{bottom:540.585000px;}
.y1a_c00013{bottom:558.585000px;}
.yd_c00013{bottom:577.035000px;}
.yc_c00013{bottom:595.335000px;}
.y19_c00013{bottom:596.385000px;}
.y18_c00013{bottom:612.135000px;}
.yb_c00013{bottom:613.185000px;}
.y17_c00013{bottom:631.335000px;}
.ya_c00013{bottom:631.485000px;}
.y16_c00013{bottom:649.035000px;}
.y9_c00013{bottom:650.385000px;}
.y15_c00013{bottom:667.485000px;}
.y8_c00013{bottom:667.935000px;}
.y14_c00013{bottom:685.335000px;}
.y7_c00013{bottom:686.385000px;}
.y13_c00013{bottom:703.635000px;}
.y6_c00013{bottom:704.985000px;}
.y12_c00013{bottom:721.185000px;}
.y5_c00013{bottom:723.135000px;}
.y11_c00013{bottom:740.385000px;}
.y4_c00013{bottom:741.135000px;}
.y10_c00013{bottom:758.235000px;}
.y3_c00013{bottom:759.585000px;}
.yf_c00013{bottom:776.835000px;}
.y2_c00013{bottom:778.485000px;}
.ye_c00013{bottom:796.785000px;}
.y1_c00013{bottom:797.835000px;}
.h9_c00013{height:13.200074px;}
.ha_c00013{height:43.804688px;}
.h2_c00013{height:50.304000px;}
.h5_c00013{height:62.880000px;}
.h7_c00013{height:64.020000px;}
.h8_c00013{height:67.221000px;}
.h3_c00013{height:88.032000px;}
.h6_c00013{height:91.274414px;}
.h4_c00013{height:110.040000px;}
.h1_c00013{height:826.500000px;}
.h0_c00013{height:826.725000px;}
.w2_c00013{width:104.875500px;}
.w1_c00013{width:559.500000px;}
.w0_c00013{width:559.725000px;}
.x0_c00013{left:0.000000px;}
.x3_c00013{left:88.800000px;}
.x4_c00013{left:89.850000px;}
.x5_c00013{left:91.200000px;}
.x7_c00013{left:92.250000px;}
.x9_c00013{left:93.600000px;}
.x13_c00013{left:94.800000px;}
.x14_c00013{left:97.200000px;}
.x16_c00013{left:98.850000px;}
.x18_c00013{left:100.200000px;}
.x1a_c00013{left:101.700000px;}
.x1b_c00013{left:103.350000px;}
.x15_c00013{left:105.300000px;}
.x26_c00013{left:106.650000px;}
.x8_c00013{left:108.450000px;}
.x28_c00013{left:109.650000px;}
.x12_c00013{left:110.700000px;}
.x6_c00013{left:112.350000px;}
.x19_c00013{left:116.550000px;}
.x1c_c00013{left:120.150000px;}
.x27_c00013{left:124.200000px;}
.x17_c00013{left:151.650000px;}
.x2_c00013{left:222.150000px;}
.x2b_c00013{left:231.676758px;}
.x1_c00013{left:233.250000px;}
.xa_c00013{left:315.000000px;}
.xb_c00013{left:321.750000px;}
.xc_c00013{left:324.300000px;}
.xe_c00013{left:325.350000px;}
.x10_c00013{left:327.150000px;}
.x1d_c00013{left:330.450000px;}
.x1f_c00013{left:332.550000px;}
.x21_c00013{left:333.750000px;}
.x22_c00013{left:335.850000px;}
.x24_c00013{left:337.500000px;}
.x25_c00013{left:338.550000px;}
.xf_c00013{left:339.900000px;}
.x29_c00013{left:341.250000px;}
.x11_c00013{left:344.250000px;}
.x23_c00013{left:350.100000px;}
.x20_c00013{left:353.100000px;}
.xd_c00013{left:359.550000px;}
.x1e_c00013{left:382.050000px;}
.x2a_c00013{left:516.150000px;}
@media print{
.v0_c00013{vertical-align:0.000000pt;}
.ls9_c00013{letter-spacing:-8.000000pt;}
.ls7_c00013{letter-spacing:-2.666667pt;}
.ls6_c00013{letter-spacing:0.000000pt;}
.ls8_c00013{letter-spacing:2.666667pt;}
.ls0_c00013{letter-spacing:5.226667pt;}
.lsa_c00013{letter-spacing:5.333333pt;}
.ls2_c00013{letter-spacing:6.226667pt;}
.ls4_c00013{letter-spacing:6.472000pt;}
.ls3_c00013{letter-spacing:8.000000pt;}
.ls1_c00013{letter-spacing:8.533333pt;}
.ls5_c00013{letter-spacing:10.133333pt;}
.ws2_c00013{word-spacing:-20.666667pt;}
.wsa_c00013{word-spacing:-18.741333pt;}
.ws7_c00013{word-spacing:-18.040000pt;}
.ws6_c00013{word-spacing:-16.000000pt;}
.ws8_c00013{word-spacing:-14.000000pt;}
.ws4_c00013{word-spacing:-13.386667pt;}
.ws5_c00013{word-spacing:-12.586667pt;}
.ws1_c00013{word-spacing:-8.000000pt;}
.ws0_c00013{word-spacing:-7.210667pt;}
.ws9_c00013{word-spacing:-6.509333pt;}
.wsb_c00013{word-spacing:0.000000pt;}
.ws3_c00013{word-spacing:0.426667pt;}
._11_c00013{margin-left:-34.440000pt;}
._d_c00013{margin-left:-29.026667pt;}
._14_c00013{margin-left:-26.376000pt;}
._12_c00013{margin-left:-25.013333pt;}
._36_c00013{margin-left:-24.000000pt;}
._10_c00013{margin-left:-22.586667pt;}
._b_c00013{margin-left:-21.336000pt;}
._f_c00013{margin-left:-20.346667pt;}
._9_c00013{margin-left:-19.040000pt;}
._13_c00013{margin-left:-16.296000pt;}
._c_c00013{margin-left:-14.746667pt;}
._a_c00013{margin-left:-13.160000pt;}
._6_c00013{margin-left:-10.602667pt;}
._8_c00013{margin-left:-8.810667pt;}
._1c_c00013{margin-left:-7.906667pt;}
._7_c00013{margin-left:-6.794667pt;}
._3_c00013{margin-left:-5.749333pt;}
._4_c00013{margin-left:-4.853333pt;}
._28_c00013{margin-left:-3.882667pt;}
._2_c00013{margin-left:-2.837333pt;}
._33_c00013{margin-left:-1.938667pt;}
._1b_c00013{margin-left:-1.013333pt;}
._19_c00013{width:1.088000pt;}
._5_c00013{width:2.016000pt;}
._16_c00013{width:3.306667pt;}
._15_c00013{width:4.373333pt;}
._e_c00013{width:5.413333pt;}
._20_c00013{width:6.437333pt;}
._1d_c00013{width:7.850667pt;}
._1a_c00013{width:9.077333pt;}
._17_c00013{width:10.506667pt;}
._18_c00013{width:11.786667pt;}
._34_c00013{width:14.405333pt;}
._25_c00013{width:15.584000pt;}
._21_c00013{width:17.413333pt;}
._1e_c00013{width:19.776000pt;}
._0_c00013{width:21.290667pt;}
._1_c00013{width:23.509333pt;}
._1f_c00013{width:24.629333pt;}
._23_c00013{width:28.298667pt;}
._26_c00013{width:29.802667pt;}
._31_c00013{width:31.904000pt;}
._22_c00013{width:39.616000pt;}
._32_c00013{width:40.970667pt;}
._27_c00013{width:42.816000pt;}
._24_c00013{width:53.888000pt;}
._2e_c00013{width:58.256000pt;}
._2b_c00013{width:61.984000pt;}
._35_c00013{width:69.098667pt;}
._2d_c00013{width:71.088000pt;}
._2a_c00013{width:72.949333pt;}
._29_c00013{width:141.557333pt;}
._2c_c00013{width:506.464000pt;}
._2f_c00013{width:523.408000pt;}
._30_c00013{width:666.842667pt;}
.fs5_c00013{font-size:21.333333pt;}
.fs6_c00013{font-size:40.000000pt;}
.fs0_c00013{font-size:42.666667pt;}
.fs7_c00013{font-size:48.000000pt;}
.fs3_c00013{font-size:53.333333pt;}
.fs8_c00013{font-size:56.000000pt;}
.fs1_c00013{font-size:74.666667pt;}
.fs4_c00013{font-size:82.666667pt;}
.fs2_c00013{font-size:93.333333pt;}
.y0_c00013{bottom:0.000000pt;}
.y4d_c00013{bottom:2.760000pt;}
.y4c_c00013{bottom:6.425204pt;}
.y4b_c00013{bottom:31.453333pt;}
.y4a_c00013{bottom:45.853333pt;}
.y44_c00013{bottom:46.386667pt;}
.y43_c00013{bottom:62.920000pt;}
.y49_c00013{bottom:63.186667pt;}
.y42_c00013{bottom:79.453333pt;}
.y48_c00013{bottom:79.986667pt;}
.y41_c00013{bottom:95.720000pt;}
.y47_c00013{bottom:96.920000pt;}
.y40_c00013{bottom:111.853333pt;}
.y46_c00013{bottom:112.786667pt;}
.y3f_c00013{bottom:128.653333pt;}
.y45_c00013{bottom:129.186667pt;}
.y3e_c00013{bottom:144.786667pt;}
.y3d_c00013{bottom:160.786667pt;}
.y2f_c00013{bottom:161.586667pt;}
.y2e_c00013{bottom:176.653333pt;}
.y3c_c00013{bottom:177.320000pt;}
.y3b_c00013{bottom:192.920000pt;}
.y2d_c00013{bottom:193.453333pt;}
.y2c_c00013{bottom:209.053333pt;}
.y3a_c00013{bottom:210.253333pt;}
.y2b_c00013{bottom:225.586667pt;}
.y2a_c00013{bottom:240.920000pt;}
.y39_c00013{bottom:241.453333pt;}
.y29_c00013{bottom:257.053333pt;}
.y38_c00013{bottom:257.586667pt;}
.y28_c00013{bottom:272.120000pt;}
.y37_c00013{bottom:273.186667pt;}
.y27_c00013{bottom:288.520000pt;}
.y36_c00013{bottom:288.920000pt;}
.y26_c00013{bottom:303.853333pt;}
.y35_c00013{bottom:304.786667pt;}
.y34_c00013{bottom:320.386667pt;}
.y25_c00013{bottom:320.653333pt;}
.y33_c00013{bottom:336.253333pt;}
.y24_c00013{bottom:337.453333pt;}
.y23_c00013{bottom:352.386667pt;}
.y32_c00013{bottom:352.786667pt;}
.y31_c00013{bottom:367.453333pt;}
.y22_c00013{bottom:367.720000pt;}
.y21_c00013{bottom:383.720000pt;}
.y30_c00013{bottom:383.986667pt;}
.y20_c00013{bottom:400.520000pt;}
.y1f_c00013{bottom:415.720000pt;}
.y1e_c00013{bottom:432.520000pt;}
.y1d_c00013{bottom:448.120000pt;}
.y1c_c00013{bottom:463.986667pt;}
.y1b_c00013{bottom:480.520000pt;}
.y1a_c00013{bottom:496.520000pt;}
.yd_c00013{bottom:512.920000pt;}
.yc_c00013{bottom:529.186667pt;}
.y19_c00013{bottom:530.120000pt;}
.y18_c00013{bottom:544.120000pt;}
.yb_c00013{bottom:545.053333pt;}
.y17_c00013{bottom:561.186667pt;}
.ya_c00013{bottom:561.320000pt;}
.y16_c00013{bottom:576.920000pt;}
.y9_c00013{bottom:578.120000pt;}
.y15_c00013{bottom:593.320000pt;}
.y8_c00013{bottom:593.720000pt;}
.y14_c00013{bottom:609.186667pt;}
.y7_c00013{bottom:610.120000pt;}
.y13_c00013{bottom:625.453333pt;}
.y6_c00013{bottom:626.653333pt;}
.y12_c00013{bottom:641.053333pt;}
.y5_c00013{bottom:642.786667pt;}
.y11_c00013{bottom:658.120000pt;}
.y4_c00013{bottom:658.786667pt;}
.y10_c00013{bottom:673.986667pt;}
.y3_c00013{bottom:675.186667pt;}
.yf_c00013{bottom:690.520000pt;}
.y2_c00013{bottom:691.986667pt;}
.ye_c00013{bottom:708.253333pt;}
.y1_c00013{bottom:709.186667pt;}
.h9_c00013{height:11.733399pt;}
.ha_c00013{height:38.937500pt;}
.h2_c00013{height:44.714667pt;}
.h5_c00013{height:55.893333pt;}
.h7_c00013{height:56.906667pt;}
.h8_c00013{height:59.752000pt;}
.h3_c00013{height:78.250667pt;}
.h6_c00013{height:81.132812pt;}
.h4_c00013{height:97.813333pt;}
.h1_c00013{height:734.666667pt;}
.h0_c00013{height:734.866667pt;}
.w2_c00013{width:93.222667pt;}
.w1_c00013{width:497.333333pt;}
.w0_c00013{width:497.533333pt;}
.x0_c00013{left:0.000000pt;}
.x3_c00013{left:78.933333pt;}
.x4_c00013{left:79.866667pt;}
.x5_c00013{left:81.066667pt;}
.x7_c00013{left:82.000000pt;}
.x9_c00013{left:83.200000pt;}
.x13_c00013{left:84.266667pt;}
.x14_c00013{left:86.400000pt;}
.x16_c00013{left:87.866667pt;}
.x18_c00013{left:89.066667pt;}
.x1a_c00013{left:90.400000pt;}
.x1b_c00013{left:91.866667pt;}
.x15_c00013{left:93.600000pt;}
.x26_c00013{left:94.800000pt;}
.x8_c00013{left:96.400000pt;}
.x28_c00013{left:97.466667pt;}
.x12_c00013{left:98.400000pt;}
.x6_c00013{left:99.866667pt;}
.x19_c00013{left:103.600000pt;}
.x1c_c00013{left:106.800000pt;}
.x27_c00013{left:110.400000pt;}
.x17_c00013{left:134.800000pt;}
.x2_c00013{left:197.466667pt;}
.x2b_c00013{left:205.934896pt;}
.x1_c00013{left:207.333333pt;}
.xa_c00013{left:280.000000pt;}
.xb_c00013{left:286.000000pt;}
.xc_c00013{left:288.266667pt;}
.xe_c00013{left:289.200000pt;}
.x10_c00013{left:290.800000pt;}
.x1d_c00013{left:293.733333pt;}
.x1f_c00013{left:295.600000pt;}
.x21_c00013{left:296.666667pt;}
.x22_c00013{left:298.533333pt;}
.x24_c00013{left:300.000000pt;}
.x25_c00013{left:300.933333pt;}
.xf_c00013{left:302.133333pt;}
.x29_c00013{left:303.333333pt;}
.x11_c00013{left:306.000000pt;}
.x23_c00013{left:311.200000pt;}
.x20_c00013{left:313.866667pt;}
.xd_c00013{left:319.600000pt;}
.x1e_c00013{left:339.600000pt;}
.x2a_c00013{left:458.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_959b3159bcd237b693c9d243.woff2')format("woff");}.ff1_c00014{font-family:ff1_c00014;line-height:1.575000;font-style:normal;font-weight:normal;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_66807d4a47ab1380ee1df1c0.woff2')format("woff");}.ff2_c00014{font-family:ff2_c00014;line-height:1.575000;font-style:normal;font-weight:normal;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_7c7b114d6d8510036cb24ad0.woff2')format("woff");}.ff3_c00014{font-family:ff3_c00014;line-height:1.575000;font-style:normal;font-weight:normal;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_4404466374e72dfc941d0994.woff2')format("woff");}.ff4_c00014{font-family:ff4_c00014;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00014;src:url('chunks/assets/font_8c32e8fbeeab463345a87e48.woff2')format("woff");}.ff5_c00014{font-family:ff5_c00014;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00014;src:url('chunks/assets/font_e33b8b53b6b94489055c39bd.woff2')format("woff");}.ff6_c00014{font-family:ff6_c00014;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00014;src:url('chunks/assets/font_bd0d2469bc0be93737d43038.woff2')format("woff");}.ff7_c00014{font-family:ff7_c00014;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00014;src:url('chunks/assets/font_bf38d2292d66ffda73d40117.woff2')format("woff");}.ff8_c00014{font-family:ff8_c00014;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00014;src:url('chunks/assets/font_f82d4c309edb556b61b28141.woff2')format("woff");}.ff9_c00014{font-family:ff9_c00014;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00014;src:url('chunks/assets/font_a8694bc71fcd38111737e9ca.woff2')format("woff");}.ffa_c00014{font-family:ffa_c00014;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00014;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ffb_c00014{font-family:ffb_c00014;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00014{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00014{vertical-align:-73.200000px;}
.v0_c00014{vertical-align:0.000000px;}
.lsd_c00014{letter-spacing:-6.000000px;}
.lsa_c00014{letter-spacing:0.000000px;}
.ls2_c00014{letter-spacing:1.908000px;}
.ls7_c00014{letter-spacing:4.800000px;}
.ls9_c00014{letter-spacing:5.100000px;}
.ls8_c00014{letter-spacing:5.400000px;}
.ls6_c00014{letter-spacing:5.850000px;}
.lsb_c00014{letter-spacing:6.000000px;}
.ls1_c00014{letter-spacing:7.371000px;}
.ls5_c00014{letter-spacing:7.917000px;}
.ls0_c00014{letter-spacing:9.243000px;}
.ls3_c00014{letter-spacing:9.681000px;}
.lsc_c00014{letter-spacing:15.000000px;}
.ls4_c00014{letter-spacing:15.900000px;}
.sc__c00014{text-shadow:none;}
.sc0_c00014{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00014{-webkit-text-stroke:0px transparent;}
.sc0_c00014{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00014{word-spacing:-41.565000px;}
.ws4_c00014{word-spacing:-30.303000px;}
.ws3_c00014{word-spacing:-28.554000px;}
.ws2_c00014{word-spacing:-21.813000px;}
.ws0_c00014{word-spacing:-15.750000px;}
.ws5_c00014{word-spacing:-14.160000px;}
.ws9_c00014{word-spacing:-13.554000px;}
.ws8_c00014{word-spacing:-1.728000px;}
.ws7_c00014{word-spacing:-1.620000px;}
.wsa_c00014{word-spacing:0.000000px;}
.ws6_c00014{word-spacing:1.440000px;}
._1f_c00014{margin-left:-22.119000px;}
._22_c00014{margin-left:-19.068000px;}
._e_c00014{margin-left:-14.769000px;}
._1a_c00014{margin-left:-12.228000px;}
._16_c00014{margin-left:-10.431000px;}
._24_c00014{margin-left:-9.264000px;}
._6_c00014{margin-left:-8.064000px;}
._7_c00014{margin-left:-6.816000px;}
._17_c00014{margin-left:-4.950000px;}
._11_c00014{margin-left:-3.177000px;}
._a_c00014{margin-left:-1.680000px;}
._9_c00014{width:1.008000px;}
._b_c00014{width:2.064000px;}
._8_c00014{width:3.312000px;}
._c_c00014{width:4.617000px;}
._d_c00014{width:5.700000px;}
._5_c00014{width:6.867000px;}
._13_c00014{width:8.019000px;}
._0_c00014{width:9.324000px;}
._1_c00014{width:11.151000px;}
._2_c00014{width:12.600000px;}
._4_c00014{width:14.490000px;}
._1c_c00014{width:15.660000px;}
._3_c00014{width:16.884000px;}
._10_c00014{width:18.639000px;}
._19_c00014{width:20.928000px;}
._12_c00014{width:22.698000px;}
._14_c00014{width:24.900000px;}
._f_c00014{width:27.120000px;}
._23_c00014{width:31.287000px;}
._20_c00014{width:33.093000px;}
._15_c00014{width:35.766000px;}
._21_c00014{width:37.731000px;}
._18_c00014{width:38.982000px;}
._1e_c00014{width:62.160000px;}
._1d_c00014{width:84.063000px;}
._1b_c00014{width:128.907000px;}
.fc2_c00014{color:transparent;}
.fc1_c00014{color:rgb(128,128,128);}
.fc0_c00014{color:rgb(0,0,0);}
.fs1_c00014{font-size:48.000000px;}
.fs3_c00014{font-size:51.000000px;}
.fs2_c00014{font-size:54.000000px;}
.fs4_c00014{font-size:60.000000px;}
.fs0_c00014{font-size:63.000000px;}
.fs5_c00014{font-size:69.000000px;}
.fs6_c00014{font-size:105.000000px;}
.fs7_c00014{font-size:117.000000px;}
.y0_c00014{bottom:0.000000px;}
.y4f_c00014{bottom:3.105000px;}
.y4e_c00014{bottom:7.228355px;}
.y4d_c00014{bottom:37.035000px;}
.y2a_c00014{bottom:56.685000px;}
.y4c_c00014{bottom:56.985000px;}
.y4b_c00014{bottom:75.135000px;}
.y29_c00014{bottom:75.885000px;}
.y4a_c00014{bottom:93.135000px;}
.y28_c00014{bottom:93.435000px;}
.y49_c00014{bottom:110.685000px;}
.y27_c00014{bottom:111.285000px;}
.y26_c00014{bottom:129.885000px;}
.y48_c00014{bottom:147.135000px;}
.y25_c00014{bottom:147.435000px;}
.y24_c00014{bottom:164.985000px;}
.y23_c00014{bottom:183.585000px;}
.y47_c00014{bottom:202.035000px;}
.y22_c00014{bottom:203.385000px;}
.y21_c00014{bottom:220.035000px;}
.y46_c00014{bottom:238.185000px;}
.y20_c00014{bottom:238.485000px;}
.y1f_c00014{bottom:256.485000px;}
.y45_c00014{bottom:274.035000px;}
.y1e_c00014{bottom:274.635000px;}
.y44_c00014{bottom:292.485000px;}
.y1d_c00014{bottom:292.635000px;}
.y1c_c00014{bottom:310.185000px;}
.y1b_c00014{bottom:328.035000px;}
.y43_c00014{bottom:328.935000px;}
.y1a_c00014{bottom:346.185000px;}
.y19_c00014{bottom:363.735000px;}
.y42_c00014{bottom:364.485000px;}
.y18_c00014{bottom:382.035000px;}
.y41_c00014{bottom:382.335000px;}
.y17_c00014{bottom:399.585000px;}
.y40_c00014{bottom:400.485000px;}
.y16_c00014{bottom:418.035000px;}
.y3f_c00014{bottom:418.485000px;}
.y15_c00014{bottom:435.585000px;}
.y3e_c00014{bottom:436.035000px;}
.y14_c00014{bottom:453.135000px;}
.y3d_c00014{bottom:454.485000px;}
.y13_c00014{bottom:470.835000px;}
.y3c_c00014{bottom:472.185000px;}
.y12_c00014{bottom:488.385000px;}
.y3b_c00014{bottom:490.035000px;}
.y11_c00014{bottom:505.185000px;}
.y3a_c00014{bottom:507.885000px;}
.y10_c00014{bottom:524.385000px;}
.y39_c00014{bottom:526.035000px;}
.yf_c00014{bottom:542.235000px;}
.y38_c00014{bottom:544.035000px;}
.ye_c00014{bottom:560.235000px;}
.y37_c00014{bottom:561.885000px;}
.yd_c00014{bottom:578.385000px;}
.y36_c00014{bottom:580.185000px;}
.yc_c00014{bottom:596.235000px;}
.y35_c00014{bottom:598.335000px;}
.yb_c00014{bottom:614.535000px;}
.ya_c00014{bottom:632.385000px;}
.y34_c00014{bottom:634.485000px;}
.y9_c00014{bottom:650.235000px;}
.y33_c00014{bottom:651.285000px;}
.y8_c00014{bottom:668.535000px;}
.y32_c00014{bottom:670.485000px;}
.y7_c00014{bottom:686.085000px;}
.y31_c00014{bottom:687.435000px;}
.y6_c00014{bottom:702.285000px;}
.y30_c00014{bottom:705.735000px;}
.y5_c00014{bottom:721.935000px;}
.y2f_c00014{bottom:724.185000px;}
.y4_c00014{bottom:740.085000px;}
.y2e_c00014{bottom:741.735000px;}
.y3_c00014{bottom:758.385000px;}
.y2d_c00014{bottom:760.035000px;}
.y2_c00014{bottom:775.935000px;}
.y2c_c00014{bottom:777.885000px;}
.y1_c00014{bottom:795.435000px;}
.y2b_c00014{bottom:796.485000px;}
.ha_c00014{height:13.200074px;}
.hb_c00014{height:43.804688px;}
.h3_c00014{height:51.216000px;}
.h8_c00014{height:53.448000px;}
.h4_c00014{height:56.592000px;}
.h5_c00014{height:59.690918px;}
.h6_c00014{height:62.880000px;}
.h2_c00014{height:67.221000px;}
.h7_c00014{height:73.623000px;}
.h9_c00014{height:120.257563px;}
.h1_c00014{height:826.500000px;}
.h0_c00014{height:826.725000px;}
.w1_c00014{width:104.875500px;}
.w0_c00014{width:563.250000px;}
.x0_c00014{left:0.000000px;}
.x2_c00014{left:18.150000px;}
.xf_c00014{left:19.800000px;}
.x6_c00014{left:20.850000px;}
.xc_c00014{left:22.650000px;}
.xe_c00014{left:24.300000px;}
.x8_c00014{left:25.350000px;}
.x3_c00014{left:27.000000px;}
.xa_c00014{left:28.050000px;}
.x5_c00014{left:30.300000px;}
.xb_c00014{left:37.350000px;}
.xd_c00014{left:39.750000px;}
.x7_c00014{left:42.450000px;}
.x9_c00014{left:47.550000px;}
.x10_c00014{left:57.300000px;}
.x11_c00014{left:104.550000px;}
.x4_c00014{left:111.300000px;}
.x1_c00014{left:116.400000px;}
.x1f_c00014{left:233.439240px;}
.x1a_c00014{left:257.100000px;}
.x13_c00014{left:259.200000px;}
.x15_c00014{left:260.550000px;}
.x16_c00014{left:261.600000px;}
.x1d_c00014{left:262.800000px;}
.x12_c00014{left:263.850000px;}
.x19_c00014{left:272.400000px;}
.x17_c00014{left:274.950000px;}
.x18_c00014{left:276.000000px;}
.x14_c00014{left:279.750000px;}
.x1c_c00014{left:281.100000px;}
.x1b_c00014{left:291.900000px;}
.x1e_c00014{left:362.400000px;}
@media print{
.v1_c00014{vertical-align:-65.066667pt;}
.v0_c00014{vertical-align:0.000000pt;}
.lsd_c00014{letter-spacing:-5.333333pt;}
.lsa_c00014{letter-spacing:0.000000pt;}
.ls2_c00014{letter-spacing:1.696000pt;}
.ls7_c00014{letter-spacing:4.266667pt;}
.ls9_c00014{letter-spacing:4.533333pt;}
.ls8_c00014{letter-spacing:4.800000pt;}
.ls6_c00014{letter-spacing:5.200000pt;}
.lsb_c00014{letter-spacing:5.333333pt;}
.ls1_c00014{letter-spacing:6.552000pt;}
.ls5_c00014{letter-spacing:7.037333pt;}
.ls0_c00014{letter-spacing:8.216000pt;}
.ls3_c00014{letter-spacing:8.605333pt;}
.lsc_c00014{letter-spacing:13.333333pt;}
.ls4_c00014{letter-spacing:14.133333pt;}
.ws1_c00014{word-spacing:-36.946667pt;}
.ws4_c00014{word-spacing:-26.936000pt;}
.ws3_c00014{word-spacing:-25.381333pt;}
.ws2_c00014{word-spacing:-19.389333pt;}
.ws0_c00014{word-spacing:-14.000000pt;}
.ws5_c00014{word-spacing:-12.586667pt;}
.ws9_c00014{word-spacing:-12.048000pt;}
.ws8_c00014{word-spacing:-1.536000pt;}
.ws7_c00014{word-spacing:-1.440000pt;}
.wsa_c00014{word-spacing:0.000000pt;}
.ws6_c00014{word-spacing:1.280000pt;}
._1f_c00014{margin-left:-19.661333pt;}
._22_c00014{margin-left:-16.949333pt;}
._e_c00014{margin-left:-13.128000pt;}
._1a_c00014{margin-left:-10.869333pt;}
._16_c00014{margin-left:-9.272000pt;}
._24_c00014{margin-left:-8.234667pt;}
._6_c00014{margin-left:-7.168000pt;}
._7_c00014{margin-left:-6.058667pt;}
._17_c00014{margin-left:-4.400000pt;}
._11_c00014{margin-left:-2.824000pt;}
._a_c00014{margin-left:-1.493333pt;}
._9_c00014{width:0.896000pt;}
._b_c00014{width:1.834667pt;}
._8_c00014{width:2.944000pt;}
._c_c00014{width:4.104000pt;}
._d_c00014{width:5.066667pt;}
._5_c00014{width:6.104000pt;}
._13_c00014{width:7.128000pt;}
._0_c00014{width:8.288000pt;}
._1_c00014{width:9.912000pt;}
._2_c00014{width:11.200000pt;}
._4_c00014{width:12.880000pt;}
._1c_c00014{width:13.920000pt;}
._3_c00014{width:15.008000pt;}
._10_c00014{width:16.568000pt;}
._19_c00014{width:18.602667pt;}
._12_c00014{width:20.176000pt;}
._14_c00014{width:22.133333pt;}
._f_c00014{width:24.106667pt;}
._23_c00014{width:27.810667pt;}
._20_c00014{width:29.416000pt;}
._15_c00014{width:31.792000pt;}
._21_c00014{width:33.538667pt;}
._18_c00014{width:34.650667pt;}
._1e_c00014{width:55.253333pt;}
._1d_c00014{width:74.722667pt;}
._1b_c00014{width:114.584000pt;}
.fs1_c00014{font-size:42.666667pt;}
.fs3_c00014{font-size:45.333333pt;}
.fs2_c00014{font-size:48.000000pt;}
.fs4_c00014{font-size:53.333333pt;}
.fs0_c00014{font-size:56.000000pt;}
.fs5_c00014{font-size:61.333333pt;}
.fs6_c00014{font-size:93.333333pt;}
.fs7_c00014{font-size:104.000000pt;}
.y0_c00014{bottom:0.000000pt;}
.y4f_c00014{bottom:2.760000pt;}
.y4e_c00014{bottom:6.425204pt;}
.y4d_c00014{bottom:32.920000pt;}
.y2a_c00014{bottom:50.386667pt;}
.y4c_c00014{bottom:50.653333pt;}
.y4b_c00014{bottom:66.786667pt;}
.y29_c00014{bottom:67.453333pt;}
.y4a_c00014{bottom:82.786667pt;}
.y28_c00014{bottom:83.053333pt;}
.y49_c00014{bottom:98.386667pt;}
.y27_c00014{bottom:98.920000pt;}
.y26_c00014{bottom:115.453333pt;}
.y48_c00014{bottom:130.786667pt;}
.y25_c00014{bottom:131.053333pt;}
.y24_c00014{bottom:146.653333pt;}
.y23_c00014{bottom:163.186667pt;}
.y47_c00014{bottom:179.586667pt;}
.y22_c00014{bottom:180.786667pt;}
.y21_c00014{bottom:195.586667pt;}
.y46_c00014{bottom:211.720000pt;}
.y20_c00014{bottom:211.986667pt;}
.y1f_c00014{bottom:227.986667pt;}
.y45_c00014{bottom:243.586667pt;}
.y1e_c00014{bottom:244.120000pt;}
.y44_c00014{bottom:259.986667pt;}
.y1d_c00014{bottom:260.120000pt;}
.y1c_c00014{bottom:275.720000pt;}
.y1b_c00014{bottom:291.586667pt;}
.y43_c00014{bottom:292.386667pt;}
.y1a_c00014{bottom:307.720000pt;}
.y19_c00014{bottom:323.320000pt;}
.y42_c00014{bottom:323.986667pt;}
.y18_c00014{bottom:339.586667pt;}
.y41_c00014{bottom:339.853333pt;}
.y17_c00014{bottom:355.186667pt;}
.y40_c00014{bottom:355.986667pt;}
.y16_c00014{bottom:371.586667pt;}
.y3f_c00014{bottom:371.986667pt;}
.y15_c00014{bottom:387.186667pt;}
.y3e_c00014{bottom:387.586667pt;}
.y14_c00014{bottom:402.786667pt;}
.y3d_c00014{bottom:403.986667pt;}
.y13_c00014{bottom:418.520000pt;}
.y3c_c00014{bottom:419.720000pt;}
.y12_c00014{bottom:434.120000pt;}
.y3b_c00014{bottom:435.586667pt;}
.y11_c00014{bottom:449.053333pt;}
.y3a_c00014{bottom:451.453333pt;}
.y10_c00014{bottom:466.120000pt;}
.y39_c00014{bottom:467.586667pt;}
.yf_c00014{bottom:481.986667pt;}
.y38_c00014{bottom:483.586667pt;}
.ye_c00014{bottom:497.986667pt;}
.y37_c00014{bottom:499.453333pt;}
.yd_c00014{bottom:514.120000pt;}
.y36_c00014{bottom:515.720000pt;}
.yc_c00014{bottom:529.986667pt;}
.y35_c00014{bottom:531.853333pt;}
.yb_c00014{bottom:546.253333pt;}
.ya_c00014{bottom:562.120000pt;}
.y34_c00014{bottom:563.986667pt;}
.y9_c00014{bottom:577.986667pt;}
.y33_c00014{bottom:578.920000pt;}
.y8_c00014{bottom:594.253333pt;}
.y32_c00014{bottom:595.986667pt;}
.y7_c00014{bottom:609.853333pt;}
.y31_c00014{bottom:611.053333pt;}
.y6_c00014{bottom:624.253333pt;}
.y30_c00014{bottom:627.320000pt;}
.y5_c00014{bottom:641.720000pt;}
.y2f_c00014{bottom:643.720000pt;}
.y4_c00014{bottom:657.853333pt;}
.y2e_c00014{bottom:659.320000pt;}
.y3_c00014{bottom:674.120000pt;}
.y2d_c00014{bottom:675.586667pt;}
.y2_c00014{bottom:689.720000pt;}
.y2c_c00014{bottom:691.453333pt;}
.y1_c00014{bottom:707.053333pt;}
.y2b_c00014{bottom:707.986667pt;}
.ha_c00014{height:11.733399pt;}
.hb_c00014{height:38.937500pt;}
.h3_c00014{height:45.525333pt;}
.h8_c00014{height:47.509333pt;}
.h4_c00014{height:50.304000pt;}
.h5_c00014{height:53.058594pt;}
.h6_c00014{height:55.893333pt;}
.h2_c00014{height:59.752000pt;}
.h7_c00014{height:65.442667pt;}
.h9_c00014{height:106.895612pt;}
.h1_c00014{height:734.666667pt;}
.h0_c00014{height:734.866667pt;}
.w1_c00014{width:93.222667pt;}
.w0_c00014{width:500.666667pt;}
.x0_c00014{left:0.000000pt;}
.x2_c00014{left:16.133333pt;}
.xf_c00014{left:17.600000pt;}
.x6_c00014{left:18.533333pt;}
.xc_c00014{left:20.133333pt;}
.xe_c00014{left:21.600000pt;}
.x8_c00014{left:22.533333pt;}
.x3_c00014{left:24.000000pt;}
.xa_c00014{left:24.933333pt;}
.x5_c00014{left:26.933333pt;}
.xb_c00014{left:33.200000pt;}
.xd_c00014{left:35.333333pt;}
.x7_c00014{left:37.733333pt;}
.x9_c00014{left:42.266667pt;}
.x10_c00014{left:50.933333pt;}
.x11_c00014{left:92.933333pt;}
.x4_c00014{left:98.933333pt;}
.x1_c00014{left:103.466667pt;}
.x1f_c00014{left:207.501546pt;}
.x1a_c00014{left:228.533333pt;}
.x13_c00014{left:230.400000pt;}
.x15_c00014{left:231.600000pt;}
.x16_c00014{left:232.533333pt;}
.x1d_c00014{left:233.600000pt;}
.x12_c00014{left:234.533333pt;}
.x19_c00014{left:242.133333pt;}
.x17_c00014{left:244.400000pt;}
.x18_c00014{left:245.333333pt;}
.x14_c00014{left:248.666667pt;}
.x1c_c00014{left:249.866667pt;}
.x1b_c00014{left:259.466667pt;}
.x1e_c00014{left:322.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_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_3b70421289a6ef6112409463.woff2')format("woff");}.ff1_c00015{font-family:ff1_c00015;line-height:1.437000;font-style:normal;font-weight:normal;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_59df29a3c87fd2c5e2e17a46.woff2')format("woff");}.ff2_c00015{font-family:ff2_c00015;line-height:1.437000;font-style:normal;font-weight:normal;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_5357c647d7450bb63f0d41fe.woff2')format("woff");}.ff3_c00015{font-family:ff3_c00015;line-height:1.575000;font-style:normal;font-weight:normal;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_e8cd441db145eea6adacc07b.woff2')format("woff");}.ff4_c00015{font-family:ff4_c00015;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00015;src:url('chunks/assets/font_5d7450dbf849d275d3b69d78.woff2')format("woff");}.ff5_c00015{font-family:ff5_c00015;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00015;src:url('chunks/assets/font_dafffbb58efb3da1eca79f53.woff2')format("woff");}.ff6_c00015{font-family:ff6_c00015;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00015;src:url('chunks/assets/font_0f3e82e86b58c94bffa268fb.woff2')format("woff");}.ff7_c00015{font-family:ff7_c00015;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00015;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff8_c00015{font-family:ff8_c00015;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00015{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00015{vertical-align:0.000000px;}
.lsb_c00015{letter-spacing:-9.000000px;}
.ls8_c00015{letter-spacing:0.000000px;}
.ls9_c00015{letter-spacing:3.000000px;}
.ls0_c00015{letter-spacing:4.800000px;}
.lsa_c00015{letter-spacing:6.000000px;}
.ls3_c00015{letter-spacing:6.600000px;}
.ls7_c00015{letter-spacing:7.005000px;}
.ls2_c00015{letter-spacing:7.800000px;}
.ls5_c00015{letter-spacing:8.400000px;}
.ls6_c00015{letter-spacing:9.600000px;}
.ls1_c00015{letter-spacing:10.605000px;}
.ls4_c00015{letter-spacing:60.960000px;}
.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;}
}
.ws5_c00015{word-spacing:-51.258000px;}
.ws2_c00015{word-spacing:-20.340000px;}
.ws6_c00015{word-spacing:-20.295000px;}
.ws0_c00015{word-spacing:-15.060000px;}
.ws1_c00015{word-spacing:-14.160000px;}
.ws3_c00015{word-spacing:-12.888000px;}
.ws4_c00015{word-spacing:-0.300000px;}
.ws7_c00015{word-spacing:0.000000px;}
._1a_c00015{margin-left:-19.080000px;}
._16_c00015{margin-left:-15.420000px;}
._1b_c00015{margin-left:-12.780000px;}
._14_c00015{margin-left:-10.740000px;}
._21_c00015{margin-left:-8.340000px;}
._10_c00015{margin-left:-6.060000px;}
._11_c00015{margin-left:-4.620000px;}
._e_c00015{margin-left:-3.360000px;}
._c_c00015{margin-left:-1.740000px;}
._4_c00015{width:1.800000px;}
._5_c00015{width:3.000000px;}
._7_c00015{width:4.860000px;}
._b_c00015{width:5.940000px;}
._f_c00015{width:7.140000px;}
._d_c00015{width:8.580000px;}
._a_c00015{width:9.600000px;}
._12_c00015{width:10.680000px;}
._3_c00015{width:11.820000px;}
._8_c00015{width:13.260000px;}
._1d_c00015{width:15.756000px;}
._6_c00015{width:16.980000px;}
._19_c00015{width:18.300000px;}
._2_c00015{width:19.680000px;}
._0_c00015{width:20.820000px;}
._1_c00015{width:22.560000px;}
._13_c00015{width:24.180000px;}
._15_c00015{width:25.980000px;}
._18_c00015{width:27.000000px;}
._9_c00015{width:28.440000px;}
._1c_c00015{width:33.420000px;}
._1f_c00015{width:37.080000px;}
._20_c00015{width:39.600000px;}
._22_c00015{width:42.960000px;}
._23_c00015{width:60.780000px;}
._17_c00015{width:86.340000px;}
._1e_c00015{width:138.180000px;}
.fc2_c00015{color:transparent;}
.fc1_c00015{color:rgb(128,128,128);}
.fc0_c00015{color:rgb(0,0,0);}
.fs1_c00015{font-size:45.000000px;}
.fs2_c00015{font-size:48.000000px;}
.fs3_c00015{font-size:54.000000px;}
.fs4_c00015{font-size:57.000000px;}
.fs0_c00015{font-size:60.000000px;}
.y0_c00015{bottom:0.000000px;}
.y56_c00015{bottom:3.105000px;}
.y55_c00015{bottom:7.228355px;}
.y54_c00015{bottom:26.685000px;}
.y2a_c00015{bottom:43.785000px;}
.y53_c00015{bottom:45.585000px;}
.y52_c00015{bottom:61.635000px;}
.y29_c00015{bottom:62.385000px;}
.y51_c00015{bottom:80.235000px;}
.y28_c00015{bottom:80.535000px;}
.y50_c00015{bottom:98.835000px;}
.y27_c00015{bottom:99.435000px;}
.y4f_c00015{bottom:117.435000px;}
.y26_c00015{bottom:118.035000px;}
.y4e_c00015{bottom:134.685000px;}
.y25_c00015{bottom:136.035000px;}
.y4d_c00015{bottom:153.435000px;}
.y24_c00015{bottom:154.485000px;}
.y4c_c00015{bottom:172.035000px;}
.y23_c00015{bottom:172.485000px;}
.y4b_c00015{bottom:190.035000px;}
.y22_c00015{bottom:191.235000px;}
.y4a_c00015{bottom:207.885000px;}
.y21_c00015{bottom:208.935000px;}
.y49_c00015{bottom:225.735000px;}
.y20_c00015{bottom:227.385000px;}
.y48_c00015{bottom:244.335000px;}
.y1f_c00015{bottom:245.685000px;}
.y47_c00015{bottom:262.185000px;}
.y1e_c00015{bottom:262.785000px;}
.y46_c00015{bottom:280.035000px;}
.y1d_c00015{bottom:280.485000px;}
.y45_c00015{bottom:296.535000px;}
.y1c_c00015{bottom:298.335000px;}
.y44_c00015{bottom:315.885000px;}
.y1b_c00015{bottom:316.485000px;}
.y43_c00015{bottom:334.035000px;}
.y1a_c00015{bottom:335.685000px;}
.y42_c00015{bottom:352.335000px;}
.y19_c00015{bottom:352.935000px;}
.y41_c00015{bottom:369.435000px;}
.y18_c00015{bottom:370.935000px;}
.y40_c00015{bottom:387.735000px;}
.y17_c00015{bottom:389.085000px;}
.y3f_c00015{bottom:406.035000px;}
.y16_c00015{bottom:406.335000px;}
.y3e_c00015{bottom:423.885000px;}
.y15_c00015{bottom:424.935000px;}
.y3d_c00015{bottom:441.735000px;}
.y14_c00015{bottom:442.335000px;}
.y3c_c00015{bottom:460.335000px;}
.y13_c00015{bottom:461.235000px;}
.y12_c00015{bottom:478.785000px;}
.y3b_c00015{bottom:478.935000px;}
.y3a_c00015{bottom:496.785000px;}
.y11_c00015{bottom:497.385000px;}
.y39_c00015{bottom:514.635000px;}
.y10_c00015{bottom:515.685000px;}
.y38_c00015{bottom:532.485000px;}
.yf_c00015{bottom:534.885000px;}
.ye_c00015{bottom:551.385000px;}
.yd_c00015{bottom:568.935000px;}
.y37_c00015{bottom:569.685000px;}
.y36_c00015{bottom:587.235000px;}
.yc_c00015{bottom:589.485000px;}
.y35_c00015{bottom:605.835000px;}
.yb_c00015{bottom:606.135000px;}
.ya_c00015{bottom:624.285000px;}
.y34_c00015{bottom:624.735000px;}
.y9_c00015{bottom:641.835000px;}
.y33_c00015{bottom:643.185000px;}
.y8_c00015{bottom:660.735000px;}
.y32_c00015{bottom:662.385000px;}
.y7_c00015{bottom:678.735000px;}
.y31_c00015{bottom:679.635000px;}
.y6_c00015{bottom:696.885000px;}
.y30_c00015{bottom:697.935000px;}
.y2f_c00015{bottom:715.185000px;}
.y5_c00015{bottom:715.485000px;}
.y4_c00015{bottom:733.335000px;}
.y2e_c00015{bottom:733.935000px;}
.y3_c00015{bottom:751.635000px;}
.y2d_c00015{bottom:751.935000px;}
.y2_c00015{bottom:769.485000px;}
.y2c_c00015{bottom:769.785000px;}
.y2b_c00015{bottom:786.735000px;}
.y1_c00015{bottom:787.335000px;}
.h5_c00015{height:13.200074px;}
.h6_c00015{height:43.804688px;}
.h4_c00015{height:59.736000px;}
.h2_c00015{height:62.880000px;}
.h3_c00015{height:64.020000px;}
.h1_c00015{height:826.500000px;}
.h0_c00015{height:826.725000px;}
.w2_c00015{width:104.875500px;}
.w1_c00015{width:559.500000px;}
.w0_c00015{width:559.725000px;}
.x0_c00015{left:0.000000px;}
.x6_c00015{left:92.850000px;}
.x8_c00015{left:96.900000px;}
.x4_c00015{left:98.250000px;}
.x3_c00015{left:100.200000px;}
.x9_c00015{left:104.400000px;}
.xb_c00015{left:108.000000px;}
.xc_c00015{left:110.700000px;}
.x7_c00015{left:114.450000px;}
.x5_c00015{left:115.500000px;}
.xa_c00015{left:116.550000px;}
.x2_c00015{left:118.800000px;}
.x19_c00015{left:231.676758px;}
.x1_c00015{left:248.400000px;}
.x12_c00015{left:323.700000px;}
.xd_c00015{left:325.350000px;}
.x15_c00015{left:329.400000px;}
.x13_c00015{left:330.450000px;}
.x11_c00015{left:332.400000px;}
.x10_c00015{left:333.450000px;}
.xe_c00015{left:334.500000px;}
.x17_c00015{left:339.600000px;}
.xf_c00015{left:345.000000px;}
.x14_c00015{left:346.050000px;}
.x16_c00015{left:347.700000px;}
.x18_c00015{left:502.650000px;}
@media print{
.v0_c00015{vertical-align:0.000000pt;}
.lsb_c00015{letter-spacing:-8.000000pt;}
.ls8_c00015{letter-spacing:0.000000pt;}
.ls9_c00015{letter-spacing:2.666667pt;}
.ls0_c00015{letter-spacing:4.266667pt;}
.lsa_c00015{letter-spacing:5.333333pt;}
.ls3_c00015{letter-spacing:5.866667pt;}
.ls7_c00015{letter-spacing:6.226667pt;}
.ls2_c00015{letter-spacing:6.933333pt;}
.ls5_c00015{letter-spacing:7.466667pt;}
.ls6_c00015{letter-spacing:8.533333pt;}
.ls1_c00015{letter-spacing:9.426667pt;}
.ls4_c00015{letter-spacing:54.186667pt;}
.ws5_c00015{word-spacing:-45.562667pt;}
.ws2_c00015{word-spacing:-18.080000pt;}
.ws6_c00015{word-spacing:-18.040000pt;}
.ws0_c00015{word-spacing:-13.386667pt;}
.ws1_c00015{word-spacing:-12.586667pt;}
.ws3_c00015{word-spacing:-11.456000pt;}
.ws4_c00015{word-spacing:-0.266667pt;}
.ws7_c00015{word-spacing:0.000000pt;}
._1a_c00015{margin-left:-16.960000pt;}
._16_c00015{margin-left:-13.706667pt;}
._1b_c00015{margin-left:-11.360000pt;}
._14_c00015{margin-left:-9.546667pt;}
._21_c00015{margin-left:-7.413333pt;}
._10_c00015{margin-left:-5.386667pt;}
._11_c00015{margin-left:-4.106667pt;}
._e_c00015{margin-left:-2.986667pt;}
._c_c00015{margin-left:-1.546667pt;}
._4_c00015{width:1.600000pt;}
._5_c00015{width:2.666667pt;}
._7_c00015{width:4.320000pt;}
._b_c00015{width:5.280000pt;}
._f_c00015{width:6.346667pt;}
._d_c00015{width:7.626667pt;}
._a_c00015{width:8.533333pt;}
._12_c00015{width:9.493333pt;}
._3_c00015{width:10.506667pt;}
._8_c00015{width:11.786667pt;}
._1d_c00015{width:14.005333pt;}
._6_c00015{width:15.093333pt;}
._19_c00015{width:16.266667pt;}
._2_c00015{width:17.493333pt;}
._0_c00015{width:18.506667pt;}
._1_c00015{width:20.053333pt;}
._13_c00015{width:21.493333pt;}
._15_c00015{width:23.093333pt;}
._18_c00015{width:24.000000pt;}
._9_c00015{width:25.280000pt;}
._1c_c00015{width:29.706667pt;}
._1f_c00015{width:32.960000pt;}
._20_c00015{width:35.200000pt;}
._22_c00015{width:38.186667pt;}
._23_c00015{width:54.026667pt;}
._17_c00015{width:76.746667pt;}
._1e_c00015{width:122.826667pt;}
.fs1_c00015{font-size:40.000000pt;}
.fs2_c00015{font-size:42.666667pt;}
.fs3_c00015{font-size:48.000000pt;}
.fs4_c00015{font-size:50.666667pt;}
.fs0_c00015{font-size:53.333333pt;}
.y0_c00015{bottom:0.000000pt;}
.y56_c00015{bottom:2.760000pt;}
.y55_c00015{bottom:6.425204pt;}
.y54_c00015{bottom:23.720000pt;}
.y2a_c00015{bottom:38.920000pt;}
.y53_c00015{bottom:40.520000pt;}
.y52_c00015{bottom:54.786667pt;}
.y29_c00015{bottom:55.453333pt;}
.y51_c00015{bottom:71.320000pt;}
.y28_c00015{bottom:71.586667pt;}
.y50_c00015{bottom:87.853333pt;}
.y27_c00015{bottom:88.386667pt;}
.y4f_c00015{bottom:104.386667pt;}
.y26_c00015{bottom:104.920000pt;}
.y4e_c00015{bottom:119.720000pt;}
.y25_c00015{bottom:120.920000pt;}
.y4d_c00015{bottom:136.386667pt;}
.y24_c00015{bottom:137.320000pt;}
.y4c_c00015{bottom:152.920000pt;}
.y23_c00015{bottom:153.320000pt;}
.y4b_c00015{bottom:168.920000pt;}
.y22_c00015{bottom:169.986667pt;}
.y4a_c00015{bottom:184.786667pt;}
.y21_c00015{bottom:185.720000pt;}
.y49_c00015{bottom:200.653333pt;}
.y20_c00015{bottom:202.120000pt;}
.y48_c00015{bottom:217.186667pt;}
.y1f_c00015{bottom:218.386667pt;}
.y47_c00015{bottom:233.053333pt;}
.y1e_c00015{bottom:233.586667pt;}
.y46_c00015{bottom:248.920000pt;}
.y1d_c00015{bottom:249.320000pt;}
.y45_c00015{bottom:263.586667pt;}
.y1c_c00015{bottom:265.186667pt;}
.y44_c00015{bottom:280.786667pt;}
.y1b_c00015{bottom:281.320000pt;}
.y43_c00015{bottom:296.920000pt;}
.y1a_c00015{bottom:298.386667pt;}
.y42_c00015{bottom:313.186667pt;}
.y19_c00015{bottom:313.720000pt;}
.y41_c00015{bottom:328.386667pt;}
.y18_c00015{bottom:329.720000pt;}
.y40_c00015{bottom:344.653333pt;}
.y17_c00015{bottom:345.853333pt;}
.y3f_c00015{bottom:360.920000pt;}
.y16_c00015{bottom:361.186667pt;}
.y3e_c00015{bottom:376.786667pt;}
.y15_c00015{bottom:377.720000pt;}
.y3d_c00015{bottom:392.653333pt;}
.y14_c00015{bottom:393.186667pt;}
.y3c_c00015{bottom:409.186667pt;}
.y13_c00015{bottom:409.986667pt;}
.y12_c00015{bottom:425.586667pt;}
.y3b_c00015{bottom:425.720000pt;}
.y3a_c00015{bottom:441.586667pt;}
.y11_c00015{bottom:442.120000pt;}
.y39_c00015{bottom:457.453333pt;}
.y10_c00015{bottom:458.386667pt;}
.y38_c00015{bottom:473.320000pt;}
.yf_c00015{bottom:475.453333pt;}
.ye_c00015{bottom:490.120000pt;}
.yd_c00015{bottom:505.720000pt;}
.y37_c00015{bottom:506.386667pt;}
.y36_c00015{bottom:521.986667pt;}
.yc_c00015{bottom:523.986667pt;}
.y35_c00015{bottom:538.520000pt;}
.yb_c00015{bottom:538.786667pt;}
.ya_c00015{bottom:554.920000pt;}
.y34_c00015{bottom:555.320000pt;}
.y9_c00015{bottom:570.520000pt;}
.y33_c00015{bottom:571.720000pt;}
.y8_c00015{bottom:587.320000pt;}
.y32_c00015{bottom:588.786667pt;}
.y7_c00015{bottom:603.320000pt;}
.y31_c00015{bottom:604.120000pt;}
.y6_c00015{bottom:619.453333pt;}
.y30_c00015{bottom:620.386667pt;}
.y2f_c00015{bottom:635.720000pt;}
.y5_c00015{bottom:635.986667pt;}
.y4_c00015{bottom:651.853333pt;}
.y2e_c00015{bottom:652.386667pt;}
.y3_c00015{bottom:668.120000pt;}
.y2d_c00015{bottom:668.386667pt;}
.y2_c00015{bottom:683.986667pt;}
.y2c_c00015{bottom:684.253333pt;}
.y2b_c00015{bottom:699.320000pt;}
.y1_c00015{bottom:699.853333pt;}
.h5_c00015{height:11.733399pt;}
.h6_c00015{height:38.937500pt;}
.h4_c00015{height:53.098667pt;}
.h2_c00015{height:55.893333pt;}
.h3_c00015{height:56.906667pt;}
.h1_c00015{height:734.666667pt;}
.h0_c00015{height:734.866667pt;}
.w2_c00015{width:93.222667pt;}
.w1_c00015{width:497.333333pt;}
.w0_c00015{width:497.533333pt;}
.x0_c00015{left:0.000000pt;}
.x6_c00015{left:82.533333pt;}
.x8_c00015{left:86.133333pt;}
.x4_c00015{left:87.333333pt;}
.x3_c00015{left:89.066667pt;}
.x9_c00015{left:92.800000pt;}
.xb_c00015{left:96.000000pt;}
.xc_c00015{left:98.400000pt;}
.x7_c00015{left:101.733333pt;}
.x5_c00015{left:102.666667pt;}
.xa_c00015{left:103.600000pt;}
.x2_c00015{left:105.600000pt;}
.x19_c00015{left:205.934896pt;}
.x1_c00015{left:220.800000pt;}
.x12_c00015{left:287.733333pt;}
.xd_c00015{left:289.200000pt;}
.x15_c00015{left:292.800000pt;}
.x13_c00015{left:293.733333pt;}
.x11_c00015{left:295.466667pt;}
.x10_c00015{left:296.400000pt;}
.xe_c00015{left:297.333333pt;}
.x17_c00015{left:301.866667pt;}
.xf_c00015{left:306.666667pt;}
.x14_c00015{left:307.600000pt;}
.x16_c00015{left:309.066667pt;}
.x18_c00015{left:446.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_be183a692e393d385ce2ef15.woff2')format("woff");}.ff1_c00016{font-family:ff1_c00016;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00016;src:url('chunks/assets/font_28e48dcabed763dab6623083.woff2')format("woff");}.ff2_c00016{font-family:ff2_c00016;line-height:1.575000;font-style:normal;font-weight:normal;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_ad2d3d5e7d1ce5b03149bffd.woff2')format("woff");}.ff3_c00016{font-family:ff3_c00016;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00016;src:url('chunks/assets/font_ae668a6cc7e6e636665612c7.woff2')format("woff");}.ff4_c00016{font-family:ff4_c00016;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00016;src:url('chunks/assets/font_57213182b424aa096b69c9e1.woff2')format("woff");}.ff5_c00016{font-family:ff5_c00016;line-height:1.575000;font-style:normal;font-weight:normal;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_a5e5c02708d5335ea46be673.woff2')format("woff");}.ff6_c00016{font-family:ff6_c00016;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00016;src:url('chunks/assets/font_acc857029cbf23929d7fb996.woff2')format("woff");}.ff7_c00016{font-family:ff7_c00016;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00016;src:url('chunks/assets/font_77c886c0d6d30ee3c016ab9f.woff2')format("woff");}.ff8_c00016{font-family:ff8_c00016;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00016;src:url('chunks/assets/font_ad31e104cd41173a0b642e94.woff2')format("woff");}.ff9_c00016{font-family:ff9_c00016;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00016;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ffa_c00016{font-family:ffa_c00016;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00016{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00016{vertical-align:0.000000px;}
.ls10_c00016{letter-spacing:-9.000000px;}
.ls11_c00016{letter-spacing:-3.000000px;}
.lsd_c00016{letter-spacing:0.000000px;}
.ls0_c00016{letter-spacing:0.450000px;}
.lsf_c00016{letter-spacing:3.000000px;}
.ls2_c00016{letter-spacing:4.200000px;}
.ls6_c00016{letter-spacing:5.400000px;}
.lse_c00016{letter-spacing:6.000000px;}
.ls7_c00016{letter-spacing:6.300000px;}
.ls5_c00016{letter-spacing:7.605000px;}
.lsa_c00016{letter-spacing:8.547000px;}
.ls4_c00016{letter-spacing:9.000000px;}
.ls1_c00016{letter-spacing:9.747000px;}
.lsb_c00016{letter-spacing:10.347000px;}
.ls8_c00016{letter-spacing:10.800000px;}
.lsc_c00016{letter-spacing:12.600000px;}
.ls9_c00016{letter-spacing:13.947000px;}
.ls3_c00016{letter-spacing:30.600000px;}
.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;}
}
.wsa_c00016{word-spacing:-80.370000px;}
.ws7_c00016{word-spacing:-30.303000px;}
.ws0_c00016{word-spacing:-21.813000px;}
.ws5_c00016{word-spacing:-20.295000px;}
.ws9_c00016{word-spacing:-19.623000px;}
.ws2_c00016{word-spacing:-18.000000px;}
.ws3_c00016{word-spacing:-15.750000px;}
.ws1_c00016{word-spacing:-15.060000px;}
.ws6_c00016{word-spacing:-14.160000px;}
.ws8_c00016{word-spacing:-12.048000px;}
.ws4_c00016{word-spacing:-1.320000px;}
.wsb_c00016{word-spacing:0.000000px;}
._1d_c00016{margin-left:-19.320000px;}
._20_c00016{margin-left:-15.000000px;}
._1c_c00016{margin-left:-13.740000px;}
._18_c00016{margin-left:-11.100000px;}
._11_c00016{margin-left:-10.092000px;}
._10_c00016{margin-left:-8.892000px;}
._12_c00016{margin-left:-7.500000px;}
._14_c00016{margin-left:-6.300000px;}
._16_c00016{margin-left:-4.491000px;}
._f_c00016{margin-left:-3.420000px;}
._13_c00016{margin-left:-2.340000px;}
._c_c00016{margin-left:-1.020000px;}
._d_c00016{width:1.620000px;}
._8_c00016{width:3.540000px;}
._a_c00016{width:4.860000px;}
._5_c00016{width:5.940000px;}
._9_c00016{width:6.960000px;}
._6_c00016{width:8.040000px;}
._b_c00016{width:9.540000px;}
._15_c00016{width:10.800000px;}
._0_c00016{width:12.000000px;}
._1_c00016{width:13.440000px;}
._17_c00016{width:16.080000px;}
._4_c00016{width:17.460000px;}
._3_c00016{width:18.660000px;}
._2_c00016{width:20.580000px;}
._1f_c00016{width:22.860000px;}
._22_c00016{width:24.060000px;}
._e_c00016{width:25.620000px;}
._19_c00016{width:29.220000px;}
._1e_c00016{width:30.960000px;}
._23_c00016{width:34.320000px;}
._1a_c00016{width:36.300000px;}
._24_c00016{width:38.340000px;}
._1b_c00016{width:68.028000px;}
._21_c00016{width:147.420000px;}
._25_c00016{width:163.635000px;}
._7_c00016{width:340.620000px;}
.fc2_c00016{color:transparent;}
.fc1_c00016{color:rgb(128,128,128);}
.fc0_c00016{color:rgb(0,0,0);}
.fs4_c00016{font-size:24.000000px;}
.fs2_c00016{font-size:45.000000px;}
.fs3_c00016{font-size:48.000000px;}
.fs5_c00016{font-size:57.000000px;}
.fs0_c00016{font-size:60.000000px;}
.fs1_c00016{font-size:63.000000px;}
.fs6_c00016{font-size:105.000000px;}
.y0_c00016{bottom:0.000000px;}
.y57_c00016{bottom:3.105000px;}
.y56_c00016{bottom:7.228363px;}
.y55_c00016{bottom:29.400000px;}
.y54_c00016{bottom:48.900000px;}
.y2a_c00016{bottom:53.250000px;}
.y53_c00016{bottom:68.400000px;}
.y29_c00016{bottom:69.900000px;}
.y52_c00016{bottom:88.200000px;}
.y28_c00016{bottom:88.650000px;}
.y51_c00016{bottom:104.700000px;}
.y27_c00016{bottom:107.250000px;}
.y50_c00016{bottom:123.300000px;}
.y26_c00016{bottom:125.100000px;}
.y4f_c00016{bottom:141.450000px;}
.y25_c00016{bottom:142.050000px;}
.y4e_c00016{bottom:159.600000px;}
.y24_c00016{bottom:161.550000px;}
.y4d_c00016{bottom:176.850000px;}
.y23_c00016{bottom:178.500000px;}
.y4c_c00016{bottom:196.050000px;}
.y22_c00016{bottom:196.650000px;}
.y4b_c00016{bottom:214.050000px;}
.y21_c00016{bottom:215.700000px;}
.y4a_c00016{bottom:232.500000px;}
.y20_c00016{bottom:233.100000px;}
.y49_c00016{bottom:250.050000px;}
.y1f_c00016{bottom:251.100000px;}
.y48_c00016{bottom:268.650000px;}
.y1e_c00016{bottom:269.700000px;}
.y47_c00016{bottom:286.200000px;}
.y1d_c00016{bottom:287.550000px;}
.y1c_c00016{bottom:304.050000px;}
.y46_c00016{bottom:304.200000px;}
.y45_c00016{bottom:322.650000px;}
.y1b_c00016{bottom:323.700000px;}
.y44_c00016{bottom:340.500000px;}
.y1a_c00016{bottom:341.250000px;}
.y43_c00016{bottom:358.800000px;}
.y19_c00016{bottom:359.700000px;}
.y42_c00016{bottom:376.650000px;}
.y18_c00016{bottom:377.250000px;}
.y41_c00016{bottom:394.800000px;}
.y17_c00016{bottom:395.100000px;}
.y16_c00016{bottom:413.400000px;}
.y40_c00016{bottom:413.700000px;}
.y15_c00016{bottom:430.950000px;}
.y3f_c00016{bottom:431.700000px;}
.y14_c00016{bottom:448.500000px;}
.y3e_c00016{bottom:449.250000px;}
.y13_c00016{bottom:465.150000px;}
.y3d_c00016{bottom:467.400000px;}
.y12_c00016{bottom:482.700000px;}
.y3c_c00016{bottom:486.000000px;}
.y11_c00016{bottom:501.900000px;}
.y3b_c00016{bottom:503.250000px;}
.y10_c00016{bottom:519.750000px;}
.y3a_c00016{bottom:522.000000px;}
.yf_c00016{bottom:537.000000px;}
.y39_c00016{bottom:539.400000px;}
.ye_c00016{bottom:555.150000px;}
.y38_c00016{bottom:557.850000px;}
.yd_c00016{bottom:574.200000px;}
.y37_c00016{bottom:576.000000px;}
.yc_c00016{bottom:591.750000px;}
.y36_c00016{bottom:594.900000px;}
.y35_c00016{bottom:607.800000px;}
.yb_c00016{bottom:609.900000px;}
.ya_c00016{bottom:628.200000px;}
.y34_c00016{bottom:630.150000px;}
.y9_c00016{bottom:645.750000px;}
.y33_c00016{bottom:648.600000px;}
.y8_c00016{bottom:663.600000px;}
.y32_c00016{bottom:666.450000px;}
.y7_c00016{bottom:682.050000px;}
.y31_c00016{bottom:683.100000px;}
.y6_c00016{bottom:700.650000px;}
.y30_c00016{bottom:702.600000px;}
.y5_c00016{bottom:717.300000px;}
.y2f_c00016{bottom:720.600000px;}
.y4_c00016{bottom:735.150000px;}
.y2e_c00016{bottom:739.050000px;}
.y3_c00016{bottom:753.600000px;}
.y2d_c00016{bottom:756.000000px;}
.y2_c00016{bottom:771.300000px;}
.y2c_c00016{bottom:774.900000px;}
.y1_c00016{bottom:789.300000px;}
.y2b_c00016{bottom:794.100000px;}
.h6_c00016{height:13.200074px;}
.h7_c00016{height:43.804688px;}
.h2_c00016{height:62.880000px;}
.h4_c00016{height:64.020000px;}
.h3_c00016{height:67.221000px;}
.h5_c00016{height:110.040000px;}
.h1_c00016{height:820.500000px;}
.h0_c00016{height:820.800000px;}
.w2_c00016{width:104.875500px;}
.w1_c00016{width:558.750000px;}
.w0_c00016{width:558.900000px;}
.x0_c00016{left:0.000000px;}
.x8_c00016{left:24.600000px;}
.xc_c00016{left:25.950000px;}
.x6_c00016{left:27.000000px;}
.x4_c00016{left:28.950000px;}
.x3_c00016{left:30.000000px;}
.x2_c00016{left:31.050000px;}
.x7_c00016{left:41.550000px;}
.xd_c00016{left:42.750000px;}
.x5_c00016{left:44.250000px;}
.x9_c00016{left:45.900000px;}
.xb_c00016{left:57.750000px;}
.xa_c00016{left:64.800000px;}
.x1_c00016{left:125.550000px;}
.x1c_c00016{left:231.264267px;}
.x1a_c00016{left:258.150000px;}
.x17_c00016{left:259.500000px;}
.x12_c00016{left:261.150000px;}
.x15_c00016{left:262.800000px;}
.x10_c00016{left:263.850000px;}
.xe_c00016{left:267.000000px;}
.x16_c00016{left:273.600000px;}
.x19_c00016{left:275.400000px;}
.xf_c00016{left:278.100000px;}
.x13_c00016{left:280.500000px;}
.x11_c00016{left:281.700000px;}
.x14_c00016{left:286.800000px;}
.x18_c00016{left:289.200000px;}
.x1b_c00016{left:369.450000px;}
@media print{
.v0_c00016{vertical-align:0.000000pt;}
.ls10_c00016{letter-spacing:-8.000000pt;}
.ls11_c00016{letter-spacing:-2.666667pt;}
.lsd_c00016{letter-spacing:0.000000pt;}
.ls0_c00016{letter-spacing:0.400000pt;}
.lsf_c00016{letter-spacing:2.666667pt;}
.ls2_c00016{letter-spacing:3.733333pt;}
.ls6_c00016{letter-spacing:4.800000pt;}
.lse_c00016{letter-spacing:5.333333pt;}
.ls7_c00016{letter-spacing:5.600000pt;}
.ls5_c00016{letter-spacing:6.760000pt;}
.lsa_c00016{letter-spacing:7.597333pt;}
.ls4_c00016{letter-spacing:8.000000pt;}
.ls1_c00016{letter-spacing:8.664000pt;}
.lsb_c00016{letter-spacing:9.197333pt;}
.ls8_c00016{letter-spacing:9.600000pt;}
.lsc_c00016{letter-spacing:11.200000pt;}
.ls9_c00016{letter-spacing:12.397333pt;}
.ls3_c00016{letter-spacing:27.200000pt;}
.wsa_c00016{word-spacing:-71.440000pt;}
.ws7_c00016{word-spacing:-26.936000pt;}
.ws0_c00016{word-spacing:-19.389333pt;}
.ws5_c00016{word-spacing:-18.040000pt;}
.ws9_c00016{word-spacing:-17.442667pt;}
.ws2_c00016{word-spacing:-16.000000pt;}
.ws3_c00016{word-spacing:-14.000000pt;}
.ws1_c00016{word-spacing:-13.386667pt;}
.ws6_c00016{word-spacing:-12.586667pt;}
.ws8_c00016{word-spacing:-10.709333pt;}
.ws4_c00016{word-spacing:-1.173333pt;}
.wsb_c00016{word-spacing:0.000000pt;}
._1d_c00016{margin-left:-17.173333pt;}
._20_c00016{margin-left:-13.333333pt;}
._1c_c00016{margin-left:-12.213333pt;}
._18_c00016{margin-left:-9.866667pt;}
._11_c00016{margin-left:-8.970667pt;}
._10_c00016{margin-left:-7.904000pt;}
._12_c00016{margin-left:-6.666667pt;}
._14_c00016{margin-left:-5.600000pt;}
._16_c00016{margin-left:-3.992000pt;}
._f_c00016{margin-left:-3.040000pt;}
._13_c00016{margin-left:-2.080000pt;}
._c_c00016{margin-left:-0.906667pt;}
._d_c00016{width:1.440000pt;}
._8_c00016{width:3.146667pt;}
._a_c00016{width:4.320000pt;}
._5_c00016{width:5.280000pt;}
._9_c00016{width:6.186667pt;}
._6_c00016{width:7.146667pt;}
._b_c00016{width:8.480000pt;}
._15_c00016{width:9.600000pt;}
._0_c00016{width:10.666667pt;}
._1_c00016{width:11.946667pt;}
._17_c00016{width:14.293333pt;}
._4_c00016{width:15.520000pt;}
._3_c00016{width:16.586667pt;}
._2_c00016{width:18.293333pt;}
._1f_c00016{width:20.320000pt;}
._22_c00016{width:21.386667pt;}
._e_c00016{width:22.773333pt;}
._19_c00016{width:25.973333pt;}
._1e_c00016{width:27.520000pt;}
._23_c00016{width:30.506667pt;}
._1a_c00016{width:32.266667pt;}
._24_c00016{width:34.080000pt;}
._1b_c00016{width:60.469333pt;}
._21_c00016{width:131.040000pt;}
._25_c00016{width:145.453333pt;}
._7_c00016{width:302.773333pt;}
.fs4_c00016{font-size:21.333333pt;}
.fs2_c00016{font-size:40.000000pt;}
.fs3_c00016{font-size:42.666667pt;}
.fs5_c00016{font-size:50.666667pt;}
.fs0_c00016{font-size:53.333333pt;}
.fs1_c00016{font-size:56.000000pt;}
.fs6_c00016{font-size:93.333333pt;}
.y0_c00016{bottom:0.000000pt;}
.y57_c00016{bottom:2.760000pt;}
.y56_c00016{bottom:6.425212pt;}
.y55_c00016{bottom:26.133333pt;}
.y54_c00016{bottom:43.466667pt;}
.y2a_c00016{bottom:47.333333pt;}
.y53_c00016{bottom:60.800000pt;}
.y29_c00016{bottom:62.133333pt;}
.y52_c00016{bottom:78.400000pt;}
.y28_c00016{bottom:78.800000pt;}
.y51_c00016{bottom:93.066667pt;}
.y27_c00016{bottom:95.333333pt;}
.y50_c00016{bottom:109.600000pt;}
.y26_c00016{bottom:111.200000pt;}
.y4f_c00016{bottom:125.733333pt;}
.y25_c00016{bottom:126.266667pt;}
.y4e_c00016{bottom:141.866667pt;}
.y24_c00016{bottom:143.600000pt;}
.y4d_c00016{bottom:157.200000pt;}
.y23_c00016{bottom:158.666667pt;}
.y4c_c00016{bottom:174.266667pt;}
.y22_c00016{bottom:174.800000pt;}
.y4b_c00016{bottom:190.266667pt;}
.y21_c00016{bottom:191.733333pt;}
.y4a_c00016{bottom:206.666667pt;}
.y20_c00016{bottom:207.200000pt;}
.y49_c00016{bottom:222.266667pt;}
.y1f_c00016{bottom:223.200000pt;}
.y48_c00016{bottom:238.800000pt;}
.y1e_c00016{bottom:239.733333pt;}
.y47_c00016{bottom:254.400000pt;}
.y1d_c00016{bottom:255.600000pt;}
.y1c_c00016{bottom:270.266667pt;}
.y46_c00016{bottom:270.400000pt;}
.y45_c00016{bottom:286.800000pt;}
.y1b_c00016{bottom:287.733333pt;}
.y44_c00016{bottom:302.666667pt;}
.y1a_c00016{bottom:303.333333pt;}
.y43_c00016{bottom:318.933333pt;}
.y19_c00016{bottom:319.733333pt;}
.y42_c00016{bottom:334.800000pt;}
.y18_c00016{bottom:335.333333pt;}
.y41_c00016{bottom:350.933333pt;}
.y17_c00016{bottom:351.200000pt;}
.y16_c00016{bottom:367.466667pt;}
.y40_c00016{bottom:367.733333pt;}
.y15_c00016{bottom:383.066667pt;}
.y3f_c00016{bottom:383.733333pt;}
.y14_c00016{bottom:398.666667pt;}
.y3e_c00016{bottom:399.333333pt;}
.y13_c00016{bottom:413.466667pt;}
.y3d_c00016{bottom:415.466667pt;}
.y12_c00016{bottom:429.066667pt;}
.y3c_c00016{bottom:432.000000pt;}
.y11_c00016{bottom:446.133333pt;}
.y3b_c00016{bottom:447.333333pt;}
.y10_c00016{bottom:462.000000pt;}
.y3a_c00016{bottom:464.000000pt;}
.yf_c00016{bottom:477.333333pt;}
.y39_c00016{bottom:479.466667pt;}
.ye_c00016{bottom:493.466667pt;}
.y38_c00016{bottom:495.866667pt;}
.yd_c00016{bottom:510.400000pt;}
.y37_c00016{bottom:512.000000pt;}
.yc_c00016{bottom:526.000000pt;}
.y36_c00016{bottom:528.800000pt;}
.y35_c00016{bottom:540.266667pt;}
.yb_c00016{bottom:542.133333pt;}
.ya_c00016{bottom:558.400000pt;}
.y34_c00016{bottom:560.133333pt;}
.y9_c00016{bottom:574.000000pt;}
.y33_c00016{bottom:576.533333pt;}
.y8_c00016{bottom:589.866667pt;}
.y32_c00016{bottom:592.400000pt;}
.y7_c00016{bottom:606.266667pt;}
.y31_c00016{bottom:607.200000pt;}
.y6_c00016{bottom:622.800000pt;}
.y30_c00016{bottom:624.533333pt;}
.y5_c00016{bottom:637.600000pt;}
.y2f_c00016{bottom:640.533333pt;}
.y4_c00016{bottom:653.466667pt;}
.y2e_c00016{bottom:656.933333pt;}
.y3_c00016{bottom:669.866667pt;}
.y2d_c00016{bottom:672.000000pt;}
.y2_c00016{bottom:685.600000pt;}
.y2c_c00016{bottom:688.800000pt;}
.y1_c00016{bottom:701.600000pt;}
.y2b_c00016{bottom:705.866667pt;}
.h6_c00016{height:11.733399pt;}
.h7_c00016{height:38.937500pt;}
.h2_c00016{height:55.893333pt;}
.h4_c00016{height:56.906667pt;}
.h3_c00016{height:59.752000pt;}
.h5_c00016{height:97.813333pt;}
.h1_c00016{height:729.333333pt;}
.h0_c00016{height:729.600000pt;}
.w2_c00016{width:93.222667pt;}
.w1_c00016{width:496.666667pt;}
.w0_c00016{width:496.800000pt;}
.x0_c00016{left:0.000000pt;}
.x8_c00016{left:21.866667pt;}
.xc_c00016{left:23.066667pt;}
.x6_c00016{left:24.000000pt;}
.x4_c00016{left:25.733333pt;}
.x3_c00016{left:26.666667pt;}
.x2_c00016{left:27.600000pt;}
.x7_c00016{left:36.933333pt;}
.xd_c00016{left:38.000000pt;}
.x5_c00016{left:39.333333pt;}
.x9_c00016{left:40.800000pt;}
.xb_c00016{left:51.333333pt;}
.xa_c00016{left:57.600000pt;}
.x1_c00016{left:111.600000pt;}
.x1c_c00016{left:205.568237pt;}
.x1a_c00016{left:229.466667pt;}
.x17_c00016{left:230.666667pt;}
.x12_c00016{left:232.133333pt;}
.x15_c00016{left:233.600000pt;}
.x10_c00016{left:234.533333pt;}
.xe_c00016{left:237.333333pt;}
.x16_c00016{left:243.200000pt;}
.x19_c00016{left:244.800000pt;}
.xf_c00016{left:247.200000pt;}
.x13_c00016{left:249.333333pt;}
.x11_c00016{left:250.400000pt;}
.x14_c00016{left:254.933333pt;}
.x18_c00016{left:257.066667pt;}
.x1b_c00016{left:328.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_74bd33f47bf4d0e24666bdc4.woff2')format("woff");}.ff1_c00017{font-family:ff1_c00017;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00017;src:url('chunks/assets/font_7084b5b9bf165bb3e2802110.woff2')format("woff");}.ff2_c00017{font-family:ff2_c00017;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00017;src:url('chunks/assets/font_bd1e244024b5c6563a49e6a1.woff2')format("woff");}.ff3_c00017{font-family:ff3_c00017;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00017;src:url('chunks/assets/font_4dabcaf06c47821c29935ebe.woff2')format("woff");}.ff4_c00017{font-family:ff4_c00017;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00017;src:url('chunks/assets/font_ed9cb7ef43f3129df1c6eff0.woff2')format("woff");}.ff5_c00017{font-family:ff5_c00017;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00017;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff6_c00017{font-family:ff6_c00017;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1_c00017{vertical-align:-72.600000px;}
.v0_c00017{vertical-align:0.000000px;}
.ls4_c00017{letter-spacing:0.000000px;}
.ls5_c00017{letter-spacing:3.000000px;}
.ls0_c00017{letter-spacing:4.200000px;}
.ls3_c00017{letter-spacing:7.200000px;}
.ls1_c00017{letter-spacing:11.400000px;}
.ls2_c00017{letter-spacing:15.480000px;}
.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;}
}
.ws2_c00017{word-spacing:-20.340000px;}
.ws4_c00017{word-spacing:-15.060000px;}
.ws1_c00017{word-spacing:-14.160000px;}
.ws0_c00017{word-spacing:-7.488000px;}
.ws5_c00017{word-spacing:0.000000px;}
.ws3_c00017{word-spacing:246.780000px;}
._1c_c00017{margin-left:-21.540000px;}
._e_c00017{margin-left:-12.180000px;}
._12_c00017{margin-left:-11.160000px;}
._11_c00017{margin-left:-10.080000px;}
._10_c00017{margin-left:-8.760000px;}
._2_c00017{margin-left:-7.500000px;}
._d_c00017{margin-left:-5.580000px;}
._13_c00017{margin-left:-3.780000px;}
._14_c00017{margin-left:-2.580000px;}
._f_c00017{margin-left:-1.320000px;}
._5_c00017{width:1.140000px;}
._4_c00017{width:2.220000px;}
._8_c00017{width:3.720000px;}
._15_c00017{width:4.740000px;}
._b_c00017{width:5.760000px;}
._1f_c00017{width:6.840000px;}
._9_c00017{width:7.860000px;}
._c_c00017{width:9.840000px;}
._7_c00017{width:10.860000px;}
._1b_c00017{width:12.060000px;}
._a_c00017{width:13.140000px;}
._6_c00017{width:15.960000px;}
._17_c00017{width:17.460000px;}
._16_c00017{width:18.660000px;}
._1d_c00017{width:20.640000px;}
._1e_c00017{width:23.100000px;}
._0_c00017{width:24.576000px;}
._1_c00017{width:27.024000px;}
._18_c00017{width:28.080000px;}
._20_c00017{width:32.016000px;}
._19_c00017{width:34.680000px;}
._3_c00017{width:36.840000px;}
._21_c00017{width:41.400000px;}
._1a_c00017{width:188.760000px;}
.fc2_c00017{color:transparent;}
.fc1_c00017{color:rgb(128,128,128);}
.fc0_c00017{color:rgb(0,0,0);}
.fs0_c00017{font-size:48.000000px;}
.fs1_c00017{font-size:60.000000px;}
.y0_c00017{bottom:0.000000px;}
.y53_c00017{bottom:3.105000px;}
.y52_c00017{bottom:7.228355px;}
.y29_c00017{bottom:46.935000px;}
.y51_c00017{bottom:47.535000px;}
.y28_c00017{bottom:65.835000px;}
.y50_c00017{bottom:66.735000px;}
.y27_c00017{bottom:83.985000px;}
.y4f_c00017{bottom:84.735000px;}
.y26_c00017{bottom:101.235000px;}
.y4e_c00017{bottom:103.185000px;}
.y25_c00017{bottom:120.735000px;}
.y4d_c00017{bottom:121.185000px;}
.y24_c00017{bottom:138.585000px;}
.y4c_c00017{bottom:139.335000px;}
.y23_c00017{bottom:155.835000px;}
.y4b_c00017{bottom:158.535000px;}
.y22_c00017{bottom:174.435000px;}
.y4a_c00017{bottom:175.785000px;}
.y21_c00017{bottom:193.335000px;}
.y49_c00017{bottom:193.935000px;}
.y20_c00017{bottom:211.485000px;}
.y48_c00017{bottom:211.935000px;}
.y1f_c00017{bottom:229.035000px;}
.y47_c00017{bottom:230.085000px;}
.y1e_c00017{bottom:246.735000px;}
.y46_c00017{bottom:247.935000px;}
.y1d_c00017{bottom:265.185000px;}
.y45_c00017{bottom:266.835000px;}
.y1c_c00017{bottom:282.135000px;}
.y44_c00017{bottom:284.835000px;}
.y1b_c00017{bottom:300.285000px;}
.y43_c00017{bottom:302.085000px;}
.y1a_c00017{bottom:317.835000px;}
.y42_c00017{bottom:320.235000px;}
.y19_c00017{bottom:336.735000px;}
.y41_c00017{bottom:338.385000px;}
.y18_c00017{bottom:354.285000px;}
.y40_c00017{bottom:356.385000px;}
.y17_c00017{bottom:372.585000px;}
.y3f_c00017{bottom:374.235000px;}
.y16_c00017{bottom:389.835000px;}
.y3e_c00017{bottom:392.385000px;}
.y15_c00017{bottom:407.235000px;}
.y3d_c00017{bottom:409.935000px;}
.y14_c00017{bottom:426.135000px;}
.y3c_c00017{bottom:445.785000px;}
.y13_c00017{bottom:462.585000px;}
.y3b_c00017{bottom:463.935000px;}
.y12_c00017{bottom:479.835000px;}
.y3a_c00017{bottom:481.485000px;}
.y11_c00017{bottom:498.435000px;}
.y39_c00017{bottom:498.735000px;}
.y10_c00017{bottom:516.585000px;}
.y38_c00017{bottom:517.935000px;}
.yf_c00017{bottom:533.835000px;}
.y37_c00017{bottom:536.235000px;}
.ye_c00017{bottom:552.435000px;}
.y36_c00017{bottom:554.835000px;}
.yd_c00017{bottom:570.285000px;}
.y35_c00017{bottom:572.385000px;}
.y34_c00017{bottom:588.135000px;}
.yc_c00017{bottom:588.585000px;}
.y33_c00017{bottom:606.285000px;}
.yb_c00017{bottom:606.435000px;}
.ya_c00017{bottom:624.735000px;}
.y9_c00017{bottom:642.885000px;}
.y32_c00017{bottom:643.185000px;}
.y31_c00017{bottom:661.185000px;}
.y8_c00017{bottom:661.485000px;}
.y30_c00017{bottom:678.285000px;}
.y7_c00017{bottom:678.735000px;}
.y2f_c00017{bottom:695.835000px;}
.y6_c00017{bottom:696.885000px;}
.y2e_c00017{bottom:714.435000px;}
.y5_c00017{bottom:715.035000px;}
.y2d_c00017{bottom:732.735000px;}
.y4_c00017{bottom:733.935000px;}
.y2c_c00017{bottom:751.185000px;}
.y3_c00017{bottom:752.235000px;}
.y2b_c00017{bottom:769.035000px;}
.y2_c00017{bottom:770.535000px;}
.y2a_c00017{bottom:788.685000px;}
.y1_c00017{bottom:788.985000px;}
.h5_c00017{height:13.200074px;}
.h6_c00017{height:43.804688px;}
.h2_c00017{height:50.304000px;}
.h3_c00017{height:62.880000px;}
.h4_c00017{height:64.020000px;}
.h1_c00017{height:826.500000px;}
.h0_c00017{height:826.725000px;}
.w2_c00017{width:104.875500px;}
.w1_c00017{width:559.500000px;}
.w0_c00017{width:559.725000px;}
.x0_c00017{left:0.000000px;}
.x3_c00017{left:76.950000px;}
.x4_c00017{left:78.750000px;}
.x6_c00017{left:79.950000px;}
.xa_c00017{left:81.300000px;}
.xb_c00017{left:82.350000px;}
.xe_c00017{left:83.700000px;}
.xd_c00017{left:85.350000px;}
.x11_c00017{left:86.400000px;}
.x12_c00017{left:87.450000px;}
.x8_c00017{left:89.850000px;}
.x7_c00017{left:94.800000px;}
.x2_c00017{left:96.900000px;}
.xc_c00017{left:97.950000px;}
.xf_c00017{left:99.000000px;}
.x10_c00017{left:100.950000px;}
.x5_c00017{left:112.500000px;}
.x9_c00017{left:114.150000px;}
.x1_c00017{left:227.400000px;}
.x23_c00017{left:231.676758px;}
.x13_c00017{left:309.150000px;}
.x15_c00017{left:315.000000px;}
.x16_c00017{left:316.350000px;}
.x19_c00017{left:318.000000px;}
.x1d_c00017{left:319.050000px;}
.x1e_c00017{left:320.250000px;}
.x20_c00017{left:321.600000px;}
.x22_c00017{left:323.100000px;}
.x14_c00017{left:330.750000px;}
.x1b_c00017{left:331.800000px;}
.x1a_c00017{left:332.850000px;}
.x18_c00017{left:333.900000px;}
.x1c_c00017{left:335.250000px;}
.x21_c00017{left:337.800000px;}
.x1f_c00017{left:341.550000px;}
.x17_c00017{left:367.650000px;}
@media print{
.v1_c00017{vertical-align:-64.533333pt;}
.v0_c00017{vertical-align:0.000000pt;}
.ls4_c00017{letter-spacing:0.000000pt;}
.ls5_c00017{letter-spacing:2.666667pt;}
.ls0_c00017{letter-spacing:3.733333pt;}
.ls3_c00017{letter-spacing:6.400000pt;}
.ls1_c00017{letter-spacing:10.133333pt;}
.ls2_c00017{letter-spacing:13.760000pt;}
.ws2_c00017{word-spacing:-18.080000pt;}
.ws4_c00017{word-spacing:-13.386667pt;}
.ws1_c00017{word-spacing:-12.586667pt;}
.ws0_c00017{word-spacing:-6.656000pt;}
.ws5_c00017{word-spacing:0.000000pt;}
.ws3_c00017{word-spacing:219.360000pt;}
._1c_c00017{margin-left:-19.146667pt;}
._e_c00017{margin-left:-10.826667pt;}
._12_c00017{margin-left:-9.920000pt;}
._11_c00017{margin-left:-8.960000pt;}
._10_c00017{margin-left:-7.786667pt;}
._2_c00017{margin-left:-6.666667pt;}
._d_c00017{margin-left:-4.960000pt;}
._13_c00017{margin-left:-3.360000pt;}
._14_c00017{margin-left:-2.293333pt;}
._f_c00017{margin-left:-1.173333pt;}
._5_c00017{width:1.013333pt;}
._4_c00017{width:1.973333pt;}
._8_c00017{width:3.306667pt;}
._15_c00017{width:4.213333pt;}
._b_c00017{width:5.120000pt;}
._1f_c00017{width:6.080000pt;}
._9_c00017{width:6.986667pt;}
._c_c00017{width:8.746667pt;}
._7_c00017{width:9.653333pt;}
._1b_c00017{width:10.720000pt;}
._a_c00017{width:11.680000pt;}
._6_c00017{width:14.186667pt;}
._17_c00017{width:15.520000pt;}
._16_c00017{width:16.586667pt;}
._1d_c00017{width:18.346667pt;}
._1e_c00017{width:20.533333pt;}
._0_c00017{width:21.845333pt;}
._1_c00017{width:24.021333pt;}
._18_c00017{width:24.960000pt;}
._20_c00017{width:28.458667pt;}
._19_c00017{width:30.826667pt;}
._3_c00017{width:32.746667pt;}
._21_c00017{width:36.800000pt;}
._1a_c00017{width:167.786667pt;}
.fs0_c00017{font-size:42.666667pt;}
.fs1_c00017{font-size:53.333333pt;}
.y0_c00017{bottom:0.000000pt;}
.y53_c00017{bottom:2.760000pt;}
.y52_c00017{bottom:6.425204pt;}
.y29_c00017{bottom:41.720000pt;}
.y51_c00017{bottom:42.253333pt;}
.y28_c00017{bottom:58.520000pt;}
.y50_c00017{bottom:59.320000pt;}
.y27_c00017{bottom:74.653333pt;}
.y4f_c00017{bottom:75.320000pt;}
.y26_c00017{bottom:89.986667pt;}
.y4e_c00017{bottom:91.720000pt;}
.y25_c00017{bottom:107.320000pt;}
.y4d_c00017{bottom:107.720000pt;}
.y24_c00017{bottom:123.186667pt;}
.y4c_c00017{bottom:123.853333pt;}
.y23_c00017{bottom:138.520000pt;}
.y4b_c00017{bottom:140.920000pt;}
.y22_c00017{bottom:155.053333pt;}
.y4a_c00017{bottom:156.253333pt;}
.y21_c00017{bottom:171.853333pt;}
.y49_c00017{bottom:172.386667pt;}
.y20_c00017{bottom:187.986667pt;}
.y48_c00017{bottom:188.386667pt;}
.y1f_c00017{bottom:203.586667pt;}
.y47_c00017{bottom:204.520000pt;}
.y1e_c00017{bottom:219.320000pt;}
.y46_c00017{bottom:220.386667pt;}
.y1d_c00017{bottom:235.720000pt;}
.y45_c00017{bottom:237.186667pt;}
.y1c_c00017{bottom:250.786667pt;}
.y44_c00017{bottom:253.186667pt;}
.y1b_c00017{bottom:266.920000pt;}
.y43_c00017{bottom:268.520000pt;}
.y1a_c00017{bottom:282.520000pt;}
.y42_c00017{bottom:284.653333pt;}
.y19_c00017{bottom:299.320000pt;}
.y41_c00017{bottom:300.786667pt;}
.y18_c00017{bottom:314.920000pt;}
.y40_c00017{bottom:316.786667pt;}
.y17_c00017{bottom:331.186667pt;}
.y3f_c00017{bottom:332.653333pt;}
.y16_c00017{bottom:346.520000pt;}
.y3e_c00017{bottom:348.786667pt;}
.y15_c00017{bottom:361.986667pt;}
.y3d_c00017{bottom:364.386667pt;}
.y14_c00017{bottom:378.786667pt;}
.y3c_c00017{bottom:396.253333pt;}
.y13_c00017{bottom:411.186667pt;}
.y3b_c00017{bottom:412.386667pt;}
.y12_c00017{bottom:426.520000pt;}
.y3a_c00017{bottom:427.986667pt;}
.y11_c00017{bottom:443.053333pt;}
.y39_c00017{bottom:443.320000pt;}
.y10_c00017{bottom:459.186667pt;}
.y38_c00017{bottom:460.386667pt;}
.yf_c00017{bottom:474.520000pt;}
.y37_c00017{bottom:476.653333pt;}
.ye_c00017{bottom:491.053333pt;}
.y36_c00017{bottom:493.186667pt;}
.yd_c00017{bottom:506.920000pt;}
.y35_c00017{bottom:508.786667pt;}
.y34_c00017{bottom:522.786667pt;}
.yc_c00017{bottom:523.186667pt;}
.y33_c00017{bottom:538.920000pt;}
.yb_c00017{bottom:539.053333pt;}
.ya_c00017{bottom:555.320000pt;}
.y9_c00017{bottom:571.453333pt;}
.y32_c00017{bottom:571.720000pt;}
.y31_c00017{bottom:587.720000pt;}
.y8_c00017{bottom:587.986667pt;}
.y30_c00017{bottom:602.920000pt;}
.y7_c00017{bottom:603.320000pt;}
.y2f_c00017{bottom:618.520000pt;}
.y6_c00017{bottom:619.453333pt;}
.y2e_c00017{bottom:635.053333pt;}
.y5_c00017{bottom:635.586667pt;}
.y2d_c00017{bottom:651.320000pt;}
.y4_c00017{bottom:652.386667pt;}
.y2c_c00017{bottom:667.720000pt;}
.y3_c00017{bottom:668.653333pt;}
.y2b_c00017{bottom:683.586667pt;}
.y2_c00017{bottom:684.920000pt;}
.y2a_c00017{bottom:701.053333pt;}
.y1_c00017{bottom:701.320000pt;}
.h5_c00017{height:11.733399pt;}
.h6_c00017{height:38.937500pt;}
.h2_c00017{height:44.714667pt;}
.h3_c00017{height:55.893333pt;}
.h4_c00017{height:56.906667pt;}
.h1_c00017{height:734.666667pt;}
.h0_c00017{height:734.866667pt;}
.w2_c00017{width:93.222667pt;}
.w1_c00017{width:497.333333pt;}
.w0_c00017{width:497.533333pt;}
.x0_c00017{left:0.000000pt;}
.x3_c00017{left:68.400000pt;}
.x4_c00017{left:70.000000pt;}
.x6_c00017{left:71.066667pt;}
.xa_c00017{left:72.266667pt;}
.xb_c00017{left:73.200000pt;}
.xe_c00017{left:74.400000pt;}
.xd_c00017{left:75.866667pt;}
.x11_c00017{left:76.800000pt;}
.x12_c00017{left:77.733333pt;}
.x8_c00017{left:79.866667pt;}
.x7_c00017{left:84.266667pt;}
.x2_c00017{left:86.133333pt;}
.xc_c00017{left:87.066667pt;}
.xf_c00017{left:88.000000pt;}
.x10_c00017{left:89.733333pt;}
.x5_c00017{left:100.000000pt;}
.x9_c00017{left:101.466667pt;}
.x1_c00017{left:202.133333pt;}
.x23_c00017{left:205.934896pt;}
.x13_c00017{left:274.800000pt;}
.x15_c00017{left:280.000000pt;}
.x16_c00017{left:281.200000pt;}
.x19_c00017{left:282.666667pt;}
.x1d_c00017{left:283.600000pt;}
.x1e_c00017{left:284.666667pt;}
.x20_c00017{left:285.866667pt;}
.x22_c00017{left:287.200000pt;}
.x14_c00017{left:294.000000pt;}
.x1b_c00017{left:294.933333pt;}
.x1a_c00017{left:295.866667pt;}
.x18_c00017{left:296.800000pt;}
.x1c_c00017{left:298.000000pt;}
.x21_c00017{left:300.266667pt;}
.x1f_c00017{left:303.600000pt;}
.x17_c00017{left:326.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_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_eace46d2fa31f2051fcade1a.woff2')format("woff");}.ff1_c00018{font-family:ff1_c00018;line-height:1.437000;font-style:normal;font-weight:normal;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_eea2c5abe54e1dfb41e2fba0.woff2')format("woff");}.ff2_c00018{font-family:ff2_c00018;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00018;src:url('chunks/assets/font_693490ef71b829c2277e1c77.woff2')format("woff");}.ff3_c00018{font-family:ff3_c00018;line-height:1.437000;font-style:normal;font-weight:normal;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_9efbb27d94c332fad64274d5.woff2')format("woff");}.ff4_c00018{font-family:ff4_c00018;line-height:1.437000;font-style:normal;font-weight:normal;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_f7cb937a8325e631ac725890.woff2')format("woff");}.ff5_c00018{font-family:ff5_c00018;line-height:1.402354;font-style:normal;font-weight:normal;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_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff6_c00018{font-family:ff6_c00018;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00018{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00018{vertical-align:0.000000px;}
.ls6_c00018{letter-spacing:-6.000000px;}
.ls4_c00018{letter-spacing:0.000000px;}
.ls5_c00018{letter-spacing:3.000000px;}
.ls3_c00018{letter-spacing:3.300000px;}
.ls0_c00018{letter-spacing:6.540000px;}
.ls1_c00018{letter-spacing:8.400000px;}
.ls2_c00018{letter-spacing:14.400000px;}
.sc__c00018{text-shadow:none;}
.sc0_c00018{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00018{-webkit-text-stroke:0px transparent;}
.sc0_c00018{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00018{word-spacing:-18.000000px;}
.ws1_c00018{word-spacing:-15.060000px;}
.ws3_c00018{word-spacing:0.000000px;}
.ws2_c00018{word-spacing:5.883000px;}
._11_c00018{margin-left:-25.020000px;}
._48_c00018{margin-left:-23.580000px;}
._49_c00018{margin-left:-21.210000px;}
._2b_c00018{margin-left:-15.240000px;}
._18_c00018{margin-left:-13.980000px;}
._3e_c00018{margin-left:-12.300000px;}
._2e_c00018{margin-left:-10.920000px;}
._1f_c00018{margin-left:-8.760000px;}
._28_c00018{margin-left:-6.840000px;}
._16_c00018{margin-left:-4.380000px;}
._f_c00018{margin-left:-3.360000px;}
._7_c00018{margin-left:-1.500000px;}
._8_c00018{width:1.140000px;}
._b_c00018{width:2.340000px;}
._9_c00018{width:4.080000px;}
._a_c00018{width:5.340000px;}
._31_c00018{width:6.360000px;}
._c_c00018{width:7.380000px;}
._10_c00018{width:8.700000px;}
._0_c00018{width:9.900000px;}
._1_c00018{width:11.040000px;}
._2_c00018{width:12.240000px;}
._4_c00018{width:14.040000px;}
._5_c00018{width:16.080000px;}
._3_c00018{width:17.400000px;}
._21_c00018{width:18.600000px;}
._22_c00018{width:20.520000px;}
._41_c00018{width:22.980000px;}
._43_c00018{width:24.360000px;}
._20_c00018{width:25.560000px;}
._27_c00018{width:27.840000px;}
._47_c00018{width:29.085000px;}
._1a_c00018{width:31.080000px;}
._6_c00018{width:33.600000px;}
._d_c00018{width:34.920000px;}
._19_c00018{width:39.840000px;}
._42_c00018{width:41.640000px;}
._4b_c00018{width:47.775000px;}
._38_c00018{width:50.400000px;}
._3b_c00018{width:53.460000px;}
._4a_c00018{width:76.335000px;}
._17_c00018{width:90.540000px;}
._24_c00018{width:95.280000px;}
._14_c00018{width:99.060000px;}
._30_c00018{width:103.080000px;}
._33_c00018{width:108.360000px;}
._40_c00018{width:113.160000px;}
._1b_c00018{width:116.640000px;}
._37_c00018{width:157.860000px;}
._2a_c00018{width:159.900000px;}
._35_c00018{width:162.420000px;}
._1d_c00018{width:164.580000px;}
._3c_c00018{width:166.740000px;}
._3d_c00018{width:169.920000px;}
._26_c00018{width:172.560000px;}
._2f_c00018{width:173.580000px;}
._e_c00018{width:177.780000px;}
._1e_c00018{width:182.700000px;}
._45_c00018{width:219.780000px;}
._3a_c00018{width:231.780000px;}
._15_c00018{width:268.200000px;}
._39_c00018{width:376.800000px;}
._36_c00018{width:475.860000px;}
._2c_c00018{width:581.340000px;}
._23_c00018{width:600.660000px;}
._29_c00018{width:606.300000px;}
._2d_c00018{width:607.620000px;}
._46_c00018{width:638.100000px;}
._44_c00018{width:705.900000px;}
._12_c00018{width:728.880000px;}
._25_c00018{width:731.940000px;}
._3f_c00018{width:837.000000px;}
._13_c00018{width:880.740000px;}
._1c_c00018{width:911.700000px;}
._34_c00018{width:978.300000px;}
._32_c00018{width:1134.600000px;}
.fc2_c00018{color:transparent;}
.fc1_c00018{color:rgb(128,128,128);}
.fc0_c00018{color:rgb(0,0,0);}
.fs3_c00018{font-size:48.000000px;}
.fs0_c00018{font-size:60.000000px;}
.fs1_c00018{font-size:105.000000px;}
.fs2_c00018{font-size:117.000000px;}
.y0_c00018{bottom:0.000000px;}
.y2d_c00018{bottom:3.105000px;}
.y2c_c00018{bottom:7.228355px;}
.y2b_c00018{bottom:44.535000px;}
.y2a_c00018{bottom:67.785000px;}
.y29_c00018{bottom:87.285000px;}
.y28_c00018{bottom:104.985000px;}
.y27_c00018{bottom:123.135000px;}
.y26_c00018{bottom:141.285000px;}
.y25_c00018{bottom:158.985000px;}
.y24_c00018{bottom:176.835000px;}
.y23_c00018{bottom:195.735000px;}
.y22_c00018{bottom:214.185000px;}
.y21_c00018{bottom:231.735000px;}
.y20_c00018{bottom:249.285000px;}
.y1f_c00018{bottom:268.335000px;}
.y1e_c00018{bottom:285.435000px;}
.y1d_c00018{bottom:304.335000px;}
.y1c_c00018{bottom:321.885000px;}
.y1b_c00018{bottom:339.435000px;}
.y1a_c00018{bottom:356.685000px;}
.y19_c00018{bottom:375.285000px;}
.y18_c00018{bottom:393.135000px;}
.y17_c00018{bottom:411.435000px;}
.y16_c00018{bottom:428.835000px;}
.y15_c00018{bottom:446.535000px;}
.y14_c00018{bottom:464.085000px;}
.y13_c00018{bottom:482.235000px;}
.y12_c00018{bottom:500.535000px;}
.y11_c00018{bottom:517.635000px;}
.y10_c00018{bottom:535.185000px;}
.yf_c00018{bottom:553.485000px;}
.ye_c00018{bottom:572.085000px;}
.yd_c00018{bottom:589.635000px;}
.yc_c00018{bottom:607.485000px;}
.yb_c00018{bottom:625.035000px;}
.ya_c00018{bottom:643.635000px;}
.y9_c00018{bottom:661.185000px;}
.y8_c00018{bottom:679.035000px;}
.y7_c00018{bottom:697.485000px;}
.y6_c00018{bottom:714.735000px;}
.y5_c00018{bottom:733.935000px;}
.y4_c00018{bottom:749.835000px;}
.y3_c00018{bottom:768.735000px;}
.y2_c00018{bottom:786.735000px;}
.y1_c00018{bottom:804.585000px;}
.h5_c00018{height:13.200074px;}
.h6_c00018{height:43.804688px;}
.h2_c00018{height:62.880000px;}
.h3_c00018{height:64.020000px;}
.h4_c00018{height:120.257563px;}
.h0_c00018{height:836.175000px;}
.h1_c00018{height:836.250000px;}
.w2_c00018{width:104.875500px;}
.w0_c00018{width:569.700000px;}
.w1_c00018{width:570.000000px;}
.x0_c00018{left:0.000000px;}
.xc_c00018{left:25.050000px;}
.x9_c00018{left:32.100000px;}
.xe_c00018{left:35.850000px;}
.x7_c00018{left:38.100000px;}
.x3_c00018{left:39.750000px;}
.x4_c00018{left:40.800000px;}
.x5_c00018{left:42.300000px;}
.xd_c00018{left:52.350000px;}
.xa_c00018{left:54.450000px;}
.x2_c00018{left:56.250000px;}
.x8_c00018{left:59.400000px;}
.x6_c00018{left:70.200000px;}
.xb_c00018{left:74.550000px;}
.x1_c00018{left:133.650000px;}
.x10_c00018{left:236.664230px;}
.xf_c00018{left:379.050000px;}
@media print{
.v0_c00018{vertical-align:0.000000pt;}
.ls6_c00018{letter-spacing:-5.333333pt;}
.ls4_c00018{letter-spacing:0.000000pt;}
.ls5_c00018{letter-spacing:2.666667pt;}
.ls3_c00018{letter-spacing:2.933333pt;}
.ls0_c00018{letter-spacing:5.813333pt;}
.ls1_c00018{letter-spacing:7.466667pt;}
.ls2_c00018{letter-spacing:12.800000pt;}
.ws0_c00018{word-spacing:-16.000000pt;}
.ws1_c00018{word-spacing:-13.386667pt;}
.ws3_c00018{word-spacing:0.000000pt;}
.ws2_c00018{word-spacing:5.229333pt;}
._11_c00018{margin-left:-22.240000pt;}
._48_c00018{margin-left:-20.960000pt;}
._49_c00018{margin-left:-18.853333pt;}
._2b_c00018{margin-left:-13.546667pt;}
._18_c00018{margin-left:-12.426667pt;}
._3e_c00018{margin-left:-10.933333pt;}
._2e_c00018{margin-left:-9.706667pt;}
._1f_c00018{margin-left:-7.786667pt;}
._28_c00018{margin-left:-6.080000pt;}
._16_c00018{margin-left:-3.893333pt;}
._f_c00018{margin-left:-2.986667pt;}
._7_c00018{margin-left:-1.333333pt;}
._8_c00018{width:1.013333pt;}
._b_c00018{width:2.080000pt;}
._9_c00018{width:3.626667pt;}
._a_c00018{width:4.746667pt;}
._31_c00018{width:5.653333pt;}
._c_c00018{width:6.560000pt;}
._10_c00018{width:7.733333pt;}
._0_c00018{width:8.800000pt;}
._1_c00018{width:9.813333pt;}
._2_c00018{width:10.880000pt;}
._4_c00018{width:12.480000pt;}
._5_c00018{width:14.293333pt;}
._3_c00018{width:15.466667pt;}
._21_c00018{width:16.533333pt;}
._22_c00018{width:18.240000pt;}
._41_c00018{width:20.426667pt;}
._43_c00018{width:21.653333pt;}
._20_c00018{width:22.720000pt;}
._27_c00018{width:24.746667pt;}
._47_c00018{width:25.853333pt;}
._1a_c00018{width:27.626667pt;}
._6_c00018{width:29.866667pt;}
._d_c00018{width:31.040000pt;}
._19_c00018{width:35.413333pt;}
._42_c00018{width:37.013333pt;}
._4b_c00018{width:42.466667pt;}
._38_c00018{width:44.800000pt;}
._3b_c00018{width:47.520000pt;}
._4a_c00018{width:67.853333pt;}
._17_c00018{width:80.480000pt;}
._24_c00018{width:84.693333pt;}
._14_c00018{width:88.053333pt;}
._30_c00018{width:91.626667pt;}
._33_c00018{width:96.320000pt;}
._40_c00018{width:100.586667pt;}
._1b_c00018{width:103.680000pt;}
._37_c00018{width:140.320000pt;}
._2a_c00018{width:142.133333pt;}
._35_c00018{width:144.373333pt;}
._1d_c00018{width:146.293333pt;}
._3c_c00018{width:148.213333pt;}
._3d_c00018{width:151.040000pt;}
._26_c00018{width:153.386667pt;}
._2f_c00018{width:154.293333pt;}
._e_c00018{width:158.026667pt;}
._1e_c00018{width:162.400000pt;}
._45_c00018{width:195.360000pt;}
._3a_c00018{width:206.026667pt;}
._15_c00018{width:238.400000pt;}
._39_c00018{width:334.933333pt;}
._36_c00018{width:422.986667pt;}
._2c_c00018{width:516.746667pt;}
._23_c00018{width:533.920000pt;}
._29_c00018{width:538.933333pt;}
._2d_c00018{width:540.106667pt;}
._46_c00018{width:567.200000pt;}
._44_c00018{width:627.466667pt;}
._12_c00018{width:647.893333pt;}
._25_c00018{width:650.613333pt;}
._3f_c00018{width:744.000000pt;}
._13_c00018{width:782.880000pt;}
._1c_c00018{width:810.400000pt;}
._34_c00018{width:869.600000pt;}
._32_c00018{width:1008.533333pt;}
.fs3_c00018{font-size:42.666667pt;}
.fs0_c00018{font-size:53.333333pt;}
.fs1_c00018{font-size:93.333333pt;}
.fs2_c00018{font-size:104.000000pt;}
.y0_c00018{bottom:0.000000pt;}
.y2d_c00018{bottom:2.760000pt;}
.y2c_c00018{bottom:6.425204pt;}
.y2b_c00018{bottom:39.586667pt;}
.y2a_c00018{bottom:60.253333pt;}
.y29_c00018{bottom:77.586667pt;}
.y28_c00018{bottom:93.320000pt;}
.y27_c00018{bottom:109.453333pt;}
.y26_c00018{bottom:125.586667pt;}
.y25_c00018{bottom:141.320000pt;}
.y24_c00018{bottom:157.186667pt;}
.y23_c00018{bottom:173.986667pt;}
.y22_c00018{bottom:190.386667pt;}
.y21_c00018{bottom:205.986667pt;}
.y20_c00018{bottom:221.586667pt;}
.y1f_c00018{bottom:238.520000pt;}
.y1e_c00018{bottom:253.720000pt;}
.y1d_c00018{bottom:270.520000pt;}
.y1c_c00018{bottom:286.120000pt;}
.y1b_c00018{bottom:301.720000pt;}
.y1a_c00018{bottom:317.053333pt;}
.y19_c00018{bottom:333.586667pt;}
.y18_c00018{bottom:349.453333pt;}
.y17_c00018{bottom:365.720000pt;}
.y16_c00018{bottom:381.186667pt;}
.y15_c00018{bottom:396.920000pt;}
.y14_c00018{bottom:412.520000pt;}
.y13_c00018{bottom:428.653333pt;}
.y12_c00018{bottom:444.920000pt;}
.y11_c00018{bottom:460.120000pt;}
.y10_c00018{bottom:475.720000pt;}
.yf_c00018{bottom:491.986667pt;}
.ye_c00018{bottom:508.520000pt;}
.yd_c00018{bottom:524.120000pt;}
.yc_c00018{bottom:539.986667pt;}
.yb_c00018{bottom:555.586667pt;}
.ya_c00018{bottom:572.120000pt;}
.y9_c00018{bottom:587.720000pt;}
.y8_c00018{bottom:603.586667pt;}
.y7_c00018{bottom:619.986667pt;}
.y6_c00018{bottom:635.320000pt;}
.y5_c00018{bottom:652.386667pt;}
.y4_c00018{bottom:666.520000pt;}
.y3_c00018{bottom:683.320000pt;}
.y2_c00018{bottom:699.320000pt;}
.y1_c00018{bottom:715.186667pt;}
.h5_c00018{height:11.733399pt;}
.h6_c00018{height:38.937500pt;}
.h2_c00018{height:55.893333pt;}
.h3_c00018{height:56.906667pt;}
.h4_c00018{height:106.895612pt;}
.h0_c00018{height:743.266667pt;}
.h1_c00018{height:743.333333pt;}
.w2_c00018{width:93.222667pt;}
.w0_c00018{width:506.400000pt;}
.w1_c00018{width:506.666667pt;}
.x0_c00018{left:0.000000pt;}
.xc_c00018{left:22.266667pt;}
.x9_c00018{left:28.533333pt;}
.xe_c00018{left:31.866667pt;}
.x7_c00018{left:33.866667pt;}
.x3_c00018{left:35.333333pt;}
.x4_c00018{left:36.266667pt;}
.x5_c00018{left:37.600000pt;}
.xd_c00018{left:46.533333pt;}
.xa_c00018{left:48.400000pt;}
.x2_c00018{left:50.000000pt;}
.x8_c00018{left:52.800000pt;}
.x6_c00018{left:62.400000pt;}
.xb_c00018{left:66.266667pt;}
.x1_c00018{left:118.800000pt;}
.x10_c00018{left:210.368205pt;}
.xf_c00018{left:336.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_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_74067a000d6bdb53047c8774.woff2')format("woff");}.ff1_c00019{font-family:ff1_c00019;line-height:1.437000;font-style:normal;font-weight:normal;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_c7fe4d44144571c96c9e94c2.woff2')format("woff");}.ff2_c00019{font-family:ff2_c00019;line-height:1.437000;font-style:normal;font-weight:normal;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_f2523f09b7c55cdf118e3eaa.woff2')format("woff");}.ff3_c00019{font-family:ff3_c00019;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00019;src:url('chunks/assets/font_789b0d1c8f8cbf0023e0895d.woff2')format("woff");}.ff4_c00019{font-family:ff4_c00019;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00019;src:url('chunks/assets/font_9db952f331d5f1ecd26ccaa3.woff2')format("woff");}.ff5_c00019{font-family:ff5_c00019;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00019;src:url('chunks/assets/font_079c36b49165de8fa4a11eed.woff2')format("woff");}.ff6_c00019{font-family:ff6_c00019;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00019;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff7_c00019{font-family:ff7_c00019;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00019{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00019{vertical-align:-87.000000px;}
.v0_c00019{vertical-align:0.000000px;}
.ls7_c00019{letter-spacing:-3.000000px;}
.ls5_c00019{letter-spacing:0.000000px;}
.ls3_c00019{letter-spacing:1.800000px;}
.ls6_c00019{letter-spacing:3.000000px;}
.ls0_c00019{letter-spacing:5.100000px;}
.ls2_c00019{letter-spacing:5.700000px;}
.ls8_c00019{letter-spacing:6.000000px;}
.ls1_c00019{letter-spacing:9.240000px;}
.ls4_c00019{letter-spacing:23.400000px;}
.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;}
}
.ws2_c00019{word-spacing:-29.424000px;}
.ws7_c00019{word-spacing:-25.095000px;}
.ws1_c00019{word-spacing:-20.340000px;}
.ws4_c00019{word-spacing:-19.623000px;}
.ws3_c00019{word-spacing:-15.060000px;}
.ws0_c00019{word-spacing:-14.160000px;}
.ws5_c00019{word-spacing:-13.554000px;}
.ws8_c00019{word-spacing:0.000000px;}
.ws6_c00019{word-spacing:580.680000px;}
._1d_c00019{margin-left:-40.785000px;}
._1f_c00019{margin-left:-26.880000px;}
._1c_c00019{margin-left:-24.465000px;}
._1a_c00019{margin-left:-21.585000px;}
._1e_c00019{margin-left:-17.640000px;}
._21_c00019{margin-left:-15.855000px;}
._20_c00019{margin-left:-14.190000px;}
._1b_c00019{margin-left:-12.750000px;}
._27_c00019{margin-left:-11.280000px;}
._12_c00019{margin-left:-9.960000px;}
._19_c00019{margin-left:-8.760000px;}
._15_c00019{margin-left:-7.260000px;}
._18_c00019{margin-left:-6.180000px;}
._c_c00019{margin-left:-5.100000px;}
._f_c00019{margin-left:-3.840000px;}
._9_c00019{margin-left:-2.820000px;}
._6_c00019{margin-left:-1.200000px;}
._7_c00019{width:1.020000px;}
._4_c00019{width:2.100000px;}
._e_c00019{width:3.240000px;}
._3_c00019{width:4.260000px;}
._5_c00019{width:5.760000px;}
._2_c00019{width:7.080000px;}
._8_c00019{width:8.760000px;}
._a_c00019{width:10.380000px;}
._b_c00019{width:11.580000px;}
._14_c00019{width:12.660000px;}
._16_c00019{width:13.740000px;}
._0_c00019{width:16.620000px;}
._1_c00019{width:18.660000px;}
._24_c00019{width:20.580000px;}
._17_c00019{width:22.200000px;}
._22_c00019{width:23.280000px;}
._26_c00019{width:24.420000px;}
._13_c00019{width:25.740000px;}
._10_c00019{width:26.880000px;}
._11_c00019{width:28.560000px;}
._2c_c00019{width:31.380000px;}
._2b_c00019{width:33.780000px;}
._2d_c00019{width:37.800000px;}
._23_c00019{width:48.900000px;}
._29_c00019{width:72.060000px;}
._2a_c00019{width:139.320000px;}
._d_c00019{width:148.620000px;}
._25_c00019{width:150.900000px;}
._28_c00019{width:178.260000px;}
.fc2_c00019{color:transparent;}
.fc1_c00019{color:rgb(128,128,128);}
.fc0_c00019{color:rgb(0,0,0);}
.fs1_c00019{font-size:48.000000px;}
.fs4_c00019{font-size:54.000000px;}
.fs3_c00019{font-size:57.000000px;}
.fs0_c00019{font-size:60.000000px;}
.fs2_c00019{font-size:105.000000px;}
.y0_c00019{bottom:0.000000px;}
.y55_c00019{bottom:3.105000px;}
.y54_c00019{bottom:7.228363px;}
.y53_c00019{bottom:62.850000px;}
.y2a_c00019{bottom:64.050000px;}
.y52_c00019{bottom:80.250000px;}
.y29_c00019{bottom:83.250000px;}
.y51_c00019{bottom:99.150000px;}
.y28_c00019{bottom:101.550000px;}
.y50_c00019{bottom:117.000000px;}
.y27_c00019{bottom:120.150000px;}
.y4f_c00019{bottom:135.600000px;}
.y26_c00019{bottom:138.000000px;}
.y4e_c00019{bottom:153.900000px;}
.y25_c00019{bottom:155.850000px;}
.y4d_c00019{bottom:171.900000px;}
.y24_c00019{bottom:174.450000px;}
.y4c_c00019{bottom:190.350000px;}
.y23_c00019{bottom:192.750000px;}
.y4b_c00019{bottom:207.450000px;}
.y22_c00019{bottom:210.900000px;}
.y4a_c00019{bottom:225.750000px;}
.y21_c00019{bottom:229.800000px;}
.y49_c00019{bottom:245.250000px;}
.y20_c00019{bottom:247.350000px;}
.y48_c00019{bottom:262.800000px;}
.y1f_c00019{bottom:265.200000px;}
.y47_c00019{bottom:279.000000px;}
.y1e_c00019{bottom:283.050000px;}
.y46_c00019{bottom:298.350000px;}
.y1d_c00019{bottom:301.050000px;}
.y45_c00019{bottom:316.800000px;}
.y1c_c00019{bottom:318.900000px;}
.y44_c00019{bottom:334.500000px;}
.y1b_c00019{bottom:337.050000px;}
.y43_c00019{bottom:352.050000px;}
.y1a_c00019{bottom:354.750000px;}
.y42_c00019{bottom:369.150000px;}
.y19_c00019{bottom:373.500000px;}
.y41_c00019{bottom:388.050000px;}
.y18_c00019{bottom:391.200000px;}
.y40_c00019{bottom:406.050000px;}
.y17_c00019{bottom:409.350000px;}
.y16_c00019{bottom:425.850000px;}
.y3f_c00019{bottom:426.150000px;}
.y3e_c00019{bottom:442.500000px;}
.y15_c00019{bottom:445.200000px;}
.y3d_c00019{bottom:460.050000px;}
.y14_c00019{bottom:463.050000px;}
.y3c_c00019{bottom:478.500000px;}
.y13_c00019{bottom:481.500000px;}
.y3b_c00019{bottom:497.700000px;}
.y12_c00019{bottom:499.050000px;}
.y3a_c00019{bottom:515.250000px;}
.y11_c00019{bottom:518.100000px;}
.y39_c00019{bottom:533.250000px;}
.y10_c00019{bottom:535.200000px;}
.y38_c00019{bottom:550.800000px;}
.yf_c00019{bottom:553.500000px;}
.y37_c00019{bottom:569.700000px;}
.ye_c00019{bottom:571.350000px;}
.y36_c00019{bottom:589.200000px;}
.yd_c00019{bottom:589.500000px;}
.y35_c00019{bottom:606.150000px;}
.yc_c00019{bottom:608.100000px;}
.y34_c00019{bottom:624.300000px;}
.yb_c00019{bottom:625.950000px;}
.ya_c00019{bottom:644.250000px;}
.y33_c00019{bottom:661.200000px;}
.y9_c00019{bottom:661.800000px;}
.y32_c00019{bottom:680.100000px;}
.y8_c00019{bottom:680.700000px;}
.y31_c00019{bottom:697.650000px;}
.y7_c00019{bottom:699.000000px;}
.y30_c00019{bottom:716.100000px;}
.y6_c00019{bottom:716.550000px;}
.y2f_c00019{bottom:734.700000px;}
.y5_c00019{bottom:735.450000px;}
.y2e_c00019{bottom:753.300000px;}
.y4_c00019{bottom:754.200000px;}
.y2d_c00019{bottom:770.850000px;}
.y3_c00019{bottom:772.200000px;}
.y2c_c00019{bottom:789.300000px;}
.y2_c00019{bottom:790.200000px;}
.y2b_c00019{bottom:810.300000px;}
.y1_c00019{bottom:810.750000px;}
.h6_c00019{height:13.200074px;}
.h7_c00019{height:43.804688px;}
.h5_c00019{height:56.592000px;}
.h2_c00019{height:62.880000px;}
.h3_c00019{height:64.020000px;}
.h4_c00019{height:110.040000px;}
.h1_c00019{height:842.250000px;}
.h0_c00019{height:842.400000px;}
.w2_c00019{width:104.875500px;}
.w1_c00019{width:559.500000px;}
.w0_c00019{width:559.725000px;}
.x0_c00019{left:0.000000px;}
.x6_c00019{left:82.350000px;}
.x3_c00019{left:83.700000px;}
.x9_c00019{left:85.500000px;}
.xa_c00019{left:86.700000px;}
.xc_c00019{left:88.350000px;}
.xe_c00019{left:89.550000px;}
.x2_c00019{left:97.650000px;}
.x5_c00019{left:99.600000px;}
.x7_c00019{left:101.550000px;}
.xd_c00019{left:107.700000px;}
.x4_c00019{left:109.650000px;}
.x8_c00019{left:124.200000px;}
.xb_c00019{left:189.450000px;}
.x20_c00019{left:231.676758px;}
.x1_c00019{left:234.900000px;}
.xf_c00019{left:313.200000px;}
.x10_c00019{left:317.550000px;}
.x12_c00019{left:318.900000px;}
.x13_c00019{left:320.250000px;}
.x15_c00019{left:322.050000px;}
.x17_c00019{left:323.250000px;}
.x1a_c00019{left:325.050000px;}
.x1b_c00019{left:326.700000px;}
.x1f_c00019{left:328.050000px;}
.x1d_c00019{left:334.800000px;}
.x11_c00019{left:337.800000px;}
.x18_c00019{left:341.250000px;}
.x14_c00019{left:344.250000px;}
.x1e_c00019{left:345.900000px;}
.x16_c00019{left:354.600000px;}
.x19_c00019{left:358.350000px;}
.x1c_c00019{left:388.800000px;}
@media print{
.v1_c00019{vertical-align:-77.333333pt;}
.v0_c00019{vertical-align:0.000000pt;}
.ls7_c00019{letter-spacing:-2.666667pt;}
.ls5_c00019{letter-spacing:0.000000pt;}
.ls3_c00019{letter-spacing:1.600000pt;}
.ls6_c00019{letter-spacing:2.666667pt;}
.ls0_c00019{letter-spacing:4.533333pt;}
.ls2_c00019{letter-spacing:5.066667pt;}
.ls8_c00019{letter-spacing:5.333333pt;}
.ls1_c00019{letter-spacing:8.213333pt;}
.ls4_c00019{letter-spacing:20.800000pt;}
.ws2_c00019{word-spacing:-26.154667pt;}
.ws7_c00019{word-spacing:-22.306667pt;}
.ws1_c00019{word-spacing:-18.080000pt;}
.ws4_c00019{word-spacing:-17.442667pt;}
.ws3_c00019{word-spacing:-13.386667pt;}
.ws0_c00019{word-spacing:-12.586667pt;}
.ws5_c00019{word-spacing:-12.048000pt;}
.ws8_c00019{word-spacing:0.000000pt;}
.ws6_c00019{word-spacing:516.160000pt;}
._1d_c00019{margin-left:-36.253333pt;}
._1f_c00019{margin-left:-23.893333pt;}
._1c_c00019{margin-left:-21.746667pt;}
._1a_c00019{margin-left:-19.186667pt;}
._1e_c00019{margin-left:-15.680000pt;}
._21_c00019{margin-left:-14.093333pt;}
._20_c00019{margin-left:-12.613333pt;}
._1b_c00019{margin-left:-11.333333pt;}
._27_c00019{margin-left:-10.026667pt;}
._12_c00019{margin-left:-8.853333pt;}
._19_c00019{margin-left:-7.786667pt;}
._15_c00019{margin-left:-6.453333pt;}
._18_c00019{margin-left:-5.493333pt;}
._c_c00019{margin-left:-4.533333pt;}
._f_c00019{margin-left:-3.413333pt;}
._9_c00019{margin-left:-2.506667pt;}
._6_c00019{margin-left:-1.066667pt;}
._7_c00019{width:0.906667pt;}
._4_c00019{width:1.866667pt;}
._e_c00019{width:2.880000pt;}
._3_c00019{width:3.786667pt;}
._5_c00019{width:5.120000pt;}
._2_c00019{width:6.293333pt;}
._8_c00019{width:7.786667pt;}
._a_c00019{width:9.226667pt;}
._b_c00019{width:10.293333pt;}
._14_c00019{width:11.253333pt;}
._16_c00019{width:12.213333pt;}
._0_c00019{width:14.773333pt;}
._1_c00019{width:16.586667pt;}
._24_c00019{width:18.293333pt;}
._17_c00019{width:19.733333pt;}
._22_c00019{width:20.693333pt;}
._26_c00019{width:21.706667pt;}
._13_c00019{width:22.880000pt;}
._10_c00019{width:23.893333pt;}
._11_c00019{width:25.386667pt;}
._2c_c00019{width:27.893333pt;}
._2b_c00019{width:30.026667pt;}
._2d_c00019{width:33.600000pt;}
._23_c00019{width:43.466667pt;}
._29_c00019{width:64.053333pt;}
._2a_c00019{width:123.840000pt;}
._d_c00019{width:132.106667pt;}
._25_c00019{width:134.133333pt;}
._28_c00019{width:158.453333pt;}
.fs1_c00019{font-size:42.666667pt;}
.fs4_c00019{font-size:48.000000pt;}
.fs3_c00019{font-size:50.666667pt;}
.fs0_c00019{font-size:53.333333pt;}
.fs2_c00019{font-size:93.333333pt;}
.y0_c00019{bottom:0.000000pt;}
.y55_c00019{bottom:2.760000pt;}
.y54_c00019{bottom:6.425212pt;}
.y53_c00019{bottom:55.866667pt;}
.y2a_c00019{bottom:56.933333pt;}
.y52_c00019{bottom:71.333333pt;}
.y29_c00019{bottom:74.000000pt;}
.y51_c00019{bottom:88.133333pt;}
.y28_c00019{bottom:90.266667pt;}
.y50_c00019{bottom:104.000000pt;}
.y27_c00019{bottom:106.800000pt;}
.y4f_c00019{bottom:120.533333pt;}
.y26_c00019{bottom:122.666667pt;}
.y4e_c00019{bottom:136.800000pt;}
.y25_c00019{bottom:138.533333pt;}
.y4d_c00019{bottom:152.800000pt;}
.y24_c00019{bottom:155.066667pt;}
.y4c_c00019{bottom:169.200000pt;}
.y23_c00019{bottom:171.333333pt;}
.y4b_c00019{bottom:184.400000pt;}
.y22_c00019{bottom:187.466667pt;}
.y4a_c00019{bottom:200.666667pt;}
.y21_c00019{bottom:204.266667pt;}
.y49_c00019{bottom:218.000000pt;}
.y20_c00019{bottom:219.866667pt;}
.y48_c00019{bottom:233.600000pt;}
.y1f_c00019{bottom:235.733333pt;}
.y47_c00019{bottom:248.000000pt;}
.y1e_c00019{bottom:251.600000pt;}
.y46_c00019{bottom:265.200000pt;}
.y1d_c00019{bottom:267.600000pt;}
.y45_c00019{bottom:281.600000pt;}
.y1c_c00019{bottom:283.466667pt;}
.y44_c00019{bottom:297.333333pt;}
.y1b_c00019{bottom:299.600000pt;}
.y43_c00019{bottom:312.933333pt;}
.y1a_c00019{bottom:315.333333pt;}
.y42_c00019{bottom:328.133333pt;}
.y19_c00019{bottom:332.000000pt;}
.y41_c00019{bottom:344.933333pt;}
.y18_c00019{bottom:347.733333pt;}
.y40_c00019{bottom:360.933333pt;}
.y17_c00019{bottom:363.866667pt;}
.y16_c00019{bottom:378.533333pt;}
.y3f_c00019{bottom:378.800000pt;}
.y3e_c00019{bottom:393.333333pt;}
.y15_c00019{bottom:395.733333pt;}
.y3d_c00019{bottom:408.933333pt;}
.y14_c00019{bottom:411.600000pt;}
.y3c_c00019{bottom:425.333333pt;}
.y13_c00019{bottom:428.000000pt;}
.y3b_c00019{bottom:442.400000pt;}
.y12_c00019{bottom:443.600000pt;}
.y3a_c00019{bottom:458.000000pt;}
.y11_c00019{bottom:460.533333pt;}
.y39_c00019{bottom:474.000000pt;}
.y10_c00019{bottom:475.733333pt;}
.y38_c00019{bottom:489.600000pt;}
.yf_c00019{bottom:492.000000pt;}
.y37_c00019{bottom:506.400000pt;}
.ye_c00019{bottom:507.866667pt;}
.y36_c00019{bottom:523.733333pt;}
.yd_c00019{bottom:524.000000pt;}
.y35_c00019{bottom:538.800000pt;}
.yc_c00019{bottom:540.533333pt;}
.y34_c00019{bottom:554.933333pt;}
.yb_c00019{bottom:556.400000pt;}
.ya_c00019{bottom:572.666667pt;}
.y33_c00019{bottom:587.733333pt;}
.y9_c00019{bottom:588.266667pt;}
.y32_c00019{bottom:604.533333pt;}
.y8_c00019{bottom:605.066667pt;}
.y31_c00019{bottom:620.133333pt;}
.y7_c00019{bottom:621.333333pt;}
.y30_c00019{bottom:636.533333pt;}
.y6_c00019{bottom:636.933333pt;}
.y2f_c00019{bottom:653.066667pt;}
.y5_c00019{bottom:653.733333pt;}
.y2e_c00019{bottom:669.600000pt;}
.y4_c00019{bottom:670.400000pt;}
.y2d_c00019{bottom:685.200000pt;}
.y3_c00019{bottom:686.400000pt;}
.y2c_c00019{bottom:701.600000pt;}
.y2_c00019{bottom:702.400000pt;}
.y2b_c00019{bottom:720.266667pt;}
.y1_c00019{bottom:720.666667pt;}
.h6_c00019{height:11.733399pt;}
.h7_c00019{height:38.937500pt;}
.h5_c00019{height:50.304000pt;}
.h2_c00019{height:55.893333pt;}
.h3_c00019{height:56.906667pt;}
.h4_c00019{height:97.813333pt;}
.h1_c00019{height:748.666667pt;}
.h0_c00019{height:748.800000pt;}
.w2_c00019{width:93.222667pt;}
.w1_c00019{width:497.333333pt;}
.w0_c00019{width:497.533333pt;}
.x0_c00019{left:0.000000pt;}
.x6_c00019{left:73.200000pt;}
.x3_c00019{left:74.400000pt;}
.x9_c00019{left:76.000000pt;}
.xa_c00019{left:77.066667pt;}
.xc_c00019{left:78.533333pt;}
.xe_c00019{left:79.600000pt;}
.x2_c00019{left:86.800000pt;}
.x5_c00019{left:88.533333pt;}
.x7_c00019{left:90.266667pt;}
.xd_c00019{left:95.733333pt;}
.x4_c00019{left:97.466667pt;}
.x8_c00019{left:110.400000pt;}
.xb_c00019{left:168.400000pt;}
.x20_c00019{left:205.934896pt;}
.x1_c00019{left:208.800000pt;}
.xf_c00019{left:278.400000pt;}
.x10_c00019{left:282.266667pt;}
.x12_c00019{left:283.466667pt;}
.x13_c00019{left:284.666667pt;}
.x15_c00019{left:286.266667pt;}
.x17_c00019{left:287.333333pt;}
.x1a_c00019{left:288.933333pt;}
.x1b_c00019{left:290.400000pt;}
.x1f_c00019{left:291.600000pt;}
.x1d_c00019{left:297.600000pt;}
.x11_c00019{left:300.266667pt;}
.x18_c00019{left:303.333333pt;}
.x14_c00019{left:306.000000pt;}
.x1e_c00019{left:307.466667pt;}
.x16_c00019{left:315.200000pt;}
.x19_c00019{left:318.533333pt;}
.x1c_c00019{left:345.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_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_2a93d20a8caa191a0303dc59.woff2')format("woff");}.ff1_c00020{font-family:ff1_c00020;line-height:1.437000;font-style:normal;font-weight:normal;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_40a1138f04973e2d0a2e879c.woff2')format("woff");}.ff2_c00020{font-family:ff2_c00020;line-height:1.437000;font-style:normal;font-weight:normal;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_c99c76fb75f88af478ec9a87.woff2')format("woff");}.ff3_c00020{font-family:ff3_c00020;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00020;src:url('chunks/assets/font_acc857029cbf23929d7fb996.woff2')format("woff");}.ff4_c00020{font-family:ff4_c00020;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00020;src:url('chunks/assets/font_4c5fdf5c0da41c8a430c19d2.woff2')format("woff");}.ff5_c00020{font-family:ff5_c00020;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00020;src:url('chunks/assets/font_eae72e7e90e29c7a1724344c.woff2')format("woff");}.ff6_c00020{font-family:ff6_c00020;line-height:1.012793;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00020;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff7_c00020{font-family:ff7_c00020;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00020{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00020{vertical-align:-64.800000px;}
.v0_c00020{vertical-align:0.000000px;}
.ls8_c00020{letter-spacing:-3.000000px;}
.ls5_c00020{letter-spacing:0.000000px;}
.ls6_c00020{letter-spacing:3.000000px;}
.ls1_c00020{letter-spacing:6.600000px;}
.ls7_c00020{letter-spacing:9.000000px;}
.ls0_c00020{letter-spacing:10.200000px;}
.ls4_c00020{letter-spacing:11.067000px;}
.ls2_c00020{letter-spacing:12.840000px;}
.ls3_c00020{letter-spacing:28.740000px;}
.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:-30.540000px;}
.ws8_c00020{word-spacing:-21.045000px;}
.ws6_c00020{word-spacing:-20.679000px;}
.ws2_c00020{word-spacing:-18.000000px;}
.ws3_c00020{word-spacing:-15.060000px;}
.ws4_c00020{word-spacing:-11.679000px;}
.ws1_c00020{word-spacing:-0.720000px;}
.ws5_c00020{word-spacing:-0.051000px;}
.ws9_c00020{word-spacing:0.000000px;}
.ws7_c00020{word-spacing:295.680000px;}
._1c_c00020{margin-left:-19.920000px;}
._1e_c00020{margin-left:-17.580000px;}
._12_c00020{margin-left:-15.540000px;}
._20_c00020{margin-left:-13.440000px;}
._16_c00020{margin-left:-12.060000px;}
._13_c00020{margin-left:-8.760000px;}
._c_c00020{margin-left:-6.960000px;}
._11_c00020{margin-left:-4.980000px;}
._f_c00020{margin-left:-3.360000px;}
._b_c00020{margin-left:-1.920000px;}
._9_c00020{width:1.440000px;}
._8_c00020{width:2.520000px;}
._5_c00020{width:4.500000px;}
._7_c00020{width:6.420000px;}
._6_c00020{width:7.620000px;}
._0_c00020{width:9.000000px;}
._1_c00020{width:10.440000px;}
._a_c00020{width:12.000000px;}
._3_c00020{width:13.260000px;}
._21_c00020{width:14.721000px;}
._4_c00020{width:16.320000px;}
._2_c00020{width:17.400000px;}
._17_c00020{width:18.780000px;}
._10_c00020{width:20.100000px;}
._d_c00020{width:21.540000px;}
._1b_c00020{width:23.160000px;}
._1f_c00020{width:25.500000px;}
._18_c00020{width:27.900000px;}
._1a_c00020{width:29.520000px;}
._19_c00020{width:30.840000px;}
._1d_c00020{width:34.260000px;}
._23_c00020{width:35.400000px;}
._15_c00020{width:36.480000px;}
._22_c00020{width:37.560000px;}
._e_c00020{width:63.060000px;}
._14_c00020{width:238.260000px;}
.fc2_c00020{color:transparent;}
.fc1_c00020{color:rgb(128,128,128);}
.fc0_c00020{color:rgb(0,0,0);}
.fs1_c00020{font-size:24.000000px;}
.fs4_c00020{font-size:48.000000px;}
.fs2_c00020{font-size:51.000000px;}
.fs0_c00020{font-size:60.000000px;}
.fs3_c00020{font-size:105.000000px;}
.y0_c00020{bottom:0.000000px;}
.y50_c00020{bottom:3.105000px;}
.y4f_c00020{bottom:7.228371px;}
.y2a_c00020{bottom:57.465000px;}
.y4e_c00020{bottom:58.515000px;}
.y4d_c00020{bottom:77.265000px;}
.y29_c00020{bottom:77.715000px;}
.y28_c00020{bottom:94.815000px;}
.y4c_c00020{bottom:95.565000px;}
.y27_c00020{bottom:113.115000px;}
.y4b_c00020{bottom:113.865000px;}
.y26_c00020{bottom:131.415000px;}
.y4a_c00020{bottom:131.715000px;}
.y25_c00020{bottom:148.815000px;}
.y49_c00020{bottom:149.715000px;}
.y24_c00020{bottom:166.065000px;}
.y48_c00020{bottom:167.865000px;}
.y23_c00020{bottom:185.265000px;}
.y47_c00020{bottom:186.015000px;}
.y22_c00020{bottom:203.265000px;}
.y46_c00020{bottom:204.315000px;}
.y21_c00020{bottom:222.165000px;}
.y20_c00020{bottom:239.415000px;}
.y45_c00020{bottom:240.315000px;}
.y44_c00020{bottom:258.165000px;}
.y1f_c00020{bottom:258.615000px;}
.y1e_c00020{bottom:275.865000px;}
.y43_c00020{bottom:276.465000px;}
.y1d_c00020{bottom:293.715000px;}
.y42_c00020{bottom:294.315000px;}
.y1c_c00020{bottom:311.565000px;}
.y41_c00020{bottom:312.315000px;}
.y40_c00020{bottom:329.865000px;}
.y1b_c00020{bottom:330.765000px;}
.y1a_c00020{bottom:346.965000px;}
.y3f_c00020{bottom:347.715000px;}
.y19_c00020{bottom:363.915000px;}
.y3e_c00020{bottom:365.565000px;}
.y18_c00020{bottom:382.815000px;}
.y3d_c00020{bottom:384.165000px;}
.y3c_c00020{bottom:400.965000px;}
.y17_c00020{bottom:402.015000px;}
.y16_c00020{bottom:418.215000px;}
.y3b_c00020{bottom:418.965000px;}
.y15_c00020{bottom:435.765000px;}
.y3a_c00020{bottom:436.515000px;}
.y39_c00020{bottom:453.915000px;}
.y14_c00020{bottom:454.365000px;}
.y13_c00020{bottom:471.615000px;}
.y38_c00020{bottom:471.915000px;}
.y12_c00020{bottom:489.465000px;}
.y37_c00020{bottom:489.765000px;}
.y11_c00020{bottom:507.615000px;}
.y36_c00020{bottom:508.365000px;}
.y10_c00020{bottom:525.165000px;}
.y35_c00020{bottom:525.915000px;}
.yf_c00020{bottom:543.165000px;}
.y34_c00020{bottom:544.065000px;}
.ye_c00020{bottom:560.715000px;}
.y33_c00020{bottom:562.065000px;}
.yd_c00020{bottom:579.165000px;}
.yc_c00020{bottom:595.365000px;}
.y32_c00020{bottom:597.165000px;}
.yb_c00020{bottom:615.615000px;}
.y31_c00020{bottom:615.915000px;}
.ya_c00020{bottom:633.615000px;}
.y30_c00020{bottom:633.915000px;}
.y9_c00020{bottom:651.465000px;}
.y2f_c00020{bottom:652.515000px;}
.y8_c00020{bottom:669.615000px;}
.y7_c00020{bottom:687.165000px;}
.y2e_c00020{bottom:688.515000px;}
.y2d_c00020{bottom:706.065000px;}
.y6_c00020{bottom:706.515000px;}
.y2c_c00020{bottom:725.265000px;}
.y5_c00020{bottom:726.615000px;}
.y4_c00020{bottom:742.815000px;}
.y2b_c00020{bottom:760.515000px;}
.y3_c00020{bottom:761.865000px;}
.y2_c00020{bottom:778.665000px;}
.y1_c00020{bottom:797.565000px;}
.h5_c00020{height:13.200074px;}
.h6_c00020{height:43.804688px;}
.h4_c00020{height:53.448000px;}
.h2_c00020{height:62.880000px;}
.h3_c00020{height:64.020000px;}
.h0_c00020{height:828.375000px;}
.h1_c00020{height:828.750000px;}
.w2_c00020{width:104.875500px;}
.w1_c00020{width:564.000000px;}
.w0_c00020{width:564.300000px;}
.x0_c00020{left:0.000000px;}
.x3_c00020{left:20.550000px;}
.x4_c00020{left:22.200000px;}
.x7_c00020{left:23.850000px;}
.x8_c00020{left:25.950000px;}
.xa_c00020{left:27.300000px;}
.xb_c00020{left:28.650000px;}
.xc_c00020{left:29.700000px;}
.xe_c00020{left:31.050000px;}
.x10_c00020{left:32.100000px;}
.x11_c00020{left:33.300000px;}
.x13_c00020{left:34.650000px;}
.x14_c00020{left:35.700000px;}
.x5_c00020{left:38.100000px;}
.x6_c00020{left:41.850000px;}
.xd_c00020{left:46.800000px;}
.x9_c00020{left:48.150000px;}
.xf_c00020{left:50.550000px;}
.x12_c00020{left:52.350000px;}
.x1_c00020{left:115.800000px;}
.x2_c00020{left:153.900000px;}
.x26_c00020{left:233.964249px;}
.x16_c00020{left:258.600000px;}
.x18_c00020{left:260.550000px;}
.x15_c00020{left:262.200000px;}
.x1a_c00020{left:264.150000px;}
.x1b_c00020{left:265.200000px;}
.x1f_c00020{left:267.300000px;}
.x21_c00020{left:269.250000px;}
.x22_c00020{left:270.900000px;}
.x25_c00020{left:272.400000px;}
.x17_c00020{left:276.750000px;}
.x19_c00020{left:278.550000px;}
.x1e_c00020{left:279.750000px;}
.x1c_c00020{left:283.800000px;}
.x20_c00020{left:287.250000px;}
.x23_c00020{left:289.800000px;}
.x24_c00020{left:295.950000px;}
.x1d_c00020{left:300.600000px;}
@media print{
.v1_c00020{vertical-align:-57.600000pt;}
.v0_c00020{vertical-align:0.000000pt;}
.ls8_c00020{letter-spacing:-2.666667pt;}
.ls5_c00020{letter-spacing:0.000000pt;}
.ls6_c00020{letter-spacing:2.666667pt;}
.ls1_c00020{letter-spacing:5.866667pt;}
.ls7_c00020{letter-spacing:8.000000pt;}
.ls0_c00020{letter-spacing:9.066667pt;}
.ls4_c00020{letter-spacing:9.837333pt;}
.ls2_c00020{letter-spacing:11.413333pt;}
.ls3_c00020{letter-spacing:25.546667pt;}
.ws0_c00020{word-spacing:-27.146667pt;}
.ws8_c00020{word-spacing:-18.706667pt;}
.ws6_c00020{word-spacing:-18.381333pt;}
.ws2_c00020{word-spacing:-16.000000pt;}
.ws3_c00020{word-spacing:-13.386667pt;}
.ws4_c00020{word-spacing:-10.381333pt;}
.ws1_c00020{word-spacing:-0.640000pt;}
.ws5_c00020{word-spacing:-0.045333pt;}
.ws9_c00020{word-spacing:0.000000pt;}
.ws7_c00020{word-spacing:262.826667pt;}
._1c_c00020{margin-left:-17.706667pt;}
._1e_c00020{margin-left:-15.626667pt;}
._12_c00020{margin-left:-13.813333pt;}
._20_c00020{margin-left:-11.946667pt;}
._16_c00020{margin-left:-10.720000pt;}
._13_c00020{margin-left:-7.786667pt;}
._c_c00020{margin-left:-6.186667pt;}
._11_c00020{margin-left:-4.426667pt;}
._f_c00020{margin-left:-2.986667pt;}
._b_c00020{margin-left:-1.706667pt;}
._9_c00020{width:1.280000pt;}
._8_c00020{width:2.240000pt;}
._5_c00020{width:4.000000pt;}
._7_c00020{width:5.706667pt;}
._6_c00020{width:6.773333pt;}
._0_c00020{width:8.000000pt;}
._1_c00020{width:9.280000pt;}
._a_c00020{width:10.666667pt;}
._3_c00020{width:11.786667pt;}
._21_c00020{width:13.085333pt;}
._4_c00020{width:14.506667pt;}
._2_c00020{width:15.466667pt;}
._17_c00020{width:16.693333pt;}
._10_c00020{width:17.866667pt;}
._d_c00020{width:19.146667pt;}
._1b_c00020{width:20.586667pt;}
._1f_c00020{width:22.666667pt;}
._18_c00020{width:24.800000pt;}
._1a_c00020{width:26.240000pt;}
._19_c00020{width:27.413333pt;}
._1d_c00020{width:30.453333pt;}
._23_c00020{width:31.466667pt;}
._15_c00020{width:32.426667pt;}
._22_c00020{width:33.386667pt;}
._e_c00020{width:56.053333pt;}
._14_c00020{width:211.786667pt;}
.fs1_c00020{font-size:21.333333pt;}
.fs4_c00020{font-size:42.666667pt;}
.fs2_c00020{font-size:45.333333pt;}
.fs0_c00020{font-size:53.333333pt;}
.fs3_c00020{font-size:93.333333pt;}
.y0_c00020{bottom:0.000000pt;}
.y50_c00020{bottom:2.760000pt;}
.y4f_c00020{bottom:6.425219pt;}
.y2a_c00020{bottom:51.080000pt;}
.y4e_c00020{bottom:52.013333pt;}
.y4d_c00020{bottom:68.680000pt;}
.y29_c00020{bottom:69.080000pt;}
.y28_c00020{bottom:84.280000pt;}
.y4c_c00020{bottom:84.946667pt;}
.y27_c00020{bottom:100.546667pt;}
.y4b_c00020{bottom:101.213333pt;}
.y26_c00020{bottom:116.813333pt;}
.y4a_c00020{bottom:117.080000pt;}
.y25_c00020{bottom:132.280000pt;}
.y49_c00020{bottom:133.080000pt;}
.y24_c00020{bottom:147.613333pt;}
.y48_c00020{bottom:149.213333pt;}
.y23_c00020{bottom:164.680000pt;}
.y47_c00020{bottom:165.346667pt;}
.y22_c00020{bottom:180.680000pt;}
.y46_c00020{bottom:181.613333pt;}
.y21_c00020{bottom:197.480000pt;}
.y20_c00020{bottom:212.813333pt;}
.y45_c00020{bottom:213.613333pt;}
.y44_c00020{bottom:229.480000pt;}
.y1f_c00020{bottom:229.880000pt;}
.y1e_c00020{bottom:245.213333pt;}
.y43_c00020{bottom:245.746667pt;}
.y1d_c00020{bottom:261.080000pt;}
.y42_c00020{bottom:261.613333pt;}
.y1c_c00020{bottom:276.946667pt;}
.y41_c00020{bottom:277.613333pt;}
.y40_c00020{bottom:293.213333pt;}
.y1b_c00020{bottom:294.013333pt;}
.y1a_c00020{bottom:308.413333pt;}
.y3f_c00020{bottom:309.080000pt;}
.y19_c00020{bottom:323.480000pt;}
.y3e_c00020{bottom:324.946667pt;}
.y18_c00020{bottom:340.280000pt;}
.y3d_c00020{bottom:341.480000pt;}
.y3c_c00020{bottom:356.413333pt;}
.y17_c00020{bottom:357.346667pt;}
.y16_c00020{bottom:371.746667pt;}
.y3b_c00020{bottom:372.413333pt;}
.y15_c00020{bottom:387.346667pt;}
.y3a_c00020{bottom:388.013333pt;}
.y39_c00020{bottom:403.480000pt;}
.y14_c00020{bottom:403.880000pt;}
.y13_c00020{bottom:419.213333pt;}
.y38_c00020{bottom:419.480000pt;}
.y12_c00020{bottom:435.080000pt;}
.y37_c00020{bottom:435.346667pt;}
.y11_c00020{bottom:451.213333pt;}
.y36_c00020{bottom:451.880000pt;}
.y10_c00020{bottom:466.813333pt;}
.y35_c00020{bottom:467.480000pt;}
.yf_c00020{bottom:482.813333pt;}
.y34_c00020{bottom:483.613333pt;}
.ye_c00020{bottom:498.413333pt;}
.y33_c00020{bottom:499.613333pt;}
.yd_c00020{bottom:514.813333pt;}
.yc_c00020{bottom:529.213333pt;}
.y32_c00020{bottom:530.813333pt;}
.yb_c00020{bottom:547.213333pt;}
.y31_c00020{bottom:547.480000pt;}
.ya_c00020{bottom:563.213333pt;}
.y30_c00020{bottom:563.480000pt;}
.y9_c00020{bottom:579.080000pt;}
.y2f_c00020{bottom:580.013333pt;}
.y8_c00020{bottom:595.213333pt;}
.y7_c00020{bottom:610.813333pt;}
.y2e_c00020{bottom:612.013333pt;}
.y2d_c00020{bottom:627.613333pt;}
.y6_c00020{bottom:628.013333pt;}
.y2c_c00020{bottom:644.680000pt;}
.y5_c00020{bottom:645.880000pt;}
.y4_c00020{bottom:660.280000pt;}
.y2b_c00020{bottom:676.013333pt;}
.y3_c00020{bottom:677.213333pt;}
.y2_c00020{bottom:692.146667pt;}
.y1_c00020{bottom:708.946667pt;}
.h5_c00020{height:11.733399pt;}
.h6_c00020{height:38.937500pt;}
.h4_c00020{height:47.509333pt;}
.h2_c00020{height:55.893333pt;}
.h3_c00020{height:56.906667pt;}
.h0_c00020{height:736.333333pt;}
.h1_c00020{height:736.666667pt;}
.w2_c00020{width:93.222667pt;}
.w1_c00020{width:501.333333pt;}
.w0_c00020{width:501.600000pt;}
.x0_c00020{left:0.000000pt;}
.x3_c00020{left:18.266667pt;}
.x4_c00020{left:19.733333pt;}
.x7_c00020{left:21.200000pt;}
.x8_c00020{left:23.066667pt;}
.xa_c00020{left:24.266667pt;}
.xb_c00020{left:25.466667pt;}
.xc_c00020{left:26.400000pt;}
.xe_c00020{left:27.600000pt;}
.x10_c00020{left:28.533333pt;}
.x11_c00020{left:29.600000pt;}
.x13_c00020{left:30.800000pt;}
.x14_c00020{left:31.733333pt;}
.x5_c00020{left:33.866667pt;}
.x6_c00020{left:37.200000pt;}
.xd_c00020{left:41.600000pt;}
.x9_c00020{left:42.800000pt;}
.xf_c00020{left:44.933333pt;}
.x12_c00020{left:46.533333pt;}
.x1_c00020{left:102.933333pt;}
.x2_c00020{left:136.800000pt;}
.x26_c00020{left:207.968221pt;}
.x16_c00020{left:229.866667pt;}
.x18_c00020{left:231.600000pt;}
.x15_c00020{left:233.066667pt;}
.x1a_c00020{left:234.800000pt;}
.x1b_c00020{left:235.733333pt;}
.x1f_c00020{left:237.600000pt;}
.x21_c00020{left:239.333333pt;}
.x22_c00020{left:240.800000pt;}
.x25_c00020{left:242.133333pt;}
.x17_c00020{left:246.000000pt;}
.x19_c00020{left:247.600000pt;}
.x1e_c00020{left:248.666667pt;}
.x1c_c00020{left:252.266667pt;}
.x20_c00020{left:255.333333pt;}
.x23_c00020{left:257.600000pt;}
.x24_c00020{left:263.066667pt;}
.x1d_c00020{left:267.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_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_8ee9efd84e051001a8fdfcdf.woff2')format("woff");}.ff1_c00021{font-family:ff1_c00021;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00021;src:url('chunks/assets/font_606ae14317362d7fac335637.woff2')format("woff");}.ff2_c00021{font-family:ff2_c00021;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00021;src:url('chunks/assets/font_f354aaefa1a863c91837c799.woff2')format("woff");}.ff3_c00021{font-family:ff3_c00021;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00021;src:url('chunks/assets/font_d94e4bd8253bc0c89ac6009b.woff2')format("woff");}.ff4_c00021{font-family:ff4_c00021;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00021;src:url('chunks/assets/font_a09c536172043ef3c2296fd2.woff2')format("woff");}.ff5_c00021{font-family:ff5_c00021;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00021;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff6_c00021{font-family:ff6_c00021;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00021{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00021{vertical-align:0.000000px;}
.ls3_c00021{letter-spacing:-6.000000px;}
.ls2_c00021{letter-spacing:0.000000px;}
.ls4_c00021{letter-spacing:3.000000px;}
.ls1_c00021{letter-spacing:9.000000px;}
.ls0_c00021{letter-spacing:15.000000px;}
.sc__c00021{text-shadow:none;}
.sc0_c00021{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00021{-webkit-text-stroke:0px transparent;}
.sc0_c00021{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00021{word-spacing:-36.132000px;}
.ws4_c00021{word-spacing:-30.540000px;}
.ws2_c00021{word-spacing:-25.095000px;}
.ws1_c00021{word-spacing:-1.920000px;}
.ws6_c00021{word-spacing:0.000000px;}
.ws0_c00021{word-spacing:5.160000px;}
.ws3_c00021{word-spacing:5.883000px;}
._12_c00021{margin-left:-22.050000px;}
._10_c00021{margin-left:-20.265000px;}
._15_c00021{margin-left:-19.140000px;}
._11_c00021{margin-left:-17.850000px;}
._14_c00021{margin-left:-16.170000px;}
._13_c00021{margin-left:-14.595000px;}
._17_c00021{margin-left:-12.300000px;}
._16_c00021{margin-left:-8.895000px;}
._f_c00021{margin-left:-5.700000px;}
._a_c00021{margin-left:-3.060000px;}
._d_c00021{margin-left:-1.320000px;}
._9_c00021{width:1.200000px;}
._5_c00021{width:2.580000px;}
._4_c00021{width:4.320000px;}
._c_c00021{width:5.460000px;}
._3_c00021{width:6.600000px;}
._6_c00021{width:7.920000px;}
._b_c00021{width:9.000000px;}
._18_c00021{width:10.500000px;}
._e_c00021{width:11.940000px;}
._1_c00021{width:13.440000px;}
._1b_c00021{width:16.140000px;}
._2_c00021{width:17.160000px;}
._19_c00021{width:19.260000px;}
._1d_c00021{width:20.280000px;}
._0_c00021{width:21.960000px;}
._8_c00021{width:24.060000px;}
._1c_c00021{width:25.296000px;}
._7_c00021{width:26.520000px;}
._1a_c00021{width:34.620000px;}
.fc2_c00021{color:transparent;}
.fc1_c00021{color:rgb(128,128,128);}
.fc0_c00021{color:rgb(0,0,0);}
.fs5_c00021{font-size:48.000000px;}
.fs3_c00021{font-size:54.000000px;}
.fs0_c00021{font-size:60.000000px;}
.fs1_c00021{font-size:105.000000px;}
.fs2_c00021{font-size:117.000000px;}
.fs4_c00021{font-size:132.000000px;}
.y0_c00021{bottom:0.000000px;}
.y1d_c00021{bottom:3.105000px;}
.y1c_c00021{bottom:7.228363px;}
.y1b_c00021{bottom:60.450000px;}
.ye_c00021{bottom:571.350000px;}
.y1a_c00021{bottom:587.250000px;}
.yd_c00021{bottom:590.700000px;}
.y19_c00021{bottom:604.200000px;}
.yc_c00021{bottom:607.800000px;}
.y18_c00021{bottom:623.700000px;}
.yb_c00021{bottom:625.800000px;}
.y17_c00021{bottom:641.700000px;}
.ya_c00021{bottom:643.050000px;}
.y16_c00021{bottom:659.250000px;}
.y9_c00021{bottom:660.900000px;}
.y15_c00021{bottom:677.700000px;}
.y8_c00021{bottom:680.100000px;}
.y14_c00021{bottom:695.700000px;}
.y7_c00021{bottom:697.650000px;}
.y13_c00021{bottom:713.550000px;}
.y6_c00021{bottom:717.300000px;}
.y12_c00021{bottom:731.700000px;}
.y5_c00021{bottom:734.400000px;}
.y11_c00021{bottom:750.900000px;}
.y4_c00021{bottom:752.700000px;}
.y10_c00021{bottom:768.600000px;}
.y3_c00021{bottom:770.550000px;}
.yf_c00021{bottom:786.000000px;}
.y2_c00021{bottom:789.000000px;}
.y1_c00021{bottom:805.950000px;}
.h6_c00021{height:13.200074px;}
.h7_c00021{height:43.804688px;}
.h3_c00021{height:62.880000px;}
.h2_c00021{height:64.020000px;}
.h4_c00021{height:120.257563px;}
.h5_c00021{height:138.336000px;}
.h1_c00021{height:842.250000px;}
.h0_c00021{height:842.400000px;}
.w2_c00021{width:104.875500px;}
.w1_c00021{width:559.500000px;}
.w0_c00021{width:559.725000px;}
.x0_c00021{left:0.000000px;}
.x4_c00021{left:87.000000px;}
.x3_c00021{left:88.050000px;}
.x6_c00021{left:102.900000px;}
.x5_c00021{left:104.550000px;}
.x2_c00021{left:105.900000px;}
.x1_c00021{left:232.500000px;}
.x7_c00021{left:314.100000px;}
.xc_c00021{left:320.250000px;}
.x8_c00021{left:321.600000px;}
.xa_c00021{left:322.650000px;}
.xb_c00021{left:334.500000px;}
.x9_c00021{left:337.500000px;}
.xd_c00021{left:389.250000px;}
@media print{
.v0_c00021{vertical-align:0.000000pt;}
.ls3_c00021{letter-spacing:-5.333333pt;}
.ls2_c00021{letter-spacing:0.000000pt;}
.ls4_c00021{letter-spacing:2.666667pt;}
.ls1_c00021{letter-spacing:8.000000pt;}
.ls0_c00021{letter-spacing:13.333333pt;}
.ws5_c00021{word-spacing:-32.117333pt;}
.ws4_c00021{word-spacing:-27.146667pt;}
.ws2_c00021{word-spacing:-22.306667pt;}
.ws1_c00021{word-spacing:-1.706667pt;}
.ws6_c00021{word-spacing:0.000000pt;}
.ws0_c00021{word-spacing:4.586667pt;}
.ws3_c00021{word-spacing:5.229333pt;}
._12_c00021{margin-left:-19.600000pt;}
._10_c00021{margin-left:-18.013333pt;}
._15_c00021{margin-left:-17.013333pt;}
._11_c00021{margin-left:-15.866667pt;}
._14_c00021{margin-left:-14.373333pt;}
._13_c00021{margin-left:-12.973333pt;}
._17_c00021{margin-left:-10.933333pt;}
._16_c00021{margin-left:-7.906667pt;}
._f_c00021{margin-left:-5.066667pt;}
._a_c00021{margin-left:-2.720000pt;}
._d_c00021{margin-left:-1.173333pt;}
._9_c00021{width:1.066667pt;}
._5_c00021{width:2.293333pt;}
._4_c00021{width:3.840000pt;}
._c_c00021{width:4.853333pt;}
._3_c00021{width:5.866667pt;}
._6_c00021{width:7.040000pt;}
._b_c00021{width:8.000000pt;}
._18_c00021{width:9.333333pt;}
._e_c00021{width:10.613333pt;}
._1_c00021{width:11.946667pt;}
._1b_c00021{width:14.346667pt;}
._2_c00021{width:15.253333pt;}
._19_c00021{width:17.120000pt;}
._1d_c00021{width:18.026667pt;}
._0_c00021{width:19.520000pt;}
._8_c00021{width:21.386667pt;}
._1c_c00021{width:22.485333pt;}
._7_c00021{width:23.573333pt;}
._1a_c00021{width:30.773333pt;}
.fs5_c00021{font-size:42.666667pt;}
.fs3_c00021{font-size:48.000000pt;}
.fs0_c00021{font-size:53.333333pt;}
.fs1_c00021{font-size:93.333333pt;}
.fs2_c00021{font-size:104.000000pt;}
.fs4_c00021{font-size:117.333333pt;}
.y0_c00021{bottom:0.000000pt;}
.y1d_c00021{bottom:2.760000pt;}
.y1c_c00021{bottom:6.425212pt;}
.y1b_c00021{bottom:53.733333pt;}
.ye_c00021{bottom:507.866667pt;}
.y1a_c00021{bottom:522.000000pt;}
.yd_c00021{bottom:525.066667pt;}
.y19_c00021{bottom:537.066667pt;}
.yc_c00021{bottom:540.266667pt;}
.y18_c00021{bottom:554.400000pt;}
.yb_c00021{bottom:556.266667pt;}
.y17_c00021{bottom:570.400000pt;}
.ya_c00021{bottom:571.600000pt;}
.y16_c00021{bottom:586.000000pt;}
.y9_c00021{bottom:587.466667pt;}
.y15_c00021{bottom:602.400000pt;}
.y8_c00021{bottom:604.533333pt;}
.y14_c00021{bottom:618.400000pt;}
.y7_c00021{bottom:620.133333pt;}
.y13_c00021{bottom:634.266667pt;}
.y6_c00021{bottom:637.600000pt;}
.y12_c00021{bottom:650.400000pt;}
.y5_c00021{bottom:652.800000pt;}
.y11_c00021{bottom:667.466667pt;}
.y4_c00021{bottom:669.066667pt;}
.y10_c00021{bottom:683.200000pt;}
.y3_c00021{bottom:684.933333pt;}
.yf_c00021{bottom:698.666667pt;}
.y2_c00021{bottom:701.333333pt;}
.y1_c00021{bottom:716.400000pt;}
.h6_c00021{height:11.733399pt;}
.h7_c00021{height:38.937500pt;}
.h3_c00021{height:55.893333pt;}
.h2_c00021{height:56.906667pt;}
.h4_c00021{height:106.895612pt;}
.h5_c00021{height:122.965333pt;}
.h1_c00021{height:748.666667pt;}
.h0_c00021{height:748.800000pt;}
.w2_c00021{width:93.222667pt;}
.w1_c00021{width:497.333333pt;}
.w0_c00021{width:497.533333pt;}
.x0_c00021{left:0.000000pt;}
.x4_c00021{left:77.333333pt;}
.x3_c00021{left:78.266667pt;}
.x6_c00021{left:91.466667pt;}
.x5_c00021{left:92.933333pt;}
.x2_c00021{left:94.133333pt;}
.x1_c00021{left:206.666667pt;}
.x7_c00021{left:279.200000pt;}
.xc_c00021{left:284.666667pt;}
.x8_c00021{left:285.866667pt;}
.xa_c00021{left:286.800000pt;}
.xb_c00021{left:297.333333pt;}
.x9_c00021{left:300.000000pt;}
.xd_c00021{left:346.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_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_49768faf3fafc4ece4a2f3b6.woff2')format("woff");}.ff1_c00022{font-family:ff1_c00022;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00022;src:url('chunks/assets/font_c3b538407cb51f6febc2a9e1.woff2')format("woff");}.ff2_c00022{font-family:ff2_c00022;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00022;src:url('chunks/assets/font_3356765020d3ae44c90ca81e.woff2')format("woff");}.ff3_c00022{font-family:ff3_c00022;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00022;src:url('chunks/assets/font_7432567d06900546a23caed6.woff2')format("woff");}.ff4_c00022{font-family:ff4_c00022;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00022;src:url('chunks/assets/font_f7eb2e7c2bc93c4fc5f35e4c.woff2')format("woff");}.ff5_c00022{font-family:ff5_c00022;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00022;src:url('chunks/assets/font_59f7db348eece1a8ee7f2f38.woff2')format("woff");}.ff6_c00022{font-family:ff6_c00022;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00022;src:url('chunks/assets/font_105ab6f585fa00e3bfce23b4.woff2')format("woff");}.ff7_c00022{font-family:ff7_c00022;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00022;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff8_c00022{font-family:ff8_c00022;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00022{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00022{vertical-align:0.000000px;}
.ls6_c00022{letter-spacing:-3.000000px;}
.ls5_c00022{letter-spacing:0.000000px;}
.ls0_c00022{letter-spacing:4.320000px;}
.ls3_c00022{letter-spacing:5.400000px;}
.ls7_c00022{letter-spacing:6.000000px;}
.ls2_c00022{letter-spacing:8.505000px;}
.ls4_c00022{letter-spacing:9.000000px;}
.ls1_c00022{letter-spacing:18.999000px;}
.sc__c00022{text-shadow:none;}
.sc0_c00022{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00022{-webkit-text-stroke:0px transparent;}
.sc0_c00022{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00022{word-spacing:-23.760000px;}
.ws0_c00022{word-spacing:-21.045000px;}
.ws3_c00022{word-spacing:-15.060000px;}
.ws2_c00022{word-spacing:-11.679000px;}
.ws4_c00022{word-spacing:0.000000px;}
._1f_c00022{margin-left:-44.004000px;}
._13_c00022{margin-left:-41.055000px;}
._15_c00022{margin-left:-39.900000px;}
._22_c00022{margin-left:-32.550000px;}
._1e_c00022{margin-left:-29.505000px;}
._20_c00022{margin-left:-28.455000px;}
._16_c00022{margin-left:-26.565000px;}
._18_c00022{margin-left:-25.200000px;}
._1d_c00022{margin-left:-24.045000px;}
._19_c00022{margin-left:-22.986000px;}
._14_c00022{margin-left:-21.840000px;}
._1a_c00022{margin-left:-20.370000px;}
._36_c00022{margin-left:-18.480000px;}
._17_c00022{margin-left:-17.430000px;}
._21_c00022{margin-left:-15.750000px;}
._1c_c00022{margin-left:-14.385000px;}
._1b_c00022{margin-left:-12.915000px;}
._24_c00022{margin-left:-10.260000px;}
._23_c00022{margin-left:-8.448000px;}
._7_c00022{margin-left:-6.615000px;}
._8_c00022{margin-left:-4.935000px;}
._5_c00022{margin-left:-3.276000px;}
._4_c00022{margin-left:-2.106000px;}
._32_c00022{margin-left:-1.056000px;}
._3_c00022{width:1.053000px;}
._11_c00022{width:2.826000px;}
._12_c00022{width:4.080000px;}
._10_c00022{width:5.274000px;}
._29_c00022{width:6.522000px;}
._0_c00022{width:7.722000px;}
._2b_c00022{width:8.754000px;}
._f_c00022{width:10.302000px;}
._6_c00022{width:11.316000px;}
._e_c00022{width:12.942000px;}
._b_c00022{width:14.040000px;}
._9_c00022{width:16.080000px;}
._a_c00022{width:17.340000px;}
._d_c00022{width:18.900000px;}
._34_c00022{width:21.855000px;}
._c_c00022{width:23.688000px;}
._38_c00022{width:24.774000px;}
._2e_c00022{width:25.959000px;}
._2c_c00022{width:27.108000px;}
._25_c00022{width:29.040000px;}
._2d_c00022{width:30.288000px;}
._2a_c00022{width:43.290000px;}
._1_c00022{width:46.683000px;}
._30_c00022{width:47.946000px;}
._31_c00022{width:49.746000px;}
._28_c00022{width:57.876000px;}
._33_c00022{width:59.616000px;}
._2_c00022{width:63.648000px;}
._37_c00022{width:65.595000px;}
._27_c00022{width:103.386000px;}
._35_c00022{width:111.726000px;}
._26_c00022{width:391.248000px;}
._2f_c00022{width:495.765000px;}
.fc2_c00022{color:transparent;}
.fc1_c00022{color:rgb(128,128,128);}
.fc0_c00022{color:rgb(0,0,0);}
.fs4_c00022{font-size:48.000000px;}
.fs3_c00022{font-size:51.000000px;}
.fs2_c00022{font-size:60.000000px;}
.fs1_c00022{font-size:105.000000px;}
.fs0_c00022{font-size:117.000000px;}
.y0_c00022{bottom:0.000000px;}
.y3e_c00022{bottom:3.105000px;}
.y3d_c00022{bottom:7.228355px;}
.y3c_c00022{bottom:45.885000px;}
.y24_c00022{bottom:63.135000px;}
.y23_c00022{bottom:81.285000px;}
.y3b_c00022{bottom:81.585000px;}
.y22_c00022{bottom:99.585000px;}
.y3a_c00022{bottom:99.885000px;}
.y21_c00022{bottom:117.735000px;}
.y39_c00022{bottom:135.585000px;}
.y20_c00022{bottom:136.035000px;}
.y1f_c00022{bottom:153.585000px;}
.y1e_c00022{bottom:172.035000px;}
.y1d_c00022{bottom:190.035000px;}
.y38_c00022{bottom:208.185000px;}
.y1c_c00022{bottom:208.485000px;}
.y1b_c00022{bottom:226.335000px;}
.y1a_c00022{bottom:244.035000px;}
.y37_c00022{bottom:244.335000px;}
.y36_c00022{bottom:262.185000px;}
.y19_c00022{bottom:262.785000px;}
.y18_c00022{bottom:280.485000px;}
.y35_c00022{bottom:298.335000px;}
.y17_c00022{bottom:298.635000px;}
.y16_c00022{bottom:316.785000px;}
.y15_c00022{bottom:334.335000px;}
.y14_c00022{bottom:351.585000px;}
.y34_c00022{bottom:352.335000px;}
.y13_c00022{bottom:369.135000px;}
.y33_c00022{bottom:369.885000px;}
.y32_c00022{bottom:387.135000px;}
.y12_c00022{bottom:388.035000px;}
.y31_c00022{bottom:405.885000px;}
.y11_c00022{bottom:406.035000px;}
.y10_c00022{bottom:423.435000px;}
.yf_c00022{bottom:441.435000px;}
.ye_c00022{bottom:458.985000px;}
.yd_c00022{bottom:476.835000px;}
.yc_c00022{bottom:494.085000px;}
.y30_c00022{bottom:495.135000px;}
.yb_c00022{bottom:512.985000px;}
.y2f_c00022{bottom:513.285000px;}
.ya_c00022{bottom:530.535000px;}
.y2e_c00022{bottom:531.135000px;}
.y9_c00022{bottom:549.135000px;}
.y2d_c00022{bottom:549.435000px;}
.y2c_c00022{bottom:567.585000px;}
.y2b_c00022{bottom:582.885000px;}
.y8_c00022{bottom:584.535000px;}
.y2a_c00022{bottom:602.385000px;}
.y7_c00022{bottom:602.985000px;}
.y29_c00022{bottom:620.235000px;}
.y6_c00022{bottom:620.535000px;}
.y28_c00022{bottom:638.835000px;}
.y5_c00022{bottom:639.585000px;}
.y27_c00022{bottom:656.985000px;}
.y4_c00022{bottom:674.235000px;}
.y26_c00022{bottom:674.985000px;}
.y25_c00022{bottom:693.135000px;}
.y3_c00022{bottom:693.435000px;}
.y2_c00022{bottom:740.085000px;}
.y1_c00022{bottom:770.535000px;}
.h7_c00022{height:13.200074px;}
.h8_c00022{height:43.804688px;}
.h5_c00022{height:50.053711px;}
.h4_c00022{height:62.880000px;}
.h6_c00022{height:64.020000px;}
.h3_c00022{height:110.040000px;}
.h2_c00022{height:124.839000px;}
.h0_c00022{height:836.175000px;}
.h1_c00022{height:836.250000px;}
.w2_c00022{width:104.875500px;}
.w0_c00022{width:569.700000px;}
.w1_c00022{width:570.000000px;}
.x0_c00022{left:0.000000px;}
.x4_c00022{left:21.300000px;}
.x1_c00022{left:23.400000px;}
.x9_c00022{left:25.350000px;}
.xa_c00022{left:26.700000px;}
.xb_c00022{left:28.050000px;}
.x6_c00022{left:29.250000px;}
.xd_c00022{left:30.600000px;}
.xe_c00022{left:31.650000px;}
.xf_c00022{left:32.700000px;}
.x5_c00022{left:40.800000px;}
.x7_c00022{left:42.150000px;}
.xc_c00022{left:47.250000px;}
.x8_c00022{left:71.100000px;}
.x3_c00022{left:90.750000px;}
.x2_c00022{left:112.050000px;}
.x1e_c00022{left:236.664230px;}
.x19_c00022{left:246.300000px;}
.x10_c00022{left:250.800000px;}
.x11_c00022{left:252.150000px;}
.x12_c00022{left:253.800000px;}
.x13_c00022{left:255.150000px;}
.x16_c00022{left:256.500000px;}
.x17_c00022{left:258.150000px;}
.x14_c00022{left:259.500000px;}
.x1a_c00022{left:260.550000px;}
.x1b_c00022{left:261.600000px;}
.x1c_c00022{left:263.550000px;}
.x15_c00022{left:271.050000px;}
.x18_c00022{left:277.650000px;}
.x1d_c00022{left:440.700000px;}
@media print{
.v0_c00022{vertical-align:0.000000pt;}
.ls6_c00022{letter-spacing:-2.666667pt;}
.ls5_c00022{letter-spacing:0.000000pt;}
.ls0_c00022{letter-spacing:3.840000pt;}
.ls3_c00022{letter-spacing:4.800000pt;}
.ls7_c00022{letter-spacing:5.333333pt;}
.ls2_c00022{letter-spacing:7.560000pt;}
.ls4_c00022{letter-spacing:8.000000pt;}
.ls1_c00022{letter-spacing:16.888000pt;}
.ws1_c00022{word-spacing:-21.120000pt;}
.ws0_c00022{word-spacing:-18.706667pt;}
.ws3_c00022{word-spacing:-13.386667pt;}
.ws2_c00022{word-spacing:-10.381333pt;}
.ws4_c00022{word-spacing:0.000000pt;}
._1f_c00022{margin-left:-39.114667pt;}
._13_c00022{margin-left:-36.493333pt;}
._15_c00022{margin-left:-35.466667pt;}
._22_c00022{margin-left:-28.933333pt;}
._1e_c00022{margin-left:-26.226667pt;}
._20_c00022{margin-left:-25.293333pt;}
._16_c00022{margin-left:-23.613333pt;}
._18_c00022{margin-left:-22.400000pt;}
._1d_c00022{margin-left:-21.373333pt;}
._19_c00022{margin-left:-20.432000pt;}
._14_c00022{margin-left:-19.413333pt;}
._1a_c00022{margin-left:-18.106667pt;}
._36_c00022{margin-left:-16.426667pt;}
._17_c00022{margin-left:-15.493333pt;}
._21_c00022{margin-left:-14.000000pt;}
._1c_c00022{margin-left:-12.786667pt;}
._1b_c00022{margin-left:-11.480000pt;}
._24_c00022{margin-left:-9.120000pt;}
._23_c00022{margin-left:-7.509333pt;}
._7_c00022{margin-left:-5.880000pt;}
._8_c00022{margin-left:-4.386667pt;}
._5_c00022{margin-left:-2.912000pt;}
._4_c00022{margin-left:-1.872000pt;}
._32_c00022{margin-left:-0.938667pt;}
._3_c00022{width:0.936000pt;}
._11_c00022{width:2.512000pt;}
._12_c00022{width:3.626667pt;}
._10_c00022{width:4.688000pt;}
._29_c00022{width:5.797333pt;}
._0_c00022{width:6.864000pt;}
._2b_c00022{width:7.781333pt;}
._f_c00022{width:9.157333pt;}
._6_c00022{width:10.058667pt;}
._e_c00022{width:11.504000pt;}
._b_c00022{width:12.480000pt;}
._9_c00022{width:14.293333pt;}
._a_c00022{width:15.413333pt;}
._d_c00022{width:16.800000pt;}
._34_c00022{width:19.426667pt;}
._c_c00022{width:21.056000pt;}
._38_c00022{width:22.021333pt;}
._2e_c00022{width:23.074667pt;}
._2c_c00022{width:24.096000pt;}
._25_c00022{width:25.813333pt;}
._2d_c00022{width:26.922667pt;}
._2a_c00022{width:38.480000pt;}
._1_c00022{width:41.496000pt;}
._30_c00022{width:42.618667pt;}
._31_c00022{width:44.218667pt;}
._28_c00022{width:51.445333pt;}
._33_c00022{width:52.992000pt;}
._2_c00022{width:56.576000pt;}
._37_c00022{width:58.306667pt;}
._27_c00022{width:91.898667pt;}
._35_c00022{width:99.312000pt;}
._26_c00022{width:347.776000pt;}
._2f_c00022{width:440.680000pt;}
.fs4_c00022{font-size:42.666667pt;}
.fs3_c00022{font-size:45.333333pt;}
.fs2_c00022{font-size:53.333333pt;}
.fs1_c00022{font-size:93.333333pt;}
.fs0_c00022{font-size:104.000000pt;}
.y0_c00022{bottom:0.000000pt;}
.y3e_c00022{bottom:2.760000pt;}
.y3d_c00022{bottom:6.425204pt;}
.y3c_c00022{bottom:40.786667pt;}
.y24_c00022{bottom:56.120000pt;}
.y23_c00022{bottom:72.253333pt;}
.y3b_c00022{bottom:72.520000pt;}
.y22_c00022{bottom:88.520000pt;}
.y3a_c00022{bottom:88.786667pt;}
.y21_c00022{bottom:104.653333pt;}
.y39_c00022{bottom:120.520000pt;}
.y20_c00022{bottom:120.920000pt;}
.y1f_c00022{bottom:136.520000pt;}
.y1e_c00022{bottom:152.920000pt;}
.y1d_c00022{bottom:168.920000pt;}
.y38_c00022{bottom:185.053333pt;}
.y1c_c00022{bottom:185.320000pt;}
.y1b_c00022{bottom:201.186667pt;}
.y1a_c00022{bottom:216.920000pt;}
.y37_c00022{bottom:217.186667pt;}
.y36_c00022{bottom:233.053333pt;}
.y19_c00022{bottom:233.586667pt;}
.y18_c00022{bottom:249.320000pt;}
.y35_c00022{bottom:265.186667pt;}
.y17_c00022{bottom:265.453333pt;}
.y16_c00022{bottom:281.586667pt;}
.y15_c00022{bottom:297.186667pt;}
.y14_c00022{bottom:312.520000pt;}
.y34_c00022{bottom:313.186667pt;}
.y13_c00022{bottom:328.120000pt;}
.y33_c00022{bottom:328.786667pt;}
.y32_c00022{bottom:344.120000pt;}
.y12_c00022{bottom:344.920000pt;}
.y31_c00022{bottom:360.786667pt;}
.y11_c00022{bottom:360.920000pt;}
.y10_c00022{bottom:376.386667pt;}
.yf_c00022{bottom:392.386667pt;}
.ye_c00022{bottom:407.986667pt;}
.yd_c00022{bottom:423.853333pt;}
.yc_c00022{bottom:439.186667pt;}
.y30_c00022{bottom:440.120000pt;}
.yb_c00022{bottom:455.986667pt;}
.y2f_c00022{bottom:456.253333pt;}
.ya_c00022{bottom:471.586667pt;}
.y2e_c00022{bottom:472.120000pt;}
.y9_c00022{bottom:488.120000pt;}
.y2d_c00022{bottom:488.386667pt;}
.y2c_c00022{bottom:504.520000pt;}
.y2b_c00022{bottom:518.120000pt;}
.y8_c00022{bottom:519.586667pt;}
.y2a_c00022{bottom:535.453333pt;}
.y7_c00022{bottom:535.986667pt;}
.y29_c00022{bottom:551.320000pt;}
.y6_c00022{bottom:551.586667pt;}
.y28_c00022{bottom:567.853333pt;}
.y5_c00022{bottom:568.520000pt;}
.y27_c00022{bottom:583.986667pt;}
.y4_c00022{bottom:599.320000pt;}
.y26_c00022{bottom:599.986667pt;}
.y25_c00022{bottom:616.120000pt;}
.y3_c00022{bottom:616.386667pt;}
.y2_c00022{bottom:657.853333pt;}
.y1_c00022{bottom:684.920000pt;}
.h7_c00022{height:11.733399pt;}
.h8_c00022{height:38.937500pt;}
.h5_c00022{height:44.492188pt;}
.h4_c00022{height:55.893333pt;}
.h6_c00022{height:56.906667pt;}
.h3_c00022{height:97.813333pt;}
.h2_c00022{height:110.968000pt;}
.h0_c00022{height:743.266667pt;}
.h1_c00022{height:743.333333pt;}
.w2_c00022{width:93.222667pt;}
.w0_c00022{width:506.400000pt;}
.w1_c00022{width:506.666667pt;}
.x0_c00022{left:0.000000pt;}
.x4_c00022{left:18.933333pt;}
.x1_c00022{left:20.800000pt;}
.x9_c00022{left:22.533333pt;}
.xa_c00022{left:23.733333pt;}
.xb_c00022{left:24.933333pt;}
.x6_c00022{left:26.000000pt;}
.xd_c00022{left:27.200000pt;}
.xe_c00022{left:28.133333pt;}
.xf_c00022{left:29.066667pt;}
.x5_c00022{left:36.266667pt;}
.x7_c00022{left:37.466667pt;}
.xc_c00022{left:42.000000pt;}
.x8_c00022{left:63.200000pt;}
.x3_c00022{left:80.666667pt;}
.x2_c00022{left:99.600000pt;}
.x1e_c00022{left:210.368205pt;}
.x19_c00022{left:218.933333pt;}
.x10_c00022{left:222.933333pt;}
.x11_c00022{left:224.133333pt;}
.x12_c00022{left:225.600000pt;}
.x13_c00022{left:226.800000pt;}
.x16_c00022{left:228.000000pt;}
.x17_c00022{left:229.466667pt;}
.x14_c00022{left:230.666667pt;}
.x1a_c00022{left:231.600000pt;}
.x1b_c00022{left:232.533333pt;}
.x1c_c00022{left:234.266667pt;}
.x15_c00022{left:240.933333pt;}
.x18_c00022{left:246.800000pt;}
.x1d_c00022{left:391.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_cd7179d75e10ac8741dcd684.woff2')format("woff");}.ff1_c00023{font-family:ff1_c00023;line-height:1.575000;font-style:normal;font-weight:normal;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_71466a4201d546bd44afe933.woff2')format("woff");}.ff2_c00023{font-family:ff2_c00023;line-height:1.437000;font-style:normal;font-weight:normal;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_70645a87b9bbcb0ef40a8dde.woff2')format("woff");}.ff3_c00023{font-family:ff3_c00023;line-height:1.437000;font-style:normal;font-weight:normal;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_9c16d82b0ecc53b0dbc43080.woff2')format("woff");}.ff4_c00023{font-family:ff4_c00023;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00023;src:url('chunks/assets/font_65eb8118ea6379767afdc791.woff2')format("woff");}.ff5_c00023{font-family:ff5_c00023;line-height:1.012793;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00023;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff6_c00023{font-family:ff6_c00023;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00023{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00023{vertical-align:0.000000px;}
.ls3_c00023{letter-spacing:0.000000px;}
.ls2_c00023{letter-spacing:1.014000px;}
.ls1_c00023{letter-spacing:3.000000px;}
.ls4_c00023{letter-spacing:15.000000px;}
.ls0_c00023{letter-spacing:20.211000px;}
.sc__c00023{text-shadow:none;}
.sc0_c00023{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00023{-webkit-text-stroke:0px transparent;}
.sc0_c00023{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00023{word-spacing:-18.000000px;}
.ws4_c00023{word-spacing:-15.750000px;}
.ws1_c00023{word-spacing:-15.060000px;}
.ws2_c00023{word-spacing:-12.036000px;}
.ws3_c00023{word-spacing:-0.819000px;}
.ws5_c00023{word-spacing:0.000000px;}
._22_c00023{margin-left:-19.482000px;}
._1f_c00023{margin-left:-14.940000px;}
._a_c00023{margin-left:-11.136000px;}
._27_c00023{margin-left:-9.669000px;}
._1c_c00023{margin-left:-5.994000px;}
._11_c00023{margin-left:-4.086000px;}
._15_c00023{margin-left:-2.460000px;}
._b_c00023{margin-left:-1.440000px;}
._9_c00023{width:1.500000px;}
._7_c00023{width:2.640000px;}
._6_c00023{width:3.840000px;}
._8_c00023{width:5.520000px;}
._5_c00023{width:7.200000px;}
._23_c00023{width:8.220000px;}
._d_c00023{width:9.237000px;}
._3_c00023{width:10.836000px;}
._4_c00023{width:12.852000px;}
._1_c00023{width:14.742000px;}
._c_c00023{width:16.443000px;}
._19_c00023{width:17.559000px;}
._13_c00023{width:18.582000px;}
._0_c00023{width:19.719000px;}
._17_c00023{width:21.087000px;}
._1e_c00023{width:22.368000px;}
._16_c00023{width:23.883000px;}
._1d_c00023{width:25.617000px;}
._1a_c00023{width:27.645000px;}
._20_c00023{width:28.920000px;}
._2_c00023{width:31.122000px;}
._1b_c00023{width:34.140000px;}
._f_c00023{width:36.540000px;}
._e_c00023{width:37.860000px;}
._14_c00023{width:40.206000px;}
._10_c00023{width:44.520000px;}
._18_c00023{width:46.812000px;}
._28_c00023{width:54.519000px;}
._24_c00023{width:56.511000px;}
._12_c00023{width:60.939000px;}
._25_c00023{width:66.000000px;}
._21_c00023{width:155.568000px;}
._26_c00023{width:244.920000px;}
.fc2_c00023{color:transparent;}
.fc1_c00023{color:rgb(128,128,128);}
.fc0_c00023{color:rgb(0,0,0);}
.fs3_c00023{font-size:48.000000px;}
.fs2_c00023{font-size:51.000000px;}
.fs1_c00023{font-size:60.000000px;}
.fs0_c00023{font-size:63.000000px;}
.y0_c00023{bottom:0.000000px;}
.y54_c00023{bottom:3.105000px;}
.y53_c00023{bottom:7.228363px;}
.y52_c00023{bottom:33.300000px;}
.y51_c00023{bottom:52.200000px;}
.y2a_c00023{bottom:54.900000px;}
.y50_c00023{bottom:70.800000px;}
.y29_c00023{bottom:73.800000px;}
.y4f_c00023{bottom:88.800000px;}
.y28_c00023{bottom:92.400000px;}
.y4e_c00023{bottom:106.350000px;}
.y27_c00023{bottom:110.250000px;}
.y4d_c00023{bottom:124.800000px;}
.y26_c00023{bottom:128.250000px;}
.y4c_c00023{bottom:144.450000px;}
.y25_c00023{bottom:146.850000px;}
.y4b_c00023{bottom:162.000000px;}
.y24_c00023{bottom:165.600000px;}
.y4a_c00023{bottom:180.150000px;}
.y23_c00023{bottom:182.250000px;}
.y49_c00023{bottom:198.000000px;}
.y22_c00023{bottom:200.850000px;}
.y48_c00023{bottom:216.000000px;}
.y21_c00023{bottom:218.400000px;}
.y47_c00023{bottom:234.000000px;}
.y20_c00023{bottom:236.550000px;}
.y46_c00023{bottom:252.000000px;}
.y1f_c00023{bottom:254.400000px;}
.y45_c00023{bottom:270.000000px;}
.y1e_c00023{bottom:272.250000px;}
.y44_c00023{bottom:287.850000px;}
.y1d_c00023{bottom:289.800000px;}
.y43_c00023{bottom:306.000000px;}
.y1c_c00023{bottom:308.100000px;}
.y42_c00023{bottom:323.550000px;}
.y1b_c00023{bottom:325.950000px;}
.y41_c00023{bottom:341.850000px;}
.y1a_c00023{bottom:343.800000px;}
.y40_c00023{bottom:359.100000px;}
.y19_c00023{bottom:361.500000px;}
.y3f_c00023{bottom:376.650000px;}
.y18_c00023{bottom:380.250000px;}
.y3e_c00023{bottom:395.100000px;}
.y17_c00023{bottom:398.550000px;}
.y16_c00023{bottom:415.800000px;}
.y3d_c00023{bottom:430.350000px;}
.y15_c00023{bottom:433.650000px;}
.y3c_c00023{bottom:448.800000px;}
.y14_c00023{bottom:452.250000px;}
.y13_c00023{bottom:470.400000px;}
.y3b_c00023{bottom:484.950000px;}
.y12_c00023{bottom:488.400000px;}
.y3a_c00023{bottom:502.800000px;}
.y11_c00023{bottom:506.250000px;}
.y10_c00023{bottom:524.100000px;}
.y39_c00023{bottom:538.650000px;}
.yf_c00023{bottom:542.400000px;}
.y38_c00023{bottom:557.100000px;}
.ye_c00023{bottom:560.550000px;}
.y37_c00023{bottom:575.400000px;}
.yd_c00023{bottom:579.150000px;}
.y36_c00023{bottom:593.250000px;}
.yc_c00023{bottom:596.700000px;}
.y35_c00023{bottom:611.550000px;}
.yb_c00023{bottom:614.850000px;}
.y34_c00023{bottom:629.400000px;}
.ya_c00023{bottom:632.850000px;}
.y33_c00023{bottom:647.250000px;}
.y9_c00023{bottom:650.700000px;}
.y32_c00023{bottom:665.550000px;}
.y8_c00023{bottom:668.550000px;}
.y31_c00023{bottom:684.000000px;}
.y7_c00023{bottom:687.150000px;}
.y30_c00023{bottom:702.300000px;}
.y6_c00023{bottom:705.300000px;}
.y2f_c00023{bottom:719.850000px;}
.y5_c00023{bottom:723.600000px;}
.y2e_c00023{bottom:738.750000px;}
.y4_c00023{bottom:742.200000px;}
.y2d_c00023{bottom:756.600000px;}
.y3_c00023{bottom:760.050000px;}
.y2c_c00023{bottom:774.600000px;}
.y2_c00023{bottom:777.600000px;}
.y2b_c00023{bottom:792.450000px;}
.y1_c00023{bottom:794.700000px;}
.h6_c00023{height:13.200074px;}
.h7_c00023{height:43.804688px;}
.h5_c00023{height:53.448000px;}
.h3_c00023{height:62.880000px;}
.h4_c00023{height:64.020000px;}
.h2_c00023{height:67.221000px;}
.h1_c00023{height:842.250000px;}
.h0_c00023{height:842.400000px;}
.w2_c00023{width:104.875500px;}
.w1_c00023{width:559.500000px;}
.w0_c00023{width:559.725000px;}
.x0_c00023{left:0.000000px;}
.xa_c00023{left:73.200000px;}
.x8_c00023{left:75.300000px;}
.x9_c00023{left:76.950000px;}
.x6_c00023{left:78.000000px;}
.x5_c00023{left:80.250000px;}
.x3_c00023{left:81.600000px;}
.x2_c00023{left:82.650000px;}
.x4_c00023{left:94.500000px;}
.x7_c00023{left:97.800000px;}
.x1_c00023{left:179.550000px;}
.x1a_c00023{left:231.676758px;}
.x18_c00023{left:314.250000px;}
.x16_c00023{left:315.900000px;}
.x15_c00023{left:316.950000px;}
.xf_c00023{left:318.150000px;}
.x10_c00023{left:319.500000px;}
.xd_c00023{left:320.850000px;}
.xc_c00023{left:322.200000px;}
.xb_c00023{left:327.750000px;}
.x17_c00023{left:334.500000px;}
.x13_c00023{left:336.600000px;}
.x12_c00023{left:337.800000px;}
.xe_c00023{left:342.600000px;}
.x14_c00023{left:369.600000px;}
.x11_c00023{left:389.250000px;}
.x19_c00023{left:493.650000px;}
@media print{
.v0_c00023{vertical-align:0.000000pt;}
.ls3_c00023{letter-spacing:0.000000pt;}
.ls2_c00023{letter-spacing:0.901333pt;}
.ls1_c00023{letter-spacing:2.666667pt;}
.ls4_c00023{letter-spacing:13.333333pt;}
.ls0_c00023{letter-spacing:17.965333pt;}
.ws0_c00023{word-spacing:-16.000000pt;}
.ws4_c00023{word-spacing:-14.000000pt;}
.ws1_c00023{word-spacing:-13.386667pt;}
.ws2_c00023{word-spacing:-10.698667pt;}
.ws3_c00023{word-spacing:-0.728000pt;}
.ws5_c00023{word-spacing:0.000000pt;}
._22_c00023{margin-left:-17.317333pt;}
._1f_c00023{margin-left:-13.280000pt;}
._a_c00023{margin-left:-9.898667pt;}
._27_c00023{margin-left:-8.594667pt;}
._1c_c00023{margin-left:-5.328000pt;}
._11_c00023{margin-left:-3.632000pt;}
._15_c00023{margin-left:-2.186667pt;}
._b_c00023{margin-left:-1.280000pt;}
._9_c00023{width:1.333333pt;}
._7_c00023{width:2.346667pt;}
._6_c00023{width:3.413333pt;}
._8_c00023{width:4.906667pt;}
._5_c00023{width:6.400000pt;}
._23_c00023{width:7.306667pt;}
._d_c00023{width:8.210667pt;}
._3_c00023{width:9.632000pt;}
._4_c00023{width:11.424000pt;}
._1_c00023{width:13.104000pt;}
._c_c00023{width:14.616000pt;}
._19_c00023{width:15.608000pt;}
._13_c00023{width:16.517333pt;}
._0_c00023{width:17.528000pt;}
._17_c00023{width:18.744000pt;}
._1e_c00023{width:19.882667pt;}
._16_c00023{width:21.229333pt;}
._1d_c00023{width:22.770667pt;}
._1a_c00023{width:24.573333pt;}
._20_c00023{width:25.706667pt;}
._2_c00023{width:27.664000pt;}
._1b_c00023{width:30.346667pt;}
._f_c00023{width:32.480000pt;}
._e_c00023{width:33.653333pt;}
._14_c00023{width:35.738667pt;}
._10_c00023{width:39.573333pt;}
._18_c00023{width:41.610667pt;}
._28_c00023{width:48.461333pt;}
._24_c00023{width:50.232000pt;}
._12_c00023{width:54.168000pt;}
._25_c00023{width:58.666667pt;}
._21_c00023{width:138.282667pt;}
._26_c00023{width:217.706667pt;}
.fs3_c00023{font-size:42.666667pt;}
.fs2_c00023{font-size:45.333333pt;}
.fs1_c00023{font-size:53.333333pt;}
.fs0_c00023{font-size:56.000000pt;}
.y0_c00023{bottom:0.000000pt;}
.y54_c00023{bottom:2.760000pt;}
.y53_c00023{bottom:6.425212pt;}
.y52_c00023{bottom:29.600000pt;}
.y51_c00023{bottom:46.400000pt;}
.y2a_c00023{bottom:48.800000pt;}
.y50_c00023{bottom:62.933333pt;}
.y29_c00023{bottom:65.600000pt;}
.y4f_c00023{bottom:78.933333pt;}
.y28_c00023{bottom:82.133333pt;}
.y4e_c00023{bottom:94.533333pt;}
.y27_c00023{bottom:98.000000pt;}
.y4d_c00023{bottom:110.933333pt;}
.y26_c00023{bottom:114.000000pt;}
.y4c_c00023{bottom:128.400000pt;}
.y25_c00023{bottom:130.533333pt;}
.y4b_c00023{bottom:144.000000pt;}
.y24_c00023{bottom:147.200000pt;}
.y4a_c00023{bottom:160.133333pt;}
.y23_c00023{bottom:162.000000pt;}
.y49_c00023{bottom:176.000000pt;}
.y22_c00023{bottom:178.533333pt;}
.y48_c00023{bottom:192.000000pt;}
.y21_c00023{bottom:194.133333pt;}
.y47_c00023{bottom:208.000000pt;}
.y20_c00023{bottom:210.266667pt;}
.y46_c00023{bottom:224.000000pt;}
.y1f_c00023{bottom:226.133333pt;}
.y45_c00023{bottom:240.000000pt;}
.y1e_c00023{bottom:242.000000pt;}
.y44_c00023{bottom:255.866667pt;}
.y1d_c00023{bottom:257.600000pt;}
.y43_c00023{bottom:272.000000pt;}
.y1c_c00023{bottom:273.866667pt;}
.y42_c00023{bottom:287.600000pt;}
.y1b_c00023{bottom:289.733333pt;}
.y41_c00023{bottom:303.866667pt;}
.y1a_c00023{bottom:305.600000pt;}
.y40_c00023{bottom:319.200000pt;}
.y19_c00023{bottom:321.333333pt;}
.y3f_c00023{bottom:334.800000pt;}
.y18_c00023{bottom:338.000000pt;}
.y3e_c00023{bottom:351.200000pt;}
.y17_c00023{bottom:354.266667pt;}
.y16_c00023{bottom:369.600000pt;}
.y3d_c00023{bottom:382.533333pt;}
.y15_c00023{bottom:385.466667pt;}
.y3c_c00023{bottom:398.933333pt;}
.y14_c00023{bottom:402.000000pt;}
.y13_c00023{bottom:418.133333pt;}
.y3b_c00023{bottom:431.066667pt;}
.y12_c00023{bottom:434.133333pt;}
.y3a_c00023{bottom:446.933333pt;}
.y11_c00023{bottom:450.000000pt;}
.y10_c00023{bottom:465.866667pt;}
.y39_c00023{bottom:478.800000pt;}
.yf_c00023{bottom:482.133333pt;}
.y38_c00023{bottom:495.200000pt;}
.ye_c00023{bottom:498.266667pt;}
.y37_c00023{bottom:511.466667pt;}
.yd_c00023{bottom:514.800000pt;}
.y36_c00023{bottom:527.333333pt;}
.yc_c00023{bottom:530.400000pt;}
.y35_c00023{bottom:543.600000pt;}
.yb_c00023{bottom:546.533333pt;}
.y34_c00023{bottom:559.466667pt;}
.ya_c00023{bottom:562.533333pt;}
.y33_c00023{bottom:575.333333pt;}
.y9_c00023{bottom:578.400000pt;}
.y32_c00023{bottom:591.600000pt;}
.y8_c00023{bottom:594.266667pt;}
.y31_c00023{bottom:608.000000pt;}
.y7_c00023{bottom:610.800000pt;}
.y30_c00023{bottom:624.266667pt;}
.y6_c00023{bottom:626.933333pt;}
.y2f_c00023{bottom:639.866667pt;}
.y5_c00023{bottom:643.200000pt;}
.y2e_c00023{bottom:656.666667pt;}
.y4_c00023{bottom:659.733333pt;}
.y2d_c00023{bottom:672.533333pt;}
.y3_c00023{bottom:675.600000pt;}
.y2c_c00023{bottom:688.533333pt;}
.y2_c00023{bottom:691.200000pt;}
.y2b_c00023{bottom:704.400000pt;}
.y1_c00023{bottom:706.400000pt;}
.h6_c00023{height:11.733399pt;}
.h7_c00023{height:38.937500pt;}
.h5_c00023{height:47.509333pt;}
.h3_c00023{height:55.893333pt;}
.h4_c00023{height:56.906667pt;}
.h2_c00023{height:59.752000pt;}
.h1_c00023{height:748.666667pt;}
.h0_c00023{height:748.800000pt;}
.w2_c00023{width:93.222667pt;}
.w1_c00023{width:497.333333pt;}
.w0_c00023{width:497.533333pt;}
.x0_c00023{left:0.000000pt;}
.xa_c00023{left:65.066667pt;}
.x8_c00023{left:66.933333pt;}
.x9_c00023{left:68.400000pt;}
.x6_c00023{left:69.333333pt;}
.x5_c00023{left:71.333333pt;}
.x3_c00023{left:72.533333pt;}
.x2_c00023{left:73.466667pt;}
.x4_c00023{left:84.000000pt;}
.x7_c00023{left:86.933333pt;}
.x1_c00023{left:159.600000pt;}
.x1a_c00023{left:205.934896pt;}
.x18_c00023{left:279.333333pt;}
.x16_c00023{left:280.800000pt;}
.x15_c00023{left:281.733333pt;}
.xf_c00023{left:282.800000pt;}
.x10_c00023{left:284.000000pt;}
.xd_c00023{left:285.200000pt;}
.xc_c00023{left:286.400000pt;}
.xb_c00023{left:291.333333pt;}
.x17_c00023{left:297.333333pt;}
.x13_c00023{left:299.200000pt;}
.x12_c00023{left:300.266667pt;}
.xe_c00023{left:304.533333pt;}
.x14_c00023{left:328.533333pt;}
.x11_c00023{left:346.000000pt;}
.x19_c00023{left:438.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_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_f0e09f6cf0e80824727072f0.woff2')format("woff");}.ff1_c00024{font-family:ff1_c00024;line-height:1.437000;font-style:normal;font-weight:normal;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_f7ca71130d354a7219e3ef0b.woff2')format("woff");}.ff2_c00024{font-family:ff2_c00024;line-height:1.437000;font-style:normal;font-weight:normal;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_683892db365c93fcf812b4dd.woff2')format("woff");}.ff3_c00024{font-family:ff3_c00024;line-height:1.437000;font-style:normal;font-weight:normal;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_fd89fbd335c7dd76bab9b449.woff2')format("woff");}.ff4_c00024{font-family:ff4_c00024;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00024;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff5_c00024{font-family:ff5_c00024;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00024;src:url('chunks/assets/font_1890ff316acb056716c69ed6.woff2')format("woff");}.ff6_c00024{font-family:ff6_c00024;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00024;src:url('chunks/assets/font_9e682a9acdaaa9afc7161b08.woff2')format("woff");}.ff7_c00024{font-family:ff7_c00024;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00024;src:url('chunks/assets/font_bbdb587c572a74c3ec65338b.woff2')format("woff");}.ff8_c00024{font-family:ff8_c00024;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00024;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff9_c00024{font-family:ff9_c00024;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00024{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00024{vertical-align:0.000000px;}
.ls3_c00024{letter-spacing:0.000000px;}
.ls0_c00024{letter-spacing:3.000000px;}
.ls1_c00024{letter-spacing:4.020000px;}
.ls2_c00024{letter-spacing:6.600000px;}
.sc__c00024{text-shadow:none;}
.sc0_c00024{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00024{-webkit-text-stroke:0px transparent;}
.sc0_c00024{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00024{word-spacing:-15.060000px;}
.ws0_c00024{word-spacing:-14.160000px;}
.ws2_c00024{word-spacing:0.000000px;}
._15_c00024{margin-left:-19.260000px;}
._1e_c00024{margin-left:-15.846000px;}
._1f_c00024{margin-left:-11.460000px;}
._16_c00024{margin-left:-9.480000px;}
._1c_c00024{margin-left:-7.740000px;}
._11_c00024{margin-left:-6.420000px;}
._d_c00024{margin-left:-4.200000px;}
._14_c00024{margin-left:-3.180000px;}
._c_c00024{margin-left:-1.860000px;}
._b_c00024{width:1.500000px;}
._a_c00024{width:3.300000px;}
._f_c00024{width:4.320000px;}
._9_c00024{width:5.340000px;}
._7_c00024{width:6.660000px;}
._8_c00024{width:8.100000px;}
._6_c00024{width:9.840000px;}
._4_c00024{width:11.220000px;}
._1_c00024{width:12.420000px;}
._3_c00024{width:14.040000px;}
._e_c00024{width:16.140000px;}
._2_c00024{width:17.160000px;}
._0_c00024{width:18.900000px;}
._10_c00024{width:20.220000px;}
._13_c00024{width:23.340000px;}
._1b_c00024{width:24.900000px;}
._23_c00024{width:26.460000px;}
._1a_c00024{width:27.600000px;}
._1d_c00024{width:30.240000px;}
._24_c00024{width:32.640000px;}
._5_c00024{width:43.140000px;}
._18_c00024{width:47.280000px;}
._26_c00024{width:49.740000px;}
._17_c00024{width:53.466000px;}
._20_c00024{width:55.440000px;}
._19_c00024{width:61.578000px;}
._12_c00024{width:67.740000px;}
._21_c00024{width:146.781000px;}
._25_c00024{width:223.260000px;}
._22_c00024{width:305.880000px;}
.fc2_c00024{color:transparent;}
.fc1_c00024{color:rgb(128,128,128);}
.fc0_c00024{color:rgb(0,0,0);}
.fs4_c00024{font-size:48.000000px;}
.fs2_c00024{font-size:54.000000px;}
.fs1_c00024{font-size:57.000000px;}
.fs0_c00024{font-size:60.000000px;}
.fs3_c00024{font-size:69.000000px;}
.y0_c00024{bottom:0.000000px;}
.y57_c00024{bottom:3.105000px;}
.y56_c00024{bottom:7.228355px;}
.y55_c00024{bottom:35.385000px;}
.y54_c00024{bottom:53.685000px;}
.y2a_c00024{bottom:57.735000px;}
.y53_c00024{bottom:71.235000px;}
.y29_c00024{bottom:76.485000px;}
.y52_c00024{bottom:90.435000px;}
.y28_c00024{bottom:94.185000px;}
.y51_c00024{bottom:108.285000px;}
.y27_c00024{bottom:112.335000px;}
.y50_c00024{bottom:126.885000px;}
.y26_c00024{bottom:129.885000px;}
.y4f_c00024{bottom:143.985000px;}
.y25_c00024{bottom:148.785000px;}
.y4e_c00024{bottom:162.585000px;}
.y24_c00024{bottom:167.085000px;}
.y4d_c00024{bottom:180.435000px;}
.y23_c00024{bottom:185.535000px;}
.y4c_c00024{bottom:199.035000px;}
.y22_c00024{bottom:203.085000px;}
.y4b_c00024{bottom:216.285000px;}
.y21_c00024{bottom:221.085000px;}
.y4a_c00024{bottom:234.885000px;}
.y20_c00024{bottom:239.535000px;}
.y49_c00024{bottom:254.685000px;}
.y1f_c00024{bottom:258.135000px;}
.y48_c00024{bottom:270.285000px;}
.y1e_c00024{bottom:275.685000px;}
.y47_c00024{bottom:289.935000px;}
.y1d_c00024{bottom:293.535000px;}
.y46_c00024{bottom:308.685000px;}
.y1c_c00024{bottom:311.385000px;}
.y45_c00024{bottom:325.635000px;}
.y1b_c00024{bottom:329.385000px;}
.y44_c00024{bottom:343.935000px;}
.y1a_c00024{bottom:347.235000px;}
.y43_c00024{bottom:362.085000px;}
.y19_c00024{bottom:365.385000px;}
.y42_c00024{bottom:380.685000px;}
.y18_c00024{bottom:383.685000px;}
.y41_c00024{bottom:398.235000px;}
.y17_c00024{bottom:400.935000px;}
.y40_c00024{bottom:415.785000px;}
.y16_c00024{bottom:419.385000px;}
.y3f_c00024{bottom:434.385000px;}
.y15_c00024{bottom:436.935000px;}
.y3e_c00024{bottom:453.135000px;}
.y14_c00024{bottom:454.635000px;}
.y3d_c00024{bottom:469.785000px;}
.y13_c00024{bottom:472.485000px;}
.y3c_c00024{bottom:488.385000px;}
.y12_c00024{bottom:490.335000px;}
.y3b_c00024{bottom:507.285000px;}
.y11_c00024{bottom:508.635000px;}
.y3a_c00024{bottom:524.835000px;}
.y10_c00024{bottom:526.185000px;}
.y39_c00024{bottom:542.685000px;}
.yf_c00024{bottom:544.335000px;}
.y38_c00024{bottom:561.285000px;}
.ye_c00024{bottom:562.635000px;}
.y37_c00024{bottom:578.835000px;}
.yd_c00024{bottom:580.485000px;}
.y36_c00024{bottom:598.035000px;}
.yc_c00024{bottom:598.935000px;}
.y35_c00024{bottom:615.585000px;}
.yb_c00024{bottom:616.635000px;}
.y34_c00024{bottom:633.735000px;}
.ya_c00024{bottom:635.085000px;}
.y33_c00024{bottom:652.035000px;}
.y9_c00024{bottom:653.085000px;}
.y32_c00024{bottom:668.535000px;}
.y8_c00024{bottom:670.935000px;}
.y31_c00024{bottom:688.035000px;}
.y7_c00024{bottom:688.485000px;}
.y30_c00024{bottom:705.585000px;}
.y6_c00024{bottom:706.635000px;}
.y2f_c00024{bottom:723.585000px;}
.y5_c00024{bottom:724.935000px;}
.y2e_c00024{bottom:742.485000px;}
.y4_c00024{bottom:742.785000px;}
.y2d_c00024{bottom:760.035000px;}
.y3_c00024{bottom:760.935000px;}
.y2c_c00024{bottom:778.485000px;}
.y2_c00024{bottom:779.535000px;}
.y2b_c00024{bottom:795.735000px;}
.y1_c00024{bottom:797.835000px;}
.h6_c00024{height:13.200074px;}
.h7_c00024{height:43.804688px;}
.h3_c00024{height:59.736000px;}
.h2_c00024{height:62.880000px;}
.h5_c00024{height:64.020000px;}
.h4_c00024{height:74.796000px;}
.h0_c00024{height:836.175000px;}
.h1_c00024{height:836.250000px;}
.w2_c00024{width:104.875500px;}
.w0_c00024{width:569.700000px;}
.w1_c00024{width:570.000000px;}
.x0_c00024{left:0.000000px;}
.x8_c00024{left:29.100000px;}
.x2_c00024{left:30.450000px;}
.x4_c00024{left:34.350000px;}
.x3_c00024{left:35.400000px;}
.x5_c00024{left:36.450000px;}
.x7_c00024{left:37.800000px;}
.x9_c00024{left:39.150000px;}
.xa_c00024{left:40.500000px;}
.xc_c00024{left:42.150000px;}
.x6_c00024{left:54.300000px;}
.xb_c00024{left:58.050000px;}
.x1_c00024{left:115.650000px;}
.x18_c00024{left:236.664230px;}
.x12_c00024{left:264.300000px;}
.xf_c00024{left:265.950000px;}
.xe_c00024{left:267.000000px;}
.x11_c00024{left:268.050000px;}
.xd_c00024{left:269.700000px;}
.x15_c00024{left:272.700000px;}
.x16_c00024{left:274.650000px;}
.x10_c00024{left:285.600000px;}
.x13_c00024{left:287.250000px;}
.x14_c00024{left:290.250000px;}
.x17_c00024{left:451.200000px;}
@media print{
.v0_c00024{vertical-align:0.000000pt;}
.ls3_c00024{letter-spacing:0.000000pt;}
.ls0_c00024{letter-spacing:2.666667pt;}
.ls1_c00024{letter-spacing:3.573333pt;}
.ls2_c00024{letter-spacing:5.866667pt;}
.ws1_c00024{word-spacing:-13.386667pt;}
.ws0_c00024{word-spacing:-12.586667pt;}
.ws2_c00024{word-spacing:0.000000pt;}
._15_c00024{margin-left:-17.120000pt;}
._1e_c00024{margin-left:-14.085333pt;}
._1f_c00024{margin-left:-10.186667pt;}
._16_c00024{margin-left:-8.426667pt;}
._1c_c00024{margin-left:-6.880000pt;}
._11_c00024{margin-left:-5.706667pt;}
._d_c00024{margin-left:-3.733333pt;}
._14_c00024{margin-left:-2.826667pt;}
._c_c00024{margin-left:-1.653333pt;}
._b_c00024{width:1.333333pt;}
._a_c00024{width:2.933333pt;}
._f_c00024{width:3.840000pt;}
._9_c00024{width:4.746667pt;}
._7_c00024{width:5.920000pt;}
._8_c00024{width:7.200000pt;}
._6_c00024{width:8.746667pt;}
._4_c00024{width:9.973333pt;}
._1_c00024{width:11.040000pt;}
._3_c00024{width:12.480000pt;}
._e_c00024{width:14.346667pt;}
._2_c00024{width:15.253333pt;}
._0_c00024{width:16.800000pt;}
._10_c00024{width:17.973333pt;}
._13_c00024{width:20.746667pt;}
._1b_c00024{width:22.133333pt;}
._23_c00024{width:23.520000pt;}
._1a_c00024{width:24.533333pt;}
._1d_c00024{width:26.880000pt;}
._24_c00024{width:29.013333pt;}
._5_c00024{width:38.346667pt;}
._18_c00024{width:42.026667pt;}
._26_c00024{width:44.213333pt;}
._17_c00024{width:47.525333pt;}
._20_c00024{width:49.280000pt;}
._19_c00024{width:54.736000pt;}
._12_c00024{width:60.213333pt;}
._21_c00024{width:130.472000pt;}
._25_c00024{width:198.453333pt;}
._22_c00024{width:271.893333pt;}
.fs4_c00024{font-size:42.666667pt;}
.fs2_c00024{font-size:48.000000pt;}
.fs1_c00024{font-size:50.666667pt;}
.fs0_c00024{font-size:53.333333pt;}
.fs3_c00024{font-size:61.333333pt;}
.y0_c00024{bottom:0.000000pt;}
.y57_c00024{bottom:2.760000pt;}
.y56_c00024{bottom:6.425204pt;}
.y55_c00024{bottom:31.453333pt;}
.y54_c00024{bottom:47.720000pt;}
.y2a_c00024{bottom:51.320000pt;}
.y53_c00024{bottom:63.320000pt;}
.y29_c00024{bottom:67.986667pt;}
.y52_c00024{bottom:80.386667pt;}
.y28_c00024{bottom:83.720000pt;}
.y51_c00024{bottom:96.253333pt;}
.y27_c00024{bottom:99.853333pt;}
.y50_c00024{bottom:112.786667pt;}
.y26_c00024{bottom:115.453333pt;}
.y4f_c00024{bottom:127.986667pt;}
.y25_c00024{bottom:132.253333pt;}
.y4e_c00024{bottom:144.520000pt;}
.y24_c00024{bottom:148.520000pt;}
.y4d_c00024{bottom:160.386667pt;}
.y23_c00024{bottom:164.920000pt;}
.y4c_c00024{bottom:176.920000pt;}
.y22_c00024{bottom:180.520000pt;}
.y4b_c00024{bottom:192.253333pt;}
.y21_c00024{bottom:196.520000pt;}
.y4a_c00024{bottom:208.786667pt;}
.y20_c00024{bottom:212.920000pt;}
.y49_c00024{bottom:226.386667pt;}
.y1f_c00024{bottom:229.453333pt;}
.y48_c00024{bottom:240.253333pt;}
.y1e_c00024{bottom:245.053333pt;}
.y47_c00024{bottom:257.720000pt;}
.y1d_c00024{bottom:260.920000pt;}
.y46_c00024{bottom:274.386667pt;}
.y1c_c00024{bottom:276.786667pt;}
.y45_c00024{bottom:289.453333pt;}
.y1b_c00024{bottom:292.786667pt;}
.y44_c00024{bottom:305.720000pt;}
.y1a_c00024{bottom:308.653333pt;}
.y43_c00024{bottom:321.853333pt;}
.y19_c00024{bottom:324.786667pt;}
.y42_c00024{bottom:338.386667pt;}
.y18_c00024{bottom:341.053333pt;}
.y41_c00024{bottom:353.986667pt;}
.y17_c00024{bottom:356.386667pt;}
.y40_c00024{bottom:369.586667pt;}
.y16_c00024{bottom:372.786667pt;}
.y3f_c00024{bottom:386.120000pt;}
.y15_c00024{bottom:388.386667pt;}
.y3e_c00024{bottom:402.786667pt;}
.y14_c00024{bottom:404.120000pt;}
.y3d_c00024{bottom:417.586667pt;}
.y13_c00024{bottom:419.986667pt;}
.y3c_c00024{bottom:434.120000pt;}
.y12_c00024{bottom:435.853333pt;}
.y3b_c00024{bottom:450.920000pt;}
.y11_c00024{bottom:452.120000pt;}
.y3a_c00024{bottom:466.520000pt;}
.y10_c00024{bottom:467.720000pt;}
.y39_c00024{bottom:482.386667pt;}
.yf_c00024{bottom:483.853333pt;}
.y38_c00024{bottom:498.920000pt;}
.ye_c00024{bottom:500.120000pt;}
.y37_c00024{bottom:514.520000pt;}
.yd_c00024{bottom:515.986667pt;}
.y36_c00024{bottom:531.586667pt;}
.yc_c00024{bottom:532.386667pt;}
.y35_c00024{bottom:547.186667pt;}
.yb_c00024{bottom:548.120000pt;}
.y34_c00024{bottom:563.320000pt;}
.ya_c00024{bottom:564.520000pt;}
.y33_c00024{bottom:579.586667pt;}
.y9_c00024{bottom:580.520000pt;}
.y32_c00024{bottom:594.253333pt;}
.y8_c00024{bottom:596.386667pt;}
.y31_c00024{bottom:611.586667pt;}
.y7_c00024{bottom:611.986667pt;}
.y30_c00024{bottom:627.186667pt;}
.y6_c00024{bottom:628.120000pt;}
.y2f_c00024{bottom:643.186667pt;}
.y5_c00024{bottom:644.386667pt;}
.y2e_c00024{bottom:659.986667pt;}
.y4_c00024{bottom:660.253333pt;}
.y2d_c00024{bottom:675.586667pt;}
.y3_c00024{bottom:676.386667pt;}
.y2c_c00024{bottom:691.986667pt;}
.y2_c00024{bottom:692.920000pt;}
.y2b_c00024{bottom:707.320000pt;}
.y1_c00024{bottom:709.186667pt;}
.h6_c00024{height:11.733399pt;}
.h7_c00024{height:38.937500pt;}
.h3_c00024{height:53.098667pt;}
.h2_c00024{height:55.893333pt;}
.h5_c00024{height:56.906667pt;}
.h4_c00024{height:66.485333pt;}
.h0_c00024{height:743.266667pt;}
.h1_c00024{height:743.333333pt;}
.w2_c00024{width:93.222667pt;}
.w0_c00024{width:506.400000pt;}
.w1_c00024{width:506.666667pt;}
.x0_c00024{left:0.000000pt;}
.x8_c00024{left:25.866667pt;}
.x2_c00024{left:27.066667pt;}
.x4_c00024{left:30.533333pt;}
.x3_c00024{left:31.466667pt;}
.x5_c00024{left:32.400000pt;}
.x7_c00024{left:33.600000pt;}
.x9_c00024{left:34.800000pt;}
.xa_c00024{left:36.000000pt;}
.xc_c00024{left:37.466667pt;}
.x6_c00024{left:48.266667pt;}
.xb_c00024{left:51.600000pt;}
.x1_c00024{left:102.800000pt;}
.x18_c00024{left:210.368205pt;}
.x12_c00024{left:234.933333pt;}
.xf_c00024{left:236.400000pt;}
.xe_c00024{left:237.333333pt;}
.x11_c00024{left:238.266667pt;}
.xd_c00024{left:239.733333pt;}
.x15_c00024{left:242.400000pt;}
.x16_c00024{left:244.133333pt;}
.x10_c00024{left:253.866667pt;}
.x13_c00024{left:255.333333pt;}
.x14_c00024{left:258.000000pt;}
.x17_c00024{left:401.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_5cff015bcceea0f91533e5d9.woff2')format("woff");}.ff1_c00025{font-family:ff1_c00025;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00025;src:url('chunks/assets/font_89dcca54f878327dc1647f80.woff2')format("woff");}.ff2_c00025{font-family:ff2_c00025;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00025;src:url('chunks/assets/font_fccabfdd2e8ee349f2102e61.woff2')format("woff");}.ff3_c00025{font-family:ff3_c00025;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00025;src:url('chunks/assets/font_55eb9db8683fc23c726f566e.woff2')format("woff");}.ff4_c00025{font-family:ff4_c00025;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00025;src:url('chunks/assets/font_bcb3054cb42d48988d1bb9a1.woff2')format("woff");}.ff5_c00025{font-family:ff5_c00025;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00025;src:url('chunks/assets/font_a459db515f26d8b27ccf0f9b.woff2')format("woff");}.ff6_c00025{font-family:ff6_c00025;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00025;src:url('chunks/assets/font_536e28d7fa9ae0fdb5f8f828.woff2')format("woff");}.ff7_c00025{font-family:ff7_c00025;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00025;src:url('chunks/assets/font_3b4d1cb3a359d9040e5fe4e4.woff2')format("woff");}.ff8_c00025{font-family:ff8_c00025;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00025;src:url('chunks/assets/font_b477b0d310996310843a7fee.woff2')format("woff");}.ff9_c00025{font-family:ff9_c00025;line-height:1.437000;font-style:normal;font-weight: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_c00025;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ffa_c00025{font-family:ffa_c00025;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00025{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00025{vertical-align:-61.800000px;}
.v0_c00025{vertical-align:0.000000px;}
.lsa_c00025{letter-spacing:-9.000000px;}
.lsc_c00025{letter-spacing:-6.000000px;}
.lsd_c00025{letter-spacing:-3.000000px;}
.ls9_c00025{letter-spacing:0.000000px;}
.ls0_c00025{letter-spacing:0.240000px;}
.lsb_c00025{letter-spacing:3.000000px;}
.ls2_c00025{letter-spacing:5.280000px;}
.ls3_c00025{letter-spacing:6.600000px;}
.ls4_c00025{letter-spacing:8.040000px;}
.ls1_c00025{letter-spacing:10.800000px;}
.ls6_c00025{letter-spacing:12.000000px;}
.ls5_c00025{letter-spacing:19.800000px;}
.ls7_c00025{letter-spacing:25.920000px;}
.ls8_c00025{letter-spacing:332.970000px;}
.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;}
}
.ws6_c00025{word-spacing:-65.100000px;}
.ws1_c00025{word-spacing:-29.700000px;}
.ws0_c00025{word-spacing:-23.760000px;}
.ws3_c00025{word-spacing:-20.295000px;}
.ws4_c00025{word-spacing:-18.000000px;}
.ws5_c00025{word-spacing:-15.060000px;}
.ws2_c00025{word-spacing:-14.160000px;}
.ws8_c00025{word-spacing:0.000000px;}
.ws7_c00025{word-spacing:5.883000px;}
._2e_c00025{margin-left:-33.705000px;}
._30_c00025{margin-left:-26.595000px;}
._36_c00025{margin-left:-21.900000px;}
._2f_c00025{margin-left:-19.320000px;}
._23_c00025{margin-left:-17.580000px;}
._11_c00025{margin-left:-15.492000px;}
._2b_c00025{margin-left:-13.920000px;}
._0_c00025{margin-left:-12.720000px;}
._3b_c00025{margin-left:-11.172000px;}
._17_c00025{margin-left:-9.840000px;}
._21_c00025{margin-left:-8.580000px;}
._f_c00025{margin-left:-7.380000px;}
._e_c00025{margin-left:-5.520000px;}
._1_c00025{margin-left:-4.260000px;}
._a_c00025{margin-left:-2.400000px;}
._9_c00025{margin-left:-1.320000px;}
._2_c00025{width:1.800000px;}
._3_c00025{width:3.360000px;}
._4_c00025{width:4.500000px;}
._8_c00025{width:6.300000px;}
._7_c00025{width:7.440000px;}
._c_c00025{width:8.640000px;}
._5_c00025{width:9.720000px;}
._b_c00025{width:11.400000px;}
._6_c00025{width:13.140000px;}
._d_c00025{width:17.040000px;}
._10_c00025{width:18.480000px;}
._19_c00025{width:20.340000px;}
._14_c00025{width:22.020000px;}
._20_c00025{width:23.040000px;}
._2d_c00025{width:24.420000px;}
._15_c00025{width:25.800000px;}
._12_c00025{width:27.540000px;}
._34_c00025{width:29.940000px;}
._13_c00025{width:31.440000px;}
._2a_c00025{width:34.020000px;}
._31_c00025{width:36.360000px;}
._2c_c00025{width:37.680000px;}
._27_c00025{width:39.120000px;}
._29_c00025{width:41.160000px;}
._18_c00025{width:47.340000px;}
._1e_c00025{width:58.740000px;}
._38_c00025{width:67.140000px;}
._35_c00025{width:70.920000px;}
._1c_c00025{width:77.280000px;}
._24_c00025{width:79.980000px;}
._22_c00025{width:82.380000px;}
._26_c00025{width:84.960000px;}
._1f_c00025{width:86.100000px;}
._1b_c00025{width:87.780000px;}
._16_c00025{width:90.360000px;}
._32_c00025{width:94.200000px;}
._39_c00025{width:103.200000px;}
._28_c00025{width:116.040000px;}
._1d_c00025{width:143.040000px;}
._33_c00025{width:145.800000px;}
._3a_c00025{width:176.400000px;}
._25_c00025{width:178.920000px;}
._1a_c00025{width:260.160000px;}
._37_c00025{width:359.280000px;}
.fc2_c00025{color:transparent;}
.fc1_c00025{color:rgb(128,128,128);}
.fc0_c00025{color:rgb(0,0,0);}
.fs2_c00025{font-size:45.000000px;}
.fs1_c00025{font-size:48.000000px;}
.fs0_c00025{font-size:60.000000px;}
.fs5_c00025{font-size:63.000000px;}
.fs3_c00025{font-size:105.000000px;}
.fs4_c00025{font-size:117.000000px;}
.y0_c00025{bottom:0.000000px;}
.y3f_c00025{bottom:3.105000px;}
.y3e_c00025{bottom:7.228363px;}
.y39_c00025{bottom:46.200000px;}
.y3d_c00025{bottom:46.500000px;}
.y38_c00025{bottom:65.400000px;}
.y3c_c00025{bottom:66.750000px;}
.y37_c00025{bottom:84.300000px;}
.y3b_c00025{bottom:85.050000px;}
.y36_c00025{bottom:102.600000px;}
.y3a_c00025{bottom:102.900000px;}
.y35_c00025{bottom:121.050000px;}
.y34_c00025{bottom:139.950000px;}
.y33_c00025{bottom:157.950000px;}
.y32_c00025{bottom:175.800000px;}
.y31_c00025{bottom:194.100000px;}
.y29_c00025{bottom:194.700000px;}
.y28_c00025{bottom:210.300000px;}
.y30_c00025{bottom:211.950000px;}
.y2f_c00025{bottom:230.400000px;}
.y27_c00025{bottom:230.550000px;}
.y2e_c00025{bottom:249.300000px;}
.y26_c00025{bottom:249.450000px;}
.y25_c00025{bottom:266.850000px;}
.y24_c00025{bottom:285.300000px;}
.y2d_c00025{bottom:300.600000px;}
.y23_c00025{bottom:303.750000px;}
.y22_c00025{bottom:320.850000px;}
.y21_c00025{bottom:338.100000px;}
.y20_c00025{bottom:356.400000px;}
.y2c_c00025{bottom:357.300000px;}
.y1f_c00025{bottom:374.850000px;}
.y2b_c00025{bottom:375.000000px;}
.y1e_c00025{bottom:389.250000px;}
.y2a_c00025{bottom:409.650000px;}
.y1d_c00025{bottom:411.000000px;}
.y1c_c00025{bottom:429.000000px;}
.y1b_c00025{bottom:447.150000px;}
.y1a_c00025{bottom:465.150000px;}
.y19_c00025{bottom:482.700000px;}
.y18_c00025{bottom:501.300000px;}
.y17_c00025{bottom:519.750000px;}
.y16_c00025{bottom:537.300000px;}
.y15_c00025{bottom:556.200000px;}
.y14_c00025{bottom:574.200000px;}
.yb_c00025{bottom:591.900000px;}
.y13_c00025{bottom:592.650000px;}
.y12_c00025{bottom:610.200000px;}
.ya_c00025{bottom:611.250000px;}
.y9_c00025{bottom:628.800000px;}
.y8_c00025{bottom:646.350000px;}
.y11_c00025{bottom:646.650000px;}
.y7_c00025{bottom:664.650000px;}
.y10_c00025{bottom:665.100000px;}
.y6_c00025{bottom:682.800000px;}
.y5_c00025{bottom:701.400000px;}
.yf_c00025{bottom:701.700000px;}
.y4_c00025{bottom:719.250000px;}
.y3_c00025{bottom:736.500000px;}
.ye_c00025{bottom:737.550000px;}
.yd_c00025{bottom:756.000000px;}
.y2_c00025{bottom:756.300000px;}
.y1_c00025{bottom:774.000000px;}
.yc_c00025{bottom:774.450000px;}
.h5_c00025{height:13.200074px;}
.h6_c00025{height:43.804688px;}
.h1_c00025{height:62.880000px;}
.h2_c00025{height:64.020000px;}
.h4_c00025{height:67.221000px;}
.h3_c00025{height:120.257563px;}
.h0_c00025{height:837.000000px;}
.w2_c00025{width:104.875500px;}
.w0_c00025{width:555.675000px;}
.w1_c00025{width:555.750000px;}
.x0_c00025{left:0.000000px;}
.x16_c00025{left:74.700000px;}
.x15_c00025{left:76.350000px;}
.x14_c00025{left:77.700000px;}
.x2_c00025{left:79.350000px;}
.x3_c00025{left:81.000000px;}
.xa_c00025{left:82.050000px;}
.x12_c00025{left:83.100000px;}
.x13_c00025{left:84.450000px;}
.x1_c00025{left:85.950000px;}
.x4_c00025{left:99.600000px;}
.x11_c00025{left:103.350000px;}
.x10_c00025{left:161.100000px;}
.x17_c00025{left:229.651749px;}
.xf_c00025{left:312.150000px;}
.x5_c00025{left:313.950000px;}
.x9_c00025{left:317.250000px;}
.xd_c00025{left:318.600000px;}
.xb_c00025{left:320.250000px;}
.x6_c00025{left:321.750000px;}
.x8_c00025{left:324.000000px;}
.x7_c00025{left:325.050000px;}
.xc_c00025{left:336.150000px;}
.xe_c00025{left:338.550000px;}
@media print{
.v1_c00025{vertical-align:-54.933333pt;}
.v0_c00025{vertical-align:0.000000pt;}
.lsa_c00025{letter-spacing:-8.000000pt;}
.lsc_c00025{letter-spacing:-5.333333pt;}
.lsd_c00025{letter-spacing:-2.666667pt;}
.ls9_c00025{letter-spacing:0.000000pt;}
.ls0_c00025{letter-spacing:0.213333pt;}
.lsb_c00025{letter-spacing:2.666667pt;}
.ls2_c00025{letter-spacing:4.693333pt;}
.ls3_c00025{letter-spacing:5.866667pt;}
.ls4_c00025{letter-spacing:7.146667pt;}
.ls1_c00025{letter-spacing:9.600000pt;}
.ls6_c00025{letter-spacing:10.666667pt;}
.ls5_c00025{letter-spacing:17.600000pt;}
.ls7_c00025{letter-spacing:23.040000pt;}
.ls8_c00025{letter-spacing:295.973333pt;}
.ws6_c00025{word-spacing:-57.866667pt;}
.ws1_c00025{word-spacing:-26.400000pt;}
.ws0_c00025{word-spacing:-21.120000pt;}
.ws3_c00025{word-spacing:-18.040000pt;}
.ws4_c00025{word-spacing:-16.000000pt;}
.ws5_c00025{word-spacing:-13.386667pt;}
.ws2_c00025{word-spacing:-12.586667pt;}
.ws8_c00025{word-spacing:0.000000pt;}
.ws7_c00025{word-spacing:5.229333pt;}
._2e_c00025{margin-left:-29.960000pt;}
._30_c00025{margin-left:-23.640000pt;}
._36_c00025{margin-left:-19.466667pt;}
._2f_c00025{margin-left:-17.173333pt;}
._23_c00025{margin-left:-15.626667pt;}
._11_c00025{margin-left:-13.770667pt;}
._2b_c00025{margin-left:-12.373333pt;}
._0_c00025{margin-left:-11.306667pt;}
._3b_c00025{margin-left:-9.930667pt;}
._17_c00025{margin-left:-8.746667pt;}
._21_c00025{margin-left:-7.626667pt;}
._f_c00025{margin-left:-6.560000pt;}
._e_c00025{margin-left:-4.906667pt;}
._1_c00025{margin-left:-3.786667pt;}
._a_c00025{margin-left:-2.133333pt;}
._9_c00025{margin-left:-1.173333pt;}
._2_c00025{width:1.600000pt;}
._3_c00025{width:2.986667pt;}
._4_c00025{width:4.000000pt;}
._8_c00025{width:5.600000pt;}
._7_c00025{width:6.613333pt;}
._c_c00025{width:7.680000pt;}
._5_c00025{width:8.640000pt;}
._b_c00025{width:10.133333pt;}
._6_c00025{width:11.680000pt;}
._d_c00025{width:15.146667pt;}
._10_c00025{width:16.426667pt;}
._19_c00025{width:18.080000pt;}
._14_c00025{width:19.573333pt;}
._20_c00025{width:20.480000pt;}
._2d_c00025{width:21.706667pt;}
._15_c00025{width:22.933333pt;}
._12_c00025{width:24.480000pt;}
._34_c00025{width:26.613333pt;}
._13_c00025{width:27.946667pt;}
._2a_c00025{width:30.240000pt;}
._31_c00025{width:32.320000pt;}
._2c_c00025{width:33.493333pt;}
._27_c00025{width:34.773333pt;}
._29_c00025{width:36.586667pt;}
._18_c00025{width:42.080000pt;}
._1e_c00025{width:52.213333pt;}
._38_c00025{width:59.680000pt;}
._35_c00025{width:63.040000pt;}
._1c_c00025{width:68.693333pt;}
._24_c00025{width:71.093333pt;}
._22_c00025{width:73.226667pt;}
._26_c00025{width:75.520000pt;}
._1f_c00025{width:76.533333pt;}
._1b_c00025{width:78.026667pt;}
._16_c00025{width:80.320000pt;}
._32_c00025{width:83.733333pt;}
._39_c00025{width:91.733333pt;}
._28_c00025{width:103.146667pt;}
._1d_c00025{width:127.146667pt;}
._33_c00025{width:129.600000pt;}
._3a_c00025{width:156.800000pt;}
._25_c00025{width:159.040000pt;}
._1a_c00025{width:231.253333pt;}
._37_c00025{width:319.360000pt;}
.fs2_c00025{font-size:40.000000pt;}
.fs1_c00025{font-size:42.666667pt;}
.fs0_c00025{font-size:53.333333pt;}
.fs5_c00025{font-size:56.000000pt;}
.fs3_c00025{font-size:93.333333pt;}
.fs4_c00025{font-size:104.000000pt;}
.y0_c00025{bottom:0.000000pt;}
.y3f_c00025{bottom:2.760000pt;}
.y3e_c00025{bottom:6.425212pt;}
.y39_c00025{bottom:41.066667pt;}
.y3d_c00025{bottom:41.333333pt;}
.y38_c00025{bottom:58.133333pt;}
.y3c_c00025{bottom:59.333333pt;}
.y37_c00025{bottom:74.933333pt;}
.y3b_c00025{bottom:75.600000pt;}
.y36_c00025{bottom:91.200000pt;}
.y3a_c00025{bottom:91.466667pt;}
.y35_c00025{bottom:107.600000pt;}
.y34_c00025{bottom:124.400000pt;}
.y33_c00025{bottom:140.400000pt;}
.y32_c00025{bottom:156.266667pt;}
.y31_c00025{bottom:172.533333pt;}
.y29_c00025{bottom:173.066667pt;}
.y28_c00025{bottom:186.933333pt;}
.y30_c00025{bottom:188.400000pt;}
.y2f_c00025{bottom:204.800000pt;}
.y27_c00025{bottom:204.933333pt;}
.y2e_c00025{bottom:221.600000pt;}
.y26_c00025{bottom:221.733333pt;}
.y25_c00025{bottom:237.200000pt;}
.y24_c00025{bottom:253.600000pt;}
.y2d_c00025{bottom:267.200000pt;}
.y23_c00025{bottom:270.000000pt;}
.y22_c00025{bottom:285.200000pt;}
.y21_c00025{bottom:300.533333pt;}
.y20_c00025{bottom:316.800000pt;}
.y2c_c00025{bottom:317.600000pt;}
.y1f_c00025{bottom:333.200000pt;}
.y2b_c00025{bottom:333.333333pt;}
.y1e_c00025{bottom:346.000000pt;}
.y2a_c00025{bottom:364.133333pt;}
.y1d_c00025{bottom:365.333333pt;}
.y1c_c00025{bottom:381.333333pt;}
.y1b_c00025{bottom:397.466667pt;}
.y1a_c00025{bottom:413.466667pt;}
.y19_c00025{bottom:429.066667pt;}
.y18_c00025{bottom:445.600000pt;}
.y17_c00025{bottom:462.000000pt;}
.y16_c00025{bottom:477.600000pt;}
.y15_c00025{bottom:494.400000pt;}
.y14_c00025{bottom:510.400000pt;}
.yb_c00025{bottom:526.133333pt;}
.y13_c00025{bottom:526.800000pt;}
.y12_c00025{bottom:542.400000pt;}
.ya_c00025{bottom:543.333333pt;}
.y9_c00025{bottom:558.933333pt;}
.y8_c00025{bottom:574.533333pt;}
.y11_c00025{bottom:574.800000pt;}
.y7_c00025{bottom:590.800000pt;}
.y10_c00025{bottom:591.200000pt;}
.y6_c00025{bottom:606.933333pt;}
.y5_c00025{bottom:623.466667pt;}
.yf_c00025{bottom:623.733333pt;}
.y4_c00025{bottom:639.333333pt;}
.y3_c00025{bottom:654.666667pt;}
.ye_c00025{bottom:655.600000pt;}
.yd_c00025{bottom:672.000000pt;}
.y2_c00025{bottom:672.266667pt;}
.y1_c00025{bottom:688.000000pt;}
.yc_c00025{bottom:688.400000pt;}
.h5_c00025{height:11.733399pt;}
.h6_c00025{height:38.937500pt;}
.h1_c00025{height:55.893333pt;}
.h2_c00025{height:56.906667pt;}
.h4_c00025{height:59.752000pt;}
.h3_c00025{height:106.895612pt;}
.h0_c00025{height:744.000000pt;}
.w2_c00025{width:93.222667pt;}
.w0_c00025{width:493.933333pt;}
.w1_c00025{width:494.000000pt;}
.x0_c00025{left:0.000000pt;}
.x16_c00025{left:66.400000pt;}
.x15_c00025{left:67.866667pt;}
.x14_c00025{left:69.066667pt;}
.x2_c00025{left:70.533333pt;}
.x3_c00025{left:72.000000pt;}
.xa_c00025{left:72.933333pt;}
.x12_c00025{left:73.866667pt;}
.x13_c00025{left:75.066667pt;}
.x1_c00025{left:76.400000pt;}
.x4_c00025{left:88.533333pt;}
.x11_c00025{left:91.866667pt;}
.x10_c00025{left:143.200000pt;}
.x17_c00025{left:204.134888pt;}
.xf_c00025{left:277.466667pt;}
.x5_c00025{left:279.066667pt;}
.x9_c00025{left:282.000000pt;}
.xd_c00025{left:283.200000pt;}
.xb_c00025{left:284.666667pt;}
.x6_c00025{left:286.000000pt;}
.x8_c00025{left:288.000000pt;}
.x7_c00025{left:288.933333pt;}
.xc_c00025{left:298.800000pt;}
.xe_c00025{left:300.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_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_1c3a62e64c2814c2aa1cb522.woff2')format("woff");}.ff1_c00026{font-family:ff1_c00026;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00026;src:url('chunks/assets/font_f512d1651819a0d754f01d06.woff2')format("woff");}.ff2_c00026{font-family:ff2_c00026;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00026;src:url('chunks/assets/font_b4a16d1bfeed575692295906.woff2')format("woff");}.ff3_c00026{font-family:ff3_c00026;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00026;src:url('chunks/assets/font_e8783469c7aac5ff040d9542.woff2')format("woff");}.ff4_c00026{font-family:ff4_c00026;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00026;src:url('chunks/assets/font_1d0a8b4302713eb9051ecf54.woff2')format("woff");}.ff5_c00026{font-family:ff5_c00026;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00026;src:url('chunks/assets/font_8de06fd1082570db9e680dc8.woff2')format("woff");}.ff6_c00026{font-family:ff6_c00026;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00026;src:url('chunks/assets/font_fdbd3b2b0a9a7ae3e6bc1d08.woff2')format("woff");}.ff7_c00026{font-family:ff7_c00026;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00026;src:url('chunks/assets/font_55eb9db8683fc23c726f566e.woff2')format("woff");}.ff8_c00026{font-family:ff8_c00026;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00026;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff9_c00026{font-family:ff9_c00026;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00026{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00026{vertical-align:0.000000px;}
.ls5_c00026{letter-spacing:-3.000000px;}
.ls4_c00026{letter-spacing:0.000000px;}
.ls2_c00026{letter-spacing:3.000000px;}
.ls3_c00026{letter-spacing:4.605000px;}
.ls0_c00026{letter-spacing:4.608000px;}
.ls6_c00026{letter-spacing:21.000000px;}
.ls1_c00026{letter-spacing:22.599000px;}
.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;}
}
.ws8_c00026{word-spacing:-40.494000px;}
.ws1_c00026{word-spacing:-36.780000px;}
.wsa_c00026{word-spacing:-33.189000px;}
.ws6_c00026{word-spacing:-29.700000px;}
.wsb_c00026{word-spacing:-29.424000px;}
.ws7_c00026{word-spacing:-20.340000px;}
.wsc_c00026{word-spacing:-19.941000px;}
.ws0_c00026{word-spacing:-18.744000px;}
.ws5_c00026{word-spacing:-15.060000px;}
.ws3_c00026{word-spacing:-14.160000px;}
.ws9_c00026{word-spacing:-9.189000px;}
.ws2_c00026{word-spacing:-2.016000px;}
.wsd_c00026{word-spacing:0.000000px;}
.ws4_c00026{word-spacing:3.600000px;}
._21_c00026{margin-left:-21.420000px;}
._24_c00026{margin-left:-20.364000px;}
._f_c00026{margin-left:-16.980000px;}
._29_c00026{margin-left:-14.400000px;}
._8_c00026{margin-left:-12.780000px;}
._15_c00026{margin-left:-11.220000px;}
._14_c00026{margin-left:-9.780000px;}
._9_c00026{margin-left:-8.460000px;}
._b_c00026{margin-left:-6.840000px;}
._4_c00026{margin-left:-4.800000px;}
._5_c00026{margin-left:-3.060000px;}
._a_c00026{margin-left:-1.500000px;}
._12_c00026{width:1.620000px;}
._10_c00026{width:2.700000px;}
._d_c00026{width:4.680000px;}
._16_c00026{width:6.660000px;}
._13_c00026{width:8.100000px;}
._e_c00026{width:9.240000px;}
._1a_c00026{width:10.560000px;}
._19_c00026{width:12.240000px;}
._1c_c00026{width:13.800000px;}
._1b_c00026{width:16.980000px;}
._18_c00026{width:18.480000px;}
._2_c00026{width:20.352000px;}
._17_c00026{width:21.360000px;}
._1_c00026{width:22.560000px;}
._1e_c00026{width:24.720000px;}
._3_c00026{width:26.832000px;}
._1f_c00026{width:28.620000px;}
._0_c00026{width:30.048000px;}
._6_c00026{width:31.824000px;}
._2d_c00026{width:34.140000px;}
._2e_c00026{width:35.940000px;}
._7_c00026{width:41.376000px;}
._2c_c00026{width:45.240000px;}
._23_c00026{width:46.680000px;}
._25_c00026{width:48.060000px;}
._2b_c00026{width:50.328000px;}
._28_c00026{width:57.840000px;}
._11_c00026{width:66.840000px;}
._22_c00026{width:69.240000px;}
._1d_c00026{width:94.860000px;}
._20_c00026{width:120.540000px;}
._2a_c00026{width:126.180000px;}
._c_c00026{width:145.260000px;}
._27_c00026{width:155.340000px;}
._26_c00026{width:232.980000px;}
._2f_c00026{width:455.580000px;}
.fc2_c00026{color:transparent;}
.fc1_c00026{color:rgb(128,128,128);}
.fc0_c00026{color:rgb(0,0,0);}
.fs3_c00026{font-size:45.000000px;}
.fs0_c00026{font-size:48.000000px;}
.fs2_c00026{font-size:51.000000px;}
.fs1_c00026{font-size:60.000000px;}
.fs4_c00026{font-size:69.000000px;}
.y0_c00026{bottom:0.000000px;}
.y54_c00026{bottom:3.105000px;}
.y53_c00026{bottom:7.228355px;}
.y52_c00026{bottom:39.435000px;}
.y51_c00026{bottom:56.235000px;}
.y2a_c00026{bottom:56.385000px;}
.y50_c00026{bottom:74.535000px;}
.y29_c00026{bottom:75.585000px;}
.y4f_c00026{bottom:92.835000px;}
.y28_c00026{bottom:93.735000px;}
.y4e_c00026{bottom:110.385000px;}
.y27_c00026{bottom:112.335000px;}
.y4d_c00026{bottom:128.535000px;}
.y26_c00026{bottom:131.535000px;}
.y4c_c00026{bottom:146.685000px;}
.y25_c00026{bottom:147.735000px;}
.y4b_c00026{bottom:164.685000px;}
.y24_c00026{bottom:166.935000px;}
.y4a_c00026{bottom:182.835000px;}
.y23_c00026{bottom:184.935000px;}
.y49_c00026{bottom:201.435000px;}
.y22_c00026{bottom:203.385000px;}
.y48_c00026{bottom:218.985000px;}
.y21_c00026{bottom:222.285000px;}
.y47_c00026{bottom:237.285000px;}
.y20_c00026{bottom:240.285000px;}
.y46_c00026{bottom:255.435000px;}
.y1f_c00026{bottom:257.835000px;}
.y45_c00026{bottom:273.285000px;}
.y1e_c00026{bottom:276.435000px;}
.y44_c00026{bottom:291.885000px;}
.y1d_c00026{bottom:294.285000px;}
.y43_c00026{bottom:310.035000px;}
.y1c_c00026{bottom:312.435000px;}
.y42_c00026{bottom:327.585000px;}
.y1b_c00026{bottom:329.985000px;}
.y41_c00026{bottom:345.885000px;}
.y1a_c00026{bottom:347.835000px;}
.y40_c00026{bottom:363.435000px;}
.y19_c00026{bottom:365.835000px;}
.y3f_c00026{bottom:381.585000px;}
.y18_c00026{bottom:384.285000px;}
.y3e_c00026{bottom:399.285000px;}
.y17_c00026{bottom:401.535000px;}
.y3d_c00026{bottom:417.735000px;}
.y16_c00026{bottom:419.535000px;}
.y15_c00026{bottom:436.635000px;}
.y3c_c00026{bottom:452.535000px;}
.y14_c00026{bottom:454.935000px;}
.y3b_c00026{bottom:469.785000px;}
.y13_c00026{bottom:472.035000px;}
.y12_c00026{bottom:489.735000px;}
.y3a_c00026{bottom:505.485000px;}
.y11_c00026{bottom:507.885000px;}
.y39_c00026{bottom:522.735000px;}
.y10_c00026{bottom:526.485000px;}
.yf_c00026{bottom:539.535000px;}
.y38_c00026{bottom:558.885000px;}
.ye_c00026{bottom:561.585000px;}
.y37_c00026{bottom:577.035000px;}
.yd_c00026{bottom:580.035000px;}
.y36_c00026{bottom:594.885000px;}
.yc_c00026{bottom:598.635000px;}
.y35_c00026{bottom:613.185000px;}
.yb_c00026{bottom:616.185000px;}
.y34_c00026{bottom:631.335000px;}
.ya_c00026{bottom:634.185000px;}
.y33_c00026{bottom:649.935000px;}
.y9_c00026{bottom:651.735000px;}
.y32_c00026{bottom:667.485000px;}
.y8_c00026{bottom:669.885000px;}
.y31_c00026{bottom:686.085000px;}
.y7_c00026{bottom:688.185000px;}
.y30_c00026{bottom:703.935000px;}
.y6_c00026{bottom:706.035000px;}
.y2f_c00026{bottom:720.885000px;}
.y5_c00026{bottom:724.635000px;}
.y2e_c00026{bottom:739.785000px;}
.y4_c00026{bottom:742.485000px;}
.y2d_c00026{bottom:758.685000px;}
.y3_c00026{bottom:760.335000px;}
.y2c_c00026{bottom:776.535000px;}
.y2_c00026{bottom:778.185000px;}
.y2b_c00026{bottom:794.835000px;}
.y1_c00026{bottom:798.735000px;}
.h6_c00026{height:13.200074px;}
.h7_c00026{height:43.804688px;}
.h4_c00026{height:53.448000px;}
.h2_c00026{height:62.880000px;}
.h3_c00026{height:64.020000px;}
.h5_c00026{height:73.623000px;}
.h0_c00026{height:836.175000px;}
.h1_c00026{height:836.250000px;}
.w2_c00026{width:104.875500px;}
.w0_c00026{width:569.700000px;}
.w1_c00026{width:570.000000px;}
.x0_c00026{left:0.000000px;}
.x3_c00026{left:15.750000px;}
.x5_c00026{left:17.100000px;}
.x6_c00026{left:18.600000px;}
.x8_c00026{left:20.550000px;}
.x9_c00026{left:21.900000px;}
.xa_c00026{left:23.250000px;}
.xb_c00026{left:24.900000px;}
.xc_c00026{left:26.550000px;}
.xd_c00026{left:27.600000px;}
.xe_c00026{left:28.950000px;}
.x10_c00026{left:30.300000px;}
.x12_c00026{left:31.650000px;}
.x7_c00026{left:36.750000px;}
.xf_c00026{left:46.200000px;}
.x2_c00026{left:48.150000px;}
.x11_c00026{left:55.650000px;}
.x4_c00026{left:105.300000px;}
.x1_c00026{left:109.950000px;}
.x20_c00026{left:236.664230px;}
.x14_c00026{left:257.400000px;}
.x16_c00026{left:258.450000px;}
.x13_c00026{left:260.550000px;}
.x17_c00026{left:262.200000px;}
.x1a_c00026{left:264.300000px;}
.x1c_c00026{left:265.500000px;}
.x1e_c00026{left:267.600000px;}
.x19_c00026{left:269.250000px;}
.x15_c00026{left:275.700000px;}
.x1b_c00026{left:281.850000px;}
.x1d_c00026{left:289.950000px;}
.x18_c00026{left:335.850000px;}
.x1f_c00026{left:449.850000px;}
@media print{
.v0_c00026{vertical-align:0.000000pt;}
.ls5_c00026{letter-spacing:-2.666667pt;}
.ls4_c00026{letter-spacing:0.000000pt;}
.ls2_c00026{letter-spacing:2.666667pt;}
.ls3_c00026{letter-spacing:4.093333pt;}
.ls0_c00026{letter-spacing:4.096000pt;}
.ls6_c00026{letter-spacing:18.666667pt;}
.ls1_c00026{letter-spacing:20.088000pt;}
.ws8_c00026{word-spacing:-35.994667pt;}
.ws1_c00026{word-spacing:-32.693333pt;}
.wsa_c00026{word-spacing:-29.501333pt;}
.ws6_c00026{word-spacing:-26.400000pt;}
.wsb_c00026{word-spacing:-26.154667pt;}
.ws7_c00026{word-spacing:-18.080000pt;}
.wsc_c00026{word-spacing:-17.725333pt;}
.ws0_c00026{word-spacing:-16.661333pt;}
.ws5_c00026{word-spacing:-13.386667pt;}
.ws3_c00026{word-spacing:-12.586667pt;}
.ws9_c00026{word-spacing:-8.168000pt;}
.ws2_c00026{word-spacing:-1.792000pt;}
.wsd_c00026{word-spacing:0.000000pt;}
.ws4_c00026{word-spacing:3.200000pt;}
._21_c00026{margin-left:-19.040000pt;}
._24_c00026{margin-left:-18.101333pt;}
._f_c00026{margin-left:-15.093333pt;}
._29_c00026{margin-left:-12.800000pt;}
._8_c00026{margin-left:-11.360000pt;}
._15_c00026{margin-left:-9.973333pt;}
._14_c00026{margin-left:-8.693333pt;}
._9_c00026{margin-left:-7.520000pt;}
._b_c00026{margin-left:-6.080000pt;}
._4_c00026{margin-left:-4.266667pt;}
._5_c00026{margin-left:-2.720000pt;}
._a_c00026{margin-left:-1.333333pt;}
._12_c00026{width:1.440000pt;}
._10_c00026{width:2.400000pt;}
._d_c00026{width:4.160000pt;}
._16_c00026{width:5.920000pt;}
._13_c00026{width:7.200000pt;}
._e_c00026{width:8.213333pt;}
._1a_c00026{width:9.386667pt;}
._19_c00026{width:10.880000pt;}
._1c_c00026{width:12.266667pt;}
._1b_c00026{width:15.093333pt;}
._18_c00026{width:16.426667pt;}
._2_c00026{width:18.090667pt;}
._17_c00026{width:18.986667pt;}
._1_c00026{width:20.053333pt;}
._1e_c00026{width:21.973333pt;}
._3_c00026{width:23.850667pt;}
._1f_c00026{width:25.440000pt;}
._0_c00026{width:26.709333pt;}
._6_c00026{width:28.288000pt;}
._2d_c00026{width:30.346667pt;}
._2e_c00026{width:31.946667pt;}
._7_c00026{width:36.778667pt;}
._2c_c00026{width:40.213333pt;}
._23_c00026{width:41.493333pt;}
._25_c00026{width:42.720000pt;}
._2b_c00026{width:44.736000pt;}
._28_c00026{width:51.413333pt;}
._11_c00026{width:59.413333pt;}
._22_c00026{width:61.546667pt;}
._1d_c00026{width:84.320000pt;}
._20_c00026{width:107.146667pt;}
._2a_c00026{width:112.160000pt;}
._c_c00026{width:129.120000pt;}
._27_c00026{width:138.080000pt;}
._26_c00026{width:207.093333pt;}
._2f_c00026{width:404.960000pt;}
.fs3_c00026{font-size:40.000000pt;}
.fs0_c00026{font-size:42.666667pt;}
.fs2_c00026{font-size:45.333333pt;}
.fs1_c00026{font-size:53.333333pt;}
.fs4_c00026{font-size:61.333333pt;}
.y0_c00026{bottom:0.000000pt;}
.y54_c00026{bottom:2.760000pt;}
.y53_c00026{bottom:6.425204pt;}
.y52_c00026{bottom:35.053333pt;}
.y51_c00026{bottom:49.986667pt;}
.y2a_c00026{bottom:50.120000pt;}
.y50_c00026{bottom:66.253333pt;}
.y29_c00026{bottom:67.186667pt;}
.y4f_c00026{bottom:82.520000pt;}
.y28_c00026{bottom:83.320000pt;}
.y4e_c00026{bottom:98.120000pt;}
.y27_c00026{bottom:99.853333pt;}
.y4d_c00026{bottom:114.253333pt;}
.y26_c00026{bottom:116.920000pt;}
.y4c_c00026{bottom:130.386667pt;}
.y25_c00026{bottom:131.320000pt;}
.y4b_c00026{bottom:146.386667pt;}
.y24_c00026{bottom:148.386667pt;}
.y4a_c00026{bottom:162.520000pt;}
.y23_c00026{bottom:164.386667pt;}
.y49_c00026{bottom:179.053333pt;}
.y22_c00026{bottom:180.786667pt;}
.y48_c00026{bottom:194.653333pt;}
.y21_c00026{bottom:197.586667pt;}
.y47_c00026{bottom:210.920000pt;}
.y20_c00026{bottom:213.586667pt;}
.y46_c00026{bottom:227.053333pt;}
.y1f_c00026{bottom:229.186667pt;}
.y45_c00026{bottom:242.920000pt;}
.y1e_c00026{bottom:245.720000pt;}
.y44_c00026{bottom:259.453333pt;}
.y1d_c00026{bottom:261.586667pt;}
.y43_c00026{bottom:275.586667pt;}
.y1c_c00026{bottom:277.720000pt;}
.y42_c00026{bottom:291.186667pt;}
.y1b_c00026{bottom:293.320000pt;}
.y41_c00026{bottom:307.453333pt;}
.y1a_c00026{bottom:309.186667pt;}
.y40_c00026{bottom:323.053333pt;}
.y19_c00026{bottom:325.186667pt;}
.y3f_c00026{bottom:339.186667pt;}
.y18_c00026{bottom:341.586667pt;}
.y3e_c00026{bottom:354.920000pt;}
.y17_c00026{bottom:356.920000pt;}
.y3d_c00026{bottom:371.320000pt;}
.y16_c00026{bottom:372.920000pt;}
.y15_c00026{bottom:388.120000pt;}
.y3c_c00026{bottom:402.253333pt;}
.y14_c00026{bottom:404.386667pt;}
.y3b_c00026{bottom:417.586667pt;}
.y13_c00026{bottom:419.586667pt;}
.y12_c00026{bottom:435.320000pt;}
.y3a_c00026{bottom:449.320000pt;}
.y11_c00026{bottom:451.453333pt;}
.y39_c00026{bottom:464.653333pt;}
.y10_c00026{bottom:467.986667pt;}
.yf_c00026{bottom:479.586667pt;}
.y38_c00026{bottom:496.786667pt;}
.ye_c00026{bottom:499.186667pt;}
.y37_c00026{bottom:512.920000pt;}
.yd_c00026{bottom:515.586667pt;}
.y36_c00026{bottom:528.786667pt;}
.yc_c00026{bottom:532.120000pt;}
.y35_c00026{bottom:545.053333pt;}
.yb_c00026{bottom:547.720000pt;}
.y34_c00026{bottom:561.186667pt;}
.ya_c00026{bottom:563.720000pt;}
.y33_c00026{bottom:577.720000pt;}
.y9_c00026{bottom:579.320000pt;}
.y32_c00026{bottom:593.320000pt;}
.y8_c00026{bottom:595.453333pt;}
.y31_c00026{bottom:609.853333pt;}
.y7_c00026{bottom:611.720000pt;}
.y30_c00026{bottom:625.720000pt;}
.y6_c00026{bottom:627.586667pt;}
.y2f_c00026{bottom:640.786667pt;}
.y5_c00026{bottom:644.120000pt;}
.y2e_c00026{bottom:657.586667pt;}
.y4_c00026{bottom:659.986667pt;}
.y2d_c00026{bottom:674.386667pt;}
.y3_c00026{bottom:675.853333pt;}
.y2c_c00026{bottom:690.253333pt;}
.y2_c00026{bottom:691.720000pt;}
.y2b_c00026{bottom:706.520000pt;}
.y1_c00026{bottom:709.986667pt;}
.h6_c00026{height:11.733399pt;}
.h7_c00026{height:38.937500pt;}
.h4_c00026{height:47.509333pt;}
.h2_c00026{height:55.893333pt;}
.h3_c00026{height:56.906667pt;}
.h5_c00026{height:65.442667pt;}
.h0_c00026{height:743.266667pt;}
.h1_c00026{height:743.333333pt;}
.w2_c00026{width:93.222667pt;}
.w0_c00026{width:506.400000pt;}
.w1_c00026{width:506.666667pt;}
.x0_c00026{left:0.000000pt;}
.x3_c00026{left:14.000000pt;}
.x5_c00026{left:15.200000pt;}
.x6_c00026{left:16.533333pt;}
.x8_c00026{left:18.266667pt;}
.x9_c00026{left:19.466667pt;}
.xa_c00026{left:20.666667pt;}
.xb_c00026{left:22.133333pt;}
.xc_c00026{left:23.600000pt;}
.xd_c00026{left:24.533333pt;}
.xe_c00026{left:25.733333pt;}
.x10_c00026{left:26.933333pt;}
.x12_c00026{left:28.133333pt;}
.x7_c00026{left:32.666667pt;}
.xf_c00026{left:41.066667pt;}
.x2_c00026{left:42.800000pt;}
.x11_c00026{left:49.466667pt;}
.x4_c00026{left:93.600000pt;}
.x1_c00026{left:97.733333pt;}
.x20_c00026{left:210.368205pt;}
.x14_c00026{left:228.800000pt;}
.x16_c00026{left:229.733333pt;}
.x13_c00026{left:231.600000pt;}
.x17_c00026{left:233.066667pt;}
.x1a_c00026{left:234.933333pt;}
.x1c_c00026{left:236.000000pt;}
.x1e_c00026{left:237.866667pt;}
.x19_c00026{left:239.333333pt;}
.x15_c00026{left:245.066667pt;}
.x1b_c00026{left:250.533333pt;}
.x1d_c00026{left:257.733333pt;}
.x18_c00026{left:298.533333pt;}
.x1f_c00026{left:399.866667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_205b351b8df68596c9926d51.woff2')format("woff");}.ff1_c00027{font-family:ff1_c00027;line-height:1.437000;font-style:normal;font-weight:normal;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_a6164421217005d946752cc0.woff2')format("woff");}.ff2_c00027{font-family:ff2_c00027;line-height:1.437000;font-style:normal;font-weight:normal;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_5f710d4c138ffe93bdce215a.woff2')format("woff");}.ff3_c00027{font-family:ff3_c00027;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00027;src:url('chunks/assets/font_2c9740b86c2d958ecb2175f1.woff2')format("woff");}.ff4_c00027{font-family:ff4_c00027;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00027;src:url('chunks/assets/font_f2bd75bf68fb750c7ee58e84.woff2')format("woff");}.ff5_c00027{font-family:ff5_c00027;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00027;src:url('chunks/assets/font_4093600aeb448e69c6caec33.woff2')format("woff");}.ff6_c00027{font-family:ff6_c00027;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00027;src:url('chunks/assets/font_6d6b03c1d27c9ab0d855e7aa.woff2')format("woff");}.ff7_c00027{font-family:ff7_c00027;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00027;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff8_c00027{font-family:ff8_c00027;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00027{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00027{vertical-align:0.000000px;}
.lsa_c00027{letter-spacing:-9.000000px;}
.ls7_c00027{letter-spacing:0.000000px;}
.ls9_c00027{letter-spacing:3.000000px;}
.ls6_c00027{letter-spacing:3.660000px;}
.ls0_c00027{letter-spacing:5.100000px;}
.ls8_c00027{letter-spacing:9.000000px;}
.ls4_c00027{letter-spacing:24.540000px;}
.ls1_c00027{letter-spacing:29.805000px;}
.ls2_c00027{letter-spacing:29.940000px;}
.ls5_c00027{letter-spacing:33.540000px;}
.ls3_c00027{letter-spacing:34.260000px;}
.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:-28.074000px;}
.ws5_c00027{word-spacing:-25.095000px;}
.ws4_c00027{word-spacing:-20.295000px;}
.ws3_c00027{word-spacing:-15.060000px;}
.ws1_c00027{word-spacing:-14.340000px;}
.ws0_c00027{word-spacing:-14.160000px;}
.ws6_c00027{word-spacing:0.000000px;}
._26_c00027{margin-left:-50.439000px;}
._25_c00027{margin-left:-48.090000px;}
._3c_c00027{margin-left:-27.615000px;}
._0_c00027{margin-left:-19.020000px;}
._2b_c00027{margin-left:-13.518000px;}
._1b_c00027{margin-left:-12.480000px;}
._2f_c00027{margin-left:-10.740000px;}
._24_c00027{margin-left:-8.880000px;}
._2a_c00027{margin-left:-7.782000px;}
._1d_c00027{margin-left:-6.300000px;}
._21_c00027{margin-left:-4.860000px;}
._16_c00027{margin-left:-3.060000px;}
._15_c00027{margin-left:-1.740000px;}
._d_c00027{width:1.860000px;}
._12_c00027{width:2.880000px;}
._b_c00027{width:3.960000px;}
._e_c00027{width:5.040000px;}
._a_c00027{width:6.180000px;}
._9_c00027{width:7.800000px;}
._10_c00027{width:9.000000px;}
._11_c00027{width:10.140000px;}
._8_c00027{width:11.640000px;}
._6_c00027{width:13.440000px;}
._7_c00027{width:16.560000px;}
._2_c00027{width:17.820000px;}
._3_c00027{width:19.560000px;}
._c_c00027{width:21.240000px;}
._1a_c00027{width:22.620000px;}
._f_c00027{width:23.940000px;}
._13_c00027{width:26.040000px;}
._14_c00027{width:27.660000px;}
._20_c00027{width:29.460000px;}
._5_c00027{width:31.020000px;}
._19_c00027{width:32.340000px;}
._4_c00027{width:33.480000px;}
._22_c00027{width:34.860000px;}
._23_c00027{width:37.380000px;}
._2e_c00027{width:39.720000px;}
._34_c00027{width:41.400000px;}
._2d_c00027{width:43.320000px;}
._3a_c00027{width:45.120000px;}
._1f_c00027{width:46.800000px;}
._2c_c00027{width:49.560000px;}
._18_c00027{width:51.420000px;}
._37_c00027{width:52.440000px;}
._31_c00027{width:53.820000px;}
._29_c00027{width:57.480000px;}
._3b_c00027{width:58.920000px;}
._38_c00027{width:60.390000px;}
._35_c00027{width:66.840000px;}
._39_c00027{width:95.220000px;}
._27_c00027{width:109.239000px;}
._33_c00027{width:119.940000px;}
._1e_c00027{width:127.740000px;}
._36_c00027{width:150.120000px;}
._1c_c00027{width:166.860000px;}
._17_c00027{width:176.100000px;}
._32_c00027{width:328.500000px;}
._30_c00027{width:358.320000px;}
._28_c00027{width:561.240000px;}
._1_c00027{width:674.040000px;}
.fc2_c00027{color:transparent;}
.fc1_c00027{color:rgb(128,128,128);}
.fc0_c00027{color:rgb(0,0,0);}
.fs3_c00027{font-size:45.000000px;}
.fs7_c00027{font-size:48.000000px;}
.fs1_c00027{font-size:57.000000px;}
.fs0_c00027{font-size:60.000000px;}
.fs4_c00027{font-size:66.000000px;}
.fs5_c00027{font-size:69.000000px;}
.fs6_c00027{font-size:105.000000px;}
.fs2_c00027{font-size:129.000000px;}
.y0_c00027{bottom:0.000000px;}
.y2d_c00027{bottom:3.105000px;}
.y2c_c00027{bottom:7.228355px;}
.y2b_c00027{bottom:27.285000px;}
.y2a_c00027{bottom:42.435000px;}
.y29_c00027{bottom:61.785000px;}
.y28_c00027{bottom:79.635000px;}
.y27_c00027{bottom:97.485000px;}
.y26_c00027{bottom:115.785000px;}
.y25_c00027{bottom:133.935000px;}
.y24_c00027{bottom:151.485000px;}
.y23_c00027{bottom:167.085000px;}
.y22_c00027{bottom:187.935000px;}
.y21_c00027{bottom:206.085000px;}
.y20_c00027{bottom:224.085000px;}
.y1f_c00027{bottom:242.535000px;}
.y1e_c00027{bottom:260.085000px;}
.y1d_c00027{bottom:278.085000px;}
.y1c_c00027{bottom:294.885000px;}
.y1b_c00027{bottom:314.535000px;}
.y1a_c00027{bottom:331.635000px;}
.y19_c00027{bottom:349.335000px;}
.y18_c00027{bottom:366.735000px;}
.y17_c00027{bottom:384.735000px;}
.y16_c00027{bottom:403.335000px;}
.y15_c00027{bottom:421.785000px;}
.y14_c00027{bottom:439.335000px;}
.y13_c00027{bottom:456.885000px;}
.y12_c00027{bottom:475.185000px;}
.y11_c00027{bottom:494.385000px;}
.y10_c00027{bottom:511.335000px;}
.yf_c00027{bottom:530.085000px;}
.ye_c00027{bottom:547.785000px;}
.yd_c00027{bottom:566.535000px;}
.yc_c00027{bottom:584.535000px;}
.yb_c00027{bottom:602.685000px;}
.ya_c00027{bottom:620.985000px;}
.y9_c00027{bottom:638.535000px;}
.y8_c00027{bottom:657.435000px;}
.y7_c00027{bottom:675.585000px;}
.y6_c00027{bottom:693.435000px;}
.y5_c00027{bottom:711.735000px;}
.y4_c00027{bottom:730.035000px;}
.y3_c00027{bottom:748.785000px;}
.y2_c00027{bottom:766.485000px;}
.y1_c00027{bottom:785.235000px;}
.h8_c00027{height:13.200074px;}
.h9_c00027{height:43.804688px;}
.h2_c00027{height:62.880000px;}
.h6_c00027{height:64.020000px;}
.h4_c00027{height:70.422000px;}
.h5_c00027{height:73.623000px;}
.h7_c00027{height:110.040000px;}
.h3_c00027{height:132.591672px;}
.h1_c00027{height:834.750000px;}
.h0_c00027{height:834.825000px;}
.w2_c00027{width:104.875500px;}
.w0_c00027{width:554.025000px;}
.w1_c00027{width:554.250000px;}
.x0_c00027{left:0.000000px;}
.x1_c00027{left:2.700000px;}
.x9_c00027{left:71.250000px;}
.xe_c00027{left:73.200000px;}
.xd_c00027{left:74.850000px;}
.xc_c00027{left:76.500000px;}
.xb_c00027{left:78.000000px;}
.xa_c00027{left:79.350000px;}
.x7_c00027{left:80.550000px;}
.x4_c00027{left:82.350000px;}
.x2_c00027{left:83.400000px;}
.x3_c00027{left:84.600000px;}
.x5_c00027{left:98.550000px;}
.x6_c00027{left:99.900000px;}
.x8_c00027{left:102.600000px;}
.x10_c00027{left:228.826767px;}
.xf_c00027{left:508.650000px;}
@media print{
.v0_c00027{vertical-align:0.000000pt;}
.lsa_c00027{letter-spacing:-8.000000pt;}
.ls7_c00027{letter-spacing:0.000000pt;}
.ls9_c00027{letter-spacing:2.666667pt;}
.ls6_c00027{letter-spacing:3.253333pt;}
.ls0_c00027{letter-spacing:4.533333pt;}
.ls8_c00027{letter-spacing:8.000000pt;}
.ls4_c00027{letter-spacing:21.813333pt;}
.ls1_c00027{letter-spacing:26.493333pt;}
.ls2_c00027{letter-spacing:26.613333pt;}
.ls5_c00027{letter-spacing:29.813333pt;}
.ls3_c00027{letter-spacing:30.453333pt;}
.ws2_c00027{word-spacing:-24.954667pt;}
.ws5_c00027{word-spacing:-22.306667pt;}
.ws4_c00027{word-spacing:-18.040000pt;}
.ws3_c00027{word-spacing:-13.386667pt;}
.ws1_c00027{word-spacing:-12.746667pt;}
.ws0_c00027{word-spacing:-12.586667pt;}
.ws6_c00027{word-spacing:0.000000pt;}
._26_c00027{margin-left:-44.834667pt;}
._25_c00027{margin-left:-42.746667pt;}
._3c_c00027{margin-left:-24.546667pt;}
._0_c00027{margin-left:-16.906667pt;}
._2b_c00027{margin-left:-12.016000pt;}
._1b_c00027{margin-left:-11.093333pt;}
._2f_c00027{margin-left:-9.546667pt;}
._24_c00027{margin-left:-7.893333pt;}
._2a_c00027{margin-left:-6.917333pt;}
._1d_c00027{margin-left:-5.600000pt;}
._21_c00027{margin-left:-4.320000pt;}
._16_c00027{margin-left:-2.720000pt;}
._15_c00027{margin-left:-1.546667pt;}
._d_c00027{width:1.653333pt;}
._12_c00027{width:2.560000pt;}
._b_c00027{width:3.520000pt;}
._e_c00027{width:4.480000pt;}
._a_c00027{width:5.493333pt;}
._9_c00027{width:6.933333pt;}
._10_c00027{width:8.000000pt;}
._11_c00027{width:9.013333pt;}
._8_c00027{width:10.346667pt;}
._6_c00027{width:11.946667pt;}
._7_c00027{width:14.720000pt;}
._2_c00027{width:15.840000pt;}
._3_c00027{width:17.386667pt;}
._c_c00027{width:18.880000pt;}
._1a_c00027{width:20.106667pt;}
._f_c00027{width:21.280000pt;}
._13_c00027{width:23.146667pt;}
._14_c00027{width:24.586667pt;}
._20_c00027{width:26.186667pt;}
._5_c00027{width:27.573333pt;}
._19_c00027{width:28.746667pt;}
._4_c00027{width:29.760000pt;}
._22_c00027{width:30.986667pt;}
._23_c00027{width:33.226667pt;}
._2e_c00027{width:35.306667pt;}
._34_c00027{width:36.800000pt;}
._2d_c00027{width:38.506667pt;}
._3a_c00027{width:40.106667pt;}
._1f_c00027{width:41.600000pt;}
._2c_c00027{width:44.053333pt;}
._18_c00027{width:45.706667pt;}
._37_c00027{width:46.613333pt;}
._31_c00027{width:47.840000pt;}
._29_c00027{width:51.093333pt;}
._3b_c00027{width:52.373333pt;}
._38_c00027{width:53.680000pt;}
._35_c00027{width:59.413333pt;}
._39_c00027{width:84.640000pt;}
._27_c00027{width:97.101333pt;}
._33_c00027{width:106.613333pt;}
._1e_c00027{width:113.546667pt;}
._36_c00027{width:133.440000pt;}
._1c_c00027{width:148.320000pt;}
._17_c00027{width:156.533333pt;}
._32_c00027{width:292.000000pt;}
._30_c00027{width:318.506667pt;}
._28_c00027{width:498.880000pt;}
._1_c00027{width:599.146667pt;}
.fs3_c00027{font-size:40.000000pt;}
.fs7_c00027{font-size:42.666667pt;}
.fs1_c00027{font-size:50.666667pt;}
.fs0_c00027{font-size:53.333333pt;}
.fs4_c00027{font-size:58.666667pt;}
.fs5_c00027{font-size:61.333333pt;}
.fs6_c00027{font-size:93.333333pt;}
.fs2_c00027{font-size:114.666667pt;}
.y0_c00027{bottom:0.000000pt;}
.y2d_c00027{bottom:2.760000pt;}
.y2c_c00027{bottom:6.425204pt;}
.y2b_c00027{bottom:24.253333pt;}
.y2a_c00027{bottom:37.720000pt;}
.y29_c00027{bottom:54.920000pt;}
.y28_c00027{bottom:70.786667pt;}
.y27_c00027{bottom:86.653333pt;}
.y26_c00027{bottom:102.920000pt;}
.y25_c00027{bottom:119.053333pt;}
.y24_c00027{bottom:134.653333pt;}
.y23_c00027{bottom:148.520000pt;}
.y22_c00027{bottom:167.053333pt;}
.y21_c00027{bottom:183.186667pt;}
.y20_c00027{bottom:199.186667pt;}
.y1f_c00027{bottom:215.586667pt;}
.y1e_c00027{bottom:231.186667pt;}
.y1d_c00027{bottom:247.186667pt;}
.y1c_c00027{bottom:262.120000pt;}
.y1b_c00027{bottom:279.586667pt;}
.y1a_c00027{bottom:294.786667pt;}
.y19_c00027{bottom:310.520000pt;}
.y18_c00027{bottom:325.986667pt;}
.y17_c00027{bottom:341.986667pt;}
.y16_c00027{bottom:358.520000pt;}
.y15_c00027{bottom:374.920000pt;}
.y14_c00027{bottom:390.520000pt;}
.y13_c00027{bottom:406.120000pt;}
.y12_c00027{bottom:422.386667pt;}
.y11_c00027{bottom:439.453333pt;}
.y10_c00027{bottom:454.520000pt;}
.yf_c00027{bottom:471.186667pt;}
.ye_c00027{bottom:486.920000pt;}
.yd_c00027{bottom:503.586667pt;}
.yc_c00027{bottom:519.586667pt;}
.yb_c00027{bottom:535.720000pt;}
.ya_c00027{bottom:551.986667pt;}
.y9_c00027{bottom:567.586667pt;}
.y8_c00027{bottom:584.386667pt;}
.y7_c00027{bottom:600.520000pt;}
.y6_c00027{bottom:616.386667pt;}
.y5_c00027{bottom:632.653333pt;}
.y4_c00027{bottom:648.920000pt;}
.y3_c00027{bottom:665.586667pt;}
.y2_c00027{bottom:681.320000pt;}
.y1_c00027{bottom:697.986667pt;}
.h8_c00027{height:11.733399pt;}
.h9_c00027{height:38.937500pt;}
.h2_c00027{height:55.893333pt;}
.h6_c00027{height:56.906667pt;}
.h4_c00027{height:62.597333pt;}
.h5_c00027{height:65.442667pt;}
.h7_c00027{height:97.813333pt;}
.h3_c00027{height:117.859264pt;}
.h1_c00027{height:742.000000pt;}
.h0_c00027{height:742.066667pt;}
.w2_c00027{width:93.222667pt;}
.w0_c00027{width:492.466667pt;}
.w1_c00027{width:492.666667pt;}
.x0_c00027{left:0.000000pt;}
.x1_c00027{left:2.400000pt;}
.x9_c00027{left:63.333333pt;}
.xe_c00027{left:65.066667pt;}
.xd_c00027{left:66.533333pt;}
.xc_c00027{left:68.000000pt;}
.xb_c00027{left:69.333333pt;}
.xa_c00027{left:70.533333pt;}
.x7_c00027{left:71.600000pt;}
.x4_c00027{left:73.200000pt;}
.x2_c00027{left:74.133333pt;}
.x3_c00027{left:75.200000pt;}
.x5_c00027{left:87.600000pt;}
.x6_c00027{left:88.800000pt;}
.x8_c00027{left:91.200000pt;}
.x10_c00027{left:203.401571pt;}
.xf_c00027{left:452.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f09bf6d4e72ad30e0e86aee3.woff2')format("woff");}.ff1_c00028{font-family:ff1_c00028;line-height:1.437000;font-style:normal;font-weight:normal;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_37420d0f707022a686faa62a.woff2')format("woff");}.ff2_c00028{font-family:ff2_c00028;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00028;src:url('chunks/assets/font_906b605b0a8a42c2fa69dae6.woff2')format("woff");}.ff3_c00028{font-family:ff3_c00028;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00028;src:url('chunks/assets/font_d06fd16acb441f78fbca70ab.woff2')format("woff");}.ff4_c00028{font-family:ff4_c00028;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00028;src:url('chunks/assets/font_92808ddac4de32040c651be9.woff2')format("woff");}.ff5_c00028{font-family:ff5_c00028;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00028;src:url('chunks/assets/font_d9f952246cc3ee7883906925.woff2')format("woff");}.ff6_c00028{font-family:ff6_c00028;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00028;src:url('chunks/assets/font_73c4e7dc11f6a35905372dff.woff2')format("woff");}.ff7_c00028{font-family:ff7_c00028;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00028;src:url('chunks/assets/font_f12504eaeda443dedb5aefbc.woff2')format("woff");}.ff8_c00028{font-family:ff8_c00028;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00028;src:url('chunks/assets/font_ed416c24d2e65f4b1031d0d0.woff2')format("woff");}.ff9_c00028{font-family:ff9_c00028;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00028;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ffa_c00028{font-family:ffa_c00028;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00028{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00028{vertical-align:0.000000px;}
.lsf_c00028{letter-spacing:-6.000000px;}
.lse_c00028{letter-spacing:-3.000000px;}
.lsb_c00028{letter-spacing:0.000000px;}
.ls8_c00028{letter-spacing:0.405000px;}
.ls6_c00028{letter-spacing:2.604000px;}
.ls0_c00028{letter-spacing:3.000000px;}
.ls4_c00028{letter-spacing:4.851000px;}
.ls1_c00028{letter-spacing:5.400000px;}
.lsd_c00028{letter-spacing:6.000000px;}
.lsa_c00028{letter-spacing:9.987000px;}
.ls5_c00028{letter-spacing:12.894000px;}
.lsc_c00028{letter-spacing:15.000000px;}
.ls9_c00028{letter-spacing:44.787000px;}
.ls7_c00028{letter-spacing:54.987000px;}
.ls2_c00028{letter-spacing:61.140000px;}
.ls3_c00028{letter-spacing:62.940000px;}
.sc__c00028{text-shadow:none;}
.sc0_c00028{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00028{-webkit-text-stroke:0px transparent;}
.sc0_c00028{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c00028{word-spacing:-33.420000px;}
.ws9_c00028{word-spacing:-30.957000px;}
.ws5_c00028{word-spacing:-27.048000px;}
.ws7_c00028{word-spacing:-25.974000px;}
.ws8_c00028{word-spacing:-19.053000px;}
.wse_c00028{word-spacing:-18.000000px;}
.wsc_c00028{word-spacing:-17.436000px;}
.ws2_c00028{word-spacing:-17.307000px;}
.ws3_c00028{word-spacing:-15.000000px;}
.wsd_c00028{word-spacing:-14.160000px;}
.ws0_c00028{word-spacing:-13.452000px;}
.ws6_c00028{word-spacing:-12.936000px;}
.ws4_c00028{word-spacing:-9.288000px;}
.wsa_c00028{word-spacing:-0.900000px;}
.wsf_c00028{word-spacing:0.000000px;}
.ws1_c00028{word-spacing:3.834000px;}
._26_c00028{margin-left:-36.015000px;}
._23_c00028{margin-left:-27.318000px;}
._2a_c00028{margin-left:-21.915000px;}
._25_c00028{margin-left:-16.020000px;}
._1d_c00028{margin-left:-14.106000px;}
._f_c00028{margin-left:-12.648000px;}
._16_c00028{margin-left:-11.229000px;}
._12_c00028{margin-left:-9.291000px;}
._15_c00028{margin-left:-8.208000px;}
._10_c00028{margin-left:-6.702000px;}
._e_c00028{margin-left:-4.992000px;}
._11_c00028{margin-left:-3.540000px;}
._13_c00028{margin-left:-2.241000px;}
._c_c00028{margin-left:-1.173000px;}
._b_c00028{width:1.020000px;}
._9_c00028{width:2.040000px;}
._a_c00028{width:3.360000px;}
._8_c00028{width:4.500000px;}
._7_c00028{width:6.480000px;}
._14_c00028{width:7.533000px;}
._6_c00028{width:8.760000px;}
._1b_c00028{width:9.828000px;}
._4_c00028{width:10.920000px;}
._1_c00028{width:12.120000px;}
._3_c00028{width:13.740000px;}
._18_c00028{width:15.096000px;}
._2_c00028{width:16.860000px;}
._1a_c00028{width:19.041000px;}
._0_c00028{width:20.100000px;}
._29_c00028{width:21.213000px;}
._1f_c00028{width:22.581000px;}
._19_c00028{width:23.661000px;}
._1c_c00028{width:25.425000px;}
._28_c00028{width:26.940000px;}
._24_c00028{width:28.068000px;}
._5_c00028{width:36.540000px;}
._17_c00028{width:39.480000px;}
._d_c00028{width:43.869000px;}
._27_c00028{width:55.347000px;}
._1e_c00028{width:60.690000px;}
._2b_c00028{width:61.800000px;}
._22_c00028{width:142.179000px;}
._20_c00028{width:157.539000px;}
._2c_c00028{width:240.519000px;}
._21_c00028{width:366.330000px;}
.fc2_c00028{color:transparent;}
.fc1_c00028{color:rgb(128,128,128);}
.fc0_c00028{color:rgb(0,0,0);}
.fs6_c00028{font-size:36.000000px;}
.fs8_c00028{font-size:45.000000px;}
.fs2_c00028{font-size:48.000000px;}
.fs4_c00028{font-size:51.000000px;}
.fs3_c00028{font-size:54.000000px;}
.fs1_c00028{font-size:57.000000px;}
.fs0_c00028{font-size:60.000000px;}
.fs5_c00028{font-size:63.000000px;}
.fs7_c00028{font-size:105.000000px;}
.y0_c00028{bottom:0.000000px;}
.y56_c00028{bottom:3.105000px;}
.y55_c00028{bottom:7.228355px;}
.y54_c00028{bottom:20.835000px;}
.y53_c00028{bottom:40.785000px;}
.y2b_c00028{bottom:41.385000px;}
.y52_c00028{bottom:58.635000px;}
.y2a_c00028{bottom:59.085000px;}
.y29_c00028{bottom:76.635000px;}
.y51_c00028{bottom:94.035000px;}
.y28_c00028{bottom:94.785000px;}
.y50_c00028{bottom:111.585000px;}
.y27_c00028{bottom:112.935000px;}
.y4f_c00028{bottom:129.135000px;}
.y26_c00028{bottom:130.635000px;}
.y4e_c00028{bottom:147.435000px;}
.y25_c00028{bottom:149.085000px;}
.y4d_c00028{bottom:164.985000px;}
.y24_c00028{bottom:166.035000px;}
.y4c_c00028{bottom:182.835000px;}
.y23_c00028{bottom:183.885000px;}
.y4b_c00028{bottom:200.385000px;}
.y22_c00028{bottom:202.485000px;}
.y4a_c00028{bottom:218.685000px;}
.y21_c00028{bottom:220.035000px;}
.y49_c00028{bottom:236.235000px;}
.y20_c00028{bottom:238.485000px;}
.y48_c00028{bottom:255.135000px;}
.y1f_c00028{bottom:256.035000px;}
.y47_c00028{bottom:272.385000px;}
.y1e_c00028{bottom:274.635000px;}
.y46_c00028{bottom:290.535000px;}
.y1d_c00028{bottom:292.185000px;}
.y45_c00028{bottom:308.835000px;}
.y1c_c00028{bottom:309.435000px;}
.y44_c00028{bottom:326.385000px;}
.y1b_c00028{bottom:328.035000px;}
.y43_c00028{bottom:344.535000px;}
.y1a_c00028{bottom:345.885000px;}
.y19_c00028{bottom:362.835000px;}
.y42_c00028{bottom:363.735000px;}
.y41_c00028{bottom:380.685000px;}
.y18_c00028{bottom:381.585000px;}
.y40_c00028{bottom:398.835000px;}
.y17_c00028{bottom:399.585000px;}
.y16_c00028{bottom:416.685000px;}
.y15_c00028{bottom:433.335000px;}
.y3f_c00028{bottom:434.235000px;}
.y14_c00028{bottom:451.785000px;}
.y13_c00028{bottom:468.435000px;}
.y3e_c00028{bottom:470.685000px;}
.y12_c00028{bottom:486.585000px;}
.y3d_c00028{bottom:488.235000px;}
.y11_c00028{bottom:504.135000px;}
.y3c_c00028{bottom:506.235000px;}
.y10_c00028{bottom:522.435000px;}
.y3b_c00028{bottom:524.085000px;}
.yf_c00028{bottom:540.885000px;}
.y3a_c00028{bottom:542.235000px;}
.ye_c00028{bottom:558.885000px;}
.y39_c00028{bottom:560.235000px;}
.yd_c00028{bottom:576.735000px;}
.y38_c00028{bottom:578.085000px;}
.yc_c00028{bottom:594.885000px;}
.y37_c00028{bottom:596.235000px;}
.yb_c00028{bottom:612.585000px;}
.y36_c00028{bottom:614.235000px;}
.ya_c00028{bottom:630.735000px;}
.y35_c00028{bottom:632.385000px;}
.y9_c00028{bottom:649.035000px;}
.y34_c00028{bottom:650.235000px;}
.y8_c00028{bottom:666.885000px;}
.y33_c00028{bottom:668.235000px;}
.y7_c00028{bottom:684.735000px;}
.y32_c00028{bottom:686.685000px;}
.y6_c00028{bottom:701.685000px;}
.y31_c00028{bottom:704.385000px;}
.y5_c00028{bottom:720.135000px;}
.y30_c00028{bottom:722.835000px;}
.y4_c00028{bottom:738.735000px;}
.y2f_c00028{bottom:739.785000px;}
.y3_c00028{bottom:755.985000px;}
.y2e_c00028{bottom:757.935000px;}
.y2_c00028{bottom:774.585000px;}
.y2d_c00028{bottom:776.235000px;}
.y1_c00028{bottom:792.435000px;}
.y2c_c00028{bottom:793.485000px;}
.h8_c00028{height:13.200074px;}
.h9_c00028{height:43.804688px;}
.h5_c00028{height:57.618000px;}
.h3_c00028{height:59.736000px;}
.h2_c00028{height:62.880000px;}
.h4_c00028{height:64.020000px;}
.h6_c00028{height:66.024000px;}
.h7_c00028{height:110.040000px;}
.h0_c00028{height:836.175000px;}
.h1_c00028{height:836.250000px;}
.w2_c00028{width:104.875500px;}
.w0_c00028{width:569.700000px;}
.w1_c00028{width:570.000000px;}
.x0_c00028{left:0.000000px;}
.x5_c00028{left:15.900000px;}
.xd_c00028{left:18.900000px;}
.x4_c00028{left:19.950000px;}
.x2_c00028{left:21.300000px;}
.x7_c00028{left:22.950000px;}
.xb_c00028{left:28.800000px;}
.x9_c00028{left:37.200000px;}
.x6_c00028{left:39.600000px;}
.xa_c00028{left:59.850000px;}
.xc_c00028{left:67.800000px;}
.x8_c00028{left:100.650000px;}
.x1_c00028{left:127.350000px;}
.x3_c00028{left:156.900000px;}
.x17_c00028{left:236.664230px;}
.xf_c00028{left:269.100000px;}
.x12_c00028{left:270.300000px;}
.x13_c00028{left:271.350000px;}
.xe_c00028{left:275.700000px;}
.x14_c00028{left:279.150000px;}
.x11_c00028{left:286.200000px;}
.x10_c00028{left:291.000000px;}
.x15_c00028{left:328.350000px;}
.x16_c00028{left:389.250000px;}
@media print{
.v0_c00028{vertical-align:0.000000pt;}
.lsf_c00028{letter-spacing:-5.333333pt;}
.lse_c00028{letter-spacing:-2.666667pt;}
.lsb_c00028{letter-spacing:0.000000pt;}
.ls8_c00028{letter-spacing:0.360000pt;}
.ls6_c00028{letter-spacing:2.314667pt;}
.ls0_c00028{letter-spacing:2.666667pt;}
.ls4_c00028{letter-spacing:4.312000pt;}
.ls1_c00028{letter-spacing:4.800000pt;}
.lsd_c00028{letter-spacing:5.333333pt;}
.lsa_c00028{letter-spacing:8.877333pt;}
.ls5_c00028{letter-spacing:11.461333pt;}
.lsc_c00028{letter-spacing:13.333333pt;}
.ls9_c00028{letter-spacing:39.810667pt;}
.ls7_c00028{letter-spacing:48.877333pt;}
.ls2_c00028{letter-spacing:54.346667pt;}
.ls3_c00028{letter-spacing:55.946667pt;}
.wsb_c00028{word-spacing:-29.706667pt;}
.ws9_c00028{word-spacing:-27.517333pt;}
.ws5_c00028{word-spacing:-24.042667pt;}
.ws7_c00028{word-spacing:-23.088000pt;}
.ws8_c00028{word-spacing:-16.936000pt;}
.wse_c00028{word-spacing:-16.000000pt;}
.wsc_c00028{word-spacing:-15.498667pt;}
.ws2_c00028{word-spacing:-15.384000pt;}
.ws3_c00028{word-spacing:-13.333333pt;}
.wsd_c00028{word-spacing:-12.586667pt;}
.ws0_c00028{word-spacing:-11.957333pt;}
.ws6_c00028{word-spacing:-11.498667pt;}
.ws4_c00028{word-spacing:-8.256000pt;}
.wsa_c00028{word-spacing:-0.800000pt;}
.wsf_c00028{word-spacing:0.000000pt;}
.ws1_c00028{word-spacing:3.408000pt;}
._26_c00028{margin-left:-32.013333pt;}
._23_c00028{margin-left:-24.282667pt;}
._2a_c00028{margin-left:-19.480000pt;}
._25_c00028{margin-left:-14.240000pt;}
._1d_c00028{margin-left:-12.538667pt;}
._f_c00028{margin-left:-11.242667pt;}
._16_c00028{margin-left:-9.981333pt;}
._12_c00028{margin-left:-8.258667pt;}
._15_c00028{margin-left:-7.296000pt;}
._10_c00028{margin-left:-5.957333pt;}
._e_c00028{margin-left:-4.437333pt;}
._11_c00028{margin-left:-3.146667pt;}
._13_c00028{margin-left:-1.992000pt;}
._c_c00028{margin-left:-1.042667pt;}
._b_c00028{width:0.906667pt;}
._9_c00028{width:1.813333pt;}
._a_c00028{width:2.986667pt;}
._8_c00028{width:4.000000pt;}
._7_c00028{width:5.760000pt;}
._14_c00028{width:6.696000pt;}
._6_c00028{width:7.786667pt;}
._1b_c00028{width:8.736000pt;}
._4_c00028{width:9.706667pt;}
._1_c00028{width:10.773333pt;}
._3_c00028{width:12.213333pt;}
._18_c00028{width:13.418667pt;}
._2_c00028{width:14.986667pt;}
._1a_c00028{width:16.925333pt;}
._0_c00028{width:17.866667pt;}
._29_c00028{width:18.856000pt;}
._1f_c00028{width:20.072000pt;}
._19_c00028{width:21.032000pt;}
._1c_c00028{width:22.600000pt;}
._28_c00028{width:23.946667pt;}
._24_c00028{width:24.949333pt;}
._5_c00028{width:32.480000pt;}
._17_c00028{width:35.093333pt;}
._d_c00028{width:38.994667pt;}
._27_c00028{width:49.197333pt;}
._1e_c00028{width:53.946667pt;}
._2b_c00028{width:54.933333pt;}
._22_c00028{width:126.381333pt;}
._20_c00028{width:140.034667pt;}
._2c_c00028{width:213.794667pt;}
._21_c00028{width:325.626667pt;}
.fs6_c00028{font-size:32.000000pt;}
.fs8_c00028{font-size:40.000000pt;}
.fs2_c00028{font-size:42.666667pt;}
.fs4_c00028{font-size:45.333333pt;}
.fs3_c00028{font-size:48.000000pt;}
.fs1_c00028{font-size:50.666667pt;}
.fs0_c00028{font-size:53.333333pt;}
.fs5_c00028{font-size:56.000000pt;}
.fs7_c00028{font-size:93.333333pt;}
.y0_c00028{bottom:0.000000pt;}
.y56_c00028{bottom:2.760000pt;}
.y55_c00028{bottom:6.425204pt;}
.y54_c00028{bottom:18.520000pt;}
.y53_c00028{bottom:36.253333pt;}
.y2b_c00028{bottom:36.786667pt;}
.y52_c00028{bottom:52.120000pt;}
.y2a_c00028{bottom:52.520000pt;}
.y29_c00028{bottom:68.120000pt;}
.y51_c00028{bottom:83.586667pt;}
.y28_c00028{bottom:84.253333pt;}
.y50_c00028{bottom:99.186667pt;}
.y27_c00028{bottom:100.386667pt;}
.y4f_c00028{bottom:114.786667pt;}
.y26_c00028{bottom:116.120000pt;}
.y4e_c00028{bottom:131.053333pt;}
.y25_c00028{bottom:132.520000pt;}
.y4d_c00028{bottom:146.653333pt;}
.y24_c00028{bottom:147.586667pt;}
.y4c_c00028{bottom:162.520000pt;}
.y23_c00028{bottom:163.453333pt;}
.y4b_c00028{bottom:178.120000pt;}
.y22_c00028{bottom:179.986667pt;}
.y4a_c00028{bottom:194.386667pt;}
.y21_c00028{bottom:195.586667pt;}
.y49_c00028{bottom:209.986667pt;}
.y20_c00028{bottom:211.986667pt;}
.y48_c00028{bottom:226.786667pt;}
.y1f_c00028{bottom:227.586667pt;}
.y47_c00028{bottom:242.120000pt;}
.y1e_c00028{bottom:244.120000pt;}
.y46_c00028{bottom:258.253333pt;}
.y1d_c00028{bottom:259.720000pt;}
.y45_c00028{bottom:274.520000pt;}
.y1c_c00028{bottom:275.053333pt;}
.y44_c00028{bottom:290.120000pt;}
.y1b_c00028{bottom:291.586667pt;}
.y43_c00028{bottom:306.253333pt;}
.y1a_c00028{bottom:307.453333pt;}
.y19_c00028{bottom:322.520000pt;}
.y42_c00028{bottom:323.320000pt;}
.y41_c00028{bottom:338.386667pt;}
.y18_c00028{bottom:339.186667pt;}
.y40_c00028{bottom:354.520000pt;}
.y17_c00028{bottom:355.186667pt;}
.y16_c00028{bottom:370.386667pt;}
.y15_c00028{bottom:385.186667pt;}
.y3f_c00028{bottom:385.986667pt;}
.y14_c00028{bottom:401.586667pt;}
.y13_c00028{bottom:416.386667pt;}
.y3e_c00028{bottom:418.386667pt;}
.y12_c00028{bottom:432.520000pt;}
.y3d_c00028{bottom:433.986667pt;}
.y11_c00028{bottom:448.120000pt;}
.y3c_c00028{bottom:449.986667pt;}
.y10_c00028{bottom:464.386667pt;}
.y3b_c00028{bottom:465.853333pt;}
.yf_c00028{bottom:480.786667pt;}
.y3a_c00028{bottom:481.986667pt;}
.ye_c00028{bottom:496.786667pt;}
.y39_c00028{bottom:497.986667pt;}
.yd_c00028{bottom:512.653333pt;}
.y38_c00028{bottom:513.853333pt;}
.yc_c00028{bottom:528.786667pt;}
.y37_c00028{bottom:529.986667pt;}
.yb_c00028{bottom:544.520000pt;}
.y36_c00028{bottom:545.986667pt;}
.ya_c00028{bottom:560.653333pt;}
.y35_c00028{bottom:562.120000pt;}
.y9_c00028{bottom:576.920000pt;}
.y34_c00028{bottom:577.986667pt;}
.y8_c00028{bottom:592.786667pt;}
.y33_c00028{bottom:593.986667pt;}
.y7_c00028{bottom:608.653333pt;}
.y32_c00028{bottom:610.386667pt;}
.y6_c00028{bottom:623.720000pt;}
.y31_c00028{bottom:626.120000pt;}
.y5_c00028{bottom:640.120000pt;}
.y30_c00028{bottom:642.520000pt;}
.y4_c00028{bottom:656.653333pt;}
.y2f_c00028{bottom:657.586667pt;}
.y3_c00028{bottom:671.986667pt;}
.y2e_c00028{bottom:673.720000pt;}
.y2_c00028{bottom:688.520000pt;}
.y2d_c00028{bottom:689.986667pt;}
.y1_c00028{bottom:704.386667pt;}
.y2c_c00028{bottom:705.320000pt;}
.h8_c00028{height:11.733399pt;}
.h9_c00028{height:38.937500pt;}
.h5_c00028{height:51.216000pt;}
.h3_c00028{height:53.098667pt;}
.h2_c00028{height:55.893333pt;}
.h4_c00028{height:56.906667pt;}
.h6_c00028{height:58.688000pt;}
.h7_c00028{height:97.813333pt;}
.h0_c00028{height:743.266667pt;}
.h1_c00028{height:743.333333pt;}
.w2_c00028{width:93.222667pt;}
.w0_c00028{width:506.400000pt;}
.w1_c00028{width:506.666667pt;}
.x0_c00028{left:0.000000pt;}
.x5_c00028{left:14.133333pt;}
.xd_c00028{left:16.800000pt;}
.x4_c00028{left:17.733333pt;}
.x2_c00028{left:18.933333pt;}
.x7_c00028{left:20.400000pt;}
.xb_c00028{left:25.600000pt;}
.x9_c00028{left:33.066667pt;}
.x6_c00028{left:35.200000pt;}
.xa_c00028{left:53.200000pt;}
.xc_c00028{left:60.266667pt;}
.x8_c00028{left:89.466667pt;}
.x1_c00028{left:113.200000pt;}
.x3_c00028{left:139.466667pt;}
.x17_c00028{left:210.368205pt;}
.xf_c00028{left:239.200000pt;}
.x12_c00028{left:240.266667pt;}
.x13_c00028{left:241.200000pt;}
.xe_c00028{left:245.066667pt;}
.x14_c00028{left:248.133333pt;}
.x11_c00028{left:254.400000pt;}
.x10_c00028{left:258.666667pt;}
.x15_c00028{left:291.866667pt;}
.x16_c00028{left:346.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_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_683b473d9632b22175b0feb6.woff2')format("woff");}.ff1_c00029{font-family:ff1_c00029;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00029;src:url('chunks/assets/font_ab78f5639e86e4cf8c9c649e.woff2')format("woff");}.ff2_c00029{font-family:ff2_c00029;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00029;src:url('chunks/assets/font_3eee306c3945adb586176fde.woff2')format("woff");}.ff3_c00029{font-family:ff3_c00029;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00029;src:url('chunks/assets/font_53970840027122674b0aca81.woff2')format("woff");}.ff4_c00029{font-family:ff4_c00029;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00029;src:url('chunks/assets/font_cd3d60e237e322fe1ba4a566.woff2')format("woff");}.ff5_c00029{font-family:ff5_c00029;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00029;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff6_c00029{font-family:ff6_c00029;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00029{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00029{vertical-align:0.000000px;}
.ls8_c00029{letter-spacing:-3.000000px;}
.ls6_c00029{letter-spacing:0.000000px;}
.ls7_c00029{letter-spacing:3.000000px;}
.ls5_c00029{letter-spacing:4.620000px;}
.ls0_c00029{letter-spacing:9.300000px;}
.ls4_c00029{letter-spacing:13.500000px;}
.ls2_c00029{letter-spacing:26.805000px;}
.ls1_c00029{letter-spacing:46.800000px;}
.ls3_c00029{letter-spacing:61.680000px;}
.sc__c00029{text-shadow:none;}
.sc0_c00029{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00029{-webkit-text-stroke:0px transparent;}
.sc0_c00029{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00029{word-spacing:-26.640000px;}
.ws4_c00029{word-spacing:-20.340000px;}
.ws3_c00029{word-spacing:-18.780000px;}
.ws0_c00029{word-spacing:-14.160000px;}
.ws5_c00029{word-spacing:0.000000px;}
.ws2_c00029{word-spacing:6.780000px;}
._41_c00029{margin-left:-14.220000px;}
._24_c00029{margin-left:-10.500000px;}
._27_c00029{margin-left:-9.060000px;}
._37_c00029{margin-left:-7.620000px;}
._22_c00029{margin-left:-6.180000px;}
._15_c00029{margin-left:-4.920000px;}
._3_c00029{margin-left:-3.240000px;}
._4_c00029{margin-left:-1.980000px;}
._0_c00029{width:1.200000px;}
._1_c00029{width:2.760000px;}
._2_c00029{width:4.620000px;}
._7_c00029{width:5.880000px;}
._8_c00029{width:7.080000px;}
._5_c00029{width:8.160000px;}
._c_c00029{width:9.180000px;}
._10_c00029{width:10.860000px;}
._b_c00029{width:12.780000px;}
._19_c00029{width:14.040000px;}
._23_c00029{width:16.140000px;}
._9_c00029{width:17.280000px;}
._11_c00029{width:18.420000px;}
._e_c00029{width:19.620000px;}
._16_c00029{width:21.600000px;}
._14_c00029{width:22.860000px;}
._1f_c00029{width:25.140000px;}
._12_c00029{width:26.940000px;}
._d_c00029{width:28.680000px;}
._13_c00029{width:33.180000px;}
._2e_c00029{width:34.320000px;}
._33_c00029{width:41.580000px;}
._3a_c00029{width:46.980000px;}
._32_c00029{width:50.016000px;}
._1e_c00029{width:51.960000px;}
._3c_c00029{width:54.480000px;}
._18_c00029{width:60.120000px;}
._6_c00029{width:61.380000px;}
._2b_c00029{width:64.380000px;}
._2c_c00029{width:70.860000px;}
._35_c00029{width:72.120000px;}
._2a_c00029{width:73.200000px;}
._26_c00029{width:74.640000px;}
._25_c00029{width:77.040000px;}
._29_c00029{width:78.420000px;}
._34_c00029{width:81.960000px;}
._3d_c00029{width:84.120000px;}
._f_c00029{width:85.800000px;}
._3e_c00029{width:86.940000px;}
._40_c00029{width:92.280000px;}
._3f_c00029{width:93.420000px;}
._36_c00029{width:94.920000px;}
._1d_c00029{width:95.940000px;}
._a_c00029{width:124.320000px;}
._39_c00029{width:132.300000px;}
._31_c00029{width:147.648000px;}
._1c_c00029{width:158.580000px;}
._28_c00029{width:172.020000px;}
._2f_c00029{width:178.740000px;}
._30_c00029{width:201.660000px;}
._21_c00029{width:233.100000px;}
._42_c00029{width:296.880000px;}
._20_c00029{width:331.020000px;}
._1a_c00029{width:346.560000px;}
._3b_c00029{width:365.400000px;}
._38_c00029{width:468.960000px;}
._17_c00029{width:737.220000px;}
._2d_c00029{width:750.180000px;}
._1b_c00029{width:811.140000px;}
.fc2_c00029{color:transparent;}
.fc1_c00029{color:rgb(128,128,128);}
.fc0_c00029{color:rgb(0,0,0);}
.fs1_c00029{font-size:45.000000px;}
.fs3_c00029{font-size:48.000000px;}
.fs2_c00029{font-size:51.000000px;}
.fs0_c00029{font-size:60.000000px;}
.y0_c00029{bottom:0.000000px;}
.y2d_c00029{bottom:3.105000px;}
.y2c_c00029{bottom:7.228357px;}
.y2b_c00029{bottom:13.230000px;}
.y2a_c00029{bottom:28.980000px;}
.y29_c00029{bottom:48.030000px;}
.y28_c00029{bottom:66.180000px;}
.y27_c00029{bottom:83.880000px;}
.y26_c00029{bottom:102.330000px;}
.y25_c00029{bottom:120.780000px;}
.y24_c00029{bottom:139.080000px;}
.y23_c00029{bottom:156.930000px;}
.y22_c00029{bottom:174.930000px;}
.y21_c00029{bottom:192.780000px;}
.y20_c00029{bottom:211.230000px;}
.y1f_c00029{bottom:228.930000px;}
.y1e_c00029{bottom:246.780000px;}
.y1d_c00029{bottom:264.930000px;}
.y1c_c00029{bottom:282.780000px;}
.y1b_c00029{bottom:300.330000px;}
.y1a_c00029{bottom:318.030000px;}
.y19_c00029{bottom:336.180000px;}
.y18_c00029{bottom:354.030000px;}
.y17_c00029{bottom:371.880000px;}
.y16_c00029{bottom:389.580000px;}
.y15_c00029{bottom:407.430000px;}
.y14_c00029{bottom:425.580000px;}
.y13_c00029{bottom:442.830000px;}
.y12_c00029{bottom:461.130000px;}
.y11_c00029{bottom:479.280000px;}
.y10_c00029{bottom:497.430000px;}
.yf_c00029{bottom:515.430000px;}
.ye_c00029{bottom:533.880000px;}
.yd_c00029{bottom:551.430000px;}
.yc_c00029{bottom:569.130000px;}
.yb_c00029{bottom:587.580000px;}
.ya_c00029{bottom:605.430000px;}
.y9_c00029{bottom:622.980000px;}
.y8_c00029{bottom:641.580000px;}
.y7_c00029{bottom:659.130000px;}
.y6_c00029{bottom:677.730000px;}
.y5_c00029{bottom:695.280000px;}
.y4_c00029{bottom:713.580000px;}
.y3_c00029{bottom:731.430000px;}
.y2_c00029{bottom:750.030000px;}
.y1_c00029{bottom:768.480000px;}
.h4_c00029{height:13.200074px;}
.h5_c00029{height:43.804688px;}
.h2_c00029{height:62.880000px;}
.h3_c00029{height:64.020000px;}
.h1_c00029{height:830.250000px;}
.h0_c00029{height:830.550000px;}
.w2_c00029{width:104.875500px;}
.w1_c00029{width:551.250000px;}
.w0_c00029{width:551.325000px;}
.x0_c00029{left:0.000000px;}
.x7_c00029{left:43.650000px;}
.x6_c00029{left:45.300000px;}
.x3_c00029{left:46.500000px;}
.x2_c00029{left:47.550000px;}
.x4_c00029{left:49.200000px;}
.x1_c00029{left:50.700000px;}
.x8_c00029{left:53.700000px;}
.x5_c00029{left:62.100000px;}
.x9_c00029{left:110.700000px;}
.xb_c00029{left:227.476730px;}
.xa_c00029{left:478.200000px;}
@media print{
.v0_c00029{vertical-align:0.000000pt;}
.ls8_c00029{letter-spacing:-2.666667pt;}
.ls6_c00029{letter-spacing:0.000000pt;}
.ls7_c00029{letter-spacing:2.666667pt;}
.ls5_c00029{letter-spacing:4.106667pt;}
.ls0_c00029{letter-spacing:8.266667pt;}
.ls4_c00029{letter-spacing:12.000000pt;}
.ls2_c00029{letter-spacing:23.826667pt;}
.ls1_c00029{letter-spacing:41.600000pt;}
.ls3_c00029{letter-spacing:54.826667pt;}
.ws1_c00029{word-spacing:-23.680000pt;}
.ws4_c00029{word-spacing:-18.080000pt;}
.ws3_c00029{word-spacing:-16.693333pt;}
.ws0_c00029{word-spacing:-12.586667pt;}
.ws5_c00029{word-spacing:0.000000pt;}
.ws2_c00029{word-spacing:6.026667pt;}
._41_c00029{margin-left:-12.640000pt;}
._24_c00029{margin-left:-9.333333pt;}
._27_c00029{margin-left:-8.053333pt;}
._37_c00029{margin-left:-6.773333pt;}
._22_c00029{margin-left:-5.493333pt;}
._15_c00029{margin-left:-4.373333pt;}
._3_c00029{margin-left:-2.880000pt;}
._4_c00029{margin-left:-1.760000pt;}
._0_c00029{width:1.066667pt;}
._1_c00029{width:2.453333pt;}
._2_c00029{width:4.106667pt;}
._7_c00029{width:5.226667pt;}
._8_c00029{width:6.293333pt;}
._5_c00029{width:7.253333pt;}
._c_c00029{width:8.160000pt;}
._10_c00029{width:9.653333pt;}
._b_c00029{width:11.360000pt;}
._19_c00029{width:12.480000pt;}
._23_c00029{width:14.346667pt;}
._9_c00029{width:15.360000pt;}
._11_c00029{width:16.373333pt;}
._e_c00029{width:17.440000pt;}
._16_c00029{width:19.200000pt;}
._14_c00029{width:20.320000pt;}
._1f_c00029{width:22.346667pt;}
._12_c00029{width:23.946667pt;}
._d_c00029{width:25.493333pt;}
._13_c00029{width:29.493333pt;}
._2e_c00029{width:30.506667pt;}
._33_c00029{width:36.960000pt;}
._3a_c00029{width:41.760000pt;}
._32_c00029{width:44.458667pt;}
._1e_c00029{width:46.186667pt;}
._3c_c00029{width:48.426667pt;}
._18_c00029{width:53.440000pt;}
._6_c00029{width:54.560000pt;}
._2b_c00029{width:57.226667pt;}
._2c_c00029{width:62.986667pt;}
._35_c00029{width:64.106667pt;}
._2a_c00029{width:65.066667pt;}
._26_c00029{width:66.346667pt;}
._25_c00029{width:68.480000pt;}
._29_c00029{width:69.706667pt;}
._34_c00029{width:72.853333pt;}
._3d_c00029{width:74.773333pt;}
._f_c00029{width:76.266667pt;}
._3e_c00029{width:77.280000pt;}
._40_c00029{width:82.026667pt;}
._3f_c00029{width:83.040000pt;}
._36_c00029{width:84.373333pt;}
._1d_c00029{width:85.280000pt;}
._a_c00029{width:110.506667pt;}
._39_c00029{width:117.600000pt;}
._31_c00029{width:131.242667pt;}
._1c_c00029{width:140.960000pt;}
._28_c00029{width:152.906667pt;}
._2f_c00029{width:158.880000pt;}
._30_c00029{width:179.253333pt;}
._21_c00029{width:207.200000pt;}
._42_c00029{width:263.893333pt;}
._20_c00029{width:294.240000pt;}
._1a_c00029{width:308.053333pt;}
._3b_c00029{width:324.800000pt;}
._38_c00029{width:416.853333pt;}
._17_c00029{width:655.306667pt;}
._2d_c00029{width:666.826667pt;}
._1b_c00029{width:721.013333pt;}
.fs1_c00029{font-size:40.000000pt;}
.fs3_c00029{font-size:42.666667pt;}
.fs2_c00029{font-size:45.333333pt;}
.fs0_c00029{font-size:53.333333pt;}
.y0_c00029{bottom:0.000000pt;}
.y2d_c00029{bottom:2.760000pt;}
.y2c_c00029{bottom:6.425206pt;}
.y2b_c00029{bottom:11.760000pt;}
.y2a_c00029{bottom:25.760000pt;}
.y29_c00029{bottom:42.693333pt;}
.y28_c00029{bottom:58.826667pt;}
.y27_c00029{bottom:74.560000pt;}
.y26_c00029{bottom:90.960000pt;}
.y25_c00029{bottom:107.360000pt;}
.y24_c00029{bottom:123.626667pt;}
.y23_c00029{bottom:139.493333pt;}
.y22_c00029{bottom:155.493333pt;}
.y21_c00029{bottom:171.360000pt;}
.y20_c00029{bottom:187.760000pt;}
.y1f_c00029{bottom:203.493333pt;}
.y1e_c00029{bottom:219.360000pt;}
.y1d_c00029{bottom:235.493333pt;}
.y1c_c00029{bottom:251.360000pt;}
.y1b_c00029{bottom:266.960000pt;}
.y1a_c00029{bottom:282.693333pt;}
.y19_c00029{bottom:298.826667pt;}
.y18_c00029{bottom:314.693333pt;}
.y17_c00029{bottom:330.560000pt;}
.y16_c00029{bottom:346.293333pt;}
.y15_c00029{bottom:362.160000pt;}
.y14_c00029{bottom:378.293333pt;}
.y13_c00029{bottom:393.626667pt;}
.y12_c00029{bottom:409.893333pt;}
.y11_c00029{bottom:426.026667pt;}
.y10_c00029{bottom:442.160000pt;}
.yf_c00029{bottom:458.160000pt;}
.ye_c00029{bottom:474.560000pt;}
.yd_c00029{bottom:490.160000pt;}
.yc_c00029{bottom:505.893333pt;}
.yb_c00029{bottom:522.293333pt;}
.ya_c00029{bottom:538.160000pt;}
.y9_c00029{bottom:553.760000pt;}
.y8_c00029{bottom:570.293333pt;}
.y7_c00029{bottom:585.893333pt;}
.y6_c00029{bottom:602.426667pt;}
.y5_c00029{bottom:618.026667pt;}
.y4_c00029{bottom:634.293333pt;}
.y3_c00029{bottom:650.160000pt;}
.y2_c00029{bottom:666.693333pt;}
.y1_c00029{bottom:683.093333pt;}
.h4_c00029{height:11.733399pt;}
.h5_c00029{height:38.937500pt;}
.h2_c00029{height:55.893333pt;}
.h3_c00029{height:56.906667pt;}
.h1_c00029{height:738.000000pt;}
.h0_c00029{height:738.266667pt;}
.w2_c00029{width:93.222667pt;}
.w1_c00029{width:490.000000pt;}
.w0_c00029{width:490.066667pt;}
.x0_c00029{left:0.000000pt;}
.x7_c00029{left:38.800000pt;}
.x6_c00029{left:40.266667pt;}
.x3_c00029{left:41.333333pt;}
.x2_c00029{left:42.266667pt;}
.x4_c00029{left:43.733333pt;}
.x1_c00029{left:45.066667pt;}
.x8_c00029{left:47.733333pt;}
.x5_c00029{left:55.200000pt;}
.x9_c00029{left:98.400000pt;}
.xb_c00029{left:202.201538pt;}
.xa_c00029{left:425.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_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_f4e87fc38c08ac4206239f44.woff2')format("woff");}.ff1_c00030{font-family:ff1_c00030;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00030;src:url('chunks/assets/font_14f02695841322adecfa6b3a.woff2')format("woff");}.ff2_c00030{font-family:ff2_c00030;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00030;src:url('chunks/assets/font_dbaade9d520a7ad1ca2a61d0.woff2')format("woff");}.ff3_c00030{font-family:ff3_c00030;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00030;src:url('chunks/assets/font_47dd4029cbbdc41010f520f9.woff2')format("woff");}.ff4_c00030{font-family:ff4_c00030;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00030;src:url('chunks/assets/font_47850a780e4704f6a9bf910c.woff2')format("woff");}.ff5_c00030{font-family:ff5_c00030;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00030;src:url('chunks/assets/font_896b2b9fcebdbece3d932a4a.woff2')format("woff");}.ff6_c00030{font-family:ff6_c00030;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00030;src:url('chunks/assets/font_d9938265e4f62fb9049ceeb8.woff2')format("woff");}.ff7_c00030{font-family:ff7_c00030;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00030;src:url('chunks/assets/font_9ef3574ed299d0c4136d4721.woff2')format("woff");}.ff8_c00030{font-family:ff8_c00030;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00030;src:url('chunks/assets/font_96f9011b298e33a317b87dd7.woff2')format("woff");}.ff9_c00030{font-family:ff9_c00030;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00030;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ffa_c00030{font-family:ffa_c00030;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00030{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00030{vertical-align:0.000000px;}
.lsb_c00030{letter-spacing:-9.000000px;}
.lsc_c00030{letter-spacing:-3.000000px;}
.lsa_c00030{letter-spacing:0.000000px;}
.ls4_c00030{letter-spacing:2.280000px;}
.ls2_c00030{letter-spacing:2.640000px;}
.ls0_c00030{letter-spacing:3.000000px;}
.ls5_c00030{letter-spacing:3.600000px;}
.ls8_c00030{letter-spacing:4.377000px;}
.ls9_c00030{letter-spacing:5.400000px;}
.lsd_c00030{letter-spacing:6.000000px;}
.ls6_c00030{letter-spacing:6.411000px;}
.ls3_c00030{letter-spacing:6.600000px;}
.ls7_c00030{letter-spacing:11.850000px;}
.ls1_c00030{letter-spacing:16.800000px;}
.sc__c00030{text-shadow:none;}
.sc0_c00030{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00030{-webkit-text-stroke:0px transparent;}
.sc0_c00030{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9_c00030{word-spacing:-80.370000px;}
.ws0_c00030{word-spacing:-25.974000px;}
.ws2_c00030{word-spacing:-20.295000px;}
.ws6_c00030{word-spacing:-18.750000px;}
.ws4_c00030{word-spacing:-15.189000px;}
.ws8_c00030{word-spacing:-15.060000px;}
.ws7_c00030{word-spacing:-14.340000px;}
.ws1_c00030{word-spacing:-14.160000px;}
.ws5_c00030{word-spacing:-13.500000px;}
.ws3_c00030{word-spacing:-0.630000px;}
.wsa_c00030{word-spacing:0.000000px;}
._1d_c00030{margin-left:-20.055000px;}
._1a_c00030{margin-left:-14.754000px;}
._16_c00030{margin-left:-12.807000px;}
._18_c00030{margin-left:-11.331000px;}
._13_c00030{margin-left:-10.320000px;}
._15_c00030{margin-left:-8.694000px;}
._1b_c00030{margin-left:-7.686000px;}
._17_c00030{margin-left:-6.060000px;}
._d_c00030{margin-left:-4.425000px;}
._8_c00030{margin-left:-2.700000px;}
._c_c00030{margin-left:-1.521000px;}
._a_c00030{width:1.632000px;}
._b_c00030{width:3.111000px;}
._9_c00030{width:4.182000px;}
._6_c00030{width:5.814000px;}
._7_c00030{width:7.137000px;}
._11_c00030{width:8.805000px;}
._3_c00030{width:9.900000px;}
._10_c00030{width:11.283000px;}
._2_c00030{width:12.420000px;}
._1_c00030{width:13.860000px;}
._f_c00030{width:16.113000px;}
._12_c00030{width:17.244000px;}
._0_c00030{width:18.300000px;}
._19_c00030{width:20.214000px;}
._26_c00030{width:21.231000px;}
._2e_c00030{width:22.740000px;}
._2a_c00030{width:23.781000px;}
._2b_c00030{width:25.434000px;}
._24_c00030{width:26.946000px;}
._1e_c00030{width:28.578000px;}
._4_c00030{width:30.240000px;}
._2d_c00030{width:39.180000px;}
._1f_c00030{width:40.632000px;}
._2c_c00030{width:43.200000px;}
._20_c00030{width:44.550000px;}
._14_c00030{width:50.940000px;}
._29_c00030{width:53.292000px;}
._21_c00030{width:56.991000px;}
._5_c00030{width:91.149000px;}
._28_c00030{width:97.920000px;}
._1c_c00030{width:112.848000px;}
._22_c00030{width:127.047000px;}
._27_c00030{width:129.654000px;}
._25_c00030{width:132.096000px;}
._23_c00030{width:138.630000px;}
._e_c00030{width:251.925000px;}
.fc2_c00030{color:transparent;}
.fc1_c00030{color:rgb(128,128,128);}
.fc0_c00030{color:rgb(0,0,0);}
.fs3_c00030{font-size:45.000000px;}
.fs4_c00030{font-size:48.000000px;}
.fs1_c00030{font-size:51.000000px;}
.fs2_c00030{font-size:54.000000px;}
.fs0_c00030{font-size:60.000000px;}
.fs5_c00030{font-size:63.000000px;}
.fs6_c00030{font-size:66.000000px;}
.fs7_c00030{font-size:105.000000px;}
.y0_c00030{bottom:0.000000px;}
.y55_c00030{bottom:3.105000px;}
.y54_c00030{bottom:7.228355px;}
.y2b_c00030{bottom:44.235000px;}
.y53_c00030{bottom:46.785000px;}
.y2a_c00030{bottom:62.685000px;}
.y52_c00030{bottom:66.735000px;}
.y29_c00030{bottom:80.685000px;}
.y51_c00030{bottom:83.235000px;}
.y28_c00030{bottom:98.835000px;}
.y50_c00030{bottom:101.235000px;}
.y27_c00030{bottom:115.635000px;}
.y4f_c00030{bottom:119.085000px;}
.y26_c00030{bottom:134.235000px;}
.y4e_c00030{bottom:136.935000px;}
.y25_c00030{bottom:153.135000px;}
.y4d_c00030{bottom:154.785000px;}
.y24_c00030{bottom:171.135000px;}
.y4c_c00030{bottom:172.485000px;}
.y23_c00030{bottom:189.285000px;}
.y4b_c00030{bottom:190.335000px;}
.y22_c00030{bottom:207.435000px;}
.y4a_c00030{bottom:208.185000px;}
.y21_c00030{bottom:225.135000px;}
.y49_c00030{bottom:241.935000px;}
.y20_c00030{bottom:243.585000px;}
.y48_c00030{bottom:261.585000px;}
.y1f_c00030{bottom:262.185000px;}
.y1e_c00030{bottom:279.735000px;}
.y1d_c00030{bottom:297.585000px;}
.y47_c00030{bottom:297.885000px;}
.y1c_c00030{bottom:315.885000px;}
.y46_c00030{bottom:332.985000px;}
.y1b_c00030{bottom:333.435000px;}
.y1a_c00030{bottom:350.985000px;}
.y45_c00030{bottom:351.885000px;}
.y19_c00030{bottom:369.435000px;}
.y44_c00030{bottom:369.585000px;}
.y18_c00030{bottom:387.435000px;}
.y43_c00030{bottom:388.335000px;}
.y17_c00030{bottom:405.585000px;}
.y42_c00030{bottom:406.035000px;}
.y16_c00030{bottom:423.585000px;}
.y41_c00030{bottom:424.185000px;}
.y40_c00030{bottom:440.085000px;}
.y15_c00030{bottom:441.435000px;}
.y14_c00030{bottom:458.535000px;}
.y3f_c00030{bottom:458.985000px;}
.y13_c00030{bottom:476.535000px;}
.y3e_c00030{bottom:478.185000px;}
.y12_c00030{bottom:493.635000px;}
.y3d_c00030{bottom:496.335000px;}
.y11_c00030{bottom:512.535000px;}
.y3c_c00030{bottom:514.335000px;}
.y10_c00030{bottom:530.835000px;}
.y3b_c00030{bottom:532.485000px;}
.yf_c00030{bottom:548.685000px;}
.y3a_c00030{bottom:550.485000px;}
.ye_c00030{bottom:566.685000px;}
.y39_c00030{bottom:568.935000px;}
.yd_c00030{bottom:584.835000px;}
.y38_c00030{bottom:586.185000px;}
.yc_c00030{bottom:602.385000px;}
.y37_c00030{bottom:605.085000px;}
.yb_c00030{bottom:619.935000px;}
.y36_c00030{bottom:622.335000px;}
.ya_c00030{bottom:638.835000px;}
.y35_c00030{bottom:642.135000px;}
.y9_c00030{bottom:657.135000px;}
.y34_c00030{bottom:659.835000px;}
.y8_c00030{bottom:675.285000px;}
.y33_c00030{bottom:677.985000px;}
.y7_c00030{bottom:693.585000px;}
.y32_c00030{bottom:696.285000px;}
.y6_c00030{bottom:711.435000px;}
.y31_c00030{bottom:714.735000px;}
.y5_c00030{bottom:729.885000px;}
.y30_c00030{bottom:732.735000px;}
.y4_c00030{bottom:747.885000px;}
.y2f_c00030{bottom:751.485000px;}
.y3_c00030{bottom:766.035000px;}
.y2e_c00030{bottom:769.185000px;}
.y2_c00030{bottom:783.585000px;}
.y2d_c00030{bottom:787.935000px;}
.y1_c00030{bottom:802.185000px;}
.y2c_c00030{bottom:805.485000px;}
.h9_c00030{height:13.200074px;}
.ha_c00030{height:43.804688px;}
.h7_c00030{height:53.448000px;}
.h3_c00030{height:58.536000px;}
.h2_c00030{height:62.880000px;}
.h4_c00030{height:64.020000px;}
.h5_c00030{height:67.221000px;}
.h6_c00030{height:70.422000px;}
.h8_c00030{height:110.040000px;}
.h0_c00030{height:836.175000px;}
.h1_c00030{height:836.250000px;}
.w2_c00030{width:104.875500px;}
.w0_c00030{width:569.700000px;}
.w1_c00030{width:570.000000px;}
.x0_c00030{left:0.000000px;}
.x3_c00030{left:25.050000px;}
.x5_c00030{left:26.400000px;}
.x4_c00030{left:28.050000px;}
.x6_c00030{left:29.100000px;}
.x8_c00030{left:31.050000px;}
.xb_c00030{left:32.700000px;}
.x2_c00030{left:36.750000px;}
.x9_c00030{left:44.250000px;}
.x7_c00030{left:48.000000px;}
.xa_c00030{left:49.950000px;}
.x1_c00030{left:138.300000px;}
.x18_c00030{left:236.664230px;}
.xe_c00030{left:274.950000px;}
.xf_c00030{left:276.450000px;}
.x11_c00030{left:278.850000px;}
.x14_c00030{left:280.200000px;}
.xc_c00030{left:281.400000px;}
.x16_c00030{left:283.500000px;}
.xd_c00030{left:287.250000px;}
.x10_c00030{left:296.400000px;}
.x13_c00030{left:298.800000px;}
.x17_c00030{left:302.700000px;}
.x12_c00030{left:348.300000px;}
.x15_c00030{left:365.250000px;}
@media print{
.v0_c00030{vertical-align:0.000000pt;}
.lsb_c00030{letter-spacing:-8.000000pt;}
.lsc_c00030{letter-spacing:-2.666667pt;}
.lsa_c00030{letter-spacing:0.000000pt;}
.ls4_c00030{letter-spacing:2.026667pt;}
.ls2_c00030{letter-spacing:2.346667pt;}
.ls0_c00030{letter-spacing:2.666667pt;}
.ls5_c00030{letter-spacing:3.200000pt;}
.ls8_c00030{letter-spacing:3.890667pt;}
.ls9_c00030{letter-spacing:4.800000pt;}
.lsd_c00030{letter-spacing:5.333333pt;}
.ls6_c00030{letter-spacing:5.698667pt;}
.ls3_c00030{letter-spacing:5.866667pt;}
.ls7_c00030{letter-spacing:10.533333pt;}
.ls1_c00030{letter-spacing:14.933333pt;}
.ws9_c00030{word-spacing:-71.440000pt;}
.ws0_c00030{word-spacing:-23.088000pt;}
.ws2_c00030{word-spacing:-18.040000pt;}
.ws6_c00030{word-spacing:-16.666667pt;}
.ws4_c00030{word-spacing:-13.501333pt;}
.ws8_c00030{word-spacing:-13.386667pt;}
.ws7_c00030{word-spacing:-12.746667pt;}
.ws1_c00030{word-spacing:-12.586667pt;}
.ws5_c00030{word-spacing:-12.000000pt;}
.ws3_c00030{word-spacing:-0.560000pt;}
.wsa_c00030{word-spacing:0.000000pt;}
._1d_c00030{margin-left:-17.826667pt;}
._1a_c00030{margin-left:-13.114667pt;}
._16_c00030{margin-left:-11.384000pt;}
._18_c00030{margin-left:-10.072000pt;}
._13_c00030{margin-left:-9.173333pt;}
._15_c00030{margin-left:-7.728000pt;}
._1b_c00030{margin-left:-6.832000pt;}
._17_c00030{margin-left:-5.386667pt;}
._d_c00030{margin-left:-3.933333pt;}
._8_c00030{margin-left:-2.400000pt;}
._c_c00030{margin-left:-1.352000pt;}
._a_c00030{width:1.450667pt;}
._b_c00030{width:2.765333pt;}
._9_c00030{width:3.717333pt;}
._6_c00030{width:5.168000pt;}
._7_c00030{width:6.344000pt;}
._11_c00030{width:7.826667pt;}
._3_c00030{width:8.800000pt;}
._10_c00030{width:10.029333pt;}
._2_c00030{width:11.040000pt;}
._1_c00030{width:12.320000pt;}
._f_c00030{width:14.322667pt;}
._12_c00030{width:15.328000pt;}
._0_c00030{width:16.266667pt;}
._19_c00030{width:17.968000pt;}
._26_c00030{width:18.872000pt;}
._2e_c00030{width:20.213333pt;}
._2a_c00030{width:21.138667pt;}
._2b_c00030{width:22.608000pt;}
._24_c00030{width:23.952000pt;}
._1e_c00030{width:25.402667pt;}
._4_c00030{width:26.880000pt;}
._2d_c00030{width:34.826667pt;}
._1f_c00030{width:36.117333pt;}
._2c_c00030{width:38.400000pt;}
._20_c00030{width:39.600000pt;}
._14_c00030{width:45.280000pt;}
._29_c00030{width:47.370667pt;}
._21_c00030{width:50.658667pt;}
._5_c00030{width:81.021333pt;}
._28_c00030{width:87.040000pt;}
._1c_c00030{width:100.309333pt;}
._22_c00030{width:112.930667pt;}
._27_c00030{width:115.248000pt;}
._25_c00030{width:117.418667pt;}
._23_c00030{width:123.226667pt;}
._e_c00030{width:223.933333pt;}
.fs3_c00030{font-size:40.000000pt;}
.fs4_c00030{font-size:42.666667pt;}
.fs1_c00030{font-size:45.333333pt;}
.fs2_c00030{font-size:48.000000pt;}
.fs0_c00030{font-size:53.333333pt;}
.fs5_c00030{font-size:56.000000pt;}
.fs6_c00030{font-size:58.666667pt;}
.fs7_c00030{font-size:93.333333pt;}
.y0_c00030{bottom:0.000000pt;}
.y55_c00030{bottom:2.760000pt;}
.y54_c00030{bottom:6.425204pt;}
.y2b_c00030{bottom:39.320000pt;}
.y53_c00030{bottom:41.586667pt;}
.y2a_c00030{bottom:55.720000pt;}
.y52_c00030{bottom:59.320000pt;}
.y29_c00030{bottom:71.720000pt;}
.y51_c00030{bottom:73.986667pt;}
.y28_c00030{bottom:87.853333pt;}
.y50_c00030{bottom:89.986667pt;}
.y27_c00030{bottom:102.786667pt;}
.y4f_c00030{bottom:105.853333pt;}
.y26_c00030{bottom:119.320000pt;}
.y4e_c00030{bottom:121.720000pt;}
.y25_c00030{bottom:136.120000pt;}
.y4d_c00030{bottom:137.586667pt;}
.y24_c00030{bottom:152.120000pt;}
.y4c_c00030{bottom:153.320000pt;}
.y23_c00030{bottom:168.253333pt;}
.y4b_c00030{bottom:169.186667pt;}
.y22_c00030{bottom:184.386667pt;}
.y4a_c00030{bottom:185.053333pt;}
.y21_c00030{bottom:200.120000pt;}
.y49_c00030{bottom:215.053333pt;}
.y20_c00030{bottom:216.520000pt;}
.y48_c00030{bottom:232.520000pt;}
.y1f_c00030{bottom:233.053333pt;}
.y1e_c00030{bottom:248.653333pt;}
.y1d_c00030{bottom:264.520000pt;}
.y47_c00030{bottom:264.786667pt;}
.y1c_c00030{bottom:280.786667pt;}
.y46_c00030{bottom:295.986667pt;}
.y1b_c00030{bottom:296.386667pt;}
.y1a_c00030{bottom:311.986667pt;}
.y45_c00030{bottom:312.786667pt;}
.y19_c00030{bottom:328.386667pt;}
.y44_c00030{bottom:328.520000pt;}
.y18_c00030{bottom:344.386667pt;}
.y43_c00030{bottom:345.186667pt;}
.y17_c00030{bottom:360.520000pt;}
.y42_c00030{bottom:360.920000pt;}
.y16_c00030{bottom:376.520000pt;}
.y41_c00030{bottom:377.053333pt;}
.y40_c00030{bottom:391.186667pt;}
.y15_c00030{bottom:392.386667pt;}
.y14_c00030{bottom:407.586667pt;}
.y3f_c00030{bottom:407.986667pt;}
.y13_c00030{bottom:423.586667pt;}
.y3e_c00030{bottom:425.053333pt;}
.y12_c00030{bottom:438.786667pt;}
.y3d_c00030{bottom:441.186667pt;}
.y11_c00030{bottom:455.586667pt;}
.y3c_c00030{bottom:457.186667pt;}
.y10_c00030{bottom:471.853333pt;}
.y3b_c00030{bottom:473.320000pt;}
.yf_c00030{bottom:487.720000pt;}
.y3a_c00030{bottom:489.320000pt;}
.ye_c00030{bottom:503.720000pt;}
.y39_c00030{bottom:505.720000pt;}
.yd_c00030{bottom:519.853333pt;}
.y38_c00030{bottom:521.053333pt;}
.yc_c00030{bottom:535.453333pt;}
.y37_c00030{bottom:537.853333pt;}
.yb_c00030{bottom:551.053333pt;}
.y36_c00030{bottom:553.186667pt;}
.ya_c00030{bottom:567.853333pt;}
.y35_c00030{bottom:570.786667pt;}
.y9_c00030{bottom:584.120000pt;}
.y34_c00030{bottom:586.520000pt;}
.y8_c00030{bottom:600.253333pt;}
.y33_c00030{bottom:602.653333pt;}
.y7_c00030{bottom:616.520000pt;}
.y32_c00030{bottom:618.920000pt;}
.y6_c00030{bottom:632.386667pt;}
.y31_c00030{bottom:635.320000pt;}
.y5_c00030{bottom:648.786667pt;}
.y30_c00030{bottom:651.320000pt;}
.y4_c00030{bottom:664.786667pt;}
.y2f_c00030{bottom:667.986667pt;}
.y3_c00030{bottom:680.920000pt;}
.y2e_c00030{bottom:683.720000pt;}
.y2_c00030{bottom:696.520000pt;}
.y2d_c00030{bottom:700.386667pt;}
.y1_c00030{bottom:713.053333pt;}
.y2c_c00030{bottom:715.986667pt;}
.h9_c00030{height:11.733399pt;}
.ha_c00030{height:38.937500pt;}
.h7_c00030{height:47.509333pt;}
.h3_c00030{height:52.032000pt;}
.h2_c00030{height:55.893333pt;}
.h4_c00030{height:56.906667pt;}
.h5_c00030{height:59.752000pt;}
.h6_c00030{height:62.597333pt;}
.h8_c00030{height:97.813333pt;}
.h0_c00030{height:743.266667pt;}
.h1_c00030{height:743.333333pt;}
.w2_c00030{width:93.222667pt;}
.w0_c00030{width:506.400000pt;}
.w1_c00030{width:506.666667pt;}
.x0_c00030{left:0.000000pt;}
.x3_c00030{left:22.266667pt;}
.x5_c00030{left:23.466667pt;}
.x4_c00030{left:24.933333pt;}
.x6_c00030{left:25.866667pt;}
.x8_c00030{left:27.600000pt;}
.xb_c00030{left:29.066667pt;}
.x2_c00030{left:32.666667pt;}
.x9_c00030{left:39.333333pt;}
.x7_c00030{left:42.666667pt;}
.xa_c00030{left:44.400000pt;}
.x1_c00030{left:122.933333pt;}
.x18_c00030{left:210.368205pt;}
.xe_c00030{left:244.400000pt;}
.xf_c00030{left:245.733333pt;}
.x11_c00030{left:247.866667pt;}
.x14_c00030{left:249.066667pt;}
.xc_c00030{left:250.133333pt;}
.x16_c00030{left:252.000000pt;}
.xd_c00030{left:255.333333pt;}
.x10_c00030{left:263.466667pt;}
.x13_c00030{left:265.600000pt;}
.x17_c00030{left:269.066667pt;}
.x12_c00030{left:309.600000pt;}
.x15_c00030{left:324.666667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e378fd470b80f6218101bb62.woff2')format("woff");}.ff1_c00031{font-family:ff1_c00031;line-height:1.437000;font-style:normal;font-weight:normal;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_c56648be4bdd97d55265dc2e.woff2')format("woff");}.ff2_c00031{font-family:ff2_c00031;line-height:1.437000;font-style:normal;font-weight:normal;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_74f0ff38386c7770639656c4.woff2')format("woff");}.ff3_c00031{font-family:ff3_c00031;line-height:1.575000;font-style:normal;font-weight:normal;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_b86dccedd7b169d9b5629ac9.woff2')format("woff");}.ff4_c00031{font-family:ff4_c00031;line-height:1.575000;font-style:normal;font-weight:normal;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_ca4436c7216c4f6e13582b69.woff2')format("woff");}.ff5_c00031{font-family:ff5_c00031;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00031;src:url('chunks/assets/font_94030e01eeeab233ca7608ae.woff2')format("woff");}.ff6_c00031{font-family:ff6_c00031;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00031;src:url('chunks/assets/font_73268f56ed8b9028b8082ebe.woff2')format("woff");}.ff7_c00031{font-family:ff7_c00031;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00031;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff8_c00031{font-family:ff8_c00031;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00031{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00031{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.v0_c00031{vertical-align:0.000000px;}
.lsd_c00031{letter-spacing:-9.000000px;}
.lsb_c00031{letter-spacing:-3.000000px;}
.ls9_c00031{letter-spacing:0.000000px;}
.ls7_c00031{letter-spacing:2.040000px;}
.lsa_c00031{letter-spacing:3.000000px;}
.ls1_c00031{letter-spacing:4.440000px;}
.ls8_c00031{letter-spacing:4.605000px;}
.ls5_c00031{letter-spacing:4.800000px;}
.ls6_c00031{letter-spacing:5.100000px;}
.ls3_c00031{letter-spacing:7.200000px;}
.ls4_c00031{letter-spacing:8.880000px;}
.ls0_c00031{letter-spacing:10.200000px;}
.ls2_c00031{letter-spacing:10.860000px;}
.lsc_c00031{letter-spacing:12.000000px;}
.sc__c00031{text-shadow:none;}
.sc0_c00031{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00031{-webkit-text-stroke:0px transparent;}
.sc0_c00031{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00031{word-spacing:-25.623000px;}
.ws7_c00031{word-spacing:-23.760000px;}
.ws2_c00031{word-spacing:-20.340000px;}
.ws8_c00031{word-spacing:-20.295000px;}
.ws5_c00031{word-spacing:-18.120000px;}
.ws4_c00031{word-spacing:-15.813000px;}
.ws1_c00031{word-spacing:-15.060000px;}
.ws3_c00031{word-spacing:-14.160000px;}
.ws9_c00031{word-spacing:0.000000px;}
.ws0_c00031{word-spacing:4.200000px;}
._2a_c00031{margin-left:-30.450000px;}
._24_c00031{margin-left:-28.380000px;}
._26_c00031{margin-left:-27.165000px;}
._25_c00031{margin-left:-26.115000px;}
._23_c00031{margin-left:-24.465000px;}
._1c_c00031{margin-left:-23.340000px;}
._29_c00031{margin-left:-21.705000px;}
._15_c00031{margin-left:-20.100000px;}
._22_c00031{margin-left:-18.705000px;}
._28_c00031{margin-left:-16.305000px;}
._14_c00031{margin-left:-14.520000px;}
._17_c00031{margin-left:-12.600000px;}
._16_c00031{margin-left:-11.280000px;}
._3c_c00031{margin-left:-9.540000px;}
._f_c00031{margin-left:-8.520000px;}
._18_c00031{margin-left:-7.440000px;}
._5_c00031{margin-left:-6.360000px;}
._10_c00031{margin-left:-4.380000px;}
._7_c00031{margin-left:-3.360000px;}
._2b_c00031{margin-left:-2.280000px;}
._a_c00031{margin-left:-1.260000px;}
._13_c00031{width:1.140000px;}
._6_c00031{width:2.940000px;}
._d_c00031{width:4.620000px;}
._9_c00031{width:5.700000px;}
._b_c00031{width:7.560000px;}
._2_c00031{width:9.540000px;}
._8_c00031{width:10.740000px;}
._e_c00031{width:11.880000px;}
._12_c00031{width:13.260000px;}
._c_c00031{width:17.040000px;}
._1d_c00031{width:18.120000px;}
._1e_c00031{width:19.740000px;}
._4_c00031{width:21.300000px;}
._34_c00031{width:22.380000px;}
._0_c00031{width:23.580000px;}
._32_c00031{width:24.660000px;}
._2c_c00031{width:26.460000px;}
._21_c00031{width:27.780000px;}
._1_c00031{width:30.120000px;}
._2d_c00031{width:32.220000px;}
._1a_c00031{width:33.600000px;}
._35_c00031{width:35.640000px;}
._20_c00031{width:37.860000px;}
._37_c00031{width:40.380000px;}
._3a_c00031{width:48.240000px;}
._31_c00031{width:52.320000px;}
._3b_c00031{width:54.540000px;}
._27_c00031{width:59.220000px;}
._2f_c00031{width:60.300000px;}
._30_c00031{width:74.160000px;}
._3d_c00031{width:77.400000px;}
._2e_c00031{width:78.468000px;}
._11_c00031{width:83.880000px;}
._36_c00031{width:127.380000px;}
._38_c00031{width:154.320000px;}
._1f_c00031{width:181.464000px;}
._1b_c00031{width:202.920000px;}
._3e_c00031{width:233.700000px;}
._33_c00031{width:299.820000px;}
._19_c00031{width:321.180000px;}
._39_c00031{width:421.320000px;}
._3_c00031{width:468.540000px;}
.fc2_c00031{color:transparent;}
.fc1_c00031{color:rgb(128,128,128);}
.fc0_c00031{color:rgb(0,0,0);}
.fs5_c00031{font-size:45.000000px;}
.fs4_c00031{font-size:48.000000px;}
.fs3_c00031{font-size:57.000000px;}
.fs0_c00031{font-size:60.000000px;}
.fs1_c00031{font-size:63.000000px;}
.fs2_c00031{font-size:105.000000px;}
.y0_c00031{bottom:0.000000px;}
.y54_c00031{bottom:3.105000px;}
.y53_c00031{bottom:7.228355px;}
.y36_c00031{bottom:29.235000px;}
.y52_c00031{bottom:42.735000px;}
.y35_c00031{bottom:46.185000px;}
.y51_c00031{bottom:60.735000px;}
.y34_c00031{bottom:64.335000px;}
.y50_c00031{bottom:80.235000px;}
.y33_c00031{bottom:82.335000px;}
.y4f_c00031{bottom:98.235000px;}
.y32_c00031{bottom:100.935000px;}
.y4e_c00031{bottom:116.685000px;}
.y31_c00031{bottom:119.385000px;}
.y4d_c00031{bottom:134.235000px;}
.y30_c00031{bottom:135.885000px;}
.y4c_c00031{bottom:153.435000px;}
.y2f_c00031{bottom:155.235000px;}
.y4b_c00031{bottom:170.985000px;}
.y2e_c00031{bottom:173.835000px;}
.y4a_c00031{bottom:189.285000px;}
.y2d_c00031{bottom:191.985000px;}
.y49_c00031{bottom:207.585000px;}
.y2c_c00031{bottom:210.135000px;}
.y48_c00031{bottom:226.035000px;}
.y2b_c00031{bottom:227.835000px;}
.y47_c00031{bottom:243.585000px;}
.y2a_c00031{bottom:245.685000px;}
.y46_c00031{bottom:261.585000px;}
.y29_c00031{bottom:264.135000px;}
.y45_c00031{bottom:278.985000px;}
.y28_c00031{bottom:281.685000px;}
.y44_c00031{bottom:296.685000px;}
.y27_c00031{bottom:299.685000px;}
.y43_c00031{bottom:314.685000px;}
.y26_c00031{bottom:318.135000px;}
.y42_c00031{bottom:333.135000px;}
.y25_c00031{bottom:335.835000px;}
.y41_c00031{bottom:351.585000px;}
.y24_c00031{bottom:353.385000px;}
.y40_c00031{bottom:369.135000px;}
.y23_c00031{bottom:371.535000px;}
.y3f_c00031{bottom:387.435000px;}
.y22_c00031{bottom:389.685000px;}
.y3e_c00031{bottom:404.535000px;}
.y21_c00031{bottom:406.935000px;}
.y3d_c00031{bottom:422.835000px;}
.y20_c00031{bottom:424.935000px;}
.y3c_c00031{bottom:440.985000px;}
.y1f_c00031{bottom:443.685000px;}
.y3b_c00031{bottom:459.285000px;}
.y1e_c00031{bottom:461.685000px;}
.y3a_c00031{bottom:477.585000px;}
.y1d_c00031{bottom:480.285000px;}
.y39_c00031{bottom:494.685000px;}
.y1c_c00031{bottom:498.135000px;}
.y38_c00031{bottom:513.285000px;}
.y1b_c00031{bottom:515.985000px;}
.y37_c00031{bottom:531.435000px;}
.y1a_c00031{bottom:534.135000px;}
.y19_c00031{bottom:551.085000px;}
.y18_c00031{bottom:568.635000px;}
.y17_c00031{bottom:586.935000px;}
.yc_c00031{bottom:603.135000px;}
.y16_c00031{bottom:606.735000px;}
.yb_c00031{bottom:621.885000px;}
.y15_c00031{bottom:624.735000px;}
.ya_c00031{bottom:639.585000px;}
.y14_c00031{bottom:642.585000px;}
.y9_c00031{bottom:658.035000px;}
.y13_c00031{bottom:661.035000px;}
.y8_c00031{bottom:676.335000px;}
.y12_c00031{bottom:677.235000px;}
.y7_c00031{bottom:694.185000px;}
.y11_c00031{bottom:696.885000px;}
.y6_c00031{bottom:710.985000px;}
.y10_c00031{bottom:713.835000px;}
.y5_c00031{bottom:730.635000px;}
.yf_c00031{bottom:733.635000px;}
.y4_c00031{bottom:748.935000px;}
.ye_c00031{bottom:751.485000px;}
.y3_c00031{bottom:767.385000px;}
.yd_c00031{bottom:770.385000px;}
.y2_c00031{bottom:786.735000px;}
.y1_c00031{bottom:804.885000px;}
.h7_c00031{height:13.200074px;}
.h8_c00031{height:43.804688px;}
.h6_c00031{height:59.736000px;}
.h2_c00031{height:62.880000px;}
.h3_c00031{height:64.020000px;}
.h4_c00031{height:66.024000px;}
.h5_c00031{height:110.040000px;}
.h1_c00031{height:834.750000px;}
.h0_c00031{height:834.825000px;}
.w2_c00031{width:104.875500px;}
.w0_c00031{width:554.025000px;}
.w1_c00031{width:554.250000px;}
.x0_c00031{left:0.000000px;}
.x3_c00031{left:38.550000px;}
.x2_c00031{left:39.600000px;}
.x5_c00031{left:41.250000px;}
.x19_c00031{left:43.200000px;}
.x1a_c00031{left:44.850000px;}
.x1b_c00031{left:46.500000px;}
.x16_c00031{left:49.500000px;}
.x4_c00031{left:56.400000px;}
.x18_c00031{left:58.950000px;}
.xa_c00031{left:71.550000px;}
.x17_c00031{left:87.000000px;}
.x1_c00031{left:153.300000px;}
.x1c_c00031{left:228.826767px;}
.x6_c00031{left:290.550000px;}
.x9_c00031{left:291.600000px;}
.xb_c00031{left:292.650000px;}
.x7_c00031{left:294.000000px;}
.xc_c00031{left:295.950000px;}
.xd_c00031{left:297.300000px;}
.x10_c00031{left:298.350000px;}
.xf_c00031{left:299.400000px;}
.x11_c00031{left:300.450000px;}
.x8_c00031{left:303.750000px;}
.xe_c00031{left:315.300000px;}
.x12_c00031{left:325.350000px;}
.x13_c00031{left:339.150000px;}
.x14_c00031{left:349.950000px;}
.x15_c00031{left:375.600000px;}
@media print{
.v0_c00031{vertical-align:0.000000pt;}
.lsd_c00031{letter-spacing:-8.000000pt;}
.lsb_c00031{letter-spacing:-2.666667pt;}
.ls9_c00031{letter-spacing:0.000000pt;}
.ls7_c00031{letter-spacing:1.813333pt;}
.lsa_c00031{letter-spacing:2.666667pt;}
.ls1_c00031{letter-spacing:3.946667pt;}
.ls8_c00031{letter-spacing:4.093333pt;}
.ls5_c00031{letter-spacing:4.266667pt;}
.ls6_c00031{letter-spacing:4.533333pt;}
.ls3_c00031{letter-spacing:6.400000pt;}
.ls4_c00031{letter-spacing:7.893333pt;}
.ls0_c00031{letter-spacing:9.066667pt;}
.ls2_c00031{letter-spacing:9.653333pt;}
.lsc_c00031{letter-spacing:10.666667pt;}
.ws6_c00031{word-spacing:-22.776000pt;}
.ws7_c00031{word-spacing:-21.120000pt;}
.ws2_c00031{word-spacing:-18.080000pt;}
.ws8_c00031{word-spacing:-18.040000pt;}
.ws5_c00031{word-spacing:-16.106667pt;}
.ws4_c00031{word-spacing:-14.056000pt;}
.ws1_c00031{word-spacing:-13.386667pt;}
.ws3_c00031{word-spacing:-12.586667pt;}
.ws9_c00031{word-spacing:0.000000pt;}
.ws0_c00031{word-spacing:3.733333pt;}
._2a_c00031{margin-left:-27.066667pt;}
._24_c00031{margin-left:-25.226667pt;}
._26_c00031{margin-left:-24.146667pt;}
._25_c00031{margin-left:-23.213333pt;}
._23_c00031{margin-left:-21.746667pt;}
._1c_c00031{margin-left:-20.746667pt;}
._29_c00031{margin-left:-19.293333pt;}
._15_c00031{margin-left:-17.866667pt;}
._22_c00031{margin-left:-16.626667pt;}
._28_c00031{margin-left:-14.493333pt;}
._14_c00031{margin-left:-12.906667pt;}
._17_c00031{margin-left:-11.200000pt;}
._16_c00031{margin-left:-10.026667pt;}
._3c_c00031{margin-left:-8.480000pt;}
._f_c00031{margin-left:-7.573333pt;}
._18_c00031{margin-left:-6.613333pt;}
._5_c00031{margin-left:-5.653333pt;}
._10_c00031{margin-left:-3.893333pt;}
._7_c00031{margin-left:-2.986667pt;}
._2b_c00031{margin-left:-2.026667pt;}
._a_c00031{margin-left:-1.120000pt;}
._13_c00031{width:1.013333pt;}
._6_c00031{width:2.613333pt;}
._d_c00031{width:4.106667pt;}
._9_c00031{width:5.066667pt;}
._b_c00031{width:6.720000pt;}
._2_c00031{width:8.480000pt;}
._8_c00031{width:9.546667pt;}
._e_c00031{width:10.560000pt;}
._12_c00031{width:11.786667pt;}
._c_c00031{width:15.146667pt;}
._1d_c00031{width:16.106667pt;}
._1e_c00031{width:17.546667pt;}
._4_c00031{width:18.933333pt;}
._34_c00031{width:19.893333pt;}
._0_c00031{width:20.960000pt;}
._32_c00031{width:21.920000pt;}
._2c_c00031{width:23.520000pt;}
._21_c00031{width:24.693333pt;}
._1_c00031{width:26.773333pt;}
._2d_c00031{width:28.640000pt;}
._1a_c00031{width:29.866667pt;}
._35_c00031{width:31.680000pt;}
._20_c00031{width:33.653333pt;}
._37_c00031{width:35.893333pt;}
._3a_c00031{width:42.880000pt;}
._31_c00031{width:46.506667pt;}
._3b_c00031{width:48.480000pt;}
._27_c00031{width:52.640000pt;}
._2f_c00031{width:53.600000pt;}
._30_c00031{width:65.920000pt;}
._3d_c00031{width:68.800000pt;}
._2e_c00031{width:69.749333pt;}
._11_c00031{width:74.560000pt;}
._36_c00031{width:113.226667pt;}
._38_c00031{width:137.173333pt;}
._1f_c00031{width:161.301333pt;}
._1b_c00031{width:180.373333pt;}
._3e_c00031{width:207.733333pt;}
._33_c00031{width:266.506667pt;}
._19_c00031{width:285.493333pt;}
._39_c00031{width:374.506667pt;}
._3_c00031{width:416.480000pt;}
.fs5_c00031{font-size:40.000000pt;}
.fs4_c00031{font-size:42.666667pt;}
.fs3_c00031{font-size:50.666667pt;}
.fs0_c00031{font-size:53.333333pt;}
.fs1_c00031{font-size:56.000000pt;}
.fs2_c00031{font-size:93.333333pt;}
.y0_c00031{bottom:0.000000pt;}
.y54_c00031{bottom:2.760000pt;}
.y53_c00031{bottom:6.425204pt;}
.y36_c00031{bottom:25.986667pt;}
.y52_c00031{bottom:37.986667pt;}
.y35_c00031{bottom:41.053333pt;}
.y51_c00031{bottom:53.986667pt;}
.y34_c00031{bottom:57.186667pt;}
.y50_c00031{bottom:71.320000pt;}
.y33_c00031{bottom:73.186667pt;}
.y4f_c00031{bottom:87.320000pt;}
.y32_c00031{bottom:89.720000pt;}
.y4e_c00031{bottom:103.720000pt;}
.y31_c00031{bottom:106.120000pt;}
.y4d_c00031{bottom:119.320000pt;}
.y30_c00031{bottom:120.786667pt;}
.y4c_c00031{bottom:136.386667pt;}
.y2f_c00031{bottom:137.986667pt;}
.y4b_c00031{bottom:151.986667pt;}
.y2e_c00031{bottom:154.520000pt;}
.y4a_c00031{bottom:168.253333pt;}
.y2d_c00031{bottom:170.653333pt;}
.y49_c00031{bottom:184.520000pt;}
.y2c_c00031{bottom:186.786667pt;}
.y48_c00031{bottom:200.920000pt;}
.y2b_c00031{bottom:202.520000pt;}
.y47_c00031{bottom:216.520000pt;}
.y2a_c00031{bottom:218.386667pt;}
.y46_c00031{bottom:232.520000pt;}
.y29_c00031{bottom:234.786667pt;}
.y45_c00031{bottom:247.986667pt;}
.y28_c00031{bottom:250.386667pt;}
.y44_c00031{bottom:263.720000pt;}
.y27_c00031{bottom:266.386667pt;}
.y43_c00031{bottom:279.720000pt;}
.y26_c00031{bottom:282.786667pt;}
.y42_c00031{bottom:296.120000pt;}
.y25_c00031{bottom:298.520000pt;}
.y41_c00031{bottom:312.520000pt;}
.y24_c00031{bottom:314.120000pt;}
.y40_c00031{bottom:328.120000pt;}
.y23_c00031{bottom:330.253333pt;}
.y3f_c00031{bottom:344.386667pt;}
.y22_c00031{bottom:346.386667pt;}
.y3e_c00031{bottom:359.586667pt;}
.y21_c00031{bottom:361.720000pt;}
.y3d_c00031{bottom:375.853333pt;}
.y20_c00031{bottom:377.720000pt;}
.y3c_c00031{bottom:391.986667pt;}
.y1f_c00031{bottom:394.386667pt;}
.y3b_c00031{bottom:408.253333pt;}
.y1e_c00031{bottom:410.386667pt;}
.y3a_c00031{bottom:424.520000pt;}
.y1d_c00031{bottom:426.920000pt;}
.y39_c00031{bottom:439.720000pt;}
.y1c_c00031{bottom:442.786667pt;}
.y38_c00031{bottom:456.253333pt;}
.y1b_c00031{bottom:458.653333pt;}
.y37_c00031{bottom:472.386667pt;}
.y1a_c00031{bottom:474.786667pt;}
.y19_c00031{bottom:489.853333pt;}
.y18_c00031{bottom:505.453333pt;}
.y17_c00031{bottom:521.720000pt;}
.yc_c00031{bottom:536.120000pt;}
.y16_c00031{bottom:539.320000pt;}
.yb_c00031{bottom:552.786667pt;}
.y15_c00031{bottom:555.320000pt;}
.ya_c00031{bottom:568.520000pt;}
.y14_c00031{bottom:571.186667pt;}
.y9_c00031{bottom:584.920000pt;}
.y13_c00031{bottom:587.586667pt;}
.y8_c00031{bottom:601.186667pt;}
.y12_c00031{bottom:601.986667pt;}
.y7_c00031{bottom:617.053333pt;}
.y11_c00031{bottom:619.453333pt;}
.y6_c00031{bottom:631.986667pt;}
.y10_c00031{bottom:634.520000pt;}
.y5_c00031{bottom:649.453333pt;}
.yf_c00031{bottom:652.120000pt;}
.y4_c00031{bottom:665.720000pt;}
.ye_c00031{bottom:667.986667pt;}
.y3_c00031{bottom:682.120000pt;}
.yd_c00031{bottom:684.786667pt;}
.y2_c00031{bottom:699.320000pt;}
.y1_c00031{bottom:715.453333pt;}
.h7_c00031{height:11.733399pt;}
.h8_c00031{height:38.937500pt;}
.h6_c00031{height:53.098667pt;}
.h2_c00031{height:55.893333pt;}
.h3_c00031{height:56.906667pt;}
.h4_c00031{height:58.688000pt;}
.h5_c00031{height:97.813333pt;}
.h1_c00031{height:742.000000pt;}
.h0_c00031{height:742.066667pt;}
.w2_c00031{width:93.222667pt;}
.w0_c00031{width:492.466667pt;}
.w1_c00031{width:492.666667pt;}
.x0_c00031{left:0.000000pt;}
.x3_c00031{left:34.266667pt;}
.x2_c00031{left:35.200000pt;}
.x5_c00031{left:36.666667pt;}
.x19_c00031{left:38.400000pt;}
.x1a_c00031{left:39.866667pt;}
.x1b_c00031{left:41.333333pt;}
.x16_c00031{left:44.000000pt;}
.x4_c00031{left:50.133333pt;}
.x18_c00031{left:52.400000pt;}
.xa_c00031{left:63.600000pt;}
.x17_c00031{left:77.333333pt;}
.x1_c00031{left:136.266667pt;}
.x1c_c00031{left:203.401571pt;}
.x6_c00031{left:258.266667pt;}
.x9_c00031{left:259.200000pt;}
.xb_c00031{left:260.133333pt;}
.x7_c00031{left:261.333333pt;}
.xc_c00031{left:263.066667pt;}
.xd_c00031{left:264.266667pt;}
.x10_c00031{left:265.200000pt;}
.xf_c00031{left:266.133333pt;}
.x11_c00031{left:267.066667pt;}
.x8_c00031{left:270.000000pt;}
.xe_c00031{left:280.266667pt;}
.x12_c00031{left:289.200000pt;}
.x13_c00031{left:301.466667pt;}
.x14_c00031{left:311.066667pt;}
.x15_c00031{left:333.866667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_0d8ccfc539e32c277d62679a.woff2')format("woff");}.ff1_c00032{font-family:ff1_c00032;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00032;src:url('chunks/assets/font_e94c099cb7ad893b3aab0fff.woff2')format("woff");}.ff2_c00032{font-family:ff2_c00032;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00032;src:url('chunks/assets/font_5d0085a945c90b5f8277d4bb.woff2')format("woff");}.ff3_c00032{font-family:ff3_c00032;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00032;src:url('chunks/assets/font_bdc04ad02caee8a888737972.woff2')format("woff");}.ff4_c00032{font-family:ff4_c00032;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00032;src:url('chunks/assets/font_8ca572a35967ef4630945d49.woff2')format("woff");}.ff5_c00032{font-family:ff5_c00032;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00032;src:url('chunks/assets/font_029709cc2e8e8a95088cdd57.woff2')format("woff");}.ff6_c00032{font-family:ff6_c00032;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00032;src:url('chunks/assets/font_beae44ab08d04f7c034bdf4a.woff2')format("woff");}.ff7_c00032{font-family:ff7_c00032;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00032;src:url('chunks/assets/font_4a3847fc9034a5d9df6fcea8.woff2')format("woff");}.ff8_c00032{font-family:ff8_c00032;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00032;src:url('chunks/assets/font_1a8829ba50c35ca1070d5c08.woff2')format("woff");}.ff9_c00032{font-family:ff9_c00032;line-height:1.012793;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00032;src:url('chunks/assets/font_08670196fd8554f65b8e3a30.woff2')format("woff");}.ffa_c00032{font-family:ffa_c00032;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00032;src:url('chunks/assets/font_a879a83bd64733b7a804bc59.woff2')format("woff");}.ffb_c00032{font-family:ffb_c00032;line-height:1.012793;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc_c00032;src:url('chunks/assets/font_02f52256b4936ca0b7c343b7.woff2')format("woff");}.ffc_c00032{font-family:ffc_c00032;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd_c00032;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ffd_c00032{font-family:ffd_c00032;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00032{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00032{vertical-align:0.000000px;}
.lsc_c00032{letter-spacing:-3.000000px;}
.lsa_c00032{letter-spacing:0.000000px;}
.ls5_c00032{letter-spacing:2.400000px;}
.lsb_c00032{letter-spacing:3.000000px;}
.ls2_c00032{letter-spacing:5.067000px;}
.ls9_c00032{letter-spacing:5.667000px;}
.ls4_c00032{letter-spacing:6.000000px;}
.ls7_c00032{letter-spacing:8.280000px;}
.ls6_c00032{letter-spacing:12.177000px;}
.ls0_c00032{letter-spacing:18.000000px;}
.ls3_c00032{letter-spacing:24.999000px;}
.ls1_c00032{letter-spacing:34.011000px;}
.ls8_c00032{letter-spacing:42.660000px;}
.sc__c00032{text-shadow:none;}
.sc0_c00032{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00032{-webkit-text-stroke:0px transparent;}
.sc0_c00032{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00032{word-spacing:-39.018000px;}
.ws4_c00032{word-spacing:-33.420000px;}
.ws0_c00032{word-spacing:-31.623000px;}
.ws8_c00032{word-spacing:-22.440000px;}
.ws2_c00032{word-spacing:-19.053000px;}
.ws3_c00032{word-spacing:-15.813000px;}
.ws1_c00032{word-spacing:-15.060000px;}
.wsa_c00032{word-spacing:-14.340000px;}
.ws5_c00032{word-spacing:-14.160000px;}
.ws9_c00032{word-spacing:-13.500000px;}
.wsb_c00032{word-spacing:-12.801000px;}
.ws7_c00032{word-spacing:-0.600000px;}
.wsc_c00032{word-spacing:0.000000px;}
._26_c00032{margin-left:-25.740000px;}
._20_c00032{margin-left:-18.516000px;}
._22_c00032{margin-left:-16.512000px;}
._25_c00032{margin-left:-13.794000px;}
._1f_c00032{margin-left:-12.480000px;}
._23_c00032{margin-left:-10.068000px;}
._1a_c00032{margin-left:-8.940000px;}
._1c_c00032{margin-left:-7.500000px;}
._c_c00032{margin-left:-6.240000px;}
._e_c00032{margin-left:-4.440000px;}
._d_c00032{margin-left:-3.180000px;}
._1d_c00032{margin-left:-2.160000px;}
._10_c00032{margin-left:-1.080000px;}
._9_c00032{width:1.560000px;}
._8_c00032{width:3.300000px;}
._f_c00032{width:4.500000px;}
._7_c00032{width:5.880000px;}
._6_c00032{width:7.800000px;}
._4_c00032{width:8.880000px;}
._27_c00032{width:9.960000px;}
._2_c00032{width:10.980000px;}
._1_c00032{width:12.060000px;}
._3_c00032{width:13.320000px;}
._18_c00032{width:14.943000px;}
._0_c00032{width:16.800000px;}
._13_c00032{width:17.820000px;}
._b_c00032{width:19.740000px;}
._2d_c00032{width:21.978000px;}
._17_c00032{width:23.052000px;}
._2b_c00032{width:24.342000px;}
._a_c00032{width:25.740000px;}
._14_c00032{width:27.060000px;}
._19_c00032{width:28.500000px;}
._2a_c00032{width:31.392000px;}
._5_c00032{width:33.060000px;}
._12_c00032{width:34.944000px;}
._16_c00032{width:39.531000px;}
._11_c00032{width:41.556000px;}
._21_c00032{width:44.460000px;}
._2f_c00032{width:47.340000px;}
._2e_c00032{width:54.750000px;}
._30_c00032{width:56.640000px;}
._28_c00032{width:65.400000px;}
._15_c00032{width:81.510000px;}
._29_c00032{width:98.394000px;}
._24_c00032{width:125.880000px;}
._1b_c00032{width:138.135000px;}
._2c_c00032{width:161.091000px;}
._1e_c00032{width:183.615000px;}
.fc2_c00032{color:transparent;}
.fc1_c00032{color:rgb(128,128,128);}
.fc0_c00032{color:rgb(0,0,0);}
.fs5_c00032{font-size:24.000000px;}
.fs9_c00032{font-size:48.000000px;}
.fs3_c00032{font-size:51.000000px;}
.fs6_c00032{font-size:54.000000px;}
.fs2_c00032{font-size:57.000000px;}
.fs0_c00032{font-size:60.000000px;}
.fs4_c00032{font-size:63.000000px;}
.fs7_c00032{font-size:66.000000px;}
.fs8_c00032{font-size:69.000000px;}
.fs1_c00032{font-size:72.000000px;}
.y0_c00032{bottom:0.000000px;}
.y52_c00032{bottom:3.105000px;}
.y51_c00032{bottom:7.228355px;}
.y50_c00032{bottom:40.035000px;}
.y29_c00032{bottom:58.935000px;}
.y4f_c00032{bottom:59.385000px;}
.y28_c00032{bottom:77.835000px;}
.y4e_c00032{bottom:77.985000px;}
.y27_c00032{bottom:96.135000px;}
.y4d_c00032{bottom:112.635000px;}
.y26_c00032{bottom:113.685000px;}
.y4c_c00032{bottom:130.935000px;}
.y25_c00032{bottom:131.535000px;}
.y4b_c00032{bottom:148.485000px;}
.y24_c00032{bottom:149.835000px;}
.y4a_c00032{bottom:166.935000px;}
.y23_c00032{bottom:167.985000px;}
.y49_c00032{bottom:184.935000px;}
.y22_c00032{bottom:185.235000px;}
.y48_c00032{bottom:203.085000px;}
.y21_c00032{bottom:204.135000px;}
.y47_c00032{bottom:221.685000px;}
.y20_c00032{bottom:221.985000px;}
.y46_c00032{bottom:238.935000px;}
.y1f_c00032{bottom:239.535000px;}
.y45_c00032{bottom:256.785000px;}
.y1e_c00032{bottom:257.385000px;}
.y44_c00032{bottom:274.635000px;}
.y1d_c00032{bottom:275.685000px;}
.y43_c00032{bottom:292.185000px;}
.y1c_c00032{bottom:293.835000px;}
.y42_c00032{bottom:310.185000px;}
.y1b_c00032{bottom:310.785000px;}
.y41_c00032{bottom:327.735000px;}
.y1a_c00032{bottom:329.085000px;}
.y40_c00032{bottom:345.135000px;}
.y19_c00032{bottom:346.935000px;}
.y3f_c00032{bottom:363.435000px;}
.y18_c00032{bottom:364.185000px;}
.y3e_c00032{bottom:380.385000px;}
.y17_c00032{bottom:381.735000px;}
.y16_c00032{bottom:400.185000px;}
.y3d_c00032{bottom:401.235000px;}
.y3c_c00032{bottom:416.685000px;}
.y15_c00032{bottom:418.035000px;}
.y3b_c00032{bottom:434.385000px;}
.y14_c00032{bottom:435.285000px;}
.y3a_c00032{bottom:452.235000px;}
.y13_c00032{bottom:453.285000px;}
.y39_c00032{bottom:469.785000px;}
.y12_c00032{bottom:470.835000px;}
.y11_c00032{bottom:488.385000px;}
.y38_c00032{bottom:505.785000px;}
.y10_c00032{bottom:505.935000px;}
.y37_c00032{bottom:523.485000px;}
.yf_c00032{bottom:524.385000px;}
.ye_c00032{bottom:541.935000px;}
.y36_c00032{bottom:542.385000px;}
.y35_c00032{bottom:559.485000px;}
.yd_c00032{bottom:559.785000px;}
.y34_c00032{bottom:577.035000px;}
.yc_c00032{bottom:577.485000px;}
.y33_c00032{bottom:595.035000px;}
.yb_c00032{bottom:595.335000px;}
.ya_c00032{bottom:613.185000px;}
.y32_c00032{bottom:631.035000px;}
.y9_c00032{bottom:631.335000px;}
.y8_c00032{bottom:648.585000px;}
.y31_c00032{bottom:649.935000px;}
.y7_c00032{bottom:666.135000px;}
.y30_c00032{bottom:666.435000px;}
.y6_c00032{bottom:683.985000px;}
.y2f_c00032{bottom:684.135000px;}
.y5_c00032{bottom:702.285000px;}
.y2e_c00032{bottom:720.135000px;}
.y4_c00032{bottom:737.085000px;}
.y2d_c00032{bottom:738.435000px;}
.y3_c00032{bottom:755.535000px;}
.y2c_c00032{bottom:756.285000px;}
.y2b_c00032{bottom:773.535000px;}
.y2_c00032{bottom:774.135000px;}
.y1_c00032{bottom:791.385000px;}
.y2a_c00032{bottom:791.685000px;}
.hb_c00032{height:13.200074px;}
.hc_c00032{height:43.804688px;}
.h8_c00032{height:53.448000px;}
.h9_c00032{height:59.690918px;}
.h2_c00032{height:62.880000px;}
.h6_c00032{height:64.020000px;}
.h4_c00032{height:66.024000px;}
.h5_c00032{height:68.292000px;}
.h7_c00032{height:70.422000px;}
.ha_c00032{height:73.623000px;}
.h3_c00032{height:75.456000px;}
.h0_c00032{height:836.175000px;}
.h1_c00032{height:836.250000px;}
.w2_c00032{width:104.875500px;}
.w0_c00032{width:569.700000px;}
.w1_c00032{width:570.000000px;}
.x0_c00032{left:0.000000px;}
.xc_c00032{left:19.350000px;}
.xb_c00032{left:21.300000px;}
.x8_c00032{left:22.500000px;}
.x7_c00032{left:23.550000px;}
.x3_c00032{left:24.750000px;}
.x2_c00032{left:26.700000px;}
.xa_c00032{left:32.100000px;}
.x5_c00032{left:42.900000px;}
.x6_c00032{left:53.700000px;}
.x9_c00032{left:70.800000px;}
.x4_c00032{left:108.600000px;}
.x1_c00032{left:132.000000px;}
.x1a_c00032{left:236.664230px;}
.x16_c00032{left:269.400000px;}
.x18_c00032{left:271.800000px;}
.x15_c00032{left:273.150000px;}
.x11_c00032{left:274.500000px;}
.x14_c00032{left:276.000000px;}
.xe_c00032{left:277.050000px;}
.x10_c00032{left:278.400000px;}
.xd_c00032{left:280.350000px;}
.x17_c00032{left:288.300000px;}
.xf_c00032{left:289.950000px;}
.x12_c00032{left:292.350000px;}
.x13_c00032{left:294.600000px;}
.x19_c00032{left:389.100000px;}
@media print{
.v0_c00032{vertical-align:0.000000pt;}
.lsc_c00032{letter-spacing:-2.666667pt;}
.lsa_c00032{letter-spacing:0.000000pt;}
.ls5_c00032{letter-spacing:2.133333pt;}
.lsb_c00032{letter-spacing:2.666667pt;}
.ls2_c00032{letter-spacing:4.504000pt;}
.ls9_c00032{letter-spacing:5.037333pt;}
.ls4_c00032{letter-spacing:5.333333pt;}
.ls7_c00032{letter-spacing:7.360000pt;}
.ls6_c00032{letter-spacing:10.824000pt;}
.ls0_c00032{letter-spacing:16.000000pt;}
.ls3_c00032{letter-spacing:22.221333pt;}
.ls1_c00032{letter-spacing:30.232000pt;}
.ls8_c00032{letter-spacing:37.920000pt;}
.ws6_c00032{word-spacing:-34.682667pt;}
.ws4_c00032{word-spacing:-29.706667pt;}
.ws0_c00032{word-spacing:-28.109333pt;}
.ws8_c00032{word-spacing:-19.946667pt;}
.ws2_c00032{word-spacing:-16.936000pt;}
.ws3_c00032{word-spacing:-14.056000pt;}
.ws1_c00032{word-spacing:-13.386667pt;}
.wsa_c00032{word-spacing:-12.746667pt;}
.ws5_c00032{word-spacing:-12.586667pt;}
.ws9_c00032{word-spacing:-12.000000pt;}
.wsb_c00032{word-spacing:-11.378667pt;}
.ws7_c00032{word-spacing:-0.533333pt;}
.wsc_c00032{word-spacing:0.000000pt;}
._26_c00032{margin-left:-22.880000pt;}
._20_c00032{margin-left:-16.458667pt;}
._22_c00032{margin-left:-14.677333pt;}
._25_c00032{margin-left:-12.261333pt;}
._1f_c00032{margin-left:-11.093333pt;}
._23_c00032{margin-left:-8.949333pt;}
._1a_c00032{margin-left:-7.946667pt;}
._1c_c00032{margin-left:-6.666667pt;}
._c_c00032{margin-left:-5.546667pt;}
._e_c00032{margin-left:-3.946667pt;}
._d_c00032{margin-left:-2.826667pt;}
._1d_c00032{margin-left:-1.920000pt;}
._10_c00032{margin-left:-0.960000pt;}
._9_c00032{width:1.386667pt;}
._8_c00032{width:2.933333pt;}
._f_c00032{width:4.000000pt;}
._7_c00032{width:5.226667pt;}
._6_c00032{width:6.933333pt;}
._4_c00032{width:7.893333pt;}
._27_c00032{width:8.853333pt;}
._2_c00032{width:9.760000pt;}
._1_c00032{width:10.720000pt;}
._3_c00032{width:11.840000pt;}
._18_c00032{width:13.282667pt;}
._0_c00032{width:14.933333pt;}
._13_c00032{width:15.840000pt;}
._b_c00032{width:17.546667pt;}
._2d_c00032{width:19.536000pt;}
._17_c00032{width:20.490667pt;}
._2b_c00032{width:21.637333pt;}
._a_c00032{width:22.880000pt;}
._14_c00032{width:24.053333pt;}
._19_c00032{width:25.333333pt;}
._2a_c00032{width:27.904000pt;}
._5_c00032{width:29.386667pt;}
._12_c00032{width:31.061333pt;}
._16_c00032{width:35.138667pt;}
._11_c00032{width:36.938667pt;}
._21_c00032{width:39.520000pt;}
._2f_c00032{width:42.080000pt;}
._2e_c00032{width:48.666667pt;}
._30_c00032{width:50.346667pt;}
._28_c00032{width:58.133333pt;}
._15_c00032{width:72.453333pt;}
._29_c00032{width:87.461333pt;}
._24_c00032{width:111.893333pt;}
._1b_c00032{width:122.786667pt;}
._2c_c00032{width:143.192000pt;}
._1e_c00032{width:163.213333pt;}
.fs5_c00032{font-size:21.333333pt;}
.fs9_c00032{font-size:42.666667pt;}
.fs3_c00032{font-size:45.333333pt;}
.fs6_c00032{font-size:48.000000pt;}
.fs2_c00032{font-size:50.666667pt;}
.fs0_c00032{font-size:53.333333pt;}
.fs4_c00032{font-size:56.000000pt;}
.fs7_c00032{font-size:58.666667pt;}
.fs8_c00032{font-size:61.333333pt;}
.fs1_c00032{font-size:64.000000pt;}
.y0_c00032{bottom:0.000000pt;}
.y52_c00032{bottom:2.760000pt;}
.y51_c00032{bottom:6.425204pt;}
.y50_c00032{bottom:35.586667pt;}
.y29_c00032{bottom:52.386667pt;}
.y4f_c00032{bottom:52.786667pt;}
.y28_c00032{bottom:69.186667pt;}
.y4e_c00032{bottom:69.320000pt;}
.y27_c00032{bottom:85.453333pt;}
.y4d_c00032{bottom:100.120000pt;}
.y26_c00032{bottom:101.053333pt;}
.y4c_c00032{bottom:116.386667pt;}
.y25_c00032{bottom:116.920000pt;}
.y4b_c00032{bottom:131.986667pt;}
.y24_c00032{bottom:133.186667pt;}
.y4a_c00032{bottom:148.386667pt;}
.y23_c00032{bottom:149.320000pt;}
.y49_c00032{bottom:164.386667pt;}
.y22_c00032{bottom:164.653333pt;}
.y48_c00032{bottom:180.520000pt;}
.y21_c00032{bottom:181.453333pt;}
.y47_c00032{bottom:197.053333pt;}
.y20_c00032{bottom:197.320000pt;}
.y46_c00032{bottom:212.386667pt;}
.y1f_c00032{bottom:212.920000pt;}
.y45_c00032{bottom:228.253333pt;}
.y1e_c00032{bottom:228.786667pt;}
.y44_c00032{bottom:244.120000pt;}
.y1d_c00032{bottom:245.053333pt;}
.y43_c00032{bottom:259.720000pt;}
.y1c_c00032{bottom:261.186667pt;}
.y42_c00032{bottom:275.720000pt;}
.y1b_c00032{bottom:276.253333pt;}
.y41_c00032{bottom:291.320000pt;}
.y1a_c00032{bottom:292.520000pt;}
.y40_c00032{bottom:306.786667pt;}
.y19_c00032{bottom:308.386667pt;}
.y3f_c00032{bottom:323.053333pt;}
.y18_c00032{bottom:323.720000pt;}
.y3e_c00032{bottom:338.120000pt;}
.y17_c00032{bottom:339.320000pt;}
.y16_c00032{bottom:355.720000pt;}
.y3d_c00032{bottom:356.653333pt;}
.y3c_c00032{bottom:370.386667pt;}
.y15_c00032{bottom:371.586667pt;}
.y3b_c00032{bottom:386.120000pt;}
.y14_c00032{bottom:386.920000pt;}
.y3a_c00032{bottom:401.986667pt;}
.y13_c00032{bottom:402.920000pt;}
.y39_c00032{bottom:417.586667pt;}
.y12_c00032{bottom:418.520000pt;}
.y11_c00032{bottom:434.120000pt;}
.y38_c00032{bottom:449.586667pt;}
.y10_c00032{bottom:449.720000pt;}
.y37_c00032{bottom:465.320000pt;}
.yf_c00032{bottom:466.120000pt;}
.ye_c00032{bottom:481.720000pt;}
.y36_c00032{bottom:482.120000pt;}
.y35_c00032{bottom:497.320000pt;}
.yd_c00032{bottom:497.586667pt;}
.y34_c00032{bottom:512.920000pt;}
.yc_c00032{bottom:513.320000pt;}
.y33_c00032{bottom:528.920000pt;}
.yb_c00032{bottom:529.186667pt;}
.ya_c00032{bottom:545.053333pt;}
.y32_c00032{bottom:560.920000pt;}
.y9_c00032{bottom:561.186667pt;}
.y8_c00032{bottom:576.520000pt;}
.y31_c00032{bottom:577.720000pt;}
.y7_c00032{bottom:592.120000pt;}
.y30_c00032{bottom:592.386667pt;}
.y6_c00032{bottom:607.986667pt;}
.y2f_c00032{bottom:608.120000pt;}
.y5_c00032{bottom:624.253333pt;}
.y2e_c00032{bottom:640.120000pt;}
.y4_c00032{bottom:655.186667pt;}
.y2d_c00032{bottom:656.386667pt;}
.y3_c00032{bottom:671.586667pt;}
.y2c_c00032{bottom:672.253333pt;}
.y2b_c00032{bottom:687.586667pt;}
.y2_c00032{bottom:688.120000pt;}
.y1_c00032{bottom:703.453333pt;}
.y2a_c00032{bottom:703.720000pt;}
.hb_c00032{height:11.733399pt;}
.hc_c00032{height:38.937500pt;}
.h8_c00032{height:47.509333pt;}
.h9_c00032{height:53.058594pt;}
.h2_c00032{height:55.893333pt;}
.h6_c00032{height:56.906667pt;}
.h4_c00032{height:58.688000pt;}
.h5_c00032{height:60.704000pt;}
.h7_c00032{height:62.597333pt;}
.ha_c00032{height:65.442667pt;}
.h3_c00032{height:67.072000pt;}
.h0_c00032{height:743.266667pt;}
.h1_c00032{height:743.333333pt;}
.w2_c00032{width:93.222667pt;}
.w0_c00032{width:506.400000pt;}
.w1_c00032{width:506.666667pt;}
.x0_c00032{left:0.000000pt;}
.xc_c00032{left:17.200000pt;}
.xb_c00032{left:18.933333pt;}
.x8_c00032{left:20.000000pt;}
.x7_c00032{left:20.933333pt;}
.x3_c00032{left:22.000000pt;}
.x2_c00032{left:23.733333pt;}
.xa_c00032{left:28.533333pt;}
.x5_c00032{left:38.133333pt;}
.x6_c00032{left:47.733333pt;}
.x9_c00032{left:62.933333pt;}
.x4_c00032{left:96.533333pt;}
.x1_c00032{left:117.333333pt;}
.x1a_c00032{left:210.368205pt;}
.x16_c00032{left:239.466667pt;}
.x18_c00032{left:241.600000pt;}
.x15_c00032{left:242.800000pt;}
.x11_c00032{left:244.000000pt;}
.x14_c00032{left:245.333333pt;}
.xe_c00032{left:246.266667pt;}
.x10_c00032{left:247.466667pt;}
.xd_c00032{left:249.200000pt;}
.x17_c00032{left:256.266667pt;}
.xf_c00032{left:257.733333pt;}
.x12_c00032{left:259.866667pt;}
.x13_c00032{left:261.866667pt;}
.x19_c00032{left:345.866667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e25cd1b2cd86f91f2acdf5b9.woff2')format("woff");}.ff1_c00033{font-family:ff1_c00033;line-height:1.437000;font-style:normal;font-weight:normal;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_63c7ad7d66888eb0438617df.woff2')format("woff");}.ff2_c00033{font-family:ff2_c00033;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00033;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff3_c00033{font-family:ff3_c00033;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00033;src:url('chunks/assets/font_7d8ff0c78846cc57c9b39dad.woff2')format("woff");}.ff4_c00033{font-family:ff4_c00033;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00033;src:url('chunks/assets/font_96caf39566f7e442fb5ff54a.woff2')format("woff");}.ff5_c00033{font-family:ff5_c00033;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00033;src:url('chunks/assets/font_e9fc8355abcc08c8f342bf14.woff2')format("woff");}.ff6_c00033{font-family:ff6_c00033;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00033;src:url('chunks/assets/font_cc2892d74ed85c1c04cc44b9.woff2')format("woff");}.ff7_c00033{font-family:ff7_c00033;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00033;src:url('chunks/assets/font_5d8a4eec2e87304e884e7c37.woff2')format("woff");}.ff8_c00033{font-family:ff8_c00033;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00033;src:url('chunks/assets/font_d5cf7177b48cd94cf452f7aa.woff2')format("woff");}.ff9_c00033{font-family:ff9_c00033;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00033;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ffa_c00033{font-family:ffa_c00033;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00033{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00033{vertical-align:-3.000000px;}
.v0_c00033{vertical-align:0.000000px;}
.ls6_c00033{letter-spacing:-9.000000px;}
.ls4_c00033{letter-spacing:0.000000px;}
.ls3_c00033{letter-spacing:0.405000px;}
.ls2_c00033{letter-spacing:1.140000px;}
.ls1_c00033{letter-spacing:2.400000px;}
.ls8_c00033{letter-spacing:9.000000px;}
.ls0_c00033{letter-spacing:9.900000px;}
.ls7_c00033{letter-spacing:15.000000px;}
.ls5_c00033{letter-spacing:48.000000px;}
.sc__c00033{text-shadow:none;}
.sc0_c00033{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00033{-webkit-text-stroke:0px transparent;}
.sc0_c00033{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00033{word-spacing:-63.060000px;}
.ws8_c00033{word-spacing:-27.240000px;}
.ws7_c00033{word-spacing:-21.291000px;}
.ws3_c00033{word-spacing:-20.295000px;}
.ws5_c00033{word-spacing:-15.060000px;}
.ws2_c00033{word-spacing:-14.160000px;}
.ws1_c00033{word-spacing:-12.291000px;}
.ws4_c00033{word-spacing:-0.120000px;}
.ws9_c00033{word-spacing:0.000000px;}
.ws6_c00033{word-spacing:2.100000px;}
._27_c00033{margin-left:-42.690000px;}
._29_c00033{margin-left:-19.425000px;}
._2a_c00033{margin-left:-18.060000px;}
._22_c00033{margin-left:-15.096000px;}
._31_c00033{margin-left:-13.431000px;}
._2f_c00033{margin-left:-11.202000px;}
._16_c00033{margin-left:-10.080000px;}
._24_c00033{margin-left:-8.229000px;}
._1a_c00033{margin-left:-7.200000px;}
._13_c00033{margin-left:-5.712000px;}
._d_c00033{margin-left:-3.720000px;}
._c_c00033{margin-left:-2.100000px;}
._11_c00033{margin-left:-1.092000px;}
._e_c00033{width:1.320000px;}
._10_c00033{width:2.340000px;}
._b_c00033{width:3.420000px;}
._6_c00033{width:5.160000px;}
._a_c00033{width:6.240000px;}
._4_c00033{width:7.980000px;}
._5_c00033{width:9.360000px;}
._8_c00033{width:10.560000px;}
._9_c00033{width:12.240000px;}
._12_c00033{width:13.860000px;}
._2_c00033{width:16.380000px;}
._0_c00033{width:17.520000px;}
._1_c00033{width:18.660000px;}
._1e_c00033{width:19.680000px;}
._f_c00033{width:21.060000px;}
._1b_c00033{width:23.745000px;}
._25_c00033{width:24.840000px;}
._19_c00033{width:26.040000px;}
._3_c00033{width:29.220000px;}
._18_c00033{width:30.720000px;}
._2e_c00033{width:31.740000px;}
._2b_c00033{width:33.720000px;}
._7_c00033{width:35.640000px;}
._1c_c00033{width:37.200000px;}
._26_c00033{width:51.360000px;}
._15_c00033{width:52.500000px;}
._1f_c00033{width:57.240000px;}
._30_c00033{width:60.363000px;}
._32_c00033{width:61.980000px;}
._14_c00033{width:64.740000px;}
._20_c00033{width:86.028000px;}
._2d_c00033{width:94.560000px;}
._28_c00033{width:109.095000px;}
._21_c00033{width:127.359000px;}
._1d_c00033{width:178.920000px;}
._23_c00033{width:183.012000px;}
._2c_c00033{width:193.800000px;}
._33_c00033{width:242.340000px;}
._17_c00033{width:320.520000px;}
.fc2_c00033{color:transparent;}
.fc1_c00033{color:rgb(128,128,128);}
.fc0_c00033{color:rgb(0,0,0);}
.fs3_c00033{font-size:45.000000px;}
.fs7_c00033{font-size:48.000000px;}
.fs2_c00033{font-size:51.000000px;}
.fs1_c00033{font-size:54.000000px;}
.fs6_c00033{font-size:57.000000px;}
.fs0_c00033{font-size:60.000000px;}
.fs4_c00033{font-size:63.000000px;}
.fs5_c00033{font-size:105.000000px;}
.y0_c00033{bottom:0.000000px;}
.y50_c00033{bottom:3.105000px;}
.y4f_c00033{bottom:7.228363px;}
.y4e_c00033{bottom:36.150000px;}
.y4d_c00033{bottom:54.750000px;}
.y29_c00033{bottom:55.800000px;}
.y4c_c00033{bottom:73.950000px;}
.y28_c00033{bottom:74.700000px;}
.y4b_c00033{bottom:91.800000px;}
.y27_c00033{bottom:92.550000px;}
.y4a_c00033{bottom:110.100000px;}
.y26_c00033{bottom:110.400000px;}
.y49_c00033{bottom:127.800000px;}
.y25_c00033{bottom:128.250000px;}
.y48_c00033{bottom:145.800000px;}
.y24_c00033{bottom:147.600000px;}
.y47_c00033{bottom:163.800000px;}
.y23_c00033{bottom:164.100000px;}
.y46_c00033{bottom:181.950000px;}
.y22_c00033{bottom:182.250000px;}
.y21_c00033{bottom:200.100000px;}
.y45_c00033{bottom:217.350000px;}
.y20_c00033{bottom:217.800000px;}
.y44_c00033{bottom:235.800000px;}
.y1f_c00033{bottom:235.950000px;}
.y1e_c00033{bottom:253.800000px;}
.y1d_c00033{bottom:271.650000px;}
.y43_c00033{bottom:271.800000px;}
.y1c_c00033{bottom:288.900000px;}
.y42_c00033{bottom:289.650000px;}
.y1b_c00033{bottom:307.200000px;}
.y1a_c00033{bottom:324.450000px;}
.y41_c00033{bottom:325.050000px;}
.y19_c00033{bottom:340.650000px;}
.y40_c00033{bottom:343.200000px;}
.y3f_c00033{bottom:360.300000px;}
.y18_c00033{bottom:361.800000px;}
.y3e_c00033{bottom:378.300000px;}
.y17_c00033{bottom:378.450000px;}
.y16_c00033{bottom:395.550000px;}
.y3d_c00033{bottom:396.300000px;}
.y15_c00033{bottom:413.850000px;}
.y3c_c00033{bottom:414.450000px;}
.y3b_c00033{bottom:432.450000px;}
.y14_c00033{bottom:448.950000px;}
.y3a_c00033{bottom:450.000000px;}
.y13_c00033{bottom:466.800000px;}
.y39_c00033{bottom:468.150000px;}
.y12_c00033{bottom:484.650000px;}
.y38_c00033{bottom:486.300000px;}
.y11_c00033{bottom:503.850000px;}
.y37_c00033{bottom:504.900000px;}
.y10_c00033{bottom:520.500000px;}
.y36_c00033{bottom:521.850000px;}
.yf_c00033{bottom:538.950000px;}
.y35_c00033{bottom:540.450000px;}
.ye_c00033{bottom:556.950000px;}
.y34_c00033{bottom:558.300000px;}
.yd_c00033{bottom:574.800000px;}
.y33_c00033{bottom:576.750000px;}
.yc_c00033{bottom:592.950000px;}
.y32_c00033{bottom:594.300000px;}
.yb_c00033{bottom:610.950000px;}
.y31_c00033{bottom:612.600000px;}
.ya_c00033{bottom:629.400000px;}
.y30_c00033{bottom:630.150000px;}
.y9_c00033{bottom:647.100000px;}
.y2f_c00033{bottom:648.750000px;}
.y8_c00033{bottom:664.950000px;}
.y2e_c00033{bottom:666.900000px;}
.y7_c00033{bottom:683.400000px;}
.y2d_c00033{bottom:684.750000px;}
.y6_c00033{bottom:701.100000px;}
.y2c_c00033{bottom:703.350000px;}
.y5_c00033{bottom:719.850000px;}
.y2b_c00033{bottom:721.200000px;}
.y4_c00033{bottom:738.750000px;}
.y2a_c00033{bottom:739.500000px;}
.y3_c00033{bottom:757.350000px;}
.y2_c00033{bottom:774.900000px;}
.y1_c00033{bottom:793.800000px;}
.h9_c00033{height:13.200074px;}
.ha_c00033{height:43.804688px;}
.h4_c00033{height:56.592000px;}
.h6_c00033{height:59.690918px;}
.h2_c00033{height:62.880000px;}
.h8_c00033{height:64.020000px;}
.h3_c00033{height:64.571777px;}
.h5_c00033{height:66.024000px;}
.h7_c00033{height:110.040000px;}
.h1_c00033{height:842.250000px;}
.h0_c00033{height:842.400000px;}
.w2_c00033{width:104.875500px;}
.w1_c00033{width:559.500000px;}
.w0_c00033{width:559.725000px;}
.x0_c00033{left:0.000000px;}
.x7_c00033{left:52.350000px;}
.x6_c00033{left:53.400000px;}
.x4_c00033{left:54.750000px;}
.x3_c00033{left:56.100000px;}
.x2_c00033{left:58.500000px;}
.x5_c00033{left:69.900000px;}
.xa_c00033{left:71.550000px;}
.xb_c00033{left:73.950000px;}
.x8_c00033{left:129.900000px;}
.xc_c00033{left:133.950000px;}
.x9_c00033{left:139.050000px;}
.x1_c00033{left:171.450000px;}
.x16_c00033{left:231.676758px;}
.x13_c00033{left:301.500000px;}
.x11_c00033{left:302.850000px;}
.xe_c00033{left:304.200000px;}
.xd_c00033{left:305.850000px;}
.x14_c00033{left:318.900000px;}
.x12_c00033{left:320.250000px;}
.x10_c00033{left:322.650000px;}
.xf_c00033{left:324.300000px;}
.x15_c00033{left:506.850000px;}
@media print{
.v1_c00033{vertical-align:-2.666667pt;}
.v0_c00033{vertical-align:0.000000pt;}
.ls6_c00033{letter-spacing:-8.000000pt;}
.ls4_c00033{letter-spacing:0.000000pt;}
.ls3_c00033{letter-spacing:0.360000pt;}
.ls2_c00033{letter-spacing:1.013333pt;}
.ls1_c00033{letter-spacing:2.133333pt;}
.ls8_c00033{letter-spacing:8.000000pt;}
.ls0_c00033{letter-spacing:8.800000pt;}
.ls7_c00033{letter-spacing:13.333333pt;}
.ls5_c00033{letter-spacing:42.666667pt;}
.ws0_c00033{word-spacing:-56.053333pt;}
.ws8_c00033{word-spacing:-24.213333pt;}
.ws7_c00033{word-spacing:-18.925333pt;}
.ws3_c00033{word-spacing:-18.040000pt;}
.ws5_c00033{word-spacing:-13.386667pt;}
.ws2_c00033{word-spacing:-12.586667pt;}
.ws1_c00033{word-spacing:-10.925333pt;}
.ws4_c00033{word-spacing:-0.106667pt;}
.ws9_c00033{word-spacing:0.000000pt;}
.ws6_c00033{word-spacing:1.866667pt;}
._27_c00033{margin-left:-37.946667pt;}
._29_c00033{margin-left:-17.266667pt;}
._2a_c00033{margin-left:-16.053333pt;}
._22_c00033{margin-left:-13.418667pt;}
._31_c00033{margin-left:-11.938667pt;}
._2f_c00033{margin-left:-9.957333pt;}
._16_c00033{margin-left:-8.960000pt;}
._24_c00033{margin-left:-7.314667pt;}
._1a_c00033{margin-left:-6.400000pt;}
._13_c00033{margin-left:-5.077333pt;}
._d_c00033{margin-left:-3.306667pt;}
._c_c00033{margin-left:-1.866667pt;}
._11_c00033{margin-left:-0.970667pt;}
._e_c00033{width:1.173333pt;}
._10_c00033{width:2.080000pt;}
._b_c00033{width:3.040000pt;}
._6_c00033{width:4.586667pt;}
._a_c00033{width:5.546667pt;}
._4_c00033{width:7.093333pt;}
._5_c00033{width:8.320000pt;}
._8_c00033{width:9.386667pt;}
._9_c00033{width:10.880000pt;}
._12_c00033{width:12.320000pt;}
._2_c00033{width:14.560000pt;}
._0_c00033{width:15.573333pt;}
._1_c00033{width:16.586667pt;}
._1e_c00033{width:17.493333pt;}
._f_c00033{width:18.720000pt;}
._1b_c00033{width:21.106667pt;}
._25_c00033{width:22.080000pt;}
._19_c00033{width:23.146667pt;}
._3_c00033{width:25.973333pt;}
._18_c00033{width:27.306667pt;}
._2e_c00033{width:28.213333pt;}
._2b_c00033{width:29.973333pt;}
._7_c00033{width:31.680000pt;}
._1c_c00033{width:33.066667pt;}
._26_c00033{width:45.653333pt;}
._15_c00033{width:46.666667pt;}
._1f_c00033{width:50.880000pt;}
._30_c00033{width:53.656000pt;}
._32_c00033{width:55.093333pt;}
._14_c00033{width:57.546667pt;}
._20_c00033{width:76.469333pt;}
._2d_c00033{width:84.053333pt;}
._28_c00033{width:96.973333pt;}
._21_c00033{width:113.208000pt;}
._1d_c00033{width:159.040000pt;}
._23_c00033{width:162.677333pt;}
._2c_c00033{width:172.266667pt;}
._33_c00033{width:215.413333pt;}
._17_c00033{width:284.906667pt;}
.fs3_c00033{font-size:40.000000pt;}
.fs7_c00033{font-size:42.666667pt;}
.fs2_c00033{font-size:45.333333pt;}
.fs1_c00033{font-size:48.000000pt;}
.fs6_c00033{font-size:50.666667pt;}
.fs0_c00033{font-size:53.333333pt;}
.fs4_c00033{font-size:56.000000pt;}
.fs5_c00033{font-size:93.333333pt;}
.y0_c00033{bottom:0.000000pt;}
.y50_c00033{bottom:2.760000pt;}
.y4f_c00033{bottom:6.425212pt;}
.y4e_c00033{bottom:32.133333pt;}
.y4d_c00033{bottom:48.666667pt;}
.y29_c00033{bottom:49.600000pt;}
.y4c_c00033{bottom:65.733333pt;}
.y28_c00033{bottom:66.400000pt;}
.y4b_c00033{bottom:81.600000pt;}
.y27_c00033{bottom:82.266667pt;}
.y4a_c00033{bottom:97.866667pt;}
.y26_c00033{bottom:98.133333pt;}
.y49_c00033{bottom:113.600000pt;}
.y25_c00033{bottom:114.000000pt;}
.y48_c00033{bottom:129.600000pt;}
.y24_c00033{bottom:131.200000pt;}
.y47_c00033{bottom:145.600000pt;}
.y23_c00033{bottom:145.866667pt;}
.y46_c00033{bottom:161.733333pt;}
.y22_c00033{bottom:162.000000pt;}
.y21_c00033{bottom:177.866667pt;}
.y45_c00033{bottom:193.200000pt;}
.y20_c00033{bottom:193.600000pt;}
.y44_c00033{bottom:209.600000pt;}
.y1f_c00033{bottom:209.733333pt;}
.y1e_c00033{bottom:225.600000pt;}
.y1d_c00033{bottom:241.466667pt;}
.y43_c00033{bottom:241.600000pt;}
.y1c_c00033{bottom:256.800000pt;}
.y42_c00033{bottom:257.466667pt;}
.y1b_c00033{bottom:273.066667pt;}
.y1a_c00033{bottom:288.400000pt;}
.y41_c00033{bottom:288.933333pt;}
.y19_c00033{bottom:302.800000pt;}
.y40_c00033{bottom:305.066667pt;}
.y3f_c00033{bottom:320.266667pt;}
.y18_c00033{bottom:321.600000pt;}
.y3e_c00033{bottom:336.266667pt;}
.y17_c00033{bottom:336.400000pt;}
.y16_c00033{bottom:351.600000pt;}
.y3d_c00033{bottom:352.266667pt;}
.y15_c00033{bottom:367.866667pt;}
.y3c_c00033{bottom:368.400000pt;}
.y3b_c00033{bottom:384.400000pt;}
.y14_c00033{bottom:399.066667pt;}
.y3a_c00033{bottom:400.000000pt;}
.y13_c00033{bottom:414.933333pt;}
.y39_c00033{bottom:416.133333pt;}
.y12_c00033{bottom:430.800000pt;}
.y38_c00033{bottom:432.266667pt;}
.y11_c00033{bottom:447.866667pt;}
.y37_c00033{bottom:448.800000pt;}
.y10_c00033{bottom:462.666667pt;}
.y36_c00033{bottom:463.866667pt;}
.yf_c00033{bottom:479.066667pt;}
.y35_c00033{bottom:480.400000pt;}
.ye_c00033{bottom:495.066667pt;}
.y34_c00033{bottom:496.266667pt;}
.yd_c00033{bottom:510.933333pt;}
.y33_c00033{bottom:512.666667pt;}
.yc_c00033{bottom:527.066667pt;}
.y32_c00033{bottom:528.266667pt;}
.yb_c00033{bottom:543.066667pt;}
.y31_c00033{bottom:544.533333pt;}
.ya_c00033{bottom:559.466667pt;}
.y30_c00033{bottom:560.133333pt;}
.y9_c00033{bottom:575.200000pt;}
.y2f_c00033{bottom:576.666667pt;}
.y8_c00033{bottom:591.066667pt;}
.y2e_c00033{bottom:592.800000pt;}
.y7_c00033{bottom:607.466667pt;}
.y2d_c00033{bottom:608.666667pt;}
.y6_c00033{bottom:623.200000pt;}
.y2c_c00033{bottom:625.200000pt;}
.y5_c00033{bottom:639.866667pt;}
.y2b_c00033{bottom:641.066667pt;}
.y4_c00033{bottom:656.666667pt;}
.y2a_c00033{bottom:657.333333pt;}
.y3_c00033{bottom:673.200000pt;}
.y2_c00033{bottom:688.800000pt;}
.y1_c00033{bottom:705.600000pt;}
.h9_c00033{height:11.733399pt;}
.ha_c00033{height:38.937500pt;}
.h4_c00033{height:50.304000pt;}
.h6_c00033{height:53.058594pt;}
.h2_c00033{height:55.893333pt;}
.h8_c00033{height:56.906667pt;}
.h3_c00033{height:57.397135pt;}
.h5_c00033{height:58.688000pt;}
.h7_c00033{height:97.813333pt;}
.h1_c00033{height:748.666667pt;}
.h0_c00033{height:748.800000pt;}
.w2_c00033{width:93.222667pt;}
.w1_c00033{width:497.333333pt;}
.w0_c00033{width:497.533333pt;}
.x0_c00033{left:0.000000pt;}
.x7_c00033{left:46.533333pt;}
.x6_c00033{left:47.466667pt;}
.x4_c00033{left:48.666667pt;}
.x3_c00033{left:49.866667pt;}
.x2_c00033{left:52.000000pt;}
.x5_c00033{left:62.133333pt;}
.xa_c00033{left:63.600000pt;}
.xb_c00033{left:65.733333pt;}
.x8_c00033{left:115.466667pt;}
.xc_c00033{left:119.066667pt;}
.x9_c00033{left:123.600000pt;}
.x1_c00033{left:152.400000pt;}
.x16_c00033{left:205.934896pt;}
.x13_c00033{left:268.000000pt;}
.x11_c00033{left:269.200000pt;}
.xe_c00033{left:270.400000pt;}
.xd_c00033{left:271.866667pt;}
.x14_c00033{left:283.466667pt;}
.x12_c00033{left:284.666667pt;}
.x10_c00033{left:286.800000pt;}
.xf_c00033{left:288.266667pt;}
.x15_c00033{left:450.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b5372714e3344b51de13358f.woff2')format("woff");}.ff1_c00034{font-family:ff1_c00034;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00034;src:url('chunks/assets/font_4aadcdb63bc9b6421fd19ad1.woff2')format("woff");}.ff2_c00034{font-family:ff2_c00034;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00034;src:url('chunks/assets/font_86fed35b509b72065bd1f08f.woff2')format("woff");}.ff3_c00034{font-family:ff3_c00034;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00034;src:url('chunks/assets/font_d2264ed2f7b91a1f6869f289.woff2')format("woff");}.ff4_c00034{font-family:ff4_c00034;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00034;src:url('chunks/assets/font_a59b6b25d7c8d6e3b952f509.woff2')format("woff");}.ff5_c00034{font-family:ff5_c00034;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00034;src:url('chunks/assets/font_496cfed2b7b611e836dc4547.woff2')format("woff");}.ff6_c00034{font-family:ff6_c00034;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00034;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff7_c00034{font-family:ff7_c00034;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00034{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00034{vertical-align:0.000000px;}
.ls5_c00034{letter-spacing:-6.000000px;}
.ls2_c00034{letter-spacing:0.000000px;}
.ls1_c00034{letter-spacing:1.260000px;}
.ls3_c00034{letter-spacing:3.000000px;}
.ls0_c00034{letter-spacing:6.600000px;}
.ls4_c00034{letter-spacing:15.000000px;}
.sc__c00034{text-shadow:none;}
.sc0_c00034{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00034{-webkit-text-stroke:0px transparent;}
.sc0_c00034{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00034{word-spacing:-30.060000px;}
.ws3_c00034{word-spacing:-15.060000px;}
.ws0_c00034{word-spacing:-14.160000px;}
.ws4_c00034{word-spacing:-12.906000px;}
.ws1_c00034{word-spacing:-1.500000px;}
.ws6_c00034{word-spacing:0.000000px;}
.ws5_c00034{word-spacing:5.883000px;}
._27_c00034{margin-left:-29.025000px;}
._19_c00034{margin-left:-15.600000px;}
._25_c00034{margin-left:-14.460000px;}
._1c_c00034{margin-left:-11.760000px;}
._1a_c00034{margin-left:-9.960000px;}
._16_c00034{margin-left:-8.700000px;}
._1b_c00034{margin-left:-7.071000px;}
._17_c00034{margin-left:-5.520000px;}
._e_c00034{margin-left:-4.017000px;}
._b_c00034{margin-left:-3.000000px;}
._8_c00034{margin-left:-1.440000px;}
._a_c00034{width:1.440000px;}
._6_c00034{width:2.520000px;}
._7_c00034{width:3.960000px;}
._5_c00034{width:5.040000px;}
._c_c00034{width:6.300000px;}
._9_c00034{width:7.500000px;}
._10_c00034{width:8.577000px;}
._3_c00034{width:9.600000px;}
._f_c00034{width:10.800000px;}
._2_c00034{width:12.120000px;}
._1_c00034{width:13.560000px;}
._15_c00034{width:16.683000px;}
._0_c00034{width:17.700000px;}
._1e_c00034{width:18.780000px;}
._22_c00034{width:21.000000px;}
._1d_c00034{width:22.803000px;}
._11_c00034{width:24.900000px;}
._4_c00034{width:26.940000px;}
._12_c00034{width:31.080000px;}
._14_c00034{width:32.580000px;}
._18_c00034{width:34.320000px;}
._1f_c00034{width:36.840000px;}
._21_c00034{width:39.060000px;}
._d_c00034{width:42.906000px;}
._13_c00034{width:44.337000px;}
._20_c00034{width:59.520000px;}
._23_c00034{width:63.384000px;}
._26_c00034{width:140.775000px;}
._24_c00034{width:414.540000px;}
.fc2_c00034{color:transparent;}
.fc1_c00034{color:rgb(128,128,128);}
.fc0_c00034{color:rgb(0,0,0);}
.fs6_c00034{font-size:48.000000px;}
.fs3_c00034{font-size:51.000000px;}
.fs1_c00034{font-size:54.000000px;}
.fs2_c00034{font-size:57.000000px;}
.fs0_c00034{font-size:60.000000px;}
.fs4_c00034{font-size:105.000000px;}
.fs5_c00034{font-size:117.000000px;}
.y0_c00034{bottom:0.000000px;}
.y53_c00034{bottom:3.105000px;}
.y52_c00034{bottom:7.228355px;}
.y51_c00034{bottom:43.185000px;}
.y50_c00034{bottom:61.635000px;}
.y29_c00034{bottom:79.635000px;}
.y4f_c00034{bottom:79.935000px;}
.y4e_c00034{bottom:97.185000px;}
.y28_c00034{bottom:98.085000px;}
.y4d_c00034{bottom:115.035000px;}
.y27_c00034{bottom:115.785000px;}
.y4c_c00034{bottom:133.185000px;}
.y26_c00034{bottom:133.935000px;}
.y4b_c00034{bottom:150.885000px;}
.y25_c00034{bottom:152.085000px;}
.y4a_c00034{bottom:168.435000px;}
.y24_c00034{bottom:170.085000px;}
.y49_c00034{bottom:186.585000px;}
.y23_c00034{bottom:187.635000px;}
.y48_c00034{bottom:204.435000px;}
.y22_c00034{bottom:204.885000px;}
.y47_c00034{bottom:222.435000px;}
.y21_c00034{bottom:223.635000px;}
.y46_c00034{bottom:240.285000px;}
.y20_c00034{bottom:241.185000px;}
.y45_c00034{bottom:258.135000px;}
.y1f_c00034{bottom:259.785000px;}
.y44_c00034{bottom:276.285000px;}
.y1e_c00034{bottom:277.635000px;}
.y43_c00034{bottom:293.985000px;}
.y1d_c00034{bottom:295.185000px;}
.y42_c00034{bottom:312.135000px;}
.y1c_c00034{bottom:312.735000px;}
.y41_c00034{bottom:329.685000px;}
.y1b_c00034{bottom:330.735000px;}
.y40_c00034{bottom:347.985000px;}
.y1a_c00034{bottom:348.885000px;}
.y3f_c00034{bottom:365.535000px;}
.y19_c00034{bottom:366.435000px;}
.y3e_c00034{bottom:383.085000px;}
.y18_c00034{bottom:383.385000px;}
.y3d_c00034{bottom:401.235000px;}
.y17_c00034{bottom:401.835000px;}
.y16_c00034{bottom:419.385000px;}
.y15_c00034{bottom:437.085000px;}
.y14_c00034{bottom:454.635000px;}
.y13_c00034{bottom:471.735000px;}
.y3c_c00034{bottom:472.485000px;}
.y12_c00034{bottom:489.285000px;}
.y3b_c00034{bottom:490.935000px;}
.y11_c00034{bottom:507.585000px;}
.y3a_c00034{bottom:508.185000px;}
.y10_c00034{bottom:525.435000px;}
.y39_c00034{bottom:526.185000px;}
.yf_c00034{bottom:542.985000px;}
.y38_c00034{bottom:543.735000px;}
.ye_c00034{bottom:561.135000px;}
.y37_c00034{bottom:561.585000px;}
.yd_c00034{bottom:578.835000px;}
.y36_c00034{bottom:579.735000px;}
.yc_c00034{bottom:596.685000px;}
.y35_c00034{bottom:597.585000px;}
.yb_c00034{bottom:614.235000px;}
.y34_c00034{bottom:615.885000px;}
.ya_c00034{bottom:632.085000px;}
.y33_c00034{bottom:634.035000px;}
.y9_c00034{bottom:650.235000px;}
.y32_c00034{bottom:652.185000px;}
.y8_c00034{bottom:668.535000px;}
.y31_c00034{bottom:670.185000px;}
.y7_c00034{bottom:686.085000px;}
.y30_c00034{bottom:688.185000px;}
.y6_c00034{bottom:703.635000px;}
.y2f_c00034{bottom:706.635000px;}
.y5_c00034{bottom:721.485000px;}
.y2e_c00034{bottom:724.485000px;}
.y4_c00034{bottom:739.035000px;}
.y2d_c00034{bottom:741.735000px;}
.y3_c00034{bottom:757.635000px;}
.y2c_c00034{bottom:759.285000px;}
.y2_c00034{bottom:775.185000px;}
.y2b_c00034{bottom:778.635000px;}
.y1_c00034{bottom:793.335000px;}
.y2a_c00034{bottom:795.435000px;}
.h7_c00034{height:13.200074px;}
.h8_c00034{height:43.804688px;}
.h4_c00034{height:53.448000px;}
.h3_c00034{height:59.736000px;}
.h2_c00034{height:62.880000px;}
.h5_c00034{height:64.020000px;}
.h6_c00034{height:120.257563px;}
.h0_c00034{height:836.175000px;}
.h1_c00034{height:836.250000px;}
.w2_c00034{width:104.875500px;}
.w0_c00034{width:569.700000px;}
.w1_c00034{width:570.000000px;}
.x0_c00034{left:0.000000px;}
.x6_c00034{left:27.300000px;}
.x2_c00034{left:28.350000px;}
.x4_c00034{left:29.400000px;}
.x5_c00034{left:41.100000px;}
.x3_c00034{left:42.900000px;}
.x1_c00034{left:136.950000px;}
.x15_c00034{left:236.664230px;}
.xf_c00034{left:275.850000px;}
.x12_c00034{left:277.050000px;}
.xd_c00034{left:278.100000px;}
.xe_c00034{left:279.150000px;}
.x8_c00034{left:282.750000px;}
.x7_c00034{left:285.150000px;}
.xa_c00034{left:288.600000px;}
.x13_c00034{left:289.650000px;}
.x10_c00034{left:291.900000px;}
.xb_c00034{left:298.050000px;}
.x11_c00034{left:305.400000px;}
.xc_c00034{left:322.950000px;}
.x9_c00034{left:365.850000px;}
.x14_c00034{left:385.500000px;}
@media print{
.v0_c00034{vertical-align:0.000000pt;}
.ls5_c00034{letter-spacing:-5.333333pt;}
.ls2_c00034{letter-spacing:0.000000pt;}
.ls1_c00034{letter-spacing:1.120000pt;}
.ls3_c00034{letter-spacing:2.666667pt;}
.ls0_c00034{letter-spacing:5.866667pt;}
.ls4_c00034{letter-spacing:13.333333pt;}
.ws2_c00034{word-spacing:-26.720000pt;}
.ws3_c00034{word-spacing:-13.386667pt;}
.ws0_c00034{word-spacing:-12.586667pt;}
.ws4_c00034{word-spacing:-11.472000pt;}
.ws1_c00034{word-spacing:-1.333333pt;}
.ws6_c00034{word-spacing:0.000000pt;}
.ws5_c00034{word-spacing:5.229333pt;}
._27_c00034{margin-left:-25.800000pt;}
._19_c00034{margin-left:-13.866667pt;}
._25_c00034{margin-left:-12.853333pt;}
._1c_c00034{margin-left:-10.453333pt;}
._1a_c00034{margin-left:-8.853333pt;}
._16_c00034{margin-left:-7.733333pt;}
._1b_c00034{margin-left:-6.285333pt;}
._17_c00034{margin-left:-4.906667pt;}
._e_c00034{margin-left:-3.570667pt;}
._b_c00034{margin-left:-2.666667pt;}
._8_c00034{margin-left:-1.280000pt;}
._a_c00034{width:1.280000pt;}
._6_c00034{width:2.240000pt;}
._7_c00034{width:3.520000pt;}
._5_c00034{width:4.480000pt;}
._c_c00034{width:5.600000pt;}
._9_c00034{width:6.666667pt;}
._10_c00034{width:7.624000pt;}
._3_c00034{width:8.533333pt;}
._f_c00034{width:9.600000pt;}
._2_c00034{width:10.773333pt;}
._1_c00034{width:12.053333pt;}
._15_c00034{width:14.829333pt;}
._0_c00034{width:15.733333pt;}
._1e_c00034{width:16.693333pt;}
._22_c00034{width:18.666667pt;}
._1d_c00034{width:20.269333pt;}
._11_c00034{width:22.133333pt;}
._4_c00034{width:23.946667pt;}
._12_c00034{width:27.626667pt;}
._14_c00034{width:28.960000pt;}
._18_c00034{width:30.506667pt;}
._1f_c00034{width:32.746667pt;}
._21_c00034{width:34.720000pt;}
._d_c00034{width:38.138667pt;}
._13_c00034{width:39.410667pt;}
._20_c00034{width:52.906667pt;}
._23_c00034{width:56.341333pt;}
._26_c00034{width:125.133333pt;}
._24_c00034{width:368.480000pt;}
.fs6_c00034{font-size:42.666667pt;}
.fs3_c00034{font-size:45.333333pt;}
.fs1_c00034{font-size:48.000000pt;}
.fs2_c00034{font-size:50.666667pt;}
.fs0_c00034{font-size:53.333333pt;}
.fs4_c00034{font-size:93.333333pt;}
.fs5_c00034{font-size:104.000000pt;}
.y0_c00034{bottom:0.000000pt;}
.y53_c00034{bottom:2.760000pt;}
.y52_c00034{bottom:6.425204pt;}
.y51_c00034{bottom:38.386667pt;}
.y50_c00034{bottom:54.786667pt;}
.y29_c00034{bottom:70.786667pt;}
.y4f_c00034{bottom:71.053333pt;}
.y4e_c00034{bottom:86.386667pt;}
.y28_c00034{bottom:87.186667pt;}
.y4d_c00034{bottom:102.253333pt;}
.y27_c00034{bottom:102.920000pt;}
.y4c_c00034{bottom:118.386667pt;}
.y26_c00034{bottom:119.053333pt;}
.y4b_c00034{bottom:134.120000pt;}
.y25_c00034{bottom:135.186667pt;}
.y4a_c00034{bottom:149.720000pt;}
.y24_c00034{bottom:151.186667pt;}
.y49_c00034{bottom:165.853333pt;}
.y23_c00034{bottom:166.786667pt;}
.y48_c00034{bottom:181.720000pt;}
.y22_c00034{bottom:182.120000pt;}
.y47_c00034{bottom:197.720000pt;}
.y21_c00034{bottom:198.786667pt;}
.y46_c00034{bottom:213.586667pt;}
.y20_c00034{bottom:214.386667pt;}
.y45_c00034{bottom:229.453333pt;}
.y1f_c00034{bottom:230.920000pt;}
.y44_c00034{bottom:245.586667pt;}
.y1e_c00034{bottom:246.786667pt;}
.y43_c00034{bottom:261.320000pt;}
.y1d_c00034{bottom:262.386667pt;}
.y42_c00034{bottom:277.453333pt;}
.y1c_c00034{bottom:277.986667pt;}
.y41_c00034{bottom:293.053333pt;}
.y1b_c00034{bottom:293.986667pt;}
.y40_c00034{bottom:309.320000pt;}
.y1a_c00034{bottom:310.120000pt;}
.y3f_c00034{bottom:324.920000pt;}
.y19_c00034{bottom:325.720000pt;}
.y3e_c00034{bottom:340.520000pt;}
.y18_c00034{bottom:340.786667pt;}
.y3d_c00034{bottom:356.653333pt;}
.y17_c00034{bottom:357.186667pt;}
.y16_c00034{bottom:372.786667pt;}
.y15_c00034{bottom:388.520000pt;}
.y14_c00034{bottom:404.120000pt;}
.y13_c00034{bottom:419.320000pt;}
.y3c_c00034{bottom:419.986667pt;}
.y12_c00034{bottom:434.920000pt;}
.y3b_c00034{bottom:436.386667pt;}
.y11_c00034{bottom:451.186667pt;}
.y3a_c00034{bottom:451.720000pt;}
.y10_c00034{bottom:467.053333pt;}
.y39_c00034{bottom:467.720000pt;}
.yf_c00034{bottom:482.653333pt;}
.y38_c00034{bottom:483.320000pt;}
.ye_c00034{bottom:498.786667pt;}
.y37_c00034{bottom:499.186667pt;}
.yd_c00034{bottom:514.520000pt;}
.y36_c00034{bottom:515.320000pt;}
.yc_c00034{bottom:530.386667pt;}
.y35_c00034{bottom:531.186667pt;}
.yb_c00034{bottom:545.986667pt;}
.y34_c00034{bottom:547.453333pt;}
.ya_c00034{bottom:561.853333pt;}
.y33_c00034{bottom:563.586667pt;}
.y9_c00034{bottom:577.986667pt;}
.y32_c00034{bottom:579.720000pt;}
.y8_c00034{bottom:594.253333pt;}
.y31_c00034{bottom:595.720000pt;}
.y7_c00034{bottom:609.853333pt;}
.y30_c00034{bottom:611.720000pt;}
.y6_c00034{bottom:625.453333pt;}
.y2f_c00034{bottom:628.120000pt;}
.y5_c00034{bottom:641.320000pt;}
.y2e_c00034{bottom:643.986667pt;}
.y4_c00034{bottom:656.920000pt;}
.y2d_c00034{bottom:659.320000pt;}
.y3_c00034{bottom:673.453333pt;}
.y2c_c00034{bottom:674.920000pt;}
.y2_c00034{bottom:689.053333pt;}
.y2b_c00034{bottom:692.120000pt;}
.y1_c00034{bottom:705.186667pt;}
.y2a_c00034{bottom:707.053333pt;}
.h7_c00034{height:11.733399pt;}
.h8_c00034{height:38.937500pt;}
.h4_c00034{height:47.509333pt;}
.h3_c00034{height:53.098667pt;}
.h2_c00034{height:55.893333pt;}
.h5_c00034{height:56.906667pt;}
.h6_c00034{height:106.895612pt;}
.h0_c00034{height:743.266667pt;}
.h1_c00034{height:743.333333pt;}
.w2_c00034{width:93.222667pt;}
.w0_c00034{width:506.400000pt;}
.w1_c00034{width:506.666667pt;}
.x0_c00034{left:0.000000pt;}
.x6_c00034{left:24.266667pt;}
.x2_c00034{left:25.200000pt;}
.x4_c00034{left:26.133333pt;}
.x5_c00034{left:36.533333pt;}
.x3_c00034{left:38.133333pt;}
.x1_c00034{left:121.733333pt;}
.x15_c00034{left:210.368205pt;}
.xf_c00034{left:245.200000pt;}
.x12_c00034{left:246.266667pt;}
.xd_c00034{left:247.200000pt;}
.xe_c00034{left:248.133333pt;}
.x8_c00034{left:251.333333pt;}
.x7_c00034{left:253.466667pt;}
.xa_c00034{left:256.533333pt;}
.x13_c00034{left:257.466667pt;}
.x10_c00034{left:259.466667pt;}
.xb_c00034{left:264.933333pt;}
.x11_c00034{left:271.466667pt;}
.xc_c00034{left:287.066667pt;}
.x9_c00034{left:325.200000pt;}
.x14_c00034{left:342.666667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_7c8a997f51f617904389848f.woff2')format("woff");}.ff1_c00035{font-family:ff1_c00035;line-height:1.437000;font-style:normal;font-weight:normal;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_6f65bbfa248da6f4f915f8f8.woff2')format("woff");}.ff2_c00035{font-family:ff2_c00035;line-height:1.437000;font-style:normal;font-weight:normal;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_06ea099c007326ebda633d20.woff2')format("woff");}.ff3_c00035{font-family:ff3_c00035;line-height:1.575000;font-style:normal;font-weight:normal;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_52c2dea4f0de944eafc9f74b.woff2')format("woff");}.ff4_c00035{font-family:ff4_c00035;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00035;src:url('chunks/assets/font_6105c17c3228052140a0ebdf.woff2')format("woff");}.ff5_c00035{font-family:ff5_c00035;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00035;src:url('chunks/assets/font_ddd368baafcdf4221c085b47.woff2')format("woff");}.ff6_c00035{font-family:ff6_c00035;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00035;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff7_c00035{font-family:ff7_c00035;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00035;src:url('chunks/assets/font_f775088c47e0d4df3a4389e1.woff2')format("woff");}.ff8_c00035{font-family:ff8_c00035;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00035;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff9_c00035{font-family:ff9_c00035;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00035{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00035{vertical-align:0.000000px;}
.ls9_c00035{letter-spacing:0.000000px;}
.ls3_c00035{letter-spacing:1.605000px;}
.ls2_c00035{letter-spacing:2.805000px;}
.ls7_c00035{letter-spacing:4.800000px;}
.ls1_c00035{letter-spacing:5.805000px;}
.ls0_c00035{letter-spacing:6.000000px;}
.ls6_c00035{letter-spacing:7.200000px;}
.ls4_c00035{letter-spacing:7.800000px;}
.lsb_c00035{letter-spacing:15.000000px;}
.ls8_c00035{letter-spacing:19.800000px;}
.ls5_c00035{letter-spacing:22.200000px;}
.lsa_c00035{letter-spacing:39.000000px;}
.sc__c00035{text-shadow:none;}
.sc0_c00035{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00035{-webkit-text-stroke:0px transparent;}
.sc0_c00035{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00035{word-spacing:-54.060000px;}
.ws4_c00035{word-spacing:-19.623000px;}
.ws2_c00035{word-spacing:-17.340000px;}
.ws6_c00035{word-spacing:-15.060000px;}
.ws0_c00035{word-spacing:-14.160000px;}
.ws5_c00035{word-spacing:-1.320000px;}
.ws7_c00035{word-spacing:0.000000px;}
.ws3_c00035{word-spacing:0.240000px;}
._29_c00035{margin-left:-21.780000px;}
._b_c00035{margin-left:-17.820000px;}
._1f_c00035{margin-left:-16.080000px;}
._17_c00035{margin-left:-14.688000px;}
._1d_c00035{margin-left:-12.120000px;}
._23_c00035{margin-left:-10.380000px;}
._d_c00035{margin-left:-9.360000px;}
._18_c00035{margin-left:-8.220000px;}
._e_c00035{margin-left:-7.200000px;}
._f_c00035{margin-left:-6.000000px;}
._11_c00035{margin-left:-4.320000px;}
._9_c00035{margin-left:-2.460000px;}
._6_c00035{margin-left:-1.020000px;}
._8_c00035{width:1.620000px;}
._15_c00035{width:2.640000px;}
._7_c00035{width:3.660000px;}
._4_c00035{width:5.640000px;}
._10_c00035{width:7.440000px;}
._a_c00035{width:8.640000px;}
._5_c00035{width:10.560000px;}
._2b_c00035{width:11.580000px;}
._14_c00035{width:12.600000px;}
._3_c00035{width:13.680000px;}
._1_c00035{width:16.140000px;}
._0_c00035{width:17.820000px;}
._2a_c00035{width:19.140000px;}
._c_c00035{width:20.640000px;}
._12_c00035{width:22.140000px;}
._1c_c00035{width:24.120000px;}
._13_c00035{width:25.980000px;}
._24_c00035{width:27.240000px;}
._1b_c00035{width:28.920000px;}
._2_c00035{width:33.180000px;}
._27_c00035{width:34.380000px;}
._30_c00035{width:36.684000px;}
._2e_c00035{width:41.340000px;}
._2d_c00035{width:47.100000px;}
._2c_c00035{width:55.860000px;}
._20_c00035{width:64.320000px;}
._1e_c00035{width:65.520000px;}
._2f_c00035{width:67.692000px;}
._21_c00035{width:72.000000px;}
._25_c00035{width:83.100000px;}
._22_c00035{width:94.920000px;}
._19_c00035{width:103.320000px;}
._28_c00035{width:109.140000px;}
._16_c00035{width:115.740000px;}
._1a_c00035{width:133.080000px;}
._26_c00035{width:173.520000px;}
.fc2_c00035{color:transparent;}
.fc1_c00035{color:rgb(128,128,128);}
.fc0_c00035{color:rgb(0,0,0);}
.fs4_c00035{font-size:45.000000px;}
.fs7_c00035{font-size:48.000000px;}
.fs6_c00035{font-size:51.000000px;}
.fs5_c00035{font-size:54.000000px;}
.fs3_c00035{font-size:57.000000px;}
.fs0_c00035{font-size:60.000000px;}
.fs2_c00035{font-size:63.000000px;}
.fs1_c00035{font-size:66.000000px;}
.y0_c00035{bottom:0.000000px;}
.y53_c00035{bottom:3.105000px;}
.y52_c00035{bottom:7.228363px;}
.y51_c00035{bottom:42.300000px;}
.y2a_c00035{bottom:59.850000px;}
.y50_c00035{bottom:60.450000px;}
.y29_c00035{bottom:78.000000px;}
.y4f_c00035{bottom:78.300000px;}
.y28_c00035{bottom:96.150000px;}
.y4e_c00035{bottom:96.600000px;}
.y27_c00035{bottom:114.000000px;}
.y4d_c00035{bottom:114.150000px;}
.y26_c00035{bottom:132.300000px;}
.y4c_c00035{bottom:133.350000px;}
.y25_c00035{bottom:150.900000px;}
.y4b_c00035{bottom:151.200000px;}
.y24_c00035{bottom:167.700000px;}
.y4a_c00035{bottom:169.050000px;}
.y23_c00035{bottom:185.850000px;}
.y49_c00035{bottom:186.600000px;}
.y22_c00035{bottom:204.300000px;}
.y48_c00035{bottom:204.600000px;}
.y21_c00035{bottom:222.750000px;}
.y47_c00035{bottom:223.200000px;}
.y46_c00035{bottom:241.050000px;}
.y20_c00035{bottom:241.200000px;}
.y45_c00035{bottom:258.600000px;}
.y1f_c00035{bottom:258.750000px;}
.y1e_c00035{bottom:276.450000px;}
.y44_c00035{bottom:277.200000px;}
.y1d_c00035{bottom:294.900000px;}
.y43_c00035{bottom:295.350000px;}
.y1c_c00035{bottom:312.450000px;}
.y42_c00035{bottom:313.200000px;}
.y1b_c00035{bottom:329.700000px;}
.y41_c00035{bottom:330.150000px;}
.y1a_c00035{bottom:347.400000px;}
.y40_c00035{bottom:348.300000px;}
.y19_c00035{bottom:365.850000px;}
.y3f_c00035{bottom:367.650000px;}
.y18_c00035{bottom:384.000000px;}
.y3e_c00035{bottom:384.150000px;}
.y3d_c00035{bottom:400.950000px;}
.y17_c00035{bottom:401.400000px;}
.y16_c00035{bottom:418.950000px;}
.y3c_c00035{bottom:436.800000px;}
.y15_c00035{bottom:437.100000px;}
.y3b_c00035{bottom:453.900000px;}
.y14_c00035{bottom:454.950000px;}
.y13_c00035{bottom:472.800000px;}
.y3a_c00035{bottom:490.500000px;}
.y12_c00035{bottom:490.800000px;}
.y39_c00035{bottom:508.350000px;}
.y11_c00035{bottom:508.650000px;}
.y10_c00035{bottom:526.200000px;}
.yf_c00035{bottom:544.050000px;}
.y38_c00035{bottom:544.500000px;}
.ye_c00035{bottom:561.600000px;}
.y37_c00035{bottom:562.350000px;}
.yd_c00035{bottom:579.900000px;}
.yc_c00035{bottom:597.750000px;}
.y36_c00035{bottom:598.050000px;}
.yb_c00035{bottom:615.600000px;}
.y35_c00035{bottom:615.900000px;}
.y34_c00035{bottom:633.900000px;}
.ya_c00035{bottom:634.200000px;}
.y33_c00035{bottom:651.750000px;}
.y9_c00035{bottom:652.050000px;}
.y8_c00035{bottom:666.600000px;}
.y32_c00035{bottom:670.350000px;}
.y7_c00035{bottom:687.450000px;}
.y31_c00035{bottom:688.200000px;}
.y6_c00035{bottom:705.450000px;}
.y30_c00035{bottom:706.050000px;}
.y5_c00035{bottom:723.300000px;}
.y2f_c00035{bottom:724.500000px;}
.y4_c00035{bottom:741.600000px;}
.y2e_c00035{bottom:742.200000px;}
.y3_c00035{bottom:760.350000px;}
.y2d_c00035{bottom:760.500000px;}
.y2_c00035{bottom:777.900000px;}
.y2c_c00035{bottom:779.550000px;}
.y2b_c00035{bottom:797.250000px;}
.y1_c00035{bottom:797.850000px;}
.h8_c00035{height:13.200074px;}
.h9_c00035{height:43.804688px;}
.h7_c00035{height:59.736000px;}
.h2_c00035{height:62.880000px;}
.h3_c00035{height:64.020000px;}
.h6_c00035{height:64.571777px;}
.h5_c00035{height:66.024000px;}
.h4_c00035{height:69.168000px;}
.h1_c00035{height:842.250000px;}
.h0_c00035{height:842.400000px;}
.w2_c00035{width:104.875500px;}
.w1_c00035{width:559.500000px;}
.w0_c00035{width:559.725000px;}
.x0_c00035{left:0.000000px;}
.xb_c00035{left:45.900000px;}
.x8_c00035{left:47.550000px;}
.x7_c00035{left:48.900000px;}
.x6_c00035{left:49.950000px;}
.x5_c00035{left:51.000000px;}
.x2_c00035{left:53.400000px;}
.x3_c00035{left:55.050000px;}
.xa_c00035{left:58.800000px;}
.x9_c00035{left:67.050000px;}
.x4_c00035{left:69.150000px;}
.xc_c00035{left:76.500000px;}
.x1_c00035{left:166.950000px;}
.x1d_c00035{left:231.676758px;}
.x1b_c00035{left:299.250000px;}
.x1a_c00035{left:300.600000px;}
.x19_c00035{left:301.650000px;}
.x11_c00035{left:302.700000px;}
.x13_c00035{left:304.200000px;}
.x12_c00035{left:305.850000px;}
.x10_c00035{left:306.900000px;}
.xe_c00035{left:309.150000px;}
.xd_c00035{left:311.100000px;}
.x14_c00035{left:316.950000px;}
.x16_c00035{left:318.600000px;}
.xf_c00035{left:321.000000px;}
.x17_c00035{left:322.200000px;}
.x18_c00035{left:348.900000px;}
.x15_c00035{left:389.850000px;}
.x1c_c00035{left:503.550000px;}
@media print{
.v0_c00035{vertical-align:0.000000pt;}
.ls9_c00035{letter-spacing:0.000000pt;}
.ls3_c00035{letter-spacing:1.426667pt;}
.ls2_c00035{letter-spacing:2.493333pt;}
.ls7_c00035{letter-spacing:4.266667pt;}
.ls1_c00035{letter-spacing:5.160000pt;}
.ls0_c00035{letter-spacing:5.333333pt;}
.ls6_c00035{letter-spacing:6.400000pt;}
.ls4_c00035{letter-spacing:6.933333pt;}
.lsb_c00035{letter-spacing:13.333333pt;}
.ls8_c00035{letter-spacing:17.600000pt;}
.ls5_c00035{letter-spacing:19.733333pt;}
.lsa_c00035{letter-spacing:34.666667pt;}
.ws1_c00035{word-spacing:-48.053333pt;}
.ws4_c00035{word-spacing:-17.442667pt;}
.ws2_c00035{word-spacing:-15.413333pt;}
.ws6_c00035{word-spacing:-13.386667pt;}
.ws0_c00035{word-spacing:-12.586667pt;}
.ws5_c00035{word-spacing:-1.173333pt;}
.ws7_c00035{word-spacing:0.000000pt;}
.ws3_c00035{word-spacing:0.213333pt;}
._29_c00035{margin-left:-19.360000pt;}
._b_c00035{margin-left:-15.840000pt;}
._1f_c00035{margin-left:-14.293333pt;}
._17_c00035{margin-left:-13.056000pt;}
._1d_c00035{margin-left:-10.773333pt;}
._23_c00035{margin-left:-9.226667pt;}
._d_c00035{margin-left:-8.320000pt;}
._18_c00035{margin-left:-7.306667pt;}
._e_c00035{margin-left:-6.400000pt;}
._f_c00035{margin-left:-5.333333pt;}
._11_c00035{margin-left:-3.840000pt;}
._9_c00035{margin-left:-2.186667pt;}
._6_c00035{margin-left:-0.906667pt;}
._8_c00035{width:1.440000pt;}
._15_c00035{width:2.346667pt;}
._7_c00035{width:3.253333pt;}
._4_c00035{width:5.013333pt;}
._10_c00035{width:6.613333pt;}
._a_c00035{width:7.680000pt;}
._5_c00035{width:9.386667pt;}
._2b_c00035{width:10.293333pt;}
._14_c00035{width:11.200000pt;}
._3_c00035{width:12.160000pt;}
._1_c00035{width:14.346667pt;}
._0_c00035{width:15.840000pt;}
._2a_c00035{width:17.013333pt;}
._c_c00035{width:18.346667pt;}
._12_c00035{width:19.680000pt;}
._1c_c00035{width:21.440000pt;}
._13_c00035{width:23.093333pt;}
._24_c00035{width:24.213333pt;}
._1b_c00035{width:25.706667pt;}
._2_c00035{width:29.493333pt;}
._27_c00035{width:30.560000pt;}
._30_c00035{width:32.608000pt;}
._2e_c00035{width:36.746667pt;}
._2d_c00035{width:41.866667pt;}
._2c_c00035{width:49.653333pt;}
._20_c00035{width:57.173333pt;}
._1e_c00035{width:58.240000pt;}
._2f_c00035{width:60.170667pt;}
._21_c00035{width:64.000000pt;}
._25_c00035{width:73.866667pt;}
._22_c00035{width:84.373333pt;}
._19_c00035{width:91.840000pt;}
._28_c00035{width:97.013333pt;}
._16_c00035{width:102.880000pt;}
._1a_c00035{width:118.293333pt;}
._26_c00035{width:154.240000pt;}
.fs4_c00035{font-size:40.000000pt;}
.fs7_c00035{font-size:42.666667pt;}
.fs6_c00035{font-size:45.333333pt;}
.fs5_c00035{font-size:48.000000pt;}
.fs3_c00035{font-size:50.666667pt;}
.fs0_c00035{font-size:53.333333pt;}
.fs2_c00035{font-size:56.000000pt;}
.fs1_c00035{font-size:58.666667pt;}
.y0_c00035{bottom:0.000000pt;}
.y53_c00035{bottom:2.760000pt;}
.y52_c00035{bottom:6.425212pt;}
.y51_c00035{bottom:37.600000pt;}
.y2a_c00035{bottom:53.200000pt;}
.y50_c00035{bottom:53.733333pt;}
.y29_c00035{bottom:69.333333pt;}
.y4f_c00035{bottom:69.600000pt;}
.y28_c00035{bottom:85.466667pt;}
.y4e_c00035{bottom:85.866667pt;}
.y27_c00035{bottom:101.333333pt;}
.y4d_c00035{bottom:101.466667pt;}
.y26_c00035{bottom:117.600000pt;}
.y4c_c00035{bottom:118.533333pt;}
.y25_c00035{bottom:134.133333pt;}
.y4b_c00035{bottom:134.400000pt;}
.y24_c00035{bottom:149.066667pt;}
.y4a_c00035{bottom:150.266667pt;}
.y23_c00035{bottom:165.200000pt;}
.y49_c00035{bottom:165.866667pt;}
.y22_c00035{bottom:181.600000pt;}
.y48_c00035{bottom:181.866667pt;}
.y21_c00035{bottom:198.000000pt;}
.y47_c00035{bottom:198.400000pt;}
.y46_c00035{bottom:214.266667pt;}
.y20_c00035{bottom:214.400000pt;}
.y45_c00035{bottom:229.866667pt;}
.y1f_c00035{bottom:230.000000pt;}
.y1e_c00035{bottom:245.733333pt;}
.y44_c00035{bottom:246.400000pt;}
.y1d_c00035{bottom:262.133333pt;}
.y43_c00035{bottom:262.533333pt;}
.y1c_c00035{bottom:277.733333pt;}
.y42_c00035{bottom:278.400000pt;}
.y1b_c00035{bottom:293.066667pt;}
.y41_c00035{bottom:293.466667pt;}
.y1a_c00035{bottom:308.800000pt;}
.y40_c00035{bottom:309.600000pt;}
.y19_c00035{bottom:325.200000pt;}
.y3f_c00035{bottom:326.800000pt;}
.y18_c00035{bottom:341.333333pt;}
.y3e_c00035{bottom:341.466667pt;}
.y3d_c00035{bottom:356.400000pt;}
.y17_c00035{bottom:356.800000pt;}
.y16_c00035{bottom:372.400000pt;}
.y3c_c00035{bottom:388.266667pt;}
.y15_c00035{bottom:388.533333pt;}
.y3b_c00035{bottom:403.466667pt;}
.y14_c00035{bottom:404.400000pt;}
.y13_c00035{bottom:420.266667pt;}
.y3a_c00035{bottom:436.000000pt;}
.y12_c00035{bottom:436.266667pt;}
.y39_c00035{bottom:451.866667pt;}
.y11_c00035{bottom:452.133333pt;}
.y10_c00035{bottom:467.733333pt;}
.yf_c00035{bottom:483.600000pt;}
.y38_c00035{bottom:484.000000pt;}
.ye_c00035{bottom:499.200000pt;}
.y37_c00035{bottom:499.866667pt;}
.yd_c00035{bottom:515.466667pt;}
.yc_c00035{bottom:531.333333pt;}
.y36_c00035{bottom:531.600000pt;}
.yb_c00035{bottom:547.200000pt;}
.y35_c00035{bottom:547.466667pt;}
.y34_c00035{bottom:563.466667pt;}
.ya_c00035{bottom:563.733333pt;}
.y33_c00035{bottom:579.333333pt;}
.y9_c00035{bottom:579.600000pt;}
.y8_c00035{bottom:592.533333pt;}
.y32_c00035{bottom:595.866667pt;}
.y7_c00035{bottom:611.066667pt;}
.y31_c00035{bottom:611.733333pt;}
.y6_c00035{bottom:627.066667pt;}
.y30_c00035{bottom:627.600000pt;}
.y5_c00035{bottom:642.933333pt;}
.y2f_c00035{bottom:644.000000pt;}
.y4_c00035{bottom:659.200000pt;}
.y2e_c00035{bottom:659.733333pt;}
.y3_c00035{bottom:675.866667pt;}
.y2d_c00035{bottom:676.000000pt;}
.y2_c00035{bottom:691.466667pt;}
.y2c_c00035{bottom:692.933333pt;}
.y2b_c00035{bottom:708.666667pt;}
.y1_c00035{bottom:709.200000pt;}
.h8_c00035{height:11.733399pt;}
.h9_c00035{height:38.937500pt;}
.h7_c00035{height:53.098667pt;}
.h2_c00035{height:55.893333pt;}
.h3_c00035{height:56.906667pt;}
.h6_c00035{height:57.397135pt;}
.h5_c00035{height:58.688000pt;}
.h4_c00035{height:61.482667pt;}
.h1_c00035{height:748.666667pt;}
.h0_c00035{height:748.800000pt;}
.w2_c00035{width:93.222667pt;}
.w1_c00035{width:497.333333pt;}
.w0_c00035{width:497.533333pt;}
.x0_c00035{left:0.000000pt;}
.xb_c00035{left:40.800000pt;}
.x8_c00035{left:42.266667pt;}
.x7_c00035{left:43.466667pt;}
.x6_c00035{left:44.400000pt;}
.x5_c00035{left:45.333333pt;}
.x2_c00035{left:47.466667pt;}
.x3_c00035{left:48.933333pt;}
.xa_c00035{left:52.266667pt;}
.x9_c00035{left:59.600000pt;}
.x4_c00035{left:61.466667pt;}
.xc_c00035{left:68.000000pt;}
.x1_c00035{left:148.400000pt;}
.x1d_c00035{left:205.934896pt;}
.x1b_c00035{left:266.000000pt;}
.x1a_c00035{left:267.200000pt;}
.x19_c00035{left:268.133333pt;}
.x11_c00035{left:269.066667pt;}
.x13_c00035{left:270.400000pt;}
.x12_c00035{left:271.866667pt;}
.x10_c00035{left:272.800000pt;}
.xe_c00035{left:274.800000pt;}
.xd_c00035{left:276.533333pt;}
.x14_c00035{left:281.733333pt;}
.x16_c00035{left:283.200000pt;}
.xf_c00035{left:285.333333pt;}
.x17_c00035{left:286.400000pt;}
.x18_c00035{left:310.133333pt;}
.x15_c00035{left:346.533333pt;}
.x1c_c00035{left:447.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_79d5f4a458ff15db4cb661fc.woff2')format("woff");}.ff1_c00036{font-family:ff1_c00036;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00036;src:url('chunks/assets/font_c13d98550c126a05e125e054.woff2')format("woff");}.ff2_c00036{font-family:ff2_c00036;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00036;src:url('chunks/assets/font_775c6897ccfff7f8ec88a7a4.woff2')format("woff");}.ff3_c00036{font-family:ff3_c00036;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_c00036;src:url('chunks/assets/font_4ba2567eb5ba11afb308c840.woff2')format("woff");}.ff4_c00036{font-family:ff4_c00036;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00036;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff5_c00036{font-family:ff5_c00036;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00036;src:url('chunks/assets/font_a13544f6581a261458e7001e.woff2')format("woff");}.ff6_c00036{font-family:ff6_c00036;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00036;src:url('chunks/assets/font_e94629702846ef2ee39ac9b9.woff2')format("woff");}.ff7_c00036{font-family:ff7_c00036;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00036;src:url('chunks/assets/font_9da76e12d232934a97e4510f.woff2')format("woff");}.ff8_c00036{font-family:ff8_c00036;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00036;src:url('chunks/assets/font_4a2109fc160483fa085a660d.woff2')format("woff");}.ff9_c00036{font-family:ff9_c00036;line-height:1.575000;font-style:normal;font-weight: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_c00036;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ffa_c00036{font-family:ffa_c00036;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00036{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00036{vertical-align:0.000000px;}
.ls7_c00036{letter-spacing:-18.000000px;}
.ls5_c00036{letter-spacing:0.000000px;}
.ls2_c00036{letter-spacing:7.800000px;}
.ls1_c00036{letter-spacing:9.600000px;}
.ls8_c00036{letter-spacing:15.000000px;}
.ls6_c00036{letter-spacing:21.000000px;}
.ls4_c00036{letter-spacing:26.280000px;}
.ls3_c00036{letter-spacing:38.940000px;}
.ls0_c00036{letter-spacing:41.340000px;}
.sc__c00036{text-shadow:none;}
.sc0_c00036{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00036{-webkit-text-stroke:0px transparent;}
.sc0_c00036{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00036{word-spacing:-48.900000px;}
.wsb_c00036{word-spacing:-30.060000px;}
.ws4_c00036{word-spacing:-24.000000px;}
.ws6_c00036{word-spacing:-17.250000px;}
.ws5_c00036{word-spacing:-15.060000px;}
.ws8_c00036{word-spacing:-15.000000px;}
.ws2_c00036{word-spacing:-14.178000px;}
.ws7_c00036{word-spacing:-14.160000px;}
.wsa_c00036{word-spacing:-1.200000px;}
.wsd_c00036{word-spacing:0.000000px;}
.ws9_c00036{word-spacing:1.740000px;}
.ws1_c00036{word-spacing:3.216000px;}
.ws0_c00036{word-spacing:4.560000px;}
.wsc_c00036{word-spacing:5.580000px;}
._1e_c00036{margin-left:-23.820000px;}
._17_c00036{margin-left:-21.159000px;}
._26_c00036{margin-left:-15.780000px;}
._28_c00036{margin-left:-14.364000px;}
._1b_c00036{margin-left:-12.000000px;}
._18_c00036{margin-left:-10.596000px;}
._16_c00036{margin-left:-9.360000px;}
._21_c00036{margin-left:-8.040000px;}
._14_c00036{margin-left:-6.960000px;}
._15_c00036{margin-left:-5.100000px;}
._f_c00036{margin-left:-3.756000px;}
._13_c00036{margin-left:-2.376000px;}
._12_c00036{margin-left:-1.044000px;}
._9_c00036{width:1.140000px;}
._a_c00036{width:2.220000px;}
._8_c00036{width:3.240000px;}
._5_c00036{width:4.740000px;}
._7_c00036{width:6.180000px;}
._e_c00036{width:7.200000px;}
._d_c00036{width:8.340000px;}
._b_c00036{width:9.540000px;}
._c_c00036{width:11.388000px;}
._1a_c00036{width:12.540000px;}
._6_c00036{width:13.800000px;}
._24_c00036{width:15.960000px;}
._11_c00036{width:17.181000px;}
._2_c00036{width:18.960000px;}
._4_c00036{width:20.112000px;}
._1_c00036{width:21.648000px;}
._3_c00036{width:25.296000px;}
._2b_c00036{width:26.340000px;}
._0_c00036{width:28.848000px;}
._1d_c00036{width:36.552000px;}
._2a_c00036{width:41.400000px;}
._29_c00036{width:45.576000px;}
._20_c00036{width:48.540000px;}
._1f_c00036{width:51.840000px;}
._1c_c00036{width:53.280000px;}
._10_c00036{width:54.621000px;}
._23_c00036{width:76.620000px;}
._27_c00036{width:122.496000px;}
._22_c00036{width:195.048000px;}
._19_c00036{width:334.824000px;}
._25_c00036{width:433.788000px;}
.fc2_c00036{color:transparent;}
.fc1_c00036{color:rgb(128,128,128);}
.fc0_c00036{color:rgb(0,0,0);}
.fs3_c00036{font-size:45.000000px;}
.fs0_c00036{font-size:48.000000px;}
.fs2_c00036{font-size:51.000000px;}
.fs1_c00036{font-size:60.000000px;}
.fs5_c00036{font-size:69.000000px;}
.fs4_c00036{font-size:84.000000px;}
.y0_c00036{bottom:0.000000px;}
.y51_c00036{bottom:3.105000px;}
.y50_c00036{bottom:7.228355px;}
.y2a_c00036{bottom:59.385000px;}
.y4f_c00036{bottom:59.685000px;}
.y29_c00036{bottom:77.835000px;}
.y28_c00036{bottom:95.535000px;}
.y4e_c00036{bottom:96.885000px;}
.y27_c00036{bottom:113.985000px;}
.y4d_c00036{bottom:114.435000px;}
.y4c_c00036{bottom:131.535000px;}
.y26_c00036{bottom:131.985000px;}
.y4b_c00036{bottom:149.385000px;}
.y25_c00036{bottom:150.435000px;}
.y4a_c00036{bottom:166.935000px;}
.y24_c00036{bottom:168.435000px;}
.y49_c00036{bottom:184.935000px;}
.y23_c00036{bottom:186.285000px;}
.y48_c00036{bottom:204.435000px;}
.y22_c00036{bottom:204.735000px;}
.y21_c00036{bottom:220.935000px;}
.y47_c00036{bottom:222.285000px;}
.y46_c00036{bottom:240.285000px;}
.y20_c00036{bottom:241.935000px;}
.y45_c00036{bottom:258.135000px;}
.y1f_c00036{bottom:258.735000px;}
.y1e_c00036{bottom:276.435000px;}
.y1d_c00036{bottom:293.835000px;}
.y44_c00036{bottom:294.285000px;}
.y43_c00036{bottom:309.735000px;}
.y1c_c00036{bottom:312.435000px;}
.y1b_c00036{bottom:328.935000px;}
.y42_c00036{bottom:330.285000px;}
.y1a_c00036{bottom:348.285000px;}
.y19_c00036{bottom:365.835000px;}
.y41_c00036{bottom:366.735000px;}
.y40_c00036{bottom:384.435000px;}
.y18_c00036{bottom:384.735000px;}
.y17_c00036{bottom:401.535000px;}
.y3f_c00036{bottom:402.885000px;}
.y16_c00036{bottom:419.535000px;}
.y3e_c00036{bottom:420.435000px;}
.y15_c00036{bottom:435.735000px;}
.y3d_c00036{bottom:439.635000px;}
.y3c_c00036{bottom:454.485000px;}
.y14_c00036{bottom:455.835000px;}
.y13_c00036{bottom:473.085000px;}
.y3b_c00036{bottom:474.135000px;}
.y12_c00036{bottom:488.985000px;}
.y3a_c00036{bottom:491.685000px;}
.y11_c00036{bottom:507.885000px;}
.y39_c00036{bottom:509.985000px;}
.y10_c00036{bottom:525.435000px;}
.y38_c00036{bottom:528.135000px;}
.y37_c00036{bottom:546.285000px;}
.yf_c00036{bottom:546.735000px;}
.ye_c00036{bottom:560.235000px;}
.y36_c00036{bottom:563.835000px;}
.yd_c00036{bottom:579.735000px;}
.y35_c00036{bottom:581.835000px;}
.yc_c00036{bottom:598.635000px;}
.y34_c00036{bottom:600.285000px;}
.yb_c00036{bottom:616.185000px;}
.y33_c00036{bottom:619.185000px;}
.ya_c00036{bottom:634.035000px;}
.y32_c00036{bottom:635.535000px;}
.y9_c00036{bottom:652.035000px;}
.y31_c00036{bottom:653.685000px;}
.y8_c00036{bottom:670.185000px;}
.y30_c00036{bottom:671.535000px;}
.y7_c00036{bottom:688.035000px;}
.y2f_c00036{bottom:688.785000px;}
.y6_c00036{bottom:706.335000px;}
.y2e_c00036{bottom:706.935000px;}
.y5_c00036{bottom:724.635000px;}
.y2d_c00036{bottom:725.235000px;}
.y4_c00036{bottom:743.385000px;}
.y2c_c00036{bottom:761.985000px;}
.y3_c00036{bottom:762.285000px;}
.y2_c00036{bottom:779.985000px;}
.y2b_c00036{bottom:797.535000px;}
.y1_c00036{bottom:799.785000px;}
.h7_c00036{height:13.200074px;}
.h8_c00036{height:43.804688px;}
.h2_c00036{height:62.880000px;}
.h6_c00036{height:64.020000px;}
.h3_c00036{height:64.571777px;}
.h5_c00036{height:73.623000px;}
.h4_c00036{height:86.338763px;}
.h0_c00036{height:836.175000px;}
.h1_c00036{height:836.250000px;}
.w2_c00036{width:104.875500px;}
.w0_c00036{width:569.700000px;}
.w1_c00036{width:570.000000px;}
.x0_c00036{left:0.000000px;}
.x3_c00036{left:31.050000px;}
.x2_c00036{left:33.000000px;}
.x5_c00036{left:34.650000px;}
.x6_c00036{left:36.750000px;}
.x9_c00036{left:38.400000px;}
.xb_c00036{left:39.450000px;}
.xa_c00036{left:41.100000px;}
.xd_c00036{left:42.150000px;}
.xe_c00036{left:43.200000px;}
.xf_c00036{left:44.850000px;}
.x11_c00036{left:45.900000px;}
.x4_c00036{left:50.550000px;}
.x10_c00036{left:55.050000px;}
.x7_c00036{left:58.650000px;}
.xc_c00036{left:60.450000px;}
.x1_c00036{left:142.650000px;}
.x8_c00036{left:174.150000px;}
.x20_c00036{left:236.664230px;}
.x14_c00036{left:283.050000px;}
.x13_c00036{left:284.100000px;}
.x15_c00036{left:285.450000px;}
.x17_c00036{left:286.500000px;}
.x12_c00036{left:288.450000px;}
.x18_c00036{left:289.500000px;}
.x1a_c00036{left:290.550000px;}
.x1b_c00036{left:292.200000px;}
.x16_c00036{left:300.300000px;}
.x19_c00036{left:307.350000px;}
.x1e_c00036{left:308.700000px;}
.x1f_c00036{left:328.950000px;}
.x1d_c00036{left:335.700000px;}
.x1c_c00036{left:378.300000px;}
@media print{
.v0_c00036{vertical-align:0.000000pt;}
.ls7_c00036{letter-spacing:-16.000000pt;}
.ls5_c00036{letter-spacing:0.000000pt;}
.ls2_c00036{letter-spacing:6.933333pt;}
.ls1_c00036{letter-spacing:8.533333pt;}
.ls8_c00036{letter-spacing:13.333333pt;}
.ls6_c00036{letter-spacing:18.666667pt;}
.ls4_c00036{letter-spacing:23.360000pt;}
.ls3_c00036{letter-spacing:34.613333pt;}
.ls0_c00036{letter-spacing:36.746667pt;}
.ws3_c00036{word-spacing:-43.466667pt;}
.wsb_c00036{word-spacing:-26.720000pt;}
.ws4_c00036{word-spacing:-21.333333pt;}
.ws6_c00036{word-spacing:-15.333333pt;}
.ws5_c00036{word-spacing:-13.386667pt;}
.ws8_c00036{word-spacing:-13.333333pt;}
.ws2_c00036{word-spacing:-12.602667pt;}
.ws7_c00036{word-spacing:-12.586667pt;}
.wsa_c00036{word-spacing:-1.066667pt;}
.wsd_c00036{word-spacing:0.000000pt;}
.ws9_c00036{word-spacing:1.546667pt;}
.ws1_c00036{word-spacing:2.858667pt;}
.ws0_c00036{word-spacing:4.053333pt;}
.wsc_c00036{word-spacing:4.960000pt;}
._1e_c00036{margin-left:-21.173333pt;}
._17_c00036{margin-left:-18.808000pt;}
._26_c00036{margin-left:-14.026667pt;}
._28_c00036{margin-left:-12.768000pt;}
._1b_c00036{margin-left:-10.666667pt;}
._18_c00036{margin-left:-9.418667pt;}
._16_c00036{margin-left:-8.320000pt;}
._21_c00036{margin-left:-7.146667pt;}
._14_c00036{margin-left:-6.186667pt;}
._15_c00036{margin-left:-4.533333pt;}
._f_c00036{margin-left:-3.338667pt;}
._13_c00036{margin-left:-2.112000pt;}
._12_c00036{margin-left:-0.928000pt;}
._9_c00036{width:1.013333pt;}
._a_c00036{width:1.973333pt;}
._8_c00036{width:2.880000pt;}
._5_c00036{width:4.213333pt;}
._7_c00036{width:5.493333pt;}
._e_c00036{width:6.400000pt;}
._d_c00036{width:7.413333pt;}
._b_c00036{width:8.480000pt;}
._c_c00036{width:10.122667pt;}
._1a_c00036{width:11.146667pt;}
._6_c00036{width:12.266667pt;}
._24_c00036{width:14.186667pt;}
._11_c00036{width:15.272000pt;}
._2_c00036{width:16.853333pt;}
._4_c00036{width:17.877333pt;}
._1_c00036{width:19.242667pt;}
._3_c00036{width:22.485333pt;}
._2b_c00036{width:23.413333pt;}
._0_c00036{width:25.642667pt;}
._1d_c00036{width:32.490667pt;}
._2a_c00036{width:36.800000pt;}
._29_c00036{width:40.512000pt;}
._20_c00036{width:43.146667pt;}
._1f_c00036{width:46.080000pt;}
._1c_c00036{width:47.360000pt;}
._10_c00036{width:48.552000pt;}
._23_c00036{width:68.106667pt;}
._27_c00036{width:108.885333pt;}
._22_c00036{width:173.376000pt;}
._19_c00036{width:297.621333pt;}
._25_c00036{width:385.589333pt;}
.fs3_c00036{font-size:40.000000pt;}
.fs0_c00036{font-size:42.666667pt;}
.fs2_c00036{font-size:45.333333pt;}
.fs1_c00036{font-size:53.333333pt;}
.fs5_c00036{font-size:61.333333pt;}
.fs4_c00036{font-size:74.666667pt;}
.y0_c00036{bottom:0.000000pt;}
.y51_c00036{bottom:2.760000pt;}
.y50_c00036{bottom:6.425204pt;}
.y2a_c00036{bottom:52.786667pt;}
.y4f_c00036{bottom:53.053333pt;}
.y29_c00036{bottom:69.186667pt;}
.y28_c00036{bottom:84.920000pt;}
.y4e_c00036{bottom:86.120000pt;}
.y27_c00036{bottom:101.320000pt;}
.y4d_c00036{bottom:101.720000pt;}
.y4c_c00036{bottom:116.920000pt;}
.y26_c00036{bottom:117.320000pt;}
.y4b_c00036{bottom:132.786667pt;}
.y25_c00036{bottom:133.720000pt;}
.y4a_c00036{bottom:148.386667pt;}
.y24_c00036{bottom:149.720000pt;}
.y49_c00036{bottom:164.386667pt;}
.y23_c00036{bottom:165.586667pt;}
.y48_c00036{bottom:181.720000pt;}
.y22_c00036{bottom:181.986667pt;}
.y21_c00036{bottom:196.386667pt;}
.y47_c00036{bottom:197.586667pt;}
.y46_c00036{bottom:213.586667pt;}
.y20_c00036{bottom:215.053333pt;}
.y45_c00036{bottom:229.453333pt;}
.y1f_c00036{bottom:229.986667pt;}
.y1e_c00036{bottom:245.720000pt;}
.y1d_c00036{bottom:261.186667pt;}
.y44_c00036{bottom:261.586667pt;}
.y43_c00036{bottom:275.320000pt;}
.y1c_c00036{bottom:277.720000pt;}
.y1b_c00036{bottom:292.386667pt;}
.y42_c00036{bottom:293.586667pt;}
.y1a_c00036{bottom:309.586667pt;}
.y19_c00036{bottom:325.186667pt;}
.y41_c00036{bottom:325.986667pt;}
.y40_c00036{bottom:341.720000pt;}
.y18_c00036{bottom:341.986667pt;}
.y17_c00036{bottom:356.920000pt;}
.y3f_c00036{bottom:358.120000pt;}
.y16_c00036{bottom:372.920000pt;}
.y3e_c00036{bottom:373.720000pt;}
.y15_c00036{bottom:387.320000pt;}
.y3d_c00036{bottom:390.786667pt;}
.y3c_c00036{bottom:403.986667pt;}
.y14_c00036{bottom:405.186667pt;}
.y13_c00036{bottom:420.520000pt;}
.y3b_c00036{bottom:421.453333pt;}
.y12_c00036{bottom:434.653333pt;}
.y3a_c00036{bottom:437.053333pt;}
.y11_c00036{bottom:451.453333pt;}
.y39_c00036{bottom:453.320000pt;}
.y10_c00036{bottom:467.053333pt;}
.y38_c00036{bottom:469.453333pt;}
.y37_c00036{bottom:485.586667pt;}
.yf_c00036{bottom:485.986667pt;}
.ye_c00036{bottom:497.986667pt;}
.y36_c00036{bottom:501.186667pt;}
.yd_c00036{bottom:515.320000pt;}
.y35_c00036{bottom:517.186667pt;}
.yc_c00036{bottom:532.120000pt;}
.y34_c00036{bottom:533.586667pt;}
.yb_c00036{bottom:547.720000pt;}
.y33_c00036{bottom:550.386667pt;}
.ya_c00036{bottom:563.586667pt;}
.y32_c00036{bottom:564.920000pt;}
.y9_c00036{bottom:579.586667pt;}
.y31_c00036{bottom:581.053333pt;}
.y8_c00036{bottom:595.720000pt;}
.y30_c00036{bottom:596.920000pt;}
.y7_c00036{bottom:611.586667pt;}
.y2f_c00036{bottom:612.253333pt;}
.y6_c00036{bottom:627.853333pt;}
.y2e_c00036{bottom:628.386667pt;}
.y5_c00036{bottom:644.120000pt;}
.y2d_c00036{bottom:644.653333pt;}
.y4_c00036{bottom:660.786667pt;}
.y2c_c00036{bottom:677.320000pt;}
.y3_c00036{bottom:677.586667pt;}
.y2_c00036{bottom:693.320000pt;}
.y2b_c00036{bottom:708.920000pt;}
.y1_c00036{bottom:710.920000pt;}
.h7_c00036{height:11.733399pt;}
.h8_c00036{height:38.937500pt;}
.h2_c00036{height:55.893333pt;}
.h6_c00036{height:56.906667pt;}
.h3_c00036{height:57.397135pt;}
.h5_c00036{height:65.442667pt;}
.h4_c00036{height:76.745567pt;}
.h0_c00036{height:743.266667pt;}
.h1_c00036{height:743.333333pt;}
.w2_c00036{width:93.222667pt;}
.w0_c00036{width:506.400000pt;}
.w1_c00036{width:506.666667pt;}
.x0_c00036{left:0.000000pt;}
.x3_c00036{left:27.600000pt;}
.x2_c00036{left:29.333333pt;}
.x5_c00036{left:30.800000pt;}
.x6_c00036{left:32.666667pt;}
.x9_c00036{left:34.133333pt;}
.xb_c00036{left:35.066667pt;}
.xa_c00036{left:36.533333pt;}
.xd_c00036{left:37.466667pt;}
.xe_c00036{left:38.400000pt;}
.xf_c00036{left:39.866667pt;}
.x11_c00036{left:40.800000pt;}
.x4_c00036{left:44.933333pt;}
.x10_c00036{left:48.933333pt;}
.x7_c00036{left:52.133333pt;}
.xc_c00036{left:53.733333pt;}
.x1_c00036{left:126.800000pt;}
.x8_c00036{left:154.800000pt;}
.x20_c00036{left:210.368205pt;}
.x14_c00036{left:251.600000pt;}
.x13_c00036{left:252.533333pt;}
.x15_c00036{left:253.733333pt;}
.x17_c00036{left:254.666667pt;}
.x12_c00036{left:256.400000pt;}
.x18_c00036{left:257.333333pt;}
.x1a_c00036{left:258.266667pt;}
.x1b_c00036{left:259.733333pt;}
.x16_c00036{left:266.933333pt;}
.x19_c00036{left:273.200000pt;}
.x1e_c00036{left:274.400000pt;}
.x1f_c00036{left:292.400000pt;}
.x1d_c00036{left:298.400000pt;}
.x1c_c00036{left:336.266667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_64de1151f8a8a3079c099f3c.woff2')format("woff");}.ff1_c00037{font-family:ff1_c00037;line-height:1.437000;font-style:normal;font-weight:normal;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_b30e608d4a6391b428feeaee.woff2')format("woff");}.ff2_c00037{font-family:ff2_c00037;line-height:1.437000;font-style:normal;font-weight:normal;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_9368091d2198159ec0e42b1c.woff2')format("woff");}.ff3_c00037{font-family:ff3_c00037;line-height:1.437000;font-style:normal;font-weight:normal;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_52245dbfeb35cbc9ec331741.woff2')format("woff");}.ff4_c00037{font-family:ff4_c00037;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00037;src:url('chunks/assets/font_3ea05ec177ac2e11f2bb7c9d.woff2')format("woff");}.ff5_c00037{font-family:ff5_c00037;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00037;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff6_c00037{font-family:ff6_c00037;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00037;src:url('chunks/assets/font_dc6d9d6c4083e437b8ff479a.woff2')format("woff");}.ff7_c00037{font-family:ff7_c00037;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00037;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff8_c00037{font-family:ff8_c00037;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00037{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00037{vertical-align:-64.200000px;}
.v0_c00037{vertical-align:0.000000px;}
.lsa_c00037{letter-spacing:-3.000000px;}
.ls6_c00037{letter-spacing:0.000000px;}
.ls5_c00037{letter-spacing:0.660000px;}
.ls0_c00037{letter-spacing:3.000000px;}
.ls2_c00037{letter-spacing:3.177000px;}
.ls4_c00037{letter-spacing:4.860000px;}
.ls8_c00037{letter-spacing:9.000000px;}
.ls1_c00037{letter-spacing:11.700000px;}
.ls3_c00037{letter-spacing:14.400000px;}
.ls9_c00037{letter-spacing:15.000000px;}
.ls7_c00037{letter-spacing:18.000000px;}
.sc__c00037{text-shadow:none;}
.sc0_c00037{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00037{-webkit-text-stroke:0px transparent;}
.sc0_c00037{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8_c00037{word-spacing:-30.060000px;}
.ws6_c00037{word-spacing:-21.906000px;}
.ws9_c00037{word-spacing:-21.045000px;}
.ws3_c00037{word-spacing:-16.500000px;}
.ws1_c00037{word-spacing:-15.060000px;}
.ws2_c00037{word-spacing:-15.000000px;}
.ws5_c00037{word-spacing:-14.868000px;}
.ws4_c00037{word-spacing:-14.340000px;}
.ws0_c00037{word-spacing:-14.160000px;}
.ws7_c00037{word-spacing:-13.053000px;}
.wsa_c00037{word-spacing:0.000000px;}
._1e_c00037{margin-left:-23.028000px;}
._18_c00037{margin-left:-20.970000px;}
._19_c00037{margin-left:-18.996000px;}
._20_c00037{margin-left:-15.390000px;}
._15_c00037{margin-left:-13.620000px;}
._11_c00037{margin-left:-12.420000px;}
._14_c00037{margin-left:-10.434000px;}
._10_c00037{margin-left:-8.820000px;}
._12_c00037{margin-left:-7.560000px;}
._f_c00037{margin-left:-5.880000px;}
._c_c00037{margin-left:-4.620000px;}
._13_c00037{margin-left:-3.000000px;}
._e_c00037{margin-left:-1.020000px;}
._9_c00037{width:1.860000px;}
._7_c00037{width:3.000000px;}
._a_c00037{width:4.080000px;}
._6_c00037{width:5.100000px;}
._b_c00037{width:6.900000px;}
._5_c00037{width:8.640000px;}
._21_c00037{width:9.840000px;}
._d_c00037{width:10.860000px;}
._8_c00037{width:12.180000px;}
._3_c00037{width:13.980000px;}
._4_c00037{width:16.260000px;}
._0_c00037{width:17.520000px;}
._1_c00037{width:19.260000px;}
._29_c00037{width:20.280000px;}
._22_c00037{width:21.600000px;}
._28_c00037{width:22.740000px;}
._16_c00037{width:24.120000px;}
._24_c00037{width:25.740000px;}
._17_c00037{width:26.820000px;}
._2a_c00037{width:28.080000px;}
._1d_c00037{width:30.180000px;}
._2_c00037{width:35.580000px;}
._2b_c00037{width:36.660000px;}
._2c_c00037{width:45.960000px;}
._23_c00037{width:49.020000px;}
._1a_c00037{width:58.680000px;}
._1f_c00037{width:64.386000px;}
._1b_c00037{width:69.636000px;}
._1c_c00037{width:105.360000px;}
._25_c00037{width:125.700000px;}
._27_c00037{width:139.410000px;}
._26_c00037{width:151.581000px;}
._2d_c00037{width:227.880000px;}
._2e_c00037{width:321.720000px;}
.fc2_c00037{color:transparent;}
.fc1_c00037{color:rgb(128,128,128);}
.fc0_c00037{color:rgb(0,0,0);}
.fs7_c00037{font-size:48.000000px;}
.fs1_c00037{font-size:51.000000px;}
.fs3_c00037{font-size:54.000000px;}
.fs4_c00037{font-size:57.000000px;}
.fs0_c00037{font-size:60.000000px;}
.fs6_c00037{font-size:63.000000px;}
.fs5_c00037{font-size:69.000000px;}
.fs2_c00037{font-size:105.000000px;}
.y0_c00037{bottom:0.000000px;}
.y52_c00037{bottom:3.105000px;}
.y51_c00037{bottom:7.228371px;}
.y2a_c00037{bottom:46.965000px;}
.y50_c00037{bottom:48.915000px;}
.y29_c00037{bottom:65.115000px;}
.y4f_c00037{bottom:67.815000px;}
.y28_c00037{bottom:83.715000px;}
.y4e_c00037{bottom:86.115000px;}
.y27_c00037{bottom:102.015000px;}
.y4d_c00037{bottom:104.265000px;}
.y26_c00037{bottom:119.865000px;}
.y4c_c00037{bottom:123.165000px;}
.y25_c00037{bottom:138.765000px;}
.y4b_c00037{bottom:140.865000px;}
.y24_c00037{bottom:156.615000px;}
.y4a_c00037{bottom:158.265000px;}
.y23_c00037{bottom:174.615000px;}
.y49_c00037{bottom:176.565000px;}
.y22_c00037{bottom:193.065000px;}
.y48_c00037{bottom:194.415000px;}
.y21_c00037{bottom:210.915000px;}
.y47_c00037{bottom:211.965000px;}
.y20_c00037{bottom:228.915000px;}
.y46_c00037{bottom:229.515000px;}
.y1f_c00037{bottom:247.065000px;}
.y45_c00037{bottom:247.515000px;}
.y1e_c00037{bottom:265.065000px;}
.y44_c00037{bottom:266.265000px;}
.y1d_c00037{bottom:282.465000px;}
.y43_c00037{bottom:284.265000px;}
.y1c_c00037{bottom:300.465000px;}
.y42_c00037{bottom:301.815000px;}
.y1b_c00037{bottom:319.065000px;}
.y41_c00037{bottom:319.665000px;}
.y1a_c00037{bottom:337.215000px;}
.y19_c00037{bottom:354.765000px;}
.y40_c00037{bottom:355.065000px;}
.y3f_c00037{bottom:372.015000px;}
.y18_c00037{bottom:372.915000px;}
.y3e_c00037{bottom:391.215000px;}
.y17_c00037{bottom:391.515000px;}
.y3d_c00037{bottom:408.915000px;}
.y16_c00037{bottom:409.065000px;}
.y3c_c00037{bottom:427.065000px;}
.y15_c00037{bottom:427.365000px;}
.y3b_c00037{bottom:445.215000px;}
.y14_c00037{bottom:445.515000px;}
.y13_c00037{bottom:463.365000px;}
.y3a_c00037{bottom:481.365000px;}
.y12_c00037{bottom:481.665000px;}
.y39_c00037{bottom:499.515000px;}
.y11_c00037{bottom:500.265000px;}
.y38_c00037{bottom:517.365000px;}
.y10_c00037{bottom:517.815000px;}
.yf_c00037{bottom:535.665000px;}
.y37_c00037{bottom:536.265000px;}
.y36_c00037{bottom:553.215000px;}
.ye_c00037{bottom:553.515000px;}
.y35_c00037{bottom:570.765000px;}
.yd_c00037{bottom:571.515000px;}
.y34_c00037{bottom:589.065000px;}
.yc_c00037{bottom:589.365000px;}
.yb_c00037{bottom:607.815000px;}
.y33_c00037{bottom:625.515000px;}
.ya_c00037{bottom:625.815000px;}
.y32_c00037{bottom:642.915000px;}
.y9_c00037{bottom:644.715000px;}
.y31_c00037{bottom:659.865000px;}
.y8_c00037{bottom:660.915000px;}
.y7_c00037{bottom:679.365000px;}
.y6_c00037{bottom:697.065000px;}
.y30_c00037{bottom:697.665000px;}
.y2f_c00037{bottom:714.465000px;}
.y5_c00037{bottom:715.515000px;}
.y4_c00037{bottom:733.515000px;}
.y2e_c00037{bottom:733.815000px;}
.y3_c00037{bottom:751.665000px;}
.y2d_c00037{bottom:752.265000px;}
.y2c_c00037{bottom:768.915000px;}
.y2_c00037{bottom:769.515000px;}
.y1_c00037{bottom:787.815000px;}
.y2b_c00037{bottom:788.415000px;}
.h9_c00037{height:13.200074px;}
.ha_c00037{height:43.804688px;}
.h8_c00037{height:55.942383px;}
.h7_c00037{height:56.592000px;}
.h4_c00037{height:59.736000px;}
.h2_c00037{height:62.880000px;}
.h5_c00037{height:64.020000px;}
.h6_c00037{height:73.623000px;}
.h3_c00037{height:110.040000px;}
.h0_c00037{height:828.375000px;}
.h1_c00037{height:828.750000px;}
.w1_c00037{width:104.875500px;}
.w0_c00037{width:549.750000px;}
.x0_c00037{left:0.000000px;}
.xa_c00037{left:42.600000px;}
.x2_c00037{left:43.800000px;}
.x5_c00037{left:44.850000px;}
.x3_c00037{left:45.900000px;}
.x9_c00037{left:53.700000px;}
.x7_c00037{left:57.000000px;}
.x6_c00037{left:58.800000px;}
.x8_c00037{left:61.800000px;}
.x4_c00037{left:64.200000px;}
.x1_c00037{left:159.300000px;}
.x16_c00037{left:226.689240px;}
.xb_c00037{left:282.900000px;}
.x15_c00037{left:293.550000px;}
.x11_c00037{left:294.900000px;}
.x10_c00037{left:295.950000px;}
.xf_c00037{left:297.750000px;}
.xd_c00037{left:299.700000px;}
.x13_c00037{left:312.150000px;}
.xc_c00037{left:316.650000px;}
.xe_c00037{left:319.350000px;}
.x14_c00037{left:339.450000px;}
.x12_c00037{left:381.750000px;}
@media print{
.v1_c00037{vertical-align:-57.066667pt;}
.v0_c00037{vertical-align:0.000000pt;}
.lsa_c00037{letter-spacing:-2.666667pt;}
.ls6_c00037{letter-spacing:0.000000pt;}
.ls5_c00037{letter-spacing:0.586667pt;}
.ls0_c00037{letter-spacing:2.666667pt;}
.ls2_c00037{letter-spacing:2.824000pt;}
.ls4_c00037{letter-spacing:4.320000pt;}
.ls8_c00037{letter-spacing:8.000000pt;}
.ls1_c00037{letter-spacing:10.400000pt;}
.ls3_c00037{letter-spacing:12.800000pt;}
.ls9_c00037{letter-spacing:13.333333pt;}
.ls7_c00037{letter-spacing:16.000000pt;}
.ws8_c00037{word-spacing:-26.720000pt;}
.ws6_c00037{word-spacing:-19.472000pt;}
.ws9_c00037{word-spacing:-18.706667pt;}
.ws3_c00037{word-spacing:-14.666667pt;}
.ws1_c00037{word-spacing:-13.386667pt;}
.ws2_c00037{word-spacing:-13.333333pt;}
.ws5_c00037{word-spacing:-13.216000pt;}
.ws4_c00037{word-spacing:-12.746667pt;}
.ws0_c00037{word-spacing:-12.586667pt;}
.ws7_c00037{word-spacing:-11.602667pt;}
.wsa_c00037{word-spacing:0.000000pt;}
._1e_c00037{margin-left:-20.469333pt;}
._18_c00037{margin-left:-18.640000pt;}
._19_c00037{margin-left:-16.885333pt;}
._20_c00037{margin-left:-13.680000pt;}
._15_c00037{margin-left:-12.106667pt;}
._11_c00037{margin-left:-11.040000pt;}
._14_c00037{margin-left:-9.274667pt;}
._10_c00037{margin-left:-7.840000pt;}
._12_c00037{margin-left:-6.720000pt;}
._f_c00037{margin-left:-5.226667pt;}
._c_c00037{margin-left:-4.106667pt;}
._13_c00037{margin-left:-2.666667pt;}
._e_c00037{margin-left:-0.906667pt;}
._9_c00037{width:1.653333pt;}
._7_c00037{width:2.666667pt;}
._a_c00037{width:3.626667pt;}
._6_c00037{width:4.533333pt;}
._b_c00037{width:6.133333pt;}
._5_c00037{width:7.680000pt;}
._21_c00037{width:8.746667pt;}
._d_c00037{width:9.653333pt;}
._8_c00037{width:10.826667pt;}
._3_c00037{width:12.426667pt;}
._4_c00037{width:14.453333pt;}
._0_c00037{width:15.573333pt;}
._1_c00037{width:17.120000pt;}
._29_c00037{width:18.026667pt;}
._22_c00037{width:19.200000pt;}
._28_c00037{width:20.213333pt;}
._16_c00037{width:21.440000pt;}
._24_c00037{width:22.880000pt;}
._17_c00037{width:23.840000pt;}
._2a_c00037{width:24.960000pt;}
._1d_c00037{width:26.826667pt;}
._2_c00037{width:31.626667pt;}
._2b_c00037{width:32.586667pt;}
._2c_c00037{width:40.853333pt;}
._23_c00037{width:43.573333pt;}
._1a_c00037{width:52.160000pt;}
._1f_c00037{width:57.232000pt;}
._1b_c00037{width:61.898667pt;}
._1c_c00037{width:93.653333pt;}
._25_c00037{width:111.733333pt;}
._27_c00037{width:123.920000pt;}
._26_c00037{width:134.738667pt;}
._2d_c00037{width:202.560000pt;}
._2e_c00037{width:285.973333pt;}
.fs7_c00037{font-size:42.666667pt;}
.fs1_c00037{font-size:45.333333pt;}
.fs3_c00037{font-size:48.000000pt;}
.fs4_c00037{font-size:50.666667pt;}
.fs0_c00037{font-size:53.333333pt;}
.fs6_c00037{font-size:56.000000pt;}
.fs5_c00037{font-size:61.333333pt;}
.fs2_c00037{font-size:93.333333pt;}
.y0_c00037{bottom:0.000000pt;}
.y52_c00037{bottom:2.760000pt;}
.y51_c00037{bottom:6.425219pt;}
.y2a_c00037{bottom:41.746667pt;}
.y50_c00037{bottom:43.480000pt;}
.y29_c00037{bottom:57.880000pt;}
.y4f_c00037{bottom:60.280000pt;}
.y28_c00037{bottom:74.413333pt;}
.y4e_c00037{bottom:76.546667pt;}
.y27_c00037{bottom:90.680000pt;}
.y4d_c00037{bottom:92.680000pt;}
.y26_c00037{bottom:106.546667pt;}
.y4c_c00037{bottom:109.480000pt;}
.y25_c00037{bottom:123.346667pt;}
.y4b_c00037{bottom:125.213333pt;}
.y24_c00037{bottom:139.213333pt;}
.y4a_c00037{bottom:140.680000pt;}
.y23_c00037{bottom:155.213333pt;}
.y49_c00037{bottom:156.946667pt;}
.y22_c00037{bottom:171.613333pt;}
.y48_c00037{bottom:172.813333pt;}
.y21_c00037{bottom:187.480000pt;}
.y47_c00037{bottom:188.413333pt;}
.y20_c00037{bottom:203.480000pt;}
.y46_c00037{bottom:204.013333pt;}
.y1f_c00037{bottom:219.613333pt;}
.y45_c00037{bottom:220.013333pt;}
.y1e_c00037{bottom:235.613333pt;}
.y44_c00037{bottom:236.680000pt;}
.y1d_c00037{bottom:251.080000pt;}
.y43_c00037{bottom:252.680000pt;}
.y1c_c00037{bottom:267.080000pt;}
.y42_c00037{bottom:268.280000pt;}
.y1b_c00037{bottom:283.613333pt;}
.y41_c00037{bottom:284.146667pt;}
.y1a_c00037{bottom:299.746667pt;}
.y19_c00037{bottom:315.346667pt;}
.y40_c00037{bottom:315.613333pt;}
.y3f_c00037{bottom:330.680000pt;}
.y18_c00037{bottom:331.480000pt;}
.y3e_c00037{bottom:347.746667pt;}
.y17_c00037{bottom:348.013333pt;}
.y3d_c00037{bottom:363.480000pt;}
.y16_c00037{bottom:363.613333pt;}
.y3c_c00037{bottom:379.613333pt;}
.y15_c00037{bottom:379.880000pt;}
.y3b_c00037{bottom:395.746667pt;}
.y14_c00037{bottom:396.013333pt;}
.y13_c00037{bottom:411.880000pt;}
.y3a_c00037{bottom:427.880000pt;}
.y12_c00037{bottom:428.146667pt;}
.y39_c00037{bottom:444.013333pt;}
.y11_c00037{bottom:444.680000pt;}
.y38_c00037{bottom:459.880000pt;}
.y10_c00037{bottom:460.280000pt;}
.yf_c00037{bottom:476.146667pt;}
.y37_c00037{bottom:476.680000pt;}
.y36_c00037{bottom:491.746667pt;}
.ye_c00037{bottom:492.013333pt;}
.y35_c00037{bottom:507.346667pt;}
.yd_c00037{bottom:508.013333pt;}
.y34_c00037{bottom:523.613333pt;}
.yc_c00037{bottom:523.880000pt;}
.yb_c00037{bottom:540.280000pt;}
.y33_c00037{bottom:556.013333pt;}
.ya_c00037{bottom:556.280000pt;}
.y32_c00037{bottom:571.480000pt;}
.y9_c00037{bottom:573.080000pt;}
.y31_c00037{bottom:586.546667pt;}
.y8_c00037{bottom:587.480000pt;}
.y7_c00037{bottom:603.880000pt;}
.y6_c00037{bottom:619.613333pt;}
.y30_c00037{bottom:620.146667pt;}
.y2f_c00037{bottom:635.080000pt;}
.y5_c00037{bottom:636.013333pt;}
.y4_c00037{bottom:652.013333pt;}
.y2e_c00037{bottom:652.280000pt;}
.y3_c00037{bottom:668.146667pt;}
.y2d_c00037{bottom:668.680000pt;}
.y2c_c00037{bottom:683.480000pt;}
.y2_c00037{bottom:684.013333pt;}
.y1_c00037{bottom:700.280000pt;}
.y2b_c00037{bottom:700.813333pt;}
.h9_c00037{height:11.733399pt;}
.ha_c00037{height:38.937500pt;}
.h8_c00037{height:49.726562pt;}
.h7_c00037{height:50.304000pt;}
.h4_c00037{height:53.098667pt;}
.h2_c00037{height:55.893333pt;}
.h5_c00037{height:56.906667pt;}
.h6_c00037{height:65.442667pt;}
.h3_c00037{height:97.813333pt;}
.h0_c00037{height:736.333333pt;}
.h1_c00037{height:736.666667pt;}
.w1_c00037{width:93.222667pt;}
.w0_c00037{width:488.666667pt;}
.x0_c00037{left:0.000000pt;}
.xa_c00037{left:37.866667pt;}
.x2_c00037{left:38.933333pt;}
.x5_c00037{left:39.866667pt;}
.x3_c00037{left:40.800000pt;}
.x9_c00037{left:47.733333pt;}
.x7_c00037{left:50.666667pt;}
.x6_c00037{left:52.266667pt;}
.x8_c00037{left:54.933333pt;}
.x4_c00037{left:57.066667pt;}
.x1_c00037{left:141.600000pt;}
.x16_c00037{left:201.501546pt;}
.xb_c00037{left:251.466667pt;}
.x15_c00037{left:260.933333pt;}
.x11_c00037{left:262.133333pt;}
.x10_c00037{left:263.066667pt;}
.xf_c00037{left:264.666667pt;}
.xd_c00037{left:266.400000pt;}
.x13_c00037{left:277.466667pt;}
.xc_c00037{left:281.466667pt;}
.xe_c00037{left:283.866667pt;}
.x14_c00037{left:301.733333pt;}
.x12_c00037{left:339.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_59a3094b2c0318d13e04152f.woff2')format("woff");}.ff1_c00038{font-family:ff1_c00038;line-height:1.575000;font-style:normal;font-weight:normal;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_6e62f7570a0cab9978cf7c42.woff2')format("woff");}.ff2_c00038{font-family:ff2_c00038;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00038;src:url('chunks/assets/font_662cc22fe12c40e772357485.woff2')format("woff");}.ff3_c00038{font-family:ff3_c00038;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00038;src:url('chunks/assets/font_db500b565522a8b322346eca.woff2')format("woff");}.ff4_c00038{font-family:ff4_c00038;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00038;src:url('chunks/assets/font_53970840027122674b0aca81.woff2')format("woff");}.ff5_c00038{font-family:ff5_c00038;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00038;src:url('chunks/assets/font_f960e1ae2ce890a72a48630a.woff2')format("woff");}.ff6_c00038{font-family:ff6_c00038;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00038;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff7_c00038{font-family:ff7_c00038;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00038{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00038{vertical-align:0.000000px;}
.lsb_c00038{letter-spacing:-3.000000px;}
.ls9_c00038{letter-spacing:0.000000px;}
.ls1_c00038{letter-spacing:2.850000px;}
.ls8_c00038{letter-spacing:3.600000px;}
.ls7_c00038{letter-spacing:4.620000px;}
.lsa_c00038{letter-spacing:6.000000px;}
.ls6_c00038{letter-spacing:7.200000px;}
.ls2_c00038{letter-spacing:7.347000px;}
.ls5_c00038{letter-spacing:8.850000px;}
.ls0_c00038{letter-spacing:13.500000px;}
.lsc_c00038{letter-spacing:15.000000px;}
.ls4_c00038{letter-spacing:26.805000px;}
.ls3_c00038{letter-spacing:44.850000px;}
.sc__c00038{text-shadow:none;}
.sc0_c00038{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00038{-webkit-text-stroke:0px transparent;}
.sc0_c00038{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00038{word-spacing:-21.813000px;}
.ws0_c00038{word-spacing:-15.750000px;}
.ws2_c00038{word-spacing:-15.060000px;}
.ws4_c00038{word-spacing:-15.000000px;}
.ws3_c00038{word-spacing:-14.160000px;}
.ws5_c00038{word-spacing:-12.750000px;}
.ws6_c00038{word-spacing:0.000000px;}
._28_c00038{margin-left:-23.892000px;}
._2e_c00038{margin-left:-21.180000px;}
._27_c00038{margin-left:-17.169000px;}
._a_c00038{margin-left:-15.120000px;}
._22_c00038{margin-left:-12.990000px;}
._13_c00038{margin-left:-11.637000px;}
._36_c00038{margin-left:-10.143000px;}
._16_c00038{margin-left:-9.135000px;}
._b_c00038{margin-left:-7.938000px;}
._6_c00038{margin-left:-6.174000px;}
._10_c00038{margin-left:-4.884000px;}
._21_c00038{margin-left:-3.702000px;}
._9_c00038{margin-left:-2.646000px;}
._12_c00038{margin-left:-1.449000px;}
._e_c00038{width:1.197000px;}
._c_c00038{width:2.520000px;}
._d_c00038{width:4.284000px;}
._3_c00038{width:5.355000px;}
._2_c00038{width:7.119000px;}
._4_c00038{width:8.253000px;}
._8_c00038{width:9.450000px;}
._1_c00038{width:10.773000px;}
._11_c00038{width:11.844000px;}
._0_c00038{width:13.608000px;}
._2c_c00038{width:16.017000px;}
._1d_c00038{width:17.064000px;}
._1a_c00038{width:19.026000px;}
._24_c00038{width:20.697000px;}
._18_c00038{width:22.365000px;}
._19_c00038{width:23.373000px;}
._1e_c00038{width:24.768000px;}
._15_c00038{width:26.004000px;}
._37_c00038{width:27.987000px;}
._1c_c00038{width:29.925000px;}
._33_c00038{width:31.701000px;}
._1b_c00038{width:32.886000px;}
._35_c00038{width:35.427000px;}
._1f_c00038{width:38.154000px;}
._5_c00038{width:39.249000px;}
._14_c00038{width:43.746000px;}
._7_c00038{width:48.069000px;}
._2b_c00038{width:60.294000px;}
._34_c00038{width:61.656000px;}
._29_c00038{width:62.739000px;}
._2a_c00038{width:78.615000px;}
._25_c00038{width:84.135000px;}
._17_c00038{width:88.956000px;}
._23_c00038{width:91.242000px;}
._30_c00038{width:109.650000px;}
._32_c00038{width:117.492000px;}
._31_c00038{width:133.926000px;}
._26_c00038{width:135.318000px;}
._20_c00038{width:153.729000px;}
._2f_c00038{width:195.633000px;}
._f_c00038{width:224.208000px;}
._2d_c00038{width:287.142000px;}
.fc2_c00038{color:transparent;}
.fc1_c00038{color:rgb(128,128,128);}
.fc0_c00038{color:rgb(0,0,0);}
.fs2_c00038{font-size:45.000000px;}
.fs4_c00038{font-size:48.000000px;}
.fs3_c00038{font-size:51.000000px;}
.fs1_c00038{font-size:60.000000px;}
.fs0_c00038{font-size:63.000000px;}
.y0_c00038{bottom:0.000000px;}
.y57_c00038{bottom:3.105000px;}
.y56_c00038{bottom:7.228357px;}
.y55_c00038{bottom:36.780000px;}
.y54_c00038{bottom:55.380000px;}
.y2a_c00038{bottom:55.680000px;}
.y53_c00038{bottom:72.630000px;}
.y29_c00038{bottom:74.280000px;}
.y28_c00038{bottom:92.130000px;}
.y52_c00038{bottom:92.580000px;}
.y51_c00038{bottom:109.080000px;}
.y27_c00038{bottom:111.330000px;}
.y50_c00038{bottom:126.930000px;}
.y26_c00038{bottom:127.530000px;}
.y4f_c00038{bottom:145.080000px;}
.y25_c00038{bottom:146.130000px;}
.y4e_c00038{bottom:162.630000px;}
.y24_c00038{bottom:163.680000px;}
.y4d_c00038{bottom:181.230000px;}
.y23_c00038{bottom:182.280000px;}
.y4c_c00038{bottom:199.530000px;}
.y22_c00038{bottom:200.430000px;}
.y4b_c00038{bottom:216.030000px;}
.y21_c00038{bottom:217.980000px;}
.y4a_c00038{bottom:234.630000px;}
.y20_c00038{bottom:236.280000px;}
.y49_c00038{bottom:251.880000px;}
.y1f_c00038{bottom:254.580000px;}
.y48_c00038{bottom:270.330000px;}
.y1e_c00038{bottom:270.630000px;}
.y47_c00038{bottom:287.580000px;}
.y1d_c00038{bottom:289.980000px;}
.y46_c00038{bottom:305.880000px;}
.y1c_c00038{bottom:307.080000px;}
.y45_c00038{bottom:324.330000px;}
.y1b_c00038{bottom:325.680000px;}
.y44_c00038{bottom:342.330000px;}
.y1a_c00038{bottom:343.530000px;}
.y43_c00038{bottom:360.780000px;}
.y19_c00038{bottom:361.830000px;}
.y42_c00038{bottom:378.030000px;}
.y18_c00038{bottom:380.130000px;}
.y41_c00038{bottom:396.330000px;}
.y17_c00038{bottom:397.530000px;}
.y40_c00038{bottom:414.480000px;}
.y16_c00038{bottom:415.230000px;}
.y3f_c00038{bottom:432.780000px;}
.y15_c00038{bottom:433.380000px;}
.y3e_c00038{bottom:450.330000px;}
.y14_c00038{bottom:450.930000px;}
.y13_c00038{bottom:467.880000px;}
.y3d_c00038{bottom:468.780000px;}
.y12_c00038{bottom:486.030000px;}
.y3c_c00038{bottom:486.780000px;}
.y11_c00038{bottom:504.180000px;}
.y3b_c00038{bottom:504.930000px;}
.y3a_c00038{bottom:523.080000px;}
.y10_c00038{bottom:523.230000px;}
.yf_c00038{bottom:540.630000px;}
.y39_c00038{bottom:541.980000px;}
.ye_c00038{bottom:558.330000px;}
.y38_c00038{bottom:559.230000px;}
.yd_c00038{bottom:575.730000px;}
.y37_c00038{bottom:577.830000px;}
.yc_c00038{bottom:594.780000px;}
.y36_c00038{bottom:595.680000px;}
.yb_c00038{bottom:612.630000px;}
.y35_c00038{bottom:613.530000px;}
.ya_c00038{bottom:630.480000px;}
.y34_c00038{bottom:631.830000px;}
.y9_c00038{bottom:648.330000px;}
.y33_c00038{bottom:650.430000px;}
.y8_c00038{bottom:666.330000px;}
.y32_c00038{bottom:669.330000px;}
.y7_c00038{bottom:685.080000px;}
.y31_c00038{bottom:686.580000px;}
.y6_c00038{bottom:703.380000px;}
.y30_c00038{bottom:705.480000px;}
.y5_c00038{bottom:720.330000px;}
.y2f_c00038{bottom:722.580000px;}
.y4_c00038{bottom:738.780000px;}
.y2e_c00038{bottom:740.880000px;}
.y3_c00038{bottom:756.330000px;}
.y2d_c00038{bottom:758.730000px;}
.y2_c00038{bottom:775.530000px;}
.y2c_c00038{bottom:777.330000px;}
.y1_c00038{bottom:794.880000px;}
.y2b_c00038{bottom:795.780000px;}
.h6_c00038{height:13.200074px;}
.h7_c00038{height:43.804688px;}
.h5_c00038{height:53.448000px;}
.h3_c00038{height:62.880000px;}
.h4_c00038{height:64.020000px;}
.h2_c00038{height:67.221000px;}
.h0_c00038{height:822.450000px;}
.h1_c00038{height:822.750000px;}
.w2_c00038{width:104.875500px;}
.w0_c00038{width:559.950000px;}
.w1_c00038{width:560.250000px;}
.x0_c00038{left:0.000000px;}
.x3_c00038{left:26.700000px;}
.x4_c00038{left:28.350000px;}
.x6_c00038{left:29.700000px;}
.x7_c00038{left:30.750000px;}
.xa_c00038{left:33.300000px;}
.x5_c00038{left:37.800000px;}
.x2_c00038{left:42.900000px;}
.x9_c00038{left:44.850000px;}
.x8_c00038{left:54.600000px;}
.x1_c00038{left:117.450000px;}
.x16_c00038{left:231.789230px;}
.xb_c00038{left:266.850000px;}
.x15_c00038{left:271.350000px;}
.xc_c00038{left:276.750000px;}
.xd_c00038{left:277.800000px;}
.x10_c00038{left:279.750000px;}
.x12_c00038{left:280.800000px;}
.xf_c00038{left:292.950000px;}
.xe_c00038{left:295.950000px;}
.x11_c00038{left:298.650000px;}
.x14_c00038{left:328.350000px;}
.x13_c00038{left:369.450000px;}
@media print{
.v0_c00038{vertical-align:0.000000pt;}
.lsb_c00038{letter-spacing:-2.666667pt;}
.ls9_c00038{letter-spacing:0.000000pt;}
.ls1_c00038{letter-spacing:2.533333pt;}
.ls8_c00038{letter-spacing:3.200000pt;}
.ls7_c00038{letter-spacing:4.106667pt;}
.lsa_c00038{letter-spacing:5.333333pt;}
.ls6_c00038{letter-spacing:6.400000pt;}
.ls2_c00038{letter-spacing:6.530667pt;}
.ls5_c00038{letter-spacing:7.866667pt;}
.ls0_c00038{letter-spacing:12.000000pt;}
.lsc_c00038{letter-spacing:13.333333pt;}
.ls4_c00038{letter-spacing:23.826667pt;}
.ls3_c00038{letter-spacing:39.866667pt;}
.ws1_c00038{word-spacing:-19.389333pt;}
.ws0_c00038{word-spacing:-14.000000pt;}
.ws2_c00038{word-spacing:-13.386667pt;}
.ws4_c00038{word-spacing:-13.333333pt;}
.ws3_c00038{word-spacing:-12.586667pt;}
.ws5_c00038{word-spacing:-11.333333pt;}
.ws6_c00038{word-spacing:0.000000pt;}
._28_c00038{margin-left:-21.237333pt;}
._2e_c00038{margin-left:-18.826667pt;}
._27_c00038{margin-left:-15.261333pt;}
._a_c00038{margin-left:-13.440000pt;}
._22_c00038{margin-left:-11.546667pt;}
._13_c00038{margin-left:-10.344000pt;}
._36_c00038{margin-left:-9.016000pt;}
._16_c00038{margin-left:-8.120000pt;}
._b_c00038{margin-left:-7.056000pt;}
._6_c00038{margin-left:-5.488000pt;}
._10_c00038{margin-left:-4.341333pt;}
._21_c00038{margin-left:-3.290667pt;}
._9_c00038{margin-left:-2.352000pt;}
._12_c00038{margin-left:-1.288000pt;}
._e_c00038{width:1.064000pt;}
._c_c00038{width:2.240000pt;}
._d_c00038{width:3.808000pt;}
._3_c00038{width:4.760000pt;}
._2_c00038{width:6.328000pt;}
._4_c00038{width:7.336000pt;}
._8_c00038{width:8.400000pt;}
._1_c00038{width:9.576000pt;}
._11_c00038{width:10.528000pt;}
._0_c00038{width:12.096000pt;}
._2c_c00038{width:14.237333pt;}
._1d_c00038{width:15.168000pt;}
._1a_c00038{width:16.912000pt;}
._24_c00038{width:18.397333pt;}
._18_c00038{width:19.880000pt;}
._19_c00038{width:20.776000pt;}
._1e_c00038{width:22.016000pt;}
._15_c00038{width:23.114667pt;}
._37_c00038{width:24.877333pt;}
._1c_c00038{width:26.600000pt;}
._33_c00038{width:28.178667pt;}
._1b_c00038{width:29.232000pt;}
._35_c00038{width:31.490667pt;}
._1f_c00038{width:33.914667pt;}
._5_c00038{width:34.888000pt;}
._14_c00038{width:38.885333pt;}
._7_c00038{width:42.728000pt;}
._2b_c00038{width:53.594667pt;}
._34_c00038{width:54.805333pt;}
._29_c00038{width:55.768000pt;}
._2a_c00038{width:69.880000pt;}
._25_c00038{width:74.786667pt;}
._17_c00038{width:79.072000pt;}
._23_c00038{width:81.104000pt;}
._30_c00038{width:97.466667pt;}
._32_c00038{width:104.437333pt;}
._31_c00038{width:119.045333pt;}
._26_c00038{width:120.282667pt;}
._20_c00038{width:136.648000pt;}
._2f_c00038{width:173.896000pt;}
._f_c00038{width:199.296000pt;}
._2d_c00038{width:255.237333pt;}
.fs2_c00038{font-size:40.000000pt;}
.fs4_c00038{font-size:42.666667pt;}
.fs3_c00038{font-size:45.333333pt;}
.fs1_c00038{font-size:53.333333pt;}
.fs0_c00038{font-size:56.000000pt;}
.y0_c00038{bottom:0.000000pt;}
.y57_c00038{bottom:2.760000pt;}
.y56_c00038{bottom:6.425206pt;}
.y55_c00038{bottom:32.693333pt;}
.y54_c00038{bottom:49.226667pt;}
.y2a_c00038{bottom:49.493333pt;}
.y53_c00038{bottom:64.560000pt;}
.y29_c00038{bottom:66.026667pt;}
.y28_c00038{bottom:81.893333pt;}
.y52_c00038{bottom:82.293333pt;}
.y51_c00038{bottom:96.960000pt;}
.y27_c00038{bottom:98.960000pt;}
.y50_c00038{bottom:112.826667pt;}
.y26_c00038{bottom:113.360000pt;}
.y4f_c00038{bottom:128.960000pt;}
.y25_c00038{bottom:129.893333pt;}
.y4e_c00038{bottom:144.560000pt;}
.y24_c00038{bottom:145.493333pt;}
.y4d_c00038{bottom:161.093333pt;}
.y23_c00038{bottom:162.026667pt;}
.y4c_c00038{bottom:177.360000pt;}
.y22_c00038{bottom:178.160000pt;}
.y4b_c00038{bottom:192.026667pt;}
.y21_c00038{bottom:193.760000pt;}
.y4a_c00038{bottom:208.560000pt;}
.y20_c00038{bottom:210.026667pt;}
.y49_c00038{bottom:223.893333pt;}
.y1f_c00038{bottom:226.293333pt;}
.y48_c00038{bottom:240.293333pt;}
.y1e_c00038{bottom:240.560000pt;}
.y47_c00038{bottom:255.626667pt;}
.y1d_c00038{bottom:257.760000pt;}
.y46_c00038{bottom:271.893333pt;}
.y1c_c00038{bottom:272.960000pt;}
.y45_c00038{bottom:288.293333pt;}
.y1b_c00038{bottom:289.493333pt;}
.y44_c00038{bottom:304.293333pt;}
.y1a_c00038{bottom:305.360000pt;}
.y43_c00038{bottom:320.693333pt;}
.y19_c00038{bottom:321.626667pt;}
.y42_c00038{bottom:336.026667pt;}
.y18_c00038{bottom:337.893333pt;}
.y41_c00038{bottom:352.293333pt;}
.y17_c00038{bottom:353.360000pt;}
.y40_c00038{bottom:368.426667pt;}
.y16_c00038{bottom:369.093333pt;}
.y3f_c00038{bottom:384.693333pt;}
.y15_c00038{bottom:385.226667pt;}
.y3e_c00038{bottom:400.293333pt;}
.y14_c00038{bottom:400.826667pt;}
.y13_c00038{bottom:415.893333pt;}
.y3d_c00038{bottom:416.693333pt;}
.y12_c00038{bottom:432.026667pt;}
.y3c_c00038{bottom:432.693333pt;}
.y11_c00038{bottom:448.160000pt;}
.y3b_c00038{bottom:448.826667pt;}
.y3a_c00038{bottom:464.960000pt;}
.y10_c00038{bottom:465.093333pt;}
.yf_c00038{bottom:480.560000pt;}
.y39_c00038{bottom:481.760000pt;}
.ye_c00038{bottom:496.293333pt;}
.y38_c00038{bottom:497.093333pt;}
.yd_c00038{bottom:511.760000pt;}
.y37_c00038{bottom:513.626667pt;}
.yc_c00038{bottom:528.693333pt;}
.y36_c00038{bottom:529.493333pt;}
.yb_c00038{bottom:544.560000pt;}
.y35_c00038{bottom:545.360000pt;}
.ya_c00038{bottom:560.426667pt;}
.y34_c00038{bottom:561.626667pt;}
.y9_c00038{bottom:576.293333pt;}
.y33_c00038{bottom:578.160000pt;}
.y8_c00038{bottom:592.293333pt;}
.y32_c00038{bottom:594.960000pt;}
.y7_c00038{bottom:608.960000pt;}
.y31_c00038{bottom:610.293333pt;}
.y6_c00038{bottom:625.226667pt;}
.y30_c00038{bottom:627.093333pt;}
.y5_c00038{bottom:640.293333pt;}
.y2f_c00038{bottom:642.293333pt;}
.y4_c00038{bottom:656.693333pt;}
.y2e_c00038{bottom:658.560000pt;}
.y3_c00038{bottom:672.293333pt;}
.y2d_c00038{bottom:674.426667pt;}
.y2_c00038{bottom:689.360000pt;}
.y2c_c00038{bottom:690.960000pt;}
.y1_c00038{bottom:706.560000pt;}
.y2b_c00038{bottom:707.360000pt;}
.h6_c00038{height:11.733399pt;}
.h7_c00038{height:38.937500pt;}
.h5_c00038{height:47.509333pt;}
.h3_c00038{height:55.893333pt;}
.h4_c00038{height:56.906667pt;}
.h2_c00038{height:59.752000pt;}
.h0_c00038{height:731.066667pt;}
.h1_c00038{height:731.333333pt;}
.w2_c00038{width:93.222667pt;}
.w0_c00038{width:497.733333pt;}
.w1_c00038{width:498.000000pt;}
.x0_c00038{left:0.000000pt;}
.x3_c00038{left:23.733333pt;}
.x4_c00038{left:25.200000pt;}
.x6_c00038{left:26.400000pt;}
.x7_c00038{left:27.333333pt;}
.xa_c00038{left:29.600000pt;}
.x5_c00038{left:33.600000pt;}
.x2_c00038{left:38.133333pt;}
.x9_c00038{left:39.866667pt;}
.x8_c00038{left:48.533333pt;}
.x1_c00038{left:104.400000pt;}
.x16_c00038{left:206.034871pt;}
.xb_c00038{left:237.200000pt;}
.x15_c00038{left:241.200000pt;}
.xc_c00038{left:246.000000pt;}
.xd_c00038{left:246.933333pt;}
.x10_c00038{left:248.666667pt;}
.x12_c00038{left:249.600000pt;}
.xf_c00038{left:260.400000pt;}
.xe_c00038{left:263.066667pt;}
.x11_c00038{left:265.466667pt;}
.x14_c00038{left:291.866667pt;}
.x13_c00038{left:328.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_7fe1a2e4e82641bdaa069e8f.woff2')format("woff");}.ff1_c00039{font-family:ff1_c00039;line-height:1.437000;font-style:normal;font-weight:normal;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_de1cf30b41fe31d6b84d7624.woff2')format("woff");}.ff2_c00039{font-family:ff2_c00039;line-height:1.437000;font-style:normal;font-weight:normal;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_0c9556d7b7345d6738e55d87.woff2')format("woff");}.ff3_c00039{font-family:ff3_c00039;line-height:1.437000;font-style:normal;font-weight:normal;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_0ce391de997f24f9f9dd37f4.woff2')format("woff");}.ff4_c00039{font-family:ff4_c00039;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00039;src:url('chunks/assets/font_e83cf55d6498a1121a9bf420.woff2')format("woff");}.ff5_c00039{font-family:ff5_c00039;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00039;src:url('chunks/assets/font_dbaac9727500f60981ffc26c.woff2')format("woff");}.ff6_c00039{font-family:ff6_c00039;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00039;src:url('chunks/assets/font_98b2fae5c23816829a8199d7.woff2')format("woff");}.ff7_c00039{font-family:ff7_c00039;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00039;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff8_c00039{font-family:ff8_c00039;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00039{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00039{vertical-align:0.000000px;}
.lsc_c00039{letter-spacing:-18.000000px;}
.lsa_c00039{letter-spacing:0.000000px;}
.ls0_c00039{letter-spacing:1.605000px;}
.ls2_c00039{letter-spacing:4.860000px;}
.ls1_c00039{letter-spacing:5.400000px;}
.ls3_c00039{letter-spacing:6.060000px;}
.ls7_c00039{letter-spacing:7.200000px;}
.ls4_c00039{letter-spacing:10.200000px;}
.ls8_c00039{letter-spacing:12.600000px;}
.ls6_c00039{letter-spacing:12.660000px;}
.lsb_c00039{letter-spacing:15.000000px;}
.ls9_c00039{letter-spacing:21.000000px;}
.ls5_c00039{letter-spacing:38.940000px;}
.sc__c00039{text-shadow:none;}
.sc0_c00039{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00039{-webkit-text-stroke:0px transparent;}
.sc0_c00039{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00039{word-spacing:-30.060000px;}
.ws7_c00039{word-spacing:-15.060000px;}
.ws1_c00039{word-spacing:-14.160000px;}
.ws5_c00039{word-spacing:-11.160000px;}
.ws3_c00039{word-spacing:-1.920000px;}
.ws8_c00039{word-spacing:0.000000px;}
.ws2_c00039{word-spacing:1.200000px;}
.ws0_c00039{word-spacing:7.104000px;}
.ws6_c00039{word-spacing:17.916000px;}
._28_c00039{margin-left:-26.820000px;}
._25_c00039{margin-left:-25.200000px;}
._1d_c00039{margin-left:-22.560000px;}
._32_c00039{margin-left:-21.540000px;}
._1f_c00039{margin-left:-12.720000px;}
._26_c00039{margin-left:-10.740000px;}
._10_c00039{margin-left:-7.920000px;}
._1c_c00039{margin-left:-6.120000px;}
._29_c00039{margin-left:-5.100000px;}
._e_c00039{margin-left:-3.480000px;}
._11_c00039{margin-left:-2.400000px;}
._a_c00039{margin-left:-1.260000px;}
._b_c00039{width:1.920000px;}
._5_c00039{width:3.360000px;}
._7_c00039{width:4.680000px;}
._c_c00039{width:6.180000px;}
._8_c00039{width:7.860000px;}
._12_c00039{width:9.120000px;}
._9_c00039{width:10.200000px;}
._14_c00039{width:12.000000px;}
._1_c00039{width:13.140000px;}
._19_c00039{width:15.420000px;}
._f_c00039{width:16.980000px;}
._0_c00039{width:19.200000px;}
._4_c00039{width:20.448000px;}
._3_c00039{width:21.936000px;}
._2d_c00039{width:23.520000px;}
._1b_c00039{width:24.540000px;}
._17_c00039{width:25.860000px;}
._1a_c00039{width:27.240000px;}
._16_c00039{width:29.520000px;}
._27_c00039{width:30.540000px;}
._2a_c00039{width:34.380000px;}
._2_c00039{width:36.540000px;}
._24_c00039{width:42.840000px;}
._21_c00039{width:46.020000px;}
._15_c00039{width:49.980000px;}
._2b_c00039{width:55.686000px;}
._2c_c00039{width:58.440000px;}
._2e_c00039{width:67.500000px;}
._2f_c00039{width:74.040000px;}
._d_c00039{width:78.120000px;}
._20_c00039{width:80.940000px;}
._22_c00039{width:86.160000px;}
._1e_c00039{width:95.940000px;}
._18_c00039{width:118.080000px;}
._13_c00039{width:125.100000px;}
._23_c00039{width:126.600000px;}
._6_c00039{width:133.740000px;}
._31_c00039{width:199.080000px;}
._30_c00039{width:246.660000px;}
._33_c00039{width:552.420000px;}
.fc2_c00039{color:transparent;}
.fc1_c00039{color:rgb(128,128,128);}
.fc0_c00039{color:rgb(0,0,0);}
.fs2_c00039{font-size:45.000000px;}
.fs1_c00039{font-size:48.000000px;}
.fs3_c00039{font-size:51.000000px;}
.fs0_c00039{font-size:60.000000px;}
.fs5_c00039{font-size:69.000000px;}
.fs4_c00039{font-size:84.000000px;}
.y0_c00039{bottom:0.000000px;}
.y56_c00039{bottom:3.105000px;}
.y55_c00039{bottom:7.228369px;}
.y2a_c00039{bottom:25.320000px;}
.y54_c00039{bottom:26.370000px;}
.y29_c00039{bottom:44.520000px;}
.y53_c00039{bottom:46.470000px;}
.y28_c00039{bottom:62.820000px;}
.y52_c00039{bottom:65.520000px;}
.y27_c00039{bottom:81.270000px;}
.y51_c00039{bottom:83.670000px;}
.y26_c00039{bottom:99.120000px;}
.y50_c00039{bottom:101.220000px;}
.y25_c00039{bottom:117.720000px;}
.y4f_c00039{bottom:119.820000px;}
.y24_c00039{bottom:135.270000px;}
.y4e_c00039{bottom:137.970000px;}
.y23_c00039{bottom:153.270000px;}
.y4d_c00039{bottom:155.820000px;}
.y4c_c00039{bottom:174.120000px;}
.y22_c00039{bottom:189.270000px;}
.y4b_c00039{bottom:191.670000px;}
.y21_c00039{bottom:207.570000px;}
.y4a_c00039{bottom:208.620000px;}
.y20_c00039{bottom:225.720000px;}
.y49_c00039{bottom:227.070000px;}
.y1f_c00039{bottom:243.570000px;}
.y48_c00039{bottom:244.920000px;}
.y1e_c00039{bottom:261.870000px;}
.y47_c00039{bottom:263.520000px;}
.y1d_c00039{bottom:278.670000px;}
.y46_c00039{bottom:281.070000px;}
.y1c_c00039{bottom:297.570000px;}
.y45_c00039{bottom:298.920000px;}
.y1b_c00039{bottom:315.270000px;}
.y44_c00039{bottom:316.470000px;}
.y1a_c00039{bottom:331.770000px;}
.y43_c00039{bottom:334.470000px;}
.y19_c00039{bottom:351.270000px;}
.y18_c00039{bottom:368.820000px;}
.y42_c00039{bottom:369.870000px;}
.y17_c00039{bottom:386.670000px;}
.y41_c00039{bottom:389.070000px;}
.y16_c00039{bottom:404.370000px;}
.y40_c00039{bottom:406.770000px;}
.y15_c00039{bottom:423.120000px;}
.y3f_c00039{bottom:424.620000px;}
.y14_c00039{bottom:440.820000px;}
.y3e_c00039{bottom:442.470000px;}
.y13_c00039{bottom:458.670000px;}
.y3d_c00039{bottom:460.620000px;}
.y12_c00039{bottom:476.520000px;}
.y3c_c00039{bottom:478.920000px;}
.y11_c00039{bottom:494.820000px;}
.y3b_c00039{bottom:498.120000px;}
.y10_c00039{bottom:512.970000px;}
.y3a_c00039{bottom:514.620000px;}
.yf_c00039{bottom:530.520000px;}
.y39_c00039{bottom:532.920000px;}
.ye_c00039{bottom:548.820000px;}
.y38_c00039{bottom:550.170000px;}
.yd_c00039{bottom:566.970000px;}
.y37_c00039{bottom:569.070000px;}
.yc_c00039{bottom:585.120000px;}
.y36_c00039{bottom:587.220000px;}
.yb_c00039{bottom:603.120000px;}
.y35_c00039{bottom:605.070000px;}
.ya_c00039{bottom:620.370000px;}
.y34_c00039{bottom:623.070000px;}
.y9_c00039{bottom:638.820000px;}
.y33_c00039{bottom:641.220000px;}
.y8_c00039{bottom:656.820000px;}
.y32_c00039{bottom:659.070000px;}
.y7_c00039{bottom:675.270000px;}
.y31_c00039{bottom:677.070000px;}
.y6_c00039{bottom:693.270000px;}
.y30_c00039{bottom:695.220000px;}
.y5_c00039{bottom:711.420000px;}
.y2f_c00039{bottom:713.520000px;}
.y4_c00039{bottom:729.570000px;}
.y2e_c00039{bottom:732.270000px;}
.y3_c00039{bottom:747.870000px;}
.y2d_c00039{bottom:750.270000px;}
.y2_c00039{bottom:766.020000px;}
.y2c_c00039{bottom:768.720000px;}
.y1_c00039{bottom:783.720000px;}
.y2b_c00039{bottom:786.270000px;}
.h6_c00039{height:13.200073px;}
.h7_c00039{height:43.804688px;}
.h2_c00039{height:62.880000px;}
.h3_c00039{height:64.020000px;}
.h5_c00039{height:72.312000px;}
.h4_c00039{height:86.338763px;}
.h1_c00039{height:824.250000px;}
.h0_c00039{height:824.550000px;}
.w2_c00039{width:104.875500px;}
.w1_c00039{width:547.500000px;}
.w0_c00039{width:547.575000px;}
.x0_c00039{left:0.000000px;}
.xa_c00039{left:8.400000px;}
.xb_c00039{left:12.150000px;}
.x9_c00039{left:32.400000px;}
.x8_c00039{left:36.000000px;}
.x4_c00039{left:38.100000px;}
.x3_c00039{left:39.150000px;}
.x7_c00039{left:40.500000px;}
.x5_c00039{left:44.550000px;}
.xc_c00039{left:53.250000px;}
.x6_c00039{left:54.300000px;}
.x2_c00039{left:55.650000px;}
.xd_c00039{left:82.650000px;}
.x1_c00039{left:148.950000px;}
.x19_c00039{left:225.601730px;}
.x15_c00039{left:288.900000px;}
.x10_c00039{left:290.250000px;}
.x11_c00039{left:291.900000px;}
.x16_c00039{left:292.950000px;}
.xe_c00039{left:295.650000px;}
.x13_c00039{left:299.100000px;}
.x18_c00039{left:301.350000px;}
.x14_c00039{left:304.500000px;}
.x12_c00039{left:308.100000px;}
.xf_c00039{left:311.100000px;}
.x17_c00039{left:366.300000px;}
@media print{
.v0_c00039{vertical-align:0.000000pt;}
.lsc_c00039{letter-spacing:-16.000000pt;}
.lsa_c00039{letter-spacing:0.000000pt;}
.ls0_c00039{letter-spacing:1.426667pt;}
.ls2_c00039{letter-spacing:4.320000pt;}
.ls1_c00039{letter-spacing:4.800000pt;}
.ls3_c00039{letter-spacing:5.386667pt;}
.ls7_c00039{letter-spacing:6.400000pt;}
.ls4_c00039{letter-spacing:9.066667pt;}
.ls8_c00039{letter-spacing:11.200000pt;}
.ls6_c00039{letter-spacing:11.253333pt;}
.lsb_c00039{letter-spacing:13.333333pt;}
.ls9_c00039{letter-spacing:18.666667pt;}
.ls5_c00039{letter-spacing:34.613333pt;}
.ws4_c00039{word-spacing:-26.720000pt;}
.ws7_c00039{word-spacing:-13.386667pt;}
.ws1_c00039{word-spacing:-12.586667pt;}
.ws5_c00039{word-spacing:-9.920000pt;}
.ws3_c00039{word-spacing:-1.706667pt;}
.ws8_c00039{word-spacing:0.000000pt;}
.ws2_c00039{word-spacing:1.066667pt;}
.ws0_c00039{word-spacing:6.314667pt;}
.ws6_c00039{word-spacing:15.925333pt;}
._28_c00039{margin-left:-23.840000pt;}
._25_c00039{margin-left:-22.400000pt;}
._1d_c00039{margin-left:-20.053333pt;}
._32_c00039{margin-left:-19.146667pt;}
._1f_c00039{margin-left:-11.306667pt;}
._26_c00039{margin-left:-9.546667pt;}
._10_c00039{margin-left:-7.040000pt;}
._1c_c00039{margin-left:-5.440000pt;}
._29_c00039{margin-left:-4.533333pt;}
._e_c00039{margin-left:-3.093333pt;}
._11_c00039{margin-left:-2.133333pt;}
._a_c00039{margin-left:-1.120000pt;}
._b_c00039{width:1.706667pt;}
._5_c00039{width:2.986667pt;}
._7_c00039{width:4.160000pt;}
._c_c00039{width:5.493333pt;}
._8_c00039{width:6.986667pt;}
._12_c00039{width:8.106667pt;}
._9_c00039{width:9.066667pt;}
._14_c00039{width:10.666667pt;}
._1_c00039{width:11.680000pt;}
._19_c00039{width:13.706667pt;}
._f_c00039{width:15.093333pt;}
._0_c00039{width:17.066667pt;}
._4_c00039{width:18.176000pt;}
._3_c00039{width:19.498667pt;}
._2d_c00039{width:20.906667pt;}
._1b_c00039{width:21.813333pt;}
._17_c00039{width:22.986667pt;}
._1a_c00039{width:24.213333pt;}
._16_c00039{width:26.240000pt;}
._27_c00039{width:27.146667pt;}
._2a_c00039{width:30.560000pt;}
._2_c00039{width:32.480000pt;}
._24_c00039{width:38.080000pt;}
._21_c00039{width:40.906667pt;}
._15_c00039{width:44.426667pt;}
._2b_c00039{width:49.498667pt;}
._2c_c00039{width:51.946667pt;}
._2e_c00039{width:60.000000pt;}
._2f_c00039{width:65.813333pt;}
._d_c00039{width:69.440000pt;}
._20_c00039{width:71.946667pt;}
._22_c00039{width:76.586667pt;}
._1e_c00039{width:85.280000pt;}
._18_c00039{width:104.960000pt;}
._13_c00039{width:111.200000pt;}
._23_c00039{width:112.533333pt;}
._6_c00039{width:118.880000pt;}
._31_c00039{width:176.960000pt;}
._30_c00039{width:219.253333pt;}
._33_c00039{width:491.040000pt;}
.fs2_c00039{font-size:40.000000pt;}
.fs1_c00039{font-size:42.666667pt;}
.fs3_c00039{font-size:45.333333pt;}
.fs0_c00039{font-size:53.333333pt;}
.fs5_c00039{font-size:61.333333pt;}
.fs4_c00039{font-size:74.666667pt;}
.y0_c00039{bottom:0.000000pt;}
.y56_c00039{bottom:2.760000pt;}
.y55_c00039{bottom:6.425217pt;}
.y2a_c00039{bottom:22.506667pt;}
.y54_c00039{bottom:23.440000pt;}
.y29_c00039{bottom:39.573333pt;}
.y53_c00039{bottom:41.306667pt;}
.y28_c00039{bottom:55.840000pt;}
.y52_c00039{bottom:58.240000pt;}
.y27_c00039{bottom:72.240000pt;}
.y51_c00039{bottom:74.373333pt;}
.y26_c00039{bottom:88.106667pt;}
.y50_c00039{bottom:89.973333pt;}
.y25_c00039{bottom:104.640000pt;}
.y4f_c00039{bottom:106.506667pt;}
.y24_c00039{bottom:120.240000pt;}
.y4e_c00039{bottom:122.640000pt;}
.y23_c00039{bottom:136.240000pt;}
.y4d_c00039{bottom:138.506667pt;}
.y4c_c00039{bottom:154.773333pt;}
.y22_c00039{bottom:168.240000pt;}
.y4b_c00039{bottom:170.373333pt;}
.y21_c00039{bottom:184.506667pt;}
.y4a_c00039{bottom:185.440000pt;}
.y20_c00039{bottom:200.640000pt;}
.y49_c00039{bottom:201.840000pt;}
.y1f_c00039{bottom:216.506667pt;}
.y48_c00039{bottom:217.706667pt;}
.y1e_c00039{bottom:232.773333pt;}
.y47_c00039{bottom:234.240000pt;}
.y1d_c00039{bottom:247.706667pt;}
.y46_c00039{bottom:249.840000pt;}
.y1c_c00039{bottom:264.506667pt;}
.y45_c00039{bottom:265.706667pt;}
.y1b_c00039{bottom:280.240000pt;}
.y44_c00039{bottom:281.306667pt;}
.y1a_c00039{bottom:294.906667pt;}
.y43_c00039{bottom:297.306667pt;}
.y19_c00039{bottom:312.240000pt;}
.y18_c00039{bottom:327.840000pt;}
.y42_c00039{bottom:328.773333pt;}
.y17_c00039{bottom:343.706667pt;}
.y41_c00039{bottom:345.840000pt;}
.y16_c00039{bottom:359.440000pt;}
.y40_c00039{bottom:361.573333pt;}
.y15_c00039{bottom:376.106667pt;}
.y3f_c00039{bottom:377.440000pt;}
.y14_c00039{bottom:391.840000pt;}
.y3e_c00039{bottom:393.306667pt;}
.y13_c00039{bottom:407.706667pt;}
.y3d_c00039{bottom:409.440000pt;}
.y12_c00039{bottom:423.573333pt;}
.y3c_c00039{bottom:425.706667pt;}
.y11_c00039{bottom:439.840000pt;}
.y3b_c00039{bottom:442.773333pt;}
.y10_c00039{bottom:455.973333pt;}
.y3a_c00039{bottom:457.440000pt;}
.yf_c00039{bottom:471.573333pt;}
.y39_c00039{bottom:473.706667pt;}
.ye_c00039{bottom:487.840000pt;}
.y38_c00039{bottom:489.040000pt;}
.yd_c00039{bottom:503.973333pt;}
.y37_c00039{bottom:505.840000pt;}
.yc_c00039{bottom:520.106667pt;}
.y36_c00039{bottom:521.973333pt;}
.yb_c00039{bottom:536.106667pt;}
.y35_c00039{bottom:537.840000pt;}
.ya_c00039{bottom:551.440000pt;}
.y34_c00039{bottom:553.840000pt;}
.y9_c00039{bottom:567.840000pt;}
.y33_c00039{bottom:569.973333pt;}
.y8_c00039{bottom:583.840000pt;}
.y32_c00039{bottom:585.840000pt;}
.y7_c00039{bottom:600.240000pt;}
.y31_c00039{bottom:601.840000pt;}
.y6_c00039{bottom:616.240000pt;}
.y30_c00039{bottom:617.973333pt;}
.y5_c00039{bottom:632.373333pt;}
.y2f_c00039{bottom:634.240000pt;}
.y4_c00039{bottom:648.506667pt;}
.y2e_c00039{bottom:650.906667pt;}
.y3_c00039{bottom:664.773333pt;}
.y2d_c00039{bottom:666.906667pt;}
.y2_c00039{bottom:680.906667pt;}
.y2c_c00039{bottom:683.306667pt;}
.y1_c00039{bottom:696.640000pt;}
.y2b_c00039{bottom:698.906667pt;}
.h6_c00039{height:11.733399pt;}
.h7_c00039{height:38.937500pt;}
.h2_c00039{height:55.893333pt;}
.h3_c00039{height:56.906667pt;}
.h5_c00039{height:64.277333pt;}
.h4_c00039{height:76.745567pt;}
.h1_c00039{height:732.666667pt;}
.h0_c00039{height:732.933333pt;}
.w2_c00039{width:93.222667pt;}
.w1_c00039{width:486.666667pt;}
.w0_c00039{width:486.733333pt;}
.x0_c00039{left:0.000000pt;}
.xa_c00039{left:7.466667pt;}
.xb_c00039{left:10.800000pt;}
.x9_c00039{left:28.800000pt;}
.x8_c00039{left:32.000000pt;}
.x4_c00039{left:33.866667pt;}
.x3_c00039{left:34.800000pt;}
.x7_c00039{left:36.000000pt;}
.x5_c00039{left:39.600000pt;}
.xc_c00039{left:47.333333pt;}
.x6_c00039{left:48.266667pt;}
.x2_c00039{left:49.466667pt;}
.xd_c00039{left:73.466667pt;}
.x1_c00039{left:132.400000pt;}
.x19_c00039{left:200.534871pt;}
.x15_c00039{left:256.800000pt;}
.x10_c00039{left:258.000000pt;}
.x11_c00039{left:259.466667pt;}
.x16_c00039{left:260.400000pt;}
.xe_c00039{left:262.800000pt;}
.x13_c00039{left:265.866667pt;}
.x18_c00039{left:267.866667pt;}
.x14_c00039{left:270.666667pt;}
.x12_c00039{left:273.866667pt;}
.xf_c00039{left:276.533333pt;}
.x17_c00039{left:325.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_dc68465e7fb1612063fa17f4.woff2')format("woff");}.ff1_c00040{font-family:ff1_c00040;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00040;src:url('chunks/assets/font_20ac971804bf883037eeaf59.woff2')format("woff");}.ff2_c00040{font-family:ff2_c00040;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00040;src:url('chunks/assets/font_39a3d6325d1caa98f86dc9d7.woff2')format("woff");}.ff3_c00040{font-family:ff3_c00040;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00040;src:url('chunks/assets/font_d6947a887208327c35bdadd6.woff2')format("woff");}.ff4_c00040{font-family:ff4_c00040;line-height:1.575000;font-style:normal;font-weight:normal;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_1097b00a1d2e9ec8dae30cc1.woff2')format("woff");}.ff5_c00040{font-family:ff5_c00040;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00040;src:url('chunks/assets/font_02825ae3ba4c069816bf9dac.woff2')format("woff");}.ff6_c00040{font-family:ff6_c00040;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00040;src:url('chunks/assets/font_1aefd7b196aa95fcbebd7765.woff2')format("woff");}.ff7_c00040{font-family:ff7_c00040;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00040;src:url('chunks/assets/font_643ba080c4891a9ba70aeac6.woff2')format("woff");}.ff8_c00040{font-family:ff8_c00040;line-height:1.012793;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00040;src:url('chunks/assets/font_4b2d9edaf5dc15db159de356.woff2')format("woff");}.ff9_c00040{font-family:ff9_c00040;line-height:1.575000;font-style:normal;font-weight: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_c00040;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ffa_c00040{font-family:ffa_c00040;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00040{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00040{vertical-align:0.000000px;}
.ls9_c00040{letter-spacing:-9.000000px;}
.ls7_c00040{letter-spacing:0.000000px;}
.ls1_c00040{letter-spacing:1.605000px;}
.ls8_c00040{letter-spacing:3.000000px;}
.ls6_c00040{letter-spacing:6.000000px;}
.ls4_c00040{letter-spacing:9.405000px;}
.ls5_c00040{letter-spacing:11.400000px;}
.ls0_c00040{letter-spacing:14.940000px;}
.ls3_c00040{letter-spacing:22.920000px;}
.ls2_c00040{letter-spacing:26.205000px;}
.sc__c00040{text-shadow:none;}
.sc0_c00040{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00040{-webkit-text-stroke:0px transparent;}
.sc0_c00040{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00040{word-spacing:-20.295000px;}
.ws1_c00040{word-spacing:-15.813000px;}
.ws4_c00040{word-spacing:-15.060000px;}
.ws2_c00040{word-spacing:-14.160000px;}
.ws0_c00040{word-spacing:-12.801000px;}
.ws3_c00040{word-spacing:-1.620000px;}
.ws6_c00040{word-spacing:-0.057000px;}
.ws7_c00040{word-spacing:0.000000px;}
._1e_c00040{margin-left:-11.391000px;}
._1d_c00040{margin-left:-10.266000px;}
._25_c00040{margin-left:-8.697000px;}
._1c_c00040{margin-left:-7.434000px;}
._12_c00040{margin-left:-6.120000px;}
._16_c00040{margin-left:-4.740000px;}
._15_c00040{margin-left:-2.820000px;}
._6_c00040{margin-left:-1.620000px;}
._b_c00040{width:1.320000px;}
._c_c00040{width:3.060000px;}
._8_c00040{width:4.560000px;}
._10_c00040{width:5.940000px;}
._0_c00040{width:7.140000px;}
._3_c00040{width:9.120000px;}
._2_c00040{width:10.260000px;}
._1f_c00040{width:11.307000px;}
._4_c00040{width:12.360000px;}
._1_c00040{width:13.800000px;}
._9_c00040{width:15.960000px;}
._14_c00040{width:17.340000px;}
._f_c00040{width:18.540000px;}
._11_c00040{width:19.740000px;}
._21_c00040{width:20.880000px;}
._d_c00040{width:22.080000px;}
._26_c00040{width:23.820000px;}
._e_c00040{width:24.900000px;}
._1a_c00040{width:26.100000px;}
._2a_c00040{width:27.960000px;}
._27_c00040{width:31.680000px;}
._28_c00040{width:32.853000px;}
._18_c00040{width:34.860000px;}
._a_c00040{width:38.760000px;}
._5_c00040{width:41.640000px;}
._19_c00040{width:43.740000px;}
._17_c00040{width:45.420000px;}
._24_c00040{width:58.263000px;}
._22_c00040{width:60.900000px;}
._23_c00040{width:62.100000px;}
._29_c00040{width:78.060000px;}
._20_c00040{width:123.414000px;}
._2b_c00040{width:131.100000px;}
._13_c00040{width:134.040000px;}
._1b_c00040{width:189.366000px;}
._7_c00040{width:228.840000px;}
._2c_c00040{width:321.918000px;}
.fc2_c00040{color:transparent;}
.fc1_c00040{color:rgb(128,128,128);}
.fc0_c00040{color:rgb(0,0,0);}
.fs3_c00040{font-size:45.000000px;}
.fs6_c00040{font-size:48.000000px;}
.fs1_c00040{font-size:51.000000px;}
.fs4_c00040{font-size:57.000000px;}
.fs0_c00040{font-size:60.000000px;}
.fs2_c00040{font-size:63.000000px;}
.fs5_c00040{font-size:69.000000px;}
.y0_c00040{bottom:0.000000px;}
.y58_c00040{bottom:3.105000px;}
.y57_c00040{bottom:7.228355px;}
.y2c_c00040{bottom:27.585000px;}
.y2b_c00040{bottom:44.835000px;}
.y56_c00040{bottom:45.135000px;}
.y55_c00040{bottom:62.985000px;}
.y2a_c00040{bottom:63.435000px;}
.y29_c00040{bottom:80.685000px;}
.y54_c00040{bottom:82.335000px;}
.y53_c00040{bottom:97.485000px;}
.y28_c00040{bottom:99.135000px;}
.y52_c00040{bottom:116.685000px;}
.y27_c00040{bottom:116.985000px;}
.y51_c00040{bottom:134.535000px;}
.y26_c00040{bottom:134.685000px;}
.y50_c00040{bottom:151.485000px;}
.y25_c00040{bottom:152.835000px;}
.y4f_c00040{bottom:170.085000px;}
.y24_c00040{bottom:171.135000px;}
.y23_c00040{bottom:188.985000px;}
.y4e_c00040{bottom:205.785000px;}
.y22_c00040{bottom:207.135000px;}
.y4d_c00040{bottom:223.635000px;}
.y21_c00040{bottom:225.135000px;}
.y4c_c00040{bottom:241.635000px;}
.y20_c00040{bottom:242.985000px;}
.y4b_c00040{bottom:259.785000px;}
.y1f_c00040{bottom:261.135000px;}
.y4a_c00040{bottom:277.785000px;}
.y1e_c00040{bottom:279.435000px;}
.y49_c00040{bottom:295.635000px;}
.y1d_c00040{bottom:297.285000px;}
.y48_c00040{bottom:314.235000px;}
.y1c_c00040{bottom:315.585000px;}
.y47_c00040{bottom:331.335000px;}
.y1b_c00040{bottom:333.135000px;}
.y46_c00040{bottom:349.635000px;}
.y1a_c00040{bottom:350.985000px;}
.y45_c00040{bottom:367.785000px;}
.y19_c00040{bottom:369.135000px;}
.y44_c00040{bottom:385.785000px;}
.y18_c00040{bottom:386.985000px;}
.y43_c00040{bottom:404.235000px;}
.y17_c00040{bottom:405.285000px;}
.y42_c00040{bottom:422.235000px;}
.y16_c00040{bottom:422.835000px;}
.y41_c00040{bottom:439.335000px;}
.y15_c00040{bottom:441.735000px;}
.y40_c00040{bottom:457.335000px;}
.y14_c00040{bottom:459.585000px;}
.y13_c00040{bottom:474.735000px;}
.y3f_c00040{bottom:474.885000px;}
.y3e_c00040{bottom:493.635000px;}
.y12_c00040{bottom:493.785000px;}
.y3d_c00040{bottom:510.585000px;}
.y11_c00040{bottom:512.235000px;}
.y3c_c00040{bottom:529.785000px;}
.y10_c00040{bottom:530.085000px;}
.y3b_c00040{bottom:546.735000px;}
.yf_c00040{bottom:548.385000px;}
.y3a_c00040{bottom:564.585000px;}
.ye_c00040{bottom:566.685000px;}
.y39_c00040{bottom:583.185000px;}
.yd_c00040{bottom:584.835000px;}
.y38_c00040{bottom:601.035000px;}
.yc_c00040{bottom:602.085000px;}
.y37_c00040{bottom:618.885000px;}
.yb_c00040{bottom:620.985000px;}
.y36_c00040{bottom:636.135000px;}
.ya_c00040{bottom:638.835000px;}
.y35_c00040{bottom:653.985000px;}
.y9_c00040{bottom:656.685000px;}
.y34_c00040{bottom:671.985000px;}
.y8_c00040{bottom:674.685000px;}
.y33_c00040{bottom:689.385000px;}
.y7_c00040{bottom:692.535000px;}
.y32_c00040{bottom:707.685000px;}
.y6_c00040{bottom:710.985000px;}
.y31_c00040{bottom:725.835000px;}
.y5_c00040{bottom:728.985000px;}
.y30_c00040{bottom:743.835000px;}
.y4_c00040{bottom:746.535000px;}
.y2f_c00040{bottom:762.285000px;}
.y3_c00040{bottom:764.685000px;}
.y2e_c00040{bottom:779.835000px;}
.y2_c00040{bottom:782.985000px;}
.y2d_c00040{bottom:798.135000px;}
.y1_c00040{bottom:801.435000px;}
.h7_c00040{height:13.200074px;}
.h8_c00040{height:43.804688px;}
.h5_c00040{height:59.736000px;}
.h2_c00040{height:62.880000px;}
.h4_c00040{height:64.020000px;}
.h3_c00040{height:66.024000px;}
.h6_c00040{height:73.623000px;}
.h1_c00040{height:826.500000px;}
.h0_c00040{height:826.725000px;}
.w1_c00040{width:104.875500px;}
.w0_c00040{width:563.250000px;}
.x0_c00040{left:0.000000px;}
.x3_c00040{left:18.600000px;}
.x5_c00040{left:20.250000px;}
.x7_c00040{left:21.600000px;}
.x9_c00040{left:23.400000px;}
.xc_c00040{left:25.350000px;}
.xb_c00040{left:26.550000px;}
.xe_c00040{left:28.050000px;}
.x2_c00040{left:30.000000px;}
.x4_c00040{left:36.000000px;}
.xf_c00040{left:37.500000px;}
.x6_c00040{left:38.550000px;}
.x8_c00040{left:41.550000px;}
.xa_c00040{left:43.500000px;}
.xd_c00040{left:46.500000px;}
.x1_c00040{left:127.200000px;}
.x1f_c00040{left:233.439240px;}
.x12_c00040{left:268.650000px;}
.x13_c00040{left:269.700000px;}
.x15_c00040{left:270.900000px;}
.x16_c00040{left:272.700000px;}
.x1b_c00040{left:274.350000px;}
.x19_c00040{left:275.700000px;}
.x10_c00040{left:276.750000px;}
.x1d_c00040{left:278.400000px;}
.x14_c00040{left:283.050000px;}
.x11_c00040{left:286.500000px;}
.x18_c00040{left:290.550000px;}
.x1e_c00040{left:293.250000px;}
.x1c_c00040{left:294.600000px;}
.x1a_c00040{left:300.000000px;}
.x17_c00040{left:369.450000px;}
@media print{
.v0_c00040{vertical-align:0.000000pt;}
.ls9_c00040{letter-spacing:-8.000000pt;}
.ls7_c00040{letter-spacing:0.000000pt;}
.ls1_c00040{letter-spacing:1.426667pt;}
.ls8_c00040{letter-spacing:2.666667pt;}
.ls6_c00040{letter-spacing:5.333333pt;}
.ls4_c00040{letter-spacing:8.360000pt;}
.ls5_c00040{letter-spacing:10.133333pt;}
.ls0_c00040{letter-spacing:13.280000pt;}
.ls3_c00040{letter-spacing:20.373333pt;}
.ls2_c00040{letter-spacing:23.293333pt;}
.ws5_c00040{word-spacing:-18.040000pt;}
.ws1_c00040{word-spacing:-14.056000pt;}
.ws4_c00040{word-spacing:-13.386667pt;}
.ws2_c00040{word-spacing:-12.586667pt;}
.ws0_c00040{word-spacing:-11.378667pt;}
.ws3_c00040{word-spacing:-1.440000pt;}
.ws6_c00040{word-spacing:-0.050667pt;}
.ws7_c00040{word-spacing:0.000000pt;}
._1e_c00040{margin-left:-10.125333pt;}
._1d_c00040{margin-left:-9.125333pt;}
._25_c00040{margin-left:-7.730667pt;}
._1c_c00040{margin-left:-6.608000pt;}
._12_c00040{margin-left:-5.440000pt;}
._16_c00040{margin-left:-4.213333pt;}
._15_c00040{margin-left:-2.506667pt;}
._6_c00040{margin-left:-1.440000pt;}
._b_c00040{width:1.173333pt;}
._c_c00040{width:2.720000pt;}
._8_c00040{width:4.053333pt;}
._10_c00040{width:5.280000pt;}
._0_c00040{width:6.346667pt;}
._3_c00040{width:8.106667pt;}
._2_c00040{width:9.120000pt;}
._1f_c00040{width:10.050667pt;}
._4_c00040{width:10.986667pt;}
._1_c00040{width:12.266667pt;}
._9_c00040{width:14.186667pt;}
._14_c00040{width:15.413333pt;}
._f_c00040{width:16.480000pt;}
._11_c00040{width:17.546667pt;}
._21_c00040{width:18.560000pt;}
._d_c00040{width:19.626667pt;}
._26_c00040{width:21.173333pt;}
._e_c00040{width:22.133333pt;}
._1a_c00040{width:23.200000pt;}
._2a_c00040{width:24.853333pt;}
._27_c00040{width:28.160000pt;}
._28_c00040{width:29.202667pt;}
._18_c00040{width:30.986667pt;}
._a_c00040{width:34.453333pt;}
._5_c00040{width:37.013333pt;}
._19_c00040{width:38.880000pt;}
._17_c00040{width:40.373333pt;}
._24_c00040{width:51.789333pt;}
._22_c00040{width:54.133333pt;}
._23_c00040{width:55.200000pt;}
._29_c00040{width:69.386667pt;}
._20_c00040{width:109.701333pt;}
._2b_c00040{width:116.533333pt;}
._13_c00040{width:119.146667pt;}
._1b_c00040{width:168.325333pt;}
._7_c00040{width:203.413333pt;}
._2c_c00040{width:286.149333pt;}
.fs3_c00040{font-size:40.000000pt;}
.fs6_c00040{font-size:42.666667pt;}
.fs1_c00040{font-size:45.333333pt;}
.fs4_c00040{font-size:50.666667pt;}
.fs0_c00040{font-size:53.333333pt;}
.fs2_c00040{font-size:56.000000pt;}
.fs5_c00040{font-size:61.333333pt;}
.y0_c00040{bottom:0.000000pt;}
.y58_c00040{bottom:2.760000pt;}
.y57_c00040{bottom:6.425204pt;}
.y2c_c00040{bottom:24.520000pt;}
.y2b_c00040{bottom:39.853333pt;}
.y56_c00040{bottom:40.120000pt;}
.y55_c00040{bottom:55.986667pt;}
.y2a_c00040{bottom:56.386667pt;}
.y29_c00040{bottom:71.720000pt;}
.y54_c00040{bottom:73.186667pt;}
.y53_c00040{bottom:86.653333pt;}
.y28_c00040{bottom:88.120000pt;}
.y52_c00040{bottom:103.720000pt;}
.y27_c00040{bottom:103.986667pt;}
.y51_c00040{bottom:119.586667pt;}
.y26_c00040{bottom:119.720000pt;}
.y50_c00040{bottom:134.653333pt;}
.y25_c00040{bottom:135.853333pt;}
.y4f_c00040{bottom:151.186667pt;}
.y24_c00040{bottom:152.120000pt;}
.y23_c00040{bottom:167.986667pt;}
.y4e_c00040{bottom:182.920000pt;}
.y22_c00040{bottom:184.120000pt;}
.y4d_c00040{bottom:198.786667pt;}
.y21_c00040{bottom:200.120000pt;}
.y4c_c00040{bottom:214.786667pt;}
.y20_c00040{bottom:215.986667pt;}
.y4b_c00040{bottom:230.920000pt;}
.y1f_c00040{bottom:232.120000pt;}
.y4a_c00040{bottom:246.920000pt;}
.y1e_c00040{bottom:248.386667pt;}
.y49_c00040{bottom:262.786667pt;}
.y1d_c00040{bottom:264.253333pt;}
.y48_c00040{bottom:279.320000pt;}
.y1c_c00040{bottom:280.520000pt;}
.y47_c00040{bottom:294.520000pt;}
.y1b_c00040{bottom:296.120000pt;}
.y46_c00040{bottom:310.786667pt;}
.y1a_c00040{bottom:311.986667pt;}
.y45_c00040{bottom:326.920000pt;}
.y19_c00040{bottom:328.120000pt;}
.y44_c00040{bottom:342.920000pt;}
.y18_c00040{bottom:343.986667pt;}
.y43_c00040{bottom:359.320000pt;}
.y17_c00040{bottom:360.253333pt;}
.y42_c00040{bottom:375.320000pt;}
.y16_c00040{bottom:375.853333pt;}
.y41_c00040{bottom:390.520000pt;}
.y15_c00040{bottom:392.653333pt;}
.y40_c00040{bottom:406.520000pt;}
.y14_c00040{bottom:408.520000pt;}
.y13_c00040{bottom:421.986667pt;}
.y3f_c00040{bottom:422.120000pt;}
.y3e_c00040{bottom:438.786667pt;}
.y12_c00040{bottom:438.920000pt;}
.y3d_c00040{bottom:453.853333pt;}
.y11_c00040{bottom:455.320000pt;}
.y3c_c00040{bottom:470.920000pt;}
.y10_c00040{bottom:471.186667pt;}
.y3b_c00040{bottom:485.986667pt;}
.yf_c00040{bottom:487.453333pt;}
.y3a_c00040{bottom:501.853333pt;}
.ye_c00040{bottom:503.720000pt;}
.y39_c00040{bottom:518.386667pt;}
.yd_c00040{bottom:519.853333pt;}
.y38_c00040{bottom:534.253333pt;}
.yc_c00040{bottom:535.186667pt;}
.y37_c00040{bottom:550.120000pt;}
.yb_c00040{bottom:551.986667pt;}
.y36_c00040{bottom:565.453333pt;}
.ya_c00040{bottom:567.853333pt;}
.y35_c00040{bottom:581.320000pt;}
.y9_c00040{bottom:583.720000pt;}
.y34_c00040{bottom:597.320000pt;}
.y8_c00040{bottom:599.720000pt;}
.y33_c00040{bottom:612.786667pt;}
.y7_c00040{bottom:615.586667pt;}
.y32_c00040{bottom:629.053333pt;}
.y6_c00040{bottom:631.986667pt;}
.y31_c00040{bottom:645.186667pt;}
.y5_c00040{bottom:647.986667pt;}
.y30_c00040{bottom:661.186667pt;}
.y4_c00040{bottom:663.586667pt;}
.y2f_c00040{bottom:677.586667pt;}
.y3_c00040{bottom:679.720000pt;}
.y2e_c00040{bottom:693.186667pt;}
.y2_c00040{bottom:695.986667pt;}
.y2d_c00040{bottom:709.453333pt;}
.y1_c00040{bottom:712.386667pt;}
.h7_c00040{height:11.733399pt;}
.h8_c00040{height:38.937500pt;}
.h5_c00040{height:53.098667pt;}
.h2_c00040{height:55.893333pt;}
.h4_c00040{height:56.906667pt;}
.h3_c00040{height:58.688000pt;}
.h6_c00040{height:65.442667pt;}
.h1_c00040{height:734.666667pt;}
.h0_c00040{height:734.866667pt;}
.w1_c00040{width:93.222667pt;}
.w0_c00040{width:500.666667pt;}
.x0_c00040{left:0.000000pt;}
.x3_c00040{left:16.533333pt;}
.x5_c00040{left:18.000000pt;}
.x7_c00040{left:19.200000pt;}
.x9_c00040{left:20.800000pt;}
.xc_c00040{left:22.533333pt;}
.xb_c00040{left:23.600000pt;}
.xe_c00040{left:24.933333pt;}
.x2_c00040{left:26.666667pt;}
.x4_c00040{left:32.000000pt;}
.xf_c00040{left:33.333333pt;}
.x6_c00040{left:34.266667pt;}
.x8_c00040{left:36.933333pt;}
.xa_c00040{left:38.666667pt;}
.xd_c00040{left:41.333333pt;}
.x1_c00040{left:113.066667pt;}
.x1f_c00040{left:207.501546pt;}
.x12_c00040{left:238.800000pt;}
.x13_c00040{left:239.733333pt;}
.x15_c00040{left:240.800000pt;}
.x16_c00040{left:242.400000pt;}
.x1b_c00040{left:243.866667pt;}
.x19_c00040{left:245.066667pt;}
.x10_c00040{left:246.000000pt;}
.x1d_c00040{left:247.466667pt;}
.x14_c00040{left:251.600000pt;}
.x11_c00040{left:254.666667pt;}
.x18_c00040{left:258.266667pt;}
.x1e_c00040{left:260.666667pt;}
.x1c_c00040{left:261.866667pt;}
.x1a_c00040{left:266.666667pt;}
.x17_c00040{left:328.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ac489c9eadffd152ce02a821.woff2')format("woff");}.ff1_c00041{font-family:ff1_c00041;line-height:1.437000;font-style:normal;font-weight:normal;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_6cb1787b584e3e7435a3c3d4.woff2')format("woff");}.ff2_c00041{font-family:ff2_c00041;line-height:1.437000;font-style:normal;font-weight:normal;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_a22eed46b8ce6343d6bb7f1e.woff2')format("woff");}.ff3_c00041{font-family:ff3_c00041;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00041;src:url('chunks/assets/font_ef3bb1734b2f9d4ffdc57f56.woff2')format("woff");}.ff4_c00041{font-family:ff4_c00041;line-height:1.575000;font-style:normal;font-weight:normal;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_d7cde73cb32c9b7e098b5f8d.woff2')format("woff");}.ff5_c00041{font-family:ff5_c00041;line-height:1.575000;font-style:normal;font-weight:normal;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_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff6_c00041{font-family:ff6_c00041;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00041{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00041{vertical-align:0.000000px;}
.lsc_c00041{letter-spacing:-9.000000px;}
.lsa_c00041{letter-spacing:-6.000000px;}
.lsb_c00041{letter-spacing:-3.000000px;}
.ls9_c00041{letter-spacing:0.000000px;}
.ls7_c00041{letter-spacing:2.280000px;}
.ls4_c00041{letter-spacing:2.412000px;}
.ls8_c00041{letter-spacing:3.600000px;}
.ls2_c00041{letter-spacing:7.500000px;}
.ls5_c00041{letter-spacing:9.000000px;}
.ls1_c00041{letter-spacing:9.600000px;}
.lsd_c00041{letter-spacing:15.000000px;}
.ls0_c00041{letter-spacing:26.205000px;}
.ls6_c00041{letter-spacing:30.405000px;}
.ls3_c00041{letter-spacing:328.650000px;}
.sc__c00041{text-shadow:none;}
.sc0_c00041{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00041{-webkit-text-stroke:0px transparent;}
.sc0_c00041{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00041{word-spacing:-20.295000px;}
.ws6_c00041{word-spacing:-16.440000px;}
.ws3_c00041{word-spacing:-15.750000px;}
.ws1_c00041{word-spacing:-15.060000px;}
.ws7_c00041{word-spacing:-15.000000px;}
.ws0_c00041{word-spacing:-14.160000px;}
.ws4_c00041{word-spacing:-12.750000px;}
.ws2_c00041{word-spacing:-8.160000px;}
.ws8_c00041{word-spacing:0.000000px;}
._1d_c00041{margin-left:-21.300000px;}
._26_c00041{margin-left:-17.460000px;}
._23_c00041{margin-left:-12.099000px;}
._1b_c00041{margin-left:-11.067000px;}
._16_c00041{margin-left:-9.300000px;}
._12_c00041{margin-left:-8.160000px;}
._18_c00041{margin-left:-6.900000px;}
._11_c00041{margin-left:-5.760000px;}
._1c_c00041{margin-left:-4.713000px;}
._1a_c00041{margin-left:-3.621000px;}
._17_c00041{margin-left:-2.580000px;}
._10_c00041{margin-left:-1.440000px;}
._8_c00041{width:1.140000px;}
._6_c00041{width:2.400000px;}
._a_c00041{width:3.660000px;}
._4_c00041{width:5.280000px;}
._f_c00041{width:6.480000px;}
._5_c00041{width:7.500000px;}
._14_c00041{width:8.640000px;}
._d_c00041{width:9.720000px;}
._7_c00041{width:10.980000px;}
._e_c00041{width:12.120000px;}
._3_c00041{width:13.380000px;}
._2a_c00041{width:16.320000px;}
._0_c00041{width:17.520000px;}
._1_c00041{width:19.260000px;}
._b_c00041{width:20.640000px;}
._9_c00041{width:22.440000px;}
._c_c00041{width:24.000000px;}
._15_c00041{width:25.860000px;}
._2b_c00041{width:27.780000px;}
._2_c00041{width:28.980000px;}
._22_c00041{width:30.240000px;}
._27_c00041{width:32.580000px;}
._24_c00041{width:34.620000px;}
._20_c00041{width:36.900000px;}
._28_c00041{width:39.060000px;}
._1f_c00041{width:40.401000px;}
._21_c00041{width:44.160000px;}
._25_c00041{width:47.280000px;}
._1e_c00041{width:139.860000px;}
._13_c00041{width:152.340000px;}
._29_c00041{width:181.080000px;}
._19_c00041{width:323.340000px;}
.fc2_c00041{color:transparent;}
.fc1_c00041{color:rgb(128,128,128);}
.fc0_c00041{color:rgb(0,0,0);}
.fs1_c00041{font-size:45.000000px;}
.fs3_c00041{font-size:48.000000px;}
.fs0_c00041{font-size:60.000000px;}
.fs2_c00041{font-size:63.000000px;}
.y0_c00041{bottom:0.000000px;}
.y58_c00041{bottom:3.105000px;}
.y57_c00041{bottom:7.228363px;}
.y56_c00041{bottom:24.000000px;}
.y2b_c00041{bottom:40.050000px;}
.y55_c00041{bottom:40.950000px;}
.y2a_c00041{bottom:57.750000px;}
.y54_c00041{bottom:59.850000px;}
.y29_c00041{bottom:76.650000px;}
.y53_c00041{bottom:77.400000px;}
.y28_c00041{bottom:95.400000px;}
.y52_c00041{bottom:96.300000px;}
.y27_c00041{bottom:113.400000px;}
.y51_c00041{bottom:113.850000px;}
.y50_c00041{bottom:131.700000px;}
.y26_c00041{bottom:132.000000px;}
.y25_c00041{bottom:149.550000px;}
.y4f_c00041{bottom:150.150000px;}
.y24_c00041{bottom:168.000000px;}
.y4e_c00041{bottom:168.450000px;}
.y23_c00041{bottom:185.850000px;}
.y4d_c00041{bottom:186.750000px;}
.y4c_c00041{bottom:204.300000px;}
.y22_c00041{bottom:204.750000px;}
.y21_c00041{bottom:222.150000px;}
.y4b_c00041{bottom:222.750000px;}
.y20_c00041{bottom:239.850000px;}
.y4a_c00041{bottom:240.750000px;}
.y1f_c00041{bottom:258.450000px;}
.y49_c00041{bottom:259.500000px;}
.y1e_c00041{bottom:276.450000px;}
.y48_c00041{bottom:277.050000px;}
.y1d_c00041{bottom:294.300000px;}
.y47_c00041{bottom:295.050000px;}
.y1c_c00041{bottom:312.450000px;}
.y46_c00041{bottom:312.600000px;}
.y1b_c00041{bottom:328.950000px;}
.y45_c00041{bottom:330.450000px;}
.y1a_c00041{bottom:348.600000px;}
.y44_c00041{bottom:349.050000px;}
.y43_c00041{bottom:365.850000px;}
.y19_c00041{bottom:366.150000px;}
.y18_c00041{bottom:384.450000px;}
.y42_c00041{bottom:384.750000px;}
.y17_c00041{bottom:402.600000px;}
.y16_c00041{bottom:420.150000px;}
.y41_c00041{bottom:420.900000px;}
.y15_c00041{bottom:438.750000px;}
.y40_c00041{bottom:439.500000px;}
.y14_c00041{bottom:456.300000px;}
.y3f_c00041{bottom:457.050000px;}
.y13_c00041{bottom:474.750000px;}
.y3e_c00041{bottom:475.950000px;}
.y3d_c00041{bottom:493.050000px;}
.y12_c00041{bottom:493.350000px;}
.y11_c00041{bottom:510.300000px;}
.y3c_c00041{bottom:512.100000px;}
.y10_c00041{bottom:529.200000px;}
.y3b_c00041{bottom:529.950000px;}
.yf_c00041{bottom:547.050000px;}
.y3a_c00041{bottom:548.100000px;}
.ye_c00041{bottom:565.650000px;}
.y39_c00041{bottom:566.700000px;}
.yd_c00041{bottom:583.500000px;}
.y38_c00041{bottom:584.550000px;}
.yc_c00041{bottom:601.050000px;}
.y37_c00041{bottom:602.850000px;}
.yb_c00041{bottom:619.350000px;}
.y36_c00041{bottom:621.300000px;}
.ya_c00041{bottom:637.200000px;}
.y35_c00041{bottom:638.550000px;}
.y9_c00041{bottom:655.500000px;}
.y34_c00041{bottom:656.550000px;}
.y8_c00041{bottom:672.750000px;}
.y33_c00041{bottom:674.400000px;}
.y7_c00041{bottom:692.250000px;}
.y32_c00041{bottom:693.000000px;}
.y6_c00041{bottom:710.100000px;}
.y31_c00041{bottom:711.450000px;}
.y5_c00041{bottom:728.550000px;}
.y30_c00041{bottom:729.450000px;}
.y4_c00041{bottom:744.900000px;}
.y2f_c00041{bottom:748.950000px;}
.y3_c00041{bottom:764.400000px;}
.y2e_c00041{bottom:766.200000px;}
.y2_c00041{bottom:782.700000px;}
.y2d_c00041{bottom:784.800000px;}
.y1_c00041{bottom:800.550000px;}
.y2c_c00041{bottom:802.800000px;}
.h5_c00041{height:13.200074px;}
.h6_c00041{height:43.804688px;}
.h2_c00041{height:62.880000px;}
.h3_c00041{height:64.020000px;}
.h4_c00041{height:67.221000px;}
.h1_c00041{height:842.250000px;}
.h0_c00041{height:842.400000px;}
.w2_c00041{width:104.875500px;}
.w1_c00041{width:559.500000px;}
.w0_c00041{width:559.725000px;}
.x0_c00041{left:0.000000px;}
.xd_c00041{left:50.400000px;}
.xc_c00041{left:51.750000px;}
.x7_c00041{left:52.950000px;}
.xa_c00041{left:54.000000px;}
.x5_c00041{left:55.050000px;}
.x3_c00041{left:56.700000px;}
.x2_c00041{left:58.050000px;}
.x9_c00041{left:71.550000px;}
.x8_c00041{left:73.650000px;}
.x4_c00041{left:77.250000px;}
.x6_c00041{left:80.700000px;}
.xb_c00041{left:88.200000px;}
.x1_c00041{left:169.050000px;}
.x1b_c00041{left:231.676758px;}
.x18_c00041{left:305.400000px;}
.x16_c00041{left:306.750000px;}
.x11_c00041{left:308.250000px;}
.x10_c00041{left:310.200000px;}
.xe_c00041{left:315.300000px;}
.x13_c00041{left:317.700000px;}
.x17_c00041{left:319.500000px;}
.xf_c00041{left:321.300000px;}
.x19_c00041{left:323.700000px;}
.x15_c00041{left:325.350000px;}
.x14_c00041{left:347.250000px;}
.x12_c00041{left:400.950000px;}
.x1a_c00041{left:510.000000px;}
@media print{
.v0_c00041{vertical-align:0.000000pt;}
.lsc_c00041{letter-spacing:-8.000000pt;}
.lsa_c00041{letter-spacing:-5.333333pt;}
.lsb_c00041{letter-spacing:-2.666667pt;}
.ls9_c00041{letter-spacing:0.000000pt;}
.ls7_c00041{letter-spacing:2.026667pt;}
.ls4_c00041{letter-spacing:2.144000pt;}
.ls8_c00041{letter-spacing:3.200000pt;}
.ls2_c00041{letter-spacing:6.666667pt;}
.ls5_c00041{letter-spacing:8.000000pt;}
.ls1_c00041{letter-spacing:8.533333pt;}
.lsd_c00041{letter-spacing:13.333333pt;}
.ls0_c00041{letter-spacing:23.293333pt;}
.ls6_c00041{letter-spacing:27.026667pt;}
.ls3_c00041{letter-spacing:292.133333pt;}
.ws5_c00041{word-spacing:-18.040000pt;}
.ws6_c00041{word-spacing:-14.613333pt;}
.ws3_c00041{word-spacing:-14.000000pt;}
.ws1_c00041{word-spacing:-13.386667pt;}
.ws7_c00041{word-spacing:-13.333333pt;}
.ws0_c00041{word-spacing:-12.586667pt;}
.ws4_c00041{word-spacing:-11.333333pt;}
.ws2_c00041{word-spacing:-7.253333pt;}
.ws8_c00041{word-spacing:0.000000pt;}
._1d_c00041{margin-left:-18.933333pt;}
._26_c00041{margin-left:-15.520000pt;}
._23_c00041{margin-left:-10.754667pt;}
._1b_c00041{margin-left:-9.837333pt;}
._16_c00041{margin-left:-8.266667pt;}
._12_c00041{margin-left:-7.253333pt;}
._18_c00041{margin-left:-6.133333pt;}
._11_c00041{margin-left:-5.120000pt;}
._1c_c00041{margin-left:-4.189333pt;}
._1a_c00041{margin-left:-3.218667pt;}
._17_c00041{margin-left:-2.293333pt;}
._10_c00041{margin-left:-1.280000pt;}
._8_c00041{width:1.013333pt;}
._6_c00041{width:2.133333pt;}
._a_c00041{width:3.253333pt;}
._4_c00041{width:4.693333pt;}
._f_c00041{width:5.760000pt;}
._5_c00041{width:6.666667pt;}
._14_c00041{width:7.680000pt;}
._d_c00041{width:8.640000pt;}
._7_c00041{width:9.760000pt;}
._e_c00041{width:10.773333pt;}
._3_c00041{width:11.893333pt;}
._2a_c00041{width:14.506667pt;}
._0_c00041{width:15.573333pt;}
._1_c00041{width:17.120000pt;}
._b_c00041{width:18.346667pt;}
._9_c00041{width:19.946667pt;}
._c_c00041{width:21.333333pt;}
._15_c00041{width:22.986667pt;}
._2b_c00041{width:24.693333pt;}
._2_c00041{width:25.760000pt;}
._22_c00041{width:26.880000pt;}
._27_c00041{width:28.960000pt;}
._24_c00041{width:30.773333pt;}
._20_c00041{width:32.800000pt;}
._28_c00041{width:34.720000pt;}
._1f_c00041{width:35.912000pt;}
._21_c00041{width:39.253333pt;}
._25_c00041{width:42.026667pt;}
._1e_c00041{width:124.320000pt;}
._13_c00041{width:135.413333pt;}
._29_c00041{width:160.960000pt;}
._19_c00041{width:287.413333pt;}
.fs1_c00041{font-size:40.000000pt;}
.fs3_c00041{font-size:42.666667pt;}
.fs0_c00041{font-size:53.333333pt;}
.fs2_c00041{font-size:56.000000pt;}
.y0_c00041{bottom:0.000000pt;}
.y58_c00041{bottom:2.760000pt;}
.y57_c00041{bottom:6.425212pt;}
.y56_c00041{bottom:21.333333pt;}
.y2b_c00041{bottom:35.600000pt;}
.y55_c00041{bottom:36.400000pt;}
.y2a_c00041{bottom:51.333333pt;}
.y54_c00041{bottom:53.200000pt;}
.y29_c00041{bottom:68.133333pt;}
.y53_c00041{bottom:68.800000pt;}
.y28_c00041{bottom:84.800000pt;}
.y52_c00041{bottom:85.600000pt;}
.y27_c00041{bottom:100.800000pt;}
.y51_c00041{bottom:101.200000pt;}
.y50_c00041{bottom:117.066667pt;}
.y26_c00041{bottom:117.333333pt;}
.y25_c00041{bottom:132.933333pt;}
.y4f_c00041{bottom:133.466667pt;}
.y24_c00041{bottom:149.333333pt;}
.y4e_c00041{bottom:149.733333pt;}
.y23_c00041{bottom:165.200000pt;}
.y4d_c00041{bottom:166.000000pt;}
.y4c_c00041{bottom:181.600000pt;}
.y22_c00041{bottom:182.000000pt;}
.y21_c00041{bottom:197.466667pt;}
.y4b_c00041{bottom:198.000000pt;}
.y20_c00041{bottom:213.200000pt;}
.y4a_c00041{bottom:214.000000pt;}
.y1f_c00041{bottom:229.733333pt;}
.y49_c00041{bottom:230.666667pt;}
.y1e_c00041{bottom:245.733333pt;}
.y48_c00041{bottom:246.266667pt;}
.y1d_c00041{bottom:261.600000pt;}
.y47_c00041{bottom:262.266667pt;}
.y1c_c00041{bottom:277.733333pt;}
.y46_c00041{bottom:277.866667pt;}
.y1b_c00041{bottom:292.400000pt;}
.y45_c00041{bottom:293.733333pt;}
.y1a_c00041{bottom:309.866667pt;}
.y44_c00041{bottom:310.266667pt;}
.y43_c00041{bottom:325.200000pt;}
.y19_c00041{bottom:325.466667pt;}
.y18_c00041{bottom:341.733333pt;}
.y42_c00041{bottom:342.000000pt;}
.y17_c00041{bottom:357.866667pt;}
.y16_c00041{bottom:373.466667pt;}
.y41_c00041{bottom:374.133333pt;}
.y15_c00041{bottom:390.000000pt;}
.y40_c00041{bottom:390.666667pt;}
.y14_c00041{bottom:405.600000pt;}
.y3f_c00041{bottom:406.266667pt;}
.y13_c00041{bottom:422.000000pt;}
.y3e_c00041{bottom:423.066667pt;}
.y3d_c00041{bottom:438.266667pt;}
.y12_c00041{bottom:438.533333pt;}
.y11_c00041{bottom:453.600000pt;}
.y3c_c00041{bottom:455.200000pt;}
.y10_c00041{bottom:470.400000pt;}
.y3b_c00041{bottom:471.066667pt;}
.yf_c00041{bottom:486.266667pt;}
.y3a_c00041{bottom:487.200000pt;}
.ye_c00041{bottom:502.800000pt;}
.y39_c00041{bottom:503.733333pt;}
.yd_c00041{bottom:518.666667pt;}
.y38_c00041{bottom:519.600000pt;}
.yc_c00041{bottom:534.266667pt;}
.y37_c00041{bottom:535.866667pt;}
.yb_c00041{bottom:550.533333pt;}
.y36_c00041{bottom:552.266667pt;}
.ya_c00041{bottom:566.400000pt;}
.y35_c00041{bottom:567.600000pt;}
.y9_c00041{bottom:582.666667pt;}
.y34_c00041{bottom:583.600000pt;}
.y8_c00041{bottom:598.000000pt;}
.y33_c00041{bottom:599.466667pt;}
.y7_c00041{bottom:615.333333pt;}
.y32_c00041{bottom:616.000000pt;}
.y6_c00041{bottom:631.200000pt;}
.y31_c00041{bottom:632.400000pt;}
.y5_c00041{bottom:647.600000pt;}
.y30_c00041{bottom:648.400000pt;}
.y4_c00041{bottom:662.133333pt;}
.y2f_c00041{bottom:665.733333pt;}
.y3_c00041{bottom:679.466667pt;}
.y2e_c00041{bottom:681.066667pt;}
.y2_c00041{bottom:695.733333pt;}
.y2d_c00041{bottom:697.600000pt;}
.y1_c00041{bottom:711.600000pt;}
.y2c_c00041{bottom:713.600000pt;}
.h5_c00041{height:11.733399pt;}
.h6_c00041{height:38.937500pt;}
.h2_c00041{height:55.893333pt;}
.h3_c00041{height:56.906667pt;}
.h4_c00041{height:59.752000pt;}
.h1_c00041{height:748.666667pt;}
.h0_c00041{height:748.800000pt;}
.w2_c00041{width:93.222667pt;}
.w1_c00041{width:497.333333pt;}
.w0_c00041{width:497.533333pt;}
.x0_c00041{left:0.000000pt;}
.xd_c00041{left:44.800000pt;}
.xc_c00041{left:46.000000pt;}
.x7_c00041{left:47.066667pt;}
.xa_c00041{left:48.000000pt;}
.x5_c00041{left:48.933333pt;}
.x3_c00041{left:50.400000pt;}
.x2_c00041{left:51.600000pt;}
.x9_c00041{left:63.600000pt;}
.x8_c00041{left:65.466667pt;}
.x4_c00041{left:68.666667pt;}
.x6_c00041{left:71.733333pt;}
.xb_c00041{left:78.400000pt;}
.x1_c00041{left:150.266667pt;}
.x1b_c00041{left:205.934896pt;}
.x18_c00041{left:271.466667pt;}
.x16_c00041{left:272.666667pt;}
.x11_c00041{left:274.000000pt;}
.x10_c00041{left:275.733333pt;}
.xe_c00041{left:280.266667pt;}
.x13_c00041{left:282.400000pt;}
.x17_c00041{left:284.000000pt;}
.xf_c00041{left:285.600000pt;}
.x19_c00041{left:287.733333pt;}
.x15_c00041{left:289.200000pt;}
.x14_c00041{left:308.666667pt;}
.x12_c00041{left:356.400000pt;}
.x1a_c00041{left:453.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_2896988ca4d756c863566827.woff2')format("woff");}.ff1_c00042{font-family:ff1_c00042;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00042;src:url('chunks/assets/font_91b7770d31817b81b543177d.woff2')format("woff");}.ff2_c00042{font-family:ff2_c00042;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00042;src:url('chunks/assets/font_06e173792bc44c3661133bb7.woff2')format("woff");}.ff3_c00042{font-family:ff3_c00042;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00042;src:url('chunks/assets/font_7451d2d5573800d8b2e23153.woff2')format("woff");}.ff4_c00042{font-family:ff4_c00042;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00042;src:url('chunks/assets/font_b256d9dc25c4ce31920f180f.woff2')format("woff");}.ff5_c00042{font-family:ff5_c00042;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00042;src:url('chunks/assets/font_dada56228c01b34cb0ec420e.woff2')format("woff");}.ff6_c00042{font-family:ff6_c00042;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00042;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff7_c00042{font-family:ff7_c00042;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00042{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00042{vertical-align:0.000000px;}
.lsc_c00042{letter-spacing:-9.000000px;}
.ls9_c00042{letter-spacing:-6.000000px;}
.lsa_c00042{letter-spacing:-3.000000px;}
.ls8_c00042{letter-spacing:0.000000px;}
.ls5_c00042{letter-spacing:0.471000px;}
.lse_c00042{letter-spacing:3.000000px;}
.ls1_c00042{letter-spacing:3.120000px;}
.ls6_c00042{letter-spacing:3.612000px;}
.ls4_c00042{letter-spacing:5.460000px;}
.lsb_c00042{letter-spacing:6.000000px;}
.ls0_c00042{letter-spacing:23.520000px;}
.ls2_c00042{letter-spacing:27.000000px;}
.lsd_c00042{letter-spacing:33.000000px;}
.ls3_c00042{letter-spacing:50.940000px;}
.ls7_c00042{letter-spacing:55.350000px;}
.sc__c00042{text-shadow:none;}
.sc0_c00042{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00042{-webkit-text-stroke:0px transparent;}
.sc0_c00042{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c00042{word-spacing:-45.036000px;}
.ws8_c00042{word-spacing:-42.060000px;}
.ws4_c00042{word-spacing:-30.303000px;}
.ws5_c00042{word-spacing:-21.813000px;}
.wsa_c00042{word-spacing:-20.295000px;}
.ws3_c00042{word-spacing:-18.180000px;}
.ws6_c00042{word-spacing:-15.750000px;}
.ws0_c00042{word-spacing:-15.060000px;}
.ws7_c00042{word-spacing:-15.000000px;}
.ws2_c00042{word-spacing:-14.160000px;}
.ws1_c00042{word-spacing:-8.868000px;}
.wsc_c00042{word-spacing:0.000000px;}
.ws9_c00042{word-spacing:6.540000px;}
._19_c00042{margin-left:-12.678000px;}
._12_c00042{margin-left:-11.220000px;}
._1a_c00042{margin-left:-10.005000px;}
._17_c00042{margin-left:-8.520000px;}
._10_c00042{margin-left:-7.260000px;}
._c_c00042{margin-left:-6.180000px;}
._11_c00042{margin-left:-4.260000px;}
._f_c00042{margin-left:-2.820000px;}
._b_c00042{margin-left:-1.500000px;}
._e_c00042{width:1.620000px;}
._7_c00042{width:2.760000px;}
._a_c00042{width:4.020000px;}
._6_c00042{width:5.040000px;}
._5_c00042{width:6.840000px;}
._13_c00042{width:8.040000px;}
._d_c00042{width:9.600000px;}
._8_c00042{width:10.800000px;}
._1_c00042{width:11.820000px;}
._3_c00042{width:13.440000px;}
._2_c00042{width:16.560000px;}
._1c_c00042{width:17.700000px;}
._0_c00042{width:18.900000px;}
._16_c00042{width:21.054000px;}
._22_c00042{width:23.880000px;}
._24_c00042{width:25.380000px;}
._20_c00042{width:32.340000px;}
._27_c00042{width:34.500000px;}
._23_c00042{width:36.900000px;}
._1b_c00042{width:39.180000px;}
._4_c00042{width:41.040000px;}
._2a_c00042{width:48.180000px;}
._29_c00042{width:53.760000px;}
._2c_c00042{width:59.280000px;}
._14_c00042{width:61.680000px;}
._21_c00042{width:65.940000px;}
._9_c00042{width:92.220000px;}
._18_c00042{width:96.510000px;}
._28_c00042{width:105.000000px;}
._15_c00042{width:119.520000px;}
._2b_c00042{width:121.392000px;}
._1f_c00042{width:124.740000px;}
._1e_c00042{width:133.680000px;}
._26_c00042{width:153.900000px;}
._1d_c00042{width:324.000000px;}
._25_c00042{width:362.040000px;}
.fc2_c00042{color:transparent;}
.fc1_c00042{color:rgb(128,128,128);}
.fc0_c00042{color:rgb(0,0,0);}
.fs3_c00042{font-size:45.000000px;}
.fs5_c00042{font-size:48.000000px;}
.fs4_c00042{font-size:51.000000px;}
.fs0_c00042{font-size:60.000000px;}
.fs1_c00042{font-size:63.000000px;}
.fs2_c00042{font-size:69.000000px;}
.y0_c00042{bottom:0.000000px;}
.y57_c00042{bottom:3.105000px;}
.y56_c00042{bottom:7.228355px;}
.y55_c00042{bottom:25.635000px;}
.y2b_c00042{bottom:42.435000px;}
.y54_c00042{bottom:42.735000px;}
.y2a_c00042{bottom:60.735000px;}
.y53_c00042{bottom:61.335000px;}
.y29_c00042{bottom:79.335000px;}
.y52_c00042{bottom:80.985000px;}
.y51_c00042{bottom:94.185000px;}
.y28_c00042{bottom:97.185000px;}
.y50_c00042{bottom:113.985000px;}
.y27_c00042{bottom:114.735000px;}
.y4f_c00042{bottom:131.535000px;}
.y26_c00042{bottom:132.285000px;}
.y4e_c00042{bottom:149.535000px;}
.y25_c00042{bottom:151.185000px;}
.y4d_c00042{bottom:167.385000px;}
.y24_c00042{bottom:167.685000px;}
.y23_c00042{bottom:185.985000px;}
.y4c_c00042{bottom:186.285000px;}
.y4b_c00042{bottom:203.385000px;}
.y22_c00042{bottom:204.135000px;}
.y4a_c00042{bottom:220.935000px;}
.y21_c00042{bottom:222.735000px;}
.y49_c00042{bottom:238.635000px;}
.y20_c00042{bottom:240.285000px;}
.y48_c00042{bottom:256.785000px;}
.y1f_c00042{bottom:258.135000px;}
.y47_c00042{bottom:274.635000px;}
.y1e_c00042{bottom:276.285000px;}
.y46_c00042{bottom:292.935000px;}
.y1d_c00042{bottom:294.285000px;}
.y45_c00042{bottom:310.485000px;}
.y1c_c00042{bottom:311.835000px;}
.y44_c00042{bottom:328.335000px;}
.y1b_c00042{bottom:330.285000px;}
.y43_c00042{bottom:345.585000px;}
.y1a_c00042{bottom:347.535000px;}
.y42_c00042{bottom:364.035000px;}
.y19_c00042{bottom:365.535000px;}
.y41_c00042{bottom:381.735000px;}
.y18_c00042{bottom:383.385000px;}
.y40_c00042{bottom:399.885000px;}
.y17_c00042{bottom:401.235000px;}
.y3f_c00042{bottom:417.435000px;}
.y16_c00042{bottom:418.185000px;}
.y3e_c00042{bottom:435.285000px;}
.y15_c00042{bottom:436.935000px;}
.y3d_c00042{bottom:453.585000px;}
.y14_c00042{bottom:453.885000px;}
.y3c_c00042{bottom:471.135000px;}
.y13_c00042{bottom:472.035000px;}
.y3b_c00042{bottom:489.285000px;}
.y12_c00042{bottom:490.035000px;}
.y3a_c00042{bottom:507.285000px;}
.y11_c00042{bottom:507.885000px;}
.y39_c00042{bottom:524.385000px;}
.y10_c00042{bottom:526.485000px;}
.y38_c00042{bottom:542.985000px;}
.yf_c00042{bottom:543.735000px;}
.ye_c00042{bottom:560.835000px;}
.y37_c00042{bottom:561.135000px;}
.y36_c00042{bottom:579.435000px;}
.yd_c00042{bottom:580.035000px;}
.y35_c00042{bottom:596.385000px;}
.yc_c00042{bottom:597.735000px;}
.y34_c00042{bottom:615.285000px;}
.yb_c00042{bottom:615.585000px;}
.y33_c00042{bottom:633.435000px;}
.ya_c00042{bottom:634.035000px;}
.y32_c00042{bottom:651.285000px;}
.y9_c00042{bottom:652.035000px;}
.y31_c00042{bottom:669.285000px;}
.y8_c00042{bottom:669.885000px;}
.y30_c00042{bottom:687.735000px;}
.y7_c00042{bottom:688.185000px;}
.y2f_c00042{bottom:705.285000px;}
.y6_c00042{bottom:706.035000px;}
.y5_c00042{bottom:723.885000px;}
.y4_c00042{bottom:742.035000px;}
.y2e_c00042{bottom:742.185000px;}
.y2d_c00042{bottom:759.585000px;}
.y3_c00042{bottom:759.735000px;}
.y2c_c00042{bottom:776.835000px;}
.y2_c00042{bottom:777.885000px;}
.y1_c00042{bottom:796.185000px;}
.h7_c00042{height:13.200074px;}
.h8_c00042{height:43.804688px;}
.h6_c00042{height:53.448000px;}
.h2_c00042{height:62.880000px;}
.h5_c00042{height:64.020000px;}
.h4_c00042{height:67.221000px;}
.h3_c00042{height:73.623000px;}
.h0_c00042{height:836.175000px;}
.h1_c00042{height:836.250000px;}
.w2_c00042{width:104.875500px;}
.w0_c00042{width:569.700000px;}
.w1_c00042{width:570.000000px;}
.x0_c00042{left:0.000000px;}
.x5_c00042{left:13.500000px;}
.x3_c00042{left:15.150000px;}
.x7_c00042{left:17.100000px;}
.x8_c00042{left:18.150000px;}
.xc_c00042{left:19.800000px;}
.xd_c00042{left:25.650000px;}
.x4_c00042{left:27.600000px;}
.x9_c00042{left:30.000000px;}
.x6_c00042{left:31.050000px;}
.xa_c00042{left:33.750000px;}
.xb_c00042{left:35.700000px;}
.x2_c00042{left:73.200000px;}
.x1_c00042{left:125.250000px;}
.x19_c00042{left:236.664230px;}
.xf_c00042{left:268.200000px;}
.x12_c00042{left:270.000000px;}
.x15_c00042{left:271.350000px;}
.x17_c00042{left:272.400000px;}
.xe_c00042{left:274.950000px;}
.x13_c00042{left:282.750000px;}
.x11_c00042{left:284.100000px;}
.x14_c00042{left:285.450000px;}
.x16_c00042{left:287.550000px;}
.x10_c00042{left:341.250000px;}
.x18_c00042{left:479.550000px;}
@media print{
.v0_c00042{vertical-align:0.000000pt;}
.lsc_c00042{letter-spacing:-8.000000pt;}
.ls9_c00042{letter-spacing:-5.333333pt;}
.lsa_c00042{letter-spacing:-2.666667pt;}
.ls8_c00042{letter-spacing:0.000000pt;}
.ls5_c00042{letter-spacing:0.418667pt;}
.lse_c00042{letter-spacing:2.666667pt;}
.ls1_c00042{letter-spacing:2.773333pt;}
.ls6_c00042{letter-spacing:3.210667pt;}
.ls4_c00042{letter-spacing:4.853333pt;}
.lsb_c00042{letter-spacing:5.333333pt;}
.ls0_c00042{letter-spacing:20.906667pt;}
.ls2_c00042{letter-spacing:24.000000pt;}
.lsd_c00042{letter-spacing:29.333333pt;}
.ls3_c00042{letter-spacing:45.280000pt;}
.ls7_c00042{letter-spacing:49.200000pt;}
.wsb_c00042{word-spacing:-40.032000pt;}
.ws8_c00042{word-spacing:-37.386667pt;}
.ws4_c00042{word-spacing:-26.936000pt;}
.ws5_c00042{word-spacing:-19.389333pt;}
.wsa_c00042{word-spacing:-18.040000pt;}
.ws3_c00042{word-spacing:-16.160000pt;}
.ws6_c00042{word-spacing:-14.000000pt;}
.ws0_c00042{word-spacing:-13.386667pt;}
.ws7_c00042{word-spacing:-13.333333pt;}
.ws2_c00042{word-spacing:-12.586667pt;}
.ws1_c00042{word-spacing:-7.882667pt;}
.wsc_c00042{word-spacing:0.000000pt;}
.ws9_c00042{word-spacing:5.813333pt;}
._19_c00042{margin-left:-11.269333pt;}
._12_c00042{margin-left:-9.973333pt;}
._1a_c00042{margin-left:-8.893333pt;}
._17_c00042{margin-left:-7.573333pt;}
._10_c00042{margin-left:-6.453333pt;}
._c_c00042{margin-left:-5.493333pt;}
._11_c00042{margin-left:-3.786667pt;}
._f_c00042{margin-left:-2.506667pt;}
._b_c00042{margin-left:-1.333333pt;}
._e_c00042{width:1.440000pt;}
._7_c00042{width:2.453333pt;}
._a_c00042{width:3.573333pt;}
._6_c00042{width:4.480000pt;}
._5_c00042{width:6.080000pt;}
._13_c00042{width:7.146667pt;}
._d_c00042{width:8.533333pt;}
._8_c00042{width:9.600000pt;}
._1_c00042{width:10.506667pt;}
._3_c00042{width:11.946667pt;}
._2_c00042{width:14.720000pt;}
._1c_c00042{width:15.733333pt;}
._0_c00042{width:16.800000pt;}
._16_c00042{width:18.714667pt;}
._22_c00042{width:21.226667pt;}
._24_c00042{width:22.560000pt;}
._20_c00042{width:28.746667pt;}
._27_c00042{width:30.666667pt;}
._23_c00042{width:32.800000pt;}
._1b_c00042{width:34.826667pt;}
._4_c00042{width:36.480000pt;}
._2a_c00042{width:42.826667pt;}
._29_c00042{width:47.786667pt;}
._2c_c00042{width:52.693333pt;}
._14_c00042{width:54.826667pt;}
._21_c00042{width:58.613333pt;}
._9_c00042{width:81.973333pt;}
._18_c00042{width:85.786667pt;}
._28_c00042{width:93.333333pt;}
._15_c00042{width:106.240000pt;}
._2b_c00042{width:107.904000pt;}
._1f_c00042{width:110.880000pt;}
._1e_c00042{width:118.826667pt;}
._26_c00042{width:136.800000pt;}
._1d_c00042{width:288.000000pt;}
._25_c00042{width:321.813333pt;}
.fs3_c00042{font-size:40.000000pt;}
.fs5_c00042{font-size:42.666667pt;}
.fs4_c00042{font-size:45.333333pt;}
.fs0_c00042{font-size:53.333333pt;}
.fs1_c00042{font-size:56.000000pt;}
.fs2_c00042{font-size:61.333333pt;}
.y0_c00042{bottom:0.000000pt;}
.y57_c00042{bottom:2.760000pt;}
.y56_c00042{bottom:6.425204pt;}
.y55_c00042{bottom:22.786667pt;}
.y2b_c00042{bottom:37.720000pt;}
.y54_c00042{bottom:37.986667pt;}
.y2a_c00042{bottom:53.986667pt;}
.y53_c00042{bottom:54.520000pt;}
.y29_c00042{bottom:70.520000pt;}
.y52_c00042{bottom:71.986667pt;}
.y51_c00042{bottom:83.720000pt;}
.y28_c00042{bottom:86.386667pt;}
.y50_c00042{bottom:101.320000pt;}
.y27_c00042{bottom:101.986667pt;}
.y4f_c00042{bottom:116.920000pt;}
.y26_c00042{bottom:117.586667pt;}
.y4e_c00042{bottom:132.920000pt;}
.y25_c00042{bottom:134.386667pt;}
.y4d_c00042{bottom:148.786667pt;}
.y24_c00042{bottom:149.053333pt;}
.y23_c00042{bottom:165.320000pt;}
.y4c_c00042{bottom:165.586667pt;}
.y4b_c00042{bottom:180.786667pt;}
.y22_c00042{bottom:181.453333pt;}
.y4a_c00042{bottom:196.386667pt;}
.y21_c00042{bottom:197.986667pt;}
.y49_c00042{bottom:212.120000pt;}
.y20_c00042{bottom:213.586667pt;}
.y48_c00042{bottom:228.253333pt;}
.y1f_c00042{bottom:229.453333pt;}
.y47_c00042{bottom:244.120000pt;}
.y1e_c00042{bottom:245.586667pt;}
.y46_c00042{bottom:260.386667pt;}
.y1d_c00042{bottom:261.586667pt;}
.y45_c00042{bottom:275.986667pt;}
.y1c_c00042{bottom:277.186667pt;}
.y44_c00042{bottom:291.853333pt;}
.y1b_c00042{bottom:293.586667pt;}
.y43_c00042{bottom:307.186667pt;}
.y1a_c00042{bottom:308.920000pt;}
.y42_c00042{bottom:323.586667pt;}
.y19_c00042{bottom:324.920000pt;}
.y41_c00042{bottom:339.320000pt;}
.y18_c00042{bottom:340.786667pt;}
.y40_c00042{bottom:355.453333pt;}
.y17_c00042{bottom:356.653333pt;}
.y3f_c00042{bottom:371.053333pt;}
.y16_c00042{bottom:371.720000pt;}
.y3e_c00042{bottom:386.920000pt;}
.y15_c00042{bottom:388.386667pt;}
.y3d_c00042{bottom:403.186667pt;}
.y14_c00042{bottom:403.453333pt;}
.y3c_c00042{bottom:418.786667pt;}
.y13_c00042{bottom:419.586667pt;}
.y3b_c00042{bottom:434.920000pt;}
.y12_c00042{bottom:435.586667pt;}
.y3a_c00042{bottom:450.920000pt;}
.y11_c00042{bottom:451.453333pt;}
.y39_c00042{bottom:466.120000pt;}
.y10_c00042{bottom:467.986667pt;}
.y38_c00042{bottom:482.653333pt;}
.yf_c00042{bottom:483.320000pt;}
.ye_c00042{bottom:498.520000pt;}
.y37_c00042{bottom:498.786667pt;}
.y36_c00042{bottom:515.053333pt;}
.yd_c00042{bottom:515.586667pt;}
.y35_c00042{bottom:530.120000pt;}
.yc_c00042{bottom:531.320000pt;}
.y34_c00042{bottom:546.920000pt;}
.yb_c00042{bottom:547.186667pt;}
.y33_c00042{bottom:563.053333pt;}
.ya_c00042{bottom:563.586667pt;}
.y32_c00042{bottom:578.920000pt;}
.y9_c00042{bottom:579.586667pt;}
.y31_c00042{bottom:594.920000pt;}
.y8_c00042{bottom:595.453333pt;}
.y30_c00042{bottom:611.320000pt;}
.y7_c00042{bottom:611.720000pt;}
.y2f_c00042{bottom:626.920000pt;}
.y6_c00042{bottom:627.586667pt;}
.y5_c00042{bottom:643.453333pt;}
.y4_c00042{bottom:659.586667pt;}
.y2e_c00042{bottom:659.720000pt;}
.y2d_c00042{bottom:675.186667pt;}
.y3_c00042{bottom:675.320000pt;}
.y2c_c00042{bottom:690.520000pt;}
.y2_c00042{bottom:691.453333pt;}
.y1_c00042{bottom:707.720000pt;}
.h7_c00042{height:11.733399pt;}
.h8_c00042{height:38.937500pt;}
.h6_c00042{height:47.509333pt;}
.h2_c00042{height:55.893333pt;}
.h5_c00042{height:56.906667pt;}
.h4_c00042{height:59.752000pt;}
.h3_c00042{height:65.442667pt;}
.h0_c00042{height:743.266667pt;}
.h1_c00042{height:743.333333pt;}
.w2_c00042{width:93.222667pt;}
.w0_c00042{width:506.400000pt;}
.w1_c00042{width:506.666667pt;}
.x0_c00042{left:0.000000pt;}
.x5_c00042{left:12.000000pt;}
.x3_c00042{left:13.466667pt;}
.x7_c00042{left:15.200000pt;}
.x8_c00042{left:16.133333pt;}
.xc_c00042{left:17.600000pt;}
.xd_c00042{left:22.800000pt;}
.x4_c00042{left:24.533333pt;}
.x9_c00042{left:26.666667pt;}
.x6_c00042{left:27.600000pt;}
.xa_c00042{left:30.000000pt;}
.xb_c00042{left:31.733333pt;}
.x2_c00042{left:65.066667pt;}
.x1_c00042{left:111.333333pt;}
.x19_c00042{left:210.368205pt;}
.xf_c00042{left:238.400000pt;}
.x12_c00042{left:240.000000pt;}
.x15_c00042{left:241.200000pt;}
.x17_c00042{left:242.133333pt;}
.xe_c00042{left:244.400000pt;}
.x13_c00042{left:251.333333pt;}
.x11_c00042{left:252.533333pt;}
.x14_c00042{left:253.733333pt;}
.x16_c00042{left:255.600000pt;}
.x10_c00042{left:303.333333pt;}
.x18_c00042{left:426.266667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_988d5de3a8ff209ed01a9d57.woff2')format("woff");}.ff1_c00043{font-family:ff1_c00043;line-height:1.437000;font-style:normal;font-weight:normal;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_7e095523b0bed646266dd52e.woff2')format("woff");}.ff2_c00043{font-family:ff2_c00043;line-height:1.575000;font-style:normal;font-weight:normal;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_6cc4e5cae6ad8a5113938cdb.woff2')format("woff");}.ff3_c00043{font-family:ff3_c00043;line-height:1.437000;font-style:normal;font-weight:normal;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_f36f215417655d53ae0a08d8.woff2')format("woff");}.ff4_c00043{font-family:ff4_c00043;line-height:1.437000;font-style:normal;font-weight:normal;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_392dac2cf78417460ec77d93.woff2')format("woff");}.ff5_c00043{font-family:ff5_c00043;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00043;src:url('chunks/assets/font_9ca82e09fd6fcce2d1af7492.woff2')format("woff");}.ff6_c00043{font-family:ff6_c00043;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00043;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff7_c00043{font-family:ff7_c00043;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00043{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00043{vertical-align:-69.000000px;}
.v0_c00043{vertical-align:0.000000px;}
.ls3_c00043{letter-spacing:0.000000px;}
.ls2_c00043{letter-spacing:6.000000px;}
.ls4_c00043{letter-spacing:9.000000px;}
.ls1_c00043{letter-spacing:11.160000px;}
.ls0_c00043{letter-spacing:128.694000px;}
.sc__c00043{text-shadow:none;}
.sc0_c00043{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00043{-webkit-text-stroke:0px transparent;}
.sc0_c00043{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00043{word-spacing:-30.957000px;}
.ws5_c00043{word-spacing:-19.053000px;}
.ws4_c00043{word-spacing:-17.340000px;}
.ws3_c00043{word-spacing:-15.060000px;}
.ws2_c00043{word-spacing:-14.160000px;}
.ws1_c00043{word-spacing:-13.053000px;}
.ws6_c00043{word-spacing:0.000000px;}
._24_c00043{margin-left:-26.520000px;}
._27_c00043{margin-left:-21.480000px;}
._19_c00043{margin-left:-18.960000px;}
._29_c00043{margin-left:-17.502000px;}
._5_c00043{margin-left:-16.140000px;}
._1f_c00043{margin-left:-13.806000px;}
._16_c00043{margin-left:-10.782000px;}
._18_c00043{margin-left:-9.540000px;}
._23_c00043{margin-left:-8.358000px;}
._11_c00043{margin-left:-6.420000px;}
._4_c00043{margin-left:-5.160000px;}
._14_c00043{margin-left:-3.477000px;}
._13_c00043{margin-left:-2.430000px;}
._6_c00043{margin-left:-1.260000px;}
._a_c00043{width:1.920000px;}
._b_c00043{width:3.240000px;}
._9_c00043{width:4.320000px;}
._8_c00043{width:5.400000px;}
._7_c00043{width:6.480000px;}
._c_c00043{width:8.040000px;}
._10_c00043{width:9.600000px;}
._e_c00043{width:10.620000px;}
._f_c00043{width:11.640000px;}
._20_c00043{width:12.660000px;}
._17_c00043{width:13.800000px;}
._15_c00043{width:15.291000px;}
._2_c00043{width:16.380000px;}
._0_c00043{width:17.520000px;}
._1_c00043{width:18.660000px;}
._12_c00043{width:19.920000px;}
._1e_c00043{width:22.920000px;}
._1a_c00043{width:26.040000px;}
._22_c00043{width:27.747000px;}
._2b_c00043{width:29.049000px;}
._26_c00043{width:30.060000px;}
._2c_c00043{width:34.020000px;}
._3_c00043{width:35.820000px;}
._28_c00043{width:37.197000px;}
._1c_c00043{width:39.840000px;}
._d_c00043{width:44.640000px;}
._1b_c00043{width:49.140000px;}
._25_c00043{width:53.166000px;}
._21_c00043{width:109.740000px;}
._1d_c00043{width:136.260000px;}
._2a_c00043{width:139.440000px;}
.fc2_c00043{color:transparent;}
.fc1_c00043{color:rgb(128,128,128);}
.fc0_c00043{color:rgb(0,0,0);}
.fs5_c00043{font-size:48.000000px;}
.fs1_c00043{font-size:51.000000px;}
.fs2_c00043{font-size:54.000000px;}
.fs3_c00043{font-size:57.000000px;}
.fs0_c00043{font-size:60.000000px;}
.fs4_c00043{font-size:72.000000px;}
.y0_c00043{bottom:0.000000px;}
.y56_c00043{bottom:3.105000px;}
.y55_c00043{bottom:7.228363px;}
.y2c_c00043{bottom:28.050000px;}
.y54_c00043{bottom:40.200000px;}
.y2b_c00043{bottom:41.850000px;}
.y53_c00043{bottom:59.400000px;}
.y2a_c00043{bottom:60.150000px;}
.y52_c00043{bottom:77.250000px;}
.y29_c00043{bottom:78.300000px;}
.y28_c00043{bottom:95.250000px;}
.y51_c00043{bottom:95.550000px;}
.y50_c00043{bottom:113.700000px;}
.y27_c00043{bottom:114.150000px;}
.y4f_c00043{bottom:130.950000px;}
.y26_c00043{bottom:131.400000px;}
.y4e_c00043{bottom:149.250000px;}
.y25_c00043{bottom:149.550000px;}
.y4d_c00043{bottom:166.800000px;}
.y24_c00043{bottom:167.850000px;}
.y23_c00043{bottom:185.400000px;}
.y4c_c00043{bottom:203.250000px;}
.y22_c00043{bottom:204.300000px;}
.y4b_c00043{bottom:221.100000px;}
.y21_c00043{bottom:222.450000px;}
.y4a_c00043{bottom:238.950000px;}
.y20_c00043{bottom:239.400000px;}
.y49_c00043{bottom:256.950000px;}
.y1f_c00043{bottom:257.250000px;}
.y48_c00043{bottom:275.100000px;}
.y1e_c00043{bottom:276.150000px;}
.y47_c00043{bottom:291.900000px;}
.y1d_c00043{bottom:292.950000px;}
.y46_c00043{bottom:310.500000px;}
.y1c_c00043{bottom:310.950000px;}
.y45_c00043{bottom:327.450000px;}
.y1b_c00043{bottom:328.800000px;}
.y44_c00043{bottom:345.600000px;}
.y1a_c00043{bottom:346.650000px;}
.y43_c00043{bottom:363.600000px;}
.y19_c00043{bottom:363.900000px;}
.y42_c00043{bottom:382.050000px;}
.y18_c00043{bottom:382.800000px;}
.y41_c00043{bottom:399.900000px;}
.y17_c00043{bottom:400.050000px;}
.y16_c00043{bottom:417.750000px;}
.y40_c00043{bottom:418.500000px;}
.y15_c00043{bottom:435.750000px;}
.y14_c00043{bottom:453.600000px;}
.y3f_c00043{bottom:471.600000px;}
.y13_c00043{bottom:471.900000px;}
.y3e_c00043{bottom:489.450000px;}
.y12_c00043{bottom:490.350000px;}
.y3d_c00043{bottom:507.900000px;}
.y11_c00043{bottom:508.200000px;}
.y3c_c00043{bottom:525.900000px;}
.y10_c00043{bottom:526.200000px;}
.yf_c00043{bottom:543.750000px;}
.y3b_c00043{bottom:544.350000px;}
.ye_c00043{bottom:561.900000px;}
.y3a_c00043{bottom:562.350000px;}
.yd_c00043{bottom:579.900000px;}
.y39_c00043{bottom:580.800000px;}
.yc_c00043{bottom:597.750000px;}
.y38_c00043{bottom:598.500000px;}
.yb_c00043{bottom:615.600000px;}
.y37_c00043{bottom:616.650000px;}
.ya_c00043{bottom:633.750000px;}
.y36_c00043{bottom:634.800000px;}
.y9_c00043{bottom:651.750000px;}
.y35_c00043{bottom:652.500000px;}
.y34_c00043{bottom:669.900000px;}
.y8_c00043{bottom:670.050000px;}
.y7_c00043{bottom:688.500000px;}
.y33_c00043{bottom:689.100000px;}
.y6_c00043{bottom:706.800000px;}
.y32_c00043{bottom:707.100000px;}
.y5_c00043{bottom:724.500000px;}
.y31_c00043{bottom:725.400000px;}
.y4_c00043{bottom:742.500000px;}
.y30_c00043{bottom:743.100000px;}
.y3_c00043{bottom:760.800000px;}
.y2f_c00043{bottom:762.000000px;}
.y2e_c00043{bottom:778.950000px;}
.y2_c00043{bottom:779.250000px;}
.y1_c00043{bottom:796.950000px;}
.y2d_c00043{bottom:799.200000px;}
.h7_c00043{height:13.200074px;}
.h8_c00043{height:43.804688px;}
.h3_c00043{height:59.736000px;}
.h2_c00043{height:62.880000px;}
.h5_c00043{height:63.480000px;}
.h6_c00043{height:64.020000px;}
.h4_c00043{height:75.456000px;}
.h1_c00043{height:842.250000px;}
.h0_c00043{height:842.400000px;}
.w2_c00043{width:104.875500px;}
.w1_c00043{width:559.500000px;}
.w0_c00043{width:559.725000px;}
.x0_c00043{left:0.000000px;}
.x12_c00043{left:50.250000px;}
.x11_c00043{left:51.300000px;}
.xd_c00043{left:52.650000px;}
.xa_c00043{left:54.000000px;}
.x2_c00043{left:55.350000px;}
.x6_c00043{left:56.700000px;}
.x5_c00043{left:58.050000px;}
.x3_c00043{left:59.100000px;}
.x14_c00043{left:60.750000px;}
.x13_c00043{left:62.700000px;}
.x8_c00043{left:66.750000px;}
.x4_c00043{left:71.850000px;}
.x7_c00043{left:76.650000px;}
.xb_c00043{left:87.000000px;}
.xe_c00043{left:94.500000px;}
.x9_c00043{left:97.500000px;}
.x10_c00043{left:98.850000px;}
.xc_c00043{left:106.650000px;}
.x1_c00043{left:160.350000px;}
.xf_c00043{left:170.700000px;}
.x1f_c00043{left:231.676758px;}
.x1c_c00043{left:302.700000px;}
.x1d_c00043{left:304.800000px;}
.x1b_c00043{left:306.000000px;}
.x15_c00043{left:307.350000px;}
.x18_c00043{left:308.850000px;}
.x16_c00043{left:310.500000px;}
.x17_c00043{left:319.950000px;}
.x1a_c00043{left:322.950000px;}
.x1e_c00043{left:324.000000px;}
.x19_c00043{left:347.550000px;}
@media print{
.v1_c00043{vertical-align:-61.333333pt;}
.v0_c00043{vertical-align:0.000000pt;}
.ls3_c00043{letter-spacing:0.000000pt;}
.ls2_c00043{letter-spacing:5.333333pt;}
.ls4_c00043{letter-spacing:8.000000pt;}
.ls1_c00043{letter-spacing:9.920000pt;}
.ls0_c00043{letter-spacing:114.394667pt;}
.ws0_c00043{word-spacing:-27.517333pt;}
.ws5_c00043{word-spacing:-16.936000pt;}
.ws4_c00043{word-spacing:-15.413333pt;}
.ws3_c00043{word-spacing:-13.386667pt;}
.ws2_c00043{word-spacing:-12.586667pt;}
.ws1_c00043{word-spacing:-11.602667pt;}
.ws6_c00043{word-spacing:0.000000pt;}
._24_c00043{margin-left:-23.573333pt;}
._27_c00043{margin-left:-19.093333pt;}
._19_c00043{margin-left:-16.853333pt;}
._29_c00043{margin-left:-15.557333pt;}
._5_c00043{margin-left:-14.346667pt;}
._1f_c00043{margin-left:-12.272000pt;}
._16_c00043{margin-left:-9.584000pt;}
._18_c00043{margin-left:-8.480000pt;}
._23_c00043{margin-left:-7.429333pt;}
._11_c00043{margin-left:-5.706667pt;}
._4_c00043{margin-left:-4.586667pt;}
._14_c00043{margin-left:-3.090667pt;}
._13_c00043{margin-left:-2.160000pt;}
._6_c00043{margin-left:-1.120000pt;}
._a_c00043{width:1.706667pt;}
._b_c00043{width:2.880000pt;}
._9_c00043{width:3.840000pt;}
._8_c00043{width:4.800000pt;}
._7_c00043{width:5.760000pt;}
._c_c00043{width:7.146667pt;}
._10_c00043{width:8.533333pt;}
._e_c00043{width:9.440000pt;}
._f_c00043{width:10.346667pt;}
._20_c00043{width:11.253333pt;}
._17_c00043{width:12.266667pt;}
._15_c00043{width:13.592000pt;}
._2_c00043{width:14.560000pt;}
._0_c00043{width:15.573333pt;}
._1_c00043{width:16.586667pt;}
._12_c00043{width:17.706667pt;}
._1e_c00043{width:20.373333pt;}
._1a_c00043{width:23.146667pt;}
._22_c00043{width:24.664000pt;}
._2b_c00043{width:25.821333pt;}
._26_c00043{width:26.720000pt;}
._2c_c00043{width:30.240000pt;}
._3_c00043{width:31.840000pt;}
._28_c00043{width:33.064000pt;}
._1c_c00043{width:35.413333pt;}
._d_c00043{width:39.680000pt;}
._1b_c00043{width:43.680000pt;}
._25_c00043{width:47.258667pt;}
._21_c00043{width:97.546667pt;}
._1d_c00043{width:121.120000pt;}
._2a_c00043{width:123.946667pt;}
.fs5_c00043{font-size:42.666667pt;}
.fs1_c00043{font-size:45.333333pt;}
.fs2_c00043{font-size:48.000000pt;}
.fs3_c00043{font-size:50.666667pt;}
.fs0_c00043{font-size:53.333333pt;}
.fs4_c00043{font-size:64.000000pt;}
.y0_c00043{bottom:0.000000pt;}
.y56_c00043{bottom:2.760000pt;}
.y55_c00043{bottom:6.425212pt;}
.y2c_c00043{bottom:24.933333pt;}
.y54_c00043{bottom:35.733333pt;}
.y2b_c00043{bottom:37.200000pt;}
.y53_c00043{bottom:52.800000pt;}
.y2a_c00043{bottom:53.466667pt;}
.y52_c00043{bottom:68.666667pt;}
.y29_c00043{bottom:69.600000pt;}
.y28_c00043{bottom:84.666667pt;}
.y51_c00043{bottom:84.933333pt;}
.y50_c00043{bottom:101.066667pt;}
.y27_c00043{bottom:101.466667pt;}
.y4f_c00043{bottom:116.400000pt;}
.y26_c00043{bottom:116.800000pt;}
.y4e_c00043{bottom:132.666667pt;}
.y25_c00043{bottom:132.933333pt;}
.y4d_c00043{bottom:148.266667pt;}
.y24_c00043{bottom:149.200000pt;}
.y23_c00043{bottom:164.800000pt;}
.y4c_c00043{bottom:180.666667pt;}
.y22_c00043{bottom:181.600000pt;}
.y4b_c00043{bottom:196.533333pt;}
.y21_c00043{bottom:197.733333pt;}
.y4a_c00043{bottom:212.400000pt;}
.y20_c00043{bottom:212.800000pt;}
.y49_c00043{bottom:228.400000pt;}
.y1f_c00043{bottom:228.666667pt;}
.y48_c00043{bottom:244.533333pt;}
.y1e_c00043{bottom:245.466667pt;}
.y47_c00043{bottom:259.466667pt;}
.y1d_c00043{bottom:260.400000pt;}
.y46_c00043{bottom:276.000000pt;}
.y1c_c00043{bottom:276.400000pt;}
.y45_c00043{bottom:291.066667pt;}
.y1b_c00043{bottom:292.266667pt;}
.y44_c00043{bottom:307.200000pt;}
.y1a_c00043{bottom:308.133333pt;}
.y43_c00043{bottom:323.200000pt;}
.y19_c00043{bottom:323.466667pt;}
.y42_c00043{bottom:339.600000pt;}
.y18_c00043{bottom:340.266667pt;}
.y41_c00043{bottom:355.466667pt;}
.y17_c00043{bottom:355.600000pt;}
.y16_c00043{bottom:371.333333pt;}
.y40_c00043{bottom:372.000000pt;}
.y15_c00043{bottom:387.333333pt;}
.y14_c00043{bottom:403.200000pt;}
.y3f_c00043{bottom:419.200000pt;}
.y13_c00043{bottom:419.466667pt;}
.y3e_c00043{bottom:435.066667pt;}
.y12_c00043{bottom:435.866667pt;}
.y3d_c00043{bottom:451.466667pt;}
.y11_c00043{bottom:451.733333pt;}
.y3c_c00043{bottom:467.466667pt;}
.y10_c00043{bottom:467.733333pt;}
.yf_c00043{bottom:483.333333pt;}
.y3b_c00043{bottom:483.866667pt;}
.ye_c00043{bottom:499.466667pt;}
.y3a_c00043{bottom:499.866667pt;}
.yd_c00043{bottom:515.466667pt;}
.y39_c00043{bottom:516.266667pt;}
.yc_c00043{bottom:531.333333pt;}
.y38_c00043{bottom:532.000000pt;}
.yb_c00043{bottom:547.200000pt;}
.y37_c00043{bottom:548.133333pt;}
.ya_c00043{bottom:563.333333pt;}
.y36_c00043{bottom:564.266667pt;}
.y9_c00043{bottom:579.333333pt;}
.y35_c00043{bottom:580.000000pt;}
.y34_c00043{bottom:595.466667pt;}
.y8_c00043{bottom:595.600000pt;}
.y7_c00043{bottom:612.000000pt;}
.y33_c00043{bottom:612.533333pt;}
.y6_c00043{bottom:628.266667pt;}
.y32_c00043{bottom:628.533333pt;}
.y5_c00043{bottom:644.000000pt;}
.y31_c00043{bottom:644.800000pt;}
.y4_c00043{bottom:660.000000pt;}
.y30_c00043{bottom:660.533333pt;}
.y3_c00043{bottom:676.266667pt;}
.y2f_c00043{bottom:677.333333pt;}
.y2e_c00043{bottom:692.400000pt;}
.y2_c00043{bottom:692.666667pt;}
.y1_c00043{bottom:708.400000pt;}
.y2d_c00043{bottom:710.400000pt;}
.h7_c00043{height:11.733399pt;}
.h8_c00043{height:38.937500pt;}
.h3_c00043{height:53.098667pt;}
.h2_c00043{height:55.893333pt;}
.h5_c00043{height:56.426667pt;}
.h6_c00043{height:56.906667pt;}
.h4_c00043{height:67.072000pt;}
.h1_c00043{height:748.666667pt;}
.h0_c00043{height:748.800000pt;}
.w2_c00043{width:93.222667pt;}
.w1_c00043{width:497.333333pt;}
.w0_c00043{width:497.533333pt;}
.x0_c00043{left:0.000000pt;}
.x12_c00043{left:44.666667pt;}
.x11_c00043{left:45.600000pt;}
.xd_c00043{left:46.800000pt;}
.xa_c00043{left:48.000000pt;}
.x2_c00043{left:49.200000pt;}
.x6_c00043{left:50.400000pt;}
.x5_c00043{left:51.600000pt;}
.x3_c00043{left:52.533333pt;}
.x14_c00043{left:54.000000pt;}
.x13_c00043{left:55.733333pt;}
.x8_c00043{left:59.333333pt;}
.x4_c00043{left:63.866667pt;}
.x7_c00043{left:68.133333pt;}
.xb_c00043{left:77.333333pt;}
.xe_c00043{left:84.000000pt;}
.x9_c00043{left:86.666667pt;}
.x10_c00043{left:87.866667pt;}
.xc_c00043{left:94.800000pt;}
.x1_c00043{left:142.533333pt;}
.xf_c00043{left:151.733333pt;}
.x1f_c00043{left:205.934896pt;}
.x1c_c00043{left:269.066667pt;}
.x1d_c00043{left:270.933333pt;}
.x1b_c00043{left:272.000000pt;}
.x15_c00043{left:273.200000pt;}
.x18_c00043{left:274.533333pt;}
.x16_c00043{left:276.000000pt;}
.x17_c00043{left:284.400000pt;}
.x1a_c00043{left:287.066667pt;}
.x1e_c00043{left:288.000000pt;}
.x19_c00043{left:308.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_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_cf7d03a74caf978e5e3ff62d.woff2')format("woff");}.ff1_c00044{font-family:ff1_c00044;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00044;src:url('chunks/assets/font_066dd88c4d4d4a4abf902b5c.woff2')format("woff");}.ff2_c00044{font-family:ff2_c00044;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00044;src:url('chunks/assets/font_b0548e9693a50b3ade574c84.woff2')format("woff");}.ff3_c00044{font-family:ff3_c00044;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00044;src:url('chunks/assets/font_64deffd3d0db3498876d2040.woff2')format("woff");}.ff4_c00044{font-family:ff4_c00044;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00044;src:url('chunks/assets/font_3981cc01421919c929a42b57.woff2')format("woff");}.ff5_c00044{font-family:ff5_c00044;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00044;src:url('chunks/assets/font_9724231eb579b7ca44f5fd4c.woff2')format("woff");}.ff6_c00044{font-family:ff6_c00044;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00044;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff7_c00044{font-family:ff7_c00044;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00044{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00044{vertical-align:0.000000px;}
.ls3_c00044{letter-spacing:0.000000px;}
.ls2_c00044{letter-spacing:10.005000px;}
.ls4_c00044{letter-spacing:15.000000px;}
.ls0_c00044{letter-spacing:22.488000px;}
.ls1_c00044{letter-spacing:44.340000px;}
.sc__c00044{text-shadow:none;}
.sc0_c00044{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00044{-webkit-text-stroke:0px transparent;}
.sc0_c00044{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00044{word-spacing:-30.060000px;}
.ws3_c00044{word-spacing:-25.095000px;}
.ws5_c00044{word-spacing:-14.160000px;}
.ws6_c00044{word-spacing:-2.640000px;}
.ws7_c00044{word-spacing:0.000000px;}
.ws2_c00044{word-spacing:35.376000px;}
.ws1_c00044{word-spacing:38.880000px;}
.ws0_c00044{word-spacing:38.940000px;}
._1e_c00044{margin-left:-20.835000px;}
._15_c00044{margin-left:-17.220000px;}
._1b_c00044{margin-left:-12.495000px;}
._14_c00044{margin-left:-11.490000px;}
._16_c00044{margin-left:-9.210000px;}
._2_c00044{margin-left:-7.860000px;}
._f_c00044{margin-left:-6.720000px;}
._0_c00044{margin-left:-5.460000px;}
._1d_c00044{margin-left:-4.245000px;}
._10_c00044{margin-left:-2.940000px;}
._11_c00044{margin-left:-1.890000px;}
._13_c00044{width:1.470000px;}
._1c_c00044{width:3.285000px;}
._20_c00044{width:4.320000px;}
._1_c00044{width:5.340000px;}
._6_c00044{width:6.420000px;}
._1f_c00044{width:7.650000px;}
._19_c00044{width:9.015000px;}
._1a_c00044{width:10.560000px;}
._22_c00044{width:11.640000px;}
._5_c00044{width:12.960000px;}
._12_c00044{width:14.370000px;}
._17_c00044{width:15.405000px;}
._26_c00044{width:16.455000px;}
._23_c00044{width:17.895000px;}
._27_c00044{width:20.730000px;}
._b_c00044{width:29.280000px;}
._24_c00044{width:33.780000px;}
._18_c00044{width:43.050000px;}
._a_c00044{width:47.400000px;}
._d_c00044{width:49.440000px;}
._25_c00044{width:51.000000px;}
._9_c00044{width:63.840000px;}
._e_c00044{width:68.760000px;}
._c_c00044{width:77.400000px;}
._7_c00044{width:81.300000px;}
._21_c00044{width:139.155000px;}
._8_c00044{width:144.000000px;}
._28_c00044{width:160.305000px;}
._29_c00044{width:162.750000px;}
._4_c00044{width:165.540000px;}
._2a_c00044{width:467.190000px;}
._3_c00044{width:1241.940000px;}
.fc2_c00044{color:transparent;}
.fc1_c00044{color:rgb(128,128,128);}
.fc0_c00044{color:rgb(0,0,0);}
.fs3_c00044{font-size:45.000000px;}
.fs1_c00044{font-size:48.000000px;}
.fs0_c00044{font-size:60.000000px;}
.fs2_c00044{font-size:105.000000px;}
.y0_c00044{bottom:0.000000px;}
.y27_c00044{bottom:3.105000px;}
.y26_c00044{bottom:7.228355px;}
.y24_c00044{bottom:36.435000px;}
.y23_c00044{bottom:57.585000px;}
.y22_c00044{bottom:76.635000px;}
.y21_c00044{bottom:94.485000px;}
.y20_c00044{bottom:112.035000px;}
.y1f_c00044{bottom:130.485000px;}
.y1e_c00044{bottom:148.485000px;}
.y1d_c00044{bottom:166.635000px;}
.y1c_c00044{bottom:184.635000px;}
.y1b_c00044{bottom:202.785000px;}
.y1a_c00044{bottom:220.635000px;}
.y19_c00044{bottom:238.935000px;}
.y18_c00044{bottom:256.785000px;}
.y17_c00044{bottom:274.935000px;}
.y16_c00044{bottom:292.935000px;}
.y15_c00044{bottom:309.435000px;}
.y14_c00044{bottom:328.335000px;}
.y13_c00044{bottom:346.485000px;}
.y12_c00044{bottom:364.185000px;}
.y11_c00044{bottom:382.635000px;}
.y10_c00044{bottom:400.635000px;}
.yf_c00044{bottom:418.185000px;}
.ye_c00044{bottom:436.035000px;}
.yd_c00044{bottom:453.135000px;}
.yc_c00044{bottom:471.135000px;}
.yb_c00044{bottom:488.985000px;}
.ya_c00044{bottom:506.535000px;}
.y9_c00044{bottom:544.335000px;}
.y8_c00044{bottom:591.885000px;}
.y7_c00044{bottom:622.935000px;}
.y6_c00044{bottom:652.335000px;}
.y5_c00044{bottom:683.685000px;}
.y4_c00044{bottom:713.835000px;}
.y3_c00044{bottom:745.185000px;}
.y2_c00044{bottom:775.935000px;}
.y1_c00044{bottom:790.335000px;}
.y25_c00044{bottom:802.185000px;}
.h5_c00044{height:13.200074px;}
.h6_c00044{height:43.804688px;}
.h2_c00044{height:62.880000px;}
.h4_c00044{height:75.966797px;}
.h3_c00044{height:110.040000px;}
.h1_c00044{height:826.500000px;}
.h0_c00044{height:826.725000px;}
.w1_c00044{width:104.875500px;}
.w0_c00044{width:563.250000px;}
.x0_c00044{left:0.000000px;}
.x1_c00044{left:68.550000px;}
.x2_c00044{left:70.500000px;}
.x3_c00044{left:72.150000px;}
.xc_c00044{left:73.200000px;}
.xb_c00044{left:74.250000px;}
.xd_c00044{left:95.550000px;}
.x7_c00044{left:97.200000px;}
.x4_c00044{left:118.500000px;}
.x8_c00044{left:185.400000px;}
.x5_c00044{left:187.650000px;}
.xa_c00044{left:192.150000px;}
.x9_c00044{left:193.350000px;}
.xf_c00044{left:233.439240px;}
.x6_c00044{left:251.850000px;}
.xe_c00044{left:525.150000px;}
@media print{
.v0_c00044{vertical-align:0.000000pt;}
.ls3_c00044{letter-spacing:0.000000pt;}
.ls2_c00044{letter-spacing:8.893333pt;}
.ls4_c00044{letter-spacing:13.333333pt;}
.ls0_c00044{letter-spacing:19.989333pt;}
.ls1_c00044{letter-spacing:39.413333pt;}
.ws4_c00044{word-spacing:-26.720000pt;}
.ws3_c00044{word-spacing:-22.306667pt;}
.ws5_c00044{word-spacing:-12.586667pt;}
.ws6_c00044{word-spacing:-2.346667pt;}
.ws7_c00044{word-spacing:0.000000pt;}
.ws2_c00044{word-spacing:31.445333pt;}
.ws1_c00044{word-spacing:34.560000pt;}
.ws0_c00044{word-spacing:34.613333pt;}
._1e_c00044{margin-left:-18.520000pt;}
._15_c00044{margin-left:-15.306667pt;}
._1b_c00044{margin-left:-11.106667pt;}
._14_c00044{margin-left:-10.213333pt;}
._16_c00044{margin-left:-8.186667pt;}
._2_c00044{margin-left:-6.986667pt;}
._f_c00044{margin-left:-5.973333pt;}
._0_c00044{margin-left:-4.853333pt;}
._1d_c00044{margin-left:-3.773333pt;}
._10_c00044{margin-left:-2.613333pt;}
._11_c00044{margin-left:-1.680000pt;}
._13_c00044{width:1.306667pt;}
._1c_c00044{width:2.920000pt;}
._20_c00044{width:3.840000pt;}
._1_c00044{width:4.746667pt;}
._6_c00044{width:5.706667pt;}
._1f_c00044{width:6.800000pt;}
._19_c00044{width:8.013333pt;}
._1a_c00044{width:9.386667pt;}
._22_c00044{width:10.346667pt;}
._5_c00044{width:11.520000pt;}
._12_c00044{width:12.773333pt;}
._17_c00044{width:13.693333pt;}
._26_c00044{width:14.626667pt;}
._23_c00044{width:15.906667pt;}
._27_c00044{width:18.426667pt;}
._b_c00044{width:26.026667pt;}
._24_c00044{width:30.026667pt;}
._18_c00044{width:38.266667pt;}
._a_c00044{width:42.133333pt;}
._d_c00044{width:43.946667pt;}
._25_c00044{width:45.333333pt;}
._9_c00044{width:56.746667pt;}
._e_c00044{width:61.120000pt;}
._c_c00044{width:68.800000pt;}
._7_c00044{width:72.266667pt;}
._21_c00044{width:123.693333pt;}
._8_c00044{width:128.000000pt;}
._28_c00044{width:142.493333pt;}
._29_c00044{width:144.666667pt;}
._4_c00044{width:147.146667pt;}
._2a_c00044{width:415.280000pt;}
._3_c00044{width:1103.946667pt;}
.fs3_c00044{font-size:40.000000pt;}
.fs1_c00044{font-size:42.666667pt;}
.fs0_c00044{font-size:53.333333pt;}
.fs2_c00044{font-size:93.333333pt;}
.y0_c00044{bottom:0.000000pt;}
.y27_c00044{bottom:2.760000pt;}
.y26_c00044{bottom:6.425204pt;}
.y24_c00044{bottom:32.386667pt;}
.y23_c00044{bottom:51.186667pt;}
.y22_c00044{bottom:68.120000pt;}
.y21_c00044{bottom:83.986667pt;}
.y20_c00044{bottom:99.586667pt;}
.y1f_c00044{bottom:115.986667pt;}
.y1e_c00044{bottom:131.986667pt;}
.y1d_c00044{bottom:148.120000pt;}
.y1c_c00044{bottom:164.120000pt;}
.y1b_c00044{bottom:180.253333pt;}
.y1a_c00044{bottom:196.120000pt;}
.y19_c00044{bottom:212.386667pt;}
.y18_c00044{bottom:228.253333pt;}
.y17_c00044{bottom:244.386667pt;}
.y16_c00044{bottom:260.386667pt;}
.y15_c00044{bottom:275.053333pt;}
.y14_c00044{bottom:291.853333pt;}
.y13_c00044{bottom:307.986667pt;}
.y12_c00044{bottom:323.720000pt;}
.y11_c00044{bottom:340.120000pt;}
.y10_c00044{bottom:356.120000pt;}
.yf_c00044{bottom:371.720000pt;}
.ye_c00044{bottom:387.586667pt;}
.yd_c00044{bottom:402.786667pt;}
.yc_c00044{bottom:418.786667pt;}
.yb_c00044{bottom:434.653333pt;}
.ya_c00044{bottom:450.253333pt;}
.y9_c00044{bottom:483.853333pt;}
.y8_c00044{bottom:526.120000pt;}
.y7_c00044{bottom:553.720000pt;}
.y6_c00044{bottom:579.853333pt;}
.y5_c00044{bottom:607.720000pt;}
.y4_c00044{bottom:634.520000pt;}
.y3_c00044{bottom:662.386667pt;}
.y2_c00044{bottom:689.720000pt;}
.y1_c00044{bottom:702.520000pt;}
.y25_c00044{bottom:713.053333pt;}
.h5_c00044{height:11.733399pt;}
.h6_c00044{height:38.937500pt;}
.h2_c00044{height:55.893333pt;}
.h4_c00044{height:67.526042pt;}
.h3_c00044{height:97.813333pt;}
.h1_c00044{height:734.666667pt;}
.h0_c00044{height:734.866667pt;}
.w1_c00044{width:93.222667pt;}
.w0_c00044{width:500.666667pt;}
.x0_c00044{left:0.000000pt;}
.x1_c00044{left:60.933333pt;}
.x2_c00044{left:62.666667pt;}
.x3_c00044{left:64.133333pt;}
.xc_c00044{left:65.066667pt;}
.xb_c00044{left:66.000000pt;}
.xd_c00044{left:84.933333pt;}
.x7_c00044{left:86.400000pt;}
.x4_c00044{left:105.333333pt;}
.x8_c00044{left:164.800000pt;}
.x5_c00044{left:166.800000pt;}
.xa_c00044{left:170.800000pt;}
.x9_c00044{left:171.866667pt;}
.xf_c00044{left:207.501546pt;}
.x6_c00044{left:223.866667pt;}
.xe_c00044{left:466.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ec5992a9f6327bc038863a62.woff2')format("woff");}.ff1_c00045{font-family:ff1_c00045;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00045;src:url('chunks/assets/font_555fe3790da0423ffb831490.woff2')format("woff");}.ff2_c00045{font-family:ff2_c00045;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00045;src:url('chunks/assets/font_fdbcb2c072c0061aa9b3bffd.woff2')format("woff");}.ff3_c00045{font-family:ff3_c00045;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00045;src:url('chunks/assets/font_862fee8c9af55bc33f296106.woff2')format("woff");}.ff4_c00045{font-family:ff4_c00045;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00045;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff5_c00045{font-family:ff5_c00045;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00045{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00045{vertical-align:0.000000px;}
.v1_c00045{vertical-align:1.200000px;}
.ls4_c00045{letter-spacing:-18.000000px;}
.ls2_c00045{letter-spacing:0.000000px;}
.ls1_c00045{letter-spacing:6.000000px;}
.ls3_c00045{letter-spacing:15.000000px;}
.ls0_c00045{letter-spacing:28.860000px;}
.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:-14.160000px;}
.ws1_c00045{word-spacing:-0.240000px;}
.ws2_c00045{word-spacing:0.000000px;}
._2_c00045{margin-left:-15.720000px;}
._19_c00045{margin-left:-9.924000px;}
._1a_c00045{margin-left:-7.236000px;}
._14_c00045{margin-left:-6.060000px;}
._f_c00045{margin-left:-5.040000px;}
._13_c00045{margin-left:-3.000000px;}
._10_c00045{margin-left:-1.680000px;}
._a_c00045{width:1.020000px;}
._9_c00045{width:2.040000px;}
._0_c00045{width:3.060000px;}
._8_c00045{width:4.980000px;}
._4_c00045{width:6.600000px;}
._5_c00045{width:7.980000px;}
._6_c00045{width:9.900000px;}
._e_c00045{width:11.340000px;}
._d_c00045{width:12.660000px;}
._12_c00045{width:14.040000px;}
._15_c00045{width:15.060000px;}
._b_c00045{width:16.740000px;}
._11_c00045{width:18.240000px;}
._c_c00045{width:21.180000px;}
._1b_c00045{width:23.340000px;}
._17_c00045{width:27.480000px;}
._16_c00045{width:32.220000px;}
._7_c00045{width:48.780000px;}
._1_c00045{width:92.940000px;}
._20_c00045{width:96.600000px;}
._1d_c00045{width:98.460000px;}
._1e_c00045{width:101.280000px;}
._21_c00045{width:103.320000px;}
._18_c00045{width:105.060000px;}
._1c_c00045{width:111.600000px;}
._22_c00045{width:176.580000px;}
._3_c00045{width:263.640000px;}
._1f_c00045{width:270.180000px;}
._23_c00045{width:1171.536000px;}
.fc2_c00045{color:transparent;}
.fc1_c00045{color:rgb(128,128,128);}
.fc0_c00045{color:rgb(0,0,0);}
.fs2_c00045{font-size:48.000000px;}
.fs0_c00045{font-size:60.000000px;}
.fs1_c00045{font-size:84.000000px;}
.y0_c00045{bottom:0.000000px;}
.y2c_c00045{bottom:3.105000px;}
.y2b_c00045{bottom:7.228357px;}
.y2a_c00045{bottom:42.480000px;}
.y29_c00045{bottom:60.030000px;}
.y28_c00045{bottom:78.630000px;}
.y27_c00045{bottom:96.630000px;}
.y26_c00045{bottom:115.080000px;}
.y25_c00045{bottom:132.930000px;}
.y24_c00045{bottom:150.630000px;}
.y23_c00045{bottom:169.530000px;}
.y22_c00045{bottom:186.780000px;}
.y21_c00045{bottom:205.830000px;}
.y20_c00045{bottom:240.930000px;}
.y1f_c00045{bottom:259.230000px;}
.y1e_c00045{bottom:277.080000px;}
.y1d_c00045{bottom:295.080000px;}
.y1c_c00045{bottom:312.930000px;}
.y1b_c00045{bottom:330.480000px;}
.y1a_c00045{bottom:348.930000px;}
.y19_c00045{bottom:366.930000px;}
.y18_c00045{bottom:385.080000px;}
.y17_c00045{bottom:402.930000px;}
.y16_c00045{bottom:420.630000px;}
.y15_c00045{bottom:438.780000px;}
.y14_c00045{bottom:456.630000px;}
.y13_c00045{bottom:474.630000px;}
.y12_c00045{bottom:492.780000px;}
.y11_c00045{bottom:510.930000px;}
.y10_c00045{bottom:529.230000px;}
.yf_c00045{bottom:547.080000px;}
.ye_c00045{bottom:565.080000px;}
.yd_c00045{bottom:583.830000px;}
.yc_c00045{bottom:601.530000px;}
.yb_c00045{bottom:619.380000px;}
.ya_c00045{bottom:637.230000px;}
.y9_c00045{bottom:655.530000px;}
.y8_c00045{bottom:673.380000px;}
.y7_c00045{bottom:691.830000px;}
.y6_c00045{bottom:709.530000px;}
.y5_c00045{bottom:727.980000px;}
.y4_c00045{bottom:746.580000px;}
.y3_c00045{bottom:764.130000px;}
.y2_c00045{bottom:782.280000px;}
.y1_c00045{bottom:802.680000px;}
.h3_c00045{height:13.200074px;}
.h4_c00045{height:43.804688px;}
.h1_c00045{height:62.880000px;}
.h2_c00045{height:87.538763px;}
.h0_c00045{height:833.250000px;}
.w2_c00045{width:104.875500px;}
.w1_c00045{width:552.750000px;}
.w0_c00045{width:552.975000px;}
.x0_c00045{left:0.000000px;}
.x8_c00045{left:73.350000px;}
.x7_c00045{left:74.700000px;}
.x4_c00045{left:76.650000px;}
.x2_c00045{left:77.850000px;}
.x3_c00045{left:79.200000px;}
.x1_c00045{left:80.250000px;}
.x6_c00045{left:96.900000px;}
.x9_c00045{left:167.700000px;}
.x5_c00045{left:173.400000px;}
.xa_c00045{left:228.301758px;}
@media print{
.v0_c00045{vertical-align:0.000000pt;}
.v1_c00045{vertical-align:1.066667pt;}
.ls4_c00045{letter-spacing:-16.000000pt;}
.ls2_c00045{letter-spacing:0.000000pt;}
.ls1_c00045{letter-spacing:5.333333pt;}
.ls3_c00045{letter-spacing:13.333333pt;}
.ls0_c00045{letter-spacing:25.653333pt;}
.ws0_c00045{word-spacing:-12.586667pt;}
.ws1_c00045{word-spacing:-0.213333pt;}
.ws2_c00045{word-spacing:0.000000pt;}
._2_c00045{margin-left:-13.973333pt;}
._19_c00045{margin-left:-8.821333pt;}
._1a_c00045{margin-left:-6.432000pt;}
._14_c00045{margin-left:-5.386667pt;}
._f_c00045{margin-left:-4.480000pt;}
._13_c00045{margin-left:-2.666667pt;}
._10_c00045{margin-left:-1.493333pt;}
._a_c00045{width:0.906667pt;}
._9_c00045{width:1.813333pt;}
._0_c00045{width:2.720000pt;}
._8_c00045{width:4.426667pt;}
._4_c00045{width:5.866667pt;}
._5_c00045{width:7.093333pt;}
._6_c00045{width:8.800000pt;}
._e_c00045{width:10.080000pt;}
._d_c00045{width:11.253333pt;}
._12_c00045{width:12.480000pt;}
._15_c00045{width:13.386667pt;}
._b_c00045{width:14.880000pt;}
._11_c00045{width:16.213333pt;}
._c_c00045{width:18.826667pt;}
._1b_c00045{width:20.746667pt;}
._17_c00045{width:24.426667pt;}
._16_c00045{width:28.640000pt;}
._7_c00045{width:43.360000pt;}
._1_c00045{width:82.613333pt;}
._20_c00045{width:85.866667pt;}
._1d_c00045{width:87.520000pt;}
._1e_c00045{width:90.026667pt;}
._21_c00045{width:91.840000pt;}
._18_c00045{width:93.386667pt;}
._1c_c00045{width:99.200000pt;}
._22_c00045{width:156.960000pt;}
._3_c00045{width:234.346667pt;}
._1f_c00045{width:240.160000pt;}
._23_c00045{width:1041.365333pt;}
.fs2_c00045{font-size:42.666667pt;}
.fs0_c00045{font-size:53.333333pt;}
.fs1_c00045{font-size:74.666667pt;}
.y0_c00045{bottom:0.000000pt;}
.y2c_c00045{bottom:2.760000pt;}
.y2b_c00045{bottom:6.425206pt;}
.y2a_c00045{bottom:37.760000pt;}
.y29_c00045{bottom:53.360000pt;}
.y28_c00045{bottom:69.893333pt;}
.y27_c00045{bottom:85.893333pt;}
.y26_c00045{bottom:102.293333pt;}
.y25_c00045{bottom:118.160000pt;}
.y24_c00045{bottom:133.893333pt;}
.y23_c00045{bottom:150.693333pt;}
.y22_c00045{bottom:166.026667pt;}
.y21_c00045{bottom:182.960000pt;}
.y20_c00045{bottom:214.160000pt;}
.y1f_c00045{bottom:230.426667pt;}
.y1e_c00045{bottom:246.293333pt;}
.y1d_c00045{bottom:262.293333pt;}
.y1c_c00045{bottom:278.160000pt;}
.y1b_c00045{bottom:293.760000pt;}
.y1a_c00045{bottom:310.160000pt;}
.y19_c00045{bottom:326.160000pt;}
.y18_c00045{bottom:342.293333pt;}
.y17_c00045{bottom:358.160000pt;}
.y16_c00045{bottom:373.893333pt;}
.y15_c00045{bottom:390.026667pt;}
.y14_c00045{bottom:405.893333pt;}
.y13_c00045{bottom:421.893333pt;}
.y12_c00045{bottom:438.026667pt;}
.y11_c00045{bottom:454.160000pt;}
.y10_c00045{bottom:470.426667pt;}
.yf_c00045{bottom:486.293333pt;}
.ye_c00045{bottom:502.293333pt;}
.yd_c00045{bottom:518.960000pt;}
.yc_c00045{bottom:534.693333pt;}
.yb_c00045{bottom:550.560000pt;}
.ya_c00045{bottom:566.426667pt;}
.y9_c00045{bottom:582.693333pt;}
.y8_c00045{bottom:598.560000pt;}
.y7_c00045{bottom:614.960000pt;}
.y6_c00045{bottom:630.693333pt;}
.y5_c00045{bottom:647.093333pt;}
.y4_c00045{bottom:663.626667pt;}
.y3_c00045{bottom:679.226667pt;}
.y2_c00045{bottom:695.360000pt;}
.y1_c00045{bottom:713.493333pt;}
.h3_c00045{height:11.733399pt;}
.h4_c00045{height:38.937500pt;}
.h1_c00045{height:55.893333pt;}
.h2_c00045{height:77.812234pt;}
.h0_c00045{height:740.666667pt;}
.w2_c00045{width:93.222667pt;}
.w1_c00045{width:491.333333pt;}
.w0_c00045{width:491.533333pt;}
.x0_c00045{left:0.000000pt;}
.x8_c00045{left:65.200000pt;}
.x7_c00045{left:66.400000pt;}
.x4_c00045{left:68.133333pt;}
.x2_c00045{left:69.200000pt;}
.x3_c00045{left:70.400000pt;}
.x1_c00045{left:71.333333pt;}
.x6_c00045{left:86.133333pt;}
.x9_c00045{left:149.066667pt;}
.x5_c00045{left:154.133333pt;}
.xa_c00045{left:202.934896pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_95522d464116268d3e209d81.woff2')format("woff");}.ff1_c00046{font-family:ff1_c00046;line-height:1.437000;font-style:normal;font-weight:normal;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_084ec7358af76b3eb6f07ef5.woff2')format("woff");}.ff2_c00046{font-family:ff2_c00046;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00046;src:url('chunks/assets/font_0e94a6ca19b94e51b9cb53d9.woff2')format("woff");}.ff3_c00046{font-family:ff3_c00046;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00046;src:url('chunks/assets/font_5406331f601597ab2df46bbf.woff2')format("woff");}.ff4_c00046{font-family:ff4_c00046;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00046;src:url('chunks/assets/font_195dc5f26f8a7bd7ca371ac8.woff2')format("woff");}.ff5_c00046{font-family:ff5_c00046;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00046;src:url('chunks/assets/font_b90927bcf77933dd513e3f60.woff2')format("woff");}.ff6_c00046{font-family:ff6_c00046;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00046;src:url('chunks/assets/font_bf2188747fcb23e14a85f42f.woff2')format("woff");}.ff7_c00046{font-family:ff7_c00046;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00046;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff8_c00046{font-family:ff8_c00046;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00046{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00046{vertical-align:0.000000px;}
.v1_c00046{vertical-align:108.000000px;}
.ls3_c00046{letter-spacing:0.000000px;}
.ls1_c00046{letter-spacing:20.187000px;}
.ls2_c00046{letter-spacing:45.078000px;}
.ls0_c00046{letter-spacing:49.050000px;}
.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;}
}
.ws3_c00046{word-spacing:-39.399000px;}
.ws0_c00046{word-spacing:-30.303000px;}
.ws4_c00046{word-spacing:-16.860000px;}
.ws1_c00046{word-spacing:-15.060000px;}
.ws2_c00046{word-spacing:-14.427000px;}
.ws5_c00046{word-spacing:0.000000px;}
._1f_c00046{margin-left:-14.307000px;}
._d_c00046{margin-left:-12.126000px;}
._c_c00046{margin-left:-10.413000px;}
._e_c00046{margin-left:-8.883000px;}
._b_c00046{margin-left:-6.936000px;}
._a_c00046{margin-left:-5.916000px;}
._1d_c00046{margin-left:-4.848000px;}
._6_c00046{margin-left:-3.732000px;}
._f_c00046{margin-left:-2.127000px;}
._7_c00046{margin-left:-1.026000px;}
._4_c00046{width:1.920000px;}
._0_c00046{width:3.120000px;}
._1_c00046{width:4.680000px;}
._2_c00046{width:6.240000px;}
._3_c00046{width:7.920000px;}
._5_c00046{width:9.153000px;}
._13_c00046{width:10.650000px;}
._10_c00046{width:12.024000px;}
._1b_c00046{width:13.500000px;}
._17_c00046{width:16.836000px;}
._9_c00046{width:18.846000px;}
._8_c00046{width:19.917000px;}
._15_c00046{width:22.440000px;}
._11_c00046{width:24.360000px;}
._1c_c00046{width:26.040000px;}
._1a_c00046{width:28.860000px;}
._12_c00046{width:30.240000px;}
._14_c00046{width:36.600000px;}
._19_c00046{width:38.100000px;}
._16_c00046{width:40.560000px;}
._18_c00046{width:41.700000px;}
._20_c00046{width:136.281000px;}
._1e_c00046{width:174.420000px;}
.fc2_c00046{color:transparent;}
.fc1_c00046{color:rgb(128,128,128);}
.fc0_c00046{color:rgb(0,0,0);}
.fs4_c00046{font-size:48.000000px;}
.fs0_c00046{font-size:60.000000px;}
.fs1_c00046{font-size:63.000000px;}
.fs2_c00046{font-size:69.000000px;}
.fs3_c00046{font-size:201.000000px;}
.y0_c00046{bottom:0.000000px;}
.y52_c00046{bottom:3.105000px;}
.y51_c00046{bottom:7.228355px;}
.y50_c00046{bottom:40.485000px;}
.y4f_c00046{bottom:59.085000px;}
.y29_c00046{bottom:59.685000px;}
.y4e_c00046{bottom:76.485000px;}
.y28_c00046{bottom:77.985000px;}
.y4d_c00046{bottom:93.735000px;}
.y27_c00046{bottom:95.535000px;}
.y4c_c00046{bottom:111.285000px;}
.y26_c00046{bottom:113.385000px;}
.y4b_c00046{bottom:129.885000px;}
.y25_c00046{bottom:131.985000px;}
.y4a_c00046{bottom:148.035000px;}
.y24_c00046{bottom:150.135000px;}
.y49_c00046{bottom:164.985000px;}
.y23_c00046{bottom:167.985000px;}
.y48_c00046{bottom:183.285000px;}
.y22_c00046{bottom:186.285000px;}
.y47_c00046{bottom:200.835000px;}
.y21_c00046{bottom:203.835000px;}
.y46_c00046{bottom:218.685000px;}
.y20_c00046{bottom:222.285000px;}
.y45_c00046{bottom:237.135000px;}
.y1f_c00046{bottom:239.985000px;}
.y44_c00046{bottom:254.085000px;}
.y1e_c00046{bottom:258.135000px;}
.y43_c00046{bottom:272.385000px;}
.y1d_c00046{bottom:275.685000px;}
.y42_c00046{bottom:291.585000px;}
.y1c_c00046{bottom:293.535000px;}
.y41_c00046{bottom:309.435000px;}
.y1b_c00046{bottom:311.385000px;}
.y40_c00046{bottom:326.985000px;}
.y1a_c00046{bottom:328.635000px;}
.y3f_c00046{bottom:344.985000px;}
.y19_c00046{bottom:346.935000px;}
.y3e_c00046{bottom:363.135000px;}
.y18_c00046{bottom:364.185000px;}
.y3d_c00046{bottom:381.285000px;}
.y17_c00046{bottom:382.935000px;}
.y3b_c00046{bottom:389.085000px;}
.y3c_c00046{bottom:398.835000px;}
.y16_c00046{bottom:400.635000px;}
.y15_c00046{bottom:418.485000px;}
.y14_c00046{bottom:436.035000px;}
.y3a_c00046{bottom:452.235000px;}
.y13_c00046{bottom:453.585000px;}
.y39_c00046{bottom:470.085000px;}
.y12_c00046{bottom:471.135000px;}
.y11_c00046{bottom:488.235000px;}
.y38_c00046{bottom:488.985000px;}
.y37_c00046{bottom:505.935000px;}
.y10_c00046{bottom:506.535000px;}
.y36_c00046{bottom:523.485000px;}
.yf_c00046{bottom:524.685000px;}
.ye_c00046{bottom:542.685000px;}
.y35_c00046{bottom:559.185000px;}
.yd_c00046{bottom:559.785000px;}
.y34_c00046{bottom:577.335000px;}
.yc_c00046{bottom:578.085000px;}
.y33_c00046{bottom:594.285000px;}
.yb_c00046{bottom:595.935000px;}
.y32_c00046{bottom:612.885000px;}
.ya_c00046{bottom:613.785000px;}
.y31_c00046{bottom:630.735000px;}
.y9_c00046{bottom:631.485000px;}
.y30_c00046{bottom:649.035000px;}
.y8_c00046{bottom:649.485000px;}
.y2f_c00046{bottom:667.185000px;}
.y7_c00046{bottom:667.485000px;}
.y2e_c00046{bottom:683.685000px;}
.y6_c00046{bottom:685.485000px;}
.y2d_c00046{bottom:702.285000px;}
.y5_c00046{bottom:702.585000px;}
.y4_c00046{bottom:720.585000px;}
.y3_c00046{bottom:738.435000px;}
.y2c_c00046{bottom:738.735000px;}
.y2_c00046{bottom:756.285000px;}
.y2b_c00046{bottom:756.585000px;}
.y2a_c00046{bottom:773.085000px;}
.y1_c00046{bottom:773.535000px;}
.h8_c00046{height:13.200074px;}
.h9_c00046{height:43.804688px;}
.h2_c00046{height:62.880000px;}
.h4_c00046{height:66.024000px;}
.h6_c00046{height:67.221000px;}
.h3_c00046{height:68.292000px;}
.h5_c00046{height:73.623000px;}
.h7_c00046{height:197.270508px;}
.h0_c00046{height:836.175000px;}
.h1_c00046{height:836.250000px;}
.w2_c00046{width:104.875500px;}
.w0_c00046{width:569.700000px;}
.w1_c00046{width:570.000000px;}
.x0_c00046{left:0.000000px;}
.x3_c00046{left:14.550000px;}
.x4_c00046{left:51.900000px;}
.x2_c00046{left:72.900000px;}
.x5_c00046{left:74.550000px;}
.x1_c00046{left:75.900000px;}
.x6_c00046{left:77.250000px;}
.x7_c00046{left:78.300000px;}
.x8_c00046{left:80.250000px;}
.x9_c00046{left:81.300000px;}
.x16_c00046{left:236.664230px;}
.xa_c00046{left:291.300000px;}
.xb_c00046{left:292.650000px;}
.xc_c00046{left:294.000000px;}
.xd_c00046{left:295.950000px;}
.x13_c00046{left:297.000000px;}
.xf_c00046{left:298.050000px;}
.x14_c00046{left:299.400000px;}
.x10_c00046{left:319.500000px;}
.x12_c00046{left:344.850000px;}
.x11_c00046{left:357.750000px;}
.xe_c00046{left:375.300000px;}
.x15_c00046{left:405.300000px;}
@media print{
.v0_c00046{vertical-align:0.000000pt;}
.v1_c00046{vertical-align:96.000000pt;}
.ls3_c00046{letter-spacing:0.000000pt;}
.ls1_c00046{letter-spacing:17.944000pt;}
.ls2_c00046{letter-spacing:40.069333pt;}
.ls0_c00046{letter-spacing:43.600000pt;}
.ws3_c00046{word-spacing:-35.021333pt;}
.ws0_c00046{word-spacing:-26.936000pt;}
.ws4_c00046{word-spacing:-14.986667pt;}
.ws1_c00046{word-spacing:-13.386667pt;}
.ws2_c00046{word-spacing:-12.824000pt;}
.ws5_c00046{word-spacing:0.000000pt;}
._1f_c00046{margin-left:-12.717333pt;}
._d_c00046{margin-left:-10.778667pt;}
._c_c00046{margin-left:-9.256000pt;}
._e_c00046{margin-left:-7.896000pt;}
._b_c00046{margin-left:-6.165333pt;}
._a_c00046{margin-left:-5.258667pt;}
._1d_c00046{margin-left:-4.309333pt;}
._6_c00046{margin-left:-3.317333pt;}
._f_c00046{margin-left:-1.890667pt;}
._7_c00046{margin-left:-0.912000pt;}
._4_c00046{width:1.706667pt;}
._0_c00046{width:2.773333pt;}
._1_c00046{width:4.160000pt;}
._2_c00046{width:5.546667pt;}
._3_c00046{width:7.040000pt;}
._5_c00046{width:8.136000pt;}
._13_c00046{width:9.466667pt;}
._10_c00046{width:10.688000pt;}
._1b_c00046{width:12.000000pt;}
._17_c00046{width:14.965333pt;}
._9_c00046{width:16.752000pt;}
._8_c00046{width:17.704000pt;}
._15_c00046{width:19.946667pt;}
._11_c00046{width:21.653333pt;}
._1c_c00046{width:23.146667pt;}
._1a_c00046{width:25.653333pt;}
._12_c00046{width:26.880000pt;}
._14_c00046{width:32.533333pt;}
._19_c00046{width:33.866667pt;}
._16_c00046{width:36.053333pt;}
._18_c00046{width:37.066667pt;}
._20_c00046{width:121.138667pt;}
._1e_c00046{width:155.040000pt;}
.fs4_c00046{font-size:42.666667pt;}
.fs0_c00046{font-size:53.333333pt;}
.fs1_c00046{font-size:56.000000pt;}
.fs2_c00046{font-size:61.333333pt;}
.fs3_c00046{font-size:178.666667pt;}
.y0_c00046{bottom:0.000000pt;}
.y52_c00046{bottom:2.760000pt;}
.y51_c00046{bottom:6.425204pt;}
.y50_c00046{bottom:35.986667pt;}
.y4f_c00046{bottom:52.520000pt;}
.y29_c00046{bottom:53.053333pt;}
.y4e_c00046{bottom:67.986667pt;}
.y28_c00046{bottom:69.320000pt;}
.y4d_c00046{bottom:83.320000pt;}
.y27_c00046{bottom:84.920000pt;}
.y4c_c00046{bottom:98.920000pt;}
.y26_c00046{bottom:100.786667pt;}
.y4b_c00046{bottom:115.453333pt;}
.y25_c00046{bottom:117.320000pt;}
.y4a_c00046{bottom:131.586667pt;}
.y24_c00046{bottom:133.453333pt;}
.y49_c00046{bottom:146.653333pt;}
.y23_c00046{bottom:149.320000pt;}
.y48_c00046{bottom:162.920000pt;}
.y22_c00046{bottom:165.586667pt;}
.y47_c00046{bottom:178.520000pt;}
.y21_c00046{bottom:181.186667pt;}
.y46_c00046{bottom:194.386667pt;}
.y20_c00046{bottom:197.586667pt;}
.y45_c00046{bottom:210.786667pt;}
.y1f_c00046{bottom:213.320000pt;}
.y44_c00046{bottom:225.853333pt;}
.y1e_c00046{bottom:229.453333pt;}
.y43_c00046{bottom:242.120000pt;}
.y1d_c00046{bottom:245.053333pt;}
.y42_c00046{bottom:259.186667pt;}
.y1c_c00046{bottom:260.920000pt;}
.y41_c00046{bottom:275.053333pt;}
.y1b_c00046{bottom:276.786667pt;}
.y40_c00046{bottom:290.653333pt;}
.y1a_c00046{bottom:292.120000pt;}
.y3f_c00046{bottom:306.653333pt;}
.y19_c00046{bottom:308.386667pt;}
.y3e_c00046{bottom:322.786667pt;}
.y18_c00046{bottom:323.720000pt;}
.y3d_c00046{bottom:338.920000pt;}
.y17_c00046{bottom:340.386667pt;}
.y3b_c00046{bottom:345.853333pt;}
.y3c_c00046{bottom:354.520000pt;}
.y16_c00046{bottom:356.120000pt;}
.y15_c00046{bottom:371.986667pt;}
.y14_c00046{bottom:387.586667pt;}
.y3a_c00046{bottom:401.986667pt;}
.y13_c00046{bottom:403.186667pt;}
.y39_c00046{bottom:417.853333pt;}
.y12_c00046{bottom:418.786667pt;}
.y11_c00046{bottom:433.986667pt;}
.y38_c00046{bottom:434.653333pt;}
.y37_c00046{bottom:449.720000pt;}
.y10_c00046{bottom:450.253333pt;}
.y36_c00046{bottom:465.320000pt;}
.yf_c00046{bottom:466.386667pt;}
.ye_c00046{bottom:482.386667pt;}
.y35_c00046{bottom:497.053333pt;}
.yd_c00046{bottom:497.586667pt;}
.y34_c00046{bottom:513.186667pt;}
.yc_c00046{bottom:513.853333pt;}
.y33_c00046{bottom:528.253333pt;}
.yb_c00046{bottom:529.720000pt;}
.y32_c00046{bottom:544.786667pt;}
.ya_c00046{bottom:545.586667pt;}
.y31_c00046{bottom:560.653333pt;}
.y9_c00046{bottom:561.320000pt;}
.y30_c00046{bottom:576.920000pt;}
.y8_c00046{bottom:577.320000pt;}
.y2f_c00046{bottom:593.053333pt;}
.y7_c00046{bottom:593.320000pt;}
.y2e_c00046{bottom:607.720000pt;}
.y6_c00046{bottom:609.320000pt;}
.y2d_c00046{bottom:624.253333pt;}
.y5_c00046{bottom:624.520000pt;}
.y4_c00046{bottom:640.520000pt;}
.y3_c00046{bottom:656.386667pt;}
.y2c_c00046{bottom:656.653333pt;}
.y2_c00046{bottom:672.253333pt;}
.y2b_c00046{bottom:672.520000pt;}
.y2a_c00046{bottom:687.186667pt;}
.y1_c00046{bottom:687.586667pt;}
.h8_c00046{height:11.733399pt;}
.h9_c00046{height:38.937500pt;}
.h2_c00046{height:55.893333pt;}
.h4_c00046{height:58.688000pt;}
.h6_c00046{height:59.752000pt;}
.h3_c00046{height:60.704000pt;}
.h5_c00046{height:65.442667pt;}
.h7_c00046{height:175.351562pt;}
.h0_c00046{height:743.266667pt;}
.h1_c00046{height:743.333333pt;}
.w2_c00046{width:93.222667pt;}
.w0_c00046{width:506.400000pt;}
.w1_c00046{width:506.666667pt;}
.x0_c00046{left:0.000000pt;}
.x3_c00046{left:12.933333pt;}
.x4_c00046{left:46.133333pt;}
.x2_c00046{left:64.800000pt;}
.x5_c00046{left:66.266667pt;}
.x1_c00046{left:67.466667pt;}
.x6_c00046{left:68.666667pt;}
.x7_c00046{left:69.600000pt;}
.x8_c00046{left:71.333333pt;}
.x9_c00046{left:72.266667pt;}
.x16_c00046{left:210.368205pt;}
.xa_c00046{left:258.933333pt;}
.xb_c00046{left:260.133333pt;}
.xc_c00046{left:261.333333pt;}
.xd_c00046{left:263.066667pt;}
.x13_c00046{left:264.000000pt;}
.xf_c00046{left:264.933333pt;}
.x14_c00046{left:266.133333pt;}
.x10_c00046{left:284.000000pt;}
.x12_c00046{left:306.533333pt;}
.x11_c00046{left:318.000000pt;}
.xe_c00046{left:333.600000pt;}
.x15_c00046{left:360.266667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b8a0892666d3ad7082420eae.woff2')format("woff");}.ff1_c00047{font-family:ff1_c00047;line-height:1.437000;font-style:normal;font-weight:normal;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_345fc437bab12be1fa482792.woff2')format("woff");}.ff2_c00047{font-family:ff2_c00047;line-height:1.437000;font-style:normal;font-weight:normal;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_756941b56eec3734f3fc9bc0.woff2')format("woff");}.ff3_c00047{font-family:ff3_c00047;line-height:1.437000;font-style:normal;font-weight:normal;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_7cbb6229f2d9599075258034.woff2')format("woff");}.ff4_c00047{font-family:ff4_c00047;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00047;src:url('chunks/assets/font_0ce391de997f24f9f9dd37f4.woff2')format("woff");}.ff5_c00047{font-family:ff5_c00047;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00047;src:url('chunks/assets/font_018547e1010bec11fa448895.woff2')format("woff");}.ff6_c00047{font-family:ff6_c00047;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00047;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff7_c00047{font-family:ff7_c00047;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00047{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00047{vertical-align:0.000000px;}
.ls7_c00047{letter-spacing:0.000000px;}
.ls6_c00047{letter-spacing:1.800000px;}
.ls0_c00047{letter-spacing:2.376000px;}
.ls8_c00047{letter-spacing:3.000000px;}
.ls4_c00047{letter-spacing:6.600000px;}
.ls5_c00047{letter-spacing:7.800000px;}
.lsa_c00047{letter-spacing:9.000000px;}
.ls3_c00047{letter-spacing:14.805000px;}
.ls9_c00047{letter-spacing:15.000000px;}
.ls1_c00047{letter-spacing:23.700000px;}
.ls2_c00047{letter-spacing:24.693000px;}
.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;}
}
.ws1_c00047{word-spacing:-28.554000px;}
.ws5_c00047{word-spacing:-15.060000px;}
.ws2_c00047{word-spacing:-14.160000px;}
.ws4_c00047{word-spacing:-13.452000px;}
.ws3_c00047{word-spacing:-0.285000px;}
.ws6_c00047{word-spacing:0.000000px;}
.ws0_c00047{word-spacing:5.100000px;}
._15_c00047{margin-left:-12.630000px;}
._e_c00047{margin-left:-11.520000px;}
._0_c00047{margin-left:-9.660000px;}
._17_c00047{margin-left:-8.100000px;}
._1a_c00047{margin-left:-7.005000px;}
._a_c00047{margin-left:-5.940000px;}
._1_c00047{margin-left:-4.560000px;}
._b_c00047{margin-left:-3.543000px;}
._19_c00047{margin-left:-2.265000px;}
._12_c00047{margin-left:-1.260000px;}
._6_c00047{width:1.740000px;}
._9_c00047{width:3.120000px;}
._7_c00047{width:4.140000px;}
._8_c00047{width:5.700000px;}
._c_c00047{width:7.485000px;}
._14_c00047{width:8.940000px;}
._13_c00047{width:10.680000px;}
._1f_c00047{width:11.904000px;}
._3_c00047{width:13.800000px;}
._4_c00047{width:16.260000px;}
._16_c00047{width:18.195000px;}
._11_c00047{width:19.500000px;}
._10_c00047{width:21.420000px;}
._5_c00047{width:22.800000px;}
._27_c00047{width:23.985000px;}
._f_c00047{width:25.140000px;}
._d_c00047{width:27.720000px;}
._26_c00047{width:29.835000px;}
._23_c00047{width:31.452000px;}
._1c_c00047{width:32.760000px;}
._1d_c00047{width:34.689000px;}
._22_c00047{width:38.640000px;}
._25_c00047{width:40.014000px;}
._21_c00047{width:44.400000px;}
._18_c00047{width:74.340000px;}
._1e_c00047{width:97.941000px;}
._1b_c00047{width:124.620000px;}
._24_c00047{width:151.059000px;}
._20_c00047{width:220.080000px;}
._2_c00047{width:370.080000px;}
.fc2_c00047{color:transparent;}
.fc1_c00047{color:rgb(128,128,128);}
.fc0_c00047{color:rgb(0,0,0);}
.fs4_c00047{font-size:39.000000px;}
.fs5_c00047{font-size:45.000000px;}
.fs1_c00047{font-size:48.000000px;}
.fs3_c00047{font-size:54.000000px;}
.fs2_c00047{font-size:57.000000px;}
.fs0_c00047{font-size:60.000000px;}
.fs6_c00047{font-size:63.000000px;}
.y0_c00047{bottom:0.000000px;}
.y57_c00047{bottom:3.105000px;}
.y56_c00047{bottom:7.228363px;}
.y55_c00047{bottom:40.950000px;}
.y54_c00047{bottom:59.400000px;}
.y2a_c00047{bottom:60.750000px;}
.y53_c00047{bottom:78.000000px;}
.y29_c00047{bottom:79.350000px;}
.y52_c00047{bottom:96.150000px;}
.y28_c00047{bottom:97.950000px;}
.y51_c00047{bottom:114.450000px;}
.y27_c00047{bottom:115.050000px;}
.y50_c00047{bottom:132.600000px;}
.y26_c00047{bottom:133.350000px;}
.y4f_c00047{bottom:150.300000px;}
.y25_c00047{bottom:152.550000px;}
.y4e_c00047{bottom:168.750000px;}
.y24_c00047{bottom:170.400000px;}
.y4d_c00047{bottom:187.050000px;}
.y23_c00047{bottom:188.400000px;}
.y4c_c00047{bottom:204.300000px;}
.y22_c00047{bottom:205.650000px;}
.y4b_c00047{bottom:222.750000px;}
.y21_c00047{bottom:224.100000px;}
.y4a_c00047{bottom:240.300000px;}
.y20_c00047{bottom:243.450000px;}
.y49_c00047{bottom:258.600000px;}
.y1f_c00047{bottom:260.850000px;}
.y48_c00047{bottom:276.750000px;}
.y1e_c00047{bottom:278.850000px;}
.y47_c00047{bottom:294.750000px;}
.y1d_c00047{bottom:296.700000px;}
.y46_c00047{bottom:312.600000px;}
.y1c_c00047{bottom:314.550000px;}
.y45_c00047{bottom:330.450000px;}
.y1b_c00047{bottom:332.550000px;}
.y44_c00047{bottom:347.400000px;}
.y1a_c00047{bottom:350.700000px;}
.y43_c00047{bottom:365.550000px;}
.y19_c00047{bottom:369.300000px;}
.y42_c00047{bottom:384.750000px;}
.y18_c00047{bottom:386.850000px;}
.y41_c00047{bottom:402.750000px;}
.y17_c00047{bottom:405.000000px;}
.y40_c00047{bottom:420.300000px;}
.y16_c00047{bottom:423.000000px;}
.y3f_c00047{bottom:438.600000px;}
.y15_c00047{bottom:440.550000px;}
.y3e_c00047{bottom:456.600000px;}
.y14_c00047{bottom:458.700000px;}
.y3d_c00047{bottom:474.600000px;}
.y13_c00047{bottom:475.650000px;}
.y3c_c00047{bottom:493.050000px;}
.y12_c00047{bottom:494.100000px;}
.y3b_c00047{bottom:511.650000px;}
.y11_c00047{bottom:512.400000px;}
.y3a_c00047{bottom:529.650000px;}
.y10_c00047{bottom:530.550000px;}
.y39_c00047{bottom:547.500000px;}
.yf_c00047{bottom:548.550000px;}
.y38_c00047{bottom:565.950000px;}
.ye_c00047{bottom:566.100000px;}
.y37_c00047{bottom:582.900000px;}
.yd_c00047{bottom:583.950000px;}
.y36_c00047{bottom:601.500000px;}
.yc_c00047{bottom:602.400000px;}
.y35_c00047{bottom:619.350000px;}
.yb_c00047{bottom:620.100000px;}
.y34_c00047{bottom:637.200000px;}
.ya_c00047{bottom:638.550000px;}
.y33_c00047{bottom:655.200000px;}
.y9_c00047{bottom:656.850000px;}
.y32_c00047{bottom:673.050000px;}
.y8_c00047{bottom:674.100000px;}
.y31_c00047{bottom:690.900000px;}
.y7_c00047{bottom:692.550000px;}
.y30_c00047{bottom:709.200000px;}
.y6_c00047{bottom:710.100000px;}
.y2f_c00047{bottom:727.050000px;}
.y5_c00047{bottom:727.950000px;}
.y2e_c00047{bottom:745.500000px;}
.y4_c00047{bottom:746.850000px;}
.y2d_c00047{bottom:763.500000px;}
.y3_c00047{bottom:764.550000px;}
.y2c_c00047{bottom:781.350000px;}
.y2_c00047{bottom:782.550000px;}
.y2b_c00047{bottom:801.000000px;}
.y1_c00047{bottom:802.200000px;}
.h7_c00047{height:13.200074px;}
.h8_c00047{height:43.804688px;}
.h3_c00047{height:59.736000px;}
.h2_c00047{height:62.880000px;}
.h6_c00047{height:64.020000px;}
.h4_c00047{height:66.024000px;}
.h5_c00047{height:67.221000px;}
.h1_c00047{height:842.250000px;}
.h0_c00047{height:842.400000px;}
.w2_c00047{width:104.875500px;}
.w1_c00047{width:559.500000px;}
.w0_c00047{width:559.725000px;}
.x0_c00047{left:0.000000px;}
.x7_c00047{left:15.750000px;}
.x5_c00047{left:21.300000px;}
.x8_c00047{left:73.950000px;}
.xb_c00047{left:78.000000px;}
.xa_c00047{left:79.350000px;}
.x9_c00047{left:80.550000px;}
.x1_c00047{left:81.600000px;}
.x6_c00047{left:82.650000px;}
.x3_c00047{left:83.700000px;}
.x2_c00047{left:85.950000px;}
.x4_c00047{left:121.800000px;}
.x16_c00047{left:231.676758px;}
.xd_c00047{left:292.200000px;}
.x14_c00047{left:294.600000px;}
.x13_c00047{left:295.650000px;}
.x12_c00047{left:296.700000px;}
.x11_c00047{left:297.900000px;}
.xc_c00047{left:298.950000px;}
.xf_c00047{left:300.000000px;}
.x10_c00047{left:301.050000px;}
.xe_c00047{left:302.100000px;}
.x15_c00047{left:464.700000px;}
@media print{
.v0_c00047{vertical-align:0.000000pt;}
.ls7_c00047{letter-spacing:0.000000pt;}
.ls6_c00047{letter-spacing:1.600000pt;}
.ls0_c00047{letter-spacing:2.112000pt;}
.ls8_c00047{letter-spacing:2.666667pt;}
.ls4_c00047{letter-spacing:5.866667pt;}
.ls5_c00047{letter-spacing:6.933333pt;}
.lsa_c00047{letter-spacing:8.000000pt;}
.ls3_c00047{letter-spacing:13.160000pt;}
.ls9_c00047{letter-spacing:13.333333pt;}
.ls1_c00047{letter-spacing:21.066667pt;}
.ls2_c00047{letter-spacing:21.949333pt;}
.ws1_c00047{word-spacing:-25.381333pt;}
.ws5_c00047{word-spacing:-13.386667pt;}
.ws2_c00047{word-spacing:-12.586667pt;}
.ws4_c00047{word-spacing:-11.957333pt;}
.ws3_c00047{word-spacing:-0.253333pt;}
.ws6_c00047{word-spacing:0.000000pt;}
.ws0_c00047{word-spacing:4.533333pt;}
._15_c00047{margin-left:-11.226667pt;}
._e_c00047{margin-left:-10.240000pt;}
._0_c00047{margin-left:-8.586667pt;}
._17_c00047{margin-left:-7.200000pt;}
._1a_c00047{margin-left:-6.226667pt;}
._a_c00047{margin-left:-5.280000pt;}
._1_c00047{margin-left:-4.053333pt;}
._b_c00047{margin-left:-3.149333pt;}
._19_c00047{margin-left:-2.013333pt;}
._12_c00047{margin-left:-1.120000pt;}
._6_c00047{width:1.546667pt;}
._9_c00047{width:2.773333pt;}
._7_c00047{width:3.680000pt;}
._8_c00047{width:5.066667pt;}
._c_c00047{width:6.653333pt;}
._14_c00047{width:7.946667pt;}
._13_c00047{width:9.493333pt;}
._1f_c00047{width:10.581333pt;}
._3_c00047{width:12.266667pt;}
._4_c00047{width:14.453333pt;}
._16_c00047{width:16.173333pt;}
._11_c00047{width:17.333333pt;}
._10_c00047{width:19.040000pt;}
._5_c00047{width:20.266667pt;}
._27_c00047{width:21.320000pt;}
._f_c00047{width:22.346667pt;}
._d_c00047{width:24.640000pt;}
._26_c00047{width:26.520000pt;}
._23_c00047{width:27.957333pt;}
._1c_c00047{width:29.120000pt;}
._1d_c00047{width:30.834667pt;}
._22_c00047{width:34.346667pt;}
._25_c00047{width:35.568000pt;}
._21_c00047{width:39.466667pt;}
._18_c00047{width:66.080000pt;}
._1e_c00047{width:87.058667pt;}
._1b_c00047{width:110.773333pt;}
._24_c00047{width:134.274667pt;}
._20_c00047{width:195.626667pt;}
._2_c00047{width:328.960000pt;}
.fs4_c00047{font-size:34.666667pt;}
.fs5_c00047{font-size:40.000000pt;}
.fs1_c00047{font-size:42.666667pt;}
.fs3_c00047{font-size:48.000000pt;}
.fs2_c00047{font-size:50.666667pt;}
.fs0_c00047{font-size:53.333333pt;}
.fs6_c00047{font-size:56.000000pt;}
.y0_c00047{bottom:0.000000pt;}
.y57_c00047{bottom:2.760000pt;}
.y56_c00047{bottom:6.425212pt;}
.y55_c00047{bottom:36.400000pt;}
.y54_c00047{bottom:52.800000pt;}
.y2a_c00047{bottom:54.000000pt;}
.y53_c00047{bottom:69.333333pt;}
.y29_c00047{bottom:70.533333pt;}
.y52_c00047{bottom:85.466667pt;}
.y28_c00047{bottom:87.066667pt;}
.y51_c00047{bottom:101.733333pt;}
.y27_c00047{bottom:102.266667pt;}
.y50_c00047{bottom:117.866667pt;}
.y26_c00047{bottom:118.533333pt;}
.y4f_c00047{bottom:133.600000pt;}
.y25_c00047{bottom:135.600000pt;}
.y4e_c00047{bottom:150.000000pt;}
.y24_c00047{bottom:151.466667pt;}
.y4d_c00047{bottom:166.266667pt;}
.y23_c00047{bottom:167.466667pt;}
.y4c_c00047{bottom:181.600000pt;}
.y22_c00047{bottom:182.800000pt;}
.y4b_c00047{bottom:198.000000pt;}
.y21_c00047{bottom:199.200000pt;}
.y4a_c00047{bottom:213.600000pt;}
.y20_c00047{bottom:216.400000pt;}
.y49_c00047{bottom:229.866667pt;}
.y1f_c00047{bottom:231.866667pt;}
.y48_c00047{bottom:246.000000pt;}
.y1e_c00047{bottom:247.866667pt;}
.y47_c00047{bottom:262.000000pt;}
.y1d_c00047{bottom:263.733333pt;}
.y46_c00047{bottom:277.866667pt;}
.y1c_c00047{bottom:279.600000pt;}
.y45_c00047{bottom:293.733333pt;}
.y1b_c00047{bottom:295.600000pt;}
.y44_c00047{bottom:308.800000pt;}
.y1a_c00047{bottom:311.733333pt;}
.y43_c00047{bottom:324.933333pt;}
.y19_c00047{bottom:328.266667pt;}
.y42_c00047{bottom:342.000000pt;}
.y18_c00047{bottom:343.866667pt;}
.y41_c00047{bottom:358.000000pt;}
.y17_c00047{bottom:360.000000pt;}
.y40_c00047{bottom:373.600000pt;}
.y16_c00047{bottom:376.000000pt;}
.y3f_c00047{bottom:389.866667pt;}
.y15_c00047{bottom:391.600000pt;}
.y3e_c00047{bottom:405.866667pt;}
.y14_c00047{bottom:407.733333pt;}
.y3d_c00047{bottom:421.866667pt;}
.y13_c00047{bottom:422.800000pt;}
.y3c_c00047{bottom:438.266667pt;}
.y12_c00047{bottom:439.200000pt;}
.y3b_c00047{bottom:454.800000pt;}
.y11_c00047{bottom:455.466667pt;}
.y3a_c00047{bottom:470.800000pt;}
.y10_c00047{bottom:471.600000pt;}
.y39_c00047{bottom:486.666667pt;}
.yf_c00047{bottom:487.600000pt;}
.y38_c00047{bottom:503.066667pt;}
.ye_c00047{bottom:503.200000pt;}
.y37_c00047{bottom:518.133333pt;}
.yd_c00047{bottom:519.066667pt;}
.y36_c00047{bottom:534.666667pt;}
.yc_c00047{bottom:535.466667pt;}
.y35_c00047{bottom:550.533333pt;}
.yb_c00047{bottom:551.200000pt;}
.y34_c00047{bottom:566.400000pt;}
.ya_c00047{bottom:567.600000pt;}
.y33_c00047{bottom:582.400000pt;}
.y9_c00047{bottom:583.866667pt;}
.y32_c00047{bottom:598.266667pt;}
.y8_c00047{bottom:599.200000pt;}
.y31_c00047{bottom:614.133333pt;}
.y7_c00047{bottom:615.600000pt;}
.y30_c00047{bottom:630.400000pt;}
.y6_c00047{bottom:631.200000pt;}
.y2f_c00047{bottom:646.266667pt;}
.y5_c00047{bottom:647.066667pt;}
.y2e_c00047{bottom:662.666667pt;}
.y4_c00047{bottom:663.866667pt;}
.y2d_c00047{bottom:678.666667pt;}
.y3_c00047{bottom:679.600000pt;}
.y2c_c00047{bottom:694.533333pt;}
.y2_c00047{bottom:695.600000pt;}
.y2b_c00047{bottom:712.000000pt;}
.y1_c00047{bottom:713.066667pt;}
.h7_c00047{height:11.733399pt;}
.h8_c00047{height:38.937500pt;}
.h3_c00047{height:53.098667pt;}
.h2_c00047{height:55.893333pt;}
.h6_c00047{height:56.906667pt;}
.h4_c00047{height:58.688000pt;}
.h5_c00047{height:59.752000pt;}
.h1_c00047{height:748.666667pt;}
.h0_c00047{height:748.800000pt;}
.w2_c00047{width:93.222667pt;}
.w1_c00047{width:497.333333pt;}
.w0_c00047{width:497.533333pt;}
.x0_c00047{left:0.000000pt;}
.x7_c00047{left:14.000000pt;}
.x5_c00047{left:18.933333pt;}
.x8_c00047{left:65.733333pt;}
.xb_c00047{left:69.333333pt;}
.xa_c00047{left:70.533333pt;}
.x9_c00047{left:71.600000pt;}
.x1_c00047{left:72.533333pt;}
.x6_c00047{left:73.466667pt;}
.x3_c00047{left:74.400000pt;}
.x2_c00047{left:76.400000pt;}
.x4_c00047{left:108.266667pt;}
.x16_c00047{left:205.934896pt;}
.xd_c00047{left:259.733333pt;}
.x14_c00047{left:261.866667pt;}
.x13_c00047{left:262.800000pt;}
.x12_c00047{left:263.733333pt;}
.x11_c00047{left:264.800000pt;}
.xc_c00047{left:265.733333pt;}
.xf_c00047{left:266.666667pt;}
.x10_c00047{left:267.600000pt;}
.xe_c00047{left:268.533333pt;}
.x15_c00047{left:413.066667pt;}
}





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

.ir_c00048:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00048{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00048;src:url('chunks/assets/font_4b3d60683ee13ceb82cd6596.woff2')format("woff");}.ff1_c00048{font-family:ff1_c00048;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00048;src:url('chunks/assets/font_4186b14f0cabf30560c143f4.woff2')format("woff");}.ff2_c00048{font-family:ff2_c00048;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00048;src:url('chunks/assets/font_cc783a18a12e3ecdd89f61e2.woff2')format("woff");}.ff3_c00048{font-family:ff3_c00048;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00048;src:url('chunks/assets/font_68bf1ae8ef099d128bcf4d74.woff2')format("woff");}.ff4_c00048{font-family:ff4_c00048;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00048;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff5_c00048{font-family:ff5_c00048;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00048;src:url('chunks/assets/font_6ece9fcad735529dfc1992bc.woff2')format("woff");}.ff6_c00048{font-family:ff6_c00048;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00048;src:url('chunks/assets/font_18cbf3d44ce475df3186ab29.woff2')format("woff");}.ff7_c00048{font-family:ff7_c00048;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00048;src:url('chunks/assets/font_0ce391de997f24f9f9dd37f4.woff2')format("woff");}.ff8_c00048{font-family:ff8_c00048;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00048;src:url('chunks/assets/font_4fe4be80ad52075a4656b935.woff2')format("woff");}.ff9_c00048{font-family:ff9_c00048;line-height:1.575000;font-style:normal;font-weight: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_c00048;src:url('chunks/assets/font_03968bb55e577471082681e6.woff2')format("woff");}.ffa_c00048{font-family:ffa_c00048;line-height:1.575000;font-style:normal;font-weight: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_c00048;src:url('chunks/assets/font_70823c4a7fd10f0dd4594415.woff2')format("woff");}.ffb_c00048{font-family:ffb_c00048;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc_c00048;src:url('chunks/assets/font_87407bfffc8e48c33c0acbd9.woff2')format("woff");}.ffc_c00048{font-family:ffc_c00048;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd_c00048;src:url('chunks/assets/font_4732d6da6cbac352961dd4cd.woff2')format("woff");}.ffd_c00048{font-family:ffd_c00048;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe_c00048;src:url('chunks/assets/font_1817bfb6aa6cb545156d7e45.woff2')format("woff");}.ffe_c00048{font-family:ffe_c00048;line-height:1.402354;font-style:normal;font-weight: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_c00048;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.fff_c00048{font-family:fff_c00048;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00048{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00048{vertical-align:0.000000px;}
.ls7_c00048{letter-spacing:-9.000000px;}
.ls9_c00048{letter-spacing:-6.000000px;}
.ls8_c00048{letter-spacing:-3.000000px;}
.ls6_c00048{letter-spacing:0.000000px;}
.ls4_c00048{letter-spacing:0.999000px;}
.ls2_c00048{letter-spacing:2.700000px;}
.ls1_c00048{letter-spacing:6.000000px;}
.lsa_c00048{letter-spacing:9.000000px;}
.ls5_c00048{letter-spacing:9.405000px;}
.ls3_c00048{letter-spacing:31.293000px;}
.ls0_c00048{letter-spacing:39.987000px;}
.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;}
}
.ws2_c00048{word-spacing:-41.565000px;}
.wsa_c00048{word-spacing:-25.095000px;}
.ws6_c00048{word-spacing:-22.572000px;}
.wsb_c00048{word-spacing:-21.906000px;}
.ws4_c00048{word-spacing:-20.295000px;}
.ws7_c00048{word-spacing:-15.060000px;}
.ws3_c00048{word-spacing:-14.160000px;}
.ws5_c00048{word-spacing:-12.906000px;}
.ws8_c00048{word-spacing:-11.679000px;}
.wsc_c00048{word-spacing:0.000000px;}
.ws1_c00048{word-spacing:2.318400px;}
.ws9_c00048{word-spacing:5.883000px;}
.ws0_c00048{word-spacing:7.564800px;}
._27_c00048{margin-left:-33.600000px;}
._32_c00048{margin-left:-28.665000px;}
._2c_c00048{margin-left:-26.520000px;}
._25_c00048{margin-left:-24.915000px;}
._2a_c00048{margin-left:-22.845000px;}
._26_c00048{margin-left:-19.299000px;}
._2f_c00048{margin-left:-17.115000px;}
._31_c00048{margin-left:-15.786000px;}
._1f_c00048{margin-left:-13.542000px;}
._1a_c00048{margin-left:-11.625000px;}
._21_c00048{margin-left:-9.852000px;}
._15_c00048{margin-left:-7.860000px;}
._d_c00048{margin-left:-6.417000px;}
._e_c00048{margin-left:-4.485000px;}
._9_c00048{margin-left:-3.312000px;}
._12_c00048{margin-left:-2.031000px;}
._24_c00048{margin-left:-1.017000px;}
._2_c00048{width:1.869000px;}
._11_c00048{width:3.315000px;}
._0_c00048{width:4.599000px;}
._10_c00048{width:6.213000px;}
._8_c00048{width:7.674000px;}
._b_c00048{width:8.901000px;}
._14_c00048{width:10.200000px;}
._f_c00048{width:12.075000px;}
._1b_c00048{width:13.911000px;}
._13_c00048{width:16.959000px;}
._1e_c00048{width:18.540000px;}
._c_c00048{width:19.797000px;}
._23_c00048{width:20.949000px;}
._22_c00048{width:22.179000px;}
._7_c00048{width:23.188750px;}
._18_c00048{width:24.291000px;}
._3_c00048{width:25.452000px;}
._1d_c00048{width:27.111000px;}
._4_c00048{width:29.635200px;}
._1c_c00048{width:32.235000px;}
._5_c00048{width:33.364800px;}
._6_c00048{width:39.866450px;}
._1_c00048{width:41.517000px;}
._2d_c00048{width:55.215000px;}
._16_c00048{width:56.340000px;}
._a_c00048{width:64.665000px;}
._20_c00048{width:81.813000px;}
._29_c00048{width:108.114000px;}
._28_c00048{width:110.833200px;}
._30_c00048{width:119.841000px;}
._17_c00048{width:136.770000px;}
._19_c00048{width:153.444000px;}
._2e_c00048{width:205.917000px;}
._2b_c00048{width:208.044000px;}
.fc2_c00048{color:transparent;}
.fc1_c00048{color:rgb(128,128,128);}
.fc0_c00048{color:rgb(0,0,0);}
.fs6_c00048{font-size:39.000000px;}
.fs8_c00048{font-size:45.000000px;}
.fsc_c00048{font-size:45.600000px;}
.fs9_c00048{font-size:48.000000px;}
.fs1_c00048{font-size:50.400000px;}
.fs5_c00048{font-size:51.000000px;}
.fsb_c00048{font-size:54.000000px;}
.fs7_c00048{font-size:57.000000px;}
.fs4_c00048{font-size:60.000000px;}
.fs0_c00048{font-size:63.000000px;}
.fs2_c00048{font-size:69.000000px;}
.fs3_c00048{font-size:72.000000px;}
.fsa_c00048{font-size:105.000000px;}
.fsd_c00048{font-size:117.000000px;}
.y0_c00048{bottom:0.000000px;}
.y57_c00048{bottom:3.105000px;}
.y56_c00048{bottom:7.228355px;}
.y53_c00048{bottom:51.885000px;}
.y52_c00048{bottom:69.885000px;}
.y2a_c00048{bottom:71.085000px;}
.y51_c00048{bottom:87.435000px;}
.y29_c00048{bottom:89.085000px;}
.y50_c00048{bottom:105.135000px;}
.y28_c00048{bottom:105.585000px;}
.y4f_c00048{bottom:123.435000px;}
.y27_c00048{bottom:125.085000px;}
.y4e_c00048{bottom:141.735000px;}
.y26_c00048{bottom:142.785000px;}
.y4d_c00048{bottom:159.885000px;}
.y25_c00048{bottom:161.685000px;}
.y4c_c00048{bottom:176.835000px;}
.y24_c00048{bottom:179.535000px;}
.y4b_c00048{bottom:194.685000px;}
.y23_c00048{bottom:197.385000px;}
.y4a_c00048{bottom:213.585000px;}
.y22_c00048{bottom:215.535000px;}
.y49_c00048{bottom:230.835000px;}
.y21_c00048{bottom:233.235000px;}
.y48_c00048{bottom:248.685000px;}
.y20_c00048{bottom:251.085000px;}
.y47_c00048{bottom:266.835000px;}
.y1f_c00048{bottom:269.685000px;}
.y46_c00048{bottom:284.385000px;}
.y1e_c00048{bottom:287.235000px;}
.y45_c00048{bottom:303.285000px;}
.y1d_c00048{bottom:305.085000px;}
.y44_c00048{bottom:320.985000px;}
.y1c_c00048{bottom:322.335000px;}
.y43_c00048{bottom:337.185000px;}
.y1b_c00048{bottom:340.185000px;}
.y55_c00048{bottom:352.935000px;}
.y42_c00048{bottom:357.285000px;}
.y1a_c00048{bottom:358.635000px;}
.y54_c00048{bottom:371.235000px;}
.y41_c00048{bottom:374.985000px;}
.y19_c00048{bottom:376.635000px;}
.y40_c00048{bottom:392.385000px;}
.y18_c00048{bottom:393.885000px;}
.y3f_c00048{bottom:410.085000px;}
.y17_c00048{bottom:412.335000px;}
.y3e_c00048{bottom:428.235000px;}
.y16_c00048{bottom:429.585000px;}
.y3d_c00048{bottom:446.085000px;}
.y15_c00048{bottom:447.135000px;}
.y3c_c00048{bottom:463.635000px;}
.y14_c00048{bottom:464.685000px;}
.y13_c00048{bottom:481.935000px;}
.y3b_c00048{bottom:482.235000px;}
.y3a_c00048{bottom:498.735000px;}
.y12_c00048{bottom:499.785000px;}
.y39_c00048{bottom:516.735000px;}
.y11_c00048{bottom:517.335000px;}
.y38_c00048{bottom:534.585000px;}
.y10_c00048{bottom:535.485000px;}
.y37_c00048{bottom:553.035000px;}
.yf_c00048{bottom:553.185000px;}
.ye_c00048{bottom:570.585000px;}
.yd_c00048{bottom:588.285000px;}
.y36_c00048{bottom:588.585000px;}
.y35_c00048{bottom:604.635000px;}
.yc_c00048{bottom:606.135000px;}
.y34_c00048{bottom:622.935000px;}
.yb_c00048{bottom:624.285000px;}
.y33_c00048{bottom:641.235000px;}
.ya_c00048{bottom:641.835000px;}
.y32_c00048{bottom:658.035000px;}
.y9_c00048{bottom:659.835000px;}
.y8_c00048{bottom:677.985000px;}
.y31_c00048{bottom:694.785000px;}
.y7_c00048{bottom:695.235000px;}
.y6_c00048{bottom:713.085000px;}
.y30_c00048{bottom:713.385000px;}
.y2c_c00048{bottom:728.235000px;}
.y5_c00048{bottom:730.935000px;}
.y2f_c00048{bottom:731.385000px;}
.y2b_c00048{bottom:746.535000px;}
.y4_c00048{bottom:748.935000px;}
.y2e_c00048{bottom:749.535000px;}
.y3_c00048{bottom:766.035000px;}
.y2d_c00048{bottom:766.785000px;}
.y2_c00048{bottom:784.335000px;}
.y1_c00048{bottom:803.835000px;}
.hb_c00048{height:13.200074px;}
.hc_c00048{height:43.804688px;}
.h8_c00048{height:56.592000px;}
.h9_c00048{height:59.736000px;}
.h4_c00048{height:62.880000px;}
.h5_c00048{height:64.571777px;}
.h2_c00048{height:66.024000px;}
.h6_c00048{height:67.221000px;}
.h3_c00048{height:72.312000px;}
.h7_c00048{height:110.040000px;}
.ha_c00048{height:120.257563px;}
.h0_c00048{height:836.175000px;}
.h1_c00048{height:836.250000px;}
.w2_c00048{width:104.875500px;}
.w0_c00048{width:569.700000px;}
.w1_c00048{width:570.000000px;}
.x0_c00048{left:0.000000px;}
.x6_c00048{left:16.650000px;}
.x5_c00048{left:59.400000px;}
.x2_c00048{left:76.950000px;}
.x3_c00048{left:78.000000px;}
.x4_c00048{left:79.050000px;}
.x7_c00048{left:80.100000px;}
.x8_c00048{left:82.050000px;}
.x9_c00048{left:92.850000px;}
.x1_c00048{left:190.950000px;}
.x13_c00048{left:236.664230px;}
.xe_c00048{left:293.550000px;}
.xc_c00048{left:294.750000px;}
.xd_c00048{left:295.950000px;}
.xf_c00048{left:297.300000px;}
.x10_c00048{left:298.650000px;}
.x11_c00048{left:348.750000px;}
.x12_c00048{left:366.900000px;}
.xa_c00048{left:499.800000px;}
.xb_c00048{left:501.150000px;}
@media print{
.v0_c00048{vertical-align:0.000000pt;}
.ls7_c00048{letter-spacing:-8.000000pt;}
.ls9_c00048{letter-spacing:-5.333333pt;}
.ls8_c00048{letter-spacing:-2.666667pt;}
.ls6_c00048{letter-spacing:0.000000pt;}
.ls4_c00048{letter-spacing:0.888000pt;}
.ls2_c00048{letter-spacing:2.400000pt;}
.ls1_c00048{letter-spacing:5.333333pt;}
.lsa_c00048{letter-spacing:8.000000pt;}
.ls5_c00048{letter-spacing:8.360000pt;}
.ls3_c00048{letter-spacing:27.816000pt;}
.ls0_c00048{letter-spacing:35.544000pt;}
.ws2_c00048{word-spacing:-36.946667pt;}
.wsa_c00048{word-spacing:-22.306667pt;}
.ws6_c00048{word-spacing:-20.064000pt;}
.wsb_c00048{word-spacing:-19.472000pt;}
.ws4_c00048{word-spacing:-18.040000pt;}
.ws7_c00048{word-spacing:-13.386667pt;}
.ws3_c00048{word-spacing:-12.586667pt;}
.ws5_c00048{word-spacing:-11.472000pt;}
.ws8_c00048{word-spacing:-10.381333pt;}
.wsc_c00048{word-spacing:0.000000pt;}
.ws1_c00048{word-spacing:2.060800pt;}
.ws9_c00048{word-spacing:5.229333pt;}
.ws0_c00048{word-spacing:6.724267pt;}
._27_c00048{margin-left:-29.866667pt;}
._32_c00048{margin-left:-25.480000pt;}
._2c_c00048{margin-left:-23.573333pt;}
._25_c00048{margin-left:-22.146667pt;}
._2a_c00048{margin-left:-20.306667pt;}
._26_c00048{margin-left:-17.154667pt;}
._2f_c00048{margin-left:-15.213333pt;}
._31_c00048{margin-left:-14.032000pt;}
._1f_c00048{margin-left:-12.037333pt;}
._1a_c00048{margin-left:-10.333333pt;}
._21_c00048{margin-left:-8.757333pt;}
._15_c00048{margin-left:-6.986667pt;}
._d_c00048{margin-left:-5.704000pt;}
._e_c00048{margin-left:-3.986667pt;}
._9_c00048{margin-left:-2.944000pt;}
._12_c00048{margin-left:-1.805333pt;}
._24_c00048{margin-left:-0.904000pt;}
._2_c00048{width:1.661333pt;}
._11_c00048{width:2.946667pt;}
._0_c00048{width:4.088000pt;}
._10_c00048{width:5.522667pt;}
._8_c00048{width:6.821333pt;}
._b_c00048{width:7.912000pt;}
._14_c00048{width:9.066667pt;}
._f_c00048{width:10.733333pt;}
._1b_c00048{width:12.365333pt;}
._13_c00048{width:15.074667pt;}
._1e_c00048{width:16.480000pt;}
._c_c00048{width:17.597333pt;}
._23_c00048{width:18.621333pt;}
._22_c00048{width:19.714667pt;}
._7_c00048{width:20.612222pt;}
._18_c00048{width:21.592000pt;}
._3_c00048{width:22.624000pt;}
._1d_c00048{width:24.098667pt;}
._4_c00048{width:26.342400pt;}
._1c_c00048{width:28.653333pt;}
._5_c00048{width:29.657600pt;}
._6_c00048{width:35.436845pt;}
._1_c00048{width:36.904000pt;}
._2d_c00048{width:49.080000pt;}
._16_c00048{width:50.080000pt;}
._a_c00048{width:57.480000pt;}
._20_c00048{width:72.722667pt;}
._29_c00048{width:96.101333pt;}
._28_c00048{width:98.518400pt;}
._30_c00048{width:106.525333pt;}
._17_c00048{width:121.573333pt;}
._19_c00048{width:136.394667pt;}
._2e_c00048{width:183.037333pt;}
._2b_c00048{width:184.928000pt;}
.fs6_c00048{font-size:34.666667pt;}
.fs8_c00048{font-size:40.000000pt;}
.fsc_c00048{font-size:40.533333pt;}
.fs9_c00048{font-size:42.666667pt;}
.fs1_c00048{font-size:44.800000pt;}
.fs5_c00048{font-size:45.333333pt;}
.fsb_c00048{font-size:48.000000pt;}
.fs7_c00048{font-size:50.666667pt;}
.fs4_c00048{font-size:53.333333pt;}
.fs0_c00048{font-size:56.000000pt;}
.fs2_c00048{font-size:61.333333pt;}
.fs3_c00048{font-size:64.000000pt;}
.fsa_c00048{font-size:93.333333pt;}
.fsd_c00048{font-size:104.000000pt;}
.y0_c00048{bottom:0.000000pt;}
.y57_c00048{bottom:2.760000pt;}
.y56_c00048{bottom:6.425204pt;}
.y53_c00048{bottom:46.120000pt;}
.y52_c00048{bottom:62.120000pt;}
.y2a_c00048{bottom:63.186667pt;}
.y51_c00048{bottom:77.720000pt;}
.y29_c00048{bottom:79.186667pt;}
.y50_c00048{bottom:93.453333pt;}
.y28_c00048{bottom:93.853333pt;}
.y4f_c00048{bottom:109.720000pt;}
.y27_c00048{bottom:111.186667pt;}
.y4e_c00048{bottom:125.986667pt;}
.y26_c00048{bottom:126.920000pt;}
.y4d_c00048{bottom:142.120000pt;}
.y25_c00048{bottom:143.720000pt;}
.y4c_c00048{bottom:157.186667pt;}
.y24_c00048{bottom:159.586667pt;}
.y4b_c00048{bottom:173.053333pt;}
.y23_c00048{bottom:175.453333pt;}
.y4a_c00048{bottom:189.853333pt;}
.y22_c00048{bottom:191.586667pt;}
.y49_c00048{bottom:205.186667pt;}
.y21_c00048{bottom:207.320000pt;}
.y48_c00048{bottom:221.053333pt;}
.y20_c00048{bottom:223.186667pt;}
.y47_c00048{bottom:237.186667pt;}
.y1f_c00048{bottom:239.720000pt;}
.y46_c00048{bottom:252.786667pt;}
.y1e_c00048{bottom:255.320000pt;}
.y45_c00048{bottom:269.586667pt;}
.y1d_c00048{bottom:271.186667pt;}
.y44_c00048{bottom:285.320000pt;}
.y1c_c00048{bottom:286.520000pt;}
.y43_c00048{bottom:299.720000pt;}
.y1b_c00048{bottom:302.386667pt;}
.y55_c00048{bottom:313.720000pt;}
.y42_c00048{bottom:317.586667pt;}
.y1a_c00048{bottom:318.786667pt;}
.y54_c00048{bottom:329.986667pt;}
.y41_c00048{bottom:333.320000pt;}
.y19_c00048{bottom:334.786667pt;}
.y40_c00048{bottom:348.786667pt;}
.y18_c00048{bottom:350.120000pt;}
.y3f_c00048{bottom:364.520000pt;}
.y17_c00048{bottom:366.520000pt;}
.y3e_c00048{bottom:380.653333pt;}
.y16_c00048{bottom:381.853333pt;}
.y3d_c00048{bottom:396.520000pt;}
.y15_c00048{bottom:397.453333pt;}
.y3c_c00048{bottom:412.120000pt;}
.y14_c00048{bottom:413.053333pt;}
.y13_c00048{bottom:428.386667pt;}
.y3b_c00048{bottom:428.653333pt;}
.y3a_c00048{bottom:443.320000pt;}
.y12_c00048{bottom:444.253333pt;}
.y39_c00048{bottom:459.320000pt;}
.y11_c00048{bottom:459.853333pt;}
.y38_c00048{bottom:475.186667pt;}
.y10_c00048{bottom:475.986667pt;}
.y37_c00048{bottom:491.586667pt;}
.yf_c00048{bottom:491.720000pt;}
.ye_c00048{bottom:507.186667pt;}
.yd_c00048{bottom:522.920000pt;}
.y36_c00048{bottom:523.186667pt;}
.y35_c00048{bottom:537.453333pt;}
.yc_c00048{bottom:538.786667pt;}
.y34_c00048{bottom:553.720000pt;}
.yb_c00048{bottom:554.920000pt;}
.y33_c00048{bottom:569.986667pt;}
.ya_c00048{bottom:570.520000pt;}
.y32_c00048{bottom:584.920000pt;}
.y9_c00048{bottom:586.520000pt;}
.y8_c00048{bottom:602.653333pt;}
.y31_c00048{bottom:617.586667pt;}
.y7_c00048{bottom:617.986667pt;}
.y6_c00048{bottom:633.853333pt;}
.y30_c00048{bottom:634.120000pt;}
.y2c_c00048{bottom:647.320000pt;}
.y5_c00048{bottom:649.720000pt;}
.y2f_c00048{bottom:650.120000pt;}
.y2b_c00048{bottom:663.586667pt;}
.y4_c00048{bottom:665.720000pt;}
.y2e_c00048{bottom:666.253333pt;}
.y3_c00048{bottom:680.920000pt;}
.y2d_c00048{bottom:681.586667pt;}
.y2_c00048{bottom:697.186667pt;}
.y1_c00048{bottom:714.520000pt;}
.hb_c00048{height:11.733399pt;}
.hc_c00048{height:38.937500pt;}
.h8_c00048{height:50.304000pt;}
.h9_c00048{height:53.098667pt;}
.h4_c00048{height:55.893333pt;}
.h5_c00048{height:57.397135pt;}
.h2_c00048{height:58.688000pt;}
.h6_c00048{height:59.752000pt;}
.h3_c00048{height:64.277333pt;}
.h7_c00048{height:97.813333pt;}
.ha_c00048{height:106.895612pt;}
.h0_c00048{height:743.266667pt;}
.h1_c00048{height:743.333333pt;}
.w2_c00048{width:93.222667pt;}
.w0_c00048{width:506.400000pt;}
.w1_c00048{width:506.666667pt;}
.x0_c00048{left:0.000000pt;}
.x6_c00048{left:14.800000pt;}
.x5_c00048{left:52.800000pt;}
.x2_c00048{left:68.400000pt;}
.x3_c00048{left:69.333333pt;}
.x4_c00048{left:70.266667pt;}
.x7_c00048{left:71.200000pt;}
.x8_c00048{left:72.933333pt;}
.x9_c00048{left:82.533333pt;}
.x1_c00048{left:169.733333pt;}
.x13_c00048{left:210.368205pt;}
.xe_c00048{left:260.933333pt;}
.xc_c00048{left:262.000000pt;}
.xd_c00048{left:263.066667pt;}
.xf_c00048{left:264.266667pt;}
.x10_c00048{left:265.466667pt;}
.x11_c00048{left:310.000000pt;}
.x12_c00048{left:326.133333pt;}
.xa_c00048{left:444.266667pt;}
.xb_c00048{left:445.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4a80debc0a1bbfbedd83f556.woff2')format("woff");}.ff1_c00049{font-family:ff1_c00049;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00049;src:url('chunks/assets/font_87b7130eb271533c8ac46e9e.woff2')format("woff");}.ff2_c00049{font-family:ff2_c00049;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00049;src:url('chunks/assets/font_1f745b391126d41c60472f8f.woff2')format("woff");}.ff3_c00049{font-family:ff3_c00049;line-height:1.575000;font-style:normal;font-weight:normal;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_3e6b732120839e05b75e95b7.woff2')format("woff");}.ff4_c00049{font-family:ff4_c00049;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00049;src:url('chunks/assets/font_c7fc3906d05c378f2ede7efa.woff2')format("woff");}.ff5_c00049{font-family:ff5_c00049;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00049;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff6_c00049{font-family:ff6_c00049;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00049{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00049{vertical-align:0.000000px;}
.ls7_c00049{letter-spacing:0.000000px;}
.ls5_c00049{letter-spacing:5.280000px;}
.ls3_c00049{letter-spacing:7.800000px;}
.ls4_c00049{letter-spacing:12.060000px;}
.ls2_c00049{letter-spacing:12.360000px;}
.ls0_c00049{letter-spacing:12.780000px;}
.ls6_c00049{letter-spacing:15.000000px;}
.ls1_c00049{letter-spacing:362.340000px;}
.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:-30.060000px;}
.ws4_c00049{word-spacing:-23.760000px;}
.ws2_c00049{word-spacing:-17.340000px;}
.ws1_c00049{word-spacing:-15.060000px;}
.ws3_c00049{word-spacing:-14.160000px;}
.ws5_c00049{word-spacing:0.000000px;}
._1c_c00049{margin-left:-12.840000px;}
._25_c00049{margin-left:-9.660000px;}
._6_c00049{margin-left:-8.400000px;}
._13_c00049{margin-left:-7.080000px;}
._5_c00049{margin-left:-5.820000px;}
._27_c00049{margin-left:-4.800000px;}
._1d_c00049{margin-left:-3.540000px;}
._12_c00049{margin-left:-2.520000px;}
._15_c00049{margin-left:-1.500000px;}
._3_c00049{width:1.740000px;}
._4_c00049{width:3.240000px;}
._9_c00049{width:4.260000px;}
._0_c00049{width:5.400000px;}
._a_c00049{width:6.420000px;}
._1_c00049{width:7.680000px;}
._2_c00049{width:9.000000px;}
._b_c00049{width:10.140000px;}
._10_c00049{width:11.220000px;}
._d_c00049{width:12.900000px;}
._20_c00049{width:13.920000px;}
._16_c00049{width:15.600000px;}
._1b_c00049{width:16.740000px;}
._c_c00049{width:18.600000px;}
._1f_c00049{width:19.740000px;}
._26_c00049{width:20.880000px;}
._19_c00049{width:22.740000px;}
._11_c00049{width:23.820000px;}
._1a_c00049{width:25.800000px;}
._7_c00049{width:27.240000px;}
._8_c00049{width:28.560000px;}
._1e_c00049{width:30.780000px;}
._24_c00049{width:33.000000px;}
._e_c00049{width:35.400000px;}
._18_c00049{width:37.980000px;}
._f_c00049{width:40.680000px;}
._21_c00049{width:46.620000px;}
._14_c00049{width:55.740000px;}
._23_c00049{width:114.300000px;}
._17_c00049{width:125.400000px;}
._22_c00049{width:151.500000px;}
.fc2_c00049{color:transparent;}
.fc1_c00049{color:rgb(128,128,128);}
.fc0_c00049{color:rgb(0,0,0);}
.fs1_c00049{font-size:48.000000px;}
.fs0_c00049{font-size:60.000000px;}
.y0_c00049{bottom:0.000000px;}
.y4f_c00049{bottom:3.105000px;}
.y4e_c00049{bottom:7.228363px;}
.y4d_c00049{bottom:44.250000px;}
.y2a_c00049{bottom:61.350000px;}
.y4c_c00049{bottom:62.400000px;}
.y29_c00049{bottom:80.250000px;}
.y4b_c00049{bottom:81.000000px;}
.y28_c00049{bottom:98.250000px;}
.y4a_c00049{bottom:99.300000px;}
.y27_c00049{bottom:116.400000px;}
.y49_c00049{bottom:117.750000px;}
.y26_c00049{bottom:134.550000px;}
.y48_c00049{bottom:135.600000px;}
.y25_c00049{bottom:152.850000px;}
.y47_c00049{bottom:153.900000px;}
.y24_c00049{bottom:171.000000px;}
.y46_c00049{bottom:171.750000px;}
.y23_c00049{bottom:189.000000px;}
.y45_c00049{bottom:189.900000px;}
.y44_c00049{bottom:207.600000px;}
.y22_c00049{bottom:207.900000px;}
.y21_c00049{bottom:225.450000px;}
.y43_c00049{bottom:225.900000px;}
.y20_c00049{bottom:244.050000px;}
.y42_c00049{bottom:244.350000px;}
.y1f_c00049{bottom:261.600000px;}
.y41_c00049{bottom:262.500000px;}
.y1e_c00049{bottom:280.050000px;}
.y40_c00049{bottom:280.500000px;}
.y1d_c00049{bottom:297.300000px;}
.y3f_c00049{bottom:297.900000px;}
.y1c_c00049{bottom:315.600000px;}
.y3e_c00049{bottom:315.900000px;}
.y1b_c00049{bottom:333.000000px;}
.y3d_c00049{bottom:333.450000px;}
.y1a_c00049{bottom:351.900000px;}
.y3c_c00049{bottom:369.600000px;}
.y19_c00049{bottom:369.900000px;}
.y18_c00049{bottom:387.750000px;}
.y3b_c00049{bottom:387.900000px;}
.y17_c00049{bottom:405.600000px;}
.y16_c00049{bottom:423.450000px;}
.y3a_c00049{bottom:423.600000px;}
.y15_c00049{bottom:441.450000px;}
.y39_c00049{bottom:441.750000px;}
.y38_c00049{bottom:459.600000px;}
.y14_c00049{bottom:460.050000px;}
.y13_c00049{bottom:477.900000px;}
.y37_c00049{bottom:478.200000px;}
.y12_c00049{bottom:496.050000px;}
.y11_c00049{bottom:514.050000px;}
.y10_c00049{bottom:531.900000px;}
.y36_c00049{bottom:549.750000px;}
.yf_c00049{bottom:550.350000px;}
.ye_c00049{bottom:567.900000px;}
.y35_c00049{bottom:568.050000px;}
.y34_c00049{bottom:585.600000px;}
.yd_c00049{bottom:586.800000px;}
.y33_c00049{bottom:604.350000px;}
.yc_c00049{bottom:605.400000px;}
.y32_c00049{bottom:622.350000px;}
.yb_c00049{bottom:623.250000px;}
.y31_c00049{bottom:640.200000px;}
.ya_c00049{bottom:640.500000px;}
.y9_c00049{bottom:658.350000px;}
.y30_c00049{bottom:676.050000px;}
.y8_c00049{bottom:676.350000px;}
.y7_c00049{bottom:694.500000px;}
.y2f_c00049{bottom:712.500000px;}
.y6_c00049{bottom:712.800000px;}
.y2e_c00049{bottom:730.350000px;}
.y5_c00049{bottom:730.950000px;}
.y4_c00049{bottom:748.500000px;}
.y2d_c00049{bottom:748.800000px;}
.y2c_c00049{bottom:766.500000px;}
.y3_c00049{bottom:766.800000px;}
.y2_c00049{bottom:784.950000px;}
.y1_c00049{bottom:805.200000px;}
.y2b_c00049{bottom:807.300000px;}
.h4_c00049{height:13.200074px;}
.h5_c00049{height:43.804688px;}
.h2_c00049{height:62.880000px;}
.h3_c00049{height:64.020000px;}
.h1_c00049{height:842.250000px;}
.h0_c00049{height:842.400000px;}
.w2_c00049{width:104.875500px;}
.w1_c00049{width:564.750000px;}
.w0_c00049{width:564.825000px;}
.x0_c00049{left:0.000000px;}
.x4_c00049{left:20.550000px;}
.x5_c00049{left:21.900000px;}
.x6_c00049{left:46.950000px;}
.x7_c00049{left:78.300000px;}
.x2_c00049{left:79.650000px;}
.x3_c00049{left:81.000000px;}
.x1_c00049{left:82.950000px;}
.xd_c00049{left:234.226730px;}
.x8_c00049{left:292.350000px;}
.x9_c00049{left:297.300000px;}
.xa_c00049{left:298.350000px;}
.xb_c00049{left:299.400000px;}
.xc_c00049{left:477.000000px;}
@media print{
.v0_c00049{vertical-align:0.000000pt;}
.ls7_c00049{letter-spacing:0.000000pt;}
.ls5_c00049{letter-spacing:4.693333pt;}
.ls3_c00049{letter-spacing:6.933333pt;}
.ls4_c00049{letter-spacing:10.720000pt;}
.ls2_c00049{letter-spacing:10.986667pt;}
.ls0_c00049{letter-spacing:11.360000pt;}
.ls6_c00049{letter-spacing:13.333333pt;}
.ls1_c00049{letter-spacing:322.080000pt;}
.ws0_c00049{word-spacing:-26.720000pt;}
.ws4_c00049{word-spacing:-21.120000pt;}
.ws2_c00049{word-spacing:-15.413333pt;}
.ws1_c00049{word-spacing:-13.386667pt;}
.ws3_c00049{word-spacing:-12.586667pt;}
.ws5_c00049{word-spacing:0.000000pt;}
._1c_c00049{margin-left:-11.413333pt;}
._25_c00049{margin-left:-8.586667pt;}
._6_c00049{margin-left:-7.466667pt;}
._13_c00049{margin-left:-6.293333pt;}
._5_c00049{margin-left:-5.173333pt;}
._27_c00049{margin-left:-4.266667pt;}
._1d_c00049{margin-left:-3.146667pt;}
._12_c00049{margin-left:-2.240000pt;}
._15_c00049{margin-left:-1.333333pt;}
._3_c00049{width:1.546667pt;}
._4_c00049{width:2.880000pt;}
._9_c00049{width:3.786667pt;}
._0_c00049{width:4.800000pt;}
._a_c00049{width:5.706667pt;}
._1_c00049{width:6.826667pt;}
._2_c00049{width:8.000000pt;}
._b_c00049{width:9.013333pt;}
._10_c00049{width:9.973333pt;}
._d_c00049{width:11.466667pt;}
._20_c00049{width:12.373333pt;}
._16_c00049{width:13.866667pt;}
._1b_c00049{width:14.880000pt;}
._c_c00049{width:16.533333pt;}
._1f_c00049{width:17.546667pt;}
._26_c00049{width:18.560000pt;}
._19_c00049{width:20.213333pt;}
._11_c00049{width:21.173333pt;}
._1a_c00049{width:22.933333pt;}
._7_c00049{width:24.213333pt;}
._8_c00049{width:25.386667pt;}
._1e_c00049{width:27.360000pt;}
._24_c00049{width:29.333333pt;}
._e_c00049{width:31.466667pt;}
._18_c00049{width:33.760000pt;}
._f_c00049{width:36.160000pt;}
._21_c00049{width:41.440000pt;}
._14_c00049{width:49.546667pt;}
._23_c00049{width:101.600000pt;}
._17_c00049{width:111.466667pt;}
._22_c00049{width:134.666667pt;}
.fs1_c00049{font-size:42.666667pt;}
.fs0_c00049{font-size:53.333333pt;}
.y0_c00049{bottom:0.000000pt;}
.y4f_c00049{bottom:2.760000pt;}
.y4e_c00049{bottom:6.425212pt;}
.y4d_c00049{bottom:39.333333pt;}
.y2a_c00049{bottom:54.533333pt;}
.y4c_c00049{bottom:55.466667pt;}
.y29_c00049{bottom:71.333333pt;}
.y4b_c00049{bottom:72.000000pt;}
.y28_c00049{bottom:87.333333pt;}
.y4a_c00049{bottom:88.266667pt;}
.y27_c00049{bottom:103.466667pt;}
.y49_c00049{bottom:104.666667pt;}
.y26_c00049{bottom:119.600000pt;}
.y48_c00049{bottom:120.533333pt;}
.y25_c00049{bottom:135.866667pt;}
.y47_c00049{bottom:136.800000pt;}
.y24_c00049{bottom:152.000000pt;}
.y46_c00049{bottom:152.666667pt;}
.y23_c00049{bottom:168.000000pt;}
.y45_c00049{bottom:168.800000pt;}
.y44_c00049{bottom:184.533333pt;}
.y22_c00049{bottom:184.800000pt;}
.y21_c00049{bottom:200.400000pt;}
.y43_c00049{bottom:200.800000pt;}
.y20_c00049{bottom:216.933333pt;}
.y42_c00049{bottom:217.200000pt;}
.y1f_c00049{bottom:232.533333pt;}
.y41_c00049{bottom:233.333333pt;}
.y1e_c00049{bottom:248.933333pt;}
.y40_c00049{bottom:249.333333pt;}
.y1d_c00049{bottom:264.266667pt;}
.y3f_c00049{bottom:264.800000pt;}
.y1c_c00049{bottom:280.533333pt;}
.y3e_c00049{bottom:280.800000pt;}
.y1b_c00049{bottom:296.000000pt;}
.y3d_c00049{bottom:296.400000pt;}
.y1a_c00049{bottom:312.800000pt;}
.y3c_c00049{bottom:328.533333pt;}
.y19_c00049{bottom:328.800000pt;}
.y18_c00049{bottom:344.666667pt;}
.y3b_c00049{bottom:344.800000pt;}
.y17_c00049{bottom:360.533333pt;}
.y16_c00049{bottom:376.400000pt;}
.y3a_c00049{bottom:376.533333pt;}
.y15_c00049{bottom:392.400000pt;}
.y39_c00049{bottom:392.666667pt;}
.y38_c00049{bottom:408.533333pt;}
.y14_c00049{bottom:408.933333pt;}
.y13_c00049{bottom:424.800000pt;}
.y37_c00049{bottom:425.066667pt;}
.y12_c00049{bottom:440.933333pt;}
.y11_c00049{bottom:456.933333pt;}
.y10_c00049{bottom:472.800000pt;}
.y36_c00049{bottom:488.666667pt;}
.yf_c00049{bottom:489.200000pt;}
.ye_c00049{bottom:504.800000pt;}
.y35_c00049{bottom:504.933333pt;}
.y34_c00049{bottom:520.533333pt;}
.yd_c00049{bottom:521.600000pt;}
.y33_c00049{bottom:537.200000pt;}
.yc_c00049{bottom:538.133333pt;}
.y32_c00049{bottom:553.200000pt;}
.yb_c00049{bottom:554.000000pt;}
.y31_c00049{bottom:569.066667pt;}
.ya_c00049{bottom:569.333333pt;}
.y9_c00049{bottom:585.200000pt;}
.y30_c00049{bottom:600.933333pt;}
.y8_c00049{bottom:601.200000pt;}
.y7_c00049{bottom:617.333333pt;}
.y2f_c00049{bottom:633.333333pt;}
.y6_c00049{bottom:633.600000pt;}
.y2e_c00049{bottom:649.200000pt;}
.y5_c00049{bottom:649.733333pt;}
.y4_c00049{bottom:665.333333pt;}
.y2d_c00049{bottom:665.600000pt;}
.y2c_c00049{bottom:681.333333pt;}
.y3_c00049{bottom:681.600000pt;}
.y2_c00049{bottom:697.733333pt;}
.y1_c00049{bottom:715.733333pt;}
.y2b_c00049{bottom:717.600000pt;}
.h4_c00049{height:11.733399pt;}
.h5_c00049{height:38.937500pt;}
.h2_c00049{height:55.893333pt;}
.h3_c00049{height:56.906667pt;}
.h1_c00049{height:748.666667pt;}
.h0_c00049{height:748.800000pt;}
.w2_c00049{width:93.222667pt;}
.w1_c00049{width:502.000000pt;}
.w0_c00049{width:502.066667pt;}
.x0_c00049{left:0.000000pt;}
.x4_c00049{left:18.266667pt;}
.x5_c00049{left:19.466667pt;}
.x6_c00049{left:41.733333pt;}
.x7_c00049{left:69.600000pt;}
.x2_c00049{left:70.800000pt;}
.x3_c00049{left:72.000000pt;}
.x1_c00049{left:73.733333pt;}
.xd_c00049{left:208.201538pt;}
.x8_c00049{left:259.866667pt;}
.x9_c00049{left:264.266667pt;}
.xa_c00049{left:265.200000pt;}
.xb_c00049{left:266.133333pt;}
.xc_c00049{left:424.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_753d3227fa01ff59ac2510c0.woff2')format("woff");}.ff1_c00050{font-family:ff1_c00050;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00050;src:url('chunks/assets/font_f6bffe7c9e72cdc16f175ecc.woff2')format("woff");}.ff2_c00050{font-family:ff2_c00050;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00050;src:url('chunks/assets/font_260255e0aaef5b1a5a8a92a6.woff2')format("woff");}.ff3_c00050{font-family:ff3_c00050;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00050;src:url('chunks/assets/font_297153bffa4bb94be96d6795.woff2')format("woff");}.ff4_c00050{font-family:ff4_c00050;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00050;src:url('chunks/assets/font_0ce391de997f24f9f9dd37f4.woff2')format("woff");}.ff5_c00050{font-family:ff5_c00050;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00050;src:url('chunks/assets/font_5b974163e218c985b374e160.woff2')format("woff");}.ff6_c00050{font-family:ff6_c00050;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00050;src:url('chunks/assets/font_a6bfb9cf291c4273db98d6ba.woff2')format("woff");}.ff7_c00050{font-family:ff7_c00050;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00050;src:url('chunks/assets/font_418cd2ab41faaee9d2682e14.woff2')format("woff");}.ff8_c00050{font-family:ff8_c00050;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00050;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff9_c00050{font-family:ff9_c00050;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00050{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00050{vertical-align:0.000000px;}
.ls4_c00050{letter-spacing:-6.000000px;}
.ls3_c00050{letter-spacing:0.000000px;}
.ls1_c00050{letter-spacing:2.340000px;}
.ls5_c00050{letter-spacing:3.000000px;}
.ls0_c00050{letter-spacing:4.005000px;}
.ls2_c00050{letter-spacing:18.093000px;}
.ls6_c00050{letter-spacing:27.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;}
}
.ws4_c00050{word-spacing:-42.060000px;}
.ws5_c00050{word-spacing:-39.399000px;}
.ws3_c00050{word-spacing:-15.000000px;}
.ws0_c00050{word-spacing:-14.160000px;}
.ws1_c00050{word-spacing:-14.049000px;}
.ws2_c00050{word-spacing:-8.160000px;}
.ws6_c00050{word-spacing:-0.840000px;}
.ws7_c00050{word-spacing:0.000000px;}
._27_c00050{margin-left:-17.430000px;}
._22_c00050{margin-left:-11.580000px;}
._26_c00050{margin-left:-9.960000px;}
._16_c00050{margin-left:-7.920000px;}
._17_c00050{margin-left:-6.354000px;}
._14_c00050{margin-left:-4.773000px;}
._7_c00050{margin-left:-3.627000px;}
._1c_c00050{margin-left:-2.487000px;}
._5_c00050{margin-left:-1.380000px;}
._2_c00050{width:1.740000px;}
._3_c00050{width:3.180000px;}
._4_c00050{width:4.680000px;}
._8_c00050{width:6.000000px;}
._6_c00050{width:7.020000px;}
._d_c00050{width:8.280000px;}
._e_c00050{width:9.660000px;}
._a_c00050{width:10.800000px;}
._b_c00050{width:11.940000px;}
._0_c00050{width:13.167000px;}
._1b_c00050{width:16.080000px;}
._10_c00050{width:17.460000px;}
._c_c00050{width:19.080000px;}
._19_c00050{width:20.640000px;}
._1a_c00050{width:21.960000px;}
._11_c00050{width:22.980000px;}
._24_c00050{width:25.020000px;}
._9_c00050{width:26.400000px;}
._1f_c00050{width:27.720000px;}
._f_c00050{width:29.100000px;}
._23_c00050{width:30.780000px;}
._12_c00050{width:32.580000px;}
._13_c00050{width:34.215000px;}
._1e_c00050{width:35.340000px;}
._1d_c00050{width:37.740000px;}
._21_c00050{width:40.680000px;}
._20_c00050{width:46.440000px;}
._1_c00050{width:49.014000px;}
._18_c00050{width:96.960000px;}
._25_c00050{width:177.207000px;}
._15_c00050{width:178.233000px;}
.fc2_c00050{color:transparent;}
.fc1_c00050{color:rgb(128,128,128);}
.fc0_c00050{color:rgb(0,0,0);}
.fs2_c00050{font-size:45.000000px;}
.fs7_c00050{font-size:48.000000px;}
.fs3_c00050{font-size:57.000000px;}
.fs1_c00050{font-size:60.000000px;}
.fs0_c00050{font-size:63.000000px;}
.fs4_c00050{font-size:69.000000px;}
.fs5_c00050{font-size:105.000000px;}
.fs6_c00050{font-size:117.000000px;}
.y0_c00050{bottom:0.000000px;}
.y50_c00050{bottom:3.105000px;}
.y4f_c00050{bottom:7.228355px;}
.y4e_c00050{bottom:45.585000px;}
.y4d_c00050{bottom:67.785000px;}
.y27_c00050{bottom:68.085000px;}
.y4c_c00050{bottom:84.585000px;}
.y26_c00050{bottom:86.685000px;}
.y4b_c00050{bottom:102.285000px;}
.y25_c00050{bottom:104.535000px;}
.y4a_c00050{bottom:119.685000px;}
.y24_c00050{bottom:122.385000px;}
.y49_c00050{bottom:137.685000px;}
.y23_c00050{bottom:140.385000px;}
.y48_c00050{bottom:156.135000px;}
.y22_c00050{bottom:158.235000px;}
.y47_c00050{bottom:172.335000px;}
.y21_c00050{bottom:176.385000px;}
.y46_c00050{bottom:192.585000px;}
.y20_c00050{bottom:194.085000px;}
.y45_c00050{bottom:210.135000px;}
.y1f_c00050{bottom:212.535000px;}
.y44_c00050{bottom:227.835000px;}
.y1e_c00050{bottom:230.385000px;}
.y43_c00050{bottom:245.685000px;}
.y1d_c00050{bottom:248.685000px;}
.y42_c00050{bottom:264.135000px;}
.y1c_c00050{bottom:266.535000px;}
.y41_c00050{bottom:282.135000px;}
.y1b_c00050{bottom:284.085000px;}
.y40_c00050{bottom:298.035000px;}
.y1a_c00050{bottom:302.085000px;}
.y3f_c00050{bottom:317.835000px;}
.y19_c00050{bottom:319.635000px;}
.y3e_c00050{bottom:334.785000px;}
.y18_c00050{bottom:337.785000px;}
.y3d_c00050{bottom:353.385000px;}
.y17_c00050{bottom:355.335000px;}
.y3c_c00050{bottom:371.835000px;}
.y16_c00050{bottom:373.185000px;}
.y3b_c00050{bottom:388.785000px;}
.y15_c00050{bottom:390.735000px;}
.y3a_c00050{bottom:406.935000px;}
.y14_c00050{bottom:409.035000px;}
.y39_c00050{bottom:424.935000px;}
.y13_c00050{bottom:426.885000px;}
.y38_c00050{bottom:442.335000px;}
.y12_c00050{bottom:444.435000px;}
.y37_c00050{bottom:459.585000px;}
.y11_c00050{bottom:460.635000px;}
.y36_c00050{bottom:477.885000px;}
.y10_c00050{bottom:479.235000px;}
.y35_c00050{bottom:496.335000px;}
.yf_c00050{bottom:496.785000px;}
.y34_c00050{bottom:513.885000px;}
.ye_c00050{bottom:531.585000px;}
.y33_c00050{bottom:531.885000px;}
.yd_c00050{bottom:549.435000px;}
.y32_c00050{bottom:549.735000px;}
.yc_c00050{bottom:567.885000px;}
.y31_c00050{bottom:584.085000px;}
.yb_c00050{bottom:585.885000px;}
.y30_c00050{bottom:603.135000px;}
.ya_c00050{bottom:619.335000px;}
.y2f_c00050{bottom:619.635000px;}
.y2e_c00050{bottom:638.835000px;}
.y9_c00050{bottom:655.785000px;}
.y2d_c00050{bottom:656.985000px;}
.y8_c00050{bottom:673.935000px;}
.y2c_c00050{bottom:674.535000px;}
.y7_c00050{bottom:691.785000px;}
.y2b_c00050{bottom:709.635000px;}
.y6_c00050{bottom:709.785000px;}
.y5_c00050{bottom:727.635000px;}
.y2a_c00050{bottom:727.935000px;}
.y4_c00050{bottom:745.785000px;}
.y29_c00050{bottom:746.085000px;}
.y3_c00050{bottom:763.335000px;}
.y28_c00050{bottom:781.635000px;}
.y2_c00050{bottom:781.935000px;}
.y1_c00050{bottom:800.535000px;}
.h8_c00050{height:13.200074px;}
.h9_c00050{height:43.804688px;}
.h5_c00050{height:59.736000px;}
.h3_c00050{height:62.880000px;}
.h4_c00050{height:64.020000px;}
.h2_c00050{height:67.221000px;}
.h6_c00050{height:73.623000px;}
.h7_c00050{height:120.257563px;}
.h0_c00050{height:836.175000px;}
.h1_c00050{height:836.250000px;}
.w2_c00050{width:104.875500px;}
.w0_c00050{width:569.700000px;}
.w1_c00050{width:570.000000px;}
.x0_c00050{left:0.000000px;}
.x3_c00050{left:61.800000px;}
.x2_c00050{left:63.150000px;}
.xa_c00050{left:65.100000px;}
.x5_c00050{left:66.900000px;}
.x6_c00050{left:78.600000px;}
.x9_c00050{left:102.600000px;}
.x4_c00050{left:135.900000px;}
.x7_c00050{left:139.050000px;}
.x8_c00050{left:148.800000px;}
.x1_c00050{left:194.400000px;}
.x10_c00050{left:236.664230px;}
.xe_c00050{left:278.850000px;}
.xb_c00050{left:279.900000px;}
.xc_c00050{left:281.250000px;}
.xd_c00050{left:282.450000px;}
.xf_c00050{left:363.150000px;}
@media print{
.v0_c00050{vertical-align:0.000000pt;}
.ls4_c00050{letter-spacing:-5.333333pt;}
.ls3_c00050{letter-spacing:0.000000pt;}
.ls1_c00050{letter-spacing:2.080000pt;}
.ls5_c00050{letter-spacing:2.666667pt;}
.ls0_c00050{letter-spacing:3.560000pt;}
.ls2_c00050{letter-spacing:16.082667pt;}
.ls6_c00050{letter-spacing:24.000000pt;}
.ws4_c00050{word-spacing:-37.386667pt;}
.ws5_c00050{word-spacing:-35.021333pt;}
.ws3_c00050{word-spacing:-13.333333pt;}
.ws0_c00050{word-spacing:-12.586667pt;}
.ws1_c00050{word-spacing:-12.488000pt;}
.ws2_c00050{word-spacing:-7.253333pt;}
.ws6_c00050{word-spacing:-0.746667pt;}
.ws7_c00050{word-spacing:0.000000pt;}
._27_c00050{margin-left:-15.493333pt;}
._22_c00050{margin-left:-10.293333pt;}
._26_c00050{margin-left:-8.853333pt;}
._16_c00050{margin-left:-7.040000pt;}
._17_c00050{margin-left:-5.648000pt;}
._14_c00050{margin-left:-4.242667pt;}
._7_c00050{margin-left:-3.224000pt;}
._1c_c00050{margin-left:-2.210667pt;}
._5_c00050{margin-left:-1.226667pt;}
._2_c00050{width:1.546667pt;}
._3_c00050{width:2.826667pt;}
._4_c00050{width:4.160000pt;}
._8_c00050{width:5.333333pt;}
._6_c00050{width:6.240000pt;}
._d_c00050{width:7.360000pt;}
._e_c00050{width:8.586667pt;}
._a_c00050{width:9.600000pt;}
._b_c00050{width:10.613333pt;}
._0_c00050{width:11.704000pt;}
._1b_c00050{width:14.293333pt;}
._10_c00050{width:15.520000pt;}
._c_c00050{width:16.960000pt;}
._19_c00050{width:18.346667pt;}
._1a_c00050{width:19.520000pt;}
._11_c00050{width:20.426667pt;}
._24_c00050{width:22.240000pt;}
._9_c00050{width:23.466667pt;}
._1f_c00050{width:24.640000pt;}
._f_c00050{width:25.866667pt;}
._23_c00050{width:27.360000pt;}
._12_c00050{width:28.960000pt;}
._13_c00050{width:30.413333pt;}
._1e_c00050{width:31.413333pt;}
._1d_c00050{width:33.546667pt;}
._21_c00050{width:36.160000pt;}
._20_c00050{width:41.280000pt;}
._1_c00050{width:43.568000pt;}
._18_c00050{width:86.186667pt;}
._25_c00050{width:157.517333pt;}
._15_c00050{width:158.429333pt;}
.fs2_c00050{font-size:40.000000pt;}
.fs7_c00050{font-size:42.666667pt;}
.fs3_c00050{font-size:50.666667pt;}
.fs1_c00050{font-size:53.333333pt;}
.fs0_c00050{font-size:56.000000pt;}
.fs4_c00050{font-size:61.333333pt;}
.fs5_c00050{font-size:93.333333pt;}
.fs6_c00050{font-size:104.000000pt;}
.y0_c00050{bottom:0.000000pt;}
.y50_c00050{bottom:2.760000pt;}
.y4f_c00050{bottom:6.425204pt;}
.y4e_c00050{bottom:40.520000pt;}
.y4d_c00050{bottom:60.253333pt;}
.y27_c00050{bottom:60.520000pt;}
.y4c_c00050{bottom:75.186667pt;}
.y26_c00050{bottom:77.053333pt;}
.y4b_c00050{bottom:90.920000pt;}
.y25_c00050{bottom:92.920000pt;}
.y4a_c00050{bottom:106.386667pt;}
.y24_c00050{bottom:108.786667pt;}
.y49_c00050{bottom:122.386667pt;}
.y23_c00050{bottom:124.786667pt;}
.y48_c00050{bottom:138.786667pt;}
.y22_c00050{bottom:140.653333pt;}
.y47_c00050{bottom:153.186667pt;}
.y21_c00050{bottom:156.786667pt;}
.y46_c00050{bottom:171.186667pt;}
.y20_c00050{bottom:172.520000pt;}
.y45_c00050{bottom:186.786667pt;}
.y1f_c00050{bottom:188.920000pt;}
.y44_c00050{bottom:202.520000pt;}
.y1e_c00050{bottom:204.786667pt;}
.y43_c00050{bottom:218.386667pt;}
.y1d_c00050{bottom:221.053333pt;}
.y42_c00050{bottom:234.786667pt;}
.y1c_c00050{bottom:236.920000pt;}
.y41_c00050{bottom:250.786667pt;}
.y1b_c00050{bottom:252.520000pt;}
.y40_c00050{bottom:264.920000pt;}
.y1a_c00050{bottom:268.520000pt;}
.y3f_c00050{bottom:282.520000pt;}
.y19_c00050{bottom:284.120000pt;}
.y3e_c00050{bottom:297.586667pt;}
.y18_c00050{bottom:300.253333pt;}
.y3d_c00050{bottom:314.120000pt;}
.y17_c00050{bottom:315.853333pt;}
.y3c_c00050{bottom:330.520000pt;}
.y16_c00050{bottom:331.720000pt;}
.y3b_c00050{bottom:345.586667pt;}
.y15_c00050{bottom:347.320000pt;}
.y3a_c00050{bottom:361.720000pt;}
.y14_c00050{bottom:363.586667pt;}
.y39_c00050{bottom:377.720000pt;}
.y13_c00050{bottom:379.453333pt;}
.y38_c00050{bottom:393.186667pt;}
.y12_c00050{bottom:395.053333pt;}
.y37_c00050{bottom:408.520000pt;}
.y11_c00050{bottom:409.453333pt;}
.y36_c00050{bottom:424.786667pt;}
.y10_c00050{bottom:425.986667pt;}
.y35_c00050{bottom:441.186667pt;}
.yf_c00050{bottom:441.586667pt;}
.y34_c00050{bottom:456.786667pt;}
.ye_c00050{bottom:472.520000pt;}
.y33_c00050{bottom:472.786667pt;}
.yd_c00050{bottom:488.386667pt;}
.y32_c00050{bottom:488.653333pt;}
.yc_c00050{bottom:504.786667pt;}
.y31_c00050{bottom:519.186667pt;}
.yb_c00050{bottom:520.786667pt;}
.y30_c00050{bottom:536.120000pt;}
.ya_c00050{bottom:550.520000pt;}
.y2f_c00050{bottom:550.786667pt;}
.y2e_c00050{bottom:567.853333pt;}
.y9_c00050{bottom:582.920000pt;}
.y2d_c00050{bottom:583.986667pt;}
.y8_c00050{bottom:599.053333pt;}
.y2c_c00050{bottom:599.586667pt;}
.y7_c00050{bottom:614.920000pt;}
.y2b_c00050{bottom:630.786667pt;}
.y6_c00050{bottom:630.920000pt;}
.y5_c00050{bottom:646.786667pt;}
.y2a_c00050{bottom:647.053333pt;}
.y4_c00050{bottom:662.920000pt;}
.y29_c00050{bottom:663.186667pt;}
.y3_c00050{bottom:678.520000pt;}
.y28_c00050{bottom:694.786667pt;}
.y2_c00050{bottom:695.053333pt;}
.y1_c00050{bottom:711.586667pt;}
.h8_c00050{height:11.733399pt;}
.h9_c00050{height:38.937500pt;}
.h5_c00050{height:53.098667pt;}
.h3_c00050{height:55.893333pt;}
.h4_c00050{height:56.906667pt;}
.h2_c00050{height:59.752000pt;}
.h6_c00050{height:65.442667pt;}
.h7_c00050{height:106.895612pt;}
.h0_c00050{height:743.266667pt;}
.h1_c00050{height:743.333333pt;}
.w2_c00050{width:93.222667pt;}
.w0_c00050{width:506.400000pt;}
.w1_c00050{width:506.666667pt;}
.x0_c00050{left:0.000000pt;}
.x3_c00050{left:54.933333pt;}
.x2_c00050{left:56.133333pt;}
.xa_c00050{left:57.866667pt;}
.x5_c00050{left:59.466667pt;}
.x6_c00050{left:69.866667pt;}
.x9_c00050{left:91.200000pt;}
.x4_c00050{left:120.800000pt;}
.x7_c00050{left:123.600000pt;}
.x8_c00050{left:132.266667pt;}
.x1_c00050{left:172.800000pt;}
.x10_c00050{left:210.368205pt;}
.xe_c00050{left:247.866667pt;}
.xb_c00050{left:248.800000pt;}
.xc_c00050{left:250.000000pt;}
.xd_c00050{left:251.066667pt;}
.xf_c00050{left:322.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_fbcbbdc2e76def12373cc050.woff2')format("woff");}.ff1_c00051{font-family:ff1_c00051;line-height:1.437000;font-style:normal;font-weight:normal;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_1106979db1ade699690bba71.woff2')format("woff");}.ff2_c00051{font-family:ff2_c00051;line-height:1.437000;font-style:normal;font-weight:normal;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_5c967db51b91a8eab3c87eaa.woff2')format("woff");}.ff3_c00051{font-family:ff3_c00051;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00051;src:url('chunks/assets/font_0ac0927c76bf735839ed7094.woff2')format("woff");}.ff4_c00051{font-family:ff4_c00051;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00051;src:url('chunks/assets/font_3239b28c06925381bf969a39.woff2')format("woff");}.ff5_c00051{font-family:ff5_c00051;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00051;src:url('chunks/assets/font_e50497c5d3f7b8fd1ec8053c.woff2')format("woff");}.ff6_c00051{font-family:ff6_c00051;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00051;src:url('chunks/assets/font_d8ad93f062384a478194a72b.woff2')format("woff");}.ff7_c00051{font-family:ff7_c00051;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00051;src:url('chunks/assets/font_703d28e79985a777b91dd576.woff2')format("woff");}.ff8_c00051{font-family:ff8_c00051;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00051;src:url('chunks/assets/font_3e341f497135fab23959c9e5.woff2')format("woff");}.ff9_c00051{font-family:ff9_c00051;line-height:1.437000;font-style:normal;font-weight: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_c00051;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ffa_c00051{font-family:ffa_c00051;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00051{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00051{vertical-align:0.000000px;}
.lsb_c00051{letter-spacing:-6.000000px;}
.ls8_c00051{letter-spacing:-3.000000px;}
.ls9_c00051{letter-spacing:0.000000px;}
.ls7_c00051{letter-spacing:6.000000px;}
.ls5_c00051{letter-spacing:6.357000px;}
.ls2_c00051{letter-spacing:7.404000px;}
.ls4_c00051{letter-spacing:9.000000px;}
.ls1_c00051{letter-spacing:12.204000px;}
.lsa_c00051{letter-spacing:15.000000px;}
.ls3_c00051{letter-spacing:20.400000px;}
.ls6_c00051{letter-spacing:21.987000px;}
.ls0_c00051{letter-spacing:22.500000px;}
.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;}
}
.ws6_c00051{word-spacing:-33.420000px;}
.ws2_c00051{word-spacing:-30.750000px;}
.ws7_c00051{word-spacing:-25.095000px;}
.ws0_c00051{word-spacing:-21.045000px;}
.ws4_c00051{word-spacing:-17.436000px;}
.ws5_c00051{word-spacing:-15.060000px;}
.ws3_c00051{word-spacing:-14.427000px;}
.ws1_c00051{word-spacing:-14.160000px;}
.ws8_c00051{word-spacing:0.000000px;}
._0_c00051{margin-left:-24.045000px;}
._19_c00051{margin-left:-20.232000px;}
._31_c00051{margin-left:-17.115000px;}
._1f_c00051{margin-left:-16.035000px;}
._1_c00051{margin-left:-14.385000px;}
._25_c00051{margin-left:-13.272000px;}
._15_c00051{margin-left:-12.015000px;}
._16_c00051{margin-left:-10.278000px;}
._14_c00051{margin-left:-9.207000px;}
._b_c00051{margin-left:-7.686000px;}
._c_c00051{margin-left:-6.615000px;}
._12_c00051{margin-left:-4.725000px;}
._13_c00051{margin-left:-3.066000px;}
._11_c00051{margin-left:-1.764000px;}
._3_c00051{width:1.680000px;}
._2_c00051{width:3.600000px;}
._a_c00051{width:4.779000px;}
._f_c00051{width:6.024000px;}
._d_c00051{width:8.016000px;}
._5_c00051{width:9.639000px;}
._20_c00051{width:10.722000px;}
._6_c00051{width:11.781000px;}
._1a_c00051{width:12.849000px;}
._8_c00051{width:14.742000px;}
._2e_c00051{width:15.777000px;}
._1b_c00051{width:16.800000px;}
._7_c00051{width:18.774000px;}
._e_c00051{width:20.778000px;}
._24_c00051{width:22.386000px;}
._17_c00051{width:24.759000px;}
._26_c00051{width:25.818000px;}
._18_c00051{width:27.468000px;}
._23_c00051{width:29.025000px;}
._1e_c00051{width:30.114000px;}
._27_c00051{width:31.143000px;}
._1d_c00051{width:33.222000px;}
._21_c00051{width:35.793000px;}
._2a_c00051{width:36.888000px;}
._22_c00051{width:38.118000px;}
._30_c00051{width:40.389000px;}
._29_c00051{width:41.580000px;}
._9_c00051{width:42.795000px;}
._28_c00051{width:50.295000px;}
._2c_c00051{width:52.485000px;}
._2b_c00051{width:58.320000px;}
._2d_c00051{width:68.901000px;}
._2f_c00051{width:91.290000px;}
._10_c00051{width:109.149000px;}
._1c_c00051{width:258.834000px;}
._4_c00051{width:395.829000px;}
.fc2_c00051{color:transparent;}
.fc1_c00051{color:rgb(128,128,128);}
.fc0_c00051{color:rgb(0,0,0);}
.fs3_c00051{font-size:36.000000px;}
.fs5_c00051{font-size:48.000000px;}
.fs1_c00051{font-size:60.000000px;}
.fs2_c00051{font-size:63.000000px;}
.fs4_c00051{font-size:66.000000px;}
.fs0_c00051{font-size:105.000000px;}
.y0_c00051{bottom:0.000000px;}
.y53_c00051{bottom:3.105000px;}
.y52_c00051{bottom:7.228363px;}
.y51_c00051{bottom:47.250000px;}
.y4b_c00051{bottom:66.450000px;}
.y50_c00051{bottom:85.050000px;}
.y4a_c00051{bottom:85.650000px;}
.y4f_c00051{bottom:103.050000px;}
.y49_c00051{bottom:103.500000px;}
.y48_c00051{bottom:121.200000px;}
.y4e_c00051{bottom:139.650000px;}
.y47_c00051{bottom:140.400000px;}
.y4d_c00051{bottom:157.650000px;}
.y46_c00051{bottom:158.250000px;}
.y4c_c00051{bottom:175.800000px;}
.y45_c00051{bottom:176.550000px;}
.y44_c00051{bottom:193.350000px;}
.y43_c00051{bottom:211.950000px;}
.y23_c00051{bottom:212.850000px;}
.y42_c00051{bottom:229.800000px;}
.y22_c00051{bottom:231.750000px;}
.y41_c00051{bottom:247.650000px;}
.y21_c00051{bottom:249.750000px;}
.y40_c00051{bottom:265.650000px;}
.y20_c00051{bottom:267.900000px;}
.y3f_c00051{bottom:283.050000px;}
.y1f_c00051{bottom:285.750000px;}
.y3e_c00051{bottom:301.950000px;}
.y1e_c00051{bottom:303.300000px;}
.y3d_c00051{bottom:318.900000px;}
.y1d_c00051{bottom:321.300000px;}
.y3c_c00051{bottom:336.600000px;}
.y1c_c00051{bottom:339.900000px;}
.y3b_c00051{bottom:354.750000px;}
.y1b_c00051{bottom:357.450000px;}
.y3a_c00051{bottom:372.900000px;}
.y1a_c00051{bottom:375.300000px;}
.y39_c00051{bottom:390.900000px;}
.y19_c00051{bottom:393.750000px;}
.y38_c00051{bottom:408.750000px;}
.y18_c00051{bottom:411.750000px;}
.y37_c00051{bottom:426.600000px;}
.y17_c00051{bottom:429.750000px;}
.y36_c00051{bottom:444.900000px;}
.y16_c00051{bottom:447.750000px;}
.y35_c00051{bottom:462.150000px;}
.y15_c00051{bottom:465.750000px;}
.y34_c00051{bottom:481.050000px;}
.y14_c00051{bottom:483.000000px;}
.y33_c00051{bottom:498.600000px;}
.y13_c00051{bottom:501.450000px;}
.y32_c00051{bottom:516.450000px;}
.y12_c00051{bottom:519.000000px;}
.y31_c00051{bottom:535.050000px;}
.y11_c00051{bottom:537.300000px;}
.y30_c00051{bottom:552.900000px;}
.y10_c00051{bottom:555.150000px;}
.y2f_c00051{bottom:570.750000px;}
.yf_c00051{bottom:572.700000px;}
.y2e_c00051{bottom:588.900000px;}
.ye_c00051{bottom:591.300000px;}
.y2d_c00051{bottom:606.750000px;}
.yd_c00051{bottom:609.750000px;}
.y2c_c00051{bottom:624.750000px;}
.yc_c00051{bottom:627.750000px;}
.y2b_c00051{bottom:642.600000px;}
.yb_c00051{bottom:645.600000px;}
.y2a_c00051{bottom:660.750000px;}
.ya_c00051{bottom:663.900000px;}
.y29_c00051{bottom:678.600000px;}
.y9_c00051{bottom:681.450000px;}
.y28_c00051{bottom:696.600000px;}
.y8_c00051{bottom:699.600000px;}
.y27_c00051{bottom:713.850000px;}
.y7_c00051{bottom:718.200000px;}
.y26_c00051{bottom:733.050000px;}
.y6_c00051{bottom:735.750000px;}
.y25_c00051{bottom:750.600000px;}
.y5_c00051{bottom:753.750000px;}
.y2_c00051{bottom:754.350000px;}
.y24_c00051{bottom:768.750000px;}
.y1_c00051{bottom:772.200000px;}
.y4_c00051{bottom:787.950000px;}
.y3_c00051{bottom:808.650000px;}
.ha_c00051{height:13.200074px;}
.hb_c00051{height:43.804688px;}
.h3_c00051{height:62.880000px;}
.h7_c00051{height:64.020000px;}
.h5_c00051{height:66.024000px;}
.h8_c00051{height:67.221000px;}
.h4_c00051{height:68.292000px;}
.h6_c00051{height:70.224609px;}
.h9_c00051{height:71.544000px;}
.h2_c00051{height:110.040000px;}
.h1_c00051{height:842.250000px;}
.h0_c00051{height:842.400000px;}
.w2_c00051{width:104.875500px;}
.w1_c00051{width:564.750000px;}
.w0_c00051{width:564.825000px;}
.x0_c00051{left:0.000000px;}
.x13_c00051{left:15.900000px;}
.x12_c00051{left:18.000000px;}
.x1_c00051{left:27.000000px;}
.x11_c00051{left:82.650000px;}
.x2_c00051{left:84.750000px;}
.x5_c00051{left:85.800000px;}
.x4_c00051{left:86.850000px;}
.x6_c00051{left:88.650000px;}
.x7_c00051{left:90.450000px;}
.x8_c00051{left:92.400000px;}
.x10_c00051{left:99.300000px;}
.x3_c00051{left:133.050000px;}
.x17_c00051{left:234.226730px;}
.x15_c00051{left:299.700000px;}
.x14_c00051{left:300.750000px;}
.xf_c00051{left:303.150000px;}
.xe_c00051{left:304.800000px;}
.xd_c00051{left:306.450000px;}
.xc_c00051{left:307.500000px;}
.xb_c00051{left:308.700000px;}
.xa_c00051{left:309.750000px;}
.x9_c00051{left:311.100000px;}
.x16_c00051{left:476.850000px;}
@media print{
.v0_c00051{vertical-align:0.000000pt;}
.lsb_c00051{letter-spacing:-5.333333pt;}
.ls8_c00051{letter-spacing:-2.666667pt;}
.ls9_c00051{letter-spacing:0.000000pt;}
.ls7_c00051{letter-spacing:5.333333pt;}
.ls5_c00051{letter-spacing:5.650667pt;}
.ls2_c00051{letter-spacing:6.581333pt;}
.ls4_c00051{letter-spacing:8.000000pt;}
.ls1_c00051{letter-spacing:10.848000pt;}
.lsa_c00051{letter-spacing:13.333333pt;}
.ls3_c00051{letter-spacing:18.133333pt;}
.ls6_c00051{letter-spacing:19.544000pt;}
.ls0_c00051{letter-spacing:20.000000pt;}
.ws6_c00051{word-spacing:-29.706667pt;}
.ws2_c00051{word-spacing:-27.333333pt;}
.ws7_c00051{word-spacing:-22.306667pt;}
.ws0_c00051{word-spacing:-18.706667pt;}
.ws4_c00051{word-spacing:-15.498667pt;}
.ws5_c00051{word-spacing:-13.386667pt;}
.ws3_c00051{word-spacing:-12.824000pt;}
.ws1_c00051{word-spacing:-12.586667pt;}
.ws8_c00051{word-spacing:0.000000pt;}
._0_c00051{margin-left:-21.373333pt;}
._19_c00051{margin-left:-17.984000pt;}
._31_c00051{margin-left:-15.213333pt;}
._1f_c00051{margin-left:-14.253333pt;}
._1_c00051{margin-left:-12.786667pt;}
._25_c00051{margin-left:-11.797333pt;}
._15_c00051{margin-left:-10.680000pt;}
._16_c00051{margin-left:-9.136000pt;}
._14_c00051{margin-left:-8.184000pt;}
._b_c00051{margin-left:-6.832000pt;}
._c_c00051{margin-left:-5.880000pt;}
._12_c00051{margin-left:-4.200000pt;}
._13_c00051{margin-left:-2.725333pt;}
._11_c00051{margin-left:-1.568000pt;}
._3_c00051{width:1.493333pt;}
._2_c00051{width:3.200000pt;}
._a_c00051{width:4.248000pt;}
._f_c00051{width:5.354667pt;}
._d_c00051{width:7.125333pt;}
._5_c00051{width:8.568000pt;}
._20_c00051{width:9.530667pt;}
._6_c00051{width:10.472000pt;}
._1a_c00051{width:11.421333pt;}
._8_c00051{width:13.104000pt;}
._2e_c00051{width:14.024000pt;}
._1b_c00051{width:14.933333pt;}
._7_c00051{width:16.688000pt;}
._e_c00051{width:18.469333pt;}
._24_c00051{width:19.898667pt;}
._17_c00051{width:22.008000pt;}
._26_c00051{width:22.949333pt;}
._18_c00051{width:24.416000pt;}
._23_c00051{width:25.800000pt;}
._1e_c00051{width:26.768000pt;}
._27_c00051{width:27.682667pt;}
._1d_c00051{width:29.530667pt;}
._21_c00051{width:31.816000pt;}
._2a_c00051{width:32.789333pt;}
._22_c00051{width:33.882667pt;}
._30_c00051{width:35.901333pt;}
._29_c00051{width:36.960000pt;}
._9_c00051{width:38.040000pt;}
._28_c00051{width:44.706667pt;}
._2c_c00051{width:46.653333pt;}
._2b_c00051{width:51.840000pt;}
._2d_c00051{width:61.245333pt;}
._2f_c00051{width:81.146667pt;}
._10_c00051{width:97.021333pt;}
._1c_c00051{width:230.074667pt;}
._4_c00051{width:351.848000pt;}
.fs3_c00051{font-size:32.000000pt;}
.fs5_c00051{font-size:42.666667pt;}
.fs1_c00051{font-size:53.333333pt;}
.fs2_c00051{font-size:56.000000pt;}
.fs4_c00051{font-size:58.666667pt;}
.fs0_c00051{font-size:93.333333pt;}
.y0_c00051{bottom:0.000000pt;}
.y53_c00051{bottom:2.760000pt;}
.y52_c00051{bottom:6.425212pt;}
.y51_c00051{bottom:42.000000pt;}
.y4b_c00051{bottom:59.066667pt;}
.y50_c00051{bottom:75.600000pt;}
.y4a_c00051{bottom:76.133333pt;}
.y4f_c00051{bottom:91.600000pt;}
.y49_c00051{bottom:92.000000pt;}
.y48_c00051{bottom:107.733333pt;}
.y4e_c00051{bottom:124.133333pt;}
.y47_c00051{bottom:124.800000pt;}
.y4d_c00051{bottom:140.133333pt;}
.y46_c00051{bottom:140.666667pt;}
.y4c_c00051{bottom:156.266667pt;}
.y45_c00051{bottom:156.933333pt;}
.y44_c00051{bottom:171.866667pt;}
.y43_c00051{bottom:188.400000pt;}
.y23_c00051{bottom:189.200000pt;}
.y42_c00051{bottom:204.266667pt;}
.y22_c00051{bottom:206.000000pt;}
.y41_c00051{bottom:220.133333pt;}
.y21_c00051{bottom:222.000000pt;}
.y40_c00051{bottom:236.133333pt;}
.y20_c00051{bottom:238.133333pt;}
.y3f_c00051{bottom:251.600000pt;}
.y1f_c00051{bottom:254.000000pt;}
.y3e_c00051{bottom:268.400000pt;}
.y1e_c00051{bottom:269.600000pt;}
.y3d_c00051{bottom:283.466667pt;}
.y1d_c00051{bottom:285.600000pt;}
.y3c_c00051{bottom:299.200000pt;}
.y1c_c00051{bottom:302.133333pt;}
.y3b_c00051{bottom:315.333333pt;}
.y1b_c00051{bottom:317.733333pt;}
.y3a_c00051{bottom:331.466667pt;}
.y1a_c00051{bottom:333.600000pt;}
.y39_c00051{bottom:347.466667pt;}
.y19_c00051{bottom:350.000000pt;}
.y38_c00051{bottom:363.333333pt;}
.y18_c00051{bottom:366.000000pt;}
.y37_c00051{bottom:379.200000pt;}
.y17_c00051{bottom:382.000000pt;}
.y36_c00051{bottom:395.466667pt;}
.y16_c00051{bottom:398.000000pt;}
.y35_c00051{bottom:410.800000pt;}
.y15_c00051{bottom:414.000000pt;}
.y34_c00051{bottom:427.600000pt;}
.y14_c00051{bottom:429.333333pt;}
.y33_c00051{bottom:443.200000pt;}
.y13_c00051{bottom:445.733333pt;}
.y32_c00051{bottom:459.066667pt;}
.y12_c00051{bottom:461.333333pt;}
.y31_c00051{bottom:475.600000pt;}
.y11_c00051{bottom:477.600000pt;}
.y30_c00051{bottom:491.466667pt;}
.y10_c00051{bottom:493.466667pt;}
.y2f_c00051{bottom:507.333333pt;}
.yf_c00051{bottom:509.066667pt;}
.y2e_c00051{bottom:523.466667pt;}
.ye_c00051{bottom:525.600000pt;}
.y2d_c00051{bottom:539.333333pt;}
.yd_c00051{bottom:542.000000pt;}
.y2c_c00051{bottom:555.333333pt;}
.yc_c00051{bottom:558.000000pt;}
.y2b_c00051{bottom:571.200000pt;}
.yb_c00051{bottom:573.866667pt;}
.y2a_c00051{bottom:587.333333pt;}
.ya_c00051{bottom:590.133333pt;}
.y29_c00051{bottom:603.200000pt;}
.y9_c00051{bottom:605.733333pt;}
.y28_c00051{bottom:619.200000pt;}
.y8_c00051{bottom:621.866667pt;}
.y27_c00051{bottom:634.533333pt;}
.y7_c00051{bottom:638.400000pt;}
.y26_c00051{bottom:651.600000pt;}
.y6_c00051{bottom:654.000000pt;}
.y25_c00051{bottom:667.200000pt;}
.y5_c00051{bottom:670.000000pt;}
.y2_c00051{bottom:670.533333pt;}
.y24_c00051{bottom:683.333333pt;}
.y1_c00051{bottom:686.400000pt;}
.y4_c00051{bottom:700.400000pt;}
.y3_c00051{bottom:718.800000pt;}
.ha_c00051{height:11.733399pt;}
.hb_c00051{height:38.937500pt;}
.h3_c00051{height:55.893333pt;}
.h7_c00051{height:56.906667pt;}
.h5_c00051{height:58.688000pt;}
.h8_c00051{height:59.752000pt;}
.h4_c00051{height:60.704000pt;}
.h6_c00051{height:62.421875pt;}
.h9_c00051{height:63.594667pt;}
.h2_c00051{height:97.813333pt;}
.h1_c00051{height:748.666667pt;}
.h0_c00051{height:748.800000pt;}
.w2_c00051{width:93.222667pt;}
.w1_c00051{width:502.000000pt;}
.w0_c00051{width:502.066667pt;}
.x0_c00051{left:0.000000pt;}
.x13_c00051{left:14.133333pt;}
.x12_c00051{left:16.000000pt;}
.x1_c00051{left:24.000000pt;}
.x11_c00051{left:73.466667pt;}
.x2_c00051{left:75.333333pt;}
.x5_c00051{left:76.266667pt;}
.x4_c00051{left:77.200000pt;}
.x6_c00051{left:78.800000pt;}
.x7_c00051{left:80.400000pt;}
.x8_c00051{left:82.133333pt;}
.x10_c00051{left:88.266667pt;}
.x3_c00051{left:118.266667pt;}
.x17_c00051{left:208.201538pt;}
.x15_c00051{left:266.400000pt;}
.x14_c00051{left:267.333333pt;}
.xf_c00051{left:269.466667pt;}
.xe_c00051{left:270.933333pt;}
.xd_c00051{left:272.400000pt;}
.xc_c00051{left:273.333333pt;}
.xb_c00051{left:274.400000pt;}
.xa_c00051{left:275.333333pt;}
.x9_c00051{left:276.533333pt;}
.x16_c00051{left:423.866667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e4093cf3e500a485bef786c8.woff2')format("woff");}.ff1_c00052{font-family:ff1_c00052;line-height:1.437000;font-style:normal;font-weight:normal;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_8c9cf399a0bb17c8b564e629.woff2')format("woff");}.ff2_c00052{font-family:ff2_c00052;line-height:1.437000;font-style:normal;font-weight:normal;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_6f5ebeb8d5854d236a8bc479.woff2')format("woff");}.ff3_c00052{font-family:ff3_c00052;line-height:1.437000;font-style:normal;font-weight:normal;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_9d5852b0c6c642c8ed19e936.woff2')format("woff");}.ff4_c00052{font-family:ff4_c00052;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00052;src:url('chunks/assets/font_158a0bfee40768e3e7c5c31e.woff2')format("woff");}.ff5_c00052{font-family:ff5_c00052;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00052;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff6_c00052{font-family:ff6_c00052;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00052{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00052{vertical-align:0.000000px;}
.v1_c00052{vertical-align:193.800000px;}
.ls4_c00052{letter-spacing:0.000000px;}
.ls0_c00052{letter-spacing:0.540000px;}
.ls2_c00052{letter-spacing:4.200000px;}
.ls1_c00052{letter-spacing:9.060000px;}
.ls3_c00052{letter-spacing:24.387000px;}
.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;}
}
.ws7_c00052{word-spacing:-79.818000px;}
.ws2_c00052{word-spacing:-50.022000px;}
.ws6_c00052{word-spacing:-25.095000px;}
.ws5_c00052{word-spacing:-17.340000px;}
.ws4_c00052{word-spacing:-15.060000px;}
.ws0_c00052{word-spacing:-14.160000px;}
.ws8_c00052{word-spacing:0.000000px;}
.ws1_c00052{word-spacing:4.800000px;}
.ws3_c00052{word-spacing:11.700000px;}
._28_c00052{margin-left:-64.980000px;}
._29_c00052{margin-left:-27.555000px;}
._27_c00052{margin-left:-19.860000px;}
._18_c00052{margin-left:-13.740000px;}
._26_c00052{margin-left:-12.285000px;}
._17_c00052{margin-left:-9.540000px;}
._22_c00052{margin-left:-6.480000px;}
._8_c00052{margin-left:-5.400000px;}
._7_c00052{margin-left:-4.380000px;}
._9_c00052{margin-left:-3.060000px;}
._f_c00052{margin-left:-1.080000px;}
._0_c00052{width:1.020000px;}
._a_c00052{width:2.340000px;}
._4_c00052{width:3.720000px;}
._3_c00052{width:4.860000px;}
._2_c00052{width:6.000000px;}
._b_c00052{width:7.140000px;}
._5_c00052{width:8.580000px;}
._12_c00052{width:10.380000px;}
._1c_c00052{width:11.400000px;}
._16_c00052{width:12.540000px;}
._6_c00052{width:13.620000px;}
._1_c00052{width:15.420000px;}
._e_c00052{width:17.400000px;}
._11_c00052{width:19.260000px;}
._c_c00052{width:20.880000px;}
._24_c00052{width:22.080000px;}
._15_c00052{width:23.520000px;}
._21_c00052{width:24.720000px;}
._d_c00052{width:25.800000px;}
._14_c00052{width:27.120000px;}
._25_c00052{width:28.560000px;}
._19_c00052{width:29.580000px;}
._10_c00052{width:30.660000px;}
._13_c00052{width:31.680000px;}
._1a_c00052{width:32.760000px;}
._1f_c00052{width:34.200000px;}
._1b_c00052{width:36.240000px;}
._20_c00052{width:39.000000px;}
._1e_c00052{width:40.020000px;}
._23_c00052{width:49.740000px;}
._1d_c00052{width:82.320000px;}
.fc2_c00052{color:transparent;}
.fc1_c00052{color:rgb(128,128,128);}
.fc0_c00052{color:rgb(0,0,0);}
.fs4_c00052{font-size:48.000000px;}
.fs0_c00052{font-size:60.000000px;}
.fs1_c00052{font-size:63.000000px;}
.fs2_c00052{font-size:105.000000px;}
.fs3_c00052{font-size:318.000000px;}
.y0_c00052{bottom:0.000000px;}
.y4c_c00052{bottom:3.105000px;}
.y4b_c00052{bottom:7.228371px;}
.y28_c00052{bottom:82.365000px;}
.y4a_c00052{bottom:99.915000px;}
.y27_c00052{bottom:101.265000px;}
.y26_c00052{bottom:118.515000px;}
.y49_c00052{bottom:135.465000px;}
.y25_c00052{bottom:136.665000px;}
.y48_c00052{bottom:153.915000px;}
.y24_c00052{bottom:154.665000px;}
.y47_c00052{bottom:171.465000px;}
.y23_c00052{bottom:172.515000px;}
.y46_c00052{bottom:189.465000px;}
.y22_c00052{bottom:190.665000px;}
.y45_c00052{bottom:207.615000px;}
.y21_c00052{bottom:208.215000px;}
.y42_c00052{bottom:212.565000px;}
.y44_c00052{bottom:225.165000px;}
.y20_c00052{bottom:226.815000px;}
.y43_c00052{bottom:243.015000px;}
.y1f_c00052{bottom:244.065000px;}
.y1e_c00052{bottom:262.965000px;}
.y1d_c00052{bottom:280.515000px;}
.y41_c00052{bottom:298.065000px;}
.y1c_c00052{bottom:298.365000px;}
.y1b_c00052{bottom:316.215000px;}
.y40_c00052{bottom:333.915000px;}
.y1a_c00052{bottom:334.515000px;}
.y3f_c00052{bottom:352.065000px;}
.y19_c00052{bottom:352.365000px;}
.y18_c00052{bottom:369.615000px;}
.y3e_c00052{bottom:370.365000px;}
.y17_c00052{bottom:388.215000px;}
.y3d_c00052{bottom:404.715000px;}
.y16_c00052{bottom:405.765000px;}
.y15_c00052{bottom:424.215000px;}
.y3c_c00052{bottom:440.565000px;}
.y14_c00052{bottom:441.465000px;}
.y3b_c00052{bottom:458.115000px;}
.y13_c00052{bottom:459.315000px;}
.y3a_c00052{bottom:475.665000px;}
.y12_c00052{bottom:476.265000px;}
.y39_c00052{bottom:493.815000px;}
.y11_c00052{bottom:494.115000px;}
.y38_c00052{bottom:511.665000px;}
.y10_c00052{bottom:512.115000px;}
.y37_c00052{bottom:528.615000px;}
.yf_c00052{bottom:530.265000px;}
.y36_c00052{bottom:547.215000px;}
.ye_c00052{bottom:547.815000px;}
.y35_c00052{bottom:565.065000px;}
.yd_c00052{bottom:565.665000px;}
.y34_c00052{bottom:582.915000px;}
.yc_c00052{bottom:583.665000px;}
.y33_c00052{bottom:601.215000px;}
.yb_c00052{bottom:601.515000px;}
.y32_c00052{bottom:618.765000px;}
.ya_c00052{bottom:619.815000px;}
.y31_c00052{bottom:636.915000px;}
.y9_c00052{bottom:637.665000px;}
.y30_c00052{bottom:654.465000px;}
.y8_c00052{bottom:655.515000px;}
.y2f_c00052{bottom:672.615000px;}
.y7_c00052{bottom:673.065000px;}
.y2e_c00052{bottom:689.865000px;}
.y6_c00052{bottom:690.915000px;}
.y2d_c00052{bottom:708.465000px;}
.y5_c00052{bottom:709.065000px;}
.y2c_c00052{bottom:726.615000px;}
.y4_c00052{bottom:727.065000px;}
.y2b_c00052{bottom:743.865000px;}
.y3_c00052{bottom:744.915000px;}
.y2a_c00052{bottom:762.465000px;}
.y2_c00052{bottom:763.215000px;}
.y29_c00052{bottom:780.315000px;}
.y1_c00052{bottom:781.365000px;}
.h7_c00052{height:13.200074px;}
.h8_c00052{height:43.804688px;}
.h2_c00052{height:62.880000px;}
.h3_c00052{height:64.020000px;}
.h4_c00052{height:66.024000px;}
.h5_c00052{height:110.040000px;}
.h6_c00052{height:333.264000px;}
.h0_c00052{height:828.375000px;}
.h1_c00052{height:828.750000px;}
.w2_c00052{width:104.875500px;}
.w1_c00052{width:564.000000px;}
.w0_c00052{width:564.300000px;}
.x0_c00052{left:0.000000px;}
.x4_c00052{left:67.200000px;}
.x3_c00052{left:68.550000px;}
.x1_c00052{left:69.750000px;}
.x2_c00052{left:70.800000px;}
.x10_c00052{left:233.964249px;}
.xe_c00052{left:282.750000px;}
.xf_c00052{left:283.800000px;}
.x6_c00052{left:285.150000px;}
.x5_c00052{left:286.500000px;}
.x7_c00052{left:307.500000px;}
.xb_c00052{left:324.600000px;}
.xc_c00052{left:340.650000px;}
.xd_c00052{left:367.500000px;}
.x9_c00052{left:373.050000px;}
.x8_c00052{left:383.700000px;}
.xa_c00052{left:392.100000px;}
@media print{
.v0_c00052{vertical-align:0.000000pt;}
.v1_c00052{vertical-align:172.266667pt;}
.ls4_c00052{letter-spacing:0.000000pt;}
.ls0_c00052{letter-spacing:0.480000pt;}
.ls2_c00052{letter-spacing:3.733333pt;}
.ls1_c00052{letter-spacing:8.053333pt;}
.ls3_c00052{letter-spacing:21.677333pt;}
.ws7_c00052{word-spacing:-70.949333pt;}
.ws2_c00052{word-spacing:-44.464000pt;}
.ws6_c00052{word-spacing:-22.306667pt;}
.ws5_c00052{word-spacing:-15.413333pt;}
.ws4_c00052{word-spacing:-13.386667pt;}
.ws0_c00052{word-spacing:-12.586667pt;}
.ws8_c00052{word-spacing:0.000000pt;}
.ws1_c00052{word-spacing:4.266667pt;}
.ws3_c00052{word-spacing:10.400000pt;}
._28_c00052{margin-left:-57.760000pt;}
._29_c00052{margin-left:-24.493333pt;}
._27_c00052{margin-left:-17.653333pt;}
._18_c00052{margin-left:-12.213333pt;}
._26_c00052{margin-left:-10.920000pt;}
._17_c00052{margin-left:-8.480000pt;}
._22_c00052{margin-left:-5.760000pt;}
._8_c00052{margin-left:-4.800000pt;}
._7_c00052{margin-left:-3.893333pt;}
._9_c00052{margin-left:-2.720000pt;}
._f_c00052{margin-left:-0.960000pt;}
._0_c00052{width:0.906667pt;}
._a_c00052{width:2.080000pt;}
._4_c00052{width:3.306667pt;}
._3_c00052{width:4.320000pt;}
._2_c00052{width:5.333333pt;}
._b_c00052{width:6.346667pt;}
._5_c00052{width:7.626667pt;}
._12_c00052{width:9.226667pt;}
._1c_c00052{width:10.133333pt;}
._16_c00052{width:11.146667pt;}
._6_c00052{width:12.106667pt;}
._1_c00052{width:13.706667pt;}
._e_c00052{width:15.466667pt;}
._11_c00052{width:17.120000pt;}
._c_c00052{width:18.560000pt;}
._24_c00052{width:19.626667pt;}
._15_c00052{width:20.906667pt;}
._21_c00052{width:21.973333pt;}
._d_c00052{width:22.933333pt;}
._14_c00052{width:24.106667pt;}
._25_c00052{width:25.386667pt;}
._19_c00052{width:26.293333pt;}
._10_c00052{width:27.253333pt;}
._13_c00052{width:28.160000pt;}
._1a_c00052{width:29.120000pt;}
._1f_c00052{width:30.400000pt;}
._1b_c00052{width:32.213333pt;}
._20_c00052{width:34.666667pt;}
._1e_c00052{width:35.573333pt;}
._23_c00052{width:44.213333pt;}
._1d_c00052{width:73.173333pt;}
.fs4_c00052{font-size:42.666667pt;}
.fs0_c00052{font-size:53.333333pt;}
.fs1_c00052{font-size:56.000000pt;}
.fs2_c00052{font-size:93.333333pt;}
.fs3_c00052{font-size:282.666667pt;}
.y0_c00052{bottom:0.000000pt;}
.y4c_c00052{bottom:2.760000pt;}
.y4b_c00052{bottom:6.425219pt;}
.y28_c00052{bottom:73.213333pt;}
.y4a_c00052{bottom:88.813333pt;}
.y27_c00052{bottom:90.013333pt;}
.y26_c00052{bottom:105.346667pt;}
.y49_c00052{bottom:120.413333pt;}
.y25_c00052{bottom:121.480000pt;}
.y48_c00052{bottom:136.813333pt;}
.y24_c00052{bottom:137.480000pt;}
.y47_c00052{bottom:152.413333pt;}
.y23_c00052{bottom:153.346667pt;}
.y46_c00052{bottom:168.413333pt;}
.y22_c00052{bottom:169.480000pt;}
.y45_c00052{bottom:184.546667pt;}
.y21_c00052{bottom:185.080000pt;}
.y42_c00052{bottom:188.946667pt;}
.y44_c00052{bottom:200.146667pt;}
.y20_c00052{bottom:201.613333pt;}
.y43_c00052{bottom:216.013333pt;}
.y1f_c00052{bottom:216.946667pt;}
.y1e_c00052{bottom:233.746667pt;}
.y1d_c00052{bottom:249.346667pt;}
.y41_c00052{bottom:264.946667pt;}
.y1c_c00052{bottom:265.213333pt;}
.y1b_c00052{bottom:281.080000pt;}
.y40_c00052{bottom:296.813333pt;}
.y1a_c00052{bottom:297.346667pt;}
.y3f_c00052{bottom:312.946667pt;}
.y19_c00052{bottom:313.213333pt;}
.y18_c00052{bottom:328.546667pt;}
.y3e_c00052{bottom:329.213333pt;}
.y17_c00052{bottom:345.080000pt;}
.y3d_c00052{bottom:359.746667pt;}
.y16_c00052{bottom:360.680000pt;}
.y15_c00052{bottom:377.080000pt;}
.y3c_c00052{bottom:391.613333pt;}
.y14_c00052{bottom:392.413333pt;}
.y3b_c00052{bottom:407.213333pt;}
.y13_c00052{bottom:408.280000pt;}
.y3a_c00052{bottom:422.813333pt;}
.y12_c00052{bottom:423.346667pt;}
.y39_c00052{bottom:438.946667pt;}
.y11_c00052{bottom:439.213333pt;}
.y38_c00052{bottom:454.813333pt;}
.y10_c00052{bottom:455.213333pt;}
.y37_c00052{bottom:469.880000pt;}
.yf_c00052{bottom:471.346667pt;}
.y36_c00052{bottom:486.413333pt;}
.ye_c00052{bottom:486.946667pt;}
.y35_c00052{bottom:502.280000pt;}
.yd_c00052{bottom:502.813333pt;}
.y34_c00052{bottom:518.146667pt;}
.yc_c00052{bottom:518.813333pt;}
.y33_c00052{bottom:534.413333pt;}
.yb_c00052{bottom:534.680000pt;}
.y32_c00052{bottom:550.013333pt;}
.ya_c00052{bottom:550.946667pt;}
.y31_c00052{bottom:566.146667pt;}
.y9_c00052{bottom:566.813333pt;}
.y30_c00052{bottom:581.746667pt;}
.y8_c00052{bottom:582.680000pt;}
.y2f_c00052{bottom:597.880000pt;}
.y7_c00052{bottom:598.280000pt;}
.y2e_c00052{bottom:613.213333pt;}
.y6_c00052{bottom:614.146667pt;}
.y2d_c00052{bottom:629.746667pt;}
.y5_c00052{bottom:630.280000pt;}
.y2c_c00052{bottom:645.880000pt;}
.y4_c00052{bottom:646.280000pt;}
.y2b_c00052{bottom:661.213333pt;}
.y3_c00052{bottom:662.146667pt;}
.y2a_c00052{bottom:677.746667pt;}
.y2_c00052{bottom:678.413333pt;}
.y29_c00052{bottom:693.613333pt;}
.y1_c00052{bottom:694.546667pt;}
.h7_c00052{height:11.733399pt;}
.h8_c00052{height:38.937500pt;}
.h2_c00052{height:55.893333pt;}
.h3_c00052{height:56.906667pt;}
.h4_c00052{height:58.688000pt;}
.h5_c00052{height:97.813333pt;}
.h6_c00052{height:296.234667pt;}
.h0_c00052{height:736.333333pt;}
.h1_c00052{height:736.666667pt;}
.w2_c00052{width:93.222667pt;}
.w1_c00052{width:501.333333pt;}
.w0_c00052{width:501.600000pt;}
.x0_c00052{left:0.000000pt;}
.x4_c00052{left:59.733333pt;}
.x3_c00052{left:60.933333pt;}
.x1_c00052{left:62.000000pt;}
.x2_c00052{left:62.933333pt;}
.x10_c00052{left:207.968221pt;}
.xe_c00052{left:251.333333pt;}
.xf_c00052{left:252.266667pt;}
.x6_c00052{left:253.466667pt;}
.x5_c00052{left:254.666667pt;}
.x7_c00052{left:273.333333pt;}
.xb_c00052{left:288.533333pt;}
.xc_c00052{left:302.800000pt;}
.xd_c00052{left:326.666667pt;}
.x9_c00052{left:331.600000pt;}
.x8_c00052{left:341.066667pt;}
.xa_c00052{left:348.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f85fa9a6f8068001b3114c2a.woff2')format("woff");}.ff1_c00053{font-family:ff1_c00053;line-height:1.437000;font-style:normal;font-weight:normal;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_4a513737862918ebf9121e53.woff2')format("woff");}.ff2_c00053{font-family:ff2_c00053;line-height:1.437000;font-style:normal;font-weight:normal;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_52c9e16271e6eaeeccde6e30.woff2')format("woff");}.ff3_c00053{font-family:ff3_c00053;line-height:1.437000;font-style:normal;font-weight:normal;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_08b3960a1522954a34c083d7.woff2')format("woff");}.ff4_c00053{font-family:ff4_c00053;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00053;src:url('chunks/assets/font_82c60cf842e6ca9db0ebafe2.woff2')format("woff");}.ff5_c00053{font-family:ff5_c00053;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00053;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff6_c00053{font-family:ff6_c00053;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00053{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00053{vertical-align:0.000000px;}
.ls5_c00053{letter-spacing:-6.000000px;}
.ls3_c00053{letter-spacing:0.000000px;}
.ls1_c00053{letter-spacing:6.000000px;}
.ls0_c00053{letter-spacing:7.800000px;}
.ls2_c00053{letter-spacing:11.460000px;}
.ls6_c00053{letter-spacing:15.000000px;}
.ls4_c00053{letter-spacing:18.000000px;}
.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:-33.813000px;}
.ws1_c00053{word-spacing:-31.746000px;}
.ws4_c00053{word-spacing:-20.340000px;}
.ws5_c00053{word-spacing:-17.319000px;}
.ws2_c00053{word-spacing:-14.160000px;}
.ws3_c00053{word-spacing:-8.868000px;}
.ws6_c00053{word-spacing:0.000000px;}
._26_c00053{margin-left:-19.122000px;}
._22_c00053{margin-left:-15.345000px;}
._29_c00053{margin-left:-13.599000px;}
._19_c00053{margin-left:-9.987000px;}
._12_c00053{margin-left:-8.907000px;}
._1e_c00053{margin-left:-7.080000px;}
._13_c00053{margin-left:-5.160000px;}
._a_c00053{margin-left:-4.053000px;}
._11_c00053{margin-left:-2.184000px;}
._15_c00053{margin-left:-1.125000px;}
._7_c00053{width:1.374000px;}
._4_c00053{width:2.469000px;}
._5_c00053{width:3.552000px;}
._2_c00053{width:4.788000px;}
._3_c00053{width:6.111000px;}
._0_c00053{width:7.560000px;}
._6_c00053{width:8.640000px;}
._9_c00053{width:10.440000px;}
._1b_c00053{width:12.147000px;}
._8_c00053{width:13.566000px;}
._25_c00053{width:15.486000px;}
._b_c00053{width:17.376000px;}
._c_c00053{width:18.429000px;}
._1a_c00053{width:19.977000px;}
._20_c00053{width:21.840000px;}
._e_c00053{width:23.658000px;}
._d_c00053{width:24.729000px;}
._1d_c00053{width:26.385000px;}
._1f_c00053{width:27.594000px;}
._2a_c00053{width:28.746000px;}
._1c_c00053{width:29.904000px;}
._27_c00053{width:32.100000px;}
._21_c00053{width:33.291000px;}
._24_c00053{width:35.400000px;}
._2b_c00053{width:39.021000px;}
._f_c00053{width:40.839000px;}
._2c_c00053{width:43.881000px;}
._18_c00053{width:48.507000px;}
._23_c00053{width:54.381000px;}
._17_c00053{width:57.600000px;}
._14_c00053{width:70.860000px;}
._28_c00053{width:91.653000px;}
._16_c00053{width:185.640000px;}
._10_c00053{width:286.014000px;}
._1_c00053{width:349.203000px;}
.fc2_c00053{color:transparent;}
.fc1_c00053{color:rgb(128,128,128);}
.fc0_c00053{color:rgb(0,0,0);}
.fs4_c00053{font-size:48.000000px;}
.fs1_c00053{font-size:60.000000px;}
.fs0_c00053{font-size:63.000000px;}
.fs2_c00053{font-size:66.000000px;}
.fs3_c00053{font-size:69.000000px;}
.y0_c00053{bottom:0.000000px;}
.y50_c00053{bottom:3.105000px;}
.y4f_c00053{bottom:7.228363px;}
.y4e_c00053{bottom:45.450000px;}
.y2a_c00053{bottom:62.400000px;}
.y4d_c00053{bottom:62.700000px;}
.y29_c00053{bottom:81.300000px;}
.y28_c00053{bottom:99.150000px;}
.y4c_c00053{bottom:100.200000px;}
.y4b_c00053{bottom:117.900000px;}
.y27_c00053{bottom:118.050000px;}
.y26_c00053{bottom:135.600000px;}
.y4a_c00053{bottom:136.050000px;}
.y25_c00053{bottom:153.600000px;}
.y49_c00053{bottom:154.200000px;}
.y24_c00053{bottom:171.750000px;}
.y23_c00053{bottom:189.900000px;}
.y48_c00053{bottom:190.050000px;}
.y22_c00053{bottom:207.900000px;}
.y47_c00053{bottom:208.200000px;}
.y21_c00053{bottom:226.350000px;}
.y46_c00053{bottom:226.500000px;}
.y20_c00053{bottom:244.350000px;}
.y1f_c00053{bottom:261.900000px;}
.y45_c00053{bottom:262.200000px;}
.y44_c00053{bottom:280.050000px;}
.y1e_c00053{bottom:280.350000px;}
.y1d_c00053{bottom:297.600000px;}
.y43_c00053{bottom:298.350000px;}
.y1c_c00053{bottom:315.900000px;}
.y42_c00053{bottom:333.750000px;}
.y1b_c00053{bottom:334.050000px;}
.y41_c00053{bottom:351.300000px;}
.y1a_c00053{bottom:351.900000px;}
.y40_c00053{bottom:369.150000px;}
.y19_c00053{bottom:369.900000px;}
.y18_c00053{bottom:387.750000px;}
.y17_c00053{bottom:405.600000px;}
.y3f_c00053{bottom:405.900000px;}
.y16_c00053{bottom:423.600000px;}
.y3e_c00053{bottom:424.200000px;}
.y15_c00053{bottom:441.450000px;}
.y3d_c00053{bottom:441.750000px;}
.y14_c00053{bottom:459.600000px;}
.y3c_c00053{bottom:459.900000px;}
.y13_c00053{bottom:477.600000px;}
.y3b_c00053{bottom:495.750000px;}
.y12_c00053{bottom:495.900000px;}
.y11_c00053{bottom:513.900000px;}
.y10_c00053{bottom:531.900000px;}
.y3a_c00053{bottom:532.950000px;}
.yf_c00053{bottom:550.050000px;}
.y39_c00053{bottom:550.350000px;}
.ye_c00053{bottom:568.050000px;}
.y38_c00053{bottom:569.250000px;}
.yd_c00053{bottom:585.900000px;}
.y37_c00053{bottom:587.550000px;}
.yc_c00053{bottom:604.350000px;}
.y36_c00053{bottom:604.800000px;}
.yb_c00053{bottom:622.050000px;}
.y35_c00053{bottom:622.950000px;}
.ya_c00053{bottom:640.500000px;}
.y34_c00053{bottom:640.950000px;}
.y9_c00053{bottom:657.750000px;}
.y33_c00053{bottom:658.500000px;}
.y8_c00053{bottom:675.300000px;}
.y32_c00053{bottom:676.800000px;}
.y7_c00053{bottom:693.600000px;}
.y31_c00053{bottom:694.350000px;}
.y6_c00053{bottom:711.150000px;}
.y30_c00053{bottom:711.900000px;}
.y5_c00053{bottom:729.600000px;}
.y2f_c00053{bottom:730.350000px;}
.y4_c00053{bottom:747.600000px;}
.y2e_c00053{bottom:748.200000px;}
.y3_c00053{bottom:765.150000px;}
.y2d_c00053{bottom:766.500000px;}
.y2_c00053{bottom:783.450000px;}
.y2c_c00053{bottom:784.650000px;}
.y1_c00053{bottom:803.550000px;}
.y2b_c00053{bottom:804.300000px;}
.h7_c00053{height:13.200074px;}
.h8_c00053{height:43.804688px;}
.h3_c00053{height:62.880000px;}
.h2_c00053{height:66.024000px;}
.h5_c00053{height:70.422000px;}
.h4_c00053{height:71.544000px;}
.h6_c00053{height:72.312000px;}
.h1_c00053{height:842.250000px;}
.h0_c00053{height:842.400000px;}
.w2_c00053{width:104.875500px;}
.w1_c00053{width:564.750000px;}
.w0_c00053{width:564.825000px;}
.x0_c00053{left:0.000000px;}
.x5_c00053{left:20.550000px;}
.x4_c00053{left:21.900000px;}
.x3_c00053{left:25.950000px;}
.x1_c00053{left:80.700000px;}
.x9_c00053{left:82.350000px;}
.x2_c00053{left:83.700000px;}
.x6_c00053{left:84.750000px;}
.x7_c00053{left:86.700000px;}
.xa_c00053{left:87.750000px;}
.xb_c00053{left:89.400000px;}
.x8_c00053{left:148.200000px;}
.x14_c00053{left:234.226730px;}
.xd_c00053{left:297.450000px;}
.xe_c00053{left:298.800000px;}
.xf_c00053{left:300.000000px;}
.x10_c00053{left:301.350000px;}
.x11_c00053{left:302.400000px;}
.x12_c00053{left:303.450000px;}
.xc_c00053{left:306.150000px;}
.x13_c00053{left:461.400000px;}
@media print{
.v0_c00053{vertical-align:0.000000pt;}
.ls5_c00053{letter-spacing:-5.333333pt;}
.ls3_c00053{letter-spacing:0.000000pt;}
.ls1_c00053{letter-spacing:5.333333pt;}
.ls0_c00053{letter-spacing:6.933333pt;}
.ls2_c00053{letter-spacing:10.186667pt;}
.ls6_c00053{letter-spacing:13.333333pt;}
.ls4_c00053{letter-spacing:16.000000pt;}
.ws0_c00053{word-spacing:-30.056000pt;}
.ws1_c00053{word-spacing:-28.218667pt;}
.ws4_c00053{word-spacing:-18.080000pt;}
.ws5_c00053{word-spacing:-15.394667pt;}
.ws2_c00053{word-spacing:-12.586667pt;}
.ws3_c00053{word-spacing:-7.882667pt;}
.ws6_c00053{word-spacing:0.000000pt;}
._26_c00053{margin-left:-16.997333pt;}
._22_c00053{margin-left:-13.640000pt;}
._29_c00053{margin-left:-12.088000pt;}
._19_c00053{margin-left:-8.877333pt;}
._12_c00053{margin-left:-7.917333pt;}
._1e_c00053{margin-left:-6.293333pt;}
._13_c00053{margin-left:-4.586667pt;}
._a_c00053{margin-left:-3.602667pt;}
._11_c00053{margin-left:-1.941333pt;}
._15_c00053{margin-left:-1.000000pt;}
._7_c00053{width:1.221333pt;}
._4_c00053{width:2.194667pt;}
._5_c00053{width:3.157333pt;}
._2_c00053{width:4.256000pt;}
._3_c00053{width:5.432000pt;}
._0_c00053{width:6.720000pt;}
._6_c00053{width:7.680000pt;}
._9_c00053{width:9.280000pt;}
._1b_c00053{width:10.797333pt;}
._8_c00053{width:12.058667pt;}
._25_c00053{width:13.765333pt;}
._b_c00053{width:15.445333pt;}
._c_c00053{width:16.381333pt;}
._1a_c00053{width:17.757333pt;}
._20_c00053{width:19.413333pt;}
._e_c00053{width:21.029333pt;}
._d_c00053{width:21.981333pt;}
._1d_c00053{width:23.453333pt;}
._1f_c00053{width:24.528000pt;}
._2a_c00053{width:25.552000pt;}
._1c_c00053{width:26.581333pt;}
._27_c00053{width:28.533333pt;}
._21_c00053{width:29.592000pt;}
._24_c00053{width:31.466667pt;}
._2b_c00053{width:34.685333pt;}
._f_c00053{width:36.301333pt;}
._2c_c00053{width:39.005333pt;}
._18_c00053{width:43.117333pt;}
._23_c00053{width:48.338667pt;}
._17_c00053{width:51.200000pt;}
._14_c00053{width:62.986667pt;}
._28_c00053{width:81.469333pt;}
._16_c00053{width:165.013333pt;}
._10_c00053{width:254.234667pt;}
._1_c00053{width:310.402667pt;}
.fs4_c00053{font-size:42.666667pt;}
.fs1_c00053{font-size:53.333333pt;}
.fs0_c00053{font-size:56.000000pt;}
.fs2_c00053{font-size:58.666667pt;}
.fs3_c00053{font-size:61.333333pt;}
.y0_c00053{bottom:0.000000pt;}
.y50_c00053{bottom:2.760000pt;}
.y4f_c00053{bottom:6.425212pt;}
.y4e_c00053{bottom:40.400000pt;}
.y2a_c00053{bottom:55.466667pt;}
.y4d_c00053{bottom:55.733333pt;}
.y29_c00053{bottom:72.266667pt;}
.y28_c00053{bottom:88.133333pt;}
.y4c_c00053{bottom:89.066667pt;}
.y4b_c00053{bottom:104.800000pt;}
.y27_c00053{bottom:104.933333pt;}
.y26_c00053{bottom:120.533333pt;}
.y4a_c00053{bottom:120.933333pt;}
.y25_c00053{bottom:136.533333pt;}
.y49_c00053{bottom:137.066667pt;}
.y24_c00053{bottom:152.666667pt;}
.y23_c00053{bottom:168.800000pt;}
.y48_c00053{bottom:168.933333pt;}
.y22_c00053{bottom:184.800000pt;}
.y47_c00053{bottom:185.066667pt;}
.y21_c00053{bottom:201.200000pt;}
.y46_c00053{bottom:201.333333pt;}
.y20_c00053{bottom:217.200000pt;}
.y1f_c00053{bottom:232.800000pt;}
.y45_c00053{bottom:233.066667pt;}
.y44_c00053{bottom:248.933333pt;}
.y1e_c00053{bottom:249.200000pt;}
.y1d_c00053{bottom:264.533333pt;}
.y43_c00053{bottom:265.200000pt;}
.y1c_c00053{bottom:280.800000pt;}
.y42_c00053{bottom:296.666667pt;}
.y1b_c00053{bottom:296.933333pt;}
.y41_c00053{bottom:312.266667pt;}
.y1a_c00053{bottom:312.800000pt;}
.y40_c00053{bottom:328.133333pt;}
.y19_c00053{bottom:328.800000pt;}
.y18_c00053{bottom:344.666667pt;}
.y17_c00053{bottom:360.533333pt;}
.y3f_c00053{bottom:360.800000pt;}
.y16_c00053{bottom:376.533333pt;}
.y3e_c00053{bottom:377.066667pt;}
.y15_c00053{bottom:392.400000pt;}
.y3d_c00053{bottom:392.666667pt;}
.y14_c00053{bottom:408.533333pt;}
.y3c_c00053{bottom:408.800000pt;}
.y13_c00053{bottom:424.533333pt;}
.y3b_c00053{bottom:440.666667pt;}
.y12_c00053{bottom:440.800000pt;}
.y11_c00053{bottom:456.800000pt;}
.y10_c00053{bottom:472.800000pt;}
.y3a_c00053{bottom:473.733333pt;}
.yf_c00053{bottom:488.933333pt;}
.y39_c00053{bottom:489.200000pt;}
.ye_c00053{bottom:504.933333pt;}
.y38_c00053{bottom:506.000000pt;}
.yd_c00053{bottom:520.800000pt;}
.y37_c00053{bottom:522.266667pt;}
.yc_c00053{bottom:537.200000pt;}
.y36_c00053{bottom:537.600000pt;}
.yb_c00053{bottom:552.933333pt;}
.y35_c00053{bottom:553.733333pt;}
.ya_c00053{bottom:569.333333pt;}
.y34_c00053{bottom:569.733333pt;}
.y9_c00053{bottom:584.666667pt;}
.y33_c00053{bottom:585.333333pt;}
.y8_c00053{bottom:600.266667pt;}
.y32_c00053{bottom:601.600000pt;}
.y7_c00053{bottom:616.533333pt;}
.y31_c00053{bottom:617.200000pt;}
.y6_c00053{bottom:632.133333pt;}
.y30_c00053{bottom:632.800000pt;}
.y5_c00053{bottom:648.533333pt;}
.y2f_c00053{bottom:649.200000pt;}
.y4_c00053{bottom:664.533333pt;}
.y2e_c00053{bottom:665.066667pt;}
.y3_c00053{bottom:680.133333pt;}
.y2d_c00053{bottom:681.333333pt;}
.y2_c00053{bottom:696.400000pt;}
.y2c_c00053{bottom:697.466667pt;}
.y1_c00053{bottom:714.266667pt;}
.y2b_c00053{bottom:714.933333pt;}
.h7_c00053{height:11.733399pt;}
.h8_c00053{height:38.937500pt;}
.h3_c00053{height:55.893333pt;}
.h2_c00053{height:58.688000pt;}
.h5_c00053{height:62.597333pt;}
.h4_c00053{height:63.594667pt;}
.h6_c00053{height:64.277333pt;}
.h1_c00053{height:748.666667pt;}
.h0_c00053{height:748.800000pt;}
.w2_c00053{width:93.222667pt;}
.w1_c00053{width:502.000000pt;}
.w0_c00053{width:502.066667pt;}
.x0_c00053{left:0.000000pt;}
.x5_c00053{left:18.266667pt;}
.x4_c00053{left:19.466667pt;}
.x3_c00053{left:23.066667pt;}
.x1_c00053{left:71.733333pt;}
.x9_c00053{left:73.200000pt;}
.x2_c00053{left:74.400000pt;}
.x6_c00053{left:75.333333pt;}
.x7_c00053{left:77.066667pt;}
.xa_c00053{left:78.000000pt;}
.xb_c00053{left:79.466667pt;}
.x8_c00053{left:131.733333pt;}
.x14_c00053{left:208.201538pt;}
.xd_c00053{left:264.400000pt;}
.xe_c00053{left:265.600000pt;}
.xf_c00053{left:266.666667pt;}
.x10_c00053{left:267.866667pt;}
.x11_c00053{left:268.800000pt;}
.x12_c00053{left:269.733333pt;}
.xc_c00053{left:272.133333pt;}
.x13_c00053{left:410.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f24c3388151b6419c27fc88f.woff2')format("woff");}.ff1_c00054{font-family:ff1_c00054;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00054;src:url('chunks/assets/font_658f18c433f94d7d3133723d.woff2')format("woff");}.ff2_c00054{font-family:ff2_c00054;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00054;src:url('chunks/assets/font_a89f1f53e6237aa407d28615.woff2')format("woff");}.ff3_c00054{font-family:ff3_c00054;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00054;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff4_c00054{font-family:ff4_c00054;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00054{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00054{vertical-align:0.000000px;}
.ls3_c00054{letter-spacing:-6.000000px;}
.ls2_c00054{letter-spacing:0.000000px;}
.ls1_c00054{letter-spacing:1.605000px;}
.ls0_c00054{letter-spacing:20.805000px;}
.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:-14.160000px;}
.ws1_c00054{word-spacing:-8.160000px;}
.ws2_c00054{word-spacing:0.000000px;}
._39_c00054{margin-left:-20.820000px;}
._0_c00054{margin-left:-17.280000px;}
._34_c00054{margin-left:-13.380000px;}
._36_c00054{margin-left:-11.880000px;}
._24_c00054{margin-left:-10.260000px;}
._1f_c00054{margin-left:-7.980000px;}
._2c_c00054{margin-left:-6.840000px;}
._1e_c00054{margin-left:-5.820000px;}
._e_c00054{margin-left:-3.840000px;}
._1b_c00054{margin-left:-2.520000px;}
._16_c00054{margin-left:-1.200000px;}
._f_c00054{width:1.560000px;}
._d_c00054{width:3.120000px;}
._c_c00054{width:4.440000px;}
._b_c00054{width:5.520000px;}
._8_c00054{width:7.380000px;}
._19_c00054{width:8.460000px;}
._5_c00054{width:9.900000px;}
._12_c00054{width:11.100000px;}
._10_c00054{width:13.140000px;}
._9_c00054{width:16.080000px;}
._13_c00054{width:17.460000px;}
._2_c00054{width:18.840000px;}
._7_c00054{width:19.860000px;}
._2b_c00054{width:21.600000px;}
._4_c00054{width:22.680000px;}
._17_c00054{width:25.080000px;}
._6_c00054{width:26.400000px;}
._32_c00054{width:28.560000px;}
._2e_c00054{width:29.580000px;}
._18_c00054{width:31.380000px;}
._2d_c00054{width:32.760000px;}
._1d_c00054{width:33.840000px;}
._22_c00054{width:35.460000px;}
._25_c00054{width:37.260000px;}
._3_c00054{width:38.520000px;}
._23_c00054{width:39.540000px;}
._20_c00054{width:40.620000px;}
._11_c00054{width:43.680000px;}
._2f_c00054{width:44.700000px;}
._14_c00054{width:47.220000px;}
._1_c00054{width:48.540000px;}
._3a_c00054{width:49.560000px;}
._27_c00054{width:50.880000px;}
._1a_c00054{width:52.200000px;}
._15_c00054{width:53.400000px;}
._31_c00054{width:55.680000px;}
._33_c00054{width:61.080000px;}
._38_c00054{width:105.900000px;}
._26_c00054{width:133.860000px;}
._30_c00054{width:135.420000px;}
._28_c00054{width:156.480000px;}
._21_c00054{width:160.680000px;}
._35_c00054{width:195.300000px;}
._37_c00054{width:207.240000px;}
._29_c00054{width:305.100000px;}
._2a_c00054{width:315.000000px;}
._1c_c00054{width:332.340000px;}
._a_c00054{width:446.040000px;}
.fc2_c00054{color:transparent;}
.fc1_c00054{color:rgb(128,128,128);}
.fc0_c00054{color:rgb(0,0,0);}
.fs1_c00054{font-size:45.000000px;}
.fs2_c00054{font-size:48.000000px;}
.fs0_c00054{font-size:60.000000px;}
.y0_c00054{bottom:0.000000px;}
.y2d_c00054{bottom:3.105000px;}
.y2c_c00054{bottom:7.228355px;}
.y2b_c00054{bottom:46.485000px;}
.y2a_c00054{bottom:63.735000px;}
.y29_c00054{bottom:82.935000px;}
.y28_c00054{bottom:99.885000px;}
.y27_c00054{bottom:118.035000px;}
.y26_c00054{bottom:135.885000px;}
.y25_c00054{bottom:153.585000px;}
.y24_c00054{bottom:172.035000px;}
.y23_c00054{bottom:189.885000px;}
.y22_c00054{bottom:207.885000px;}
.y21_c00054{bottom:225.135000px;}
.y20_c00054{bottom:243.585000px;}
.y1f_c00054{bottom:261.585000px;}
.y1e_c00054{bottom:280.035000px;}
.y1d_c00054{bottom:296.985000px;}
.y1c_c00054{bottom:315.585000px;}
.y1b_c00054{bottom:332.985000px;}
.y1a_c00054{bottom:350.685000px;}
.y19_c00054{bottom:368.535000px;}
.y18_c00054{bottom:387.435000px;}
.y17_c00054{bottom:404.985000px;}
.y16_c00054{bottom:422.235000px;}
.y15_c00054{bottom:440.685000px;}
.y14_c00054{bottom:458.235000px;}
.y13_c00054{bottom:476.235000px;}
.y12_c00054{bottom:494.085000px;}
.y11_c00054{bottom:511.935000px;}
.y10_c00054{bottom:529.335000px;}
.yf_c00054{bottom:547.635000px;}
.ye_c00054{bottom:565.935000px;}
.yd_c00054{bottom:583.485000px;}
.yc_c00054{bottom:601.335000px;}
.yb_c00054{bottom:619.635000px;}
.ya_c00054{bottom:637.485000px;}
.y9_c00054{bottom:655.785000px;}
.y8_c00054{bottom:673.635000px;}
.y7_c00054{bottom:691.785000px;}
.y6_c00054{bottom:709.035000px;}
.y5_c00054{bottom:727.185000px;}
.y4_c00054{bottom:745.485000px;}
.y3_c00054{bottom:762.735000px;}
.y2_c00054{bottom:781.185000px;}
.y1_c00054{bottom:802.185000px;}
.h3_c00054{height:13.200074px;}
.h4_c00054{height:43.804688px;}
.h2_c00054{height:62.880000px;}
.h0_c00054{height:836.175000px;}
.h1_c00054{height:836.250000px;}
.w2_c00054{width:104.875500px;}
.w0_c00054{width:575.925000px;}
.w1_c00054{width:576.000000px;}
.x0_c00054{left:0.000000px;}
.xb_c00054{left:18.900000px;}
.xc_c00054{left:19.950000px;}
.x8_c00054{left:21.900000px;}
.xd_c00054{left:42.600000px;}
.x4_c00054{left:76.500000px;}
.x6_c00054{left:77.700000px;}
.x7_c00054{left:79.950000px;}
.x5_c00054{left:81.600000px;}
.x3_c00054{left:82.950000px;}
.x2_c00054{left:85.350000px;}
.x9_c00054{left:100.050000px;}
.xa_c00054{left:103.950000px;}
.x1_c00054{left:184.950000px;}
.xf_c00054{left:239.776749px;}
.xe_c00054{left:451.650000px;}
@media print{
.v0_c00054{vertical-align:0.000000pt;}
.ls3_c00054{letter-spacing:-5.333333pt;}
.ls2_c00054{letter-spacing:0.000000pt;}
.ls1_c00054{letter-spacing:1.426667pt;}
.ls0_c00054{letter-spacing:18.493333pt;}
.ws0_c00054{word-spacing:-12.586667pt;}
.ws1_c00054{word-spacing:-7.253333pt;}
.ws2_c00054{word-spacing:0.000000pt;}
._39_c00054{margin-left:-18.506667pt;}
._0_c00054{margin-left:-15.360000pt;}
._34_c00054{margin-left:-11.893333pt;}
._36_c00054{margin-left:-10.560000pt;}
._24_c00054{margin-left:-9.120000pt;}
._1f_c00054{margin-left:-7.093333pt;}
._2c_c00054{margin-left:-6.080000pt;}
._1e_c00054{margin-left:-5.173333pt;}
._e_c00054{margin-left:-3.413333pt;}
._1b_c00054{margin-left:-2.240000pt;}
._16_c00054{margin-left:-1.066667pt;}
._f_c00054{width:1.386667pt;}
._d_c00054{width:2.773333pt;}
._c_c00054{width:3.946667pt;}
._b_c00054{width:4.906667pt;}
._8_c00054{width:6.560000pt;}
._19_c00054{width:7.520000pt;}
._5_c00054{width:8.800000pt;}
._12_c00054{width:9.866667pt;}
._10_c00054{width:11.680000pt;}
._9_c00054{width:14.293333pt;}
._13_c00054{width:15.520000pt;}
._2_c00054{width:16.746667pt;}
._7_c00054{width:17.653333pt;}
._2b_c00054{width:19.200000pt;}
._4_c00054{width:20.160000pt;}
._17_c00054{width:22.293333pt;}
._6_c00054{width:23.466667pt;}
._32_c00054{width:25.386667pt;}
._2e_c00054{width:26.293333pt;}
._18_c00054{width:27.893333pt;}
._2d_c00054{width:29.120000pt;}
._1d_c00054{width:30.080000pt;}
._22_c00054{width:31.520000pt;}
._25_c00054{width:33.120000pt;}
._3_c00054{width:34.240000pt;}
._23_c00054{width:35.146667pt;}
._20_c00054{width:36.106667pt;}
._11_c00054{width:38.826667pt;}
._2f_c00054{width:39.733333pt;}
._14_c00054{width:41.973333pt;}
._1_c00054{width:43.146667pt;}
._3a_c00054{width:44.053333pt;}
._27_c00054{width:45.226667pt;}
._1a_c00054{width:46.400000pt;}
._15_c00054{width:47.466667pt;}
._31_c00054{width:49.493333pt;}
._33_c00054{width:54.293333pt;}
._38_c00054{width:94.133333pt;}
._26_c00054{width:118.986667pt;}
._30_c00054{width:120.373333pt;}
._28_c00054{width:139.093333pt;}
._21_c00054{width:142.826667pt;}
._35_c00054{width:173.600000pt;}
._37_c00054{width:184.213333pt;}
._29_c00054{width:271.200000pt;}
._2a_c00054{width:280.000000pt;}
._1c_c00054{width:295.413333pt;}
._a_c00054{width:396.480000pt;}
.fs1_c00054{font-size:40.000000pt;}
.fs2_c00054{font-size:42.666667pt;}
.fs0_c00054{font-size:53.333333pt;}
.y0_c00054{bottom:0.000000pt;}
.y2d_c00054{bottom:2.760000pt;}
.y2c_c00054{bottom:6.425204pt;}
.y2b_c00054{bottom:41.320000pt;}
.y2a_c00054{bottom:56.653333pt;}
.y29_c00054{bottom:73.720000pt;}
.y28_c00054{bottom:88.786667pt;}
.y27_c00054{bottom:104.920000pt;}
.y26_c00054{bottom:120.786667pt;}
.y25_c00054{bottom:136.520000pt;}
.y24_c00054{bottom:152.920000pt;}
.y23_c00054{bottom:168.786667pt;}
.y22_c00054{bottom:184.786667pt;}
.y21_c00054{bottom:200.120000pt;}
.y20_c00054{bottom:216.520000pt;}
.y1f_c00054{bottom:232.520000pt;}
.y1e_c00054{bottom:248.920000pt;}
.y1d_c00054{bottom:263.986667pt;}
.y1c_c00054{bottom:280.520000pt;}
.y1b_c00054{bottom:295.986667pt;}
.y1a_c00054{bottom:311.720000pt;}
.y19_c00054{bottom:327.586667pt;}
.y18_c00054{bottom:344.386667pt;}
.y17_c00054{bottom:359.986667pt;}
.y16_c00054{bottom:375.320000pt;}
.y15_c00054{bottom:391.720000pt;}
.y14_c00054{bottom:407.320000pt;}
.y13_c00054{bottom:423.320000pt;}
.y12_c00054{bottom:439.186667pt;}
.y11_c00054{bottom:455.053333pt;}
.y10_c00054{bottom:470.520000pt;}
.yf_c00054{bottom:486.786667pt;}
.ye_c00054{bottom:503.053333pt;}
.yd_c00054{bottom:518.653333pt;}
.yc_c00054{bottom:534.520000pt;}
.yb_c00054{bottom:550.786667pt;}
.ya_c00054{bottom:566.653333pt;}
.y9_c00054{bottom:582.920000pt;}
.y8_c00054{bottom:598.786667pt;}
.y7_c00054{bottom:614.920000pt;}
.y6_c00054{bottom:630.253333pt;}
.y5_c00054{bottom:646.386667pt;}
.y4_c00054{bottom:662.653333pt;}
.y3_c00054{bottom:677.986667pt;}
.y2_c00054{bottom:694.386667pt;}
.y1_c00054{bottom:713.053333pt;}
.h3_c00054{height:11.733399pt;}
.h4_c00054{height:38.937500pt;}
.h2_c00054{height:55.893333pt;}
.h0_c00054{height:743.266667pt;}
.h1_c00054{height:743.333333pt;}
.w2_c00054{width:93.222667pt;}
.w0_c00054{width:511.933333pt;}
.w1_c00054{width:512.000000pt;}
.x0_c00054{left:0.000000pt;}
.xb_c00054{left:16.800000pt;}
.xc_c00054{left:17.733333pt;}
.x8_c00054{left:19.466667pt;}
.xd_c00054{left:37.866667pt;}
.x4_c00054{left:68.000000pt;}
.x6_c00054{left:69.066667pt;}
.x7_c00054{left:71.066667pt;}
.x5_c00054{left:72.533333pt;}
.x3_c00054{left:73.733333pt;}
.x2_c00054{left:75.866667pt;}
.x9_c00054{left:88.933333pt;}
.xa_c00054{left:92.400000pt;}
.x1_c00054{left:164.400000pt;}
.xf_c00054{left:213.134888pt;}
.xe_c00054{left:401.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_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_67077ad9f2b951db5abc8987.woff2')format("woff");}.ff1_c00055{font-family:ff1_c00055;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00055;src:url('chunks/assets/font_22eb8350196ca26460959288.woff2')format("woff");}.ff2_c00055{font-family:ff2_c00055;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00055;src:url('chunks/assets/font_292e39c58cd999c789604b8f.woff2')format("woff");}.ff3_c00055{font-family:ff3_c00055;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00055;src:url('chunks/assets/font_4e469ae82ad7219e6c8fe704.woff2')format("woff");}.ff4_c00055{font-family:ff4_c00055;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00055;src:url('chunks/assets/font_343cb283313914d5ac322911.woff2')format("woff");}.ff5_c00055{font-family:ff5_c00055;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_c00055;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff6_c00055{font-family:ff6_c00055;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00055;src:url('chunks/assets/font_5ba42f24521907197cdaa742.woff2')format("woff");}.ff7_c00055{font-family:ff7_c00055;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00055;src:url('chunks/assets/font_2da794460578927412e4c69d.woff2')format("woff");}.ff8_c00055{font-family:ff8_c00055;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00055;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff9_c00055{font-family:ff9_c00055;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00055{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00055{vertical-align:0.000000px;}
.v1_c00055{vertical-align:112.200000px;}
.lsc_c00055{letter-spacing:-18.000000px;}
.lse_c00055{letter-spacing:-6.000000px;}
.lsa_c00055{letter-spacing:0.000000px;}
.ls2_c00055{letter-spacing:3.000000px;}
.ls3_c00055{letter-spacing:3.600000px;}
.ls0_c00055{letter-spacing:4.800000px;}
.ls6_c00055{letter-spacing:7.800000px;}
.ls8_c00055{letter-spacing:8.400000px;}
.lsb_c00055{letter-spacing:9.000000px;}
.ls5_c00055{letter-spacing:12.000000px;}
.lsd_c00055{letter-spacing:15.000000px;}
.ls9_c00055{letter-spacing:16.200000px;}
.ls1_c00055{letter-spacing:19.080000px;}
.ls4_c00055{letter-spacing:102.000000px;}
.ls7_c00055{letter-spacing:199.740000px;}
.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;}
}
.ws6_c00055{word-spacing:-30.060000px;}
.ws5_c00055{word-spacing:-15.060000px;}
.ws2_c00055{word-spacing:-14.178000px;}
.ws1_c00055{word-spacing:-14.160000px;}
.ws3_c00055{word-spacing:-12.291000px;}
.ws8_c00055{word-spacing:-8.160000px;}
.ws0_c00055{word-spacing:-1.920000px;}
.ws4_c00055{word-spacing:-0.189000px;}
.wsa_c00055{word-spacing:0.000000px;}
.ws9_c00055{word-spacing:5.220000px;}
.ws7_c00055{word-spacing:7.620000px;}
._35_c00055{margin-left:-25.320000px;}
._19_c00055{margin-left:-17.667000px;}
._1a_c00055{margin-left:-16.305000px;}
._8_c00055{margin-left:-14.100000px;}
._28_c00055{margin-left:-11.400000px;}
._1d_c00055{margin-left:-10.200000px;}
._36_c00055{margin-left:-9.060000px;}
._c_c00055{margin-left:-7.680000px;}
._13_c00055{margin-left:-6.540000px;}
._25_c00055{margin-left:-5.160000px;}
._10_c00055{margin-left:-3.900000px;}
._a_c00055{margin-left:-2.400000px;}
._12_c00055{margin-left:-1.020000px;}
._9_c00055{width:1.080000px;}
._4_c00055{width:2.100000px;}
._b_c00055{width:3.120000px;}
._6_c00055{width:4.380000px;}
._7_c00055{width:6.360000px;}
._2_c00055{width:8.160000px;}
._21_c00055{width:9.180000px;}
._e_c00055{width:10.320000px;}
._0_c00055{width:11.700000px;}
._d_c00055{width:13.140000px;}
._1_c00055{width:14.340000px;}
._14_c00055{width:16.080000px;}
._2c_c00055{width:17.340000px;}
._11_c00055{width:18.540000px;}
._3_c00055{width:20.340000px;}
._16_c00055{width:21.390000px;}
._39_c00055{width:22.440000px;}
._22_c00055{width:24.120000px;}
._2f_c00055{width:26.100000px;}
._f_c00055{width:27.300000px;}
._3c_c00055{width:29.820000px;}
._3e_c00055{width:34.920000px;}
._1c_c00055{width:40.800000px;}
._37_c00055{width:43.380000px;}
._17_c00055{width:44.478000px;}
._31_c00055{width:47.040000px;}
._30_c00055{width:48.900000px;}
._33_c00055{width:53.340000px;}
._2b_c00055{width:54.900000px;}
._34_c00055{width:57.180000px;}
._29_c00055{width:60.540000px;}
._38_c00055{width:62.400000px;}
._3b_c00055{width:66.120000px;}
._3a_c00055{width:68.460000px;}
._2d_c00055{width:75.300000px;}
._32_c00055{width:76.860000px;}
._23_c00055{width:83.100000px;}
._24_c00055{width:84.120000px;}
._1f_c00055{width:107.040000px;}
._26_c00055{width:113.220000px;}
._1b_c00055{width:116.367000px;}
._18_c00055{width:118.575000px;}
._1e_c00055{width:136.725000px;}
._20_c00055{width:140.880000px;}
._2a_c00055{width:174.900000px;}
._15_c00055{width:205.050000px;}
._27_c00055{width:303.300000px;}
._2e_c00055{width:342.360000px;}
._5_c00055{width:413.220000px;}
._3d_c00055{width:614.640000px;}
.fc2_c00055{color:transparent;}
.fc1_c00055{color:rgb(128,128,128);}
.fc0_c00055{color:rgb(0,0,0);}
.fs7_c00055{font-size:48.000000px;}
.fs2_c00055{font-size:51.000000px;}
.fs3_c00055{font-size:54.000000px;}
.fs0_c00055{font-size:60.000000px;}
.fs1_c00055{font-size:63.000000px;}
.fs6_c00055{font-size:69.000000px;}
.fs4_c00055{font-size:84.000000px;}
.fs5_c00055{font-size:189.000000px;}
.y0_c00055{bottom:0.000000px;}
.y3d_c00055{bottom:3.105000px;}
.y3c_c00055{bottom:7.228355px;}
.y37_c00055{bottom:45.885000px;}
.y36_c00055{bottom:63.735000px;}
.y35_c00055{bottom:81.885000px;}
.y34_c00055{bottom:100.485000px;}
.y33_c00055{bottom:119.085000px;}
.y32_c00055{bottom:137.235000px;}
.y3b_c00055{bottom:154.785000px;}
.y31_c00055{bottom:155.235000px;}
.y3a_c00055{bottom:173.085000px;}
.y30_c00055{bottom:173.385000px;}
.y2f_c00055{bottom:191.235000px;}
.y2e_c00055{bottom:208.785000px;}
.y39_c00055{bottom:209.535000px;}
.y2d_c00055{bottom:227.085000px;}
.y38_c00055{bottom:227.835000px;}
.y2c_c00055{bottom:245.685000px;}
.y2b_c00055{bottom:263.235000px;}
.y2a_c00055{bottom:281.685000px;}
.y29_c00055{bottom:299.685000px;}
.y28_c00055{bottom:317.235000px;}
.y27_c00055{bottom:334.785000px;}
.y26_c00055{bottom:353.235000px;}
.y25_c00055{bottom:370.935000px;}
.y24_c00055{bottom:388.935000px;}
.y23_c00055{bottom:406.935000px;}
.y22_c00055{bottom:424.935000px;}
.y17_c00055{bottom:425.835000px;}
.y16_c00055{bottom:441.735000px;}
.y21_c00055{bottom:442.485000px;}
.y20_c00055{bottom:460.035000px;}
.y1f_c00055{bottom:477.885000px;}
.y1e_c00055{bottom:497.085000px;}
.y1d_c00055{bottom:515.385000px;}
.y1c_c00055{bottom:533.235000px;}
.y1b_c00055{bottom:549.435000px;}
.yf_c00055{bottom:551.085000px;}
.y1a_c00055{bottom:566.685000px;}
.ye_c00055{bottom:569.385000px;}
.y19_c00055{bottom:585.885000px;}
.yd_c00055{bottom:586.935000px;}
.y18_c00055{bottom:604.035000px;}
.yc_c00055{bottom:605.085000px;}
.y15_c00055{bottom:611.835000px;}
.yb_c00055{bottom:622.635000px;}
.ya_c00055{bottom:640.785000px;}
.y9_c00055{bottom:659.085000px;}
.y8_c00055{bottom:676.035000px;}
.y14_c00055{bottom:676.935000px;}
.y7_c00055{bottom:694.485000px;}
.y13_c00055{bottom:694.785000px;}
.y6_c00055{bottom:713.085000px;}
.y12_c00055{bottom:730.635000px;}
.y5_c00055{bottom:731.235000px;}
.y4_c00055{bottom:748.785000px;}
.y11_c00055{bottom:765.435000px;}
.y3_c00055{bottom:766.485000px;}
.y2_c00055{bottom:785.235000px;}
.y1_c00055{bottom:801.885000px;}
.y10_c00055{bottom:803.835000px;}
.h9_c00055{height:13.200074px;}
.ha_c00055{height:43.804688px;}
.h6_c00055{height:59.690918px;}
.h2_c00055{height:62.880000px;}
.h3_c00055{height:64.020000px;}
.h5_c00055{height:64.571777px;}
.h4_c00055{height:66.024000px;}
.h7_c00055{height:86.338763px;}
.h8_c00055{height:194.262217px;}
.h1_c00055{height:841.500000px;}
.h0_c00055{height:841.575000px;}
.w1_c00055{width:104.875500px;}
.w0_c00055{width:556.500000px;}
.x0_c00055{left:0.000000px;}
.x13_c00055{left:61.050000px;}
.x5_c00055{left:68.550000px;}
.x10_c00055{left:69.900000px;}
.x4_c00055{left:72.600000px;}
.x3_c00055{left:73.950000px;}
.x6_c00055{left:75.300000px;}
.x2_c00055{left:77.250000px;}
.x12_c00055{left:78.300000px;}
.x14_c00055{left:79.950000px;}
.x15_c00055{left:81.000000px;}
.x11_c00055{left:172.050000px;}
.x1_c00055{left:193.350000px;}
.x17_c00055{left:230.064240px;}
.x9_c00055{left:295.950000px;}
.xc_c00055{left:298.350000px;}
.x7_c00055{left:305.400000px;}
.xa_c00055{left:311.850000px;}
.xf_c00055{left:319.650000px;}
.x8_c00055{left:367.500000px;}
.xb_c00055{left:374.550000px;}
.x16_c00055{left:464.700000px;}
.xd_c00055{left:500.400000px;}
.xe_c00055{left:501.750000px;}
@media print{
.v0_c00055{vertical-align:0.000000pt;}
.v1_c00055{vertical-align:99.733333pt;}
.lsc_c00055{letter-spacing:-16.000000pt;}
.lse_c00055{letter-spacing:-5.333333pt;}
.lsa_c00055{letter-spacing:0.000000pt;}
.ls2_c00055{letter-spacing:2.666667pt;}
.ls3_c00055{letter-spacing:3.200000pt;}
.ls0_c00055{letter-spacing:4.266667pt;}
.ls6_c00055{letter-spacing:6.933333pt;}
.ls8_c00055{letter-spacing:7.466667pt;}
.lsb_c00055{letter-spacing:8.000000pt;}
.ls5_c00055{letter-spacing:10.666667pt;}
.lsd_c00055{letter-spacing:13.333333pt;}
.ls9_c00055{letter-spacing:14.400000pt;}
.ls1_c00055{letter-spacing:16.960000pt;}
.ls4_c00055{letter-spacing:90.666667pt;}
.ls7_c00055{letter-spacing:177.546667pt;}
.ws6_c00055{word-spacing:-26.720000pt;}
.ws5_c00055{word-spacing:-13.386667pt;}
.ws2_c00055{word-spacing:-12.602667pt;}
.ws1_c00055{word-spacing:-12.586667pt;}
.ws3_c00055{word-spacing:-10.925333pt;}
.ws8_c00055{word-spacing:-7.253333pt;}
.ws0_c00055{word-spacing:-1.706667pt;}
.ws4_c00055{word-spacing:-0.168000pt;}
.wsa_c00055{word-spacing:0.000000pt;}
.ws9_c00055{word-spacing:4.640000pt;}
.ws7_c00055{word-spacing:6.773333pt;}
._35_c00055{margin-left:-22.506667pt;}
._19_c00055{margin-left:-15.704000pt;}
._1a_c00055{margin-left:-14.493333pt;}
._8_c00055{margin-left:-12.533333pt;}
._28_c00055{margin-left:-10.133333pt;}
._1d_c00055{margin-left:-9.066667pt;}
._36_c00055{margin-left:-8.053333pt;}
._c_c00055{margin-left:-6.826667pt;}
._13_c00055{margin-left:-5.813333pt;}
._25_c00055{margin-left:-4.586667pt;}
._10_c00055{margin-left:-3.466667pt;}
._a_c00055{margin-left:-2.133333pt;}
._12_c00055{margin-left:-0.906667pt;}
._9_c00055{width:0.960000pt;}
._4_c00055{width:1.866667pt;}
._b_c00055{width:2.773333pt;}
._6_c00055{width:3.893333pt;}
._7_c00055{width:5.653333pt;}
._2_c00055{width:7.253333pt;}
._21_c00055{width:8.160000pt;}
._e_c00055{width:9.173333pt;}
._0_c00055{width:10.400000pt;}
._d_c00055{width:11.680000pt;}
._1_c00055{width:12.746667pt;}
._14_c00055{width:14.293333pt;}
._2c_c00055{width:15.413333pt;}
._11_c00055{width:16.480000pt;}
._3_c00055{width:18.080000pt;}
._16_c00055{width:19.013333pt;}
._39_c00055{width:19.946667pt;}
._22_c00055{width:21.440000pt;}
._2f_c00055{width:23.200000pt;}
._f_c00055{width:24.266667pt;}
._3c_c00055{width:26.506667pt;}
._3e_c00055{width:31.040000pt;}
._1c_c00055{width:36.266667pt;}
._37_c00055{width:38.560000pt;}
._17_c00055{width:39.536000pt;}
._31_c00055{width:41.813333pt;}
._30_c00055{width:43.466667pt;}
._33_c00055{width:47.413333pt;}
._2b_c00055{width:48.800000pt;}
._34_c00055{width:50.826667pt;}
._29_c00055{width:53.813333pt;}
._38_c00055{width:55.466667pt;}
._3b_c00055{width:58.773333pt;}
._3a_c00055{width:60.853333pt;}
._2d_c00055{width:66.933333pt;}
._32_c00055{width:68.320000pt;}
._23_c00055{width:73.866667pt;}
._24_c00055{width:74.773333pt;}
._1f_c00055{width:95.146667pt;}
._26_c00055{width:100.640000pt;}
._1b_c00055{width:103.437333pt;}
._18_c00055{width:105.400000pt;}
._1e_c00055{width:121.533333pt;}
._20_c00055{width:125.226667pt;}
._2a_c00055{width:155.466667pt;}
._15_c00055{width:182.266667pt;}
._27_c00055{width:269.600000pt;}
._2e_c00055{width:304.320000pt;}
._5_c00055{width:367.306667pt;}
._3d_c00055{width:546.346667pt;}
.fs7_c00055{font-size:42.666667pt;}
.fs2_c00055{font-size:45.333333pt;}
.fs3_c00055{font-size:48.000000pt;}
.fs0_c00055{font-size:53.333333pt;}
.fs1_c00055{font-size:56.000000pt;}
.fs6_c00055{font-size:61.333333pt;}
.fs4_c00055{font-size:74.666667pt;}
.fs5_c00055{font-size:168.000000pt;}
.y0_c00055{bottom:0.000000pt;}
.y3d_c00055{bottom:2.760000pt;}
.y3c_c00055{bottom:6.425204pt;}
.y37_c00055{bottom:40.786667pt;}
.y36_c00055{bottom:56.653333pt;}
.y35_c00055{bottom:72.786667pt;}
.y34_c00055{bottom:89.320000pt;}
.y33_c00055{bottom:105.853333pt;}
.y32_c00055{bottom:121.986667pt;}
.y3b_c00055{bottom:137.586667pt;}
.y31_c00055{bottom:137.986667pt;}
.y3a_c00055{bottom:153.853333pt;}
.y30_c00055{bottom:154.120000pt;}
.y2f_c00055{bottom:169.986667pt;}
.y2e_c00055{bottom:185.586667pt;}
.y39_c00055{bottom:186.253333pt;}
.y2d_c00055{bottom:201.853333pt;}
.y38_c00055{bottom:202.520000pt;}
.y2c_c00055{bottom:218.386667pt;}
.y2b_c00055{bottom:233.986667pt;}
.y2a_c00055{bottom:250.386667pt;}
.y29_c00055{bottom:266.386667pt;}
.y28_c00055{bottom:281.986667pt;}
.y27_c00055{bottom:297.586667pt;}
.y26_c00055{bottom:313.986667pt;}
.y25_c00055{bottom:329.720000pt;}
.y24_c00055{bottom:345.720000pt;}
.y23_c00055{bottom:361.720000pt;}
.y22_c00055{bottom:377.720000pt;}
.y17_c00055{bottom:378.520000pt;}
.y16_c00055{bottom:392.653333pt;}
.y21_c00055{bottom:393.320000pt;}
.y20_c00055{bottom:408.920000pt;}
.y1f_c00055{bottom:424.786667pt;}
.y1e_c00055{bottom:441.853333pt;}
.y1d_c00055{bottom:458.120000pt;}
.y1c_c00055{bottom:473.986667pt;}
.y1b_c00055{bottom:488.386667pt;}
.yf_c00055{bottom:489.853333pt;}
.y1a_c00055{bottom:503.720000pt;}
.ye_c00055{bottom:506.120000pt;}
.y19_c00055{bottom:520.786667pt;}
.yd_c00055{bottom:521.720000pt;}
.y18_c00055{bottom:536.920000pt;}
.yc_c00055{bottom:537.853333pt;}
.y15_c00055{bottom:543.853333pt;}
.yb_c00055{bottom:553.453333pt;}
.ya_c00055{bottom:569.586667pt;}
.y9_c00055{bottom:585.853333pt;}
.y8_c00055{bottom:600.920000pt;}
.y14_c00055{bottom:601.720000pt;}
.y7_c00055{bottom:617.320000pt;}
.y13_c00055{bottom:617.586667pt;}
.y6_c00055{bottom:633.853333pt;}
.y12_c00055{bottom:649.453333pt;}
.y5_c00055{bottom:649.986667pt;}
.y4_c00055{bottom:665.586667pt;}
.y11_c00055{bottom:680.386667pt;}
.y3_c00055{bottom:681.320000pt;}
.y2_c00055{bottom:697.986667pt;}
.y1_c00055{bottom:712.786667pt;}
.y10_c00055{bottom:714.520000pt;}
.h9_c00055{height:11.733399pt;}
.ha_c00055{height:38.937500pt;}
.h6_c00055{height:53.058594pt;}
.h2_c00055{height:55.893333pt;}
.h3_c00055{height:56.906667pt;}
.h5_c00055{height:57.397135pt;}
.h4_c00055{height:58.688000pt;}
.h7_c00055{height:76.745567pt;}
.h8_c00055{height:172.677527pt;}
.h1_c00055{height:748.000000pt;}
.h0_c00055{height:748.066667pt;}
.w1_c00055{width:93.222667pt;}
.w0_c00055{width:494.666667pt;}
.x0_c00055{left:0.000000pt;}
.x13_c00055{left:54.266667pt;}
.x5_c00055{left:60.933333pt;}
.x10_c00055{left:62.133333pt;}
.x4_c00055{left:64.533333pt;}
.x3_c00055{left:65.733333pt;}
.x6_c00055{left:66.933333pt;}
.x2_c00055{left:68.666667pt;}
.x12_c00055{left:69.600000pt;}
.x14_c00055{left:71.066667pt;}
.x15_c00055{left:72.000000pt;}
.x11_c00055{left:152.933333pt;}
.x1_c00055{left:171.866667pt;}
.x17_c00055{left:204.501546pt;}
.x9_c00055{left:263.066667pt;}
.xc_c00055{left:265.200000pt;}
.x7_c00055{left:271.466667pt;}
.xa_c00055{left:277.200000pt;}
.xf_c00055{left:284.133333pt;}
.x8_c00055{left:326.666667pt;}
.xb_c00055{left:332.933333pt;}
.x16_c00055{left:413.066667pt;}
.xd_c00055{left:444.800000pt;}
.xe_c00055{left:446.000000pt;}
}





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

.ir_c00056:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00056{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00056;src:url('chunks/assets/font_86186f0598857f84fb9de9ac.woff2')format("woff");}.ff1_c00056{font-family:ff1_c00056;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00056;src:url('chunks/assets/font_815d619aa8bf6932ee11440f.woff2')format("woff");}.ff2_c00056{font-family:ff2_c00056;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00056;src:url('chunks/assets/font_99233a498e611c3f935bc439.woff2')format("woff");}.ff3_c00056{font-family:ff3_c00056;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00056;src:url('chunks/assets/font_f8453c123aabe7fe5142c4fc.woff2')format("woff");}.ff4_c00056{font-family:ff4_c00056;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00056;src:url('chunks/assets/font_25b232f8918ffe5d826fbbe9.woff2')format("woff");}.ff5_c00056{font-family:ff5_c00056;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00056;src:url('chunks/assets/font_8fc5f101492c9d94bb84dd77.woff2')format("woff");}.ff6_c00056{font-family:ff6_c00056;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00056;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff7_c00056{font-family:ff7_c00056;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00056{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00056{vertical-align:0.000000px;}
.ls5_c00056{letter-spacing:0.000000px;}
.ls4_c00056{letter-spacing:0.633000px;}
.ls0_c00056{letter-spacing:1.260000px;}
.ls2_c00056{letter-spacing:2.100000px;}
.ls6_c00056{letter-spacing:3.000000px;}
.ls1_c00056{letter-spacing:12.000000px;}
.ls3_c00056{letter-spacing:41.493000px;}
.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;}
}
.ws5_c00056{word-spacing:-25.452000px;}
.ws2_c00056{word-spacing:-15.060000px;}
.ws0_c00056{word-spacing:-15.000000px;}
.ws1_c00056{word-spacing:-14.160000px;}
.ws3_c00056{word-spacing:-13.452000px;}
.ws4_c00056{word-spacing:-2.424000px;}
.ws6_c00056{word-spacing:0.000000px;}
._2a_c00056{margin-left:-18.870000px;}
._29_c00056{margin-left:-15.951000px;}
._23_c00056{margin-left:-13.809000px;}
._25_c00056{margin-left:-12.345000px;}
._24_c00056{margin-left:-11.313000px;}
._16_c00056{margin-left:-9.660000px;}
._1b_c00056{margin-left:-7.980000px;}
._f_c00056{margin-left:-6.960000px;}
._10_c00056{margin-left:-5.820000px;}
._15_c00056{margin-left:-4.020000px;}
._4_c00056{margin-left:-3.000000px;}
._7_c00056{margin-left:-1.800000px;}
._b_c00056{width:1.080000px;}
._5_c00056{width:2.340000px;}
._6_c00056{width:4.020000px;}
._8_c00056{width:5.100000px;}
._2_c00056{width:7.020000px;}
._1_c00056{width:8.820000px;}
._18_c00056{width:10.140000px;}
._0_c00056{width:11.160000px;}
._c_c00056{width:12.363000px;}
._3_c00056{width:13.380000px;}
._21_c00056{width:14.673000px;}
._9_c00056{width:16.200000px;}
._1c_c00056{width:18.180000px;}
._11_c00056{width:19.377000px;}
._22_c00056{width:21.120000px;}
._14_c00056{width:23.040000px;}
._d_c00056{width:24.300000px;}
._1a_c00056{width:25.500000px;}
._e_c00056{width:27.540000px;}
._13_c00056{width:29.040000px;}
._12_c00056{width:30.060000px;}
._19_c00056{width:32.640000px;}
._20_c00056{width:34.440000px;}
._a_c00056{width:35.580000px;}
._1d_c00056{width:37.140000px;}
._1e_c00056{width:38.580000px;}
._32_c00056{width:39.720000px;}
._27_c00056{width:41.220000px;}
._26_c00056{width:42.636000px;}
._2b_c00056{width:46.692000px;}
._17_c00056{width:47.700000px;}
._1f_c00056{width:50.400000px;}
._2e_c00056{width:52.227000px;}
._30_c00056{width:53.700000px;}
._2d_c00056{width:54.723000px;}
._31_c00056{width:60.633000px;}
._2f_c00056{width:63.840000px;}
._2c_c00056{width:65.619000px;}
._28_c00056{width:428.292000px;}
.fc2_c00056{color:transparent;}
.fc1_c00056{color:rgb(128,128,128);}
.fc0_c00056{color:rgb(0,0,0);}
.fs3_c00056{font-size:39.000000px;}
.fs5_c00056{font-size:48.000000px;}
.fs2_c00056{font-size:57.000000px;}
.fs0_c00056{font-size:60.000000px;}
.fs1_c00056{font-size:63.000000px;}
.fs4_c00056{font-size:69.000000px;}
.y0_c00056{bottom:0.000000px;}
.y4e_c00056{bottom:3.105000px;}
.y4d_c00056{bottom:7.228355px;}
.y4c_c00056{bottom:37.785000px;}
.y4b_c00056{bottom:55.035000px;}
.y29_c00056{bottom:55.335000px;}
.y4a_c00056{bottom:73.185000px;}
.y28_c00056{bottom:73.785000px;}
.y49_c00056{bottom:90.885000px;}
.y27_c00056{bottom:91.485000px;}
.y48_c00056{bottom:108.885000px;}
.y26_c00056{bottom:109.635000px;}
.y47_c00056{bottom:126.885000px;}
.y25_c00056{bottom:127.485000px;}
.y46_c00056{bottom:144.435000px;}
.y24_c00056{bottom:145.335000px;}
.y45_c00056{bottom:161.985000px;}
.y23_c00056{bottom:163.335000px;}
.y44_c00056{bottom:180.435000px;}
.y22_c00056{bottom:181.185000px;}
.y43_c00056{bottom:199.035000px;}
.y21_c00056{bottom:199.485000px;}
.y20_c00056{bottom:217.035000px;}
.y42_c00056{bottom:234.885000px;}
.y1f_c00056{bottom:235.785000px;}
.y41_c00056{bottom:252.435000px;}
.y1e_c00056{bottom:253.485000px;}
.y40_c00056{bottom:270.285000px;}
.y1d_c00056{bottom:272.685000px;}
.y3f_c00056{bottom:288.585000px;}
.y1c_c00056{bottom:288.885000px;}
.y3e_c00056{bottom:306.435000px;}
.y1b_c00056{bottom:307.035000px;}
.y3d_c00056{bottom:324.585000px;}
.y1a_c00056{bottom:325.035000px;}
.y3c_c00056{bottom:342.135000px;}
.y19_c00056{bottom:342.435000px;}
.y3b_c00056{bottom:359.985000px;}
.y18_c00056{bottom:361.035000px;}
.y3a_c00056{bottom:378.285000px;}
.y17_c00056{bottom:378.885000px;}
.y39_c00056{bottom:395.835000px;}
.y16_c00056{bottom:396.585000px;}
.y15_c00056{bottom:413.985000px;}
.y38_c00056{bottom:431.535000px;}
.y14_c00056{bottom:432.285000px;}
.y37_c00056{bottom:448.935000px;}
.y13_c00056{bottom:449.835000px;}
.y36_c00056{bottom:467.085000px;}
.y12_c00056{bottom:467.385000px;}
.y11_c00056{bottom:485.235000px;}
.y35_c00056{bottom:503.085000px;}
.y10_c00056{bottom:503.235000px;}
.y34_c00056{bottom:521.085000px;}
.yf_c00056{bottom:521.385000px;}
.ye_c00056{bottom:539.235000px;}
.yd_c00056{bottom:557.085000px;}
.yc_c00056{bottom:575.085000px;}
.y33_c00056{bottom:592.635000px;}
.yb_c00056{bottom:592.935000px;}
.y32_c00056{bottom:610.485000px;}
.ya_c00056{bottom:610.785000px;}
.y31_c00056{bottom:628.635000px;}
.y9_c00056{bottom:628.785000px;}
.y30_c00056{bottom:645.885000px;}
.y8_c00056{bottom:646.635000px;}
.y2f_c00056{bottom:663.885000px;}
.y7_c00056{bottom:664.485000px;}
.y2e_c00056{bottom:681.435000px;}
.y6_c00056{bottom:682.635000px;}
.y5_c00056{bottom:700.185000px;}
.y2d_c00056{bottom:700.335000px;}
.y2c_c00056{bottom:717.735000px;}
.y4_c00056{bottom:717.885000px;}
.y2b_c00056{bottom:735.735000px;}
.y3_c00056{bottom:736.035000px;}
.y2_c00056{bottom:753.885000px;}
.y2a_c00056{bottom:771.735000px;}
.y1_c00056{bottom:772.185000px;}
.h7_c00056{height:13.200074px;}
.h8_c00056{height:43.804688px;}
.h5_c00056{height:59.736000px;}
.h2_c00056{height:62.880000px;}
.h3_c00056{height:64.020000px;}
.h4_c00056{height:67.221000px;}
.h6_c00056{height:73.623000px;}
.h0_c00056{height:836.175000px;}
.h1_c00056{height:836.250000px;}
.w2_c00056{width:104.875500px;}
.w0_c00056{width:575.925000px;}
.w1_c00056{width:576.000000px;}
.x0_c00056{left:0.000000px;}
.x4_c00056{left:73.200000px;}
.x2_c00056{left:74.550000px;}
.x1_c00056{left:76.500000px;}
.x3_c00056{left:94.200000px;}
.xb_c00056{left:239.776749px;}
.x9_c00056{left:286.200000px;}
.x8_c00056{left:288.150000px;}
.x6_c00056{left:290.700000px;}
.x7_c00056{left:292.050000px;}
.x5_c00056{left:293.700000px;}
.xa_c00056{left:471.750000px;}
@media print{
.v0_c00056{vertical-align:0.000000pt;}
.ls5_c00056{letter-spacing:0.000000pt;}
.ls4_c00056{letter-spacing:0.562667pt;}
.ls0_c00056{letter-spacing:1.120000pt;}
.ls2_c00056{letter-spacing:1.866667pt;}
.ls6_c00056{letter-spacing:2.666667pt;}
.ls1_c00056{letter-spacing:10.666667pt;}
.ls3_c00056{letter-spacing:36.882667pt;}
.ws5_c00056{word-spacing:-22.624000pt;}
.ws2_c00056{word-spacing:-13.386667pt;}
.ws0_c00056{word-spacing:-13.333333pt;}
.ws1_c00056{word-spacing:-12.586667pt;}
.ws3_c00056{word-spacing:-11.957333pt;}
.ws4_c00056{word-spacing:-2.154667pt;}
.ws6_c00056{word-spacing:0.000000pt;}
._2a_c00056{margin-left:-16.773333pt;}
._29_c00056{margin-left:-14.178667pt;}
._23_c00056{margin-left:-12.274667pt;}
._25_c00056{margin-left:-10.973333pt;}
._24_c00056{margin-left:-10.056000pt;}
._16_c00056{margin-left:-8.586667pt;}
._1b_c00056{margin-left:-7.093333pt;}
._f_c00056{margin-left:-6.186667pt;}
._10_c00056{margin-left:-5.173333pt;}
._15_c00056{margin-left:-3.573333pt;}
._4_c00056{margin-left:-2.666667pt;}
._7_c00056{margin-left:-1.600000pt;}
._b_c00056{width:0.960000pt;}
._5_c00056{width:2.080000pt;}
._6_c00056{width:3.573333pt;}
._8_c00056{width:4.533333pt;}
._2_c00056{width:6.240000pt;}
._1_c00056{width:7.840000pt;}
._18_c00056{width:9.013333pt;}
._0_c00056{width:9.920000pt;}
._c_c00056{width:10.989333pt;}
._3_c00056{width:11.893333pt;}
._21_c00056{width:13.042667pt;}
._9_c00056{width:14.400000pt;}
._1c_c00056{width:16.160000pt;}
._11_c00056{width:17.224000pt;}
._22_c00056{width:18.773333pt;}
._14_c00056{width:20.480000pt;}
._d_c00056{width:21.600000pt;}
._1a_c00056{width:22.666667pt;}
._e_c00056{width:24.480000pt;}
._13_c00056{width:25.813333pt;}
._12_c00056{width:26.720000pt;}
._19_c00056{width:29.013333pt;}
._20_c00056{width:30.613333pt;}
._a_c00056{width:31.626667pt;}
._1d_c00056{width:33.013333pt;}
._1e_c00056{width:34.293333pt;}
._32_c00056{width:35.306667pt;}
._27_c00056{width:36.640000pt;}
._26_c00056{width:37.898667pt;}
._2b_c00056{width:41.504000pt;}
._17_c00056{width:42.400000pt;}
._1f_c00056{width:44.800000pt;}
._2e_c00056{width:46.424000pt;}
._30_c00056{width:47.733333pt;}
._2d_c00056{width:48.642667pt;}
._31_c00056{width:53.896000pt;}
._2f_c00056{width:56.746667pt;}
._2c_c00056{width:58.328000pt;}
._28_c00056{width:380.704000pt;}
.fs3_c00056{font-size:34.666667pt;}
.fs5_c00056{font-size:42.666667pt;}
.fs2_c00056{font-size:50.666667pt;}
.fs0_c00056{font-size:53.333333pt;}
.fs1_c00056{font-size:56.000000pt;}
.fs4_c00056{font-size:61.333333pt;}
.y0_c00056{bottom:0.000000pt;}
.y4e_c00056{bottom:2.760000pt;}
.y4d_c00056{bottom:6.425204pt;}
.y4c_c00056{bottom:33.586667pt;}
.y4b_c00056{bottom:48.920000pt;}
.y29_c00056{bottom:49.186667pt;}
.y4a_c00056{bottom:65.053333pt;}
.y28_c00056{bottom:65.586667pt;}
.y49_c00056{bottom:80.786667pt;}
.y27_c00056{bottom:81.320000pt;}
.y48_c00056{bottom:96.786667pt;}
.y26_c00056{bottom:97.453333pt;}
.y47_c00056{bottom:112.786667pt;}
.y25_c00056{bottom:113.320000pt;}
.y46_c00056{bottom:128.386667pt;}
.y24_c00056{bottom:129.186667pt;}
.y45_c00056{bottom:143.986667pt;}
.y23_c00056{bottom:145.186667pt;}
.y44_c00056{bottom:160.386667pt;}
.y22_c00056{bottom:161.053333pt;}
.y43_c00056{bottom:176.920000pt;}
.y21_c00056{bottom:177.320000pt;}
.y20_c00056{bottom:192.920000pt;}
.y42_c00056{bottom:208.786667pt;}
.y1f_c00056{bottom:209.586667pt;}
.y41_c00056{bottom:224.386667pt;}
.y1e_c00056{bottom:225.320000pt;}
.y40_c00056{bottom:240.253333pt;}
.y1d_c00056{bottom:242.386667pt;}
.y3f_c00056{bottom:256.520000pt;}
.y1c_c00056{bottom:256.786667pt;}
.y3e_c00056{bottom:272.386667pt;}
.y1b_c00056{bottom:272.920000pt;}
.y3d_c00056{bottom:288.520000pt;}
.y1a_c00056{bottom:288.920000pt;}
.y3c_c00056{bottom:304.120000pt;}
.y19_c00056{bottom:304.386667pt;}
.y3b_c00056{bottom:319.986667pt;}
.y18_c00056{bottom:320.920000pt;}
.y3a_c00056{bottom:336.253333pt;}
.y17_c00056{bottom:336.786667pt;}
.y39_c00056{bottom:351.853333pt;}
.y16_c00056{bottom:352.520000pt;}
.y15_c00056{bottom:367.986667pt;}
.y38_c00056{bottom:383.586667pt;}
.y14_c00056{bottom:384.253333pt;}
.y37_c00056{bottom:399.053333pt;}
.y13_c00056{bottom:399.853333pt;}
.y36_c00056{bottom:415.186667pt;}
.y12_c00056{bottom:415.453333pt;}
.y11_c00056{bottom:431.320000pt;}
.y35_c00056{bottom:447.186667pt;}
.y10_c00056{bottom:447.320000pt;}
.y34_c00056{bottom:463.186667pt;}
.yf_c00056{bottom:463.453333pt;}
.ye_c00056{bottom:479.320000pt;}
.yd_c00056{bottom:495.186667pt;}
.yc_c00056{bottom:511.186667pt;}
.y33_c00056{bottom:526.786667pt;}
.yb_c00056{bottom:527.053333pt;}
.y32_c00056{bottom:542.653333pt;}
.ya_c00056{bottom:542.920000pt;}
.y31_c00056{bottom:558.786667pt;}
.y9_c00056{bottom:558.920000pt;}
.y30_c00056{bottom:574.120000pt;}
.y8_c00056{bottom:574.786667pt;}
.y2f_c00056{bottom:590.120000pt;}
.y7_c00056{bottom:590.653333pt;}
.y2e_c00056{bottom:605.720000pt;}
.y6_c00056{bottom:606.786667pt;}
.y5_c00056{bottom:622.386667pt;}
.y2d_c00056{bottom:622.520000pt;}
.y2c_c00056{bottom:637.986667pt;}
.y4_c00056{bottom:638.120000pt;}
.y2b_c00056{bottom:653.986667pt;}
.y3_c00056{bottom:654.253333pt;}
.y2_c00056{bottom:670.120000pt;}
.y2a_c00056{bottom:685.986667pt;}
.y1_c00056{bottom:686.386667pt;}
.h7_c00056{height:11.733399pt;}
.h8_c00056{height:38.937500pt;}
.h5_c00056{height:53.098667pt;}
.h2_c00056{height:55.893333pt;}
.h3_c00056{height:56.906667pt;}
.h4_c00056{height:59.752000pt;}
.h6_c00056{height:65.442667pt;}
.h0_c00056{height:743.266667pt;}
.h1_c00056{height:743.333333pt;}
.w2_c00056{width:93.222667pt;}
.w0_c00056{width:511.933333pt;}
.w1_c00056{width:512.000000pt;}
.x0_c00056{left:0.000000pt;}
.x4_c00056{left:65.066667pt;}
.x2_c00056{left:66.266667pt;}
.x1_c00056{left:68.000000pt;}
.x3_c00056{left:83.733333pt;}
.xb_c00056{left:213.134888pt;}
.x9_c00056{left:254.400000pt;}
.x8_c00056{left:256.133333pt;}
.x6_c00056{left:258.400000pt;}
.x7_c00056{left:259.600000pt;}
.x5_c00056{left:261.066667pt;}
.xa_c00056{left:419.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_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_2e63f26b664244104e716792.woff2')format("woff");}.ff1_c00057{font-family:ff1_c00057;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00057;src:url('chunks/assets/font_f61b96b5404594360da8e367.woff2')format("woff");}.ff2_c00057{font-family:ff2_c00057;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00057;src:url('chunks/assets/font_063a442a53ded74f873fc3ba.woff2')format("woff");}.ff3_c00057{font-family:ff3_c00057;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00057;src:url('chunks/assets/font_ff5a8abe266f8da5df4f500b.woff2')format("woff");}.ff4_c00057{font-family:ff4_c00057;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00057;src:url('chunks/assets/font_a04db840ae52bd84cbb03e42.woff2')format("woff");}.ff5_c00057{font-family:ff5_c00057;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00057;src:url('chunks/assets/font_7d92fade93968e609d77440f.woff2')format("woff");}.ff6_c00057{font-family:ff6_c00057;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00057;src:url('chunks/assets/font_5e22fefd41caf4cd07d44f2c.woff2')format("woff");}.ff7_c00057{font-family:ff7_c00057;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00057;src:url('chunks/assets/font_63b9236547944beb9f8e02a6.woff2')format("woff");}.ff8_c00057{font-family:ff8_c00057;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00057;src:url('chunks/assets/font_f3790c11fa1b72b5ebd5d0f3.woff2')format("woff");}.ff9_c00057{font-family:ff9_c00057;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00057;src:url('chunks/assets/font_36a2525960d848a44ed2ccec.woff2')format("woff");}.ffa_c00057{font-family:ffa_c00057;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00057;src:url('chunks/assets/font_f4339d1ecadae969e31e0768.woff2')format("woff");}.ffb_c00057{font-family:ffb_c00057;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc_c00057;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ffc_c00057{font-family:ffc_c00057;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00057{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00057{vertical-align:0.000000px;}
.v1_c00057{vertical-align:96.000000px;}
.ls8_c00057{letter-spacing:-3.000000px;}
.ls7_c00057{letter-spacing:0.000000px;}
.ls5_c00057{letter-spacing:2.805000px;}
.ls3_c00057{letter-spacing:4.605000px;}
.lsb_c00057{letter-spacing:6.000000px;}
.ls1_c00057{letter-spacing:8.157000px;}
.ls9_c00057{letter-spacing:9.000000px;}
.ls4_c00057{letter-spacing:10.200000px;}
.lsa_c00057{letter-spacing:15.000000px;}
.ls6_c00057{letter-spacing:15.045000px;}
.ls2_c00057{letter-spacing:19.800000px;}
.ls0_c00057{letter-spacing:31.014000px;}
.sc__c00057{text-shadow:none;}
.sc0_c00057{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00057{-webkit-text-stroke:0px transparent;}
.sc0_c00057{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00057{word-spacing:-30.303000px;}
.ws4_c00057{word-spacing:-17.250000px;}
.ws0_c00057{word-spacing:-15.000000px;}
.ws7_c00057{word-spacing:-14.604000px;}
.ws3_c00057{word-spacing:-14.427000px;}
.ws6_c00057{word-spacing:-14.160000px;}
.ws2_c00057{word-spacing:-12.750000px;}
.ws5_c00057{word-spacing:-0.055200px;}
.ws8_c00057{word-spacing:0.000000px;}
._2b_c00057{margin-left:-18.861000px;}
._1d_c00057{margin-left:-13.797000px;}
._13_c00057{margin-left:-12.291000px;}
._1c_c00057{margin-left:-9.948000px;}
._14_c00057{margin-left:-8.820000px;}
._1b_c00057{margin-left:-7.665000px;}
._1a_c00057{margin-left:-6.366000px;}
._1_c00057{margin-left:-4.860000px;}
._18_c00057{margin-left:-3.447000px;}
._c_c00057{margin-left:-2.205000px;}
._17_c00057{margin-left:-1.044000px;}
._0_c00057{width:1.800000px;}
._7_c00057{width:3.708000px;}
._b_c00057{width:4.815000px;}
._a_c00057{width:5.859000px;}
._4_c00057{width:7.440000px;}
._9_c00057{width:8.769000px;}
._8_c00057{width:9.954000px;}
._d_c00057{width:11.277000px;}
._15_c00057{width:12.294000px;}
._11_c00057{width:13.842000px;}
._29_c00057{width:15.360000px;}
._3_c00057{width:16.500000px;}
._12_c00057{width:18.486000px;}
._e_c00057{width:20.052000px;}
._6_c00057{width:21.960000px;}
._20_c00057{width:24.042000px;}
._5_c00057{width:25.200000px;}
._f_c00057{width:26.484000px;}
._23_c00057{width:27.495000px;}
._22_c00057{width:28.689000px;}
._28_c00057{width:30.009000px;}
._24_c00057{width:31.680000px;}
._2a_c00057{width:33.024000px;}
._16_c00057{width:34.155000px;}
._27_c00057{width:35.202000px;}
._10_c00057{width:37.503000px;}
._1f_c00057{width:38.940000px;}
._25_c00057{width:40.080000px;}
._21_c00057{width:46.410000px;}
._1e_c00057{width:47.643000px;}
._19_c00057{width:97.380000px;}
._26_c00057{width:150.780000px;}
._2_c00057{width:332.640000px;}
.fc2_c00057{color:transparent;}
.fc1_c00057{color:rgb(128,128,128);}
.fc0_c00057{color:rgb(0,0,0);}
.fs6_c00057{font-size:36.000000px;}
.fs5_c00057{font-size:45.000000px;}
.fs8_c00057{font-size:48.000000px;}
.fs4_c00057{font-size:55.200000px;}
.fs0_c00057{font-size:60.000000px;}
.fs1_c00057{font-size:63.000000px;}
.fs2_c00057{font-size:69.000000px;}
.fs7_c00057{font-size:105.000000px;}
.fs3_c00057{font-size:213.000000px;}
.y0_c00057{bottom:0.000000px;}
.y54_c00057{bottom:3.105000px;}
.y53_c00057{bottom:7.228355px;}
.y52_c00057{bottom:41.835000px;}
.y26_c00057{bottom:59.685000px;}
.y51_c00057{bottom:64.335000px;}
.y27_c00057{bottom:64.785000px;}
.y50_c00057{bottom:82.935000px;}
.y4f_c00057{bottom:100.785000px;}
.y4e_c00057{bottom:118.785000px;}
.y4d_c00057{bottom:137.085000px;}
.y25_c00057{bottom:138.285000px;}
.y4c_c00057{bottom:154.935000px;}
.y24_c00057{bottom:156.585000px;}
.y4b_c00057{bottom:172.785000px;}
.y23_c00057{bottom:174.735000px;}
.y22_c00057{bottom:190.935000px;}
.y4a_c00057{bottom:191.235000px;}
.y49_c00057{bottom:209.835000px;}
.y48_c00057{bottom:227.385000px;}
.y21_c00057{bottom:227.685000px;}
.y47_c00057{bottom:244.935000px;}
.y20_c00057{bottom:246.285000px;}
.y46_c00057{bottom:262.785000px;}
.y1f_c00057{bottom:264.585000px;}
.y45_c00057{bottom:281.385000px;}
.y1e_c00057{bottom:282.135000px;}
.y44_c00057{bottom:299.235000px;}
.y1d_c00057{bottom:299.685000px;}
.y43_c00057{bottom:316.935000px;}
.y1c_c00057{bottom:317.535000px;}
.y42_c00057{bottom:333.435000px;}
.y1b_c00057{bottom:335.685000px;}
.y41_c00057{bottom:351.285000px;}
.y1a_c00057{bottom:353.685000px;}
.y40_c00057{bottom:369.885000px;}
.y19_c00057{bottom:371.535000px;}
.y3f_c00057{bottom:388.335000px;}
.y18_c00057{bottom:389.835000px;}
.y3e_c00057{bottom:406.035000px;}
.y17_c00057{bottom:407.385000px;}
.y3d_c00057{bottom:423.885000px;}
.y16_c00057{bottom:425.235000px;}
.y3c_c00057{bottom:442.035000px;}
.y15_c00057{bottom:443.385000px;}
.y3b_c00057{bottom:460.335000px;}
.y14_c00057{bottom:461.685000px;}
.y3a_c00057{bottom:477.135000px;}
.y13_c00057{bottom:479.535000px;}
.y39_c00057{bottom:496.335000px;}
.y12_c00057{bottom:497.685000px;}
.y38_c00057{bottom:513.885000px;}
.y11_c00057{bottom:515.985000px;}
.y37_c00057{bottom:532.185000px;}
.y10_c00057{bottom:533.535000px;}
.y36_c00057{bottom:550.335000px;}
.yf_c00057{bottom:551.385000px;}
.y35_c00057{bottom:568.335000px;}
.ye_c00057{bottom:569.685000px;}
.y34_c00057{bottom:586.485000px;}
.yd_c00057{bottom:587.535000px;}
.y33_c00057{bottom:604.335000px;}
.yc_c00057{bottom:605.535000px;}
.y32_c00057{bottom:622.635000px;}
.yb_c00057{bottom:623.385000px;}
.y31_c00057{bottom:640.185000px;}
.ya_c00057{bottom:641.235000px;}
.y30_c00057{bottom:658.335000px;}
.y9_c00057{bottom:659.085000px;}
.y2f_c00057{bottom:676.335000px;}
.y8_c00057{bottom:677.385000px;}
.y2e_c00057{bottom:694.485000px;}
.y7_c00057{bottom:695.235000px;}
.y2d_c00057{bottom:711.735000px;}
.y6_c00057{bottom:713.685000px;}
.y2c_c00057{bottom:730.635000px;}
.y5_c00057{bottom:731.235000px;}
.y2b_c00057{bottom:748.785000px;}
.y4_c00057{bottom:749.535000px;}
.y2a_c00057{bottom:766.335000px;}
.y3_c00057{bottom:767.835000px;}
.y29_c00057{bottom:784.035000px;}
.y2_c00057{bottom:785.985000px;}
.y1_c00057{bottom:804.135000px;}
.y28_c00057{bottom:805.185000px;}
.h9_c00057{height:13.200074px;}
.ha_c00057{height:43.804688px;}
.h5_c00057{height:62.880000px;}
.h2_c00057{height:64.020000px;}
.h6_c00057{height:66.024000px;}
.h3_c00057{height:67.221000px;}
.h4_c00057{height:73.623000px;}
.h8_c00057{height:110.040000px;}
.h7_c00057{height:214.664062px;}
.h1_c00057{height:841.500000px;}
.h0_c00057{height:841.575000px;}
.w1_c00057{width:104.875500px;}
.w0_c00057{width:556.500000px;}
.x0_c00057{left:0.000000px;}
.x2_c00057{left:70.800000px;}
.x3_c00057{left:72.300000px;}
.x4_c00057{left:73.950000px;}
.x5_c00057{left:75.300000px;}
.x6_c00057{left:76.650000px;}
.x1_c00057{left:78.300000px;}
.x7_c00057{left:79.350000px;}
.x8_c00057{left:81.000000px;}
.xa_c00057{left:84.000000px;}
.xb_c00057{left:99.150000px;}
.xc_c00057{left:121.200000px;}
.xd_c00057{left:126.900000px;}
.x9_c00057{left:156.150000px;}
.x15_c00057{left:230.064240px;}
.xf_c00057{left:290.550000px;}
.x10_c00057{left:291.600000px;}
.xe_c00057{left:292.650000px;}
.x11_c00057{left:294.000000px;}
.x12_c00057{left:295.650000px;}
.x13_c00057{left:296.700000px;}
.x14_c00057{left:475.800000px;}
@media print{
.v0_c00057{vertical-align:0.000000pt;}
.v1_c00057{vertical-align:85.333333pt;}
.ls8_c00057{letter-spacing:-2.666667pt;}
.ls7_c00057{letter-spacing:0.000000pt;}
.ls5_c00057{letter-spacing:2.493333pt;}
.ls3_c00057{letter-spacing:4.093333pt;}
.lsb_c00057{letter-spacing:5.333333pt;}
.ls1_c00057{letter-spacing:7.250667pt;}
.ls9_c00057{letter-spacing:8.000000pt;}
.ls4_c00057{letter-spacing:9.066667pt;}
.lsa_c00057{letter-spacing:13.333333pt;}
.ls6_c00057{letter-spacing:13.373333pt;}
.ls2_c00057{letter-spacing:17.600000pt;}
.ls0_c00057{letter-spacing:27.568000pt;}
.ws1_c00057{word-spacing:-26.936000pt;}
.ws4_c00057{word-spacing:-15.333333pt;}
.ws0_c00057{word-spacing:-13.333333pt;}
.ws7_c00057{word-spacing:-12.981333pt;}
.ws3_c00057{word-spacing:-12.824000pt;}
.ws6_c00057{word-spacing:-12.586667pt;}
.ws2_c00057{word-spacing:-11.333333pt;}
.ws5_c00057{word-spacing:-0.049067pt;}
.ws8_c00057{word-spacing:0.000000pt;}
._2b_c00057{margin-left:-16.765333pt;}
._1d_c00057{margin-left:-12.264000pt;}
._13_c00057{margin-left:-10.925333pt;}
._1c_c00057{margin-left:-8.842667pt;}
._14_c00057{margin-left:-7.840000pt;}
._1b_c00057{margin-left:-6.813333pt;}
._1a_c00057{margin-left:-5.658667pt;}
._1_c00057{margin-left:-4.320000pt;}
._18_c00057{margin-left:-3.064000pt;}
._c_c00057{margin-left:-1.960000pt;}
._17_c00057{margin-left:-0.928000pt;}
._0_c00057{width:1.600000pt;}
._7_c00057{width:3.296000pt;}
._b_c00057{width:4.280000pt;}
._a_c00057{width:5.208000pt;}
._4_c00057{width:6.613333pt;}
._9_c00057{width:7.794667pt;}
._8_c00057{width:8.848000pt;}
._d_c00057{width:10.024000pt;}
._15_c00057{width:10.928000pt;}
._11_c00057{width:12.304000pt;}
._29_c00057{width:13.653333pt;}
._3_c00057{width:14.666667pt;}
._12_c00057{width:16.432000pt;}
._e_c00057{width:17.824000pt;}
._6_c00057{width:19.520000pt;}
._20_c00057{width:21.370667pt;}
._5_c00057{width:22.400000pt;}
._f_c00057{width:23.541333pt;}
._23_c00057{width:24.440000pt;}
._22_c00057{width:25.501333pt;}
._28_c00057{width:26.674667pt;}
._24_c00057{width:28.160000pt;}
._2a_c00057{width:29.354667pt;}
._16_c00057{width:30.360000pt;}
._27_c00057{width:31.290667pt;}
._10_c00057{width:33.336000pt;}
._1f_c00057{width:34.613333pt;}
._25_c00057{width:35.626667pt;}
._21_c00057{width:41.253333pt;}
._1e_c00057{width:42.349333pt;}
._19_c00057{width:86.560000pt;}
._26_c00057{width:134.026667pt;}
._2_c00057{width:295.680000pt;}
.fs6_c00057{font-size:32.000000pt;}
.fs5_c00057{font-size:40.000000pt;}
.fs8_c00057{font-size:42.666667pt;}
.fs4_c00057{font-size:49.066667pt;}
.fs0_c00057{font-size:53.333333pt;}
.fs1_c00057{font-size:56.000000pt;}
.fs2_c00057{font-size:61.333333pt;}
.fs7_c00057{font-size:93.333333pt;}
.fs3_c00057{font-size:189.333333pt;}
.y0_c00057{bottom:0.000000pt;}
.y54_c00057{bottom:2.760000pt;}
.y53_c00057{bottom:6.425204pt;}
.y52_c00057{bottom:37.186667pt;}
.y26_c00057{bottom:53.053333pt;}
.y51_c00057{bottom:57.186667pt;}
.y27_c00057{bottom:57.586667pt;}
.y50_c00057{bottom:73.720000pt;}
.y4f_c00057{bottom:89.586667pt;}
.y4e_c00057{bottom:105.586667pt;}
.y4d_c00057{bottom:121.853333pt;}
.y25_c00057{bottom:122.920000pt;}
.y4c_c00057{bottom:137.720000pt;}
.y24_c00057{bottom:139.186667pt;}
.y4b_c00057{bottom:153.586667pt;}
.y23_c00057{bottom:155.320000pt;}
.y22_c00057{bottom:169.720000pt;}
.y4a_c00057{bottom:169.986667pt;}
.y49_c00057{bottom:186.520000pt;}
.y48_c00057{bottom:202.120000pt;}
.y21_c00057{bottom:202.386667pt;}
.y47_c00057{bottom:217.720000pt;}
.y20_c00057{bottom:218.920000pt;}
.y46_c00057{bottom:233.586667pt;}
.y1f_c00057{bottom:235.186667pt;}
.y45_c00057{bottom:250.120000pt;}
.y1e_c00057{bottom:250.786667pt;}
.y44_c00057{bottom:265.986667pt;}
.y1d_c00057{bottom:266.386667pt;}
.y43_c00057{bottom:281.720000pt;}
.y1c_c00057{bottom:282.253333pt;}
.y42_c00057{bottom:296.386667pt;}
.y1b_c00057{bottom:298.386667pt;}
.y41_c00057{bottom:312.253333pt;}
.y1a_c00057{bottom:314.386667pt;}
.y40_c00057{bottom:328.786667pt;}
.y19_c00057{bottom:330.253333pt;}
.y3f_c00057{bottom:345.186667pt;}
.y18_c00057{bottom:346.520000pt;}
.y3e_c00057{bottom:360.920000pt;}
.y17_c00057{bottom:362.120000pt;}
.y3d_c00057{bottom:376.786667pt;}
.y16_c00057{bottom:377.986667pt;}
.y3c_c00057{bottom:392.920000pt;}
.y15_c00057{bottom:394.120000pt;}
.y3b_c00057{bottom:409.186667pt;}
.y14_c00057{bottom:410.386667pt;}
.y3a_c00057{bottom:424.120000pt;}
.y13_c00057{bottom:426.253333pt;}
.y39_c00057{bottom:441.186667pt;}
.y12_c00057{bottom:442.386667pt;}
.y38_c00057{bottom:456.786667pt;}
.y11_c00057{bottom:458.653333pt;}
.y37_c00057{bottom:473.053333pt;}
.y10_c00057{bottom:474.253333pt;}
.y36_c00057{bottom:489.186667pt;}
.yf_c00057{bottom:490.120000pt;}
.y35_c00057{bottom:505.186667pt;}
.ye_c00057{bottom:506.386667pt;}
.y34_c00057{bottom:521.320000pt;}
.yd_c00057{bottom:522.253333pt;}
.y33_c00057{bottom:537.186667pt;}
.yc_c00057{bottom:538.253333pt;}
.y32_c00057{bottom:553.453333pt;}
.yb_c00057{bottom:554.120000pt;}
.y31_c00057{bottom:569.053333pt;}
.ya_c00057{bottom:569.986667pt;}
.y30_c00057{bottom:585.186667pt;}
.y9_c00057{bottom:585.853333pt;}
.y2f_c00057{bottom:601.186667pt;}
.y8_c00057{bottom:602.120000pt;}
.y2e_c00057{bottom:617.320000pt;}
.y7_c00057{bottom:617.986667pt;}
.y2d_c00057{bottom:632.653333pt;}
.y6_c00057{bottom:634.386667pt;}
.y2c_c00057{bottom:649.453333pt;}
.y5_c00057{bottom:649.986667pt;}
.y2b_c00057{bottom:665.586667pt;}
.y4_c00057{bottom:666.253333pt;}
.y2a_c00057{bottom:681.186667pt;}
.y3_c00057{bottom:682.520000pt;}
.y29_c00057{bottom:696.920000pt;}
.y2_c00057{bottom:698.653333pt;}
.y1_c00057{bottom:714.786667pt;}
.y28_c00057{bottom:715.720000pt;}
.h9_c00057{height:11.733399pt;}
.ha_c00057{height:38.937500pt;}
.h5_c00057{height:55.893333pt;}
.h2_c00057{height:56.906667pt;}
.h6_c00057{height:58.688000pt;}
.h3_c00057{height:59.752000pt;}
.h4_c00057{height:65.442667pt;}
.h8_c00057{height:97.813333pt;}
.h7_c00057{height:190.812500pt;}
.h1_c00057{height:748.000000pt;}
.h0_c00057{height:748.066667pt;}
.w1_c00057{width:93.222667pt;}
.w0_c00057{width:494.666667pt;}
.x0_c00057{left:0.000000pt;}
.x2_c00057{left:62.933333pt;}
.x3_c00057{left:64.266667pt;}
.x4_c00057{left:65.733333pt;}
.x5_c00057{left:66.933333pt;}
.x6_c00057{left:68.133333pt;}
.x1_c00057{left:69.600000pt;}
.x7_c00057{left:70.533333pt;}
.x8_c00057{left:72.000000pt;}
.xa_c00057{left:74.666667pt;}
.xb_c00057{left:88.133333pt;}
.xc_c00057{left:107.733333pt;}
.xd_c00057{left:112.800000pt;}
.x9_c00057{left:138.800000pt;}
.x15_c00057{left:204.501546pt;}
.xf_c00057{left:258.266667pt;}
.x10_c00057{left:259.200000pt;}
.xe_c00057{left:260.133333pt;}
.x11_c00057{left:261.333333pt;}
.x12_c00057{left:262.800000pt;}
.x13_c00057{left:263.733333pt;}
.x14_c00057{left:422.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_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_1eec75263210db74b3c73377.woff2')format("woff");}.ff1_c00058{font-family:ff1_c00058;line-height:1.575000;font-style:normal;font-weight:normal;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_3e967e8e24b3b47627d1147f.woff2')format("woff");}.ff2_c00058{font-family:ff2_c00058;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00058;src:url('chunks/assets/font_e88df4ffadcfa96fb118142f.woff2')format("woff");}.ff3_c00058{font-family:ff3_c00058;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00058;src:url('chunks/assets/font_1daf0c532c18430564afac46.woff2')format("woff");}.ff4_c00058{font-family:ff4_c00058;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00058;src:url('chunks/assets/font_0ce391de997f24f9f9dd37f4.woff2')format("woff");}.ff5_c00058{font-family:ff5_c00058;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00058;src:url('chunks/assets/font_4da428d422a7473ca52e7804.woff2')format("woff");}.ff6_c00058{font-family:ff6_c00058;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00058;src:url('chunks/assets/font_82e6be8598bbd45b5d69f51e.woff2')format("woff");}.ff7_c00058{font-family:ff7_c00058;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00058;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff8_c00058{font-family:ff8_c00058;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00058{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00058{vertical-align:0.000000px;}
.ls9_c00058{letter-spacing:-3.000000px;}
.ls7_c00058{letter-spacing:0.000000px;}
.ls5_c00058{letter-spacing:0.600000px;}
.ls1_c00058{letter-spacing:1.005000px;}
.ls8_c00058{letter-spacing:3.000000px;}
.ls6_c00058{letter-spacing:5.280000px;}
.ls3_c00058{letter-spacing:6.000000px;}
.ls4_c00058{letter-spacing:13.260000px;}
.ls2_c00058{letter-spacing:14.811000px;}
.ls0_c00058{letter-spacing:16.611000px;}
.sc__c00058{text-shadow:none;}
.sc0_c00058{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00058{-webkit-text-stroke:0px transparent;}
.sc0_c00058{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00058{word-spacing:-80.370000px;}
.ws0_c00058{word-spacing:-14.160000px;}
.ws1_c00058{word-spacing:-1.200000px;}
.ws3_c00058{word-spacing:0.000000px;}
._27_c00058{margin-left:-22.062000px;}
._1b_c00058{margin-left:-15.108000px;}
._23_c00058{margin-left:-12.780000px;}
._25_c00058{margin-left:-10.473000px;}
._1e_c00058{margin-left:-9.465000px;}
._1c_c00058{margin-left:-7.761000px;}
._1d_c00058{margin-left:-6.237000px;}
._24_c00058{margin-left:-4.503000px;}
._11_c00058{margin-left:-3.090000px;}
._f_c00058{margin-left:-1.500000px;}
._2_c00058{width:1.740000px;}
._3_c00058{width:3.000000px;}
._7_c00058{width:4.260000px;}
._4_c00058{width:5.580000px;}
._8_c00058{width:7.065000px;}
._5_c00058{width:8.220000px;}
._c_c00058{width:9.285000px;}
._b_c00058{width:10.341000px;}
._0_c00058{width:11.655000px;}
._6_c00058{width:13.560000px;}
._10_c00058{width:14.997000px;}
._9_c00058{width:16.269000px;}
._1a_c00058{width:17.760000px;}
._18_c00058{width:18.960000px;}
._20_c00058{width:21.315000px;}
._12_c00058{width:23.139000px;}
._17_c00058{width:24.915000px;}
._19_c00058{width:26.034000px;}
._15_c00058{width:27.660000px;}
._16_c00058{width:28.980000px;}
._14_c00058{width:31.140000px;}
._22_c00058{width:32.280000px;}
._13_c00058{width:33.315000px;}
._21_c00058{width:36.120000px;}
._1f_c00058{width:37.200000px;}
._1_c00058{width:41.517000px;}
._26_c00058{width:46.140000px;}
._a_c00058{width:83.778000px;}
._d_c00058{width:99.420000px;}
._e_c00058{width:125.370000px;}
.fc2_c00058{color:transparent;}
.fc1_c00058{color:rgb(128,128,128);}
.fc0_c00058{color:rgb(0,0,0);}
.fs3_c00058{font-size:45.000000px;}
.fs6_c00058{font-size:48.000000px;}
.fs2_c00058{font-size:51.000000px;}
.fs4_c00058{font-size:57.000000px;}
.fs1_c00058{font-size:60.000000px;}
.fs0_c00058{font-size:63.000000px;}
.fs5_c00058{font-size:105.000000px;}
.y0_c00058{bottom:0.000000px;}
.y50_c00058{bottom:3.105000px;}
.y4f_c00058{bottom:7.228355px;}
.y4e_c00058{bottom:19.785000px;}
.y2a_c00058{bottom:36.735000px;}
.y4d_c00058{bottom:37.485000px;}
.y29_c00058{bottom:53.235000px;}
.y4c_c00058{bottom:55.635000px;}
.y28_c00058{bottom:72.885000px;}
.y4b_c00058{bottom:73.485000px;}
.y27_c00058{bottom:91.035000px;}
.y4a_c00058{bottom:108.585000px;}
.y26_c00058{bottom:108.885000px;}
.y49_c00058{bottom:126.585000px;}
.y25_c00058{bottom:126.885000px;}
.y24_c00058{bottom:143.985000px;}
.y48_c00058{bottom:144.735000px;}
.y47_c00058{bottom:162.885000px;}
.y23_c00058{bottom:163.035000px;}
.y46_c00058{bottom:180.885000px;}
.y22_c00058{bottom:181.485000px;}
.y21_c00058{bottom:199.335000px;}
.y45_c00058{bottom:217.335000px;}
.y20_c00058{bottom:217.635000px;}
.y1f_c00058{bottom:235.185000px;}
.y44_c00058{bottom:235.485000px;}
.y43_c00058{bottom:253.035000px;}
.y1e_c00058{bottom:253.785000px;}
.y42_c00058{bottom:270.885000px;}
.y1d_c00058{bottom:271.485000px;}
.y41_c00058{bottom:288.585000px;}
.y1c_c00058{bottom:289.485000px;}
.y40_c00058{bottom:306.735000px;}
.y1b_c00058{bottom:307.485000px;}
.y1a_c00058{bottom:325.035000px;}
.y3f_c00058{bottom:325.635000px;}
.y19_c00058{bottom:342.585000px;}
.y3e_c00058{bottom:343.785000px;}
.y18_c00058{bottom:360.735000px;}
.y3d_c00058{bottom:378.285000px;}
.y17_c00058{bottom:378.585000px;}
.y16_c00058{bottom:396.885000px;}
.y15_c00058{bottom:414.135000px;}
.y3c_c00058{bottom:414.435000px;}
.y14_c00058{bottom:431.985000px;}
.y3b_c00058{bottom:432.285000px;}
.y13_c00058{bottom:449.835000px;}
.y12_c00058{bottom:467.385000px;}
.y3a_c00058{bottom:467.985000px;}
.y11_c00058{bottom:484.335000px;}
.y39_c00058{bottom:485.985000px;}
.y10_c00058{bottom:502.485000px;}
.y38_c00058{bottom:503.535000px;}
.yf_c00058{bottom:520.335000px;}
.y37_c00058{bottom:521.985000px;}
.ye_c00058{bottom:538.335000px;}
.y36_c00058{bottom:539.985000px;}
.yd_c00058{bottom:556.485000px;}
.y35_c00058{bottom:557.835000px;}
.yc_c00058{bottom:574.635000px;}
.y34_c00058{bottom:575.985000px;}
.yb_c00058{bottom:592.335000px;}
.y33_c00058{bottom:593.985000px;}
.ya_c00058{bottom:611.085000px;}
.y32_c00058{bottom:611.835000px;}
.y9_c00058{bottom:628.335000px;}
.y31_c00058{bottom:629.385000px;}
.y8_c00058{bottom:646.335000px;}
.y30_c00058{bottom:647.535000px;}
.y7_c00058{bottom:664.785000px;}
.y2f_c00058{bottom:665.835000px;}
.y6_c00058{bottom:682.635000px;}
.y2e_c00058{bottom:683.385000px;}
.y5_c00058{bottom:700.185000px;}
.y2d_c00058{bottom:701.535000px;}
.y4_c00058{bottom:717.885000px;}
.y2c_c00058{bottom:719.235000px;}
.y3_c00058{bottom:735.735000px;}
.y2b_c00058{bottom:736.785000px;}
.y2_c00058{bottom:755.235000px;}
.y1_c00058{bottom:776.535000px;}
.h8_c00058{height:13.200074px;}
.h9_c00058{height:43.804688px;}
.h4_c00058{height:53.448000px;}
.h3_c00058{height:62.880000px;}
.h6_c00058{height:64.020000px;}
.h5_c00058{height:66.621000px;}
.h2_c00058{height:67.221000px;}
.h7_c00058{height:110.040000px;}
.h0_c00058{height:810.525000px;}
.h1_c00058{height:810.750000px;}
.w2_c00058{width:104.875500px;}
.w0_c00058{width:557.850000px;}
.w1_c00058{width:558.000000px;}
.x0_c00058{left:0.000000px;}
.x4_c00058{left:10.500000px;}
.x5_c00058{left:13.800000px;}
.x3_c00058{left:71.850000px;}
.x2_c00058{left:73.350000px;}
.x6_c00058{left:74.550000px;}
.x7_c00058{left:89.400000px;}
.x1_c00058{left:207.450000px;}
.xe_c00058{left:230.739258px;}
.xc_c00058{left:287.850000px;}
.xb_c00058{left:289.350000px;}
.x8_c00058{left:290.550000px;}
.xa_c00058{left:292.350000px;}
.x9_c00058{left:293.700000px;}
.xd_c00058{left:457.050000px;}
@media print{
.v0_c00058{vertical-align:0.000000pt;}
.ls9_c00058{letter-spacing:-2.666667pt;}
.ls7_c00058{letter-spacing:0.000000pt;}
.ls5_c00058{letter-spacing:0.533333pt;}
.ls1_c00058{letter-spacing:0.893333pt;}
.ls8_c00058{letter-spacing:2.666667pt;}
.ls6_c00058{letter-spacing:4.693333pt;}
.ls3_c00058{letter-spacing:5.333333pt;}
.ls4_c00058{letter-spacing:11.786667pt;}
.ls2_c00058{letter-spacing:13.165333pt;}
.ls0_c00058{letter-spacing:14.765333pt;}
.ws2_c00058{word-spacing:-71.440000pt;}
.ws0_c00058{word-spacing:-12.586667pt;}
.ws1_c00058{word-spacing:-1.066667pt;}
.ws3_c00058{word-spacing:0.000000pt;}
._27_c00058{margin-left:-19.610667pt;}
._1b_c00058{margin-left:-13.429333pt;}
._23_c00058{margin-left:-11.360000pt;}
._25_c00058{margin-left:-9.309333pt;}
._1e_c00058{margin-left:-8.413333pt;}
._1c_c00058{margin-left:-6.898667pt;}
._1d_c00058{margin-left:-5.544000pt;}
._24_c00058{margin-left:-4.002667pt;}
._11_c00058{margin-left:-2.746667pt;}
._f_c00058{margin-left:-1.333333pt;}
._2_c00058{width:1.546667pt;}
._3_c00058{width:2.666667pt;}
._7_c00058{width:3.786667pt;}
._4_c00058{width:4.960000pt;}
._8_c00058{width:6.280000pt;}
._5_c00058{width:7.306667pt;}
._c_c00058{width:8.253333pt;}
._b_c00058{width:9.192000pt;}
._0_c00058{width:10.360000pt;}
._6_c00058{width:12.053333pt;}
._10_c00058{width:13.330667pt;}
._9_c00058{width:14.461333pt;}
._1a_c00058{width:15.786667pt;}
._18_c00058{width:16.853333pt;}
._20_c00058{width:18.946667pt;}
._12_c00058{width:20.568000pt;}
._17_c00058{width:22.146667pt;}
._19_c00058{width:23.141333pt;}
._15_c00058{width:24.586667pt;}
._16_c00058{width:25.760000pt;}
._14_c00058{width:27.680000pt;}
._22_c00058{width:28.693333pt;}
._13_c00058{width:29.613333pt;}
._21_c00058{width:32.106667pt;}
._1f_c00058{width:33.066667pt;}
._1_c00058{width:36.904000pt;}
._26_c00058{width:41.013333pt;}
._a_c00058{width:74.469333pt;}
._d_c00058{width:88.373333pt;}
._e_c00058{width:111.440000pt;}
.fs3_c00058{font-size:40.000000pt;}
.fs6_c00058{font-size:42.666667pt;}
.fs2_c00058{font-size:45.333333pt;}
.fs4_c00058{font-size:50.666667pt;}
.fs1_c00058{font-size:53.333333pt;}
.fs0_c00058{font-size:56.000000pt;}
.fs5_c00058{font-size:93.333333pt;}
.y0_c00058{bottom:0.000000pt;}
.y50_c00058{bottom:2.760000pt;}
.y4f_c00058{bottom:6.425204pt;}
.y4e_c00058{bottom:17.586667pt;}
.y2a_c00058{bottom:32.653333pt;}
.y4d_c00058{bottom:33.320000pt;}
.y29_c00058{bottom:47.320000pt;}
.y4c_c00058{bottom:49.453333pt;}
.y28_c00058{bottom:64.786667pt;}
.y4b_c00058{bottom:65.320000pt;}
.y27_c00058{bottom:80.920000pt;}
.y4a_c00058{bottom:96.520000pt;}
.y26_c00058{bottom:96.786667pt;}
.y49_c00058{bottom:112.520000pt;}
.y25_c00058{bottom:112.786667pt;}
.y24_c00058{bottom:127.986667pt;}
.y48_c00058{bottom:128.653333pt;}
.y47_c00058{bottom:144.786667pt;}
.y23_c00058{bottom:144.920000pt;}
.y46_c00058{bottom:160.786667pt;}
.y22_c00058{bottom:161.320000pt;}
.y21_c00058{bottom:177.186667pt;}
.y45_c00058{bottom:193.186667pt;}
.y20_c00058{bottom:193.453333pt;}
.y1f_c00058{bottom:209.053333pt;}
.y44_c00058{bottom:209.320000pt;}
.y43_c00058{bottom:224.920000pt;}
.y1e_c00058{bottom:225.586667pt;}
.y42_c00058{bottom:240.786667pt;}
.y1d_c00058{bottom:241.320000pt;}
.y41_c00058{bottom:256.520000pt;}
.y1c_c00058{bottom:257.320000pt;}
.y40_c00058{bottom:272.653333pt;}
.y1b_c00058{bottom:273.320000pt;}
.y1a_c00058{bottom:288.920000pt;}
.y3f_c00058{bottom:289.453333pt;}
.y19_c00058{bottom:304.520000pt;}
.y3e_c00058{bottom:305.586667pt;}
.y18_c00058{bottom:320.653333pt;}
.y3d_c00058{bottom:336.253333pt;}
.y17_c00058{bottom:336.520000pt;}
.y16_c00058{bottom:352.786667pt;}
.y15_c00058{bottom:368.120000pt;}
.y3c_c00058{bottom:368.386667pt;}
.y14_c00058{bottom:383.986667pt;}
.y3b_c00058{bottom:384.253333pt;}
.y13_c00058{bottom:399.853333pt;}
.y12_c00058{bottom:415.453333pt;}
.y3a_c00058{bottom:415.986667pt;}
.y11_c00058{bottom:430.520000pt;}
.y39_c00058{bottom:431.986667pt;}
.y10_c00058{bottom:446.653333pt;}
.y38_c00058{bottom:447.586667pt;}
.yf_c00058{bottom:462.520000pt;}
.y37_c00058{bottom:463.986667pt;}
.ye_c00058{bottom:478.520000pt;}
.y36_c00058{bottom:479.986667pt;}
.yd_c00058{bottom:494.653333pt;}
.y35_c00058{bottom:495.853333pt;}
.yc_c00058{bottom:510.786667pt;}
.y34_c00058{bottom:511.986667pt;}
.yb_c00058{bottom:526.520000pt;}
.y33_c00058{bottom:527.986667pt;}
.ya_c00058{bottom:543.186667pt;}
.y32_c00058{bottom:543.853333pt;}
.y9_c00058{bottom:558.520000pt;}
.y31_c00058{bottom:559.453333pt;}
.y8_c00058{bottom:574.520000pt;}
.y30_c00058{bottom:575.586667pt;}
.y7_c00058{bottom:590.920000pt;}
.y2f_c00058{bottom:591.853333pt;}
.y6_c00058{bottom:606.786667pt;}
.y2e_c00058{bottom:607.453333pt;}
.y5_c00058{bottom:622.386667pt;}
.y2d_c00058{bottom:623.586667pt;}
.y4_c00058{bottom:638.120000pt;}
.y2c_c00058{bottom:639.320000pt;}
.y3_c00058{bottom:653.986667pt;}
.y2b_c00058{bottom:654.920000pt;}
.y2_c00058{bottom:671.320000pt;}
.y1_c00058{bottom:690.253333pt;}
.h8_c00058{height:11.733399pt;}
.h9_c00058{height:38.937500pt;}
.h4_c00058{height:47.509333pt;}
.h3_c00058{height:55.893333pt;}
.h6_c00058{height:56.906667pt;}
.h5_c00058{height:59.218667pt;}
.h2_c00058{height:59.752000pt;}
.h7_c00058{height:97.813333pt;}
.h0_c00058{height:720.466667pt;}
.h1_c00058{height:720.666667pt;}
.w2_c00058{width:93.222667pt;}
.w0_c00058{width:495.866667pt;}
.w1_c00058{width:496.000000pt;}
.x0_c00058{left:0.000000pt;}
.x4_c00058{left:9.333333pt;}
.x5_c00058{left:12.266667pt;}
.x3_c00058{left:63.866667pt;}
.x2_c00058{left:65.200000pt;}
.x6_c00058{left:66.266667pt;}
.x7_c00058{left:79.466667pt;}
.x1_c00058{left:184.400000pt;}
.xe_c00058{left:205.101563pt;}
.xc_c00058{left:255.866667pt;}
.xb_c00058{left:257.200000pt;}
.x8_c00058{left:258.266667pt;}
.xa_c00058{left:259.866667pt;}
.x9_c00058{left:261.066667pt;}
.xd_c00058{left:406.266667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4d4f637fa497bcb39c642067.woff2')format("woff");}.ff1_c00059{font-family:ff1_c00059;line-height:1.437000;font-style:normal;font-weight:normal;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_22dc09aea32a9ef1163b7180.woff2')format("woff");}.ff2_c00059{font-family:ff2_c00059;line-height:1.437000;font-style:normal;font-weight:normal;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_a22eed46b8ce6343d6bb7f1e.woff2')format("woff");}.ff3_c00059{font-family:ff3_c00059;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00059;src:url('chunks/assets/font_f28e54fbc9254598881a37c2.woff2')format("woff");}.ff4_c00059{font-family:ff4_c00059;line-height:1.437000;font-style:normal;font-weight:normal;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_3fadf0682a90d5ea7319f34c.woff2')format("woff");}.ff5_c00059{font-family:ff5_c00059;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00059;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff6_c00059{font-family:ff6_c00059;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00059{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00059{vertical-align:0.000000px;}
.ls8_c00059{letter-spacing:-9.000000px;}
.ls6_c00059{letter-spacing:0.000000px;}
.ls5_c00059{letter-spacing:3.000000px;}
.ls3_c00059{letter-spacing:3.405000px;}
.ls9_c00059{letter-spacing:6.000000px;}
.ls7_c00059{letter-spacing:9.000000px;}
.ls1_c00059{letter-spacing:11.460000px;}
.ls2_c00059{letter-spacing:12.840000px;}
.ls0_c00059{letter-spacing:24.405000px;}
.ls4_c00059{letter-spacing:45.540000px;}
.lsa_c00059{letter-spacing:57.000000px;}
.sc__c00059{text-shadow:none;}
.sc0_c00059{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00059{-webkit-text-stroke:0px transparent;}
.sc0_c00059{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8_c00059{word-spacing:-72.060000px;}
.ws4_c00059{word-spacing:-38.700000px;}
.ws3_c00059{word-spacing:-32.760000px;}
.ws2_c00059{word-spacing:-23.160000px;}
.ws5_c00059{word-spacing:-20.295000px;}
.ws9_c00059{word-spacing:-15.060000px;}
.ws7_c00059{word-spacing:-14.340000px;}
.ws0_c00059{word-spacing:-14.160000px;}
.ws6_c00059{word-spacing:-4.710000px;}
.ws1_c00059{word-spacing:-1.200000px;}
.wsa_c00059{word-spacing:0.000000px;}
._1d_c00059{margin-left:-12.195000px;}
._18_c00059{margin-left:-10.224000px;}
._14_c00059{margin-left:-8.460000px;}
._13_c00059{margin-left:-6.120000px;}
._15_c00059{margin-left:-4.800000px;}
._1a_c00059{margin-left:-3.756000px;}
._17_c00059{margin-left:-2.664000px;}
._a_c00059{margin-left:-1.260000px;}
._c_c00059{width:1.500000px;}
._7_c00059{width:2.580000px;}
._6_c00059{width:3.720000px;}
._5_c00059{width:4.980000px;}
._20_c00059{width:6.009000px;}
._8_c00059{width:7.020000px;}
._2_c00059{width:8.835000px;}
._b_c00059{width:10.269000px;}
._12_c00059{width:11.946000px;}
._4_c00059{width:13.551000px;}
._0_c00059{width:15.618000px;}
._e_c00059{width:16.749000px;}
._28_c00059{width:17.889000px;}
._1_c00059{width:18.945000px;}
._16_c00059{width:20.499000px;}
._23_c00059{width:22.377000px;}
._3_c00059{width:23.484000px;}
._1f_c00059{width:24.720000px;}
._25_c00059{width:26.958000px;}
._27_c00059{width:28.140000px;}
._11_c00059{width:29.334000px;}
._22_c00059{width:30.351000px;}
._29_c00059{width:31.395000px;}
._1e_c00059{width:32.928000px;}
._21_c00059{width:34.650000px;}
._2a_c00059{width:35.817000px;}
._26_c00059{width:36.858000px;}
._24_c00059{width:38.457000px;}
._1c_c00059{width:41.340000px;}
._1b_c00059{width:42.840000px;}
._f_c00059{width:44.991000px;}
._d_c00059{width:46.209000px;}
._2d_c00059{width:47.898000px;}
._2c_c00059{width:64.761000px;}
._10_c00059{width:80.220000px;}
._2e_c00059{width:83.463000px;}
._2f_c00059{width:100.620000px;}
._2b_c00059{width:206.985000px;}
._19_c00059{width:222.540000px;}
._9_c00059{width:668.640000px;}
.fc2_c00059{color:transparent;}
.fc1_c00059{color:rgb(128,128,128);}
.fc0_c00059{color:rgb(0,0,0);}
.fs2_c00059{font-size:45.000000px;}
.fs3_c00059{font-size:48.000000px;}
.fs0_c00059{font-size:57.000000px;}
.fs1_c00059{font-size:60.000000px;}
.y0_c00059{bottom:0.000000px;}
.y2d_c00059{bottom:3.105000px;}
.y2c_c00059{bottom:7.228355px;}
.y2b_c00059{bottom:34.335000px;}
.y2a_c00059{bottom:53.685000px;}
.y29_c00059{bottom:72.435000px;}
.y28_c00059{bottom:91.035000px;}
.y27_c00059{bottom:108.585000px;}
.y26_c00059{bottom:126.885000px;}
.y25_c00059{bottom:145.035000px;}
.y24_c00059{bottom:163.635000px;}
.y23_c00059{bottom:181.785000px;}
.y22_c00059{bottom:199.035000px;}
.y21_c00059{bottom:217.935000px;}
.y20_c00059{bottom:235.485000px;}
.y1f_c00059{bottom:253.485000px;}
.y1e_c00059{bottom:271.335000px;}
.y1d_c00059{bottom:289.935000px;}
.y1c_c00059{bottom:307.035000px;}
.y1b_c00059{bottom:324.585000px;}
.y1a_c00059{bottom:342.885000px;}
.y19_c00059{bottom:361.335000px;}
.y18_c00059{bottom:378.885000px;}
.y17_c00059{bottom:397.185000px;}
.y16_c00059{bottom:415.335000px;}
.y15_c00059{bottom:432.885000px;}
.y14_c00059{bottom:451.185000px;}
.y13_c00059{bottom:469.485000px;}
.y12_c00059{bottom:487.335000px;}
.y11_c00059{bottom:504.885000px;}
.y10_c00059{bottom:523.035000px;}
.yf_c00059{bottom:541.035000px;}
.ye_c00059{bottom:559.185000px;}
.yd_c00059{bottom:577.485000px;}
.yc_c00059{bottom:595.635000px;}
.yb_c00059{bottom:613.785000px;}
.ya_c00059{bottom:631.485000px;}
.y9_c00059{bottom:649.635000px;}
.y8_c00059{bottom:667.485000px;}
.y7_c00059{bottom:685.485000px;}
.y6_c00059{bottom:703.635000px;}
.y5_c00059{bottom:721.785000px;}
.y4_c00059{bottom:739.785000px;}
.y3_c00059{bottom:757.935000px;}
.y2_c00059{bottom:775.185000px;}
.y1_c00059{bottom:795.435000px;}
.h4_c00059{height:13.200074px;}
.h5_c00059{height:43.804688px;}
.h2_c00059{height:59.736000px;}
.h3_c00059{height:62.880000px;}
.h1_c00059{height:841.500000px;}
.h0_c00059{height:841.575000px;}
.w1_c00059{width:104.875500px;}
.w0_c00059{width:556.500000px;}
.x0_c00059{left:0.000000px;}
.x4_c00059{left:20.250000px;}
.x9_c00059{left:40.800000px;}
.x8_c00059{left:46.200000px;}
.xa_c00059{left:47.550000px;}
.x3_c00059{left:84.000000px;}
.x2_c00059{left:85.500000px;}
.x5_c00059{left:86.850000px;}
.x6_c00059{left:88.800000px;}
.x7_c00059{left:134.400000px;}
.x1_c00059{left:191.100000px;}
.xc_c00059{left:230.064240px;}
.xb_c00059{left:472.200000px;}
@media print{
.v0_c00059{vertical-align:0.000000pt;}
.ls8_c00059{letter-spacing:-8.000000pt;}
.ls6_c00059{letter-spacing:0.000000pt;}
.ls5_c00059{letter-spacing:2.666667pt;}
.ls3_c00059{letter-spacing:3.026667pt;}
.ls9_c00059{letter-spacing:5.333333pt;}
.ls7_c00059{letter-spacing:8.000000pt;}
.ls1_c00059{letter-spacing:10.186667pt;}
.ls2_c00059{letter-spacing:11.413333pt;}
.ls0_c00059{letter-spacing:21.693333pt;}
.ls4_c00059{letter-spacing:40.480000pt;}
.lsa_c00059{letter-spacing:50.666667pt;}
.ws8_c00059{word-spacing:-64.053333pt;}
.ws4_c00059{word-spacing:-34.400000pt;}
.ws3_c00059{word-spacing:-29.120000pt;}
.ws2_c00059{word-spacing:-20.586667pt;}
.ws5_c00059{word-spacing:-18.040000pt;}
.ws9_c00059{word-spacing:-13.386667pt;}
.ws7_c00059{word-spacing:-12.746667pt;}
.ws0_c00059{word-spacing:-12.586667pt;}
.ws6_c00059{word-spacing:-4.186667pt;}
.ws1_c00059{word-spacing:-1.066667pt;}
.wsa_c00059{word-spacing:0.000000pt;}
._1d_c00059{margin-left:-10.840000pt;}
._18_c00059{margin-left:-9.088000pt;}
._14_c00059{margin-left:-7.520000pt;}
._13_c00059{margin-left:-5.440000pt;}
._15_c00059{margin-left:-4.266667pt;}
._1a_c00059{margin-left:-3.338667pt;}
._17_c00059{margin-left:-2.368000pt;}
._a_c00059{margin-left:-1.120000pt;}
._c_c00059{width:1.333333pt;}
._7_c00059{width:2.293333pt;}
._6_c00059{width:3.306667pt;}
._5_c00059{width:4.426667pt;}
._20_c00059{width:5.341333pt;}
._8_c00059{width:6.240000pt;}
._2_c00059{width:7.853333pt;}
._b_c00059{width:9.128000pt;}
._12_c00059{width:10.618667pt;}
._4_c00059{width:12.045333pt;}
._0_c00059{width:13.882667pt;}
._e_c00059{width:14.888000pt;}
._28_c00059{width:15.901333pt;}
._1_c00059{width:16.840000pt;}
._16_c00059{width:18.221333pt;}
._23_c00059{width:19.890667pt;}
._3_c00059{width:20.874667pt;}
._1f_c00059{width:21.973333pt;}
._25_c00059{width:23.962667pt;}
._27_c00059{width:25.013333pt;}
._11_c00059{width:26.074667pt;}
._22_c00059{width:26.978667pt;}
._29_c00059{width:27.906667pt;}
._1e_c00059{width:29.269333pt;}
._21_c00059{width:30.800000pt;}
._2a_c00059{width:31.837333pt;}
._26_c00059{width:32.762667pt;}
._24_c00059{width:34.184000pt;}
._1c_c00059{width:36.746667pt;}
._1b_c00059{width:38.080000pt;}
._f_c00059{width:39.992000pt;}
._d_c00059{width:41.074667pt;}
._2d_c00059{width:42.576000pt;}
._2c_c00059{width:57.565333pt;}
._10_c00059{width:71.306667pt;}
._2e_c00059{width:74.189333pt;}
._2f_c00059{width:89.440000pt;}
._2b_c00059{width:183.986667pt;}
._19_c00059{width:197.813333pt;}
._9_c00059{width:594.346667pt;}
.fs2_c00059{font-size:40.000000pt;}
.fs3_c00059{font-size:42.666667pt;}
.fs0_c00059{font-size:50.666667pt;}
.fs1_c00059{font-size:53.333333pt;}
.y0_c00059{bottom:0.000000pt;}
.y2d_c00059{bottom:2.760000pt;}
.y2c_c00059{bottom:6.425204pt;}
.y2b_c00059{bottom:30.520000pt;}
.y2a_c00059{bottom:47.720000pt;}
.y29_c00059{bottom:64.386667pt;}
.y28_c00059{bottom:80.920000pt;}
.y27_c00059{bottom:96.520000pt;}
.y26_c00059{bottom:112.786667pt;}
.y25_c00059{bottom:128.920000pt;}
.y24_c00059{bottom:145.453333pt;}
.y23_c00059{bottom:161.586667pt;}
.y22_c00059{bottom:176.920000pt;}
.y21_c00059{bottom:193.720000pt;}
.y20_c00059{bottom:209.320000pt;}
.y1f_c00059{bottom:225.320000pt;}
.y1e_c00059{bottom:241.186667pt;}
.y1d_c00059{bottom:257.720000pt;}
.y1c_c00059{bottom:272.920000pt;}
.y1b_c00059{bottom:288.520000pt;}
.y1a_c00059{bottom:304.786667pt;}
.y19_c00059{bottom:321.186667pt;}
.y18_c00059{bottom:336.786667pt;}
.y17_c00059{bottom:353.053333pt;}
.y16_c00059{bottom:369.186667pt;}
.y15_c00059{bottom:384.786667pt;}
.y14_c00059{bottom:401.053333pt;}
.y13_c00059{bottom:417.320000pt;}
.y12_c00059{bottom:433.186667pt;}
.y11_c00059{bottom:448.786667pt;}
.y10_c00059{bottom:464.920000pt;}
.yf_c00059{bottom:480.920000pt;}
.ye_c00059{bottom:497.053333pt;}
.yd_c00059{bottom:513.320000pt;}
.yc_c00059{bottom:529.453333pt;}
.yb_c00059{bottom:545.586667pt;}
.ya_c00059{bottom:561.320000pt;}
.y9_c00059{bottom:577.453333pt;}
.y8_c00059{bottom:593.320000pt;}
.y7_c00059{bottom:609.320000pt;}
.y6_c00059{bottom:625.453333pt;}
.y5_c00059{bottom:641.586667pt;}
.y4_c00059{bottom:657.586667pt;}
.y3_c00059{bottom:673.720000pt;}
.y2_c00059{bottom:689.053333pt;}
.y1_c00059{bottom:707.053333pt;}
.h4_c00059{height:11.733399pt;}
.h5_c00059{height:38.937500pt;}
.h2_c00059{height:53.098667pt;}
.h3_c00059{height:55.893333pt;}
.h1_c00059{height:748.000000pt;}
.h0_c00059{height:748.066667pt;}
.w1_c00059{width:93.222667pt;}
.w0_c00059{width:494.666667pt;}
.x0_c00059{left:0.000000pt;}
.x4_c00059{left:18.000000pt;}
.x9_c00059{left:36.266667pt;}
.x8_c00059{left:41.066667pt;}
.xa_c00059{left:42.266667pt;}
.x3_c00059{left:74.666667pt;}
.x2_c00059{left:76.000000pt;}
.x5_c00059{left:77.200000pt;}
.x6_c00059{left:78.933333pt;}
.x7_c00059{left:119.466667pt;}
.x1_c00059{left:169.866667pt;}
.xc_c00059{left:204.501546pt;}
.xb_c00059{left:419.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_24c3b5b0f7bf7f3bf8be538b.woff2')format("woff");}.ff1_c00060{font-family:ff1_c00060;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00060;src:url('chunks/assets/font_085537515426b73c7101b3be.woff2')format("woff");}.ff2_c00060{font-family:ff2_c00060;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00060;src:url('chunks/assets/font_15145716c0813d0889f91862.woff2')format("woff");}.ff3_c00060{font-family:ff3_c00060;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00060;src:url('chunks/assets/font_ad2d3d5e7d1ce5b03149bffd.woff2')format("woff");}.ff4_c00060{font-family:ff4_c00060;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00060;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff5_c00060{font-family:ff5_c00060;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00060{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00060{vertical-align:0.000000px;}
.v1_c00060{vertical-align:1.800000px;}
.ls7_c00060{letter-spacing:-9.000000px;}
.ls8_c00060{letter-spacing:-6.000000px;}
.ls5_c00060{letter-spacing:0.000000px;}
.ls2_c00060{letter-spacing:2.205000px;}
.ls1_c00060{letter-spacing:4.680000px;}
.ls4_c00060{letter-spacing:8.010000px;}
.ls6_c00060{letter-spacing:9.000000px;}
.ls3_c00060{letter-spacing:10.005000px;}
.ls0_c00060{letter-spacing:115.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;}
}
.ws2_c00060{word-spacing:-23.160000px;}
.ws3_c00060{word-spacing:-20.295000px;}
.ws1_c00060{word-spacing:-15.000000px;}
.ws0_c00060{word-spacing:-14.160000px;}
.ws4_c00060{word-spacing:-8.160000px;}
.ws6_c00060{word-spacing:0.000000px;}
.ws5_c00060{word-spacing:5.640000px;}
._1a_c00060{margin-left:-14.760000px;}
._25_c00060{margin-left:-11.520000px;}
._2f_c00060{margin-left:-10.380000px;}
._2b_c00060{margin-left:-9.060000px;}
._36_c00060{margin-left:-6.600000px;}
._27_c00060{margin-left:-5.220000px;}
._19_c00060{margin-left:-3.060000px;}
._3_c00060{margin-left:-1.140000px;}
._0_c00060{width:1.860000px;}
._2_c00060{width:3.180000px;}
._5_c00060{width:4.680000px;}
._4_c00060{width:6.300000px;}
._f_c00060{width:7.320000px;}
._8_c00060{width:8.340000px;}
._1_c00060{width:9.360000px;}
._10_c00060{width:10.800000px;}
._6_c00060{width:12.120000px;}
._12_c00060{width:13.440000px;}
._11_c00060{width:16.200000px;}
._16_c00060{width:17.580000px;}
._1d_c00060{width:19.500000px;}
._a_c00060{width:20.640000px;}
._22_c00060{width:21.840000px;}
._d_c00060{width:23.340000px;}
._9_c00060{width:24.720000px;}
._18_c00060{width:26.340000px;}
._17_c00060{width:27.780000px;}
._c_c00060{width:29.700000px;}
._38_c00060{width:30.945000px;}
._b_c00060{width:32.760000px;}
._28_c00060{width:34.380000px;}
._1f_c00060{width:35.700000px;}
._3f_c00060{width:36.840000px;}
._29_c00060{width:40.080000px;}
._43_c00060{width:41.940000px;}
._1e_c00060{width:45.000000px;}
._37_c00060{width:50.220000px;}
._20_c00060{width:51.240000px;}
._21_c00060{width:53.760000px;}
._35_c00060{width:54.780000px;}
._1b_c00060{width:83.160000px;}
._26_c00060{width:85.380000px;}
._2a_c00060{width:86.400000px;}
._e_c00060{width:87.840000px;}
._15_c00060{width:90.060000px;}
._1c_c00060{width:91.200000px;}
._24_c00060{width:92.340000px;}
._7_c00060{width:93.540000px;}
._23_c00060{width:94.680000px;}
._14_c00060{width:95.700000px;}
._13_c00060{width:97.200000px;}
._33_c00060{width:107.880000px;}
._42_c00060{width:118.800000px;}
._41_c00060{width:120.120000px;}
._44_c00060{width:124.020000px;}
._2d_c00060{width:137.100000px;}
._32_c00060{width:140.700000px;}
._3e_c00060{width:148.680000px;}
._3d_c00060{width:158.340000px;}
._3b_c00060{width:174.720000px;}
._39_c00060{width:197.940000px;}
._34_c00060{width:201.840000px;}
._30_c00060{width:225.540000px;}
._45_c00060{width:235.980000px;}
._3a_c00060{width:260.280000px;}
._3c_c00060{width:278.280000px;}
._40_c00060{width:349.800000px;}
._2c_c00060{width:351.060000px;}
._31_c00060{width:368.820000px;}
._2e_c00060{width:617.880000px;}
.fc2_c00060{color:transparent;}
.fc1_c00060{color:rgb(128,128,128);}
.fc0_c00060{color:rgb(0,0,0);}
.fs1_c00060{font-size:45.000000px;}
.fs4_c00060{font-size:48.000000px;}
.fs0_c00060{font-size:60.000000px;}
.fs2_c00060{font-size:63.000000px;}
.fs3_c00060{font-size:69.000000px;}
.y0_c00060{bottom:0.000000px;}
.y2c_c00060{bottom:3.105000px;}
.y2b_c00060{bottom:7.228355px;}
.y2a_c00060{bottom:32.535000px;}
.y29_c00060{bottom:52.935000px;}
.y28_c00060{bottom:71.385000px;}
.y27_c00060{bottom:89.385000px;}
.y26_c00060{bottom:106.185000px;}
.y25_c00060{bottom:124.785000px;}
.y24_c00060{bottom:150.735000px;}
.y23_c00060{bottom:165.585000px;}
.y22_c00060{bottom:184.635000px;}
.y21_c00060{bottom:202.785000px;}
.y20_c00060{bottom:223.785000px;}
.y1f_c00060{bottom:241.635000px;}
.y1e_c00060{bottom:260.235000px;}
.y1d_c00060{bottom:274.635000px;}
.y1c_c00060{bottom:291.135000px;}
.y1b_c00060{bottom:308.385000px;}
.y1a_c00060{bottom:328.935000px;}
.y19_c00060{bottom:346.635000px;}
.y18_c00060{bottom:365.385000px;}
.y17_c00060{bottom:383.385000px;}
.y16_c00060{bottom:401.535000px;}
.y15_c00060{bottom:419.385000px;}
.y14_c00060{bottom:437.385000px;}
.y13_c00060{bottom:454.935000px;}
.y12_c00060{bottom:473.385000px;}
.y11_c00060{bottom:491.085000px;}
.y10_c00060{bottom:509.235000px;}
.yf_c00060{bottom:526.485000px;}
.ye_c00060{bottom:545.685000px;}
.yd_c00060{bottom:562.635000px;}
.yc_c00060{bottom:580.485000px;}
.yb_c00060{bottom:598.935000px;}
.ya_c00060{bottom:615.885000px;}
.y9_c00060{bottom:634.185000px;}
.y8_c00060{bottom:652.035000px;}
.y7_c00060{bottom:669.585000px;}
.y6_c00060{bottom:687.435000px;}
.y5_c00060{bottom:705.735000px;}
.y4_c00060{bottom:723.285000px;}
.y3_c00060{bottom:741.435000px;}
.y2_c00060{bottom:758.235000px;}
.y1_c00060{bottom:777.135000px;}
.h7_c00060{height:13.200074px;}
.h8_c00060{height:43.804688px;}
.h2_c00060{height:62.880000px;}
.h3_c00060{height:64.020000px;}
.h5_c00060{height:64.680000px;}
.h4_c00060{height:67.221000px;}
.h6_c00060{height:73.623000px;}
.h0_c00060{height:836.175000px;}
.h1_c00060{height:836.250000px;}
.w2_c00060{width:104.875500px;}
.w0_c00060{width:575.925000px;}
.w1_c00060{width:576.000000px;}
.x0_c00060{left:0.000000px;}
.x11_c00060{left:72.600000px;}
.x10_c00060{left:73.950000px;}
.xd_c00060{left:75.300000px;}
.x4_c00060{left:76.650000px;}
.x2_c00060{left:78.000000px;}
.x3_c00060{left:79.200000px;}
.x1_c00060{left:80.250000px;}
.xf_c00060{left:93.150000px;}
.xa_c00060{left:95.850000px;}
.x6_c00060{left:105.300000px;}
.xe_c00060{left:106.350000px;}
.x9_c00060{left:112.350000px;}
.x8_c00060{left:132.000000px;}
.x7_c00060{left:136.650000px;}
.xc_c00060{left:162.450000px;}
.x13_c00060{left:239.776749px;}
.xb_c00060{left:294.600000px;}
.x5_c00060{left:296.100000px;}
.x12_c00060{left:403.050000px;}
@media print{
.v0_c00060{vertical-align:0.000000pt;}
.v1_c00060{vertical-align:1.600000pt;}
.ls7_c00060{letter-spacing:-8.000000pt;}
.ls8_c00060{letter-spacing:-5.333333pt;}
.ls5_c00060{letter-spacing:0.000000pt;}
.ls2_c00060{letter-spacing:1.960000pt;}
.ls1_c00060{letter-spacing:4.160000pt;}
.ls4_c00060{letter-spacing:7.120000pt;}
.ls6_c00060{letter-spacing:8.000000pt;}
.ls3_c00060{letter-spacing:8.893333pt;}
.ls0_c00060{letter-spacing:102.933333pt;}
.ws2_c00060{word-spacing:-20.586667pt;}
.ws3_c00060{word-spacing:-18.040000pt;}
.ws1_c00060{word-spacing:-13.333333pt;}
.ws0_c00060{word-spacing:-12.586667pt;}
.ws4_c00060{word-spacing:-7.253333pt;}
.ws6_c00060{word-spacing:0.000000pt;}
.ws5_c00060{word-spacing:5.013333pt;}
._1a_c00060{margin-left:-13.120000pt;}
._25_c00060{margin-left:-10.240000pt;}
._2f_c00060{margin-left:-9.226667pt;}
._2b_c00060{margin-left:-8.053333pt;}
._36_c00060{margin-left:-5.866667pt;}
._27_c00060{margin-left:-4.640000pt;}
._19_c00060{margin-left:-2.720000pt;}
._3_c00060{margin-left:-1.013333pt;}
._0_c00060{width:1.653333pt;}
._2_c00060{width:2.826667pt;}
._5_c00060{width:4.160000pt;}
._4_c00060{width:5.600000pt;}
._f_c00060{width:6.506667pt;}
._8_c00060{width:7.413333pt;}
._1_c00060{width:8.320000pt;}
._10_c00060{width:9.600000pt;}
._6_c00060{width:10.773333pt;}
._12_c00060{width:11.946667pt;}
._11_c00060{width:14.400000pt;}
._16_c00060{width:15.626667pt;}
._1d_c00060{width:17.333333pt;}
._a_c00060{width:18.346667pt;}
._22_c00060{width:19.413333pt;}
._d_c00060{width:20.746667pt;}
._9_c00060{width:21.973333pt;}
._18_c00060{width:23.413333pt;}
._17_c00060{width:24.693333pt;}
._c_c00060{width:26.400000pt;}
._38_c00060{width:27.506667pt;}
._b_c00060{width:29.120000pt;}
._28_c00060{width:30.560000pt;}
._1f_c00060{width:31.733333pt;}
._3f_c00060{width:32.746667pt;}
._29_c00060{width:35.626667pt;}
._43_c00060{width:37.280000pt;}
._1e_c00060{width:40.000000pt;}
._37_c00060{width:44.640000pt;}
._20_c00060{width:45.546667pt;}
._21_c00060{width:47.786667pt;}
._35_c00060{width:48.693333pt;}
._1b_c00060{width:73.920000pt;}
._26_c00060{width:75.893333pt;}
._2a_c00060{width:76.800000pt;}
._e_c00060{width:78.080000pt;}
._15_c00060{width:80.053333pt;}
._1c_c00060{width:81.066667pt;}
._24_c00060{width:82.080000pt;}
._7_c00060{width:83.146667pt;}
._23_c00060{width:84.160000pt;}
._14_c00060{width:85.066667pt;}
._13_c00060{width:86.400000pt;}
._33_c00060{width:95.893333pt;}
._42_c00060{width:105.600000pt;}
._41_c00060{width:106.773333pt;}
._44_c00060{width:110.240000pt;}
._2d_c00060{width:121.866667pt;}
._32_c00060{width:125.066667pt;}
._3e_c00060{width:132.160000pt;}
._3d_c00060{width:140.746667pt;}
._3b_c00060{width:155.306667pt;}
._39_c00060{width:175.946667pt;}
._34_c00060{width:179.413333pt;}
._30_c00060{width:200.480000pt;}
._45_c00060{width:209.760000pt;}
._3a_c00060{width:231.360000pt;}
._3c_c00060{width:247.360000pt;}
._40_c00060{width:310.933333pt;}
._2c_c00060{width:312.053333pt;}
._31_c00060{width:327.840000pt;}
._2e_c00060{width:549.226667pt;}
.fs1_c00060{font-size:40.000000pt;}
.fs4_c00060{font-size:42.666667pt;}
.fs0_c00060{font-size:53.333333pt;}
.fs2_c00060{font-size:56.000000pt;}
.fs3_c00060{font-size:61.333333pt;}
.y0_c00060{bottom:0.000000pt;}
.y2c_c00060{bottom:2.760000pt;}
.y2b_c00060{bottom:6.425204pt;}
.y2a_c00060{bottom:28.920000pt;}
.y29_c00060{bottom:47.053333pt;}
.y28_c00060{bottom:63.453333pt;}
.y27_c00060{bottom:79.453333pt;}
.y26_c00060{bottom:94.386667pt;}
.y25_c00060{bottom:110.920000pt;}
.y24_c00060{bottom:133.986667pt;}
.y23_c00060{bottom:147.186667pt;}
.y22_c00060{bottom:164.120000pt;}
.y21_c00060{bottom:180.253333pt;}
.y20_c00060{bottom:198.920000pt;}
.y1f_c00060{bottom:214.786667pt;}
.y1e_c00060{bottom:231.320000pt;}
.y1d_c00060{bottom:244.120000pt;}
.y1c_c00060{bottom:258.786667pt;}
.y1b_c00060{bottom:274.120000pt;}
.y1a_c00060{bottom:292.386667pt;}
.y19_c00060{bottom:308.120000pt;}
.y18_c00060{bottom:324.786667pt;}
.y17_c00060{bottom:340.786667pt;}
.y16_c00060{bottom:356.920000pt;}
.y15_c00060{bottom:372.786667pt;}
.y14_c00060{bottom:388.786667pt;}
.y13_c00060{bottom:404.386667pt;}
.y12_c00060{bottom:420.786667pt;}
.y11_c00060{bottom:436.520000pt;}
.y10_c00060{bottom:452.653333pt;}
.yf_c00060{bottom:467.986667pt;}
.ye_c00060{bottom:485.053333pt;}
.yd_c00060{bottom:500.120000pt;}
.yc_c00060{bottom:515.986667pt;}
.yb_c00060{bottom:532.386667pt;}
.ya_c00060{bottom:547.453333pt;}
.y9_c00060{bottom:563.720000pt;}
.y8_c00060{bottom:579.586667pt;}
.y7_c00060{bottom:595.186667pt;}
.y6_c00060{bottom:611.053333pt;}
.y5_c00060{bottom:627.320000pt;}
.y4_c00060{bottom:642.920000pt;}
.y3_c00060{bottom:659.053333pt;}
.y2_c00060{bottom:673.986667pt;}
.y1_c00060{bottom:690.786667pt;}
.h7_c00060{height:11.733399pt;}
.h8_c00060{height:38.937500pt;}
.h2_c00060{height:55.893333pt;}
.h3_c00060{height:56.906667pt;}
.h5_c00060{height:57.493333pt;}
.h4_c00060{height:59.752000pt;}
.h6_c00060{height:65.442667pt;}
.h0_c00060{height:743.266667pt;}
.h1_c00060{height:743.333333pt;}
.w2_c00060{width:93.222667pt;}
.w0_c00060{width:511.933333pt;}
.w1_c00060{width:512.000000pt;}
.x0_c00060{left:0.000000pt;}
.x11_c00060{left:64.533333pt;}
.x10_c00060{left:65.733333pt;}
.xd_c00060{left:66.933333pt;}
.x4_c00060{left:68.133333pt;}
.x2_c00060{left:69.333333pt;}
.x3_c00060{left:70.400000pt;}
.x1_c00060{left:71.333333pt;}
.xf_c00060{left:82.800000pt;}
.xa_c00060{left:85.200000pt;}
.x6_c00060{left:93.600000pt;}
.xe_c00060{left:94.533333pt;}
.x9_c00060{left:99.866667pt;}
.x8_c00060{left:117.333333pt;}
.x7_c00060{left:121.466667pt;}
.xc_c00060{left:144.400000pt;}
.x13_c00060{left:213.134888pt;}
.xb_c00060{left:261.866667pt;}
.x5_c00060{left:263.200000pt;}
.x12_c00060{left:358.266667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e3fb68973d841cfcc0a11d16.woff2')format("woff");}.ff1_c00061{font-family:ff1_c00061;line-height:1.437000;font-style:normal;font-weight:normal;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_b84307118806a2df2e6015c1.woff2')format("woff");}.ff2_c00061{font-family:ff2_c00061;line-height:1.575000;font-style:normal;font-weight:normal;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_94c1a4e4f54bea690454b752.woff2')format("woff");}.ff3_c00061{font-family:ff3_c00061;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00061;src:url('chunks/assets/font_5b65f4100bd88a824da5c23d.woff2')format("woff");}.ff4_c00061{font-family:ff4_c00061;line-height:1.575000;font-style:normal;font-weight:normal;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_1b5cb2bbc39f32b749df18d2.woff2')format("woff");}.ff5_c00061{font-family:ff5_c00061;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00061;src:url('chunks/assets/font_197cd83f95ae415900c368b6.woff2')format("woff");}.ff6_c00061{font-family:ff6_c00061;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00061;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff7_c00061{font-family:ff7_c00061;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00061{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00061{vertical-align:0.000000px;}
.ls5_c00061{letter-spacing:-6.000000px;}
.ls3_c00061{letter-spacing:0.000000px;}
.ls1_c00061{letter-spacing:7.080000px;}
.ls2_c00061{letter-spacing:13.608000px;}
.ls4_c00061{letter-spacing:15.000000px;}
.ls0_c00061{letter-spacing:22.950000px;}
.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;}
}
.ws1_c00061{word-spacing:-33.189000px;}
.ws0_c00061{word-spacing:-30.060000px;}
.ws6_c00061{word-spacing:-29.700000px;}
.ws5_c00061{word-spacing:-23.760000px;}
.ws2_c00061{word-spacing:-17.250000px;}
.ws3_c00061{word-spacing:-15.060000px;}
.ws4_c00061{word-spacing:-14.160000px;}
.ws7_c00061{word-spacing:0.000000px;}
._1f_c00061{margin-left:-15.000000px;}
._1b_c00061{margin-left:-12.300000px;}
._1c_c00061{margin-left:-10.020000px;}
._20_c00061{margin-left:-7.380000px;}
._21_c00061{margin-left:-6.180000px;}
._8_c00061{margin-left:-5.037000px;}
._11_c00061{margin-left:-3.540000px;}
._14_c00061{margin-left:-2.325000px;}
._d_c00061{margin-left:-1.035000px;}
._6_c00061{width:1.080000px;}
._7_c00061{width:2.100000px;}
._5_c00061{width:3.180000px;}
._2_c00061{width:5.100000px;}
._4_c00061{width:6.960000px;}
._3_c00061{width:8.280000px;}
._0_c00061{width:10.020000px;}
._a_c00061{width:11.040000px;}
._19_c00061{width:12.180000px;}
._9_c00061{width:13.260000px;}
._e_c00061{width:16.200000px;}
._f_c00061{width:17.340000px;}
._c_c00061{width:18.348000px;}
._b_c00061{width:20.580000px;}
._1e_c00061{width:21.720000px;}
._10_c00061{width:22.860000px;}
._1a_c00061{width:24.240000px;}
._2b_c00061{width:25.320000px;}
._16_c00061{width:26.340000px;}
._2a_c00061{width:27.720000px;}
._13_c00061{width:29.040000px;}
._12_c00061{width:30.660000px;}
._15_c00061{width:32.610000px;}
._18_c00061{width:33.960000px;}
._17_c00061{width:37.020000px;}
._22_c00061{width:38.052000px;}
._24_c00061{width:39.165000px;}
._27_c00061{width:40.170000px;}
._29_c00061{width:43.680000px;}
._2c_c00061{width:46.440000px;}
._28_c00061{width:48.270000px;}
._26_c00061{width:50.640000px;}
._2e_c00061{width:56.745000px;}
._23_c00061{width:62.280000px;}
._25_c00061{width:80.880000px;}
._2d_c00061{width:82.020000px;}
._1d_c00061{width:96.120000px;}
._1_c00061{width:324.780000px;}
.fc2_c00061{color:transparent;}
.fc1_c00061{color:rgb(128,128,128);}
.fc0_c00061{color:rgb(0,0,0);}
.fs2_c00061{font-size:48.000000px;}
.fs0_c00061{font-size:60.000000px;}
.fs1_c00061{font-size:69.000000px;}
.y0_c00061{bottom:0.000000px;}
.y4b_c00061{bottom:3.105000px;}
.y4a_c00061{bottom:7.228355px;}
.y49_c00061{bottom:38.685000px;}
.y2a_c00061{bottom:56.385000px;}
.y48_c00061{bottom:75.135000px;}
.y29_c00061{bottom:75.885000px;}
.y47_c00061{bottom:93.435000px;}
.y28_c00061{bottom:94.035000px;}
.y27_c00061{bottom:111.735000px;}
.y46_c00061{bottom:112.035000px;}
.y26_c00061{bottom:130.485000px;}
.y25_c00061{bottom:148.185000px;}
.y45_c00061{bottom:149.085000px;}
.y24_c00061{bottom:166.635000px;}
.y23_c00061{bottom:184.935000px;}
.y44_c00061{bottom:185.535000px;}
.y22_c00061{bottom:203.085000px;}
.y43_c00061{bottom:221.385000px;}
.y21_c00061{bottom:221.685000px;}
.y20_c00061{bottom:239.835000px;}
.y42_c00061{bottom:240.285000px;}
.y1f_c00061{bottom:257.835000px;}
.y1e_c00061{bottom:275.385000px;}
.y41_c00061{bottom:276.435000px;}
.y1d_c00061{bottom:293.535000px;}
.y40_c00061{bottom:295.185000px;}
.y1c_c00061{bottom:311.535000px;}
.y3f_c00061{bottom:312.435000px;}
.y1b_c00061{bottom:329.685000px;}
.y3e_c00061{bottom:331.035000px;}
.y1a_c00061{bottom:347.985000px;}
.y3d_c00061{bottom:349.185000px;}
.y3c_c00061{bottom:366.585000px;}
.y19_c00061{bottom:366.885000px;}
.y18_c00061{bottom:384.435000px;}
.y3b_c00061{bottom:384.735000px;}
.y17_c00061{bottom:401.985000px;}
.y3a_c00061{bottom:402.885000px;}
.y16_c00061{bottom:420.135000px;}
.y39_c00061{bottom:421.485000px;}
.y15_c00061{bottom:438.435000px;}
.y38_c00061{bottom:439.785000px;}
.y14_c00061{bottom:456.585000px;}
.y37_c00061{bottom:457.335000px;}
.y13_c00061{bottom:474.135000px;}
.y36_c00061{bottom:475.185000px;}
.y12_c00061{bottom:492.285000px;}
.y35_c00061{bottom:492.735000px;}
.y11_c00061{bottom:511.185000px;}
.y10_c00061{bottom:528.435000px;}
.y34_c00061{bottom:528.735000px;}
.yf_c00061{bottom:546.285000px;}
.y33_c00061{bottom:564.285000px;}
.ye_c00061{bottom:565.335000px;}
.yd_c00061{bottom:582.735000px;}
.yc_c00061{bottom:600.735000px;}
.y32_c00061{bottom:618.435000px;}
.yb_c00061{bottom:618.885000px;}
.y31_c00061{bottom:636.735000px;}
.ya_c00061{bottom:637.185000px;}
.y9_c00061{bottom:654.435000px;}
.y30_c00061{bottom:655.035000px;}
.y2f_c00061{bottom:671.835000px;}
.y8_c00061{bottom:672.885000px;}
.y7_c00061{bottom:690.885000px;}
.y2e_c00061{bottom:691.485000px;}
.y6_c00061{bottom:709.335000px;}
.y2d_c00061{bottom:709.785000px;}
.y5_c00061{bottom:727.185000px;}
.y2c_c00061{bottom:727.635000px;}
.y4_c00061{bottom:745.785000px;}
.y3_c00061{bottom:763.785000px;}
.y2b_c00061{bottom:782.235000px;}
.y2_c00061{bottom:784.035000px;}
.y1_c00061{bottom:803.235000px;}
.h6_c00061{height:13.200074px;}
.h7_c00061{height:43.804688px;}
.h2_c00061{height:62.880000px;}
.h5_c00061{height:63.480000px;}
.h3_c00061{height:73.623000px;}
.h4_c00061{height:74.796000px;}
.h1_c00061{height:841.500000px;}
.h0_c00061{height:841.575000px;}
.w1_c00061{width:104.875500px;}
.w0_c00061{width:556.500000px;}
.x0_c00061{left:0.000000px;}
.x3_c00061{left:66.750000px;}
.x2_c00061{left:67.800000px;}
.x4_c00061{left:68.850000px;}
.x5_c00061{left:70.200000px;}
.x1_c00061{left:71.850000px;}
.xd_c00061{left:230.064240px;}
.x6_c00061{left:282.450000px;}
.x7_c00061{left:285.900000px;}
.x8_c00061{left:287.100000px;}
.xa_c00061{left:288.600000px;}
.xb_c00061{left:289.950000px;}
.x9_c00061{left:305.700000px;}
.xc_c00061{left:467.400000px;}
@media print{
.v0_c00061{vertical-align:0.000000pt;}
.ls5_c00061{letter-spacing:-5.333333pt;}
.ls3_c00061{letter-spacing:0.000000pt;}
.ls1_c00061{letter-spacing:6.293333pt;}
.ls2_c00061{letter-spacing:12.096000pt;}
.ls4_c00061{letter-spacing:13.333333pt;}
.ls0_c00061{letter-spacing:20.400000pt;}
.ws1_c00061{word-spacing:-29.501333pt;}
.ws0_c00061{word-spacing:-26.720000pt;}
.ws6_c00061{word-spacing:-26.400000pt;}
.ws5_c00061{word-spacing:-21.120000pt;}
.ws2_c00061{word-spacing:-15.333333pt;}
.ws3_c00061{word-spacing:-13.386667pt;}
.ws4_c00061{word-spacing:-12.586667pt;}
.ws7_c00061{word-spacing:0.000000pt;}
._1f_c00061{margin-left:-13.333333pt;}
._1b_c00061{margin-left:-10.933333pt;}
._1c_c00061{margin-left:-8.906667pt;}
._20_c00061{margin-left:-6.560000pt;}
._21_c00061{margin-left:-5.493333pt;}
._8_c00061{margin-left:-4.477333pt;}
._11_c00061{margin-left:-3.146667pt;}
._14_c00061{margin-left:-2.066667pt;}
._d_c00061{margin-left:-0.920000pt;}
._6_c00061{width:0.960000pt;}
._7_c00061{width:1.866667pt;}
._5_c00061{width:2.826667pt;}
._2_c00061{width:4.533333pt;}
._4_c00061{width:6.186667pt;}
._3_c00061{width:7.360000pt;}
._0_c00061{width:8.906667pt;}
._a_c00061{width:9.813333pt;}
._19_c00061{width:10.826667pt;}
._9_c00061{width:11.786667pt;}
._e_c00061{width:14.400000pt;}
._f_c00061{width:15.413333pt;}
._c_c00061{width:16.309333pt;}
._b_c00061{width:18.293333pt;}
._1e_c00061{width:19.306667pt;}
._10_c00061{width:20.320000pt;}
._1a_c00061{width:21.546667pt;}
._2b_c00061{width:22.506667pt;}
._16_c00061{width:23.413333pt;}
._2a_c00061{width:24.640000pt;}
._13_c00061{width:25.813333pt;}
._12_c00061{width:27.253333pt;}
._15_c00061{width:28.986667pt;}
._18_c00061{width:30.186667pt;}
._17_c00061{width:32.906667pt;}
._22_c00061{width:33.824000pt;}
._24_c00061{width:34.813333pt;}
._27_c00061{width:35.706667pt;}
._29_c00061{width:38.826667pt;}
._2c_c00061{width:41.280000pt;}
._28_c00061{width:42.906667pt;}
._26_c00061{width:45.013333pt;}
._2e_c00061{width:50.440000pt;}
._23_c00061{width:55.360000pt;}
._25_c00061{width:71.893333pt;}
._2d_c00061{width:72.906667pt;}
._1d_c00061{width:85.440000pt;}
._1_c00061{width:288.693333pt;}
.fs2_c00061{font-size:42.666667pt;}
.fs0_c00061{font-size:53.333333pt;}
.fs1_c00061{font-size:61.333333pt;}
.y0_c00061{bottom:0.000000pt;}
.y4b_c00061{bottom:2.760000pt;}
.y4a_c00061{bottom:6.425204pt;}
.y49_c00061{bottom:34.386667pt;}
.y2a_c00061{bottom:50.120000pt;}
.y48_c00061{bottom:66.786667pt;}
.y29_c00061{bottom:67.453333pt;}
.y47_c00061{bottom:83.053333pt;}
.y28_c00061{bottom:83.586667pt;}
.y27_c00061{bottom:99.320000pt;}
.y46_c00061{bottom:99.586667pt;}
.y26_c00061{bottom:115.986667pt;}
.y25_c00061{bottom:131.720000pt;}
.y45_c00061{bottom:132.520000pt;}
.y24_c00061{bottom:148.120000pt;}
.y23_c00061{bottom:164.386667pt;}
.y44_c00061{bottom:164.920000pt;}
.y22_c00061{bottom:180.520000pt;}
.y43_c00061{bottom:196.786667pt;}
.y21_c00061{bottom:197.053333pt;}
.y20_c00061{bottom:213.186667pt;}
.y42_c00061{bottom:213.586667pt;}
.y1f_c00061{bottom:229.186667pt;}
.y1e_c00061{bottom:244.786667pt;}
.y41_c00061{bottom:245.720000pt;}
.y1d_c00061{bottom:260.920000pt;}
.y40_c00061{bottom:262.386667pt;}
.y1c_c00061{bottom:276.920000pt;}
.y3f_c00061{bottom:277.720000pt;}
.y1b_c00061{bottom:293.053333pt;}
.y3e_c00061{bottom:294.253333pt;}
.y1a_c00061{bottom:309.320000pt;}
.y3d_c00061{bottom:310.386667pt;}
.y3c_c00061{bottom:325.853333pt;}
.y19_c00061{bottom:326.120000pt;}
.y18_c00061{bottom:341.720000pt;}
.y3b_c00061{bottom:341.986667pt;}
.y17_c00061{bottom:357.320000pt;}
.y3a_c00061{bottom:358.120000pt;}
.y16_c00061{bottom:373.453333pt;}
.y39_c00061{bottom:374.653333pt;}
.y15_c00061{bottom:389.720000pt;}
.y38_c00061{bottom:390.920000pt;}
.y14_c00061{bottom:405.853333pt;}
.y37_c00061{bottom:406.520000pt;}
.y13_c00061{bottom:421.453333pt;}
.y36_c00061{bottom:422.386667pt;}
.y12_c00061{bottom:437.586667pt;}
.y35_c00061{bottom:437.986667pt;}
.y11_c00061{bottom:454.386667pt;}
.y10_c00061{bottom:469.720000pt;}
.y34_c00061{bottom:469.986667pt;}
.yf_c00061{bottom:485.586667pt;}
.y33_c00061{bottom:501.586667pt;}
.ye_c00061{bottom:502.520000pt;}
.yd_c00061{bottom:517.986667pt;}
.yc_c00061{bottom:533.986667pt;}
.y32_c00061{bottom:549.720000pt;}
.yb_c00061{bottom:550.120000pt;}
.y31_c00061{bottom:565.986667pt;}
.ya_c00061{bottom:566.386667pt;}
.y9_c00061{bottom:581.720000pt;}
.y30_c00061{bottom:582.253333pt;}
.y2f_c00061{bottom:597.186667pt;}
.y8_c00061{bottom:598.120000pt;}
.y7_c00061{bottom:614.120000pt;}
.y2e_c00061{bottom:614.653333pt;}
.y6_c00061{bottom:630.520000pt;}
.y2d_c00061{bottom:630.920000pt;}
.y5_c00061{bottom:646.386667pt;}
.y2c_c00061{bottom:646.786667pt;}
.y4_c00061{bottom:662.920000pt;}
.y3_c00061{bottom:678.920000pt;}
.y2b_c00061{bottom:695.320000pt;}
.y2_c00061{bottom:696.920000pt;}
.y1_c00061{bottom:713.986667pt;}
.h6_c00061{height:11.733399pt;}
.h7_c00061{height:38.937500pt;}
.h2_c00061{height:55.893333pt;}
.h5_c00061{height:56.426667pt;}
.h3_c00061{height:65.442667pt;}
.h4_c00061{height:66.485333pt;}
.h1_c00061{height:748.000000pt;}
.h0_c00061{height:748.066667pt;}
.w1_c00061{width:93.222667pt;}
.w0_c00061{width:494.666667pt;}
.x0_c00061{left:0.000000pt;}
.x3_c00061{left:59.333333pt;}
.x2_c00061{left:60.266667pt;}
.x4_c00061{left:61.200000pt;}
.x5_c00061{left:62.400000pt;}
.x1_c00061{left:63.866667pt;}
.xd_c00061{left:204.501546pt;}
.x6_c00061{left:251.066667pt;}
.x7_c00061{left:254.133333pt;}
.x8_c00061{left:255.200000pt;}
.xa_c00061{left:256.533333pt;}
.xb_c00061{left:257.733333pt;}
.x9_c00061{left:271.733333pt;}
.xc_c00061{left:415.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_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_33c8334d5cb5bafc02450851.woff2')format("woff");}.ff1_c00062{font-family:ff1_c00062;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00062;src:url('chunks/assets/font_a4b7bc6b33ddc0270756e3d9.woff2')format("woff");}.ff2_c00062{font-family:ff2_c00062;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00062;src:url('chunks/assets/font_3f1a74e7d8d52a571d9a4824.woff2')format("woff");}.ff3_c00062{font-family:ff3_c00062;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00062;src:url('chunks/assets/font_a8b64c226e15b05ed2161b9e.woff2')format("woff");}.ff4_c00062{font-family:ff4_c00062;line-height:1.575000;font-style:normal;font-weight:normal;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_2e79535055a5fdbef3707dd7.woff2')format("woff");}.ff5_c00062{font-family:ff5_c00062;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00062;src:url('chunks/assets/font_fe6b55aaa3d644d2b501a546.woff2')format("woff");}.ff6_c00062{font-family:ff6_c00062;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00062;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff7_c00062{font-family:ff7_c00062;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00062{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00062{vertical-align:0.000000px;}
.ls7_c00062{letter-spacing:0.000000px;}
.ls2_c00062{letter-spacing:1.605000px;}
.ls3_c00062{letter-spacing:3.000000px;}
.ls1_c00062{letter-spacing:4.800000px;}
.ls8_c00062{letter-spacing:6.000000px;}
.ls6_c00062{letter-spacing:6.450000px;}
.ls9_c00062{letter-spacing:9.000000px;}
.ls5_c00062{letter-spacing:11.070000px;}
.ls0_c00062{letter-spacing:14.640000px;}
.ls4_c00062{letter-spacing:16.860000px;}
.sc__c00062{text-shadow:none;}
.sc0_c00062{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00062{-webkit-text-stroke:0px transparent;}
.sc0_c00062{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00062{word-spacing:-35.295000px;}
.ws4_c00062{word-spacing:-24.750000px;}
.ws3_c00062{word-spacing:-15.750000px;}
.ws2_c00062{word-spacing:-14.160000px;}
.ws5_c00062{word-spacing:0.000000px;}
.ws0_c00062{word-spacing:4.140000px;}
._31_c00062{margin-left:-15.027000px;}
._21_c00062{margin-left:-12.960000px;}
._38_c00062{margin-left:-11.943000px;}
._16_c00062{margin-left:-6.480000px;}
._f_c00062{margin-left:-4.860000px;}
._e_c00062{margin-left:-3.360000px;}
._8_c00062{margin-left:-1.500000px;}
._0_c00062{width:1.440000px;}
._1_c00062{width:3.360000px;}
._3_c00062{width:4.500000px;}
._c_c00062{width:5.640000px;}
._a_c00062{width:7.140000px;}
._2_c00062{width:8.640000px;}
._9_c00062{width:9.900000px;}
._b_c00062{width:11.280000px;}
._13_c00062{width:13.140000px;}
._2a_c00062{width:14.538000px;}
._1a_c00062{width:15.540000px;}
._5_c00062{width:16.560000px;}
._27_c00062{width:18.123000px;}
._6_c00062{width:19.680000px;}
._d_c00062{width:20.760000px;}
._20_c00062{width:21.900000px;}
._1c_c00062{width:23.760000px;}
._15_c00062{width:24.780000px;}
._7_c00062{width:26.100000px;}
._28_c00062{width:27.441000px;}
._10_c00062{width:28.560000px;}
._1f_c00062{width:30.600000px;}
._37_c00062{width:31.947000px;}
._12_c00062{width:33.120000px;}
._4_c00062{width:34.740000px;}
._2b_c00062{width:36.117000px;}
._11_c00062{width:38.040000px;}
._1d_c00062{width:39.120000px;}
._14_c00062{width:40.560000px;}
._33_c00062{width:41.859000px;}
._22_c00062{width:44.280000px;}
._18_c00062{width:45.720000px;}
._24_c00062{width:47.016000px;}
._2c_c00062{width:50.022000px;}
._1e_c00062{width:51.300000px;}
._23_c00062{width:53.181000px;}
._2d_c00062{width:55.395000px;}
._29_c00062{width:56.475000px;}
._36_c00062{width:57.525000px;}
._35_c00062{width:58.749000px;}
._25_c00062{width:62.142000px;}
._26_c00062{width:63.384000px;}
._32_c00062{width:68.973000px;}
._2e_c00062{width:70.242000px;}
._30_c00062{width:71.415000px;}
._34_c00062{width:73.434000px;}
._2f_c00062{width:74.730000px;}
._17_c00062{width:76.320000px;}
._1b_c00062{width:98.700000px;}
._19_c00062{width:105.840000px;}
._39_c00062{width:121.653000px;}
.fc2_c00062{color:transparent;}
.fc1_c00062{color:rgb(128,128,128);}
.fc0_c00062{color:rgb(0,0,0);}
.fs1_c00062{font-size:45.000000px;}
.fs3_c00062{font-size:48.000000px;}
.fs0_c00062{font-size:60.000000px;}
.fs2_c00062{font-size:63.000000px;}
.y0_c00062{bottom:0.000000px;}
.y53_c00062{bottom:3.105000px;}
.y52_c00062{bottom:7.228355px;}
.y51_c00062{bottom:39.135000px;}
.y50_c00062{bottom:57.585000px;}
.y29_c00062{bottom:59.685000px;}
.y4f_c00062{bottom:76.485000px;}
.y28_c00062{bottom:77.985000px;}
.y4e_c00062{bottom:94.185000px;}
.y27_c00062{bottom:96.885000px;}
.y4d_c00062{bottom:112.335000px;}
.y26_c00062{bottom:113.985000px;}
.y4c_c00062{bottom:130.485000px;}
.y25_c00062{bottom:132.285000px;}
.y4b_c00062{bottom:148.035000px;}
.y24_c00062{bottom:150.135000px;}
.y4a_c00062{bottom:166.785000px;}
.y23_c00062{bottom:168.735000px;}
.y49_c00062{bottom:184.935000px;}
.y22_c00062{bottom:186.885000px;}
.y48_c00062{bottom:203.085000px;}
.y21_c00062{bottom:205.185000px;}
.y47_c00062{bottom:221.085000px;}
.y20_c00062{bottom:223.035000px;}
.y46_c00062{bottom:239.535000px;}
.y1f_c00062{bottom:241.335000px;}
.y45_c00062{bottom:258.135000px;}
.y1e_c00062{bottom:259.785000px;}
.y44_c00062{bottom:275.985000px;}
.y1d_c00062{bottom:276.735000px;}
.y43_c00062{bottom:294.285000px;}
.y1c_c00062{bottom:296.235000px;}
.y42_c00062{bottom:312.435000px;}
.y1b_c00062{bottom:314.235000px;}
.y41_c00062{bottom:330.435000px;}
.y1a_c00062{bottom:330.735000px;}
.y40_c00062{bottom:348.885000px;}
.y19_c00062{bottom:350.235000px;}
.y3f_c00062{bottom:366.735000px;}
.y18_c00062{bottom:368.235000px;}
.y3e_c00062{bottom:384.735000px;}
.y17_c00062{bottom:386.985000px;}
.y3d_c00062{bottom:403.185000px;}
.y16_c00062{bottom:404.535000px;}
.y3c_c00062{bottom:421.185000px;}
.y15_c00062{bottom:423.135000px;}
.y3b_c00062{bottom:439.335000px;}
.y14_c00062{bottom:441.135000px;}
.y3a_c00062{bottom:457.185000px;}
.y13_c00062{bottom:457.935000px;}
.y39_c00062{bottom:475.185000px;}
.y12_c00062{bottom:475.785000px;}
.y38_c00062{bottom:493.335000px;}
.y11_c00062{bottom:493.635000px;}
.y10_c00062{bottom:511.335000px;}
.y37_c00062{bottom:511.635000px;}
.y36_c00062{bottom:529.485000px;}
.yf_c00062{bottom:529.785000px;}
.ye_c00062{bottom:547.785000px;}
.yd_c00062{bottom:565.335000px;}
.y35_c00062{bottom:565.935000px;}
.yc_c00062{bottom:583.785000px;}
.y34_c00062{bottom:584.085000px;}
.yb_c00062{bottom:602.085000px;}
.ya_c00062{bottom:619.335000px;}
.y33_c00062{bottom:619.935000px;}
.y32_c00062{bottom:638.085000px;}
.y9_c00062{bottom:638.235000px;}
.y8_c00062{bottom:655.785000px;}
.y31_c00062{bottom:656.085000px;}
.y7_c00062{bottom:673.935000px;}
.y30_c00062{bottom:674.235000px;}
.y6_c00062{bottom:691.485000px;}
.y2f_c00062{bottom:692.235000px;}
.y5_c00062{bottom:709.335000px;}
.y2e_c00062{bottom:710.385000px;}
.y4_c00062{bottom:727.185000px;}
.y2d_c00062{bottom:728.535000px;}
.y3_c00062{bottom:744.735000px;}
.y2c_c00062{bottom:746.535000px;}
.y2_c00062{bottom:763.035000px;}
.y2b_c00062{bottom:764.985000px;}
.y1_c00062{bottom:781.335000px;}
.y2a_c00062{bottom:782.535000px;}
.h5_c00062{height:13.200074px;}
.h6_c00062{height:43.804688px;}
.h2_c00062{height:62.880000px;}
.h3_c00062{height:64.020000px;}
.h4_c00062{height:67.221000px;}
.h0_c00062{height:836.175000px;}
.h1_c00062{height:836.250000px;}
.w2_c00062{width:104.875500px;}
.w0_c00062{width:575.925000px;}
.w1_c00062{width:576.000000px;}
.x0_c00062{left:0.000000px;}
.x9_c00062{left:19.350000px;}
.x2_c00062{left:20.550000px;}
.x4_c00062{left:74.250000px;}
.x3_c00062{left:77.700000px;}
.x5_c00062{left:79.650000px;}
.x1_c00062{left:80.700000px;}
.x7_c00062{left:82.050000px;}
.x8_c00062{left:83.100000px;}
.x6_c00062{left:147.450000px;}
.x12_c00062{left:239.776749px;}
.xa_c00062{left:298.650000px;}
.xb_c00062{left:300.000000px;}
.xc_c00062{left:301.500000px;}
.xe_c00062{left:302.700000px;}
.xd_c00062{left:303.750000px;}
.xf_c00062{left:305.100000px;}
.x10_c00062{left:306.150000px;}
.x11_c00062{left:393.900000px;}
@media print{
.v0_c00062{vertical-align:0.000000pt;}
.ls7_c00062{letter-spacing:0.000000pt;}
.ls2_c00062{letter-spacing:1.426667pt;}
.ls3_c00062{letter-spacing:2.666667pt;}
.ls1_c00062{letter-spacing:4.266667pt;}
.ls8_c00062{letter-spacing:5.333333pt;}
.ls6_c00062{letter-spacing:5.733333pt;}
.ls9_c00062{letter-spacing:8.000000pt;}
.ls5_c00062{letter-spacing:9.840000pt;}
.ls0_c00062{letter-spacing:13.013333pt;}
.ls4_c00062{letter-spacing:14.986667pt;}
.ws1_c00062{word-spacing:-31.373333pt;}
.ws4_c00062{word-spacing:-22.000000pt;}
.ws3_c00062{word-spacing:-14.000000pt;}
.ws2_c00062{word-spacing:-12.586667pt;}
.ws5_c00062{word-spacing:0.000000pt;}
.ws0_c00062{word-spacing:3.680000pt;}
._31_c00062{margin-left:-13.357333pt;}
._21_c00062{margin-left:-11.520000pt;}
._38_c00062{margin-left:-10.616000pt;}
._16_c00062{margin-left:-5.760000pt;}
._f_c00062{margin-left:-4.320000pt;}
._e_c00062{margin-left:-2.986667pt;}
._8_c00062{margin-left:-1.333333pt;}
._0_c00062{width:1.280000pt;}
._1_c00062{width:2.986667pt;}
._3_c00062{width:4.000000pt;}
._c_c00062{width:5.013333pt;}
._a_c00062{width:6.346667pt;}
._2_c00062{width:7.680000pt;}
._9_c00062{width:8.800000pt;}
._b_c00062{width:10.026667pt;}
._13_c00062{width:11.680000pt;}
._2a_c00062{width:12.922667pt;}
._1a_c00062{width:13.813333pt;}
._5_c00062{width:14.720000pt;}
._27_c00062{width:16.109333pt;}
._6_c00062{width:17.493333pt;}
._d_c00062{width:18.453333pt;}
._20_c00062{width:19.466667pt;}
._1c_c00062{width:21.120000pt;}
._15_c00062{width:22.026667pt;}
._7_c00062{width:23.200000pt;}
._28_c00062{width:24.392000pt;}
._10_c00062{width:25.386667pt;}
._1f_c00062{width:27.200000pt;}
._37_c00062{width:28.397333pt;}
._12_c00062{width:29.440000pt;}
._4_c00062{width:30.880000pt;}
._2b_c00062{width:32.104000pt;}
._11_c00062{width:33.813333pt;}
._1d_c00062{width:34.773333pt;}
._14_c00062{width:36.053333pt;}
._33_c00062{width:37.208000pt;}
._22_c00062{width:39.360000pt;}
._18_c00062{width:40.640000pt;}
._24_c00062{width:41.792000pt;}
._2c_c00062{width:44.464000pt;}
._1e_c00062{width:45.600000pt;}
._23_c00062{width:47.272000pt;}
._2d_c00062{width:49.240000pt;}
._29_c00062{width:50.200000pt;}
._36_c00062{width:51.133333pt;}
._35_c00062{width:52.221333pt;}
._25_c00062{width:55.237333pt;}
._26_c00062{width:56.341333pt;}
._32_c00062{width:61.309333pt;}
._2e_c00062{width:62.437333pt;}
._30_c00062{width:63.480000pt;}
._34_c00062{width:65.274667pt;}
._2f_c00062{width:66.426667pt;}
._17_c00062{width:67.840000pt;}
._1b_c00062{width:87.733333pt;}
._19_c00062{width:94.080000pt;}
._39_c00062{width:108.136000pt;}
.fs1_c00062{font-size:40.000000pt;}
.fs3_c00062{font-size:42.666667pt;}
.fs0_c00062{font-size:53.333333pt;}
.fs2_c00062{font-size:56.000000pt;}
.y0_c00062{bottom:0.000000pt;}
.y53_c00062{bottom:2.760000pt;}
.y52_c00062{bottom:6.425204pt;}
.y51_c00062{bottom:34.786667pt;}
.y50_c00062{bottom:51.186667pt;}
.y29_c00062{bottom:53.053333pt;}
.y4f_c00062{bottom:67.986667pt;}
.y28_c00062{bottom:69.320000pt;}
.y4e_c00062{bottom:83.720000pt;}
.y27_c00062{bottom:86.120000pt;}
.y4d_c00062{bottom:99.853333pt;}
.y26_c00062{bottom:101.320000pt;}
.y4c_c00062{bottom:115.986667pt;}
.y25_c00062{bottom:117.586667pt;}
.y4b_c00062{bottom:131.586667pt;}
.y24_c00062{bottom:133.453333pt;}
.y4a_c00062{bottom:148.253333pt;}
.y23_c00062{bottom:149.986667pt;}
.y49_c00062{bottom:164.386667pt;}
.y22_c00062{bottom:166.120000pt;}
.y48_c00062{bottom:180.520000pt;}
.y21_c00062{bottom:182.386667pt;}
.y47_c00062{bottom:196.520000pt;}
.y20_c00062{bottom:198.253333pt;}
.y46_c00062{bottom:212.920000pt;}
.y1f_c00062{bottom:214.520000pt;}
.y45_c00062{bottom:229.453333pt;}
.y1e_c00062{bottom:230.920000pt;}
.y44_c00062{bottom:245.320000pt;}
.y1d_c00062{bottom:245.986667pt;}
.y43_c00062{bottom:261.586667pt;}
.y1c_c00062{bottom:263.320000pt;}
.y42_c00062{bottom:277.720000pt;}
.y1b_c00062{bottom:279.320000pt;}
.y41_c00062{bottom:293.720000pt;}
.y1a_c00062{bottom:293.986667pt;}
.y40_c00062{bottom:310.120000pt;}
.y19_c00062{bottom:311.320000pt;}
.y3f_c00062{bottom:325.986667pt;}
.y18_c00062{bottom:327.320000pt;}
.y3e_c00062{bottom:341.986667pt;}
.y17_c00062{bottom:343.986667pt;}
.y3d_c00062{bottom:358.386667pt;}
.y16_c00062{bottom:359.586667pt;}
.y3c_c00062{bottom:374.386667pt;}
.y15_c00062{bottom:376.120000pt;}
.y3b_c00062{bottom:390.520000pt;}
.y14_c00062{bottom:392.120000pt;}
.y3a_c00062{bottom:406.386667pt;}
.y13_c00062{bottom:407.053333pt;}
.y39_c00062{bottom:422.386667pt;}
.y12_c00062{bottom:422.920000pt;}
.y38_c00062{bottom:438.520000pt;}
.y11_c00062{bottom:438.786667pt;}
.y10_c00062{bottom:454.520000pt;}
.y37_c00062{bottom:454.786667pt;}
.y36_c00062{bottom:470.653333pt;}
.yf_c00062{bottom:470.920000pt;}
.ye_c00062{bottom:486.920000pt;}
.yd_c00062{bottom:502.520000pt;}
.y35_c00062{bottom:503.053333pt;}
.yc_c00062{bottom:518.920000pt;}
.y34_c00062{bottom:519.186667pt;}
.yb_c00062{bottom:535.186667pt;}
.ya_c00062{bottom:550.520000pt;}
.y33_c00062{bottom:551.053333pt;}
.y32_c00062{bottom:567.186667pt;}
.y9_c00062{bottom:567.320000pt;}
.y8_c00062{bottom:582.920000pt;}
.y31_c00062{bottom:583.186667pt;}
.y7_c00062{bottom:599.053333pt;}
.y30_c00062{bottom:599.320000pt;}
.y6_c00062{bottom:614.653333pt;}
.y2f_c00062{bottom:615.320000pt;}
.y5_c00062{bottom:630.520000pt;}
.y2e_c00062{bottom:631.453333pt;}
.y4_c00062{bottom:646.386667pt;}
.y2d_c00062{bottom:647.586667pt;}
.y3_c00062{bottom:661.986667pt;}
.y2c_c00062{bottom:663.586667pt;}
.y2_c00062{bottom:678.253333pt;}
.y2b_c00062{bottom:679.986667pt;}
.y1_c00062{bottom:694.520000pt;}
.y2a_c00062{bottom:695.586667pt;}
.h5_c00062{height:11.733399pt;}
.h6_c00062{height:38.937500pt;}
.h2_c00062{height:55.893333pt;}
.h3_c00062{height:56.906667pt;}
.h4_c00062{height:59.752000pt;}
.h0_c00062{height:743.266667pt;}
.h1_c00062{height:743.333333pt;}
.w2_c00062{width:93.222667pt;}
.w0_c00062{width:511.933333pt;}
.w1_c00062{width:512.000000pt;}
.x0_c00062{left:0.000000pt;}
.x9_c00062{left:17.200000pt;}
.x2_c00062{left:18.266667pt;}
.x4_c00062{left:66.000000pt;}
.x3_c00062{left:69.066667pt;}
.x5_c00062{left:70.800000pt;}
.x1_c00062{left:71.733333pt;}
.x7_c00062{left:72.933333pt;}
.x8_c00062{left:73.866667pt;}
.x6_c00062{left:131.066667pt;}
.x12_c00062{left:213.134888pt;}
.xa_c00062{left:265.466667pt;}
.xb_c00062{left:266.666667pt;}
.xc_c00062{left:268.000000pt;}
.xe_c00062{left:269.066667pt;}
.xd_c00062{left:270.000000pt;}
.xf_c00062{left:271.200000pt;}
.x10_c00062{left:272.133333pt;}
.x11_c00062{left:350.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_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_ee7d3a569b282f0206719083.woff2')format("woff");}.ff1_c00063{font-family:ff1_c00063;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00063;src:url('chunks/assets/font_3a5cfbaf4ab94405c3b56d2b.woff2')format("woff");}.ff2_c00063{font-family:ff2_c00063;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00063;src:url('chunks/assets/font_1e276e5bc7149f8855f24496.woff2')format("woff");}.ff3_c00063{font-family:ff3_c00063;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00063;src:url('chunks/assets/font_f90cd91d094c403690ccd38c.woff2')format("woff");}.ff4_c00063{font-family:ff4_c00063;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00063;src:url('chunks/assets/font_73f54faa32e146d2e661996a.woff2')format("woff");}.ff5_c00063{font-family:ff5_c00063;line-height:1.575000;font-style:normal;font-weight:normal;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_4c16cdb66fd30241167e37b6.woff2')format("woff");}.ff6_c00063{font-family:ff6_c00063;line-height:1.575000;font-style:normal;font-weight:normal;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_3981cc01421919c929a42b57.woff2')format("woff");}.ff7_c00063{font-family:ff7_c00063;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00063;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff8_c00063{font-family:ff8_c00063;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.v1_c00063{vertical-align:103.800000px;}
.ls6_c00063{letter-spacing:0.000000px;}
.ls0_c00063{letter-spacing:3.000000px;}
.ls8_c00063{letter-spacing:6.000000px;}
.ls4_c00063{letter-spacing:8.340000px;}
.ls1_c00063{letter-spacing:11.460000px;}
.ls2_c00063{letter-spacing:12.000000px;}
.ls7_c00063{letter-spacing:15.000000px;}
.ls5_c00063{letter-spacing:18.540000px;}
.ls3_c00063{letter-spacing:32.004000px;}
.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;}
}
.ws2_c00063{word-spacing:-46.746000px;}
.ws0_c00063{word-spacing:-42.192000px;}
.ws4_c00063{word-spacing:-35.295000px;}
.ws1_c00063{word-spacing:-18.813000px;}
.ws3_c00063{word-spacing:-14.160000px;}
.ws5_c00063{word-spacing:0.000000px;}
._1b_c00063{margin-left:-23.073000px;}
._24_c00063{margin-left:-21.303000px;}
._1e_c00063{margin-left:-16.884000px;}
._18_c00063{margin-left:-14.553000px;}
._1f_c00063{margin-left:-12.852000px;}
._20_c00063{margin-left:-11.025000px;}
._16_c00063{margin-left:-9.639000px;}
._f_c00063{margin-left:-8.181000px;}
._17_c00063{margin-left:-6.867000px;}
._8_c00063{margin-left:-5.859000px;}
._a_c00063{margin-left:-4.095000px;}
._9_c00063{margin-left:-2.646000px;}
._b_c00063{margin-left:-1.386000px;}
._7_c00063{width:1.890000px;}
._14_c00063{width:3.150000px;}
._1c_c00063{width:4.155000px;}
._0_c00063{width:5.166000px;}
._1_c00063{width:6.426000px;}
._10_c00063{width:8.190000px;}
._23_c00063{width:9.198000px;}
._e_c00063{width:10.269000px;}
._3_c00063{width:11.655000px;}
._4_c00063{width:13.230000px;}
._15_c00063{width:14.364000px;}
._5_c00063{width:16.380000px;}
._19_c00063{width:17.514000px;}
._22_c00063{width:18.714000px;}
._6_c00063{width:20.097000px;}
._d_c00063{width:21.735000px;}
._1a_c00063{width:22.956000px;}
._c_c00063{width:25.011000px;}
._21_c00063{width:26.385000px;}
._11_c00063{width:27.657000px;}
._12_c00063{width:29.547000px;}
._13_c00063{width:33.075000px;}
._1d_c00063{width:178.395000px;}
._2_c00063{width:311.472000px;}
.fc2_c00063{color:transparent;}
.fc1_c00063{color:rgb(128,128,128);}
.fc0_c00063{color:rgb(0,0,0);}
.fs5_c00063{font-size:45.000000px;}
.fs6_c00063{font-size:48.000000px;}
.fs2_c00063{font-size:60.000000px;}
.fs0_c00063{font-size:63.000000px;}
.fs3_c00063{font-size:66.000000px;}
.fs1_c00063{font-size:72.000000px;}
.fs4_c00063{font-size:213.000000px;}
.y0_c00063{bottom:0.000000px;}
.y50_c00063{bottom:3.105000px;}
.y4f_c00063{bottom:7.228355px;}
.y4e_c00063{bottom:36.435000px;}
.y4d_c00063{bottom:54.285000px;}
.y27_c00063{bottom:55.485000px;}
.y4c_c00063{bottom:73.485000px;}
.y26_c00063{bottom:73.785000px;}
.y4b_c00063{bottom:91.035000px;}
.y25_c00063{bottom:92.085000px;}
.y23_c00063{bottom:101.985000px;}
.y4a_c00063{bottom:109.635000px;}
.y24_c00063{bottom:110.235000px;}
.y49_c00063{bottom:127.785000px;}
.y48_c00063{bottom:146.085000px;}
.y47_c00063{bottom:164.685000px;}
.y46_c00063{bottom:182.535000px;}
.y22_c00063{bottom:183.585000px;}
.y45_c00063{bottom:199.785000px;}
.y21_c00063{bottom:201.435000px;}
.y44_c00063{bottom:218.235000px;}
.y20_c00063{bottom:219.285000px;}
.y1f_c00063{bottom:235.785000px;}
.y43_c00063{bottom:254.685000px;}
.y42_c00063{bottom:272.235000px;}
.y1e_c00063{bottom:272.685000px;}
.y1d_c00063{bottom:290.535000px;}
.y41_c00063{bottom:308.085000px;}
.y1c_c00063{bottom:308.835000px;}
.y40_c00063{bottom:326.685000px;}
.y1b_c00063{bottom:327.285000px;}
.y3f_c00063{bottom:344.835000px;}
.y1a_c00063{bottom:345.585000px;}
.y3e_c00063{bottom:362.085000px;}
.y19_c00063{bottom:363.135000px;}
.y3d_c00063{bottom:380.235000px;}
.y18_c00063{bottom:381.585000px;}
.y17_c00063{bottom:398.235000px;}
.y3c_c00063{bottom:416.385000px;}
.y16_c00063{bottom:417.135000px;}
.y3b_c00063{bottom:434.385000px;}
.y15_c00063{bottom:434.985000px;}
.y3a_c00063{bottom:452.535000px;}
.y14_c00063{bottom:453.285000px;}
.y39_c00063{bottom:470.385000px;}
.y13_c00063{bottom:470.835000px;}
.y38_c00063{bottom:488.385000px;}
.y12_c00063{bottom:489.285000px;}
.y37_c00063{bottom:506.235000px;}
.y11_c00063{bottom:507.285000px;}
.y36_c00063{bottom:524.085000px;}
.y10_c00063{bottom:525.135000px;}
.y35_c00063{bottom:541.635000px;}
.yf_c00063{bottom:543.285000px;}
.y34_c00063{bottom:559.785000px;}
.ye_c00063{bottom:561.285000px;}
.y33_c00063{bottom:578.385000px;}
.yd_c00063{bottom:579.435000px;}
.y32_c00063{bottom:595.635000px;}
.yc_c00063{bottom:597.285000px;}
.y31_c00063{bottom:613.935000px;}
.yb_c00063{bottom:615.285000px;}
.y30_c00063{bottom:631.785000px;}
.ya_c00063{bottom:633.435000px;}
.y2f_c00063{bottom:650.235000px;}
.y9_c00063{bottom:651.285000px;}
.y2e_c00063{bottom:668.385000px;}
.y8_c00063{bottom:669.135000px;}
.y2d_c00063{bottom:686.385000px;}
.y7_c00063{bottom:687.435000px;}
.y2c_c00063{bottom:704.385000px;}
.y6_c00063{bottom:705.285000px;}
.y2b_c00063{bottom:722.835000px;}
.y5_c00063{bottom:723.285000px;}
.y2a_c00063{bottom:741.135000px;}
.y4_c00063{bottom:741.735000px;}
.y29_c00063{bottom:759.285000px;}
.y3_c00063{bottom:759.585000px;}
.y28_c00063{bottom:776.535000px;}
.y2_c00063{bottom:777.885000px;}
.y1_c00063{bottom:797.385000px;}
.h7_c00063{height:13.200074px;}
.h8_c00063{height:43.804688px;}
.h5_c00063{height:62.880000px;}
.h2_c00063{height:66.024000px;}
.h4_c00063{height:70.422000px;}
.h3_c00063{height:78.048000px;}
.h6_c00063{height:223.224000px;}
.h1_c00063{height:841.500000px;}
.h0_c00063{height:841.575000px;}
.w2_c00063{width:104.875500px;}
.w1_c00063{width:566.250000px;}
.w0_c00063{width:566.475000px;}
.x0_c00063{left:0.000000px;}
.xc_c00063{left:65.100000px;}
.x8_c00063{left:69.150000px;}
.x7_c00063{left:70.800000px;}
.x6_c00063{left:71.850000px;}
.x5_c00063{left:73.200000px;}
.x4_c00063{left:74.850000px;}
.x3_c00063{left:75.900000px;}
.x1_c00063{left:77.550000px;}
.x2_c00063{left:78.750000px;}
.xa_c00063{left:88.650000px;}
.xb_c00063{left:108.300000px;}
.xd_c00063{left:120.750000px;}
.x9_c00063{left:163.650000px;}
.x15_c00063{left:235.051758px;}
.x13_c00063{left:290.250000px;}
.xe_c00063{left:291.300000px;}
.x12_c00063{left:292.650000px;}
.x11_c00063{left:294.750000px;}
.x10_c00063{left:295.950000px;}
.xf_c00063{left:297.600000px;}
.x14_c00063{left:472.800000px;}
@media print{
.v0_c00063{vertical-align:0.000000pt;}
.v1_c00063{vertical-align:92.266667pt;}
.ls6_c00063{letter-spacing:0.000000pt;}
.ls0_c00063{letter-spacing:2.666667pt;}
.ls8_c00063{letter-spacing:5.333333pt;}
.ls4_c00063{letter-spacing:7.413333pt;}
.ls1_c00063{letter-spacing:10.186667pt;}
.ls2_c00063{letter-spacing:10.666667pt;}
.ls7_c00063{letter-spacing:13.333333pt;}
.ls5_c00063{letter-spacing:16.480000pt;}
.ls3_c00063{letter-spacing:28.448000pt;}
.ws2_c00063{word-spacing:-41.552000pt;}
.ws0_c00063{word-spacing:-37.504000pt;}
.ws4_c00063{word-spacing:-31.373333pt;}
.ws1_c00063{word-spacing:-16.722667pt;}
.ws3_c00063{word-spacing:-12.586667pt;}
.ws5_c00063{word-spacing:0.000000pt;}
._1b_c00063{margin-left:-20.509333pt;}
._24_c00063{margin-left:-18.936000pt;}
._1e_c00063{margin-left:-15.008000pt;}
._18_c00063{margin-left:-12.936000pt;}
._1f_c00063{margin-left:-11.424000pt;}
._20_c00063{margin-left:-9.800000pt;}
._16_c00063{margin-left:-8.568000pt;}
._f_c00063{margin-left:-7.272000pt;}
._17_c00063{margin-left:-6.104000pt;}
._8_c00063{margin-left:-5.208000pt;}
._a_c00063{margin-left:-3.640000pt;}
._9_c00063{margin-left:-2.352000pt;}
._b_c00063{margin-left:-1.232000pt;}
._7_c00063{width:1.680000pt;}
._14_c00063{width:2.800000pt;}
._1c_c00063{width:3.693333pt;}
._0_c00063{width:4.592000pt;}
._1_c00063{width:5.712000pt;}
._10_c00063{width:7.280000pt;}
._23_c00063{width:8.176000pt;}
._e_c00063{width:9.128000pt;}
._3_c00063{width:10.360000pt;}
._4_c00063{width:11.760000pt;}
._15_c00063{width:12.768000pt;}
._5_c00063{width:14.560000pt;}
._19_c00063{width:15.568000pt;}
._22_c00063{width:16.634667pt;}
._6_c00063{width:17.864000pt;}
._d_c00063{width:19.320000pt;}
._1a_c00063{width:20.405333pt;}
._c_c00063{width:22.232000pt;}
._21_c00063{width:23.453333pt;}
._11_c00063{width:24.584000pt;}
._12_c00063{width:26.264000pt;}
._13_c00063{width:29.400000pt;}
._1d_c00063{width:158.573333pt;}
._2_c00063{width:276.864000pt;}
.fs5_c00063{font-size:40.000000pt;}
.fs6_c00063{font-size:42.666667pt;}
.fs2_c00063{font-size:53.333333pt;}
.fs0_c00063{font-size:56.000000pt;}
.fs3_c00063{font-size:58.666667pt;}
.fs1_c00063{font-size:64.000000pt;}
.fs4_c00063{font-size:189.333333pt;}
.y0_c00063{bottom:0.000000pt;}
.y50_c00063{bottom:2.760000pt;}
.y4f_c00063{bottom:6.425204pt;}
.y4e_c00063{bottom:32.386667pt;}
.y4d_c00063{bottom:48.253333pt;}
.y27_c00063{bottom:49.320000pt;}
.y4c_c00063{bottom:65.320000pt;}
.y26_c00063{bottom:65.586667pt;}
.y4b_c00063{bottom:80.920000pt;}
.y25_c00063{bottom:81.853333pt;}
.y23_c00063{bottom:90.653333pt;}
.y4a_c00063{bottom:97.453333pt;}
.y24_c00063{bottom:97.986667pt;}
.y49_c00063{bottom:113.586667pt;}
.y48_c00063{bottom:129.853333pt;}
.y47_c00063{bottom:146.386667pt;}
.y46_c00063{bottom:162.253333pt;}
.y22_c00063{bottom:163.186667pt;}
.y45_c00063{bottom:177.586667pt;}
.y21_c00063{bottom:179.053333pt;}
.y44_c00063{bottom:193.986667pt;}
.y20_c00063{bottom:194.920000pt;}
.y1f_c00063{bottom:209.586667pt;}
.y43_c00063{bottom:226.386667pt;}
.y42_c00063{bottom:241.986667pt;}
.y1e_c00063{bottom:242.386667pt;}
.y1d_c00063{bottom:258.253333pt;}
.y41_c00063{bottom:273.853333pt;}
.y1c_c00063{bottom:274.520000pt;}
.y40_c00063{bottom:290.386667pt;}
.y1b_c00063{bottom:290.920000pt;}
.y3f_c00063{bottom:306.520000pt;}
.y1a_c00063{bottom:307.186667pt;}
.y3e_c00063{bottom:321.853333pt;}
.y19_c00063{bottom:322.786667pt;}
.y3d_c00063{bottom:337.986667pt;}
.y18_c00063{bottom:339.186667pt;}
.y17_c00063{bottom:353.986667pt;}
.y3c_c00063{bottom:370.120000pt;}
.y16_c00063{bottom:370.786667pt;}
.y3b_c00063{bottom:386.120000pt;}
.y15_c00063{bottom:386.653333pt;}
.y3a_c00063{bottom:402.253333pt;}
.y14_c00063{bottom:402.920000pt;}
.y39_c00063{bottom:418.120000pt;}
.y13_c00063{bottom:418.520000pt;}
.y38_c00063{bottom:434.120000pt;}
.y12_c00063{bottom:434.920000pt;}
.y37_c00063{bottom:449.986667pt;}
.y11_c00063{bottom:450.920000pt;}
.y36_c00063{bottom:465.853333pt;}
.y10_c00063{bottom:466.786667pt;}
.y35_c00063{bottom:481.453333pt;}
.yf_c00063{bottom:482.920000pt;}
.y34_c00063{bottom:497.586667pt;}
.ye_c00063{bottom:498.920000pt;}
.y33_c00063{bottom:514.120000pt;}
.yd_c00063{bottom:515.053333pt;}
.y32_c00063{bottom:529.453333pt;}
.yc_c00063{bottom:530.920000pt;}
.y31_c00063{bottom:545.720000pt;}
.yb_c00063{bottom:546.920000pt;}
.y30_c00063{bottom:561.586667pt;}
.ya_c00063{bottom:563.053333pt;}
.y2f_c00063{bottom:577.986667pt;}
.y9_c00063{bottom:578.920000pt;}
.y2e_c00063{bottom:594.120000pt;}
.y8_c00063{bottom:594.786667pt;}
.y2d_c00063{bottom:610.120000pt;}
.y7_c00063{bottom:611.053333pt;}
.y2c_c00063{bottom:626.120000pt;}
.y6_c00063{bottom:626.920000pt;}
.y2b_c00063{bottom:642.520000pt;}
.y5_c00063{bottom:642.920000pt;}
.y2a_c00063{bottom:658.786667pt;}
.y4_c00063{bottom:659.320000pt;}
.y29_c00063{bottom:674.920000pt;}
.y3_c00063{bottom:675.186667pt;}
.y28_c00063{bottom:690.253333pt;}
.y2_c00063{bottom:691.453333pt;}
.y1_c00063{bottom:708.786667pt;}
.h7_c00063{height:11.733399pt;}
.h8_c00063{height:38.937500pt;}
.h5_c00063{height:55.893333pt;}
.h2_c00063{height:58.688000pt;}
.h4_c00063{height:62.597333pt;}
.h3_c00063{height:69.376000pt;}
.h6_c00063{height:198.421333pt;}
.h1_c00063{height:748.000000pt;}
.h0_c00063{height:748.066667pt;}
.w2_c00063{width:93.222667pt;}
.w1_c00063{width:503.333333pt;}
.w0_c00063{width:503.533333pt;}
.x0_c00063{left:0.000000pt;}
.xc_c00063{left:57.866667pt;}
.x8_c00063{left:61.466667pt;}
.x7_c00063{left:62.933333pt;}
.x6_c00063{left:63.866667pt;}
.x5_c00063{left:65.066667pt;}
.x4_c00063{left:66.533333pt;}
.x3_c00063{left:67.466667pt;}
.x1_c00063{left:68.933333pt;}
.x2_c00063{left:70.000000pt;}
.xa_c00063{left:78.800000pt;}
.xb_c00063{left:96.266667pt;}
.xd_c00063{left:107.333333pt;}
.x9_c00063{left:145.466667pt;}
.x15_c00063{left:208.934896pt;}
.x13_c00063{left:258.000000pt;}
.xe_c00063{left:258.933333pt;}
.x12_c00063{left:260.133333pt;}
.x11_c00063{left:262.000000pt;}
.x10_c00063{left:263.066667pt;}
.xf_c00063{left:264.533333pt;}
.x14_c00063{left:420.266667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_5a2abe17fc031d5b9d246798.woff2')format("woff");}.ff1_c00064{font-family:ff1_c00064;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00064;src:url('chunks/assets/font_5ec9ec75440036826341af3b.woff2')format("woff");}.ff2_c00064{font-family:ff2_c00064;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00064;src:url('chunks/assets/font_6abdfab8089dac2c7083a54d.woff2')format("woff");}.ff3_c00064{font-family:ff3_c00064;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00064;src:url('chunks/assets/font_a47b8bb1024da73236d0c0e5.woff2')format("woff");}.ff4_c00064{font-family:ff4_c00064;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00064;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff5_c00064{font-family:ff5_c00064;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00064{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00064{vertical-align:0.000000px;}
.ls4_c00064{letter-spacing:0.000000px;}
.ls2_c00064{letter-spacing:1.680000px;}
.ls0_c00064{letter-spacing:3.000000px;}
.ls1_c00064{letter-spacing:14.400000px;}
.ls3_c00064{letter-spacing:17.400000px;}
.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:-31.746000px;}
.ws0_c00064{word-spacing:-14.160000px;}
.ws2_c00064{word-spacing:0.000000px;}
._1b_c00064{margin-left:-15.060000px;}
._6_c00064{margin-left:-12.480000px;}
._20_c00064{margin-left:-11.160000px;}
._18_c00064{margin-left:-8.280000px;}
._4_c00064{margin-left:-6.360000px;}
._1_c00064{margin-left:-4.500000px;}
._3_c00064{margin-left:-3.120000px;}
._0_c00064{margin-left:-1.800000px;}
._2_c00064{width:1.440000px;}
._5_c00064{width:2.580000px;}
._a_c00064{width:4.140000px;}
._7_c00064{width:5.460000px;}
._17_c00064{width:6.660000px;}
._8_c00064{width:7.740000px;}
._d_c00064{width:8.760000px;}
._14_c00064{width:9.780000px;}
._c_c00064{width:11.820000px;}
._15_c00064{width:13.380000px;}
._12_c00064{width:14.880000px;}
._1c_c00064{width:16.680000px;}
._9_c00064{width:18.360000px;}
._1d_c00064{width:19.800000px;}
._b_c00064{width:20.820000px;}
._1e_c00064{width:21.960000px;}
._16_c00064{width:23.580000px;}
._11_c00064{width:24.600000px;}
._1f_c00064{width:28.620000px;}
._e_c00064{width:30.300000px;}
._21_c00064{width:32.340000px;}
._f_c00064{width:34.680000px;}
._10_c00064{width:38.340000px;}
._13_c00064{width:41.100000px;}
._22_c00064{width:58.560000px;}
._23_c00064{width:69.060000px;}
._1a_c00064{width:87.300000px;}
._19_c00064{width:93.000000px;}
._24_c00064{width:175.980000px;}
.fc2_c00064{color:transparent;}
.fc1_c00064{color:rgb(128,128,128);}
.fc0_c00064{color:rgb(0,0,0);}
.fs2_c00064{font-size:48.000000px;}
.fs0_c00064{font-size:60.000000px;}
.fs1_c00064{font-size:66.000000px;}
.y0_c00064{bottom:0.000000px;}
.y53_c00064{bottom:3.105000px;}
.y52_c00064{bottom:7.228355px;}
.y51_c00064{bottom:34.335000px;}
.y50_c00064{bottom:56.685000px;}
.y29_c00064{bottom:59.385000px;}
.y4f_c00064{bottom:75.135000px;}
.y28_c00064{bottom:77.985000px;}
.y4e_c00064{bottom:93.135000px;}
.y27_c00064{bottom:96.135000px;}
.y4d_c00064{bottom:109.935000px;}
.y26_c00064{bottom:114.735000px;}
.y4c_c00064{bottom:128.835000px;}
.y25_c00064{bottom:132.585000px;}
.y4b_c00064{bottom:146.685000px;}
.y24_c00064{bottom:150.435000px;}
.y4a_c00064{bottom:163.335000px;}
.y23_c00064{bottom:168.285000px;}
.y49_c00064{bottom:183.585000px;}
.y22_c00064{bottom:186.885000px;}
.y48_c00064{bottom:200.685000px;}
.y21_c00064{bottom:204.735000px;}
.y47_c00064{bottom:220.935000px;}
.y20_c00064{bottom:223.635000px;}
.y46_c00064{bottom:237.585000px;}
.y1f_c00064{bottom:240.885000px;}
.y45_c00064{bottom:255.735000px;}
.y1e_c00064{bottom:259.485000px;}
.y44_c00064{bottom:274.935000px;}
.y1d_c00064{bottom:277.785000px;}
.y43_c00064{bottom:292.935000px;}
.y1c_c00064{bottom:294.885000px;}
.y42_c00064{bottom:309.135000px;}
.y1b_c00064{bottom:313.485000px;}
.y41_c00064{bottom:328.635000px;}
.y1a_c00064{bottom:332.085000px;}
.y40_c00064{bottom:346.485000px;}
.y19_c00064{bottom:350.535000px;}
.y3f_c00064{bottom:365.385000px;}
.y18_c00064{bottom:367.785000px;}
.y3e_c00064{bottom:383.385000px;}
.y17_c00064{bottom:386.385000px;}
.y3d_c00064{bottom:400.935000px;}
.y16_c00064{bottom:403.935000px;}
.y3c_c00064{bottom:419.385000px;}
.y15_c00064{bottom:420.435000px;}
.y3b_c00064{bottom:436.635000px;}
.y14_c00064{bottom:439.035000px;}
.y3a_c00064{bottom:453.585000px;}
.y13_c00064{bottom:456.585000px;}
.y39_c00064{bottom:473.085000px;}
.y12_c00064{bottom:473.835000px;}
.y11_c00064{bottom:491.085000px;}
.y38_c00064{bottom:508.935000px;}
.y10_c00064{bottom:509.535000px;}
.y37_c00064{bottom:526.485000px;}
.yf_c00064{bottom:528.135000px;}
.y36_c00064{bottom:544.635000px;}
.ye_c00064{bottom:545.985000px;}
.y35_c00064{bottom:563.535000px;}
.yd_c00064{bottom:564.285000px;}
.y34_c00064{bottom:581.535000px;}
.yc_c00064{bottom:582.135000px;}
.y33_c00064{bottom:599.385000px;}
.yb_c00064{bottom:600.285000px;}
.y32_c00064{bottom:617.235000px;}
.ya_c00064{bottom:618.285000px;}
.y31_c00064{bottom:635.385000px;}
.y9_c00064{bottom:636.435000px;}
.y30_c00064{bottom:653.685000px;}
.y8_c00064{bottom:654.285000px;}
.y2f_c00064{bottom:671.985000px;}
.y7_c00064{bottom:672.585000px;}
.y6_c00064{bottom:690.135000px;}
.y2e_c00064{bottom:707.985000px;}
.y5_c00064{bottom:708.435000px;}
.y2d_c00064{bottom:725.985000px;}
.y4_c00064{bottom:726.585000px;}
.y2c_c00064{bottom:744.435000px;}
.y3_c00064{bottom:744.735000px;}
.y2b_c00064{bottom:762.435000px;}
.y2_c00064{bottom:762.735000px;}
.y2a_c00064{bottom:780.585000px;}
.y1_c00064{bottom:780.885000px;}
.h4_c00064{height:13.200074px;}
.h5_c00064{height:43.804688px;}
.h2_c00064{height:62.880000px;}
.h3_c00064{height:71.544000px;}
.h0_c00064{height:836.175000px;}
.h1_c00064{height:836.250000px;}
.w2_c00064{width:104.875500px;}
.w0_c00064{width:575.925000px;}
.w1_c00064{width:576.000000px;}
.x0_c00064{left:0.000000px;}
.x5_c00064{left:21.900000px;}
.x6_c00064{left:24.000000px;}
.x7_c00064{left:73.650000px;}
.x2_c00064{left:79.050000px;}
.x3_c00064{left:80.700000px;}
.x1_c00064{left:81.750000px;}
.x4_c00064{left:83.100000px;}
.xe_c00064{left:239.776749px;}
.xc_c00064{left:300.150000px;}
.xa_c00064{left:302.100000px;}
.x8_c00064{left:303.150000px;}
.x9_c00064{left:304.500000px;}
.xb_c00064{left:317.550000px;}
.xd_c00064{left:374.700000px;}
@media print{
.v0_c00064{vertical-align:0.000000pt;}
.ls4_c00064{letter-spacing:0.000000pt;}
.ls2_c00064{letter-spacing:1.493333pt;}
.ls0_c00064{letter-spacing:2.666667pt;}
.ls1_c00064{letter-spacing:12.800000pt;}
.ls3_c00064{letter-spacing:15.466667pt;}
.ws1_c00064{word-spacing:-28.218667pt;}
.ws0_c00064{word-spacing:-12.586667pt;}
.ws2_c00064{word-spacing:0.000000pt;}
._1b_c00064{margin-left:-13.386667pt;}
._6_c00064{margin-left:-11.093333pt;}
._20_c00064{margin-left:-9.920000pt;}
._18_c00064{margin-left:-7.360000pt;}
._4_c00064{margin-left:-5.653333pt;}
._1_c00064{margin-left:-4.000000pt;}
._3_c00064{margin-left:-2.773333pt;}
._0_c00064{margin-left:-1.600000pt;}
._2_c00064{width:1.280000pt;}
._5_c00064{width:2.293333pt;}
._a_c00064{width:3.680000pt;}
._7_c00064{width:4.853333pt;}
._17_c00064{width:5.920000pt;}
._8_c00064{width:6.880000pt;}
._d_c00064{width:7.786667pt;}
._14_c00064{width:8.693333pt;}
._c_c00064{width:10.506667pt;}
._15_c00064{width:11.893333pt;}
._12_c00064{width:13.226667pt;}
._1c_c00064{width:14.826667pt;}
._9_c00064{width:16.320000pt;}
._1d_c00064{width:17.600000pt;}
._b_c00064{width:18.506667pt;}
._1e_c00064{width:19.520000pt;}
._16_c00064{width:20.960000pt;}
._11_c00064{width:21.866667pt;}
._1f_c00064{width:25.440000pt;}
._e_c00064{width:26.933333pt;}
._21_c00064{width:28.746667pt;}
._f_c00064{width:30.826667pt;}
._10_c00064{width:34.080000pt;}
._13_c00064{width:36.533333pt;}
._22_c00064{width:52.053333pt;}
._23_c00064{width:61.386667pt;}
._1a_c00064{width:77.600000pt;}
._19_c00064{width:82.666667pt;}
._24_c00064{width:156.426667pt;}
.fs2_c00064{font-size:42.666667pt;}
.fs0_c00064{font-size:53.333333pt;}
.fs1_c00064{font-size:58.666667pt;}
.y0_c00064{bottom:0.000000pt;}
.y53_c00064{bottom:2.760000pt;}
.y52_c00064{bottom:6.425204pt;}
.y51_c00064{bottom:30.520000pt;}
.y50_c00064{bottom:50.386667pt;}
.y29_c00064{bottom:52.786667pt;}
.y4f_c00064{bottom:66.786667pt;}
.y28_c00064{bottom:69.320000pt;}
.y4e_c00064{bottom:82.786667pt;}
.y27_c00064{bottom:85.453333pt;}
.y4d_c00064{bottom:97.720000pt;}
.y26_c00064{bottom:101.986667pt;}
.y4c_c00064{bottom:114.520000pt;}
.y25_c00064{bottom:117.853333pt;}
.y4b_c00064{bottom:130.386667pt;}
.y24_c00064{bottom:133.720000pt;}
.y4a_c00064{bottom:145.186667pt;}
.y23_c00064{bottom:149.586667pt;}
.y49_c00064{bottom:163.186667pt;}
.y22_c00064{bottom:166.120000pt;}
.y48_c00064{bottom:178.386667pt;}
.y21_c00064{bottom:181.986667pt;}
.y47_c00064{bottom:196.386667pt;}
.y20_c00064{bottom:198.786667pt;}
.y46_c00064{bottom:211.186667pt;}
.y1f_c00064{bottom:214.120000pt;}
.y45_c00064{bottom:227.320000pt;}
.y1e_c00064{bottom:230.653333pt;}
.y44_c00064{bottom:244.386667pt;}
.y1d_c00064{bottom:246.920000pt;}
.y43_c00064{bottom:260.386667pt;}
.y1c_c00064{bottom:262.120000pt;}
.y42_c00064{bottom:274.786667pt;}
.y1b_c00064{bottom:278.653333pt;}
.y41_c00064{bottom:292.120000pt;}
.y1a_c00064{bottom:295.186667pt;}
.y40_c00064{bottom:307.986667pt;}
.y19_c00064{bottom:311.586667pt;}
.y3f_c00064{bottom:324.786667pt;}
.y18_c00064{bottom:326.920000pt;}
.y3e_c00064{bottom:340.786667pt;}
.y17_c00064{bottom:343.453333pt;}
.y3d_c00064{bottom:356.386667pt;}
.y16_c00064{bottom:359.053333pt;}
.y3c_c00064{bottom:372.786667pt;}
.y15_c00064{bottom:373.720000pt;}
.y3b_c00064{bottom:388.120000pt;}
.y14_c00064{bottom:390.253333pt;}
.y3a_c00064{bottom:403.186667pt;}
.y13_c00064{bottom:405.853333pt;}
.y39_c00064{bottom:420.520000pt;}
.y12_c00064{bottom:421.186667pt;}
.y11_c00064{bottom:436.520000pt;}
.y38_c00064{bottom:452.386667pt;}
.y10_c00064{bottom:452.920000pt;}
.y37_c00064{bottom:467.986667pt;}
.yf_c00064{bottom:469.453333pt;}
.y36_c00064{bottom:484.120000pt;}
.ye_c00064{bottom:485.320000pt;}
.y35_c00064{bottom:500.920000pt;}
.yd_c00064{bottom:501.586667pt;}
.y34_c00064{bottom:516.920000pt;}
.yc_c00064{bottom:517.453333pt;}
.y33_c00064{bottom:532.786667pt;}
.yb_c00064{bottom:533.586667pt;}
.y32_c00064{bottom:548.653333pt;}
.ya_c00064{bottom:549.586667pt;}
.y31_c00064{bottom:564.786667pt;}
.y9_c00064{bottom:565.720000pt;}
.y30_c00064{bottom:581.053333pt;}
.y8_c00064{bottom:581.586667pt;}
.y2f_c00064{bottom:597.320000pt;}
.y7_c00064{bottom:597.853333pt;}
.y6_c00064{bottom:613.453333pt;}
.y2e_c00064{bottom:629.320000pt;}
.y5_c00064{bottom:629.720000pt;}
.y2d_c00064{bottom:645.320000pt;}
.y4_c00064{bottom:645.853333pt;}
.y2c_c00064{bottom:661.720000pt;}
.y3_c00064{bottom:661.986667pt;}
.y2b_c00064{bottom:677.720000pt;}
.y2_c00064{bottom:677.986667pt;}
.y2a_c00064{bottom:693.853333pt;}
.y1_c00064{bottom:694.120000pt;}
.h4_c00064{height:11.733399pt;}
.h5_c00064{height:38.937500pt;}
.h2_c00064{height:55.893333pt;}
.h3_c00064{height:63.594667pt;}
.h0_c00064{height:743.266667pt;}
.h1_c00064{height:743.333333pt;}
.w2_c00064{width:93.222667pt;}
.w0_c00064{width:511.933333pt;}
.w1_c00064{width:512.000000pt;}
.x0_c00064{left:0.000000pt;}
.x5_c00064{left:19.466667pt;}
.x6_c00064{left:21.333333pt;}
.x7_c00064{left:65.466667pt;}
.x2_c00064{left:70.266667pt;}
.x3_c00064{left:71.733333pt;}
.x1_c00064{left:72.666667pt;}
.x4_c00064{left:73.866667pt;}
.xe_c00064{left:213.134888pt;}
.xc_c00064{left:266.800000pt;}
.xa_c00064{left:268.533333pt;}
.x8_c00064{left:269.466667pt;}
.x9_c00064{left:270.666667pt;}
.xb_c00064{left:282.266667pt;}
.xd_c00064{left:333.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_2ef34126c4c3dac46989f322.woff2')format("woff");}.ff1_c00065{font-family:ff1_c00065;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00065;src:url('chunks/assets/font_ed6fb059a227cd47f5c641ce.woff2')format("woff");}.ff2_c00065{font-family:ff2_c00065;line-height:1.575000;font-style:normal;font-weight:normal;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_0c3bae40caa5ed33e2d9fa96.woff2')format("woff");}.ff3_c00065{font-family:ff3_c00065;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00065;src:url('chunks/assets/font_bef36708b16243eff40d9ced.woff2')format("woff");}.ff4_c00065{font-family:ff4_c00065;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00065;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff5_c00065{font-family:ff5_c00065;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00065;src:url('chunks/assets/font_76783cacb8e8644b9119af8f.woff2')format("woff");}.ff6_c00065{font-family:ff6_c00065;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00065;src:url('chunks/assets/font_552df2f20e49cfcdcb9a8538.woff2')format("woff");}.ff7_c00065{font-family:ff7_c00065;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00065;src:url('chunks/assets/font_9df4678d566487d42f37a4d7.woff2')format("woff");}.ff8_c00065{font-family:ff8_c00065;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00065;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff9_c00065{font-family:ff9_c00065;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00065{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00065{vertical-align:0.000000px;}
.ls4_c00065{letter-spacing:0.000000px;}
.ls0_c00065{letter-spacing:3.000000px;}
.ls1_c00065{letter-spacing:3.600000px;}
.ls2_c00065{letter-spacing:6.000000px;}
.ls3_c00065{letter-spacing:6.600000px;}
.ls5_c00065{letter-spacing:15.000000px;}
.sc__c00065{text-shadow:none;}
.sc0_c00065{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00065{-webkit-text-stroke:0px transparent;}
.sc0_c00065{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00065{word-spacing:-46.746000px;}
.ws2_c00065{word-spacing:-18.291000px;}
.ws1_c00065{word-spacing:-18.060000px;}
.ws0_c00065{word-spacing:-14.160000px;}
.ws4_c00065{word-spacing:-0.480000px;}
.ws5_c00065{word-spacing:0.000000px;}
._20_c00065{margin-left:-21.600000px;}
._23_c00065{margin-left:-18.177000px;}
._22_c00065{margin-left:-16.860000px;}
._17_c00065{margin-left:-12.840000px;}
._18_c00065{margin-left:-10.440000px;}
._a_c00065{margin-left:-9.315000px;}
._13_c00065{margin-left:-7.920000px;}
._14_c00065{margin-left:-6.885000px;}
._b_c00065{margin-left:-5.877000px;}
._d_c00065{margin-left:-4.680000px;}
._8_c00065{margin-left:-3.600000px;}
._9_c00065{margin-left:-2.460000px;}
._5_c00065{margin-left:-1.440000px;}
._6_c00065{width:1.080000px;}
._7_c00065{width:2.640000px;}
._c_c00065{width:4.020000px;}
._15_c00065{width:5.400000px;}
._16_c00065{width:6.960000px;}
._1b_c00065{width:8.097000px;}
._e_c00065{width:9.120000px;}
._1d_c00065{width:10.680000px;}
._27_c00065{width:11.943000px;}
._1a_c00065{width:13.200000px;}
._2_c00065{width:14.400000px;}
._1f_c00065{width:15.540000px;}
._0_c00065{width:16.680000px;}
._29_c00065{width:17.940000px;}
._19_c00065{width:19.260000px;}
._2a_c00065{width:20.940000px;}
._4_c00065{width:21.960000px;}
._28_c00065{width:23.220000px;}
._3_c00065{width:24.420000px;}
._1e_c00065{width:26.217000px;}
._12_c00065{width:28.620000px;}
._f_c00065{width:29.880000px;}
._11_c00065{width:31.020000px;}
._2c_c00065{width:32.397000px;}
._24_c00065{width:34.380000px;}
._10_c00065{width:38.580000px;}
._1c_c00065{width:97.860000px;}
._25_c00065{width:205.005000px;}
._26_c00065{width:242.580000px;}
._21_c00065{width:284.760000px;}
._1_c00065{width:330.840000px;}
._2b_c00065{width:570.600000px;}
.fc2_c00065{color:transparent;}
.fc1_c00065{color:rgb(128,128,128);}
.fc0_c00065{color:rgb(0,0,0);}
.fs4_c00065{font-size:48.000000px;}
.fs2_c00065{font-size:51.000000px;}
.fs0_c00065{font-size:60.000000px;}
.fs3_c00065{font-size:66.000000px;}
.fs1_c00065{font-size:69.000000px;}
.y0_c00065{bottom:0.000000px;}
.y56_c00065{bottom:3.105000px;}
.y55_c00065{bottom:7.228369px;}
.y54_c00065{bottom:23.970000px;}
.y53_c00065{bottom:42.870000px;}
.y29_c00065{bottom:43.470000px;}
.y52_c00065{bottom:62.370000px;}
.y28_c00065{bottom:62.820000px;}
.y51_c00065{bottom:80.220000px;}
.y27_c00065{bottom:82.920000px;}
.y50_c00065{bottom:99.120000px;}
.y4f_c00065{bottom:115.320000px;}
.y26_c00065{bottom:118.170000px;}
.y4e_c00065{bottom:135.570000px;}
.y25_c00065{bottom:136.020000px;}
.y4d_c00065{bottom:154.920000px;}
.y24_c00065{bottom:156.270000px;}
.y23_c00065{bottom:172.770000px;}
.y4c_c00065{bottom:173.820000px;}
.y4b_c00065{bottom:187.620000px;}
.y22_c00065{bottom:189.720000px;}
.y4a_c00065{bottom:205.470000px;}
.y21_c00065{bottom:209.520000px;}
.y49_c00065{bottom:226.770000px;}
.y20_c00065{bottom:227.370000px;}
.y48_c00065{bottom:245.070000px;}
.y1f_c00065{bottom:246.270000px;}
.y1e_c00065{bottom:262.170000px;}
.y47_c00065{bottom:263.520000px;}
.y46_c00065{bottom:281.070000px;}
.y1d_c00065{bottom:284.220000px;}
.y45_c00065{bottom:298.020000px;}
.y1c_c00065{bottom:301.620000px;}
.y44_c00065{bottom:316.920000px;}
.y1b_c00065{bottom:319.920000px;}
.y43_c00065{bottom:335.070000px;}
.y1a_c00065{bottom:338.070000px;}
.y42_c00065{bottom:353.670000px;}
.y19_c00065{bottom:356.670000px;}
.y41_c00065{bottom:372.570000px;}
.y18_c00065{bottom:374.220000px;}
.y40_c00065{bottom:390.120000px;}
.y17_c00065{bottom:392.220000px;}
.y3f_c00065{bottom:408.270000px;}
.y16_c00065{bottom:409.770000px;}
.y3e_c00065{bottom:427.620000px;}
.y15_c00065{bottom:428.520000px;}
.y3d_c00065{bottom:445.470000px;}
.y14_c00065{bottom:446.520000px;}
.y3c_c00065{bottom:463.320000px;}
.y13_c00065{bottom:464.670000px;}
.y3b_c00065{bottom:480.270000px;}
.y12_c00065{bottom:482.670000px;}
.y3a_c00065{bottom:499.170000px;}
.y11_c00065{bottom:501.570000px;}
.y39_c00065{bottom:517.020000px;}
.y10_c00065{bottom:518.970000px;}
.y38_c00065{bottom:535.170000px;}
.yf_c00065{bottom:536.970000px;}
.y37_c00065{bottom:553.770000px;}
.ye_c00065{bottom:555.120000px;}
.y36_c00065{bottom:571.620000px;}
.yd_c00065{bottom:572.970000px;}
.y35_c00065{bottom:590.220000px;}
.yc_c00065{bottom:591.270000px;}
.y34_c00065{bottom:608.070000px;}
.yb_c00065{bottom:609.120000px;}
.y33_c00065{bottom:625.620000px;}
.ya_c00065{bottom:627.120000px;}
.y32_c00065{bottom:644.220000px;}
.y9_c00065{bottom:645.270000px;}
.y31_c00065{bottom:662.220000px;}
.y8_c00065{bottom:663.570000px;}
.y30_c00065{bottom:680.070000px;}
.y7_c00065{bottom:681.720000px;}
.y2f_c00065{bottom:698.520000px;}
.y6_c00065{bottom:699.870000px;}
.y2e_c00065{bottom:716.520000px;}
.y5_c00065{bottom:717.870000px;}
.y2d_c00065{bottom:735.420000px;}
.y4_c00065{bottom:736.320000px;}
.y2c_c00065{bottom:753.270000px;}
.y3_c00065{bottom:754.620000px;}
.y2b_c00065{bottom:770.520000px;}
.y2_c00065{bottom:772.470000px;}
.y1_c00065{bottom:791.820000px;}
.y2a_c00065{bottom:792.720000px;}
.h6_c00065{height:13.200073px;}
.h7_c00065{height:43.804688px;}
.h1_c00065{height:62.880000px;}
.h3_c00065{height:64.020000px;}
.h4_c00065{height:64.571777px;}
.h5_c00065{height:70.422000px;}
.h2_c00065{height:73.623000px;}
.h0_c00065{height:827.250000px;}
.w2_c00065{width:104.875500px;}
.w1_c00065{width:556.500000px;}
.w0_c00065{width:556.725000px;}
.x0_c00065{left:0.000000px;}
.x5_c00065{left:8.100000px;}
.xa_c00065{left:57.000000px;}
.x9_c00065{left:59.400000px;}
.x3_c00065{left:67.500000px;}
.x2_c00065{left:68.550000px;}
.x4_c00065{left:69.750000px;}
.x1_c00065{left:70.950000px;}
.x6_c00065{left:72.150000px;}
.x7_c00065{left:73.200000px;}
.x8_c00065{left:133.950000px;}
.x11_c00065{left:230.176758px;}
.xf_c00065{left:283.200000px;}
.xe_c00065{left:285.750000px;}
.xb_c00065{left:287.550000px;}
.xc_c00065{left:288.600000px;}
.xd_c00065{left:289.950000px;}
.x10_c00065{left:455.250000px;}
@media print{
.v0_c00065{vertical-align:0.000000pt;}
.ls4_c00065{letter-spacing:0.000000pt;}
.ls0_c00065{letter-spacing:2.666667pt;}
.ls1_c00065{letter-spacing:3.200000pt;}
.ls2_c00065{letter-spacing:5.333333pt;}
.ls3_c00065{letter-spacing:5.866667pt;}
.ls5_c00065{letter-spacing:13.333333pt;}
.ws3_c00065{word-spacing:-41.552000pt;}
.ws2_c00065{word-spacing:-16.258667pt;}
.ws1_c00065{word-spacing:-16.053333pt;}
.ws0_c00065{word-spacing:-12.586667pt;}
.ws4_c00065{word-spacing:-0.426667pt;}
.ws5_c00065{word-spacing:0.000000pt;}
._20_c00065{margin-left:-19.200000pt;}
._23_c00065{margin-left:-16.157333pt;}
._22_c00065{margin-left:-14.986667pt;}
._17_c00065{margin-left:-11.413333pt;}
._18_c00065{margin-left:-9.280000pt;}
._a_c00065{margin-left:-8.280000pt;}
._13_c00065{margin-left:-7.040000pt;}
._14_c00065{margin-left:-6.120000pt;}
._b_c00065{margin-left:-5.224000pt;}
._d_c00065{margin-left:-4.160000pt;}
._8_c00065{margin-left:-3.200000pt;}
._9_c00065{margin-left:-2.186667pt;}
._5_c00065{margin-left:-1.280000pt;}
._6_c00065{width:0.960000pt;}
._7_c00065{width:2.346667pt;}
._c_c00065{width:3.573333pt;}
._15_c00065{width:4.800000pt;}
._16_c00065{width:6.186667pt;}
._1b_c00065{width:7.197333pt;}
._e_c00065{width:8.106667pt;}
._1d_c00065{width:9.493333pt;}
._27_c00065{width:10.616000pt;}
._1a_c00065{width:11.733333pt;}
._2_c00065{width:12.800000pt;}
._1f_c00065{width:13.813333pt;}
._0_c00065{width:14.826667pt;}
._29_c00065{width:15.946667pt;}
._19_c00065{width:17.120000pt;}
._2a_c00065{width:18.613333pt;}
._4_c00065{width:19.520000pt;}
._28_c00065{width:20.640000pt;}
._3_c00065{width:21.706667pt;}
._1e_c00065{width:23.304000pt;}
._12_c00065{width:25.440000pt;}
._f_c00065{width:26.560000pt;}
._11_c00065{width:27.573333pt;}
._2c_c00065{width:28.797333pt;}
._24_c00065{width:30.560000pt;}
._10_c00065{width:34.293333pt;}
._1c_c00065{width:86.986667pt;}
._25_c00065{width:182.226667pt;}
._26_c00065{width:215.626667pt;}
._21_c00065{width:253.120000pt;}
._1_c00065{width:294.080000pt;}
._2b_c00065{width:507.200000pt;}
.fs4_c00065{font-size:42.666667pt;}
.fs2_c00065{font-size:45.333333pt;}
.fs0_c00065{font-size:53.333333pt;}
.fs3_c00065{font-size:58.666667pt;}
.fs1_c00065{font-size:61.333333pt;}
.y0_c00065{bottom:0.000000pt;}
.y56_c00065{bottom:2.760000pt;}
.y55_c00065{bottom:6.425217pt;}
.y54_c00065{bottom:21.306667pt;}
.y53_c00065{bottom:38.106667pt;}
.y29_c00065{bottom:38.640000pt;}
.y52_c00065{bottom:55.440000pt;}
.y28_c00065{bottom:55.840000pt;}
.y51_c00065{bottom:71.306667pt;}
.y27_c00065{bottom:73.706667pt;}
.y50_c00065{bottom:88.106667pt;}
.y4f_c00065{bottom:102.506667pt;}
.y26_c00065{bottom:105.040000pt;}
.y4e_c00065{bottom:120.506667pt;}
.y25_c00065{bottom:120.906667pt;}
.y4d_c00065{bottom:137.706667pt;}
.y24_c00065{bottom:138.906667pt;}
.y23_c00065{bottom:153.573333pt;}
.y4c_c00065{bottom:154.506667pt;}
.y4b_c00065{bottom:166.773333pt;}
.y22_c00065{bottom:168.640000pt;}
.y4a_c00065{bottom:182.640000pt;}
.y21_c00065{bottom:186.240000pt;}
.y49_c00065{bottom:201.573333pt;}
.y20_c00065{bottom:202.106667pt;}
.y48_c00065{bottom:217.840000pt;}
.y1f_c00065{bottom:218.906667pt;}
.y1e_c00065{bottom:233.040000pt;}
.y47_c00065{bottom:234.240000pt;}
.y46_c00065{bottom:249.840000pt;}
.y1d_c00065{bottom:252.640000pt;}
.y45_c00065{bottom:264.906667pt;}
.y1c_c00065{bottom:268.106667pt;}
.y44_c00065{bottom:281.706667pt;}
.y1b_c00065{bottom:284.373333pt;}
.y43_c00065{bottom:297.840000pt;}
.y1a_c00065{bottom:300.506667pt;}
.y42_c00065{bottom:314.373333pt;}
.y19_c00065{bottom:317.040000pt;}
.y41_c00065{bottom:331.173333pt;}
.y18_c00065{bottom:332.640000pt;}
.y40_c00065{bottom:346.773333pt;}
.y17_c00065{bottom:348.640000pt;}
.y3f_c00065{bottom:362.906667pt;}
.y16_c00065{bottom:364.240000pt;}
.y3e_c00065{bottom:380.106667pt;}
.y15_c00065{bottom:380.906667pt;}
.y3d_c00065{bottom:395.973333pt;}
.y14_c00065{bottom:396.906667pt;}
.y3c_c00065{bottom:411.840000pt;}
.y13_c00065{bottom:413.040000pt;}
.y3b_c00065{bottom:426.906667pt;}
.y12_c00065{bottom:429.040000pt;}
.y3a_c00065{bottom:443.706667pt;}
.y11_c00065{bottom:445.840000pt;}
.y39_c00065{bottom:459.573333pt;}
.y10_c00065{bottom:461.306667pt;}
.y38_c00065{bottom:475.706667pt;}
.yf_c00065{bottom:477.306667pt;}
.y37_c00065{bottom:492.240000pt;}
.ye_c00065{bottom:493.440000pt;}
.y36_c00065{bottom:508.106667pt;}
.yd_c00065{bottom:509.306667pt;}
.y35_c00065{bottom:524.640000pt;}
.yc_c00065{bottom:525.573333pt;}
.y34_c00065{bottom:540.506667pt;}
.yb_c00065{bottom:541.440000pt;}
.y33_c00065{bottom:556.106667pt;}
.ya_c00065{bottom:557.440000pt;}
.y32_c00065{bottom:572.640000pt;}
.y9_c00065{bottom:573.573333pt;}
.y31_c00065{bottom:588.640000pt;}
.y8_c00065{bottom:589.840000pt;}
.y30_c00065{bottom:604.506667pt;}
.y7_c00065{bottom:605.973333pt;}
.y2f_c00065{bottom:620.906667pt;}
.y6_c00065{bottom:622.106667pt;}
.y2e_c00065{bottom:636.906667pt;}
.y5_c00065{bottom:638.106667pt;}
.y2d_c00065{bottom:653.706667pt;}
.y4_c00065{bottom:654.506667pt;}
.y2c_c00065{bottom:669.573333pt;}
.y3_c00065{bottom:670.773333pt;}
.y2b_c00065{bottom:684.906667pt;}
.y2_c00065{bottom:686.640000pt;}
.y1_c00065{bottom:703.840000pt;}
.y2a_c00065{bottom:704.640000pt;}
.h6_c00065{height:11.733399pt;}
.h7_c00065{height:38.937500pt;}
.h1_c00065{height:55.893333pt;}
.h3_c00065{height:56.906667pt;}
.h4_c00065{height:57.397135pt;}
.h5_c00065{height:62.597333pt;}
.h2_c00065{height:65.442667pt;}
.h0_c00065{height:735.333333pt;}
.w2_c00065{width:93.222667pt;}
.w1_c00065{width:494.666667pt;}
.w0_c00065{width:494.866667pt;}
.x0_c00065{left:0.000000pt;}
.x5_c00065{left:7.200000pt;}
.xa_c00065{left:50.666667pt;}
.x9_c00065{left:52.800000pt;}
.x3_c00065{left:60.000000pt;}
.x2_c00065{left:60.933333pt;}
.x4_c00065{left:62.000000pt;}
.x1_c00065{left:63.066667pt;}
.x6_c00065{left:64.133333pt;}
.x7_c00065{left:65.066667pt;}
.x8_c00065{left:119.066667pt;}
.x11_c00065{left:204.601563pt;}
.xf_c00065{left:251.733333pt;}
.xe_c00065{left:254.000000pt;}
.xb_c00065{left:255.600000pt;}
.xc_c00065{left:256.533333pt;}
.xd_c00065{left:257.733333pt;}
.x10_c00065{left:404.666667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_7aa0bd0a5bc61f967bb0991a.woff2')format("woff");}.ff1_c00066{font-family:ff1_c00066;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00066;src:url('chunks/assets/font_1ebcf0339c2426dd9c90f5c5.woff2')format("woff");}.ff2_c00066{font-family:ff2_c00066;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00066;src:url('chunks/assets/font_7164f7fc20c479aacf7b7c04.woff2')format("woff");}.ff3_c00066{font-family:ff3_c00066;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00066;src:url('chunks/assets/font_687320d093df92413c4829f1.woff2')format("woff");}.ff4_c00066{font-family:ff4_c00066;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00066;src:url('chunks/assets/font_84eeee3e77654c134e439b92.woff2')format("woff");}.ff5_c00066{font-family:ff5_c00066;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00066;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff6_c00066{font-family:ff6_c00066;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00066{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00066{vertical-align:0.000000px;}
.ls4_c00066{letter-spacing:0.000000px;}
.ls5_c00066{letter-spacing:3.000000px;}
.ls3_c00066{letter-spacing:6.660000px;}
.ls2_c00066{letter-spacing:9.360000px;}
.ls1_c00066{letter-spacing:12.405000px;}
.ls0_c00066{letter-spacing:39.000000px;}
.sc__c00066{text-shadow:none;}
.sc0_c00066{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00066{-webkit-text-stroke:0px transparent;}
.sc0_c00066{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00066{word-spacing:-53.160000px;}
.ws3_c00066{word-spacing:-31.746000px;}
.ws1_c00066{word-spacing:-18.060000px;}
.ws0_c00066{word-spacing:-14.160000px;}
.ws4_c00066{word-spacing:0.000000px;}
._1c_c00066{margin-left:-17.580000px;}
._1a_c00066{margin-left:-14.040000px;}
._1d_c00066{margin-left:-12.120000px;}
._25_c00066{margin-left:-10.500000px;}
._19_c00066{margin-left:-7.980000px;}
._16_c00066{margin-left:-6.720000px;}
._5_c00066{margin-left:-4.500000px;}
._4_c00066{margin-left:-3.240000px;}
._6_c00066{margin-left:-2.220000px;}
._3_c00066{margin-left:-1.140000px;}
._2_c00066{width:1.200000px;}
._1_c00066{width:2.400000px;}
._8_c00066{width:3.600000px;}
._7_c00066{width:4.740000px;}
._d_c00066{width:5.760000px;}
._a_c00066{width:6.780000px;}
._b_c00066{width:8.280000px;}
._f_c00066{width:10.200000px;}
._c_c00066{width:11.760000px;}
._11_c00066{width:13.020000px;}
._10_c00066{width:14.520000px;}
._9_c00066{width:16.200000px;}
._0_c00066{width:20.280000px;}
._28_c00066{width:21.300000px;}
._15_c00066{width:22.500000px;}
._18_c00066{width:24.060000px;}
._14_c00066{width:26.640000px;}
._27_c00066{width:28.080000px;}
._21_c00066{width:30.120000px;}
._20_c00066{width:33.900000px;}
._23_c00066{width:36.600000px;}
._22_c00066{width:41.100000px;}
._17_c00066{width:42.600000px;}
._24_c00066{width:43.800000px;}
._12_c00066{width:45.180000px;}
._13_c00066{width:51.840000px;}
._1b_c00066{width:56.400000px;}
._1f_c00066{width:96.600000px;}
._e_c00066{width:99.480000px;}
._26_c00066{width:116.760000px;}
._1e_c00066{width:122.940000px;}
.fc2_c00066{color:transparent;}
.fc1_c00066{color:rgb(128,128,128);}
.fc0_c00066{color:rgb(0,0,0);}
.fs2_c00066{font-size:45.000000px;}
.fs4_c00066{font-size:48.000000px;}
.fs1_c00066{font-size:60.000000px;}
.fs3_c00066{font-size:66.000000px;}
.fs0_c00066{font-size:72.000000px;}
.y0_c00066{bottom:0.000000px;}
.y55_c00066{bottom:3.105000px;}
.y54_c00066{bottom:7.228363px;}
.y53_c00066{bottom:28.350000px;}
.y52_c00066{bottom:49.500000px;}
.y29_c00066{bottom:51.900000px;}
.y51_c00066{bottom:68.100000px;}
.y28_c00066{bottom:70.500000px;}
.y50_c00066{bottom:85.800000px;}
.y27_c00066{bottom:88.800000px;}
.y4f_c00066{bottom:102.900000px;}
.y26_c00066{bottom:106.950000px;}
.y4e_c00066{bottom:122.400000px;}
.y25_c00066{bottom:125.550000px;}
.y4d_c00066{bottom:140.400000px;}
.y24_c00066{bottom:144.450000px;}
.y4c_c00066{bottom:158.550000px;}
.y23_c00066{bottom:162.600000px;}
.y4b_c00066{bottom:176.850000px;}
.y22_c00066{bottom:179.100000px;}
.y4a_c00066{bottom:195.000000px;}
.y21_c00066{bottom:197.700000px;}
.y49_c00066{bottom:213.900000px;}
.y20_c00066{bottom:215.850000px;}
.y48_c00066{bottom:231.300000px;}
.y1f_c00066{bottom:234.150000px;}
.y47_c00066{bottom:249.750000px;}
.y1e_c00066{bottom:252.450000px;}
.y46_c00066{bottom:268.350000px;}
.y1d_c00066{bottom:270.300000px;}
.y45_c00066{bottom:286.200000px;}
.y1c_c00066{bottom:289.500000px;}
.y44_c00066{bottom:304.650000px;}
.y1b_c00066{bottom:306.150000px;}
.y43_c00066{bottom:323.100000px;}
.y1a_c00066{bottom:325.050000px;}
.y42_c00066{bottom:340.800000px;}
.y19_c00066{bottom:342.900000px;}
.y41_c00066{bottom:358.800000px;}
.y18_c00066{bottom:361.050000px;}
.y40_c00066{bottom:377.550000px;}
.y17_c00066{bottom:379.350000px;}
.y3f_c00066{bottom:395.850000px;}
.y16_c00066{bottom:397.500000px;}
.y3e_c00066{bottom:414.000000px;}
.y15_c00066{bottom:415.050000px;}
.y3d_c00066{bottom:432.600000px;}
.y14_c00066{bottom:433.350000px;}
.y3c_c00066{bottom:450.600000px;}
.y13_c00066{bottom:450.900000px;}
.y12_c00066{bottom:468.750000px;}
.y3b_c00066{bottom:469.800000px;}
.y11_c00066{bottom:486.900000px;}
.y3a_c00066{bottom:487.950000px;}
.y10_c00066{bottom:505.500000px;}
.y39_c00066{bottom:506.850000px;}
.yf_c00066{bottom:523.050000px;}
.y38_c00066{bottom:524.850000px;}
.ye_c00066{bottom:541.050000px;}
.y37_c00066{bottom:542.700000px;}
.yd_c00066{bottom:559.350000px;}
.y36_c00066{bottom:561.150000px;}
.yc_c00066{bottom:577.350000px;}
.y35_c00066{bottom:579.150000px;}
.yb_c00066{bottom:595.350000px;}
.y34_c00066{bottom:597.000000px;}
.ya_c00066{bottom:613.800000px;}
.y33_c00066{bottom:614.850000px;}
.y9_c00066{bottom:631.500000px;}
.y32_c00066{bottom:633.450000px;}
.y8_c00066{bottom:649.650000px;}
.y31_c00066{bottom:651.750000px;}
.y7_c00066{bottom:667.800000px;}
.y30_c00066{bottom:670.200000px;}
.y6_c00066{bottom:685.500000px;}
.y2f_c00066{bottom:688.200000px;}
.y5_c00066{bottom:703.950000px;}
.y2e_c00066{bottom:706.950000px;}
.y4_c00066{bottom:721.950000px;}
.y2d_c00066{bottom:724.950000px;}
.y3_c00066{bottom:740.100000px;}
.y2c_c00066{bottom:742.500000px;}
.y2_c00066{bottom:758.400000px;}
.y2b_c00066{bottom:760.950000px;}
.y1_c00066{bottom:775.950000px;}
.y2a_c00066{bottom:779.550000px;}
.h5_c00066{height:13.200074px;}
.h6_c00066{height:43.804688px;}
.h3_c00066{height:62.880000px;}
.h4_c00066{height:71.544000px;}
.h2_c00066{height:75.456000px;}
.h1_c00066{height:820.500000px;}
.h0_c00066{height:820.800000px;}
.w2_c00066{width:104.875500px;}
.w1_c00066{width:564.750000px;}
.w0_c00066{width:564.825000px;}
.x0_c00066{left:0.000000px;}
.x4_c00066{left:29.250000px;}
.x5_c00066{left:31.650000px;}
.x9_c00066{left:33.300000px;}
.xa_c00066{left:34.650000px;}
.x3_c00066{left:84.750000px;}
.x2_c00066{left:87.750000px;}
.x1_c00066{left:89.700000px;}
.x6_c00066{left:91.350000px;}
.x7_c00066{left:92.400000px;}
.xb_c00066{left:93.450000px;}
.x8_c00066{left:108.000000px;}
.x13_c00066{left:234.226730px;}
.xd_c00066{left:306.000000px;}
.xc_c00066{left:307.050000px;}
.xe_c00066{left:308.100000px;}
.xf_c00066{left:309.600000px;}
.x10_c00066{left:311.250000px;}
.x11_c00066{left:313.500000px;}
.x12_c00066{left:459.000000px;}
@media print{
.v0_c00066{vertical-align:0.000000pt;}
.ls4_c00066{letter-spacing:0.000000pt;}
.ls5_c00066{letter-spacing:2.666667pt;}
.ls3_c00066{letter-spacing:5.920000pt;}
.ls2_c00066{letter-spacing:8.320000pt;}
.ls1_c00066{letter-spacing:11.026667pt;}
.ls0_c00066{letter-spacing:34.666667pt;}
.ws2_c00066{word-spacing:-47.253333pt;}
.ws3_c00066{word-spacing:-28.218667pt;}
.ws1_c00066{word-spacing:-16.053333pt;}
.ws0_c00066{word-spacing:-12.586667pt;}
.ws4_c00066{word-spacing:0.000000pt;}
._1c_c00066{margin-left:-15.626667pt;}
._1a_c00066{margin-left:-12.480000pt;}
._1d_c00066{margin-left:-10.773333pt;}
._25_c00066{margin-left:-9.333333pt;}
._19_c00066{margin-left:-7.093333pt;}
._16_c00066{margin-left:-5.973333pt;}
._5_c00066{margin-left:-4.000000pt;}
._4_c00066{margin-left:-2.880000pt;}
._6_c00066{margin-left:-1.973333pt;}
._3_c00066{margin-left:-1.013333pt;}
._2_c00066{width:1.066667pt;}
._1_c00066{width:2.133333pt;}
._8_c00066{width:3.200000pt;}
._7_c00066{width:4.213333pt;}
._d_c00066{width:5.120000pt;}
._a_c00066{width:6.026667pt;}
._b_c00066{width:7.360000pt;}
._f_c00066{width:9.066667pt;}
._c_c00066{width:10.453333pt;}
._11_c00066{width:11.573333pt;}
._10_c00066{width:12.906667pt;}
._9_c00066{width:14.400000pt;}
._0_c00066{width:18.026667pt;}
._28_c00066{width:18.933333pt;}
._15_c00066{width:20.000000pt;}
._18_c00066{width:21.386667pt;}
._14_c00066{width:23.680000pt;}
._27_c00066{width:24.960000pt;}
._21_c00066{width:26.773333pt;}
._20_c00066{width:30.133333pt;}
._23_c00066{width:32.533333pt;}
._22_c00066{width:36.533333pt;}
._17_c00066{width:37.866667pt;}
._24_c00066{width:38.933333pt;}
._12_c00066{width:40.160000pt;}
._13_c00066{width:46.080000pt;}
._1b_c00066{width:50.133333pt;}
._1f_c00066{width:85.866667pt;}
._e_c00066{width:88.426667pt;}
._26_c00066{width:103.786667pt;}
._1e_c00066{width:109.280000pt;}
.fs2_c00066{font-size:40.000000pt;}
.fs4_c00066{font-size:42.666667pt;}
.fs1_c00066{font-size:53.333333pt;}
.fs3_c00066{font-size:58.666667pt;}
.fs0_c00066{font-size:64.000000pt;}
.y0_c00066{bottom:0.000000pt;}
.y55_c00066{bottom:2.760000pt;}
.y54_c00066{bottom:6.425212pt;}
.y53_c00066{bottom:25.200000pt;}
.y52_c00066{bottom:44.000000pt;}
.y29_c00066{bottom:46.133333pt;}
.y51_c00066{bottom:60.533333pt;}
.y28_c00066{bottom:62.666667pt;}
.y50_c00066{bottom:76.266667pt;}
.y27_c00066{bottom:78.933333pt;}
.y4f_c00066{bottom:91.466667pt;}
.y26_c00066{bottom:95.066667pt;}
.y4e_c00066{bottom:108.800000pt;}
.y25_c00066{bottom:111.600000pt;}
.y4d_c00066{bottom:124.800000pt;}
.y24_c00066{bottom:128.400000pt;}
.y4c_c00066{bottom:140.933333pt;}
.y23_c00066{bottom:144.533333pt;}
.y4b_c00066{bottom:157.200000pt;}
.y22_c00066{bottom:159.200000pt;}
.y4a_c00066{bottom:173.333333pt;}
.y21_c00066{bottom:175.733333pt;}
.y49_c00066{bottom:190.133333pt;}
.y20_c00066{bottom:191.866667pt;}
.y48_c00066{bottom:205.600000pt;}
.y1f_c00066{bottom:208.133333pt;}
.y47_c00066{bottom:222.000000pt;}
.y1e_c00066{bottom:224.400000pt;}
.y46_c00066{bottom:238.533333pt;}
.y1d_c00066{bottom:240.266667pt;}
.y45_c00066{bottom:254.400000pt;}
.y1c_c00066{bottom:257.333333pt;}
.y44_c00066{bottom:270.800000pt;}
.y1b_c00066{bottom:272.133333pt;}
.y43_c00066{bottom:287.200000pt;}
.y1a_c00066{bottom:288.933333pt;}
.y42_c00066{bottom:302.933333pt;}
.y19_c00066{bottom:304.800000pt;}
.y41_c00066{bottom:318.933333pt;}
.y18_c00066{bottom:320.933333pt;}
.y40_c00066{bottom:335.600000pt;}
.y17_c00066{bottom:337.200000pt;}
.y3f_c00066{bottom:351.866667pt;}
.y16_c00066{bottom:353.333333pt;}
.y3e_c00066{bottom:368.000000pt;}
.y15_c00066{bottom:368.933333pt;}
.y3d_c00066{bottom:384.533333pt;}
.y14_c00066{bottom:385.200000pt;}
.y3c_c00066{bottom:400.533333pt;}
.y13_c00066{bottom:400.800000pt;}
.y12_c00066{bottom:416.666667pt;}
.y3b_c00066{bottom:417.600000pt;}
.y11_c00066{bottom:432.800000pt;}
.y3a_c00066{bottom:433.733333pt;}
.y10_c00066{bottom:449.333333pt;}
.y39_c00066{bottom:450.533333pt;}
.yf_c00066{bottom:464.933333pt;}
.y38_c00066{bottom:466.533333pt;}
.ye_c00066{bottom:480.933333pt;}
.y37_c00066{bottom:482.400000pt;}
.yd_c00066{bottom:497.200000pt;}
.y36_c00066{bottom:498.800000pt;}
.yc_c00066{bottom:513.200000pt;}
.y35_c00066{bottom:514.800000pt;}
.yb_c00066{bottom:529.200000pt;}
.y34_c00066{bottom:530.666667pt;}
.ya_c00066{bottom:545.600000pt;}
.y33_c00066{bottom:546.533333pt;}
.y9_c00066{bottom:561.333333pt;}
.y32_c00066{bottom:563.066667pt;}
.y8_c00066{bottom:577.466667pt;}
.y31_c00066{bottom:579.333333pt;}
.y7_c00066{bottom:593.600000pt;}
.y30_c00066{bottom:595.733333pt;}
.y6_c00066{bottom:609.333333pt;}
.y2f_c00066{bottom:611.733333pt;}
.y5_c00066{bottom:625.733333pt;}
.y2e_c00066{bottom:628.400000pt;}
.y4_c00066{bottom:641.733333pt;}
.y2d_c00066{bottom:644.400000pt;}
.y3_c00066{bottom:657.866667pt;}
.y2c_c00066{bottom:660.000000pt;}
.y2_c00066{bottom:674.133333pt;}
.y2b_c00066{bottom:676.400000pt;}
.y1_c00066{bottom:689.733333pt;}
.y2a_c00066{bottom:692.933333pt;}
.h5_c00066{height:11.733399pt;}
.h6_c00066{height:38.937500pt;}
.h3_c00066{height:55.893333pt;}
.h4_c00066{height:63.594667pt;}
.h2_c00066{height:67.072000pt;}
.h1_c00066{height:729.333333pt;}
.h0_c00066{height:729.600000pt;}
.w2_c00066{width:93.222667pt;}
.w1_c00066{width:502.000000pt;}
.w0_c00066{width:502.066667pt;}
.x0_c00066{left:0.000000pt;}
.x4_c00066{left:26.000000pt;}
.x5_c00066{left:28.133333pt;}
.x9_c00066{left:29.600000pt;}
.xa_c00066{left:30.800000pt;}
.x3_c00066{left:75.333333pt;}
.x2_c00066{left:78.000000pt;}
.x1_c00066{left:79.733333pt;}
.x6_c00066{left:81.200000pt;}
.x7_c00066{left:82.133333pt;}
.xb_c00066{left:83.066667pt;}
.x8_c00066{left:96.000000pt;}
.x13_c00066{left:208.201538pt;}
.xd_c00066{left:272.000000pt;}
.xc_c00066{left:272.933333pt;}
.xe_c00066{left:273.866667pt;}
.xf_c00066{left:275.200000pt;}
.x10_c00066{left:276.666667pt;}
.x11_c00066{left:278.666667pt;}
.x12_c00066{left:408.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_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_b412686774f410880430c3d2.woff2')format("woff");}.ff1_c00067{font-family:ff1_c00067;line-height:1.575000;font-style:normal;font-weight:normal;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_ad562c8808f41a72e4a756c5.woff2')format("woff");}.ff2_c00067{font-family:ff2_c00067;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00067;src:url('chunks/assets/font_a664d127bed6bbf178708ff9.woff2')format("woff");}.ff3_c00067{font-family:ff3_c00067;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00067;src:url('chunks/assets/font_3bfafa856668c7dc25f1df3f.woff2')format("woff");}.ff4_c00067{font-family:ff4_c00067;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00067;src:url('chunks/assets/font_2d01add2155bdcd1033a1904.woff2')format("woff");}.ff5_c00067{font-family:ff5_c00067;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00067;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff6_c00067{font-family:ff6_c00067;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00067{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00067{vertical-align:0.000000px;}
.lsc_c00067{letter-spacing:-6.000000px;}
.lsa_c00067{letter-spacing:0.000000px;}
.ls8_c00067{letter-spacing:0.360000px;}
.ls1_c00067{letter-spacing:2.400000px;}
.ls4_c00067{letter-spacing:3.000000px;}
.ls9_c00067{letter-spacing:12.000000px;}
.ls7_c00067{letter-spacing:16.500000px;}
.ls0_c00067{letter-spacing:17.280000px;}
.ls6_c00067{letter-spacing:25.500000px;}
.ls5_c00067{letter-spacing:38.700000px;}
.lsb_c00067{letter-spacing:51.000000px;}
.ls2_c00067{letter-spacing:62.100000px;}
.ls3_c00067{letter-spacing:129.300000px;}
.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;}
}
.ws3_c00067{word-spacing:-67.500000px;}
.ws0_c00067{word-spacing:-49.200000px;}
.ws5_c00067{word-spacing:-42.399000px;}
.ws2_c00067{word-spacing:-28.500000px;}
.ws1_c00067{word-spacing:-14.160000px;}
.ws4_c00067{word-spacing:-10.500000px;}
.ws6_c00067{word-spacing:0.000000px;}
._2a_c00067{margin-left:-34.980000px;}
._29_c00067{margin-left:-25.638000px;}
._2f_c00067{margin-left:-23.232000px;}
._2d_c00067{margin-left:-19.050000px;}
._30_c00067{margin-left:-17.430000px;}
._1c_c00067{margin-left:-14.520000px;}
._15_c00067{margin-left:-12.474000px;}
._17_c00067{margin-left:-10.626000px;}
._d_c00067{margin-left:-9.504000px;}
._e_c00067{margin-left:-8.448000px;}
._2e_c00067{margin-left:-7.062000px;}
._0_c00067{margin-left:-6.006000px;}
._f_c00067{margin-left:-4.704000px;}
._8_c00067{margin-left:-3.564000px;}
._9_c00067{margin-left:-2.376000px;}
._7_c00067{margin-left:-1.320000px;}
._6_c00067{width:1.980000px;}
._19_c00067{width:3.150000px;}
._5_c00067{width:4.158000px;}
._11_c00067{width:5.874000px;}
._2_c00067{width:6.996000px;}
._c_c00067{width:8.400000px;}
._3_c00067{width:9.438000px;}
._4_c00067{width:11.220000px;}
._13_c00067{width:13.182000px;}
._20_c00067{width:15.252000px;}
._35_c00067{width:16.404000px;}
._b_c00067{width:17.556000px;}
._14_c00067{width:20.592000px;}
._18_c00067{width:23.448000px;}
._32_c00067{width:24.720000px;}
._25_c00067{width:26.256000px;}
._2b_c00067{width:27.312000px;}
._26_c00067{width:28.314000px;}
._31_c00067{width:29.580000px;}
._2c_c00067{width:33.720000px;}
._28_c00067{width:34.980000px;}
._10_c00067{width:52.470000px;}
._a_c00067{width:53.940000px;}
._16_c00067{width:55.374000px;}
._34_c00067{width:56.628000px;}
._12_c00067{width:57.900000px;}
._1e_c00067{width:63.144000px;}
._27_c00067{width:65.400000px;}
._33_c00067{width:66.810000px;}
._37_c00067{width:68.988000px;}
._36_c00067{width:72.600000px;}
._1b_c00067{width:75.504000px;}
._21_c00067{width:107.904000px;}
._1a_c00067{width:145.794000px;}
._22_c00067{width:166.785000px;}
._1f_c00067{width:185.352000px;}
._23_c00067{width:216.396000px;}
._1_c00067{width:305.382000px;}
._1d_c00067{width:309.606000px;}
._24_c00067{width:388.200000px;}
.fc2_c00067{color:transparent;}
.fc1_c00067{color:rgb(128,128,128);}
.fc0_c00067{color:rgb(0,0,0);}
.fs4_c00067{font-size:48.000000px;}
.fs1_c00067{font-size:60.000000px;}
.fs2_c00067{font-size:63.000000px;}
.fs0_c00067{font-size:66.000000px;}
.fs3_c00067{font-size:69.000000px;}
.y0_c00067{bottom:0.000000px;}
.y2d_c00067{bottom:3.105000px;}
.y2c_c00067{bottom:7.228369px;}
.y2b_c00067{bottom:36.720000px;}
.y2a_c00067{bottom:56.370000px;}
.y29_c00067{bottom:75.270000px;}
.y28_c00067{bottom:93.420000px;}
.y27_c00067{bottom:111.720000px;}
.y26_c00067{bottom:129.270000px;}
.y25_c00067{bottom:148.470000px;}
.y24_c00067{bottom:166.620000px;}
.y23_c00067{bottom:185.070000px;}
.y22_c00067{bottom:203.220000px;}
.y21_c00067{bottom:221.370000px;}
.y20_c00067{bottom:239.970000px;}
.y1f_c00067{bottom:257.670000px;}
.y1e_c00067{bottom:275.970000px;}
.y1d_c00067{bottom:294.270000px;}
.y1c_c00067{bottom:311.820000px;}
.y1b_c00067{bottom:330.420000px;}
.y1a_c00067{bottom:349.020000px;}
.y19_c00067{bottom:366.870000px;}
.y18_c00067{bottom:384.720000px;}
.y17_c00067{bottom:402.870000px;}
.y16_c00067{bottom:420.420000px;}
.y15_c00067{bottom:439.020000px;}
.y14_c00067{bottom:457.020000px;}
.y13_c00067{bottom:475.470000px;}
.y12_c00067{bottom:493.470000px;}
.y11_c00067{bottom:511.320000px;}
.y10_c00067{bottom:529.470000px;}
.yf_c00067{bottom:547.320000px;}
.ye_c00067{bottom:565.320000px;}
.yd_c00067{bottom:583.470000px;}
.yc_c00067{bottom:602.070000px;}
.yb_c00067{bottom:619.920000px;}
.ya_c00067{bottom:638.220000px;}
.y9_c00067{bottom:656.370000px;}
.y8_c00067{bottom:674.370000px;}
.y7_c00067{bottom:692.820000px;}
.y6_c00067{bottom:710.820000px;}
.y5_c00067{bottom:729.270000px;}
.y4_c00067{bottom:747.270000px;}
.y3_c00067{bottom:765.420000px;}
.y2_c00067{bottom:783.570000px;}
.y1_c00067{bottom:803.220000px;}
.h4_c00067{height:13.200073px;}
.h5_c00067{height:43.804688px;}
.h2_c00067{height:70.422000px;}
.h3_c00067{height:73.623000px;}
.h0_c00067{height:829.950000px;}
.h1_c00067{height:830.250000px;}
.w2_c00067{width:104.875500px;}
.w0_c00067{width:558.375000px;}
.w1_c00067{width:558.750000px;}
.x0_c00067{left:0.000000px;}
.x7_c00067{left:11.850000px;}
.x6_c00067{left:14.100000px;}
.x4_c00067{left:21.900000px;}
.x8_c00067{left:71.100000px;}
.x9_c00067{left:72.600000px;}
.x3_c00067{left:74.550000px;}
.x2_c00067{left:75.600000px;}
.x5_c00067{left:76.650000px;}
.x1_c00067{left:77.700000px;}
.xb_c00067{left:231.001740px;}
.xa_c00067{left:464.100000px;}
@media print{
.v0_c00067{vertical-align:0.000000pt;}
.lsc_c00067{letter-spacing:-5.333333pt;}
.lsa_c00067{letter-spacing:0.000000pt;}
.ls8_c00067{letter-spacing:0.320000pt;}
.ls1_c00067{letter-spacing:2.133333pt;}
.ls4_c00067{letter-spacing:2.666667pt;}
.ls9_c00067{letter-spacing:10.666667pt;}
.ls7_c00067{letter-spacing:14.666667pt;}
.ls0_c00067{letter-spacing:15.360000pt;}
.ls6_c00067{letter-spacing:22.666667pt;}
.ls5_c00067{letter-spacing:34.400000pt;}
.lsb_c00067{letter-spacing:45.333333pt;}
.ls2_c00067{letter-spacing:55.200000pt;}
.ls3_c00067{letter-spacing:114.933333pt;}
.ws3_c00067{word-spacing:-60.000000pt;}
.ws0_c00067{word-spacing:-43.733333pt;}
.ws5_c00067{word-spacing:-37.688000pt;}
.ws2_c00067{word-spacing:-25.333333pt;}
.ws1_c00067{word-spacing:-12.586667pt;}
.ws4_c00067{word-spacing:-9.333333pt;}
.ws6_c00067{word-spacing:0.000000pt;}
._2a_c00067{margin-left:-31.093333pt;}
._29_c00067{margin-left:-22.789333pt;}
._2f_c00067{margin-left:-20.650667pt;}
._2d_c00067{margin-left:-16.933333pt;}
._30_c00067{margin-left:-15.493333pt;}
._1c_c00067{margin-left:-12.906667pt;}
._15_c00067{margin-left:-11.088000pt;}
._17_c00067{margin-left:-9.445333pt;}
._d_c00067{margin-left:-8.448000pt;}
._e_c00067{margin-left:-7.509333pt;}
._2e_c00067{margin-left:-6.277333pt;}
._0_c00067{margin-left:-5.338667pt;}
._f_c00067{margin-left:-4.181333pt;}
._8_c00067{margin-left:-3.168000pt;}
._9_c00067{margin-left:-2.112000pt;}
._7_c00067{margin-left:-1.173333pt;}
._6_c00067{width:1.760000pt;}
._19_c00067{width:2.800000pt;}
._5_c00067{width:3.696000pt;}
._11_c00067{width:5.221333pt;}
._2_c00067{width:6.218667pt;}
._c_c00067{width:7.466667pt;}
._3_c00067{width:8.389333pt;}
._4_c00067{width:9.973333pt;}
._13_c00067{width:11.717333pt;}
._20_c00067{width:13.557333pt;}
._35_c00067{width:14.581333pt;}
._b_c00067{width:15.605333pt;}
._14_c00067{width:18.304000pt;}
._18_c00067{width:20.842667pt;}
._32_c00067{width:21.973333pt;}
._25_c00067{width:23.338667pt;}
._2b_c00067{width:24.277333pt;}
._26_c00067{width:25.168000pt;}
._31_c00067{width:26.293333pt;}
._2c_c00067{width:29.973333pt;}
._28_c00067{width:31.093333pt;}
._10_c00067{width:46.640000pt;}
._a_c00067{width:47.946667pt;}
._16_c00067{width:49.221333pt;}
._34_c00067{width:50.336000pt;}
._12_c00067{width:51.466667pt;}
._1e_c00067{width:56.128000pt;}
._27_c00067{width:58.133333pt;}
._33_c00067{width:59.386667pt;}
._37_c00067{width:61.322667pt;}
._36_c00067{width:64.533333pt;}
._1b_c00067{width:67.114667pt;}
._21_c00067{width:95.914667pt;}
._1a_c00067{width:129.594667pt;}
._22_c00067{width:148.253333pt;}
._1f_c00067{width:164.757333pt;}
._23_c00067{width:192.352000pt;}
._1_c00067{width:271.450667pt;}
._1d_c00067{width:275.205333pt;}
._24_c00067{width:345.066667pt;}
.fs4_c00067{font-size:42.666667pt;}
.fs1_c00067{font-size:53.333333pt;}
.fs2_c00067{font-size:56.000000pt;}
.fs0_c00067{font-size:58.666667pt;}
.fs3_c00067{font-size:61.333333pt;}
.y0_c00067{bottom:0.000000pt;}
.y2d_c00067{bottom:2.760000pt;}
.y2c_c00067{bottom:6.425217pt;}
.y2b_c00067{bottom:32.640000pt;}
.y2a_c00067{bottom:50.106667pt;}
.y29_c00067{bottom:66.906667pt;}
.y28_c00067{bottom:83.040000pt;}
.y27_c00067{bottom:99.306667pt;}
.y26_c00067{bottom:114.906667pt;}
.y25_c00067{bottom:131.973333pt;}
.y24_c00067{bottom:148.106667pt;}
.y23_c00067{bottom:164.506667pt;}
.y22_c00067{bottom:180.640000pt;}
.y21_c00067{bottom:196.773333pt;}
.y20_c00067{bottom:213.306667pt;}
.y1f_c00067{bottom:229.040000pt;}
.y1e_c00067{bottom:245.306667pt;}
.y1d_c00067{bottom:261.573333pt;}
.y1c_c00067{bottom:277.173333pt;}
.y1b_c00067{bottom:293.706667pt;}
.y1a_c00067{bottom:310.240000pt;}
.y19_c00067{bottom:326.106667pt;}
.y18_c00067{bottom:341.973333pt;}
.y17_c00067{bottom:358.106667pt;}
.y16_c00067{bottom:373.706667pt;}
.y15_c00067{bottom:390.240000pt;}
.y14_c00067{bottom:406.240000pt;}
.y13_c00067{bottom:422.640000pt;}
.y12_c00067{bottom:438.640000pt;}
.y11_c00067{bottom:454.506667pt;}
.y10_c00067{bottom:470.640000pt;}
.yf_c00067{bottom:486.506667pt;}
.ye_c00067{bottom:502.506667pt;}
.yd_c00067{bottom:518.640000pt;}
.yc_c00067{bottom:535.173333pt;}
.yb_c00067{bottom:551.040000pt;}
.ya_c00067{bottom:567.306667pt;}
.y9_c00067{bottom:583.440000pt;}
.y8_c00067{bottom:599.440000pt;}
.y7_c00067{bottom:615.840000pt;}
.y6_c00067{bottom:631.840000pt;}
.y5_c00067{bottom:648.240000pt;}
.y4_c00067{bottom:664.240000pt;}
.y3_c00067{bottom:680.373333pt;}
.y2_c00067{bottom:696.506667pt;}
.y1_c00067{bottom:713.973333pt;}
.h4_c00067{height:11.733399pt;}
.h5_c00067{height:38.937500pt;}
.h2_c00067{height:62.597333pt;}
.h3_c00067{height:65.442667pt;}
.h0_c00067{height:737.733333pt;}
.h1_c00067{height:738.000000pt;}
.w2_c00067{width:93.222667pt;}
.w0_c00067{width:496.333333pt;}
.w1_c00067{width:496.666667pt;}
.x0_c00067{left:0.000000pt;}
.x7_c00067{left:10.533333pt;}
.x6_c00067{left:12.533333pt;}
.x4_c00067{left:19.466667pt;}
.x8_c00067{left:63.200000pt;}
.x9_c00067{left:64.533333pt;}
.x3_c00067{left:66.266667pt;}
.x2_c00067{left:67.200000pt;}
.x5_c00067{left:68.133333pt;}
.x1_c00067{left:69.066667pt;}
.xb_c00067{left:205.334880pt;}
.xa_c00067{left:412.533333pt;}
}





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

.ir_c00068:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00068{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00068;src:url('chunks/assets/font_b9ae2f3ec62fabe716fa9dc9.woff2')format("woff");}.ff1_c00068{font-family:ff1_c00068;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00068;src:url('chunks/assets/font_af448b65bcc828438d720b2e.woff2')format("woff");}.ff2_c00068{font-family:ff2_c00068;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00068;src:url('chunks/assets/font_a8154f5b6e1cf917488e6ec9.woff2')format("woff");}.ff3_c00068{font-family:ff3_c00068;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00068;src:url('chunks/assets/font_f1e3a2602a7a67e4da007064.woff2')format("woff");}.ff4_c00068{font-family:ff4_c00068;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00068;src:url('chunks/assets/font_0567db9d32b870e8e4d6432c.woff2')format("woff");}.ff5_c00068{font-family:ff5_c00068;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00068;src:url('chunks/assets/font_7f5aed69d9402d17e6342211.woff2')format("woff");}.ff6_c00068{font-family:ff6_c00068;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00068;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff7_c00068{font-family:ff7_c00068;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00068{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00068{vertical-align:0.000000px;}
.ls6_c00068{letter-spacing:0.000000px;}
.ls5_c00068{letter-spacing:0.420000px;}
.ls3_c00068{letter-spacing:0.600000px;}
.ls0_c00068{letter-spacing:3.000000px;}
.ls1_c00068{letter-spacing:6.600000px;}
.ls2_c00068{letter-spacing:15.000000px;}
.ls4_c00068{letter-spacing:16.260000px;}
.sc__c00068{text-shadow:none;}
.sc0_c00068{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00068{-webkit-text-stroke:0px transparent;}
.sc0_c00068{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00068{word-spacing:-31.746000px;}
.ws1_c00068{word-spacing:-18.060000px;}
.ws3_c00068{word-spacing:-17.340000px;}
.ws0_c00068{word-spacing:-14.160000px;}
.ws4_c00068{word-spacing:0.000000px;}
._1d_c00068{margin-left:-22.620000px;}
._1a_c00068{margin-left:-16.080000px;}
._19_c00068{margin-left:-14.940000px;}
._1c_c00068{margin-left:-13.260000px;}
._18_c00068{margin-left:-11.340000px;}
._f_c00068{margin-left:-10.260000px;}
._10_c00068{margin-left:-9.060000px;}
._11_c00068{margin-left:-7.260000px;}
._15_c00068{margin-left:-5.640000px;}
._13_c00068{margin-left:-4.020000px;}
._1_c00068{margin-left:-3.000000px;}
._7_c00068{margin-left:-1.020000px;}
._2_c00068{width:1.560000px;}
._0_c00068{width:2.880000px;}
._4_c00068{width:4.020000px;}
._a_c00068{width:5.700000px;}
._8_c00068{width:7.680000px;}
._12_c00068{width:9.120000px;}
._3_c00068{width:10.860000px;}
._9_c00068{width:12.420000px;}
._14_c00068{width:14.340000px;}
._c_c00068{width:16.320000px;}
._1b_c00068{width:19.500000px;}
._5_c00068{width:21.060000px;}
._d_c00068{width:23.460000px;}
._16_c00068{width:24.780000px;}
._6_c00068{width:27.120000px;}
._e_c00068{width:31.500000px;}
._b_c00068{width:35.040000px;}
._17_c00068{width:43.680000px;}
.fc2_c00068{color:transparent;}
.fc1_c00068{color:rgb(128,128,128);}
.fc0_c00068{color:rgb(0,0,0);}
.fs1_c00068{font-size:48.000000px;}
.fs0_c00068{font-size:60.000000px;}
.fs2_c00068{font-size:66.000000px;}
.fs3_c00068{font-size:69.000000px;}
.y0_c00068{bottom:0.000000px;}
.y51_c00068{bottom:3.105000px;}
.y50_c00068{bottom:7.228357px;}
.y4f_c00068{bottom:45.180000px;}
.y29_c00068{bottom:64.530000px;}
.y4e_c00068{bottom:82.680000px;}
.y28_c00068{bottom:83.730000px;}
.y4d_c00068{bottom:100.530000px;}
.y27_c00068{bottom:102.030000px;}
.y4c_c00068{bottom:118.530000px;}
.y26_c00068{bottom:119.580000px;}
.y4b_c00068{bottom:136.680000px;}
.y25_c00068{bottom:138.330000px;}
.y4a_c00068{bottom:154.980000px;}
.y24_c00068{bottom:156.630000px;}
.y49_c00068{bottom:173.430000px;}
.y23_c00068{bottom:174.180000px;}
.y48_c00068{bottom:192.030000px;}
.y22_c00068{bottom:193.080000px;}
.y47_c00068{bottom:209.580000px;}
.y21_c00068{bottom:211.380000px;}
.y46_c00068{bottom:227.580000px;}
.y20_c00068{bottom:229.530000px;}
.y45_c00068{bottom:246.330000px;}
.y1f_c00068{bottom:247.080000px;}
.y44_c00068{bottom:264.930000px;}
.y1e_c00068{bottom:266.730000px;}
.y43_c00068{bottom:283.230000px;}
.y1d_c00068{bottom:284.580000px;}
.y42_c00068{bottom:301.380000px;}
.y1c_c00068{bottom:302.430000px;}
.y41_c00068{bottom:319.680000px;}
.y1b_c00068{bottom:321.330000px;}
.y40_c00068{bottom:337.530000px;}
.y1a_c00068{bottom:339.480000px;}
.y3f_c00068{bottom:355.680000px;}
.y19_c00068{bottom:356.430000px;}
.y18_c00068{bottom:373.680000px;}
.y3e_c00068{bottom:374.580000px;}
.y17_c00068{bottom:392.580000px;}
.y3d_c00068{bottom:410.430000px;}
.y16_c00068{bottom:411.180000px;}
.y3c_c00068{bottom:428.730000px;}
.y15_c00068{bottom:429.030000px;}
.y3b_c00068{bottom:446.280000px;}
.y14_c00068{bottom:447.480000px;}
.y13_c00068{bottom:465.180000px;}
.y12_c00068{bottom:482.730000px;}
.y3a_c00068{bottom:483.030000px;}
.y11_c00068{bottom:501.480000px;}
.y39_c00068{bottom:501.630000px;}
.y10_c00068{bottom:518.730000px;}
.y38_c00068{bottom:519.780000px;}
.yf_c00068{bottom:537.030000px;}
.y37_c00068{bottom:538.380000px;}
.ye_c00068{bottom:555.480000px;}
.y36_c00068{bottom:555.930000px;}
.yd_c00068{bottom:573.480000px;}
.y35_c00068{bottom:574.380000px;}
.yc_c00068{bottom:591.930000px;}
.y34_c00068{bottom:592.680000px;}
.yb_c00068{bottom:609.630000px;}
.y33_c00068{bottom:610.830000px;}
.ya_c00068{bottom:628.080000px;}
.y32_c00068{bottom:628.380000px;}
.y9_c00068{bottom:645.930000px;}
.y31_c00068{bottom:646.980000px;}
.y8_c00068{bottom:664.230000px;}
.y30_c00068{bottom:664.980000px;}
.y7_c00068{bottom:682.530000px;}
.y6_c00068{bottom:700.680000px;}
.y2f_c00068{bottom:701.280000px;}
.y5_c00068{bottom:718.830000px;}
.y2e_c00068{bottom:719.280000px;}
.y4_c00068{bottom:736.530000px;}
.y2d_c00068{bottom:737.730000px;}
.y3_c00068{bottom:754.380000px;}
.y2c_c00068{bottom:756.030000px;}
.y2_c00068{bottom:773.280000px;}
.y2b_c00068{bottom:773.580000px;}
.y1_c00068{bottom:791.430000px;}
.y2a_c00068{bottom:793.080000px;}
.h6_c00068{height:13.200074px;}
.h7_c00068{height:43.804688px;}
.h2_c00068{height:62.880000px;}
.h4_c00068{height:70.422000px;}
.h3_c00068{height:71.544000px;}
.h5_c00068{height:72.312000px;}
.h1_c00068{height:845.250000px;}
.h0_c00068{height:845.400000px;}
.w2_c00068{width:104.875500px;}
.w0_c00068{width:575.925000px;}
.w1_c00068{width:576.000000px;}
.x0_c00068{left:0.000000px;}
.x8_c00068{left:10.800000px;}
.x7_c00068{left:14.850000px;}
.x2_c00068{left:72.300000px;}
.x3_c00068{left:73.800000px;}
.x1_c00068{left:75.300000px;}
.x4_c00068{left:76.650000px;}
.x5_c00068{left:77.700000px;}
.x6_c00068{left:79.050000px;}
.x9_c00068{left:170.400000px;}
.xd_c00068{left:239.776749px;}
.xa_c00068{left:294.300000px;}
.xb_c00068{left:295.650000px;}
.xc_c00068{left:473.100000px;}
@media print{
.v0_c00068{vertical-align:0.000000pt;}
.ls6_c00068{letter-spacing:0.000000pt;}
.ls5_c00068{letter-spacing:0.373333pt;}
.ls3_c00068{letter-spacing:0.533333pt;}
.ls0_c00068{letter-spacing:2.666667pt;}
.ls1_c00068{letter-spacing:5.866667pt;}
.ls2_c00068{letter-spacing:13.333333pt;}
.ls4_c00068{letter-spacing:14.453333pt;}
.ws2_c00068{word-spacing:-28.218667pt;}
.ws1_c00068{word-spacing:-16.053333pt;}
.ws3_c00068{word-spacing:-15.413333pt;}
.ws0_c00068{word-spacing:-12.586667pt;}
.ws4_c00068{word-spacing:0.000000pt;}
._1d_c00068{margin-left:-20.106667pt;}
._1a_c00068{margin-left:-14.293333pt;}
._19_c00068{margin-left:-13.280000pt;}
._1c_c00068{margin-left:-11.786667pt;}
._18_c00068{margin-left:-10.080000pt;}
._f_c00068{margin-left:-9.120000pt;}
._10_c00068{margin-left:-8.053333pt;}
._11_c00068{margin-left:-6.453333pt;}
._15_c00068{margin-left:-5.013333pt;}
._13_c00068{margin-left:-3.573333pt;}
._1_c00068{margin-left:-2.666667pt;}
._7_c00068{margin-left:-0.906667pt;}
._2_c00068{width:1.386667pt;}
._0_c00068{width:2.560000pt;}
._4_c00068{width:3.573333pt;}
._a_c00068{width:5.066667pt;}
._8_c00068{width:6.826667pt;}
._12_c00068{width:8.106667pt;}
._3_c00068{width:9.653333pt;}
._9_c00068{width:11.040000pt;}
._14_c00068{width:12.746667pt;}
._c_c00068{width:14.506667pt;}
._1b_c00068{width:17.333333pt;}
._5_c00068{width:18.720000pt;}
._d_c00068{width:20.853333pt;}
._16_c00068{width:22.026667pt;}
._6_c00068{width:24.106667pt;}
._e_c00068{width:28.000000pt;}
._b_c00068{width:31.146667pt;}
._17_c00068{width:38.826667pt;}
.fs1_c00068{font-size:42.666667pt;}
.fs0_c00068{font-size:53.333333pt;}
.fs2_c00068{font-size:58.666667pt;}
.fs3_c00068{font-size:61.333333pt;}
.y0_c00068{bottom:0.000000pt;}
.y51_c00068{bottom:2.760000pt;}
.y50_c00068{bottom:6.425206pt;}
.y4f_c00068{bottom:40.160000pt;}
.y29_c00068{bottom:57.360000pt;}
.y4e_c00068{bottom:73.493333pt;}
.y28_c00068{bottom:74.426667pt;}
.y4d_c00068{bottom:89.360000pt;}
.y27_c00068{bottom:90.693333pt;}
.y4c_c00068{bottom:105.360000pt;}
.y26_c00068{bottom:106.293333pt;}
.y4b_c00068{bottom:121.493333pt;}
.y25_c00068{bottom:122.960000pt;}
.y4a_c00068{bottom:137.760000pt;}
.y24_c00068{bottom:139.226667pt;}
.y49_c00068{bottom:154.160000pt;}
.y23_c00068{bottom:154.826667pt;}
.y48_c00068{bottom:170.693333pt;}
.y22_c00068{bottom:171.626667pt;}
.y47_c00068{bottom:186.293333pt;}
.y21_c00068{bottom:187.893333pt;}
.y46_c00068{bottom:202.293333pt;}
.y20_c00068{bottom:204.026667pt;}
.y45_c00068{bottom:218.960000pt;}
.y1f_c00068{bottom:219.626667pt;}
.y44_c00068{bottom:235.493333pt;}
.y1e_c00068{bottom:237.093333pt;}
.y43_c00068{bottom:251.760000pt;}
.y1d_c00068{bottom:252.960000pt;}
.y42_c00068{bottom:267.893333pt;}
.y1c_c00068{bottom:268.826667pt;}
.y41_c00068{bottom:284.160000pt;}
.y1b_c00068{bottom:285.626667pt;}
.y40_c00068{bottom:300.026667pt;}
.y1a_c00068{bottom:301.760000pt;}
.y3f_c00068{bottom:316.160000pt;}
.y19_c00068{bottom:316.826667pt;}
.y18_c00068{bottom:332.160000pt;}
.y3e_c00068{bottom:332.960000pt;}
.y17_c00068{bottom:348.960000pt;}
.y3d_c00068{bottom:364.826667pt;}
.y16_c00068{bottom:365.493333pt;}
.y3c_c00068{bottom:381.093333pt;}
.y15_c00068{bottom:381.360000pt;}
.y3b_c00068{bottom:396.693333pt;}
.y14_c00068{bottom:397.760000pt;}
.y13_c00068{bottom:413.493333pt;}
.y12_c00068{bottom:429.093333pt;}
.y3a_c00068{bottom:429.360000pt;}
.y11_c00068{bottom:445.760000pt;}
.y39_c00068{bottom:445.893333pt;}
.y10_c00068{bottom:461.093333pt;}
.y38_c00068{bottom:462.026667pt;}
.yf_c00068{bottom:477.360000pt;}
.y37_c00068{bottom:478.560000pt;}
.ye_c00068{bottom:493.760000pt;}
.y36_c00068{bottom:494.160000pt;}
.yd_c00068{bottom:509.760000pt;}
.y35_c00068{bottom:510.560000pt;}
.yc_c00068{bottom:526.160000pt;}
.y34_c00068{bottom:526.826667pt;}
.yb_c00068{bottom:541.893333pt;}
.y33_c00068{bottom:542.960000pt;}
.ya_c00068{bottom:558.293333pt;}
.y32_c00068{bottom:558.560000pt;}
.y9_c00068{bottom:574.160000pt;}
.y31_c00068{bottom:575.093333pt;}
.y8_c00068{bottom:590.426667pt;}
.y30_c00068{bottom:591.093333pt;}
.y7_c00068{bottom:606.693333pt;}
.y6_c00068{bottom:622.826667pt;}
.y2f_c00068{bottom:623.360000pt;}
.y5_c00068{bottom:638.960000pt;}
.y2e_c00068{bottom:639.360000pt;}
.y4_c00068{bottom:654.693333pt;}
.y2d_c00068{bottom:655.760000pt;}
.y3_c00068{bottom:670.560000pt;}
.y2c_c00068{bottom:672.026667pt;}
.y2_c00068{bottom:687.360000pt;}
.y2b_c00068{bottom:687.626667pt;}
.y1_c00068{bottom:703.493333pt;}
.y2a_c00068{bottom:704.960000pt;}
.h6_c00068{height:11.733399pt;}
.h7_c00068{height:38.937500pt;}
.h2_c00068{height:55.893333pt;}
.h4_c00068{height:62.597333pt;}
.h3_c00068{height:63.594667pt;}
.h5_c00068{height:64.277333pt;}
.h1_c00068{height:751.333333pt;}
.h0_c00068{height:751.466667pt;}
.w2_c00068{width:93.222667pt;}
.w0_c00068{width:511.933333pt;}
.w1_c00068{width:512.000000pt;}
.x0_c00068{left:0.000000pt;}
.x8_c00068{left:9.600000pt;}
.x7_c00068{left:13.200000pt;}
.x2_c00068{left:64.266667pt;}
.x3_c00068{left:65.600000pt;}
.x1_c00068{left:66.933333pt;}
.x4_c00068{left:68.133333pt;}
.x5_c00068{left:69.066667pt;}
.x6_c00068{left:70.266667pt;}
.x9_c00068{left:151.466667pt;}
.xd_c00068{left:213.134888pt;}
.xa_c00068{left:261.600000pt;}
.xb_c00068{left:262.800000pt;}
.xc_c00068{left:420.533333pt;}
}





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

.ir_c00069:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00069{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00069;src:url('chunks/assets/font_60aff8938bb055b978da3e88.woff2')format("woff");}.ff1_c00069{font-family:ff1_c00069;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00069;src:url('chunks/assets/font_e30dc5e691cee0017b7da27b.woff2')format("woff");}.ff2_c00069{font-family:ff2_c00069;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00069;src:url('chunks/assets/font_f3790c11fa1b72b5ebd5d0f3.woff2')format("woff");}.ff3_c00069{font-family:ff3_c00069;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00069;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff4_c00069{font-family:ff4_c00069;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00069{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00069{vertical-align:0.000000px;}
.ls3_c00069{letter-spacing:0.000000px;}
.ls0_c00069{letter-spacing:0.120000px;}
.ls2_c00069{letter-spacing:3.000000px;}
.ls1_c00069{letter-spacing:5.805000px;}
.ls4_c00069{letter-spacing:6.000000px;}
.sc__c00069{text-shadow:none;}
.sc0_c00069{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00069{-webkit-text-stroke:0px transparent;}
.sc0_c00069{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00069{word-spacing:-35.295000px;}
.ws0_c00069{word-spacing:-14.160000px;}
.ws2_c00069{word-spacing:0.000000px;}
._26_c00069{margin-left:-11.880000px;}
._e_c00069{margin-left:-8.820000px;}
._15_c00069{margin-left:-6.960000px;}
._16_c00069{margin-left:-5.880000px;}
._11_c00069{margin-left:-3.900000px;}
._1d_c00069{margin-left:-2.400000px;}
._f_c00069{margin-left:-1.080000px;}
._d_c00069{width:1.380000px;}
._0_c00069{width:3.360000px;}
._1a_c00069{width:4.560000px;}
._13_c00069{width:5.640000px;}
._5_c00069{width:7.200000px;}
._1e_c00069{width:8.400000px;}
._10_c00069{width:9.420000px;}
._a_c00069{width:10.980000px;}
._2_c00069{width:12.300000px;}
._3_c00069{width:14.040000px;}
._4_c00069{width:15.240000px;}
._9_c00069{width:16.380000px;}
._32_c00069{width:17.880000px;}
._7_c00069{width:19.260000px;}
._6_c00069{width:21.300000px;}
._c_c00069{width:23.100000px;}
._2c_c00069{width:24.120000px;}
._b_c00069{width:25.500000px;}
._37_c00069{width:27.480000px;}
._1c_c00069{width:29.040000px;}
._19_c00069{width:31.080000px;}
._30_c00069{width:32.760000px;}
._29_c00069{width:34.140000px;}
._2e_c00069{width:36.120000px;}
._17_c00069{width:37.140000px;}
._2d_c00069{width:39.180000px;}
._2b_c00069{width:42.660000px;}
._2a_c00069{width:43.680000px;}
._18_c00069{width:45.360000px;}
._20_c00069{width:46.620000px;}
._27_c00069{width:48.480000px;}
._28_c00069{width:49.800000px;}
._8_c00069{width:51.840000px;}
._24_c00069{width:53.880000px;}
._21_c00069{width:56.280000px;}
._25_c00069{width:57.780000px;}
._23_c00069{width:60.060000px;}
._1f_c00069{width:61.860000px;}
._34_c00069{width:63.960000px;}
._1b_c00069{width:65.640000px;}
._12_c00069{width:67.500000px;}
._14_c00069{width:101.820000px;}
._35_c00069{width:117.060000px;}
._31_c00069{width:142.860000px;}
._22_c00069{width:227.040000px;}
._33_c00069{width:287.820000px;}
._36_c00069{width:351.480000px;}
._1_c00069{width:353.520000px;}
._38_c00069{width:436.500000px;}
._2f_c00069{width:459.300000px;}
.fc2_c00069{color:transparent;}
.fc1_c00069{color:rgb(128,128,128);}
.fc0_c00069{color:rgb(0,0,0);}
.fs1_c00069{font-size:45.000000px;}
.fs3_c00069{font-size:48.000000px;}
.fs0_c00069{font-size:60.000000px;}
.fs2_c00069{font-size:69.000000px;}
.y0_c00069{bottom:0.000000px;}
.y25_c00069{bottom:3.105000px;}
.y24_c00069{bottom:7.228355px;}
.y23_c00069{bottom:48.285000px;}
.y22_c00069{bottom:209.235000px;}
.y21_c00069{bottom:228.735000px;}
.y20_c00069{bottom:246.735000px;}
.y1f_c00069{bottom:263.835000px;}
.y1e_c00069{bottom:282.435000px;}
.y1d_c00069{bottom:300.285000px;}
.y1c_c00069{bottom:318.135000px;}
.y1b_c00069{bottom:336.735000px;}
.y1a_c00069{bottom:354.735000px;}
.y19_c00069{bottom:373.485000px;}
.y18_c00069{bottom:391.035000px;}
.y17_c00069{bottom:408.585000px;}
.y16_c00069{bottom:427.185000px;}
.y15_c00069{bottom:445.485000px;}
.y14_c00069{bottom:462.735000px;}
.y13_c00069{bottom:481.635000px;}
.y12_c00069{bottom:499.785000px;}
.y11_c00069{bottom:518.085000px;}
.y10_c00069{bottom:536.235000px;}
.yf_c00069{bottom:554.385000px;}
.ye_c00069{bottom:572.085000px;}
.yd_c00069{bottom:590.235000px;}
.yc_c00069{bottom:608.385000px;}
.yb_c00069{bottom:626.385000px;}
.ya_c00069{bottom:644.535000px;}
.y9_c00069{bottom:662.385000px;}
.y8_c00069{bottom:680.985000px;}
.y7_c00069{bottom:698.535000px;}
.y6_c00069{bottom:716.835000px;}
.y5_c00069{bottom:735.435000px;}
.y4_c00069{bottom:752.985000px;}
.y3_c00069{bottom:771.135000px;}
.y2_c00069{bottom:789.285000px;}
.y1_c00069{bottom:808.335000px;}
.h4_c00069{height:13.200074px;}
.h5_c00069{height:43.804688px;}
.h2_c00069{height:62.880000px;}
.h3_c00069{height:72.312000px;}
.h1_c00069{height:841.500000px;}
.h0_c00069{height:841.575000px;}
.w2_c00069{width:104.875500px;}
.w1_c00069{width:566.250000px;}
.w0_c00069{width:566.475000px;}
.x0_c00069{left:0.000000px;}
.x8_c00069{left:17.250000px;}
.x1_c00069{left:70.500000px;}
.x2_c00069{left:71.850000px;}
.x3_c00069{left:73.200000px;}
.x4_c00069{left:74.850000px;}
.x5_c00069{left:75.900000px;}
.x6_c00069{left:77.250000px;}
.x7_c00069{left:106.650000px;}
.x9_c00069{left:111.300000px;}
.xb_c00069{left:235.051758px;}
.xa_c00069{left:439.650000px;}
@media print{
.v0_c00069{vertical-align:0.000000pt;}
.ls3_c00069{letter-spacing:0.000000pt;}
.ls0_c00069{letter-spacing:0.106667pt;}
.ls2_c00069{letter-spacing:2.666667pt;}
.ls1_c00069{letter-spacing:5.160000pt;}
.ls4_c00069{letter-spacing:5.333333pt;}
.ws1_c00069{word-spacing:-31.373333pt;}
.ws0_c00069{word-spacing:-12.586667pt;}
.ws2_c00069{word-spacing:0.000000pt;}
._26_c00069{margin-left:-10.560000pt;}
._e_c00069{margin-left:-7.840000pt;}
._15_c00069{margin-left:-6.186667pt;}
._16_c00069{margin-left:-5.226667pt;}
._11_c00069{margin-left:-3.466667pt;}
._1d_c00069{margin-left:-2.133333pt;}
._f_c00069{margin-left:-0.960000pt;}
._d_c00069{width:1.226667pt;}
._0_c00069{width:2.986667pt;}
._1a_c00069{width:4.053333pt;}
._13_c00069{width:5.013333pt;}
._5_c00069{width:6.400000pt;}
._1e_c00069{width:7.466667pt;}
._10_c00069{width:8.373333pt;}
._a_c00069{width:9.760000pt;}
._2_c00069{width:10.933333pt;}
._3_c00069{width:12.480000pt;}
._4_c00069{width:13.546667pt;}
._9_c00069{width:14.560000pt;}
._32_c00069{width:15.893333pt;}
._7_c00069{width:17.120000pt;}
._6_c00069{width:18.933333pt;}
._c_c00069{width:20.533333pt;}
._2c_c00069{width:21.440000pt;}
._b_c00069{width:22.666667pt;}
._37_c00069{width:24.426667pt;}
._1c_c00069{width:25.813333pt;}
._19_c00069{width:27.626667pt;}
._30_c00069{width:29.120000pt;}
._29_c00069{width:30.346667pt;}
._2e_c00069{width:32.106667pt;}
._17_c00069{width:33.013333pt;}
._2d_c00069{width:34.826667pt;}
._2b_c00069{width:37.920000pt;}
._2a_c00069{width:38.826667pt;}
._18_c00069{width:40.320000pt;}
._20_c00069{width:41.440000pt;}
._27_c00069{width:43.093333pt;}
._28_c00069{width:44.266667pt;}
._8_c00069{width:46.080000pt;}
._24_c00069{width:47.893333pt;}
._21_c00069{width:50.026667pt;}
._25_c00069{width:51.360000pt;}
._23_c00069{width:53.386667pt;}
._1f_c00069{width:54.986667pt;}
._34_c00069{width:56.853333pt;}
._1b_c00069{width:58.346667pt;}
._12_c00069{width:60.000000pt;}
._14_c00069{width:90.506667pt;}
._35_c00069{width:104.053333pt;}
._31_c00069{width:126.986667pt;}
._22_c00069{width:201.813333pt;}
._33_c00069{width:255.840000pt;}
._36_c00069{width:312.426667pt;}
._1_c00069{width:314.240000pt;}
._38_c00069{width:388.000000pt;}
._2f_c00069{width:408.266667pt;}
.fs1_c00069{font-size:40.000000pt;}
.fs3_c00069{font-size:42.666667pt;}
.fs0_c00069{font-size:53.333333pt;}
.fs2_c00069{font-size:61.333333pt;}
.y0_c00069{bottom:0.000000pt;}
.y25_c00069{bottom:2.760000pt;}
.y24_c00069{bottom:6.425204pt;}
.y23_c00069{bottom:42.920000pt;}
.y22_c00069{bottom:185.986667pt;}
.y21_c00069{bottom:203.320000pt;}
.y20_c00069{bottom:219.320000pt;}
.y1f_c00069{bottom:234.520000pt;}
.y1e_c00069{bottom:251.053333pt;}
.y1d_c00069{bottom:266.920000pt;}
.y1c_c00069{bottom:282.786667pt;}
.y1b_c00069{bottom:299.320000pt;}
.y1a_c00069{bottom:315.320000pt;}
.y19_c00069{bottom:331.986667pt;}
.y18_c00069{bottom:347.586667pt;}
.y17_c00069{bottom:363.186667pt;}
.y16_c00069{bottom:379.720000pt;}
.y15_c00069{bottom:395.986667pt;}
.y14_c00069{bottom:411.320000pt;}
.y13_c00069{bottom:428.120000pt;}
.y12_c00069{bottom:444.253333pt;}
.y11_c00069{bottom:460.520000pt;}
.y10_c00069{bottom:476.653333pt;}
.yf_c00069{bottom:492.786667pt;}
.ye_c00069{bottom:508.520000pt;}
.yd_c00069{bottom:524.653333pt;}
.yc_c00069{bottom:540.786667pt;}
.yb_c00069{bottom:556.786667pt;}
.ya_c00069{bottom:572.920000pt;}
.y9_c00069{bottom:588.786667pt;}
.y8_c00069{bottom:605.320000pt;}
.y7_c00069{bottom:620.920000pt;}
.y6_c00069{bottom:637.186667pt;}
.y5_c00069{bottom:653.720000pt;}
.y4_c00069{bottom:669.320000pt;}
.y3_c00069{bottom:685.453333pt;}
.y2_c00069{bottom:701.586667pt;}
.y1_c00069{bottom:718.520000pt;}
.h4_c00069{height:11.733399pt;}
.h5_c00069{height:38.937500pt;}
.h2_c00069{height:55.893333pt;}
.h3_c00069{height:64.277333pt;}
.h1_c00069{height:748.000000pt;}
.h0_c00069{height:748.066667pt;}
.w2_c00069{width:93.222667pt;}
.w1_c00069{width:503.333333pt;}
.w0_c00069{width:503.533333pt;}
.x0_c00069{left:0.000000pt;}
.x8_c00069{left:15.333333pt;}
.x1_c00069{left:62.666667pt;}
.x2_c00069{left:63.866667pt;}
.x3_c00069{left:65.066667pt;}
.x4_c00069{left:66.533333pt;}
.x5_c00069{left:67.466667pt;}
.x6_c00069{left:68.666667pt;}
.x7_c00069{left:94.800000pt;}
.x9_c00069{left:98.933333pt;}
.xb_c00069{left:208.934896pt;}
.xa_c00069{left:390.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_c00070 {
    display:none;
  }
  .loading-indicator_c00070.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00070 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00070 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00070" -> "#page-container .classname_c00070")
 */
.pf_c00070 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00070 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00070.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00070 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00070 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00070 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00070 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00070 {overflow:visible;}
  }
}
.c_c00070 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00070 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00070:after { /* webkit #35443 */
  content: '';
}
.t_c00070:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00070 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00070 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00070 { /* info for Javascript */
  display:none;
}
.l_c00070 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00070 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00070 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00070:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00070{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00070;src:url('chunks/assets/font_bf9912c7653a4ca897f2ad9a.woff2')format("woff");}.ff1_c00070{font-family:ff1_c00070;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00070;src:url('chunks/assets/font_c8a62bdd096c4d426b506111.woff2')format("woff");}.ff2_c00070{font-family:ff2_c00070;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00070;src:url('chunks/assets/font_e0be614bdf086319a07e3629.woff2')format("woff");}.ff3_c00070{font-family:ff3_c00070;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00070;src:url('chunks/assets/font_54e7c1773e0c39f40cedd799.woff2')format("woff");}.ff4_c00070{font-family:ff4_c00070;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00070;src:url('chunks/assets/font_c015636fe5a8eed90707f893.woff2')format("woff");}.ff5_c00070{font-family:ff5_c00070;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00070;src:url('chunks/assets/font_c6cae6ba040d3633ce2c807d.woff2')format("woff");}.ff6_c00070{font-family:ff6_c00070;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00070;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff7_c00070{font-family:ff7_c00070;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00070{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00070{vertical-align:-85.200000px;}
.v0_c00070{vertical-align:0.000000px;}
.ls5_c00070{letter-spacing:0.000000px;}
.ls0_c00070{letter-spacing:0.405000px;}
.ls3_c00070{letter-spacing:2.640000px;}
.ls6_c00070{letter-spacing:3.000000px;}
.ls1_c00070{letter-spacing:4.605000px;}
.ls2_c00070{letter-spacing:18.600000px;}
.ls4_c00070{letter-spacing:27.000000px;}
.sc__c00070{text-shadow:none;}
.sc0_c00070{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00070{-webkit-text-stroke:0px transparent;}
.sc0_c00070{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00070{word-spacing:-26.208000px;}
.ws1_c00070{word-spacing:-14.160000px;}
.ws3_c00070{word-spacing:0.000000px;}
.ws0_c00070{word-spacing:611.475000px;}
._7_c00070{margin-left:-36.015000px;}
._8_c00070{margin-left:-32.445000px;}
._b_c00070{margin-left:-31.080000px;}
._a_c00070{margin-left:-26.460000px;}
._c_c00070{margin-left:-20.295000px;}
._1a_c00070{margin-left:-11.940000px;}
._9_c00070{margin-left:-10.080000px;}
._1e_c00070{margin-left:-8.520000px;}
._12_c00070{margin-left:-7.350000px;}
._11_c00070{margin-left:-5.670000px;}
._e_c00070{margin-left:-4.620000px;}
._d_c00070{margin-left:-3.360000px;}
._f_c00070{margin-left:-2.310000px;}
._1b_c00070{margin-left:-1.215000px;}
._14_c00070{width:1.140000px;}
._16_c00070{width:2.400000px;}
._13_c00070{width:3.660000px;}
._18_c00070{width:4.725000px;}
._15_c00070{width:6.060000px;}
._17_c00070{width:7.560000px;}
._10_c00070{width:8.715000px;}
._19_c00070{width:10.740000px;}
._5_c00070{width:12.180000px;}
._6_c00070{width:13.545000px;}
._0_c00070{width:15.750000px;}
._1d_c00070{width:16.800000px;}
._1_c00070{width:19.845000px;}
._3_c00070{width:21.210000px;}
._2_c00070{width:23.310000px;}
._1c_c00070{width:32.280000px;}
._4_c00070{width:35.910000px;}
.fc2_c00070{color:transparent;}
.fc1_c00070{color:rgb(128,128,128);}
.fc0_c00070{color:rgb(0,0,0);}
.fs2_c00070{font-size:24.000000px;}
.fs3_c00070{font-size:45.000000px;}
.fs4_c00070{font-size:48.000000px;}
.fs1_c00070{font-size:60.000000px;}
.fs0_c00070{font-size:105.000000px;}
.y0_c00070{bottom:0.000000px;}
.y27_c00070{bottom:3.105000px;}
.y26_c00070{bottom:7.228371px;}
.y25_c00070{bottom:21.915000px;}
.y24_c00070{bottom:39.915000px;}
.y23_c00070{bottom:59.115000px;}
.y22_c00070{bottom:76.665000px;}
.y21_c00070{bottom:94.515000px;}
.y20_c00070{bottom:112.815000px;}
.y1f_c00070{bottom:130.965000px;}
.y1e_c00070{bottom:149.565000px;}
.y1d_c00070{bottom:167.715000px;}
.y1c_c00070{bottom:186.015000px;}
.y1b_c00070{bottom:203.865000px;}
.y1a_c00070{bottom:221.415000px;}
.y19_c00070{bottom:239.715000px;}
.y18_c00070{bottom:258.165000px;}
.y17_c00070{bottom:276.465000px;}
.y16_c00070{bottom:294.765000px;}
.y15_c00070{bottom:312.915000px;}
.y14_c00070{bottom:330.165000px;}
.y13_c00070{bottom:348.615000px;}
.y12_c00070{bottom:366.615000px;}
.y11_c00070{bottom:384.465000px;}
.y10_c00070{bottom:403.365000px;}
.yf_c00070{bottom:420.915000px;}
.ye_c00070{bottom:439.065000px;}
.yd_c00070{bottom:456.765000px;}
.yc_c00070{bottom:474.615000px;}
.yb_c00070{bottom:492.165000px;}
.ya_c00070{bottom:510.615000px;}
.y9_c00070{bottom:528.165000px;}
.y8_c00070{bottom:546.465000px;}
.y7_c00070{bottom:564.615000px;}
.y6_c00070{bottom:582.315000px;}
.y5_c00070{bottom:600.465000px;}
.y4_c00070{bottom:635.565000px;}
.y3_c00070{bottom:674.415000px;}
.y2_c00070{bottom:706.365000px;}
.y1_c00070{bottom:736.215000px;}
.h5_c00070{height:13.200074px;}
.h6_c00070{height:43.804688px;}
.h4_c00070{height:51.216000px;}
.h3_c00070{height:62.880000px;}
.h2_c00070{height:110.040000px;}
.h1_c00070{height:822.750000px;}
.h0_c00070{height:822.975000px;}
.w2_c00070{width:104.875500px;}
.w1_c00070{width:560.250000px;}
.w0_c00070{width:560.550000px;}
.x0_c00070{left:0.000000px;}
.xa_c00070{left:76.050000px;}
.x9_c00070{left:77.400000px;}
.xb_c00070{left:79.350000px;}
.x1_c00070{left:81.300000px;}
.x4_c00070{left:108.600000px;}
.x2_c00070{left:153.600000px;}
.x5_c00070{left:192.600000px;}
.x7_c00070{left:196.800000px;}
.x8_c00070{left:198.450000px;}
.x6_c00070{left:200.100000px;}
.xd_c00070{left:232.089249px;}
.x3_c00070{left:243.300000px;}
.xc_c00070{left:457.350000px;}
@media print{
.v1_c00070{vertical-align:-75.733333pt;}
.v0_c00070{vertical-align:0.000000pt;}
.ls5_c00070{letter-spacing:0.000000pt;}
.ls0_c00070{letter-spacing:0.360000pt;}
.ls3_c00070{letter-spacing:2.346667pt;}
.ls6_c00070{letter-spacing:2.666667pt;}
.ls1_c00070{letter-spacing:4.093333pt;}
.ls2_c00070{letter-spacing:16.533333pt;}
.ls4_c00070{letter-spacing:24.000000pt;}
.ws2_c00070{word-spacing:-23.296000pt;}
.ws1_c00070{word-spacing:-12.586667pt;}
.ws3_c00070{word-spacing:0.000000pt;}
.ws0_c00070{word-spacing:543.533333pt;}
._7_c00070{margin-left:-32.013333pt;}
._8_c00070{margin-left:-28.840000pt;}
._b_c00070{margin-left:-27.626667pt;}
._a_c00070{margin-left:-23.520000pt;}
._c_c00070{margin-left:-18.040000pt;}
._1a_c00070{margin-left:-10.613333pt;}
._9_c00070{margin-left:-8.960000pt;}
._1e_c00070{margin-left:-7.573333pt;}
._12_c00070{margin-left:-6.533333pt;}
._11_c00070{margin-left:-5.040000pt;}
._e_c00070{margin-left:-4.106667pt;}
._d_c00070{margin-left:-2.986667pt;}
._f_c00070{margin-left:-2.053333pt;}
._1b_c00070{margin-left:-1.080000pt;}
._14_c00070{width:1.013333pt;}
._16_c00070{width:2.133333pt;}
._13_c00070{width:3.253333pt;}
._18_c00070{width:4.200000pt;}
._15_c00070{width:5.386667pt;}
._17_c00070{width:6.720000pt;}
._10_c00070{width:7.746667pt;}
._19_c00070{width:9.546667pt;}
._5_c00070{width:10.826667pt;}
._6_c00070{width:12.040000pt;}
._0_c00070{width:14.000000pt;}
._1d_c00070{width:14.933333pt;}
._1_c00070{width:17.640000pt;}
._3_c00070{width:18.853333pt;}
._2_c00070{width:20.720000pt;}
._1c_c00070{width:28.693333pt;}
._4_c00070{width:31.920000pt;}
.fs2_c00070{font-size:21.333333pt;}
.fs3_c00070{font-size:40.000000pt;}
.fs4_c00070{font-size:42.666667pt;}
.fs1_c00070{font-size:53.333333pt;}
.fs0_c00070{font-size:93.333333pt;}
.y0_c00070{bottom:0.000000pt;}
.y27_c00070{bottom:2.760000pt;}
.y26_c00070{bottom:6.425219pt;}
.y25_c00070{bottom:19.480000pt;}
.y24_c00070{bottom:35.480000pt;}
.y23_c00070{bottom:52.546667pt;}
.y22_c00070{bottom:68.146667pt;}
.y21_c00070{bottom:84.013333pt;}
.y20_c00070{bottom:100.280000pt;}
.y1f_c00070{bottom:116.413333pt;}
.y1e_c00070{bottom:132.946667pt;}
.y1d_c00070{bottom:149.080000pt;}
.y1c_c00070{bottom:165.346667pt;}
.y1b_c00070{bottom:181.213333pt;}
.y1a_c00070{bottom:196.813333pt;}
.y19_c00070{bottom:213.080000pt;}
.y18_c00070{bottom:229.480000pt;}
.y17_c00070{bottom:245.746667pt;}
.y16_c00070{bottom:262.013333pt;}
.y15_c00070{bottom:278.146667pt;}
.y14_c00070{bottom:293.480000pt;}
.y13_c00070{bottom:309.880000pt;}
.y12_c00070{bottom:325.880000pt;}
.y11_c00070{bottom:341.746667pt;}
.y10_c00070{bottom:358.546667pt;}
.yf_c00070{bottom:374.146667pt;}
.ye_c00070{bottom:390.280000pt;}
.yd_c00070{bottom:406.013333pt;}
.yc_c00070{bottom:421.880000pt;}
.yb_c00070{bottom:437.480000pt;}
.ya_c00070{bottom:453.880000pt;}
.y9_c00070{bottom:469.480000pt;}
.y8_c00070{bottom:485.746667pt;}
.y7_c00070{bottom:501.880000pt;}
.y6_c00070{bottom:517.613333pt;}
.y5_c00070{bottom:533.746667pt;}
.y4_c00070{bottom:564.946667pt;}
.y3_c00070{bottom:599.480000pt;}
.y2_c00070{bottom:627.880000pt;}
.y1_c00070{bottom:654.413333pt;}
.h5_c00070{height:11.733399pt;}
.h6_c00070{height:38.937500pt;}
.h4_c00070{height:45.525333pt;}
.h3_c00070{height:55.893333pt;}
.h2_c00070{height:97.813333pt;}
.h1_c00070{height:731.333333pt;}
.h0_c00070{height:731.533333pt;}
.w2_c00070{width:93.222667pt;}
.w1_c00070{width:498.000000pt;}
.w0_c00070{width:498.266667pt;}
.x0_c00070{left:0.000000pt;}
.xa_c00070{left:67.600000pt;}
.x9_c00070{left:68.800000pt;}
.xb_c00070{left:70.533333pt;}
.x1_c00070{left:72.266667pt;}
.x4_c00070{left:96.533333pt;}
.x2_c00070{left:136.533333pt;}
.x5_c00070{left:171.200000pt;}
.x7_c00070{left:174.933333pt;}
.x8_c00070{left:176.400000pt;}
.x6_c00070{left:177.866667pt;}
.xd_c00070{left:206.301554pt;}
.x3_c00070{left:216.266667pt;}
.xc_c00070{left:406.533333pt;}
}





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

.ir_c00071:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00071{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00071;src:url('chunks/assets/font_ac1679f71398435f95620339.woff2')format("woff");}.ff1_c00071{font-family:ff1_c00071;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00071;src:url('chunks/assets/font_8a330b85db6e6e5a738a7f59.woff2')format("woff");}.ff2_c00071{font-family:ff2_c00071;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00071;src:url('chunks/assets/font_75d881829cd3d8de395e49c0.woff2')format("woff");}.ff3_c00071{font-family:ff3_c00071;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00071;src:url('chunks/assets/font_0ce391de997f24f9f9dd37f4.woff2')format("woff");}.ff4_c00071{font-family:ff4_c00071;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00071;src:url('chunks/assets/font_ac7c30557aaddd358ff226b8.woff2')format("woff");}.ff5_c00071{font-family:ff5_c00071;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00071;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff6_c00071{font-family:ff6_c00071;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00071{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00071{vertical-align:0.000000px;}
.ls4_c00071{letter-spacing:0.000000px;}
.ls2_c00071{letter-spacing:3.000000px;}
.ls0_c00071{letter-spacing:4.500000px;}
.ls1_c00071{letter-spacing:4.800000px;}
.ls5_c00071{letter-spacing:6.000000px;}
.ls3_c00071{letter-spacing:12.000000px;}
.sc__c00071{text-shadow:none;}
.sc0_c00071{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00071{-webkit-text-stroke:0px transparent;}
.sc0_c00071{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00071{word-spacing:-35.295000px;}
.ws0_c00071{word-spacing:-18.060000px;}
.ws2_c00071{word-spacing:-14.160000px;}
.ws4_c00071{word-spacing:0.000000px;}
.ws1_c00071{word-spacing:2.640000px;}
._13_c00071{margin-left:-17.865000px;}
._2a_c00071{margin-left:-15.360000px;}
._17_c00071{margin-left:-11.619000px;}
._18_c00071{margin-left:-10.575000px;}
._16_c00071{margin-left:-7.464000px;}
._f_c00071{margin-left:-6.396000px;}
._e_c00071{margin-left:-4.464000px;}
._12_c00071{margin-left:-2.865000px;}
._10_c00071{margin-left:-1.860000px;}
._c_c00071{width:1.980000px;}
._b_c00071{width:3.180000px;}
._8_c00071{width:4.692000px;}
._9_c00071{width:5.796000px;}
._a_c00071{width:6.969000px;}
._d_c00071{width:8.700000px;}
._11_c00071{width:10.200000px;}
._14_c00071{width:11.298000px;}
._1_c00071{width:12.600000px;}
._15_c00071{width:14.241000px;}
._3_c00071{width:15.900000px;}
._29_c00071{width:19.320000px;}
._1d_c00071{width:20.340000px;}
._6_c00071{width:22.560000px;}
._5_c00071{width:24.360000px;}
._4_c00071{width:27.660000px;}
._1b_c00071{width:40.416000px;}
._7_c00071{width:47.040000px;}
._25_c00071{width:65.925000px;}
._28_c00071{width:80.109000px;}
._26_c00071{width:82.056000px;}
._27_c00071{width:83.340000px;}
._2b_c00071{width:84.588000px;}
._22_c00071{width:85.626000px;}
._23_c00071{width:86.838000px;}
._21_c00071{width:88.440000px;}
._24_c00071{width:90.381000px;}
._20_c00071{width:91.389000px;}
._1f_c00071{width:92.820000px;}
._0_c00071{width:95.340000px;}
._1e_c00071{width:99.660000px;}
._1c_c00071{width:103.605000px;}
._2_c00071{width:139.440000px;}
._19_c00071{width:160.731000px;}
._1a_c00071{width:163.944000px;}
._2c_c00071{width:1508.724000px;}
.fc2_c00071{color:transparent;}
.fc1_c00071{color:rgb(128,128,128);}
.fc0_c00071{color:rgb(0,0,0);}
.fs2_c00071{font-size:45.000000px;}
.fs3_c00071{font-size:48.000000px;}
.fs0_c00071{font-size:60.000000px;}
.fs1_c00071{font-size:69.000000px;}
.y0_c00071{bottom:0.000000px;}
.y2b_c00071{bottom:3.105000px;}
.y2a_c00071{bottom:7.228355px;}
.y29_c00071{bottom:33.435000px;}
.y28_c00071{bottom:51.285000px;}
.y27_c00071{bottom:69.885000px;}
.y26_c00071{bottom:88.335000px;}
.y25_c00071{bottom:106.635000px;}
.y24_c00071{bottom:124.785000px;}
.y23_c00071{bottom:143.385000px;}
.y22_c00071{bottom:161.235000px;}
.y21_c00071{bottom:180.135000px;}
.y20_c00071{bottom:198.135000px;}
.y1f_c00071{bottom:216.285000px;}
.y1e_c00071{bottom:234.435000px;}
.y1d_c00071{bottom:252.135000px;}
.y1c_c00071{bottom:270.585000px;}
.y1b_c00071{bottom:289.485000px;}
.y1a_c00071{bottom:306.135000px;}
.y19_c00071{bottom:324.885000px;}
.y18_c00071{bottom:342.135000px;}
.y17_c00071{bottom:361.035000px;}
.y16_c00071{bottom:378.885000px;}
.y15_c00071{bottom:396.585000px;}
.y14_c00071{bottom:415.785000px;}
.y13_c00071{bottom:433.635000px;}
.y12_c00071{bottom:469.485000px;}
.y11_c00071{bottom:505.185000px;}
.y10_c00071{bottom:524.085000px;}
.yf_c00071{bottom:542.235000px;}
.ye_c00071{bottom:559.935000px;}
.yd_c00071{bottom:578.385000px;}
.yc_c00071{bottom:596.685000px;}
.yb_c00071{bottom:614.835000px;}
.ya_c00071{bottom:632.685000px;}
.y9_c00071{bottom:650.385000px;}
.y8_c00071{bottom:669.135000px;}
.y7_c00071{bottom:686.685000px;}
.y6_c00071{bottom:705.585000px;}
.y5_c00071{bottom:723.285000px;}
.y4_c00071{bottom:741.735000px;}
.y3_c00071{bottom:759.585000px;}
.y2_c00071{bottom:777.885000px;}
.y1_c00071{bottom:797.535000px;}
.h5_c00071{height:13.200074px;}
.h6_c00071{height:43.804688px;}
.h3_c00071{height:62.880000px;}
.h4_c00071{height:64.020000px;}
.h2_c00071{height:72.312000px;}
.h1_c00071{height:841.500000px;}
.h0_c00071{height:841.575000px;}
.w2_c00071{width:104.875500px;}
.w1_c00071{width:566.250000px;}
.w0_c00071{width:566.475000px;}
.x0_c00071{left:0.000000px;}
.x2_c00071{left:84.750000px;}
.x1_c00071{left:86.400000px;}
.x3_c00071{left:88.050000px;}
.x4_c00071{left:89.550000px;}
.x6_c00071{left:132.600000px;}
.x5_c00071{left:187.050000px;}
.x7_c00071{left:235.051758px;}
@media print{
.v0_c00071{vertical-align:0.000000pt;}
.ls4_c00071{letter-spacing:0.000000pt;}
.ls2_c00071{letter-spacing:2.666667pt;}
.ls0_c00071{letter-spacing:4.000000pt;}
.ls1_c00071{letter-spacing:4.266667pt;}
.ls5_c00071{letter-spacing:5.333333pt;}
.ls3_c00071{letter-spacing:10.666667pt;}
.ws3_c00071{word-spacing:-31.373333pt;}
.ws0_c00071{word-spacing:-16.053333pt;}
.ws2_c00071{word-spacing:-12.586667pt;}
.ws4_c00071{word-spacing:0.000000pt;}
.ws1_c00071{word-spacing:2.346667pt;}
._13_c00071{margin-left:-15.880000pt;}
._2a_c00071{margin-left:-13.653333pt;}
._17_c00071{margin-left:-10.328000pt;}
._18_c00071{margin-left:-9.400000pt;}
._16_c00071{margin-left:-6.634667pt;}
._f_c00071{margin-left:-5.685333pt;}
._e_c00071{margin-left:-3.968000pt;}
._12_c00071{margin-left:-2.546667pt;}
._10_c00071{margin-left:-1.653333pt;}
._c_c00071{width:1.760000pt;}
._b_c00071{width:2.826667pt;}
._8_c00071{width:4.170667pt;}
._9_c00071{width:5.152000pt;}
._a_c00071{width:6.194667pt;}
._d_c00071{width:7.733333pt;}
._11_c00071{width:9.066667pt;}
._14_c00071{width:10.042667pt;}
._1_c00071{width:11.200000pt;}
._15_c00071{width:12.658667pt;}
._3_c00071{width:14.133333pt;}
._29_c00071{width:17.173333pt;}
._1d_c00071{width:18.080000pt;}
._6_c00071{width:20.053333pt;}
._5_c00071{width:21.653333pt;}
._4_c00071{width:24.586667pt;}
._1b_c00071{width:35.925333pt;}
._7_c00071{width:41.813333pt;}
._25_c00071{width:58.600000pt;}
._28_c00071{width:71.208000pt;}
._26_c00071{width:72.938667pt;}
._27_c00071{width:74.080000pt;}
._2b_c00071{width:75.189333pt;}
._22_c00071{width:76.112000pt;}
._23_c00071{width:77.189333pt;}
._21_c00071{width:78.613333pt;}
._24_c00071{width:80.338667pt;}
._20_c00071{width:81.234667pt;}
._1f_c00071{width:82.506667pt;}
._0_c00071{width:84.746667pt;}
._1e_c00071{width:88.586667pt;}
._1c_c00071{width:92.093333pt;}
._2_c00071{width:123.946667pt;}
._19_c00071{width:142.872000pt;}
._1a_c00071{width:145.728000pt;}
._2c_c00071{width:1341.088000pt;}
.fs2_c00071{font-size:40.000000pt;}
.fs3_c00071{font-size:42.666667pt;}
.fs0_c00071{font-size:53.333333pt;}
.fs1_c00071{font-size:61.333333pt;}
.y0_c00071{bottom:0.000000pt;}
.y2b_c00071{bottom:2.760000pt;}
.y2a_c00071{bottom:6.425204pt;}
.y29_c00071{bottom:29.720000pt;}
.y28_c00071{bottom:45.586667pt;}
.y27_c00071{bottom:62.120000pt;}
.y26_c00071{bottom:78.520000pt;}
.y25_c00071{bottom:94.786667pt;}
.y24_c00071{bottom:110.920000pt;}
.y23_c00071{bottom:127.453333pt;}
.y22_c00071{bottom:143.320000pt;}
.y21_c00071{bottom:160.120000pt;}
.y20_c00071{bottom:176.120000pt;}
.y1f_c00071{bottom:192.253333pt;}
.y1e_c00071{bottom:208.386667pt;}
.y1d_c00071{bottom:224.120000pt;}
.y1c_c00071{bottom:240.520000pt;}
.y1b_c00071{bottom:257.320000pt;}
.y1a_c00071{bottom:272.120000pt;}
.y19_c00071{bottom:288.786667pt;}
.y18_c00071{bottom:304.120000pt;}
.y17_c00071{bottom:320.920000pt;}
.y16_c00071{bottom:336.786667pt;}
.y15_c00071{bottom:352.520000pt;}
.y14_c00071{bottom:369.586667pt;}
.y13_c00071{bottom:385.453333pt;}
.y12_c00071{bottom:417.320000pt;}
.y11_c00071{bottom:449.053333pt;}
.y10_c00071{bottom:465.853333pt;}
.yf_c00071{bottom:481.986667pt;}
.ye_c00071{bottom:497.720000pt;}
.yd_c00071{bottom:514.120000pt;}
.yc_c00071{bottom:530.386667pt;}
.yb_c00071{bottom:546.520000pt;}
.ya_c00071{bottom:562.386667pt;}
.y9_c00071{bottom:578.120000pt;}
.y8_c00071{bottom:594.786667pt;}
.y7_c00071{bottom:610.386667pt;}
.y6_c00071{bottom:627.186667pt;}
.y5_c00071{bottom:642.920000pt;}
.y4_c00071{bottom:659.320000pt;}
.y3_c00071{bottom:675.186667pt;}
.y2_c00071{bottom:691.453333pt;}
.y1_c00071{bottom:708.920000pt;}
.h5_c00071{height:11.733399pt;}
.h6_c00071{height:38.937500pt;}
.h3_c00071{height:55.893333pt;}
.h4_c00071{height:56.906667pt;}
.h2_c00071{height:64.277333pt;}
.h1_c00071{height:748.000000pt;}
.h0_c00071{height:748.066667pt;}
.w2_c00071{width:93.222667pt;}
.w1_c00071{width:503.333333pt;}
.w0_c00071{width:503.533333pt;}
.x0_c00071{left:0.000000pt;}
.x2_c00071{left:75.333333pt;}
.x1_c00071{left:76.800000pt;}
.x3_c00071{left:78.266667pt;}
.x4_c00071{left:79.600000pt;}
.x6_c00071{left:117.866667pt;}
.x5_c00071{left:166.266667pt;}
.x7_c00071{left:208.934896pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_89fed540d464b950cab9554b.woff2')format("woff");}.ff1_c00072{font-family:ff1_c00072;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00072;src:url('chunks/assets/font_613d41eea9faab90bd4c71d2.woff2')format("woff");}.ff2_c00072{font-family:ff2_c00072;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00072;src:url('chunks/assets/font_843fc9b7cbc55afc1eefaef9.woff2')format("woff");}.ff3_c00072{font-family:ff3_c00072;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00072;src:url('chunks/assets/font_55a9c1103dbae09ee7309a4d.woff2')format("woff");}.ff4_c00072{font-family:ff4_c00072;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00072;src:url('chunks/assets/font_8aa0b0e0ea8aaab925ab6588.woff2')format("woff");}.ff5_c00072{font-family:ff5_c00072;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00072;src:url('chunks/assets/font_7164f7fc20c479aacf7b7c04.woff2')format("woff");}.ff6_c00072{font-family:ff6_c00072;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00072;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff7_c00072{font-family:ff7_c00072;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00072{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00072{vertical-align:0.000000px;}
.v1_c00072{vertical-align:9.600000px;}
.ls6_c00072{letter-spacing:0.000000px;}
.ls1_c00072{letter-spacing:1.200000px;}
.ls5_c00072{letter-spacing:3.000000px;}
.ls2_c00072{letter-spacing:4.800000px;}
.ls4_c00072{letter-spacing:10.005000px;}
.ls0_c00072{letter-spacing:13.260000px;}
.ls3_c00072{letter-spacing:131.160000px;}
.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;}
}
.ws2_c00072{word-spacing:-18.060000px;}
.ws1_c00072{word-spacing:-14.427000px;}
.ws0_c00072{word-spacing:-14.160000px;}
.ws3_c00072{word-spacing:0.000000px;}
._1c_c00072{margin-left:-20.580000px;}
._1e_c00072{margin-left:-18.720000px;}
._1b_c00072{margin-left:-17.460000px;}
._f_c00072{margin-left:-14.280000px;}
._1f_c00072{margin-left:-11.460000px;}
._1d_c00072{margin-left:-10.380000px;}
._11_c00072{margin-left:-8.940000px;}
._9_c00072{margin-left:-6.900000px;}
._e_c00072{margin-left:-5.220000px;}
._7_c00072{margin-left:-3.900000px;}
._6_c00072{margin-left:-2.700000px;}
._8_c00072{margin-left:-1.680000px;}
._1_c00072{width:1.080000px;}
._0_c00072{width:2.100000px;}
._b_c00072{width:3.840000px;}
._4_c00072{width:4.860000px;}
._17_c00072{width:5.880000px;}
._5_c00072{width:6.900000px;}
._16_c00072{width:8.100000px;}
._c_c00072{width:9.180000px;}
._12_c00072{width:10.320000px;}
._18_c00072{width:11.340000px;}
._3_c00072{width:13.380000px;}
._2_c00072{width:15.300000px;}
._19_c00072{width:16.380000px;}
._13_c00072{width:18.300000px;}
._27_c00072{width:19.320000px;}
._10_c00072{width:21.000000px;}
._25_c00072{width:22.080000px;}
._21_c00072{width:23.700000px;}
._28_c00072{width:25.260000px;}
._23_c00072{width:26.340000px;}
._26_c00072{width:27.420000px;}
._24_c00072{width:28.740000px;}
._22_c00072{width:30.240000px;}
._29_c00072{width:31.260000px;}
._15_c00072{width:33.360000px;}
._2a_c00072{width:35.220000px;}
._14_c00072{width:38.400000px;}
._2d_c00072{width:39.480000px;}
._2c_c00072{width:40.740000px;}
._2b_c00072{width:43.680000px;}
._2f_c00072{width:58.440000px;}
._2e_c00072{width:65.760000px;}
._20_c00072{width:69.780000px;}
._d_c00072{width:74.820000px;}
._a_c00072{width:108.420000px;}
._1a_c00072{width:110.640000px;}
.fc2_c00072{color:transparent;}
.fc1_c00072{color:rgb(128,128,128);}
.fc0_c00072{color:rgb(0,0,0);}
.fs4_c00072{font-size:45.000000px;}
.fs5_c00072{font-size:48.000000px;}
.fs0_c00072{font-size:60.000000px;}
.fs2_c00072{font-size:63.000000px;}
.fs1_c00072{font-size:66.000000px;}
.fs3_c00072{font-size:69.000000px;}
.y0_c00072{bottom:0.000000px;}
.y4f_c00072{bottom:3.105000px;}
.y4e_c00072{bottom:7.228357px;}
.y4d_c00072{bottom:39.930000px;}
.y4c_c00072{bottom:59.430000px;}
.y29_c00072{bottom:59.730000px;}
.y4b_c00072{bottom:77.730000px;}
.y28_c00072{bottom:78.480000px;}
.y4a_c00072{bottom:95.580000px;}
.y27_c00072{bottom:96.480000px;}
.y49_c00072{bottom:114.030000px;}
.y26_c00072{bottom:114.480000px;}
.y48_c00072{bottom:132.330000px;}
.y25_c00072{bottom:132.630000px;}
.y47_c00072{bottom:149.880000px;}
.y24_c00072{bottom:150.930000px;}
.y46_c00072{bottom:168.180000px;}
.y23_c00072{bottom:168.780000px;}
.y45_c00072{bottom:184.980000px;}
.y22_c00072{bottom:186.930000px;}
.y44_c00072{bottom:204.480000px;}
.y21_c00072{bottom:205.230000px;}
.y20_c00072{bottom:223.380000px;}
.y1f_c00072{bottom:241.530000px;}
.y43_c00072{bottom:259.530000px;}
.y1e_c00072{bottom:259.830000px;}
.y42_c00072{bottom:277.530000px;}
.y1d_c00072{bottom:278.130000px;}
.y1c_c00072{bottom:295.080000px;}
.y41_c00072{bottom:295.980000px;}
.y1b_c00072{bottom:313.230000px;}
.y40_c00072{bottom:313.980000px;}
.y3f_c00072{bottom:331.080000px;}
.y1a_c00072{bottom:331.380000px;}
.y19_c00072{bottom:349.680000px;}
.y3e_c00072{bottom:349.980000px;}
.y18_c00072{bottom:367.530000px;}
.y3d_c00072{bottom:368.580000px;}
.y3c_c00072{bottom:386.130000px;}
.y17_c00072{bottom:386.430000px;}
.y3b_c00072{bottom:403.980000px;}
.y16_c00072{bottom:404.430000px;}
.y3a_c00072{bottom:421.530000px;}
.y15_c00072{bottom:422.280000px;}
.y14_c00072{bottom:439.530000px;}
.y39_c00072{bottom:440.130000px;}
.y38_c00072{bottom:457.980000px;}
.y13_c00072{bottom:458.280000px;}
.y37_c00072{bottom:473.430000px;}
.y12_c00072{bottom:475.230000px;}
.y11_c00072{bottom:493.530000px;}
.y10_c00072{bottom:511.380000px;}
.y36_c00072{bottom:513.030000px;}
.yf_c00072{bottom:529.980000px;}
.ye_c00072{bottom:547.530000px;}
.y35_c00072{bottom:548.880000px;}
.y34_c00072{bottom:565.380000px;}
.yd_c00072{bottom:565.980000px;}
.yc_c00072{bottom:583.530000px;}
.yb_c00072{bottom:601.380000px;}
.y33_c00072{bottom:602.730000px;}
.ya_c00072{bottom:619.680000px;}
.y9_c00072{bottom:637.530000px;}
.y32_c00072{bottom:638.280000px;}
.y8_c00072{bottom:655.380000px;}
.y31_c00072{bottom:656.730000px;}
.y7_c00072{bottom:673.080000px;}
.y30_c00072{bottom:675.030000px;}
.y6_c00072{bottom:691.230000px;}
.y2f_c00072{bottom:692.580000px;}
.y5_c00072{bottom:708.780000px;}
.y2e_c00072{bottom:710.880000px;}
.y4_c00072{bottom:726.930000px;}
.y2d_c00072{bottom:729.030000px;}
.y3_c00072{bottom:744.930000px;}
.y2c_c00072{bottom:746.880000px;}
.y2_c00072{bottom:762.480000px;}
.y2b_c00072{bottom:765.480000px;}
.y1_c00072{bottom:780.630000px;}
.y2a_c00072{bottom:782.730000px;}
.h6_c00072{height:13.200074px;}
.h7_c00072{height:43.804688px;}
.h2_c00072{height:62.880000px;}
.h4_c00072{height:66.024000px;}
.h3_c00072{height:71.544000px;}
.h5_c00072{height:81.912000px;}
.h0_c00072{height:827.850000px;}
.h1_c00072{height:828.000000px;}
.w2_c00072{width:104.875500px;}
.w0_c00072{width:563.775000px;}
.w1_c00072{width:564.000000px;}
.x0_c00072{left:0.000000px;}
.x2_c00072{left:8.550000px;}
.x7_c00072{left:48.900000px;}
.x5_c00072{left:68.550000px;}
.x9_c00072{left:69.600000px;}
.x8_c00072{left:70.650000px;}
.x1_c00072{left:71.850000px;}
.x3_c00072{left:72.900000px;}
.x4_c00072{left:74.550000px;}
.x6_c00072{left:92.850000px;}
.x14_c00072{left:233.701767px;}
.x12_c00072{left:287.550000px;}
.x11_c00072{left:289.950000px;}
.xa_c00072{left:291.000000px;}
.xc_c00072{left:292.350000px;}
.xd_c00072{left:304.050000px;}
.xe_c00072{left:330.450000px;}
.x10_c00072{left:334.200000px;}
.xf_c00072{left:369.000000px;}
.xb_c00072{left:372.900000px;}
.x13_c00072{left:448.950000px;}
@media print{
.v0_c00072{vertical-align:0.000000pt;}
.v1_c00072{vertical-align:8.533333pt;}
.ls6_c00072{letter-spacing:0.000000pt;}
.ls1_c00072{letter-spacing:1.066667pt;}
.ls5_c00072{letter-spacing:2.666667pt;}
.ls2_c00072{letter-spacing:4.266667pt;}
.ls4_c00072{letter-spacing:8.893333pt;}
.ls0_c00072{letter-spacing:11.786667pt;}
.ls3_c00072{letter-spacing:116.586667pt;}
.ws2_c00072{word-spacing:-16.053333pt;}
.ws1_c00072{word-spacing:-12.824000pt;}
.ws0_c00072{word-spacing:-12.586667pt;}
.ws3_c00072{word-spacing:0.000000pt;}
._1c_c00072{margin-left:-18.293333pt;}
._1e_c00072{margin-left:-16.640000pt;}
._1b_c00072{margin-left:-15.520000pt;}
._f_c00072{margin-left:-12.693333pt;}
._1f_c00072{margin-left:-10.186667pt;}
._1d_c00072{margin-left:-9.226667pt;}
._11_c00072{margin-left:-7.946667pt;}
._9_c00072{margin-left:-6.133333pt;}
._e_c00072{margin-left:-4.640000pt;}
._7_c00072{margin-left:-3.466667pt;}
._6_c00072{margin-left:-2.400000pt;}
._8_c00072{margin-left:-1.493333pt;}
._1_c00072{width:0.960000pt;}
._0_c00072{width:1.866667pt;}
._b_c00072{width:3.413333pt;}
._4_c00072{width:4.320000pt;}
._17_c00072{width:5.226667pt;}
._5_c00072{width:6.133333pt;}
._16_c00072{width:7.200000pt;}
._c_c00072{width:8.160000pt;}
._12_c00072{width:9.173333pt;}
._18_c00072{width:10.080000pt;}
._3_c00072{width:11.893333pt;}
._2_c00072{width:13.600000pt;}
._19_c00072{width:14.560000pt;}
._13_c00072{width:16.266667pt;}
._27_c00072{width:17.173333pt;}
._10_c00072{width:18.666667pt;}
._25_c00072{width:19.626667pt;}
._21_c00072{width:21.066667pt;}
._28_c00072{width:22.453333pt;}
._23_c00072{width:23.413333pt;}
._26_c00072{width:24.373333pt;}
._24_c00072{width:25.546667pt;}
._22_c00072{width:26.880000pt;}
._29_c00072{width:27.786667pt;}
._15_c00072{width:29.653333pt;}
._2a_c00072{width:31.306667pt;}
._14_c00072{width:34.133333pt;}
._2d_c00072{width:35.093333pt;}
._2c_c00072{width:36.213333pt;}
._2b_c00072{width:38.826667pt;}
._2f_c00072{width:51.946667pt;}
._2e_c00072{width:58.453333pt;}
._20_c00072{width:62.026667pt;}
._d_c00072{width:66.506667pt;}
._a_c00072{width:96.373333pt;}
._1a_c00072{width:98.346667pt;}
.fs4_c00072{font-size:40.000000pt;}
.fs5_c00072{font-size:42.666667pt;}
.fs0_c00072{font-size:53.333333pt;}
.fs2_c00072{font-size:56.000000pt;}
.fs1_c00072{font-size:58.666667pt;}
.fs3_c00072{font-size:61.333333pt;}
.y0_c00072{bottom:0.000000pt;}
.y4f_c00072{bottom:2.760000pt;}
.y4e_c00072{bottom:6.425206pt;}
.y4d_c00072{bottom:35.493333pt;}
.y4c_c00072{bottom:52.826667pt;}
.y29_c00072{bottom:53.093333pt;}
.y4b_c00072{bottom:69.093333pt;}
.y28_c00072{bottom:69.760000pt;}
.y4a_c00072{bottom:84.960000pt;}
.y27_c00072{bottom:85.760000pt;}
.y49_c00072{bottom:101.360000pt;}
.y26_c00072{bottom:101.760000pt;}
.y48_c00072{bottom:117.626667pt;}
.y25_c00072{bottom:117.893333pt;}
.y47_c00072{bottom:133.226667pt;}
.y24_c00072{bottom:134.160000pt;}
.y46_c00072{bottom:149.493333pt;}
.y23_c00072{bottom:150.026667pt;}
.y45_c00072{bottom:164.426667pt;}
.y22_c00072{bottom:166.160000pt;}
.y44_c00072{bottom:181.760000pt;}
.y21_c00072{bottom:182.426667pt;}
.y20_c00072{bottom:198.560000pt;}
.y1f_c00072{bottom:214.693333pt;}
.y43_c00072{bottom:230.693333pt;}
.y1e_c00072{bottom:230.960000pt;}
.y42_c00072{bottom:246.693333pt;}
.y1d_c00072{bottom:247.226667pt;}
.y1c_c00072{bottom:262.293333pt;}
.y41_c00072{bottom:263.093333pt;}
.y1b_c00072{bottom:278.426667pt;}
.y40_c00072{bottom:279.093333pt;}
.y3f_c00072{bottom:294.293333pt;}
.y1a_c00072{bottom:294.560000pt;}
.y19_c00072{bottom:310.826667pt;}
.y3e_c00072{bottom:311.093333pt;}
.y18_c00072{bottom:326.693333pt;}
.y3d_c00072{bottom:327.626667pt;}
.y3c_c00072{bottom:343.226667pt;}
.y17_c00072{bottom:343.493333pt;}
.y3b_c00072{bottom:359.093333pt;}
.y16_c00072{bottom:359.493333pt;}
.y3a_c00072{bottom:374.693333pt;}
.y15_c00072{bottom:375.360000pt;}
.y14_c00072{bottom:390.693333pt;}
.y39_c00072{bottom:391.226667pt;}
.y38_c00072{bottom:407.093333pt;}
.y13_c00072{bottom:407.360000pt;}
.y37_c00072{bottom:420.826667pt;}
.y12_c00072{bottom:422.426667pt;}
.y11_c00072{bottom:438.693333pt;}
.y10_c00072{bottom:454.560000pt;}
.y36_c00072{bottom:456.026667pt;}
.yf_c00072{bottom:471.093333pt;}
.ye_c00072{bottom:486.693333pt;}
.y35_c00072{bottom:487.893333pt;}
.y34_c00072{bottom:502.560000pt;}
.yd_c00072{bottom:503.093333pt;}
.yc_c00072{bottom:518.693333pt;}
.yb_c00072{bottom:534.560000pt;}
.y33_c00072{bottom:535.760000pt;}
.ya_c00072{bottom:550.826667pt;}
.y9_c00072{bottom:566.693333pt;}
.y32_c00072{bottom:567.360000pt;}
.y8_c00072{bottom:582.560000pt;}
.y31_c00072{bottom:583.760000pt;}
.y7_c00072{bottom:598.293333pt;}
.y30_c00072{bottom:600.026667pt;}
.y6_c00072{bottom:614.426667pt;}
.y2f_c00072{bottom:615.626667pt;}
.y5_c00072{bottom:630.026667pt;}
.y2e_c00072{bottom:631.893333pt;}
.y4_c00072{bottom:646.160000pt;}
.y2d_c00072{bottom:648.026667pt;}
.y3_c00072{bottom:662.160000pt;}
.y2c_c00072{bottom:663.893333pt;}
.y2_c00072{bottom:677.760000pt;}
.y2b_c00072{bottom:680.426667pt;}
.y1_c00072{bottom:693.893333pt;}
.y2a_c00072{bottom:695.760000pt;}
.h6_c00072{height:11.733399pt;}
.h7_c00072{height:38.937500pt;}
.h2_c00072{height:55.893333pt;}
.h4_c00072{height:58.688000pt;}
.h3_c00072{height:63.594667pt;}
.h5_c00072{height:72.810667pt;}
.h0_c00072{height:735.866667pt;}
.h1_c00072{height:736.000000pt;}
.w2_c00072{width:93.222667pt;}
.w0_c00072{width:501.133333pt;}
.w1_c00072{width:501.333333pt;}
.x0_c00072{left:0.000000pt;}
.x2_c00072{left:7.600000pt;}
.x7_c00072{left:43.466667pt;}
.x5_c00072{left:60.933333pt;}
.x9_c00072{left:61.866667pt;}
.x8_c00072{left:62.800000pt;}
.x1_c00072{left:63.866667pt;}
.x3_c00072{left:64.800000pt;}
.x4_c00072{left:66.266667pt;}
.x6_c00072{left:82.533333pt;}
.x14_c00072{left:207.734904pt;}
.x12_c00072{left:255.600000pt;}
.x11_c00072{left:257.733333pt;}
.xa_c00072{left:258.666667pt;}
.xc_c00072{left:259.866667pt;}
.xd_c00072{left:270.266667pt;}
.xe_c00072{left:293.733333pt;}
.x10_c00072{left:297.066667pt;}
.xf_c00072{left:328.000000pt;}
.xb_c00072{left:331.466667pt;}
.x13_c00072{left:399.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_202ef4988e8a803188644981.woff2')format("woff");}.ff1_c00073{font-family:ff1_c00073;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00073;src:url('chunks/assets/font_193a6297b9861edfa80c6a9e.woff2')format("woff");}.ff2_c00073{font-family:ff2_c00073;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00073;src:url('chunks/assets/font_76cb834793aebc156adcc1d2.woff2')format("woff");}.ff3_c00073{font-family:ff3_c00073;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00073;src:url('chunks/assets/font_769f091eb4325c67ff9d51f0.woff2')format("woff");}.ff4_c00073{font-family:ff4_c00073;line-height:1.575000;font-style:normal;font-weight:normal;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_7164f7fc20c479aacf7b7c04.woff2')format("woff");}.ff5_c00073{font-family:ff5_c00073;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00073;src:url('chunks/assets/font_c5cbff1bf3b4236ea5881527.woff2')format("woff");}.ff6_c00073{font-family:ff6_c00073;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00073;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff7_c00073{font-family:ff7_c00073;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00073{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00073{vertical-align:0.000000px;}
.ls3_c00073{letter-spacing:0.000000px;}
.ls0_c00073{letter-spacing:3.000000px;}
.ls5_c00073{letter-spacing:6.000000px;}
.ls4_c00073{letter-spacing:12.000000px;}
.ls2_c00073{letter-spacing:29.460000px;}
.ls1_c00073{letter-spacing:57.060000px;}
.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;}
}
.ws2_c00073{word-spacing:-35.295000px;}
.ws0_c00073{word-spacing:-29.319000px;}
.ws4_c00073{word-spacing:-17.319000px;}
.ws3_c00073{word-spacing:-15.000000px;}
.ws1_c00073{word-spacing:-14.160000px;}
.ws5_c00073{word-spacing:0.000000px;}
._28_c00073{margin-left:-19.293000px;}
._25_c00073{margin-left:-13.827000px;}
._1e_c00073{margin-left:-12.660000px;}
._2a_c00073{margin-left:-8.229000px;}
._1d_c00073{margin-left:-7.080000px;}
._11_c00073{margin-left:-5.580000px;}
._13_c00073{margin-left:-4.440000px;}
._b_c00073{margin-left:-3.360000px;}
._8_c00073{margin-left:-1.500000px;}
._5_c00073{width:1.380000px;}
._e_c00073{width:2.460000px;}
._3_c00073{width:3.519000px;}
._4_c00073{width:4.623000px;}
._14_c00073{width:5.658000px;}
._0_c00073{width:6.900000px;}
._a_c00073{width:8.595000px;}
._d_c00073{width:10.080000px;}
._c_c00073{width:11.820000px;}
._1_c00073{width:13.386000px;}
._12_c00073{width:15.282000px;}
._23_c00073{width:16.872000px;}
._1c_c00073{width:18.150000px;}
._1b_c00073{width:19.740000px;}
._15_c00073{width:21.624000px;}
._f_c00073{width:22.746000px;}
._27_c00073{width:25.980000px;}
._18_c00073{width:27.156000px;}
._26_c00073{width:28.254000px;}
._10_c00073{width:30.540000px;}
._1f_c00073{width:32.460000px;}
._20_c00073{width:33.876000px;}
._7_c00073{width:35.454000px;}
._24_c00073{width:41.193000px;}
._9_c00073{width:42.300000px;}
._29_c00073{width:47.568000px;}
._6_c00073{width:57.360000px;}
._16_c00073{width:62.448000px;}
._17_c00073{width:82.338000px;}
._21_c00073{width:107.937000px;}
._22_c00073{width:122.616000px;}
._1a_c00073{width:169.140000px;}
._19_c00073{width:187.959000px;}
._2_c00073{width:284.181000px;}
.fc2_c00073{color:transparent;}
.fc1_c00073{color:rgb(128,128,128);}
.fc0_c00073{color:rgb(0,0,0);}
.fs3_c00073{font-size:45.000000px;}
.fs5_c00073{font-size:48.000000px;}
.fs2_c00073{font-size:57.000000px;}
.fs1_c00073{font-size:60.000000px;}
.fs4_c00073{font-size:63.000000px;}
.fs0_c00073{font-size:69.000000px;}
.y0_c00073{bottom:0.000000px;}
.y52_c00073{bottom:3.105000px;}
.y51_c00073{bottom:7.228355px;}
.y50_c00073{bottom:43.785000px;}
.y2a_c00073{bottom:61.335000px;}
.y4f_c00073{bottom:61.635000px;}
.y29_c00073{bottom:79.635000px;}
.y4e_c00073{bottom:79.935000px;}
.y28_c00073{bottom:98.085000px;}
.y4d_c00073{bottom:98.235000px;}
.y27_c00073{bottom:115.785000px;}
.y4c_c00073{bottom:116.385000px;}
.y26_c00073{bottom:133.935000px;}
.y4b_c00073{bottom:134.535000px;}
.y25_c00073{bottom:152.085000px;}
.y4a_c00073{bottom:152.535000px;}
.y24_c00073{bottom:170.085000px;}
.y49_c00073{bottom:170.685000px;}
.y23_c00073{bottom:188.685000px;}
.y48_c00073{bottom:188.985000px;}
.y22_c00073{bottom:207.135000px;}
.y47_c00073{bottom:207.435000px;}
.y21_c00073{bottom:225.135000px;}
.y46_c00073{bottom:225.435000px;}
.y20_c00073{bottom:242.985000px;}
.y45_c00073{bottom:243.285000px;}
.y1f_c00073{bottom:260.535000px;}
.y44_c00073{bottom:261.135000px;}
.y1e_c00073{bottom:278.385000px;}
.y43_c00073{bottom:279.435000px;}
.y1d_c00073{bottom:296.235000px;}
.y42_c00073{bottom:296.985000px;}
.y41_c00073{bottom:314.535000px;}
.y1c_c00073{bottom:315.135000px;}
.y1b_c00073{bottom:333.135000px;}
.y40_c00073{bottom:333.735000px;}
.y3f_c00073{bottom:350.985000px;}
.y1a_c00073{bottom:351.285000px;}
.y3e_c00073{bottom:369.135000px;}
.y19_c00073{bottom:370.935000px;}
.y18_c00073{bottom:387.435000px;}
.y3d_c00073{bottom:388.785000px;}
.y17_c00073{bottom:404.985000px;}
.y3c_c00073{bottom:405.585000px;}
.y3b_c00073{bottom:422.535000px;}
.y16_c00073{bottom:423.435000px;}
.y3a_c00073{bottom:442.035000px;}
.y15_c00073{bottom:442.335000px;}
.y14_c00073{bottom:459.285000px;}
.y13_c00073{bottom:477.585000px;}
.y39_c00073{bottom:496.335000px;}
.y12_c00073{bottom:496.785000px;}
.y38_c00073{bottom:513.585000px;}
.y11_c00073{bottom:514.635000px;}
.y37_c00073{bottom:531.435000px;}
.y10_c00073{bottom:532.185000px;}
.yf_c00073{bottom:549.135000px;}
.y36_c00073{bottom:549.435000px;}
.ye_c00073{bottom:566.685000px;}
.y35_c00073{bottom:567.585000px;}
.y34_c00073{bottom:584.835000px;}
.yd_c00073{bottom:585.435000px;}
.y33_c00073{bottom:602.985000px;}
.yc_c00073{bottom:603.435000px;}
.yb_c00073{bottom:621.285000px;}
.y32_c00073{bottom:621.885000px;}
.ya_c00073{bottom:639.585000px;}
.y9_c00073{bottom:657.435000px;}
.y31_c00073{bottom:657.735000px;}
.y30_c00073{bottom:674.985000px;}
.y8_c00073{bottom:675.285000px;}
.y7_c00073{bottom:692.535000px;}
.y2f_c00073{bottom:692.835000px;}
.y6_c00073{bottom:711.135000px;}
.y5_c00073{bottom:728.985000px;}
.y2e_c00073{bottom:746.835000px;}
.y4_c00073{bottom:747.435000px;}
.y2d_c00073{bottom:764.985000px;}
.y3_c00073{bottom:765.435000px;}
.y2c_c00073{bottom:782.985000px;}
.y2_c00073{bottom:783.585000px;}
.y2b_c00073{bottom:800.235000px;}
.y1_c00073{bottom:801.885000px;}
.h7_c00073{height:13.200074px;}
.h8_c00073{height:43.804688px;}
.h4_c00073{height:59.736000px;}
.h3_c00073{height:62.880000px;}
.h5_c00073{height:64.020000px;}
.h6_c00073{height:67.221000px;}
.h2_c00073{height:72.312000px;}
.h1_c00073{height:841.500000px;}
.h0_c00073{height:841.575000px;}
.w2_c00073{width:104.875500px;}
.w1_c00073{width:566.250000px;}
.w0_c00073{width:566.475000px;}
.x0_c00073{left:0.000000px;}
.x5_c00073{left:18.600000px;}
.x6_c00073{left:23.250000px;}
.x4_c00073{left:24.900000px;}
.x2_c00073{left:83.700000px;}
.x3_c00073{left:85.050000px;}
.x7_c00073{left:86.100000px;}
.x1_c00073{left:88.200000px;}
.x8_c00073{left:115.200000px;}
.xf_c00073{left:235.051758px;}
.x9_c00073{left:297.900000px;}
.xb_c00073{left:303.450000px;}
.xa_c00073{left:304.800000px;}
.xc_c00073{left:306.000000px;}
.xd_c00073{left:322.950000px;}
.xe_c00073{left:475.200000px;}
@media print{
.v0_c00073{vertical-align:0.000000pt;}
.ls3_c00073{letter-spacing:0.000000pt;}
.ls0_c00073{letter-spacing:2.666667pt;}
.ls5_c00073{letter-spacing:5.333333pt;}
.ls4_c00073{letter-spacing:10.666667pt;}
.ls2_c00073{letter-spacing:26.186667pt;}
.ls1_c00073{letter-spacing:50.720000pt;}
.ws2_c00073{word-spacing:-31.373333pt;}
.ws0_c00073{word-spacing:-26.061333pt;}
.ws4_c00073{word-spacing:-15.394667pt;}
.ws3_c00073{word-spacing:-13.333333pt;}
.ws1_c00073{word-spacing:-12.586667pt;}
.ws5_c00073{word-spacing:0.000000pt;}
._28_c00073{margin-left:-17.149333pt;}
._25_c00073{margin-left:-12.290667pt;}
._1e_c00073{margin-left:-11.253333pt;}
._2a_c00073{margin-left:-7.314667pt;}
._1d_c00073{margin-left:-6.293333pt;}
._11_c00073{margin-left:-4.960000pt;}
._13_c00073{margin-left:-3.946667pt;}
._b_c00073{margin-left:-2.986667pt;}
._8_c00073{margin-left:-1.333333pt;}
._5_c00073{width:1.226667pt;}
._e_c00073{width:2.186667pt;}
._3_c00073{width:3.128000pt;}
._4_c00073{width:4.109333pt;}
._14_c00073{width:5.029333pt;}
._0_c00073{width:6.133333pt;}
._a_c00073{width:7.640000pt;}
._d_c00073{width:8.960000pt;}
._c_c00073{width:10.506667pt;}
._1_c00073{width:11.898667pt;}
._12_c00073{width:13.584000pt;}
._23_c00073{width:14.997333pt;}
._1c_c00073{width:16.133333pt;}
._1b_c00073{width:17.546667pt;}
._15_c00073{width:19.221333pt;}
._f_c00073{width:20.218667pt;}
._27_c00073{width:23.093333pt;}
._18_c00073{width:24.138667pt;}
._26_c00073{width:25.114667pt;}
._10_c00073{width:27.146667pt;}
._1f_c00073{width:28.853333pt;}
._20_c00073{width:30.112000pt;}
._7_c00073{width:31.514667pt;}
._24_c00073{width:36.616000pt;}
._9_c00073{width:37.600000pt;}
._29_c00073{width:42.282667pt;}
._6_c00073{width:50.986667pt;}
._16_c00073{width:55.509333pt;}
._17_c00073{width:73.189333pt;}
._21_c00073{width:95.944000pt;}
._22_c00073{width:108.992000pt;}
._1a_c00073{width:150.346667pt;}
._19_c00073{width:167.074667pt;}
._2_c00073{width:252.605333pt;}
.fs3_c00073{font-size:40.000000pt;}
.fs5_c00073{font-size:42.666667pt;}
.fs2_c00073{font-size:50.666667pt;}
.fs1_c00073{font-size:53.333333pt;}
.fs4_c00073{font-size:56.000000pt;}
.fs0_c00073{font-size:61.333333pt;}
.y0_c00073{bottom:0.000000pt;}
.y52_c00073{bottom:2.760000pt;}
.y51_c00073{bottom:6.425204pt;}
.y50_c00073{bottom:38.920000pt;}
.y2a_c00073{bottom:54.520000pt;}
.y4f_c00073{bottom:54.786667pt;}
.y29_c00073{bottom:70.786667pt;}
.y4e_c00073{bottom:71.053333pt;}
.y28_c00073{bottom:87.186667pt;}
.y4d_c00073{bottom:87.320000pt;}
.y27_c00073{bottom:102.920000pt;}
.y4c_c00073{bottom:103.453333pt;}
.y26_c00073{bottom:119.053333pt;}
.y4b_c00073{bottom:119.586667pt;}
.y25_c00073{bottom:135.186667pt;}
.y4a_c00073{bottom:135.586667pt;}
.y24_c00073{bottom:151.186667pt;}
.y49_c00073{bottom:151.720000pt;}
.y23_c00073{bottom:167.720000pt;}
.y48_c00073{bottom:167.986667pt;}
.y22_c00073{bottom:184.120000pt;}
.y47_c00073{bottom:184.386667pt;}
.y21_c00073{bottom:200.120000pt;}
.y46_c00073{bottom:200.386667pt;}
.y20_c00073{bottom:215.986667pt;}
.y45_c00073{bottom:216.253333pt;}
.y1f_c00073{bottom:231.586667pt;}
.y44_c00073{bottom:232.120000pt;}
.y1e_c00073{bottom:247.453333pt;}
.y43_c00073{bottom:248.386667pt;}
.y1d_c00073{bottom:263.320000pt;}
.y42_c00073{bottom:263.986667pt;}
.y41_c00073{bottom:279.586667pt;}
.y1c_c00073{bottom:280.120000pt;}
.y1b_c00073{bottom:296.120000pt;}
.y40_c00073{bottom:296.653333pt;}
.y3f_c00073{bottom:311.986667pt;}
.y1a_c00073{bottom:312.253333pt;}
.y3e_c00073{bottom:328.120000pt;}
.y19_c00073{bottom:329.720000pt;}
.y18_c00073{bottom:344.386667pt;}
.y3d_c00073{bottom:345.586667pt;}
.y17_c00073{bottom:359.986667pt;}
.y3c_c00073{bottom:360.520000pt;}
.y3b_c00073{bottom:375.586667pt;}
.y16_c00073{bottom:376.386667pt;}
.y3a_c00073{bottom:392.920000pt;}
.y15_c00073{bottom:393.186667pt;}
.y14_c00073{bottom:408.253333pt;}
.y13_c00073{bottom:424.520000pt;}
.y39_c00073{bottom:441.186667pt;}
.y12_c00073{bottom:441.586667pt;}
.y38_c00073{bottom:456.520000pt;}
.y11_c00073{bottom:457.453333pt;}
.y37_c00073{bottom:472.386667pt;}
.y10_c00073{bottom:473.053333pt;}
.yf_c00073{bottom:488.120000pt;}
.y36_c00073{bottom:488.386667pt;}
.ye_c00073{bottom:503.720000pt;}
.y35_c00073{bottom:504.520000pt;}
.y34_c00073{bottom:519.853333pt;}
.yd_c00073{bottom:520.386667pt;}
.y33_c00073{bottom:535.986667pt;}
.yc_c00073{bottom:536.386667pt;}
.yb_c00073{bottom:552.253333pt;}
.y32_c00073{bottom:552.786667pt;}
.ya_c00073{bottom:568.520000pt;}
.y9_c00073{bottom:584.386667pt;}
.y31_c00073{bottom:584.653333pt;}
.y30_c00073{bottom:599.986667pt;}
.y8_c00073{bottom:600.253333pt;}
.y7_c00073{bottom:615.586667pt;}
.y2f_c00073{bottom:615.853333pt;}
.y6_c00073{bottom:632.120000pt;}
.y5_c00073{bottom:647.986667pt;}
.y2e_c00073{bottom:663.853333pt;}
.y4_c00073{bottom:664.386667pt;}
.y2d_c00073{bottom:679.986667pt;}
.y3_c00073{bottom:680.386667pt;}
.y2c_c00073{bottom:695.986667pt;}
.y2_c00073{bottom:696.520000pt;}
.y2b_c00073{bottom:711.320000pt;}
.y1_c00073{bottom:712.786667pt;}
.h7_c00073{height:11.733399pt;}
.h8_c00073{height:38.937500pt;}
.h4_c00073{height:53.098667pt;}
.h3_c00073{height:55.893333pt;}
.h5_c00073{height:56.906667pt;}
.h6_c00073{height:59.752000pt;}
.h2_c00073{height:64.277333pt;}
.h1_c00073{height:748.000000pt;}
.h0_c00073{height:748.066667pt;}
.w2_c00073{width:93.222667pt;}
.w1_c00073{width:503.333333pt;}
.w0_c00073{width:503.533333pt;}
.x0_c00073{left:0.000000pt;}
.x5_c00073{left:16.533333pt;}
.x6_c00073{left:20.666667pt;}
.x4_c00073{left:22.133333pt;}
.x2_c00073{left:74.400000pt;}
.x3_c00073{left:75.600000pt;}
.x7_c00073{left:76.533333pt;}
.x1_c00073{left:78.400000pt;}
.x8_c00073{left:102.400000pt;}
.xf_c00073{left:208.934896pt;}
.x9_c00073{left:264.800000pt;}
.xb_c00073{left:269.733333pt;}
.xa_c00073{left:270.933333pt;}
.xc_c00073{left:272.000000pt;}
.xd_c00073{left:287.066667pt;}
.xe_c00073{left:422.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6937fe22f7c009c9d81333bc.woff2')format("woff");}.ff1_c00074{font-family:ff1_c00074;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00074;src:url('chunks/assets/font_c89f4a8bf69690f3c1bcf13e.woff2')format("woff");}.ff2_c00074{font-family:ff2_c00074;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00074;src:url('chunks/assets/font_29a57d136c192a454f87f822.woff2')format("woff");}.ff3_c00074{font-family:ff3_c00074;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00074;src:url('chunks/assets/font_0ce391de997f24f9f9dd37f4.woff2')format("woff");}.ff4_c00074{font-family:ff4_c00074;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00074;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff5_c00074{font-family:ff5_c00074;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00074{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00074{vertical-align:0.000000px;}
.ls4_c00074{letter-spacing:0.000000px;}
.ls0_c00074{letter-spacing:2.805000px;}
.ls3_c00074{letter-spacing:3.000000px;}
.ls1_c00074{letter-spacing:4.860000px;}
.ls2_c00074{letter-spacing:29.340000px;}
.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;}
}
.ws2_c00074{word-spacing:-18.813000px;}
.ws1_c00074{word-spacing:-18.060000px;}
.ws0_c00074{word-spacing:-14.160000px;}
.ws3_c00074{word-spacing:0.000000px;}
._1e_c00074{margin-left:-21.360000px;}
._10_c00074{margin-left:-14.640000px;}
._11_c00074{margin-left:-12.120000px;}
._17_c00074{margin-left:-10.140000px;}
._e_c00074{margin-left:-9.120000px;}
._25_c00074{margin-left:-7.740000px;}
._1a_c00074{margin-left:-6.660000px;}
._12_c00074{margin-left:-4.860000px;}
._16_c00074{margin-left:-2.880000px;}
._c_c00074{margin-left:-1.740000px;}
._b_c00074{width:1.020000px;}
._a_c00074{width:2.220000px;}
._9_c00074{width:3.300000px;}
._8_c00074{width:4.860000px;}
._6_c00074{width:6.600000px;}
._19_c00074{width:7.740000px;}
._f_c00074{width:8.820000px;}
._4_c00074{width:9.900000px;}
._1_c00074{width:11.640000px;}
._1b_c00074{width:13.560000px;}
._0_c00074{width:14.940000px;}
._1c_c00074{width:16.680000px;}
._3_c00074{width:20.160000px;}
._21_c00074{width:21.300000px;}
._1f_c00074{width:22.500000px;}
._5_c00074{width:24.000000px;}
._1d_c00074{width:25.140000px;}
._15_c00074{width:26.880000px;}
._13_c00074{width:28.140000px;}
._18_c00074{width:31.500000px;}
._29_c00074{width:35.520000px;}
._14_c00074{width:42.780000px;}
._2_c00074{width:45.540000px;}
._27_c00074{width:49.680000px;}
._28_c00074{width:52.740000px;}
._20_c00074{width:58.080000px;}
._23_c00074{width:61.500000px;}
._22_c00074{width:68.820000px;}
._d_c00074{width:72.420000px;}
._24_c00074{width:82.020000px;}
._26_c00074{width:94.260000px;}
._7_c00074{width:429.840000px;}
.fc2_c00074{color:transparent;}
.fc1_c00074{color:rgb(128,128,128);}
.fc0_c00074{color:rgb(0,0,0);}
.fs2_c00074{font-size:45.000000px;}
.fs4_c00074{font-size:48.000000px;}
.fs0_c00074{font-size:60.000000px;}
.fs1_c00074{font-size:63.000000px;}
.fs3_c00074{font-size:69.000000px;}
.y0_c00074{bottom:0.000000px;}
.y59_c00074{bottom:3.105000px;}
.y58_c00074{bottom:7.228357px;}
.y57_c00074{bottom:47.280000px;}
.y53_c00074{bottom:68.280000px;}
.y56_c00074{bottom:83.730000px;}
.y52_c00074{bottom:86.430000px;}
.y55_c00074{bottom:102.030000px;}
.y51_c00074{bottom:104.730000px;}
.y54_c00074{bottom:119.580000px;}
.y50_c00074{bottom:122.280000px;}
.y4f_c00074{bottom:139.380000px;}
.y4e_c00074{bottom:156.330000px;}
.y2c_c00074{bottom:158.280000px;}
.y4d_c00074{bottom:174.330000px;}
.y2b_c00074{bottom:176.580000px;}
.y9_c00074{bottom:180.180000px;}
.y4c_c00074{bottom:192.330000px;}
.y2a_c00074{bottom:194.130000px;}
.y8_c00074{bottom:197.880000px;}
.y4b_c00074{bottom:210.330000px;}
.y29_c00074{bottom:212.580000px;}
.y4a_c00074{bottom:228.780000px;}
.y28_c00074{bottom:230.580000px;}
.y7_c00074{bottom:234.180000px;}
.y49_c00074{bottom:246.480000px;}
.y27_c00074{bottom:249.180000px;}
.y6_c00074{bottom:252.480000px;}
.y48_c00074{bottom:264.930000px;}
.y26_c00074{bottom:266.730000px;}
.y47_c00074{bottom:282.930000px;}
.y25_c00074{bottom:284.580000px;}
.y46_c00074{bottom:301.080000px;}
.y24_c00074{bottom:303.030000px;}
.y45_c00074{bottom:319.230000px;}
.y23_c00074{bottom:321.030000px;}
.y44_c00074{bottom:337.230000px;}
.y22_c00074{bottom:339.480000px;}
.y43_c00074{bottom:356.430000px;}
.y21_c00074{bottom:357.480000px;}
.y42_c00074{bottom:375.030000px;}
.y20_c00074{bottom:375.630000px;}
.y41_c00074{bottom:393.180000px;}
.y1f_c00074{bottom:393.930000px;}
.y1e_c00074{bottom:411.480000px;}
.y40_c00074{bottom:429.630000px;}
.y1d_c00074{bottom:429.930000px;}
.y1c_c00074{bottom:446.880000px;}
.y3f_c00074{bottom:447.930000px;}
.y1b_c00074{bottom:465.030000px;}
.y3e_c00074{bottom:465.480000px;}
.y1a_c00074{bottom:482.580000px;}
.y3d_c00074{bottom:483.930000px;}
.y19_c00074{bottom:500.430000px;}
.y3c_c00074{bottom:502.230000px;}
.y18_c00074{bottom:518.730000px;}
.y3b_c00074{bottom:520.380000px;}
.y17_c00074{bottom:537.030000px;}
.y3a_c00074{bottom:538.380000px;}
.y16_c00074{bottom:554.880000px;}
.y39_c00074{bottom:556.230000px;}
.y15_c00074{bottom:572.730000px;}
.y38_c00074{bottom:574.380000px;}
.y14_c00074{bottom:590.730000px;}
.y37_c00074{bottom:592.380000px;}
.y13_c00074{bottom:609.480000px;}
.y36_c00074{bottom:610.230000px;}
.y12_c00074{bottom:626.130000px;}
.y35_c00074{bottom:628.830000px;}
.y5_c00074{bottom:636.180000px;}
.y11_c00074{bottom:645.330000px;}
.y34_c00074{bottom:646.080000px;}
.y10_c00074{bottom:663.180000px;}
.y33_c00074{bottom:664.680000px;}
.yf_c00074{bottom:680.430000px;}
.y32_c00074{bottom:682.530000px;}
.ye_c00074{bottom:698.580000px;}
.y31_c00074{bottom:700.380000px;}
.yd_c00074{bottom:716.880000px;}
.y30_c00074{bottom:718.230000px;}
.y4_c00074{bottom:724.230000px;}
.yc_c00074{bottom:734.730000px;}
.y2f_c00074{bottom:736.830000px;}
.y3_c00074{bottom:744.930000px;}
.yb_c00074{bottom:753.030000px;}
.y2e_c00074{bottom:754.980000px;}
.ya_c00074{bottom:770.580000px;}
.y2d_c00074{bottom:772.830000px;}
.y2_c00074{bottom:789.780000px;}
.y1_c00074{bottom:810.330000px;}
.h5_c00074{height:13.200074px;}
.h6_c00074{height:43.804688px;}
.h2_c00074{height:62.880000px;}
.h3_c00074{height:66.024000px;}
.h4_c00074{height:72.312000px;}
.h1_c00074{height:845.250000px;}
.h0_c00074{height:845.400000px;}
.w2_c00074{width:104.875500px;}
.w0_c00074{width:575.925000px;}
.w1_c00074{width:576.000000px;}
.x0_c00074{left:0.000000px;}
.x3_c00074{left:19.950000px;}
.x4_c00074{left:21.900000px;}
.x8_c00074{left:78.300000px;}
.x5_c00074{left:79.950000px;}
.x6_c00074{left:81.000000px;}
.x2_c00074{left:82.650000px;}
.x9_c00074{left:84.000000px;}
.xa_c00074{left:85.650000px;}
.x7_c00074{left:101.850000px;}
.x1_c00074{left:228.150000px;}
.x14_c00074{left:239.776749px;}
.xc_c00074{left:300.750000px;}
.xb_c00074{left:302.100000px;}
.xd_c00074{left:303.450000px;}
.xe_c00074{left:304.650000px;}
.xf_c00074{left:305.700000px;}
.x10_c00074{left:315.000000px;}
.x11_c00074{left:340.650000px;}
.x12_c00074{left:372.900000px;}
.x13_c00074{left:467.400000px;}
@media print{
.v0_c00074{vertical-align:0.000000pt;}
.ls4_c00074{letter-spacing:0.000000pt;}
.ls0_c00074{letter-spacing:2.493333pt;}
.ls3_c00074{letter-spacing:2.666667pt;}
.ls1_c00074{letter-spacing:4.320000pt;}
.ls2_c00074{letter-spacing:26.080000pt;}
.ws2_c00074{word-spacing:-16.722667pt;}
.ws1_c00074{word-spacing:-16.053333pt;}
.ws0_c00074{word-spacing:-12.586667pt;}
.ws3_c00074{word-spacing:0.000000pt;}
._1e_c00074{margin-left:-18.986667pt;}
._10_c00074{margin-left:-13.013333pt;}
._11_c00074{margin-left:-10.773333pt;}
._17_c00074{margin-left:-9.013333pt;}
._e_c00074{margin-left:-8.106667pt;}
._25_c00074{margin-left:-6.880000pt;}
._1a_c00074{margin-left:-5.920000pt;}
._12_c00074{margin-left:-4.320000pt;}
._16_c00074{margin-left:-2.560000pt;}
._c_c00074{margin-left:-1.546667pt;}
._b_c00074{width:0.906667pt;}
._a_c00074{width:1.973333pt;}
._9_c00074{width:2.933333pt;}
._8_c00074{width:4.320000pt;}
._6_c00074{width:5.866667pt;}
._19_c00074{width:6.880000pt;}
._f_c00074{width:7.840000pt;}
._4_c00074{width:8.800000pt;}
._1_c00074{width:10.346667pt;}
._1b_c00074{width:12.053333pt;}
._0_c00074{width:13.280000pt;}
._1c_c00074{width:14.826667pt;}
._3_c00074{width:17.920000pt;}
._21_c00074{width:18.933333pt;}
._1f_c00074{width:20.000000pt;}
._5_c00074{width:21.333333pt;}
._1d_c00074{width:22.346667pt;}
._15_c00074{width:23.893333pt;}
._13_c00074{width:25.013333pt;}
._18_c00074{width:28.000000pt;}
._29_c00074{width:31.573333pt;}
._14_c00074{width:38.026667pt;}
._2_c00074{width:40.480000pt;}
._27_c00074{width:44.160000pt;}
._28_c00074{width:46.880000pt;}
._20_c00074{width:51.626667pt;}
._23_c00074{width:54.666667pt;}
._22_c00074{width:61.173333pt;}
._d_c00074{width:64.373333pt;}
._24_c00074{width:72.906667pt;}
._26_c00074{width:83.786667pt;}
._7_c00074{width:382.080000pt;}
.fs2_c00074{font-size:40.000000pt;}
.fs4_c00074{font-size:42.666667pt;}
.fs0_c00074{font-size:53.333333pt;}
.fs1_c00074{font-size:56.000000pt;}
.fs3_c00074{font-size:61.333333pt;}
.y0_c00074{bottom:0.000000pt;}
.y59_c00074{bottom:2.760000pt;}
.y58_c00074{bottom:6.425206pt;}
.y57_c00074{bottom:42.026667pt;}
.y53_c00074{bottom:60.693333pt;}
.y56_c00074{bottom:74.426667pt;}
.y52_c00074{bottom:76.826667pt;}
.y55_c00074{bottom:90.693333pt;}
.y51_c00074{bottom:93.093333pt;}
.y54_c00074{bottom:106.293333pt;}
.y50_c00074{bottom:108.693333pt;}
.y4f_c00074{bottom:123.893333pt;}
.y4e_c00074{bottom:138.960000pt;}
.y2c_c00074{bottom:140.693333pt;}
.y4d_c00074{bottom:154.960000pt;}
.y2b_c00074{bottom:156.960000pt;}
.y9_c00074{bottom:160.160000pt;}
.y4c_c00074{bottom:170.960000pt;}
.y2a_c00074{bottom:172.560000pt;}
.y8_c00074{bottom:175.893333pt;}
.y4b_c00074{bottom:186.960000pt;}
.y29_c00074{bottom:188.960000pt;}
.y4a_c00074{bottom:203.360000pt;}
.y28_c00074{bottom:204.960000pt;}
.y7_c00074{bottom:208.160000pt;}
.y49_c00074{bottom:219.093333pt;}
.y27_c00074{bottom:221.493333pt;}
.y6_c00074{bottom:224.426667pt;}
.y48_c00074{bottom:235.493333pt;}
.y26_c00074{bottom:237.093333pt;}
.y47_c00074{bottom:251.493333pt;}
.y25_c00074{bottom:252.960000pt;}
.y46_c00074{bottom:267.626667pt;}
.y24_c00074{bottom:269.360000pt;}
.y45_c00074{bottom:283.760000pt;}
.y23_c00074{bottom:285.360000pt;}
.y44_c00074{bottom:299.760000pt;}
.y22_c00074{bottom:301.760000pt;}
.y43_c00074{bottom:316.826667pt;}
.y21_c00074{bottom:317.760000pt;}
.y42_c00074{bottom:333.360000pt;}
.y20_c00074{bottom:333.893333pt;}
.y41_c00074{bottom:349.493333pt;}
.y1f_c00074{bottom:350.160000pt;}
.y1e_c00074{bottom:365.760000pt;}
.y40_c00074{bottom:381.893333pt;}
.y1d_c00074{bottom:382.160000pt;}
.y1c_c00074{bottom:397.226667pt;}
.y3f_c00074{bottom:398.160000pt;}
.y1b_c00074{bottom:413.360000pt;}
.y3e_c00074{bottom:413.760000pt;}
.y1a_c00074{bottom:428.960000pt;}
.y3d_c00074{bottom:430.160000pt;}
.y19_c00074{bottom:444.826667pt;}
.y3c_c00074{bottom:446.426667pt;}
.y18_c00074{bottom:461.093333pt;}
.y3b_c00074{bottom:462.560000pt;}
.y17_c00074{bottom:477.360000pt;}
.y3a_c00074{bottom:478.560000pt;}
.y16_c00074{bottom:493.226667pt;}
.y39_c00074{bottom:494.426667pt;}
.y15_c00074{bottom:509.093333pt;}
.y38_c00074{bottom:510.560000pt;}
.y14_c00074{bottom:525.093333pt;}
.y37_c00074{bottom:526.560000pt;}
.y13_c00074{bottom:541.760000pt;}
.y36_c00074{bottom:542.426667pt;}
.y12_c00074{bottom:556.560000pt;}
.y35_c00074{bottom:558.960000pt;}
.y5_c00074{bottom:565.493333pt;}
.y11_c00074{bottom:573.626667pt;}
.y34_c00074{bottom:574.293333pt;}
.y10_c00074{bottom:589.493333pt;}
.y33_c00074{bottom:590.826667pt;}
.yf_c00074{bottom:604.826667pt;}
.y32_c00074{bottom:606.693333pt;}
.ye_c00074{bottom:620.960000pt;}
.y31_c00074{bottom:622.560000pt;}
.yd_c00074{bottom:637.226667pt;}
.y30_c00074{bottom:638.426667pt;}
.y4_c00074{bottom:643.760000pt;}
.yc_c00074{bottom:653.093333pt;}
.y2f_c00074{bottom:654.960000pt;}
.y3_c00074{bottom:662.160000pt;}
.yb_c00074{bottom:669.360000pt;}
.y2e_c00074{bottom:671.093333pt;}
.ya_c00074{bottom:684.960000pt;}
.y2d_c00074{bottom:686.960000pt;}
.y2_c00074{bottom:702.026667pt;}
.y1_c00074{bottom:720.293333pt;}
.h5_c00074{height:11.733399pt;}
.h6_c00074{height:38.937500pt;}
.h2_c00074{height:55.893333pt;}
.h3_c00074{height:58.688000pt;}
.h4_c00074{height:64.277333pt;}
.h1_c00074{height:751.333333pt;}
.h0_c00074{height:751.466667pt;}
.w2_c00074{width:93.222667pt;}
.w0_c00074{width:511.933333pt;}
.w1_c00074{width:512.000000pt;}
.x0_c00074{left:0.000000pt;}
.x3_c00074{left:17.733333pt;}
.x4_c00074{left:19.466667pt;}
.x8_c00074{left:69.600000pt;}
.x5_c00074{left:71.066667pt;}
.x6_c00074{left:72.000000pt;}
.x2_c00074{left:73.466667pt;}
.x9_c00074{left:74.666667pt;}
.xa_c00074{left:76.133333pt;}
.x7_c00074{left:90.533333pt;}
.x1_c00074{left:202.800000pt;}
.x14_c00074{left:213.134888pt;}
.xc_c00074{left:267.333333pt;}
.xb_c00074{left:268.533333pt;}
.xd_c00074{left:269.733333pt;}
.xe_c00074{left:270.800000pt;}
.xf_c00074{left:271.733333pt;}
.x10_c00074{left:280.000000pt;}
.x11_c00074{left:302.800000pt;}
.x12_c00074{left:331.466667pt;}
.x13_c00074{left:415.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_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_3b34a83f2a32ed6f8870d00f.woff2')format("woff");}.ff1_c00075{font-family:ff1_c00075;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00075;src:url('chunks/assets/font_5800e247dc45d453ea4020b1.woff2')format("woff");}.ff2_c00075{font-family:ff2_c00075;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00075;src:url('chunks/assets/font_f7c22fa796d5ebebb034708b.woff2')format("woff");}.ff3_c00075{font-family:ff3_c00075;line-height:1.437000;font-style:normal;font-weight:normal;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_36c3475a03f9cc38a57bcf7f.woff2')format("woff");}.ff4_c00075{font-family:ff4_c00075;line-height:1.437000;font-style:normal;font-weight:normal;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_df65c5b794a1bf704cb33d31.woff2')format("woff");}.ff5_c00075{font-family:ff5_c00075;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00075;src:url('chunks/assets/font_c5e83355f62dc7f188d3d1ed.woff2')format("woff");}.ff6_c00075{font-family:ff6_c00075;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00075;src:url('chunks/assets/font_0c95c6d386ee34fa515c6a71.woff2')format("woff");}.ff7_c00075{font-family:ff7_c00075;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00075;src:url('chunks/assets/font_7164f7fc20c479aacf7b7c04.woff2')format("woff");}.ff8_c00075{font-family:ff8_c00075;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00075;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff9_c00075{font-family:ff9_c00075;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00075{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00075{vertical-align:0.000000px;}
.v1_c00075{vertical-align:13.800000px;}
.ls9_c00075{letter-spacing:0.000000px;}
.ls1_c00075{letter-spacing:1.800000px;}
.ls3_c00075{letter-spacing:3.000000px;}
.ls8_c00075{letter-spacing:3.405000px;}
.lsa_c00075{letter-spacing:6.000000px;}
.ls0_c00075{letter-spacing:9.600000px;}
.lsb_c00075{letter-spacing:12.000000px;}
.ls7_c00075{letter-spacing:14.460000px;}
.ls5_c00075{letter-spacing:15.600000px;}
.ls6_c00075{letter-spacing:17.460000px;}
.ls4_c00075{letter-spacing:21.060000px;}
.ls2_c00075{letter-spacing:100.260000px;}
.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:-42.192000px;}
.ws4_c00075{word-spacing:-29.319000px;}
.ws2_c00075{word-spacing:-18.060000px;}
.ws3_c00075{word-spacing:-17.340000px;}
.ws1_c00075{word-spacing:-14.160000px;}
.ws5_c00075{word-spacing:0.000000px;}
._1f_c00075{margin-left:-15.921000px;}
._21_c00075{margin-left:-14.676000px;}
._25_c00075{margin-left:-12.531000px;}
._20_c00075{margin-left:-11.001000px;}
._1c_c00075{margin-left:-9.075000px;}
._14_c00075{margin-left:-7.224000px;}
._0_c00075{margin-left:-5.376000px;}
._27_c00075{margin-left:-4.326000px;}
._13_c00075{margin-left:-3.300000px;}
._b_c00075{margin-left:-1.920000px;}
._d_c00075{width:1.380000px;}
._e_c00075{width:2.700000px;}
._11_c00075{width:4.380000px;}
._10_c00075{width:5.571000px;}
._1d_c00075{width:6.651000px;}
._16_c00075{width:7.680000px;}
._9_c00075{width:8.946000px;}
._1b_c00075{width:10.053000px;}
._12_c00075{width:11.160000px;}
._15_c00075{width:12.354000px;}
._4_c00075{width:13.734000px;}
._5_c00075{width:15.309000px;}
._6_c00075{width:16.695000px;}
._1a_c00075{width:18.444000px;}
._18_c00075{width:19.689000px;}
._8_c00075{width:20.727000px;}
._26_c00075{width:21.933000px;}
._7_c00075{width:23.058000px;}
._c_c00075{width:25.140000px;}
._17_c00075{width:26.652000px;}
._23_c00075{width:27.780000px;}
._24_c00075{width:29.094000px;}
._a_c00075{width:30.681000px;}
._2_c00075{width:32.445000px;}
._f_c00075{width:34.980000px;}
._22_c00075{width:39.120000px;}
._1_c00075{width:67.599000px;}
._1e_c00075{width:125.580000px;}
._3_c00075{width:148.617000px;}
._19_c00075{width:303.498000px;}
.fc2_c00075{color:transparent;}
.fc1_c00075{color:rgb(128,128,128);}
.fc0_c00075{color:rgb(0,0,0);}
.fs6_c00075{font-size:45.000000px;}
.fs7_c00075{font-size:48.000000px;}
.fs4_c00075{font-size:57.000000px;}
.fs3_c00075{font-size:60.000000px;}
.fs2_c00075{font-size:63.000000px;}
.fs0_c00075{font-size:66.000000px;}
.fs5_c00075{font-size:69.000000px;}
.fs1_c00075{font-size:72.000000px;}
.y0_c00075{bottom:0.000000px;}
.y54_c00075{bottom:3.105000px;}
.y53_c00075{bottom:7.228357px;}
.y52_c00075{bottom:37.230000px;}
.y51_c00075{bottom:54.330000px;}
.y27_c00075{bottom:54.630000px;}
.y50_c00075{bottom:72.930000px;}
.y26_c00075{bottom:73.680000px;}
.y4f_c00075{bottom:91.830000px;}
.y25_c00075{bottom:92.130000px;}
.y4e_c00075{bottom:109.980000px;}
.y24_c00075{bottom:110.130000px;}
.y4d_c00075{bottom:127.230000px;}
.y23_c00075{bottom:128.580000px;}
.y4c_c00075{bottom:145.680000px;}
.y22_c00075{bottom:146.880000px;}
.y4b_c00075{bottom:163.680000px;}
.y21_c00075{bottom:164.730000px;}
.y4a_c00075{bottom:181.680000px;}
.y20_c00075{bottom:183.030000px;}
.y49_c00075{bottom:200.130000px;}
.y1f_c00075{bottom:201.630000px;}
.y48_c00075{bottom:217.980000px;}
.y1e_c00075{bottom:219.780000px;}
.y47_c00075{bottom:236.280000px;}
.y1d_c00075{bottom:237.930000px;}
.y46_c00075{bottom:254.580000px;}
.y1c_c00075{bottom:254.880000px;}
.y45_c00075{bottom:272.430000px;}
.y1b_c00075{bottom:273.780000px;}
.y44_c00075{bottom:290.280000px;}
.y1a_c00075{bottom:291.630000px;}
.y43_c00075{bottom:308.580000px;}
.y19_c00075{bottom:309.780000px;}
.y42_c00075{bottom:326.430000px;}
.y18_c00075{bottom:328.380000px;}
.y41_c00075{bottom:344.580000px;}
.y17_c00075{bottom:346.680000px;}
.y40_c00075{bottom:363.180000px;}
.y16_c00075{bottom:364.530000px;}
.y3f_c00075{bottom:380.730000px;}
.y15_c00075{bottom:381.480000px;}
.y3e_c00075{bottom:398.880000px;}
.y14_c00075{bottom:400.230000px;}
.y3d_c00075{bottom:416.580000px;}
.y13_c00075{bottom:418.230000px;}
.y3c_c00075{bottom:435.030000px;}
.y12_c00075{bottom:436.080000px;}
.y3b_c00075{bottom:452.580000px;}
.y11_c00075{bottom:454.980000px;}
.y3a_c00075{bottom:470.580000px;}
.y10_c00075{bottom:472.830000px;}
.y39_c00075{bottom:488.130000px;}
.yf_c00075{bottom:491.130000px;}
.y38_c00075{bottom:507.030000px;}
.ye_c00075{bottom:508.230000px;}
.y37_c00075{bottom:524.580000px;}
.yd_c00075{bottom:526.230000px;}
.y36_c00075{bottom:542.730000px;}
.yc_c00075{bottom:544.680000px;}
.y35_c00075{bottom:560.580000px;}
.yb_c00075{bottom:562.380000px;}
.y34_c00075{bottom:578.580000px;}
.ya_c00075{bottom:580.830000px;}
.y33_c00075{bottom:596.130000px;}
.y9_c00075{bottom:598.080000px;}
.y8_c00075{bottom:612.180000px;}
.y32_c00075{bottom:614.580000px;}
.y31_c00075{bottom:632.430000px;}
.y30_c00075{bottom:650.430000px;}
.y7_c00075{bottom:652.680000px;}
.y2f_c00075{bottom:668.880000px;}
.y6_c00075{bottom:671.280000px;}
.y2e_c00075{bottom:686.430000px;}
.y5_c00075{bottom:688.530000px;}
.y2d_c00075{bottom:704.130000px;}
.y4_c00075{bottom:706.830000px;}
.y2c_c00075{bottom:722.580000px;}
.y3_c00075{bottom:724.230000px;}
.y2b_c00075{bottom:740.430000px;}
.y2a_c00075{bottom:757.980000px;}
.y2_c00075{bottom:758.730000px;}
.y29_c00075{bottom:777.030000px;}
.y28_c00075{bottom:795.180000px;}
.y1_c00075{bottom:797.130000px;}
.ha_c00075{height:13.200074px;}
.hb_c00075{height:43.804688px;}
.h4_c00075{height:62.880000px;}
.h7_c00075{height:64.020000px;}
.h3_c00075{height:66.024000px;}
.h9_c00075{height:67.221000px;}
.h5_c00075{height:71.544000px;}
.h8_c00075{height:72.312000px;}
.h6_c00075{height:76.680000px;}
.h2_c00075{height:78.048000px;}
.h0_c00075{height:835.950000px;}
.h1_c00075{height:836.250000px;}
.w2_c00075{width:104.875500px;}
.w1_c00075{width:562.500000px;}
.w0_c00075{width:562.650000px;}
.x0_c00075{left:0.000000px;}
.x10_c00075{left:28.050000px;}
.xd_c00075{left:30.450000px;}
.xc_c00075{left:32.850000px;}
.xf_c00075{left:61.800000px;}
.x12_c00075{left:82.050000px;}
.x15_c00075{left:87.750000px;}
.x13_c00075{left:88.800000px;}
.x14_c00075{left:89.850000px;}
.x11_c00075{left:91.500000px;}
.xe_c00075{left:92.550000px;}
.xb_c00075{left:93.900000px;}
.xa_c00075{left:95.250000px;}
.x8_c00075{left:96.900000px;}
.x4_c00075{left:97.950000px;}
.x1_c00075{left:109.050000px;}
.x6_c00075{left:125.550000px;}
.x3_c00075{left:137.400000px;}
.x9_c00075{left:139.050000px;}
.x5_c00075{left:140.100000px;}
.x7_c00075{left:167.400000px;}
.x2_c00075{left:169.050000px;}
.x1f_c00075{left:233.139267px;}
.x1d_c00075{left:310.500000px;}
.x1c_c00075{left:311.550000px;}
.x1b_c00075{left:313.650000px;}
.x1a_c00075{left:314.850000px;}
.x18_c00075{left:316.200000px;}
.x17_c00075{left:317.550000px;}
.x16_c00075{left:319.350000px;}
.x19_c00075{left:335.700000px;}
.x1e_c00075{left:480.150000px;}
@media print{
.v0_c00075{vertical-align:0.000000pt;}
.v1_c00075{vertical-align:12.266667pt;}
.ls9_c00075{letter-spacing:0.000000pt;}
.ls1_c00075{letter-spacing:1.600000pt;}
.ls3_c00075{letter-spacing:2.666667pt;}
.ls8_c00075{letter-spacing:3.026667pt;}
.lsa_c00075{letter-spacing:5.333333pt;}
.ls0_c00075{letter-spacing:8.533333pt;}
.lsb_c00075{letter-spacing:10.666667pt;}
.ls7_c00075{letter-spacing:12.853333pt;}
.ls5_c00075{letter-spacing:13.866667pt;}
.ls6_c00075{letter-spacing:15.520000pt;}
.ls4_c00075{letter-spacing:18.720000pt;}
.ls2_c00075{letter-spacing:89.120000pt;}
.ws0_c00075{word-spacing:-37.504000pt;}
.ws4_c00075{word-spacing:-26.061333pt;}
.ws2_c00075{word-spacing:-16.053333pt;}
.ws3_c00075{word-spacing:-15.413333pt;}
.ws1_c00075{word-spacing:-12.586667pt;}
.ws5_c00075{word-spacing:0.000000pt;}
._1f_c00075{margin-left:-14.152000pt;}
._21_c00075{margin-left:-13.045333pt;}
._25_c00075{margin-left:-11.138667pt;}
._20_c00075{margin-left:-9.778667pt;}
._1c_c00075{margin-left:-8.066667pt;}
._14_c00075{margin-left:-6.421333pt;}
._0_c00075{margin-left:-4.778667pt;}
._27_c00075{margin-left:-3.845333pt;}
._13_c00075{margin-left:-2.933333pt;}
._b_c00075{margin-left:-1.706667pt;}
._d_c00075{width:1.226667pt;}
._e_c00075{width:2.400000pt;}
._11_c00075{width:3.893333pt;}
._10_c00075{width:4.952000pt;}
._1d_c00075{width:5.912000pt;}
._16_c00075{width:6.826667pt;}
._9_c00075{width:7.952000pt;}
._1b_c00075{width:8.936000pt;}
._12_c00075{width:9.920000pt;}
._15_c00075{width:10.981333pt;}
._4_c00075{width:12.208000pt;}
._5_c00075{width:13.608000pt;}
._6_c00075{width:14.840000pt;}
._1a_c00075{width:16.394667pt;}
._18_c00075{width:17.501333pt;}
._8_c00075{width:18.424000pt;}
._26_c00075{width:19.496000pt;}
._7_c00075{width:20.496000pt;}
._c_c00075{width:22.346667pt;}
._17_c00075{width:23.690667pt;}
._23_c00075{width:24.693333pt;}
._24_c00075{width:25.861333pt;}
._a_c00075{width:27.272000pt;}
._2_c00075{width:28.840000pt;}
._f_c00075{width:31.093333pt;}
._22_c00075{width:34.773333pt;}
._1_c00075{width:60.088000pt;}
._1e_c00075{width:111.626667pt;}
._3_c00075{width:132.104000pt;}
._19_c00075{width:269.776000pt;}
.fs6_c00075{font-size:40.000000pt;}
.fs7_c00075{font-size:42.666667pt;}
.fs4_c00075{font-size:50.666667pt;}
.fs3_c00075{font-size:53.333333pt;}
.fs2_c00075{font-size:56.000000pt;}
.fs0_c00075{font-size:58.666667pt;}
.fs5_c00075{font-size:61.333333pt;}
.fs1_c00075{font-size:64.000000pt;}
.y0_c00075{bottom:0.000000pt;}
.y54_c00075{bottom:2.760000pt;}
.y53_c00075{bottom:6.425206pt;}
.y52_c00075{bottom:33.093333pt;}
.y51_c00075{bottom:48.293333pt;}
.y27_c00075{bottom:48.560000pt;}
.y50_c00075{bottom:64.826667pt;}
.y26_c00075{bottom:65.493333pt;}
.y4f_c00075{bottom:81.626667pt;}
.y25_c00075{bottom:81.893333pt;}
.y4e_c00075{bottom:97.760000pt;}
.y24_c00075{bottom:97.893333pt;}
.y4d_c00075{bottom:113.093333pt;}
.y23_c00075{bottom:114.293333pt;}
.y4c_c00075{bottom:129.493333pt;}
.y22_c00075{bottom:130.560000pt;}
.y4b_c00075{bottom:145.493333pt;}
.y21_c00075{bottom:146.426667pt;}
.y4a_c00075{bottom:161.493333pt;}
.y20_c00075{bottom:162.693333pt;}
.y49_c00075{bottom:177.893333pt;}
.y1f_c00075{bottom:179.226667pt;}
.y48_c00075{bottom:193.760000pt;}
.y1e_c00075{bottom:195.360000pt;}
.y47_c00075{bottom:210.026667pt;}
.y1d_c00075{bottom:211.493333pt;}
.y46_c00075{bottom:226.293333pt;}
.y1c_c00075{bottom:226.560000pt;}
.y45_c00075{bottom:242.160000pt;}
.y1b_c00075{bottom:243.360000pt;}
.y44_c00075{bottom:258.026667pt;}
.y1a_c00075{bottom:259.226667pt;}
.y43_c00075{bottom:274.293333pt;}
.y19_c00075{bottom:275.360000pt;}
.y42_c00075{bottom:290.160000pt;}
.y18_c00075{bottom:291.893333pt;}
.y41_c00075{bottom:306.293333pt;}
.y17_c00075{bottom:308.160000pt;}
.y40_c00075{bottom:322.826667pt;}
.y16_c00075{bottom:324.026667pt;}
.y3f_c00075{bottom:338.426667pt;}
.y15_c00075{bottom:339.093333pt;}
.y3e_c00075{bottom:354.560000pt;}
.y14_c00075{bottom:355.760000pt;}
.y3d_c00075{bottom:370.293333pt;}
.y13_c00075{bottom:371.760000pt;}
.y3c_c00075{bottom:386.693333pt;}
.y12_c00075{bottom:387.626667pt;}
.y3b_c00075{bottom:402.293333pt;}
.y11_c00075{bottom:404.426667pt;}
.y3a_c00075{bottom:418.293333pt;}
.y10_c00075{bottom:420.293333pt;}
.y39_c00075{bottom:433.893333pt;}
.yf_c00075{bottom:436.560000pt;}
.y38_c00075{bottom:450.693333pt;}
.ye_c00075{bottom:451.760000pt;}
.y37_c00075{bottom:466.293333pt;}
.yd_c00075{bottom:467.760000pt;}
.y36_c00075{bottom:482.426667pt;}
.yc_c00075{bottom:484.160000pt;}
.y35_c00075{bottom:498.293333pt;}
.yb_c00075{bottom:499.893333pt;}
.y34_c00075{bottom:514.293333pt;}
.ya_c00075{bottom:516.293333pt;}
.y33_c00075{bottom:529.893333pt;}
.y9_c00075{bottom:531.626667pt;}
.y8_c00075{bottom:544.160000pt;}
.y32_c00075{bottom:546.293333pt;}
.y31_c00075{bottom:562.160000pt;}
.y30_c00075{bottom:578.160000pt;}
.y7_c00075{bottom:580.160000pt;}
.y2f_c00075{bottom:594.560000pt;}
.y6_c00075{bottom:596.693333pt;}
.y2e_c00075{bottom:610.160000pt;}
.y5_c00075{bottom:612.026667pt;}
.y2d_c00075{bottom:625.893333pt;}
.y4_c00075{bottom:628.293333pt;}
.y2c_c00075{bottom:642.293333pt;}
.y3_c00075{bottom:643.760000pt;}
.y2b_c00075{bottom:658.160000pt;}
.y2a_c00075{bottom:673.760000pt;}
.y2_c00075{bottom:674.426667pt;}
.y29_c00075{bottom:690.693333pt;}
.y28_c00075{bottom:706.826667pt;}
.y1_c00075{bottom:708.560000pt;}
.ha_c00075{height:11.733399pt;}
.hb_c00075{height:38.937500pt;}
.h4_c00075{height:55.893333pt;}
.h7_c00075{height:56.906667pt;}
.h3_c00075{height:58.688000pt;}
.h9_c00075{height:59.752000pt;}
.h5_c00075{height:63.594667pt;}
.h8_c00075{height:64.277333pt;}
.h6_c00075{height:68.160000pt;}
.h2_c00075{height:69.376000pt;}
.h0_c00075{height:743.066667pt;}
.h1_c00075{height:743.333333pt;}
.w2_c00075{width:93.222667pt;}
.w1_c00075{width:500.000000pt;}
.w0_c00075{width:500.133333pt;}
.x0_c00075{left:0.000000pt;}
.x10_c00075{left:24.933333pt;}
.xd_c00075{left:27.066667pt;}
.xc_c00075{left:29.200000pt;}
.xf_c00075{left:54.933333pt;}
.x12_c00075{left:72.933333pt;}
.x15_c00075{left:78.000000pt;}
.x13_c00075{left:78.933333pt;}
.x14_c00075{left:79.866667pt;}
.x11_c00075{left:81.333333pt;}
.xe_c00075{left:82.266667pt;}
.xb_c00075{left:83.466667pt;}
.xa_c00075{left:84.666667pt;}
.x8_c00075{left:86.133333pt;}
.x4_c00075{left:87.066667pt;}
.x1_c00075{left:96.933333pt;}
.x6_c00075{left:111.600000pt;}
.x3_c00075{left:122.133333pt;}
.x9_c00075{left:123.600000pt;}
.x5_c00075{left:124.533333pt;}
.x7_c00075{left:148.800000pt;}
.x2_c00075{left:150.266667pt;}
.x1f_c00075{left:207.234904pt;}
.x1d_c00075{left:276.000000pt;}
.x1c_c00075{left:276.933333pt;}
.x1b_c00075{left:278.800000pt;}
.x1a_c00075{left:279.866667pt;}
.x18_c00075{left:281.066667pt;}
.x17_c00075{left:282.266667pt;}
.x16_c00075{left:283.866667pt;}
.x19_c00075{left:298.400000pt;}
.x1e_c00075{left:426.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_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_2933d85efe90212b9ca91616.woff2')format("woff");}.ff1_c00076{font-family:ff1_c00076;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00076;src:url('chunks/assets/font_79a5cd303751d69772b008e5.woff2')format("woff");}.ff2_c00076{font-family:ff2_c00076;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00076;src:url('chunks/assets/font_d2404481f8eb45002d29232c.woff2')format("woff");}.ff3_c00076{font-family:ff3_c00076;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00076;src:url('chunks/assets/font_9418721fc2b01abfc86a04e5.woff2')format("woff");}.ff4_c00076{font-family:ff4_c00076;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00076;src:url('chunks/assets/font_5650c9fd6592144105b62e33.woff2')format("woff");}.ff5_c00076{font-family:ff5_c00076;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00076;src:url('chunks/assets/font_cadb5793662ae953951a73a8.woff2')format("woff");}.ff6_c00076{font-family:ff6_c00076;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00076;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff7_c00076{font-family:ff7_c00076;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00076{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00076{vertical-align:0.000000px;}
.ls12_c00076{letter-spacing:0.000000px;}
.lse_c00076{letter-spacing:2.640000px;}
.ls10_c00076{letter-spacing:3.000000px;}
.ls9_c00076{letter-spacing:4.440000px;}
.ls7_c00076{letter-spacing:5.400000px;}
.lsf_c00076{letter-spacing:5.640000px;}
.ls13_c00076{letter-spacing:6.000000px;}
.ls11_c00076{letter-spacing:12.000000px;}
.lsd_c00076{letter-spacing:14.460000px;}
.ls6_c00076{letter-spacing:15.240000px;}
.ls1_c00076{letter-spacing:21.660000px;}
.ls8_c00076{letter-spacing:30.060000px;}
.ls0_c00076{letter-spacing:38.481000px;}
.lsc_c00076{letter-spacing:47.460000px;}
.ls2_c00076{letter-spacing:112.860000px;}
.ls5_c00076{letter-spacing:122.760000px;}
.lsb_c00076{letter-spacing:124.260000px;}
.lsa_c00076{letter-spacing:128.460000px;}
.ls3_c00076{letter-spacing:156.987000px;}
.ls4_c00076{letter-spacing:283.860000px;}
.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:-38.961000px;}
.ws3_c00076{word-spacing:-31.746000px;}
.ws2_c00076{word-spacing:-18.060000px;}
.ws1_c00076{word-spacing:-14.160000px;}
.ws4_c00076{word-spacing:0.000000px;}
._2a_c00076{margin-left:-19.320000px;}
._1e_c00076{margin-left:-17.298000px;}
._16_c00076{margin-left:-13.545000px;}
._33_c00076{margin-left:-10.506000px;}
._38_c00076{margin-left:-8.376000px;}
._17_c00076{margin-left:-7.245000px;}
._1b_c00076{margin-left:-5.400000px;}
._4_c00076{margin-left:-3.564000px;}
._0_c00076{margin-left:-2.346000px;}
._a_c00076{margin-left:-1.014000px;}
._2_c00076{width:1.794000px;}
._9_c00076{width:3.318000px;}
._e_c00076{width:4.500000px;}
._7_c00076{width:6.186000px;}
._8_c00076{width:8.100000px;}
._15_c00076{width:9.630000px;}
._6_c00076{width:11.160000px;}
._5_c00076{width:12.240000px;}
._22_c00076{width:14.286000px;}
._11_c00076{width:16.140000px;}
._2c_c00076{width:18.384000px;}
._19_c00076{width:19.800000px;}
._21_c00076{width:21.156000px;}
._12_c00076{width:22.248000px;}
._10_c00076{width:23.442000px;}
._1a_c00076{width:25.026000px;}
._1d_c00076{width:27.060000px;}
._c_c00076{width:28.065000px;}
._30_c00076{width:29.952000px;}
._d_c00076{width:32.430000px;}
._1f_c00076{width:34.692000px;}
._1_c00076{width:36.432000px;}
._32_c00076{width:42.414000px;}
._3b_c00076{width:49.146000px;}
._27_c00076{width:50.328000px;}
._20_c00076{width:51.636000px;}
._34_c00076{width:57.480000px;}
._28_c00076{width:66.876000px;}
._2d_c00076{width:73.416000px;}
._2f_c00076{width:76.590000px;}
._25_c00076{width:93.267000px;}
._b_c00076{width:95.904000px;}
._f_c00076{width:102.876000px;}
._13_c00076{width:109.020000px;}
._23_c00076{width:111.000000px;}
._35_c00076{width:112.980000px;}
._24_c00076{width:114.360000px;}
._2b_c00076{width:115.524000px;}
._39_c00076{width:116.778000px;}
._37_c00076{width:118.476000px;}
._29_c00076{width:121.164000px;}
._2e_c00076{width:122.286000px;}
._31_c00076{width:124.338000px;}
._26_c00076{width:126.468000px;}
._36_c00076{width:128.412000px;}
._3a_c00076{width:134.292000px;}
._14_c00076{width:220.698000px;}
._1c_c00076{width:223.146000px;}
._18_c00076{width:393.450000px;}
._3_c00076{width:455.898000px;}
.fc2_c00076{color:transparent;}
.fc1_c00076{color:rgb(128,128,128);}
.fc0_c00076{color:rgb(0,0,0);}
.fs6_c00076{font-size:45.000000px;}
.fs7_c00076{font-size:48.000000px;}
.fs2_c00076{font-size:60.000000px;}
.fs4_c00076{font-size:63.000000px;}
.fs5_c00076{font-size:66.000000px;}
.fs0_c00076{font-size:69.000000px;}
.fs1_c00076{font-size:81.000000px;}
.fs3_c00076{font-size:105.000000px;}
.y0_c00076{bottom:0.000000px;}
.y2c_c00076{bottom:3.105000px;}
.y2b_c00076{bottom:7.228357px;}
.y2a_c00076{bottom:67.530000px;}
.y29_c00076{bottom:85.830000px;}
.y28_c00076{bottom:104.280000px;}
.y27_c00076{bottom:122.280000px;}
.y26_c00076{bottom:140.130000px;}
.y25_c00076{bottom:158.730000px;}
.y24_c00076{bottom:176.580000px;}
.y23_c00076{bottom:195.030000px;}
.y22_c00076{bottom:212.730000px;}
.y21_c00076{bottom:230.130000px;}
.y20_c00076{bottom:248.130000px;}
.y1f_c00076{bottom:267.030000px;}
.y1e_c00076{bottom:285.480000px;}
.y1d_c00076{bottom:303.180000px;}
.y1c_c00076{bottom:321.030000px;}
.y1b_c00076{bottom:338.280000px;}
.y1a_c00076{bottom:355.830000px;}
.y19_c00076{bottom:375.030000px;}
.y18_c00076{bottom:392.880000px;}
.y17_c00076{bottom:410.430000px;}
.y16_c00076{bottom:428.280000px;}
.y15_c00076{bottom:446.280000px;}
.y14_c00076{bottom:464.730000px;}
.y13_c00076{bottom:482.280000px;}
.y12_c00076{bottom:499.530000px;}
.y11_c00076{bottom:517.830000px;}
.y10_c00076{bottom:535.980000px;}
.yf_c00076{bottom:554.280000px;}
.ye_c00076{bottom:572.430000px;}
.yd_c00076{bottom:591.330000px;}
.yc_c00076{bottom:608.880000px;}
.yb_c00076{bottom:626.130000px;}
.ya_c00076{bottom:644.580000px;}
.y9_c00076{bottom:662.280000px;}
.y8_c00076{bottom:681.480000px;}
.y7_c00076{bottom:698.580000px;}
.y6_c00076{bottom:717.180000px;}
.y5_c00076{bottom:734.730000px;}
.y4_c00076{bottom:751.980000px;}
.y3_c00076{bottom:769.830000px;}
.y2_c00076{bottom:788.730000px;}
.y1_c00076{bottom:807.930000px;}
.h8_c00076{height:13.200074px;}
.h9_c00076{height:43.804688px;}
.h3_c00076{height:62.880000px;}
.h6_c00076{height:64.020000px;}
.h5_c00076{height:66.024000px;}
.h7_c00076{height:71.544000px;}
.h2_c00076{height:87.804000px;}
.h4_c00076{height:110.040000px;}
.h1_c00076{height:845.250000px;}
.h0_c00076{height:845.400000px;}
.w2_c00076{width:104.875500px;}
.w0_c00076{width:575.925000px;}
.w1_c00076{width:576.000000px;}
.x0_c00076{left:0.000000px;}
.xe_c00076{left:17.550000px;}
.xd_c00076{left:18.900000px;}
.x11_c00076{left:74.250000px;}
.x10_c00076{left:75.900000px;}
.xf_c00076{left:76.950000px;}
.x3_c00076{left:78.300000px;}
.x2_c00076{left:80.400000px;}
.xb_c00076{left:82.050000px;}
.x8_c00076{left:87.750000px;}
.x7_c00076{left:114.750000px;}
.x9_c00076{left:120.750000px;}
.xc_c00076{left:125.850000px;}
.xa_c00076{left:153.600000px;}
.x5_c00076{left:178.950000px;}
.x1_c00076{left:231.450000px;}
.x13_c00076{left:239.776749px;}
.x6_c00076{left:302.700000px;}
.x4_c00076{left:304.050000px;}
.x12_c00076{left:406.350000px;}
@media print{
.v0_c00076{vertical-align:0.000000pt;}
.ls12_c00076{letter-spacing:0.000000pt;}
.lse_c00076{letter-spacing:2.346667pt;}
.ls10_c00076{letter-spacing:2.666667pt;}
.ls9_c00076{letter-spacing:3.946667pt;}
.ls7_c00076{letter-spacing:4.800000pt;}
.lsf_c00076{letter-spacing:5.013333pt;}
.ls13_c00076{letter-spacing:5.333333pt;}
.ls11_c00076{letter-spacing:10.666667pt;}
.lsd_c00076{letter-spacing:12.853333pt;}
.ls6_c00076{letter-spacing:13.546667pt;}
.ls1_c00076{letter-spacing:19.253333pt;}
.ls8_c00076{letter-spacing:26.720000pt;}
.ls0_c00076{letter-spacing:34.205333pt;}
.lsc_c00076{letter-spacing:42.186667pt;}
.ls2_c00076{letter-spacing:100.320000pt;}
.ls5_c00076{letter-spacing:109.120000pt;}
.lsb_c00076{letter-spacing:110.453333pt;}
.lsa_c00076{letter-spacing:114.186667pt;}
.ls3_c00076{letter-spacing:139.544000pt;}
.ls4_c00076{letter-spacing:252.320000pt;}
.ws0_c00076{word-spacing:-34.632000pt;}
.ws3_c00076{word-spacing:-28.218667pt;}
.ws2_c00076{word-spacing:-16.053333pt;}
.ws1_c00076{word-spacing:-12.586667pt;}
.ws4_c00076{word-spacing:0.000000pt;}
._2a_c00076{margin-left:-17.173333pt;}
._1e_c00076{margin-left:-15.376000pt;}
._16_c00076{margin-left:-12.040000pt;}
._33_c00076{margin-left:-9.338667pt;}
._38_c00076{margin-left:-7.445333pt;}
._17_c00076{margin-left:-6.440000pt;}
._1b_c00076{margin-left:-4.800000pt;}
._4_c00076{margin-left:-3.168000pt;}
._0_c00076{margin-left:-2.085333pt;}
._a_c00076{margin-left:-0.901333pt;}
._2_c00076{width:1.594667pt;}
._9_c00076{width:2.949333pt;}
._e_c00076{width:4.000000pt;}
._7_c00076{width:5.498667pt;}
._8_c00076{width:7.200000pt;}
._15_c00076{width:8.560000pt;}
._6_c00076{width:9.920000pt;}
._5_c00076{width:10.880000pt;}
._22_c00076{width:12.698667pt;}
._11_c00076{width:14.346667pt;}
._2c_c00076{width:16.341333pt;}
._19_c00076{width:17.600000pt;}
._21_c00076{width:18.805333pt;}
._12_c00076{width:19.776000pt;}
._10_c00076{width:20.837333pt;}
._1a_c00076{width:22.245333pt;}
._1d_c00076{width:24.053333pt;}
._c_c00076{width:24.946667pt;}
._30_c00076{width:26.624000pt;}
._d_c00076{width:28.826667pt;}
._1f_c00076{width:30.837333pt;}
._1_c00076{width:32.384000pt;}
._32_c00076{width:37.701333pt;}
._3b_c00076{width:43.685333pt;}
._27_c00076{width:44.736000pt;}
._20_c00076{width:45.898667pt;}
._34_c00076{width:51.093333pt;}
._28_c00076{width:59.445333pt;}
._2d_c00076{width:65.258667pt;}
._2f_c00076{width:68.080000pt;}
._25_c00076{width:82.904000pt;}
._b_c00076{width:85.248000pt;}
._f_c00076{width:91.445333pt;}
._13_c00076{width:96.906667pt;}
._23_c00076{width:98.666667pt;}
._35_c00076{width:100.426667pt;}
._24_c00076{width:101.653333pt;}
._2b_c00076{width:102.688000pt;}
._39_c00076{width:103.802667pt;}
._37_c00076{width:105.312000pt;}
._29_c00076{width:107.701333pt;}
._2e_c00076{width:108.698667pt;}
._31_c00076{width:110.522667pt;}
._26_c00076{width:112.416000pt;}
._36_c00076{width:114.144000pt;}
._3a_c00076{width:119.370667pt;}
._14_c00076{width:196.176000pt;}
._1c_c00076{width:198.352000pt;}
._18_c00076{width:349.733333pt;}
._3_c00076{width:405.242667pt;}
.fs6_c00076{font-size:40.000000pt;}
.fs7_c00076{font-size:42.666667pt;}
.fs2_c00076{font-size:53.333333pt;}
.fs4_c00076{font-size:56.000000pt;}
.fs5_c00076{font-size:58.666667pt;}
.fs0_c00076{font-size:61.333333pt;}
.fs1_c00076{font-size:72.000000pt;}
.fs3_c00076{font-size:93.333333pt;}
.y0_c00076{bottom:0.000000pt;}
.y2c_c00076{bottom:2.760000pt;}
.y2b_c00076{bottom:6.425206pt;}
.y2a_c00076{bottom:60.026667pt;}
.y29_c00076{bottom:76.293333pt;}
.y28_c00076{bottom:92.693333pt;}
.y27_c00076{bottom:108.693333pt;}
.y26_c00076{bottom:124.560000pt;}
.y25_c00076{bottom:141.093333pt;}
.y24_c00076{bottom:156.960000pt;}
.y23_c00076{bottom:173.360000pt;}
.y22_c00076{bottom:189.093333pt;}
.y21_c00076{bottom:204.560000pt;}
.y20_c00076{bottom:220.560000pt;}
.y1f_c00076{bottom:237.360000pt;}
.y1e_c00076{bottom:253.760000pt;}
.y1d_c00076{bottom:269.493333pt;}
.y1c_c00076{bottom:285.360000pt;}
.y1b_c00076{bottom:300.693333pt;}
.y1a_c00076{bottom:316.293333pt;}
.y19_c00076{bottom:333.360000pt;}
.y18_c00076{bottom:349.226667pt;}
.y17_c00076{bottom:364.826667pt;}
.y16_c00076{bottom:380.693333pt;}
.y15_c00076{bottom:396.693333pt;}
.y14_c00076{bottom:413.093333pt;}
.y13_c00076{bottom:428.693333pt;}
.y12_c00076{bottom:444.026667pt;}
.y11_c00076{bottom:460.293333pt;}
.y10_c00076{bottom:476.426667pt;}
.yf_c00076{bottom:492.693333pt;}
.ye_c00076{bottom:508.826667pt;}
.yd_c00076{bottom:525.626667pt;}
.yc_c00076{bottom:541.226667pt;}
.yb_c00076{bottom:556.560000pt;}
.ya_c00076{bottom:572.960000pt;}
.y9_c00076{bottom:588.693333pt;}
.y8_c00076{bottom:605.760000pt;}
.y7_c00076{bottom:620.960000pt;}
.y6_c00076{bottom:637.493333pt;}
.y5_c00076{bottom:653.093333pt;}
.y4_c00076{bottom:668.426667pt;}
.y3_c00076{bottom:684.293333pt;}
.y2_c00076{bottom:701.093333pt;}
.y1_c00076{bottom:718.160000pt;}
.h8_c00076{height:11.733399pt;}
.h9_c00076{height:38.937500pt;}
.h3_c00076{height:55.893333pt;}
.h6_c00076{height:56.906667pt;}
.h5_c00076{height:58.688000pt;}
.h7_c00076{height:63.594667pt;}
.h2_c00076{height:78.048000pt;}
.h4_c00076{height:97.813333pt;}
.h1_c00076{height:751.333333pt;}
.h0_c00076{height:751.466667pt;}
.w2_c00076{width:93.222667pt;}
.w0_c00076{width:511.933333pt;}
.w1_c00076{width:512.000000pt;}
.x0_c00076{left:0.000000pt;}
.xe_c00076{left:15.600000pt;}
.xd_c00076{left:16.800000pt;}
.x11_c00076{left:66.000000pt;}
.x10_c00076{left:67.466667pt;}
.xf_c00076{left:68.400000pt;}
.x3_c00076{left:69.600000pt;}
.x2_c00076{left:71.466667pt;}
.xb_c00076{left:72.933333pt;}
.x8_c00076{left:78.000000pt;}
.x7_c00076{left:102.000000pt;}
.x9_c00076{left:107.333333pt;}
.xc_c00076{left:111.866667pt;}
.xa_c00076{left:136.533333pt;}
.x5_c00076{left:159.066667pt;}
.x1_c00076{left:205.733333pt;}
.x13_c00076{left:213.134888pt;}
.x6_c00076{left:269.066667pt;}
.x4_c00076{left:270.266667pt;}
.x12_c00076{left:361.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_fea183bf9245921a5bae537b.woff2')format("woff");}.ff1_c00077{font-family:ff1_c00077;line-height:1.437000;font-style:normal;font-weight:normal;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_34a6e5712667f4cb1744ff76.woff2')format("woff");}.ff2_c00077{font-family:ff2_c00077;line-height:1.437000;font-style:normal;font-weight:normal;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_e5a258776cef0c434c488dcd.woff2')format("woff");}.ff3_c00077{font-family:ff3_c00077;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00077;src:url('chunks/assets/font_05c2ea07e576447cf250ae2c.woff2')format("woff");}.ff4_c00077{font-family:ff4_c00077;line-height:1.437000;font-style:normal;font-weight:normal;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_29041b881e0ac99fe095c39c.woff2')format("woff");}.ff5_c00077{font-family:ff5_c00077;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00077;src:url('chunks/assets/font_9676793ba9e8d58df292af09.woff2')format("woff");}.ff6_c00077{font-family:ff6_c00077;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00077;src:url('chunks/assets/font_3981cc01421919c929a42b57.woff2')format("woff");}.ff7_c00077{font-family:ff7_c00077;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00077;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff8_c00077{font-family:ff8_c00077;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00077{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00077{vertical-align:0.000000px;}
.lsd_c00077{letter-spacing:0.000000px;}
.ls7_c00077{letter-spacing:1.200000px;}
.ls5_c00077{letter-spacing:3.000000px;}
.ls3_c00077{letter-spacing:5.400000px;}
.lse_c00077{letter-spacing:6.000000px;}
.ls0_c00077{letter-spacing:10.200000px;}
.lsa_c00077{letter-spacing:10.800000px;}
.lsf_c00077{letter-spacing:12.000000px;}
.ls1_c00077{letter-spacing:13.260000px;}
.ls9_c00077{letter-spacing:14.340000px;}
.lsc_c00077{letter-spacing:16.260000px;}
.ls6_c00077{letter-spacing:21.600000px;}
.ls2_c00077{letter-spacing:32.280000px;}
.ls8_c00077{letter-spacing:35.460000px;}
.lsb_c00077{letter-spacing:40.860000px;}
.ls4_c00077{letter-spacing:79.260000px;}
.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;}
}
.ws4_c00077{word-spacing:-35.295000px;}
.ws3_c00077{word-spacing:-31.746000px;}
.ws1_c00077{word-spacing:-18.060000px;}
.ws0_c00077{word-spacing:-17.340000px;}
.ws2_c00077{word-spacing:-14.160000px;}
.ws5_c00077{word-spacing:0.000000px;}
._1a_c00077{margin-left:-33.294000px;}
._32_c00077{margin-left:-19.860000px;}
._1f_c00077{margin-left:-18.300000px;}
._31_c00077{margin-left:-17.100000px;}
._19_c00077{margin-left:-15.438000px;}
._18_c00077{margin-left:-13.671000px;}
._30_c00077{margin-left:-12.420000px;}
._10_c00077{margin-left:-11.100000px;}
._1b_c00077{margin-left:-10.026000px;}
._23_c00077{margin-left:-8.847000px;}
._1c_c00077{margin-left:-6.900000px;}
._29_c00077{margin-left:-5.853000px;}
._1d_c00077{margin-left:-4.380000px;}
._11_c00077{margin-left:-3.180000px;}
._8_c00077{margin-left:-1.620000px;}
._a_c00077{width:1.020000px;}
._7_c00077{width:2.040000px;}
._6_c00077{width:3.240000px;}
._c_c00077{width:4.380000px;}
._28_c00077{width:5.460000px;}
._b_c00077{width:6.480000px;}
._1_c00077{width:7.800000px;}
._1e_c00077{width:9.060000px;}
._0_c00077{width:10.500000px;}
._2_c00077{width:11.940000px;}
._24_c00077{width:13.140000px;}
._5_c00077{width:14.160000px;}
._4_c00077{width:15.360000px;}
._3_c00077{width:16.800000px;}
._2c_c00077{width:18.300000px;}
._22_c00077{width:19.380000px;}
._21_c00077{width:21.060000px;}
._9_c00077{width:22.440000px;}
._17_c00077{width:24.480000px;}
._16_c00077{width:26.100000px;}
._15_c00077{width:27.540000px;}
._12_c00077{width:29.460000px;}
._13_c00077{width:32.640000px;}
._d_c00077{width:34.440000px;}
._2f_c00077{width:37.200000px;}
._2e_c00077{width:38.220000px;}
._2a_c00077{width:39.840000px;}
._f_c00077{width:41.580000px;}
._33_c00077{width:44.100000px;}
._14_c00077{width:45.960000px;}
._e_c00077{width:49.440000px;}
._2b_c00077{width:53.427000px;}
._27_c00077{width:58.980000px;}
._26_c00077{width:65.580000px;}
._20_c00077{width:93.660000px;}
._25_c00077{width:117.240000px;}
._2d_c00077{width:181.800000px;}
.fc2_c00077{color:transparent;}
.fc1_c00077{color:rgb(128,128,128);}
.fc0_c00077{color:rgb(0,0,0);}
.fs4_c00077{font-size:45.000000px;}
.fs5_c00077{font-size:48.000000px;}
.fs2_c00077{font-size:51.000000px;}
.fs0_c00077{font-size:60.000000px;}
.fs3_c00077{font-size:66.000000px;}
.fs1_c00077{font-size:93.000000px;}
.y0_c00077{bottom:0.000000px;}
.y53_c00077{bottom:3.105000px;}
.y52_c00077{bottom:7.228355px;}
.y51_c00077{bottom:47.235000px;}
.y2a_c00077{bottom:66.135000px;}
.y50_c00077{bottom:67.185000px;}
.y29_c00077{bottom:85.035000px;}
.y4f_c00077{bottom:85.335000px;}
.y28_c00077{bottom:103.185000px;}
.y4e_c00077{bottom:103.635000px;}
.y27_c00077{bottom:121.185000px;}
.y4d_c00077{bottom:121.485000px;}
.y26_c00077{bottom:139.335000px;}
.y4c_c00077{bottom:140.085000px;}
.y4b_c00077{bottom:157.935000px;}
.y25_c00077{bottom:158.235000px;}
.y24_c00077{bottom:175.785000px;}
.y4a_c00077{bottom:176.085000px;}
.y23_c00077{bottom:194.085000px;}
.y49_c00077{bottom:194.385000px;}
.y22_c00077{bottom:212.535000px;}
.y21_c00077{bottom:230.835000px;}
.y48_c00077{bottom:231.135000px;}
.y47_c00077{bottom:248.085000px;}
.y20_c00077{bottom:249.285000px;}
.y46_c00077{bottom:266.235000px;}
.y1f_c00077{bottom:266.835000px;}
.y45_c00077{bottom:284.085000px;}
.y1e_c00077{bottom:284.535000px;}
.y44_c00077{bottom:301.935000px;}
.y1d_c00077{bottom:302.385000px;}
.y43_c00077{bottom:319.485000px;}
.y1c_c00077{bottom:319.935000px;}
.y42_c00077{bottom:337.485000px;}
.y1b_c00077{bottom:338.085000px;}
.y41_c00077{bottom:355.635000px;}
.y1a_c00077{bottom:356.385000px;}
.y40_c00077{bottom:373.635000px;}
.y19_c00077{bottom:373.935000px;}
.y3f_c00077{bottom:392.085000px;}
.y18_c00077{bottom:392.385000px;}
.y17_c00077{bottom:410.085000px;}
.y3e_c00077{bottom:410.385000px;}
.y16_c00077{bottom:428.535000px;}
.y15_c00077{bottom:446.535000px;}
.y14_c00077{bottom:464.385000px;}
.y3d_c00077{bottom:464.685000px;}
.y3c_c00077{bottom:481.635000px;}
.y13_c00077{bottom:482.535000px;}
.y3b_c00077{bottom:499.785000px;}
.y12_c00077{bottom:500.385000px;}
.y3a_c00077{bottom:517.635000px;}
.y11_c00077{bottom:518.385000px;}
.y39_c00077{bottom:535.485000px;}
.y10_c00077{bottom:535.935000px;}
.y38_c00077{bottom:553.185000px;}
.yf_c00077{bottom:554.535000px;}
.y37_c00077{bottom:571.335000px;}
.ye_c00077{bottom:572.085000px;}
.y36_c00077{bottom:589.635000px;}
.yd_c00077{bottom:591.285000px;}
.yc_c00077{bottom:607.785000px;}
.y35_c00077{bottom:608.085000px;}
.yb_c00077{bottom:625.635000px;}
.y34_c00077{bottom:625.935000px;}
.ya_c00077{bottom:643.185000px;}
.y33_c00077{bottom:643.485000px;}
.y9_c00077{bottom:661.785000px;}
.y32_c00077{bottom:662.085000px;}
.y8_c00077{bottom:679.635000px;}
.y31_c00077{bottom:697.635000px;}
.y7_c00077{bottom:697.935000px;}
.y30_c00077{bottom:715.785000px;}
.y6_c00077{bottom:716.385000px;}
.y2f_c00077{bottom:733.635000px;}
.y5_c00077{bottom:734.385000px;}
.y2e_c00077{bottom:752.235000px;}
.y4_c00077{bottom:752.985000px;}
.y2d_c00077{bottom:770.385000px;}
.y3_c00077{bottom:770.535000px;}
.y2c_c00077{bottom:787.935000px;}
.y2_c00077{bottom:788.685000px;}
.y1_c00077{bottom:807.585000px;}
.y2b_c00077{bottom:808.935000px;}
.h7_c00077{height:13.200074px;}
.h8_c00077{height:43.804688px;}
.h4_c00077{height:53.448000px;}
.h2_c00077{height:62.880000px;}
.h6_c00077{height:64.020000px;}
.h5_c00077{height:70.422000px;}
.h3_c00077{height:91.274414px;}
.h1_c00077{height:841.500000px;}
.h0_c00077{height:841.575000px;}
.w2_c00077{width:104.875500px;}
.w1_c00077{width:566.250000px;}
.w0_c00077{width:566.475000px;}
.x0_c00077{left:0.000000px;}
.x7_c00077{left:14.850000px;}
.x2_c00077{left:73.650000px;}
.x4_c00077{left:75.150000px;}
.x3_c00077{left:76.950000px;}
.x6_c00077{left:78.600000px;}
.x8_c00077{left:79.950000px;}
.xa_c00077{left:81.000000px;}
.x9_c00077{left:82.050000px;}
.x5_c00077{left:97.200000px;}
.x1_c00077{left:184.350000px;}
.x10_c00077{left:235.051758px;}
.xb_c00077{left:294.300000px;}
.xe_c00077{left:298.650000px;}
.xd_c00077{left:300.000000px;}
.xc_c00077{left:301.350000px;}
.xf_c00077{left:465.300000px;}
@media print{
.v0_c00077{vertical-align:0.000000pt;}
.lsd_c00077{letter-spacing:0.000000pt;}
.ls7_c00077{letter-spacing:1.066667pt;}
.ls5_c00077{letter-spacing:2.666667pt;}
.ls3_c00077{letter-spacing:4.800000pt;}
.lse_c00077{letter-spacing:5.333333pt;}
.ls0_c00077{letter-spacing:9.066667pt;}
.lsa_c00077{letter-spacing:9.600000pt;}
.lsf_c00077{letter-spacing:10.666667pt;}
.ls1_c00077{letter-spacing:11.786667pt;}
.ls9_c00077{letter-spacing:12.746667pt;}
.lsc_c00077{letter-spacing:14.453333pt;}
.ls6_c00077{letter-spacing:19.200000pt;}
.ls2_c00077{letter-spacing:28.693333pt;}
.ls8_c00077{letter-spacing:31.520000pt;}
.lsb_c00077{letter-spacing:36.320000pt;}
.ls4_c00077{letter-spacing:70.453333pt;}
.ws4_c00077{word-spacing:-31.373333pt;}
.ws3_c00077{word-spacing:-28.218667pt;}
.ws1_c00077{word-spacing:-16.053333pt;}
.ws0_c00077{word-spacing:-15.413333pt;}
.ws2_c00077{word-spacing:-12.586667pt;}
.ws5_c00077{word-spacing:0.000000pt;}
._1a_c00077{margin-left:-29.594667pt;}
._32_c00077{margin-left:-17.653333pt;}
._1f_c00077{margin-left:-16.266667pt;}
._31_c00077{margin-left:-15.200000pt;}
._19_c00077{margin-left:-13.722667pt;}
._18_c00077{margin-left:-12.152000pt;}
._30_c00077{margin-left:-11.040000pt;}
._10_c00077{margin-left:-9.866667pt;}
._1b_c00077{margin-left:-8.912000pt;}
._23_c00077{margin-left:-7.864000pt;}
._1c_c00077{margin-left:-6.133333pt;}
._29_c00077{margin-left:-5.202667pt;}
._1d_c00077{margin-left:-3.893333pt;}
._11_c00077{margin-left:-2.826667pt;}
._8_c00077{margin-left:-1.440000pt;}
._a_c00077{width:0.906667pt;}
._7_c00077{width:1.813333pt;}
._6_c00077{width:2.880000pt;}
._c_c00077{width:3.893333pt;}
._28_c00077{width:4.853333pt;}
._b_c00077{width:5.760000pt;}
._1_c00077{width:6.933333pt;}
._1e_c00077{width:8.053333pt;}
._0_c00077{width:9.333333pt;}
._2_c00077{width:10.613333pt;}
._24_c00077{width:11.680000pt;}
._5_c00077{width:12.586667pt;}
._4_c00077{width:13.653333pt;}
._3_c00077{width:14.933333pt;}
._2c_c00077{width:16.266667pt;}
._22_c00077{width:17.226667pt;}
._21_c00077{width:18.720000pt;}
._9_c00077{width:19.946667pt;}
._17_c00077{width:21.760000pt;}
._16_c00077{width:23.200000pt;}
._15_c00077{width:24.480000pt;}
._12_c00077{width:26.186667pt;}
._13_c00077{width:29.013333pt;}
._d_c00077{width:30.613333pt;}
._2f_c00077{width:33.066667pt;}
._2e_c00077{width:33.973333pt;}
._2a_c00077{width:35.413333pt;}
._f_c00077{width:36.960000pt;}
._33_c00077{width:39.200000pt;}
._14_c00077{width:40.853333pt;}
._e_c00077{width:43.946667pt;}
._2b_c00077{width:47.490667pt;}
._27_c00077{width:52.426667pt;}
._26_c00077{width:58.293333pt;}
._20_c00077{width:83.253333pt;}
._25_c00077{width:104.213333pt;}
._2d_c00077{width:161.600000pt;}
.fs4_c00077{font-size:40.000000pt;}
.fs5_c00077{font-size:42.666667pt;}
.fs2_c00077{font-size:45.333333pt;}
.fs0_c00077{font-size:53.333333pt;}
.fs3_c00077{font-size:58.666667pt;}
.fs1_c00077{font-size:82.666667pt;}
.y0_c00077{bottom:0.000000pt;}
.y53_c00077{bottom:2.760000pt;}
.y52_c00077{bottom:6.425204pt;}
.y51_c00077{bottom:41.986667pt;}
.y2a_c00077{bottom:58.786667pt;}
.y50_c00077{bottom:59.720000pt;}
.y29_c00077{bottom:75.586667pt;}
.y4f_c00077{bottom:75.853333pt;}
.y28_c00077{bottom:91.720000pt;}
.y4e_c00077{bottom:92.120000pt;}
.y27_c00077{bottom:107.720000pt;}
.y4d_c00077{bottom:107.986667pt;}
.y26_c00077{bottom:123.853333pt;}
.y4c_c00077{bottom:124.520000pt;}
.y4b_c00077{bottom:140.386667pt;}
.y25_c00077{bottom:140.653333pt;}
.y24_c00077{bottom:156.253333pt;}
.y4a_c00077{bottom:156.520000pt;}
.y23_c00077{bottom:172.520000pt;}
.y49_c00077{bottom:172.786667pt;}
.y22_c00077{bottom:188.920000pt;}
.y21_c00077{bottom:205.186667pt;}
.y48_c00077{bottom:205.453333pt;}
.y47_c00077{bottom:220.520000pt;}
.y20_c00077{bottom:221.586667pt;}
.y46_c00077{bottom:236.653333pt;}
.y1f_c00077{bottom:237.186667pt;}
.y45_c00077{bottom:252.520000pt;}
.y1e_c00077{bottom:252.920000pt;}
.y44_c00077{bottom:268.386667pt;}
.y1d_c00077{bottom:268.786667pt;}
.y43_c00077{bottom:283.986667pt;}
.y1c_c00077{bottom:284.386667pt;}
.y42_c00077{bottom:299.986667pt;}
.y1b_c00077{bottom:300.520000pt;}
.y41_c00077{bottom:316.120000pt;}
.y1a_c00077{bottom:316.786667pt;}
.y40_c00077{bottom:332.120000pt;}
.y19_c00077{bottom:332.386667pt;}
.y3f_c00077{bottom:348.520000pt;}
.y18_c00077{bottom:348.786667pt;}
.y17_c00077{bottom:364.520000pt;}
.y3e_c00077{bottom:364.786667pt;}
.y16_c00077{bottom:380.920000pt;}
.y15_c00077{bottom:396.920000pt;}
.y14_c00077{bottom:412.786667pt;}
.y3d_c00077{bottom:413.053333pt;}
.y3c_c00077{bottom:428.120000pt;}
.y13_c00077{bottom:428.920000pt;}
.y3b_c00077{bottom:444.253333pt;}
.y12_c00077{bottom:444.786667pt;}
.y3a_c00077{bottom:460.120000pt;}
.y11_c00077{bottom:460.786667pt;}
.y39_c00077{bottom:475.986667pt;}
.y10_c00077{bottom:476.386667pt;}
.y38_c00077{bottom:491.720000pt;}
.yf_c00077{bottom:492.920000pt;}
.y37_c00077{bottom:507.853333pt;}
.ye_c00077{bottom:508.520000pt;}
.y36_c00077{bottom:524.120000pt;}
.yd_c00077{bottom:525.586667pt;}
.yc_c00077{bottom:540.253333pt;}
.y35_c00077{bottom:540.520000pt;}
.yb_c00077{bottom:556.120000pt;}
.y34_c00077{bottom:556.386667pt;}
.ya_c00077{bottom:571.720000pt;}
.y33_c00077{bottom:571.986667pt;}
.y9_c00077{bottom:588.253333pt;}
.y32_c00077{bottom:588.520000pt;}
.y8_c00077{bottom:604.120000pt;}
.y31_c00077{bottom:620.120000pt;}
.y7_c00077{bottom:620.386667pt;}
.y30_c00077{bottom:636.253333pt;}
.y6_c00077{bottom:636.786667pt;}
.y2f_c00077{bottom:652.120000pt;}
.y5_c00077{bottom:652.786667pt;}
.y2e_c00077{bottom:668.653333pt;}
.y4_c00077{bottom:669.320000pt;}
.y2d_c00077{bottom:684.786667pt;}
.y3_c00077{bottom:684.920000pt;}
.y2c_c00077{bottom:700.386667pt;}
.y2_c00077{bottom:701.053333pt;}
.y1_c00077{bottom:717.853333pt;}
.y2b_c00077{bottom:719.053333pt;}
.h7_c00077{height:11.733399pt;}
.h8_c00077{height:38.937500pt;}
.h4_c00077{height:47.509333pt;}
.h2_c00077{height:55.893333pt;}
.h6_c00077{height:56.906667pt;}
.h5_c00077{height:62.597333pt;}
.h3_c00077{height:81.132812pt;}
.h1_c00077{height:748.000000pt;}
.h0_c00077{height:748.066667pt;}
.w2_c00077{width:93.222667pt;}
.w1_c00077{width:503.333333pt;}
.w0_c00077{width:503.533333pt;}
.x0_c00077{left:0.000000pt;}
.x7_c00077{left:13.200000pt;}
.x2_c00077{left:65.466667pt;}
.x4_c00077{left:66.800000pt;}
.x3_c00077{left:68.400000pt;}
.x6_c00077{left:69.866667pt;}
.x8_c00077{left:71.066667pt;}
.xa_c00077{left:72.000000pt;}
.x9_c00077{left:72.933333pt;}
.x5_c00077{left:86.400000pt;}
.x1_c00077{left:163.866667pt;}
.x10_c00077{left:208.934896pt;}
.xb_c00077{left:261.600000pt;}
.xe_c00077{left:265.466667pt;}
.xd_c00077{left:266.666667pt;}
.xc_c00077{left:267.866667pt;}
.xf_c00077{left:413.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_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_cd7c33eb850881df6a6cfdc4.woff2')format("woff");}.ff1_c00078{font-family:ff1_c00078;line-height:1.437000;font-style:normal;font-weight:normal;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_77cff9ef3fe5d31bba23da92.woff2')format("woff");}.ff2_c00078{font-family:ff2_c00078;line-height:1.437000;font-style:normal;font-weight:normal;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_0ce391de997f24f9f9dd37f4.woff2')format("woff");}.ff3_c00078{font-family:ff3_c00078;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00078;src:url('chunks/assets/font_2bdde9c07cb47ebd9ee3c1f3.woff2')format("woff");}.ff4_c00078{font-family:ff4_c00078;line-height:1.575000;font-style:normal;font-weight:normal;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_d0cbdd8f3050df3f3ab52b7a.woff2')format("woff");}.ff5_c00078{font-family:ff5_c00078;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00078;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff6_c00078{font-family:ff6_c00078;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00078{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00078{vertical-align:-72.000000px;}
.v0_c00078{vertical-align:0.000000px;}
.ls5_c00078{letter-spacing:0.000000px;}
.ls3_c00078{letter-spacing:3.000000px;}
.ls2_c00078{letter-spacing:5.400000px;}
.ls1_c00078{letter-spacing:5.805000px;}
.ls0_c00078{letter-spacing:7.080000px;}
.ls6_c00078{letter-spacing:12.000000px;}
.ls4_c00078{letter-spacing:31.140000px;}
.sc__c00078{text-shadow:none;}
.sc0_c00078{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00078{-webkit-text-stroke:0px transparent;}
.sc0_c00078{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00078{word-spacing:-27.060000px;}
.ws2_c00078{word-spacing:-18.060000px;}
.ws0_c00078{word-spacing:-14.160000px;}
.ws3_c00078{word-spacing:0.000000px;}
._29_c00078{margin-left:-19.080000px;}
._25_c00078{margin-left:-14.040000px;}
._24_c00078{margin-left:-9.600000px;}
._23_c00078{margin-left:-8.580000px;}
._14_c00078{margin-left:-6.780000px;}
._10_c00078{margin-left:-5.040000px;}
._17_c00078{margin-left:-3.300000px;}
._8_c00078{margin-left:-2.040000px;}
._1f_c00078{margin-left:-1.020000px;}
._9_c00078{width:1.080000px;}
._7_c00078{width:2.820000px;}
._5_c00078{width:4.140000px;}
._15_c00078{width:5.760000px;}
._6_c00078{width:7.440000px;}
._11_c00078{width:8.820000px;}
._1_c00078{width:9.840000px;}
._0_c00078{width:11.940000px;}
._1b_c00078{width:13.440000px;}
._3_c00078{width:15.060000px;}
._4_c00078{width:16.560000px;}
._1a_c00078{width:17.640000px;}
._f_c00078{width:19.740000px;}
._22_c00078{width:21.180000px;}
._b_c00078{width:22.200000px;}
._a_c00078{width:23.640000px;}
._e_c00078{width:24.960000px;}
._c_c00078{width:26.940000px;}
._1c_c00078{width:27.960000px;}
._d_c00078{width:29.040000px;}
._20_c00078{width:30.300000px;}
._27_c00078{width:31.380000px;}
._28_c00078{width:32.460000px;}
._12_c00078{width:34.020000px;}
._13_c00078{width:35.580000px;}
._1d_c00078{width:37.500000px;}
._26_c00078{width:38.880000px;}
._2_c00078{width:41.340000px;}
._1e_c00078{width:43.740000px;}
._21_c00078{width:57.060000px;}
._2b_c00078{width:61.440000px;}
._18_c00078{width:100.140000px;}
._2a_c00078{width:124.800000px;}
._2c_c00078{width:130.560000px;}
._16_c00078{width:132.360000px;}
._19_c00078{width:163.080000px;}
.fc2_c00078{color:transparent;}
.fc1_c00078{color:rgb(128,128,128);}
.fc0_c00078{color:rgb(0,0,0);}
.fs1_c00078{font-size:45.000000px;}
.fs3_c00078{font-size:48.000000px;}
.fs0_c00078{font-size:60.000000px;}
.fs2_c00078{font-size:69.000000px;}
.y0_c00078{bottom:0.000000px;}
.y54_c00078{bottom:3.105000px;}
.y53_c00078{bottom:7.228357px;}
.y52_c00078{bottom:40.530000px;}
.y51_c00078{bottom:58.680000px;}
.y29_c00078{bottom:60.030000px;}
.y50_c00078{bottom:76.380000px;}
.y28_c00078{bottom:78.030000px;}
.y4f_c00078{bottom:94.230000px;}
.y27_c00078{bottom:95.880000px;}
.y4e_c00078{bottom:112.080000px;}
.y26_c00078{bottom:115.080000px;}
.y4d_c00078{bottom:130.380000px;}
.y25_c00078{bottom:132.330000px;}
.y4c_c00078{bottom:148.530000px;}
.y24_c00078{bottom:150.930000px;}
.y4b_c00078{bottom:166.830000px;}
.y23_c00078{bottom:168.030000px;}
.y4a_c00078{bottom:184.680000px;}
.y22_c00078{bottom:186.930000px;}
.y49_c00078{bottom:202.530000px;}
.y21_c00078{bottom:204.180000px;}
.y48_c00078{bottom:221.430000px;}
.y20_c00078{bottom:222.780000px;}
.y47_c00078{bottom:239.580000px;}
.y1f_c00078{bottom:240.930000px;}
.y46_c00078{bottom:257.580000px;}
.y1e_c00078{bottom:258.630000px;}
.y45_c00078{bottom:275.130000px;}
.y1d_c00078{bottom:276.030000px;}
.y44_c00078{bottom:294.030000px;}
.y1c_c00078{bottom:294.330000px;}
.y43_c00078{bottom:312.180000px;}
.y1b_c00078{bottom:312.480000px;}
.y42_c00078{bottom:330.180000px;}
.y1a_c00078{bottom:330.780000px;}
.y41_c00078{bottom:348.330000px;}
.y19_c00078{bottom:349.080000px;}
.y18_c00078{bottom:366.630000px;}
.y40_c00078{bottom:384.780000px;}
.y17_c00078{bottom:385.080000px;}
.y3f_c00078{bottom:402.930000px;}
.y3e_c00078{bottom:420.480000px;}
.y16_c00078{bottom:420.930000px;}
.y15_c00078{bottom:438.180000px;}
.y3d_c00078{bottom:438.780000px;}
.y14_c00078{bottom:456.030000px;}
.y3c_c00078{bottom:456.630000px;}
.y13_c00078{bottom:473.580000px;}
.y3b_c00078{bottom:474.180000px;}
.y12_c00078{bottom:491.430000px;}
.y3a_c00078{bottom:492.030000px;}
.y11_c00078{bottom:509.280000px;}
.y39_c00078{bottom:510.630000px;}
.y10_c00078{bottom:527.130000px;}
.y38_c00078{bottom:528.030000px;}
.yf_c00078{bottom:545.430000px;}
.y37_c00078{bottom:546.180000px;}
.ye_c00078{bottom:563.580000px;}
.y36_c00078{bottom:564.330000px;}
.yd_c00078{bottom:581.280000px;}
.y35_c00078{bottom:582.480000px;}
.yc_c00078{bottom:598.680000px;}
.y34_c00078{bottom:600.480000px;}
.yb_c00078{bottom:616.230000px;}
.y33_c00078{bottom:618.930000px;}
.ya_c00078{bottom:633.180000px;}
.y32_c00078{bottom:636.480000px;}
.y9_c00078{bottom:653.130000px;}
.y31_c00078{bottom:654.180000px;}
.y8_c00078{bottom:669.630000px;}
.y30_c00078{bottom:672.330000px;}
.y7_c00078{bottom:688.230000px;}
.y2f_c00078{bottom:690.180000px;}
.y6_c00078{bottom:705.480000px;}
.y2e_c00078{bottom:708.480000px;}
.y5_c00078{bottom:723.630000px;}
.y2d_c00078{bottom:726.930000px;}
.y4_c00078{bottom:742.230000px;}
.y2c_c00078{bottom:744.480000px;}
.y3_c00078{bottom:759.780000px;}
.y2b_c00078{bottom:763.080000px;}
.y2_c00078{bottom:777.930000px;}
.y2a_c00078{bottom:780.930000px;}
.y1_c00078{bottom:798.630000px;}
.h5_c00078{height:13.200074px;}
.h6_c00078{height:43.804688px;}
.h2_c00078{height:62.880000px;}
.h3_c00078{height:64.020000px;}
.h4_c00078{height:73.623000px;}
.h1_c00078{height:845.250000px;}
.h0_c00078{height:845.400000px;}
.w2_c00078{width:104.875500px;}
.w0_c00078{width:575.925000px;}
.w1_c00078{width:576.000000px;}
.x0_c00078{left:0.000000px;}
.x7_c00078{left:23.850000px;}
.x5_c00078{left:25.650000px;}
.x6_c00078{left:27.300000px;}
.x9_c00078{left:83.400000px;}
.x2_c00078{left:84.750000px;}
.x8_c00078{left:85.950000px;}
.x3_c00078{left:87.000000px;}
.x4_c00078{left:88.050000px;}
.x1_c00078{left:226.350000px;}
.x10_c00078{left:239.776749px;}
.xe_c00078{left:302.400000px;}
.xd_c00078{left:303.450000px;}
.xa_c00078{left:304.650000px;}
.xb_c00078{left:305.700000px;}
.xc_c00078{left:306.750000px;}
.xf_c00078{left:411.450000px;}
@media print{
.v1_c00078{vertical-align:-64.000000pt;}
.v0_c00078{vertical-align:0.000000pt;}
.ls5_c00078{letter-spacing:0.000000pt;}
.ls3_c00078{letter-spacing:2.666667pt;}
.ls2_c00078{letter-spacing:4.800000pt;}
.ls1_c00078{letter-spacing:5.160000pt;}
.ls0_c00078{letter-spacing:6.293333pt;}
.ls6_c00078{letter-spacing:10.666667pt;}
.ls4_c00078{letter-spacing:27.680000pt;}
.ws1_c00078{word-spacing:-24.053333pt;}
.ws2_c00078{word-spacing:-16.053333pt;}
.ws0_c00078{word-spacing:-12.586667pt;}
.ws3_c00078{word-spacing:0.000000pt;}
._29_c00078{margin-left:-16.960000pt;}
._25_c00078{margin-left:-12.480000pt;}
._24_c00078{margin-left:-8.533333pt;}
._23_c00078{margin-left:-7.626667pt;}
._14_c00078{margin-left:-6.026667pt;}
._10_c00078{margin-left:-4.480000pt;}
._17_c00078{margin-left:-2.933333pt;}
._8_c00078{margin-left:-1.813333pt;}
._1f_c00078{margin-left:-0.906667pt;}
._9_c00078{width:0.960000pt;}
._7_c00078{width:2.506667pt;}
._5_c00078{width:3.680000pt;}
._15_c00078{width:5.120000pt;}
._6_c00078{width:6.613333pt;}
._11_c00078{width:7.840000pt;}
._1_c00078{width:8.746667pt;}
._0_c00078{width:10.613333pt;}
._1b_c00078{width:11.946667pt;}
._3_c00078{width:13.386667pt;}
._4_c00078{width:14.720000pt;}
._1a_c00078{width:15.680000pt;}
._f_c00078{width:17.546667pt;}
._22_c00078{width:18.826667pt;}
._b_c00078{width:19.733333pt;}
._a_c00078{width:21.013333pt;}
._e_c00078{width:22.186667pt;}
._c_c00078{width:23.946667pt;}
._1c_c00078{width:24.853333pt;}
._d_c00078{width:25.813333pt;}
._20_c00078{width:26.933333pt;}
._27_c00078{width:27.893333pt;}
._28_c00078{width:28.853333pt;}
._12_c00078{width:30.240000pt;}
._13_c00078{width:31.626667pt;}
._1d_c00078{width:33.333333pt;}
._26_c00078{width:34.560000pt;}
._2_c00078{width:36.746667pt;}
._1e_c00078{width:38.880000pt;}
._21_c00078{width:50.720000pt;}
._2b_c00078{width:54.613333pt;}
._18_c00078{width:89.013333pt;}
._2a_c00078{width:110.933333pt;}
._2c_c00078{width:116.053333pt;}
._16_c00078{width:117.653333pt;}
._19_c00078{width:144.960000pt;}
.fs1_c00078{font-size:40.000000pt;}
.fs3_c00078{font-size:42.666667pt;}
.fs0_c00078{font-size:53.333333pt;}
.fs2_c00078{font-size:61.333333pt;}
.y0_c00078{bottom:0.000000pt;}
.y54_c00078{bottom:2.760000pt;}
.y53_c00078{bottom:6.425206pt;}
.y52_c00078{bottom:36.026667pt;}
.y51_c00078{bottom:52.160000pt;}
.y29_c00078{bottom:53.360000pt;}
.y50_c00078{bottom:67.893333pt;}
.y28_c00078{bottom:69.360000pt;}
.y4f_c00078{bottom:83.760000pt;}
.y27_c00078{bottom:85.226667pt;}
.y4e_c00078{bottom:99.626667pt;}
.y26_c00078{bottom:102.293333pt;}
.y4d_c00078{bottom:115.893333pt;}
.y25_c00078{bottom:117.626667pt;}
.y4c_c00078{bottom:132.026667pt;}
.y24_c00078{bottom:134.160000pt;}
.y4b_c00078{bottom:148.293333pt;}
.y23_c00078{bottom:149.360000pt;}
.y4a_c00078{bottom:164.160000pt;}
.y22_c00078{bottom:166.160000pt;}
.y49_c00078{bottom:180.026667pt;}
.y21_c00078{bottom:181.493333pt;}
.y48_c00078{bottom:196.826667pt;}
.y20_c00078{bottom:198.026667pt;}
.y47_c00078{bottom:212.960000pt;}
.y1f_c00078{bottom:214.160000pt;}
.y46_c00078{bottom:228.960000pt;}
.y1e_c00078{bottom:229.893333pt;}
.y45_c00078{bottom:244.560000pt;}
.y1d_c00078{bottom:245.360000pt;}
.y44_c00078{bottom:261.360000pt;}
.y1c_c00078{bottom:261.626667pt;}
.y43_c00078{bottom:277.493333pt;}
.y1b_c00078{bottom:277.760000pt;}
.y42_c00078{bottom:293.493333pt;}
.y1a_c00078{bottom:294.026667pt;}
.y41_c00078{bottom:309.626667pt;}
.y19_c00078{bottom:310.293333pt;}
.y18_c00078{bottom:325.893333pt;}
.y40_c00078{bottom:342.026667pt;}
.y17_c00078{bottom:342.293333pt;}
.y3f_c00078{bottom:358.160000pt;}
.y3e_c00078{bottom:373.760000pt;}
.y16_c00078{bottom:374.160000pt;}
.y15_c00078{bottom:389.493333pt;}
.y3d_c00078{bottom:390.026667pt;}
.y14_c00078{bottom:405.360000pt;}
.y3c_c00078{bottom:405.893333pt;}
.y13_c00078{bottom:420.960000pt;}
.y3b_c00078{bottom:421.493333pt;}
.y12_c00078{bottom:436.826667pt;}
.y3a_c00078{bottom:437.360000pt;}
.y11_c00078{bottom:452.693333pt;}
.y39_c00078{bottom:453.893333pt;}
.y10_c00078{bottom:468.560000pt;}
.y38_c00078{bottom:469.360000pt;}
.yf_c00078{bottom:484.826667pt;}
.y37_c00078{bottom:485.493333pt;}
.ye_c00078{bottom:500.960000pt;}
.y36_c00078{bottom:501.626667pt;}
.yd_c00078{bottom:516.693333pt;}
.y35_c00078{bottom:517.760000pt;}
.yc_c00078{bottom:532.160000pt;}
.y34_c00078{bottom:533.760000pt;}
.yb_c00078{bottom:547.760000pt;}
.y33_c00078{bottom:550.160000pt;}
.ya_c00078{bottom:562.826667pt;}
.y32_c00078{bottom:565.760000pt;}
.y9_c00078{bottom:580.560000pt;}
.y31_c00078{bottom:581.493333pt;}
.y8_c00078{bottom:595.226667pt;}
.y30_c00078{bottom:597.626667pt;}
.y7_c00078{bottom:611.760000pt;}
.y2f_c00078{bottom:613.493333pt;}
.y6_c00078{bottom:627.093333pt;}
.y2e_c00078{bottom:629.760000pt;}
.y5_c00078{bottom:643.226667pt;}
.y2d_c00078{bottom:646.160000pt;}
.y4_c00078{bottom:659.760000pt;}
.y2c_c00078{bottom:661.760000pt;}
.y3_c00078{bottom:675.360000pt;}
.y2b_c00078{bottom:678.293333pt;}
.y2_c00078{bottom:691.493333pt;}
.y2a_c00078{bottom:694.160000pt;}
.y1_c00078{bottom:709.893333pt;}
.h5_c00078{height:11.733399pt;}
.h6_c00078{height:38.937500pt;}
.h2_c00078{height:55.893333pt;}
.h3_c00078{height:56.906667pt;}
.h4_c00078{height:65.442667pt;}
.h1_c00078{height:751.333333pt;}
.h0_c00078{height:751.466667pt;}
.w2_c00078{width:93.222667pt;}
.w0_c00078{width:511.933333pt;}
.w1_c00078{width:512.000000pt;}
.x0_c00078{left:0.000000pt;}
.x7_c00078{left:21.200000pt;}
.x5_c00078{left:22.800000pt;}
.x6_c00078{left:24.266667pt;}
.x9_c00078{left:74.133333pt;}
.x2_c00078{left:75.333333pt;}
.x8_c00078{left:76.400000pt;}
.x3_c00078{left:77.333333pt;}
.x4_c00078{left:78.266667pt;}
.x1_c00078{left:201.200000pt;}
.x10_c00078{left:213.134888pt;}
.xe_c00078{left:268.800000pt;}
.xd_c00078{left:269.733333pt;}
.xa_c00078{left:270.800000pt;}
.xb_c00078{left:271.733333pt;}
.xc_c00078{left:272.666667pt;}
.xf_c00078{left:365.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_83f04353817baec42f2eef7b.woff2')format("woff");}.ff1_c00079{font-family:ff1_c00079;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00079;src:url('chunks/assets/font_32756aa2d0735a99dcccdde3.woff2')format("woff");}.ff2_c00079{font-family:ff2_c00079;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00079;src:url('chunks/assets/font_693fd5d91108163edf77301a.woff2')format("woff");}.ff3_c00079{font-family:ff3_c00079;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00079;src:url('chunks/assets/font_75d96532a359c010eb078f71.woff2')format("woff");}.ff4_c00079{font-family:ff4_c00079;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00079;src:url('chunks/assets/font_cb4a06d027d1109fb891a39e.woff2')format("woff");}.ff5_c00079{font-family:ff5_c00079;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00079;src:url('chunks/assets/font_38c97983a16c20ac8da0f2b1.woff2')format("woff");}.ff6_c00079{font-family:ff6_c00079;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00079;src:url('chunks/assets/font_7bf0a9c57c157123d820ddb6.woff2')format("woff");}.ff7_c00079{font-family:ff7_c00079;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00079;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff8_c00079{font-family:ff8_c00079;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00079{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00079{vertical-align:0.000000px;}
.v1_c00079{vertical-align:11.400000px;}
.lsc_c00079{letter-spacing:0.000000px;}
.ls3_c00079{letter-spacing:0.180000px;}
.ls1_c00079{letter-spacing:2.205000px;}
.ls2_c00079{letter-spacing:3.000000px;}
.ls9_c00079{letter-spacing:3.840000px;}
.lsa_c00079{letter-spacing:6.000000px;}
.lsb_c00079{letter-spacing:12.000000px;}
.ls5_c00079{letter-spacing:17.340000px;}
.ls4_c00079{letter-spacing:17.940000px;}
.ls8_c00079{letter-spacing:22.005000px;}
.ls7_c00079{letter-spacing:35.340000px;}
.ls6_c00079{letter-spacing:126.360000px;}
.ls0_c00079{letter-spacing:346.740000px;}
.sc__c00079{text-shadow:none;}
.sc0_c00079{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00079{-webkit-text-stroke:0px transparent;}
.sc0_c00079{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00079{word-spacing:-35.295000px;}
.ws6_c00079{word-spacing:-27.060000px;}
.ws7_c00079{word-spacing:-18.060000px;}
.ws2_c00079{word-spacing:-17.340000px;}
.ws3_c00079{word-spacing:-14.160000px;}
.ws1_c00079{word-spacing:-13.560000px;}
.ws8_c00079{word-spacing:0.000000px;}
.ws5_c00079{word-spacing:0.180000px;}
.ws4_c00079{word-spacing:12.600000px;}
._33_c00079{margin-left:-22.680000px;}
._30_c00079{margin-left:-20.400000px;}
._f_c00079{margin-left:-19.260000px;}
._7_c00079{margin-left:-16.260000px;}
._24_c00079{margin-left:-14.820000px;}
._d_c00079{margin-left:-12.540000px;}
._23_c00079{margin-left:-11.010000px;}
._e_c00079{margin-left:-9.420000px;}
._21_c00079{margin-left:-7.800000px;}
._10_c00079{margin-left:-6.540000px;}
._1a_c00079{margin-left:-5.310000px;}
._4_c00079{margin-left:-4.200000px;}
._6_c00079{margin-left:-2.700000px;}
._3_c00079{margin-left:-1.680000px;}
._1_c00079{width:1.320000px;}
._c_c00079{width:2.400000px;}
._9_c00079{width:3.480000px;}
._16_c00079{width:4.560000px;}
._b_c00079{width:5.760000px;}
._a_c00079{width:7.260000px;}
._2a_c00079{width:8.460000px;}
._0_c00079{width:9.510000px;}
._19_c00079{width:10.680000px;}
._14_c00079{width:12.240000px;}
._1d_c00079{width:13.620000px;}
._31_c00079{width:14.940000px;}
._27_c00079{width:16.200000px;}
._13_c00079{width:18.600000px;}
._18_c00079{width:19.980000px;}
._11_c00079{width:21.720000px;}
._2_c00079{width:23.820000px;}
._1c_c00079{width:25.890000px;}
._17_c00079{width:27.660000px;}
._15_c00079{width:29.520000px;}
._1e_c00079{width:31.230000px;}
._22_c00079{width:32.640000px;}
._20_c00079{width:34.230000px;}
._2c_c00079{width:35.700000px;}
._12_c00079{width:36.720000px;}
._2b_c00079{width:37.920000px;}
._1f_c00079{width:40.680000px;}
._2d_c00079{width:45.300000px;}
._25_c00079{width:48.600000px;}
._28_c00079{width:54.720000px;}
._36_c00079{width:58.188000px;}
._1b_c00079{width:66.300000px;}
._8_c00079{width:71.340000px;}
._34_c00079{width:77.580000px;}
._2e_c00079{width:87.180000px;}
._26_c00079{width:115.620000px;}
._2f_c00079{width:151.680000px;}
._29_c00079{width:171.060000px;}
._32_c00079{width:186.240000px;}
._5_c00079{width:306.600000px;}
._35_c00079{width:344.304000px;}
.fc2_c00079{color:transparent;}
.fc1_c00079{color:rgb(128,128,128);}
.fc0_c00079{color:rgb(0,0,0);}
.fs4_c00079{font-size:24.000000px;}
.fs0_c00079{font-size:45.000000px;}
.fs3_c00079{font-size:48.000000px;}
.fs2_c00079{font-size:57.000000px;}
.fs1_c00079{font-size:60.000000px;}
.y0_c00079{bottom:0.000000px;}
.y4f_c00079{bottom:3.105000px;}
.y4e_c00079{bottom:7.228371px;}
.y4d_c00079{bottom:48.015000px;}
.y4c_c00079{bottom:69.315000px;}
.y4b_c00079{bottom:88.515000px;}
.y27_c00079{bottom:99.915000px;}
.y4a_c00079{bottom:106.065000px;}
.y26_c00079{bottom:123.315000px;}
.y49_c00079{bottom:124.665000px;}
.y25_c00079{bottom:140.865000px;}
.y48_c00079{bottom:143.115000px;}
.y24_c00079{bottom:158.265000px;}
.y47_c00079{bottom:161.115000px;}
.y23_c00079{bottom:177.615000px;}
.y46_c00079{bottom:178.965000px;}
.y22_c00079{bottom:195.765000px;}
.y45_c00079{bottom:196.815000px;}
.y21_c00079{bottom:213.765000px;}
.y44_c00079{bottom:215.715000px;}
.y20_c00079{bottom:231.315000px;}
.y43_c00079{bottom:233.265000px;}
.y1f_c00079{bottom:249.765000px;}
.y42_c00079{bottom:251.565000px;}
.y1e_c00079{bottom:267.615000px;}
.y41_c00079{bottom:269.415000px;}
.y1d_c00079{bottom:285.165000px;}
.y40_c00079{bottom:287.265000px;}
.y1c_c00079{bottom:303.465000px;}
.y3f_c00079{bottom:304.815000px;}
.y1b_c00079{bottom:321.765000px;}
.y3e_c00079{bottom:323.115000px;}
.y1a_c00079{bottom:339.915000px;}
.y3d_c00079{bottom:340.965000px;}
.y19_c00079{bottom:358.065000px;}
.y3c_c00079{bottom:359.865000px;}
.y18_c00079{bottom:375.765000px;}
.y3b_c00079{bottom:377.115000px;}
.y17_c00079{bottom:393.615000px;}
.y3a_c00079{bottom:396.015000px;}
.y16_c00079{bottom:411.465000px;}
.y39_c00079{bottom:413.865000px;}
.y15_c00079{bottom:429.765000px;}
.y38_c00079{bottom:431.715000px;}
.y14_c00079{bottom:448.215000px;}
.y37_c00079{bottom:449.865000px;}
.y13_c00079{bottom:465.765000px;}
.y36_c00079{bottom:467.565000px;}
.y12_c00079{bottom:483.765000px;}
.y35_c00079{bottom:485.715000px;}
.y11_c00079{bottom:501.915000px;}
.y34_c00079{bottom:503.565000px;}
.y10_c00079{bottom:519.765000px;}
.y33_c00079{bottom:521.115000px;}
.yf_c00079{bottom:537.765000px;}
.y32_c00079{bottom:539.415000px;}
.ye_c00079{bottom:555.915000px;}
.y31_c00079{bottom:557.265000px;}
.yd_c00079{bottom:574.065000px;}
.y30_c00079{bottom:575.115000px;}
.yc_c00079{bottom:592.365000px;}
.y2f_c00079{bottom:592.665000px;}
.y2e_c00079{bottom:607.815000px;}
.yb_c00079{bottom:610.515000px;}
.ya_c00079{bottom:627.765000px;}
.y9_c00079{bottom:646.365000px;}
.y2d_c00079{bottom:646.665000px;}
.y8_c00079{bottom:664.215000px;}
.y2c_c00079{bottom:664.965000px;}
.y7_c00079{bottom:682.815000px;}
.y2b_c00079{bottom:683.115000px;}
.y6_c00079{bottom:701.115000px;}
.y2a_c00079{bottom:718.965000px;}
.y5_c00079{bottom:720.015000px;}
.y4_c00079{bottom:737.115000px;}
.y29_c00079{bottom:753.615000px;}
.y3_c00079{bottom:755.415000px;}
.y2_c00079{bottom:773.265000px;}
.y28_c00079{bottom:792.465000px;}
.y1_c00079{bottom:792.765000px;}
.h5_c00079{height:13.200074px;}
.h6_c00079{height:43.804688px;}
.h2_c00079{height:62.880000px;}
.h3_c00079{height:64.020000px;}
.h4_c00079{height:74.280000px;}
.h0_c00079{height:833.775000px;}
.h1_c00079{height:834.000000px;}
.w2_c00079{width:104.875500px;}
.w1_c00079{width:561.000000px;}
.w0_c00079{width:561.075000px;}
.x0_c00079{left:0.000000px;}
.x8_c00079{left:35.400000px;}
.x4_c00079{left:36.750000px;}
.x9_c00079{left:42.750000px;}
.xa_c00079{left:47.250000px;}
.xb_c00079{left:50.550000px;}
.x11_c00079{left:61.800000px;}
.xd_c00079{left:65.250000px;}
.x7_c00079{left:67.800000px;}
.x3_c00079{left:68.850000px;}
.xc_c00079{left:70.200000px;}
.x2_c00079{left:71.550000px;}
.x1_c00079{left:73.950000px;}
.xe_c00079{left:87.450000px;}
.x6_c00079{left:95.400000px;}
.xf_c00079{left:105.000000px;}
.x5_c00079{left:110.100000px;}
.x10_c00079{left:118.800000px;}
.x12_c00079{left:157.950000px;}
.x1e_c00079{left:232.351730px;}
.x1a_c00079{left:288.600000px;}
.x1c_c00079{left:289.650000px;}
.x15_c00079{left:290.850000px;}
.x1d_c00079{left:292.050000px;}
.x13_c00079{left:294.600000px;}
.x16_c00079{left:306.450000px;}
.x17_c00079{left:322.200000px;}
.x1b_c00079{left:333.750000px;}
.x18_c00079{left:353.400000px;}
.x19_c00079{left:364.800000px;}
.x14_c00079{left:388.800000px;}
@media print{
.v0_c00079{vertical-align:0.000000pt;}
.v1_c00079{vertical-align:10.133333pt;}
.lsc_c00079{letter-spacing:0.000000pt;}
.ls3_c00079{letter-spacing:0.160000pt;}
.ls1_c00079{letter-spacing:1.960000pt;}
.ls2_c00079{letter-spacing:2.666667pt;}
.ls9_c00079{letter-spacing:3.413333pt;}
.lsa_c00079{letter-spacing:5.333333pt;}
.lsb_c00079{letter-spacing:10.666667pt;}
.ls5_c00079{letter-spacing:15.413333pt;}
.ls4_c00079{letter-spacing:15.946667pt;}
.ls8_c00079{letter-spacing:19.560000pt;}
.ls7_c00079{letter-spacing:31.413333pt;}
.ls6_c00079{letter-spacing:112.320000pt;}
.ls0_c00079{letter-spacing:308.213333pt;}
.ws0_c00079{word-spacing:-31.373333pt;}
.ws6_c00079{word-spacing:-24.053333pt;}
.ws7_c00079{word-spacing:-16.053333pt;}
.ws2_c00079{word-spacing:-15.413333pt;}
.ws3_c00079{word-spacing:-12.586667pt;}
.ws1_c00079{word-spacing:-12.053333pt;}
.ws8_c00079{word-spacing:0.000000pt;}
.ws5_c00079{word-spacing:0.160000pt;}
.ws4_c00079{word-spacing:11.200000pt;}
._33_c00079{margin-left:-20.160000pt;}
._30_c00079{margin-left:-18.133333pt;}
._f_c00079{margin-left:-17.120000pt;}
._7_c00079{margin-left:-14.453333pt;}
._24_c00079{margin-left:-13.173333pt;}
._d_c00079{margin-left:-11.146667pt;}
._23_c00079{margin-left:-9.786667pt;}
._e_c00079{margin-left:-8.373333pt;}
._21_c00079{margin-left:-6.933333pt;}
._10_c00079{margin-left:-5.813333pt;}
._1a_c00079{margin-left:-4.720000pt;}
._4_c00079{margin-left:-3.733333pt;}
._6_c00079{margin-left:-2.400000pt;}
._3_c00079{margin-left:-1.493333pt;}
._1_c00079{width:1.173333pt;}
._c_c00079{width:2.133333pt;}
._9_c00079{width:3.093333pt;}
._16_c00079{width:4.053333pt;}
._b_c00079{width:5.120000pt;}
._a_c00079{width:6.453333pt;}
._2a_c00079{width:7.520000pt;}
._0_c00079{width:8.453333pt;}
._19_c00079{width:9.493333pt;}
._14_c00079{width:10.880000pt;}
._1d_c00079{width:12.106667pt;}
._31_c00079{width:13.280000pt;}
._27_c00079{width:14.400000pt;}
._13_c00079{width:16.533333pt;}
._18_c00079{width:17.760000pt;}
._11_c00079{width:19.306667pt;}
._2_c00079{width:21.173333pt;}
._1c_c00079{width:23.013333pt;}
._17_c00079{width:24.586667pt;}
._15_c00079{width:26.240000pt;}
._1e_c00079{width:27.760000pt;}
._22_c00079{width:29.013333pt;}
._20_c00079{width:30.426667pt;}
._2c_c00079{width:31.733333pt;}
._12_c00079{width:32.640000pt;}
._2b_c00079{width:33.706667pt;}
._1f_c00079{width:36.160000pt;}
._2d_c00079{width:40.266667pt;}
._25_c00079{width:43.200000pt;}
._28_c00079{width:48.640000pt;}
._36_c00079{width:51.722667pt;}
._1b_c00079{width:58.933333pt;}
._8_c00079{width:63.413333pt;}
._34_c00079{width:68.960000pt;}
._2e_c00079{width:77.493333pt;}
._26_c00079{width:102.773333pt;}
._2f_c00079{width:134.826667pt;}
._29_c00079{width:152.053333pt;}
._32_c00079{width:165.546667pt;}
._5_c00079{width:272.533333pt;}
._35_c00079{width:306.048000pt;}
.fs4_c00079{font-size:21.333333pt;}
.fs0_c00079{font-size:40.000000pt;}
.fs3_c00079{font-size:42.666667pt;}
.fs2_c00079{font-size:50.666667pt;}
.fs1_c00079{font-size:53.333333pt;}
.y0_c00079{bottom:0.000000pt;}
.y4f_c00079{bottom:2.760000pt;}
.y4e_c00079{bottom:6.425219pt;}
.y4d_c00079{bottom:42.680000pt;}
.y4c_c00079{bottom:61.613333pt;}
.y4b_c00079{bottom:78.680000pt;}
.y27_c00079{bottom:88.813333pt;}
.y4a_c00079{bottom:94.280000pt;}
.y26_c00079{bottom:109.613333pt;}
.y49_c00079{bottom:110.813333pt;}
.y25_c00079{bottom:125.213333pt;}
.y48_c00079{bottom:127.213333pt;}
.y24_c00079{bottom:140.680000pt;}
.y47_c00079{bottom:143.213333pt;}
.y23_c00079{bottom:157.880000pt;}
.y46_c00079{bottom:159.080000pt;}
.y22_c00079{bottom:174.013333pt;}
.y45_c00079{bottom:174.946667pt;}
.y21_c00079{bottom:190.013333pt;}
.y44_c00079{bottom:191.746667pt;}
.y20_c00079{bottom:205.613333pt;}
.y43_c00079{bottom:207.346667pt;}
.y1f_c00079{bottom:222.013333pt;}
.y42_c00079{bottom:223.613333pt;}
.y1e_c00079{bottom:237.880000pt;}
.y41_c00079{bottom:239.480000pt;}
.y1d_c00079{bottom:253.480000pt;}
.y40_c00079{bottom:255.346667pt;}
.y1c_c00079{bottom:269.746667pt;}
.y3f_c00079{bottom:270.946667pt;}
.y1b_c00079{bottom:286.013333pt;}
.y3e_c00079{bottom:287.213333pt;}
.y1a_c00079{bottom:302.146667pt;}
.y3d_c00079{bottom:303.080000pt;}
.y19_c00079{bottom:318.280000pt;}
.y3c_c00079{bottom:319.880000pt;}
.y18_c00079{bottom:334.013333pt;}
.y3b_c00079{bottom:335.213333pt;}
.y17_c00079{bottom:349.880000pt;}
.y3a_c00079{bottom:352.013333pt;}
.y16_c00079{bottom:365.746667pt;}
.y39_c00079{bottom:367.880000pt;}
.y15_c00079{bottom:382.013333pt;}
.y38_c00079{bottom:383.746667pt;}
.y14_c00079{bottom:398.413333pt;}
.y37_c00079{bottom:399.880000pt;}
.y13_c00079{bottom:414.013333pt;}
.y36_c00079{bottom:415.613333pt;}
.y12_c00079{bottom:430.013333pt;}
.y35_c00079{bottom:431.746667pt;}
.y11_c00079{bottom:446.146667pt;}
.y34_c00079{bottom:447.613333pt;}
.y10_c00079{bottom:462.013333pt;}
.y33_c00079{bottom:463.213333pt;}
.yf_c00079{bottom:478.013333pt;}
.y32_c00079{bottom:479.480000pt;}
.ye_c00079{bottom:494.146667pt;}
.y31_c00079{bottom:495.346667pt;}
.yd_c00079{bottom:510.280000pt;}
.y30_c00079{bottom:511.213333pt;}
.yc_c00079{bottom:526.546667pt;}
.y2f_c00079{bottom:526.813333pt;}
.y2e_c00079{bottom:540.280000pt;}
.yb_c00079{bottom:542.680000pt;}
.ya_c00079{bottom:558.013333pt;}
.y9_c00079{bottom:574.546667pt;}
.y2d_c00079{bottom:574.813333pt;}
.y8_c00079{bottom:590.413333pt;}
.y2c_c00079{bottom:591.080000pt;}
.y7_c00079{bottom:606.946667pt;}
.y2b_c00079{bottom:607.213333pt;}
.y6_c00079{bottom:623.213333pt;}
.y2a_c00079{bottom:639.080000pt;}
.y5_c00079{bottom:640.013333pt;}
.y4_c00079{bottom:655.213333pt;}
.y29_c00079{bottom:669.880000pt;}
.y3_c00079{bottom:671.480000pt;}
.y2_c00079{bottom:687.346667pt;}
.y28_c00079{bottom:704.413333pt;}
.y1_c00079{bottom:704.680000pt;}
.h5_c00079{height:11.733399pt;}
.h6_c00079{height:38.937500pt;}
.h2_c00079{height:55.893333pt;}
.h3_c00079{height:56.906667pt;}
.h4_c00079{height:66.026667pt;}
.h0_c00079{height:741.133333pt;}
.h1_c00079{height:741.333333pt;}
.w2_c00079{width:93.222667pt;}
.w1_c00079{width:498.666667pt;}
.w0_c00079{width:498.733333pt;}
.x0_c00079{left:0.000000pt;}
.x8_c00079{left:31.466667pt;}
.x4_c00079{left:32.666667pt;}
.x9_c00079{left:38.000000pt;}
.xa_c00079{left:42.000000pt;}
.xb_c00079{left:44.933333pt;}
.x11_c00079{left:54.933333pt;}
.xd_c00079{left:58.000000pt;}
.x7_c00079{left:60.266667pt;}
.x3_c00079{left:61.200000pt;}
.xc_c00079{left:62.400000pt;}
.x2_c00079{left:63.600000pt;}
.x1_c00079{left:65.733333pt;}
.xe_c00079{left:77.733333pt;}
.x6_c00079{left:84.800000pt;}
.xf_c00079{left:93.333333pt;}
.x5_c00079{left:97.866667pt;}
.x10_c00079{left:105.600000pt;}
.x12_c00079{left:140.400000pt;}
.x1e_c00079{left:206.534871pt;}
.x1a_c00079{left:256.533333pt;}
.x1c_c00079{left:257.466667pt;}
.x15_c00079{left:258.533333pt;}
.x1d_c00079{left:259.600000pt;}
.x13_c00079{left:261.866667pt;}
.x16_c00079{left:272.400000pt;}
.x17_c00079{left:286.400000pt;}
.x1b_c00079{left:296.666667pt;}
.x18_c00079{left:314.133333pt;}
.x19_c00079{left:324.266667pt;}
.x14_c00079{left:345.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_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_14953626dda43706f2761817.woff2')format("woff");}.ff1_c00080{font-family:ff1_c00080;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00080;src:url('chunks/assets/font_14d91312b3204b17aa3b0ee1.woff2')format("woff");}.ff2_c00080{font-family:ff2_c00080;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00080;src:url('chunks/assets/font_0ce391de997f24f9f9dd37f4.woff2')format("woff");}.ff3_c00080{font-family:ff3_c00080;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00080;src:url('chunks/assets/font_8d5a51eb2d2eeacab7728565.woff2')format("woff");}.ff4_c00080{font-family:ff4_c00080;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00080;src:url('chunks/assets/font_e5de1e7ffecf25e78ff14374.woff2')format("woff");}.ff5_c00080{font-family:ff5_c00080;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00080;src:url('chunks/assets/font_1d06d49d09c1cf52b13ac924.woff2')format("woff");}.ff6_c00080{font-family:ff6_c00080;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00080;src:url('chunks/assets/font_3db04ad4a09daabbf4db6188.woff2')format("woff");}.ff7_c00080{font-family:ff7_c00080;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00080;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff8_c00080{font-family:ff8_c00080;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00080{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00080{vertical-align:0.000000px;}
.ls4_c00080{letter-spacing:0.000000px;}
.ls0_c00080{letter-spacing:3.000000px;}
.ls5_c00080{letter-spacing:6.000000px;}
.ls3_c00080{letter-spacing:12.000000px;}
.ls1_c00080{letter-spacing:13.080000px;}
.ls2_c00080{letter-spacing:13.380000px;}
.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:-35.295000px;}
.ws4_c00080{word-spacing:-18.072000px;}
.ws5_c00080{word-spacing:-17.319000px;}
.ws3_c00080{word-spacing:-16.755000px;}
.ws1_c00080{word-spacing:-14.160000px;}
.ws6_c00080{word-spacing:0.000000px;}
.ws2_c00080{word-spacing:5.460000px;}
._23_c00080{margin-left:-22.560000px;}
._25_c00080{margin-left:-14.400000px;}
._2f_c00080{margin-left:-12.180000px;}
._1d_c00080{margin-left:-10.680000px;}
._27_c00080{margin-left:-9.180000px;}
._5_c00080{margin-left:-8.142000px;}
._1f_c00080{margin-left:-7.020000px;}
._2b_c00080{margin-left:-5.922000px;}
._f_c00080{margin-left:-4.764000px;}
._0_c00080{margin-left:-3.519000px;}
._e_c00080{margin-left:-2.160000px;}
._17_c00080{margin-left:-1.020000px;}
._3_c00080{width:1.932000px;}
._2_c00080{width:3.036000px;}
._a_c00080{width:5.016000px;}
._20_c00080{width:6.189000px;}
._6_c00080{width:7.272000px;}
._7_c00080{width:8.592000px;}
._c_c00080{width:10.236000px;}
._1e_c00080{width:11.274000px;}
._18_c00080{width:12.303000px;}
._d_c00080{width:13.548000px;}
._1c_c00080{width:14.748000px;}
._12_c00080{width:16.236000px;}
._28_c00080{width:19.176000px;}
._b_c00080{width:20.376000px;}
._21_c00080{width:22.140000px;}
._1b_c00080{width:23.223000px;}
._8_c00080{width:24.264000px;}
._13_c00080{width:27.540000px;}
._22_c00080{width:29.220000px;}
._1_c00080{width:30.981000px;}
._2e_c00080{width:32.028000px;}
._2c_c00080{width:33.558000px;}
._15_c00080{width:35.016000px;}
._29_c00080{width:36.726000px;}
._14_c00080{width:39.159000px;}
._31_c00080{width:41.283000px;}
._10_c00080{width:43.692000px;}
._2a_c00080{width:45.819000px;}
._16_c00080{width:48.912000px;}
._2d_c00080{width:51.420000px;}
._24_c00080{width:57.288000px;}
._26_c00080{width:58.524000px;}
._11_c00080{width:63.984000px;}
._32_c00080{width:69.558000px;}
._33_c00080{width:80.256000px;}
._9_c00080{width:82.188000px;}
._1a_c00080{width:84.180000px;}
._19_c00080{width:87.732000px;}
._34_c00080{width:196.062000px;}
._30_c00080{width:345.420000px;}
._4_c00080{width:467.820000px;}
.fc2_c00080{color:transparent;}
.fc1_c00080{color:rgb(128,128,128);}
.fc0_c00080{color:rgb(0,0,0);}
.fs2_c00080{font-size:45.000000px;}
.fs5_c00080{font-size:48.000000px;}
.fs1_c00080{font-size:60.000000px;}
.fs3_c00080{font-size:63.000000px;}
.fs0_c00080{font-size:69.000000px;}
.fs4_c00080{font-size:72.000000px;}
.y0_c00080{bottom:0.000000px;}
.y4b_c00080{bottom:3.105000px;}
.y4a_c00080{bottom:7.228355px;}
.y49_c00080{bottom:30.285000px;}
.y48_c00080{bottom:48.285000px;}
.y45_c00080{bottom:49.635000px;}
.y47_c00080{bottom:67.035000px;}
.y44_c00080{bottom:68.535000px;}
.y46_c00080{bottom:85.035000px;}
.y43_c00080{bottom:86.685000px;}
.y42_c00080{bottom:103.635000px;}
.y41_c00080{bottom:121.785000px;}
.y40_c00080{bottom:139.935000px;}
.y3f_c00080{bottom:157.185000px;}
.y38_c00080{bottom:158.835000px;}
.y3e_c00080{bottom:175.185000px;}
.y37_c00080{bottom:177.435000px;}
.y3d_c00080{bottom:193.335000px;}
.y36_c00080{bottom:196.335000px;}
.y3c_c00080{bottom:211.485000px;}
.y35_c00080{bottom:214.185000px;}
.y3b_c00080{bottom:229.185000px;}
.y34_c00080{bottom:232.185000px;}
.y3a_c00080{bottom:247.635000px;}
.y33_c00080{bottom:250.035000px;}
.y39_c00080{bottom:265.935000px;}
.y32_c00080{bottom:268.185000px;}
.y31_c00080{bottom:284.535000px;}
.y30_c00080{bottom:303.285000px;}
.y2f_c00080{bottom:321.585000px;}
.y2e_c00080{bottom:338.835000px;}
.y2d_c00080{bottom:355.635000px;}
.y1e_c00080{bottom:357.735000px;}
.y2c_c00080{bottom:374.535000px;}
.y1d_c00080{bottom:375.585000px;}
.y2b_c00080{bottom:392.535000px;}
.y1c_c00080{bottom:393.885000px;}
.y2a_c00080{bottom:409.635000px;}
.y1b_c00080{bottom:411.735000px;}
.y29_c00080{bottom:428.235000px;}
.y1a_c00080{bottom:428.835000px;}
.y28_c00080{bottom:446.535000px;}
.y19_c00080{bottom:446.835000px;}
.y27_c00080{bottom:464.085000px;}
.y18_c00080{bottom:464.685000px;}
.y17_c00080{bottom:482.235000px;}
.y26_c00080{bottom:482.385000px;}
.y16_c00080{bottom:500.385000px;}
.y25_c00080{bottom:500.535000px;}
.y15_c00080{bottom:518.385000px;}
.y24_c00080{bottom:518.685000px;}
.y14_c00080{bottom:535.935000px;}
.y13_c00080{bottom:554.385000px;}
.y23_c00080{bottom:554.535000px;}
.y12_c00080{bottom:572.085000px;}
.y22_c00080{bottom:572.685000px;}
.y11_c00080{bottom:590.235000px;}
.y21_c00080{bottom:590.985000px;}
.y10_c00080{bottom:608.085000px;}
.y20_c00080{bottom:608.835000px;}
.yf_c00080{bottom:625.635000px;}
.y1f_c00080{bottom:626.985000px;}
.ye_c00080{bottom:644.985000px;}
.yd_c00080{bottom:662.535000px;}
.y7_c00080{bottom:680.985000px;}
.yc_c00080{bottom:681.285000px;}
.y6_c00080{bottom:698.535000px;}
.yb_c00080{bottom:698.835000px;}
.y5_c00080{bottom:715.785000px;}
.ya_c00080{bottom:716.835000px;}
.y4_c00080{bottom:734.085000px;}
.y9_c00080{bottom:735.285000px;}
.y3_c00080{bottom:751.935000px;}
.y8_c00080{bottom:752.835000px;}
.y2_c00080{bottom:770.535000px;}
.y1_c00080{bottom:791.385000px;}
.h7_c00080{height:13.200074px;}
.h8_c00080{height:43.804688px;}
.h3_c00080{height:62.880000px;}
.h5_c00080{height:65.040000px;}
.h4_c00080{height:66.024000px;}
.h2_c00080{height:72.312000px;}
.h6_c00080{height:75.456000px;}
.h1_c00080{height:834.750000px;}
.h0_c00080{height:834.825000px;}
.w2_c00080{width:104.875500px;}
.w1_c00080{width:558.750000px;}
.w0_c00080{width:558.900000px;}
.x0_c00080{left:0.000000px;}
.xd_c00080{left:51.300000px;}
.xc_c00080{left:53.100000px;}
.xa_c00080{left:55.650000px;}
.x4_c00080{left:59.700000px;}
.x3_c00080{left:61.200000px;}
.x2_c00080{left:62.400000px;}
.x7_c00080{left:63.450000px;}
.x8_c00080{left:65.100000px;}
.xb_c00080{left:150.450000px;}
.x1_c00080{left:200.400000px;}
.xf_c00080{left:231.264267px;}
.x9_c00080{left:283.800000px;}
.x5_c00080{left:285.450000px;}
.x6_c00080{left:286.500000px;}
.xe_c00080{left:357.150000px;}
@media print{
.v0_c00080{vertical-align:0.000000pt;}
.ls4_c00080{letter-spacing:0.000000pt;}
.ls0_c00080{letter-spacing:2.666667pt;}
.ls5_c00080{letter-spacing:5.333333pt;}
.ls3_c00080{letter-spacing:10.666667pt;}
.ls1_c00080{letter-spacing:11.626667pt;}
.ls2_c00080{letter-spacing:11.893333pt;}
.ws0_c00080{word-spacing:-31.373333pt;}
.ws4_c00080{word-spacing:-16.064000pt;}
.ws5_c00080{word-spacing:-15.394667pt;}
.ws3_c00080{word-spacing:-14.893333pt;}
.ws1_c00080{word-spacing:-12.586667pt;}
.ws6_c00080{word-spacing:0.000000pt;}
.ws2_c00080{word-spacing:4.853333pt;}
._23_c00080{margin-left:-20.053333pt;}
._25_c00080{margin-left:-12.800000pt;}
._2f_c00080{margin-left:-10.826667pt;}
._1d_c00080{margin-left:-9.493333pt;}
._27_c00080{margin-left:-8.160000pt;}
._5_c00080{margin-left:-7.237333pt;}
._1f_c00080{margin-left:-6.240000pt;}
._2b_c00080{margin-left:-5.264000pt;}
._f_c00080{margin-left:-4.234667pt;}
._0_c00080{margin-left:-3.128000pt;}
._e_c00080{margin-left:-1.920000pt;}
._17_c00080{margin-left:-0.906667pt;}
._3_c00080{width:1.717333pt;}
._2_c00080{width:2.698667pt;}
._a_c00080{width:4.458667pt;}
._20_c00080{width:5.501333pt;}
._6_c00080{width:6.464000pt;}
._7_c00080{width:7.637333pt;}
._c_c00080{width:9.098667pt;}
._1e_c00080{width:10.021333pt;}
._18_c00080{width:10.936000pt;}
._d_c00080{width:12.042667pt;}
._1c_c00080{width:13.109333pt;}
._12_c00080{width:14.432000pt;}
._28_c00080{width:17.045333pt;}
._b_c00080{width:18.112000pt;}
._21_c00080{width:19.680000pt;}
._1b_c00080{width:20.642667pt;}
._8_c00080{width:21.568000pt;}
._13_c00080{width:24.480000pt;}
._22_c00080{width:25.973333pt;}
._1_c00080{width:27.538667pt;}
._2e_c00080{width:28.469333pt;}
._2c_c00080{width:29.829333pt;}
._15_c00080{width:31.125333pt;}
._29_c00080{width:32.645333pt;}
._14_c00080{width:34.808000pt;}
._31_c00080{width:36.696000pt;}
._10_c00080{width:38.837333pt;}
._2a_c00080{width:40.728000pt;}
._16_c00080{width:43.477333pt;}
._2d_c00080{width:45.706667pt;}
._24_c00080{width:50.922667pt;}
._26_c00080{width:52.021333pt;}
._11_c00080{width:56.874667pt;}
._32_c00080{width:61.829333pt;}
._33_c00080{width:71.338667pt;}
._9_c00080{width:73.056000pt;}
._1a_c00080{width:74.826667pt;}
._19_c00080{width:77.984000pt;}
._34_c00080{width:174.277333pt;}
._30_c00080{width:307.040000pt;}
._4_c00080{width:415.840000pt;}
.fs2_c00080{font-size:40.000000pt;}
.fs5_c00080{font-size:42.666667pt;}
.fs1_c00080{font-size:53.333333pt;}
.fs3_c00080{font-size:56.000000pt;}
.fs0_c00080{font-size:61.333333pt;}
.fs4_c00080{font-size:64.000000pt;}
.y0_c00080{bottom:0.000000pt;}
.y4b_c00080{bottom:2.760000pt;}
.y4a_c00080{bottom:6.425204pt;}
.y49_c00080{bottom:26.920000pt;}
.y48_c00080{bottom:42.920000pt;}
.y45_c00080{bottom:44.120000pt;}
.y47_c00080{bottom:59.586667pt;}
.y44_c00080{bottom:60.920000pt;}
.y46_c00080{bottom:75.586667pt;}
.y43_c00080{bottom:77.053333pt;}
.y42_c00080{bottom:92.120000pt;}
.y41_c00080{bottom:108.253333pt;}
.y40_c00080{bottom:124.386667pt;}
.y3f_c00080{bottom:139.720000pt;}
.y38_c00080{bottom:141.186667pt;}
.y3e_c00080{bottom:155.720000pt;}
.y37_c00080{bottom:157.720000pt;}
.y3d_c00080{bottom:171.853333pt;}
.y36_c00080{bottom:174.520000pt;}
.y3c_c00080{bottom:187.986667pt;}
.y35_c00080{bottom:190.386667pt;}
.y3b_c00080{bottom:203.720000pt;}
.y34_c00080{bottom:206.386667pt;}
.y3a_c00080{bottom:220.120000pt;}
.y33_c00080{bottom:222.253333pt;}
.y39_c00080{bottom:236.386667pt;}
.y32_c00080{bottom:238.386667pt;}
.y31_c00080{bottom:252.920000pt;}
.y30_c00080{bottom:269.586667pt;}
.y2f_c00080{bottom:285.853333pt;}
.y2e_c00080{bottom:301.186667pt;}
.y2d_c00080{bottom:316.120000pt;}
.y1e_c00080{bottom:317.986667pt;}
.y2c_c00080{bottom:332.920000pt;}
.y1d_c00080{bottom:333.853333pt;}
.y2b_c00080{bottom:348.920000pt;}
.y1c_c00080{bottom:350.120000pt;}
.y2a_c00080{bottom:364.120000pt;}
.y1b_c00080{bottom:365.986667pt;}
.y29_c00080{bottom:380.653333pt;}
.y1a_c00080{bottom:381.186667pt;}
.y28_c00080{bottom:396.920000pt;}
.y19_c00080{bottom:397.186667pt;}
.y27_c00080{bottom:412.520000pt;}
.y18_c00080{bottom:413.053333pt;}
.y17_c00080{bottom:428.653333pt;}
.y26_c00080{bottom:428.786667pt;}
.y16_c00080{bottom:444.786667pt;}
.y25_c00080{bottom:444.920000pt;}
.y15_c00080{bottom:460.786667pt;}
.y24_c00080{bottom:461.053333pt;}
.y14_c00080{bottom:476.386667pt;}
.y13_c00080{bottom:492.786667pt;}
.y23_c00080{bottom:492.920000pt;}
.y12_c00080{bottom:508.520000pt;}
.y22_c00080{bottom:509.053333pt;}
.y11_c00080{bottom:524.653333pt;}
.y21_c00080{bottom:525.320000pt;}
.y10_c00080{bottom:540.520000pt;}
.y20_c00080{bottom:541.186667pt;}
.yf_c00080{bottom:556.120000pt;}
.y1f_c00080{bottom:557.320000pt;}
.ye_c00080{bottom:573.320000pt;}
.yd_c00080{bottom:588.920000pt;}
.y7_c00080{bottom:605.320000pt;}
.yc_c00080{bottom:605.586667pt;}
.y6_c00080{bottom:620.920000pt;}
.yb_c00080{bottom:621.186667pt;}
.y5_c00080{bottom:636.253333pt;}
.ya_c00080{bottom:637.186667pt;}
.y4_c00080{bottom:652.520000pt;}
.y9_c00080{bottom:653.586667pt;}
.y3_c00080{bottom:668.386667pt;}
.y8_c00080{bottom:669.186667pt;}
.y2_c00080{bottom:684.920000pt;}
.y1_c00080{bottom:703.453333pt;}
.h7_c00080{height:11.733399pt;}
.h8_c00080{height:38.937500pt;}
.h3_c00080{height:55.893333pt;}
.h5_c00080{height:57.813333pt;}
.h4_c00080{height:58.688000pt;}
.h2_c00080{height:64.277333pt;}
.h6_c00080{height:67.072000pt;}
.h1_c00080{height:742.000000pt;}
.h0_c00080{height:742.066667pt;}
.w2_c00080{width:93.222667pt;}
.w1_c00080{width:496.666667pt;}
.w0_c00080{width:496.800000pt;}
.x0_c00080{left:0.000000pt;}
.xd_c00080{left:45.600000pt;}
.xc_c00080{left:47.200000pt;}
.xa_c00080{left:49.466667pt;}
.x4_c00080{left:53.066667pt;}
.x3_c00080{left:54.400000pt;}
.x2_c00080{left:55.466667pt;}
.x7_c00080{left:56.400000pt;}
.x8_c00080{left:57.866667pt;}
.xb_c00080{left:133.733333pt;}
.x1_c00080{left:178.133333pt;}
.xf_c00080{left:205.568237pt;}
.x9_c00080{left:252.266667pt;}
.x5_c00080{left:253.733333pt;}
.x6_c00080{left:254.666667pt;}
.xe_c00080{left:317.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_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_ebcb0b1a96800839c8c0f4fe.woff2')format("woff");}.ff1_c00081{font-family:ff1_c00081;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00081;src:url('chunks/assets/font_9207c0d4a4f8744e9e8ce3be.woff2')format("woff");}.ff2_c00081{font-family:ff2_c00081;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00081;src:url('chunks/assets/font_eca4b01f8ad1667e6cbee4c4.woff2')format("woff");}.ff3_c00081{font-family:ff3_c00081;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00081;src:url('chunks/assets/font_3de65b556525583a2ddff396.woff2')format("woff");}.ff4_c00081{font-family:ff4_c00081;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00081;src:url('chunks/assets/font_c4b62f592cf9cebb8e196e79.woff2')format("woff");}.ff5_c00081{font-family:ff5_c00081;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00081;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff6_c00081{font-family:ff6_c00081;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00081{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00081{vertical-align:-24.600000px;}
.v0_c00081{vertical-align:0.000000px;}
.ls3_c00081{letter-spacing:0.000000px;}
.ls2_c00081{letter-spacing:1.800000px;}
.ls1_c00081{letter-spacing:2.880000px;}
.ls0_c00081{letter-spacing:3.000000px;}
.sc__c00081{text-shadow:none;}
.sc0_c00081{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00081{-webkit-text-stroke:0px transparent;}
.sc0_c00081{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00081{word-spacing:-17.340000px;}
.ws0_c00081{word-spacing:-14.160000px;}
.ws4_c00081{word-spacing:-2.760000px;}
.ws1_c00081{word-spacing:-0.780000px;}
.ws5_c00081{word-spacing:0.000000px;}
.ws3_c00081{word-spacing:357.060000px;}
._24_c00081{margin-left:-20.520000px;}
._21_c00081{margin-left:-17.820000px;}
._25_c00081{margin-left:-16.800000px;}
._18_c00081{margin-left:-13.980000px;}
._1f_c00081{margin-left:-11.760000px;}
._10_c00081{margin-left:-10.080000px;}
._15_c00081{margin-left:-8.520000px;}
._c_c00081{margin-left:-7.200000px;}
._e_c00081{margin-left:-5.760000px;}
._9_c00081{margin-left:-4.620000px;}
._b_c00081{margin-left:-3.600000px;}
._7_c00081{margin-left:-2.460000px;}
._8_c00081{margin-left:-1.380000px;}
._f_c00081{width:1.740000px;}
._0_c00081{width:3.000000px;}
._1_c00081{width:4.500000px;}
._a_c00081{width:6.240000px;}
._12_c00081{width:8.040000px;}
._d_c00081{width:9.240000px;}
._1a_c00081{width:10.380000px;}
._11_c00081{width:11.520000px;}
._3_c00081{width:12.780000px;}
._4_c00081{width:14.580000px;}
._1e_c00081{width:16.020000px;}
._23_c00081{width:18.120000px;}
._6_c00081{width:19.560000px;}
._5_c00081{width:21.360000px;}
._17_c00081{width:22.500000px;}
._1c_c00081{width:24.480000px;}
._14_c00081{width:25.980000px;}
._22_c00081{width:27.960000px;}
._13_c00081{width:29.220000px;}
._20_c00081{width:32.820000px;}
._26_c00081{width:36.240000px;}
._28_c00081{width:37.500000px;}
._16_c00081{width:39.360000px;}
._27_c00081{width:47.700000px;}
._2a_c00081{width:49.500000px;}
._1b_c00081{width:117.600000px;}
._29_c00081{width:130.260000px;}
._1d_c00081{width:185.640000px;}
._19_c00081{width:237.060000px;}
._2_c00081{width:341.460000px;}
.fc2_c00081{color:transparent;}
.fc1_c00081{color:rgb(128,128,128);}
.fc0_c00081{color:rgb(0,0,0);}
.fs1_c00081{font-size:24.000000px;}
.fs4_c00081{font-size:48.000000px;}
.fs0_c00081{font-size:60.000000px;}
.fs3_c00081{font-size:66.000000px;}
.fs2_c00081{font-size:69.000000px;}
.y0_c00081{bottom:0.000000px;}
.y55_c00081{bottom:3.105000px;}
.y54_c00081{bottom:7.228369px;}
.y2b_c00081{bottom:27.720000px;}
.y2a_c00081{bottom:46.620000px;}
.y53_c00081{bottom:47.220000px;}
.y29_c00081{bottom:65.370000px;}
.y52_c00081{bottom:65.520000px;}
.y51_c00081{bottom:83.670000px;}
.y28_c00081{bottom:84.420000px;}
.y50_c00081{bottom:101.520000px;}
.y27_c00081{bottom:101.820000px;}
.y4f_c00081{bottom:120.120000px;}
.y26_c00081{bottom:121.170000px;}
.y25_c00081{bottom:139.020000px;}
.y4e_c00081{bottom:139.320000px;}
.y24_c00081{bottom:158.520000px;}
.y4d_c00081{bottom:158.670000px;}
.y23_c00081{bottom:175.170000px;}
.y4c_c00081{bottom:176.220000px;}
.y22_c00081{bottom:194.070000px;}
.y4b_c00081{bottom:195.120000px;}
.y21_c00081{bottom:212.220000px;}
.y4a_c00081{bottom:212.520000px;}
.y20_c00081{bottom:230.070000px;}
.y49_c00081{bottom:230.820000px;}
.y1f_c00081{bottom:248.070000px;}
.y48_c00081{bottom:248.970000px;}
.y47_c00081{bottom:267.270000px;}
.y1e_c00081{bottom:267.870000px;}
.y1d_c00081{bottom:285.420000px;}
.y1c_c00081{bottom:302.970000px;}
.y46_c00081{bottom:303.120000px;}
.y1b_c00081{bottom:320.670000px;}
.y45_c00081{bottom:320.970000px;}
.y44_c00081{bottom:339.120000px;}
.y1a_c00081{bottom:339.570000px;}
.y19_c00081{bottom:357.120000px;}
.y18_c00081{bottom:375.570000px;}
.y43_c00081{bottom:376.020000px;}
.y17_c00081{bottom:392.520000px;}
.y42_c00081{bottom:394.170000px;}
.y16_c00081{bottom:411.720000px;}
.y41_c00081{bottom:412.020000px;}
.y15_c00081{bottom:429.570000px;}
.y40_c00081{bottom:430.020000px;}
.y3f_c00081{bottom:447.570000px;}
.y14_c00081{bottom:448.170000px;}
.y3e_c00081{bottom:465.120000px;}
.y13_c00081{bottom:465.420000px;}
.y3d_c00081{bottom:483.570000px;}
.y12_c00081{bottom:484.020000px;}
.y3c_c00081{bottom:501.420000px;}
.y11_c00081{bottom:502.170000px;}
.y3b_c00081{bottom:519.420000px;}
.y10_c00081{bottom:520.320000px;}
.y3a_c00081{bottom:537.270000px;}
.yf_c00081{bottom:538.320000px;}
.y39_c00081{bottom:555.120000px;}
.ye_c00081{bottom:556.170000px;}
.y38_c00081{bottom:573.120000px;}
.yd_c00081{bottom:574.320000px;}
.y37_c00081{bottom:590.670000px;}
.yc_c00081{bottom:592.620000px;}
.y36_c00081{bottom:609.120000px;}
.yb_c00081{bottom:610.170000px;}
.y35_c00081{bottom:626.970000px;}
.ya_c00081{bottom:628.470000px;}
.y34_c00081{bottom:644.970000px;}
.y9_c00081{bottom:646.320000px;}
.y33_c00081{bottom:663.420000px;}
.y8_c00081{bottom:664.470000px;}
.y32_c00081{bottom:681.420000px;}
.y7_c00081{bottom:682.470000px;}
.y31_c00081{bottom:699.570000px;}
.y6_c00081{bottom:700.920000px;}
.y30_c00081{bottom:717.870000px;}
.y5_c00081{bottom:719.220000px;}
.y2f_c00081{bottom:736.320000px;}
.y4_c00081{bottom:737.820000px;}
.y2e_c00081{bottom:754.320000px;}
.y3_c00081{bottom:755.370000px;}
.y2d_c00081{bottom:772.470000px;}
.y2_c00081{bottom:774.120000px;}
.y2c_c00081{bottom:792.720000px;}
.y1_c00081{bottom:793.020000px;}
.h4_c00081{height:13.200073px;}
.h5_c00081{height:43.804688px;}
.h1_c00081{height:62.880000px;}
.h3_c00081{height:70.422000px;}
.h2_c00081{height:72.312000px;}
.h0_c00081{height:834.000000px;}
.w2_c00081{width:104.875500px;}
.w1_c00081{width:576.000000px;}
.w0_c00081{width:576.150000px;}
.x0_c00081{left:0.000000px;}
.x6_c00081{left:22.650000px;}
.xa_c00081{left:73.350000px;}
.x9_c00081{left:74.550000px;}
.x8_c00081{left:76.050000px;}
.x7_c00081{left:77.250000px;}
.x4_c00081{left:80.700000px;}
.x2_c00081{left:85.050000px;}
.x3_c00081{left:87.000000px;}
.x5_c00081{left:88.800000px;}
.x1_c00081{left:91.050000px;}
.x11_c00081{left:239.889267px;}
.xd_c00081{left:304.050000px;}
.xc_c00081{left:306.450000px;}
.xb_c00081{left:307.800000px;}
.xe_c00081{left:309.450000px;}
.xf_c00081{left:310.500000px;}
.x10_c00081{left:487.650000px;}
@media print{
.v1_c00081{vertical-align:-21.866667pt;}
.v0_c00081{vertical-align:0.000000pt;}
.ls3_c00081{letter-spacing:0.000000pt;}
.ls2_c00081{letter-spacing:1.600000pt;}
.ls1_c00081{letter-spacing:2.560000pt;}
.ls0_c00081{letter-spacing:2.666667pt;}
.ws2_c00081{word-spacing:-15.413333pt;}
.ws0_c00081{word-spacing:-12.586667pt;}
.ws4_c00081{word-spacing:-2.453333pt;}
.ws1_c00081{word-spacing:-0.693333pt;}
.ws5_c00081{word-spacing:0.000000pt;}
.ws3_c00081{word-spacing:317.386667pt;}
._24_c00081{margin-left:-18.240000pt;}
._21_c00081{margin-left:-15.840000pt;}
._25_c00081{margin-left:-14.933333pt;}
._18_c00081{margin-left:-12.426667pt;}
._1f_c00081{margin-left:-10.453333pt;}
._10_c00081{margin-left:-8.960000pt;}
._15_c00081{margin-left:-7.573333pt;}
._c_c00081{margin-left:-6.400000pt;}
._e_c00081{margin-left:-5.120000pt;}
._9_c00081{margin-left:-4.106667pt;}
._b_c00081{margin-left:-3.200000pt;}
._7_c00081{margin-left:-2.186667pt;}
._8_c00081{margin-left:-1.226667pt;}
._f_c00081{width:1.546667pt;}
._0_c00081{width:2.666667pt;}
._1_c00081{width:4.000000pt;}
._a_c00081{width:5.546667pt;}
._12_c00081{width:7.146667pt;}
._d_c00081{width:8.213333pt;}
._1a_c00081{width:9.226667pt;}
._11_c00081{width:10.240000pt;}
._3_c00081{width:11.360000pt;}
._4_c00081{width:12.960000pt;}
._1e_c00081{width:14.240000pt;}
._23_c00081{width:16.106667pt;}
._6_c00081{width:17.386667pt;}
._5_c00081{width:18.986667pt;}
._17_c00081{width:20.000000pt;}
._1c_c00081{width:21.760000pt;}
._14_c00081{width:23.093333pt;}
._22_c00081{width:24.853333pt;}
._13_c00081{width:25.973333pt;}
._20_c00081{width:29.173333pt;}
._26_c00081{width:32.213333pt;}
._28_c00081{width:33.333333pt;}
._16_c00081{width:34.986667pt;}
._27_c00081{width:42.400000pt;}
._2a_c00081{width:44.000000pt;}
._1b_c00081{width:104.533333pt;}
._29_c00081{width:115.786667pt;}
._1d_c00081{width:165.013333pt;}
._19_c00081{width:210.720000pt;}
._2_c00081{width:303.520000pt;}
.fs1_c00081{font-size:21.333333pt;}
.fs4_c00081{font-size:42.666667pt;}
.fs0_c00081{font-size:53.333333pt;}
.fs3_c00081{font-size:58.666667pt;}
.fs2_c00081{font-size:61.333333pt;}
.y0_c00081{bottom:0.000000pt;}
.y55_c00081{bottom:2.760000pt;}
.y54_c00081{bottom:6.425217pt;}
.y2b_c00081{bottom:24.640000pt;}
.y2a_c00081{bottom:41.440000pt;}
.y53_c00081{bottom:41.973333pt;}
.y29_c00081{bottom:58.106667pt;}
.y52_c00081{bottom:58.240000pt;}
.y51_c00081{bottom:74.373333pt;}
.y28_c00081{bottom:75.040000pt;}
.y50_c00081{bottom:90.240000pt;}
.y27_c00081{bottom:90.506667pt;}
.y4f_c00081{bottom:106.773333pt;}
.y26_c00081{bottom:107.706667pt;}
.y25_c00081{bottom:123.573333pt;}
.y4e_c00081{bottom:123.840000pt;}
.y24_c00081{bottom:140.906667pt;}
.y4d_c00081{bottom:141.040000pt;}
.y23_c00081{bottom:155.706667pt;}
.y4c_c00081{bottom:156.640000pt;}
.y22_c00081{bottom:172.506667pt;}
.y4b_c00081{bottom:173.440000pt;}
.y21_c00081{bottom:188.640000pt;}
.y4a_c00081{bottom:188.906667pt;}
.y20_c00081{bottom:204.506667pt;}
.y49_c00081{bottom:205.173333pt;}
.y1f_c00081{bottom:220.506667pt;}
.y48_c00081{bottom:221.306667pt;}
.y47_c00081{bottom:237.573333pt;}
.y1e_c00081{bottom:238.106667pt;}
.y1d_c00081{bottom:253.706667pt;}
.y1c_c00081{bottom:269.306667pt;}
.y46_c00081{bottom:269.440000pt;}
.y1b_c00081{bottom:285.040000pt;}
.y45_c00081{bottom:285.306667pt;}
.y44_c00081{bottom:301.440000pt;}
.y1a_c00081{bottom:301.840000pt;}
.y19_c00081{bottom:317.440000pt;}
.y18_c00081{bottom:333.840000pt;}
.y43_c00081{bottom:334.240000pt;}
.y17_c00081{bottom:348.906667pt;}
.y42_c00081{bottom:350.373333pt;}
.y16_c00081{bottom:365.973333pt;}
.y41_c00081{bottom:366.240000pt;}
.y15_c00081{bottom:381.840000pt;}
.y40_c00081{bottom:382.240000pt;}
.y3f_c00081{bottom:397.840000pt;}
.y14_c00081{bottom:398.373333pt;}
.y3e_c00081{bottom:413.440000pt;}
.y13_c00081{bottom:413.706667pt;}
.y3d_c00081{bottom:429.840000pt;}
.y12_c00081{bottom:430.240000pt;}
.y3c_c00081{bottom:445.706667pt;}
.y11_c00081{bottom:446.373333pt;}
.y3b_c00081{bottom:461.706667pt;}
.y10_c00081{bottom:462.506667pt;}
.y3a_c00081{bottom:477.573333pt;}
.yf_c00081{bottom:478.506667pt;}
.y39_c00081{bottom:493.440000pt;}
.ye_c00081{bottom:494.373333pt;}
.y38_c00081{bottom:509.440000pt;}
.yd_c00081{bottom:510.506667pt;}
.y37_c00081{bottom:525.040000pt;}
.yc_c00081{bottom:526.773333pt;}
.y36_c00081{bottom:541.440000pt;}
.yb_c00081{bottom:542.373333pt;}
.y35_c00081{bottom:557.306667pt;}
.ya_c00081{bottom:558.640000pt;}
.y34_c00081{bottom:573.306667pt;}
.y9_c00081{bottom:574.506667pt;}
.y33_c00081{bottom:589.706667pt;}
.y8_c00081{bottom:590.640000pt;}
.y32_c00081{bottom:605.706667pt;}
.y7_c00081{bottom:606.640000pt;}
.y31_c00081{bottom:621.840000pt;}
.y6_c00081{bottom:623.040000pt;}
.y30_c00081{bottom:638.106667pt;}
.y5_c00081{bottom:639.306667pt;}
.y2f_c00081{bottom:654.506667pt;}
.y4_c00081{bottom:655.840000pt;}
.y2e_c00081{bottom:670.506667pt;}
.y3_c00081{bottom:671.440000pt;}
.y2d_c00081{bottom:686.640000pt;}
.y2_c00081{bottom:688.106667pt;}
.y2c_c00081{bottom:704.640000pt;}
.y1_c00081{bottom:704.906667pt;}
.h4_c00081{height:11.733399pt;}
.h5_c00081{height:38.937500pt;}
.h1_c00081{height:55.893333pt;}
.h3_c00081{height:62.597333pt;}
.h2_c00081{height:64.277333pt;}
.h0_c00081{height:741.333333pt;}
.w2_c00081{width:93.222667pt;}
.w1_c00081{width:512.000000pt;}
.w0_c00081{width:512.133333pt;}
.x0_c00081{left:0.000000pt;}
.x6_c00081{left:20.133333pt;}
.xa_c00081{left:65.200000pt;}
.x9_c00081{left:66.266667pt;}
.x8_c00081{left:67.600000pt;}
.x7_c00081{left:68.666667pt;}
.x4_c00081{left:71.733333pt;}
.x2_c00081{left:75.600000pt;}
.x3_c00081{left:77.333333pt;}
.x5_c00081{left:78.933333pt;}
.x1_c00081{left:80.933333pt;}
.x11_c00081{left:213.234904pt;}
.xd_c00081{left:270.266667pt;}
.xc_c00081{left:272.400000pt;}
.xb_c00081{left:273.600000pt;}
.xe_c00081{left:275.066667pt;}
.xf_c00081{left:276.000000pt;}
.x10_c00081{left:433.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c3f74647f63bb569df802934.woff2')format("woff");}.ff1_c00082{font-family:ff1_c00082;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00082;src:url('chunks/assets/font_a2346332cb6f722ddd76b1e9.woff2')format("woff");}.ff2_c00082{font-family:ff2_c00082;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00082;src:url('chunks/assets/font_04ced81fab494bd0fc56bf37.woff2')format("woff");}.ff3_c00082{font-family:ff3_c00082;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00082;src:url('chunks/assets/font_b26615ebf20c9e0b3286d69e.woff2')format("woff");}.ff4_c00082{font-family:ff4_c00082;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00082;src:url('chunks/assets/font_30f0bae7392013604853e281.woff2')format("woff");}.ff5_c00082{font-family:ff5_c00082;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00082;src:url('chunks/assets/font_d777195172dae8c7a76f496d.woff2')format("woff");}.ff6_c00082{font-family:ff6_c00082;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00082;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff7_c00082{font-family:ff7_c00082;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00082{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00082{vertical-align:-75.600000px;}
.v0_c00082{vertical-align:0.000000px;}
.ls7_c00082{letter-spacing:0.000000px;}
.ls4_c00082{letter-spacing:1.800000px;}
.ls3_c00082{letter-spacing:2.340000px;}
.ls0_c00082{letter-spacing:3.000000px;}
.ls2_c00082{letter-spacing:13.740000px;}
.ls1_c00082{letter-spacing:14.493000px;}
.ls6_c00082{letter-spacing:15.000000px;}
.ls5_c00082{letter-spacing:155.880000px;}
.sc__c00082{text-shadow:none;}
.sc0_c00082{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00082{-webkit-text-stroke:0px transparent;}
.sc0_c00082{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00082{word-spacing:-46.746000px;}
.ws1_c00082{word-spacing:-22.074000px;}
.ws6_c00082{word-spacing:-18.072000px;}
.ws5_c00082{word-spacing:-18.060000px;}
.ws2_c00082{word-spacing:-17.340000px;}
.ws3_c00082{word-spacing:-14.160000px;}
.ws4_c00082{word-spacing:-13.452000px;}
.ws7_c00082{word-spacing:0.000000px;}
._1f_c00082{margin-left:-18.543000px;}
._8_c00082{margin-left:-15.300000px;}
._9_c00082{margin-left:-13.020000px;}
._7_c00082{margin-left:-12.012000px;}
._a_c00082{margin-left:-10.740000px;}
._20_c00082{margin-left:-9.612000px;}
._c_c00082{margin-left:-7.800000px;}
._e_c00082{margin-left:-5.940000px;}
._1a_c00082{margin-left:-4.704000px;}
._d_c00082{margin-left:-3.540000px;}
._10_c00082{margin-left:-2.040000px;}
._1c_c00082{margin-left:-1.017000px;}
._1d_c00082{width:1.104000px;}
._b_c00082{width:2.160000px;}
._16_c00082{width:3.192000px;}
._f_c00082{width:4.332000px;}
._15_c00082{width:5.757000px;}
._17_c00082{width:7.068000px;}
._1_c00082{width:8.580000px;}
._21_c00082{width:9.864000px;}
._0_c00082{width:11.100000px;}
._1b_c00082{width:12.600000px;}
._5_c00082{width:14.400000px;}
._1e_c00082{width:16.104000px;}
._23_c00082{width:17.310000px;}
._3_c00082{width:19.260000px;}
._13_c00082{width:21.060000px;}
._4_c00082{width:23.040000px;}
._19_c00082{width:24.240000px;}
._12_c00082{width:25.380000px;}
._18_c00082{width:29.004000px;}
._14_c00082{width:31.284000px;}
._29_c00082{width:34.209000px;}
._2a_c00082{width:37.080000px;}
._22_c00082{width:38.535000px;}
._24_c00082{width:40.836000px;}
._2_c00082{width:43.260000px;}
._26_c00082{width:47.097000px;}
._25_c00082{width:48.780000px;}
._28_c00082{width:61.560000px;}
._11_c00082{width:66.780000px;}
._27_c00082{width:70.320000px;}
._2b_c00082{width:121.260000px;}
._6_c00082{width:479.820000px;}
.fc2_c00082{color:transparent;}
.fc1_c00082{color:rgb(128,128,128);}
.fc0_c00082{color:rgb(0,0,0);}
.fs3_c00082{font-size:24.000000px;}
.fs5_c00082{font-size:48.000000px;}
.fs2_c00082{font-size:57.000000px;}
.fs0_c00082{font-size:60.000000px;}
.fs1_c00082{font-size:66.000000px;}
.fs4_c00082{font-size:72.000000px;}
.y0_c00082{bottom:0.000000px;}
.y4d_c00082{bottom:3.105000px;}
.y4c_c00082{bottom:7.228357px;}
.y4b_c00082{bottom:57.780000px;}
.y46_c00082{bottom:62.880000px;}
.y45_c00082{bottom:81.630000px;}
.y4a_c00082{bottom:97.230000px;}
.y44_c00082{bottom:99.330000px;}
.y49_c00082{bottom:114.180000px;}
.y43_c00082{bottom:117.780000px;}
.y48_c00082{bottom:133.680000px;}
.y42_c00082{bottom:136.080000px;}
.y47_c00082{bottom:152.280000px;}
.y41_c00082{bottom:153.330000px;}
.y40_c00082{bottom:171.780000px;}
.y3f_c00082{bottom:189.030000px;}
.y3e_c00082{bottom:207.630000px;}
.y3d_c00082{bottom:225.780000px;}
.y21_c00082{bottom:226.830000px;}
.y3c_c00082{bottom:242.730000px;}
.y20_c00082{bottom:244.980000px;}
.y3b_c00082{bottom:261.630000px;}
.y1f_c00082{bottom:263.280000px;}
.y3a_c00082{bottom:279.180000px;}
.y1e_c00082{bottom:281.430000px;}
.y39_c00082{bottom:297.630000px;}
.y1d_c00082{bottom:299.730000px;}
.y38_c00082{bottom:315.330000px;}
.y1c_c00082{bottom:317.580000px;}
.y37_c00082{bottom:334.530000px;}
.y1b_c00082{bottom:335.430000px;}
.y36_c00082{bottom:351.630000px;}
.y1a_c00082{bottom:353.730000px;}
.y35_c00082{bottom:369.330000px;}
.y19_c00082{bottom:371.580000px;}
.y34_c00082{bottom:387.480000px;}
.y18_c00082{bottom:389.430000px;}
.y33_c00082{bottom:406.380000px;}
.y17_c00082{bottom:407.430000px;}
.y32_c00082{bottom:422.880000px;}
.y16_c00082{bottom:424.980000px;}
.y31_c00082{bottom:442.230000px;}
.y15_c00082{bottom:442.830000px;}
.y14_c00082{bottom:460.080000px;}
.y13_c00082{bottom:477.630000px;}
.y12_c00082{bottom:495.480000px;}
.y30_c00082{bottom:496.230000px;}
.y11_c00082{bottom:513.780000px;}
.y2f_c00082{bottom:531.330000px;}
.y10_c00082{bottom:531.930000px;}
.yf_c00082{bottom:550.080000px;}
.y2e_c00082{bottom:550.230000px;}
.ye_c00082{bottom:567.780000px;}
.y2d_c00082{bottom:568.380000px;}
.yd_c00082{bottom:585.930000px;}
.y2c_c00082{bottom:586.530000px;}
.yc_c00082{bottom:604.230000px;}
.y2b_c00082{bottom:605.130000px;}
.yb_c00082{bottom:622.080000px;}
.y2a_c00082{bottom:622.680000px;}
.ya_c00082{bottom:639.630000px;}
.y29_c00082{bottom:640.680000px;}
.y9_c00082{bottom:657.780000px;}
.y28_c00082{bottom:658.830000px;}
.y8_c00082{bottom:676.380000px;}
.y27_c00082{bottom:677.130000px;}
.y7_c00082{bottom:693.930000px;}
.y26_c00082{bottom:694.680000px;}
.y6_c00082{bottom:712.230000px;}
.y25_c00082{bottom:712.830000px;}
.y5_c00082{bottom:730.080000px;}
.y24_c00082{bottom:731.130000px;}
.y4_c00082{bottom:748.530000px;}
.y23_c00082{bottom:749.580000px;}
.y3_c00082{bottom:766.080000px;}
.y22_c00082{bottom:767.430000px;}
.y2_c00082{bottom:785.130000px;}
.y1_c00082{bottom:805.230000px;}
.h8_c00082{height:13.200074px;}
.h9_c00082{height:43.804688px;}
.h4_c00082{height:59.736000px;}
.h3_c00082{height:62.880000px;}
.h6_c00082{height:64.020000px;}
.h5_c00082{height:70.422000px;}
.h2_c00082{height:71.544000px;}
.h7_c00082{height:75.456000px;}
.h0_c00082{height:835.950000px;}
.h1_c00082{height:836.250000px;}
.w2_c00082{width:104.875500px;}
.w0_c00082{width:552.450000px;}
.w1_c00082{width:552.750000px;}
.x0_c00082{left:0.000000px;}
.x7_c00082{left:67.500000px;}
.x3_c00082{left:68.550000px;}
.x4_c00082{left:70.500000px;}
.x2_c00082{left:72.000000px;}
.x5_c00082{left:73.950000px;}
.x6_c00082{left:75.150000px;}
.x1_c00082{left:211.950000px;}
.x10_c00082{left:228.039230px;}
.xb_c00082{left:294.300000px;}
.xa_c00082{left:295.350000px;}
.x8_c00082{left:296.550000px;}
.x9_c00082{left:297.900000px;}
.xc_c00082{left:315.150000px;}
.xd_c00082{left:330.300000px;}
.xf_c00082{left:345.600000px;}
.xe_c00082{left:351.900000px;}
@media print{
.v1_c00082{vertical-align:-67.200000pt;}
.v0_c00082{vertical-align:0.000000pt;}
.ls7_c00082{letter-spacing:0.000000pt;}
.ls4_c00082{letter-spacing:1.600000pt;}
.ls3_c00082{letter-spacing:2.080000pt;}
.ls0_c00082{letter-spacing:2.666667pt;}
.ls2_c00082{letter-spacing:12.213333pt;}
.ls1_c00082{letter-spacing:12.882667pt;}
.ls6_c00082{letter-spacing:13.333333pt;}
.ls5_c00082{letter-spacing:138.560000pt;}
.ws0_c00082{word-spacing:-41.552000pt;}
.ws1_c00082{word-spacing:-19.621333pt;}
.ws6_c00082{word-spacing:-16.064000pt;}
.ws5_c00082{word-spacing:-16.053333pt;}
.ws2_c00082{word-spacing:-15.413333pt;}
.ws3_c00082{word-spacing:-12.586667pt;}
.ws4_c00082{word-spacing:-11.957333pt;}
.ws7_c00082{word-spacing:0.000000pt;}
._1f_c00082{margin-left:-16.482667pt;}
._8_c00082{margin-left:-13.600000pt;}
._9_c00082{margin-left:-11.573333pt;}
._7_c00082{margin-left:-10.677333pt;}
._a_c00082{margin-left:-9.546667pt;}
._20_c00082{margin-left:-8.544000pt;}
._c_c00082{margin-left:-6.933333pt;}
._e_c00082{margin-left:-5.280000pt;}
._1a_c00082{margin-left:-4.181333pt;}
._d_c00082{margin-left:-3.146667pt;}
._10_c00082{margin-left:-1.813333pt;}
._1c_c00082{margin-left:-0.904000pt;}
._1d_c00082{width:0.981333pt;}
._b_c00082{width:1.920000pt;}
._16_c00082{width:2.837333pt;}
._f_c00082{width:3.850667pt;}
._15_c00082{width:5.117333pt;}
._17_c00082{width:6.282667pt;}
._1_c00082{width:7.626667pt;}
._21_c00082{width:8.768000pt;}
._0_c00082{width:9.866667pt;}
._1b_c00082{width:11.200000pt;}
._5_c00082{width:12.800000pt;}
._1e_c00082{width:14.314667pt;}
._23_c00082{width:15.386667pt;}
._3_c00082{width:17.120000pt;}
._13_c00082{width:18.720000pt;}
._4_c00082{width:20.480000pt;}
._19_c00082{width:21.546667pt;}
._12_c00082{width:22.560000pt;}
._18_c00082{width:25.781333pt;}
._14_c00082{width:27.808000pt;}
._29_c00082{width:30.408000pt;}
._2a_c00082{width:32.960000pt;}
._22_c00082{width:34.253333pt;}
._24_c00082{width:36.298667pt;}
._2_c00082{width:38.453333pt;}
._26_c00082{width:41.864000pt;}
._25_c00082{width:43.360000pt;}
._28_c00082{width:54.720000pt;}
._11_c00082{width:59.360000pt;}
._27_c00082{width:62.506667pt;}
._2b_c00082{width:107.786667pt;}
._6_c00082{width:426.506667pt;}
.fs3_c00082{font-size:21.333333pt;}
.fs5_c00082{font-size:42.666667pt;}
.fs2_c00082{font-size:50.666667pt;}
.fs0_c00082{font-size:53.333333pt;}
.fs1_c00082{font-size:58.666667pt;}
.fs4_c00082{font-size:64.000000pt;}
.y0_c00082{bottom:0.000000pt;}
.y4d_c00082{bottom:2.760000pt;}
.y4c_c00082{bottom:6.425206pt;}
.y4b_c00082{bottom:51.360000pt;}
.y46_c00082{bottom:55.893333pt;}
.y45_c00082{bottom:72.560000pt;}
.y4a_c00082{bottom:86.426667pt;}
.y44_c00082{bottom:88.293333pt;}
.y49_c00082{bottom:101.493333pt;}
.y43_c00082{bottom:104.693333pt;}
.y48_c00082{bottom:118.826667pt;}
.y42_c00082{bottom:120.960000pt;}
.y47_c00082{bottom:135.360000pt;}
.y41_c00082{bottom:136.293333pt;}
.y40_c00082{bottom:152.693333pt;}
.y3f_c00082{bottom:168.026667pt;}
.y3e_c00082{bottom:184.560000pt;}
.y3d_c00082{bottom:200.693333pt;}
.y21_c00082{bottom:201.626667pt;}
.y3c_c00082{bottom:215.760000pt;}
.y20_c00082{bottom:217.760000pt;}
.y3b_c00082{bottom:232.560000pt;}
.y1f_c00082{bottom:234.026667pt;}
.y3a_c00082{bottom:248.160000pt;}
.y1e_c00082{bottom:250.160000pt;}
.y39_c00082{bottom:264.560000pt;}
.y1d_c00082{bottom:266.426667pt;}
.y38_c00082{bottom:280.293333pt;}
.y1c_c00082{bottom:282.293333pt;}
.y37_c00082{bottom:297.360000pt;}
.y1b_c00082{bottom:298.160000pt;}
.y36_c00082{bottom:312.560000pt;}
.y1a_c00082{bottom:314.426667pt;}
.y35_c00082{bottom:328.293333pt;}
.y19_c00082{bottom:330.293333pt;}
.y34_c00082{bottom:344.426667pt;}
.y18_c00082{bottom:346.160000pt;}
.y33_c00082{bottom:361.226667pt;}
.y17_c00082{bottom:362.160000pt;}
.y32_c00082{bottom:375.893333pt;}
.y16_c00082{bottom:377.760000pt;}
.y31_c00082{bottom:393.093333pt;}
.y15_c00082{bottom:393.626667pt;}
.y14_c00082{bottom:408.960000pt;}
.y13_c00082{bottom:424.560000pt;}
.y12_c00082{bottom:440.426667pt;}
.y30_c00082{bottom:441.093333pt;}
.y11_c00082{bottom:456.693333pt;}
.y2f_c00082{bottom:472.293333pt;}
.y10_c00082{bottom:472.826667pt;}
.yf_c00082{bottom:488.960000pt;}
.y2e_c00082{bottom:489.093333pt;}
.ye_c00082{bottom:504.693333pt;}
.y2d_c00082{bottom:505.226667pt;}
.yd_c00082{bottom:520.826667pt;}
.y2c_c00082{bottom:521.360000pt;}
.yc_c00082{bottom:537.093333pt;}
.y2b_c00082{bottom:537.893333pt;}
.yb_c00082{bottom:552.960000pt;}
.y2a_c00082{bottom:553.493333pt;}
.ya_c00082{bottom:568.560000pt;}
.y29_c00082{bottom:569.493333pt;}
.y9_c00082{bottom:584.693333pt;}
.y28_c00082{bottom:585.626667pt;}
.y8_c00082{bottom:601.226667pt;}
.y27_c00082{bottom:601.893333pt;}
.y7_c00082{bottom:616.826667pt;}
.y26_c00082{bottom:617.493333pt;}
.y6_c00082{bottom:633.093333pt;}
.y25_c00082{bottom:633.626667pt;}
.y5_c00082{bottom:648.960000pt;}
.y24_c00082{bottom:649.893333pt;}
.y4_c00082{bottom:665.360000pt;}
.y23_c00082{bottom:666.293333pt;}
.y3_c00082{bottom:680.960000pt;}
.y22_c00082{bottom:682.160000pt;}
.y2_c00082{bottom:697.893333pt;}
.y1_c00082{bottom:715.760000pt;}
.h8_c00082{height:11.733399pt;}
.h9_c00082{height:38.937500pt;}
.h4_c00082{height:53.098667pt;}
.h3_c00082{height:55.893333pt;}
.h6_c00082{height:56.906667pt;}
.h5_c00082{height:62.597333pt;}
.h2_c00082{height:63.594667pt;}
.h7_c00082{height:67.072000pt;}
.h0_c00082{height:743.066667pt;}
.h1_c00082{height:743.333333pt;}
.w2_c00082{width:93.222667pt;}
.w0_c00082{width:491.066667pt;}
.w1_c00082{width:491.333333pt;}
.x0_c00082{left:0.000000pt;}
.x7_c00082{left:60.000000pt;}
.x3_c00082{left:60.933333pt;}
.x4_c00082{left:62.666667pt;}
.x2_c00082{left:64.000000pt;}
.x5_c00082{left:65.733333pt;}
.x6_c00082{left:66.800000pt;}
.x1_c00082{left:188.400000pt;}
.x10_c00082{left:202.701538pt;}
.xb_c00082{left:261.600000pt;}
.xa_c00082{left:262.533333pt;}
.x8_c00082{left:263.600000pt;}
.x9_c00082{left:264.800000pt;}
.xc_c00082{left:280.133333pt;}
.xd_c00082{left:293.600000pt;}
.xf_c00082{left:307.200000pt;}
.xe_c00082{left:312.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ce22140a5c746f683aa6a351.woff2')format("woff");}.ff1_c00083{font-family:ff1_c00083;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00083;src:url('chunks/assets/font_760459b24068a7509c7513fd.woff2')format("woff");}.ff2_c00083{font-family:ff2_c00083;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00083;src:url('chunks/assets/font_d6c291333116a0ad0096b00b.woff2')format("woff");}.ff3_c00083{font-family:ff3_c00083;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00083;src:url('chunks/assets/font_a43b6c56ed5fab3bd0746de6.woff2')format("woff");}.ff4_c00083{font-family:ff4_c00083;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00083;src:url('chunks/assets/font_4474bdc9752061dc6413ca0b.woff2')format("woff");}.ff5_c00083{font-family:ff5_c00083;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00083;src:url('chunks/assets/font_8308db8e61a6f34d7b4c717a.woff2')format("woff");}.ff6_c00083{font-family:ff6_c00083;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00083;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff7_c00083{font-family:ff7_c00083;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00083{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00083{vertical-align:0.000000px;}
.v1_c00083{vertical-align:91.800000px;}
.ls9_c00083{letter-spacing:0.000000px;}
.ls2_c00083{letter-spacing:1.893000px;}
.ls1_c00083{letter-spacing:3.000000px;}
.ls3_c00083{letter-spacing:4.320000px;}
.ls8_c00083{letter-spacing:4.893000px;}
.lsa_c00083{letter-spacing:6.000000px;}
.ls5_c00083{letter-spacing:6.300000px;}
.ls0_c00083{letter-spacing:7.647000px;}
.ls4_c00083{letter-spacing:12.000000px;}
.ls7_c00083{letter-spacing:12.693000px;}
.ls6_c00083{letter-spacing:16.293000px;}
.sc__c00083{text-shadow:none;}
.sc0_c00083{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00083{-webkit-text-stroke:0px transparent;}
.sc0_c00083{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00083{word-spacing:-26.340000px;}
.ws0_c00083{word-spacing:-18.813000px;}
.ws5_c00083{word-spacing:-17.340000px;}
.ws6_c00083{word-spacing:-17.319000px;}
.ws1_c00083{word-spacing:-14.160000px;}
.ws2_c00083{word-spacing:-13.452000px;}
.ws4_c00083{word-spacing:-10.644000px;}
.ws7_c00083{word-spacing:0.000000px;}
._9_c00083{margin-left:-15.564000px;}
._20_c00083{margin-left:-12.168000px;}
._18_c00083{margin-left:-9.366000px;}
._10_c00083{margin-left:-8.091000px;}
._19_c00083{margin-left:-7.029000px;}
._f_c00083{margin-left:-5.994000px;}
._d_c00083{margin-left:-4.728000px;}
._b_c00083{margin-left:-3.492000px;}
._6_c00083{margin-left:-2.088000px;}
._c_c00083{margin-left:-1.044000px;}
._11_c00083{width:1.032000px;}
._4_c00083{width:2.070000px;}
._3_c00083{width:3.240000px;}
._7_c00083{width:5.187000px;}
._0_c00083{width:6.900000px;}
._1_c00083{width:9.180000px;}
._2_c00083{width:11.100000px;}
._e_c00083{width:12.660000px;}
._12_c00083{width:14.400000px;}
._a_c00083{width:15.447000px;}
._5_c00083{width:18.375000px;}
._8_c00083{width:20.484000px;}
._14_c00083{width:22.116000px;}
._1d_c00083{width:23.232000px;}
._17_c00083{width:25.008000px;}
._25_c00083{width:27.972000px;}
._13_c00083{width:29.052000px;}
._1f_c00083{width:30.216000px;}
._22_c00083{width:32.718000px;}
._26_c00083{width:36.561000px;}
._1e_c00083{width:39.396000px;}
._16_c00083{width:43.968000px;}
._1b_c00083{width:49.476000px;}
._15_c00083{width:53.094000px;}
._1c_c00083{width:55.956000px;}
._24_c00083{width:70.668000px;}
._21_c00083{width:116.943000px;}
._23_c00083{width:135.318000px;}
._1a_c00083{width:154.074000px;}
.fc2_c00083{color:transparent;}
.fc1_c00083{color:rgb(128,128,128);}
.fc0_c00083{color:rgb(0,0,0);}
.fs6_c00083{font-size:39.000000px;}
.fs8_c00083{font-size:48.000000px;}
.fs4_c00083{font-size:54.000000px;}
.fs2_c00083{font-size:57.000000px;}
.fs0_c00083{font-size:60.000000px;}
.fs1_c00083{font-size:63.000000px;}
.fs5_c00083{font-size:66.000000px;}
.fs7_c00083{font-size:69.000000px;}
.fs3_c00083{font-size:213.000000px;}
.y0_c00083{bottom:0.000000px;}
.y4c_c00083{bottom:3.105000px;}
.y4b_c00083{bottom:7.228355px;}
.y4a_c00083{bottom:27.585000px;}
.y27_c00083{bottom:45.885000px;}
.y26_c00083{bottom:64.785000px;}
.y25_c00083{bottom:83.235000px;}
.y49_c00083{bottom:101.535000px;}
.y24_c00083{bottom:101.835000px;}
.y23_c00083{bottom:119.835000px;}
.y48_c00083{bottom:120.135000px;}
.y47_c00083{bottom:137.985000px;}
.y22_c00083{bottom:138.585000px;}
.y46_c00083{bottom:156.285000px;}
.y21_c00083{bottom:156.585000px;}
.y45_c00083{bottom:174.735000px;}
.y20_c00083{bottom:175.035000px;}
.y44_c00083{bottom:192.585000px;}
.y1f_c00083{bottom:193.335000px;}
.y43_c00083{bottom:210.885000px;}
.y1e_c00083{bottom:211.485000px;}
.y42_c00083{bottom:229.185000px;}
.y1d_c00083{bottom:229.785000px;}
.y1c_c00083{bottom:247.935000px;}
.y41_c00083{bottom:265.485000px;}
.y1b_c00083{bottom:265.635000px;}
.y1a_c00083{bottom:283.485000px;}
.y40_c00083{bottom:283.785000px;}
.y19_c00083{bottom:301.635000px;}
.y3f_c00083{bottom:301.935000px;}
.y18_c00083{bottom:319.635000px;}
.y3e_c00083{bottom:337.485000px;}
.y17_c00083{bottom:338.535000px;}
.y3d_c00083{bottom:355.335000px;}
.y16_c00083{bottom:356.385000px;}
.y3c_c00083{bottom:373.635000px;}
.y15_c00083{bottom:374.235000px;}
.y3b_c00083{bottom:392.085000px;}
.y14_c00083{bottom:392.385000px;}
.y13_c00083{bottom:410.085000px;}
.y12_c00083{bottom:428.235000px;}
.y3a_c00083{bottom:428.535000px;}
.y39_c00083{bottom:446.385000px;}
.y11_c00083{bottom:446.535000px;}
.y38_c00083{bottom:464.085000px;}
.y10_c00083{bottom:464.385000px;}
.y37_c00083{bottom:481.935000px;}
.yf_c00083{bottom:482.235000px;}
.ye_c00083{bottom:500.085000px;}
.y36_c00083{bottom:517.935000px;}
.yd_c00083{bottom:518.085000px;}
.y35_c00083{bottom:535.935000px;}
.yc_c00083{bottom:536.235000px;}
.y34_c00083{bottom:553.485000px;}
.yb_c00083{bottom:553.785000px;}
.ya_c00083{bottom:572.085000px;}
.y33_c00083{bottom:572.385000px;}
.y8_c00083{bottom:585.435000px;}
.y32_c00083{bottom:589.935000px;}
.y9_c00083{bottom:590.835000px;}
.y31_c00083{bottom:608.385000px;}
.y30_c00083{bottom:626.985000px;}
.y7_c00083{bottom:644.235000px;}
.y2f_c00083{bottom:644.535000px;}
.y2e_c00083{bottom:662.535000px;}
.y6_c00083{bottom:663.135000px;}
.y2d_c00083{bottom:680.085000px;}
.y5_c00083{bottom:681.285000px;}
.y2c_c00083{bottom:698.535000px;}
.y4_c00083{bottom:699.285000px;}
.y3_c00083{bottom:717.135000px;}
.y2b_c00083{bottom:735.285000px;}
.y2_c00083{bottom:751.485000px;}
.y2a_c00083{bottom:753.285000px;}
.y29_c00083{bottom:770.835000px;}
.y1_c00083{bottom:791.085000px;}
.y28_c00083{bottom:791.385000px;}
.ha_c00083{height:13.200074px;}
.hb_c00083{height:43.804688px;}
.h6_c00083{height:56.592000px;}
.h4_c00083{height:59.736000px;}
.h2_c00083{height:62.880000px;}
.h8_c00083{height:65.040000px;}
.h3_c00083{height:66.024000px;}
.h7_c00083{height:69.168000px;}
.h9_c00083{height:72.312000px;}
.h5_c00083{height:223.224000px;}
.h0_c00083{height:818.625000px;}
.h1_c00083{height:819.000000px;}
.w2_c00083{width:104.875500px;}
.w0_c00083{width:565.350000px;}
.w1_c00083{width:565.500000px;}
.x0_c00083{left:0.000000px;}
.xb_c00083{left:81.900000px;}
.xa_c00083{left:82.950000px;}
.x4_c00083{left:84.300000px;}
.x3_c00083{left:85.800000px;}
.x8_c00083{left:87.750000px;}
.x5_c00083{left:108.600000px;}
.x9_c00083{left:121.500000px;}
.x6_c00083{left:150.150000px;}
.x7_c00083{left:163.950000px;}
.x2_c00083{left:186.000000px;}
.x1_c00083{left:190.650000px;}
.x11_c00083{left:234.489258px;}
.xd_c00083{left:299.250000px;}
.xf_c00083{left:302.400000px;}
.xe_c00083{left:304.650000px;}
.xc_c00083{left:305.700000px;}
.x10_c00083{left:466.350000px;}
@media print{
.v0_c00083{vertical-align:0.000000pt;}
.v1_c00083{vertical-align:81.600000pt;}
.ls9_c00083{letter-spacing:0.000000pt;}
.ls2_c00083{letter-spacing:1.682667pt;}
.ls1_c00083{letter-spacing:2.666667pt;}
.ls3_c00083{letter-spacing:3.840000pt;}
.ls8_c00083{letter-spacing:4.349333pt;}
.lsa_c00083{letter-spacing:5.333333pt;}
.ls5_c00083{letter-spacing:5.600000pt;}
.ls0_c00083{letter-spacing:6.797333pt;}
.ls4_c00083{letter-spacing:10.666667pt;}
.ls7_c00083{letter-spacing:11.282667pt;}
.ls6_c00083{letter-spacing:14.482667pt;}
.ws3_c00083{word-spacing:-23.413333pt;}
.ws0_c00083{word-spacing:-16.722667pt;}
.ws5_c00083{word-spacing:-15.413333pt;}
.ws6_c00083{word-spacing:-15.394667pt;}
.ws1_c00083{word-spacing:-12.586667pt;}
.ws2_c00083{word-spacing:-11.957333pt;}
.ws4_c00083{word-spacing:-9.461333pt;}
.ws7_c00083{word-spacing:0.000000pt;}
._9_c00083{margin-left:-13.834667pt;}
._20_c00083{margin-left:-10.816000pt;}
._18_c00083{margin-left:-8.325333pt;}
._10_c00083{margin-left:-7.192000pt;}
._19_c00083{margin-left:-6.248000pt;}
._f_c00083{margin-left:-5.328000pt;}
._d_c00083{margin-left:-4.202667pt;}
._b_c00083{margin-left:-3.104000pt;}
._6_c00083{margin-left:-1.856000pt;}
._c_c00083{margin-left:-0.928000pt;}
._11_c00083{width:0.917333pt;}
._4_c00083{width:1.840000pt;}
._3_c00083{width:2.880000pt;}
._7_c00083{width:4.610667pt;}
._0_c00083{width:6.133333pt;}
._1_c00083{width:8.160000pt;}
._2_c00083{width:9.866667pt;}
._e_c00083{width:11.253333pt;}
._12_c00083{width:12.800000pt;}
._a_c00083{width:13.730667pt;}
._5_c00083{width:16.333333pt;}
._8_c00083{width:18.208000pt;}
._14_c00083{width:19.658667pt;}
._1d_c00083{width:20.650667pt;}
._17_c00083{width:22.229333pt;}
._25_c00083{width:24.864000pt;}
._13_c00083{width:25.824000pt;}
._1f_c00083{width:26.858667pt;}
._22_c00083{width:29.082667pt;}
._26_c00083{width:32.498667pt;}
._1e_c00083{width:35.018667pt;}
._16_c00083{width:39.082667pt;}
._1b_c00083{width:43.978667pt;}
._15_c00083{width:47.194667pt;}
._1c_c00083{width:49.738667pt;}
._24_c00083{width:62.816000pt;}
._21_c00083{width:103.949333pt;}
._23_c00083{width:120.282667pt;}
._1a_c00083{width:136.954667pt;}
.fs6_c00083{font-size:34.666667pt;}
.fs8_c00083{font-size:42.666667pt;}
.fs4_c00083{font-size:48.000000pt;}
.fs2_c00083{font-size:50.666667pt;}
.fs0_c00083{font-size:53.333333pt;}
.fs1_c00083{font-size:56.000000pt;}
.fs5_c00083{font-size:58.666667pt;}
.fs7_c00083{font-size:61.333333pt;}
.fs3_c00083{font-size:189.333333pt;}
.y0_c00083{bottom:0.000000pt;}
.y4c_c00083{bottom:2.760000pt;}
.y4b_c00083{bottom:6.425204pt;}
.y4a_c00083{bottom:24.520000pt;}
.y27_c00083{bottom:40.786667pt;}
.y26_c00083{bottom:57.586667pt;}
.y25_c00083{bottom:73.986667pt;}
.y49_c00083{bottom:90.253333pt;}
.y24_c00083{bottom:90.520000pt;}
.y23_c00083{bottom:106.520000pt;}
.y48_c00083{bottom:106.786667pt;}
.y47_c00083{bottom:122.653333pt;}
.y22_c00083{bottom:123.186667pt;}
.y46_c00083{bottom:138.920000pt;}
.y21_c00083{bottom:139.186667pt;}
.y45_c00083{bottom:155.320000pt;}
.y20_c00083{bottom:155.586667pt;}
.y44_c00083{bottom:171.186667pt;}
.y1f_c00083{bottom:171.853333pt;}
.y43_c00083{bottom:187.453333pt;}
.y1e_c00083{bottom:187.986667pt;}
.y42_c00083{bottom:203.720000pt;}
.y1d_c00083{bottom:204.253333pt;}
.y1c_c00083{bottom:220.386667pt;}
.y41_c00083{bottom:235.986667pt;}
.y1b_c00083{bottom:236.120000pt;}
.y1a_c00083{bottom:251.986667pt;}
.y40_c00083{bottom:252.253333pt;}
.y19_c00083{bottom:268.120000pt;}
.y3f_c00083{bottom:268.386667pt;}
.y18_c00083{bottom:284.120000pt;}
.y3e_c00083{bottom:299.986667pt;}
.y17_c00083{bottom:300.920000pt;}
.y3d_c00083{bottom:315.853333pt;}
.y16_c00083{bottom:316.786667pt;}
.y3c_c00083{bottom:332.120000pt;}
.y15_c00083{bottom:332.653333pt;}
.y3b_c00083{bottom:348.520000pt;}
.y14_c00083{bottom:348.786667pt;}
.y13_c00083{bottom:364.520000pt;}
.y12_c00083{bottom:380.653333pt;}
.y3a_c00083{bottom:380.920000pt;}
.y39_c00083{bottom:396.786667pt;}
.y11_c00083{bottom:396.920000pt;}
.y38_c00083{bottom:412.520000pt;}
.y10_c00083{bottom:412.786667pt;}
.y37_c00083{bottom:428.386667pt;}
.yf_c00083{bottom:428.653333pt;}
.ye_c00083{bottom:444.520000pt;}
.y36_c00083{bottom:460.386667pt;}
.yd_c00083{bottom:460.520000pt;}
.y35_c00083{bottom:476.386667pt;}
.yc_c00083{bottom:476.653333pt;}
.y34_c00083{bottom:491.986667pt;}
.yb_c00083{bottom:492.253333pt;}
.ya_c00083{bottom:508.520000pt;}
.y33_c00083{bottom:508.786667pt;}
.y8_c00083{bottom:520.386667pt;}
.y32_c00083{bottom:524.386667pt;}
.y9_c00083{bottom:525.186667pt;}
.y31_c00083{bottom:540.786667pt;}
.y30_c00083{bottom:557.320000pt;}
.y7_c00083{bottom:572.653333pt;}
.y2f_c00083{bottom:572.920000pt;}
.y2e_c00083{bottom:588.920000pt;}
.y6_c00083{bottom:589.453333pt;}
.y2d_c00083{bottom:604.520000pt;}
.y5_c00083{bottom:605.586667pt;}
.y2c_c00083{bottom:620.920000pt;}
.y4_c00083{bottom:621.586667pt;}
.y3_c00083{bottom:637.453333pt;}
.y2b_c00083{bottom:653.586667pt;}
.y2_c00083{bottom:667.986667pt;}
.y2a_c00083{bottom:669.586667pt;}
.y29_c00083{bottom:685.186667pt;}
.y1_c00083{bottom:703.186667pt;}
.y28_c00083{bottom:703.453333pt;}
.ha_c00083{height:11.733399pt;}
.hb_c00083{height:38.937500pt;}
.h6_c00083{height:50.304000pt;}
.h4_c00083{height:53.098667pt;}
.h2_c00083{height:55.893333pt;}
.h8_c00083{height:57.813333pt;}
.h3_c00083{height:58.688000pt;}
.h7_c00083{height:61.482667pt;}
.h9_c00083{height:64.277333pt;}
.h5_c00083{height:198.421333pt;}
.h0_c00083{height:727.666667pt;}
.h1_c00083{height:728.000000pt;}
.w2_c00083{width:93.222667pt;}
.w0_c00083{width:502.533333pt;}
.w1_c00083{width:502.666667pt;}
.x0_c00083{left:0.000000pt;}
.xb_c00083{left:72.800000pt;}
.xa_c00083{left:73.733333pt;}
.x4_c00083{left:74.933333pt;}
.x3_c00083{left:76.266667pt;}
.x8_c00083{left:78.000000pt;}
.x5_c00083{left:96.533333pt;}
.x9_c00083{left:108.000000pt;}
.x6_c00083{left:133.466667pt;}
.x7_c00083{left:145.733333pt;}
.x2_c00083{left:165.333333pt;}
.x1_c00083{left:169.466667pt;}
.x11_c00083{left:208.434896pt;}
.xd_c00083{left:266.000000pt;}
.xf_c00083{left:268.800000pt;}
.xe_c00083{left:270.800000pt;}
.xc_c00083{left:271.733333pt;}
.x10_c00083{left:414.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ea3ff4cd09f63c9b3f1cd7a3.woff2')format("woff");}.ff1_c00084{font-family:ff1_c00084;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00084;src:url('chunks/assets/font_c63a868ff3731611af538856.woff2')format("woff");}.ff2_c00084{font-family:ff2_c00084;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00084;src:url('chunks/assets/font_31862d76bf929f38b7910647.woff2')format("woff");}.ff3_c00084{font-family:ff3_c00084;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00084;src:url('chunks/assets/font_ff93e84ccd8a47c2bad1e53f.woff2')format("woff");}.ff4_c00084{font-family:ff4_c00084;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00084;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff5_c00084{font-family:ff5_c00084;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00084{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00084{vertical-align:0.000000px;}
.ls2_c00084{letter-spacing:0.000000px;}
.ls0_c00084{letter-spacing:3.000000px;}
.ls1_c00084{letter-spacing:18.093000px;}
.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;}
}
.ws3_c00084{word-spacing:-15.774000px;}
.ws1_c00084{word-spacing:-14.160000px;}
.ws0_c00084{word-spacing:-12.036000px;}
.ws2_c00084{word-spacing:-10.761600px;}
.ws4_c00084{word-spacing:0.000000px;}
._2b_c00084{margin-left:-10.980000px;}
._7_c00084{margin-left:-7.080000px;}
._13_c00084{margin-left:-5.361000px;}
._1_c00084{margin-left:-3.420000px;}
._0_c00084{margin-left:-2.040000px;}
._a_c00084{margin-left:-1.032000px;}
._8_c00084{width:1.680000px;}
._4_c00084{width:2.820000px;}
._5_c00084{width:4.080000px;}
._d_c00084{width:5.160000px;}
._11_c00084{width:7.089000px;}
._e_c00084{width:8.568000px;}
._f_c00084{width:9.570000px;}
._1a_c00084{width:10.572000px;}
._2_c00084{width:12.120000px;}
._6_c00084{width:13.380000px;}
._b_c00084{width:15.360000px;}
._10_c00084{width:18.249000px;}
._12_c00084{width:19.881000px;}
._9_c00084{width:20.892000px;}
._16_c00084{width:22.041000px;}
._15_c00084{width:23.733000px;}
._14_c00084{width:25.047000px;}
._19_c00084{width:26.073000px;}
._1f_c00084{width:28.500000px;}
._21_c00084{width:30.540000px;}
._22_c00084{width:31.620000px;}
._23_c00084{width:34.542000px;}
._2e_c00084{width:35.724000px;}
._1c_c00084{width:37.368000px;}
._1b_c00084{width:39.180000px;}
._28_c00084{width:40.476000px;}
._1d_c00084{width:42.018000px;}
._18_c00084{width:44.991000px;}
._20_c00084{width:47.781000px;}
._3_c00084{width:49.680000px;}
._1e_c00084{width:51.780000px;}
._c_c00084{width:52.800000px;}
._17_c00084{width:54.540000px;}
._26_c00084{width:67.020000px;}
._30_c00084{width:69.291000px;}
._2d_c00084{width:71.640000px;}
._2a_c00084{width:73.326000px;}
._2c_c00084{width:74.760000px;}
._2f_c00084{width:75.951000px;}
._29_c00084{width:118.326000px;}
._27_c00084{width:138.423000px;}
._25_c00084{width:150.420000px;}
._24_c00084{width:174.720000px;}
.fc2_c00084{color:transparent;}
.fc1_c00084{color:rgb(128,128,128);}
.fc0_c00084{color:rgb(0,0,0);}
.fs3_c00084{font-size:45.600000px;}
.fs5_c00084{font-size:48.000000px;}
.fs1_c00084{font-size:51.000000px;}
.fs2_c00084{font-size:57.000000px;}
.fs0_c00084{font-size:60.000000px;}
.fs4_c00084{font-size:66.000000px;}
.y0_c00084{bottom:0.000000px;}
.y2c_c00084{bottom:3.105000px;}
.y2b_c00084{bottom:7.228357px;}
.y2a_c00084{bottom:57.480000px;}
.y29_c00084{bottom:74.280000px;}
.y28_c00084{bottom:92.130000px;}
.y27_c00084{bottom:110.130000px;}
.y26_c00084{bottom:128.580000px;}
.y25_c00084{bottom:146.580000px;}
.y24_c00084{bottom:164.730000px;}
.y23_c00084{bottom:182.880000px;}
.y22_c00084{bottom:200.880000px;}
.y21_c00084{bottom:218.730000px;}
.y20_c00084{bottom:237.330000px;}
.y1f_c00084{bottom:255.480000px;}
.y1e_c00084{bottom:273.480000px;}
.y1d_c00084{bottom:291.330000px;}
.y1c_c00084{bottom:310.230000px;}
.y1b_c00084{bottom:328.380000px;}
.y1a_c00084{bottom:346.230000px;}
.y19_c00084{bottom:364.530000px;}
.y18_c00084{bottom:383.130000px;}
.y17_c00084{bottom:400.380000px;}
.y16_c00084{bottom:418.530000px;}
.y15_c00084{bottom:436.830000px;}
.y14_c00084{bottom:454.380000px;}
.y13_c00084{bottom:472.830000px;}
.y12_c00084{bottom:490.680000px;}
.y11_c00084{bottom:509.280000px;}
.y10_c00084{bottom:526.830000px;}
.yf_c00084{bottom:545.130000px;}
.ye_c00084{bottom:563.280000px;}
.yd_c00084{bottom:581.130000px;}
.yc_c00084{bottom:598.830000px;}
.yb_c00084{bottom:616.230000px;}
.ya_c00084{bottom:635.280000px;}
.y9_c00084{bottom:652.830000px;}
.y8_c00084{bottom:671.280000px;}
.y7_c00084{bottom:689.280000px;}
.y6_c00084{bottom:706.830000px;}
.y5_c00084{bottom:725.730000px;}
.y4_c00084{bottom:743.580000px;}
.y3_c00084{bottom:762.030000px;}
.y2_c00084{bottom:779.730000px;}
.y1_c00084{bottom:797.580000px;}
.h4_c00084{height:13.200074px;}
.h5_c00084{height:43.804688px;}
.h2_c00084{height:62.880000px;}
.h3_c00084{height:69.168000px;}
.h1_c00084{height:845.250000px;}
.h0_c00084{height:845.400000px;}
.w2_c00084{width:104.875500px;}
.w1_c00084{width:571.500000px;}
.w0_c00084{width:571.575000px;}
.x0_c00084{left:0.000000px;}
.x1_c00084{left:70.500000px;}
.x2_c00084{left:71.850000px;}
.x3_c00084{left:72.900000px;}
.x4_c00084{left:73.950000px;}
.x5_c00084{left:75.300000px;}
.x6_c00084{left:76.350000px;}
.x8_c00084{left:77.400000px;}
.x7_c00084{left:78.600000px;}
.xa_c00084{left:237.601730px;}
.x9_c00084{left:483.750000px;}
@media print{
.v0_c00084{vertical-align:0.000000pt;}
.ls2_c00084{letter-spacing:0.000000pt;}
.ls0_c00084{letter-spacing:2.666667pt;}
.ls1_c00084{letter-spacing:16.082667pt;}
.ws3_c00084{word-spacing:-14.021333pt;}
.ws1_c00084{word-spacing:-12.586667pt;}
.ws0_c00084{word-spacing:-10.698667pt;}
.ws2_c00084{word-spacing:-9.565867pt;}
.ws4_c00084{word-spacing:0.000000pt;}
._2b_c00084{margin-left:-9.760000pt;}
._7_c00084{margin-left:-6.293333pt;}
._13_c00084{margin-left:-4.765333pt;}
._1_c00084{margin-left:-3.040000pt;}
._0_c00084{margin-left:-1.813333pt;}
._a_c00084{margin-left:-0.917333pt;}
._8_c00084{width:1.493333pt;}
._4_c00084{width:2.506667pt;}
._5_c00084{width:3.626667pt;}
._d_c00084{width:4.586667pt;}
._11_c00084{width:6.301333pt;}
._e_c00084{width:7.616000pt;}
._f_c00084{width:8.506667pt;}
._1a_c00084{width:9.397333pt;}
._2_c00084{width:10.773333pt;}
._6_c00084{width:11.893333pt;}
._b_c00084{width:13.653333pt;}
._10_c00084{width:16.221333pt;}
._12_c00084{width:17.672000pt;}
._9_c00084{width:18.570667pt;}
._16_c00084{width:19.592000pt;}
._15_c00084{width:21.096000pt;}
._14_c00084{width:22.264000pt;}
._19_c00084{width:23.176000pt;}
._1f_c00084{width:25.333333pt;}
._21_c00084{width:27.146667pt;}
._22_c00084{width:28.106667pt;}
._23_c00084{width:30.704000pt;}
._2e_c00084{width:31.754667pt;}
._1c_c00084{width:33.216000pt;}
._1b_c00084{width:34.826667pt;}
._28_c00084{width:35.978667pt;}
._1d_c00084{width:37.349333pt;}
._18_c00084{width:39.992000pt;}
._20_c00084{width:42.472000pt;}
._3_c00084{width:44.160000pt;}
._1e_c00084{width:46.026667pt;}
._c_c00084{width:46.933333pt;}
._17_c00084{width:48.480000pt;}
._26_c00084{width:59.573333pt;}
._30_c00084{width:61.592000pt;}
._2d_c00084{width:63.680000pt;}
._2a_c00084{width:65.178667pt;}
._2c_c00084{width:66.453333pt;}
._2f_c00084{width:67.512000pt;}
._29_c00084{width:105.178667pt;}
._27_c00084{width:123.042667pt;}
._25_c00084{width:133.706667pt;}
._24_c00084{width:155.306667pt;}
.fs3_c00084{font-size:40.533333pt;}
.fs5_c00084{font-size:42.666667pt;}
.fs1_c00084{font-size:45.333333pt;}
.fs2_c00084{font-size:50.666667pt;}
.fs0_c00084{font-size:53.333333pt;}
.fs4_c00084{font-size:58.666667pt;}
.y0_c00084{bottom:0.000000pt;}
.y2c_c00084{bottom:2.760000pt;}
.y2b_c00084{bottom:6.425206pt;}
.y2a_c00084{bottom:51.093333pt;}
.y29_c00084{bottom:66.026667pt;}
.y28_c00084{bottom:81.893333pt;}
.y27_c00084{bottom:97.893333pt;}
.y26_c00084{bottom:114.293333pt;}
.y25_c00084{bottom:130.293333pt;}
.y24_c00084{bottom:146.426667pt;}
.y23_c00084{bottom:162.560000pt;}
.y22_c00084{bottom:178.560000pt;}
.y21_c00084{bottom:194.426667pt;}
.y20_c00084{bottom:210.960000pt;}
.y1f_c00084{bottom:227.093333pt;}
.y1e_c00084{bottom:243.093333pt;}
.y1d_c00084{bottom:258.960000pt;}
.y1c_c00084{bottom:275.760000pt;}
.y1b_c00084{bottom:291.893333pt;}
.y1a_c00084{bottom:307.760000pt;}
.y19_c00084{bottom:324.026667pt;}
.y18_c00084{bottom:340.560000pt;}
.y17_c00084{bottom:355.893333pt;}
.y16_c00084{bottom:372.026667pt;}
.y15_c00084{bottom:388.293333pt;}
.y14_c00084{bottom:403.893333pt;}
.y13_c00084{bottom:420.293333pt;}
.y12_c00084{bottom:436.160000pt;}
.y11_c00084{bottom:452.693333pt;}
.y10_c00084{bottom:468.293333pt;}
.yf_c00084{bottom:484.560000pt;}
.ye_c00084{bottom:500.693333pt;}
.yd_c00084{bottom:516.560000pt;}
.yc_c00084{bottom:532.293333pt;}
.yb_c00084{bottom:547.760000pt;}
.ya_c00084{bottom:564.693333pt;}
.y9_c00084{bottom:580.293333pt;}
.y8_c00084{bottom:596.693333pt;}
.y7_c00084{bottom:612.693333pt;}
.y6_c00084{bottom:628.293333pt;}
.y5_c00084{bottom:645.093333pt;}
.y4_c00084{bottom:660.960000pt;}
.y3_c00084{bottom:677.360000pt;}
.y2_c00084{bottom:693.093333pt;}
.y1_c00084{bottom:708.960000pt;}
.h4_c00084{height:11.733399pt;}
.h5_c00084{height:38.937500pt;}
.h2_c00084{height:55.893333pt;}
.h3_c00084{height:61.482667pt;}
.h1_c00084{height:751.333333pt;}
.h0_c00084{height:751.466667pt;}
.w2_c00084{width:93.222667pt;}
.w1_c00084{width:508.000000pt;}
.w0_c00084{width:508.066667pt;}
.x0_c00084{left:0.000000pt;}
.x1_c00084{left:62.666667pt;}
.x2_c00084{left:63.866667pt;}
.x3_c00084{left:64.800000pt;}
.x4_c00084{left:65.733333pt;}
.x5_c00084{left:66.933333pt;}
.x6_c00084{left:67.866667pt;}
.x8_c00084{left:68.800000pt;}
.x7_c00084{left:69.866667pt;}
.xa_c00084{left:211.201538pt;}
.x9_c00084{left:430.000000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_95a475cdaa701f29c68c1a2e.woff2')format("woff");}.ff1_c00085{font-family:ff1_c00085;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00085;src:url('chunks/assets/font_a94867fc07135d3a0e2e576e.woff2')format("woff");}.ff2_c00085{font-family:ff2_c00085;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00085;src:url('chunks/assets/font_8ad5df4ae6480d95930c06f5.woff2')format("woff");}.ff3_c00085{font-family:ff3_c00085;line-height:1.575000;font-style:normal;font-weight:normal;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_fc277a86bd6a0aba81661cfb.woff2')format("woff");}.ff4_c00085{font-family:ff4_c00085;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00085;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff5_c00085{font-family:ff5_c00085;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00085{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00085{vertical-align:0.000000px;}
.ls3_c00085{letter-spacing:0.000000px;}
.ls4_c00085{letter-spacing:3.000000px;}
.ls1_c00085{letter-spacing:3.660000px;}
.ls2_c00085{letter-spacing:12.000000px;}
.ls0_c00085{letter-spacing:15.540000px;}
.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;}
}
.ws3_c00085{word-spacing:-29.319000px;}
.ws0_c00085{word-spacing:-20.250000px;}
.ws4_c00085{word-spacing:-17.319000px;}
.ws1_c00085{word-spacing:-15.060000px;}
.ws2_c00085{word-spacing:-5.016000px;}
.ws5_c00085{word-spacing:0.000000px;}
._12_c00085{margin-left:-19.536000px;}
._15_c00085{margin-left:-16.890000px;}
._11_c00085{margin-left:-14.595000px;}
._a_c00085{margin-left:-12.558000px;}
._7_c00085{margin-left:-11.247000px;}
._10_c00085{margin-left:-9.603000px;}
._8_c00085{margin-left:-7.728000px;}
._5_c00085{margin-left:-6.348000px;}
._6_c00085{margin-left:-4.416000px;}
._b_c00085{margin-left:-2.691000px;}
._9_c00085{margin-left:-1.104000px;}
._4_c00085{width:1.725000px;}
._1_c00085{width:3.174000px;}
._2_c00085{width:4.347000px;}
._3_c00085{width:6.072000px;}
._14_c00085{width:7.668000px;}
._f_c00085{width:9.522000px;}
._e_c00085{width:10.557000px;}
._c_c00085{width:12.075000px;}
._24_c00085{width:13.110000px;}
._13_c00085{width:14.412000px;}
._20_c00085{width:15.753000px;}
._19_c00085{width:16.788000px;}
._1a_c00085{width:18.042000px;}
._25_c00085{width:19.338000px;}
._16_c00085{width:20.424000px;}
._18_c00085{width:22.443000px;}
._d_c00085{width:23.667000px;}
._23_c00085{width:24.753000px;}
._21_c00085{width:26.616000px;}
._27_c00085{width:27.669000px;}
._22_c00085{width:32.292000px;}
._1e_c00085{width:34.224000px;}
._1f_c00085{width:36.018000px;}
._1d_c00085{width:38.151000px;}
._26_c00085{width:41.439000px;}
._1c_c00085{width:42.849000px;}
._17_c00085{width:52.275000px;}
._28_c00085{width:53.544000px;}
._1b_c00085{width:108.897000px;}
._0_c00085{width:266.478000px;}
.fc2_c00085{color:transparent;}
.fc1_c00085{color:rgb(128,128,128);}
.fc0_c00085{color:rgb(0,0,0);}
.fs4_c00085{font-size:48.000000px;}
.fs0_c00085{font-size:60.000000px;}
.fs3_c00085{font-size:63.000000px;}
.fs1_c00085{font-size:69.000000px;}
.fs2_c00085{font-size:81.000000px;}
.y0_c00085{bottom:0.000000px;}
.y57_c00085{bottom:3.105000px;}
.y56_c00085{bottom:7.228355px;}
.y55_c00085{bottom:23.985000px;}
.y54_c00085{bottom:41.535000px;}
.y2a_c00085{bottom:42.885000px;}
.y53_c00085{bottom:59.985000px;}
.y29_c00085{bottom:61.335000px;}
.y52_c00085{bottom:78.285000px;}
.y28_c00085{bottom:79.635000px;}
.y51_c00085{bottom:96.735000px;}
.y27_c00085{bottom:97.785000px;}
.y50_c00085{bottom:115.035000px;}
.y26_c00085{bottom:115.785000px;}
.y4f_c00085{bottom:132.885000px;}
.y25_c00085{bottom:133.935000px;}
.y4e_c00085{bottom:150.885000px;}
.y24_c00085{bottom:152.085000px;}
.y4d_c00085{bottom:168.735000px;}
.y23_c00085{bottom:170.385000px;}
.y4c_c00085{bottom:187.185000px;}
.y22_c00085{bottom:188.235000px;}
.y4b_c00085{bottom:205.485000px;}
.y21_c00085{bottom:206.535000px;}
.y4a_c00085{bottom:223.185000px;}
.y20_c00085{bottom:223.785000px;}
.y49_c00085{bottom:241.185000px;}
.y1f_c00085{bottom:242.235000px;}
.y48_c00085{bottom:259.185000px;}
.y1e_c00085{bottom:260.235000px;}
.y47_c00085{bottom:276.435000px;}
.y1d_c00085{bottom:277.785000px;}
.y46_c00085{bottom:294.285000px;}
.y1c_c00085{bottom:296.235000px;}
.y45_c00085{bottom:312.435000px;}
.y1b_c00085{bottom:314.085000px;}
.y44_c00085{bottom:330.735000px;}
.y1a_c00085{bottom:332.085000px;}
.y43_c00085{bottom:348.585000px;}
.y19_c00085{bottom:350.235000px;}
.y42_c00085{bottom:366.885000px;}
.y18_c00085{bottom:368.235000px;}
.y41_c00085{bottom:384.735000px;}
.y17_c00085{bottom:386.085000px;}
.y40_c00085{bottom:403.335000px;}
.y16_c00085{bottom:403.935000px;}
.y3f_c00085{bottom:421.185000px;}
.y15_c00085{bottom:421.785000px;}
.y3e_c00085{bottom:439.035000px;}
.y14_c00085{bottom:439.335000px;}
.y13_c00085{bottom:457.185000px;}
.y3d_c00085{bottom:457.335000px;}
.y12_c00085{bottom:475.185000px;}
.y3c_c00085{bottom:475.335000px;}
.y11_c00085{bottom:493.035000px;}
.y3b_c00085{bottom:493.335000px;}
.y3a_c00085{bottom:511.335000px;}
.y10_c00085{bottom:511.635000px;}
.y39_c00085{bottom:528.885000px;}
.yf_c00085{bottom:529.485000px;}
.y38_c00085{bottom:547.035000px;}
.ye_c00085{bottom:547.635000px;}
.y37_c00085{bottom:565.185000px;}
.yd_c00085{bottom:565.635000px;}
.y36_c00085{bottom:582.885000px;}
.yc_c00085{bottom:584.235000px;}
.y35_c00085{bottom:601.035000px;}
.yb_c00085{bottom:601.335000px;}
.y34_c00085{bottom:619.185000px;}
.ya_c00085{bottom:619.935000px;}
.y33_c00085{bottom:637.185000px;}
.y9_c00085{bottom:638.085000px;}
.y32_c00085{bottom:655.335000px;}
.y8_c00085{bottom:656.085000px;}
.y31_c00085{bottom:673.185000px;}
.y7_c00085{bottom:673.935000px;}
.y6_c00085{bottom:692.085000px;}
.y30_c00085{bottom:692.235000px;}
.y5_c00085{bottom:710.085000px;}
.y2f_c00085{bottom:710.685000px;}
.y4_c00085{bottom:727.635000px;}
.y2e_c00085{bottom:727.935000px;}
.y3_c00085{bottom:746.085000px;}
.y2d_c00085{bottom:746.235000px;}
.y2_c00085{bottom:763.635000px;}
.y2c_c00085{bottom:765.135000px;}
.y1_c00085{bottom:782.685000px;}
.y2b_c00085{bottom:782.985000px;}
.h5_c00085{height:13.200074px;}
.h6_c00085{height:43.804688px;}
.h4_c00085{height:66.024000px;}
.h2_c00085{height:72.312000px;}
.h3_c00085{height:87.804000px;}
.h0_c00085{height:818.625000px;}
.h1_c00085{height:819.000000px;}
.w2_c00085{width:104.875500px;}
.w0_c00085{width:565.350000px;}
.w1_c00085{width:565.500000px;}
.x0_c00085{left:0.000000px;}
.x5_c00085{left:12.150000px;}
.x6_c00085{left:13.800000px;}
.xb_c00085{left:68.850000px;}
.xa_c00085{left:70.950000px;}
.x9_c00085{left:72.000000px;}
.x8_c00085{left:73.500000px;}
.x7_c00085{left:74.700000px;}
.x3_c00085{left:75.900000px;}
.x2_c00085{left:76.950000px;}
.x4_c00085{left:78.300000px;}
.x1_c00085{left:79.650000px;}
.x13_c00085{left:234.489258px;}
.xc_c00085{left:287.250000px;}
.xd_c00085{left:295.650000px;}
.xe_c00085{left:297.300000px;}
.xf_c00085{left:298.350000px;}
.x10_c00085{left:299.400000px;}
.x11_c00085{left:300.450000px;}
.x12_c00085{left:453.600000px;}
@media print{
.v0_c00085{vertical-align:0.000000pt;}
.ls3_c00085{letter-spacing:0.000000pt;}
.ls4_c00085{letter-spacing:2.666667pt;}
.ls1_c00085{letter-spacing:3.253333pt;}
.ls2_c00085{letter-spacing:10.666667pt;}
.ls0_c00085{letter-spacing:13.813333pt;}
.ws3_c00085{word-spacing:-26.061333pt;}
.ws0_c00085{word-spacing:-18.000000pt;}
.ws4_c00085{word-spacing:-15.394667pt;}
.ws1_c00085{word-spacing:-13.386667pt;}
.ws2_c00085{word-spacing:-4.458667pt;}
.ws5_c00085{word-spacing:0.000000pt;}
._12_c00085{margin-left:-17.365333pt;}
._15_c00085{margin-left:-15.013333pt;}
._11_c00085{margin-left:-12.973333pt;}
._a_c00085{margin-left:-11.162667pt;}
._7_c00085{margin-left:-9.997333pt;}
._10_c00085{margin-left:-8.536000pt;}
._8_c00085{margin-left:-6.869333pt;}
._5_c00085{margin-left:-5.642667pt;}
._6_c00085{margin-left:-3.925333pt;}
._b_c00085{margin-left:-2.392000pt;}
._9_c00085{margin-left:-0.981333pt;}
._4_c00085{width:1.533333pt;}
._1_c00085{width:2.821333pt;}
._2_c00085{width:3.864000pt;}
._3_c00085{width:5.397333pt;}
._14_c00085{width:6.816000pt;}
._f_c00085{width:8.464000pt;}
._e_c00085{width:9.384000pt;}
._c_c00085{width:10.733333pt;}
._24_c00085{width:11.653333pt;}
._13_c00085{width:12.810667pt;}
._20_c00085{width:14.002667pt;}
._19_c00085{width:14.922667pt;}
._1a_c00085{width:16.037333pt;}
._25_c00085{width:17.189333pt;}
._16_c00085{width:18.154667pt;}
._18_c00085{width:19.949333pt;}
._d_c00085{width:21.037333pt;}
._23_c00085{width:22.002667pt;}
._21_c00085{width:23.658667pt;}
._27_c00085{width:24.594667pt;}
._22_c00085{width:28.704000pt;}
._1e_c00085{width:30.421333pt;}
._1f_c00085{width:32.016000pt;}
._1d_c00085{width:33.912000pt;}
._26_c00085{width:36.834667pt;}
._1c_c00085{width:38.088000pt;}
._17_c00085{width:46.466667pt;}
._28_c00085{width:47.594667pt;}
._1b_c00085{width:96.797333pt;}
._0_c00085{width:236.869333pt;}
.fs4_c00085{font-size:42.666667pt;}
.fs0_c00085{font-size:53.333333pt;}
.fs3_c00085{font-size:56.000000pt;}
.fs1_c00085{font-size:61.333333pt;}
.fs2_c00085{font-size:72.000000pt;}
.y0_c00085{bottom:0.000000pt;}
.y57_c00085{bottom:2.760000pt;}
.y56_c00085{bottom:6.425204pt;}
.y55_c00085{bottom:21.320000pt;}
.y54_c00085{bottom:36.920000pt;}
.y2a_c00085{bottom:38.120000pt;}
.y53_c00085{bottom:53.320000pt;}
.y29_c00085{bottom:54.520000pt;}
.y52_c00085{bottom:69.586667pt;}
.y28_c00085{bottom:70.786667pt;}
.y51_c00085{bottom:85.986667pt;}
.y27_c00085{bottom:86.920000pt;}
.y50_c00085{bottom:102.253333pt;}
.y26_c00085{bottom:102.920000pt;}
.y4f_c00085{bottom:118.120000pt;}
.y25_c00085{bottom:119.053333pt;}
.y4e_c00085{bottom:134.120000pt;}
.y24_c00085{bottom:135.186667pt;}
.y4d_c00085{bottom:149.986667pt;}
.y23_c00085{bottom:151.453333pt;}
.y4c_c00085{bottom:166.386667pt;}
.y22_c00085{bottom:167.320000pt;}
.y4b_c00085{bottom:182.653333pt;}
.y21_c00085{bottom:183.586667pt;}
.y4a_c00085{bottom:198.386667pt;}
.y20_c00085{bottom:198.920000pt;}
.y49_c00085{bottom:214.386667pt;}
.y1f_c00085{bottom:215.320000pt;}
.y48_c00085{bottom:230.386667pt;}
.y1e_c00085{bottom:231.320000pt;}
.y47_c00085{bottom:245.720000pt;}
.y1d_c00085{bottom:246.920000pt;}
.y46_c00085{bottom:261.586667pt;}
.y1c_c00085{bottom:263.320000pt;}
.y45_c00085{bottom:277.720000pt;}
.y1b_c00085{bottom:279.186667pt;}
.y44_c00085{bottom:293.986667pt;}
.y1a_c00085{bottom:295.186667pt;}
.y43_c00085{bottom:309.853333pt;}
.y19_c00085{bottom:311.320000pt;}
.y42_c00085{bottom:326.120000pt;}
.y18_c00085{bottom:327.320000pt;}
.y41_c00085{bottom:341.986667pt;}
.y17_c00085{bottom:343.186667pt;}
.y40_c00085{bottom:358.520000pt;}
.y16_c00085{bottom:359.053333pt;}
.y3f_c00085{bottom:374.386667pt;}
.y15_c00085{bottom:374.920000pt;}
.y3e_c00085{bottom:390.253333pt;}
.y14_c00085{bottom:390.520000pt;}
.y13_c00085{bottom:406.386667pt;}
.y3d_c00085{bottom:406.520000pt;}
.y12_c00085{bottom:422.386667pt;}
.y3c_c00085{bottom:422.520000pt;}
.y11_c00085{bottom:438.253333pt;}
.y3b_c00085{bottom:438.520000pt;}
.y3a_c00085{bottom:454.520000pt;}
.y10_c00085{bottom:454.786667pt;}
.y39_c00085{bottom:470.120000pt;}
.yf_c00085{bottom:470.653333pt;}
.y38_c00085{bottom:486.253333pt;}
.ye_c00085{bottom:486.786667pt;}
.y37_c00085{bottom:502.386667pt;}
.yd_c00085{bottom:502.786667pt;}
.y36_c00085{bottom:518.120000pt;}
.yc_c00085{bottom:519.320000pt;}
.y35_c00085{bottom:534.253333pt;}
.yb_c00085{bottom:534.520000pt;}
.y34_c00085{bottom:550.386667pt;}
.ya_c00085{bottom:551.053333pt;}
.y33_c00085{bottom:566.386667pt;}
.y9_c00085{bottom:567.186667pt;}
.y32_c00085{bottom:582.520000pt;}
.y8_c00085{bottom:583.186667pt;}
.y31_c00085{bottom:598.386667pt;}
.y7_c00085{bottom:599.053333pt;}
.y6_c00085{bottom:615.186667pt;}
.y30_c00085{bottom:615.320000pt;}
.y5_c00085{bottom:631.186667pt;}
.y2f_c00085{bottom:631.720000pt;}
.y4_c00085{bottom:646.786667pt;}
.y2e_c00085{bottom:647.053333pt;}
.y3_c00085{bottom:663.186667pt;}
.y2d_c00085{bottom:663.320000pt;}
.y2_c00085{bottom:678.786667pt;}
.y2c_c00085{bottom:680.120000pt;}
.y1_c00085{bottom:695.720000pt;}
.y2b_c00085{bottom:695.986667pt;}
.h5_c00085{height:11.733399pt;}
.h6_c00085{height:38.937500pt;}
.h4_c00085{height:58.688000pt;}
.h2_c00085{height:64.277333pt;}
.h3_c00085{height:78.048000pt;}
.h0_c00085{height:727.666667pt;}
.h1_c00085{height:728.000000pt;}
.w2_c00085{width:93.222667pt;}
.w0_c00085{width:502.533333pt;}
.w1_c00085{width:502.666667pt;}
.x0_c00085{left:0.000000pt;}
.x5_c00085{left:10.800000pt;}
.x6_c00085{left:12.266667pt;}
.xb_c00085{left:61.200000pt;}
.xa_c00085{left:63.066667pt;}
.x9_c00085{left:64.000000pt;}
.x8_c00085{left:65.333333pt;}
.x7_c00085{left:66.400000pt;}
.x3_c00085{left:67.466667pt;}
.x2_c00085{left:68.400000pt;}
.x4_c00085{left:69.600000pt;}
.x1_c00085{left:70.800000pt;}
.x13_c00085{left:208.434896pt;}
.xc_c00085{left:255.333333pt;}
.xd_c00085{left:262.800000pt;}
.xe_c00085{left:264.266667pt;}
.xf_c00085{left:265.200000pt;}
.x10_c00085{left:266.133333pt;}
.x11_c00085{left:267.066667pt;}
.x12_c00085{left:403.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_9830b3b279676df862a49bb3.woff2')format("woff");}.ff1_c00086{font-family:ff1_c00086;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00086;src:url('chunks/assets/font_1b25d6d5f2d6736129e667d1.woff2')format("woff");}.ff2_c00086{font-family:ff2_c00086;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00086;src:url('chunks/assets/font_824a7ebf0dca2d2ca1276ac5.woff2')format("woff");}.ff3_c00086{font-family:ff3_c00086;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00086;src:url('chunks/assets/font_1a810769b62e663943db1125.woff2')format("woff");}.ff4_c00086{font-family:ff4_c00086;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00086;src:url('chunks/assets/font_3c329f222c03a07a8c539ac1.woff2')format("woff");}.ff5_c00086{font-family:ff5_c00086;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00086;src:url('chunks/assets/font_6d77043f479724d56f238795.woff2')format("woff");}.ff6_c00086{font-family:ff6_c00086;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00086;src:url('chunks/assets/font_f39a9835345b3b067d627ee8.woff2')format("woff");}.ff7_c00086{font-family:ff7_c00086;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00086;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff8_c00086{font-family:ff8_c00086;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00086{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00086{vertical-align:0.000000px;}
.v1_c00086{vertical-align:100.200000px;}
.ls7_c00086{letter-spacing:0.000000px;}
.ls0_c00086{letter-spacing:2.040000px;}
.ls1_c00086{letter-spacing:3.000000px;}
.ls3_c00086{letter-spacing:5.400000px;}
.ls4_c00086{letter-spacing:11.490000px;}
.ls6_c00086{letter-spacing:12.000000px;}
.ls5_c00086{letter-spacing:13.140000px;}
.ls2_c00086{letter-spacing:19.740000px;}
.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;}
}
.ws4_c00086{word-spacing:-38.961000px;}
.ws3_c00086{word-spacing:-27.060000px;}
.ws1_c00086{word-spacing:-17.340000px;}
.ws2_c00086{word-spacing:-14.160000px;}
.ws0_c00086{word-spacing:-12.432000px;}
.ws5_c00086{word-spacing:0.000000px;}
._19_c00086{margin-left:-25.545000px;}
._17_c00086{margin-left:-14.595000px;}
._18_c00086{margin-left:-12.915000px;}
._1b_c00086{margin-left:-9.540000px;}
._1e_c00086{margin-left:-7.572000px;}
._e_c00086{margin-left:-5.700000px;}
._8_c00086{margin-left:-4.260000px;}
._a_c00086{margin-left:-3.000000px;}
._9_c00086{margin-left:-1.860000px;}
._b_c00086{width:1.080000px;}
._7_c00086{width:2.640000px;}
._1a_c00086{width:3.780000px;}
._13_c00086{width:5.400000px;}
._12_c00086{width:6.660000px;}
._f_c00086{width:7.740000px;}
._1d_c00086{width:8.880000px;}
._c_c00086{width:10.800000px;}
._1_c00086{width:12.540000px;}
._1f_c00086{width:14.460000px;}
._0_c00086{width:15.840000px;}
._3_c00086{width:18.960000px;}
._4_c00086{width:20.112000px;}
._25_c00086{width:22.200000px;}
._5_c00086{width:23.424000px;}
._22_c00086{width:24.720000px;}
._20_c00086{width:26.040000px;}
._26_c00086{width:27.654000px;}
._21_c00086{width:29.220000px;}
._24_c00086{width:32.040000px;}
._15_c00086{width:33.060000px;}
._14_c00086{width:34.860000px;}
._10_c00086{width:37.800000px;}
._1c_c00086{width:39.840000px;}
._2_c00086{width:42.240000px;}
._11_c00086{width:46.680000px;}
._23_c00086{width:48.900000px;}
._16_c00086{width:53.580000px;}
._d_c00086{width:61.080000px;}
._6_c00086{width:422.832000px;}
.fc2_c00086{color:transparent;}
.fc1_c00086{color:rgb(128,128,128);}
.fc0_c00086{color:rgb(0,0,0);}
.fs1_c00086{font-size:48.000000px;}
.fs0_c00086{font-size:60.000000px;}
.fs4_c00086{font-size:69.000000px;}
.fs5_c00086{font-size:81.000000px;}
.fs2_c00086{font-size:105.000000px;}
.fs3_c00086{font-size:201.000000px;}
.y0_c00086{bottom:0.000000px;}
.y50_c00086{bottom:3.105000px;}
.y4f_c00086{bottom:7.228357px;}
.y4e_c00086{bottom:48.630000px;}
.y4d_c00086{bottom:67.230000px;}
.y27_c00086{bottom:68.580000px;}
.y4c_c00086{bottom:85.380000px;}
.y26_c00086{bottom:87.180000px;}
.y4b_c00086{bottom:103.380000px;}
.y25_c00086{bottom:105.030000px;}
.y4a_c00086{bottom:121.230000px;}
.y24_c00086{bottom:123.180000px;}
.y49_c00086{bottom:138.780000px;}
.y23_c00086{bottom:141.480000px;}
.y48_c00086{bottom:157.680000px;}
.y22_c00086{bottom:159.630000px;}
.y47_c00086{bottom:176.130000px;}
.y21_c00086{bottom:177.180000px;}
.y46_c00086{bottom:193.680000px;}
.y20_c00086{bottom:196.080000px;}
.y45_c00086{bottom:212.280000px;}
.y1f_c00086{bottom:214.380000px;}
.y44_c00086{bottom:230.280000px;}
.y1e_c00086{bottom:232.530000px;}
.y43_c00086{bottom:248.130000px;}
.y1d_c00086{bottom:251.430000px;}
.y42_c00086{bottom:266.580000px;}
.y1c_c00086{bottom:268.680000px;}
.y41_c00086{bottom:284.880000px;}
.y1b_c00086{bottom:286.530000px;}
.y40_c00086{bottom:302.130000px;}
.y1a_c00086{bottom:305.730000px;}
.y3f_c00086{bottom:320.280000px;}
.y19_c00086{bottom:323.280000px;}
.y3e_c00086{bottom:338.880000px;}
.y18_c00086{bottom:341.580000px;}
.y3d_c00086{bottom:357.480000px;}
.y17_c00086{bottom:359.430000px;}
.y3c_c00086{bottom:375.630000px;}
.y16_c00086{bottom:378.330000px;}
.y3b_c00086{bottom:393.930000px;}
.y15_c00086{bottom:395.580000px;}
.y13_c00086{bottom:406.680000px;}
.y3a_c00086{bottom:411.780000px;}
.y14_c00086{bottom:413.730000px;}
.y39_c00086{bottom:430.380000px;}
.y38_c00086{bottom:447.630000px;}
.y37_c00086{bottom:465.180000px;}
.y12_c00086{bottom:467.880000px;}
.y36_c00086{bottom:484.080000px;}
.y11_c00086{bottom:486.030000px;}
.y35_c00086{bottom:502.230000px;}
.y10_c00086{bottom:503.880000px;}
.y34_c00086{bottom:520.530000px;}
.yf_c00086{bottom:522.180000px;}
.y33_c00086{bottom:538.680000px;}
.ye_c00086{bottom:539.730000px;}
.y32_c00086{bottom:556.530000px;}
.yd_c00086{bottom:574.530000px;}
.y31_c00086{bottom:593.280000px;}
.y30_c00086{bottom:610.980000px;}
.yc_c00086{bottom:611.880000px;}
.y2f_c00086{bottom:628.830000px;}
.yb_c00086{bottom:630.480000px;}
.y2e_c00086{bottom:646.980000px;}
.ya_c00086{bottom:648.330000px;}
.y2d_c00086{bottom:664.830000px;}
.y9_c00086{bottom:665.880000px;}
.y2c_c00086{bottom:683.430000px;}
.y8_c00086{bottom:683.730000px;}
.y2b_c00086{bottom:700.380000px;}
.y7_c00086{bottom:702.030000px;}
.y2a_c00086{bottom:719.580000px;}
.y6_c00086{bottom:720.180000px;}
.y29_c00086{bottom:737.730000px;}
.y5_c00086{bottom:737.880000px;}
.y28_c00086{bottom:755.730000px;}
.y4_c00086{bottom:756.030000px;}
.y3_c00086{bottom:773.880000px;}
.y2_c00086{bottom:791.880000px;}
.y1_c00086{bottom:811.980000px;}
.h8_c00086{height:13.200074px;}
.h9_c00086{height:43.804688px;}
.h2_c00086{height:62.880000px;}
.h4_c00086{height:64.020000px;}
.h6_c00086{height:72.312000px;}
.h7_c00086{height:86.427000px;}
.h3_c00086{height:110.040000px;}
.h5_c00086{height:214.467000px;}
.h1_c00086{height:845.250000px;}
.h0_c00086{height:845.400000px;}
.w2_c00086{width:104.875500px;}
.w1_c00086{width:571.500000px;}
.w0_c00086{width:571.575000px;}
.x0_c00086{left:0.000000px;}
.xf_c00086{left:71.250000px;}
.x3_c00086{left:73.500000px;}
.x2_c00086{left:74.550000px;}
.xe_c00086{left:75.900000px;}
.xd_c00086{left:76.950000px;}
.xa_c00086{left:78.300000px;}
.x7_c00086{left:87.450000px;}
.x8_c00086{left:103.650000px;}
.x4_c00086{left:106.950000px;}
.x6_c00086{left:112.050000px;}
.xc_c00086{left:116.850000px;}
.xb_c00086{left:121.950000px;}
.x5_c00086{left:143.850000px;}
.x9_c00086{left:156.600000px;}
.x1_c00086{left:212.850000px;}
.x15_c00086{left:237.601730px;}
.x12_c00086{left:290.550000px;}
.x13_c00086{left:291.900000px;}
.x10_c00086{left:292.950000px;}
.x11_c00086{left:294.000000px;}
.x14_c00086{left:466.200000px;}
@media print{
.v0_c00086{vertical-align:0.000000pt;}
.v1_c00086{vertical-align:89.066667pt;}
.ls7_c00086{letter-spacing:0.000000pt;}
.ls0_c00086{letter-spacing:1.813333pt;}
.ls1_c00086{letter-spacing:2.666667pt;}
.ls3_c00086{letter-spacing:4.800000pt;}
.ls4_c00086{letter-spacing:10.213333pt;}
.ls6_c00086{letter-spacing:10.666667pt;}
.ls5_c00086{letter-spacing:11.680000pt;}
.ls2_c00086{letter-spacing:17.546667pt;}
.ws4_c00086{word-spacing:-34.632000pt;}
.ws3_c00086{word-spacing:-24.053333pt;}
.ws1_c00086{word-spacing:-15.413333pt;}
.ws2_c00086{word-spacing:-12.586667pt;}
.ws0_c00086{word-spacing:-11.050667pt;}
.ws5_c00086{word-spacing:0.000000pt;}
._19_c00086{margin-left:-22.706667pt;}
._17_c00086{margin-left:-12.973333pt;}
._18_c00086{margin-left:-11.480000pt;}
._1b_c00086{margin-left:-8.480000pt;}
._1e_c00086{margin-left:-6.730667pt;}
._e_c00086{margin-left:-5.066667pt;}
._8_c00086{margin-left:-3.786667pt;}
._a_c00086{margin-left:-2.666667pt;}
._9_c00086{margin-left:-1.653333pt;}
._b_c00086{width:0.960000pt;}
._7_c00086{width:2.346667pt;}
._1a_c00086{width:3.360000pt;}
._13_c00086{width:4.800000pt;}
._12_c00086{width:5.920000pt;}
._f_c00086{width:6.880000pt;}
._1d_c00086{width:7.893333pt;}
._c_c00086{width:9.600000pt;}
._1_c00086{width:11.146667pt;}
._1f_c00086{width:12.853333pt;}
._0_c00086{width:14.080000pt;}
._3_c00086{width:16.853333pt;}
._4_c00086{width:17.877333pt;}
._25_c00086{width:19.733333pt;}
._5_c00086{width:20.821333pt;}
._22_c00086{width:21.973333pt;}
._20_c00086{width:23.146667pt;}
._26_c00086{width:24.581333pt;}
._21_c00086{width:25.973333pt;}
._24_c00086{width:28.480000pt;}
._15_c00086{width:29.386667pt;}
._14_c00086{width:30.986667pt;}
._10_c00086{width:33.600000pt;}
._1c_c00086{width:35.413333pt;}
._2_c00086{width:37.546667pt;}
._11_c00086{width:41.493333pt;}
._23_c00086{width:43.466667pt;}
._16_c00086{width:47.626667pt;}
._d_c00086{width:54.293333pt;}
._6_c00086{width:375.850667pt;}
.fs1_c00086{font-size:42.666667pt;}
.fs0_c00086{font-size:53.333333pt;}
.fs4_c00086{font-size:61.333333pt;}
.fs5_c00086{font-size:72.000000pt;}
.fs2_c00086{font-size:93.333333pt;}
.fs3_c00086{font-size:178.666667pt;}
.y0_c00086{bottom:0.000000pt;}
.y50_c00086{bottom:2.760000pt;}
.y4f_c00086{bottom:6.425206pt;}
.y4e_c00086{bottom:43.226667pt;}
.y4d_c00086{bottom:59.760000pt;}
.y27_c00086{bottom:60.960000pt;}
.y4c_c00086{bottom:75.893333pt;}
.y26_c00086{bottom:77.493333pt;}
.y4b_c00086{bottom:91.893333pt;}
.y25_c00086{bottom:93.360000pt;}
.y4a_c00086{bottom:107.760000pt;}
.y24_c00086{bottom:109.493333pt;}
.y49_c00086{bottom:123.360000pt;}
.y23_c00086{bottom:125.760000pt;}
.y48_c00086{bottom:140.160000pt;}
.y22_c00086{bottom:141.893333pt;}
.y47_c00086{bottom:156.560000pt;}
.y21_c00086{bottom:157.493333pt;}
.y46_c00086{bottom:172.160000pt;}
.y20_c00086{bottom:174.293333pt;}
.y45_c00086{bottom:188.693333pt;}
.y1f_c00086{bottom:190.560000pt;}
.y44_c00086{bottom:204.693333pt;}
.y1e_c00086{bottom:206.693333pt;}
.y43_c00086{bottom:220.560000pt;}
.y1d_c00086{bottom:223.493333pt;}
.y42_c00086{bottom:236.960000pt;}
.y1c_c00086{bottom:238.826667pt;}
.y41_c00086{bottom:253.226667pt;}
.y1b_c00086{bottom:254.693333pt;}
.y40_c00086{bottom:268.560000pt;}
.y1a_c00086{bottom:271.760000pt;}
.y3f_c00086{bottom:284.693333pt;}
.y19_c00086{bottom:287.360000pt;}
.y3e_c00086{bottom:301.226667pt;}
.y18_c00086{bottom:303.626667pt;}
.y3d_c00086{bottom:317.760000pt;}
.y17_c00086{bottom:319.493333pt;}
.y3c_c00086{bottom:333.893333pt;}
.y16_c00086{bottom:336.293333pt;}
.y3b_c00086{bottom:350.160000pt;}
.y15_c00086{bottom:351.626667pt;}
.y13_c00086{bottom:361.493333pt;}
.y3a_c00086{bottom:366.026667pt;}
.y14_c00086{bottom:367.760000pt;}
.y39_c00086{bottom:382.560000pt;}
.y38_c00086{bottom:397.893333pt;}
.y37_c00086{bottom:413.493333pt;}
.y12_c00086{bottom:415.893333pt;}
.y36_c00086{bottom:430.293333pt;}
.y11_c00086{bottom:432.026667pt;}
.y35_c00086{bottom:446.426667pt;}
.y10_c00086{bottom:447.893333pt;}
.y34_c00086{bottom:462.693333pt;}
.yf_c00086{bottom:464.160000pt;}
.y33_c00086{bottom:478.826667pt;}
.ye_c00086{bottom:479.760000pt;}
.y32_c00086{bottom:494.693333pt;}
.yd_c00086{bottom:510.693333pt;}
.y31_c00086{bottom:527.360000pt;}
.y30_c00086{bottom:543.093333pt;}
.yc_c00086{bottom:543.893333pt;}
.y2f_c00086{bottom:558.960000pt;}
.yb_c00086{bottom:560.426667pt;}
.y2e_c00086{bottom:575.093333pt;}
.ya_c00086{bottom:576.293333pt;}
.y2d_c00086{bottom:590.960000pt;}
.y9_c00086{bottom:591.893333pt;}
.y2c_c00086{bottom:607.493333pt;}
.y8_c00086{bottom:607.760000pt;}
.y2b_c00086{bottom:622.560000pt;}
.y7_c00086{bottom:624.026667pt;}
.y2a_c00086{bottom:639.626667pt;}
.y6_c00086{bottom:640.160000pt;}
.y29_c00086{bottom:655.760000pt;}
.y5_c00086{bottom:655.893333pt;}
.y28_c00086{bottom:671.760000pt;}
.y4_c00086{bottom:672.026667pt;}
.y3_c00086{bottom:687.893333pt;}
.y2_c00086{bottom:703.893333pt;}
.y1_c00086{bottom:721.760000pt;}
.h8_c00086{height:11.733399pt;}
.h9_c00086{height:38.937500pt;}
.h2_c00086{height:55.893333pt;}
.h4_c00086{height:56.906667pt;}
.h6_c00086{height:64.277333pt;}
.h7_c00086{height:76.824000pt;}
.h3_c00086{height:97.813333pt;}
.h5_c00086{height:190.637333pt;}
.h1_c00086{height:751.333333pt;}
.h0_c00086{height:751.466667pt;}
.w2_c00086{width:93.222667pt;}
.w1_c00086{width:508.000000pt;}
.w0_c00086{width:508.066667pt;}
.x0_c00086{left:0.000000pt;}
.xf_c00086{left:63.333333pt;}
.x3_c00086{left:65.333333pt;}
.x2_c00086{left:66.266667pt;}
.xe_c00086{left:67.466667pt;}
.xd_c00086{left:68.400000pt;}
.xa_c00086{left:69.600000pt;}
.x7_c00086{left:77.733333pt;}
.x8_c00086{left:92.133333pt;}
.x4_c00086{left:95.066667pt;}
.x6_c00086{left:99.600000pt;}
.xc_c00086{left:103.866667pt;}
.xb_c00086{left:108.400000pt;}
.x5_c00086{left:127.866667pt;}
.x9_c00086{left:139.200000pt;}
.x1_c00086{left:189.200000pt;}
.x15_c00086{left:211.201538pt;}
.x12_c00086{left:258.266667pt;}
.x13_c00086{left:259.466667pt;}
.x10_c00086{left:260.400000pt;}
.x11_c00086{left:261.333333pt;}
.x14_c00086{left:414.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_40d78b165cce0532903f9ba2.woff2')format("woff");}.ff1_c00087{font-family:ff1_c00087;line-height:1.437000;font-style:normal;font-weight:normal;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_4822b45bbc4afb7654197504.woff2')format("woff");}.ff2_c00087{font-family:ff2_c00087;line-height:1.437000;font-style:normal;font-weight:normal;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_4c1148d0329c1342e89509a9.woff2')format("woff");}.ff3_c00087{font-family:ff3_c00087;line-height:1.575000;font-style:normal;font-weight:normal;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_ada816014bcdff8fbc40a8bb.woff2')format("woff");}.ff4_c00087{font-family:ff4_c00087;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00087;src:url('chunks/assets/font_64b80106864f6ed282325e7c.woff2')format("woff");}.ff5_c00087{font-family:ff5_c00087;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00087;src:url('chunks/assets/font_7164f7fc20c479aacf7b7c04.woff2')format("woff");}.ff6_c00087{font-family:ff6_c00087;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00087;src:url('chunks/assets/font_d71ad7e6cacf31898ba184cf.woff2')format("woff");}.ff7_c00087{font-family:ff7_c00087;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00087;src:url('chunks/assets/font_47298628f31ac1f424d7ad06.woff2')format("woff");}.ff8_c00087{font-family:ff8_c00087;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00087;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff9_c00087{font-family:ff9_c00087;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00087{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00087{vertical-align:0.000000px;}
.ls9_c00087{letter-spacing:0.000000px;}
.ls7_c00087{letter-spacing:1.200000px;}
.ls8_c00087{letter-spacing:1.800000px;}
.ls6_c00087{letter-spacing:1.980000px;}
.ls5_c00087{letter-spacing:3.000000px;}
.ls4_c00087{letter-spacing:10.005000px;}
.ls0_c00087{letter-spacing:11.040000px;}
.ls2_c00087{letter-spacing:15.126000px;}
.ls3_c00087{letter-spacing:16.326000px;}
.ls1_c00087{letter-spacing:348.387000px;}
.sc__c00087{text-shadow:none;}
.sc0_c00087{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00087{-webkit-text-stroke:0px transparent;}
.sc0_c00087{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00087{word-spacing:-42.192000px;}
.ws5_c00087{word-spacing:-22.074000px;}
.wsb_c00087{word-spacing:-19.074000px;}
.wsa_c00087{word-spacing:-18.813000px;}
.wsc_c00087{word-spacing:-18.207000px;}
.ws9_c00087{word-spacing:-18.060000px;}
.ws6_c00087{word-spacing:-17.340000px;}
.ws8_c00087{word-spacing:-16.140000px;}
.ws7_c00087{word-spacing:-14.160000px;}
.wsd_c00087{word-spacing:0.000000px;}
.ws0_c00087{word-spacing:1.536000px;}
.ws2_c00087{word-spacing:3.955200px;}
.ws4_c00087{word-spacing:4.500000px;}
.ws1_c00087{word-spacing:13.487950px;}
._25_c00087{margin-left:-20.388000px;}
._21_c00087{margin-left:-18.919200px;}
._1b_c00087{margin-left:-11.004000px;}
._1c_c00087{margin-left:-9.840000px;}
._11_c00087{margin-left:-8.496000px;}
._10_c00087{margin-left:-6.984000px;}
._12_c00087{margin-left:-5.760000px;}
._15_c00087{margin-left:-4.476000px;}
._a_c00087{margin-left:-3.120000px;}
._b_c00087{margin-left:-1.740000px;}
._9_c00087{width:1.080000px;}
._8_c00087{width:2.280000px;}
._d_c00087{width:3.480000px;}
._7_c00087{width:4.800000px;}
._14_c00087{width:6.540000px;}
._f_c00087{width:7.620000px;}
._e_c00087{width:8.700000px;}
._17_c00087{width:9.900000px;}
._13_c00087{width:11.820000px;}
._1d_c00087{width:13.228800px;}
._18_c00087{width:14.383200px;}
._16_c00087{width:16.140000px;}
._22_c00087{width:18.060000px;}
._0_c00087{width:19.303200px;}
._1_c00087{width:21.321600px;}
._19_c00087{width:23.397600px;}
._5_c00087{width:25.300800px;}
._4_c00087{width:26.558400px;}
._6_c00087{width:28.932000px;}
._3_c00087{width:31.500000px;}
._23_c00087{width:32.760000px;}
._1e_c00087{width:33.938400px;}
._2_c00087{width:35.078450px;}
._1a_c00087{width:36.300000px;}
._20_c00087{width:42.000000px;}
._1f_c00087{width:49.140000px;}
._c_c00087{width:52.260000px;}
._26_c00087{width:79.080000px;}
._24_c00087{width:120.556800px;}
.fc2_c00087{color:transparent;}
.fc1_c00087{color:rgb(128,128,128);}
.fc0_c00087{color:rgb(0,0,0);}
.fs5_c00087{font-size:45.000000px;}
.fs7_c00087{font-size:48.000000px;}
.fs2_c00087{font-size:50.400000px;}
.fs0_c00087{font-size:60.000000px;}
.fs1_c00087{font-size:63.000000px;}
.fs6_c00087{font-size:66.000000px;}
.fs4_c00087{font-size:72.000000px;}
.fs3_c00087{font-size:75.000000px;}
.y0_c00087{bottom:0.000000px;}
.y50_c00087{bottom:3.105000px;}
.y4f_c00087{bottom:7.228369px;}
.y4d_c00087{bottom:34.020000px;}
.y4c_c00087{bottom:51.870000px;}
.y2c_c00087{bottom:52.920000px;}
.y4b_c00087{bottom:70.470000px;}
.y2b_c00087{bottom:71.520000px;}
.y4a_c00087{bottom:88.770000px;}
.y2a_c00087{bottom:89.820000px;}
.y29_c00087{bottom:107.970000px;}
.y49_c00087{bottom:125.520000px;}
.y28_c00087{bottom:126.270000px;}
.y48_c00087{bottom:143.370000px;}
.y27_c00087{bottom:144.120000px;}
.y47_c00087{bottom:162.270000px;}
.y26_c00087{bottom:162.570000px;}
.y46_c00087{bottom:179.820000px;}
.y25_c00087{bottom:180.120000px;}
.y24_c00087{bottom:198.420000px;}
.y45_c00087{bottom:198.720000px;}
.y44_c00087{bottom:216.270000px;}
.y23_c00087{bottom:216.570000px;}
.y43_c00087{bottom:234.120000px;}
.y22_c00087{bottom:234.570000px;}
.y42_c00087{bottom:252.420000px;}
.y21_c00087{bottom:253.020000px;}
.y20_c00087{bottom:270.720000px;}
.y41_c00087{bottom:288.270000px;}
.y1f_c00087{bottom:288.570000px;}
.y40_c00087{bottom:306.120000px;}
.y1e_c00087{bottom:306.720000px;}
.y5_c00087{bottom:323.670000px;}
.y3f_c00087{bottom:323.970000px;}
.y1d_c00087{bottom:324.720000px;}
.y4_c00087{bottom:342.570000px;}
.y1c_c00087{bottom:360.120000px;}
.y3e_c00087{bottom:361.020000px;}
.y1b_c00087{bottom:378.270000px;}
.y3d_c00087{bottom:378.720000px;}
.y1a_c00087{bottom:396.270000px;}
.y3c_c00087{bottom:396.570000px;}
.y19_c00087{bottom:414.420000px;}
.y3b_c00087{bottom:414.720000px;}
.y18_c00087{bottom:432.570000px;}
.y3a_c00087{bottom:433.620000px;}
.y17_c00087{bottom:450.570000px;}
.y39_c00087{bottom:452.220000px;}
.y16_c00087{bottom:468.720000px;}
.y38_c00087{bottom:469.770000px;}
.y15_c00087{bottom:487.020000px;}
.y37_c00087{bottom:487.620000px;}
.y14_c00087{bottom:504.570000px;}
.y36_c00087{bottom:505.620000px;}
.y3_c00087{bottom:519.720000px;}
.y13_c00087{bottom:523.020000px;}
.y35_c00087{bottom:523.470000px;}
.y12_c00087{bottom:540.720000px;}
.y4e_c00087{bottom:541.020000px;}
.y11_c00087{bottom:558.870000px;}
.y34_c00087{bottom:559.170000px;}
.y33_c00087{bottom:577.020000px;}
.y10_c00087{bottom:577.170000px;}
.y32_c00087{bottom:595.320000px;}
.yf_c00087{bottom:595.620000px;}
.ye_c00087{bottom:612.870000px;}
.y31_c00087{bottom:630.720000px;}
.yd_c00087{bottom:631.020000px;}
.y30_c00087{bottom:648.720000px;}
.yc_c00087{bottom:649.020000px;}
.y2f_c00087{bottom:666.570000px;}
.yb_c00087{bottom:667.620000px;}
.ya_c00087{bottom:685.170000px;}
.y9_c00087{bottom:703.020000px;}
.y8_c00087{bottom:721.170000px;}
.y7_c00087{bottom:739.020000px;}
.y2e_c00087{bottom:739.170000px;}
.y2d_c00087{bottom:757.020000px;}
.y6_c00087{bottom:757.620000px;}
.y2_c00087{bottom:775.170000px;}
.y1_c00087{bottom:793.770000px;}
.h8_c00087{height:13.200073px;}
.h9_c00087{height:43.804688px;}
.h2_c00087{height:62.880000px;}
.h6_c00087{height:64.020000px;}
.h1_c00087{height:66.024000px;}
.h7_c00087{height:67.221000px;}
.h5_c00087{height:70.422000px;}
.h4_c00087{height:78.048000px;}
.h3_c00087{height:80.025000px;}
.h0_c00087{height:834.000000px;}
.w2_c00087{width:104.875500px;}
.w1_c00087{width:576.000000px;}
.w0_c00087{width:576.150000px;}
.x0_c00087{left:0.000000px;}
.x4_c00087{left:19.650000px;}
.x3_c00087{left:56.100000px;}
.xa_c00087{left:75.600000px;}
.xb_c00087{left:78.600000px;}
.x8_c00087{left:79.950000px;}
.x7_c00087{left:81.000000px;}
.x6_c00087{left:82.350000px;}
.x5_c00087{left:84.150000px;}
.x2_c00087{left:86.850000px;}
.x1_c00087{left:88.200000px;}
.x9_c00087{left:122.100000px;}
.x14_c00087{left:239.889267px;}
.x11_c00087{left:297.300000px;}
.xc_c00087{left:298.650000px;}
.xe_c00087{left:300.150000px;}
.xf_c00087{left:301.500000px;}
.xd_c00087{left:315.900000px;}
.x10_c00087{left:336.150000px;}
.x12_c00087{left:470.250000px;}
.x13_c00087{left:510.300000px;}
@media print{
.v0_c00087{vertical-align:0.000000pt;}
.ls9_c00087{letter-spacing:0.000000pt;}
.ls7_c00087{letter-spacing:1.066667pt;}
.ls8_c00087{letter-spacing:1.600000pt;}
.ls6_c00087{letter-spacing:1.760000pt;}
.ls5_c00087{letter-spacing:2.666667pt;}
.ls4_c00087{letter-spacing:8.893333pt;}
.ls0_c00087{letter-spacing:9.813333pt;}
.ls2_c00087{letter-spacing:13.445333pt;}
.ls3_c00087{letter-spacing:14.512000pt;}
.ls1_c00087{letter-spacing:309.677333pt;}
.ws3_c00087{word-spacing:-37.504000pt;}
.ws5_c00087{word-spacing:-19.621333pt;}
.wsb_c00087{word-spacing:-16.954667pt;}
.wsa_c00087{word-spacing:-16.722667pt;}
.wsc_c00087{word-spacing:-16.184000pt;}
.ws9_c00087{word-spacing:-16.053333pt;}
.ws6_c00087{word-spacing:-15.413333pt;}
.ws8_c00087{word-spacing:-14.346667pt;}
.ws7_c00087{word-spacing:-12.586667pt;}
.wsd_c00087{word-spacing:0.000000pt;}
.ws0_c00087{word-spacing:1.365333pt;}
.ws2_c00087{word-spacing:3.515733pt;}
.ws4_c00087{word-spacing:4.000000pt;}
.ws1_c00087{word-spacing:11.989289pt;}
._25_c00087{margin-left:-18.122667pt;}
._21_c00087{margin-left:-16.817067pt;}
._1b_c00087{margin-left:-9.781333pt;}
._1c_c00087{margin-left:-8.746667pt;}
._11_c00087{margin-left:-7.552000pt;}
._10_c00087{margin-left:-6.208000pt;}
._12_c00087{margin-left:-5.120000pt;}
._15_c00087{margin-left:-3.978667pt;}
._a_c00087{margin-left:-2.773333pt;}
._b_c00087{margin-left:-1.546667pt;}
._9_c00087{width:0.960000pt;}
._8_c00087{width:2.026667pt;}
._d_c00087{width:3.093333pt;}
._7_c00087{width:4.266667pt;}
._14_c00087{width:5.813333pt;}
._f_c00087{width:6.773333pt;}
._e_c00087{width:7.733333pt;}
._17_c00087{width:8.800000pt;}
._13_c00087{width:10.506667pt;}
._1d_c00087{width:11.758933pt;}
._18_c00087{width:12.785067pt;}
._16_c00087{width:14.346667pt;}
._22_c00087{width:16.053333pt;}
._0_c00087{width:17.158400pt;}
._1_c00087{width:18.952533pt;}
._19_c00087{width:20.797867pt;}
._5_c00087{width:22.489600pt;}
._4_c00087{width:23.607467pt;}
._6_c00087{width:25.717333pt;}
._3_c00087{width:28.000000pt;}
._23_c00087{width:29.120000pt;}
._1e_c00087{width:30.167467pt;}
._2_c00087{width:31.180845pt;}
._1a_c00087{width:32.266667pt;}
._20_c00087{width:37.333333pt;}
._1f_c00087{width:43.680000pt;}
._c_c00087{width:46.453333pt;}
._26_c00087{width:70.293333pt;}
._24_c00087{width:107.161600pt;}
.fs5_c00087{font-size:40.000000pt;}
.fs7_c00087{font-size:42.666667pt;}
.fs2_c00087{font-size:44.800000pt;}
.fs0_c00087{font-size:53.333333pt;}
.fs1_c00087{font-size:56.000000pt;}
.fs6_c00087{font-size:58.666667pt;}
.fs4_c00087{font-size:64.000000pt;}
.fs3_c00087{font-size:66.666667pt;}
.y0_c00087{bottom:0.000000pt;}
.y50_c00087{bottom:2.760000pt;}
.y4f_c00087{bottom:6.425217pt;}
.y4d_c00087{bottom:30.240000pt;}
.y4c_c00087{bottom:46.106667pt;}
.y2c_c00087{bottom:47.040000pt;}
.y4b_c00087{bottom:62.640000pt;}
.y2b_c00087{bottom:63.573333pt;}
.y4a_c00087{bottom:78.906667pt;}
.y2a_c00087{bottom:79.840000pt;}
.y29_c00087{bottom:95.973333pt;}
.y49_c00087{bottom:111.573333pt;}
.y28_c00087{bottom:112.240000pt;}
.y48_c00087{bottom:127.440000pt;}
.y27_c00087{bottom:128.106667pt;}
.y47_c00087{bottom:144.240000pt;}
.y26_c00087{bottom:144.506667pt;}
.y46_c00087{bottom:159.840000pt;}
.y25_c00087{bottom:160.106667pt;}
.y24_c00087{bottom:176.373333pt;}
.y45_c00087{bottom:176.640000pt;}
.y44_c00087{bottom:192.240000pt;}
.y23_c00087{bottom:192.506667pt;}
.y43_c00087{bottom:208.106667pt;}
.y22_c00087{bottom:208.506667pt;}
.y42_c00087{bottom:224.373333pt;}
.y21_c00087{bottom:224.906667pt;}
.y20_c00087{bottom:240.640000pt;}
.y41_c00087{bottom:256.240000pt;}
.y1f_c00087{bottom:256.506667pt;}
.y40_c00087{bottom:272.106667pt;}
.y1e_c00087{bottom:272.640000pt;}
.y5_c00087{bottom:287.706667pt;}
.y3f_c00087{bottom:287.973333pt;}
.y1d_c00087{bottom:288.640000pt;}
.y4_c00087{bottom:304.506667pt;}
.y1c_c00087{bottom:320.106667pt;}
.y3e_c00087{bottom:320.906667pt;}
.y1b_c00087{bottom:336.240000pt;}
.y3d_c00087{bottom:336.640000pt;}
.y1a_c00087{bottom:352.240000pt;}
.y3c_c00087{bottom:352.506667pt;}
.y19_c00087{bottom:368.373333pt;}
.y3b_c00087{bottom:368.640000pt;}
.y18_c00087{bottom:384.506667pt;}
.y3a_c00087{bottom:385.440000pt;}
.y17_c00087{bottom:400.506667pt;}
.y39_c00087{bottom:401.973333pt;}
.y16_c00087{bottom:416.640000pt;}
.y38_c00087{bottom:417.573333pt;}
.y15_c00087{bottom:432.906667pt;}
.y37_c00087{bottom:433.440000pt;}
.y14_c00087{bottom:448.506667pt;}
.y36_c00087{bottom:449.440000pt;}
.y3_c00087{bottom:461.973333pt;}
.y13_c00087{bottom:464.906667pt;}
.y35_c00087{bottom:465.306667pt;}
.y12_c00087{bottom:480.640000pt;}
.y4e_c00087{bottom:480.906667pt;}
.y11_c00087{bottom:496.773333pt;}
.y34_c00087{bottom:497.040000pt;}
.y33_c00087{bottom:512.906667pt;}
.y10_c00087{bottom:513.040000pt;}
.y32_c00087{bottom:529.173333pt;}
.yf_c00087{bottom:529.440000pt;}
.ye_c00087{bottom:544.773333pt;}
.y31_c00087{bottom:560.640000pt;}
.yd_c00087{bottom:560.906667pt;}
.y30_c00087{bottom:576.640000pt;}
.yc_c00087{bottom:576.906667pt;}
.y2f_c00087{bottom:592.506667pt;}
.yb_c00087{bottom:593.440000pt;}
.ya_c00087{bottom:609.040000pt;}
.y9_c00087{bottom:624.906667pt;}
.y8_c00087{bottom:641.040000pt;}
.y7_c00087{bottom:656.906667pt;}
.y2e_c00087{bottom:657.040000pt;}
.y2d_c00087{bottom:672.906667pt;}
.y6_c00087{bottom:673.440000pt;}
.y2_c00087{bottom:689.040000pt;}
.y1_c00087{bottom:705.573333pt;}
.h8_c00087{height:11.733399pt;}
.h9_c00087{height:38.937500pt;}
.h2_c00087{height:55.893333pt;}
.h6_c00087{height:56.906667pt;}
.h1_c00087{height:58.688000pt;}
.h7_c00087{height:59.752000pt;}
.h5_c00087{height:62.597333pt;}
.h4_c00087{height:69.376000pt;}
.h3_c00087{height:71.133333pt;}
.h0_c00087{height:741.333333pt;}
.w2_c00087{width:93.222667pt;}
.w1_c00087{width:512.000000pt;}
.w0_c00087{width:512.133333pt;}
.x0_c00087{left:0.000000pt;}
.x4_c00087{left:17.466667pt;}
.x3_c00087{left:49.866667pt;}
.xa_c00087{left:67.200000pt;}
.xb_c00087{left:69.866667pt;}
.x8_c00087{left:71.066667pt;}
.x7_c00087{left:72.000000pt;}
.x6_c00087{left:73.200000pt;}
.x5_c00087{left:74.800000pt;}
.x2_c00087{left:77.200000pt;}
.x1_c00087{left:78.400000pt;}
.x9_c00087{left:108.533333pt;}
.x14_c00087{left:213.234904pt;}
.x11_c00087{left:264.266667pt;}
.xc_c00087{left:265.466667pt;}
.xe_c00087{left:266.800000pt;}
.xf_c00087{left:268.000000pt;}
.xd_c00087{left:280.800000pt;}
.x10_c00087{left:298.800000pt;}
.x12_c00087{left:418.000000pt;}
.x13_c00087{left:453.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_575f7a4de97f482178d34922.woff2')format("woff");}.ff1_c00088{font-family:ff1_c00088;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00088;src:url('chunks/assets/font_592f7116f1a8799664e64e7c.woff2')format("woff");}.ff2_c00088{font-family:ff2_c00088;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00088;src:url('chunks/assets/font_20bfd1a2256b7fd879c20a57.woff2')format("woff");}.ff3_c00088{font-family:ff3_c00088;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00088;src:url('chunks/assets/font_9c50346087e48c4822f58d47.woff2')format("woff");}.ff4_c00088{font-family:ff4_c00088;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00088;src:url('chunks/assets/font_0ce391de997f24f9f9dd37f4.woff2')format("woff");}.ff5_c00088{font-family:ff5_c00088;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00088;src:url('chunks/assets/font_c2a0610176e2c45a80c6e4ff.woff2')format("woff");}.ff6_c00088{font-family:ff6_c00088;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00088;src:url('chunks/assets/font_bea31f134e85797a89826eda.woff2')format("woff");}.ff7_c00088{font-family:ff7_c00088;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00088;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff8_c00088{font-family:ff8_c00088;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00088{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00088{vertical-align:0.000000px;}
.ls5_c00088{letter-spacing:0.000000px;}
.ls1_c00088{letter-spacing:3.000000px;}
.ls4_c00088{letter-spacing:3.030000px;}
.ls6_c00088{letter-spacing:6.000000px;}
.ls0_c00088{letter-spacing:7.800000px;}
.ls2_c00088{letter-spacing:8.940000px;}
.ls3_c00088{letter-spacing:10.200000px;}
.ls7_c00088{letter-spacing:15.000000px;}
.sc__c00088{text-shadow:none;}
.sc0_c00088{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00088{-webkit-text-stroke:0px transparent;}
.sc0_c00088{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00088{word-spacing:-46.746000px;}
.ws2_c00088{word-spacing:-35.295000px;}
.ws4_c00088{word-spacing:-19.500000px;}
.ws0_c00088{word-spacing:-18.060000px;}
.ws6_c00088{word-spacing:-17.250000px;}
.ws3_c00088{word-spacing:-15.000000px;}
.ws1_c00088{word-spacing:-14.160000px;}
.ws7_c00088{word-spacing:0.000000px;}
._21_c00088{margin-left:-28.356000px;}
._20_c00088{margin-left:-21.681000px;}
._1f_c00088{margin-left:-20.619000px;}
._1c_c00088{margin-left:-17.760000px;}
._1d_c00088{margin-left:-15.540000px;}
._c_c00088{margin-left:-13.500000px;}
._e_c00088{margin-left:-11.280000px;}
._12_c00088{margin-left:-10.080000px;}
._d_c00088{margin-left:-8.940000px;}
._9_c00088{margin-left:-7.620000px;}
._4_c00088{margin-left:-5.820000px;}
._a_c00088{margin-left:-4.680000px;}
._7_c00088{margin-left:-3.060000px;}
._5_c00088{margin-left:-1.500000px;}
._3_c00088{width:1.080000px;}
._1_c00088{width:2.100000px;}
._2_c00088{width:3.960000px;}
._0_c00088{width:5.040000px;}
._b_c00088{width:6.900000px;}
._f_c00088{width:8.280000px;}
._8_c00088{width:9.480000px;}
._13_c00088{width:10.800000px;}
._15_c00088{width:11.820000px;}
._16_c00088{width:12.900000px;}
._14_c00088{width:14.820000px;}
._1b_c00088{width:16.020000px;}
._1a_c00088{width:17.760000px;}
._10_c00088{width:23.160000px;}
._17_c00088{width:25.440000px;}
._18_c00088{width:33.840000px;}
._11_c00088{width:37.620000px;}
._19_c00088{width:66.942000px;}
._6_c00088{width:76.260000px;}
._1e_c00088{width:79.140000px;}
.fc2_c00088{color:transparent;}
.fc1_c00088{color:rgb(128,128,128);}
.fc0_c00088{color:rgb(0,0,0);}
.fs1_c00088{font-size:45.000000px;}
.fs5_c00088{font-size:48.000000px;}
.fs0_c00088{font-size:60.000000px;}
.fs2_c00088{font-size:63.000000px;}
.fs3_c00088{font-size:66.000000px;}
.fs4_c00088{font-size:69.000000px;}
.y0_c00088{bottom:0.000000px;}
.y52_c00088{bottom:3.105000px;}
.y51_c00088{bottom:7.228357px;}
.y2a_c00088{bottom:45.930000px;}
.y29_c00088{bottom:64.530000px;}
.y28_c00088{bottom:82.680000px;}
.y50_c00088{bottom:85.380000px;}
.y27_c00088{bottom:100.680000px;}
.y4f_c00088{bottom:102.930000px;}
.y26_c00088{bottom:119.580000px;}
.y4e_c00088{bottom:121.530000px;}
.y25_c00088{bottom:137.430000px;}
.y4d_c00088{bottom:138.480000px;}
.y24_c00088{bottom:155.280000px;}
.y4c_c00088{bottom:158.730000px;}
.y23_c00088{bottom:173.130000px;}
.y4b_c00088{bottom:175.830000px;}
.y22_c00088{bottom:191.730000px;}
.y4a_c00088{bottom:193.830000px;}
.y21_c00088{bottom:208.980000px;}
.y49_c00088{bottom:211.980000px;}
.y20_c00088{bottom:227.130000px;}
.y48_c00088{bottom:230.580000px;}
.y1f_c00088{bottom:245.730000px;}
.y47_c00088{bottom:248.130000px;}
.y1e_c00088{bottom:264.030000px;}
.y46_c00088{bottom:265.680000px;}
.y1d_c00088{bottom:282.480000px;}
.y45_c00088{bottom:284.580000px;}
.y1c_c00088{bottom:300.480000px;}
.y44_c00088{bottom:301.830000px;}
.y1b_c00088{bottom:318.330000px;}
.y43_c00088{bottom:319.980000px;}
.y1a_c00088{bottom:336.480000px;}
.y42_c00088{bottom:338.580000px;}
.y19_c00088{bottom:354.780000px;}
.y41_c00088{bottom:356.130000px;}
.y18_c00088{bottom:372.930000px;}
.y40_c00088{bottom:374.280000px;}
.y17_c00088{bottom:390.930000px;}
.y3f_c00088{bottom:392.580000px;}
.y16_c00088{bottom:409.380000px;}
.y3e_c00088{bottom:409.830000px;}
.y15_c00088{bottom:427.230000px;}
.y3d_c00088{bottom:428.280000px;}
.y14_c00088{bottom:444.930000px;}
.y3c_c00088{bottom:446.280000px;}
.y13_c00088{bottom:463.380000px;}
.y3b_c00088{bottom:464.130000px;}
.y12_c00088{bottom:480.930000px;}
.y3a_c00088{bottom:481.680000px;}
.y11_c00088{bottom:498.930000px;}
.y39_c00088{bottom:500.130000px;}
.y10_c00088{bottom:516.030000px;}
.y38_c00088{bottom:517.680000px;}
.yf_c00088{bottom:535.380000px;}
.y37_c00088{bottom:536.580000px;}
.ye_c00088{bottom:553.530000px;}
.y36_c00088{bottom:553.830000px;}
.yd_c00088{bottom:571.680000px;}
.y35_c00088{bottom:572.130000px;}
.yc_c00088{bottom:589.680000px;}
.y34_c00088{bottom:590.580000px;}
.yb_c00088{bottom:608.130000px;}
.y33_c00088{bottom:609.180000px;}
.ya_c00088{bottom:625.830000px;}
.y32_c00088{bottom:627.030000px;}
.y9_c00088{bottom:643.680000px;}
.y31_c00088{bottom:644.580000px;}
.y8_c00088{bottom:661.530000px;}
.y30_c00088{bottom:662.130000px;}
.y7_c00088{bottom:679.830000px;}
.y2f_c00088{bottom:681.180000px;}
.y6_c00088{bottom:697.980000px;}
.y2e_c00088{bottom:698.730000px;}
.y5_c00088{bottom:716.280000px;}
.y4_c00088{bottom:733.830000px;}
.y2d_c00088{bottom:735.030000px;}
.y3_c00088{bottom:751.980000px;}
.y2c_c00088{bottom:752.580000px;}
.y2_c00088{bottom:770.580000px;}
.y2b_c00088{bottom:771.930000px;}
.y1_c00088{bottom:788.730000px;}
.h7_c00088{height:13.200074px;}
.h8_c00088{height:43.804688px;}
.h3_c00088{height:62.880000px;}
.h2_c00088{height:64.020000px;}
.h4_c00088{height:67.221000px;}
.h5_c00088{height:70.422000px;}
.h6_c00088{height:73.623000px;}
.h1_c00088{height:845.250000px;}
.h0_c00088{height:845.400000px;}
.w1_c00088{width:104.875500px;}
.w0_c00088{width:570.750000px;}
.x0_c00088{left:0.000000px;}
.x9_c00088{left:64.800000px;}
.x1_c00088{left:67.800000px;}
.x8_c00088{left:68.850000px;}
.x7_c00088{left:70.650000px;}
.xa_c00088{left:72.600000px;}
.xb_c00088{left:73.650000px;}
.xc_c00088{left:192.450000px;}
.xd_c00088{left:237.189240px;}
.x4_c00088{left:283.500000px;}
.x5_c00088{left:288.900000px;}
.x3_c00088{left:289.950000px;}
.x2_c00088{left:291.000000px;}
.x6_c00088{left:411.750000px;}
@media print{
.v0_c00088{vertical-align:0.000000pt;}
.ls5_c00088{letter-spacing:0.000000pt;}
.ls1_c00088{letter-spacing:2.666667pt;}
.ls4_c00088{letter-spacing:2.693333pt;}
.ls6_c00088{letter-spacing:5.333333pt;}
.ls0_c00088{letter-spacing:6.933333pt;}
.ls2_c00088{letter-spacing:7.946667pt;}
.ls3_c00088{letter-spacing:9.066667pt;}
.ls7_c00088{letter-spacing:13.333333pt;}
.ws5_c00088{word-spacing:-41.552000pt;}
.ws2_c00088{word-spacing:-31.373333pt;}
.ws4_c00088{word-spacing:-17.333333pt;}
.ws0_c00088{word-spacing:-16.053333pt;}
.ws6_c00088{word-spacing:-15.333333pt;}
.ws3_c00088{word-spacing:-13.333333pt;}
.ws1_c00088{word-spacing:-12.586667pt;}
.ws7_c00088{word-spacing:0.000000pt;}
._21_c00088{margin-left:-25.205333pt;}
._20_c00088{margin-left:-19.272000pt;}
._1f_c00088{margin-left:-18.328000pt;}
._1c_c00088{margin-left:-15.786667pt;}
._1d_c00088{margin-left:-13.813333pt;}
._c_c00088{margin-left:-12.000000pt;}
._e_c00088{margin-left:-10.026667pt;}
._12_c00088{margin-left:-8.960000pt;}
._d_c00088{margin-left:-7.946667pt;}
._9_c00088{margin-left:-6.773333pt;}
._4_c00088{margin-left:-5.173333pt;}
._a_c00088{margin-left:-4.160000pt;}
._7_c00088{margin-left:-2.720000pt;}
._5_c00088{margin-left:-1.333333pt;}
._3_c00088{width:0.960000pt;}
._1_c00088{width:1.866667pt;}
._2_c00088{width:3.520000pt;}
._0_c00088{width:4.480000pt;}
._b_c00088{width:6.133333pt;}
._f_c00088{width:7.360000pt;}
._8_c00088{width:8.426667pt;}
._13_c00088{width:9.600000pt;}
._15_c00088{width:10.506667pt;}
._16_c00088{width:11.466667pt;}
._14_c00088{width:13.173333pt;}
._1b_c00088{width:14.240000pt;}
._1a_c00088{width:15.786667pt;}
._10_c00088{width:20.586667pt;}
._17_c00088{width:22.613333pt;}
._18_c00088{width:30.080000pt;}
._11_c00088{width:33.440000pt;}
._19_c00088{width:59.504000pt;}
._6_c00088{width:67.786667pt;}
._1e_c00088{width:70.346667pt;}
.fs1_c00088{font-size:40.000000pt;}
.fs5_c00088{font-size:42.666667pt;}
.fs0_c00088{font-size:53.333333pt;}
.fs2_c00088{font-size:56.000000pt;}
.fs3_c00088{font-size:58.666667pt;}
.fs4_c00088{font-size:61.333333pt;}
.y0_c00088{bottom:0.000000pt;}
.y52_c00088{bottom:2.760000pt;}
.y51_c00088{bottom:6.425206pt;}
.y2a_c00088{bottom:40.826667pt;}
.y29_c00088{bottom:57.360000pt;}
.y28_c00088{bottom:73.493333pt;}
.y50_c00088{bottom:75.893333pt;}
.y27_c00088{bottom:89.493333pt;}
.y4f_c00088{bottom:91.493333pt;}
.y26_c00088{bottom:106.293333pt;}
.y4e_c00088{bottom:108.026667pt;}
.y25_c00088{bottom:122.160000pt;}
.y4d_c00088{bottom:123.093333pt;}
.y24_c00088{bottom:138.026667pt;}
.y4c_c00088{bottom:141.093333pt;}
.y23_c00088{bottom:153.893333pt;}
.y4b_c00088{bottom:156.293333pt;}
.y22_c00088{bottom:170.426667pt;}
.y4a_c00088{bottom:172.293333pt;}
.y21_c00088{bottom:185.760000pt;}
.y49_c00088{bottom:188.426667pt;}
.y20_c00088{bottom:201.893333pt;}
.y48_c00088{bottom:204.960000pt;}
.y1f_c00088{bottom:218.426667pt;}
.y47_c00088{bottom:220.560000pt;}
.y1e_c00088{bottom:234.693333pt;}
.y46_c00088{bottom:236.160000pt;}
.y1d_c00088{bottom:251.093333pt;}
.y45_c00088{bottom:252.960000pt;}
.y1c_c00088{bottom:267.093333pt;}
.y44_c00088{bottom:268.293333pt;}
.y1b_c00088{bottom:282.960000pt;}
.y43_c00088{bottom:284.426667pt;}
.y1a_c00088{bottom:299.093333pt;}
.y42_c00088{bottom:300.960000pt;}
.y19_c00088{bottom:315.360000pt;}
.y41_c00088{bottom:316.560000pt;}
.y18_c00088{bottom:331.493333pt;}
.y40_c00088{bottom:332.693333pt;}
.y17_c00088{bottom:347.493333pt;}
.y3f_c00088{bottom:348.960000pt;}
.y16_c00088{bottom:363.893333pt;}
.y3e_c00088{bottom:364.293333pt;}
.y15_c00088{bottom:379.760000pt;}
.y3d_c00088{bottom:380.693333pt;}
.y14_c00088{bottom:395.493333pt;}
.y3c_c00088{bottom:396.693333pt;}
.y13_c00088{bottom:411.893333pt;}
.y3b_c00088{bottom:412.560000pt;}
.y12_c00088{bottom:427.493333pt;}
.y3a_c00088{bottom:428.160000pt;}
.y11_c00088{bottom:443.493333pt;}
.y39_c00088{bottom:444.560000pt;}
.y10_c00088{bottom:458.693333pt;}
.y38_c00088{bottom:460.160000pt;}
.yf_c00088{bottom:475.893333pt;}
.y37_c00088{bottom:476.960000pt;}
.ye_c00088{bottom:492.026667pt;}
.y36_c00088{bottom:492.293333pt;}
.yd_c00088{bottom:508.160000pt;}
.y35_c00088{bottom:508.560000pt;}
.yc_c00088{bottom:524.160000pt;}
.y34_c00088{bottom:524.960000pt;}
.yb_c00088{bottom:540.560000pt;}
.y33_c00088{bottom:541.493333pt;}
.ya_c00088{bottom:556.293333pt;}
.y32_c00088{bottom:557.360000pt;}
.y9_c00088{bottom:572.160000pt;}
.y31_c00088{bottom:572.960000pt;}
.y8_c00088{bottom:588.026667pt;}
.y30_c00088{bottom:588.560000pt;}
.y7_c00088{bottom:604.293333pt;}
.y2f_c00088{bottom:605.493333pt;}
.y6_c00088{bottom:620.426667pt;}
.y2e_c00088{bottom:621.093333pt;}
.y5_c00088{bottom:636.693333pt;}
.y4_c00088{bottom:652.293333pt;}
.y2d_c00088{bottom:653.360000pt;}
.y3_c00088{bottom:668.426667pt;}
.y2c_c00088{bottom:668.960000pt;}
.y2_c00088{bottom:684.960000pt;}
.y2b_c00088{bottom:686.160000pt;}
.y1_c00088{bottom:701.093333pt;}
.h7_c00088{height:11.733399pt;}
.h8_c00088{height:38.937500pt;}
.h3_c00088{height:55.893333pt;}
.h2_c00088{height:56.906667pt;}
.h4_c00088{height:59.752000pt;}
.h5_c00088{height:62.597333pt;}
.h6_c00088{height:65.442667pt;}
.h1_c00088{height:751.333333pt;}
.h0_c00088{height:751.466667pt;}
.w1_c00088{width:93.222667pt;}
.w0_c00088{width:507.333333pt;}
.x0_c00088{left:0.000000pt;}
.x9_c00088{left:57.600000pt;}
.x1_c00088{left:60.266667pt;}
.x8_c00088{left:61.200000pt;}
.x7_c00088{left:62.800000pt;}
.xa_c00088{left:64.533333pt;}
.xb_c00088{left:65.466667pt;}
.xc_c00088{left:171.066667pt;}
.xd_c00088{left:210.834880pt;}
.x4_c00088{left:252.000000pt;}
.x5_c00088{left:256.800000pt;}
.x3_c00088{left:257.733333pt;}
.x2_c00088{left:258.666667pt;}
.x6_c00088{left:366.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_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_5a2e0de10e08a9fa220a43df.woff2')format("woff");}.ff1_c00089{font-family:ff1_c00089;line-height:1.437000;font-style:normal;font-weight:normal;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_f4a4577bbfd7f4a5ef903539.woff2')format("woff");}.ff2_c00089{font-family:ff2_c00089;line-height:1.437000;font-style:normal;font-weight:normal;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_c3688b0ec51aa2e8f5703481.woff2')format("woff");}.ff3_c00089{font-family:ff3_c00089;line-height:1.437000;font-style:normal;font-weight:normal;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_bcb15bf0379e19ee5ed47079.woff2')format("woff");}.ff4_c00089{font-family:ff4_c00089;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00089;src:url('chunks/assets/font_c365d0314e8bde4dce7dddaf.woff2')format("woff");}.ff5_c00089{font-family:ff5_c00089;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00089;src:url('chunks/assets/font_4c33a35bc2f57d136867a9fe.woff2')format("woff");}.ff6_c00089{font-family:ff6_c00089;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00089;src:url('chunks/assets/font_4fe2ffb85c16d71f4c25747f.woff2')format("woff");}.ff7_c00089{font-family:ff7_c00089;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00089;src:url('chunks/assets/font_20eaf075851559a4b33134fb.woff2')format("woff");}.ff8_c00089{font-family:ff8_c00089;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00089;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff9_c00089{font-family:ff9_c00089;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00089{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00089{vertical-align:0.000000px;}
.v1_c00089{vertical-align:97.200000px;}
.ls7_c00089{letter-spacing:0.000000px;}
.ls2_c00089{letter-spacing:1.860000px;}
.ls0_c00089{letter-spacing:3.000000px;}
.ls8_c00089{letter-spacing:6.000000px;}
.ls4_c00089{letter-spacing:9.540000px;}
.ls5_c00089{letter-spacing:11.280000px;}
.ls6_c00089{letter-spacing:12.600000px;}
.ls3_c00089{letter-spacing:16.740000px;}
.ls1_c00089{letter-spacing:40.014000px;}
.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;}
}
.ws5_c00089{word-spacing:-47.565000px;}
.ws4_c00089{word-spacing:-35.295000px;}
.ws0_c00089{word-spacing:-18.060000px;}
.ws2_c00089{word-spacing:-17.340000px;}
.ws3_c00089{word-spacing:-15.189000px;}
.ws1_c00089{word-spacing:-14.160000px;}
.ws6_c00089{word-spacing:0.000000px;}
._2c_c00089{margin-left:-27.420000px;}
._1c_c00089{margin-left:-21.120000px;}
._1a_c00089{margin-left:-18.375000px;}
._2b_c00089{margin-left:-14.835000px;}
._2f_c00089{margin-left:-12.780000px;}
._2e_c00089{margin-left:-11.520000px;}
._e_c00089{margin-left:-10.380000px;}
._20_c00089{margin-left:-9.288000px;}
._f_c00089{margin-left:-8.040000px;}
._b_c00089{margin-left:-6.960000px;}
._d_c00089{margin-left:-5.940000px;}
._9_c00089{margin-left:-4.200000px;}
._8_c00089{margin-left:-2.580000px;}
._c_c00089{margin-left:-1.440000px;}
._0_c00089{width:1.320000px;}
._a_c00089{width:2.760000px;}
._5_c00089{width:4.500000px;}
._3_c00089{width:6.300000px;}
._4_c00089{width:7.800000px;}
._6_c00089{width:9.120000px;}
._7_c00089{width:10.740000px;}
._2_c00089{width:11.940000px;}
._15_c00089{width:13.821000px;}
._1_c00089{width:15.240000px;}
._24_c00089{width:16.440000px;}
._25_c00089{width:17.700000px;}
._13_c00089{width:18.840000px;}
._11_c00089{width:19.920000px;}
._10_c00089{width:21.780000px;}
._1b_c00089{width:23.880000px;}
._1e_c00089{width:25.680000px;}
._2a_c00089{width:26.820000px;}
._21_c00089{width:29.280000px;}
._18_c00089{width:32.244000px;}
._12_c00089{width:35.280000px;}
._17_c00089{width:36.894000px;}
._1f_c00089{width:41.100000px;}
._1d_c00089{width:43.740000px;}
._19_c00089{width:51.480000px;}
._14_c00089{width:75.780000px;}
._29_c00089{width:77.040000px;}
._23_c00089{width:80.829000px;}
._2d_c00089{width:95.280000px;}
._27_c00089{width:99.660000px;}
._16_c00089{width:160.905000px;}
._22_c00089{width:167.520000px;}
._26_c00089{width:209.160000px;}
._28_c00089{width:232.260000px;}
.fc2_c00089{color:transparent;}
.fc1_c00089{color:rgb(128,128,128);}
.fc0_c00089{color:rgb(0,0,0);}
.fs4_c00089{font-size:45.000000px;}
.fs6_c00089{font-size:48.000000px;}
.fs2_c00089{font-size:51.000000px;}
.fs0_c00089{font-size:60.000000px;}
.fs3_c00089{font-size:69.000000px;}
.fs5_c00089{font-size:72.000000px;}
.fs1_c00089{font-size:189.000000px;}
.y0_c00089{bottom:0.000000px;}
.y4a_c00089{bottom:3.105000px;}
.y49_c00089{bottom:7.228369px;}
.y48_c00089{bottom:42.870000px;}
.y3a_c00089{bottom:59.970000px;}
.y47_c00089{bottom:60.720000px;}
.y39_c00089{bottom:78.570000px;}
.y46_c00089{bottom:79.620000px;}
.y38_c00089{bottom:96.870000px;}
.y45_c00089{bottom:97.170000px;}
.y37_c00089{bottom:115.020000px;}
.y44_c00089{bottom:115.770000px;}
.y36_c00089{bottom:133.620000px;}
.y43_c00089{bottom:134.070000px;}
.y35_c00089{bottom:151.170000px;}
.y42_c00089{bottom:152.220000px;}
.y34_c00089{bottom:170.070000px;}
.y41_c00089{bottom:170.370000px;}
.y33_c00089{bottom:187.320000px;}
.y40_c00089{bottom:188.670000px;}
.y32_c00089{bottom:205.920000px;}
.y3f_c00089{bottom:206.520000px;}
.y3e_c00089{bottom:224.370000px;}
.y31_c00089{bottom:224.670000px;}
.y30_c00089{bottom:242.370000px;}
.y2f_c00089{bottom:260.520000px;}
.y2e_c00089{bottom:278.370000px;}
.y3d_c00089{bottom:278.820000px;}
.y2d_c00089{bottom:296.220000px;}
.y3c_c00089{bottom:296.670000px;}
.y2c_c00089{bottom:313.920000px;}
.y3b_c00089{bottom:314.220000px;}
.y2b_c00089{bottom:332.070000px;}
.y2a_c00089{bottom:350.670000px;}
.y29_c00089{bottom:368.520000px;}
.y28_c00089{bottom:386.370000px;}
.y27_c00089{bottom:403.620000px;}
.y1c_c00089{bottom:421.770000px;}
.y26_c00089{bottom:423.120000px;}
.y1b_c00089{bottom:439.770000px;}
.y25_c00089{bottom:440.670000px;}
.y1a_c00089{bottom:457.320000px;}
.y24_c00089{bottom:459.270000px;}
.y19_c00089{bottom:476.520000px;}
.y23_c00089{bottom:476.820000px;}
.y18_c00089{bottom:494.370000px;}
.y22_c00089{bottom:495.120000px;}
.y17_c00089{bottom:512.970000px;}
.y21_c00089{bottom:513.270000px;}
.y16_c00089{bottom:530.520000px;}
.y20_c00089{bottom:548.670000px;}
.y15_c00089{bottom:549.720000px;}
.y1f_c00089{bottom:566.670000px;}
.y14_c00089{bottom:566.970000px;}
.y13_c00089{bottom:584.520000px;}
.y1e_c00089{bottom:602.670000px;}
.y12_c00089{bottom:603.120000px;}
.yb_c00089{bottom:614.820000px;}
.y11_c00089{bottom:621.270000px;}
.y1d_c00089{bottom:621.570000px;}
.yc_c00089{bottom:621.720000px;}
.ya_c00089{bottom:657.120000px;}
.y9_c00089{bottom:675.570000px;}
.y10_c00089{bottom:676.320000px;}
.y8_c00089{bottom:693.270000px;}
.yf_c00089{bottom:694.620000px;}
.y7_c00089{bottom:711.420000px;}
.ye_c00089{bottom:713.070000px;}
.y6_c00089{bottom:729.570000px;}
.yd_c00089{bottom:730.620000px;}
.y5_c00089{bottom:747.870000px;}
.y1_c00089{bottom:764.370000px;}
.y4_c00089{bottom:766.020000px;}
.y3_c00089{bottom:784.920000px;}
.y2_c00089{bottom:805.170000px;}
.h7_c00089{height:13.200073px;}
.h8_c00089{height:43.804688px;}
.h3_c00089{height:53.448000px;}
.h1_c00089{height:62.880000px;}
.h6_c00089{height:64.020000px;}
.h4_c00089{height:73.623000px;}
.h5_c00089{height:75.456000px;}
.h2_c00089{height:198.072000px;}
.h0_c00089{height:834.000000px;}
.w2_c00089{width:104.875500px;}
.w1_c00089{width:576.000000px;}
.w0_c00089{width:576.150000px;}
.x0_c00089{left:0.000000px;}
.xe_c00089{left:36.000000px;}
.x10_c00089{left:74.850000px;}
.x1a_c00089{left:88.650000px;}
.x16_c00089{left:90.000000px;}
.x17_c00089{left:92.250000px;}
.xd_c00089{left:93.450000px;}
.xf_c00089{left:95.400000px;}
.xc_c00089{left:98.550000px;}
.x6_c00089{left:99.600000px;}
.x8_c00089{left:102.150000px;}
.x11_c00089{left:119.100000px;}
.x9_c00089{left:121.200000px;}
.x19_c00089{left:128.850000px;}
.x18_c00089{left:138.300000px;}
.x7_c00089{left:144.900000px;}
.xa_c00089{left:157.050000px;}
.x1_c00089{left:167.700000px;}
.xb_c00089{left:180.600000px;}
.x1c_c00089{left:239.889267px;}
.x12_c00089{left:314.100000px;}
.x13_c00089{left:315.300000px;}
.x15_c00089{left:316.350000px;}
.x14_c00089{left:318.000000px;}
.x3_c00089{left:319.200000px;}
.x5_c00089{left:320.850000px;}
.x4_c00089{left:322.200000px;}
.x2_c00089{left:325.350000px;}
.x1b_c00089{left:479.550000px;}
@media print{
.v0_c00089{vertical-align:0.000000pt;}
.v1_c00089{vertical-align:86.400000pt;}
.ls7_c00089{letter-spacing:0.000000pt;}
.ls2_c00089{letter-spacing:1.653333pt;}
.ls0_c00089{letter-spacing:2.666667pt;}
.ls8_c00089{letter-spacing:5.333333pt;}
.ls4_c00089{letter-spacing:8.480000pt;}
.ls5_c00089{letter-spacing:10.026667pt;}
.ls6_c00089{letter-spacing:11.200000pt;}
.ls3_c00089{letter-spacing:14.880000pt;}
.ls1_c00089{letter-spacing:35.568000pt;}
.ws5_c00089{word-spacing:-42.280000pt;}
.ws4_c00089{word-spacing:-31.373333pt;}
.ws0_c00089{word-spacing:-16.053333pt;}
.ws2_c00089{word-spacing:-15.413333pt;}
.ws3_c00089{word-spacing:-13.501333pt;}
.ws1_c00089{word-spacing:-12.586667pt;}
.ws6_c00089{word-spacing:0.000000pt;}
._2c_c00089{margin-left:-24.373333pt;}
._1c_c00089{margin-left:-18.773333pt;}
._1a_c00089{margin-left:-16.333333pt;}
._2b_c00089{margin-left:-13.186667pt;}
._2f_c00089{margin-left:-11.360000pt;}
._2e_c00089{margin-left:-10.240000pt;}
._e_c00089{margin-left:-9.226667pt;}
._20_c00089{margin-left:-8.256000pt;}
._f_c00089{margin-left:-7.146667pt;}
._b_c00089{margin-left:-6.186667pt;}
._d_c00089{margin-left:-5.280000pt;}
._9_c00089{margin-left:-3.733333pt;}
._8_c00089{margin-left:-2.293333pt;}
._c_c00089{margin-left:-1.280000pt;}
._0_c00089{width:1.173333pt;}
._a_c00089{width:2.453333pt;}
._5_c00089{width:4.000000pt;}
._3_c00089{width:5.600000pt;}
._4_c00089{width:6.933333pt;}
._6_c00089{width:8.106667pt;}
._7_c00089{width:9.546667pt;}
._2_c00089{width:10.613333pt;}
._15_c00089{width:12.285333pt;}
._1_c00089{width:13.546667pt;}
._24_c00089{width:14.613333pt;}
._25_c00089{width:15.733333pt;}
._13_c00089{width:16.746667pt;}
._11_c00089{width:17.706667pt;}
._10_c00089{width:19.360000pt;}
._1b_c00089{width:21.226667pt;}
._1e_c00089{width:22.826667pt;}
._2a_c00089{width:23.840000pt;}
._21_c00089{width:26.026667pt;}
._18_c00089{width:28.661333pt;}
._12_c00089{width:31.360000pt;}
._17_c00089{width:32.794667pt;}
._1f_c00089{width:36.533333pt;}
._1d_c00089{width:38.880000pt;}
._19_c00089{width:45.760000pt;}
._14_c00089{width:67.360000pt;}
._29_c00089{width:68.480000pt;}
._23_c00089{width:71.848000pt;}
._2d_c00089{width:84.693333pt;}
._27_c00089{width:88.586667pt;}
._16_c00089{width:143.026667pt;}
._22_c00089{width:148.906667pt;}
._26_c00089{width:185.920000pt;}
._28_c00089{width:206.453333pt;}
.fs4_c00089{font-size:40.000000pt;}
.fs6_c00089{font-size:42.666667pt;}
.fs2_c00089{font-size:45.333333pt;}
.fs0_c00089{font-size:53.333333pt;}
.fs3_c00089{font-size:61.333333pt;}
.fs5_c00089{font-size:64.000000pt;}
.fs1_c00089{font-size:168.000000pt;}
.y0_c00089{bottom:0.000000pt;}
.y4a_c00089{bottom:2.760000pt;}
.y49_c00089{bottom:6.425217pt;}
.y48_c00089{bottom:38.106667pt;}
.y3a_c00089{bottom:53.306667pt;}
.y47_c00089{bottom:53.973333pt;}
.y39_c00089{bottom:69.840000pt;}
.y46_c00089{bottom:70.773333pt;}
.y38_c00089{bottom:86.106667pt;}
.y45_c00089{bottom:86.373333pt;}
.y37_c00089{bottom:102.240000pt;}
.y44_c00089{bottom:102.906667pt;}
.y36_c00089{bottom:118.773333pt;}
.y43_c00089{bottom:119.173333pt;}
.y35_c00089{bottom:134.373333pt;}
.y42_c00089{bottom:135.306667pt;}
.y34_c00089{bottom:151.173333pt;}
.y41_c00089{bottom:151.440000pt;}
.y33_c00089{bottom:166.506667pt;}
.y40_c00089{bottom:167.706667pt;}
.y32_c00089{bottom:183.040000pt;}
.y3f_c00089{bottom:183.573333pt;}
.y3e_c00089{bottom:199.440000pt;}
.y31_c00089{bottom:199.706667pt;}
.y30_c00089{bottom:215.440000pt;}
.y2f_c00089{bottom:231.573333pt;}
.y2e_c00089{bottom:247.440000pt;}
.y3d_c00089{bottom:247.840000pt;}
.y2d_c00089{bottom:263.306667pt;}
.y3c_c00089{bottom:263.706667pt;}
.y2c_c00089{bottom:279.040000pt;}
.y3b_c00089{bottom:279.306667pt;}
.y2b_c00089{bottom:295.173333pt;}
.y2a_c00089{bottom:311.706667pt;}
.y29_c00089{bottom:327.573333pt;}
.y28_c00089{bottom:343.440000pt;}
.y27_c00089{bottom:358.773333pt;}
.y1c_c00089{bottom:374.906667pt;}
.y26_c00089{bottom:376.106667pt;}
.y1b_c00089{bottom:390.906667pt;}
.y25_c00089{bottom:391.706667pt;}
.y1a_c00089{bottom:406.506667pt;}
.y24_c00089{bottom:408.240000pt;}
.y19_c00089{bottom:423.573333pt;}
.y23_c00089{bottom:423.840000pt;}
.y18_c00089{bottom:439.440000pt;}
.y22_c00089{bottom:440.106667pt;}
.y17_c00089{bottom:455.973333pt;}
.y21_c00089{bottom:456.240000pt;}
.y16_c00089{bottom:471.573333pt;}
.y20_c00089{bottom:487.706667pt;}
.y15_c00089{bottom:488.640000pt;}
.y1f_c00089{bottom:503.706667pt;}
.y14_c00089{bottom:503.973333pt;}
.y13_c00089{bottom:519.573333pt;}
.y1e_c00089{bottom:535.706667pt;}
.y12_c00089{bottom:536.106667pt;}
.yb_c00089{bottom:546.506667pt;}
.y11_c00089{bottom:552.240000pt;}
.y1d_c00089{bottom:552.506667pt;}
.yc_c00089{bottom:552.640000pt;}
.ya_c00089{bottom:584.106667pt;}
.y9_c00089{bottom:600.506667pt;}
.y10_c00089{bottom:601.173333pt;}
.y8_c00089{bottom:616.240000pt;}
.yf_c00089{bottom:617.440000pt;}
.y7_c00089{bottom:632.373333pt;}
.ye_c00089{bottom:633.840000pt;}
.y6_c00089{bottom:648.506667pt;}
.yd_c00089{bottom:649.440000pt;}
.y5_c00089{bottom:664.773333pt;}
.y1_c00089{bottom:679.440000pt;}
.y4_c00089{bottom:680.906667pt;}
.y3_c00089{bottom:697.706667pt;}
.y2_c00089{bottom:715.706667pt;}
.h7_c00089{height:11.733399pt;}
.h8_c00089{height:38.937500pt;}
.h3_c00089{height:47.509333pt;}
.h1_c00089{height:55.893333pt;}
.h6_c00089{height:56.906667pt;}
.h4_c00089{height:65.442667pt;}
.h5_c00089{height:67.072000pt;}
.h2_c00089{height:176.064000pt;}
.h0_c00089{height:741.333333pt;}
.w2_c00089{width:93.222667pt;}
.w1_c00089{width:512.000000pt;}
.w0_c00089{width:512.133333pt;}
.x0_c00089{left:0.000000pt;}
.xe_c00089{left:32.000000pt;}
.x10_c00089{left:66.533333pt;}
.x1a_c00089{left:78.800000pt;}
.x16_c00089{left:80.000000pt;}
.x17_c00089{left:82.000000pt;}
.xd_c00089{left:83.066667pt;}
.xf_c00089{left:84.800000pt;}
.xc_c00089{left:87.600000pt;}
.x6_c00089{left:88.533333pt;}
.x8_c00089{left:90.800000pt;}
.x11_c00089{left:105.866667pt;}
.x9_c00089{left:107.733333pt;}
.x19_c00089{left:114.533333pt;}
.x18_c00089{left:122.933333pt;}
.x7_c00089{left:128.800000pt;}
.xa_c00089{left:139.600000pt;}
.x1_c00089{left:149.066667pt;}
.xb_c00089{left:160.533333pt;}
.x1c_c00089{left:213.234904pt;}
.x12_c00089{left:279.200000pt;}
.x13_c00089{left:280.266667pt;}
.x15_c00089{left:281.200000pt;}
.x14_c00089{left:282.666667pt;}
.x3_c00089{left:283.733333pt;}
.x5_c00089{left:285.200000pt;}
.x4_c00089{left:286.400000pt;}
.x2_c00089{left:289.200000pt;}
.x1b_c00089{left:426.266667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_1ec562685262ad4848243195.woff2')format("woff");}.ff1_c00090{font-family:ff1_c00090;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00090;src:url('chunks/assets/font_766fbbcb2a6bc7a5d15d200c.woff2')format("woff");}.ff2_c00090{font-family:ff2_c00090;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00090;src:url('chunks/assets/font_9262fa1042696a14f9324528.woff2')format("woff");}.ff3_c00090{font-family:ff3_c00090;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00090;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff4_c00090{font-family:ff4_c00090;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00090{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00090{vertical-align:0.000000px;}
.ls3_c00090{letter-spacing:0.000000px;}
.ls0_c00090{letter-spacing:0.900000px;}
.ls6_c00090{letter-spacing:3.000000px;}
.ls2_c00090{letter-spacing:6.300000px;}
.ls5_c00090{letter-spacing:9.000000px;}
.ls1_c00090{letter-spacing:14.700000px;}
.ls4_c00090{letter-spacing:18.000000px;}
.sc__c00090{text-shadow:none;}
.sc0_c00090{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00090{-webkit-text-stroke:0px transparent;}
.sc0_c00090{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00090{word-spacing:-33.813000px;}
.ws2_c00090{word-spacing:-23.868000px;}
.ws3_c00090{word-spacing:-18.060000px;}
.ws0_c00090{word-spacing:-14.868000px;}
.ws4_c00090{word-spacing:0.000000px;}
._3_c00090{margin-left:-17.388000px;}
._23_c00090{margin-left:-10.152000px;}
._1f_c00090{margin-left:-8.355000px;}
._12_c00090{margin-left:-5.985000px;}
._15_c00090{margin-left:-4.227000px;}
._13_c00090{margin-left:-3.213000px;}
._f_c00090{margin-left:-1.827000px;}
._1_c00090{width:1.386000px;}
._0_c00090{width:3.024000px;}
._6_c00090{width:4.095000px;}
._5_c00090{width:5.166000px;}
._26_c00090{width:6.171000px;}
._a_c00090{width:7.182000px;}
._e_c00090{width:8.694000px;}
._9_c00090{width:10.017000px;}
._4_c00090{width:11.529000px;}
._8_c00090{width:12.597000px;}
._21_c00090{width:14.445000px;}
._20_c00090{width:16.953000px;}
._16_c00090{width:18.438000px;}
._11_c00090{width:19.530000px;}
._d_c00090{width:21.546000px;}
._1a_c00090{width:22.617000px;}
._1b_c00090{width:23.814000px;}
._c_c00090{width:25.767000px;}
._2e_c00090{width:26.775000px;}
._14_c00090{width:28.539000px;}
._1e_c00090{width:29.925000px;}
._22_c00090{width:31.515000px;}
._2c_c00090{width:32.886000px;}
._1d_c00090{width:34.524000px;}
._25_c00090{width:35.721000px;}
._7_c00090{width:36.738000px;}
._28_c00090{width:38.076000px;}
._b_c00090{width:39.366000px;}
._10_c00090{width:41.580000px;}
._24_c00090{width:43.446000px;}
._19_c00090{width:44.541000px;}
._17_c00090{width:46.494000px;}
._30_c00090{width:47.595000px;}
._1c_c00090{width:49.077000px;}
._2d_c00090{width:51.645000px;}
._2f_c00090{width:53.019000px;}
._35_c00090{width:55.884000px;}
._31_c00090{width:57.291000px;}
._33_c00090{width:60.543000px;}
._34_c00090{width:63.759000px;}
._2b_c00090{width:84.558000px;}
._32_c00090{width:89.877000px;}
._29_c00090{width:110.289000px;}
._36_c00090{width:140.157000px;}
._2_c00090{width:159.390000px;}
._27_c00090{width:292.320000px;}
._2a_c00090{width:336.423000px;}
._18_c00090{width:624.897000px;}
.fc2_c00090{color:transparent;}
.fc1_c00090{color:rgb(128,128,128);}
.fc0_c00090{color:rgb(0,0,0);}
.fs2_c00090{font-size:48.000000px;}
.fs1_c00090{font-size:60.000000px;}
.fs0_c00090{font-size:63.000000px;}
.y0_c00090{bottom:0.000000px;}
.y2c_c00090{bottom:3.105000px;}
.y2b_c00090{bottom:7.228357px;}
.y2a_c00090{bottom:33.180000px;}
.y29_c00090{bottom:53.430000px;}
.y28_c00090{bottom:72.630000px;}
.y27_c00090{bottom:90.780000px;}
.y26_c00090{bottom:109.080000px;}
.y25_c00090{bottom:125.280000px;}
.y24_c00090{bottom:145.230000px;}
.y23_c00090{bottom:162.780000px;}
.y22_c00090{bottom:180.330000px;}
.y21_c00090{bottom:198.180000px;}
.y20_c00090{bottom:215.280000px;}
.y1f_c00090{bottom:234.330000px;}
.y1e_c00090{bottom:253.080000px;}
.y1d_c00090{bottom:271.080000px;}
.y1c_c00090{bottom:290.280000px;}
.y1b_c00090{bottom:308.130000px;}
.y1a_c00090{bottom:326.730000px;}
.y19_c00090{bottom:343.980000px;}
.y18_c00090{bottom:362.430000px;}
.y17_c00090{bottom:381.030000px;}
.y16_c00090{bottom:398.880000px;}
.y15_c00090{bottom:416.430000px;}
.y14_c00090{bottom:435.330000px;}
.y13_c00090{bottom:453.330000px;}
.y12_c00090{bottom:471.180000px;}
.y11_c00090{bottom:489.480000px;}
.y10_c00090{bottom:507.630000px;}
.yf_c00090{bottom:525.930000px;}
.ye_c00090{bottom:543.780000px;}
.yd_c00090{bottom:561.930000px;}
.yc_c00090{bottom:579.630000px;}
.yb_c00090{bottom:597.330000px;}
.ya_c00090{bottom:615.030000px;}
.y9_c00090{bottom:633.480000px;}
.y8_c00090{bottom:651.030000px;}
.y7_c00090{bottom:670.230000px;}
.y6_c00090{bottom:687.930000px;}
.y5_c00090{bottom:706.380000px;}
.y4_c00090{bottom:724.230000px;}
.y3_c00090{bottom:742.530000px;}
.y2_c00090{bottom:761.730000px;}
.y1_c00090{bottom:779.580000px;}
.h5_c00090{height:13.200074px;}
.h6_c00090{height:43.804688px;}
.h4_c00090{height:62.880000px;}
.h2_c00090{height:66.024000px;}
.h3_c00090{height:67.221000px;}
.h1_c00090{height:845.250000px;}
.h0_c00090{height:845.400000px;}
.w2_c00090{width:104.875500px;}
.w0_c00090{width:578.100000px;}
.w1_c00090{width:578.250000px;}
.x0_c00090{left:0.000000px;}
.x5_c00090{left:13.800000px;}
.x6_c00090{left:15.450000px;}
.xb_c00090{left:20.550000px;}
.xa_c00090{left:25.950000px;}
.xc_c00090{left:70.200000px;}
.x9_c00090{left:71.250000px;}
.x2_c00090{left:73.350000px;}
.x3_c00090{left:74.550000px;}
.x1_c00090{left:75.900000px;}
.x7_c00090{left:76.950000px;}
.x8_c00090{left:78.000000px;}
.x4_c00090{left:90.750000px;}
.xe_c00090{left:240.864258px;}
.xd_c00090{left:455.250000px;}
@media print{
.v0_c00090{vertical-align:0.000000pt;}
.ls3_c00090{letter-spacing:0.000000pt;}
.ls0_c00090{letter-spacing:0.800000pt;}
.ls6_c00090{letter-spacing:2.666667pt;}
.ls2_c00090{letter-spacing:5.600000pt;}
.ls5_c00090{letter-spacing:8.000000pt;}
.ls1_c00090{letter-spacing:13.066667pt;}
.ls4_c00090{letter-spacing:16.000000pt;}
.ws1_c00090{word-spacing:-30.056000pt;}
.ws2_c00090{word-spacing:-21.216000pt;}
.ws3_c00090{word-spacing:-16.053333pt;}
.ws0_c00090{word-spacing:-13.216000pt;}
.ws4_c00090{word-spacing:0.000000pt;}
._3_c00090{margin-left:-15.456000pt;}
._23_c00090{margin-left:-9.024000pt;}
._1f_c00090{margin-left:-7.426667pt;}
._12_c00090{margin-left:-5.320000pt;}
._15_c00090{margin-left:-3.757333pt;}
._13_c00090{margin-left:-2.856000pt;}
._f_c00090{margin-left:-1.624000pt;}
._1_c00090{width:1.232000pt;}
._0_c00090{width:2.688000pt;}
._6_c00090{width:3.640000pt;}
._5_c00090{width:4.592000pt;}
._26_c00090{width:5.485333pt;}
._a_c00090{width:6.384000pt;}
._e_c00090{width:7.728000pt;}
._9_c00090{width:8.904000pt;}
._4_c00090{width:10.248000pt;}
._8_c00090{width:11.197333pt;}
._21_c00090{width:12.840000pt;}
._20_c00090{width:15.069333pt;}
._16_c00090{width:16.389333pt;}
._11_c00090{width:17.360000pt;}
._d_c00090{width:19.152000pt;}
._1a_c00090{width:20.104000pt;}
._1b_c00090{width:21.168000pt;}
._c_c00090{width:22.904000pt;}
._2e_c00090{width:23.800000pt;}
._14_c00090{width:25.368000pt;}
._1e_c00090{width:26.600000pt;}
._22_c00090{width:28.013333pt;}
._2c_c00090{width:29.232000pt;}
._1d_c00090{width:30.688000pt;}
._25_c00090{width:31.752000pt;}
._7_c00090{width:32.656000pt;}
._28_c00090{width:33.845333pt;}
._b_c00090{width:34.992000pt;}
._10_c00090{width:36.960000pt;}
._24_c00090{width:38.618667pt;}
._19_c00090{width:39.592000pt;}
._17_c00090{width:41.328000pt;}
._30_c00090{width:42.306667pt;}
._1c_c00090{width:43.624000pt;}
._2d_c00090{width:45.906667pt;}
._2f_c00090{width:47.128000pt;}
._35_c00090{width:49.674667pt;}
._31_c00090{width:50.925333pt;}
._33_c00090{width:53.816000pt;}
._34_c00090{width:56.674667pt;}
._2b_c00090{width:75.162667pt;}
._32_c00090{width:79.890667pt;}
._29_c00090{width:98.034667pt;}
._36_c00090{width:124.584000pt;}
._2_c00090{width:141.680000pt;}
._27_c00090{width:259.840000pt;}
._2a_c00090{width:299.042667pt;}
._18_c00090{width:555.464000pt;}
.fs2_c00090{font-size:42.666667pt;}
.fs1_c00090{font-size:53.333333pt;}
.fs0_c00090{font-size:56.000000pt;}
.y0_c00090{bottom:0.000000pt;}
.y2c_c00090{bottom:2.760000pt;}
.y2b_c00090{bottom:6.425206pt;}
.y2a_c00090{bottom:29.493333pt;}
.y29_c00090{bottom:47.493333pt;}
.y28_c00090{bottom:64.560000pt;}
.y27_c00090{bottom:80.693333pt;}
.y26_c00090{bottom:96.960000pt;}
.y25_c00090{bottom:111.360000pt;}
.y24_c00090{bottom:129.093333pt;}
.y23_c00090{bottom:144.693333pt;}
.y22_c00090{bottom:160.293333pt;}
.y21_c00090{bottom:176.160000pt;}
.y20_c00090{bottom:191.360000pt;}
.y1f_c00090{bottom:208.293333pt;}
.y1e_c00090{bottom:224.960000pt;}
.y1d_c00090{bottom:240.960000pt;}
.y1c_c00090{bottom:258.026667pt;}
.y1b_c00090{bottom:273.893333pt;}
.y1a_c00090{bottom:290.426667pt;}
.y19_c00090{bottom:305.760000pt;}
.y18_c00090{bottom:322.160000pt;}
.y17_c00090{bottom:338.693333pt;}
.y16_c00090{bottom:354.560000pt;}
.y15_c00090{bottom:370.160000pt;}
.y14_c00090{bottom:386.960000pt;}
.y13_c00090{bottom:402.960000pt;}
.y12_c00090{bottom:418.826667pt;}
.y11_c00090{bottom:435.093333pt;}
.y10_c00090{bottom:451.226667pt;}
.yf_c00090{bottom:467.493333pt;}
.ye_c00090{bottom:483.360000pt;}
.yd_c00090{bottom:499.493333pt;}
.yc_c00090{bottom:515.226667pt;}
.yb_c00090{bottom:530.960000pt;}
.ya_c00090{bottom:546.693333pt;}
.y9_c00090{bottom:563.093333pt;}
.y8_c00090{bottom:578.693333pt;}
.y7_c00090{bottom:595.760000pt;}
.y6_c00090{bottom:611.493333pt;}
.y5_c00090{bottom:627.893333pt;}
.y4_c00090{bottom:643.760000pt;}
.y3_c00090{bottom:660.026667pt;}
.y2_c00090{bottom:677.093333pt;}
.y1_c00090{bottom:692.960000pt;}
.h5_c00090{height:11.733399pt;}
.h6_c00090{height:38.937500pt;}
.h4_c00090{height:55.893333pt;}
.h2_c00090{height:58.688000pt;}
.h3_c00090{height:59.752000pt;}
.h1_c00090{height:751.333333pt;}
.h0_c00090{height:751.466667pt;}
.w2_c00090{width:93.222667pt;}
.w0_c00090{width:513.866667pt;}
.w1_c00090{width:514.000000pt;}
.x0_c00090{left:0.000000pt;}
.x5_c00090{left:12.266667pt;}
.x6_c00090{left:13.733333pt;}
.xb_c00090{left:18.266667pt;}
.xa_c00090{left:23.066667pt;}
.xc_c00090{left:62.400000pt;}
.x9_c00090{left:63.333333pt;}
.x2_c00090{left:65.200000pt;}
.x3_c00090{left:66.266667pt;}
.x1_c00090{left:67.466667pt;}
.x7_c00090{left:68.400000pt;}
.x8_c00090{left:69.333333pt;}
.x4_c00090{left:80.666667pt;}
.xe_c00090{left:214.101563pt;}
.xd_c00090{left:404.666667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_5be7be3bd15ff0f786b571e6.woff2')format("woff");}.ff1_c00091{font-family:ff1_c00091;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00091;src:url('chunks/assets/font_ce17346b2b5933370b7a15b9.woff2')format("woff");}.ff2_c00091{font-family:ff2_c00091;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00091;src:url('chunks/assets/font_a74f42bcae9cc03607825dfb.woff2')format("woff");}.ff3_c00091{font-family:ff3_c00091;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00091;src:url('chunks/assets/font_d59d2ca97b81018acb76a094.woff2')format("woff");}.ff4_c00091{font-family:ff4_c00091;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00091;src:url('chunks/assets/font_18ac07aee60b473bc034f958.woff2')format("woff");}.ff5_c00091{font-family:ff5_c00091;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00091;src:url('chunks/assets/font_bf4806ff6d7beedc6859ffcf.woff2')format("woff");}.ff6_c00091{font-family:ff6_c00091;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00091;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff7_c00091{font-family:ff7_c00091;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00091{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00091{vertical-align:0.000000px;}
.ls5_c00091{letter-spacing:0.000000px;}
.ls2_c00091{letter-spacing:3.000000px;}
.ls3_c00091{letter-spacing:5.118000px;}
.ls4_c00091{letter-spacing:5.824800px;}
.ls6_c00091{letter-spacing:9.000000px;}
.ls7_c00091{letter-spacing:12.000000px;}
.ls1_c00091{letter-spacing:15.987000px;}
.ls0_c00091{letter-spacing:28.740000px;}
.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;}
}
.ws2_c00091{word-spacing:-49.920000px;}
.ws1_c00091{word-spacing:-18.813000px;}
.ws0_c00091{word-spacing:-14.427000px;}
.ws3_c00091{word-spacing:0.000000px;}
._33_c00091{margin-left:-19.647000px;}
._2b_c00091{margin-left:-18.270000px;}
._25_c00091{margin-left:-17.073000px;}
._30_c00091{margin-left:-15.153000px;}
._29_c00091{margin-left:-13.893000px;}
._26_c00091{margin-left:-11.781000px;}
._2f_c00091{margin-left:-9.927000px;}
._13_c00091{margin-left:-8.283000px;}
._c_c00091{margin-left:-6.585000px;}
._0_c00091{margin-left:-5.229000px;}
._1d_c00091{margin-left:-4.158000px;}
._a_c00091{margin-left:-3.024000px;}
._10_c00091{margin-left:-1.260000px;}
._9_c00091{width:1.134000px;}
._b_c00091{width:2.268000px;}
._1a_c00091{width:3.339000px;}
._16_c00091{width:4.347000px;}
._12_c00091{width:5.712000px;}
._d_c00091{width:6.804000px;}
._11_c00091{width:7.845000px;}
._17_c00091{width:8.946000px;}
._f_c00091{width:9.954000px;}
._19_c00091{width:11.175000px;}
._2_c00091{width:12.852000px;}
._3_c00091{width:14.742000px;}
._4_c00091{width:16.002000px;}
._7_c00091{width:17.790000px;}
._6_c00091{width:19.845000px;}
._8_c00091{width:21.153000px;}
._5_c00091{width:22.176000px;}
._22_c00091{width:25.074000px;}
._35_c00091{width:32.481000px;}
._e_c00091{width:39.375000px;}
._14_c00091{width:43.785000px;}
._20_c00091{width:44.808000px;}
._18_c00091{width:45.864000px;}
._15_c00091{width:47.127000px;}
._1b_c00091{width:48.492000px;}
._1c_c00091{width:50.652000px;}
._28_c00091{width:54.684000px;}
._2d_c00091{width:55.815000px;}
._2e_c00091{width:62.628000px;}
._31_c00091{width:63.702000px;}
._1e_c00091{width:70.056000px;}
._34_c00091{width:74.214000px;}
._37_c00091{width:75.411000px;}
._38_c00091{width:77.589000px;}
._3a_c00091{width:87.003000px;}
._27_c00091{width:110.832000px;}
._39_c00091{width:128.352000px;}
._2c_c00091{width:163.947000px;}
._3b_c00091{width:186.669000px;}
._2a_c00091{width:207.120000px;}
._36_c00091{width:238.635000px;}
._1f_c00091{width:257.100000px;}
._24_c00091{width:308.868000px;}
._1_c00091{width:321.363000px;}
._3c_c00091{width:325.563000px;}
._21_c00091{width:397.236000px;}
._3d_c00091{width:438.438000px;}
._23_c00091{width:557.514000px;}
._32_c00091{width:673.533000px;}
._3e_c00091{width:705.411000px;}
.fc2_c00091{color:transparent;}
.fc1_c00091{color:rgb(128,128,128);}
.fc0_c00091{color:rgb(0,0,0);}
.fs5_c00091{font-size:48.000000px;}
.fs4_c00091{font-size:50.400000px;}
.fs0_c00091{font-size:60.000000px;}
.fs1_c00091{font-size:63.000000px;}
.fs3_c00091{font-size:66.000000px;}
.fs2_c00091{font-size:69.000000px;}
.y0_c00091{bottom:0.000000px;}
.y2c_c00091{bottom:3.105000px;}
.y2b_c00091{bottom:7.228357px;}
.y2a_c00091{bottom:43.980000px;}
.y29_c00091{bottom:63.180000px;}
.y28_c00091{bottom:81.630000px;}
.y27_c00091{bottom:100.680000px;}
.y26_c00091{bottom:118.830000px;}
.y25_c00091{bottom:137.130000px;}
.y24_c00091{bottom:155.580000px;}
.y23_c00091{bottom:173.130000px;}
.y22_c00091{bottom:191.430000px;}
.y21_c00091{bottom:210.030000px;}
.y20_c00091{bottom:227.430000px;}
.y1f_c00091{bottom:245.130000px;}
.y1e_c00091{bottom:262.980000px;}
.y1d_c00091{bottom:281.130000px;}
.y1c_c00091{bottom:298.980000px;}
.y1b_c00091{bottom:316.230000px;}
.y1a_c00091{bottom:334.830000px;}
.y19_c00091{bottom:352.980000px;}
.y18_c00091{bottom:371.280000px;}
.y17_c00091{bottom:389.130000px;}
.y16_c00091{bottom:407.130000px;}
.y15_c00091{bottom:424.980000px;}
.y14_c00091{bottom:443.880000px;}
.y13_c00091{bottom:461.730000px;}
.y12_c00091{bottom:479.280000px;}
.y11_c00091{bottom:497.580000px;}
.y10_c00091{bottom:514.680000px;}
.yf_c00091{bottom:533.280000px;}
.ye_c00091{bottom:551.880000px;}
.yd_c00091{bottom:570.030000px;}
.yc_c00091{bottom:587.580000px;}
.yb_c00091{bottom:605.880000px;}
.ya_c00091{bottom:624.330000px;}
.y9_c00091{bottom:642.330000px;}
.y8_c00091{bottom:660.480000px;}
.y7_c00091{bottom:679.080000px;}
.y6_c00091{bottom:697.230000px;}
.y5_c00091{bottom:715.830000px;}
.y4_c00091{bottom:734.130000px;}
.y3_c00091{bottom:752.280000px;}
.y2_c00091{bottom:770.880000px;}
.y1_c00091{bottom:791.130000px;}
.h5_c00091{height:13.200074px;}
.h6_c00091{height:43.804688px;}
.h2_c00091{height:66.024000px;}
.h4_c00091{height:69.168000px;}
.h3_c00091{height:73.623000px;}
.h0_c00091{height:822.450000px;}
.h1_c00091{height:822.750000px;}
.w2_c00091{width:104.875500px;}
.w1_c00091{width:567.750000px;}
.w0_c00091{width:568.050000px;}
.x0_c00091{left:0.000000px;}
.xa_c00091{left:30.600000px;}
.xe_c00091{left:88.800000px;}
.x10_c00091{left:90.450000px;}
.xb_c00091{left:91.500000px;}
.xc_c00091{left:93.450000px;}
.x8_c00091{left:94.800000px;}
.x9_c00091{left:96.750000px;}
.x6_c00091{left:97.950000px;}
.x7_c00091{left:99.150000px;}
.x4_c00091{left:100.200000px;}
.x3_c00091{left:101.250000px;}
.x1_c00091{left:102.600000px;}
.x2_c00091{left:103.950000px;}
.xf_c00091{left:125.250000px;}
.x5_c00091{left:132.000000px;}
.xd_c00091{left:141.300000px;}
.x11_c00091{left:235.839249px;}
@media print{
.v0_c00091{vertical-align:0.000000pt;}
.ls5_c00091{letter-spacing:0.000000pt;}
.ls2_c00091{letter-spacing:2.666667pt;}
.ls3_c00091{letter-spacing:4.549333pt;}
.ls4_c00091{letter-spacing:5.177600pt;}
.ls6_c00091{letter-spacing:8.000000pt;}
.ls7_c00091{letter-spacing:10.666667pt;}
.ls1_c00091{letter-spacing:14.210667pt;}
.ls0_c00091{letter-spacing:25.546667pt;}
.ws2_c00091{word-spacing:-44.373333pt;}
.ws1_c00091{word-spacing:-16.722667pt;}
.ws0_c00091{word-spacing:-12.824000pt;}
.ws3_c00091{word-spacing:0.000000pt;}
._33_c00091{margin-left:-17.464000pt;}
._2b_c00091{margin-left:-16.240000pt;}
._25_c00091{margin-left:-15.176000pt;}
._30_c00091{margin-left:-13.469333pt;}
._29_c00091{margin-left:-12.349333pt;}
._26_c00091{margin-left:-10.472000pt;}
._2f_c00091{margin-left:-8.824000pt;}
._13_c00091{margin-left:-7.362667pt;}
._c_c00091{margin-left:-5.853333pt;}
._0_c00091{margin-left:-4.648000pt;}
._1d_c00091{margin-left:-3.696000pt;}
._a_c00091{margin-left:-2.688000pt;}
._10_c00091{margin-left:-1.120000pt;}
._9_c00091{width:1.008000pt;}
._b_c00091{width:2.016000pt;}
._1a_c00091{width:2.968000pt;}
._16_c00091{width:3.864000pt;}
._12_c00091{width:5.077333pt;}
._d_c00091{width:6.048000pt;}
._11_c00091{width:6.973333pt;}
._17_c00091{width:7.952000pt;}
._f_c00091{width:8.848000pt;}
._19_c00091{width:9.933333pt;}
._2_c00091{width:11.424000pt;}
._3_c00091{width:13.104000pt;}
._4_c00091{width:14.224000pt;}
._7_c00091{width:15.813333pt;}
._6_c00091{width:17.640000pt;}
._8_c00091{width:18.802667pt;}
._5_c00091{width:19.712000pt;}
._22_c00091{width:22.288000pt;}
._35_c00091{width:28.872000pt;}
._e_c00091{width:35.000000pt;}
._14_c00091{width:38.920000pt;}
._20_c00091{width:39.829333pt;}
._18_c00091{width:40.768000pt;}
._15_c00091{width:41.890667pt;}
._1b_c00091{width:43.104000pt;}
._1c_c00091{width:45.024000pt;}
._28_c00091{width:48.608000pt;}
._2d_c00091{width:49.613333pt;}
._2e_c00091{width:55.669333pt;}
._31_c00091{width:56.624000pt;}
._1e_c00091{width:62.272000pt;}
._34_c00091{width:65.968000pt;}
._37_c00091{width:67.032000pt;}
._38_c00091{width:68.968000pt;}
._3a_c00091{width:77.336000pt;}
._27_c00091{width:98.517333pt;}
._39_c00091{width:114.090667pt;}
._2c_c00091{width:145.730667pt;}
._3b_c00091{width:165.928000pt;}
._2a_c00091{width:184.106667pt;}
._36_c00091{width:212.120000pt;}
._1f_c00091{width:228.533333pt;}
._24_c00091{width:274.549333pt;}
._1_c00091{width:285.656000pt;}
._3c_c00091{width:289.389333pt;}
._21_c00091{width:353.098667pt;}
._3d_c00091{width:389.722667pt;}
._23_c00091{width:495.568000pt;}
._32_c00091{width:598.696000pt;}
._3e_c00091{width:627.032000pt;}
.fs5_c00091{font-size:42.666667pt;}
.fs4_c00091{font-size:44.800000pt;}
.fs0_c00091{font-size:53.333333pt;}
.fs1_c00091{font-size:56.000000pt;}
.fs3_c00091{font-size:58.666667pt;}
.fs2_c00091{font-size:61.333333pt;}
.y0_c00091{bottom:0.000000pt;}
.y2c_c00091{bottom:2.760000pt;}
.y2b_c00091{bottom:6.425206pt;}
.y2a_c00091{bottom:39.093333pt;}
.y29_c00091{bottom:56.160000pt;}
.y28_c00091{bottom:72.560000pt;}
.y27_c00091{bottom:89.493333pt;}
.y26_c00091{bottom:105.626667pt;}
.y25_c00091{bottom:121.893333pt;}
.y24_c00091{bottom:138.293333pt;}
.y23_c00091{bottom:153.893333pt;}
.y22_c00091{bottom:170.160000pt;}
.y21_c00091{bottom:186.693333pt;}
.y20_c00091{bottom:202.160000pt;}
.y1f_c00091{bottom:217.893333pt;}
.y1e_c00091{bottom:233.760000pt;}
.y1d_c00091{bottom:249.893333pt;}
.y1c_c00091{bottom:265.760000pt;}
.y1b_c00091{bottom:281.093333pt;}
.y1a_c00091{bottom:297.626667pt;}
.y19_c00091{bottom:313.760000pt;}
.y18_c00091{bottom:330.026667pt;}
.y17_c00091{bottom:345.893333pt;}
.y16_c00091{bottom:361.893333pt;}
.y15_c00091{bottom:377.760000pt;}
.y14_c00091{bottom:394.560000pt;}
.y13_c00091{bottom:410.426667pt;}
.y12_c00091{bottom:426.026667pt;}
.y11_c00091{bottom:442.293333pt;}
.y10_c00091{bottom:457.493333pt;}
.yf_c00091{bottom:474.026667pt;}
.ye_c00091{bottom:490.560000pt;}
.yd_c00091{bottom:506.693333pt;}
.yc_c00091{bottom:522.293333pt;}
.yb_c00091{bottom:538.560000pt;}
.ya_c00091{bottom:554.960000pt;}
.y9_c00091{bottom:570.960000pt;}
.y8_c00091{bottom:587.093333pt;}
.y7_c00091{bottom:603.626667pt;}
.y6_c00091{bottom:619.760000pt;}
.y5_c00091{bottom:636.293333pt;}
.y4_c00091{bottom:652.560000pt;}
.y3_c00091{bottom:668.693333pt;}
.y2_c00091{bottom:685.226667pt;}
.y1_c00091{bottom:703.226667pt;}
.h5_c00091{height:11.733399pt;}
.h6_c00091{height:38.937500pt;}
.h2_c00091{height:58.688000pt;}
.h4_c00091{height:61.482667pt;}
.h3_c00091{height:65.442667pt;}
.h0_c00091{height:731.066667pt;}
.h1_c00091{height:731.333333pt;}
.w2_c00091{width:93.222667pt;}
.w1_c00091{width:504.666667pt;}
.w0_c00091{width:504.933333pt;}
.x0_c00091{left:0.000000pt;}
.xa_c00091{left:27.200000pt;}
.xe_c00091{left:78.933333pt;}
.x10_c00091{left:80.400000pt;}
.xb_c00091{left:81.333333pt;}
.xc_c00091{left:83.066667pt;}
.x8_c00091{left:84.266667pt;}
.x9_c00091{left:86.000000pt;}
.x6_c00091{left:87.066667pt;}
.x7_c00091{left:88.133333pt;}
.x4_c00091{left:89.066667pt;}
.x3_c00091{left:90.000000pt;}
.x1_c00091{left:91.200000pt;}
.x2_c00091{left:92.400000pt;}
.xf_c00091{left:111.333333pt;}
.x5_c00091{left:117.333333pt;}
.xd_c00091{left:125.600000pt;}
.x11_c00091{left:209.634888pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ff669fba071782afc2df8d7d.woff2')format("woff");}.ff1_c00092{font-family:ff1_c00092;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00092;src:url('chunks/assets/font_5012ace22405bcd09419491c.woff2')format("woff");}.ff2_c00092{font-family:ff2_c00092;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00092;src:url('chunks/assets/font_f9f383e693c9203cff1dd6e4.woff2')format("woff");}.ff3_c00092{font-family:ff3_c00092;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00092;src:url('chunks/assets/font_4e77b54d248d226cde8e1d4a.woff2')format("woff");}.ff4_c00092{font-family:ff4_c00092;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00092;src:url('chunks/assets/font_c36d89f6705cc0de10d41afb.woff2')format("woff");}.ff5_c00092{font-family:ff5_c00092;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00092;src:url('chunks/assets/font_6105c17c3228052140a0ebdf.woff2')format("woff");}.ff6_c00092{font-family:ff6_c00092;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00092;src:url('chunks/assets/font_c9d1894d285656b3a5385465.woff2')format("woff");}.ff7_c00092{font-family:ff7_c00092;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00092;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff8_c00092{font-family:ff8_c00092;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00092{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00092{vertical-align:0.000000px;}
.v1_c00092{vertical-align:129.000000px;}
.ls9_c00092{letter-spacing:0.000000px;}
.ls8_c00092{letter-spacing:3.000000px;}
.ls3_c00092{letter-spacing:4.740000px;}
.lsa_c00092{letter-spacing:6.000000px;}
.lsb_c00092{letter-spacing:12.000000px;}
.ls1_c00092{letter-spacing:14.700000px;}
.ls6_c00092{letter-spacing:14.805000px;}
.ls0_c00092{letter-spacing:19.560000px;}
.ls5_c00092{letter-spacing:20.340000px;}
.ls7_c00092{letter-spacing:21.540000px;}
.ls2_c00092{letter-spacing:25.005000px;}
.ls4_c00092{letter-spacing:45.300000px;}
.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;}
}
.ws5_c00092{word-spacing:-35.295000px;}
.ws0_c00092{word-spacing:-33.189000px;}
.ws1_c00092{word-spacing:-14.868000px;}
.ws2_c00092{word-spacing:-14.160000px;}
.ws7_c00092{word-spacing:-5.832000px;}
.ws8_c00092{word-spacing:0.000000px;}
.ws4_c00092{word-spacing:2.940000px;}
.ws6_c00092{word-spacing:6.816000px;}
.ws3_c00092{word-spacing:9.384000px;}
._2b_c00092{margin-left:-15.801000px;}
._24_c00092{margin-left:-14.115000px;}
._25_c00092{margin-left:-12.186000px;}
._27_c00092{margin-left:-9.870000px;}
._0_c00092{margin-left:-8.694000px;}
._a_c00092{margin-left:-6.813000px;}
._b_c00092{margin-left:-5.355000px;}
._2a_c00092{margin-left:-3.279000px;}
._c_c00092{margin-left:-2.094000px;}
._7_c00092{margin-left:-1.008000px;}
._6_c00092{width:1.071000px;}
._5_c00092{width:2.898000px;}
._3_c00092{width:4.095000px;}
._8_c00092{width:5.220000px;}
._2_c00092{width:7.245000px;}
._9_c00092{width:8.955000px;}
._14_c00092{width:10.200000px;}
._4_c00092{width:11.907000px;}
._15_c00092{width:13.104000px;}
._16_c00092{width:14.757000px;}
._1b_c00092{width:15.762000px;}
._12_c00092{width:16.776000px;}
._d_c00092{width:17.904000px;}
._11_c00092{width:19.704000px;}
._e_c00092{width:20.976000px;}
._10_c00092{width:22.008000px;}
._1a_c00092{width:23.292000px;}
._20_c00092{width:25.062000px;}
._29_c00092{width:26.178000px;}
._13_c00092{width:27.192000px;}
._22_c00092{width:29.274000px;}
._f_c00092{width:30.432000px;}
._1d_c00092{width:32.682000px;}
._21_c00092{width:33.696000px;}
._1f_c00092{width:34.833000px;}
._1e_c00092{width:38.076000px;}
._26_c00092{width:40.773000px;}
._28_c00092{width:41.778000px;}
._17_c00092{width:43.203000px;}
._19_c00092{width:45.531000px;}
._23_c00092{width:53.394000px;}
._18_c00092{width:61.980000px;}
._1c_c00092{width:90.588000px;}
._1_c00092{width:124.866000px;}
._2c_c00092{width:257.838000px;}
.fc2_c00092{color:transparent;}
.fc1_c00092{color:rgb(128,128,128);}
.fc0_c00092{color:rgb(0,0,0);}
.fs4_c00092{font-size:24.000000px;}
.fs5_c00092{font-size:27.000000px;}
.fs6_c00092{font-size:45.000000px;}
.fs8_c00092{font-size:48.000000px;}
.fs2_c00092{font-size:60.000000px;}
.fs0_c00092{font-size:63.000000px;}
.fs1_c00092{font-size:69.000000px;}
.fs7_c00092{font-size:81.000000px;}
.fs3_c00092{font-size:204.000000px;}
.y0_c00092{bottom:0.000000px;}
.y52_c00092{bottom:3.105000px;}
.y51_c00092{bottom:7.228355px;}
.y50_c00092{bottom:29.685000px;}
.y4f_c00092{bottom:48.135000px;}
.y27_c00092{bottom:49.935000px;}
.y4e_c00092{bottom:66.435000px;}
.y26_c00092{bottom:68.385000px;}
.y4d_c00092{bottom:84.735000px;}
.y25_c00092{bottom:86.085000px;}
.y4c_c00092{bottom:103.185000px;}
.y24_c00092{bottom:104.985000px;}
.y4b_c00092{bottom:121.035000px;}
.y23_c00092{bottom:122.835000px;}
.y4a_c00092{bottom:139.335000px;}
.y22_c00092{bottom:141.435000px;}
.y49_c00092{bottom:157.935000px;}
.y21_c00092{bottom:159.285000px;}
.y48_c00092{bottom:176.085000px;}
.y20_c00092{bottom:177.435000px;}
.y47_c00092{bottom:194.385000px;}
.y1f_c00092{bottom:195.435000px;}
.y46_c00092{bottom:212.385000px;}
.y1e_c00092{bottom:213.585000px;}
.y45_c00092{bottom:230.385000px;}
.y1d_c00092{bottom:231.735000px;}
.y44_c00092{bottom:248.385000px;}
.y1c_c00092{bottom:249.435000px;}
.y43_c00092{bottom:266.985000px;}
.y1b_c00092{bottom:267.885000px;}
.y42_c00092{bottom:285.135000px;}
.y1a_c00092{bottom:286.485000px;}
.y19_c00092{bottom:303.735000px;}
.y18_c00092{bottom:321.285000px;}
.y41_c00092{bottom:321.585000px;}
.y17_c00092{bottom:339.135000px;}
.y40_c00092{bottom:339.735000px;}
.y16_c00092{bottom:357.435000px;}
.y3f_c00092{bottom:358.035000px;}
.y15_c00092{bottom:375.285000px;}
.y3e_c00092{bottom:375.885000px;}
.y14_c00092{bottom:393.885000px;}
.y3d_c00092{bottom:394.185000px;}
.y13_c00092{bottom:411.735000px;}
.y3c_c00092{bottom:412.785000px;}
.y12_c00092{bottom:430.185000px;}
.y3b_c00092{bottom:431.235000px;}
.y11_c00092{bottom:447.735000px;}
.y3a_c00092{bottom:449.535000px;}
.y10_c00092{bottom:466.635000px;}
.y39_c00092{bottom:467.985000px;}
.yf_c00092{bottom:484.635000px;}
.y38_c00092{bottom:485.535000px;}
.ye_c00092{bottom:502.185000px;}
.y37_c00092{bottom:503.835000px;}
.yd_c00092{bottom:520.185000px;}
.y36_c00092{bottom:521.385000px;}
.yc_c00092{bottom:538.185000px;}
.y35_c00092{bottom:540.285000px;}
.yb_c00092{bottom:556.185000px;}
.y34_c00092{bottom:558.435000px;}
.ya_c00092{bottom:574.635000px;}
.y33_c00092{bottom:576.435000px;}
.y9_c00092{bottom:592.335000px;}
.y32_c00092{bottom:594.285000px;}
.y8_c00092{bottom:610.485000px;}
.y31_c00092{bottom:612.135000px;}
.y6_c00092{bottom:614.385000px;}
.y7_c00092{bottom:628.635000px;}
.y30_c00092{bottom:630.435000px;}
.y2f_c00092{bottom:648.585000px;}
.y2e_c00092{bottom:667.185000px;}
.y5_c00092{bottom:682.785000px;}
.y2d_c00092{bottom:684.435000px;}
.y4_c00092{bottom:701.535000px;}
.y2c_c00092{bottom:703.035000px;}
.y3_c00092{bottom:719.085000px;}
.y2b_c00092{bottom:720.885000px;}
.y2_c00092{bottom:737.685000px;}
.y2a_c00092{bottom:739.035000px;}
.y1_c00092{bottom:753.585000px;}
.y29_c00092{bottom:757.635000px;}
.y28_c00092{bottom:775.785000px;}
.h9_c00092{height:13.200074px;}
.h6_c00092{height:30.386719px;}
.ha_c00092{height:43.804688px;}
.h4_c00092{height:62.880000px;}
.h7_c00092{height:63.480000px;}
.h2_c00092{height:66.024000px;}
.h3_c00092{height:74.796000px;}
.h8_c00092{height:87.804000px;}
.h5_c00092{height:217.668000px;}
.h0_c00092{height:837.525000px;}
.h1_c00092{height:837.750000px;}
.w2_c00092{width:104.875500px;}
.w1_c00092{width:572.250000px;}
.w0_c00092{width:572.400000px;}
.x0_c00092{left:0.000000px;}
.xd_c00092{left:4.950000px;}
.xc_c00092{left:6.300000px;}
.xb_c00092{left:7.800000px;}
.xa_c00092{left:9.150000px;}
.x11_c00092{left:60.450000px;}
.xe_c00092{left:63.750000px;}
.x10_c00092{left:65.850000px;}
.x9_c00092{left:67.050000px;}
.x6_c00092{left:68.850000px;}
.x3_c00092{left:79.200000px;}
.x2_c00092{left:101.550000px;}
.x4_c00092{left:103.950000px;}
.x8_c00092{left:109.950000px;}
.x7_c00092{left:113.400000px;}
.x1_c00092{left:122.550000px;}
.xf_c00092{left:136.050000px;}
.x5_c00092{left:145.050000px;}
.x1c_c00092{left:238.014267px;}
.x1a_c00092{left:285.150000px;}
.x18_c00092{left:286.650000px;}
.x17_c00092{left:288.600000px;}
.x16_c00092{left:290.850000px;}
.x15_c00092{left:292.200000px;}
.x14_c00092{left:294.000000px;}
.x12_c00092{left:295.950000px;}
.x13_c00092{left:298.350000px;}
.x19_c00092{left:336.600000px;}
.x1b_c00092{left:394.500000px;}
@media print{
.v0_c00092{vertical-align:0.000000pt;}
.v1_c00092{vertical-align:114.666667pt;}
.ls9_c00092{letter-spacing:0.000000pt;}
.ls8_c00092{letter-spacing:2.666667pt;}
.ls3_c00092{letter-spacing:4.213333pt;}
.lsa_c00092{letter-spacing:5.333333pt;}
.lsb_c00092{letter-spacing:10.666667pt;}
.ls1_c00092{letter-spacing:13.066667pt;}
.ls6_c00092{letter-spacing:13.160000pt;}
.ls0_c00092{letter-spacing:17.386667pt;}
.ls5_c00092{letter-spacing:18.080000pt;}
.ls7_c00092{letter-spacing:19.146667pt;}
.ls2_c00092{letter-spacing:22.226667pt;}
.ls4_c00092{letter-spacing:40.266667pt;}
.ws5_c00092{word-spacing:-31.373333pt;}
.ws0_c00092{word-spacing:-29.501333pt;}
.ws1_c00092{word-spacing:-13.216000pt;}
.ws2_c00092{word-spacing:-12.586667pt;}
.ws7_c00092{word-spacing:-5.184000pt;}
.ws8_c00092{word-spacing:0.000000pt;}
.ws4_c00092{word-spacing:2.613333pt;}
.ws6_c00092{word-spacing:6.058667pt;}
.ws3_c00092{word-spacing:8.341333pt;}
._2b_c00092{margin-left:-14.045333pt;}
._24_c00092{margin-left:-12.546667pt;}
._25_c00092{margin-left:-10.832000pt;}
._27_c00092{margin-left:-8.773333pt;}
._0_c00092{margin-left:-7.728000pt;}
._a_c00092{margin-left:-6.056000pt;}
._b_c00092{margin-left:-4.760000pt;}
._2a_c00092{margin-left:-2.914667pt;}
._c_c00092{margin-left:-1.861333pt;}
._7_c00092{margin-left:-0.896000pt;}
._6_c00092{width:0.952000pt;}
._5_c00092{width:2.576000pt;}
._3_c00092{width:3.640000pt;}
._8_c00092{width:4.640000pt;}
._2_c00092{width:6.440000pt;}
._9_c00092{width:7.960000pt;}
._14_c00092{width:9.066667pt;}
._4_c00092{width:10.584000pt;}
._15_c00092{width:11.648000pt;}
._16_c00092{width:13.117333pt;}
._1b_c00092{width:14.010667pt;}
._12_c00092{width:14.912000pt;}
._d_c00092{width:15.914667pt;}
._11_c00092{width:17.514667pt;}
._e_c00092{width:18.645333pt;}
._10_c00092{width:19.562667pt;}
._1a_c00092{width:20.704000pt;}
._20_c00092{width:22.277333pt;}
._29_c00092{width:23.269333pt;}
._13_c00092{width:24.170667pt;}
._22_c00092{width:26.021333pt;}
._f_c00092{width:27.050667pt;}
._1d_c00092{width:29.050667pt;}
._21_c00092{width:29.952000pt;}
._1f_c00092{width:30.962667pt;}
._1e_c00092{width:33.845333pt;}
._26_c00092{width:36.242667pt;}
._28_c00092{width:37.136000pt;}
._17_c00092{width:38.402667pt;}
._19_c00092{width:40.472000pt;}
._23_c00092{width:47.461333pt;}
._18_c00092{width:55.093333pt;}
._1c_c00092{width:80.522667pt;}
._1_c00092{width:110.992000pt;}
._2c_c00092{width:229.189333pt;}
.fs4_c00092{font-size:21.333333pt;}
.fs5_c00092{font-size:24.000000pt;}
.fs6_c00092{font-size:40.000000pt;}
.fs8_c00092{font-size:42.666667pt;}
.fs2_c00092{font-size:53.333333pt;}
.fs0_c00092{font-size:56.000000pt;}
.fs1_c00092{font-size:61.333333pt;}
.fs7_c00092{font-size:72.000000pt;}
.fs3_c00092{font-size:181.333333pt;}
.y0_c00092{bottom:0.000000pt;}
.y52_c00092{bottom:2.760000pt;}
.y51_c00092{bottom:6.425204pt;}
.y50_c00092{bottom:26.386667pt;}
.y4f_c00092{bottom:42.786667pt;}
.y27_c00092{bottom:44.386667pt;}
.y4e_c00092{bottom:59.053333pt;}
.y26_c00092{bottom:60.786667pt;}
.y4d_c00092{bottom:75.320000pt;}
.y25_c00092{bottom:76.520000pt;}
.y4c_c00092{bottom:91.720000pt;}
.y24_c00092{bottom:93.320000pt;}
.y4b_c00092{bottom:107.586667pt;}
.y23_c00092{bottom:109.186667pt;}
.y4a_c00092{bottom:123.853333pt;}
.y22_c00092{bottom:125.720000pt;}
.y49_c00092{bottom:140.386667pt;}
.y21_c00092{bottom:141.586667pt;}
.y48_c00092{bottom:156.520000pt;}
.y20_c00092{bottom:157.720000pt;}
.y47_c00092{bottom:172.786667pt;}
.y1f_c00092{bottom:173.720000pt;}
.y46_c00092{bottom:188.786667pt;}
.y1e_c00092{bottom:189.853333pt;}
.y45_c00092{bottom:204.786667pt;}
.y1d_c00092{bottom:205.986667pt;}
.y44_c00092{bottom:220.786667pt;}
.y1c_c00092{bottom:221.720000pt;}
.y43_c00092{bottom:237.320000pt;}
.y1b_c00092{bottom:238.120000pt;}
.y42_c00092{bottom:253.453333pt;}
.y1a_c00092{bottom:254.653333pt;}
.y19_c00092{bottom:269.986667pt;}
.y18_c00092{bottom:285.586667pt;}
.y41_c00092{bottom:285.853333pt;}
.y17_c00092{bottom:301.453333pt;}
.y40_c00092{bottom:301.986667pt;}
.y16_c00092{bottom:317.720000pt;}
.y3f_c00092{bottom:318.253333pt;}
.y15_c00092{bottom:333.586667pt;}
.y3e_c00092{bottom:334.120000pt;}
.y14_c00092{bottom:350.120000pt;}
.y3d_c00092{bottom:350.386667pt;}
.y13_c00092{bottom:365.986667pt;}
.y3c_c00092{bottom:366.920000pt;}
.y12_c00092{bottom:382.386667pt;}
.y3b_c00092{bottom:383.320000pt;}
.y11_c00092{bottom:397.986667pt;}
.y3a_c00092{bottom:399.586667pt;}
.y10_c00092{bottom:414.786667pt;}
.y39_c00092{bottom:415.986667pt;}
.yf_c00092{bottom:430.786667pt;}
.y38_c00092{bottom:431.586667pt;}
.ye_c00092{bottom:446.386667pt;}
.y37_c00092{bottom:447.853333pt;}
.yd_c00092{bottom:462.386667pt;}
.y36_c00092{bottom:463.453333pt;}
.yc_c00092{bottom:478.386667pt;}
.y35_c00092{bottom:480.253333pt;}
.yb_c00092{bottom:494.386667pt;}
.y34_c00092{bottom:496.386667pt;}
.ya_c00092{bottom:510.786667pt;}
.y33_c00092{bottom:512.386667pt;}
.y9_c00092{bottom:526.520000pt;}
.y32_c00092{bottom:528.253333pt;}
.y8_c00092{bottom:542.653333pt;}
.y31_c00092{bottom:544.120000pt;}
.y6_c00092{bottom:546.120000pt;}
.y7_c00092{bottom:558.786667pt;}
.y30_c00092{bottom:560.386667pt;}
.y2f_c00092{bottom:576.520000pt;}
.y2e_c00092{bottom:593.053333pt;}
.y5_c00092{bottom:606.920000pt;}
.y2d_c00092{bottom:608.386667pt;}
.y4_c00092{bottom:623.586667pt;}
.y2c_c00092{bottom:624.920000pt;}
.y3_c00092{bottom:639.186667pt;}
.y2b_c00092{bottom:640.786667pt;}
.y2_c00092{bottom:655.720000pt;}
.y2a_c00092{bottom:656.920000pt;}
.y1_c00092{bottom:669.853333pt;}
.y29_c00092{bottom:673.453333pt;}
.y28_c00092{bottom:689.586667pt;}
.h9_c00092{height:11.733399pt;}
.h6_c00092{height:27.010417pt;}
.ha_c00092{height:38.937500pt;}
.h4_c00092{height:55.893333pt;}
.h7_c00092{height:56.426667pt;}
.h2_c00092{height:58.688000pt;}
.h3_c00092{height:66.485333pt;}
.h8_c00092{height:78.048000pt;}
.h5_c00092{height:193.482667pt;}
.h0_c00092{height:744.466667pt;}
.h1_c00092{height:744.666667pt;}
.w2_c00092{width:93.222667pt;}
.w1_c00092{width:508.666667pt;}
.w0_c00092{width:508.800000pt;}
.x0_c00092{left:0.000000pt;}
.xd_c00092{left:4.400000pt;}
.xc_c00092{left:5.600000pt;}
.xb_c00092{left:6.933333pt;}
.xa_c00092{left:8.133333pt;}
.x11_c00092{left:53.733333pt;}
.xe_c00092{left:56.666667pt;}
.x10_c00092{left:58.533333pt;}
.x9_c00092{left:59.600000pt;}
.x6_c00092{left:61.200000pt;}
.x3_c00092{left:70.400000pt;}
.x2_c00092{left:90.266667pt;}
.x4_c00092{left:92.400000pt;}
.x8_c00092{left:97.733333pt;}
.x7_c00092{left:100.800000pt;}
.x1_c00092{left:108.933333pt;}
.xf_c00092{left:120.933333pt;}
.x5_c00092{left:128.933333pt;}
.x1c_c00092{left:211.568237pt;}
.x1a_c00092{left:253.466667pt;}
.x18_c00092{left:254.800000pt;}
.x17_c00092{left:256.533333pt;}
.x16_c00092{left:258.533333pt;}
.x15_c00092{left:259.733333pt;}
.x14_c00092{left:261.333333pt;}
.x12_c00092{left:263.066667pt;}
.x13_c00092{left:265.200000pt;}
.x19_c00092{left:299.200000pt;}
.x1b_c00092{left:350.666667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_7bee6b81d589d5c8ce883cf5.woff2')format("woff");}.ff1_c00093{font-family:ff1_c00093;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00093;src:url('chunks/assets/font_0f1c2b09d2e293bacb71417c.woff2')format("woff");}.ff2_c00093{font-family:ff2_c00093;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00093;src:url('chunks/assets/font_2f30f11e0571fb969217fde1.woff2')format("woff");}.ff3_c00093{font-family:ff3_c00093;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00093;src:url('chunks/assets/font_49a2fd0857e1e8ac529144da.woff2')format("woff");}.ff4_c00093{font-family:ff4_c00093;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00093;src:url('chunks/assets/font_d99fba36500e1602ce6bf00e.woff2')format("woff");}.ff5_c00093{font-family:ff5_c00093;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00093;src:url('chunks/assets/font_1f367f67626dd2fdfa03d897.woff2')format("woff");}.ff6_c00093{font-family:ff6_c00093;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00093;src:url('chunks/assets/font_144ab2b7127927a5e70e2501.woff2')format("woff");}.ff7_c00093{font-family:ff7_c00093;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00093;src:url('chunks/assets/font_c38983ee3d36e230bc0289b6.woff2')format("woff");}.ff8_c00093{font-family:ff8_c00093;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00093;src:url('chunks/assets/font_19f8e003c02e67e0ffb4e379.woff2')format("woff");}.ff9_c00093{font-family:ff9_c00093;line-height:1.437000;font-style:normal;font-weight: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_c00093;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ffa_c00093{font-family:ffa_c00093;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00093{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00093{vertical-align:0.000000px;}
.ls9_c00093{letter-spacing:0.000000px;}
.ls2_c00093{letter-spacing:1.350000px;}
.ls6_c00093{letter-spacing:2.400000px;}
.ls4_c00093{letter-spacing:3.000000px;}
.ls8_c00093{letter-spacing:4.293000px;}
.lsa_c00093{letter-spacing:6.000000px;}
.ls7_c00093{letter-spacing:7.800000px;}
.ls3_c00093{letter-spacing:7.845000px;}
.lsb_c00093{letter-spacing:12.000000px;}
.ls5_c00093{letter-spacing:21.693000px;}
.ls0_c00093{letter-spacing:27.480000px;}
.ls1_c00093{letter-spacing:322.140000px;}
.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;}
}
.ws1_c00093{word-spacing:-38.019000px;}
.ws2_c00093{word-spacing:-35.295000px;}
.ws6_c00093{word-spacing:-27.060000px;}
.ws0_c00093{word-spacing:-18.750000px;}
.ws9_c00093{word-spacing:-18.060000px;}
.ws5_c00093{word-spacing:-17.250000px;}
.ws7_c00093{word-spacing:-15.000000px;}
.ws4_c00093{word-spacing:-14.160000px;}
.ws3_c00093{word-spacing:-13.860000px;}
.ws8_c00093{word-spacing:-13.452000px;}
.wsa_c00093{word-spacing:0.000000px;}
._1f_c00093{margin-left:-31.107000px;}
._3_c00093{margin-left:-19.395000px;}
._17_c00093{margin-left:-14.022000px;}
._16_c00093{margin-left:-12.546000px;}
._1c_c00093{margin-left:-8.034000px;}
._b_c00093{margin-left:-6.030000px;}
._7_c00093{margin-left:-4.272000px;}
._9_c00093{margin-left:-2.700000px;}
._8_c00093{margin-left:-1.500000px;}
._6_c00093{width:1.005000px;}
._5_c00093{width:2.622000px;}
._1_c00093{width:4.158000px;}
._2_c00093{width:5.166000px;}
._a_c00093{width:6.945000px;}
._0_c00093{width:8.442000px;}
._4_c00093{width:9.498000px;}
._c_c00093{width:11.217000px;}
._10_c00093{width:12.408000px;}
._d_c00093{width:13.440000px;}
._f_c00093{width:15.216000px;}
._12_c00093{width:16.218000px;}
._1b_c00093{width:18.405000px;}
._14_c00093{width:19.794000px;}
._21_c00093{width:20.859000px;}
._11_c00093{width:22.557000px;}
._15_c00093{width:25.935000px;}
._e_c00093{width:28.671000px;}
._1a_c00093{width:33.894000px;}
._19_c00093{width:36.570000px;}
._13_c00093{width:47.415000px;}
._20_c00093{width:52.230000px;}
._1d_c00093{width:59.520000px;}
._18_c00093{width:181.494000px;}
._1e_c00093{width:208.611000px;}
.fc2_c00093{color:transparent;}
.fc1_c00093{color:rgb(128,128,128);}
.fc0_c00093{color:rgb(0,0,0);}
.fs2_c00093{font-size:45.000000px;}
.fs5_c00093{font-size:48.000000px;}
.fs1_c00093{font-size:57.000000px;}
.fs3_c00093{font-size:60.000000px;}
.fs0_c00093{font-size:63.000000px;}
.fs4_c00093{font-size:69.000000px;}
.y0_c00093{bottom:0.000000px;}
.y5a_c00093{bottom:3.105000px;}
.y59_c00093{bottom:7.228369px;}
.y58_c00093{bottom:21.870000px;}
.y57_c00093{bottom:45.120000px;}
.y2c_c00093{bottom:46.620000px;}
.y56_c00093{bottom:64.020000px;}
.y2b_c00093{bottom:65.370000px;}
.y55_c00093{bottom:82.320000px;}
.y2a_c00093{bottom:83.370000px;}
.y54_c00093{bottom:100.170000px;}
.y29_c00093{bottom:102.570000px;}
.y53_c00093{bottom:118.770000px;}
.y28_c00093{bottom:120.120000px;}
.y52_c00093{bottom:136.620000px;}
.y27_c00093{bottom:139.620000px;}
.y51_c00093{bottom:154.170000px;}
.y26_c00093{bottom:157.620000px;}
.y50_c00093{bottom:173.820000px;}
.y25_c00093{bottom:176.070000px;}
.y4f_c00093{bottom:193.020000px;}
.y24_c00093{bottom:194.370000px;}
.y4e_c00093{bottom:210.270000px;}
.y23_c00093{bottom:212.520000px;}
.y4d_c00093{bottom:228.720000px;}
.y22_c00093{bottom:231.420000px;}
.y4c_c00093{bottom:246.720000px;}
.y21_c00093{bottom:249.120000px;}
.y4b_c00093{bottom:265.170000px;}
.y20_c00093{bottom:267.570000px;}
.y4a_c00093{bottom:281.070000px;}
.y1f_c00093{bottom:285.570000px;}
.y49_c00093{bottom:299.670000px;}
.y1e_c00093{bottom:304.020000px;}
.y48_c00093{bottom:317.970000px;}
.y1d_c00093{bottom:322.320000px;}
.y47_c00093{bottom:336.870000px;}
.y1c_c00093{bottom:340.470000px;}
.y46_c00093{bottom:354.420000px;}
.y1b_c00093{bottom:359.070000px;}
.y45_c00093{bottom:372.870000px;}
.y1a_c00093{bottom:377.220000px;}
.y44_c00093{bottom:391.470000px;}
.y19_c00093{bottom:394.470000px;}
.y43_c00093{bottom:409.770000px;}
.y18_c00093{bottom:413.070000px;}
.y42_c00093{bottom:428.220000px;}
.y17_c00093{bottom:431.670000px;}
.y41_c00093{bottom:446.070000px;}
.y16_c00093{bottom:450.270000px;}
.y40_c00093{bottom:463.320000px;}
.y15_c00093{bottom:468.420000px;}
.y3f_c00093{bottom:481.320000px;}
.y14_c00093{bottom:485.670000px;}
.y3e_c00093{bottom:500.520000px;}
.y13_c00093{bottom:504.270000px;}
.y3d_c00093{bottom:518.370000px;}
.y12_c00093{bottom:522.420000px;}
.y2_c00093{bottom:526.770000px;}
.y3c_c00093{bottom:535.170000px;}
.y11_c00093{bottom:540.270000px;}
.y1_c00093{bottom:545.070000px;}
.y3b_c00093{bottom:554.520000px;}
.y10_c00093{bottom:558.270000px;}
.y3a_c00093{bottom:572.670000px;}
.yf_c00093{bottom:576.120000px;}
.y39_c00093{bottom:590.970000px;}
.ye_c00093{bottom:594.270000px;}
.y38_c00093{bottom:608.220000px;}
.yd_c00093{bottom:612.270000px;}
.y37_c00093{bottom:626.670000px;}
.yc_c00093{bottom:630.420000px;}
.y36_c00093{bottom:644.220000px;}
.yb_c00093{bottom:649.020000px;}
.y35_c00093{bottom:663.420000px;}
.ya_c00093{bottom:666.570000px;}
.y34_c00093{bottom:681.420000px;}
.y9_c00093{bottom:684.720000px;}
.y33_c00093{bottom:698.220000px;}
.y2d_c00093{bottom:699.870000px;}
.y8_c00093{bottom:702.720000px;}
.y32_c00093{bottom:716.220000px;}
.y7_c00093{bottom:721.170000px;}
.y31_c00093{bottom:735.420000px;}
.y6_c00093{bottom:739.470000px;}
.y30_c00093{bottom:753.270000px;}
.y5_c00093{bottom:757.320000px;}
.y2f_c00093{bottom:772.470000px;}
.y4_c00093{bottom:775.620000px;}
.y2e_c00093{bottom:793.020000px;}
.y3_c00093{bottom:795.120000px;}
.h8_c00093{height:13.200073px;}
.h9_c00093{height:43.804688px;}
.h2_c00093{height:55.914551px;}
.h6_c00093{height:59.736000px;}
.h3_c00093{height:62.880000px;}
.h5_c00093{height:64.020000px;}
.h7_c00093{height:66.024000px;}
.h1_c00093{height:68.292000px;}
.h4_c00093{height:74.796000px;}
.h0_c00093{height:834.000000px;}
.w2_c00093{width:104.875500px;}
.w1_c00093{width:576.000000px;}
.w0_c00093{width:576.150000px;}
.x0_c00093{left:0.000000px;}
.x1_c00093{left:26.400000px;}
.x6_c00093{left:82.050000px;}
.x4_c00093{left:87.150000px;}
.x5_c00093{left:88.200000px;}
.x7_c00093{left:90.000000px;}
.x3_c00093{left:91.800000px;}
.x2_c00093{left:100.350000px;}
.x10_c00093{left:239.889267px;}
.xe_c00093{left:307.500000px;}
.xc_c00093{left:309.150000px;}
.xa_c00093{left:311.100000px;}
.xd_c00093{left:312.150000px;}
.x9_c00093{left:316.800000px;}
.xb_c00093{left:329.700000px;}
.xf_c00093{left:504.450000px;}
.x8_c00093{left:520.800000px;}
@media print{
.v0_c00093{vertical-align:0.000000pt;}
.ls9_c00093{letter-spacing:0.000000pt;}
.ls2_c00093{letter-spacing:1.200000pt;}
.ls6_c00093{letter-spacing:2.133333pt;}
.ls4_c00093{letter-spacing:2.666667pt;}
.ls8_c00093{letter-spacing:3.816000pt;}
.lsa_c00093{letter-spacing:5.333333pt;}
.ls7_c00093{letter-spacing:6.933333pt;}
.ls3_c00093{letter-spacing:6.973333pt;}
.lsb_c00093{letter-spacing:10.666667pt;}
.ls5_c00093{letter-spacing:19.282667pt;}
.ls0_c00093{letter-spacing:24.426667pt;}
.ls1_c00093{letter-spacing:286.346667pt;}
.ws1_c00093{word-spacing:-33.794667pt;}
.ws2_c00093{word-spacing:-31.373333pt;}
.ws6_c00093{word-spacing:-24.053333pt;}
.ws0_c00093{word-spacing:-16.666667pt;}
.ws9_c00093{word-spacing:-16.053333pt;}
.ws5_c00093{word-spacing:-15.333333pt;}
.ws7_c00093{word-spacing:-13.333333pt;}
.ws4_c00093{word-spacing:-12.586667pt;}
.ws3_c00093{word-spacing:-12.320000pt;}
.ws8_c00093{word-spacing:-11.957333pt;}
.wsa_c00093{word-spacing:0.000000pt;}
._1f_c00093{margin-left:-27.650667pt;}
._3_c00093{margin-left:-17.240000pt;}
._17_c00093{margin-left:-12.464000pt;}
._16_c00093{margin-left:-11.152000pt;}
._1c_c00093{margin-left:-7.141333pt;}
._b_c00093{margin-left:-5.360000pt;}
._7_c00093{margin-left:-3.797333pt;}
._9_c00093{margin-left:-2.400000pt;}
._8_c00093{margin-left:-1.333333pt;}
._6_c00093{width:0.893333pt;}
._5_c00093{width:2.330667pt;}
._1_c00093{width:3.696000pt;}
._2_c00093{width:4.592000pt;}
._a_c00093{width:6.173333pt;}
._0_c00093{width:7.504000pt;}
._4_c00093{width:8.442667pt;}
._c_c00093{width:9.970667pt;}
._10_c00093{width:11.029333pt;}
._d_c00093{width:11.946667pt;}
._f_c00093{width:13.525333pt;}
._12_c00093{width:14.416000pt;}
._1b_c00093{width:16.360000pt;}
._14_c00093{width:17.594667pt;}
._21_c00093{width:18.541333pt;}
._11_c00093{width:20.050667pt;}
._15_c00093{width:23.053333pt;}
._e_c00093{width:25.485333pt;}
._1a_c00093{width:30.128000pt;}
._19_c00093{width:32.506667pt;}
._13_c00093{width:42.146667pt;}
._20_c00093{width:46.426667pt;}
._1d_c00093{width:52.906667pt;}
._18_c00093{width:161.328000pt;}
._1e_c00093{width:185.432000pt;}
.fs2_c00093{font-size:40.000000pt;}
.fs5_c00093{font-size:42.666667pt;}
.fs1_c00093{font-size:50.666667pt;}
.fs3_c00093{font-size:53.333333pt;}
.fs0_c00093{font-size:56.000000pt;}
.fs4_c00093{font-size:61.333333pt;}
.y0_c00093{bottom:0.000000pt;}
.y5a_c00093{bottom:2.760000pt;}
.y59_c00093{bottom:6.425217pt;}
.y58_c00093{bottom:19.440000pt;}
.y57_c00093{bottom:40.106667pt;}
.y2c_c00093{bottom:41.440000pt;}
.y56_c00093{bottom:56.906667pt;}
.y2b_c00093{bottom:58.106667pt;}
.y55_c00093{bottom:73.173333pt;}
.y2a_c00093{bottom:74.106667pt;}
.y54_c00093{bottom:89.040000pt;}
.y29_c00093{bottom:91.173333pt;}
.y53_c00093{bottom:105.573333pt;}
.y28_c00093{bottom:106.773333pt;}
.y52_c00093{bottom:121.440000pt;}
.y27_c00093{bottom:124.106667pt;}
.y51_c00093{bottom:137.040000pt;}
.y26_c00093{bottom:140.106667pt;}
.y50_c00093{bottom:154.506667pt;}
.y25_c00093{bottom:156.506667pt;}
.y4f_c00093{bottom:171.573333pt;}
.y24_c00093{bottom:172.773333pt;}
.y4e_c00093{bottom:186.906667pt;}
.y23_c00093{bottom:188.906667pt;}
.y4d_c00093{bottom:203.306667pt;}
.y22_c00093{bottom:205.706667pt;}
.y4c_c00093{bottom:219.306667pt;}
.y21_c00093{bottom:221.440000pt;}
.y4b_c00093{bottom:235.706667pt;}
.y20_c00093{bottom:237.840000pt;}
.y4a_c00093{bottom:249.840000pt;}
.y1f_c00093{bottom:253.840000pt;}
.y49_c00093{bottom:266.373333pt;}
.y1e_c00093{bottom:270.240000pt;}
.y48_c00093{bottom:282.640000pt;}
.y1d_c00093{bottom:286.506667pt;}
.y47_c00093{bottom:299.440000pt;}
.y1c_c00093{bottom:302.640000pt;}
.y46_c00093{bottom:315.040000pt;}
.y1b_c00093{bottom:319.173333pt;}
.y45_c00093{bottom:331.440000pt;}
.y1a_c00093{bottom:335.306667pt;}
.y44_c00093{bottom:347.973333pt;}
.y19_c00093{bottom:350.640000pt;}
.y43_c00093{bottom:364.240000pt;}
.y18_c00093{bottom:367.173333pt;}
.y42_c00093{bottom:380.640000pt;}
.y17_c00093{bottom:383.706667pt;}
.y41_c00093{bottom:396.506667pt;}
.y16_c00093{bottom:400.240000pt;}
.y40_c00093{bottom:411.840000pt;}
.y15_c00093{bottom:416.373333pt;}
.y3f_c00093{bottom:427.840000pt;}
.y14_c00093{bottom:431.706667pt;}
.y3e_c00093{bottom:444.906667pt;}
.y13_c00093{bottom:448.240000pt;}
.y3d_c00093{bottom:460.773333pt;}
.y12_c00093{bottom:464.373333pt;}
.y2_c00093{bottom:468.240000pt;}
.y3c_c00093{bottom:475.706667pt;}
.y11_c00093{bottom:480.240000pt;}
.y1_c00093{bottom:484.506667pt;}
.y3b_c00093{bottom:492.906667pt;}
.y10_c00093{bottom:496.240000pt;}
.y3a_c00093{bottom:509.040000pt;}
.yf_c00093{bottom:512.106667pt;}
.y39_c00093{bottom:525.306667pt;}
.ye_c00093{bottom:528.240000pt;}
.y38_c00093{bottom:540.640000pt;}
.yd_c00093{bottom:544.240000pt;}
.y37_c00093{bottom:557.040000pt;}
.yc_c00093{bottom:560.373333pt;}
.y36_c00093{bottom:572.640000pt;}
.yb_c00093{bottom:576.906667pt;}
.y35_c00093{bottom:589.706667pt;}
.ya_c00093{bottom:592.506667pt;}
.y34_c00093{bottom:605.706667pt;}
.y9_c00093{bottom:608.640000pt;}
.y33_c00093{bottom:620.640000pt;}
.y2d_c00093{bottom:622.106667pt;}
.y8_c00093{bottom:624.640000pt;}
.y32_c00093{bottom:636.640000pt;}
.y7_c00093{bottom:641.040000pt;}
.y31_c00093{bottom:653.706667pt;}
.y6_c00093{bottom:657.306667pt;}
.y30_c00093{bottom:669.573333pt;}
.y5_c00093{bottom:673.173333pt;}
.y2f_c00093{bottom:686.640000pt;}
.y4_c00093{bottom:689.440000pt;}
.y2e_c00093{bottom:704.906667pt;}
.y3_c00093{bottom:706.773333pt;}
.h8_c00093{height:11.733399pt;}
.h9_c00093{height:38.937500pt;}
.h2_c00093{height:49.701823pt;}
.h6_c00093{height:53.098667pt;}
.h3_c00093{height:55.893333pt;}
.h5_c00093{height:56.906667pt;}
.h7_c00093{height:58.688000pt;}
.h1_c00093{height:60.704000pt;}
.h4_c00093{height:66.485333pt;}
.h0_c00093{height:741.333333pt;}
.w2_c00093{width:93.222667pt;}
.w1_c00093{width:512.000000pt;}
.w0_c00093{width:512.133333pt;}
.x0_c00093{left:0.000000pt;}
.x1_c00093{left:23.466667pt;}
.x6_c00093{left:72.933333pt;}
.x4_c00093{left:77.466667pt;}
.x5_c00093{left:78.400000pt;}
.x7_c00093{left:80.000000pt;}
.x3_c00093{left:81.600000pt;}
.x2_c00093{left:89.200000pt;}
.x10_c00093{left:213.234904pt;}
.xe_c00093{left:273.333333pt;}
.xc_c00093{left:274.800000pt;}
.xa_c00093{left:276.533333pt;}
.xd_c00093{left:277.466667pt;}
.x9_c00093{left:281.600000pt;}
.xb_c00093{left:293.066667pt;}
.xf_c00093{left:448.400000pt;}
.x8_c00093{left:462.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_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_715566844c73ce7d5621135c.woff2')format("woff");}.ff1_c00094{font-family:ff1_c00094;line-height:1.437000;font-style:normal;font-weight:normal;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_61f9d5d7f75d4139ad710681.woff2')format("woff");}.ff2_c00094{font-family:ff2_c00094;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00094;src:url('chunks/assets/font_e04ff76ad86ac470b6e4242c.woff2')format("woff");}.ff3_c00094{font-family:ff3_c00094;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00094;src:url('chunks/assets/font_e973444dc1ed5c76c26d9733.woff2')format("woff");}.ff4_c00094{font-family:ff4_c00094;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00094;src:url('chunks/assets/font_023156423020ee2dcea8bd56.woff2')format("woff");}.ff5_c00094{font-family:ff5_c00094;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00094;src:url('chunks/assets/font_006d8916eeb7b1e0f3638c85.woff2')format("woff");}.ff6_c00094{font-family:ff6_c00094;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00094;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff7_c00094{font-family:ff7_c00094;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00094{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00094{vertical-align:0.000000px;}
.v1_c00094{vertical-align:97.200000px;}
.ls5_c00094{letter-spacing:0.000000px;}
.ls0_c00094{letter-spacing:3.000000px;}
.ls3_c00094{letter-spacing:6.000000px;}
.ls2_c00094{letter-spacing:9.000000px;}
.ls6_c00094{letter-spacing:12.000000px;}
.ls4_c00094{letter-spacing:36.645000px;}
.ls1_c00094{letter-spacing:39.381000px;}
.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;}
}
.ws5_c00094{word-spacing:-95.370000px;}
.ws3_c00094{word-spacing:-37.860000px;}
.ws2_c00094{word-spacing:-23.250000px;}
.ws0_c00094{word-spacing:-17.868000px;}
.ws1_c00094{word-spacing:-15.060000px;}
.ws4_c00094{word-spacing:-14.160000px;}
.ws6_c00094{word-spacing:0.000000px;}
._2e_c00094{margin-left:-24.885000px;}
._30_c00094{margin-left:-19.110000px;}
._24_c00094{margin-left:-16.980000px;}
._20_c00094{margin-left:-13.725000px;}
._25_c00094{margin-left:-11.460000px;}
._22_c00094{margin-left:-10.200000px;}
._18_c00094{margin-left:-8.220000px;}
._9_c00094{margin-left:-7.200000px;}
._c_c00094{margin-left:-5.700000px;}
._d_c00094{margin-left:-4.500000px;}
._7_c00094{margin-left:-2.940000px;}
._6_c00094{margin-left:-1.440000px;}
._4_c00094{width:1.980000px;}
._8_c00094{width:3.000000px;}
._a_c00094{width:4.260000px;}
._15_c00094{width:5.400000px;}
._14_c00094{width:6.420000px;}
._19_c00094{width:7.860000px;}
._1_c00094{width:8.880000px;}
._12_c00094{width:10.200000px;}
._0_c00094{width:11.700000px;}
._f_c00094{width:12.780000px;}
._13_c00094{width:14.160000px;}
._3_c00094{width:15.360000px;}
._26_c00094{width:17.340000px;}
._10_c00094{width:18.600000px;}
._5_c00094{width:20.460000px;}
._e_c00094{width:22.380000px;}
._17_c00094{width:23.700000px;}
._11_c00094{width:24.720000px;}
._16_c00094{width:25.980000px;}
._b_c00094{width:27.480000px;}
._23_c00094{width:29.340000px;}
._21_c00094{width:31.140000px;}
._28_c00094{width:34.800000px;}
._2a_c00094{width:36.249000px;}
._2c_c00094{width:38.820000px;}
._2_c00094{width:41.160000px;}
._1d_c00094{width:43.677000px;}
._2b_c00094{width:44.760000px;}
._1e_c00094{width:46.023000px;}
._1c_c00094{width:47.946000px;}
._27_c00094{width:49.374000px;}
._1a_c00094{width:52.680000px;}
._29_c00094{width:55.860000px;}
._1b_c00094{width:63.900000px;}
._2f_c00094{width:122.310000px;}
._2d_c00094{width:180.645000px;}
._1f_c00094{width:466.896000px;}
.fc2_c00094{color:transparent;}
.fc1_c00094{color:rgb(128,128,128);}
.fc0_c00094{color:rgb(0,0,0);}
.fs4_c00094{font-size:45.000000px;}
.fs6_c00094{font-size:48.000000px;}
.fs0_c00094{font-size:60.000000px;}
.fs1_c00094{font-size:63.000000px;}
.fs2_c00094{font-size:69.000000px;}
.fs5_c00094{font-size:105.000000px;}
.fs3_c00094{font-size:189.000000px;}
.y0_c00094{bottom:0.000000px;}
.y51_c00094{bottom:3.105000px;}
.y50_c00094{bottom:7.228363px;}
.y4f_c00094{bottom:34.650000px;}
.y2a_c00094{bottom:52.200000px;}
.y4e_c00094{bottom:52.650000px;}
.y4d_c00094{bottom:70.950000px;}
.y29_c00094{bottom:71.550000px;}
.y4c_c00094{bottom:89.100000px;}
.y28_c00094{bottom:89.550000px;}
.y4b_c00094{bottom:107.250000px;}
.y27_c00094{bottom:108.000000px;}
.y4a_c00094{bottom:125.550000px;}
.y26_c00094{bottom:126.000000px;}
.y49_c00094{bottom:144.000000px;}
.y25_c00094{bottom:144.150000px;}
.y24_c00094{bottom:162.450000px;}
.y23_c00094{bottom:180.600000px;}
.y48_c00094{bottom:180.900000px;}
.y47_c00094{bottom:198.150000px;}
.y22_c00094{bottom:198.900000px;}
.y46_c00094{bottom:216.450000px;}
.y21_c00094{bottom:217.050000px;}
.y45_c00094{bottom:234.600000px;}
.y20_c00094{bottom:235.500000px;}
.y44_c00094{bottom:252.900000px;}
.y1f_c00094{bottom:253.200000px;}
.y1e_c00094{bottom:271.350000px;}
.y1d_c00094{bottom:289.650000px;}
.y1c_c00094{bottom:308.100000px;}
.y43_c00094{bottom:308.400000px;}
.y1b_c00094{bottom:325.800000px;}
.y1a_c00094{bottom:344.250000px;}
.y42_c00094{bottom:344.700000px;}
.y41_c00094{bottom:361.800000px;}
.y19_c00094{bottom:362.100000px;}
.y18_c00094{bottom:379.800000px;}
.y40_c00094{bottom:380.700000px;}
.y17_c00094{bottom:397.650000px;}
.y3f_c00094{bottom:398.700000px;}
.y16_c00094{bottom:415.800000px;}
.y3e_c00094{bottom:416.850000px;}
.y15_c00094{bottom:433.800000px;}
.y3d_c00094{bottom:435.000000px;}
.y3b_c00094{bottom:446.850000px;}
.y14_c00094{bottom:451.650000px;}
.y3c_c00094{bottom:452.550000px;}
.y13_c00094{bottom:469.200000px;}
.y12_c00094{bottom:487.350000px;}
.y3a_c00094{bottom:489.150000px;}
.y11_c00094{bottom:505.200000px;}
.y39_c00094{bottom:507.000000px;}
.y10_c00094{bottom:522.900000px;}
.y38_c00094{bottom:526.200000px;}
.yf_c00094{bottom:541.350000px;}
.y37_c00094{bottom:543.750000px;}
.ye_c00094{bottom:559.500000px;}
.y36_c00094{bottom:562.350000px;}
.yd_c00094{bottom:577.500000px;}
.y35_c00094{bottom:579.450000px;}
.yc_c00094{bottom:594.750000px;}
.yb_c00094{bottom:612.900000px;}
.y34_c00094{bottom:616.050000px;}
.ya_c00094{bottom:631.350000px;}
.y33_c00094{bottom:633.900000px;}
.y9_c00094{bottom:649.350000px;}
.y32_c00094{bottom:652.050000px;}
.y8_c00094{bottom:666.900000px;}
.y31_c00094{bottom:670.650000px;}
.y7_c00094{bottom:684.900000px;}
.y30_c00094{bottom:688.200000px;}
.y6_c00094{bottom:703.650000px;}
.y2f_c00094{bottom:706.350000px;}
.y5_c00094{bottom:721.650000px;}
.y2e_c00094{bottom:724.650000px;}
.y4_c00094{bottom:739.200000px;}
.y2d_c00094{bottom:742.800000px;}
.y3_c00094{bottom:758.400000px;}
.y2c_c00094{bottom:760.800000px;}
.y2_c00094{bottom:776.250000px;}
.y2b_c00094{bottom:778.650000px;}
.y1_c00094{bottom:797.550000px;}
.h9_c00094{height:13.200074px;}
.ha_c00094{height:43.804688px;}
.h2_c00094{height:62.880000px;}
.h4_c00094{height:63.480000px;}
.h7_c00094{height:64.020000px;}
.h5_c00094{height:72.312000px;}
.h3_c00094{height:73.623000px;}
.h8_c00094{height:110.040000px;}
.h6_c00094{height:198.072000px;}
.h1_c00094{height:828.750000px;}
.h0_c00094{height:828.900000px;}
.w1_c00094{width:104.875500px;}
.w0_c00094{width:567.000000px;}
.x0_c00094{left:0.000000px;}
.x9_c00094{left:66.750000px;}
.x8_c00094{left:68.100000px;}
.x6_c00094{left:69.450000px;}
.x7_c00094{left:72.150000px;}
.x5_c00094{left:73.200000px;}
.x2_c00094{left:74.250000px;}
.x4_c00094{left:75.300000px;}
.x3_c00094{left:76.500000px;}
.x1_c00094{left:209.250000px;}
.x1a_c00094{left:235.314240px;}
.x16_c00094{left:285.450000px;}
.xa_c00094{left:287.250000px;}
.x18_c00094{left:289.200000px;}
.x17_c00094{left:290.850000px;}
.x15_c00094{left:291.900000px;}
.x14_c00094{left:292.950000px;}
.x13_c00094{left:294.300000px;}
.xc_c00094{left:295.950000px;}
.xb_c00094{left:297.000000px;}
.xd_c00094{left:299.700000px;}
.xf_c00094{left:310.500000px;}
.x10_c00094{left:321.600000px;}
.x19_c00094{left:331.650000px;}
.x12_c00094{left:336.750000px;}
.x11_c00094{left:353.400000px;}
.xe_c00094{left:396.450000px;}
@media print{
.v0_c00094{vertical-align:0.000000pt;}
.v1_c00094{vertical-align:86.400000pt;}
.ls5_c00094{letter-spacing:0.000000pt;}
.ls0_c00094{letter-spacing:2.666667pt;}
.ls3_c00094{letter-spacing:5.333333pt;}
.ls2_c00094{letter-spacing:8.000000pt;}
.ls6_c00094{letter-spacing:10.666667pt;}
.ls4_c00094{letter-spacing:32.573333pt;}
.ls1_c00094{letter-spacing:35.005333pt;}
.ws5_c00094{word-spacing:-84.773333pt;}
.ws3_c00094{word-spacing:-33.653333pt;}
.ws2_c00094{word-spacing:-20.666667pt;}
.ws0_c00094{word-spacing:-15.882667pt;}
.ws1_c00094{word-spacing:-13.386667pt;}
.ws4_c00094{word-spacing:-12.586667pt;}
.ws6_c00094{word-spacing:0.000000pt;}
._2e_c00094{margin-left:-22.120000pt;}
._30_c00094{margin-left:-16.986667pt;}
._24_c00094{margin-left:-15.093333pt;}
._20_c00094{margin-left:-12.200000pt;}
._25_c00094{margin-left:-10.186667pt;}
._22_c00094{margin-left:-9.066667pt;}
._18_c00094{margin-left:-7.306667pt;}
._9_c00094{margin-left:-6.400000pt;}
._c_c00094{margin-left:-5.066667pt;}
._d_c00094{margin-left:-4.000000pt;}
._7_c00094{margin-left:-2.613333pt;}
._6_c00094{margin-left:-1.280000pt;}
._4_c00094{width:1.760000pt;}
._8_c00094{width:2.666667pt;}
._a_c00094{width:3.786667pt;}
._15_c00094{width:4.800000pt;}
._14_c00094{width:5.706667pt;}
._19_c00094{width:6.986667pt;}
._1_c00094{width:7.893333pt;}
._12_c00094{width:9.066667pt;}
._0_c00094{width:10.400000pt;}
._f_c00094{width:11.360000pt;}
._13_c00094{width:12.586667pt;}
._3_c00094{width:13.653333pt;}
._26_c00094{width:15.413333pt;}
._10_c00094{width:16.533333pt;}
._5_c00094{width:18.186667pt;}
._e_c00094{width:19.893333pt;}
._17_c00094{width:21.066667pt;}
._11_c00094{width:21.973333pt;}
._16_c00094{width:23.093333pt;}
._b_c00094{width:24.426667pt;}
._23_c00094{width:26.080000pt;}
._21_c00094{width:27.680000pt;}
._28_c00094{width:30.933333pt;}
._2a_c00094{width:32.221333pt;}
._2c_c00094{width:34.506667pt;}
._2_c00094{width:36.586667pt;}
._1d_c00094{width:38.824000pt;}
._2b_c00094{width:39.786667pt;}
._1e_c00094{width:40.909333pt;}
._1c_c00094{width:42.618667pt;}
._27_c00094{width:43.888000pt;}
._1a_c00094{width:46.826667pt;}
._29_c00094{width:49.653333pt;}
._1b_c00094{width:56.800000pt;}
._2f_c00094{width:108.720000pt;}
._2d_c00094{width:160.573333pt;}
._1f_c00094{width:415.018667pt;}
.fs4_c00094{font-size:40.000000pt;}
.fs6_c00094{font-size:42.666667pt;}
.fs0_c00094{font-size:53.333333pt;}
.fs1_c00094{font-size:56.000000pt;}
.fs2_c00094{font-size:61.333333pt;}
.fs5_c00094{font-size:93.333333pt;}
.fs3_c00094{font-size:168.000000pt;}
.y0_c00094{bottom:0.000000pt;}
.y51_c00094{bottom:2.760000pt;}
.y50_c00094{bottom:6.425212pt;}
.y4f_c00094{bottom:30.800000pt;}
.y2a_c00094{bottom:46.400000pt;}
.y4e_c00094{bottom:46.800000pt;}
.y4d_c00094{bottom:63.066667pt;}
.y29_c00094{bottom:63.600000pt;}
.y4c_c00094{bottom:79.200000pt;}
.y28_c00094{bottom:79.600000pt;}
.y4b_c00094{bottom:95.333333pt;}
.y27_c00094{bottom:96.000000pt;}
.y4a_c00094{bottom:111.600000pt;}
.y26_c00094{bottom:112.000000pt;}
.y49_c00094{bottom:128.000000pt;}
.y25_c00094{bottom:128.133333pt;}
.y24_c00094{bottom:144.400000pt;}
.y23_c00094{bottom:160.533333pt;}
.y48_c00094{bottom:160.800000pt;}
.y47_c00094{bottom:176.133333pt;}
.y22_c00094{bottom:176.800000pt;}
.y46_c00094{bottom:192.400000pt;}
.y21_c00094{bottom:192.933333pt;}
.y45_c00094{bottom:208.533333pt;}
.y20_c00094{bottom:209.333333pt;}
.y44_c00094{bottom:224.800000pt;}
.y1f_c00094{bottom:225.066667pt;}
.y1e_c00094{bottom:241.200000pt;}
.y1d_c00094{bottom:257.466667pt;}
.y1c_c00094{bottom:273.866667pt;}
.y43_c00094{bottom:274.133333pt;}
.y1b_c00094{bottom:289.600000pt;}
.y1a_c00094{bottom:306.000000pt;}
.y42_c00094{bottom:306.400000pt;}
.y41_c00094{bottom:321.600000pt;}
.y19_c00094{bottom:321.866667pt;}
.y18_c00094{bottom:337.600000pt;}
.y40_c00094{bottom:338.400000pt;}
.y17_c00094{bottom:353.466667pt;}
.y3f_c00094{bottom:354.400000pt;}
.y16_c00094{bottom:369.600000pt;}
.y3e_c00094{bottom:370.533333pt;}
.y15_c00094{bottom:385.600000pt;}
.y3d_c00094{bottom:386.666667pt;}
.y3b_c00094{bottom:397.200000pt;}
.y14_c00094{bottom:401.466667pt;}
.y3c_c00094{bottom:402.266667pt;}
.y13_c00094{bottom:417.066667pt;}
.y12_c00094{bottom:433.200000pt;}
.y3a_c00094{bottom:434.800000pt;}
.y11_c00094{bottom:449.066667pt;}
.y39_c00094{bottom:450.666667pt;}
.y10_c00094{bottom:464.800000pt;}
.y38_c00094{bottom:467.733333pt;}
.yf_c00094{bottom:481.200000pt;}
.y37_c00094{bottom:483.333333pt;}
.ye_c00094{bottom:497.333333pt;}
.y36_c00094{bottom:499.866667pt;}
.yd_c00094{bottom:513.333333pt;}
.y35_c00094{bottom:515.066667pt;}
.yc_c00094{bottom:528.666667pt;}
.yb_c00094{bottom:544.800000pt;}
.y34_c00094{bottom:547.600000pt;}
.ya_c00094{bottom:561.200000pt;}
.y33_c00094{bottom:563.466667pt;}
.y9_c00094{bottom:577.200000pt;}
.y32_c00094{bottom:579.600000pt;}
.y8_c00094{bottom:592.800000pt;}
.y31_c00094{bottom:596.133333pt;}
.y7_c00094{bottom:608.800000pt;}
.y30_c00094{bottom:611.733333pt;}
.y6_c00094{bottom:625.466667pt;}
.y2f_c00094{bottom:627.866667pt;}
.y5_c00094{bottom:641.466667pt;}
.y2e_c00094{bottom:644.133333pt;}
.y4_c00094{bottom:657.066667pt;}
.y2d_c00094{bottom:660.266667pt;}
.y3_c00094{bottom:674.133333pt;}
.y2c_c00094{bottom:676.266667pt;}
.y2_c00094{bottom:690.000000pt;}
.y2b_c00094{bottom:692.133333pt;}
.y1_c00094{bottom:708.933333pt;}
.h9_c00094{height:11.733399pt;}
.ha_c00094{height:38.937500pt;}
.h2_c00094{height:55.893333pt;}
.h4_c00094{height:56.426667pt;}
.h7_c00094{height:56.906667pt;}
.h5_c00094{height:64.277333pt;}
.h3_c00094{height:65.442667pt;}
.h8_c00094{height:97.813333pt;}
.h6_c00094{height:176.064000pt;}
.h1_c00094{height:736.666667pt;}
.h0_c00094{height:736.800000pt;}
.w1_c00094{width:93.222667pt;}
.w0_c00094{width:504.000000pt;}
.x0_c00094{left:0.000000pt;}
.x9_c00094{left:59.333333pt;}
.x8_c00094{left:60.533333pt;}
.x6_c00094{left:61.733333pt;}
.x7_c00094{left:64.133333pt;}
.x5_c00094{left:65.066667pt;}
.x2_c00094{left:66.000000pt;}
.x4_c00094{left:66.933333pt;}
.x3_c00094{left:68.000000pt;}
.x1_c00094{left:186.000000pt;}
.x1a_c00094{left:209.168213pt;}
.x16_c00094{left:253.733333pt;}
.xa_c00094{left:255.333333pt;}
.x18_c00094{left:257.066667pt;}
.x17_c00094{left:258.533333pt;}
.x15_c00094{left:259.466667pt;}
.x14_c00094{left:260.400000pt;}
.x13_c00094{left:261.600000pt;}
.xc_c00094{left:263.066667pt;}
.xb_c00094{left:264.000000pt;}
.xd_c00094{left:266.400000pt;}
.xf_c00094{left:276.000000pt;}
.x10_c00094{left:285.866667pt;}
.x19_c00094{left:294.800000pt;}
.x12_c00094{left:299.333333pt;}
.x11_c00094{left:314.133333pt;}
.xe_c00094{left:352.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e71094a70cd84ade5a14ae66.woff2')format("woff");}.ff1_c00095{font-family:ff1_c00095;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00095;src:url('chunks/assets/font_364ee46667205e9f331a2c1f.woff2')format("woff");}.ff2_c00095{font-family:ff2_c00095;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00095;src:url('chunks/assets/font_a86a9207c21d4b1ab26116d3.woff2')format("woff");}.ff3_c00095{font-family:ff3_c00095;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00095;src:url('chunks/assets/font_85a1c1ff25612a4dad5d4aae.woff2')format("woff");}.ff4_c00095{font-family:ff4_c00095;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00095;src:url('chunks/assets/font_207c3603be92dc53accc8433.woff2')format("woff");}.ff5_c00095{font-family:ff5_c00095;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00095;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff6_c00095{font-family:ff6_c00095;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00095{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00095{vertical-align:0.000000px;}
.ls5_c00095{letter-spacing:0.000000px;}
.ls3_c00095{letter-spacing:1.080000px;}
.ls0_c00095{letter-spacing:3.000000px;}
.ls4_c00095{letter-spacing:6.240000px;}
.ls2_c00095{letter-spacing:8.940000px;}
.ls7_c00095{letter-spacing:12.000000px;}
.ls6_c00095{letter-spacing:15.000000px;}
.ls1_c00095{letter-spacing:18.600000px;}
.sc__c00095{text-shadow:none;}
.sc0_c00095{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00095{-webkit-text-stroke:0px transparent;}
.sc0_c00095{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00095{word-spacing:-46.746000px;}
.ws3_c00095{word-spacing:-33.189000px;}
.ws4_c00095{word-spacing:-27.060000px;}
.ws2_c00095{word-spacing:-17.340000px;}
.ws5_c00095{word-spacing:-15.060000px;}
.ws0_c00095{word-spacing:-14.160000px;}
.ws6_c00095{word-spacing:0.000000px;}
._21_c00095{margin-left:-20.100000px;}
._23_c00095{margin-left:-17.040000px;}
._1a_c00095{margin-left:-15.840000px;}
._1c_c00095{margin-left:-13.740000px;}
._13_c00095{margin-left:-12.420000px;}
._18_c00095{margin-left:-10.920000px;}
._17_c00095{margin-left:-9.720000px;}
._e_c00095{margin-left:-8.100000px;}
._b_c00095{margin-left:-6.900000px;}
._c_c00095{margin-left:-5.580000px;}
._a_c00095{margin-left:-4.080000px;}
._10_c00095{margin-left:-3.060000px;}
._7_c00095{margin-left:-2.040000px;}
._f_c00095{margin-left:-1.020000px;}
._d_c00095{width:1.680000px;}
._9_c00095{width:2.820000px;}
._6_c00095{width:3.900000px;}
._0_c00095{width:5.280000px;}
._12_c00095{width:7.260000px;}
._24_c00095{width:8.460000px;}
._8_c00095{width:9.480000px;}
._19_c00095{width:10.680000px;}
._16_c00095{width:11.700000px;}
._2_c00095{width:12.780000px;}
._22_c00095{width:13.860000px;}
._3_c00095{width:14.880000px;}
._25_c00095{width:15.900000px;}
._14_c00095{width:17.040000px;}
._5_c00095{width:19.860000px;}
._4_c00095{width:21.960000px;}
._1d_c00095{width:24.780000px;}
._11_c00095{width:26.280000px;}
._29_c00095{width:27.960000px;}
._1f_c00095{width:29.100000px;}
._27_c00095{width:31.980000px;}
._20_c00095{width:35.040000px;}
._28_c00095{width:36.720000px;}
._1e_c00095{width:39.000000px;}
._26_c00095{width:47.640000px;}
._15_c00095{width:98.880000px;}
._1b_c00095{width:282.900000px;}
._1_c00095{width:317.880000px;}
.fc2_c00095{color:transparent;}
.fc1_c00095{color:rgb(128,128,128);}
.fc0_c00095{color:rgb(0,0,0);}
.fs3_c00095{font-size:48.000000px;}
.fs0_c00095{font-size:60.000000px;}
.fs1_c00095{font-size:66.000000px;}
.fs2_c00095{font-size:69.000000px;}
.y0_c00095{bottom:0.000000px;}
.y56_c00095{bottom:3.105000px;}
.y55_c00095{bottom:7.228369px;}
.y54_c00095{bottom:37.020000px;}
.y2a_c00095{bottom:54.270000px;}
.y53_c00095{bottom:54.720000px;}
.y29_c00095{bottom:73.470000px;}
.y28_c00095{bottom:91.470000px;}
.y52_c00095{bottom:92.370000px;}
.y51_c00095{bottom:109.920000px;}
.y27_c00095{bottom:110.070000px;}
.y50_c00095{bottom:128.520000px;}
.y26_c00095{bottom:128.970000px;}
.y4f_c00095{bottom:146.520000px;}
.y25_c00095{bottom:146.820000px;}
.y4e_c00095{bottom:165.270000px;}
.y24_c00095{bottom:165.420000px;}
.y23_c00095{bottom:182.970000px;}
.y4d_c00095{bottom:183.270000px;}
.y4c_c00095{bottom:201.420000px;}
.y22_c00095{bottom:201.720000px;}
.y4b_c00095{bottom:219.720000px;}
.y21_c00095{bottom:220.020000px;}
.y4a_c00095{bottom:236.970000px;}
.y20_c00095{bottom:238.320000px;}
.y49_c00095{bottom:255.720000px;}
.y1f_c00095{bottom:256.470000px;}
.y48_c00095{bottom:273.720000px;}
.y1e_c00095{bottom:274.770000px;}
.y47_c00095{bottom:292.170000px;}
.y1d_c00095{bottom:292.620000px;}
.y46_c00095{bottom:309.720000px;}
.y1c_c00095{bottom:311.070000px;}
.y45_c00095{bottom:327.720000px;}
.y1b_c00095{bottom:329.370000px;}
.y44_c00095{bottom:346.170000px;}
.y1a_c00095{bottom:347.670000px;}
.y43_c00095{bottom:364.170000px;}
.y19_c00095{bottom:365.520000px;}
.y42_c00095{bottom:382.020000px;}
.y18_c00095{bottom:383.970000px;}
.y41_c00095{bottom:400.170000px;}
.y17_c00095{bottom:401.670000px;}
.y40_c00095{bottom:418.470000px;}
.y16_c00095{bottom:420.570000px;}
.y3f_c00095{bottom:436.770000px;}
.y15_c00095{bottom:437.970000px;}
.y3e_c00095{bottom:455.220000px;}
.y14_c00095{bottom:456.570000px;}
.y3d_c00095{bottom:472.620000px;}
.y13_c00095{bottom:474.120000px;}
.y3c_c00095{bottom:490.620000px;}
.y12_c00095{bottom:492.120000px;}
.y3b_c00095{bottom:508.620000px;}
.y11_c00095{bottom:509.970000px;}
.y3a_c00095{bottom:527.070000px;}
.y10_c00095{bottom:528.120000px;}
.y39_c00095{bottom:544.770000px;}
.yf_c00095{bottom:546.120000px;}
.y38_c00095{bottom:562.620000px;}
.ye_c00095{bottom:564.570000px;}
.y37_c00095{bottom:580.770000px;}
.yd_c00095{bottom:582.870000px;}
.y36_c00095{bottom:599.070000px;}
.yc_c00095{bottom:601.020000px;}
.y35_c00095{bottom:617.220000px;}
.yb_c00095{bottom:617.670000px;}
.y34_c00095{bottom:635.070000px;}
.ya_c00095{bottom:636.120000px;}
.y33_c00095{bottom:653.070000px;}
.y9_c00095{bottom:654.120000px;}
.y32_c00095{bottom:671.220000px;}
.y8_c00095{bottom:672.270000px;}
.y31_c00095{bottom:689.220000px;}
.y7_c00095{bottom:690.420000px;}
.y30_c00095{bottom:707.670000px;}
.y6_c00095{bottom:708.420000px;}
.y2f_c00095{bottom:725.670000px;}
.y5_c00095{bottom:727.020000px;}
.y2e_c00095{bottom:743.820000px;}
.y4_c00095{bottom:744.420000px;}
.y2d_c00095{bottom:761.670000px;}
.y3_c00095{bottom:763.020000px;}
.y2c_c00095{bottom:779.970000px;}
.y2_c00095{bottom:780.870000px;}
.y2b_c00095{bottom:800.820000px;}
.y1_c00095{bottom:801.270000px;}
.h4_c00095{height:13.200073px;}
.h5_c00095{height:43.804688px;}
.h1_c00095{height:62.880000px;}
.h2_c00095{height:71.544000px;}
.h3_c00095{height:74.796000px;}
.h0_c00095{height:834.000000px;}
.w1_c00095{width:104.875500px;}
.w0_c00095{width:563.250000px;}
.x0_c00095{left:0.000000px;}
.x5_c00095{left:74.250000px;}
.x3_c00095{left:76.950000px;}
.x4_c00095{left:78.000000px;}
.x6_c00095{left:79.350000px;}
.x2_c00095{left:80.700000px;}
.x1_c00095{left:83.250000px;}
.xc_c00095{left:233.439240px;}
.x7_c00095{left:296.550000px;}
.x8_c00095{left:298.350000px;}
.x9_c00095{left:300.000000px;}
.xa_c00095{left:301.950000px;}
.xb_c00095{left:470.400000px;}
@media print{
.v0_c00095{vertical-align:0.000000pt;}
.ls5_c00095{letter-spacing:0.000000pt;}
.ls3_c00095{letter-spacing:0.960000pt;}
.ls0_c00095{letter-spacing:2.666667pt;}
.ls4_c00095{letter-spacing:5.546667pt;}
.ls2_c00095{letter-spacing:7.946667pt;}
.ls7_c00095{letter-spacing:10.666667pt;}
.ls6_c00095{letter-spacing:13.333333pt;}
.ls1_c00095{letter-spacing:16.533333pt;}
.ws1_c00095{word-spacing:-41.552000pt;}
.ws3_c00095{word-spacing:-29.501333pt;}
.ws4_c00095{word-spacing:-24.053333pt;}
.ws2_c00095{word-spacing:-15.413333pt;}
.ws5_c00095{word-spacing:-13.386667pt;}
.ws0_c00095{word-spacing:-12.586667pt;}
.ws6_c00095{word-spacing:0.000000pt;}
._21_c00095{margin-left:-17.866667pt;}
._23_c00095{margin-left:-15.146667pt;}
._1a_c00095{margin-left:-14.080000pt;}
._1c_c00095{margin-left:-12.213333pt;}
._13_c00095{margin-left:-11.040000pt;}
._18_c00095{margin-left:-9.706667pt;}
._17_c00095{margin-left:-8.640000pt;}
._e_c00095{margin-left:-7.200000pt;}
._b_c00095{margin-left:-6.133333pt;}
._c_c00095{margin-left:-4.960000pt;}
._a_c00095{margin-left:-3.626667pt;}
._10_c00095{margin-left:-2.720000pt;}
._7_c00095{margin-left:-1.813333pt;}
._f_c00095{margin-left:-0.906667pt;}
._d_c00095{width:1.493333pt;}
._9_c00095{width:2.506667pt;}
._6_c00095{width:3.466667pt;}
._0_c00095{width:4.693333pt;}
._12_c00095{width:6.453333pt;}
._24_c00095{width:7.520000pt;}
._8_c00095{width:8.426667pt;}
._19_c00095{width:9.493333pt;}
._16_c00095{width:10.400000pt;}
._2_c00095{width:11.360000pt;}
._22_c00095{width:12.320000pt;}
._3_c00095{width:13.226667pt;}
._25_c00095{width:14.133333pt;}
._14_c00095{width:15.146667pt;}
._5_c00095{width:17.653333pt;}
._4_c00095{width:19.520000pt;}
._1d_c00095{width:22.026667pt;}
._11_c00095{width:23.360000pt;}
._29_c00095{width:24.853333pt;}
._1f_c00095{width:25.866667pt;}
._27_c00095{width:28.426667pt;}
._20_c00095{width:31.146667pt;}
._28_c00095{width:32.640000pt;}
._1e_c00095{width:34.666667pt;}
._26_c00095{width:42.346667pt;}
._15_c00095{width:87.893333pt;}
._1b_c00095{width:251.466667pt;}
._1_c00095{width:282.560000pt;}
.fs3_c00095{font-size:42.666667pt;}
.fs0_c00095{font-size:53.333333pt;}
.fs1_c00095{font-size:58.666667pt;}
.fs2_c00095{font-size:61.333333pt;}
.y0_c00095{bottom:0.000000pt;}
.y56_c00095{bottom:2.760000pt;}
.y55_c00095{bottom:6.425217pt;}
.y54_c00095{bottom:32.906667pt;}
.y2a_c00095{bottom:48.240000pt;}
.y53_c00095{bottom:48.640000pt;}
.y29_c00095{bottom:65.306667pt;}
.y28_c00095{bottom:81.306667pt;}
.y52_c00095{bottom:82.106667pt;}
.y51_c00095{bottom:97.706667pt;}
.y27_c00095{bottom:97.840000pt;}
.y50_c00095{bottom:114.240000pt;}
.y26_c00095{bottom:114.640000pt;}
.y4f_c00095{bottom:130.240000pt;}
.y25_c00095{bottom:130.506667pt;}
.y4e_c00095{bottom:146.906667pt;}
.y24_c00095{bottom:147.040000pt;}
.y23_c00095{bottom:162.640000pt;}
.y4d_c00095{bottom:162.906667pt;}
.y4c_c00095{bottom:179.040000pt;}
.y22_c00095{bottom:179.306667pt;}
.y4b_c00095{bottom:195.306667pt;}
.y21_c00095{bottom:195.573333pt;}
.y4a_c00095{bottom:210.640000pt;}
.y20_c00095{bottom:211.840000pt;}
.y49_c00095{bottom:227.306667pt;}
.y1f_c00095{bottom:227.973333pt;}
.y48_c00095{bottom:243.306667pt;}
.y1e_c00095{bottom:244.240000pt;}
.y47_c00095{bottom:259.706667pt;}
.y1d_c00095{bottom:260.106667pt;}
.y46_c00095{bottom:275.306667pt;}
.y1c_c00095{bottom:276.506667pt;}
.y45_c00095{bottom:291.306667pt;}
.y1b_c00095{bottom:292.773333pt;}
.y44_c00095{bottom:307.706667pt;}
.y1a_c00095{bottom:309.040000pt;}
.y43_c00095{bottom:323.706667pt;}
.y19_c00095{bottom:324.906667pt;}
.y42_c00095{bottom:339.573333pt;}
.y18_c00095{bottom:341.306667pt;}
.y41_c00095{bottom:355.706667pt;}
.y17_c00095{bottom:357.040000pt;}
.y40_c00095{bottom:371.973333pt;}
.y16_c00095{bottom:373.840000pt;}
.y3f_c00095{bottom:388.240000pt;}
.y15_c00095{bottom:389.306667pt;}
.y3e_c00095{bottom:404.640000pt;}
.y14_c00095{bottom:405.840000pt;}
.y3d_c00095{bottom:420.106667pt;}
.y13_c00095{bottom:421.440000pt;}
.y3c_c00095{bottom:436.106667pt;}
.y12_c00095{bottom:437.440000pt;}
.y3b_c00095{bottom:452.106667pt;}
.y11_c00095{bottom:453.306667pt;}
.y3a_c00095{bottom:468.506667pt;}
.y10_c00095{bottom:469.440000pt;}
.y39_c00095{bottom:484.240000pt;}
.yf_c00095{bottom:485.440000pt;}
.y38_c00095{bottom:500.106667pt;}
.ye_c00095{bottom:501.840000pt;}
.y37_c00095{bottom:516.240000pt;}
.yd_c00095{bottom:518.106667pt;}
.y36_c00095{bottom:532.506667pt;}
.yc_c00095{bottom:534.240000pt;}
.y35_c00095{bottom:548.640000pt;}
.yb_c00095{bottom:549.040000pt;}
.y34_c00095{bottom:564.506667pt;}
.ya_c00095{bottom:565.440000pt;}
.y33_c00095{bottom:580.506667pt;}
.y9_c00095{bottom:581.440000pt;}
.y32_c00095{bottom:596.640000pt;}
.y8_c00095{bottom:597.573333pt;}
.y31_c00095{bottom:612.640000pt;}
.y7_c00095{bottom:613.706667pt;}
.y30_c00095{bottom:629.040000pt;}
.y6_c00095{bottom:629.706667pt;}
.y2f_c00095{bottom:645.040000pt;}
.y5_c00095{bottom:646.240000pt;}
.y2e_c00095{bottom:661.173333pt;}
.y4_c00095{bottom:661.706667pt;}
.y2d_c00095{bottom:677.040000pt;}
.y3_c00095{bottom:678.240000pt;}
.y2c_c00095{bottom:693.306667pt;}
.y2_c00095{bottom:694.106667pt;}
.y2b_c00095{bottom:711.840000pt;}
.y1_c00095{bottom:712.240000pt;}
.h4_c00095{height:11.733399pt;}
.h5_c00095{height:38.937500pt;}
.h1_c00095{height:55.893333pt;}
.h2_c00095{height:63.594667pt;}
.h3_c00095{height:66.485333pt;}
.h0_c00095{height:741.333333pt;}
.w1_c00095{width:93.222667pt;}
.w0_c00095{width:500.666667pt;}
.x0_c00095{left:0.000000pt;}
.x5_c00095{left:66.000000pt;}
.x3_c00095{left:68.400000pt;}
.x4_c00095{left:69.333333pt;}
.x6_c00095{left:70.533333pt;}
.x2_c00095{left:71.733333pt;}
.x1_c00095{left:74.000000pt;}
.xc_c00095{left:207.501546pt;}
.x7_c00095{left:263.600000pt;}
.x8_c00095{left:265.200000pt;}
.x9_c00095{left:266.666667pt;}
.xa_c00095{left:268.400000pt;}
.xb_c00095{left:418.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_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_10a86144fdc58e300c039298.woff2')format("woff");}.ff1_c00096{font-family:ff1_c00096;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00096;src:url('chunks/assets/font_43f5540b37b8be719b5335b2.woff2')format("woff");}.ff2_c00096{font-family:ff2_c00096;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00096;src:url('chunks/assets/font_b83971118c095b22170b2681.woff2')format("woff");}.ff3_c00096{font-family:ff3_c00096;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00096;src:url('chunks/assets/font_c8a2b3993cb6038bf0293087.woff2')format("woff");}.ff4_c00096{font-family:ff4_c00096;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00096;src:url('chunks/assets/font_d2657d05c5c4071f3711d7ba.woff2')format("woff");}.ff5_c00096{font-family:ff5_c00096;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00096;src:url('chunks/assets/font_3f2c45ded210ce55c22136c0.woff2')format("woff");}.ff6_c00096{font-family:ff6_c00096;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00096;src:url('chunks/assets/font_9f7279d751564457ff1427b0.woff2')format("woff");}.ff7_c00096{font-family:ff7_c00096;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00096;src:url('chunks/assets/font_7ff6f5a10afa57d7a8fa18a7.woff2')format("woff");}.ff8_c00096{font-family:ff8_c00096;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00096;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff9_c00096{font-family:ff9_c00096;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00096{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00096{vertical-align:0.000000px;}
.ls4_c00096{letter-spacing:0.000000px;}
.ls0_c00096{letter-spacing:3.000000px;}
.ls1_c00096{letter-spacing:9.966000px;}
.ls3_c00096{letter-spacing:11.880000px;}
.ls2_c00096{letter-spacing:23.940000px;}
.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:-14.160000px;}
.ws1_c00096{word-spacing:0.000000px;}
._25_c00096{margin-left:-17.520000px;}
._23_c00096{margin-left:-16.476000px;}
._1d_c00096{margin-left:-14.004000px;}
._14_c00096{margin-left:-12.840000px;}
._6_c00096{margin-left:-10.680000px;}
._9_c00096{margin-left:-8.880000px;}
._5_c00096{margin-left:-7.260000px;}
._c_c00096{margin-left:-6.060000px;}
._4_c00096{margin-left:-4.740000px;}
._e_c00096{margin-left:-3.600000px;}
._0_c00096{margin-left:-2.280000px;}
._1_c00096{margin-left:-1.080000px;}
._3_c00096{width:1.260000px;}
._2_c00096{width:2.640000px;}
._19_c00096{width:3.900000px;}
._b_c00096{width:4.980000px;}
._7_c00096{width:6.360000px;}
._1a_c00096{width:7.620000px;}
._15_c00096{width:8.760000px;}
._11_c00096{width:10.560000px;}
._f_c00096{width:12.480000px;}
._27_c00096{width:13.500000px;}
._8_c00096{width:14.640000px;}
._16_c00096{width:16.524000px;}
._21_c00096{width:18.960000px;}
._d_c00096{width:20.640000px;}
._1b_c00096{width:22.620000px;}
._32_c00096{width:23.700000px;}
._1f_c00096{width:24.789000px;}
._17_c00096{width:26.259000px;}
._2a_c00096{width:28.200000px;}
._18_c00096{width:30.147000px;}
._13_c00096{width:32.460000px;}
._26_c00096{width:33.840000px;}
._28_c00096{width:35.940000px;}
._2c_c00096{width:37.428000px;}
._2e_c00096{width:38.760000px;}
._2b_c00096{width:41.760000px;}
._30_c00096{width:43.980000px;}
._2f_c00096{width:46.800000px;}
._33_c00096{width:49.140000px;}
._34_c00096{width:50.280000px;}
._35_c00096{width:51.330000px;}
._31_c00096{width:53.340000px;}
._36_c00096{width:57.540000px;}
._10_c00096{width:81.420000px;}
._24_c00096{width:83.460000px;}
._12_c00096{width:85.080000px;}
._20_c00096{width:87.660000px;}
._1c_c00096{width:91.221000px;}
._1e_c00096{width:113.640000px;}
._a_c00096{width:177.060000px;}
._22_c00096{width:189.660000px;}
._29_c00096{width:192.660000px;}
._38_c00096{width:215.340000px;}
._2d_c00096{width:240.960000px;}
._37_c00096{width:326.640000px;}
.fc2_c00096{color:transparent;}
.fc1_c00096{color:rgb(128,128,128);}
.fc0_c00096{color:rgb(0,0,0);}
.fs4_c00096{font-size:48.000000px;}
.fs1_c00096{font-size:51.000000px;}
.fs0_c00096{font-size:60.000000px;}
.fs2_c00096{font-size:63.000000px;}
.fs3_c00096{font-size:69.000000px;}
.y0_c00096{bottom:0.000000px;}
.y29_c00096{bottom:3.105000px;}
.y28_c00096{bottom:7.228357px;}
.y27_c00096{bottom:42.180000px;}
.y26_c00096{bottom:62.430000px;}
.y25_c00096{bottom:79.980000px;}
.y24_c00096{bottom:97.980000px;}
.y23_c00096{bottom:116.730000px;}
.y22_c00096{bottom:134.730000px;}
.y21_c00096{bottom:152.580000px;}
.y20_c00096{bottom:170.880000px;}
.y1f_c00096{bottom:189.630000px;}
.y1e_c00096{bottom:207.630000px;}
.y1d_c00096{bottom:226.080000px;}
.y1c_c00096{bottom:243.780000px;}
.y1b_c00096{bottom:262.530000px;}
.y1a_c00096{bottom:280.230000px;}
.y19_c00096{bottom:298.680000px;}
.y18_c00096{bottom:316.680000px;}
.y17_c00096{bottom:334.530000px;}
.y16_c00096{bottom:352.980000px;}
.y15_c00096{bottom:370.680000px;}
.y14_c00096{bottom:389.130000px;}
.y13_c00096{bottom:406.980000px;}
.y12_c00096{bottom:425.580000px;}
.y11_c00096{bottom:443.430000px;}
.y10_c00096{bottom:461.430000px;}
.yf_c00096{bottom:479.880000px;}
.ye_c00096{bottom:497.430000px;}
.yd_c00096{bottom:515.130000px;}
.yc_c00096{bottom:533.580000px;}
.yb_c00096{bottom:552.180000px;}
.ya_c00096{bottom:570.030000px;}
.y9_c00096{bottom:588.030000px;}
.y8_c00096{bottom:606.180000px;}
.y7_c00096{bottom:624.480000px;}
.y6_c00096{bottom:642.930000px;}
.y5_c00096{bottom:660.780000px;}
.y4_c00096{bottom:679.080000px;}
.y3_c00096{bottom:696.630000px;}
.y2_c00096{bottom:770.130000px;}
.y1_c00096{bottom:787.680000px;}
.h6_c00096{height:13.200074px;}
.h7_c00096{height:43.804688px;}
.h2_c00096{height:62.880000px;}
.h3_c00096{height:66.024000px;}
.h5_c00096{height:67.221000px;}
.h4_c00096{height:72.312000px;}
.h1_c00096{height:845.250000px;}
.h0_c00096{height:845.400000px;}
.w2_c00096{width:104.875500px;}
.w0_c00096{width:578.100000px;}
.w1_c00096{width:578.250000px;}
.x0_c00096{left:0.000000px;}
.x7_c00096{left:61.800000px;}
.x8_c00096{left:62.850000px;}
.x5_c00096{left:64.050000px;}
.x6_c00096{left:66.150000px;}
.x4_c00096{left:67.200000px;}
.x3_c00096{left:68.250000px;}
.x2_c00096{left:69.900000px;}
.x1_c00096{left:72.900000px;}
.xa_c00096{left:240.864258px;}
.x9_c00096{left:374.700000px;}
@media print{
.v0_c00096{vertical-align:0.000000pt;}
.ls4_c00096{letter-spacing:0.000000pt;}
.ls0_c00096{letter-spacing:2.666667pt;}
.ls1_c00096{letter-spacing:8.858667pt;}
.ls3_c00096{letter-spacing:10.560000pt;}
.ls2_c00096{letter-spacing:21.280000pt;}
.ws0_c00096{word-spacing:-12.586667pt;}
.ws1_c00096{word-spacing:0.000000pt;}
._25_c00096{margin-left:-15.573333pt;}
._23_c00096{margin-left:-14.645333pt;}
._1d_c00096{margin-left:-12.448000pt;}
._14_c00096{margin-left:-11.413333pt;}
._6_c00096{margin-left:-9.493333pt;}
._9_c00096{margin-left:-7.893333pt;}
._5_c00096{margin-left:-6.453333pt;}
._c_c00096{margin-left:-5.386667pt;}
._4_c00096{margin-left:-4.213333pt;}
._e_c00096{margin-left:-3.200000pt;}
._0_c00096{margin-left:-2.026667pt;}
._1_c00096{margin-left:-0.960000pt;}
._3_c00096{width:1.120000pt;}
._2_c00096{width:2.346667pt;}
._19_c00096{width:3.466667pt;}
._b_c00096{width:4.426667pt;}
._7_c00096{width:5.653333pt;}
._1a_c00096{width:6.773333pt;}
._15_c00096{width:7.786667pt;}
._11_c00096{width:9.386667pt;}
._f_c00096{width:11.093333pt;}
._27_c00096{width:12.000000pt;}
._8_c00096{width:13.013333pt;}
._16_c00096{width:14.688000pt;}
._21_c00096{width:16.853333pt;}
._d_c00096{width:18.346667pt;}
._1b_c00096{width:20.106667pt;}
._32_c00096{width:21.066667pt;}
._1f_c00096{width:22.034667pt;}
._17_c00096{width:23.341333pt;}
._2a_c00096{width:25.066667pt;}
._18_c00096{width:26.797333pt;}
._13_c00096{width:28.853333pt;}
._26_c00096{width:30.080000pt;}
._28_c00096{width:31.946667pt;}
._2c_c00096{width:33.269333pt;}
._2e_c00096{width:34.453333pt;}
._2b_c00096{width:37.120000pt;}
._30_c00096{width:39.093333pt;}
._2f_c00096{width:41.600000pt;}
._33_c00096{width:43.680000pt;}
._34_c00096{width:44.693333pt;}
._35_c00096{width:45.626667pt;}
._31_c00096{width:47.413333pt;}
._36_c00096{width:51.146667pt;}
._10_c00096{width:72.373333pt;}
._24_c00096{width:74.186667pt;}
._12_c00096{width:75.626667pt;}
._20_c00096{width:77.920000pt;}
._1c_c00096{width:81.085333pt;}
._1e_c00096{width:101.013333pt;}
._a_c00096{width:157.386667pt;}
._22_c00096{width:168.586667pt;}
._29_c00096{width:171.253333pt;}
._38_c00096{width:191.413333pt;}
._2d_c00096{width:214.186667pt;}
._37_c00096{width:290.346667pt;}
.fs4_c00096{font-size:42.666667pt;}
.fs1_c00096{font-size:45.333333pt;}
.fs0_c00096{font-size:53.333333pt;}
.fs2_c00096{font-size:56.000000pt;}
.fs3_c00096{font-size:61.333333pt;}
.y0_c00096{bottom:0.000000pt;}
.y29_c00096{bottom:2.760000pt;}
.y28_c00096{bottom:6.425206pt;}
.y27_c00096{bottom:37.493333pt;}
.y26_c00096{bottom:55.493333pt;}
.y25_c00096{bottom:71.093333pt;}
.y24_c00096{bottom:87.093333pt;}
.y23_c00096{bottom:103.760000pt;}
.y22_c00096{bottom:119.760000pt;}
.y21_c00096{bottom:135.626667pt;}
.y20_c00096{bottom:151.893333pt;}
.y1f_c00096{bottom:168.560000pt;}
.y1e_c00096{bottom:184.560000pt;}
.y1d_c00096{bottom:200.960000pt;}
.y1c_c00096{bottom:216.693333pt;}
.y1b_c00096{bottom:233.360000pt;}
.y1a_c00096{bottom:249.093333pt;}
.y19_c00096{bottom:265.493333pt;}
.y18_c00096{bottom:281.493333pt;}
.y17_c00096{bottom:297.360000pt;}
.y16_c00096{bottom:313.760000pt;}
.y15_c00096{bottom:329.493333pt;}
.y14_c00096{bottom:345.893333pt;}
.y13_c00096{bottom:361.760000pt;}
.y12_c00096{bottom:378.293333pt;}
.y11_c00096{bottom:394.160000pt;}
.y10_c00096{bottom:410.160000pt;}
.yf_c00096{bottom:426.560000pt;}
.ye_c00096{bottom:442.160000pt;}
.yd_c00096{bottom:457.893333pt;}
.yc_c00096{bottom:474.293333pt;}
.yb_c00096{bottom:490.826667pt;}
.ya_c00096{bottom:506.693333pt;}
.y9_c00096{bottom:522.693333pt;}
.y8_c00096{bottom:538.826667pt;}
.y7_c00096{bottom:555.093333pt;}
.y6_c00096{bottom:571.493333pt;}
.y5_c00096{bottom:587.360000pt;}
.y4_c00096{bottom:603.626667pt;}
.y3_c00096{bottom:619.226667pt;}
.y2_c00096{bottom:684.560000pt;}
.y1_c00096{bottom:700.160000pt;}
.h6_c00096{height:11.733399pt;}
.h7_c00096{height:38.937500pt;}
.h2_c00096{height:55.893333pt;}
.h3_c00096{height:58.688000pt;}
.h5_c00096{height:59.752000pt;}
.h4_c00096{height:64.277333pt;}
.h1_c00096{height:751.333333pt;}
.h0_c00096{height:751.466667pt;}
.w2_c00096{width:93.222667pt;}
.w0_c00096{width:513.866667pt;}
.w1_c00096{width:514.000000pt;}
.x0_c00096{left:0.000000pt;}
.x7_c00096{left:54.933333pt;}
.x8_c00096{left:55.866667pt;}
.x5_c00096{left:56.933333pt;}
.x6_c00096{left:58.800000pt;}
.x4_c00096{left:59.733333pt;}
.x3_c00096{left:60.666667pt;}
.x2_c00096{left:62.133333pt;}
.x1_c00096{left:64.800000pt;}
.xa_c00096{left:214.101563pt;}
.x9_c00096{left:333.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_608f86d16731fddcd1faa562.woff2')format("woff");}.ff1_c00097{font-family:ff1_c00097;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00097;src:url('chunks/assets/font_6a23a23169b0df468923f949.woff2')format("woff");}.ff2_c00097{font-family:ff2_c00097;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00097;src:url('chunks/assets/font_cb73a60632a7d9c5d8a429d2.woff2')format("woff");}.ff3_c00097{font-family:ff3_c00097;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00097;src:url('chunks/assets/font_2422b811f1a2bbb6e2c9c087.woff2')format("woff");}.ff4_c00097{font-family:ff4_c00097;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00097;src:url('chunks/assets/font_43d841b6cbf7bbd3e8df6402.woff2')format("woff");}.ff5_c00097{font-family:ff5_c00097;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00097;src:url('chunks/assets/font_7b7c291c9e53241967bae389.woff2')format("woff");}.ff6_c00097{font-family:ff6_c00097;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00097;src:url('chunks/assets/font_9cf03f3942dbcf011f969a9a.woff2')format("woff");}.ff7_c00097{font-family:ff7_c00097;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00097;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff8_c00097{font-family:ff8_c00097;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00097{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00097{vertical-align:-81.600000px;}
.v0_c00097{vertical-align:0.000000px;}
.ls15_c00097{letter-spacing:-6.000000px;}
.ls14_c00097{letter-spacing:0.000000px;}
.lsc_c00097{letter-spacing:0.003000px;}
.ls7_c00097{letter-spacing:1.803000px;}
.ls2_c00097{letter-spacing:3.000000px;}
.ls4_c00097{letter-spacing:3.228000px;}
.ls8_c00097{letter-spacing:3.626400px;}
.ls5_c00097{letter-spacing:4.203000px;}
.ls13_c00097{letter-spacing:6.000000px;}
.lse_c00097{letter-spacing:6.828000px;}
.ls11_c00097{letter-spacing:9.828000px;}
.ls0_c00097{letter-spacing:9.900000px;}
.lsf_c00097{letter-spacing:11.856000px;}
.ls12_c00097{letter-spacing:12.000000px;}
.ls6_c00097{letter-spacing:14.796000px;}
.ls10_c00097{letter-spacing:15.163200px;}
.ls3_c00097{letter-spacing:16.363200px;}
.ls9_c00097{letter-spacing:19.203000px;}
.lsb_c00097{letter-spacing:19.893600px;}
.lsd_c00097{letter-spacing:25.963200px;}
.lsa_c00097{letter-spacing:88.203000px;}
.ls1_c00097{letter-spacing:350.340000px;}
.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;}
}
.ws1_c00097{word-spacing:-27.060000px;}
.ws4_c00097{word-spacing:-23.397000px;}
.ws8_c00097{word-spacing:-19.500000px;}
.ws3_c00097{word-spacing:-18.060000px;}
.ws5_c00097{word-spacing:-17.517600px;}
.ws7_c00097{word-spacing:-17.340000px;}
.ws2_c00097{word-spacing:-14.160000px;}
.ws0_c00097{word-spacing:-13.260000px;}
.ws9_c00097{word-spacing:0.000000px;}
.ws6_c00097{word-spacing:244.320000px;}
._1d_c00097{margin-left:-22.272000px;}
._e_c00097{margin-left:-18.216000px;}
._1e_c00097{margin-left:-13.854000px;}
._15_c00097{margin-left:-11.118000px;}
._1c_c00097{margin-left:-9.111000px;}
._5_c00097{margin-left:-7.548000px;}
._17_c00097{margin-left:-5.670000px;}
._10_c00097{margin-left:-4.662000px;}
._a_c00097{margin-left:-3.504000px;}
._6_c00097{margin-left:-2.040000px;}
._19_c00097{margin-left:-1.035000px;}
._8_c00097{width:1.749000px;}
._4_c00097{width:3.621000px;}
._b_c00097{width:4.641000px;}
._2_c00097{width:5.865000px;}
._3_c00097{width:6.936000px;}
._0_c00097{width:8.400000px;}
._1_c00097{width:9.540000px;}
._7_c00097{width:10.914000px;}
._d_c00097{width:12.477000px;}
._12_c00097{width:13.920000px;}
._13_c00097{width:15.123000px;}
._14_c00097{width:17.040000px;}
._f_c00097{width:20.598000px;}
._9_c00097{width:23.508000px;}
._16_c00097{width:27.843000px;}
._11_c00097{width:29.385000px;}
._1f_c00097{width:40.878000px;}
._18_c00097{width:146.229000px;}
._1b_c00097{width:162.102000px;}
._c_c00097{width:182.106000px;}
._1a_c00097{width:462.759000px;}
.fc2_c00097{color:transparent;}
.fc1_c00097{color:rgb(128,128,128);}
.fc0_c00097{color:rgb(0,0,0);}
.fs7_c00097{font-size:48.000000px;}
.fs1_c00097{font-size:51.000000px;}
.fs0_c00097{font-size:60.000000px;}
.fs6_c00097{font-size:66.000000px;}
.fs2_c00097{font-size:69.000000px;}
.fs4_c00097{font-size:98.400000px;}
.fs5_c00097{font-size:105.000000px;}
.fs3_c00097{font-size:123.000000px;}
.y0_c00097{bottom:0.000000px;}
.y2e_c00097{bottom:3.105000px;}
.y2d_c00097{bottom:7.228357px;}
.y2c_c00097{bottom:27.630000px;}
.y2b_c00097{bottom:46.230000px;}
.y2a_c00097{bottom:64.830000px;}
.y29_c00097{bottom:83.130000px;}
.y28_c00097{bottom:101.580000px;}
.y27_c00097{bottom:119.430000px;}
.y26_c00097{bottom:137.730000px;}
.y25_c00097{bottom:156.330000px;}
.y24_c00097{bottom:174.480000px;}
.y23_c00097{bottom:192.780000px;}
.y22_c00097{bottom:210.930000px;}
.y21_c00097{bottom:228.480000px;}
.y20_c00097{bottom:247.680000px;}
.y1f_c00097{bottom:265.230000px;}
.y1e_c00097{bottom:283.830000px;}
.y1d_c00097{bottom:301.380000px;}
.y1c_c00097{bottom:319.380000px;}
.y1b_c00097{bottom:338.280000px;}
.y1a_c00097{bottom:356.430000px;}
.y19_c00097{bottom:374.280000px;}
.y18_c00097{bottom:392.580000px;}
.y17_c00097{bottom:411.030000px;}
.y16_c00097{bottom:429.630000px;}
.y15_c00097{bottom:447.630000px;}
.y14_c00097{bottom:483.630000px;}
.y13_c00097{bottom:520.530000px;}
.y12_c00097{bottom:551.580000px;}
.y11_c00097{bottom:582.480000px;}
.y10_c00097{bottom:664.230000px;}
.y8_c00097{bottom:665.280000px;}
.yf_c00097{bottom:682.830000px;}
.y7_c00097{bottom:683.880000px;}
.ye_c00097{bottom:700.380000px;}
.y6_c00097{bottom:701.430000px;}
.yd_c00097{bottom:718.980000px;}
.y5_c00097{bottom:719.880000px;}
.yc_c00097{bottom:737.130000px;}
.y4_c00097{bottom:738.180000px;}
.yb_c00097{bottom:755.280000px;}
.y3_c00097{bottom:756.030000px;}
.ya_c00097{bottom:773.580000px;}
.y2_c00097{bottom:774.330000px;}
.y1_c00097{bottom:793.530000px;}
.y9_c00097{bottom:794.430000px;}
.h8_c00097{height:13.200074px;}
.h9_c00097{height:43.804688px;}
.h2_c00097{height:53.448000px;}
.h4_c00097{height:62.880000px;}
.h1_c00097{height:64.020000px;}
.h7_c00097{height:70.422000px;}
.h3_c00097{height:73.623000px;}
.h6_c00097{height:110.040000px;}
.h5_c00097{height:128.904000px;}
.h0_c00097{height:819.750000px;}
.w1_c00097{width:104.875500px;}
.w0_c00097{width:553.500000px;}
.x0_c00097{left:0.000000px;}
.x2_c00097{left:67.950000px;}
.x3_c00097{left:69.150000px;}
.x1_c00097{left:71.250000px;}
.x12_c00097{left:76.500000px;}
.x11_c00097{left:78.300000px;}
.x13_c00097{left:79.350000px;}
.x14_c00097{left:80.550000px;}
.x9_c00097{left:87.300000px;}
.xc_c00097{left:113.100000px;}
.xa_c00097{left:152.100000px;}
.xd_c00097{left:189.900000px;}
.x10_c00097{left:195.450000px;}
.xf_c00097{left:196.800000px;}
.xe_c00097{left:198.150000px;}
.x16_c00097{left:228.564240px;}
.xb_c00097{left:239.550000px;}
.x5_c00097{left:290.250000px;}
.x4_c00097{left:292.650000px;}
.x6_c00097{left:318.900000px;}
.x7_c00097{left:350.700000px;}
.x8_c00097{left:378.000000px;}
.x15_c00097{left:457.350000px;}
@media print{
.v1_c00097{vertical-align:-72.533333pt;}
.v0_c00097{vertical-align:0.000000pt;}
.ls15_c00097{letter-spacing:-5.333333pt;}
.ls14_c00097{letter-spacing:0.000000pt;}
.lsc_c00097{letter-spacing:0.002667pt;}
.ls7_c00097{letter-spacing:1.602667pt;}
.ls2_c00097{letter-spacing:2.666667pt;}
.ls4_c00097{letter-spacing:2.869333pt;}
.ls8_c00097{letter-spacing:3.223467pt;}
.ls5_c00097{letter-spacing:3.736000pt;}
.ls13_c00097{letter-spacing:5.333333pt;}
.lse_c00097{letter-spacing:6.069333pt;}
.ls11_c00097{letter-spacing:8.736000pt;}
.ls0_c00097{letter-spacing:8.800000pt;}
.lsf_c00097{letter-spacing:10.538667pt;}
.ls12_c00097{letter-spacing:10.666667pt;}
.ls6_c00097{letter-spacing:13.152000pt;}
.ls10_c00097{letter-spacing:13.478400pt;}
.ls3_c00097{letter-spacing:14.545067pt;}
.ls9_c00097{letter-spacing:17.069333pt;}
.lsb_c00097{letter-spacing:17.683200pt;}
.lsd_c00097{letter-spacing:23.078400pt;}
.lsa_c00097{letter-spacing:78.402667pt;}
.ls1_c00097{letter-spacing:311.413333pt;}
.ws1_c00097{word-spacing:-24.053333pt;}
.ws4_c00097{word-spacing:-20.797333pt;}
.ws8_c00097{word-spacing:-17.333333pt;}
.ws3_c00097{word-spacing:-16.053333pt;}
.ws5_c00097{word-spacing:-15.571200pt;}
.ws7_c00097{word-spacing:-15.413333pt;}
.ws2_c00097{word-spacing:-12.586667pt;}
.ws0_c00097{word-spacing:-11.786667pt;}
.ws9_c00097{word-spacing:0.000000pt;}
.ws6_c00097{word-spacing:217.173333pt;}
._1d_c00097{margin-left:-19.797333pt;}
._e_c00097{margin-left:-16.192000pt;}
._1e_c00097{margin-left:-12.314667pt;}
._15_c00097{margin-left:-9.882667pt;}
._1c_c00097{margin-left:-8.098667pt;}
._5_c00097{margin-left:-6.709333pt;}
._17_c00097{margin-left:-5.040000pt;}
._10_c00097{margin-left:-4.144000pt;}
._a_c00097{margin-left:-3.114667pt;}
._6_c00097{margin-left:-1.813333pt;}
._19_c00097{margin-left:-0.920000pt;}
._8_c00097{width:1.554667pt;}
._4_c00097{width:3.218667pt;}
._b_c00097{width:4.125333pt;}
._2_c00097{width:5.213333pt;}
._3_c00097{width:6.165333pt;}
._0_c00097{width:7.466667pt;}
._1_c00097{width:8.480000pt;}
._7_c00097{width:9.701333pt;}
._d_c00097{width:11.090667pt;}
._12_c00097{width:12.373333pt;}
._13_c00097{width:13.442667pt;}
._14_c00097{width:15.146667pt;}
._f_c00097{width:18.309333pt;}
._9_c00097{width:20.896000pt;}
._16_c00097{width:24.749333pt;}
._11_c00097{width:26.120000pt;}
._1f_c00097{width:36.336000pt;}
._18_c00097{width:129.981333pt;}
._1b_c00097{width:144.090667pt;}
._c_c00097{width:161.872000pt;}
._1a_c00097{width:411.341333pt;}
.fs7_c00097{font-size:42.666667pt;}
.fs1_c00097{font-size:45.333333pt;}
.fs0_c00097{font-size:53.333333pt;}
.fs6_c00097{font-size:58.666667pt;}
.fs2_c00097{font-size:61.333333pt;}
.fs4_c00097{font-size:87.466667pt;}
.fs5_c00097{font-size:93.333333pt;}
.fs3_c00097{font-size:109.333333pt;}
.y0_c00097{bottom:0.000000pt;}
.y2e_c00097{bottom:2.760000pt;}
.y2d_c00097{bottom:6.425206pt;}
.y2c_c00097{bottom:24.560000pt;}
.y2b_c00097{bottom:41.093333pt;}
.y2a_c00097{bottom:57.626667pt;}
.y29_c00097{bottom:73.893333pt;}
.y28_c00097{bottom:90.293333pt;}
.y27_c00097{bottom:106.160000pt;}
.y26_c00097{bottom:122.426667pt;}
.y25_c00097{bottom:138.960000pt;}
.y24_c00097{bottom:155.093333pt;}
.y23_c00097{bottom:171.360000pt;}
.y22_c00097{bottom:187.493333pt;}
.y21_c00097{bottom:203.093333pt;}
.y20_c00097{bottom:220.160000pt;}
.y1f_c00097{bottom:235.760000pt;}
.y1e_c00097{bottom:252.293333pt;}
.y1d_c00097{bottom:267.893333pt;}
.y1c_c00097{bottom:283.893333pt;}
.y1b_c00097{bottom:300.693333pt;}
.y1a_c00097{bottom:316.826667pt;}
.y19_c00097{bottom:332.693333pt;}
.y18_c00097{bottom:348.960000pt;}
.y17_c00097{bottom:365.360000pt;}
.y16_c00097{bottom:381.893333pt;}
.y15_c00097{bottom:397.893333pt;}
.y14_c00097{bottom:429.893333pt;}
.y13_c00097{bottom:462.693333pt;}
.y12_c00097{bottom:490.293333pt;}
.y11_c00097{bottom:517.760000pt;}
.y10_c00097{bottom:590.426667pt;}
.y8_c00097{bottom:591.360000pt;}
.yf_c00097{bottom:606.960000pt;}
.y7_c00097{bottom:607.893333pt;}
.ye_c00097{bottom:622.560000pt;}
.y6_c00097{bottom:623.493333pt;}
.yd_c00097{bottom:639.093333pt;}
.y5_c00097{bottom:639.893333pt;}
.yc_c00097{bottom:655.226667pt;}
.y4_c00097{bottom:656.160000pt;}
.yb_c00097{bottom:671.360000pt;}
.y3_c00097{bottom:672.026667pt;}
.ya_c00097{bottom:687.626667pt;}
.y2_c00097{bottom:688.293333pt;}
.y1_c00097{bottom:705.360000pt;}
.y9_c00097{bottom:706.160000pt;}
.h8_c00097{height:11.733399pt;}
.h9_c00097{height:38.937500pt;}
.h2_c00097{height:47.509333pt;}
.h4_c00097{height:55.893333pt;}
.h1_c00097{height:56.906667pt;}
.h7_c00097{height:62.597333pt;}
.h3_c00097{height:65.442667pt;}
.h6_c00097{height:97.813333pt;}
.h5_c00097{height:114.581333pt;}
.h0_c00097{height:728.666667pt;}
.w1_c00097{width:93.222667pt;}
.w0_c00097{width:492.000000pt;}
.x0_c00097{left:0.000000pt;}
.x2_c00097{left:60.400000pt;}
.x3_c00097{left:61.466667pt;}
.x1_c00097{left:63.333333pt;}
.x12_c00097{left:68.000000pt;}
.x11_c00097{left:69.600000pt;}
.x13_c00097{left:70.533333pt;}
.x14_c00097{left:71.600000pt;}
.x9_c00097{left:77.600000pt;}
.xc_c00097{left:100.533333pt;}
.xa_c00097{left:135.200000pt;}
.xd_c00097{left:168.800000pt;}
.x10_c00097{left:173.733333pt;}
.xf_c00097{left:174.933333pt;}
.xe_c00097{left:176.133333pt;}
.x16_c00097{left:203.168213pt;}
.xb_c00097{left:212.933333pt;}
.x5_c00097{left:258.000000pt;}
.x4_c00097{left:260.133333pt;}
.x6_c00097{left:283.466667pt;}
.x7_c00097{left:311.733333pt;}
.x8_c00097{left:336.000000pt;}
.x15_c00097{left:406.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_7c1066200fa191f4f9a82905.woff2')format("woff");}.ff1_c00098{font-family:ff1_c00098;line-height:1.437000;font-style:normal;font-weight:normal;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_ce9ecb362822c7c3d3d36d50.woff2')format("woff");}.ff2_c00098{font-family:ff2_c00098;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00098;src:url('chunks/assets/font_710cca82e133fc06858cbd5f.woff2')format("woff");}.ff3_c00098{font-family:ff3_c00098;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00098;src:url('chunks/assets/font_7c66d5a5f20ffd3639d01d59.woff2')format("woff");}.ff4_c00098{font-family:ff4_c00098;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00098;src:url('chunks/assets/font_1c0029afbb192e156aa17bf5.woff2')format("woff");}.ff5_c00098{font-family:ff5_c00098;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00098;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff6_c00098{font-family:ff6_c00098;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00098{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00098{vertical-align:0.000000px;}
.v1_c00098{vertical-align:9.600000px;}
.ls5_c00098{letter-spacing:0.000000px;}
.ls3_c00098{letter-spacing:2.280000px;}
.ls0_c00098{letter-spacing:3.000000px;}
.ls1_c00098{letter-spacing:3.315000px;}
.ls6_c00098{letter-spacing:6.000000px;}
.ls4_c00098{letter-spacing:12.000000px;}
.ls2_c00098{letter-spacing:143.700000px;}
.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;}
}
.ws1_c00098{word-spacing:-18.057000px;}
.ws0_c00098{word-spacing:-17.340000px;}
.ws2_c00098{word-spacing:-14.160000px;}
.ws3_c00098{word-spacing:-6.081000px;}
.ws4_c00098{word-spacing:0.000000px;}
._18_c00098{margin-left:-15.300000px;}
._12_c00098{margin-left:-13.923000px;}
._1b_c00098{margin-left:-12.243000px;}
._14_c00098{margin-left:-10.785000px;}
._f_c00098{margin-left:-9.513000px;}
._16_c00098{margin-left:-8.430000px;}
._d_c00098{margin-left:-7.092000px;}
._c_c00098{margin-left:-5.418000px;}
._a_c00098{margin-left:-4.347000px;}
._9_c00098{margin-left:-2.898000px;}
._b_c00098{margin-left:-1.449000px;}
._17_c00098{width:1.074000px;}
._e_c00098{width:2.154000px;}
._15_c00098{width:3.366000px;}
._7_c00098{width:4.440000px;}
._4_c00098{width:6.000000px;}
._6_c00098{width:7.200000px;}
._3_c00098{width:9.060000px;}
._1_c00098{width:10.140000px;}
._5_c00098{width:11.400000px;}
._0_c00098{width:12.840000px;}
._11_c00098{width:13.935000px;}
._10_c00098{width:16.545000px;}
._1a_c00098{width:19.497000px;}
._13_c00098{width:22.428000px;}
._1e_c00098{width:23.538000px;}
._20_c00098{width:24.954000px;}
._1f_c00098{width:27.825000px;}
._19_c00098{width:28.908000px;}
._21_c00098{width:30.978000px;}
._2_c00098{width:40.440000px;}
._1c_c00098{width:42.477000px;}
._22_c00098{width:45.729000px;}
._1d_c00098{width:52.707000px;}
._23_c00098{width:173.820000px;}
._8_c00098{width:466.440000px;}
.fc2_c00098{color:transparent;}
.fc1_c00098{color:rgb(128,128,128);}
.fc0_c00098{color:rgb(0,0,0);}
.fs4_c00098{font-size:48.000000px;}
.fs0_c00098{font-size:60.000000px;}
.fs1_c00098{font-size:63.000000px;}
.fs2_c00098{font-size:69.000000px;}
.fs3_c00098{font-size:81.000000px;}
.y0_c00098{bottom:0.000000px;}
.y40_c00098{bottom:3.105000px;}
.y3f_c00098{bottom:7.228357px;}
.y3e_c00098{bottom:29.730000px;}
.y28_c00098{bottom:47.880000px;}
.y27_c00098{bottom:67.230000px;}
.y3d_c00098{bottom:78.930000px;}
.y26_c00098{bottom:85.380000px;}
.y25_c00098{bottom:104.280000px;}
.y24_c00098{bottom:122.130000px;}
.y23_c00098{bottom:139.680000px;}
.y3c_c00098{bottom:140.430000px;}
.y3b_c00098{bottom:157.980000px;}
.y22_c00098{bottom:158.280000px;}
.y3a_c00098{bottom:175.830000px;}
.y21_c00098{bottom:176.130000px;}
.y39_c00098{bottom:194.130000px;}
.y20_c00098{bottom:194.430000px;}
.y1f_c00098{bottom:211.380000px;}
.y38_c00098{bottom:212.730000px;}
.y37_c00098{bottom:230.880000px;}
.y1e_c00098{bottom:231.180000px;}
.y36_c00098{bottom:249.180000px;}
.y1d_c00098{bottom:249.780000px;}
.y35_c00098{bottom:267.330000px;}
.y1c_c00098{bottom:267.630000px;}
.y1b_c00098{bottom:285.480000px;}
.y34_c00098{bottom:285.630000px;}
.y1a_c00098{bottom:303.180000px;}
.y19_c00098{bottom:321.330000px;}
.y33_c00098{bottom:321.630000px;}
.y32_c00098{bottom:338.880000px;}
.y18_c00098{bottom:339.180000px;}
.y17_c00098{bottom:357.480000px;}
.y31_c00098{bottom:357.780000px;}
.y30_c00098{bottom:375.330000px;}
.y16_c00098{bottom:375.930000px;}
.y15_c00098{bottom:393.630000px;}
.y2f_c00098{bottom:393.930000px;}
.y2e_c00098{bottom:412.080000px;}
.y14_c00098{bottom:412.380000px;}
.y2d_c00098{bottom:429.930000px;}
.y13_c00098{bottom:430.080000px;}
.y12_c00098{bottom:447.630000px;}
.y2c_c00098{bottom:448.230000px;}
.y11_c00098{bottom:465.780000px;}
.y2b_c00098{bottom:466.080000px;}
.y10_c00098{bottom:483.330000px;}
.y2a_c00098{bottom:484.080000px;}
.yf_c00098{bottom:498.480000px;}
.y29_c00098{bottom:502.530000px;}
.ye_c00098{bottom:537.930000px;}
.yd_c00098{bottom:571.830000px;}
.yc_c00098{bottom:591.630000px;}
.yb_c00098{bottom:609.930000px;}
.ya_c00098{bottom:628.080000px;}
.y9_c00098{bottom:646.380000px;}
.y8_c00098{bottom:663.930000px;}
.y7_c00098{bottom:682.380000px;}
.y6_c00098{bottom:700.380000px;}
.y5_c00098{bottom:719.280000px;}
.y4_c00098{bottom:738.780000px;}
.y3_c00098{bottom:754.980000px;}
.y2_c00098{bottom:773.280000px;}
.y1_c00098{bottom:793.230000px;}
.h7_c00098{height:13.200074px;}
.h8_c00098{height:43.804688px;}
.h2_c00098{height:62.880000px;}
.h3_c00098{height:66.024000px;}
.h5_c00098{height:72.480000px;}
.h4_c00098{height:74.796000px;}
.h6_c00098{height:86.427000px;}
.h0_c00098{height:835.950000px;}
.h1_c00098{height:836.250000px;}
.w2_c00098{width:104.875500px;}
.w0_c00098{width:571.350000px;}
.w1_c00098{width:571.500000px;}
.x0_c00098{left:0.000000px;}
.xa_c00098{left:55.350000px;}
.x4_c00098{left:58.950000px;}
.xb_c00098{left:60.750000px;}
.x6_c00098{left:61.800000px;}
.x9_c00098{left:63.450000px;}
.x2_c00098{left:64.500000px;}
.x5_c00098{left:65.850000px;}
.x3_c00098{left:67.200000px;}
.xc_c00098{left:82.650000px;}
.x8_c00098{left:113.400000px;}
.x7_c00098{left:166.950000px;}
.x1_c00098{left:202.200000px;}
.x17_c00098{left:237.489258px;}
.x11_c00098{left:282.750000px;}
.x10_c00098{left:283.800000px;}
.xd_c00098{left:284.850000px;}
.xe_c00098{left:285.900000px;}
.xf_c00098{left:287.100000px;}
.x12_c00098{left:301.050000px;}
.x13_c00098{left:325.950000px;}
.x15_c00098{left:360.450000px;}
.x14_c00098{left:366.450000px;}
.x16_c00098{left:373.500000px;}
@media print{
.v0_c00098{vertical-align:0.000000pt;}
.v1_c00098{vertical-align:8.533333pt;}
.ls5_c00098{letter-spacing:0.000000pt;}
.ls3_c00098{letter-spacing:2.026667pt;}
.ls0_c00098{letter-spacing:2.666667pt;}
.ls1_c00098{letter-spacing:2.946667pt;}
.ls6_c00098{letter-spacing:5.333333pt;}
.ls4_c00098{letter-spacing:10.666667pt;}
.ls2_c00098{letter-spacing:127.733333pt;}
.ws1_c00098{word-spacing:-16.050667pt;}
.ws0_c00098{word-spacing:-15.413333pt;}
.ws2_c00098{word-spacing:-12.586667pt;}
.ws3_c00098{word-spacing:-5.405333pt;}
.ws4_c00098{word-spacing:0.000000pt;}
._18_c00098{margin-left:-13.600000pt;}
._12_c00098{margin-left:-12.376000pt;}
._1b_c00098{margin-left:-10.882667pt;}
._14_c00098{margin-left:-9.586667pt;}
._f_c00098{margin-left:-8.456000pt;}
._16_c00098{margin-left:-7.493333pt;}
._d_c00098{margin-left:-6.304000pt;}
._c_c00098{margin-left:-4.816000pt;}
._a_c00098{margin-left:-3.864000pt;}
._9_c00098{margin-left:-2.576000pt;}
._b_c00098{margin-left:-1.288000pt;}
._17_c00098{width:0.954667pt;}
._e_c00098{width:1.914667pt;}
._15_c00098{width:2.992000pt;}
._7_c00098{width:3.946667pt;}
._4_c00098{width:5.333333pt;}
._6_c00098{width:6.400000pt;}
._3_c00098{width:8.053333pt;}
._1_c00098{width:9.013333pt;}
._5_c00098{width:10.133333pt;}
._0_c00098{width:11.413333pt;}
._11_c00098{width:12.386667pt;}
._10_c00098{width:14.706667pt;}
._1a_c00098{width:17.330667pt;}
._13_c00098{width:19.936000pt;}
._1e_c00098{width:20.922667pt;}
._20_c00098{width:22.181333pt;}
._1f_c00098{width:24.733333pt;}
._19_c00098{width:25.696000pt;}
._21_c00098{width:27.536000pt;}
._2_c00098{width:35.946667pt;}
._1c_c00098{width:37.757333pt;}
._22_c00098{width:40.648000pt;}
._1d_c00098{width:46.850667pt;}
._23_c00098{width:154.506667pt;}
._8_c00098{width:414.613333pt;}
.fs4_c00098{font-size:42.666667pt;}
.fs0_c00098{font-size:53.333333pt;}
.fs1_c00098{font-size:56.000000pt;}
.fs2_c00098{font-size:61.333333pt;}
.fs3_c00098{font-size:72.000000pt;}
.y0_c00098{bottom:0.000000pt;}
.y40_c00098{bottom:2.760000pt;}
.y3f_c00098{bottom:6.425206pt;}
.y3e_c00098{bottom:26.426667pt;}
.y28_c00098{bottom:42.560000pt;}
.y27_c00098{bottom:59.760000pt;}
.y3d_c00098{bottom:70.160000pt;}
.y26_c00098{bottom:75.893333pt;}
.y25_c00098{bottom:92.693333pt;}
.y24_c00098{bottom:108.560000pt;}
.y23_c00098{bottom:124.160000pt;}
.y3c_c00098{bottom:124.826667pt;}
.y3b_c00098{bottom:140.426667pt;}
.y22_c00098{bottom:140.693333pt;}
.y3a_c00098{bottom:156.293333pt;}
.y21_c00098{bottom:156.560000pt;}
.y39_c00098{bottom:172.560000pt;}
.y20_c00098{bottom:172.826667pt;}
.y1f_c00098{bottom:187.893333pt;}
.y38_c00098{bottom:189.093333pt;}
.y37_c00098{bottom:205.226667pt;}
.y1e_c00098{bottom:205.493333pt;}
.y36_c00098{bottom:221.493333pt;}
.y1d_c00098{bottom:222.026667pt;}
.y35_c00098{bottom:237.626667pt;}
.y1c_c00098{bottom:237.893333pt;}
.y1b_c00098{bottom:253.760000pt;}
.y34_c00098{bottom:253.893333pt;}
.y1a_c00098{bottom:269.493333pt;}
.y19_c00098{bottom:285.626667pt;}
.y33_c00098{bottom:285.893333pt;}
.y32_c00098{bottom:301.226667pt;}
.y18_c00098{bottom:301.493333pt;}
.y17_c00098{bottom:317.760000pt;}
.y31_c00098{bottom:318.026667pt;}
.y30_c00098{bottom:333.626667pt;}
.y16_c00098{bottom:334.160000pt;}
.y15_c00098{bottom:349.893333pt;}
.y2f_c00098{bottom:350.160000pt;}
.y2e_c00098{bottom:366.293333pt;}
.y14_c00098{bottom:366.560000pt;}
.y2d_c00098{bottom:382.160000pt;}
.y13_c00098{bottom:382.293333pt;}
.y12_c00098{bottom:397.893333pt;}
.y2c_c00098{bottom:398.426667pt;}
.y11_c00098{bottom:414.026667pt;}
.y2b_c00098{bottom:414.293333pt;}
.y10_c00098{bottom:429.626667pt;}
.y2a_c00098{bottom:430.293333pt;}
.yf_c00098{bottom:443.093333pt;}
.y29_c00098{bottom:446.693333pt;}
.ye_c00098{bottom:478.160000pt;}
.yd_c00098{bottom:508.293333pt;}
.yc_c00098{bottom:525.893333pt;}
.yb_c00098{bottom:542.160000pt;}
.ya_c00098{bottom:558.293333pt;}
.y9_c00098{bottom:574.560000pt;}
.y8_c00098{bottom:590.160000pt;}
.y7_c00098{bottom:606.560000pt;}
.y6_c00098{bottom:622.560000pt;}
.y5_c00098{bottom:639.360000pt;}
.y4_c00098{bottom:656.693333pt;}
.y3_c00098{bottom:671.093333pt;}
.y2_c00098{bottom:687.360000pt;}
.y1_c00098{bottom:705.093333pt;}
.h7_c00098{height:11.733399pt;}
.h8_c00098{height:38.937500pt;}
.h2_c00098{height:55.893333pt;}
.h3_c00098{height:58.688000pt;}
.h5_c00098{height:64.426667pt;}
.h4_c00098{height:66.485333pt;}
.h6_c00098{height:76.824000pt;}
.h0_c00098{height:743.066667pt;}
.h1_c00098{height:743.333333pt;}
.w2_c00098{width:93.222667pt;}
.w0_c00098{width:507.866667pt;}
.w1_c00098{width:508.000000pt;}
.x0_c00098{left:0.000000pt;}
.xa_c00098{left:49.200000pt;}
.x4_c00098{left:52.400000pt;}
.xb_c00098{left:54.000000pt;}
.x6_c00098{left:54.933333pt;}
.x9_c00098{left:56.400000pt;}
.x2_c00098{left:57.333333pt;}
.x5_c00098{left:58.533333pt;}
.x3_c00098{left:59.733333pt;}
.xc_c00098{left:73.466667pt;}
.x8_c00098{left:100.800000pt;}
.x7_c00098{left:148.400000pt;}
.x1_c00098{left:179.733333pt;}
.x17_c00098{left:211.101563pt;}
.x11_c00098{left:251.333333pt;}
.x10_c00098{left:252.266667pt;}
.xd_c00098{left:253.200000pt;}
.xe_c00098{left:254.133333pt;}
.xf_c00098{left:255.200000pt;}
.x12_c00098{left:267.600000pt;}
.x13_c00098{left:289.733333pt;}
.x15_c00098{left:320.400000pt;}
.x14_c00098{left:325.733333pt;}
.x16_c00098{left:332.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_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_a116ce6b08268d21196b8654.woff2')format("woff");}.ff1_c00099{font-family:ff1_c00099;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00099;src:url('chunks/assets/font_16323feee843c22eb1122e0d.woff2')format("woff");}.ff2_c00099{font-family:ff2_c00099;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00099;src:url('chunks/assets/font_e8bf3d5d2f6c885ef402b2d6.woff2')format("woff");}.ff3_c00099{font-family:ff3_c00099;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00099;src:url('chunks/assets/font_f0bb927b6046375f65773a3e.woff2')format("woff");}.ff4_c00099{font-family:ff4_c00099;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00099;src:url('chunks/assets/font_2dfe83dfeac2ed5b20a67687.woff2')format("woff");}.ff5_c00099{font-family:ff5_c00099;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00099;src:url('chunks/assets/font_9737bf9400c837c484522f42.woff2')format("woff");}.ff6_c00099{font-family:ff6_c00099;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00099;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff7_c00099{font-family:ff7_c00099;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00099{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00099{vertical-align:0.000000px;}
.lsb_c00099{letter-spacing:0.000000px;}
.ls4_c00099{letter-spacing:0.600000px;}
.ls1_c00099{letter-spacing:2.880000px;}
.ls3_c00099{letter-spacing:3.000000px;}
.ls7_c00099{letter-spacing:8.088000px;}
.ls6_c00099{letter-spacing:8.460000px;}
.lsa_c00099{letter-spacing:12.000000px;}
.ls9_c00099{letter-spacing:15.000000px;}
.ls8_c00099{letter-spacing:28.860000px;}
.ls2_c00099{letter-spacing:199.260000px;}
.ls0_c00099{letter-spacing:320.460000px;}
.ls5_c00099{letter-spacing:366.660000px;}
.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:-46.746000px;}
.ws4_c00099{word-spacing:-29.700000px;}
.ws5_c00099{word-spacing:-23.760000px;}
.ws1_c00099{word-spacing:-22.074000px;}
.ws3_c00099{word-spacing:-17.340000px;}
.ws2_c00099{word-spacing:-14.160000px;}
.ws6_c00099{word-spacing:0.000000px;}
._37_c00099{margin-left:-29.868000px;}
._d_c00099{margin-left:-22.200000px;}
._34_c00099{margin-left:-18.060000px;}
._14_c00099{margin-left:-15.000000px;}
._2a_c00099{margin-left:-13.638000px;}
._15_c00099{margin-left:-12.180000px;}
._17_c00099{margin-left:-10.320000px;}
._0_c00099{margin-left:-9.306000px;}
._1a_c00099{margin-left:-8.160000px;}
._12_c00099{margin-left:-6.708000px;}
._f_c00099{margin-left:-5.220000px;}
._10_c00099{margin-left:-4.200000px;}
._9_c00099{margin-left:-2.640000px;}
._8_c00099{margin-left:-1.200000px;}
._a_c00099{width:1.200000px;}
._b_c00099{width:2.760000px;}
._11_c00099{width:3.948000px;}
._c_c00099{width:5.040000px;}
._1_c00099{width:6.792000px;}
._e_c00099{width:8.220000px;}
._2_c00099{width:9.288000px;}
._3_c00099{width:10.500000px;}
._5_c00099{width:12.120000px;}
._24_c00099{width:13.128000px;}
._6_c00099{width:14.280000px;}
._20_c00099{width:15.420000px;}
._1e_c00099{width:17.436000px;}
._4_c00099{width:18.684000px;}
._16_c00099{width:20.256000px;}
._22_c00099{width:21.660000px;}
._27_c00099{width:23.616000px;}
._38_c00099{width:24.696000px;}
._19_c00099{width:25.800000px;}
._18_c00099{width:27.480000px;}
._31_c00099{width:28.704000px;}
._1b_c00099{width:29.760000px;}
._39_c00099{width:32.184000px;}
._35_c00099{width:33.924000px;}
._32_c00099{width:37.008000px;}
._1c_c00099{width:38.280000px;}
._3a_c00099{width:39.480000px;}
._2d_c00099{width:40.524000px;}
._29_c00099{width:41.664000px;}
._25_c00099{width:42.744000px;}
._33_c00099{width:44.100000px;}
._26_c00099{width:46.320000px;}
._23_c00099{width:48.144000px;}
._1d_c00099{width:50.100000px;}
._3b_c00099{width:51.444000px;}
._13_c00099{width:59.856000px;}
._3c_c00099{width:61.320000px;}
._7_c00099{width:70.560000px;}
._1f_c00099{width:100.980000px;}
._2f_c00099{width:148.824000px;}
._28_c00099{width:154.092000px;}
._21_c00099{width:203.160000px;}
._36_c00099{width:205.848000px;}
._2c_c00099{width:211.116000px;}
._2b_c00099{width:249.810000px;}
._30_c00099{width:259.068000px;}
._2e_c00099{width:397.104000px;}
.fc2_c00099{color:transparent;}
.fc1_c00099{color:rgb(128,128,128);}
.fc0_c00099{color:rgb(0,0,0);}
.fs3_c00099{font-size:48.000000px;}
.fs1_c00099{font-size:60.000000px;}
.fs0_c00099{font-size:66.000000px;}
.fs2_c00099{font-size:69.000000px;}
.y0_c00099{bottom:0.000000px;}
.y2b_c00099{bottom:3.105000px;}
.y2a_c00099{bottom:7.228363px;}
.y29_c00099{bottom:63.000000px;}
.y28_c00099{bottom:80.700000px;}
.y27_c00099{bottom:99.450000px;}
.y26_c00099{bottom:118.050000px;}
.y25_c00099{bottom:136.950000px;}
.y24_c00099{bottom:154.200000px;}
.y23_c00099{bottom:171.750000px;}
.y22_c00099{bottom:191.250000px;}
.y21_c00099{bottom:209.850000px;}
.y20_c00099{bottom:227.850000px;}
.y1f_c00099{bottom:246.600000px;}
.y1e_c00099{bottom:263.850000px;}
.y1d_c00099{bottom:282.150000px;}
.y1c_c00099{bottom:300.600000px;}
.y1b_c00099{bottom:318.300000px;}
.y1a_c00099{bottom:335.700000px;}
.y19_c00099{bottom:354.000000px;}
.y18_c00099{bottom:372.600000px;}
.y17_c00099{bottom:391.200000px;}
.y16_c00099{bottom:408.750000px;}
.y15_c00099{bottom:426.900000px;}
.y14_c00099{bottom:445.200000px;}
.y13_c00099{bottom:463.050000px;}
.y12_c00099{bottom:481.200000px;}
.y11_c00099{bottom:498.450000px;}
.y10_c00099{bottom:517.350000px;}
.yf_c00099{bottom:534.600000px;}
.ye_c00099{bottom:553.500000px;}
.yd_c00099{bottom:571.350000px;}
.yc_c00099{bottom:589.200000px;}
.yb_c00099{bottom:607.800000px;}
.ya_c00099{bottom:625.350000px;}
.y9_c00099{bottom:643.500000px;}
.y8_c00099{bottom:661.800000px;}
.y7_c00099{bottom:680.700000px;}
.y6_c00099{bottom:698.850000px;}
.y5_c00099{bottom:717.450000px;}
.y4_c00099{bottom:734.400000px;}
.y3_c00099{bottom:751.950000px;}
.y2_c00099{bottom:771.150000px;}
.y1_c00099{bottom:791.400000px;}
.h6_c00099{height:13.200074px;}
.h7_c00099{height:43.804688px;}
.h3_c00099{height:62.880000px;}
.h4_c00099{height:70.422000px;}
.h2_c00099{height:71.544000px;}
.h5_c00099{height:72.312000px;}
.h0_c00099{height:826.200000px;}
.h1_c00099{height:826.500000px;}
.w1_c00099{width:104.875500px;}
.w0_c00099{width:563.250000px;}
.x0_c00099{left:0.000000px;}
.x8_c00099{left:16.950000px;}
.xc_c00099{left:80.400000px;}
.x9_c00099{left:81.450000px;}
.x7_c00099{left:82.650000px;}
.x1_c00099{left:84.000000px;}
.xb_c00099{left:87.900000px;}
.x4_c00099{left:93.150000px;}
.x5_c00099{left:126.600000px;}
.xa_c00099{left:136.650000px;}
.x6_c00099{left:157.050000px;}
.xd_c00099{left:233.439240px;}
.x3_c00099{left:236.550000px;}
.x2_c00099{left:303.300000px;}
@media print{
.v0_c00099{vertical-align:0.000000pt;}
.lsb_c00099{letter-spacing:0.000000pt;}
.ls4_c00099{letter-spacing:0.533333pt;}
.ls1_c00099{letter-spacing:2.560000pt;}
.ls3_c00099{letter-spacing:2.666667pt;}
.ls7_c00099{letter-spacing:7.189333pt;}
.ls6_c00099{letter-spacing:7.520000pt;}
.lsa_c00099{letter-spacing:10.666667pt;}
.ls9_c00099{letter-spacing:13.333333pt;}
.ls8_c00099{letter-spacing:25.653333pt;}
.ls2_c00099{letter-spacing:177.120000pt;}
.ls0_c00099{letter-spacing:284.853333pt;}
.ls5_c00099{letter-spacing:325.920000pt;}
.ws0_c00099{word-spacing:-41.552000pt;}
.ws4_c00099{word-spacing:-26.400000pt;}
.ws5_c00099{word-spacing:-21.120000pt;}
.ws1_c00099{word-spacing:-19.621333pt;}
.ws3_c00099{word-spacing:-15.413333pt;}
.ws2_c00099{word-spacing:-12.586667pt;}
.ws6_c00099{word-spacing:0.000000pt;}
._37_c00099{margin-left:-26.549333pt;}
._d_c00099{margin-left:-19.733333pt;}
._34_c00099{margin-left:-16.053333pt;}
._14_c00099{margin-left:-13.333333pt;}
._2a_c00099{margin-left:-12.122667pt;}
._15_c00099{margin-left:-10.826667pt;}
._17_c00099{margin-left:-9.173333pt;}
._0_c00099{margin-left:-8.272000pt;}
._1a_c00099{margin-left:-7.253333pt;}
._12_c00099{margin-left:-5.962667pt;}
._f_c00099{margin-left:-4.640000pt;}
._10_c00099{margin-left:-3.733333pt;}
._9_c00099{margin-left:-2.346667pt;}
._8_c00099{margin-left:-1.066667pt;}
._a_c00099{width:1.066667pt;}
._b_c00099{width:2.453333pt;}
._11_c00099{width:3.509333pt;}
._c_c00099{width:4.480000pt;}
._1_c00099{width:6.037333pt;}
._e_c00099{width:7.306667pt;}
._2_c00099{width:8.256000pt;}
._3_c00099{width:9.333333pt;}
._5_c00099{width:10.773333pt;}
._24_c00099{width:11.669333pt;}
._6_c00099{width:12.693333pt;}
._20_c00099{width:13.706667pt;}
._1e_c00099{width:15.498667pt;}
._4_c00099{width:16.608000pt;}
._16_c00099{width:18.005333pt;}
._22_c00099{width:19.253333pt;}
._27_c00099{width:20.992000pt;}
._38_c00099{width:21.952000pt;}
._19_c00099{width:22.933333pt;}
._18_c00099{width:24.426667pt;}
._31_c00099{width:25.514667pt;}
._1b_c00099{width:26.453333pt;}
._39_c00099{width:28.608000pt;}
._35_c00099{width:30.154667pt;}
._32_c00099{width:32.896000pt;}
._1c_c00099{width:34.026667pt;}
._3a_c00099{width:35.093333pt;}
._2d_c00099{width:36.021333pt;}
._29_c00099{width:37.034667pt;}
._25_c00099{width:37.994667pt;}
._33_c00099{width:39.200000pt;}
._26_c00099{width:41.173333pt;}
._23_c00099{width:42.794667pt;}
._1d_c00099{width:44.533333pt;}
._3b_c00099{width:45.728000pt;}
._13_c00099{width:53.205333pt;}
._3c_c00099{width:54.506667pt;}
._7_c00099{width:62.720000pt;}
._1f_c00099{width:89.760000pt;}
._2f_c00099{width:132.288000pt;}
._28_c00099{width:136.970667pt;}
._21_c00099{width:180.586667pt;}
._36_c00099{width:182.976000pt;}
._2c_c00099{width:187.658667pt;}
._2b_c00099{width:222.053333pt;}
._30_c00099{width:230.282667pt;}
._2e_c00099{width:352.981333pt;}
.fs3_c00099{font-size:42.666667pt;}
.fs1_c00099{font-size:53.333333pt;}
.fs0_c00099{font-size:58.666667pt;}
.fs2_c00099{font-size:61.333333pt;}
.y0_c00099{bottom:0.000000pt;}
.y2b_c00099{bottom:2.760000pt;}
.y2a_c00099{bottom:6.425212pt;}
.y29_c00099{bottom:56.000000pt;}
.y28_c00099{bottom:71.733333pt;}
.y27_c00099{bottom:88.400000pt;}
.y26_c00099{bottom:104.933333pt;}
.y25_c00099{bottom:121.733333pt;}
.y24_c00099{bottom:137.066667pt;}
.y23_c00099{bottom:152.666667pt;}
.y22_c00099{bottom:170.000000pt;}
.y21_c00099{bottom:186.533333pt;}
.y20_c00099{bottom:202.533333pt;}
.y1f_c00099{bottom:219.200000pt;}
.y1e_c00099{bottom:234.533333pt;}
.y1d_c00099{bottom:250.800000pt;}
.y1c_c00099{bottom:267.200000pt;}
.y1b_c00099{bottom:282.933333pt;}
.y1a_c00099{bottom:298.400000pt;}
.y19_c00099{bottom:314.666667pt;}
.y18_c00099{bottom:331.200000pt;}
.y17_c00099{bottom:347.733333pt;}
.y16_c00099{bottom:363.333333pt;}
.y15_c00099{bottom:379.466667pt;}
.y14_c00099{bottom:395.733333pt;}
.y13_c00099{bottom:411.600000pt;}
.y12_c00099{bottom:427.733333pt;}
.y11_c00099{bottom:443.066667pt;}
.y10_c00099{bottom:459.866667pt;}
.yf_c00099{bottom:475.200000pt;}
.ye_c00099{bottom:492.000000pt;}
.yd_c00099{bottom:507.866667pt;}
.yc_c00099{bottom:523.733333pt;}
.yb_c00099{bottom:540.266667pt;}
.ya_c00099{bottom:555.866667pt;}
.y9_c00099{bottom:572.000000pt;}
.y8_c00099{bottom:588.266667pt;}
.y7_c00099{bottom:605.066667pt;}
.y6_c00099{bottom:621.200000pt;}
.y5_c00099{bottom:637.733333pt;}
.y4_c00099{bottom:652.800000pt;}
.y3_c00099{bottom:668.400000pt;}
.y2_c00099{bottom:685.466667pt;}
.y1_c00099{bottom:703.466667pt;}
.h6_c00099{height:11.733399pt;}
.h7_c00099{height:38.937500pt;}
.h3_c00099{height:55.893333pt;}
.h4_c00099{height:62.597333pt;}
.h2_c00099{height:63.594667pt;}
.h5_c00099{height:64.277333pt;}
.h0_c00099{height:734.400000pt;}
.h1_c00099{height:734.666667pt;}
.w1_c00099{width:93.222667pt;}
.w0_c00099{width:500.666667pt;}
.x0_c00099{left:0.000000pt;}
.x8_c00099{left:15.066667pt;}
.xc_c00099{left:71.466667pt;}
.x9_c00099{left:72.400000pt;}
.x7_c00099{left:73.466667pt;}
.x1_c00099{left:74.666667pt;}
.xb_c00099{left:78.133333pt;}
.x4_c00099{left:82.800000pt;}
.x5_c00099{left:112.533333pt;}
.xa_c00099{left:121.466667pt;}
.x6_c00099{left:139.600000pt;}
.xd_c00099{left:207.501546pt;}
.x3_c00099{left:210.266667pt;}
.x2_c00099{left:269.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_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_66fe26b1205356381994babb.woff2')format("woff");}.ff1_c00100{font-family:ff1_c00100;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00100;src:url('chunks/assets/font_01b4cd3989e5eb9a9b402d35.woff2')format("woff");}.ff2_c00100{font-family:ff2_c00100;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00100;src:url('chunks/assets/font_ca6048fda2a5a0e87d2c6c90.woff2')format("woff");}.ff3_c00100{font-family:ff3_c00100;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00100;src:url('chunks/assets/font_896b2b9fcebdbece3d932a4a.woff2')format("woff");}.ff4_c00100{font-family:ff4_c00100;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00100;src:url('chunks/assets/font_255b8e0f280c2d62b1a67ed4.woff2')format("woff");}.ff5_c00100{font-family:ff5_c00100;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00100;src:url('chunks/assets/font_13bee2655440e264d0556af3.woff2')format("woff");}.ff6_c00100{font-family:ff6_c00100;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00100;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff7_c00100{font-family:ff7_c00100;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00100{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00100{vertical-align:0.000000px;}
.ls9_c00100{letter-spacing:0.000000px;}
.ls8_c00100{letter-spacing:1.380000px;}
.ls0_c00100{letter-spacing:3.000000px;}
.ls6_c00100{letter-spacing:5.460000px;}
.lsa_c00100{letter-spacing:6.000000px;}
.ls4_c00100{letter-spacing:7.200000px;}
.ls2_c00100{letter-spacing:12.000000px;}
.ls7_c00100{letter-spacing:14.400000px;}
.ls1_c00100{letter-spacing:19.740000px;}
.ls5_c00100{letter-spacing:28.740000px;}
.ls3_c00100{letter-spacing:46.140000px;}
.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;}
}
.ws1_c00100{word-spacing:-35.295000px;}
.ws2_c00100{word-spacing:-26.340000px;}
.ws3_c00100{word-spacing:-22.074000px;}
.ws4_c00100{word-spacing:-17.340000px;}
.ws0_c00100{word-spacing:-14.160000px;}
.ws5_c00100{word-spacing:-0.300000px;}
.ws6_c00100{word-spacing:0.000000px;}
._2e_c00100{margin-left:-26.760000px;}
._1a_c00100{margin-left:-22.371000px;}
._23_c00100{margin-left:-18.960000px;}
._1f_c00100{margin-left:-14.388000px;}
._12_c00100{margin-left:-12.960000px;}
._27_c00100{margin-left:-11.772000px;}
._26_c00100{margin-left:-10.500000px;}
._14_c00100{margin-left:-9.000000px;}
._13_c00100{margin-left:-7.260000px;}
._5_c00100{margin-left:-5.700000px;}
._8_c00100{margin-left:-4.380000px;}
._7_c00100{margin-left:-2.940000px;}
._a_c00100{margin-left:-1.440000px;}
._c_c00100{width:1.740000px;}
._10_c00100{width:2.754000px;}
._2_c00100{width:3.933000px;}
._1_c00100{width:5.865000px;}
._3_c00100{width:7.797000px;}
._0_c00100{width:9.108000px;}
._f_c00100{width:10.620000px;}
._15_c00100{width:11.760000px;}
._21_c00100{width:12.780000px;}
._11_c00100{width:13.992000px;}
._31_c00100{width:15.000000px;}
._d_c00100{width:16.032000px;}
._4_c00100{width:17.790000px;}
._22_c00100{width:19.338000px;}
._b_c00100{width:20.580000px;}
._1d_c00100{width:22.620000px;}
._6_c00100{width:24.060000px;}
._19_c00100{width:25.548000px;}
._1b_c00100{width:27.582000px;}
._29_c00100{width:29.331000px;}
._e_c00100{width:30.360000px;}
._9_c00100{width:32.160000px;}
._20_c00100{width:33.843000px;}
._1e_c00100{width:35.058000px;}
._17_c00100{width:36.447000px;}
._2f_c00100{width:37.980000px;}
._16_c00100{width:39.540000px;}
._28_c00100{width:40.737000px;}
._25_c00100{width:43.080000px;}
._2b_c00100{width:47.880000px;}
._24_c00100{width:49.200000px;}
._34_c00100{width:53.280000px;}
._30_c00100{width:57.477000px;}
._2d_c00100{width:61.980000px;}
._2c_c00100{width:72.924000px;}
._1c_c00100{width:75.522000px;}
._33_c00100{width:76.923000px;}
._2a_c00100{width:112.476000px;}
._32_c00100{width:168.423000px;}
._18_c00100{width:239.160000px;}
.fc2_c00100{color:transparent;}
.fc1_c00100{color:rgb(128,128,128);}
.fc0_c00100{color:rgb(0,0,0);}
.fs2_c00100{font-size:45.000000px;}
.fs4_c00100{font-size:48.000000px;}
.fs1_c00100{font-size:60.000000px;}
.fs3_c00100{font-size:66.000000px;}
.fs0_c00100{font-size:69.000000px;}
.y0_c00100{bottom:0.000000px;}
.y52_c00100{bottom:3.105000px;}
.y51_c00100{bottom:7.228357px;}
.y50_c00100{bottom:30.030000px;}
.y4f_c00100{bottom:54.330000px;}
.y2a_c00100{bottom:55.380000px;}
.y4e_c00100{bottom:73.230000px;}
.y29_c00100{bottom:74.280000px;}
.y4d_c00100{bottom:90.780000px;}
.y28_c00100{bottom:92.580000px;}
.y4c_c00100{bottom:109.080000px;}
.y27_c00100{bottom:110.730000px;}
.y4b_c00100{bottom:127.530000px;}
.y26_c00100{bottom:128.880000px;}
.y4a_c00100{bottom:144.780000px;}
.y25_c00100{bottom:146.580000px;}
.y49_c00100{bottom:163.380000px;}
.y24_c00100{bottom:165.330000px;}
.y48_c00100{bottom:181.980000px;}
.y23_c00100{bottom:182.880000px;}
.y47_c00100{bottom:199.830000px;}
.y22_c00100{bottom:201.480000px;}
.y46_c00100{bottom:218.430000px;}
.y21_c00100{bottom:219.330000px;}
.y45_c00100{bottom:235.680000px;}
.y20_c00100{bottom:237.930000px;}
.y44_c00100{bottom:254.580000px;}
.y1f_c00100{bottom:255.930000px;}
.y43_c00100{bottom:273.330000px;}
.y1e_c00100{bottom:273.780000px;}
.y42_c00100{bottom:291.330000px;}
.y1d_c00100{bottom:292.230000px;}
.y41_c00100{bottom:309.930000px;}
.y1c_c00100{bottom:310.230000px;}
.y40_c00100{bottom:327.330000px;}
.y1b_c00100{bottom:328.380000px;}
.y1a_c00100{bottom:346.230000px;}
.y3f_c00100{bottom:346.680000px;}
.y3e_c00100{bottom:363.930000px;}
.y19_c00100{bottom:364.830000px;}
.y18_c00100{bottom:381.780000px;}
.y3d_c00100{bottom:382.080000px;}
.y17_c00100{bottom:400.380000px;}
.y3c_c00100{bottom:418.530000px;}
.y16_c00100{bottom:419.130000px;}
.y3b_c00100{bottom:436.680000px;}
.y15_c00100{bottom:436.830000px;}
.y14_c00100{bottom:454.380000px;}
.y3a_c00100{bottom:471.930000px;}
.y13_c00100{bottom:472.230000px;}
.y39_c00100{bottom:490.380000px;}
.y12_c00100{bottom:490.680000px;}
.y11_c00100{bottom:507.930000px;}
.y38_c00100{bottom:508.680000px;}
.y10_c00100{bottom:526.230000px;}
.y37_c00100{bottom:526.830000px;}
.yf_c00100{bottom:544.830000px;}
.y36_c00100{bottom:545.130000px;}
.y35_c00100{bottom:562.980000px;}
.ye_c00100{bottom:563.280000px;}
.yd_c00100{bottom:580.830000px;}
.y34_c00100{bottom:581.130000px;}
.yc_c00100{bottom:598.830000px;}
.y33_c00100{bottom:599.130000px;}
.yb_c00100{bottom:616.980000px;}
.ya_c00100{bottom:634.830000px;}
.y9_c00100{bottom:652.830000px;}
.y32_c00100{bottom:653.430000px;}
.y8_c00100{bottom:670.680000px;}
.y31_c00100{bottom:671.730000px;}
.y7_c00100{bottom:688.830000px;}
.y30_c00100{bottom:689.880000px;}
.y6_c00100{bottom:706.830000px;}
.y2f_c00100{bottom:707.730000px;}
.y5_c00100{bottom:724.980000px;}
.y2e_c00100{bottom:726.030000px;}
.y4_c00100{bottom:744.180000px;}
.y2d_c00100{bottom:744.480000px;}
.y3_c00100{bottom:761.130000px;}
.y2c_c00100{bottom:762.480000px;}
.y2_c00100{bottom:779.730000px;}
.y2b_c00100{bottom:780.930000px;}
.y1_c00100{bottom:801.930000px;}
.h6_c00100{height:13.200074px;}
.h7_c00100{height:43.804688px;}
.h3_c00100{height:62.880000px;}
.h4_c00100{height:64.020000px;}
.h5_c00100{height:70.422000px;}
.h2_c00100{height:72.312000px;}
.h1_c00100{height:845.250000px;}
.h0_c00100{height:845.400000px;}
.w2_c00100{width:104.875500px;}
.w0_c00100{width:578.100000px;}
.w1_c00100{width:578.250000px;}
.x0_c00100{left:0.000000px;}
.x3_c00100{left:59.850000px;}
.x4_c00100{left:61.200000px;}
.x2_c00100{left:62.850000px;}
.x5_c00100{left:64.050000px;}
.x1_c00100{left:201.900000px;}
.xd_c00100{left:240.864258px;}
.x8_c00100{left:281.400000px;}
.x7_c00100{left:283.200000px;}
.x6_c00100{left:285.150000px;}
.xa_c00100{left:286.500000px;}
.xb_c00100{left:287.850000px;}
.x9_c00100{left:300.300000px;}
.xc_c00100{left:477.900000px;}
@media print{
.v0_c00100{vertical-align:0.000000pt;}
.ls9_c00100{letter-spacing:0.000000pt;}
.ls8_c00100{letter-spacing:1.226667pt;}
.ls0_c00100{letter-spacing:2.666667pt;}
.ls6_c00100{letter-spacing:4.853333pt;}
.lsa_c00100{letter-spacing:5.333333pt;}
.ls4_c00100{letter-spacing:6.400000pt;}
.ls2_c00100{letter-spacing:10.666667pt;}
.ls7_c00100{letter-spacing:12.800000pt;}
.ls1_c00100{letter-spacing:17.546667pt;}
.ls5_c00100{letter-spacing:25.546667pt;}
.ls3_c00100{letter-spacing:41.013333pt;}
.ws1_c00100{word-spacing:-31.373333pt;}
.ws2_c00100{word-spacing:-23.413333pt;}
.ws3_c00100{word-spacing:-19.621333pt;}
.ws4_c00100{word-spacing:-15.413333pt;}
.ws0_c00100{word-spacing:-12.586667pt;}
.ws5_c00100{word-spacing:-0.266667pt;}
.ws6_c00100{word-spacing:0.000000pt;}
._2e_c00100{margin-left:-23.786667pt;}
._1a_c00100{margin-left:-19.885333pt;}
._23_c00100{margin-left:-16.853333pt;}
._1f_c00100{margin-left:-12.789333pt;}
._12_c00100{margin-left:-11.520000pt;}
._27_c00100{margin-left:-10.464000pt;}
._26_c00100{margin-left:-9.333333pt;}
._14_c00100{margin-left:-8.000000pt;}
._13_c00100{margin-left:-6.453333pt;}
._5_c00100{margin-left:-5.066667pt;}
._8_c00100{margin-left:-3.893333pt;}
._7_c00100{margin-left:-2.613333pt;}
._a_c00100{margin-left:-1.280000pt;}
._c_c00100{width:1.546667pt;}
._10_c00100{width:2.448000pt;}
._2_c00100{width:3.496000pt;}
._1_c00100{width:5.213333pt;}
._3_c00100{width:6.930667pt;}
._0_c00100{width:8.096000pt;}
._f_c00100{width:9.440000pt;}
._15_c00100{width:10.453333pt;}
._21_c00100{width:11.360000pt;}
._11_c00100{width:12.437333pt;}
._31_c00100{width:13.333333pt;}
._d_c00100{width:14.250667pt;}
._4_c00100{width:15.813333pt;}
._22_c00100{width:17.189333pt;}
._b_c00100{width:18.293333pt;}
._1d_c00100{width:20.106667pt;}
._6_c00100{width:21.386667pt;}
._19_c00100{width:22.709333pt;}
._1b_c00100{width:24.517333pt;}
._29_c00100{width:26.072000pt;}
._e_c00100{width:26.986667pt;}
._9_c00100{width:28.586667pt;}
._20_c00100{width:30.082667pt;}
._1e_c00100{width:31.162667pt;}
._17_c00100{width:32.397333pt;}
._2f_c00100{width:33.760000pt;}
._16_c00100{width:35.146667pt;}
._28_c00100{width:36.210667pt;}
._25_c00100{width:38.293333pt;}
._2b_c00100{width:42.560000pt;}
._24_c00100{width:43.733333pt;}
._34_c00100{width:47.360000pt;}
._30_c00100{width:51.090667pt;}
._2d_c00100{width:55.093333pt;}
._2c_c00100{width:64.821333pt;}
._1c_c00100{width:67.130667pt;}
._33_c00100{width:68.376000pt;}
._2a_c00100{width:99.978667pt;}
._32_c00100{width:149.709333pt;}
._18_c00100{width:212.586667pt;}
.fs2_c00100{font-size:40.000000pt;}
.fs4_c00100{font-size:42.666667pt;}
.fs1_c00100{font-size:53.333333pt;}
.fs3_c00100{font-size:58.666667pt;}
.fs0_c00100{font-size:61.333333pt;}
.y0_c00100{bottom:0.000000pt;}
.y52_c00100{bottom:2.760000pt;}
.y51_c00100{bottom:6.425206pt;}
.y50_c00100{bottom:26.693333pt;}
.y4f_c00100{bottom:48.293333pt;}
.y2a_c00100{bottom:49.226667pt;}
.y4e_c00100{bottom:65.093333pt;}
.y29_c00100{bottom:66.026667pt;}
.y4d_c00100{bottom:80.693333pt;}
.y28_c00100{bottom:82.293333pt;}
.y4c_c00100{bottom:96.960000pt;}
.y27_c00100{bottom:98.426667pt;}
.y4b_c00100{bottom:113.360000pt;}
.y26_c00100{bottom:114.560000pt;}
.y4a_c00100{bottom:128.693333pt;}
.y25_c00100{bottom:130.293333pt;}
.y49_c00100{bottom:145.226667pt;}
.y24_c00100{bottom:146.960000pt;}
.y48_c00100{bottom:161.760000pt;}
.y23_c00100{bottom:162.560000pt;}
.y47_c00100{bottom:177.626667pt;}
.y22_c00100{bottom:179.093333pt;}
.y46_c00100{bottom:194.160000pt;}
.y21_c00100{bottom:194.960000pt;}
.y45_c00100{bottom:209.493333pt;}
.y20_c00100{bottom:211.493333pt;}
.y44_c00100{bottom:226.293333pt;}
.y1f_c00100{bottom:227.493333pt;}
.y43_c00100{bottom:242.960000pt;}
.y1e_c00100{bottom:243.360000pt;}
.y42_c00100{bottom:258.960000pt;}
.y1d_c00100{bottom:259.760000pt;}
.y41_c00100{bottom:275.493333pt;}
.y1c_c00100{bottom:275.760000pt;}
.y40_c00100{bottom:290.960000pt;}
.y1b_c00100{bottom:291.893333pt;}
.y1a_c00100{bottom:307.760000pt;}
.y3f_c00100{bottom:308.160000pt;}
.y3e_c00100{bottom:323.493333pt;}
.y19_c00100{bottom:324.293333pt;}
.y18_c00100{bottom:339.360000pt;}
.y3d_c00100{bottom:339.626667pt;}
.y17_c00100{bottom:355.893333pt;}
.y3c_c00100{bottom:372.026667pt;}
.y16_c00100{bottom:372.560000pt;}
.y3b_c00100{bottom:388.160000pt;}
.y15_c00100{bottom:388.293333pt;}
.y14_c00100{bottom:403.893333pt;}
.y3a_c00100{bottom:419.493333pt;}
.y13_c00100{bottom:419.760000pt;}
.y39_c00100{bottom:435.893333pt;}
.y12_c00100{bottom:436.160000pt;}
.y11_c00100{bottom:451.493333pt;}
.y38_c00100{bottom:452.160000pt;}
.y10_c00100{bottom:467.760000pt;}
.y37_c00100{bottom:468.293333pt;}
.yf_c00100{bottom:484.293333pt;}
.y36_c00100{bottom:484.560000pt;}
.y35_c00100{bottom:500.426667pt;}
.ye_c00100{bottom:500.693333pt;}
.yd_c00100{bottom:516.293333pt;}
.y34_c00100{bottom:516.560000pt;}
.yc_c00100{bottom:532.293333pt;}
.y33_c00100{bottom:532.560000pt;}
.yb_c00100{bottom:548.426667pt;}
.ya_c00100{bottom:564.293333pt;}
.y9_c00100{bottom:580.293333pt;}
.y32_c00100{bottom:580.826667pt;}
.y8_c00100{bottom:596.160000pt;}
.y31_c00100{bottom:597.093333pt;}
.y7_c00100{bottom:612.293333pt;}
.y30_c00100{bottom:613.226667pt;}
.y6_c00100{bottom:628.293333pt;}
.y2f_c00100{bottom:629.093333pt;}
.y5_c00100{bottom:644.426667pt;}
.y2e_c00100{bottom:645.360000pt;}
.y4_c00100{bottom:661.493333pt;}
.y2d_c00100{bottom:661.760000pt;}
.y3_c00100{bottom:676.560000pt;}
.y2c_c00100{bottom:677.760000pt;}
.y2_c00100{bottom:693.093333pt;}
.y2b_c00100{bottom:694.160000pt;}
.y1_c00100{bottom:712.826667pt;}
.h6_c00100{height:11.733399pt;}
.h7_c00100{height:38.937500pt;}
.h3_c00100{height:55.893333pt;}
.h4_c00100{height:56.906667pt;}
.h5_c00100{height:62.597333pt;}
.h2_c00100{height:64.277333pt;}
.h1_c00100{height:751.333333pt;}
.h0_c00100{height:751.466667pt;}
.w2_c00100{width:93.222667pt;}
.w0_c00100{width:513.866667pt;}
.w1_c00100{width:514.000000pt;}
.x0_c00100{left:0.000000pt;}
.x3_c00100{left:53.200000pt;}
.x4_c00100{left:54.400000pt;}
.x2_c00100{left:55.866667pt;}
.x5_c00100{left:56.933333pt;}
.x1_c00100{left:179.466667pt;}
.xd_c00100{left:214.101563pt;}
.x8_c00100{left:250.133333pt;}
.x7_c00100{left:251.733333pt;}
.x6_c00100{left:253.466667pt;}
.xa_c00100{left:254.666667pt;}
.xb_c00100{left:255.866667pt;}
.x9_c00100{left:266.933333pt;}
.xc_c00100{left:424.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_6d5543fe8b1d29cf9e4b38b9.woff2')format("woff");}.ff1_c00101{font-family:ff1_c00101;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00101;src:url('chunks/assets/font_91ddcdbb6df889618cd6df51.woff2')format("woff");}.ff2_c00101{font-family:ff2_c00101;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00101;src:url('chunks/assets/font_482aaa3daada91703c3811a7.woff2')format("woff");}.ff3_c00101{font-family:ff3_c00101;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00101;src:url('chunks/assets/font_8e7477839f1f679dd0e23a01.woff2')format("woff");}.ff4_c00101{font-family:ff4_c00101;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00101;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff5_c00101{font-family:ff5_c00101;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00101{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00101{vertical-align:0.000000px;}
.ls6_c00101{letter-spacing:0.000000px;}
.ls0_c00101{letter-spacing:3.000000px;}
.ls4_c00101{letter-spacing:10.200000px;}
.ls2_c00101{letter-spacing:11.700000px;}
.ls5_c00101{letter-spacing:12.000000px;}
.ls1_c00101{letter-spacing:12.900000px;}
.ls3_c00101{letter-spacing:14.880000px;}
.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:-27.060000px;}
.ws3_c00101{word-spacing:-17.340000px;}
.ws4_c00101{word-spacing:-14.868000px;}
.ws1_c00101{word-spacing:-14.160000px;}
.ws2_c00101{word-spacing:-1.080000px;}
.ws5_c00101{word-spacing:0.000000px;}
._16_c00101{margin-left:-15.000000px;}
._1a_c00101{margin-left:-12.960000px;}
._f_c00101{margin-left:-10.980000px;}
._1c_c00101{margin-left:-8.580000px;}
._10_c00101{margin-left:-7.500000px;}
._4_c00101{margin-left:-5.520000px;}
._c_c00101{margin-left:-4.320000px;}
._6_c00101{margin-left:-3.000000px;}
._7_c00101{margin-left:-1.020000px;}
._8_c00101{width:1.020000px;}
._9_c00101{width:2.880000px;}
._a_c00101{width:3.960000px;}
._5_c00101{width:5.160000px;}
._14_c00101{width:6.180000px;}
._d_c00101{width:7.320000px;}
._1_c00101{width:8.400000px;}
._3_c00101{width:10.080000px;}
._0_c00101{width:11.940000px;}
._b_c00101{width:13.380000px;}
._1b_c00101{width:15.060000px;}
._12_c00101{width:16.620000px;}
._13_c00101{width:17.640000px;}
._1e_c00101{width:19.020000px;}
._15_c00101{width:21.900000px;}
._18_c00101{width:24.480000px;}
._1d_c00101{width:27.600000px;}
._19_c00101{width:30.420000px;}
._20_c00101{width:35.040000px;}
._1f_c00101{width:36.960000px;}
._e_c00101{width:59.820000px;}
._17_c00101{width:77.460000px;}
._11_c00101{width:114.300000px;}
._2_c00101{width:317.640000px;}
.fc2_c00101{color:transparent;}
.fc1_c00101{color:rgb(128,128,128);}
.fc0_c00101{color:rgb(0,0,0);}
.fs3_c00101{font-size:48.000000px;}
.fs2_c00101{font-size:57.000000px;}
.fs0_c00101{font-size:60.000000px;}
.fs1_c00101{font-size:63.000000px;}
.y0_c00101{bottom:0.000000px;}
.y54_c00101{bottom:3.105000px;}
.y53_c00101{bottom:7.228369px;}
.y52_c00101{bottom:34.770000px;}
.y2a_c00101{bottom:49.920000px;}
.y51_c00101{bottom:52.020000px;}
.y29_c00101{bottom:68.820000px;}
.y50_c00101{bottom:70.920000px;}
.y28_c00101{bottom:86.970000px;}
.y4f_c00101{bottom:89.070000px;}
.y27_c00101{bottom:105.270000px;}
.y4e_c00101{bottom:107.370000px;}
.y26_c00101{bottom:123.570000px;}
.y4d_c00101{bottom:125.520000px;}
.y25_c00101{bottom:141.120000px;}
.y4c_c00101{bottom:143.670000px;}
.y24_c00101{bottom:160.020000px;}
.y4b_c00101{bottom:161.670000px;}
.y23_c00101{bottom:178.470000px;}
.y4a_c00101{bottom:180.270000px;}
.y22_c00101{bottom:196.470000px;}
.y49_c00101{bottom:198.420000px;}
.y21_c00101{bottom:214.620000px;}
.y48_c00101{bottom:216.570000px;}
.y20_c00101{bottom:233.220000px;}
.y47_c00101{bottom:234.270000px;}
.y1f_c00101{bottom:251.370000px;}
.y46_c00101{bottom:252.420000px;}
.y1e_c00101{bottom:269.220000px;}
.y45_c00101{bottom:271.020000px;}
.y1d_c00101{bottom:286.770000px;}
.y44_c00101{bottom:288.570000px;}
.y1c_c00101{bottom:305.370000px;}
.y43_c00101{bottom:306.420000px;}
.y1b_c00101{bottom:323.970000px;}
.y42_c00101{bottom:324.270000px;}
.y1a_c00101{bottom:341.820000px;}
.y41_c00101{bottom:342.870000px;}
.y19_c00101{bottom:360.120000px;}
.y40_c00101{bottom:361.020000px;}
.y18_c00101{bottom:378.270000px;}
.y3f_c00101{bottom:379.320000px;}
.y17_c00101{bottom:396.120000px;}
.y3e_c00101{bottom:397.470000px;}
.y16_c00101{bottom:414.420000px;}
.y3d_c00101{bottom:415.470000px;}
.y15_c00101{bottom:432.570000px;}
.y3c_c00101{bottom:433.620000px;}
.y14_c00101{bottom:451.620000px;}
.y13_c00101{bottom:469.470000px;}
.y3b_c00101{bottom:469.770000px;}
.y3a_c00101{bottom:487.320000px;}
.y12_c00101{bottom:487.920000px;}
.y39_c00101{bottom:505.620000px;}
.y11_c00101{bottom:505.920000px;}
.y10_c00101{bottom:523.770000px;}
.y38_c00101{bottom:541.620000px;}
.yf_c00101{bottom:542.070000px;}
.y37_c00101{bottom:559.470000px;}
.ye_c00101{bottom:560.970000px;}
.y36_c00101{bottom:578.070000px;}
.yd_c00101{bottom:578.370000px;}
.y35_c00101{bottom:595.920000px;}
.yc_c00101{bottom:596.670000px;}
.y34_c00101{bottom:613.920000px;}
.yb_c00101{bottom:615.870000px;}
.y33_c00101{bottom:631.170000px;}
.ya_c00101{bottom:633.870000px;}
.y32_c00101{bottom:649.320000px;}
.y9_c00101{bottom:651.720000px;}
.y31_c00101{bottom:667.620000px;}
.y8_c00101{bottom:670.170000px;}
.y30_c00101{bottom:685.470000px;}
.y7_c00101{bottom:688.170000px;}
.y2f_c00101{bottom:703.620000px;}
.y6_c00101{bottom:706.620000px;}
.y2e_c00101{bottom:722.520000px;}
.y5_c00101{bottom:724.170000px;}
.y2d_c00101{bottom:740.520000px;}
.y4_c00101{bottom:742.770000px;}
.y2c_c00101{bottom:758.670000px;}
.y3_c00101{bottom:760.620000px;}
.y2b_c00101{bottom:776.820000px;}
.y2_c00101{bottom:779.220000px;}
.y1_c00101{bottom:797.220000px;}
.h5_c00101{height:13.200073px;}
.h6_c00101{height:43.804688px;}
.h1_c00101{height:62.880000px;}
.h4_c00101{height:64.020000px;}
.h2_c00101{height:66.024000px;}
.h3_c00101{height:67.221000px;}
.h0_c00101{height:834.000000px;}
.w2_c00101{width:104.875500px;}
.w0_c00101{width:568.875000px;}
.w1_c00101{width:569.250000px;}
.x0_c00101{left:0.000000px;}
.x7_c00101{left:21.300000px;}
.x5_c00101{left:25.950000px;}
.x4_c00101{left:27.000000px;}
.xf_c00101{left:70.200000px;}
.x10_c00101{left:75.150000px;}
.xe_c00101{left:76.200000px;}
.xd_c00101{left:77.250000px;}
.xc_c00101{left:78.300000px;}
.xb_c00101{left:79.650000px;}
.xa_c00101{left:80.700000px;}
.x9_c00101{left:81.900000px;}
.x6_c00101{left:82.950000px;}
.x8_c00101{left:84.000000px;}
.x2_c00101{left:85.050000px;}
.x3_c00101{left:86.400000px;}
.x1_c00101{left:90.450000px;}
.x1b_c00101{left:236.251740px;}
.x15_c00101{left:294.300000px;}
.x11_c00101{left:297.000000px;}
.x18_c00101{left:299.700000px;}
.x16_c00101{left:301.800000px;}
.x13_c00101{left:303.300000px;}
.x17_c00101{left:304.650000px;}
.x14_c00101{left:305.700000px;}
.x12_c00101{left:307.500000px;}
.x19_c00101{left:327.300000px;}
.x1a_c00101{left:471.150000px;}
@media print{
.v0_c00101{vertical-align:0.000000pt;}
.ls6_c00101{letter-spacing:0.000000pt;}
.ls0_c00101{letter-spacing:2.666667pt;}
.ls4_c00101{letter-spacing:9.066667pt;}
.ls2_c00101{letter-spacing:10.400000pt;}
.ls5_c00101{letter-spacing:10.666667pt;}
.ls1_c00101{letter-spacing:11.466667pt;}
.ls3_c00101{letter-spacing:13.226667pt;}
.ws0_c00101{word-spacing:-24.053333pt;}
.ws3_c00101{word-spacing:-15.413333pt;}
.ws4_c00101{word-spacing:-13.216000pt;}
.ws1_c00101{word-spacing:-12.586667pt;}
.ws2_c00101{word-spacing:-0.960000pt;}
.ws5_c00101{word-spacing:0.000000pt;}
._16_c00101{margin-left:-13.333333pt;}
._1a_c00101{margin-left:-11.520000pt;}
._f_c00101{margin-left:-9.760000pt;}
._1c_c00101{margin-left:-7.626667pt;}
._10_c00101{margin-left:-6.666667pt;}
._4_c00101{margin-left:-4.906667pt;}
._c_c00101{margin-left:-3.840000pt;}
._6_c00101{margin-left:-2.666667pt;}
._7_c00101{margin-left:-0.906667pt;}
._8_c00101{width:0.906667pt;}
._9_c00101{width:2.560000pt;}
._a_c00101{width:3.520000pt;}
._5_c00101{width:4.586667pt;}
._14_c00101{width:5.493333pt;}
._d_c00101{width:6.506667pt;}
._1_c00101{width:7.466667pt;}
._3_c00101{width:8.960000pt;}
._0_c00101{width:10.613333pt;}
._b_c00101{width:11.893333pt;}
._1b_c00101{width:13.386667pt;}
._12_c00101{width:14.773333pt;}
._13_c00101{width:15.680000pt;}
._1e_c00101{width:16.906667pt;}
._15_c00101{width:19.466667pt;}
._18_c00101{width:21.760000pt;}
._1d_c00101{width:24.533333pt;}
._19_c00101{width:27.040000pt;}
._20_c00101{width:31.146667pt;}
._1f_c00101{width:32.853333pt;}
._e_c00101{width:53.173333pt;}
._17_c00101{width:68.853333pt;}
._11_c00101{width:101.600000pt;}
._2_c00101{width:282.346667pt;}
.fs3_c00101{font-size:42.666667pt;}
.fs2_c00101{font-size:50.666667pt;}
.fs0_c00101{font-size:53.333333pt;}
.fs1_c00101{font-size:56.000000pt;}
.y0_c00101{bottom:0.000000pt;}
.y54_c00101{bottom:2.760000pt;}
.y53_c00101{bottom:6.425217pt;}
.y52_c00101{bottom:30.906667pt;}
.y2a_c00101{bottom:44.373333pt;}
.y51_c00101{bottom:46.240000pt;}
.y29_c00101{bottom:61.173333pt;}
.y50_c00101{bottom:63.040000pt;}
.y28_c00101{bottom:77.306667pt;}
.y4f_c00101{bottom:79.173333pt;}
.y27_c00101{bottom:93.573333pt;}
.y4e_c00101{bottom:95.440000pt;}
.y26_c00101{bottom:109.840000pt;}
.y4d_c00101{bottom:111.573333pt;}
.y25_c00101{bottom:125.440000pt;}
.y4c_c00101{bottom:127.706667pt;}
.y24_c00101{bottom:142.240000pt;}
.y4b_c00101{bottom:143.706667pt;}
.y23_c00101{bottom:158.640000pt;}
.y4a_c00101{bottom:160.240000pt;}
.y22_c00101{bottom:174.640000pt;}
.y49_c00101{bottom:176.373333pt;}
.y21_c00101{bottom:190.773333pt;}
.y48_c00101{bottom:192.506667pt;}
.y20_c00101{bottom:207.306667pt;}
.y47_c00101{bottom:208.240000pt;}
.y1f_c00101{bottom:223.440000pt;}
.y46_c00101{bottom:224.373333pt;}
.y1e_c00101{bottom:239.306667pt;}
.y45_c00101{bottom:240.906667pt;}
.y1d_c00101{bottom:254.906667pt;}
.y44_c00101{bottom:256.506667pt;}
.y1c_c00101{bottom:271.440000pt;}
.y43_c00101{bottom:272.373333pt;}
.y1b_c00101{bottom:287.973333pt;}
.y42_c00101{bottom:288.240000pt;}
.y1a_c00101{bottom:303.840000pt;}
.y41_c00101{bottom:304.773333pt;}
.y19_c00101{bottom:320.106667pt;}
.y40_c00101{bottom:320.906667pt;}
.y18_c00101{bottom:336.240000pt;}
.y3f_c00101{bottom:337.173333pt;}
.y17_c00101{bottom:352.106667pt;}
.y3e_c00101{bottom:353.306667pt;}
.y16_c00101{bottom:368.373333pt;}
.y3d_c00101{bottom:369.306667pt;}
.y15_c00101{bottom:384.506667pt;}
.y3c_c00101{bottom:385.440000pt;}
.y14_c00101{bottom:401.440000pt;}
.y13_c00101{bottom:417.306667pt;}
.y3b_c00101{bottom:417.573333pt;}
.y3a_c00101{bottom:433.173333pt;}
.y12_c00101{bottom:433.706667pt;}
.y39_c00101{bottom:449.440000pt;}
.y11_c00101{bottom:449.706667pt;}
.y10_c00101{bottom:465.573333pt;}
.y38_c00101{bottom:481.440000pt;}
.yf_c00101{bottom:481.840000pt;}
.y37_c00101{bottom:497.306667pt;}
.ye_c00101{bottom:498.640000pt;}
.y36_c00101{bottom:513.840000pt;}
.yd_c00101{bottom:514.106667pt;}
.y35_c00101{bottom:529.706667pt;}
.yc_c00101{bottom:530.373333pt;}
.y34_c00101{bottom:545.706667pt;}
.yb_c00101{bottom:547.440000pt;}
.y33_c00101{bottom:561.040000pt;}
.ya_c00101{bottom:563.440000pt;}
.y32_c00101{bottom:577.173333pt;}
.y9_c00101{bottom:579.306667pt;}
.y31_c00101{bottom:593.440000pt;}
.y8_c00101{bottom:595.706667pt;}
.y30_c00101{bottom:609.306667pt;}
.y7_c00101{bottom:611.706667pt;}
.y2f_c00101{bottom:625.440000pt;}
.y6_c00101{bottom:628.106667pt;}
.y2e_c00101{bottom:642.240000pt;}
.y5_c00101{bottom:643.706667pt;}
.y2d_c00101{bottom:658.240000pt;}
.y4_c00101{bottom:660.240000pt;}
.y2c_c00101{bottom:674.373333pt;}
.y3_c00101{bottom:676.106667pt;}
.y2b_c00101{bottom:690.506667pt;}
.y2_c00101{bottom:692.640000pt;}
.y1_c00101{bottom:708.640000pt;}
.h5_c00101{height:11.733399pt;}
.h6_c00101{height:38.937500pt;}
.h1_c00101{height:55.893333pt;}
.h4_c00101{height:56.906667pt;}
.h2_c00101{height:58.688000pt;}
.h3_c00101{height:59.752000pt;}
.h0_c00101{height:741.333333pt;}
.w2_c00101{width:93.222667pt;}
.w0_c00101{width:505.666667pt;}
.w1_c00101{width:506.000000pt;}
.x0_c00101{left:0.000000pt;}
.x7_c00101{left:18.933333pt;}
.x5_c00101{left:23.066667pt;}
.x4_c00101{left:24.000000pt;}
.xf_c00101{left:62.400000pt;}
.x10_c00101{left:66.800000pt;}
.xe_c00101{left:67.733333pt;}
.xd_c00101{left:68.666667pt;}
.xc_c00101{left:69.600000pt;}
.xb_c00101{left:70.800000pt;}
.xa_c00101{left:71.733333pt;}
.x9_c00101{left:72.800000pt;}
.x6_c00101{left:73.733333pt;}
.x8_c00101{left:74.666667pt;}
.x2_c00101{left:75.600000pt;}
.x3_c00101{left:76.800000pt;}
.x1_c00101{left:80.400000pt;}
.x1b_c00101{left:210.001546pt;}
.x15_c00101{left:261.600000pt;}
.x11_c00101{left:264.000000pt;}
.x18_c00101{left:266.400000pt;}
.x16_c00101{left:268.266667pt;}
.x13_c00101{left:269.600000pt;}
.x17_c00101{left:270.800000pt;}
.x14_c00101{left:271.733333pt;}
.x12_c00101{left:273.333333pt;}
.x19_c00101{left:290.933333pt;}
.x1a_c00101{left:418.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e09e3e2f1b862ae70adf1650.woff2')format("woff");}.ff1_c00102{font-family:ff1_c00102;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00102;src:url('chunks/assets/font_f5142940365b71c9f645adcd.woff2')format("woff");}.ff2_c00102{font-family:ff2_c00102;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00102;src:url('chunks/assets/font_fe1f7977079e1f776e94ea3e.woff2')format("woff");}.ff3_c00102{font-family:ff3_c00102;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00102;src:url('chunks/assets/font_b6258f380122e1f7b5e5e866.woff2')format("woff");}.ff4_c00102{font-family:ff4_c00102;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00102;src:url('chunks/assets/font_7c7b114d6d8510036cb24ad0.woff2')format("woff");}.ff5_c00102{font-family:ff5_c00102;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00102;src:url('chunks/assets/font_25d8be8dcfcce4c2d70b44d5.woff2')format("woff");}.ff6_c00102{font-family:ff6_c00102;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00102;src:url('chunks/assets/font_0ce391de997f24f9f9dd37f4.woff2')format("woff");}.ff7_c00102{font-family:ff7_c00102;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00102;src:url('chunks/assets/font_dff76af53f1bdd28b61c8c00.woff2')format("woff");}.ff8_c00102{font-family:ff8_c00102;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00102;src:url('chunks/assets/font_78a5103403043ae453a13d70.woff2')format("woff");}.ff9_c00102{font-family:ff9_c00102;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00102;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ffa_c00102{font-family:ffa_c00102;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00102{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00102{vertical-align:0.000000px;}
.v1_c00102{vertical-align:76.800000px;}
.ls4_c00102{letter-spacing:0.000000px;}
.ls0_c00102{letter-spacing:3.000000px;}
.ls6_c00102{letter-spacing:6.000000px;}
.ls2_c00102{letter-spacing:7.020000px;}
.ls3_c00102{letter-spacing:7.980000px;}
.ls5_c00102{letter-spacing:12.000000px;}
.ls7_c00102{letter-spacing:15.000000px;}
.ls1_c00102{letter-spacing:96.447000px;}
.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;}
}
.ws6_c00102{word-spacing:-46.746000px;}
.ws7_c00102{word-spacing:-39.399000px;}
.ws5_c00102{word-spacing:-35.295000px;}
.ws3_c00102{word-spacing:-29.319000px;}
.ws0_c00102{word-spacing:-26.208000px;}
.ws1_c00102{word-spacing:-22.074000px;}
.ws4_c00102{word-spacing:-14.160000px;}
.ws8_c00102{word-spacing:0.000000px;}
.ws2_c00102{word-spacing:43.380000px;}
._4_c00102{margin-left:-25.800000px;}
._28_c00102{margin-left:-24.120000px;}
._2b_c00102{margin-left:-22.500000px;}
._2c_c00102{margin-left:-20.220000px;}
._29_c00102{margin-left:-17.280000px;}
._2e_c00102{margin-left:-15.120000px;}
._1a_c00102{margin-left:-12.360000px;}
._1e_c00102{margin-left:-10.800000px;}
._b_c00102{margin-left:-9.420000px;}
._19_c00102{margin-left:-8.280000px;}
._1c_c00102{margin-left:-6.780000px;}
._a_c00102{margin-left:-4.920000px;}
._6_c00102{margin-left:-3.780000px;}
._5_c00102{margin-left:-2.640000px;}
._3_c00102{margin-left:-1.620000px;}
._1_c00102{width:1.800000px;}
._2_c00102{width:3.180000px;}
._0_c00102{width:4.860000px;}
._10_c00102{width:6.060000px;}
._f_c00102{width:7.380000px;}
._12_c00102{width:8.880000px;}
._11_c00102{width:9.900000px;}
._d_c00102{width:11.880000px;}
._20_c00102{width:13.200000px;}
._15_c00102{width:14.580000px;}
._22_c00102{width:15.900000px;}
._8_c00102{width:18.480000px;}
._17_c00102{width:20.340000px;}
._9_c00102{width:21.840000px;}
._2d_c00102{width:22.860000px;}
._e_c00102{width:24.060000px;}
._2a_c00102{width:25.740000px;}
._21_c00102{width:27.540000px;}
._7_c00102{width:30.060000px;}
._1d_c00102{width:31.860000px;}
._16_c00102{width:34.560000px;}
._1f_c00102{width:36.060000px;}
._14_c00102{width:37.380000px;}
._18_c00102{width:39.240000px;}
._23_c00102{width:40.560000px;}
._13_c00102{width:42.180000px;}
._31_c00102{width:46.080000px;}
._2f_c00102{width:54.540000px;}
._25_c00102{width:57.540000px;}
._24_c00102{width:104.940000px;}
._26_c00102{width:118.140000px;}
._27_c00102{width:150.600000px;}
._c_c00102{width:153.360000px;}
._1b_c00102{width:170.460000px;}
._30_c00102{width:335.040000px;}
.fc2_c00102{color:transparent;}
.fc1_c00102{color:rgb(128,128,128);}
.fc0_c00102{color:rgb(0,0,0);}
.fs4_c00102{font-size:45.000000px;}
.fs1_c00102{font-size:48.000000px;}
.fs0_c00102{font-size:60.000000px;}
.fs2_c00102{font-size:66.000000px;}
.fs3_c00102{font-size:69.000000px;}
.fs5_c00102{font-size:213.000000px;}
.y0_c00102{bottom:0.000000px;}
.y4a_c00102{bottom:3.105000px;}
.y49_c00102{bottom:7.228371px;}
.y48_c00102{bottom:21.315000px;}
.y47_c00102{bottom:39.165000px;}
.y46_c00102{bottom:58.515000px;}
.y45_c00102{bottom:77.265000px;}
.y24_c00102{bottom:92.265000px;}
.y44_c00102{bottom:94.515000px;}
.y43_c00102{bottom:113.415000px;}
.y42_c00102{bottom:131.715000px;}
.y41_c00102{bottom:149.565000px;}
.y23_c00102{bottom:151.665000px;}
.y40_c00102{bottom:167.715000px;}
.y22_c00102{bottom:170.865000px;}
.y3f_c00102{bottom:185.715000px;}
.y21_c00102{bottom:187.965000px;}
.y3e_c00102{bottom:204.915000px;}
.y20_c00102{bottom:206.865000px;}
.y3d_c00102{bottom:222.465000px;}
.y1f_c00102{bottom:224.565000px;}
.y3c_c00102{bottom:240.765000px;}
.y1e_c00102{bottom:242.715000px;}
.y3b_c00102{bottom:259.215000px;}
.y1d_c00102{bottom:261.315000px;}
.y3a_c00102{bottom:278.115000px;}
.y1c_c00102{bottom:279.765000px;}
.y39_c00102{bottom:295.965000px;}
.y1b_c00102{bottom:297.465000px;}
.y38_c00102{bottom:313.515000px;}
.y1a_c00102{bottom:315.915000px;}
.y37_c00102{bottom:332.115000px;}
.y19_c00102{bottom:333.915000px;}
.y36_c00102{bottom:350.115000px;}
.y18_c00102{bottom:352.365000px;}
.y35_c00102{bottom:368.265000px;}
.y17_c00102{bottom:370.665000px;}
.y34_c00102{bottom:386.565000px;}
.y16_c00102{bottom:388.815000px;}
.y33_c00102{bottom:405.315000px;}
.y15_c00102{bottom:406.065000px;}
.y32_c00102{bottom:423.015000px;}
.y14_c00102{bottom:424.665000px;}
.y31_c00102{bottom:440.865000px;}
.y13_c00102{bottom:442.515000px;}
.y12_c00102{bottom:460.365000px;}
.y11_c00102{bottom:477.915000px;}
.y30_c00102{bottom:495.915000px;}
.y10_c00102{bottom:496.515000px;}
.y2f_c00102{bottom:514.365000px;}
.yf_c00102{bottom:514.665000px;}
.y2e_c00102{bottom:532.215000px;}
.ye_c00102{bottom:532.965000px;}
.y2d_c00102{bottom:550.515000px;}
.yd_c00102{bottom:550.815000px;}
.y2c_c00102{bottom:568.665000px;}
.yc_c00102{bottom:569.415000px;}
.y2b_c00102{bottom:585.615000px;}
.yb_c00102{bottom:587.565000px;}
.y29_c00102{bottom:601.515000px;}
.y2a_c00102{bottom:603.915000px;}
.ya_c00102{bottom:605.565000px;}
.y9_c00102{bottom:624.015000px;}
.y8_c00102{bottom:641.715000px;}
.y7_c00102{bottom:659.565000px;}
.y28_c00102{bottom:659.865000px;}
.y6_c00102{bottom:678.015000px;}
.y27_c00102{bottom:678.465000px;}
.y5_c00102{bottom:696.015000px;}
.y4_c00102{bottom:714.165000px;}
.y26_c00102{bottom:714.465000px;}
.y3_c00102{bottom:733.065000px;}
.y25_c00102{bottom:750.315000px;}
.y2_c00102{bottom:750.915000px;}
.y1_c00102{bottom:769.215000px;}
.h8_c00102{height:13.200074px;}
.h9_c00102{height:43.804688px;}
.h2_c00102{height:62.880000px;}
.h6_c00102{height:64.020000px;}
.h3_c00102{height:70.422000px;}
.h4_c00102{height:72.312000px;}
.h7_c00102{height:73.623000px;}
.h5_c00102{height:223.224000px;}
.h0_c00102{height:833.775000px;}
.h1_c00102{height:834.000000px;}
.w2_c00102{width:104.875500px;}
.w0_c00102{width:569.700000px;}
.w1_c00102{width:570.000000px;}
.x0_c00102{left:0.000000px;}
.x2_c00102{left:19.500000px;}
.x4_c00102{left:20.850000px;}
.x3_c00102{left:69.150000px;}
.x1_c00102{left:70.500000px;}
.x5_c00102{left:71.850000px;}
.x6_c00102{left:72.900000px;}
.x7_c00102{left:73.950000px;}
.x8_c00102{left:75.300000px;}
.x9_c00102{left:76.500000px;}
.xa_c00102{left:86.700000px;}
.xb_c00102{left:96.750000px;}
.xc_c00102{left:128.850000px;}
.xe_c00102{left:134.250000px;}
.xd_c00102{left:159.300000px;}
.x19_c00102{left:236.664230px;}
.x10_c00102{left:292.050000px;}
.x14_c00102{left:293.250000px;}
.x17_c00102{left:294.300000px;}
.x11_c00102{left:305.100000px;}
.x15_c00102{left:326.700000px;}
.x12_c00102{left:344.550000px;}
.x16_c00102{left:368.550000px;}
.x13_c00102{left:374.850000px;}
.xf_c00102{left:401.250000px;}
.x18_c00102{left:465.150000px;}
@media print{
.v0_c00102{vertical-align:0.000000pt;}
.v1_c00102{vertical-align:68.266667pt;}
.ls4_c00102{letter-spacing:0.000000pt;}
.ls0_c00102{letter-spacing:2.666667pt;}
.ls6_c00102{letter-spacing:5.333333pt;}
.ls2_c00102{letter-spacing:6.240000pt;}
.ls3_c00102{letter-spacing:7.093333pt;}
.ls5_c00102{letter-spacing:10.666667pt;}
.ls7_c00102{letter-spacing:13.333333pt;}
.ls1_c00102{letter-spacing:85.730667pt;}
.ws6_c00102{word-spacing:-41.552000pt;}
.ws7_c00102{word-spacing:-35.021333pt;}
.ws5_c00102{word-spacing:-31.373333pt;}
.ws3_c00102{word-spacing:-26.061333pt;}
.ws0_c00102{word-spacing:-23.296000pt;}
.ws1_c00102{word-spacing:-19.621333pt;}
.ws4_c00102{word-spacing:-12.586667pt;}
.ws8_c00102{word-spacing:0.000000pt;}
.ws2_c00102{word-spacing:38.560000pt;}
._4_c00102{margin-left:-22.933333pt;}
._28_c00102{margin-left:-21.440000pt;}
._2b_c00102{margin-left:-20.000000pt;}
._2c_c00102{margin-left:-17.973333pt;}
._29_c00102{margin-left:-15.360000pt;}
._2e_c00102{margin-left:-13.440000pt;}
._1a_c00102{margin-left:-10.986667pt;}
._1e_c00102{margin-left:-9.600000pt;}
._b_c00102{margin-left:-8.373333pt;}
._19_c00102{margin-left:-7.360000pt;}
._1c_c00102{margin-left:-6.026667pt;}
._a_c00102{margin-left:-4.373333pt;}
._6_c00102{margin-left:-3.360000pt;}
._5_c00102{margin-left:-2.346667pt;}
._3_c00102{margin-left:-1.440000pt;}
._1_c00102{width:1.600000pt;}
._2_c00102{width:2.826667pt;}
._0_c00102{width:4.320000pt;}
._10_c00102{width:5.386667pt;}
._f_c00102{width:6.560000pt;}
._12_c00102{width:7.893333pt;}
._11_c00102{width:8.800000pt;}
._d_c00102{width:10.560000pt;}
._20_c00102{width:11.733333pt;}
._15_c00102{width:12.960000pt;}
._22_c00102{width:14.133333pt;}
._8_c00102{width:16.426667pt;}
._17_c00102{width:18.080000pt;}
._9_c00102{width:19.413333pt;}
._2d_c00102{width:20.320000pt;}
._e_c00102{width:21.386667pt;}
._2a_c00102{width:22.880000pt;}
._21_c00102{width:24.480000pt;}
._7_c00102{width:26.720000pt;}
._1d_c00102{width:28.320000pt;}
._16_c00102{width:30.720000pt;}
._1f_c00102{width:32.053333pt;}
._14_c00102{width:33.226667pt;}
._18_c00102{width:34.880000pt;}
._23_c00102{width:36.053333pt;}
._13_c00102{width:37.493333pt;}
._31_c00102{width:40.960000pt;}
._2f_c00102{width:48.480000pt;}
._25_c00102{width:51.146667pt;}
._24_c00102{width:93.280000pt;}
._26_c00102{width:105.013333pt;}
._27_c00102{width:133.866667pt;}
._c_c00102{width:136.320000pt;}
._1b_c00102{width:151.520000pt;}
._30_c00102{width:297.813333pt;}
.fs4_c00102{font-size:40.000000pt;}
.fs1_c00102{font-size:42.666667pt;}
.fs0_c00102{font-size:53.333333pt;}
.fs2_c00102{font-size:58.666667pt;}
.fs3_c00102{font-size:61.333333pt;}
.fs5_c00102{font-size:189.333333pt;}
.y0_c00102{bottom:0.000000pt;}
.y4a_c00102{bottom:2.760000pt;}
.y49_c00102{bottom:6.425219pt;}
.y48_c00102{bottom:18.946667pt;}
.y47_c00102{bottom:34.813333pt;}
.y46_c00102{bottom:52.013333pt;}
.y45_c00102{bottom:68.680000pt;}
.y24_c00102{bottom:82.013333pt;}
.y44_c00102{bottom:84.013333pt;}
.y43_c00102{bottom:100.813333pt;}
.y42_c00102{bottom:117.080000pt;}
.y41_c00102{bottom:132.946667pt;}
.y23_c00102{bottom:134.813333pt;}
.y40_c00102{bottom:149.080000pt;}
.y22_c00102{bottom:151.880000pt;}
.y3f_c00102{bottom:165.080000pt;}
.y21_c00102{bottom:167.080000pt;}
.y3e_c00102{bottom:182.146667pt;}
.y20_c00102{bottom:183.880000pt;}
.y3d_c00102{bottom:197.746667pt;}
.y1f_c00102{bottom:199.613333pt;}
.y3c_c00102{bottom:214.013333pt;}
.y1e_c00102{bottom:215.746667pt;}
.y3b_c00102{bottom:230.413333pt;}
.y1d_c00102{bottom:232.280000pt;}
.y3a_c00102{bottom:247.213333pt;}
.y1c_c00102{bottom:248.680000pt;}
.y39_c00102{bottom:263.080000pt;}
.y1b_c00102{bottom:264.413333pt;}
.y38_c00102{bottom:278.680000pt;}
.y1a_c00102{bottom:280.813333pt;}
.y37_c00102{bottom:295.213333pt;}
.y19_c00102{bottom:296.813333pt;}
.y36_c00102{bottom:311.213333pt;}
.y18_c00102{bottom:313.213333pt;}
.y35_c00102{bottom:327.346667pt;}
.y17_c00102{bottom:329.480000pt;}
.y34_c00102{bottom:343.613333pt;}
.y16_c00102{bottom:345.613333pt;}
.y33_c00102{bottom:360.280000pt;}
.y15_c00102{bottom:360.946667pt;}
.y32_c00102{bottom:376.013333pt;}
.y14_c00102{bottom:377.480000pt;}
.y31_c00102{bottom:391.880000pt;}
.y13_c00102{bottom:393.346667pt;}
.y12_c00102{bottom:409.213333pt;}
.y11_c00102{bottom:424.813333pt;}
.y30_c00102{bottom:440.813333pt;}
.y10_c00102{bottom:441.346667pt;}
.y2f_c00102{bottom:457.213333pt;}
.yf_c00102{bottom:457.480000pt;}
.y2e_c00102{bottom:473.080000pt;}
.ye_c00102{bottom:473.746667pt;}
.y2d_c00102{bottom:489.346667pt;}
.yd_c00102{bottom:489.613333pt;}
.y2c_c00102{bottom:505.480000pt;}
.yc_c00102{bottom:506.146667pt;}
.y2b_c00102{bottom:520.546667pt;}
.yb_c00102{bottom:522.280000pt;}
.y29_c00102{bottom:534.680000pt;}
.y2a_c00102{bottom:536.813333pt;}
.ya_c00102{bottom:538.280000pt;}
.y9_c00102{bottom:554.680000pt;}
.y8_c00102{bottom:570.413333pt;}
.y7_c00102{bottom:586.280000pt;}
.y28_c00102{bottom:586.546667pt;}
.y6_c00102{bottom:602.680000pt;}
.y27_c00102{bottom:603.080000pt;}
.y5_c00102{bottom:618.680000pt;}
.y4_c00102{bottom:634.813333pt;}
.y26_c00102{bottom:635.080000pt;}
.y3_c00102{bottom:651.613333pt;}
.y25_c00102{bottom:666.946667pt;}
.y2_c00102{bottom:667.480000pt;}
.y1_c00102{bottom:683.746667pt;}
.h8_c00102{height:11.733399pt;}
.h9_c00102{height:38.937500pt;}
.h2_c00102{height:55.893333pt;}
.h6_c00102{height:56.906667pt;}
.h3_c00102{height:62.597333pt;}
.h4_c00102{height:64.277333pt;}
.h7_c00102{height:65.442667pt;}
.h5_c00102{height:198.421333pt;}
.h0_c00102{height:741.133333pt;}
.h1_c00102{height:741.333333pt;}
.w2_c00102{width:93.222667pt;}
.w0_c00102{width:506.400000pt;}
.w1_c00102{width:506.666667pt;}
.x0_c00102{left:0.000000pt;}
.x2_c00102{left:17.333333pt;}
.x4_c00102{left:18.533333pt;}
.x3_c00102{left:61.466667pt;}
.x1_c00102{left:62.666667pt;}
.x5_c00102{left:63.866667pt;}
.x6_c00102{left:64.800000pt;}
.x7_c00102{left:65.733333pt;}
.x8_c00102{left:66.933333pt;}
.x9_c00102{left:68.000000pt;}
.xa_c00102{left:77.066667pt;}
.xb_c00102{left:86.000000pt;}
.xc_c00102{left:114.533333pt;}
.xe_c00102{left:119.333333pt;}
.xd_c00102{left:141.600000pt;}
.x19_c00102{left:210.368205pt;}
.x10_c00102{left:259.600000pt;}
.x14_c00102{left:260.666667pt;}
.x17_c00102{left:261.600000pt;}
.x11_c00102{left:271.200000pt;}
.x15_c00102{left:290.400000pt;}
.x12_c00102{left:306.266667pt;}
.x16_c00102{left:327.600000pt;}
.x13_c00102{left:333.200000pt;}
.xf_c00102{left:356.666667pt;}
.x18_c00102{left:413.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_dcb906b20c1828387c42fd38.woff2')format("woff");}.ff1_c00103{font-family:ff1_c00103;line-height:1.437000;font-style:normal;font-weight:normal;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_a46b554ff9166eb39665b141.woff2')format("woff");}.ff2_c00103{font-family:ff2_c00103;line-height:1.575000;font-style:normal;font-weight:normal;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_29369f471e30057d5109135a.woff2')format("woff");}.ff3_c00103{font-family:ff3_c00103;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00103;src:url('chunks/assets/font_9ef045ab0c54d004154b1d7e.woff2')format("woff");}.ff4_c00103{font-family:ff4_c00103;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00103;src:url('chunks/assets/font_4b389e13f679722fc7a0f69a.woff2')format("woff");}.ff5_c00103{font-family:ff5_c00103;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00103;src:url('chunks/assets/font_fe788a3f42c2d4cd6691dc0b.woff2')format("woff");}.ff6_c00103{font-family:ff6_c00103;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00103;src:url('chunks/assets/font_7c7b114d6d8510036cb24ad0.woff2')format("woff");}.ff7_c00103{font-family:ff7_c00103;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00103;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff8_c00103{font-family:ff8_c00103;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00103{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00103{vertical-align:0.000000px;}
.ls6_c00103{letter-spacing:0.000000px;}
.ls1_c00103{letter-spacing:2.400000px;}
.ls0_c00103{letter-spacing:2.850000px;}
.ls7_c00103{letter-spacing:3.000000px;}
.ls2_c00103{letter-spacing:3.060000px;}
.ls3_c00103{letter-spacing:3.900000px;}
.ls4_c00103{letter-spacing:8.187000px;}
.ls5_c00103{letter-spacing:12.000000px;}
.sc__c00103{text-shadow:none;}
.sc0_c00103{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00103{-webkit-text-stroke:0px transparent;}
.sc0_c00103{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00103{word-spacing:-27.750000px;}
.ws2_c00103{word-spacing:-18.750000px;}
.ws4_c00103{word-spacing:-16.284000px;}
.ws0_c00103{word-spacing:-15.750000px;}
.ws3_c00103{word-spacing:-14.160000px;}
.ws5_c00103{word-spacing:0.000000px;}
._1f_c00103{margin-left:-20.049000px;}
._1d_c00103{margin-left:-13.965000px;}
._22_c00103{margin-left:-12.315000px;}
._19_c00103{margin-left:-10.782000px;}
._18_c00103{margin-left:-8.931000px;}
._1b_c00103{margin-left:-7.920000px;}
._11_c00103{margin-left:-6.123000px;}
._12_c00103{margin-left:-4.593000px;}
._0_c00103{margin-left:-2.691000px;}
._e_c00103{margin-left:-1.515000px;}
._c_c00103{width:1.674000px;}
._2_c00103{width:3.243000px;}
._3_c00103{width:4.623000px;}
._6_c00103{width:6.297000px;}
._5_c00103{width:7.797000px;}
._7_c00103{width:8.862000px;}
._8_c00103{width:10.473000px;}
._17_c00103{width:11.769000px;}
._d_c00103{width:13.125000px;}
._1a_c00103{width:14.514000px;}
._4_c00103{width:16.905000px;}
._21_c00103{width:18.399000px;}
._f_c00103{width:19.428000px;}
._10_c00103{width:22.161000px;}
._16_c00103{width:24.048000px;}
._15_c00103{width:25.737000px;}
._13_c00103{width:27.570000px;}
._14_c00103{width:34.551000px;}
._1c_c00103{width:38.232000px;}
._b_c00103{width:46.422000px;}
._a_c00103{width:56.778000px;}
._20_c00103{width:59.499000px;}
._9_c00103{width:74.682000px;}
._1e_c00103{width:103.893000px;}
._23_c00103{width:181.686000px;}
._24_c00103{width:200.427000px;}
._1_c00103{width:333.684000px;}
.fc2_c00103{color:transparent;}
.fc1_c00103{color:rgb(128,128,128);}
.fc0_c00103{color:rgb(0,0,0);}
.fs3_c00103{font-size:48.000000px;}
.fs2_c00103{font-size:60.000000px;}
.fs1_c00103{font-size:63.000000px;}
.fs0_c00103{font-size:69.000000px;}
.y0_c00103{bottom:0.000000px;}
.y54_c00103{bottom:3.105000px;}
.y53_c00103{bottom:7.228369px;}
.y52_c00103{bottom:38.520000px;}
.y51_c00103{bottom:55.620000px;}
.y29_c00103{bottom:73.170000px;}
.y50_c00103{bottom:76.170000px;}
.y28_c00103{bottom:91.470000px;}
.y4f_c00103{bottom:92.820000px;}
.y27_c00103{bottom:110.370000px;}
.y4e_c00103{bottom:111.270000px;}
.y26_c00103{bottom:127.620000px;}
.y4d_c00103{bottom:129.570000px;}
.y25_c00103{bottom:146.370000px;}
.y4c_c00103{bottom:147.720000px;}
.y24_c00103{bottom:164.370000px;}
.y4b_c00103{bottom:165.720000px;}
.y23_c00103{bottom:182.820000px;}
.y4a_c00103{bottom:184.170000px;}
.y22_c00103{bottom:200.520000px;}
.y49_c00103{bottom:201.870000px;}
.y21_c00103{bottom:218.970000px;}
.y48_c00103{bottom:220.320000px;}
.y20_c00103{bottom:237.270000px;}
.y47_c00103{bottom:238.320000px;}
.y1f_c00103{bottom:255.420000px;}
.y46_c00103{bottom:256.470000px;}
.y1e_c00103{bottom:273.420000px;}
.y45_c00103{bottom:274.170000px;}
.y1d_c00103{bottom:291.270000px;}
.y44_c00103{bottom:292.320000px;}
.y1c_c00103{bottom:309.120000px;}
.y43_c00103{bottom:310.470000px;}
.y1b_c00103{bottom:327.270000px;}
.y42_c00103{bottom:328.320000px;}
.y1a_c00103{bottom:345.570000px;}
.y41_c00103{bottom:346.620000px;}
.y19_c00103{bottom:363.720000px;}
.y40_c00103{bottom:365.070000px;}
.y18_c00103{bottom:381.420000px;}
.y3f_c00103{bottom:383.070000px;}
.y17_c00103{bottom:399.870000px;}
.y3e_c00103{bottom:400.920000px;}
.y16_c00103{bottom:417.870000px;}
.y3d_c00103{bottom:419.520000px;}
.y15_c00103{bottom:436.020000px;}
.y3c_c00103{bottom:436.770000px;}
.y14_c00103{bottom:454.320000px;}
.y3b_c00103{bottom:455.220000px;}
.y13_c00103{bottom:472.170000px;}
.y3a_c00103{bottom:473.220000px;}
.y12_c00103{bottom:490.320000px;}
.y39_c00103{bottom:492.120000px;}
.y11_c00103{bottom:508.170000px;}
.y38_c00103{bottom:509.670000px;}
.y10_c00103{bottom:526.170000px;}
.y37_c00103{bottom:528.120000px;}
.yf_c00103{bottom:544.320000px;}
.y36_c00103{bottom:545.070000px;}
.ye_c00103{bottom:562.320000px;}
.y35_c00103{bottom:564.270000px;}
.yd_c00103{bottom:579.720000px;}
.y34_c00103{bottom:581.520000px;}
.yc_c00103{bottom:598.020000px;}
.y33_c00103{bottom:601.020000px;}
.yb_c00103{bottom:615.570000px;}
.y32_c00103{bottom:618.270000px;}
.ya_c00103{bottom:633.720000px;}
.y31_c00103{bottom:636.120000px;}
.y9_c00103{bottom:651.720000px;}
.y30_c00103{bottom:653.970000px;}
.y8_c00103{bottom:668.970000px;}
.y2f_c00103{bottom:671.970000px;}
.y7_c00103{bottom:687.120000px;}
.y2e_c00103{bottom:690.120000px;}
.y6_c00103{bottom:705.720000px;}
.y2d_c00103{bottom:708.120000px;}
.y5_c00103{bottom:724.170000px;}
.y2c_c00103{bottom:725.970000px;}
.y4_c00103{bottom:741.870000px;}
.y2b_c00103{bottom:743.820000px;}
.y3_c00103{bottom:760.320000px;}
.y2a_c00103{bottom:762.420000px;}
.y2_c00103{bottom:779.220000px;}
.y1_c00103{bottom:799.770000px;}
.h8_c00103{height:13.200073px;}
.h9_c00103{height:43.804688px;}
.h4_c00103{height:51.216000px;}
.h5_c00103{height:62.880000px;}
.h7_c00103{height:63.480000px;}
.h6_c00103{height:64.020000px;}
.h3_c00103{height:67.221000px;}
.h2_c00103{height:72.312000px;}
.h0_c00103{height:835.350000px;}
.h1_c00103{height:835.500000px;}
.w2_c00103{width:104.875500px;}
.w0_c00103{width:562.125000px;}
.w1_c00103{width:562.500000px;}
.x0_c00103{left:0.000000px;}
.xb_c00103{left:68.850000px;}
.x9_c00103{left:70.800000px;}
.x8_c00103{left:72.600000px;}
.x7_c00103{left:73.800000px;}
.x4_c00103{left:74.850000px;}
.x5_c00103{left:75.900000px;}
.x2_c00103{left:76.950000px;}
.x3_c00103{left:78.000000px;}
.x1_c00103{left:80.700000px;}
.xa_c00103{left:87.750000px;}
.x6_c00103{left:130.950000px;}
.x13_c00103{left:232.876740px;}
.x11_c00103{left:291.900000px;}
.x10_c00103{left:293.250000px;}
.xd_c00103{left:294.300000px;}
.xe_c00103{left:296.550000px;}
.xf_c00103{left:297.600000px;}
.xc_c00103{left:298.650000px;}
.x12_c00103{left:469.350000px;}
@media print{
.v0_c00103{vertical-align:0.000000pt;}
.ls6_c00103{letter-spacing:0.000000pt;}
.ls1_c00103{letter-spacing:2.133333pt;}
.ls0_c00103{letter-spacing:2.533333pt;}
.ls7_c00103{letter-spacing:2.666667pt;}
.ls2_c00103{letter-spacing:2.720000pt;}
.ls3_c00103{letter-spacing:3.466667pt;}
.ls4_c00103{letter-spacing:7.277333pt;}
.ls5_c00103{letter-spacing:10.666667pt;}
.ws1_c00103{word-spacing:-24.666667pt;}
.ws2_c00103{word-spacing:-16.666667pt;}
.ws4_c00103{word-spacing:-14.474667pt;}
.ws0_c00103{word-spacing:-14.000000pt;}
.ws3_c00103{word-spacing:-12.586667pt;}
.ws5_c00103{word-spacing:0.000000pt;}
._1f_c00103{margin-left:-17.821333pt;}
._1d_c00103{margin-left:-12.413333pt;}
._22_c00103{margin-left:-10.946667pt;}
._19_c00103{margin-left:-9.584000pt;}
._18_c00103{margin-left:-7.938667pt;}
._1b_c00103{margin-left:-7.040000pt;}
._11_c00103{margin-left:-5.442667pt;}
._12_c00103{margin-left:-4.082667pt;}
._0_c00103{margin-left:-2.392000pt;}
._e_c00103{margin-left:-1.346667pt;}
._c_c00103{width:1.488000pt;}
._2_c00103{width:2.882667pt;}
._3_c00103{width:4.109333pt;}
._6_c00103{width:5.597333pt;}
._5_c00103{width:6.930667pt;}
._7_c00103{width:7.877333pt;}
._8_c00103{width:9.309333pt;}
._17_c00103{width:10.461333pt;}
._d_c00103{width:11.666667pt;}
._1a_c00103{width:12.901333pt;}
._4_c00103{width:15.026667pt;}
._21_c00103{width:16.354667pt;}
._f_c00103{width:17.269333pt;}
._10_c00103{width:19.698667pt;}
._16_c00103{width:21.376000pt;}
._15_c00103{width:22.877333pt;}
._13_c00103{width:24.506667pt;}
._14_c00103{width:30.712000pt;}
._1c_c00103{width:33.984000pt;}
._b_c00103{width:41.264000pt;}
._a_c00103{width:50.469333pt;}
._20_c00103{width:52.888000pt;}
._9_c00103{width:66.384000pt;}
._1e_c00103{width:92.349333pt;}
._23_c00103{width:161.498667pt;}
._24_c00103{width:178.157333pt;}
._1_c00103{width:296.608000pt;}
.fs3_c00103{font-size:42.666667pt;}
.fs2_c00103{font-size:53.333333pt;}
.fs1_c00103{font-size:56.000000pt;}
.fs0_c00103{font-size:61.333333pt;}
.y0_c00103{bottom:0.000000pt;}
.y54_c00103{bottom:2.760000pt;}
.y53_c00103{bottom:6.425217pt;}
.y52_c00103{bottom:34.240000pt;}
.y51_c00103{bottom:49.440000pt;}
.y29_c00103{bottom:65.040000pt;}
.y50_c00103{bottom:67.706667pt;}
.y28_c00103{bottom:81.306667pt;}
.y4f_c00103{bottom:82.506667pt;}
.y27_c00103{bottom:98.106667pt;}
.y4e_c00103{bottom:98.906667pt;}
.y26_c00103{bottom:113.440000pt;}
.y4d_c00103{bottom:115.173333pt;}
.y25_c00103{bottom:130.106667pt;}
.y4c_c00103{bottom:131.306667pt;}
.y24_c00103{bottom:146.106667pt;}
.y4b_c00103{bottom:147.306667pt;}
.y23_c00103{bottom:162.506667pt;}
.y4a_c00103{bottom:163.706667pt;}
.y22_c00103{bottom:178.240000pt;}
.y49_c00103{bottom:179.440000pt;}
.y21_c00103{bottom:194.640000pt;}
.y48_c00103{bottom:195.840000pt;}
.y20_c00103{bottom:210.906667pt;}
.y47_c00103{bottom:211.840000pt;}
.y1f_c00103{bottom:227.040000pt;}
.y46_c00103{bottom:227.973333pt;}
.y1e_c00103{bottom:243.040000pt;}
.y45_c00103{bottom:243.706667pt;}
.y1d_c00103{bottom:258.906667pt;}
.y44_c00103{bottom:259.840000pt;}
.y1c_c00103{bottom:274.773333pt;}
.y43_c00103{bottom:275.973333pt;}
.y1b_c00103{bottom:290.906667pt;}
.y42_c00103{bottom:291.840000pt;}
.y1a_c00103{bottom:307.173333pt;}
.y41_c00103{bottom:308.106667pt;}
.y19_c00103{bottom:323.306667pt;}
.y40_c00103{bottom:324.506667pt;}
.y18_c00103{bottom:339.040000pt;}
.y3f_c00103{bottom:340.506667pt;}
.y17_c00103{bottom:355.440000pt;}
.y3e_c00103{bottom:356.373333pt;}
.y16_c00103{bottom:371.440000pt;}
.y3d_c00103{bottom:372.906667pt;}
.y15_c00103{bottom:387.573333pt;}
.y3c_c00103{bottom:388.240000pt;}
.y14_c00103{bottom:403.840000pt;}
.y3b_c00103{bottom:404.640000pt;}
.y13_c00103{bottom:419.706667pt;}
.y3a_c00103{bottom:420.640000pt;}
.y12_c00103{bottom:435.840000pt;}
.y39_c00103{bottom:437.440000pt;}
.y11_c00103{bottom:451.706667pt;}
.y38_c00103{bottom:453.040000pt;}
.y10_c00103{bottom:467.706667pt;}
.y37_c00103{bottom:469.440000pt;}
.yf_c00103{bottom:483.840000pt;}
.y36_c00103{bottom:484.506667pt;}
.ye_c00103{bottom:499.840000pt;}
.y35_c00103{bottom:501.573333pt;}
.yd_c00103{bottom:515.306667pt;}
.y34_c00103{bottom:516.906667pt;}
.yc_c00103{bottom:531.573333pt;}
.y33_c00103{bottom:534.240000pt;}
.yb_c00103{bottom:547.173333pt;}
.y32_c00103{bottom:549.573333pt;}
.ya_c00103{bottom:563.306667pt;}
.y31_c00103{bottom:565.440000pt;}
.y9_c00103{bottom:579.306667pt;}
.y30_c00103{bottom:581.306667pt;}
.y8_c00103{bottom:594.640000pt;}
.y2f_c00103{bottom:597.306667pt;}
.y7_c00103{bottom:610.773333pt;}
.y2e_c00103{bottom:613.440000pt;}
.y6_c00103{bottom:627.306667pt;}
.y2d_c00103{bottom:629.440000pt;}
.y5_c00103{bottom:643.706667pt;}
.y2c_c00103{bottom:645.306667pt;}
.y4_c00103{bottom:659.440000pt;}
.y2b_c00103{bottom:661.173333pt;}
.y3_c00103{bottom:675.840000pt;}
.y2a_c00103{bottom:677.706667pt;}
.y2_c00103{bottom:692.640000pt;}
.y1_c00103{bottom:710.906667pt;}
.h8_c00103{height:11.733399pt;}
.h9_c00103{height:38.937500pt;}
.h4_c00103{height:45.525333pt;}
.h5_c00103{height:55.893333pt;}
.h7_c00103{height:56.426667pt;}
.h6_c00103{height:56.906667pt;}
.h3_c00103{height:59.752000pt;}
.h2_c00103{height:64.277333pt;}
.h0_c00103{height:742.533333pt;}
.h1_c00103{height:742.666667pt;}
.w2_c00103{width:93.222667pt;}
.w0_c00103{width:499.666667pt;}
.w1_c00103{width:500.000000pt;}
.x0_c00103{left:0.000000pt;}
.xb_c00103{left:61.200000pt;}
.x9_c00103{left:62.933333pt;}
.x8_c00103{left:64.533333pt;}
.x7_c00103{left:65.600000pt;}
.x4_c00103{left:66.533333pt;}
.x5_c00103{left:67.466667pt;}
.x2_c00103{left:68.400000pt;}
.x3_c00103{left:69.333333pt;}
.x1_c00103{left:71.733333pt;}
.xa_c00103{left:78.000000pt;}
.x6_c00103{left:116.400000pt;}
.x13_c00103{left:207.001546pt;}
.x11_c00103{left:259.466667pt;}
.x10_c00103{left:260.666667pt;}
.xd_c00103{left:261.600000pt;}
.xe_c00103{left:263.600000pt;}
.xf_c00103{left:264.533333pt;}
.xc_c00103{left:265.466667pt;}
.x12_c00103{left:417.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_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_b483dd033b95fb193ddba89d.woff2')format("woff");}.ff1_c00104{font-family:ff1_c00104;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00104;src:url('chunks/assets/font_6c1c3668e7a92ed619d91d3f.woff2')format("woff");}.ff2_c00104{font-family:ff2_c00104;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00104;src:url('chunks/assets/font_69b42c9920ac04deea3cccb4.woff2')format("woff");}.ff3_c00104{font-family:ff3_c00104;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00104;src:url('chunks/assets/font_f3790c11fa1b72b5ebd5d0f3.woff2')format("woff");}.ff4_c00104{font-family:ff4_c00104;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00104;src:url('chunks/assets/font_b06792ff182f05637f59fbdb.woff2')format("woff");}.ff5_c00104{font-family:ff5_c00104;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00104;src:url('chunks/assets/font_893c2cebb92d3a3f39f80ea5.woff2')format("woff");}.ff6_c00104{font-family:ff6_c00104;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00104;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff7_c00104{font-family:ff7_c00104;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00104{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00104{vertical-align:0.000000px;}
.ls5_c00104{letter-spacing:0.000000px;}
.ls1_c00104{letter-spacing:0.405000px;}
.ls6_c00104{letter-spacing:3.000000px;}
.ls3_c00104{letter-spacing:5.340000px;}
.ls7_c00104{letter-spacing:6.000000px;}
.ls2_c00104{letter-spacing:11.340000px;}
.ls0_c00104{letter-spacing:15.000000px;}
.ls4_c00104{letter-spacing:24.147000px;}
.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;}
}
.ws2_c00104{word-spacing:-35.295000px;}
.ws3_c00104{word-spacing:-18.750000px;}
.ws4_c00104{word-spacing:-18.060000px;}
.ws1_c00104{word-spacing:-15.750000px;}
.ws0_c00104{word-spacing:-14.160000px;}
.ws5_c00104{word-spacing:0.000000px;}
._2f_c00104{margin-left:-13.965000px;}
._24_c00104{margin-left:-10.932000px;}
._2_c00104{margin-left:-7.500000px;}
._c_c00104{margin-left:-6.180000px;}
._d_c00104{margin-left:-4.680000px;}
._b_c00104{margin-left:-3.390000px;}
._12_c00104{margin-left:-2.241000px;}
._6_c00104{margin-left:-1.020000px;}
._1_c00104{width:1.386000px;}
._3_c00104{width:2.700000px;}
._4_c00104{width:3.840000px;}
._8_c00104{width:5.145000px;}
._7_c00104{width:6.900000px;}
._22_c00104{width:8.106000px;}
._5_c00104{width:9.141000px;}
._11_c00104{width:10.557000px;}
._1d_c00104{width:11.904000px;}
._15_c00104{width:13.374000px;}
._1c_c00104{width:14.910000px;}
._9_c00104{width:16.194000px;}
._a_c00104{width:17.328000px;}
._30_c00104{width:18.900000px;}
._26_c00104{width:20.124000px;}
._e_c00104{width:22.398000px;}
._f_c00104{width:24.003000px;}
._2e_c00104{width:27.180000px;}
._19_c00104{width:28.524000px;}
._13_c00104{width:31.614000px;}
._0_c00104{width:33.528000px;}
._27_c00104{width:35.373000px;}
._14_c00104{width:36.426000px;}
._21_c00104{width:38.130000px;}
._1b_c00104{width:44.940000px;}
._28_c00104{width:46.110000px;}
._29_c00104{width:49.518000px;}
._2b_c00104{width:50.826000px;}
._17_c00104{width:52.605000px;}
._16_c00104{width:54.243000px;}
._2a_c00104{width:55.314000px;}
._2c_c00104{width:57.438000px;}
._23_c00104{width:69.510000px;}
._1e_c00104{width:70.983000px;}
._1f_c00104{width:73.680000px;}
._18_c00104{width:75.864000px;}
._20_c00104{width:77.097000px;}
._25_c00104{width:78.282000px;}
._2d_c00104{width:79.359000px;}
._1a_c00104{width:137.817000px;}
._10_c00104{width:485.856000px;}
.fc2_c00104{color:transparent;}
.fc1_c00104{color:rgb(128,128,128);}
.fc0_c00104{color:rgb(0,0,0);}
.fs2_c00104{font-size:45.000000px;}
.fs4_c00104{font-size:48.000000px;}
.fs1_c00104{font-size:60.000000px;}
.fs3_c00104{font-size:63.000000px;}
.fs0_c00104{font-size:66.000000px;}
.y0_c00104{bottom:0.000000px;}
.y3c_c00104{bottom:3.105000px;}
.y3b_c00104{bottom:7.228357px;}
.y37_c00104{bottom:53.730000px;}
.y36_c00104{bottom:72.630000px;}
.y3a_c00104{bottom:87.180000px;}
.y35_c00104{bottom:91.080000px;}
.y34_c00104{bottom:109.080000px;}
.y33_c00104{bottom:127.530000px;}
.y32_c00104{bottom:145.530000px;}
.y31_c00104{bottom:163.980000px;}
.y39_c00104{bottom:181.530000px;}
.y30_c00104{bottom:181.680000px;}
.y2f_c00104{bottom:200.130000px;}
.y38_c00104{bottom:200.580000px;}
.y2e_c00104{bottom:218.430000px;}
.y2d_c00104{bottom:236.580000px;}
.y2c_c00104{bottom:255.180000px;}
.y2b_c00104{bottom:273.030000px;}
.y2a_c00104{bottom:291.630000px;}
.y29_c00104{bottom:309.180000px;}
.y1f_c00104{bottom:309.930000px;}
.y28_c00104{bottom:327.480000px;}
.y1e_c00104{bottom:327.930000px;}
.y27_c00104{bottom:345.630000px;}
.y1d_c00104{bottom:346.230000px;}
.y26_c00104{bottom:363.930000px;}
.y1c_c00104{bottom:364.530000px;}
.y25_c00104{bottom:382.380000px;}
.y1b_c00104{bottom:382.680000px;}
.y24_c00104{bottom:400.680000px;}
.y23_c00104{bottom:418.230000px;}
.y22_c00104{bottom:436.680000px;}
.y1a_c00104{bottom:436.830000px;}
.y21_c00104{bottom:454.680000px;}
.y19_c00104{bottom:454.980000px;}
.y18_c00104{bottom:472.530000px;}
.y20_c00104{bottom:472.830000px;}
.y17_c00104{bottom:490.680000px;}
.y16_c00104{bottom:509.280000px;}
.y15_c00104{bottom:527.580000px;}
.y14_c00104{bottom:545.280000px;}
.y13_c00104{bottom:563.580000px;}
.y12_c00104{bottom:581.880000px;}
.y11_c00104{bottom:600.030000px;}
.y10_c00104{bottom:618.330000px;}
.yf_c00104{bottom:635.730000px;}
.ye_c00104{bottom:654.030000px;}
.y7_c00104{bottom:654.180000px;}
.yd_c00104{bottom:672.330000px;}
.y6_c00104{bottom:672.630000px;}
.yc_c00104{bottom:689.580000px;}
.y5_c00104{bottom:691.530000px;}
.yb_c00104{bottom:708.030000px;}
.y4_c00104{bottom:709.530000px;}
.ya_c00104{bottom:726.030000px;}
.y3_c00104{bottom:727.080000px;}
.y9_c00104{bottom:744.480000px;}
.y8_c00104{bottom:762.180000px;}
.y2_c00104{bottom:780.630000px;}
.y1_c00104{bottom:802.530000px;}
.h6_c00104{height:13.200074px;}
.h7_c00104{height:43.804688px;}
.h4_c00104{height:62.880000px;}
.h3_c00104{height:66.024000px;}
.h5_c00104{height:67.221000px;}
.h2_c00104{height:69.168000px;}
.h1_c00104{height:845.250000px;}
.h0_c00104{height:845.400000px;}
.w2_c00104{width:104.875500px;}
.w0_c00104{width:578.100000px;}
.w1_c00104{width:578.250000px;}
.x0_c00104{left:0.000000px;}
.x2_c00104{left:61.050000px;}
.x8_c00104{left:62.400000px;}
.x9_c00104{left:63.450000px;}
.xa_c00104{left:65.700000px;}
.xb_c00104{left:67.200000px;}
.xc_c00104{left:68.550000px;}
.x10_c00104{left:85.800000px;}
.x11_c00104{left:101.700000px;}
.x12_c00104{left:146.850000px;}
.x13_c00104{left:149.850000px;}
.x1_c00104{left:188.700000px;}
.x14_c00104{left:240.864258px;}
.x3_c00104{left:285.900000px;}
.xd_c00104{left:288.600000px;}
.xe_c00104{left:290.250000px;}
.xf_c00104{left:292.500000px;}
.x4_c00104{left:304.200000px;}
.x5_c00104{left:318.300000px;}
.x6_c00104{left:343.950000px;}
.x7_c00104{left:373.200000px;}
@media print{
.v0_c00104{vertical-align:0.000000pt;}
.ls5_c00104{letter-spacing:0.000000pt;}
.ls1_c00104{letter-spacing:0.360000pt;}
.ls6_c00104{letter-spacing:2.666667pt;}
.ls3_c00104{letter-spacing:4.746667pt;}
.ls7_c00104{letter-spacing:5.333333pt;}
.ls2_c00104{letter-spacing:10.080000pt;}
.ls0_c00104{letter-spacing:13.333333pt;}
.ls4_c00104{letter-spacing:21.464000pt;}
.ws2_c00104{word-spacing:-31.373333pt;}
.ws3_c00104{word-spacing:-16.666667pt;}
.ws4_c00104{word-spacing:-16.053333pt;}
.ws1_c00104{word-spacing:-14.000000pt;}
.ws0_c00104{word-spacing:-12.586667pt;}
.ws5_c00104{word-spacing:0.000000pt;}
._2f_c00104{margin-left:-12.413333pt;}
._24_c00104{margin-left:-9.717333pt;}
._2_c00104{margin-left:-6.666667pt;}
._c_c00104{margin-left:-5.493333pt;}
._d_c00104{margin-left:-4.160000pt;}
._b_c00104{margin-left:-3.013333pt;}
._12_c00104{margin-left:-1.992000pt;}
._6_c00104{margin-left:-0.906667pt;}
._1_c00104{width:1.232000pt;}
._3_c00104{width:2.400000pt;}
._4_c00104{width:3.413333pt;}
._8_c00104{width:4.573333pt;}
._7_c00104{width:6.133333pt;}
._22_c00104{width:7.205333pt;}
._5_c00104{width:8.125333pt;}
._11_c00104{width:9.384000pt;}
._1d_c00104{width:10.581333pt;}
._15_c00104{width:11.888000pt;}
._1c_c00104{width:13.253333pt;}
._9_c00104{width:14.394667pt;}
._a_c00104{width:15.402667pt;}
._30_c00104{width:16.800000pt;}
._26_c00104{width:17.888000pt;}
._e_c00104{width:19.909333pt;}
._f_c00104{width:21.336000pt;}
._2e_c00104{width:24.160000pt;}
._19_c00104{width:25.354667pt;}
._13_c00104{width:28.101333pt;}
._0_c00104{width:29.802667pt;}
._27_c00104{width:31.442667pt;}
._14_c00104{width:32.378667pt;}
._21_c00104{width:33.893333pt;}
._1b_c00104{width:39.946667pt;}
._28_c00104{width:40.986667pt;}
._29_c00104{width:44.016000pt;}
._2b_c00104{width:45.178667pt;}
._17_c00104{width:46.760000pt;}
._16_c00104{width:48.216000pt;}
._2a_c00104{width:49.168000pt;}
._2c_c00104{width:51.056000pt;}
._23_c00104{width:61.786667pt;}
._1e_c00104{width:63.096000pt;}
._1f_c00104{width:65.493333pt;}
._18_c00104{width:67.434667pt;}
._20_c00104{width:68.530667pt;}
._25_c00104{width:69.584000pt;}
._2d_c00104{width:70.541333pt;}
._1a_c00104{width:122.504000pt;}
._10_c00104{width:431.872000pt;}
.fs2_c00104{font-size:40.000000pt;}
.fs4_c00104{font-size:42.666667pt;}
.fs1_c00104{font-size:53.333333pt;}
.fs3_c00104{font-size:56.000000pt;}
.fs0_c00104{font-size:58.666667pt;}
.y0_c00104{bottom:0.000000pt;}
.y3c_c00104{bottom:2.760000pt;}
.y3b_c00104{bottom:6.425206pt;}
.y37_c00104{bottom:47.760000pt;}
.y36_c00104{bottom:64.560000pt;}
.y3a_c00104{bottom:77.493333pt;}
.y35_c00104{bottom:80.960000pt;}
.y34_c00104{bottom:96.960000pt;}
.y33_c00104{bottom:113.360000pt;}
.y32_c00104{bottom:129.360000pt;}
.y31_c00104{bottom:145.760000pt;}
.y39_c00104{bottom:161.360000pt;}
.y30_c00104{bottom:161.493333pt;}
.y2f_c00104{bottom:177.893333pt;}
.y38_c00104{bottom:178.293333pt;}
.y2e_c00104{bottom:194.160000pt;}
.y2d_c00104{bottom:210.293333pt;}
.y2c_c00104{bottom:226.826667pt;}
.y2b_c00104{bottom:242.693333pt;}
.y2a_c00104{bottom:259.226667pt;}
.y29_c00104{bottom:274.826667pt;}
.y1f_c00104{bottom:275.493333pt;}
.y28_c00104{bottom:291.093333pt;}
.y1e_c00104{bottom:291.493333pt;}
.y27_c00104{bottom:307.226667pt;}
.y1d_c00104{bottom:307.760000pt;}
.y26_c00104{bottom:323.493333pt;}
.y1c_c00104{bottom:324.026667pt;}
.y25_c00104{bottom:339.893333pt;}
.y1b_c00104{bottom:340.160000pt;}
.y24_c00104{bottom:356.160000pt;}
.y23_c00104{bottom:371.760000pt;}
.y22_c00104{bottom:388.160000pt;}
.y1a_c00104{bottom:388.293333pt;}
.y21_c00104{bottom:404.160000pt;}
.y19_c00104{bottom:404.426667pt;}
.y18_c00104{bottom:420.026667pt;}
.y20_c00104{bottom:420.293333pt;}
.y17_c00104{bottom:436.160000pt;}
.y16_c00104{bottom:452.693333pt;}
.y15_c00104{bottom:468.960000pt;}
.y14_c00104{bottom:484.693333pt;}
.y13_c00104{bottom:500.960000pt;}
.y12_c00104{bottom:517.226667pt;}
.y11_c00104{bottom:533.360000pt;}
.y10_c00104{bottom:549.626667pt;}
.yf_c00104{bottom:565.093333pt;}
.ye_c00104{bottom:581.360000pt;}
.y7_c00104{bottom:581.493333pt;}
.yd_c00104{bottom:597.626667pt;}
.y6_c00104{bottom:597.893333pt;}
.yc_c00104{bottom:612.960000pt;}
.y5_c00104{bottom:614.693333pt;}
.yb_c00104{bottom:629.360000pt;}
.y4_c00104{bottom:630.693333pt;}
.ya_c00104{bottom:645.360000pt;}
.y3_c00104{bottom:646.293333pt;}
.y9_c00104{bottom:661.760000pt;}
.y8_c00104{bottom:677.493333pt;}
.y2_c00104{bottom:693.893333pt;}
.y1_c00104{bottom:713.360000pt;}
.h6_c00104{height:11.733399pt;}
.h7_c00104{height:38.937500pt;}
.h4_c00104{height:55.893333pt;}
.h3_c00104{height:58.688000pt;}
.h5_c00104{height:59.752000pt;}
.h2_c00104{height:61.482667pt;}
.h1_c00104{height:751.333333pt;}
.h0_c00104{height:751.466667pt;}
.w2_c00104{width:93.222667pt;}
.w0_c00104{width:513.866667pt;}
.w1_c00104{width:514.000000pt;}
.x0_c00104{left:0.000000pt;}
.x2_c00104{left:54.266667pt;}
.x8_c00104{left:55.466667pt;}
.x9_c00104{left:56.400000pt;}
.xa_c00104{left:58.400000pt;}
.xb_c00104{left:59.733333pt;}
.xc_c00104{left:60.933333pt;}
.x10_c00104{left:76.266667pt;}
.x11_c00104{left:90.400000pt;}
.x12_c00104{left:130.533333pt;}
.x13_c00104{left:133.200000pt;}
.x1_c00104{left:167.733333pt;}
.x14_c00104{left:214.101563pt;}
.x3_c00104{left:254.133333pt;}
.xd_c00104{left:256.533333pt;}
.xe_c00104{left:258.000000pt;}
.xf_c00104{left:260.000000pt;}
.x4_c00104{left:270.400000pt;}
.x5_c00104{left:282.933333pt;}
.x6_c00104{left:305.733333pt;}
.x7_c00104{left:331.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_7a4829eeb130a11dc740266e.woff2')format("woff");}.ff1_c00105{font-family:ff1_c00105;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00105;src:url('chunks/assets/font_9e114d699ed7a680f18d2ad8.woff2')format("woff");}.ff2_c00105{font-family:ff2_c00105;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00105;src:url('chunks/assets/font_3f199fa1d7207b3119ab42ad.woff2')format("woff");}.ff3_c00105{font-family:ff3_c00105;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00105;src:url('chunks/assets/font_41841e0e4370ccf269f9bb69.woff2')format("woff");}.ff4_c00105{font-family:ff4_c00105;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00105;src:url('chunks/assets/font_9ac37aab952cd292885e2e33.woff2')format("woff");}.ff5_c00105{font-family:ff5_c00105;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00105;src:url('chunks/assets/font_f4ff416d37fa5129488e1206.woff2')format("woff");}.ff6_c00105{font-family:ff6_c00105;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00105;src:url('chunks/assets/font_c50813367e71a4074fc5e02d.woff2')format("woff");}.ff7_c00105{font-family:ff7_c00105;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00105;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff8_c00105{font-family:ff8_c00105;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00105{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00105{vertical-align:0.000000px;}
.v1_c00105{vertical-align:2.400000px;}
.ls8_c00105{letter-spacing:0.000000px;}
.ls0_c00105{letter-spacing:1.764000px;}
.ls4_c00105{letter-spacing:3.000000px;}
.ls1_c00105{letter-spacing:6.000000px;}
.ls3_c00105{letter-spacing:8.040000px;}
.ls6_c00105{letter-spacing:9.000000px;}
.ls7_c00105{letter-spacing:12.000000px;}
.ls2_c00105{letter-spacing:20.445000px;}
.ls5_c00105{letter-spacing:61.245000px;}
.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;}
}
.ws6_c00105{word-spacing:-27.060000px;}
.ws1_c00105{word-spacing:-24.774000px;}
.ws3_c00105{word-spacing:-18.813000px;}
.ws2_c00105{word-spacing:-14.427000px;}
.ws4_c00105{word-spacing:-14.160000px;}
.ws7_c00105{word-spacing:0.000000px;}
.ws5_c00105{word-spacing:0.306000px;}
.ws0_c00105{word-spacing:321.123000px;}
._1d_c00105{margin-left:-26.964000px;}
._12_c00105{margin-left:-22.422000px;}
._f_c00105{margin-left:-18.207000px;}
._e_c00105{margin-left:-14.238000px;}
._17_c00105{margin-left:-12.948000px;}
._1a_c00105{margin-left:-11.568000px;}
._15_c00105{margin-left:-9.135000px;}
._0_c00105{margin-left:-7.446000px;}
._16_c00105{margin-left:-6.237000px;}
._7_c00105{margin-left:-4.473000px;}
._6_c00105{margin-left:-3.087000px;}
._a_c00105{margin-left:-2.079000px;}
._8_c00105{margin-left:-1.071000px;}
._5_c00105{width:1.512000px;}
._9_c00105{width:2.583000px;}
._10_c00105{width:4.599000px;}
._b_c00105{width:5.985000px;}
._1_c00105{width:7.182000px;}
._2_c00105{width:9.135000px;}
._3_c00105{width:11.088000px;}
._14_c00105{width:12.600000px;}
._21_c00105{width:14.178000px;}
._19_c00105{width:16.443000px;}
._23_c00105{width:19.614000px;}
._4_c00105{width:20.790000px;}
._1c_c00105{width:22.995000px;}
._d_c00105{width:24.192000px;}
._c_c00105{width:25.704000px;}
._20_c00105{width:27.480000px;}
._18_c00105{width:28.854000px;}
._1b_c00105{width:30.051000px;}
._1f_c00105{width:32.193000px;}
._13_c00105{width:33.957000px;}
._1e_c00105{width:39.888000px;}
._11_c00105{width:41.505000px;}
._24_c00105{width:45.048000px;}
._22_c00105{width:51.408000px;}
._25_c00105{width:96.642000px;}
.fc2_c00105{color:transparent;}
.fc1_c00105{color:rgb(128,128,128);}
.fc0_c00105{color:rgb(0,0,0);}
.fs4_c00105{font-size:45.000000px;}
.fs5_c00105{font-size:48.000000px;}
.fs0_c00105{font-size:51.000000px;}
.fs3_c00105{font-size:60.000000px;}
.fs1_c00105{font-size:63.000000px;}
.fs2_c00105{font-size:66.000000px;}
.y0_c00105{bottom:0.000000px;}
.y51_c00105{bottom:3.105000px;}
.y50_c00105{bottom:7.228369px;}
.y4f_c00105{bottom:38.820000px;}
.y2a_c00105{bottom:52.020000px;}
.y4e_c00105{bottom:55.020000px;}
.y29_c00105{bottom:71.820000px;}
.y4d_c00105{bottom:72.870000px;}
.y28_c00105{bottom:89.670000px;}
.y4c_c00105{bottom:91.470000px;}
.y27_c00105{bottom:108.270000px;}
.y4b_c00105{bottom:109.320000px;}
.y26_c00105{bottom:126.120000px;}
.y4a_c00105{bottom:127.470000px;}
.y25_c00105{bottom:144.120000px;}
.y49_c00105{bottom:146.070000px;}
.y24_c00105{bottom:162.270000px;}
.y48_c00105{bottom:164.070000px;}
.y23_c00105{bottom:181.470000px;}
.y47_c00105{bottom:182.520000px;}
.y22_c00105{bottom:198.420000px;}
.y46_c00105{bottom:200.370000px;}
.y21_c00105{bottom:217.020000px;}
.y45_c00105{bottom:218.070000px;}
.y20_c00105{bottom:235.920000px;}
.y44_c00105{bottom:236.520000px;}
.y1f_c00105{bottom:253.170000px;}
.y43_c00105{bottom:254.520000px;}
.y1e_c00105{bottom:271.920000px;}
.y42_c00105{bottom:272.070000px;}
.y41_c00105{bottom:289.620000px;}
.y1d_c00105{bottom:290.220000px;}
.y1c_c00105{bottom:307.470000px;}
.y40_c00105{bottom:308.070000px;}
.y1b_c00105{bottom:326.070000px;}
.y1a_c00105{bottom:343.620000px;}
.y3f_c00105{bottom:344.220000px;}
.y19_c00105{bottom:362.520000px;}
.y3e_c00105{bottom:362.820000px;}
.y18_c00105{bottom:380.370000px;}
.y17_c00105{bottom:398.520000px;}
.y3d_c00105{bottom:398.970000px;}
.y16_c00105{bottom:416.370000px;}
.y3c_c00105{bottom:416.820000px;}
.y15_c00105{bottom:434.970000px;}
.y3b_c00105{bottom:435.420000px;}
.y14_c00105{bottom:451.620000px;}
.y3a_c00105{bottom:453.570000px;}
.y13_c00105{bottom:470.070000px;}
.y39_c00105{bottom:471.420000px;}
.y38_c00105{bottom:489.420000px;}
.y12_c00105{bottom:490.020000px;}
.y11_c00105{bottom:506.820000px;}
.y37_c00105{bottom:508.320000px;}
.y10_c00105{bottom:525.120000px;}
.y36_c00105{bottom:525.720000px;}
.yf_c00105{bottom:543.420000px;}
.y35_c00105{bottom:544.620000px;}
.ye_c00105{bottom:561.270000px;}
.y34_c00105{bottom:562.170000px;}
.yd_c00105{bottom:578.820000px;}
.y33_c00105{bottom:579.870000px;}
.yc_c00105{bottom:597.420000px;}
.y32_c00105{bottom:598.020000px;}
.yb_c00105{bottom:615.870000px;}
.ya_c00105{bottom:633.720000px;}
.y31_c00105{bottom:634.320000px;}
.y9_c00105{bottom:652.020000px;}
.y30_c00105{bottom:652.320000px;}
.y8_c00105{bottom:670.170000px;}
.y2f_c00105{bottom:670.320000px;}
.y7_c00105{bottom:688.170000px;}
.y2e_c00105{bottom:688.470000px;}
.y6_c00105{bottom:706.620000px;}
.y2d_c00105{bottom:706.770000px;}
.y5_c00105{bottom:724.320000px;}
.y2c_c00105{bottom:743.220000px;}
.y4_c00105{bottom:743.520000px;}
.y3_c00105{bottom:761.370000px;}
.y2_c00105{bottom:779.670000px;}
.y2b_c00105{bottom:779.970000px;}
.y1_c00105{bottom:799.170000px;}
.h8_c00105{height:13.200073px;}
.h9_c00105{height:43.804688px;}
.h6_c00105{height:53.448000px;}
.h5_c00105{height:62.880000px;}
.h3_c00105{height:66.024000px;}
.h7_c00105{height:67.221000px;}
.h2_c00105{height:68.424000px;}
.h4_c00105{height:69.168000px;}
.h1_c00105{height:844.500000px;}
.h0_c00105{height:844.800000px;}
.w2_c00105{width:104.875500px;}
.w0_c00105{width:578.625000px;}
.w1_c00105{width:579.000000px;}
.x0_c00105{left:0.000000px;}
.x8_c00105{left:18.150000px;}
.xb_c00105{left:54.000000px;}
.x9_c00105{left:75.900000px;}
.xa_c00105{left:78.300000px;}
.x7_c00105{left:79.650000px;}
.x6_c00105{left:80.700000px;}
.x5_c00105{left:82.050000px;}
.x4_c00105{left:83.250000px;}
.x3_c00105{left:84.300000px;}
.x2_c00105{left:87.300000px;}
.x1_c00105{left:90.000000px;}
.x18_c00105{left:241.126740px;}
.x10_c00105{left:298.350000px;}
.x16_c00105{left:300.300000px;}
.x15_c00105{left:301.350000px;}
.x14_c00105{left:302.400000px;}
.x13_c00105{left:304.350000px;}
.x12_c00105{left:305.400000px;}
.x11_c00105{left:307.500000px;}
.xd_c00105{left:308.700000px;}
.xe_c00105{left:309.750000px;}
.xc_c00105{left:310.800000px;}
.xf_c00105{left:325.650000px;}
.x17_c00105{left:457.950000px;}
@media print{
.v0_c00105{vertical-align:0.000000pt;}
.v1_c00105{vertical-align:2.133333pt;}
.ls8_c00105{letter-spacing:0.000000pt;}
.ls0_c00105{letter-spacing:1.568000pt;}
.ls4_c00105{letter-spacing:2.666667pt;}
.ls1_c00105{letter-spacing:5.333333pt;}
.ls3_c00105{letter-spacing:7.146667pt;}
.ls6_c00105{letter-spacing:8.000000pt;}
.ls7_c00105{letter-spacing:10.666667pt;}
.ls2_c00105{letter-spacing:18.173333pt;}
.ls5_c00105{letter-spacing:54.440000pt;}
.ws6_c00105{word-spacing:-24.053333pt;}
.ws1_c00105{word-spacing:-22.021333pt;}
.ws3_c00105{word-spacing:-16.722667pt;}
.ws2_c00105{word-spacing:-12.824000pt;}
.ws4_c00105{word-spacing:-12.586667pt;}
.ws7_c00105{word-spacing:0.000000pt;}
.ws5_c00105{word-spacing:0.272000pt;}
.ws0_c00105{word-spacing:285.442667pt;}
._1d_c00105{margin-left:-23.968000pt;}
._12_c00105{margin-left:-19.930667pt;}
._f_c00105{margin-left:-16.184000pt;}
._e_c00105{margin-left:-12.656000pt;}
._17_c00105{margin-left:-11.509333pt;}
._1a_c00105{margin-left:-10.282667pt;}
._15_c00105{margin-left:-8.120000pt;}
._0_c00105{margin-left:-6.618667pt;}
._16_c00105{margin-left:-5.544000pt;}
._7_c00105{margin-left:-3.976000pt;}
._6_c00105{margin-left:-2.744000pt;}
._a_c00105{margin-left:-1.848000pt;}
._8_c00105{margin-left:-0.952000pt;}
._5_c00105{width:1.344000pt;}
._9_c00105{width:2.296000pt;}
._10_c00105{width:4.088000pt;}
._b_c00105{width:5.320000pt;}
._1_c00105{width:6.384000pt;}
._2_c00105{width:8.120000pt;}
._3_c00105{width:9.856000pt;}
._14_c00105{width:11.200000pt;}
._21_c00105{width:12.602667pt;}
._19_c00105{width:14.616000pt;}
._23_c00105{width:17.434667pt;}
._4_c00105{width:18.480000pt;}
._1c_c00105{width:20.440000pt;}
._d_c00105{width:21.504000pt;}
._c_c00105{width:22.848000pt;}
._20_c00105{width:24.426667pt;}
._18_c00105{width:25.648000pt;}
._1b_c00105{width:26.712000pt;}
._1f_c00105{width:28.616000pt;}
._13_c00105{width:30.184000pt;}
._1e_c00105{width:35.456000pt;}
._11_c00105{width:36.893333pt;}
._24_c00105{width:40.042667pt;}
._22_c00105{width:45.696000pt;}
._25_c00105{width:85.904000pt;}
.fs4_c00105{font-size:40.000000pt;}
.fs5_c00105{font-size:42.666667pt;}
.fs0_c00105{font-size:45.333333pt;}
.fs3_c00105{font-size:53.333333pt;}
.fs1_c00105{font-size:56.000000pt;}
.fs2_c00105{font-size:58.666667pt;}
.y0_c00105{bottom:0.000000pt;}
.y51_c00105{bottom:2.760000pt;}
.y50_c00105{bottom:6.425217pt;}
.y4f_c00105{bottom:34.506667pt;}
.y2a_c00105{bottom:46.240000pt;}
.y4e_c00105{bottom:48.906667pt;}
.y29_c00105{bottom:63.840000pt;}
.y4d_c00105{bottom:64.773333pt;}
.y28_c00105{bottom:79.706667pt;}
.y4c_c00105{bottom:81.306667pt;}
.y27_c00105{bottom:96.240000pt;}
.y4b_c00105{bottom:97.173333pt;}
.y26_c00105{bottom:112.106667pt;}
.y4a_c00105{bottom:113.306667pt;}
.y25_c00105{bottom:128.106667pt;}
.y49_c00105{bottom:129.840000pt;}
.y24_c00105{bottom:144.240000pt;}
.y48_c00105{bottom:145.840000pt;}
.y23_c00105{bottom:161.306667pt;}
.y47_c00105{bottom:162.240000pt;}
.y22_c00105{bottom:176.373333pt;}
.y46_c00105{bottom:178.106667pt;}
.y21_c00105{bottom:192.906667pt;}
.y45_c00105{bottom:193.840000pt;}
.y20_c00105{bottom:209.706667pt;}
.y44_c00105{bottom:210.240000pt;}
.y1f_c00105{bottom:225.040000pt;}
.y43_c00105{bottom:226.240000pt;}
.y1e_c00105{bottom:241.706667pt;}
.y42_c00105{bottom:241.840000pt;}
.y41_c00105{bottom:257.440000pt;}
.y1d_c00105{bottom:257.973333pt;}
.y1c_c00105{bottom:273.306667pt;}
.y40_c00105{bottom:273.840000pt;}
.y1b_c00105{bottom:289.840000pt;}
.y1a_c00105{bottom:305.440000pt;}
.y3f_c00105{bottom:305.973333pt;}
.y19_c00105{bottom:322.240000pt;}
.y3e_c00105{bottom:322.506667pt;}
.y18_c00105{bottom:338.106667pt;}
.y17_c00105{bottom:354.240000pt;}
.y3d_c00105{bottom:354.640000pt;}
.y16_c00105{bottom:370.106667pt;}
.y3c_c00105{bottom:370.506667pt;}
.y15_c00105{bottom:386.640000pt;}
.y3b_c00105{bottom:387.040000pt;}
.y14_c00105{bottom:401.440000pt;}
.y3a_c00105{bottom:403.173333pt;}
.y13_c00105{bottom:417.840000pt;}
.y39_c00105{bottom:419.040000pt;}
.y38_c00105{bottom:435.040000pt;}
.y12_c00105{bottom:435.573333pt;}
.y11_c00105{bottom:450.506667pt;}
.y37_c00105{bottom:451.840000pt;}
.y10_c00105{bottom:466.773333pt;}
.y36_c00105{bottom:467.306667pt;}
.yf_c00105{bottom:483.040000pt;}
.y35_c00105{bottom:484.106667pt;}
.ye_c00105{bottom:498.906667pt;}
.y34_c00105{bottom:499.706667pt;}
.yd_c00105{bottom:514.506667pt;}
.y33_c00105{bottom:515.440000pt;}
.yc_c00105{bottom:531.040000pt;}
.y32_c00105{bottom:531.573333pt;}
.yb_c00105{bottom:547.440000pt;}
.ya_c00105{bottom:563.306667pt;}
.y31_c00105{bottom:563.840000pt;}
.y9_c00105{bottom:579.573333pt;}
.y30_c00105{bottom:579.840000pt;}
.y8_c00105{bottom:595.706667pt;}
.y2f_c00105{bottom:595.840000pt;}
.y7_c00105{bottom:611.706667pt;}
.y2e_c00105{bottom:611.973333pt;}
.y6_c00105{bottom:628.106667pt;}
.y2d_c00105{bottom:628.240000pt;}
.y5_c00105{bottom:643.840000pt;}
.y2c_c00105{bottom:660.640000pt;}
.y4_c00105{bottom:660.906667pt;}
.y3_c00105{bottom:676.773333pt;}
.y2_c00105{bottom:693.040000pt;}
.y2b_c00105{bottom:693.306667pt;}
.y1_c00105{bottom:710.373333pt;}
.h8_c00105{height:11.733399pt;}
.h9_c00105{height:38.937500pt;}
.h6_c00105{height:47.509333pt;}
.h5_c00105{height:55.893333pt;}
.h3_c00105{height:58.688000pt;}
.h7_c00105{height:59.752000pt;}
.h2_c00105{height:60.821333pt;}
.h4_c00105{height:61.482667pt;}
.h1_c00105{height:750.666667pt;}
.h0_c00105{height:750.933333pt;}
.w2_c00105{width:93.222667pt;}
.w0_c00105{width:514.333333pt;}
.w1_c00105{width:514.666667pt;}
.x0_c00105{left:0.000000pt;}
.x8_c00105{left:16.133333pt;}
.xb_c00105{left:48.000000pt;}
.x9_c00105{left:67.466667pt;}
.xa_c00105{left:69.600000pt;}
.x7_c00105{left:70.800000pt;}
.x6_c00105{left:71.733333pt;}
.x5_c00105{left:72.933333pt;}
.x4_c00105{left:74.000000pt;}
.x3_c00105{left:74.933333pt;}
.x2_c00105{left:77.600000pt;}
.x1_c00105{left:80.000000pt;}
.x18_c00105{left:214.334880pt;}
.x10_c00105{left:265.200000pt;}
.x16_c00105{left:266.933333pt;}
.x15_c00105{left:267.866667pt;}
.x14_c00105{left:268.800000pt;}
.x13_c00105{left:270.533333pt;}
.x12_c00105{left:271.466667pt;}
.x11_c00105{left:273.333333pt;}
.xd_c00105{left:274.400000pt;}
.xe_c00105{left:275.333333pt;}
.xc_c00105{left:276.266667pt;}
.xf_c00105{left:289.466667pt;}
.x17_c00105{left:407.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_1c7a9366240aa5532a18c028.woff2')format("woff");}.ff1_c00106{font-family:ff1_c00106;line-height:1.437000;font-style:normal;font-weight:normal;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_cc84decb3942902f84a94bb4.woff2')format("woff");}.ff2_c00106{font-family:ff2_c00106;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00106;src:url('chunks/assets/font_5b091aa0dc59f1496e8dc456.woff2')format("woff");}.ff3_c00106{font-family:ff3_c00106;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00106;src:url('chunks/assets/font_5cfc1527f3fdb8d2bbc61bca.woff2')format("woff");}.ff4_c00106{font-family:ff4_c00106;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00106;src:url('chunks/assets/font_cc69a2cc6b77aca6ce4ac593.woff2')format("woff");}.ff5_c00106{font-family:ff5_c00106;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00106;src:url('chunks/assets/font_10eaf945e3f1ba7eed7e1a40.woff2')format("woff");}.ff6_c00106{font-family:ff6_c00106;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00106;src:url('chunks/assets/font_414e8da9ced061383134390f.woff2')format("woff");}.ff7_c00106{font-family:ff7_c00106;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00106;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff8_c00106{font-family:ff8_c00106;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00106{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00106{vertical-align:0.000000px;}
.v1_c00106{vertical-align:9.600000px;}
.ls5_c00106{letter-spacing:0.000000px;}
.ls0_c00106{letter-spacing:3.000000px;}
.ls7_c00106{letter-spacing:6.000000px;}
.ls6_c00106{letter-spacing:9.000000px;}
.ls4_c00106{letter-spacing:12.000000px;}
.ls3_c00106{letter-spacing:42.000000px;}
.ls1_c00106{letter-spacing:108.045000px;}
.ls2_c00106{letter-spacing:139.845000px;}
.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;}
}
.ws3_c00106{word-spacing:-26.208000px;}
.ws0_c00106{word-spacing:-24.774000px;}
.ws2_c00106{word-spacing:-18.813000px;}
.ws1_c00106{word-spacing:-14.427000px;}
.ws4_c00106{word-spacing:0.000000px;}
._13_c00106{margin-left:-18.831000px;}
._2e_c00106{margin-left:-14.244000px;}
._c_c00106{margin-left:-12.477000px;}
._27_c00106{margin-left:-10.836000px;}
._28_c00106{margin-left:-9.828000px;}
._29_c00106{margin-left:-8.379000px;}
._3_c00106{margin-left:-7.209000px;}
._17_c00106{margin-left:-5.922000px;}
._a_c00106{margin-left:-4.473000px;}
._9_c00106{margin-left:-2.961000px;}
._1_c00106{margin-left:-1.794000px;}
._12_c00106{width:1.008000px;}
._6_c00106{width:2.205000px;}
._4_c00106{width:3.483000px;}
._d_c00106{width:5.445000px;}
._f_c00106{width:7.053000px;}
._8_c00106{width:9.009000px;}
._1e_c00106{width:10.224000px;}
._7_c00106{width:11.874000px;}
._2b_c00106{width:13.035000px;}
._1b_c00106{width:14.301000px;}
._20_c00106{width:15.750000px;}
._1c_c00106{width:17.640000px;}
._3a_c00106{width:20.058000px;}
._24_c00106{width:21.294000px;}
._10_c00106{width:22.617000px;}
._22_c00106{width:23.706000px;}
._23_c00106{width:24.906000px;}
._1f_c00106{width:26.142000px;}
._14_c00106{width:29.142000px;}
._31_c00106{width:31.179000px;}
._11_c00106{width:33.189000px;}
._18_c00106{width:37.170000px;}
._0_c00106{width:39.675000px;}
._19_c00106{width:47.880000px;}
._30_c00106{width:68.004000px;}
._34_c00106{width:91.269000px;}
._32_c00106{width:92.820000px;}
._5_c00106{width:94.140000px;}
._3b_c00106{width:96.390000px;}
._2d_c00106{width:97.911000px;}
._2f_c00106{width:99.162000px;}
._1d_c00106{width:100.896000px;}
._1a_c00106{width:102.321000px;}
._33_c00106{width:104.229000px;}
._21_c00106{width:106.113000px;}
._e_c00106{width:111.453000px;}
._25_c00106{width:121.344000px;}
._2a_c00106{width:124.593000px;}
._b_c00106{width:130.977000px;}
._15_c00106{width:168.147000px;}
._38_c00106{width:214.533000px;}
._26_c00106{width:266.748000px;}
._37_c00106{width:273.054000px;}
._2c_c00106{width:279.783000px;}
._16_c00106{width:328.239000px;}
._39_c00106{width:354.282000px;}
._36_c00106{width:405.831000px;}
._2_c00106{width:502.674000px;}
._35_c00106{width:515.718000px;}
.fc2_c00106{color:transparent;}
.fc1_c00106{color:rgb(128,128,128);}
.fc0_c00106{color:rgb(0,0,0);}
.fs5_c00106{font-size:45.000000px;}
.fs6_c00106{font-size:48.000000px;}
.fs4_c00106{font-size:60.000000px;}
.fs2_c00106{font-size:63.000000px;}
.fs3_c00106{font-size:66.000000px;}
.fs0_c00106{font-size:69.000000px;}
.fs1_c00106{font-size:81.000000px;}
.y0_c00106{bottom:0.000000px;}
.y2d_c00106{bottom:3.105000px;}
.y2c_c00106{bottom:7.228357px;}
.y2b_c00106{bottom:33.030000px;}
.y2a_c00106{bottom:52.080000px;}
.y29_c00106{bottom:71.580000px;}
.y28_c00106{bottom:89.730000px;}
.y27_c00106{bottom:105.030000px;}
.y26_c00106{bottom:124.980000px;}
.y25_c00106{bottom:143.430000px;}
.y24_c00106{bottom:161.730000px;}
.y23_c00106{bottom:179.580000px;}
.y22_c00106{bottom:197.730000px;}
.y21_c00106{bottom:216.030000px;}
.y20_c00106{bottom:233.280000px;}
.y1f_c00106{bottom:251.430000px;}
.y1e_c00106{bottom:270.780000px;}
.y1d_c00106{bottom:288.630000px;}
.y1c_c00106{bottom:307.080000px;}
.y1b_c00106{bottom:324.780000px;}
.y1a_c00106{bottom:342.930000px;}
.y19_c00106{bottom:361.230000px;}
.y18_c00106{bottom:379.680000px;}
.y17_c00106{bottom:397.680000px;}
.y16_c00106{bottom:415.830000px;}
.y15_c00106{bottom:434.130000px;}
.y14_c00106{bottom:452.280000px;}
.y13_c00106{bottom:470.130000px;}
.y12_c00106{bottom:488.430000px;}
.y11_c00106{bottom:506.580000px;}
.y10_c00106{bottom:524.430000px;}
.yf_c00106{bottom:542.130000px;}
.ye_c00106{bottom:559.680000px;}
.yd_c00106{bottom:578.130000px;}
.yc_c00106{bottom:596.130000px;}
.yb_c00106{bottom:614.580000px;}
.ya_c00106{bottom:632.130000px;}
.y9_c00106{bottom:650.430000px;}
.y8_c00106{bottom:668.580000px;}
.y7_c00106{bottom:686.430000px;}
.y6_c00106{bottom:704.730000px;}
.y5_c00106{bottom:722.580000px;}
.y4_c00106{bottom:740.130000px;}
.y3_c00106{bottom:758.430000px;}
.y2_c00106{bottom:776.580000px;}
.y1_c00106{bottom:796.830000px;}
.h8_c00106{height:13.200074px;}
.h9_c00106{height:43.804688px;}
.h7_c00106{height:51.216000px;}
.h5_c00106{height:62.880000px;}
.h3_c00106{height:66.024000px;}
.h4_c00106{height:69.168000px;}
.h6_c00106{height:75.624000px;}
.h2_c00106{height:87.804000px;}
.h1_c00106{height:845.250000px;}
.h0_c00106{height:845.400000px;}
.w2_c00106{width:104.875500px;}
.w0_c00106{width:578.100000px;}
.w1_c00106{width:578.250000px;}
.x0_c00106{left:0.000000px;}
.x2_c00106{left:61.500000px;}
.x3_c00106{left:62.550000px;}
.x4_c00106{left:63.750000px;}
.xd_c00106{left:64.800000px;}
.x5_c00106{left:65.850000px;}
.x6_c00106{left:66.900000px;}
.x9_c00106{left:77.700000px;}
.xc_c00106{left:80.700000px;}
.xe_c00106{left:88.200000px;}
.xa_c00106{left:97.200000px;}
.xb_c00106{left:124.950000px;}
.x8_c00106{left:161.100000px;}
.x1_c00106{left:201.150000px;}
.x10_c00106{left:240.864258px;}
.x7_c00106{left:288.000000px;}
.xf_c00106{left:470.250000px;}
@media print{
.v0_c00106{vertical-align:0.000000pt;}
.v1_c00106{vertical-align:8.533333pt;}
.ls5_c00106{letter-spacing:0.000000pt;}
.ls0_c00106{letter-spacing:2.666667pt;}
.ls7_c00106{letter-spacing:5.333333pt;}
.ls6_c00106{letter-spacing:8.000000pt;}
.ls4_c00106{letter-spacing:10.666667pt;}
.ls3_c00106{letter-spacing:37.333333pt;}
.ls1_c00106{letter-spacing:96.040000pt;}
.ls2_c00106{letter-spacing:124.306667pt;}
.ws3_c00106{word-spacing:-23.296000pt;}
.ws0_c00106{word-spacing:-22.021333pt;}
.ws2_c00106{word-spacing:-16.722667pt;}
.ws1_c00106{word-spacing:-12.824000pt;}
.ws4_c00106{word-spacing:0.000000pt;}
._13_c00106{margin-left:-16.738667pt;}
._2e_c00106{margin-left:-12.661333pt;}
._c_c00106{margin-left:-11.090667pt;}
._27_c00106{margin-left:-9.632000pt;}
._28_c00106{margin-left:-8.736000pt;}
._29_c00106{margin-left:-7.448000pt;}
._3_c00106{margin-left:-6.408000pt;}
._17_c00106{margin-left:-5.264000pt;}
._a_c00106{margin-left:-3.976000pt;}
._9_c00106{margin-left:-2.632000pt;}
._1_c00106{margin-left:-1.594667pt;}
._12_c00106{width:0.896000pt;}
._6_c00106{width:1.960000pt;}
._4_c00106{width:3.096000pt;}
._d_c00106{width:4.840000pt;}
._f_c00106{width:6.269333pt;}
._8_c00106{width:8.008000pt;}
._1e_c00106{width:9.088000pt;}
._7_c00106{width:10.554667pt;}
._2b_c00106{width:11.586667pt;}
._1b_c00106{width:12.712000pt;}
._20_c00106{width:14.000000pt;}
._1c_c00106{width:15.680000pt;}
._3a_c00106{width:17.829333pt;}
._24_c00106{width:18.928000pt;}
._10_c00106{width:20.104000pt;}
._22_c00106{width:21.072000pt;}
._23_c00106{width:22.138667pt;}
._1f_c00106{width:23.237333pt;}
._14_c00106{width:25.904000pt;}
._31_c00106{width:27.714667pt;}
._11_c00106{width:29.501333pt;}
._18_c00106{width:33.040000pt;}
._0_c00106{width:35.266667pt;}
._19_c00106{width:42.560000pt;}
._30_c00106{width:60.448000pt;}
._34_c00106{width:81.128000pt;}
._32_c00106{width:82.506667pt;}
._5_c00106{width:83.680000pt;}
._3b_c00106{width:85.680000pt;}
._2d_c00106{width:87.032000pt;}
._2f_c00106{width:88.144000pt;}
._1d_c00106{width:89.685333pt;}
._1a_c00106{width:90.952000pt;}
._33_c00106{width:92.648000pt;}
._21_c00106{width:94.322667pt;}
._e_c00106{width:99.069333pt;}
._25_c00106{width:107.861333pt;}
._2a_c00106{width:110.749333pt;}
._b_c00106{width:116.424000pt;}
._15_c00106{width:149.464000pt;}
._38_c00106{width:190.696000pt;}
._26_c00106{width:237.109333pt;}
._37_c00106{width:242.714667pt;}
._2c_c00106{width:248.696000pt;}
._16_c00106{width:291.768000pt;}
._39_c00106{width:314.917333pt;}
._36_c00106{width:360.738667pt;}
._2_c00106{width:446.821333pt;}
._35_c00106{width:458.416000pt;}
.fs5_c00106{font-size:40.000000pt;}
.fs6_c00106{font-size:42.666667pt;}
.fs4_c00106{font-size:53.333333pt;}
.fs2_c00106{font-size:56.000000pt;}
.fs3_c00106{font-size:58.666667pt;}
.fs0_c00106{font-size:61.333333pt;}
.fs1_c00106{font-size:72.000000pt;}
.y0_c00106{bottom:0.000000pt;}
.y2d_c00106{bottom:2.760000pt;}
.y2c_c00106{bottom:6.425206pt;}
.y2b_c00106{bottom:29.360000pt;}
.y2a_c00106{bottom:46.293333pt;}
.y29_c00106{bottom:63.626667pt;}
.y28_c00106{bottom:79.760000pt;}
.y27_c00106{bottom:93.360000pt;}
.y26_c00106{bottom:111.093333pt;}
.y25_c00106{bottom:127.493333pt;}
.y24_c00106{bottom:143.760000pt;}
.y23_c00106{bottom:159.626667pt;}
.y22_c00106{bottom:175.760000pt;}
.y21_c00106{bottom:192.026667pt;}
.y20_c00106{bottom:207.360000pt;}
.y1f_c00106{bottom:223.493333pt;}
.y1e_c00106{bottom:240.693333pt;}
.y1d_c00106{bottom:256.560000pt;}
.y1c_c00106{bottom:272.960000pt;}
.y1b_c00106{bottom:288.693333pt;}
.y1a_c00106{bottom:304.826667pt;}
.y19_c00106{bottom:321.093333pt;}
.y18_c00106{bottom:337.493333pt;}
.y17_c00106{bottom:353.493333pt;}
.y16_c00106{bottom:369.626667pt;}
.y15_c00106{bottom:385.893333pt;}
.y14_c00106{bottom:402.026667pt;}
.y13_c00106{bottom:417.893333pt;}
.y12_c00106{bottom:434.160000pt;}
.y11_c00106{bottom:450.293333pt;}
.y10_c00106{bottom:466.160000pt;}
.yf_c00106{bottom:481.893333pt;}
.ye_c00106{bottom:497.493333pt;}
.yd_c00106{bottom:513.893333pt;}
.yc_c00106{bottom:529.893333pt;}
.yb_c00106{bottom:546.293333pt;}
.ya_c00106{bottom:561.893333pt;}
.y9_c00106{bottom:578.160000pt;}
.y8_c00106{bottom:594.293333pt;}
.y7_c00106{bottom:610.160000pt;}
.y6_c00106{bottom:626.426667pt;}
.y5_c00106{bottom:642.293333pt;}
.y4_c00106{bottom:657.893333pt;}
.y3_c00106{bottom:674.160000pt;}
.y2_c00106{bottom:690.293333pt;}
.y1_c00106{bottom:708.293333pt;}
.h8_c00106{height:11.733399pt;}
.h9_c00106{height:38.937500pt;}
.h7_c00106{height:45.525333pt;}
.h5_c00106{height:55.893333pt;}
.h3_c00106{height:58.688000pt;}
.h4_c00106{height:61.482667pt;}
.h6_c00106{height:67.221333pt;}
.h2_c00106{height:78.048000pt;}
.h1_c00106{height:751.333333pt;}
.h0_c00106{height:751.466667pt;}
.w2_c00106{width:93.222667pt;}
.w0_c00106{width:513.866667pt;}
.w1_c00106{width:514.000000pt;}
.x0_c00106{left:0.000000pt;}
.x2_c00106{left:54.666667pt;}
.x3_c00106{left:55.600000pt;}
.x4_c00106{left:56.666667pt;}
.xd_c00106{left:57.600000pt;}
.x5_c00106{left:58.533333pt;}
.x6_c00106{left:59.466667pt;}
.x9_c00106{left:69.066667pt;}
.xc_c00106{left:71.733333pt;}
.xe_c00106{left:78.400000pt;}
.xa_c00106{left:86.400000pt;}
.xb_c00106{left:111.066667pt;}
.x8_c00106{left:143.200000pt;}
.x1_c00106{left:178.800000pt;}
.x10_c00106{left:214.101563pt;}
.x7_c00106{left:256.000000pt;}
.xf_c00106{left:418.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_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_217dfa696502314c8614d007.woff2')format("woff");}.ff1_c00107{font-family:ff1_c00107;line-height:1.437000;font-style:normal;font-weight:normal;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_2514459de4d95b375f77f9b3.woff2')format("woff");}.ff2_c00107{font-family:ff2_c00107;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00107;src:url('chunks/assets/font_3cc9d7b7d6eda5fe4a5b6da8.woff2')format("woff");}.ff3_c00107{font-family:ff3_c00107;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00107;src:url('chunks/assets/font_34ff3bbe585c6be359fcac31.woff2')format("woff");}.ff4_c00107{font-family:ff4_c00107;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00107;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff5_c00107{font-family:ff5_c00107;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00107{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00107{vertical-align:0.000000px;}
.ls6_c00107{letter-spacing:0.000000px;}
.ls0_c00107{letter-spacing:3.000000px;}
.ls3_c00107{letter-spacing:9.000000px;}
.ls5_c00107{letter-spacing:12.000000px;}
.ls2_c00107{letter-spacing:16.638000px;}
.ls4_c00107{letter-spacing:24.987000px;}
.ls1_c00107{letter-spacing:63.387000px;}
.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;}
}
.ws2_c00107{word-spacing:-49.920000px;}
.ws0_c00107{word-spacing:-27.813000px;}
.ws3_c00107{word-spacing:-18.813000px;}
.ws1_c00107{word-spacing:-14.427000px;}
.ws4_c00107{word-spacing:0.000000px;}
._24_c00107{margin-left:-20.160000px;}
._f_c00107{margin-left:-18.144000px;}
._2e_c00107{margin-left:-16.695000px;}
._0_c00107{margin-left:-14.049000px;}
._2_c00107{margin-left:-13.041000px;}
._1_c00107{margin-left:-11.718000px;}
._19_c00107{margin-left:-9.576000px;}
._18_c00107{margin-left:-7.938000px;}
._3_c00107{margin-left:-6.867000px;}
._1a_c00107{margin-left:-5.859000px;}
._17_c00107{margin-left:-4.599000px;}
._e_c00107{margin-left:-3.276000px;}
._11_c00107{margin-left:-2.268000px;}
._a_c00107{margin-left:-1.260000px;}
._14_c00107{width:1.008000px;}
._8_c00107{width:2.079000px;}
._9_c00107{width:3.087000px;}
._1c_c00107{width:4.089000px;}
._b_c00107{width:5.103000px;}
._23_c00107{width:6.174000px;}
._5_c00107{width:7.182000px;}
._16_c00107{width:8.190000px;}
._6_c00107{width:9.765000px;}
._7_c00107{width:11.340000px;}
._1d_c00107{width:12.474000px;}
._15_c00107{width:13.671000px;}
._26_c00107{width:15.120000px;}
._22_c00107{width:16.305000px;}
._2c_c00107{width:17.892000px;}
._c_c00107{width:20.664000px;}
._2b_c00107{width:22.365000px;}
._d_c00107{width:23.877000px;}
._1e_c00107{width:24.885000px;}
._25_c00107{width:26.460000px;}
._12_c00107{width:28.287000px;}
._2a_c00107{width:31.947000px;}
._2d_c00107{width:36.981000px;}
._13_c00107{width:38.367000px;}
._29_c00107{width:44.547000px;}
._1b_c00107{width:78.246000px;}
._27_c00107{width:120.582000px;}
._21_c00107{width:123.684000px;}
._10_c00107{width:164.808000px;}
._28_c00107{width:195.003000px;}
._1f_c00107{width:202.608000px;}
._20_c00107{width:228.063000px;}
._4_c00107{width:350.517000px;}
.fc2_c00107{color:transparent;}
.fc1_c00107{color:rgb(128,128,128);}
.fc0_c00107{color:rgb(0,0,0);}
.fs2_c00107{font-size:48.000000px;}
.fs0_c00107{font-size:63.000000px;}
.fs1_c00107{font-size:66.000000px;}
.y0_c00107{bottom:0.000000px;}
.y51_c00107{bottom:3.105000px;}
.y50_c00107{bottom:7.228369px;}
.y4f_c00107{bottom:30.420000px;}
.y4e_c00107{bottom:48.570000px;}
.y2a_c00107{bottom:48.870000px;}
.y29_c00107{bottom:67.170000px;}
.y4d_c00107{bottom:67.770000px;}
.y28_c00107{bottom:85.620000px;}
.y4c_c00107{bottom:85.770000px;}
.y27_c00107{bottom:103.920000px;}
.y26_c00107{bottom:122.220000px;}
.y4b_c00107{bottom:122.520000px;}
.y4a_c00107{bottom:140.670000px;}
.y25_c00107{bottom:141.420000px;}
.y49_c00107{bottom:158.670000px;}
.y24_c00107{bottom:158.970000px;}
.y23_c00107{bottom:177.120000px;}
.y22_c00107{bottom:195.120000px;}
.y48_c00107{bottom:195.420000px;}
.y21_c00107{bottom:213.570000px;}
.y20_c00107{bottom:231.420000px;}
.y47_c00107{bottom:231.570000px;}
.y46_c00107{bottom:249.720000px;}
.y1f_c00107{bottom:250.020000px;}
.y1e_c00107{bottom:267.870000px;}
.y45_c00107{bottom:268.320000px;}
.y1d_c00107{bottom:286.170000px;}
.y44_c00107{bottom:286.770000px;}
.y43_c00107{bottom:304.320000px;}
.y1c_c00107{bottom:304.470000px;}
.y42_c00107{bottom:322.020000px;}
.y1b_c00107{bottom:322.920000px;}
.y41_c00107{bottom:340.770000px;}
.y1a_c00107{bottom:340.920000px;}
.y40_c00107{bottom:358.320000px;}
.y19_c00107{bottom:358.770000px;}
.y3f_c00107{bottom:376.020000px;}
.y18_c00107{bottom:377.370000px;}
.y3e_c00107{bottom:394.470000px;}
.y17_c00107{bottom:395.520000px;}
.y16_c00107{bottom:412.770000px;}
.y15_c00107{bottom:430.920000px;}
.y14_c00107{bottom:448.920000px;}
.y3d_c00107{bottom:449.520000px;}
.y3c_c00107{bottom:466.470000px;}
.y13_c00107{bottom:468.120000px;}
.y12_c00107{bottom:485.220000px;}
.y3b_c00107{bottom:486.270000px;}
.y11_c00107{bottom:503.520000px;}
.y3a_c00107{bottom:503.820000px;}
.y10_c00107{bottom:521.820000px;}
.y39_c00107{bottom:522.120000px;}
.yf_c00107{bottom:539.670000px;}
.ye_c00107{bottom:558.120000px;}
.y38_c00107{bottom:558.270000px;}
.y37_c00107{bottom:575.820000px;}
.yd_c00107{bottom:576.120000px;}
.yc_c00107{bottom:594.270000px;}
.y36_c00107{bottom:594.570000px;}
.yb_c00107{bottom:612.270000px;}
.y35_c00107{bottom:612.570000px;}
.y34_c00107{bottom:630.420000px;}
.ya_c00107{bottom:630.720000px;}
.y33_c00107{bottom:648.570000px;}
.y9_c00107{bottom:648.720000px;}
.y8_c00107{bottom:666.270000px;}
.y32_c00107{bottom:667.170000px;}
.y7_c00107{bottom:685.020000px;}
.y31_c00107{bottom:685.170000px;}
.y6_c00107{bottom:702.720000px;}
.y30_c00107{bottom:703.320000px;}
.y5_c00107{bottom:720.870000px;}
.y2f_c00107{bottom:721.620000px;}
.y4_c00107{bottom:738.720000px;}
.y2e_c00107{bottom:740.070000px;}
.y3_c00107{bottom:757.320000px;}
.y2d_c00107{bottom:758.070000px;}
.y2_c00107{bottom:775.920000px;}
.y2c_c00107{bottom:776.520000px;}
.y1_c00107{bottom:793.470000px;}
.y2b_c00107{bottom:797.070000px;}
.h4_c00107{height:13.200073px;}
.h5_c00107{height:43.804688px;}
.h2_c00107{height:66.024000px;}
.h3_c00107{height:69.168000px;}
.h0_c00107{height:835.350000px;}
.h1_c00107{height:835.500000px;}
.w2_c00107{width:104.875500px;}
.w1_c00107{width:578.250000px;}
.w0_c00107{width:578.325000px;}
.x0_c00107{left:0.000000px;}
.xe_c00107{left:15.150000px;}
.xf_c00107{left:16.950000px;}
.xa_c00107{left:21.600000px;}
.x4_c00107{left:40.800000px;}
.x10_c00107{left:76.650000px;}
.xd_c00107{left:77.700000px;}
.xc_c00107{left:78.750000px;}
.xb_c00107{left:80.400000px;}
.x7_c00107{left:82.050000px;}
.x9_c00107{left:83.250000px;}
.x6_c00107{left:85.050000px;}
.x5_c00107{left:87.000000px;}
.x3_c00107{left:88.200000px;}
.x2_c00107{left:89.400000px;}
.x1_c00107{left:91.050000px;}
.x8_c00107{left:100.800000px;}
.x1b_c00107{left:240.976730px;}
.x18_c00107{left:302.400000px;}
.x19_c00107{left:303.750000px;}
.x17_c00107{left:304.800000px;}
.x16_c00107{left:306.150000px;}
.x14_c00107{left:307.350000px;}
.x15_c00107{left:308.400000px;}
.x13_c00107{left:309.750000px;}
.x12_c00107{left:310.800000px;}
.x11_c00107{left:312.900000px;}
.x1a_c00107{left:484.950000px;}
@media print{
.v0_c00107{vertical-align:0.000000pt;}
.ls6_c00107{letter-spacing:0.000000pt;}
.ls0_c00107{letter-spacing:2.666667pt;}
.ls3_c00107{letter-spacing:8.000000pt;}
.ls5_c00107{letter-spacing:10.666667pt;}
.ls2_c00107{letter-spacing:14.789333pt;}
.ls4_c00107{letter-spacing:22.210667pt;}
.ls1_c00107{letter-spacing:56.344000pt;}
.ws2_c00107{word-spacing:-44.373333pt;}
.ws0_c00107{word-spacing:-24.722667pt;}
.ws3_c00107{word-spacing:-16.722667pt;}
.ws1_c00107{word-spacing:-12.824000pt;}
.ws4_c00107{word-spacing:0.000000pt;}
._24_c00107{margin-left:-17.920000pt;}
._f_c00107{margin-left:-16.128000pt;}
._2e_c00107{margin-left:-14.840000pt;}
._0_c00107{margin-left:-12.488000pt;}
._2_c00107{margin-left:-11.592000pt;}
._1_c00107{margin-left:-10.416000pt;}
._19_c00107{margin-left:-8.512000pt;}
._18_c00107{margin-left:-7.056000pt;}
._3_c00107{margin-left:-6.104000pt;}
._1a_c00107{margin-left:-5.208000pt;}
._17_c00107{margin-left:-4.088000pt;}
._e_c00107{margin-left:-2.912000pt;}
._11_c00107{margin-left:-2.016000pt;}
._a_c00107{margin-left:-1.120000pt;}
._14_c00107{width:0.896000pt;}
._8_c00107{width:1.848000pt;}
._9_c00107{width:2.744000pt;}
._1c_c00107{width:3.634667pt;}
._b_c00107{width:4.536000pt;}
._23_c00107{width:5.488000pt;}
._5_c00107{width:6.384000pt;}
._16_c00107{width:7.280000pt;}
._6_c00107{width:8.680000pt;}
._7_c00107{width:10.080000pt;}
._1d_c00107{width:11.088000pt;}
._15_c00107{width:12.152000pt;}
._26_c00107{width:13.440000pt;}
._22_c00107{width:14.493333pt;}
._2c_c00107{width:15.904000pt;}
._c_c00107{width:18.368000pt;}
._2b_c00107{width:19.880000pt;}
._d_c00107{width:21.224000pt;}
._1e_c00107{width:22.120000pt;}
._25_c00107{width:23.520000pt;}
._12_c00107{width:25.144000pt;}
._2a_c00107{width:28.397333pt;}
._2d_c00107{width:32.872000pt;}
._13_c00107{width:34.104000pt;}
._29_c00107{width:39.597333pt;}
._1b_c00107{width:69.552000pt;}
._27_c00107{width:107.184000pt;}
._21_c00107{width:109.941333pt;}
._10_c00107{width:146.496000pt;}
._28_c00107{width:173.336000pt;}
._1f_c00107{width:180.096000pt;}
._20_c00107{width:202.722667pt;}
._4_c00107{width:311.570667pt;}
.fs2_c00107{font-size:42.666667pt;}
.fs0_c00107{font-size:56.000000pt;}
.fs1_c00107{font-size:58.666667pt;}
.y0_c00107{bottom:0.000000pt;}
.y51_c00107{bottom:2.760000pt;}
.y50_c00107{bottom:6.425217pt;}
.y4f_c00107{bottom:27.040000pt;}
.y4e_c00107{bottom:43.173333pt;}
.y2a_c00107{bottom:43.440000pt;}
.y29_c00107{bottom:59.706667pt;}
.y4d_c00107{bottom:60.240000pt;}
.y28_c00107{bottom:76.106667pt;}
.y4c_c00107{bottom:76.240000pt;}
.y27_c00107{bottom:92.373333pt;}
.y26_c00107{bottom:108.640000pt;}
.y4b_c00107{bottom:108.906667pt;}
.y4a_c00107{bottom:125.040000pt;}
.y25_c00107{bottom:125.706667pt;}
.y49_c00107{bottom:141.040000pt;}
.y24_c00107{bottom:141.306667pt;}
.y23_c00107{bottom:157.440000pt;}
.y22_c00107{bottom:173.440000pt;}
.y48_c00107{bottom:173.706667pt;}
.y21_c00107{bottom:189.840000pt;}
.y20_c00107{bottom:205.706667pt;}
.y47_c00107{bottom:205.840000pt;}
.y46_c00107{bottom:221.973333pt;}
.y1f_c00107{bottom:222.240000pt;}
.y1e_c00107{bottom:238.106667pt;}
.y45_c00107{bottom:238.506667pt;}
.y1d_c00107{bottom:254.373333pt;}
.y44_c00107{bottom:254.906667pt;}
.y43_c00107{bottom:270.506667pt;}
.y1c_c00107{bottom:270.640000pt;}
.y42_c00107{bottom:286.240000pt;}
.y1b_c00107{bottom:287.040000pt;}
.y41_c00107{bottom:302.906667pt;}
.y1a_c00107{bottom:303.040000pt;}
.y40_c00107{bottom:318.506667pt;}
.y19_c00107{bottom:318.906667pt;}
.y3f_c00107{bottom:334.240000pt;}
.y18_c00107{bottom:335.440000pt;}
.y3e_c00107{bottom:350.640000pt;}
.y17_c00107{bottom:351.573333pt;}
.y16_c00107{bottom:366.906667pt;}
.y15_c00107{bottom:383.040000pt;}
.y14_c00107{bottom:399.040000pt;}
.y3d_c00107{bottom:399.573333pt;}
.y3c_c00107{bottom:414.640000pt;}
.y13_c00107{bottom:416.106667pt;}
.y12_c00107{bottom:431.306667pt;}
.y3b_c00107{bottom:432.240000pt;}
.y11_c00107{bottom:447.573333pt;}
.y3a_c00107{bottom:447.840000pt;}
.y10_c00107{bottom:463.840000pt;}
.y39_c00107{bottom:464.106667pt;}
.yf_c00107{bottom:479.706667pt;}
.ye_c00107{bottom:496.106667pt;}
.y38_c00107{bottom:496.240000pt;}
.y37_c00107{bottom:511.840000pt;}
.yd_c00107{bottom:512.106667pt;}
.yc_c00107{bottom:528.240000pt;}
.y36_c00107{bottom:528.506667pt;}
.yb_c00107{bottom:544.240000pt;}
.y35_c00107{bottom:544.506667pt;}
.y34_c00107{bottom:560.373333pt;}
.ya_c00107{bottom:560.640000pt;}
.y33_c00107{bottom:576.506667pt;}
.y9_c00107{bottom:576.640000pt;}
.y8_c00107{bottom:592.240000pt;}
.y32_c00107{bottom:593.040000pt;}
.y7_c00107{bottom:608.906667pt;}
.y31_c00107{bottom:609.040000pt;}
.y6_c00107{bottom:624.640000pt;}
.y30_c00107{bottom:625.173333pt;}
.y5_c00107{bottom:640.773333pt;}
.y2f_c00107{bottom:641.440000pt;}
.y4_c00107{bottom:656.640000pt;}
.y2e_c00107{bottom:657.840000pt;}
.y3_c00107{bottom:673.173333pt;}
.y2d_c00107{bottom:673.840000pt;}
.y2_c00107{bottom:689.706667pt;}
.y2c_c00107{bottom:690.240000pt;}
.y1_c00107{bottom:705.306667pt;}
.y2b_c00107{bottom:708.506667pt;}
.h4_c00107{height:11.733399pt;}
.h5_c00107{height:38.937500pt;}
.h2_c00107{height:58.688000pt;}
.h3_c00107{height:61.482667pt;}
.h0_c00107{height:742.533333pt;}
.h1_c00107{height:742.666667pt;}
.w2_c00107{width:93.222667pt;}
.w1_c00107{width:514.000000pt;}
.w0_c00107{width:514.066667pt;}
.x0_c00107{left:0.000000pt;}
.xe_c00107{left:13.466667pt;}
.xf_c00107{left:15.066667pt;}
.xa_c00107{left:19.200000pt;}
.x4_c00107{left:36.266667pt;}
.x10_c00107{left:68.133333pt;}
.xd_c00107{left:69.066667pt;}
.xc_c00107{left:70.000000pt;}
.xb_c00107{left:71.466667pt;}
.x7_c00107{left:72.933333pt;}
.x9_c00107{left:74.000000pt;}
.x6_c00107{left:75.600000pt;}
.x5_c00107{left:77.333333pt;}
.x3_c00107{left:78.400000pt;}
.x2_c00107{left:79.466667pt;}
.x1_c00107{left:80.933333pt;}
.x8_c00107{left:89.600000pt;}
.x1b_c00107{left:214.201538pt;}
.x18_c00107{left:268.800000pt;}
.x19_c00107{left:270.000000pt;}
.x17_c00107{left:270.933333pt;}
.x16_c00107{left:272.133333pt;}
.x14_c00107{left:273.200000pt;}
.x15_c00107{left:274.133333pt;}
.x13_c00107{left:275.333333pt;}
.x12_c00107{left:276.266667pt;}
.x11_c00107{left:278.133333pt;}
.x1a_c00107{left:431.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_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_dd5cea40db5b2707ffbd7c62.woff2')format("woff");}.ff1_c00108{font-family:ff1_c00108;line-height:1.437000;font-style:normal;font-weight:normal;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_ee3870d3b59dde62801abb19.woff2')format("woff");}.ff2_c00108{font-family:ff2_c00108;line-height:1.437000;font-style:normal;font-weight:normal;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_4b822fb215a231cdfbcd5b77.woff2')format("woff");}.ff3_c00108{font-family:ff3_c00108;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00108;src:url('chunks/assets/font_ab998510a342c9c115e458f5.woff2')format("woff");}.ff4_c00108{font-family:ff4_c00108;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00108;src:url('chunks/assets/font_005f8efb2c2dfbe5e61c145e.woff2')format("woff");}.ff5_c00108{font-family:ff5_c00108;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00108;src:url('chunks/assets/font_eaac4605faec3f7fad94225a.woff2')format("woff");}.ff6_c00108{font-family:ff6_c00108;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00108;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff7_c00108{font-family:ff7_c00108;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00108{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00108{vertical-align:0.000000px;}
.v1_c00108{vertical-align:79.800000px;}
.ls6_c00108{letter-spacing:0.000000px;}
.ls4_c00108{letter-spacing:0.510000px;}
.ls0_c00108{letter-spacing:3.000000px;}
.ls7_c00108{letter-spacing:6.000000px;}
.ls1_c00108{letter-spacing:6.600000px;}
.ls5_c00108{letter-spacing:8.838000px;}
.ls3_c00108{letter-spacing:9.000000px;}
.ls2_c00108{letter-spacing:23.187000px;}
.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;}
}
.ws3_c00108{word-spacing:-53.463000px;}
.ws5_c00108{word-spacing:-24.801000px;}
.ws1_c00108{word-spacing:-21.084000px;}
.ws6_c00108{word-spacing:-18.813000px;}
.ws0_c00108{word-spacing:-17.340000px;}
.ws4_c00108{word-spacing:-14.427000px;}
.ws2_c00108{word-spacing:-14.160000px;}
.ws7_c00108{word-spacing:0.000000px;}
._22_c00108{margin-left:-37.353000px;}
._2_c00108{margin-left:-22.560000px;}
._29_c00108{margin-left:-17.934000px;}
._2b_c00108{margin-left:-15.570000px;}
._23_c00108{margin-left:-14.220000px;}
._2a_c00108{margin-left:-12.588000px;}
._1e_c00108{margin-left:-9.450000px;}
._12_c00108{margin-left:-7.740000px;}
._d_c00108{margin-left:-6.720000px;}
._15_c00108{margin-left:-5.280000px;}
._c_c00108{margin-left:-4.140000px;}
._a_c00108{margin-left:-2.160000px;}
._b_c00108{margin-left:-1.080000px;}
._0_c00108{width:1.020000px;}
._11_c00108{width:2.040000px;}
._17_c00108{width:3.060000px;}
._13_c00108{width:4.140000px;}
._18_c00108{width:5.940000px;}
._f_c00108{width:7.020000px;}
._e_c00108{width:8.760000px;}
._10_c00108{width:9.840000px;}
._5_c00108{width:11.520000px;}
._24_c00108{width:12.840000px;}
._7_c00108{width:13.920000px;}
._9_c00108{width:16.260000px;}
._20_c00108{width:17.820000px;}
._1a_c00108{width:19.380000px;}
._14_c00108{width:21.180000px;}
._16_c00108{width:22.500000px;}
._4_c00108{width:24.540000px;}
._2c_c00108{width:25.719000px;}
._1b_c00108{width:26.880000px;}
._19_c00108{width:28.560000px;}
._1f_c00108{width:33.090000px;}
._27_c00108{width:35.241000px;}
._1c_c00108{width:37.080000px;}
._1d_c00108{width:39.360000px;}
._8_c00108{width:43.440000px;}
._25_c00108{width:47.460000px;}
._26_c00108{width:58.800000px;}
._21_c00108{width:90.600000px;}
._1_c00108{width:108.240000px;}
._2d_c00108{width:147.378000px;}
._6_c00108{width:153.540000px;}
._3_c00108{width:164.640000px;}
._28_c00108{width:180.300000px;}
.fc2_c00108{color:transparent;}
.fc1_c00108{color:rgb(128,128,128);}
.fc0_c00108{color:rgb(0,0,0);}
.fs2_c00108{font-size:45.000000px;}
.fs9_c00108{font-size:48.000000px;}
.fs5_c00108{font-size:51.000000px;}
.fs0_c00108{font-size:60.000000px;}
.fs4_c00108{font-size:63.000000px;}
.fs8_c00108{font-size:66.000000px;}
.fs7_c00108{font-size:69.000000px;}
.fs6_c00108{font-size:72.000000px;}
.fs1_c00108{font-size:84.000000px;}
.fs3_c00108{font-size:213.000000px;}
.y0_c00108{bottom:0.000000px;}
.y50_c00108{bottom:3.105000px;}
.y4f_c00108{bottom:7.228357px;}
.y4e_c00108{bottom:52.980000px;}
.y4d_c00108{bottom:70.830000px;}
.y26_c00108{bottom:70.980000px;}
.y4c_c00108{bottom:89.130000px;}
.y25_c00108{bottom:90.180000px;}
.y4b_c00108{bottom:106.980000px;}
.y24_c00108{bottom:107.430000px;}
.y22_c00108{bottom:124.230000px;}
.y23_c00108{bottom:125.580000px;}
.y4a_c00108{bottom:143.880000px;}
.y49_c00108{bottom:162.330000px;}
.y48_c00108{bottom:180.330000px;}
.y21_c00108{bottom:180.930000px;}
.y47_c00108{bottom:198.780000px;}
.y20_c00108{bottom:199.230000px;}
.y46_c00108{bottom:216.780000px;}
.y1f_c00108{bottom:217.380000px;}
.y45_c00108{bottom:234.330000px;}
.y1e_c00108{bottom:235.680000px;}
.y44_c00108{bottom:252.480000px;}
.y1d_c00108{bottom:253.830000px;}
.y43_c00108{bottom:271.380000px;}
.y1c_c00108{bottom:287.580000px;}
.y42_c00108{bottom:289.680000px;}
.y41_c00108{bottom:307.830000px;}
.y1b_c00108{bottom:325.080000px;}
.y40_c00108{bottom:325.980000px;}
.y1a_c00108{bottom:342.930000px;}
.y3f_c00108{bottom:343.680000px;}
.y19_c00108{bottom:360.780000px;}
.y3e_c00108{bottom:361.830000px;}
.y18_c00108{bottom:379.080000px;}
.y3d_c00108{bottom:379.680000px;}
.y17_c00108{bottom:396.930000px;}
.y3c_c00108{bottom:397.980000px;}
.y16_c00108{bottom:415.530000px;}
.y3b_c00108{bottom:416.430000px;}
.y15_c00108{bottom:433.380000px;}
.y3a_c00108{bottom:434.730000px;}
.y14_c00108{bottom:451.530000px;}
.y39_c00108{bottom:452.880000px;}
.y13_c00108{bottom:469.230000px;}
.y38_c00108{bottom:470.130000px;}
.y12_c00108{bottom:487.680000px;}
.y37_c00108{bottom:489.330000px;}
.y11_c00108{bottom:505.680000px;}
.y36_c00108{bottom:507.330000px;}
.y10_c00108{bottom:523.830000px;}
.y35_c00108{bottom:525.780000px;}
.yf_c00108{bottom:541.380000px;}
.y34_c00108{bottom:543.330000px;}
.ye_c00108{bottom:559.530000px;}
.y33_c00108{bottom:561.030000px;}
.yd_c00108{bottom:577.830000px;}
.y32_c00108{bottom:580.230000px;}
.yc_c00108{bottom:595.080000px;}
.y31_c00108{bottom:597.030000px;}
.yb_c00108{bottom:613.680000px;}
.y30_c00108{bottom:615.630000px;}
.ya_c00108{bottom:631.830000px;}
.y2f_c00108{bottom:633.480000px;}
.y9_c00108{bottom:649.680000px;}
.y2e_c00108{bottom:651.480000px;}
.y8_c00108{bottom:667.530000px;}
.y2d_c00108{bottom:669.930000px;}
.y7_c00108{bottom:685.530000px;}
.y2c_c00108{bottom:688.230000px;}
.y6_c00108{bottom:703.080000px;}
.y2b_c00108{bottom:705.780000px;}
.y5_c00108{bottom:721.680000px;}
.y2a_c00108{bottom:723.930000px;}
.y4_c00108{bottom:739.830000px;}
.y29_c00108{bottom:742.830000px;}
.y3_c00108{bottom:757.980000px;}
.y28_c00108{bottom:760.830000px;}
.y2_c00108{bottom:775.680000px;}
.y27_c00108{bottom:779.580000px;}
.y1_c00108{bottom:795.480000px;}
.ha_c00108{height:13.200074px;}
.hb_c00108{height:43.804688px;}
.h2_c00108{height:62.880000px;}
.h4_c00108{height:64.020000px;}
.h6_c00108{height:66.024000px;}
.h8_c00108{height:69.168000px;}
.h9_c00108{height:72.312000px;}
.h7_c00108{height:75.456000px;}
.h3_c00108{height:88.032000px;}
.h5_c00108{height:223.224000px;}
.h0_c00108{height:835.950000px;}
.h1_c00108{height:836.250000px;}
.w2_c00108{width:104.875500px;}
.w0_c00108{width:571.350000px;}
.w1_c00108{width:571.500000px;}
.x0_c00108{left:0.000000px;}
.x1_c00108{left:63.000000px;}
.x9_c00108{left:68.250000px;}
.x5_c00108{left:70.200000px;}
.x3_c00108{left:71.250000px;}
.x2_c00108{left:72.600000px;}
.x6_c00108{left:73.950000px;}
.x4_c00108{left:75.000000px;}
.xa_c00108{left:82.050000px;}
.xd_c00108{left:102.300000px;}
.x8_c00108{left:107.100000px;}
.xb_c00108{left:127.650000px;}
.xc_c00108{left:150.300000px;}
.x7_c00108{left:170.550000px;}
.x14_c00108{left:237.489258px;}
.x11_c00108{left:284.850000px;}
.x12_c00108{left:286.500000px;}
.x10_c00108{left:287.850000px;}
.xf_c00108{left:289.350000px;}
.xe_c00108{left:290.700000px;}
.x13_c00108{left:396.000000px;}
@media print{
.v0_c00108{vertical-align:0.000000pt;}
.v1_c00108{vertical-align:70.933333pt;}
.ls6_c00108{letter-spacing:0.000000pt;}
.ls4_c00108{letter-spacing:0.453333pt;}
.ls0_c00108{letter-spacing:2.666667pt;}
.ls7_c00108{letter-spacing:5.333333pt;}
.ls1_c00108{letter-spacing:5.866667pt;}
.ls5_c00108{letter-spacing:7.856000pt;}
.ls3_c00108{letter-spacing:8.000000pt;}
.ls2_c00108{letter-spacing:20.610667pt;}
.ws3_c00108{word-spacing:-47.522667pt;}
.ws5_c00108{word-spacing:-22.045333pt;}
.ws1_c00108{word-spacing:-18.741333pt;}
.ws6_c00108{word-spacing:-16.722667pt;}
.ws0_c00108{word-spacing:-15.413333pt;}
.ws4_c00108{word-spacing:-12.824000pt;}
.ws2_c00108{word-spacing:-12.586667pt;}
.ws7_c00108{word-spacing:0.000000pt;}
._22_c00108{margin-left:-33.202667pt;}
._2_c00108{margin-left:-20.053333pt;}
._29_c00108{margin-left:-15.941333pt;}
._2b_c00108{margin-left:-13.840000pt;}
._23_c00108{margin-left:-12.640000pt;}
._2a_c00108{margin-left:-11.189333pt;}
._1e_c00108{margin-left:-8.400000pt;}
._12_c00108{margin-left:-6.880000pt;}
._d_c00108{margin-left:-5.973333pt;}
._15_c00108{margin-left:-4.693333pt;}
._c_c00108{margin-left:-3.680000pt;}
._a_c00108{margin-left:-1.920000pt;}
._b_c00108{margin-left:-0.960000pt;}
._0_c00108{width:0.906667pt;}
._11_c00108{width:1.813333pt;}
._17_c00108{width:2.720000pt;}
._13_c00108{width:3.680000pt;}
._18_c00108{width:5.280000pt;}
._f_c00108{width:6.240000pt;}
._e_c00108{width:7.786667pt;}
._10_c00108{width:8.746667pt;}
._5_c00108{width:10.240000pt;}
._24_c00108{width:11.413333pt;}
._7_c00108{width:12.373333pt;}
._9_c00108{width:14.453333pt;}
._20_c00108{width:15.840000pt;}
._1a_c00108{width:17.226667pt;}
._14_c00108{width:18.826667pt;}
._16_c00108{width:20.000000pt;}
._4_c00108{width:21.813333pt;}
._2c_c00108{width:22.861333pt;}
._1b_c00108{width:23.893333pt;}
._19_c00108{width:25.386667pt;}
._1f_c00108{width:29.413333pt;}
._27_c00108{width:31.325333pt;}
._1c_c00108{width:32.960000pt;}
._1d_c00108{width:34.986667pt;}
._8_c00108{width:38.613333pt;}
._25_c00108{width:42.186667pt;}
._26_c00108{width:52.266667pt;}
._21_c00108{width:80.533333pt;}
._1_c00108{width:96.213333pt;}
._2d_c00108{width:131.002667pt;}
._6_c00108{width:136.480000pt;}
._3_c00108{width:146.346667pt;}
._28_c00108{width:160.266667pt;}
.fs2_c00108{font-size:40.000000pt;}
.fs9_c00108{font-size:42.666667pt;}
.fs5_c00108{font-size:45.333333pt;}
.fs0_c00108{font-size:53.333333pt;}
.fs4_c00108{font-size:56.000000pt;}
.fs8_c00108{font-size:58.666667pt;}
.fs7_c00108{font-size:61.333333pt;}
.fs6_c00108{font-size:64.000000pt;}
.fs1_c00108{font-size:74.666667pt;}
.fs3_c00108{font-size:189.333333pt;}
.y0_c00108{bottom:0.000000pt;}
.y50_c00108{bottom:2.760000pt;}
.y4f_c00108{bottom:6.425206pt;}
.y4e_c00108{bottom:47.093333pt;}
.y4d_c00108{bottom:62.960000pt;}
.y26_c00108{bottom:63.093333pt;}
.y4c_c00108{bottom:79.226667pt;}
.y25_c00108{bottom:80.160000pt;}
.y4b_c00108{bottom:95.093333pt;}
.y24_c00108{bottom:95.493333pt;}
.y22_c00108{bottom:110.426667pt;}
.y23_c00108{bottom:111.626667pt;}
.y4a_c00108{bottom:127.893333pt;}
.y49_c00108{bottom:144.293333pt;}
.y48_c00108{bottom:160.293333pt;}
.y21_c00108{bottom:160.826667pt;}
.y47_c00108{bottom:176.693333pt;}
.y20_c00108{bottom:177.093333pt;}
.y46_c00108{bottom:192.693333pt;}
.y1f_c00108{bottom:193.226667pt;}
.y45_c00108{bottom:208.293333pt;}
.y1e_c00108{bottom:209.493333pt;}
.y44_c00108{bottom:224.426667pt;}
.y1d_c00108{bottom:225.626667pt;}
.y43_c00108{bottom:241.226667pt;}
.y1c_c00108{bottom:255.626667pt;}
.y42_c00108{bottom:257.493333pt;}
.y41_c00108{bottom:273.626667pt;}
.y1b_c00108{bottom:288.960000pt;}
.y40_c00108{bottom:289.760000pt;}
.y1a_c00108{bottom:304.826667pt;}
.y3f_c00108{bottom:305.493333pt;}
.y19_c00108{bottom:320.693333pt;}
.y3e_c00108{bottom:321.626667pt;}
.y18_c00108{bottom:336.960000pt;}
.y3d_c00108{bottom:337.493333pt;}
.y17_c00108{bottom:352.826667pt;}
.y3c_c00108{bottom:353.760000pt;}
.y16_c00108{bottom:369.360000pt;}
.y3b_c00108{bottom:370.160000pt;}
.y15_c00108{bottom:385.226667pt;}
.y3a_c00108{bottom:386.426667pt;}
.y14_c00108{bottom:401.360000pt;}
.y39_c00108{bottom:402.560000pt;}
.y13_c00108{bottom:417.093333pt;}
.y38_c00108{bottom:417.893333pt;}
.y12_c00108{bottom:433.493333pt;}
.y37_c00108{bottom:434.960000pt;}
.y11_c00108{bottom:449.493333pt;}
.y36_c00108{bottom:450.960000pt;}
.y10_c00108{bottom:465.626667pt;}
.y35_c00108{bottom:467.360000pt;}
.yf_c00108{bottom:481.226667pt;}
.y34_c00108{bottom:482.960000pt;}
.ye_c00108{bottom:497.360000pt;}
.y33_c00108{bottom:498.693333pt;}
.yd_c00108{bottom:513.626667pt;}
.y32_c00108{bottom:515.760000pt;}
.yc_c00108{bottom:528.960000pt;}
.y31_c00108{bottom:530.693333pt;}
.yb_c00108{bottom:545.493333pt;}
.y30_c00108{bottom:547.226667pt;}
.ya_c00108{bottom:561.626667pt;}
.y2f_c00108{bottom:563.093333pt;}
.y9_c00108{bottom:577.493333pt;}
.y2e_c00108{bottom:579.093333pt;}
.y8_c00108{bottom:593.360000pt;}
.y2d_c00108{bottom:595.493333pt;}
.y7_c00108{bottom:609.360000pt;}
.y2c_c00108{bottom:611.760000pt;}
.y6_c00108{bottom:624.960000pt;}
.y2b_c00108{bottom:627.360000pt;}
.y5_c00108{bottom:641.493333pt;}
.y2a_c00108{bottom:643.493333pt;}
.y4_c00108{bottom:657.626667pt;}
.y29_c00108{bottom:660.293333pt;}
.y3_c00108{bottom:673.760000pt;}
.y28_c00108{bottom:676.293333pt;}
.y2_c00108{bottom:689.493333pt;}
.y27_c00108{bottom:692.960000pt;}
.y1_c00108{bottom:707.093333pt;}
.ha_c00108{height:11.733399pt;}
.hb_c00108{height:38.937500pt;}
.h2_c00108{height:55.893333pt;}
.h4_c00108{height:56.906667pt;}
.h6_c00108{height:58.688000pt;}
.h8_c00108{height:61.482667pt;}
.h9_c00108{height:64.277333pt;}
.h7_c00108{height:67.072000pt;}
.h3_c00108{height:78.250667pt;}
.h5_c00108{height:198.421333pt;}
.h0_c00108{height:743.066667pt;}
.h1_c00108{height:743.333333pt;}
.w2_c00108{width:93.222667pt;}
.w0_c00108{width:507.866667pt;}
.w1_c00108{width:508.000000pt;}
.x0_c00108{left:0.000000pt;}
.x1_c00108{left:56.000000pt;}
.x9_c00108{left:60.666667pt;}
.x5_c00108{left:62.400000pt;}
.x3_c00108{left:63.333333pt;}
.x2_c00108{left:64.533333pt;}
.x6_c00108{left:65.733333pt;}
.x4_c00108{left:66.666667pt;}
.xa_c00108{left:72.933333pt;}
.xd_c00108{left:90.933333pt;}
.x8_c00108{left:95.200000pt;}
.xb_c00108{left:113.466667pt;}
.xc_c00108{left:133.600000pt;}
.x7_c00108{left:151.600000pt;}
.x14_c00108{left:211.101563pt;}
.x11_c00108{left:253.200000pt;}
.x12_c00108{left:254.666667pt;}
.x10_c00108{left:255.866667pt;}
.xf_c00108{left:257.200000pt;}
.xe_c00108{left:258.400000pt;}
.x13_c00108{left:352.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_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_238d07312ee2f91a049e0826.woff2')format("woff");}.ff1_c00109{font-family:ff1_c00109;line-height:1.437000;font-style:normal;font-weight:normal;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_2074c9f19a010fee12863785.woff2')format("woff");}.ff2_c00109{font-family:ff2_c00109;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00109;src:url('chunks/assets/font_2b42f05b7a8a470d39b1c4bb.woff2')format("woff");}.ff3_c00109{font-family:ff3_c00109;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00109;src:url('chunks/assets/font_498203b09f8587c65d3458a1.woff2')format("woff");}.ff4_c00109{font-family:ff4_c00109;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00109;src:url('chunks/assets/font_9f14b4f011204ac49797a2c3.woff2')format("woff");}.ff5_c00109{font-family:ff5_c00109;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00109;src:url('chunks/assets/font_531fe965ddc3b04f4ec65a75.woff2')format("woff");}.ff6_c00109{font-family:ff6_c00109;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00109;src:url('chunks/assets/font_bc061439f6d49658a50b918b.woff2')format("woff");}.ff7_c00109{font-family:ff7_c00109;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00109;src:url('chunks/assets/font_fb1639c49ff41d7ba5f83665.woff2')format("woff");}.ff8_c00109{font-family:ff8_c00109;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00109;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff9_c00109{font-family:ff9_c00109;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00109{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00109{vertical-align:0.000000px;}
.ls4_c00109{letter-spacing:-3.000000px;}
.ls2_c00109{letter-spacing:0.000000px;}
.ls0_c00109{letter-spacing:3.000000px;}
.ls3_c00109{letter-spacing:9.000000px;}
.ls1_c00109{letter-spacing:12.000000px;}
.sc__c00109{text-shadow:none;}
.sc0_c00109{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00109{-webkit-text-stroke:0px transparent;}
.sc0_c00109{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00109{word-spacing:-49.920000px;}
.ws8_c00109{word-spacing:-42.192000px;}
.ws6_c00109{word-spacing:-24.000000px;}
.ws1_c00109{word-spacing:-18.813000px;}
.ws9_c00109{word-spacing:-18.060000px;}
.ws7_c00109{word-spacing:-15.000000px;}
.ws2_c00109{word-spacing:-14.427000px;}
.ws5_c00109{word-spacing:-14.160000px;}
.ws4_c00109{word-spacing:-14.040000px;}
.ws0_c00109{word-spacing:-13.860000px;}
.wsa_c00109{word-spacing:0.000000px;}
._1c_c00109{margin-left:-25.581000px;}
._21_c00109{margin-left:-21.294000px;}
._16_c00109{margin-left:-16.443000px;}
._2a_c00109{margin-left:-14.106000px;}
._1e_c00109{margin-left:-11.904000px;}
._1d_c00109{margin-left:-10.356000px;}
._b_c00109{margin-left:-9.324000px;}
._c_c00109{margin-left:-7.686000px;}
._a_c00109{margin-left:-6.489000px;}
._d_c00109{margin-left:-4.914000px;}
._3_c00109{margin-left:-3.528000px;}
._7_c00109{margin-left:-2.205000px;}
._4_c00109{margin-left:-1.008000px;}
._0_c00109{width:1.440000px;}
._e_c00109{width:3.405000px;}
._14_c00109{width:4.536000px;}
._9_c00109{width:5.859000px;}
._13_c00109{width:7.194000px;}
._2b_c00109{width:8.217000px;}
._2_c00109{width:9.300000px;}
._11_c00109{width:11.025000px;}
._1f_c00109{width:12.093000px;}
._12_c00109{width:13.230000px;}
._18_c00109{width:14.490000px;}
._19_c00109{width:16.002000px;}
._1b_c00109{width:17.025000px;}
._25_c00109{width:20.319000px;}
._10_c00109{width:21.327000px;}
._f_c00109{width:22.365000px;}
._5_c00109{width:24.381000px;}
._1a_c00109{width:25.893000px;}
._6_c00109{width:27.720000px;}
._24_c00109{width:28.863000px;}
._29_c00109{width:31.719000px;}
._15_c00109{width:32.820000px;}
._8_c00109{width:36.036000px;}
._27_c00109{width:38.010000px;}
._23_c00109{width:42.600000px;}
._26_c00109{width:47.160000px;}
._28_c00109{width:48.603000px;}
._20_c00109{width:54.444000px;}
._22_c00109{width:158.130000px;}
._17_c00109{width:159.390000px;}
._1_c00109{width:351.540000px;}
.fc2_c00109{color:transparent;}
.fc1_c00109{color:rgb(128,128,128);}
.fc0_c00109{color:rgb(0,0,0);}
.fs5_c00109{font-size:48.000000px;}
.fs4_c00109{font-size:57.000000px;}
.fs0_c00109{font-size:60.000000px;}
.fs1_c00109{font-size:63.000000px;}
.fs2_c00109{font-size:66.000000px;}
.fs3_c00109{font-size:72.000000px;}
.y0_c00109{bottom:0.000000px;}
.y50_c00109{bottom:3.105000px;}
.y4f_c00109{bottom:7.228369px;}
.y4e_c00109{bottom:59.670000px;}
.y4d_c00109{bottom:77.970000px;}
.y29_c00109{bottom:78.570000px;}
.y4c_c00109{bottom:96.870000px;}
.y28_c00109{bottom:97.770000px;}
.y4b_c00109{bottom:115.320000px;}
.y27_c00109{bottom:115.620000px;}
.y4a_c00109{bottom:133.020000px;}
.y26_c00109{bottom:133.920000px;}
.y49_c00109{bottom:151.920000px;}
.y25_c00109{bottom:152.220000px;}
.y48_c00109{bottom:170.370000px;}
.y24_c00109{bottom:170.820000px;}
.y23_c00109{bottom:188.670000px;}
.y47_c00109{bottom:206.220000px;}
.y22_c00109{bottom:208.470000px;}
.y46_c00109{bottom:225.120000px;}
.y21_c00109{bottom:226.020000px;}
.y45_c00109{bottom:243.270000px;}
.y20_c00109{bottom:243.720000px;}
.y1f_c00109{bottom:261.870000px;}
.y1e_c00109{bottom:280.020000px;}
.y44_c00109{bottom:280.470000px;}
.y1d_c00109{bottom:297.270000px;}
.y43_c00109{bottom:298.920000px;}
.y1c_c00109{bottom:316.170000px;}
.y42_c00109{bottom:334.170000px;}
.y1b_c00109{bottom:334.470000px;}
.y1a_c00109{bottom:352.620000px;}
.y41_c00109{bottom:353.070000px;}
.y19_c00109{bottom:370.620000px;}
.y40_c00109{bottom:371.220000px;}
.y18_c00109{bottom:388.770000px;}
.y3f_c00109{bottom:389.070000px;}
.y17_c00109{bottom:406.920000px;}
.y3e_c00109{bottom:407.370000px;}
.y16_c00109{bottom:425.820000px;}
.y3d_c00109{bottom:426.570000px;}
.y15_c00109{bottom:443.370000px;}
.y3c_c00109{bottom:444.120000px;}
.y14_c00109{bottom:461.070000px;}
.y3b_c00109{bottom:462.420000px;}
.y13_c00109{bottom:479.820000px;}
.y3a_c00109{bottom:498.120000px;}
.y12_c00109{bottom:498.420000px;}
.y11_c00109{bottom:515.970000px;}
.y39_c00109{bottom:534.270000px;}
.y10_c00109{bottom:534.570000px;}
.y38_c00109{bottom:551.820000px;}
.yf_c00109{bottom:552.120000px;}
.y37_c00109{bottom:569.970000px;}
.ye_c00109{bottom:571.320000px;}
.y36_c00109{bottom:587.820000px;}
.yd_c00109{bottom:589.170000px;}
.y35_c00109{bottom:606.720000px;}
.yc_c00109{bottom:607.170000px;}
.y34_c00109{bottom:624.720000px;}
.yb_c00109{bottom:625.320000px;}
.y33_c00109{bottom:642.570000px;}
.ya_c00109{bottom:643.470000px;}
.y32_c00109{bottom:661.470000px;}
.y9_c00109{bottom:661.770000px;}
.y31_c00109{bottom:679.320000px;}
.y8_c00109{bottom:680.070000px;}
.y30_c00109{bottom:697.620000px;}
.y7_c00109{bottom:697.920000px;}
.y2f_c00109{bottom:714.720000px;}
.y6_c00109{bottom:715.770000px;}
.y2e_c00109{bottom:733.320000px;}
.y5_c00109{bottom:734.070000px;}
.y2d_c00109{bottom:751.320000px;}
.y4_c00109{bottom:752.520000px;}
.y2c_c00109{bottom:769.470000px;}
.y3_c00109{bottom:771.120000px;}
.y2b_c00109{bottom:787.320000px;}
.y2_c00109{bottom:788.370000px;}
.y1_c00109{bottom:807.270000px;}
.y2a_c00109{bottom:807.870000px;}
.h8_c00109{height:13.200073px;}
.h9_c00109{height:43.804688px;}
.h2_c00109{height:62.880000px;}
.h6_c00109{height:64.020000px;}
.h3_c00109{height:66.024000px;}
.h4_c00109{height:67.221000px;}
.h5_c00109{height:69.168000px;}
.h7_c00109{height:78.048000px;}
.h1_c00109{height:844.500000px;}
.h0_c00109{height:844.800000px;}
.w2_c00109{width:104.875500px;}
.w0_c00109{width:582.675000px;}
.w1_c00109{width:582.750000px;}
.x0_c00109{left:0.000000px;}
.x5_c00109{left:45.300000px;}
.x9_c00109{left:49.650000px;}
.x8_c00109{left:50.700000px;}
.xb_c00109{left:104.700000px;}
.x3_c00109{left:106.650000px;}
.x4_c00109{left:108.000000px;}
.x2_c00109{left:109.800000px;}
.x1_c00109{left:111.300000px;}
.x7_c00109{left:112.800000px;}
.xa_c00109{left:114.150000px;}
.x6_c00109{left:128.700000px;}
.x13_c00109{left:243.151749px;}
.xf_c00109{left:322.650000px;}
.xd_c00109{left:324.750000px;}
.xe_c00109{left:326.100000px;}
.x10_c00109{left:327.150000px;}
.x11_c00109{left:328.500000px;}
.xc_c00109{left:331.200000px;}
.x12_c00109{left:496.800000px;}
@media print{
.v0_c00109{vertical-align:0.000000pt;}
.ls4_c00109{letter-spacing:-2.666667pt;}
.ls2_c00109{letter-spacing:0.000000pt;}
.ls0_c00109{letter-spacing:2.666667pt;}
.ls3_c00109{letter-spacing:8.000000pt;}
.ls1_c00109{letter-spacing:10.666667pt;}
.ws3_c00109{word-spacing:-44.373333pt;}
.ws8_c00109{word-spacing:-37.504000pt;}
.ws6_c00109{word-spacing:-21.333333pt;}
.ws1_c00109{word-spacing:-16.722667pt;}
.ws9_c00109{word-spacing:-16.053333pt;}
.ws7_c00109{word-spacing:-13.333333pt;}
.ws2_c00109{word-spacing:-12.824000pt;}
.ws5_c00109{word-spacing:-12.586667pt;}
.ws4_c00109{word-spacing:-12.480000pt;}
.ws0_c00109{word-spacing:-12.320000pt;}
.wsa_c00109{word-spacing:0.000000pt;}
._1c_c00109{margin-left:-22.738667pt;}
._21_c00109{margin-left:-18.928000pt;}
._16_c00109{margin-left:-14.616000pt;}
._2a_c00109{margin-left:-12.538667pt;}
._1e_c00109{margin-left:-10.581333pt;}
._1d_c00109{margin-left:-9.205333pt;}
._b_c00109{margin-left:-8.288000pt;}
._c_c00109{margin-left:-6.832000pt;}
._a_c00109{margin-left:-5.768000pt;}
._d_c00109{margin-left:-4.368000pt;}
._3_c00109{margin-left:-3.136000pt;}
._7_c00109{margin-left:-1.960000pt;}
._4_c00109{margin-left:-0.896000pt;}
._0_c00109{width:1.280000pt;}
._e_c00109{width:3.026667pt;}
._14_c00109{width:4.032000pt;}
._9_c00109{width:5.208000pt;}
._13_c00109{width:6.394667pt;}
._2b_c00109{width:7.304000pt;}
._2_c00109{width:8.266667pt;}
._11_c00109{width:9.800000pt;}
._1f_c00109{width:10.749333pt;}
._12_c00109{width:11.760000pt;}
._18_c00109{width:12.880000pt;}
._19_c00109{width:14.224000pt;}
._1b_c00109{width:15.133333pt;}
._25_c00109{width:18.061333pt;}
._10_c00109{width:18.957333pt;}
._f_c00109{width:19.880000pt;}
._5_c00109{width:21.672000pt;}
._1a_c00109{width:23.016000pt;}
._6_c00109{width:24.640000pt;}
._24_c00109{width:25.656000pt;}
._29_c00109{width:28.194667pt;}
._15_c00109{width:29.173333pt;}
._8_c00109{width:32.032000pt;}
._27_c00109{width:33.786667pt;}
._23_c00109{width:37.866667pt;}
._26_c00109{width:41.920000pt;}
._28_c00109{width:43.202667pt;}
._20_c00109{width:48.394667pt;}
._22_c00109{width:140.560000pt;}
._17_c00109{width:141.680000pt;}
._1_c00109{width:312.480000pt;}
.fs5_c00109{font-size:42.666667pt;}
.fs4_c00109{font-size:50.666667pt;}
.fs0_c00109{font-size:53.333333pt;}
.fs1_c00109{font-size:56.000000pt;}
.fs2_c00109{font-size:58.666667pt;}
.fs3_c00109{font-size:64.000000pt;}
.y0_c00109{bottom:0.000000pt;}
.y50_c00109{bottom:2.760000pt;}
.y4f_c00109{bottom:6.425217pt;}
.y4e_c00109{bottom:53.040000pt;}
.y4d_c00109{bottom:69.306667pt;}
.y29_c00109{bottom:69.840000pt;}
.y4c_c00109{bottom:86.106667pt;}
.y28_c00109{bottom:86.906667pt;}
.y4b_c00109{bottom:102.506667pt;}
.y27_c00109{bottom:102.773333pt;}
.y4a_c00109{bottom:118.240000pt;}
.y26_c00109{bottom:119.040000pt;}
.y49_c00109{bottom:135.040000pt;}
.y25_c00109{bottom:135.306667pt;}
.y48_c00109{bottom:151.440000pt;}
.y24_c00109{bottom:151.840000pt;}
.y23_c00109{bottom:167.706667pt;}
.y47_c00109{bottom:183.306667pt;}
.y22_c00109{bottom:185.306667pt;}
.y46_c00109{bottom:200.106667pt;}
.y21_c00109{bottom:200.906667pt;}
.y45_c00109{bottom:216.240000pt;}
.y20_c00109{bottom:216.640000pt;}
.y1f_c00109{bottom:232.773333pt;}
.y1e_c00109{bottom:248.906667pt;}
.y44_c00109{bottom:249.306667pt;}
.y1d_c00109{bottom:264.240000pt;}
.y43_c00109{bottom:265.706667pt;}
.y1c_c00109{bottom:281.040000pt;}
.y42_c00109{bottom:297.040000pt;}
.y1b_c00109{bottom:297.306667pt;}
.y1a_c00109{bottom:313.440000pt;}
.y41_c00109{bottom:313.840000pt;}
.y19_c00109{bottom:329.440000pt;}
.y40_c00109{bottom:329.973333pt;}
.y18_c00109{bottom:345.573333pt;}
.y3f_c00109{bottom:345.840000pt;}
.y17_c00109{bottom:361.706667pt;}
.y3e_c00109{bottom:362.106667pt;}
.y16_c00109{bottom:378.506667pt;}
.y3d_c00109{bottom:379.173333pt;}
.y15_c00109{bottom:394.106667pt;}
.y3c_c00109{bottom:394.773333pt;}
.y14_c00109{bottom:409.840000pt;}
.y3b_c00109{bottom:411.040000pt;}
.y13_c00109{bottom:426.506667pt;}
.y3a_c00109{bottom:442.773333pt;}
.y12_c00109{bottom:443.040000pt;}
.y11_c00109{bottom:458.640000pt;}
.y39_c00109{bottom:474.906667pt;}
.y10_c00109{bottom:475.173333pt;}
.y38_c00109{bottom:490.506667pt;}
.yf_c00109{bottom:490.773333pt;}
.y37_c00109{bottom:506.640000pt;}
.ye_c00109{bottom:507.840000pt;}
.y36_c00109{bottom:522.506667pt;}
.yd_c00109{bottom:523.706667pt;}
.y35_c00109{bottom:539.306667pt;}
.yc_c00109{bottom:539.706667pt;}
.y34_c00109{bottom:555.306667pt;}
.yb_c00109{bottom:555.840000pt;}
.y33_c00109{bottom:571.173333pt;}
.ya_c00109{bottom:571.973333pt;}
.y32_c00109{bottom:587.973333pt;}
.y9_c00109{bottom:588.240000pt;}
.y31_c00109{bottom:603.840000pt;}
.y8_c00109{bottom:604.506667pt;}
.y30_c00109{bottom:620.106667pt;}
.y7_c00109{bottom:620.373333pt;}
.y2f_c00109{bottom:635.306667pt;}
.y6_c00109{bottom:636.240000pt;}
.y2e_c00109{bottom:651.840000pt;}
.y5_c00109{bottom:652.506667pt;}
.y2d_c00109{bottom:667.840000pt;}
.y4_c00109{bottom:668.906667pt;}
.y2c_c00109{bottom:683.973333pt;}
.y3_c00109{bottom:685.440000pt;}
.y2b_c00109{bottom:699.840000pt;}
.y2_c00109{bottom:700.773333pt;}
.y1_c00109{bottom:717.573333pt;}
.y2a_c00109{bottom:718.106667pt;}
.h8_c00109{height:11.733399pt;}
.h9_c00109{height:38.937500pt;}
.h2_c00109{height:55.893333pt;}
.h6_c00109{height:56.906667pt;}
.h3_c00109{height:58.688000pt;}
.h4_c00109{height:59.752000pt;}
.h5_c00109{height:61.482667pt;}
.h7_c00109{height:69.376000pt;}
.h1_c00109{height:750.666667pt;}
.h0_c00109{height:750.933333pt;}
.w2_c00109{width:93.222667pt;}
.w0_c00109{width:517.933333pt;}
.w1_c00109{width:518.000000pt;}
.x0_c00109{left:0.000000pt;}
.x5_c00109{left:40.266667pt;}
.x9_c00109{left:44.133333pt;}
.x8_c00109{left:45.066667pt;}
.xb_c00109{left:93.066667pt;}
.x3_c00109{left:94.800000pt;}
.x4_c00109{left:96.000000pt;}
.x2_c00109{left:97.600000pt;}
.x1_c00109{left:98.933333pt;}
.x7_c00109{left:100.266667pt;}
.xa_c00109{left:101.466667pt;}
.x6_c00109{left:114.400000pt;}
.x13_c00109{left:216.134888pt;}
.xf_c00109{left:286.800000pt;}
.xd_c00109{left:288.666667pt;}
.xe_c00109{left:289.866667pt;}
.x10_c00109{left:290.800000pt;}
.x11_c00109{left:292.000000pt;}
.xc_c00109{left:294.400000pt;}
.x12_c00109{left:441.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_5e639f2acf0e3e368c5e2e25.woff2')format("woff");}.ff1_c00110{font-family:ff1_c00110;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00110;src:url('chunks/assets/font_4594b2a9994052a07d01619d.woff2')format("woff");}.ff2_c00110{font-family:ff2_c00110;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00110;src:url('chunks/assets/font_14db67988777a626b3d8ca1c.woff2')format("woff");}.ff3_c00110{font-family:ff3_c00110;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00110;src:url('chunks/assets/font_0d6210f00925141d88012573.woff2')format("woff");}.ff4_c00110{font-family:ff4_c00110;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00110;src:url('chunks/assets/font_4c4afef12c03fa04c27bac42.woff2')format("woff");}.ff5_c00110{font-family:ff5_c00110;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00110;src:url('chunks/assets/font_014e963420b631db51a12a8c.woff2')format("woff");}.ff6_c00110{font-family:ff6_c00110;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00110;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff7_c00110{font-family:ff7_c00110;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00110{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00110{vertical-align:0.000000px;}
.v1_c00110{vertical-align:107.400000px;}
.ls4_c00110{letter-spacing:0.000000px;}
.ls0_c00110{letter-spacing:0.240000px;}
.ls1_c00110{letter-spacing:3.000000px;}
.ls2_c00110{letter-spacing:6.600000px;}
.ls3_c00110{letter-spacing:12.000000px;}
.sc__c00110{text-shadow:none;}
.sc0_c00110{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00110{-webkit-text-stroke:0px transparent;}
.sc0_c00110{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00110{word-spacing:-27.813000px;}
.ws3_c00110{word-spacing:-27.060000px;}
.ws2_c00110{word-spacing:-18.060000px;}
.ws4_c00110{word-spacing:-17.340000px;}
.ws1_c00110{word-spacing:-14.160000px;}
.ws5_c00110{word-spacing:-0.195000px;}
.ws6_c00110{word-spacing:0.000000px;}
._23_c00110{margin-left:-17.853000px;}
._27_c00110{margin-left:-16.314000px;}
._22_c00110{margin-left:-14.154000px;}
._14_c00110{margin-left:-12.912000px;}
._1b_c00110{margin-left:-10.932000px;}
._16_c00110{margin-left:-9.900000px;}
._1c_c00110{margin-left:-8.100000px;}
._a_c00110{margin-left:-6.840000px;}
._f_c00110{margin-left:-5.046000px;}
._19_c00110{margin-left:-3.774000px;}
._d_c00110{margin-left:-2.760000px;}
._e_c00110{margin-left:-1.614000px;}
._5_c00110{width:1.320000px;}
._6_c00110{width:2.460000px;}
._3_c00110{width:3.591000px;}
._2_c00110{width:5.229000px;}
._4_c00110{width:6.552000px;}
._9_c00110{width:8.400000px;}
._7_c00110{width:9.900000px;}
._b_c00110{width:11.946000px;}
._1a_c00110{width:13.218000px;}
._c_c00110{width:14.220000px;}
._21_c00110{width:16.167000px;}
._17_c00110{width:17.193000px;}
._1f_c00110{width:19.350000px;}
._10_c00110{width:20.640000px;}
._0_c00110{width:22.113000px;}
._18_c00110{width:23.796000px;}
._20_c00110{width:25.200000px;}
._15_c00110{width:27.774000px;}
._2a_c00110{width:28.980000px;}
._29_c00110{width:30.120000px;}
._11_c00110{width:31.524000px;}
._1e_c00110{width:33.054000px;}
._24_c00110{width:34.164000px;}
._1d_c00110{width:36.267000px;}
._25_c00110{width:37.722000px;}
._28_c00110{width:39.840000px;}
._26_c00110{width:43.491000px;}
._1_c00110{width:45.303000px;}
._8_c00110{width:47.538000px;}
._2b_c00110{width:101.508000px;}
._13_c00110{width:105.309000px;}
._12_c00110{width:118.428000px;}
.fc2_c00110{color:transparent;}
.fc1_c00110{color:rgb(128,128,128);}
.fc0_c00110{color:rgb(0,0,0);}
.fs5_c00110{font-size:48.000000px;}
.fs1_c00110{font-size:60.000000px;}
.fs0_c00110{font-size:63.000000px;}
.fs3_c00110{font-size:69.000000px;}
.fs4_c00110{font-size:81.000000px;}
.fs2_c00110{font-size:195.000000px;}
.y0_c00110{bottom:0.000000px;}
.y51_c00110{bottom:3.105000px;}
.y50_c00110{bottom:7.228357px;}
.y4f_c00110{bottom:59.730000px;}
.y4e_c00110{bottom:78.030000px;}
.y29_c00110{bottom:79.080000px;}
.y4d_c00110{bottom:96.180000px;}
.y28_c00110{bottom:97.980000px;}
.y4c_c00110{bottom:113.730000px;}
.y27_c00110{bottom:115.830000px;}
.y4b_c00110{bottom:132.030000px;}
.y26_c00110{bottom:133.680000px;}
.y4a_c00110{bottom:150.480000px;}
.y25_c00110{bottom:151.980000px;}
.y48_c00110{bottom:160.080000px;}
.y49_c00110{bottom:168.780000px;}
.y24_c00110{bottom:169.830000px;}
.y23_c00110{bottom:188.430000px;}
.y22_c00110{bottom:206.580000px;}
.y21_c00110{bottom:224.730000px;}
.y47_c00110{bottom:242.280000px;}
.y20_c00110{bottom:243.030000px;}
.y46_c00110{bottom:259.980000px;}
.y1f_c00110{bottom:261.330000px;}
.y45_c00110{bottom:278.730000px;}
.y1e_c00110{bottom:279.480000px;}
.y1d_c00110{bottom:297.330000px;}
.y44_c00110{bottom:313.230000px;}
.y1c_c00110{bottom:315.330000px;}
.y1b_c00110{bottom:333.780000px;}
.y43_c00110{bottom:351.030000px;}
.y1a_c00110{bottom:351.630000px;}
.y42_c00110{bottom:367.530000px;}
.y19_c00110{bottom:369.330000px;}
.y41_c00110{bottom:386.430000px;}
.y18_c00110{bottom:387.780000px;}
.y40_c00110{bottom:404.730000px;}
.y17_c00110{bottom:406.080000px;}
.y3f_c00110{bottom:422.880000px;}
.y16_c00110{bottom:423.930000px;}
.y3e_c00110{bottom:441.180000px;}
.y15_c00110{bottom:442.530000px;}
.y3d_c00110{bottom:458.430000px;}
.y14_c00110{bottom:460.080000px;}
.y3c_c00110{bottom:477.330000px;}
.y13_c00110{bottom:478.530000px;}
.y3b_c00110{bottom:495.480000px;}
.y12_c00110{bottom:496.080000px;}
.y3a_c00110{bottom:513.330000px;}
.y11_c00110{bottom:514.680000px;}
.y39_c00110{bottom:531.330000px;}
.y10_c00110{bottom:532.680000px;}
.y38_c00110{bottom:549.180000px;}
.yf_c00110{bottom:550.230000px;}
.y37_c00110{bottom:567.630000px;}
.ye_c00110{bottom:568.080000px;}
.y36_c00110{bottom:585.330000px;}
.yd_c00110{bottom:586.530000px;}
.y35_c00110{bottom:603.480000px;}
.yc_c00110{bottom:604.530000px;}
.y34_c00110{bottom:621.630000px;}
.yb_c00110{bottom:623.730000px;}
.y33_c00110{bottom:639.930000px;}
.ya_c00110{bottom:640.230000px;}
.y32_c00110{bottom:657.480000px;}
.y9_c00110{bottom:658.830000px;}
.y31_c00110{bottom:675.780000px;}
.y8_c00110{bottom:677.730000px;}
.y7_c00110{bottom:693.630000px;}
.y30_c00110{bottom:694.230000px;}
.y6_c00110{bottom:711.180000px;}
.y2f_c00110{bottom:712.080000px;}
.y5_c00110{bottom:729.780000px;}
.y2e_c00110{bottom:730.080000px;}
.y4_c00110{bottom:747.630000px;}
.y2d_c00110{bottom:748.530000px;}
.y3_c00110{bottom:766.080000px;}
.y2c_c00110{bottom:766.530000px;}
.y2b_c00110{bottom:784.080000px;}
.y2_c00110{bottom:785.430000px;}
.y2a_c00110{bottom:800.880000px;}
.y1_c00110{bottom:803.880000px;}
.h7_c00110{height:13.200074px;}
.h8_c00110{height:43.804688px;}
.h3_c00110{height:62.880000px;}
.h4_c00110{height:64.020000px;}
.h2_c00110{height:66.024000px;}
.h6_c00110{height:86.427000px;}
.h5_c00110{height:208.065000px;}
.h1_c00110{height:845.250000px;}
.h0_c00110{height:845.400000px;}
.w2_c00110{width:104.875500px;}
.w0_c00110{width:578.100000px;}
.w1_c00110{width:578.250000px;}
.x0_c00110{left:0.000000px;}
.x4_c00110{left:10.500000px;}
.x5_c00110{left:68.250000px;}
.x2_c00110{left:70.200000px;}
.x3_c00110{left:71.250000px;}
.x6_c00110{left:72.300000px;}
.x7_c00110{left:74.250000px;}
.x8_c00110{left:75.300000px;}
.x1_c00110{left:212.250000px;}
.x16_c00110{left:240.864258px;}
.xc_c00110{left:284.100000px;}
.xb_c00110{left:285.150000px;}
.xd_c00110{left:286.500000px;}
.x12_c00110{left:287.850000px;}
.x14_c00110{left:289.500000px;}
.xf_c00110{left:301.350000px;}
.x13_c00110{left:311.400000px;}
.x10_c00110{left:342.450000px;}
.xe_c00110{left:356.400000px;}
.x11_c00110{left:369.600000px;}
.x15_c00110{left:380.250000px;}
.xa_c00110{left:406.350000px;}
.x9_c00110{left:459.750000px;}
@media print{
.v0_c00110{vertical-align:0.000000pt;}
.v1_c00110{vertical-align:95.466667pt;}
.ls4_c00110{letter-spacing:0.000000pt;}
.ls0_c00110{letter-spacing:0.213333pt;}
.ls1_c00110{letter-spacing:2.666667pt;}
.ls2_c00110{letter-spacing:5.866667pt;}
.ls3_c00110{letter-spacing:10.666667pt;}
.ws0_c00110{word-spacing:-24.722667pt;}
.ws3_c00110{word-spacing:-24.053333pt;}
.ws2_c00110{word-spacing:-16.053333pt;}
.ws4_c00110{word-spacing:-15.413333pt;}
.ws1_c00110{word-spacing:-12.586667pt;}
.ws5_c00110{word-spacing:-0.173333pt;}
.ws6_c00110{word-spacing:0.000000pt;}
._23_c00110{margin-left:-15.869333pt;}
._27_c00110{margin-left:-14.501333pt;}
._22_c00110{margin-left:-12.581333pt;}
._14_c00110{margin-left:-11.477333pt;}
._1b_c00110{margin-left:-9.717333pt;}
._16_c00110{margin-left:-8.800000pt;}
._1c_c00110{margin-left:-7.200000pt;}
._a_c00110{margin-left:-6.080000pt;}
._f_c00110{margin-left:-4.485333pt;}
._19_c00110{margin-left:-3.354667pt;}
._d_c00110{margin-left:-2.453333pt;}
._e_c00110{margin-left:-1.434667pt;}
._5_c00110{width:1.173333pt;}
._6_c00110{width:2.186667pt;}
._3_c00110{width:3.192000pt;}
._2_c00110{width:4.648000pt;}
._4_c00110{width:5.824000pt;}
._9_c00110{width:7.466667pt;}
._7_c00110{width:8.800000pt;}
._b_c00110{width:10.618667pt;}
._1a_c00110{width:11.749333pt;}
._c_c00110{width:12.640000pt;}
._21_c00110{width:14.370667pt;}
._17_c00110{width:15.282667pt;}
._1f_c00110{width:17.200000pt;}
._10_c00110{width:18.346667pt;}
._0_c00110{width:19.656000pt;}
._18_c00110{width:21.152000pt;}
._20_c00110{width:22.400000pt;}
._15_c00110{width:24.688000pt;}
._2a_c00110{width:25.760000pt;}
._29_c00110{width:26.773333pt;}
._11_c00110{width:28.021333pt;}
._1e_c00110{width:29.381333pt;}
._24_c00110{width:30.368000pt;}
._1d_c00110{width:32.237333pt;}
._25_c00110{width:33.530667pt;}
._28_c00110{width:35.413333pt;}
._26_c00110{width:38.658667pt;}
._1_c00110{width:40.269333pt;}
._8_c00110{width:42.256000pt;}
._2b_c00110{width:90.229333pt;}
._13_c00110{width:93.608000pt;}
._12_c00110{width:105.269333pt;}
.fs5_c00110{font-size:42.666667pt;}
.fs1_c00110{font-size:53.333333pt;}
.fs0_c00110{font-size:56.000000pt;}
.fs3_c00110{font-size:61.333333pt;}
.fs4_c00110{font-size:72.000000pt;}
.fs2_c00110{font-size:173.333333pt;}
.y0_c00110{bottom:0.000000pt;}
.y51_c00110{bottom:2.760000pt;}
.y50_c00110{bottom:6.425206pt;}
.y4f_c00110{bottom:53.093333pt;}
.y4e_c00110{bottom:69.360000pt;}
.y29_c00110{bottom:70.293333pt;}
.y4d_c00110{bottom:85.493333pt;}
.y28_c00110{bottom:87.093333pt;}
.y4c_c00110{bottom:101.093333pt;}
.y27_c00110{bottom:102.960000pt;}
.y4b_c00110{bottom:117.360000pt;}
.y26_c00110{bottom:118.826667pt;}
.y4a_c00110{bottom:133.760000pt;}
.y25_c00110{bottom:135.093333pt;}
.y48_c00110{bottom:142.293333pt;}
.y49_c00110{bottom:150.026667pt;}
.y24_c00110{bottom:150.960000pt;}
.y23_c00110{bottom:167.493333pt;}
.y22_c00110{bottom:183.626667pt;}
.y21_c00110{bottom:199.760000pt;}
.y47_c00110{bottom:215.360000pt;}
.y20_c00110{bottom:216.026667pt;}
.y46_c00110{bottom:231.093333pt;}
.y1f_c00110{bottom:232.293333pt;}
.y45_c00110{bottom:247.760000pt;}
.y1e_c00110{bottom:248.426667pt;}
.y1d_c00110{bottom:264.293333pt;}
.y44_c00110{bottom:278.426667pt;}
.y1c_c00110{bottom:280.293333pt;}
.y1b_c00110{bottom:296.693333pt;}
.y43_c00110{bottom:312.026667pt;}
.y1a_c00110{bottom:312.560000pt;}
.y42_c00110{bottom:326.693333pt;}
.y19_c00110{bottom:328.293333pt;}
.y41_c00110{bottom:343.493333pt;}
.y18_c00110{bottom:344.693333pt;}
.y40_c00110{bottom:359.760000pt;}
.y17_c00110{bottom:360.960000pt;}
.y3f_c00110{bottom:375.893333pt;}
.y16_c00110{bottom:376.826667pt;}
.y3e_c00110{bottom:392.160000pt;}
.y15_c00110{bottom:393.360000pt;}
.y3d_c00110{bottom:407.493333pt;}
.y14_c00110{bottom:408.960000pt;}
.y3c_c00110{bottom:424.293333pt;}
.y13_c00110{bottom:425.360000pt;}
.y3b_c00110{bottom:440.426667pt;}
.y12_c00110{bottom:440.960000pt;}
.y3a_c00110{bottom:456.293333pt;}
.y11_c00110{bottom:457.493333pt;}
.y39_c00110{bottom:472.293333pt;}
.y10_c00110{bottom:473.493333pt;}
.y38_c00110{bottom:488.160000pt;}
.yf_c00110{bottom:489.093333pt;}
.y37_c00110{bottom:504.560000pt;}
.ye_c00110{bottom:504.960000pt;}
.y36_c00110{bottom:520.293333pt;}
.yd_c00110{bottom:521.360000pt;}
.y35_c00110{bottom:536.426667pt;}
.yc_c00110{bottom:537.360000pt;}
.y34_c00110{bottom:552.560000pt;}
.yb_c00110{bottom:554.426667pt;}
.y33_c00110{bottom:568.826667pt;}
.ya_c00110{bottom:569.093333pt;}
.y32_c00110{bottom:584.426667pt;}
.y9_c00110{bottom:585.626667pt;}
.y31_c00110{bottom:600.693333pt;}
.y8_c00110{bottom:602.426667pt;}
.y7_c00110{bottom:616.560000pt;}
.y30_c00110{bottom:617.093333pt;}
.y6_c00110{bottom:632.160000pt;}
.y2f_c00110{bottom:632.960000pt;}
.y5_c00110{bottom:648.693333pt;}
.y2e_c00110{bottom:648.960000pt;}
.y4_c00110{bottom:664.560000pt;}
.y2d_c00110{bottom:665.360000pt;}
.y3_c00110{bottom:680.960000pt;}
.y2c_c00110{bottom:681.360000pt;}
.y2b_c00110{bottom:696.960000pt;}
.y2_c00110{bottom:698.160000pt;}
.y2a_c00110{bottom:711.893333pt;}
.y1_c00110{bottom:714.560000pt;}
.h7_c00110{height:11.733399pt;}
.h8_c00110{height:38.937500pt;}
.h3_c00110{height:55.893333pt;}
.h4_c00110{height:56.906667pt;}
.h2_c00110{height:58.688000pt;}
.h6_c00110{height:76.824000pt;}
.h5_c00110{height:184.946667pt;}
.h1_c00110{height:751.333333pt;}
.h0_c00110{height:751.466667pt;}
.w2_c00110{width:93.222667pt;}
.w0_c00110{width:513.866667pt;}
.w1_c00110{width:514.000000pt;}
.x0_c00110{left:0.000000pt;}
.x4_c00110{left:9.333333pt;}
.x5_c00110{left:60.666667pt;}
.x2_c00110{left:62.400000pt;}
.x3_c00110{left:63.333333pt;}
.x6_c00110{left:64.266667pt;}
.x7_c00110{left:66.000000pt;}
.x8_c00110{left:66.933333pt;}
.x1_c00110{left:188.666667pt;}
.x16_c00110{left:214.101563pt;}
.xc_c00110{left:252.533333pt;}
.xb_c00110{left:253.466667pt;}
.xd_c00110{left:254.666667pt;}
.x12_c00110{left:255.866667pt;}
.x14_c00110{left:257.333333pt;}
.xf_c00110{left:267.866667pt;}
.x13_c00110{left:276.800000pt;}
.x10_c00110{left:304.400000pt;}
.xe_c00110{left:316.800000pt;}
.x11_c00110{left:328.533333pt;}
.x15_c00110{left:338.000000pt;}
.xa_c00110{left:361.200000pt;}
.x9_c00110{left:408.666667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_6031b64f5ff068fdfb723651.woff2')format("woff");}.ff1_c00111{font-family:ff1_c00111;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00111;src:url('chunks/assets/font_17d73ddfb44aa6784e4a9097.woff2')format("woff");}.ff2_c00111{font-family:ff2_c00111;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00111;src:url('chunks/assets/font_2824d2d7700e47b6860e63f1.woff2')format("woff");}.ff3_c00111{font-family:ff3_c00111;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00111;src:url('chunks/assets/font_d752a5ad60b3fa6ff454f744.woff2')format("woff");}.ff4_c00111{font-family:ff4_c00111;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00111;src:url('chunks/assets/font_d289d327e2b8bcbebedf6ab8.woff2')format("woff");}.ff5_c00111{font-family:ff5_c00111;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00111;src:url('chunks/assets/font_931b34d9e819da5515a1c86a.woff2')format("woff");}.ff6_c00111{font-family:ff6_c00111;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00111;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff7_c00111{font-family:ff7_c00111;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00111{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00111{vertical-align:0.000000px;}
.lsd_c00111{letter-spacing:-6.000000px;}
.lsb_c00111{letter-spacing:0.000000px;}
.ls2_c00111{letter-spacing:0.480000px;}
.ls7_c00111{letter-spacing:2.130000px;}
.ls0_c00111{letter-spacing:3.000000px;}
.ls9_c00111{letter-spacing:3.330000px;}
.ls5_c00111{letter-spacing:5.820000px;}
.ls3_c00111{letter-spacing:6.000000px;}
.ls6_c00111{letter-spacing:7.740000px;}
.ls1_c00111{letter-spacing:9.000000px;}
.lsa_c00111{letter-spacing:12.000000px;}
.ls8_c00111{letter-spacing:13.335000px;}
.lsc_c00111{letter-spacing:15.000000px;}
.ls4_c00111{letter-spacing:24.045000px;}
.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;}
}
.ws3_c00111{word-spacing:-32.424000px;}
.ws1_c00111{word-spacing:-29.700000px;}
.ws4_c00111{word-spacing:-24.060000px;}
.ws2_c00111{word-spacing:-23.760000px;}
.ws0_c00111{word-spacing:-14.160000px;}
.ws5_c00111{word-spacing:-4.755000px;}
.ws6_c00111{word-spacing:0.000000px;}
._22_c00111{margin-left:-25.560000px;}
._1a_c00111{margin-left:-20.262000px;}
._29_c00111{margin-left:-15.720000px;}
._a_c00111{margin-left:-13.857000px;}
._9_c00111{margin-left:-11.400000px;}
._11_c00111{margin-left:-10.101000px;}
._f_c00111{margin-left:-8.901000px;}
._1f_c00111{margin-left:-7.560000px;}
._0_c00111{margin-left:-6.174000px;}
._8_c00111{margin-left:-4.980000px;}
._d_c00111{margin-left:-3.390000px;}
._b_c00111{margin-left:-2.295000px;}
._12_c00111{margin-left:-1.188000px;}
._1c_c00111{width:1.020000px;}
._7_c00111{width:2.040000px;}
._5_c00111{width:3.780000px;}
._6_c00111{width:5.505000px;}
._2_c00111{width:6.867000px;}
._3_c00111{width:8.568000px;}
._4_c00111{width:10.521000px;}
._13_c00111{width:11.748000px;}
._1b_c00111{width:13.080000px;}
._21_c00111{width:14.280000px;}
._1d_c00111{width:15.540000px;}
._14_c00111{width:16.779000px;}
._27_c00111{width:17.889000px;}
._c_c00111{width:20.940000px;}
._15_c00111{width:22.272000px;}
._2b_c00111{width:24.168000px;}
._10_c00111{width:26.079000px;}
._20_c00111{width:28.095000px;}
._25_c00111{width:30.420000px;}
._2e_c00111{width:31.815000px;}
._24_c00111{width:32.880000px;}
._19_c00111{width:34.590000px;}
._28_c00111{width:35.982000px;}
._2f_c00111{width:37.206000px;}
._17_c00111{width:39.060000px;}
._16_c00111{width:40.812000px;}
._23_c00111{width:59.670000px;}
._1e_c00111{width:82.692000px;}
._26_c00111{width:85.410000px;}
._2c_c00111{width:99.342000px;}
._2d_c00111{width:103.641000px;}
._18_c00111{width:145.275000px;}
._2a_c00111{width:163.440000px;}
._e_c00111{width:166.470000px;}
._1_c00111{width:335.349000px;}
.fc2_c00111{color:transparent;}
.fc1_c00111{color:rgb(128,128,128);}
.fc0_c00111{color:rgb(0,0,0);}
.fs4_c00111{font-size:45.000000px;}
.fs3_c00111{font-size:48.000000px;}
.fs1_c00111{font-size:60.000000px;}
.fs0_c00111{font-size:63.000000px;}
.fs2_c00111{font-size:66.000000px;}
.y0_c00111{bottom:0.000000px;}
.y53_c00111{bottom:3.105000px;}
.y52_c00111{bottom:7.228369px;}
.y51_c00111{bottom:56.970000px;}
.y29_c00111{bottom:75.870000px;}
.y50_c00111{bottom:76.920000px;}
.y28_c00111{bottom:95.070000px;}
.y4f_c00111{bottom:95.820000px;}
.y27_c00111{bottom:113.070000px;}
.y4e_c00111{bottom:114.120000px;}
.y26_c00111{bottom:131.970000px;}
.y4d_c00111{bottom:132.270000px;}
.y25_c00111{bottom:149.820000px;}
.y4c_c00111{bottom:150.570000px;}
.y24_c00111{bottom:168.420000px;}
.y4b_c00111{bottom:169.020000px;}
.y4a_c00111{bottom:185.970000px;}
.y23_c00111{bottom:186.270000px;}
.y49_c00111{bottom:204.420000px;}
.y22_c00111{bottom:204.870000px;}
.y48_c00111{bottom:222.420000px;}
.y21_c00111{bottom:223.320000px;}
.y20_c00111{bottom:241.620000px;}
.y47_c00111{bottom:259.470000px;}
.y1f_c00111{bottom:259.770000px;}
.y46_c00111{bottom:277.470000px;}
.y1e_c00111{bottom:277.770000px;}
.y45_c00111{bottom:295.320000px;}
.y1d_c00111{bottom:296.670000px;}
.y44_c00111{bottom:313.920000px;}
.y1c_c00111{bottom:315.570000px;}
.y43_c00111{bottom:331.470000px;}
.y1b_c00111{bottom:333.720000px;}
.y42_c00111{bottom:348.270000px;}
.y1a_c00111{bottom:353.070000px;}
.y41_c00111{bottom:368.220000px;}
.y19_c00111{bottom:369.870000px;}
.y40_c00111{bottom:385.470000px;}
.y18_c00111{bottom:388.470000px;}
.y3f_c00111{bottom:405.270000px;}
.y17_c00111{bottom:406.620000px;}
.y3e_c00111{bottom:421.770000px;}
.y16_c00111{bottom:425.220000px;}
.y3d_c00111{bottom:441.120000px;}
.y15_c00111{bottom:442.170000px;}
.y3c_c00111{bottom:459.720000px;}
.y14_c00111{bottom:460.920000px;}
.y3b_c00111{bottom:477.870000px;}
.y13_c00111{bottom:478.170000px;}
.y3a_c00111{bottom:494.670000px;}
.y12_c00111{bottom:496.470000px;}
.y39_c00111{bottom:513.570000px;}
.y11_c00111{bottom:516.270000px;}
.y38_c00111{bottom:531.570000px;}
.y10_c00111{bottom:532.470000px;}
.y37_c00111{bottom:549.720000px;}
.yf_c00111{bottom:551.370000px;}
.y36_c00111{bottom:567.720000px;}
.ye_c00111{bottom:569.070000px;}
.y35_c00111{bottom:586.170000px;}
.yd_c00111{bottom:587.820000px;}
.yc_c00111{bottom:603.720000px;}
.y34_c00111{bottom:604.020000px;}
.y33_c00111{bottom:621.720000px;}
.yb_c00111{bottom:624.420000px;}
.y32_c00111{bottom:639.570000px;}
.ya_c00111{bottom:640.620000px;}
.y31_c00111{bottom:658.170000px;}
.y9_c00111{bottom:658.770000px;}
.y8_c00111{bottom:676.920000px;}
.y30_c00111{bottom:695.220000px;}
.y7_c00111{bottom:695.820000px;}
.y2f_c00111{bottom:711.720000px;}
.y6_c00111{bottom:713.520000px;}
.y2e_c00111{bottom:731.370000px;}
.y5_c00111{bottom:731.670000px;}
.y2d_c00111{bottom:749.520000px;}
.y4_c00111{bottom:750.270000px;}
.y2c_c00111{bottom:766.470000px;}
.y3_c00111{bottom:767.820000px;}
.y2b_c00111{bottom:784.920000px;}
.y2_c00111{bottom:786.270000px;}
.y1_c00111{bottom:805.620000px;}
.y2a_c00111{bottom:808.620000px;}
.h7_c00111{height:13.200073px;}
.h8_c00111{height:43.804688px;}
.h6_c00111{height:47.160000px;}
.h3_c00111{height:62.880000px;}
.h5_c00111{height:64.020000px;}
.h2_c00111{height:66.024000px;}
.h4_c00111{height:69.168000px;}
.h1_c00111{height:844.500000px;}
.h0_c00111{height:844.800000px;}
.w2_c00111{width:104.875500px;}
.w0_c00111{width:582.675000px;}
.w1_c00111{width:582.750000px;}
.x0_c00111{left:0.000000px;}
.x5_c00111{left:45.900000px;}
.x7_c00111{left:61.800000px;}
.xc_c00111{left:65.100000px;}
.xb_c00111{left:80.400000px;}
.xe_c00111{left:82.050000px;}
.x2_c00111{left:99.600000px;}
.x8_c00111{left:101.250000px;}
.x3_c00111{left:109.650000px;}
.x4_c00111{left:110.700000px;}
.x6_c00111{left:111.750000px;}
.x1_c00111{left:112.950000px;}
.x9_c00111{left:114.450000px;}
.xa_c00111{left:115.500000px;}
.xd_c00111{left:116.550000px;}
.xf_c00111{left:117.750000px;}
.x19_c00111{left:243.151749px;}
.x13_c00111{left:324.450000px;}
.x11_c00111{left:326.100000px;}
.x12_c00111{left:327.150000px;}
.x14_c00111{left:328.350000px;}
.x15_c00111{left:329.400000px;}
.x16_c00111{left:330.450000px;}
.x10_c00111{left:331.800000px;}
.x17_c00111{left:344.700000px;}
.x18_c00111{left:486.450000px;}
@media print{
.v0_c00111{vertical-align:0.000000pt;}
.lsd_c00111{letter-spacing:-5.333333pt;}
.lsb_c00111{letter-spacing:0.000000pt;}
.ls2_c00111{letter-spacing:0.426667pt;}
.ls7_c00111{letter-spacing:1.893333pt;}
.ls0_c00111{letter-spacing:2.666667pt;}
.ls9_c00111{letter-spacing:2.960000pt;}
.ls5_c00111{letter-spacing:5.173333pt;}
.ls3_c00111{letter-spacing:5.333333pt;}
.ls6_c00111{letter-spacing:6.880000pt;}
.ls1_c00111{letter-spacing:8.000000pt;}
.lsa_c00111{letter-spacing:10.666667pt;}
.ls8_c00111{letter-spacing:11.853333pt;}
.lsc_c00111{letter-spacing:13.333333pt;}
.ls4_c00111{letter-spacing:21.373333pt;}
.ws3_c00111{word-spacing:-28.821333pt;}
.ws1_c00111{word-spacing:-26.400000pt;}
.ws4_c00111{word-spacing:-21.386667pt;}
.ws2_c00111{word-spacing:-21.120000pt;}
.ws0_c00111{word-spacing:-12.586667pt;}
.ws5_c00111{word-spacing:-4.226667pt;}
.ws6_c00111{word-spacing:0.000000pt;}
._22_c00111{margin-left:-22.720000pt;}
._1a_c00111{margin-left:-18.010667pt;}
._29_c00111{margin-left:-13.973333pt;}
._a_c00111{margin-left:-12.317333pt;}
._9_c00111{margin-left:-10.133333pt;}
._11_c00111{margin-left:-8.978667pt;}
._f_c00111{margin-left:-7.912000pt;}
._1f_c00111{margin-left:-6.720000pt;}
._0_c00111{margin-left:-5.488000pt;}
._8_c00111{margin-left:-4.426667pt;}
._d_c00111{margin-left:-3.013333pt;}
._b_c00111{margin-left:-2.040000pt;}
._12_c00111{margin-left:-1.056000pt;}
._1c_c00111{width:0.906667pt;}
._7_c00111{width:1.813333pt;}
._5_c00111{width:3.360000pt;}
._6_c00111{width:4.893333pt;}
._2_c00111{width:6.104000pt;}
._3_c00111{width:7.616000pt;}
._4_c00111{width:9.352000pt;}
._13_c00111{width:10.442667pt;}
._1b_c00111{width:11.626667pt;}
._21_c00111{width:12.693333pt;}
._1d_c00111{width:13.813333pt;}
._14_c00111{width:14.914667pt;}
._27_c00111{width:15.901333pt;}
._c_c00111{width:18.613333pt;}
._15_c00111{width:19.797333pt;}
._2b_c00111{width:21.482667pt;}
._10_c00111{width:23.181333pt;}
._20_c00111{width:24.973333pt;}
._25_c00111{width:27.040000pt;}
._2e_c00111{width:28.280000pt;}
._24_c00111{width:29.226667pt;}
._19_c00111{width:30.746667pt;}
._28_c00111{width:31.984000pt;}
._2f_c00111{width:33.072000pt;}
._17_c00111{width:34.720000pt;}
._16_c00111{width:36.277333pt;}
._23_c00111{width:53.040000pt;}
._1e_c00111{width:73.504000pt;}
._26_c00111{width:75.920000pt;}
._2c_c00111{width:88.304000pt;}
._2d_c00111{width:92.125333pt;}
._18_c00111{width:129.133333pt;}
._2a_c00111{width:145.280000pt;}
._e_c00111{width:147.973333pt;}
._1_c00111{width:298.088000pt;}
.fs4_c00111{font-size:40.000000pt;}
.fs3_c00111{font-size:42.666667pt;}
.fs1_c00111{font-size:53.333333pt;}
.fs0_c00111{font-size:56.000000pt;}
.fs2_c00111{font-size:58.666667pt;}
.y0_c00111{bottom:0.000000pt;}
.y53_c00111{bottom:2.760000pt;}
.y52_c00111{bottom:6.425217pt;}
.y51_c00111{bottom:50.640000pt;}
.y29_c00111{bottom:67.440000pt;}
.y50_c00111{bottom:68.373333pt;}
.y28_c00111{bottom:84.506667pt;}
.y4f_c00111{bottom:85.173333pt;}
.y27_c00111{bottom:100.506667pt;}
.y4e_c00111{bottom:101.440000pt;}
.y26_c00111{bottom:117.306667pt;}
.y4d_c00111{bottom:117.573333pt;}
.y25_c00111{bottom:133.173333pt;}
.y4c_c00111{bottom:133.840000pt;}
.y24_c00111{bottom:149.706667pt;}
.y4b_c00111{bottom:150.240000pt;}
.y4a_c00111{bottom:165.306667pt;}
.y23_c00111{bottom:165.573333pt;}
.y49_c00111{bottom:181.706667pt;}
.y22_c00111{bottom:182.106667pt;}
.y48_c00111{bottom:197.706667pt;}
.y21_c00111{bottom:198.506667pt;}
.y20_c00111{bottom:214.773333pt;}
.y47_c00111{bottom:230.640000pt;}
.y1f_c00111{bottom:230.906667pt;}
.y46_c00111{bottom:246.640000pt;}
.y1e_c00111{bottom:246.906667pt;}
.y45_c00111{bottom:262.506667pt;}
.y1d_c00111{bottom:263.706667pt;}
.y44_c00111{bottom:279.040000pt;}
.y1c_c00111{bottom:280.506667pt;}
.y43_c00111{bottom:294.640000pt;}
.y1b_c00111{bottom:296.640000pt;}
.y42_c00111{bottom:309.573333pt;}
.y1a_c00111{bottom:313.840000pt;}
.y41_c00111{bottom:327.306667pt;}
.y19_c00111{bottom:328.773333pt;}
.y40_c00111{bottom:342.640000pt;}
.y18_c00111{bottom:345.306667pt;}
.y3f_c00111{bottom:360.240000pt;}
.y17_c00111{bottom:361.440000pt;}
.y3e_c00111{bottom:374.906667pt;}
.y16_c00111{bottom:377.973333pt;}
.y3d_c00111{bottom:392.106667pt;}
.y15_c00111{bottom:393.040000pt;}
.y3c_c00111{bottom:408.640000pt;}
.y14_c00111{bottom:409.706667pt;}
.y3b_c00111{bottom:424.773333pt;}
.y13_c00111{bottom:425.040000pt;}
.y3a_c00111{bottom:439.706667pt;}
.y12_c00111{bottom:441.306667pt;}
.y39_c00111{bottom:456.506667pt;}
.y11_c00111{bottom:458.906667pt;}
.y38_c00111{bottom:472.506667pt;}
.y10_c00111{bottom:473.306667pt;}
.y37_c00111{bottom:488.640000pt;}
.yf_c00111{bottom:490.106667pt;}
.y36_c00111{bottom:504.640000pt;}
.ye_c00111{bottom:505.840000pt;}
.y35_c00111{bottom:521.040000pt;}
.yd_c00111{bottom:522.506667pt;}
.yc_c00111{bottom:536.640000pt;}
.y34_c00111{bottom:536.906667pt;}
.y33_c00111{bottom:552.640000pt;}
.yb_c00111{bottom:555.040000pt;}
.y32_c00111{bottom:568.506667pt;}
.ya_c00111{bottom:569.440000pt;}
.y31_c00111{bottom:585.040000pt;}
.y9_c00111{bottom:585.573333pt;}
.y8_c00111{bottom:601.706667pt;}
.y30_c00111{bottom:617.973333pt;}
.y7_c00111{bottom:618.506667pt;}
.y2f_c00111{bottom:632.640000pt;}
.y6_c00111{bottom:634.240000pt;}
.y2e_c00111{bottom:650.106667pt;}
.y5_c00111{bottom:650.373333pt;}
.y2d_c00111{bottom:666.240000pt;}
.y4_c00111{bottom:666.906667pt;}
.y2c_c00111{bottom:681.306667pt;}
.y3_c00111{bottom:682.506667pt;}
.y2b_c00111{bottom:697.706667pt;}
.y2_c00111{bottom:698.906667pt;}
.y1_c00111{bottom:716.106667pt;}
.y2a_c00111{bottom:718.773333pt;}
.h7_c00111{height:11.733399pt;}
.h8_c00111{height:38.937500pt;}
.h6_c00111{height:41.920000pt;}
.h3_c00111{height:55.893333pt;}
.h5_c00111{height:56.906667pt;}
.h2_c00111{height:58.688000pt;}
.h4_c00111{height:61.482667pt;}
.h1_c00111{height:750.666667pt;}
.h0_c00111{height:750.933333pt;}
.w2_c00111{width:93.222667pt;}
.w0_c00111{width:517.933333pt;}
.w1_c00111{width:518.000000pt;}
.x0_c00111{left:0.000000pt;}
.x5_c00111{left:40.800000pt;}
.x7_c00111{left:54.933333pt;}
.xc_c00111{left:57.866667pt;}
.xb_c00111{left:71.466667pt;}
.xe_c00111{left:72.933333pt;}
.x2_c00111{left:88.533333pt;}
.x8_c00111{left:90.000000pt;}
.x3_c00111{left:97.466667pt;}
.x4_c00111{left:98.400000pt;}
.x6_c00111{left:99.333333pt;}
.x1_c00111{left:100.400000pt;}
.x9_c00111{left:101.733333pt;}
.xa_c00111{left:102.666667pt;}
.xd_c00111{left:103.600000pt;}
.xf_c00111{left:104.666667pt;}
.x19_c00111{left:216.134888pt;}
.x13_c00111{left:288.400000pt;}
.x11_c00111{left:289.866667pt;}
.x12_c00111{left:290.800000pt;}
.x14_c00111{left:291.866667pt;}
.x15_c00111{left:292.800000pt;}
.x16_c00111{left:293.733333pt;}
.x10_c00111{left:294.933333pt;}
.x17_c00111{left:306.400000pt;}
.x18_c00111{left:432.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9a8d8c6685933e9612324d5d.woff2')format("woff");}.ff1_c00112{font-family:ff1_c00112;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00112;src:url('chunks/assets/font_897832e014e1983463382364.woff2')format("woff");}.ff2_c00112{font-family:ff2_c00112;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00112;src:url('chunks/assets/font_d5fd470a493595a61666f726.woff2')format("woff");}.ff3_c00112{font-family:ff3_c00112;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00112;src:url('chunks/assets/font_7ff8036291a8add4bb8d75f4.woff2')format("woff");}.ff4_c00112{font-family:ff4_c00112;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00112;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff5_c00112{font-family:ff5_c00112;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00112{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00112{vertical-align:0.000000px;}
.ls2_c00112{letter-spacing:0.000000px;}
.ls1_c00112{letter-spacing:0.900000px;}
.ls0_c00112{letter-spacing:3.000000px;}
.ls3_c00112{letter-spacing:6.000000px;}
.ls4_c00112{letter-spacing:12.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;}
}
.ws1_c00112{word-spacing:-35.295000px;}
.ws2_c00112{word-spacing:-27.060000px;}
.ws0_c00112{word-spacing:-14.160000px;}
.ws3_c00112{word-spacing:0.000000px;}
._2c_c00112{margin-left:-28.404000px;}
._2e_c00112{margin-left:-14.637000px;}
._30_c00112{margin-left:-12.009000px;}
._1a_c00112{margin-left:-10.023000px;}
._26_c00112{margin-left:-8.964000px;}
._6_c00112{margin-left:-7.371000px;}
._14_c00112{margin-left:-5.802000px;}
._f_c00112{margin-left:-4.698000px;}
._13_c00112{margin-left:-3.600000px;}
._9_c00112{margin-left:-2.520000px;}
._12_c00112{margin-left:-1.380000px;}
._8_c00112{width:1.140000px;}
._1_c00112{width:3.000000px;}
._3_c00112{width:4.401000px;}
._0_c00112{width:5.580000px;}
._4_c00112{width:7.182000px;}
._e_c00112{width:8.664000px;}
._7_c00112{width:10.077000px;}
._a_c00112{width:11.340000px;}
._d_c00112{width:13.140000px;}
._11_c00112{width:14.958000px;}
._20_c00112{width:16.275000px;}
._15_c00112{width:18.519000px;}
._1e_c00112{width:19.800000px;}
._16_c00112{width:21.378000px;}
._1f_c00112{width:22.800000px;}
._1c_c00112{width:24.180000px;}
._c_c00112{width:25.560000px;}
._19_c00112{width:27.420000px;}
._18_c00112{width:29.445000px;}
._17_c00112{width:31.503000px;}
._1d_c00112{width:32.802000px;}
._2_c00112{width:34.068000px;}
._21_c00112{width:35.352000px;}
._32_c00112{width:48.600000px;}
._2a_c00112{width:51.414000px;}
._2b_c00112{width:52.428000px;}
._2f_c00112{width:54.060000px;}
._28_c00112{width:56.382000px;}
._2d_c00112{width:57.540000px;}
._b_c00112{width:61.578000px;}
._22_c00112{width:69.333000px;}
._1b_c00112{width:71.340000px;}
._27_c00112{width:73.320000px;}
._23_c00112{width:74.439000px;}
._29_c00112{width:79.440000px;}
._25_c00112{width:84.801000px;}
._10_c00112{width:94.956000px;}
._24_c00112{width:114.747000px;}
._31_c00112{width:280.587000px;}
._5_c00112{width:405.780000px;}
.fc2_c00112{color:transparent;}
.fc1_c00112{color:rgb(128,128,128);}
.fc0_c00112{color:rgb(0,0,0);}
.fs1_c00112{font-size:45.000000px;}
.fs4_c00112{font-size:48.000000px;}
.fs3_c00112{font-size:57.000000px;}
.fs0_c00112{font-size:60.000000px;}
.fs2_c00112{font-size:63.000000px;}
.y0_c00112{bottom:0.000000px;}
.y45_c00112{bottom:3.105000px;}
.y44_c00112{bottom:7.228357px;}
.y43_c00112{bottom:59.430000px;}
.y42_c00112{bottom:78.330000px;}
.y41_c00112{bottom:94.830000px;}
.y40_c00112{bottom:113.730000px;}
.y3f_c00112{bottom:132.030000px;}
.y3e_c00112{bottom:149.280000px;}
.y3d_c00112{bottom:167.130000px;}
.y3c_c00112{bottom:185.580000px;}
.y3b_c00112{bottom:203.280000px;}
.y3a_c00112{bottom:222.180000px;}
.y39_c00112{bottom:241.080000px;}
.y38_c00112{bottom:258.180000px;}
.y37_c00112{bottom:276.480000px;}
.y36_c00112{bottom:294.330000px;}
.y35_c00112{bottom:311.130000px;}
.y2c_c00112{bottom:330.030000px;}
.y34_c00112{bottom:330.780000px;}
.y2b_c00112{bottom:348.030000px;}
.y33_c00112{bottom:348.330000px;}
.y2a_c00112{bottom:365.580000px;}
.y32_c00112{bottom:366.630000px;}
.y29_c00112{bottom:384.030000px;}
.y31_c00112{bottom:384.780000px;}
.y28_c00112{bottom:401.730000px;}
.y30_c00112{bottom:402.030000px;}
.y27_c00112{bottom:419.880000px;}
.y2f_c00112{bottom:420.180000px;}
.y2e_c00112{bottom:438.030000px;}
.y26_c00112{bottom:438.480000px;}
.y25_c00112{bottom:456.030000px;}
.y2d_c00112{bottom:473.580000px;}
.y24_c00112{bottom:474.180000px;}
.y23_c00112{bottom:491.130000px;}
.y13_c00112{bottom:508.230000px;}
.y22_c00112{bottom:509.730000px;}
.y12_c00112{bottom:526.830000px;}
.y21_c00112{bottom:527.580000px;}
.y11_c00112{bottom:544.080000px;}
.y20_c00112{bottom:546.030000px;}
.y10_c00112{bottom:562.680000px;}
.y1f_c00112{bottom:564.030000px;}
.yf_c00112{bottom:580.230000px;}
.y1e_c00112{bottom:582.480000px;}
.ye_c00112{bottom:598.380000px;}
.y1d_c00112{bottom:600.030000px;}
.yd_c00112{bottom:616.380000px;}
.y1c_c00112{bottom:618.030000px;}
.yc_c00112{bottom:634.530000px;}
.y1b_c00112{bottom:635.880000px;}
.yb_c00112{bottom:651.780000px;}
.y1a_c00112{bottom:654.030000px;}
.ya_c00112{bottom:669.930000px;}
.y19_c00112{bottom:672.330000px;}
.y9_c00112{bottom:688.530000px;}
.y18_c00112{bottom:689.880000px;}
.y8_c00112{bottom:706.830000px;}
.y17_c00112{bottom:708.030000px;}
.y7_c00112{bottom:724.680000px;}
.y16_c00112{bottom:725.730000px;}
.y2_c00112{bottom:737.730000px;}
.y6_c00112{bottom:742.830000px;}
.y15_c00112{bottom:744.630000px;}
.y5_c00112{bottom:761.730000px;}
.y14_c00112{bottom:762.480000px;}
.y1_c00112{bottom:774.180000px;}
.y4_c00112{bottom:779.280000px;}
.y3_c00112{bottom:799.230000px;}
.h5_c00112{height:13.200074px;}
.h6_c00112{height:43.804688px;}
.h4_c00112{height:59.736000px;}
.h2_c00112{height:62.880000px;}
.h3_c00112{height:66.024000px;}
.h1_c00112{height:845.250000px;}
.h0_c00112{height:845.400000px;}
.w2_c00112{width:104.875500px;}
.w0_c00112{width:578.100000px;}
.w1_c00112{width:578.250000px;}
.x0_c00112{left:0.000000px;}
.x1_c00112{left:15.150000px;}
.x2_c00112{left:16.650000px;}
.xd_c00112{left:74.250000px;}
.x5_c00112{left:75.300000px;}
.x6_c00112{left:76.350000px;}
.x4_c00112{left:78.000000px;}
.x8_c00112{left:79.350000px;}
.x7_c00112{left:80.550000px;}
.xc_c00112{left:93.600000px;}
.xb_c00112{left:150.150000px;}
.x3_c00112{left:214.200000px;}
.xe_c00112{left:240.864258px;}
.x9_c00112{left:289.800000px;}
.xa_c00112{left:291.600000px;}
@media print{
.v0_c00112{vertical-align:0.000000pt;}
.ls2_c00112{letter-spacing:0.000000pt;}
.ls1_c00112{letter-spacing:0.800000pt;}
.ls0_c00112{letter-spacing:2.666667pt;}
.ls3_c00112{letter-spacing:5.333333pt;}
.ls4_c00112{letter-spacing:10.666667pt;}
.ws1_c00112{word-spacing:-31.373333pt;}
.ws2_c00112{word-spacing:-24.053333pt;}
.ws0_c00112{word-spacing:-12.586667pt;}
.ws3_c00112{word-spacing:0.000000pt;}
._2c_c00112{margin-left:-25.248000pt;}
._2e_c00112{margin-left:-13.010667pt;}
._30_c00112{margin-left:-10.674667pt;}
._1a_c00112{margin-left:-8.909333pt;}
._26_c00112{margin-left:-7.968000pt;}
._6_c00112{margin-left:-6.552000pt;}
._14_c00112{margin-left:-5.157333pt;}
._f_c00112{margin-left:-4.176000pt;}
._13_c00112{margin-left:-3.200000pt;}
._9_c00112{margin-left:-2.240000pt;}
._12_c00112{margin-left:-1.226667pt;}
._8_c00112{width:1.013333pt;}
._1_c00112{width:2.666667pt;}
._3_c00112{width:3.912000pt;}
._0_c00112{width:4.960000pt;}
._4_c00112{width:6.384000pt;}
._e_c00112{width:7.701333pt;}
._7_c00112{width:8.957333pt;}
._a_c00112{width:10.080000pt;}
._d_c00112{width:11.680000pt;}
._11_c00112{width:13.296000pt;}
._20_c00112{width:14.466667pt;}
._15_c00112{width:16.461333pt;}
._1e_c00112{width:17.600000pt;}
._16_c00112{width:19.002667pt;}
._1f_c00112{width:20.266667pt;}
._1c_c00112{width:21.493333pt;}
._c_c00112{width:22.720000pt;}
._19_c00112{width:24.373333pt;}
._18_c00112{width:26.173333pt;}
._17_c00112{width:28.002667pt;}
._1d_c00112{width:29.157333pt;}
._2_c00112{width:30.282667pt;}
._21_c00112{width:31.424000pt;}
._32_c00112{width:43.200000pt;}
._2a_c00112{width:45.701333pt;}
._2b_c00112{width:46.602667pt;}
._2f_c00112{width:48.053333pt;}
._28_c00112{width:50.117333pt;}
._2d_c00112{width:51.146667pt;}
._b_c00112{width:54.736000pt;}
._22_c00112{width:61.629333pt;}
._1b_c00112{width:63.413333pt;}
._27_c00112{width:65.173333pt;}
._23_c00112{width:66.168000pt;}
._29_c00112{width:70.613333pt;}
._25_c00112{width:75.378667pt;}
._10_c00112{width:84.405333pt;}
._24_c00112{width:101.997333pt;}
._31_c00112{width:249.410667pt;}
._5_c00112{width:360.693333pt;}
.fs1_c00112{font-size:40.000000pt;}
.fs4_c00112{font-size:42.666667pt;}
.fs3_c00112{font-size:50.666667pt;}
.fs0_c00112{font-size:53.333333pt;}
.fs2_c00112{font-size:56.000000pt;}
.y0_c00112{bottom:0.000000pt;}
.y45_c00112{bottom:2.760000pt;}
.y44_c00112{bottom:6.425206pt;}
.y43_c00112{bottom:52.826667pt;}
.y42_c00112{bottom:69.626667pt;}
.y41_c00112{bottom:84.293333pt;}
.y40_c00112{bottom:101.093333pt;}
.y3f_c00112{bottom:117.360000pt;}
.y3e_c00112{bottom:132.693333pt;}
.y3d_c00112{bottom:148.560000pt;}
.y3c_c00112{bottom:164.960000pt;}
.y3b_c00112{bottom:180.693333pt;}
.y3a_c00112{bottom:197.493333pt;}
.y39_c00112{bottom:214.293333pt;}
.y38_c00112{bottom:229.493333pt;}
.y37_c00112{bottom:245.760000pt;}
.y36_c00112{bottom:261.626667pt;}
.y35_c00112{bottom:276.560000pt;}
.y2c_c00112{bottom:293.360000pt;}
.y34_c00112{bottom:294.026667pt;}
.y2b_c00112{bottom:309.360000pt;}
.y33_c00112{bottom:309.626667pt;}
.y2a_c00112{bottom:324.960000pt;}
.y32_c00112{bottom:325.893333pt;}
.y29_c00112{bottom:341.360000pt;}
.y31_c00112{bottom:342.026667pt;}
.y28_c00112{bottom:357.093333pt;}
.y30_c00112{bottom:357.360000pt;}
.y27_c00112{bottom:373.226667pt;}
.y2f_c00112{bottom:373.493333pt;}
.y2e_c00112{bottom:389.360000pt;}
.y26_c00112{bottom:389.760000pt;}
.y25_c00112{bottom:405.360000pt;}
.y2d_c00112{bottom:420.960000pt;}
.y24_c00112{bottom:421.493333pt;}
.y23_c00112{bottom:436.560000pt;}
.y13_c00112{bottom:451.760000pt;}
.y22_c00112{bottom:453.093333pt;}
.y12_c00112{bottom:468.293333pt;}
.y21_c00112{bottom:468.960000pt;}
.y11_c00112{bottom:483.626667pt;}
.y20_c00112{bottom:485.360000pt;}
.y10_c00112{bottom:500.160000pt;}
.y1f_c00112{bottom:501.360000pt;}
.yf_c00112{bottom:515.760000pt;}
.y1e_c00112{bottom:517.760000pt;}
.ye_c00112{bottom:531.893333pt;}
.y1d_c00112{bottom:533.360000pt;}
.yd_c00112{bottom:547.893333pt;}
.y1c_c00112{bottom:549.360000pt;}
.yc_c00112{bottom:564.026667pt;}
.y1b_c00112{bottom:565.226667pt;}
.yb_c00112{bottom:579.360000pt;}
.y1a_c00112{bottom:581.360000pt;}
.ya_c00112{bottom:595.493333pt;}
.y19_c00112{bottom:597.626667pt;}
.y9_c00112{bottom:612.026667pt;}
.y18_c00112{bottom:613.226667pt;}
.y8_c00112{bottom:628.293333pt;}
.y17_c00112{bottom:629.360000pt;}
.y7_c00112{bottom:644.160000pt;}
.y16_c00112{bottom:645.093333pt;}
.y2_c00112{bottom:655.760000pt;}
.y6_c00112{bottom:660.293333pt;}
.y15_c00112{bottom:661.893333pt;}
.y5_c00112{bottom:677.093333pt;}
.y14_c00112{bottom:677.760000pt;}
.y1_c00112{bottom:688.160000pt;}
.y4_c00112{bottom:692.693333pt;}
.y3_c00112{bottom:710.426667pt;}
.h5_c00112{height:11.733399pt;}
.h6_c00112{height:38.937500pt;}
.h4_c00112{height:53.098667pt;}
.h2_c00112{height:55.893333pt;}
.h3_c00112{height:58.688000pt;}
.h1_c00112{height:751.333333pt;}
.h0_c00112{height:751.466667pt;}
.w2_c00112{width:93.222667pt;}
.w0_c00112{width:513.866667pt;}
.w1_c00112{width:514.000000pt;}
.x0_c00112{left:0.000000pt;}
.x1_c00112{left:13.466667pt;}
.x2_c00112{left:14.800000pt;}
.xd_c00112{left:66.000000pt;}
.x5_c00112{left:66.933333pt;}
.x6_c00112{left:67.866667pt;}
.x4_c00112{left:69.333333pt;}
.x8_c00112{left:70.533333pt;}
.x7_c00112{left:71.600000pt;}
.xc_c00112{left:83.200000pt;}
.xb_c00112{left:133.466667pt;}
.x3_c00112{left:190.400000pt;}
.xe_c00112{left:214.101563pt;}
.x9_c00112{left:257.600000pt;}
.xa_c00112{left:259.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_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_10aab4742ffb0b8b3a6b7b62.woff2')format("woff");}.ff1_c00113{font-family:ff1_c00113;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00113;src:url('chunks/assets/font_f2aecabfbe710e1938d7c25e.woff2')format("woff");}.ff2_c00113{font-family:ff2_c00113;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00113;src:url('chunks/assets/font_36bca1013d9209805a12fc20.woff2')format("woff");}.ff3_c00113{font-family:ff3_c00113;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00113;src:url('chunks/assets/font_e2a98abe7a3c711731101f0a.woff2')format("woff");}.ff4_c00113{font-family:ff4_c00113;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00113;src:url('chunks/assets/font_97edc82e1ba6e853e16baa64.woff2')format("woff");}.ff5_c00113{font-family:ff5_c00113;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00113;src:url('chunks/assets/font_d811d2cca98d6421c57f611e.woff2')format("woff");}.ff6_c00113{font-family:ff6_c00113;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00113;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff7_c00113{font-family:ff7_c00113;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00113{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00113{vertical-align:0.000000px;}
.v1_c00113{vertical-align:3.000000px;}
.lsc_c00113{letter-spacing:0.000000px;}
.lsb_c00113{letter-spacing:2.400000px;}
.ls0_c00113{letter-spacing:3.000000px;}
.lse_c00113{letter-spacing:6.000000px;}
.ls7_c00113{letter-spacing:6.600000px;}
.lsa_c00113{letter-spacing:6.621000px;}
.ls4_c00113{letter-spacing:6.645000px;}
.ls5_c00113{letter-spacing:7.800000px;}
.ls3_c00113{letter-spacing:9.600000px;}
.lsd_c00113{letter-spacing:12.000000px;}
.ls8_c00113{letter-spacing:21.645000px;}
.ls6_c00113{letter-spacing:22.845000px;}
.ls1_c00113{letter-spacing:23.340000px;}
.ls9_c00113{letter-spacing:48.045000px;}
.ls2_c00113{letter-spacing:97.740000px;}
.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;}
}
.ws3_c00113{word-spacing:-33.084000px;}
.ws4_c00113{word-spacing:-18.060000px;}
.ws1_c00113{word-spacing:-15.000000px;}
.ws0_c00113{word-spacing:-14.160000px;}
.ws2_c00113{word-spacing:-4.620000px;}
.ws5_c00113{word-spacing:-4.020000px;}
.ws6_c00113{word-spacing:0.000000px;}
._26_c00113{margin-left:-27.120000px;}
._27_c00113{margin-left:-18.720000px;}
._1c_c00113{margin-left:-16.020000px;}
._0_c00113{margin-left:-14.820000px;}
._b_c00113{margin-left:-10.440000px;}
._18_c00113{margin-left:-9.000000px;}
._2_c00113{margin-left:-7.560000px;}
._8_c00113{margin-left:-6.360000px;}
._c_c00113{margin-left:-4.380000px;}
._6_c00113{margin-left:-2.460000px;}
._13_c00113{margin-left:-1.200000px;}
._d_c00113{width:1.080000px;}
._11_c00113{width:2.700000px;}
._a_c00113{width:4.020000px;}
._12_c00113{width:5.220000px;}
._15_c00113{width:6.540000px;}
._1a_c00113{width:8.340000px;}
._4_c00113{width:9.600000px;}
._5_c00113{width:10.740000px;}
._9_c00113{width:12.720000px;}
._17_c00113{width:14.040000px;}
._20_c00113{width:15.120000px;}
._7_c00113{width:16.200000px;}
._22_c00113{width:18.720000px;}
._1b_c00113{width:20.220000px;}
._f_c00113{width:22.200000px;}
._1e_c00113{width:23.880000px;}
._1d_c00113{width:25.140000px;}
._16_c00113{width:26.640000px;}
._19_c00113{width:27.960000px;}
._21_c00113{width:29.640000px;}
._25_c00113{width:30.660000px;}
._1f_c00113{width:32.340000px;}
._e_c00113{width:38.700000px;}
._10_c00113{width:40.260000px;}
._23_c00113{width:48.240000px;}
._24_c00113{width:63.600000px;}
._28_c00113{width:94.980000px;}
._14_c00113{width:151.920000px;}
._1_c00113{width:159.240000px;}
._3_c00113{width:247.440000px;}
.fc2_c00113{color:transparent;}
.fc1_c00113{color:rgb(128,128,128);}
.fc0_c00113{color:rgb(0,0,0);}
.fs3_c00113{font-size:45.000000px;}
.fs5_c00113{font-size:48.000000px;}
.fs0_c00113{font-size:60.000000px;}
.fs1_c00113{font-size:69.000000px;}
.fs4_c00113{font-size:72.000000px;}
.fs2_c00113{font-size:84.000000px;}
.y0_c00113{bottom:0.000000px;}
.y51_c00113{bottom:3.105000px;}
.y50_c00113{bottom:7.228355px;}
.y4f_c00113{bottom:40.485000px;}
.y27_c00113{bottom:56.235000px;}
.y4e_c00113{bottom:58.035000px;}
.y26_c00113{bottom:75.135000px;}
.y4d_c00113{bottom:76.635000px;}
.y25_c00113{bottom:93.435000px;}
.y4c_c00113{bottom:94.785000px;}
.y24_c00113{bottom:111.585000px;}
.y4b_c00113{bottom:111.735000px;}
.y23_c00113{bottom:130.185000px;}
.y4a_c00113{bottom:131.535000px;}
.y22_c00113{bottom:148.035000px;}
.y49_c00113{bottom:149.385000px;}
.y48_c00113{bottom:167.985000px;}
.y21_c00113{bottom:185.235000px;}
.y47_c00113{bottom:186.285000px;}
.y46_c00113{bottom:203.835000px;}
.y20_c00113{bottom:204.135000px;}
.y1f_c00113{bottom:222.735000px;}
.y45_c00113{bottom:240.285000px;}
.y1e_c00113{bottom:240.885000px;}
.y44_c00113{bottom:258.885000px;}
.y1d_c00113{bottom:274.935000px;}
.y43_c00113{bottom:277.035000px;}
.y42_c00113{bottom:295.335000px;}
.y1c_c00113{bottom:311.835000px;}
.y41_c00113{bottom:312.885000px;}
.y1b_c00113{bottom:331.035000px;}
.y40_c00113{bottom:348.585000px;}
.y1a_c00113{bottom:348.885000px;}
.y3f_c00113{bottom:366.135000px;}
.y19_c00113{bottom:367.485000px;}
.y3e_c00113{bottom:385.635000px;}
.y18_c00113{bottom:385.785000px;}
.y17_c00113{bottom:403.935000px;}
.y16_c00113{bottom:421.935000px;}
.y3d_c00113{bottom:422.085000px;}
.y3c_c00113{bottom:439.635000px;}
.y15_c00113{bottom:440.085000px;}
.y3b_c00113{bottom:457.335000px;}
.y14_c00113{bottom:458.235000px;}
.y3a_c00113{bottom:476.235000px;}
.y13_c00113{bottom:476.535000px;}
.y39_c00113{bottom:493.785000px;}
.y12_c00113{bottom:494.385000px;}
.y38_c00113{bottom:511.635000px;}
.y11_c00113{bottom:512.535000px;}
.y37_c00113{bottom:530.235000px;}
.y10_c00113{bottom:530.535000px;}
.y36_c00113{bottom:548.685000px;}
.yf_c00113{bottom:549.135000px;}
.ye_c00113{bottom:567.285000px;}
.y35_c00113{bottom:567.585000px;}
.y34_c00113{bottom:585.435000px;}
.yd_c00113{bottom:585.885000px;}
.y33_c00113{bottom:603.435000px;}
.yc_c00113{bottom:604.785000px;}
.y32_c00113{bottom:621.285000px;}
.yb_c00113{bottom:622.335000px;}
.y31_c00113{bottom:640.185000px;}
.ya_c00113{bottom:641.835000px;}
.y30_c00113{bottom:657.735000px;}
.y9_c00113{bottom:659.835000px;}
.y2f_c00113{bottom:675.585000px;}
.y8_c00113{bottom:678.585000px;}
.y2e_c00113{bottom:694.185000px;}
.y7_c00113{bottom:697.185000px;}
.y2d_c00113{bottom:712.035000px;}
.y6_c00113{bottom:715.185000px;}
.y2c_c00113{bottom:730.335000px;}
.y5_c00113{bottom:734.085000px;}
.y2b_c00113{bottom:748.935000px;}
.y4_c00113{bottom:751.635000px;}
.y2a_c00113{bottom:766.335000px;}
.y3_c00113{bottom:770.385000px;}
.y29_c00113{bottom:784.035000px;}
.y2_c00113{bottom:788.085000px;}
.y28_c00113{bottom:805.185000px;}
.y1_c00113{bottom:807.585000px;}
.h8_c00113{height:13.200074px;}
.h9_c00113{height:43.804688px;}
.h2_c00113{height:62.880000px;}
.h3_c00113{height:64.020000px;}
.h5_c00113{height:73.623000px;}
.h7_c00113{height:75.456000px;}
.h4_c00113{height:76.623000px;}
.h6_c00113{height:88.032000px;}
.h1_c00113{height:846.750000px;}
.h0_c00113{height:846.975000px;}
.w1_c00113{width:104.875500px;}
.w0_c00113{width:584.250000px;}
.x0_c00113{left:0.000000px;}
.x1_c00113{left:87.000000px;}
.x6_c00113{left:110.700000px;}
.x5_c00113{left:112.350000px;}
.x4_c00113{left:113.400000px;}
.x3_c00113{left:114.750000px;}
.xf_c00113{left:115.800000px;}
.xd_c00113{left:117.000000px;}
.x2_c00113{left:118.050000px;}
.xa_c00113{left:127.500000px;}
.x7_c00113{left:132.900000px;}
.xb_c00113{left:138.750000px;}
.x9_c00113{left:150.150000px;}
.xe_c00113{left:151.800000px;}
.xc_c00113{left:168.750000px;}
.x8_c00113{left:178.200000px;}
.x10_c00113{left:203.250000px;}
.x18_c00113{left:243.939240px;}
.x11_c00113{left:320.850000px;}
.x16_c00113{left:323.550000px;}
.x15_c00113{left:325.350000px;}
.x14_c00113{left:327.000000px;}
.x12_c00113{left:328.050000px;}
.x13_c00113{left:329.100000px;}
.x17_c00113{left:494.400000px;}
@media print{
.v0_c00113{vertical-align:0.000000pt;}
.v1_c00113{vertical-align:2.666667pt;}
.lsc_c00113{letter-spacing:0.000000pt;}
.lsb_c00113{letter-spacing:2.133333pt;}
.ls0_c00113{letter-spacing:2.666667pt;}
.lse_c00113{letter-spacing:5.333333pt;}
.ls7_c00113{letter-spacing:5.866667pt;}
.lsa_c00113{letter-spacing:5.885333pt;}
.ls4_c00113{letter-spacing:5.906667pt;}
.ls5_c00113{letter-spacing:6.933333pt;}
.ls3_c00113{letter-spacing:8.533333pt;}
.lsd_c00113{letter-spacing:10.666667pt;}
.ls8_c00113{letter-spacing:19.240000pt;}
.ls6_c00113{letter-spacing:20.306667pt;}
.ls1_c00113{letter-spacing:20.746667pt;}
.ls9_c00113{letter-spacing:42.706667pt;}
.ls2_c00113{letter-spacing:86.880000pt;}
.ws3_c00113{word-spacing:-29.408000pt;}
.ws4_c00113{word-spacing:-16.053333pt;}
.ws1_c00113{word-spacing:-13.333333pt;}
.ws0_c00113{word-spacing:-12.586667pt;}
.ws2_c00113{word-spacing:-4.106667pt;}
.ws5_c00113{word-spacing:-3.573333pt;}
.ws6_c00113{word-spacing:0.000000pt;}
._26_c00113{margin-left:-24.106667pt;}
._27_c00113{margin-left:-16.640000pt;}
._1c_c00113{margin-left:-14.240000pt;}
._0_c00113{margin-left:-13.173333pt;}
._b_c00113{margin-left:-9.280000pt;}
._18_c00113{margin-left:-8.000000pt;}
._2_c00113{margin-left:-6.720000pt;}
._8_c00113{margin-left:-5.653333pt;}
._c_c00113{margin-left:-3.893333pt;}
._6_c00113{margin-left:-2.186667pt;}
._13_c00113{margin-left:-1.066667pt;}
._d_c00113{width:0.960000pt;}
._11_c00113{width:2.400000pt;}
._a_c00113{width:3.573333pt;}
._12_c00113{width:4.640000pt;}
._15_c00113{width:5.813333pt;}
._1a_c00113{width:7.413333pt;}
._4_c00113{width:8.533333pt;}
._5_c00113{width:9.546667pt;}
._9_c00113{width:11.306667pt;}
._17_c00113{width:12.480000pt;}
._20_c00113{width:13.440000pt;}
._7_c00113{width:14.400000pt;}
._22_c00113{width:16.640000pt;}
._1b_c00113{width:17.973333pt;}
._f_c00113{width:19.733333pt;}
._1e_c00113{width:21.226667pt;}
._1d_c00113{width:22.346667pt;}
._16_c00113{width:23.680000pt;}
._19_c00113{width:24.853333pt;}
._21_c00113{width:26.346667pt;}
._25_c00113{width:27.253333pt;}
._1f_c00113{width:28.746667pt;}
._e_c00113{width:34.400000pt;}
._10_c00113{width:35.786667pt;}
._23_c00113{width:42.880000pt;}
._24_c00113{width:56.533333pt;}
._28_c00113{width:84.426667pt;}
._14_c00113{width:135.040000pt;}
._1_c00113{width:141.546667pt;}
._3_c00113{width:219.946667pt;}
.fs3_c00113{font-size:40.000000pt;}
.fs5_c00113{font-size:42.666667pt;}
.fs0_c00113{font-size:53.333333pt;}
.fs1_c00113{font-size:61.333333pt;}
.fs4_c00113{font-size:64.000000pt;}
.fs2_c00113{font-size:74.666667pt;}
.y0_c00113{bottom:0.000000pt;}
.y51_c00113{bottom:2.760000pt;}
.y50_c00113{bottom:6.425204pt;}
.y4f_c00113{bottom:35.986667pt;}
.y27_c00113{bottom:49.986667pt;}
.y4e_c00113{bottom:51.586667pt;}
.y26_c00113{bottom:66.786667pt;}
.y4d_c00113{bottom:68.120000pt;}
.y25_c00113{bottom:83.053333pt;}
.y4c_c00113{bottom:84.253333pt;}
.y24_c00113{bottom:99.186667pt;}
.y4b_c00113{bottom:99.320000pt;}
.y23_c00113{bottom:115.720000pt;}
.y4a_c00113{bottom:116.920000pt;}
.y22_c00113{bottom:131.586667pt;}
.y49_c00113{bottom:132.786667pt;}
.y48_c00113{bottom:149.320000pt;}
.y21_c00113{bottom:164.653333pt;}
.y47_c00113{bottom:165.586667pt;}
.y46_c00113{bottom:181.186667pt;}
.y20_c00113{bottom:181.453333pt;}
.y1f_c00113{bottom:197.986667pt;}
.y45_c00113{bottom:213.586667pt;}
.y1e_c00113{bottom:214.120000pt;}
.y44_c00113{bottom:230.120000pt;}
.y1d_c00113{bottom:244.386667pt;}
.y43_c00113{bottom:246.253333pt;}
.y42_c00113{bottom:262.520000pt;}
.y1c_c00113{bottom:277.186667pt;}
.y41_c00113{bottom:278.120000pt;}
.y1b_c00113{bottom:294.253333pt;}
.y40_c00113{bottom:309.853333pt;}
.y1a_c00113{bottom:310.120000pt;}
.y3f_c00113{bottom:325.453333pt;}
.y19_c00113{bottom:326.653333pt;}
.y3e_c00113{bottom:342.786667pt;}
.y18_c00113{bottom:342.920000pt;}
.y17_c00113{bottom:359.053333pt;}
.y16_c00113{bottom:375.053333pt;}
.y3d_c00113{bottom:375.186667pt;}
.y3c_c00113{bottom:390.786667pt;}
.y15_c00113{bottom:391.186667pt;}
.y3b_c00113{bottom:406.520000pt;}
.y14_c00113{bottom:407.320000pt;}
.y3a_c00113{bottom:423.320000pt;}
.y13_c00113{bottom:423.586667pt;}
.y39_c00113{bottom:438.920000pt;}
.y12_c00113{bottom:439.453333pt;}
.y38_c00113{bottom:454.786667pt;}
.y11_c00113{bottom:455.586667pt;}
.y37_c00113{bottom:471.320000pt;}
.y10_c00113{bottom:471.586667pt;}
.y36_c00113{bottom:487.720000pt;}
.yf_c00113{bottom:488.120000pt;}
.ye_c00113{bottom:504.253333pt;}
.y35_c00113{bottom:504.520000pt;}
.y34_c00113{bottom:520.386667pt;}
.yd_c00113{bottom:520.786667pt;}
.y33_c00113{bottom:536.386667pt;}
.yc_c00113{bottom:537.586667pt;}
.y32_c00113{bottom:552.253333pt;}
.yb_c00113{bottom:553.186667pt;}
.y31_c00113{bottom:569.053333pt;}
.ya_c00113{bottom:570.520000pt;}
.y30_c00113{bottom:584.653333pt;}
.y9_c00113{bottom:586.520000pt;}
.y2f_c00113{bottom:600.520000pt;}
.y8_c00113{bottom:603.186667pt;}
.y2e_c00113{bottom:617.053333pt;}
.y7_c00113{bottom:619.720000pt;}
.y2d_c00113{bottom:632.920000pt;}
.y6_c00113{bottom:635.720000pt;}
.y2c_c00113{bottom:649.186667pt;}
.y5_c00113{bottom:652.520000pt;}
.y2b_c00113{bottom:665.720000pt;}
.y4_c00113{bottom:668.120000pt;}
.y2a_c00113{bottom:681.186667pt;}
.y3_c00113{bottom:684.786667pt;}
.y29_c00113{bottom:696.920000pt;}
.y2_c00113{bottom:700.520000pt;}
.y28_c00113{bottom:715.720000pt;}
.y1_c00113{bottom:717.853333pt;}
.h8_c00113{height:11.733399pt;}
.h9_c00113{height:38.937500pt;}
.h2_c00113{height:55.893333pt;}
.h3_c00113{height:56.906667pt;}
.h5_c00113{height:65.442667pt;}
.h7_c00113{height:67.072000pt;}
.h4_c00113{height:68.109333pt;}
.h6_c00113{height:78.250667pt;}
.h1_c00113{height:752.666667pt;}
.h0_c00113{height:752.866667pt;}
.w1_c00113{width:93.222667pt;}
.w0_c00113{width:519.333333pt;}
.x0_c00113{left:0.000000pt;}
.x1_c00113{left:77.333333pt;}
.x6_c00113{left:98.400000pt;}
.x5_c00113{left:99.866667pt;}
.x4_c00113{left:100.800000pt;}
.x3_c00113{left:102.000000pt;}
.xf_c00113{left:102.933333pt;}
.xd_c00113{left:104.000000pt;}
.x2_c00113{left:104.933333pt;}
.xa_c00113{left:113.333333pt;}
.x7_c00113{left:118.133333pt;}
.xb_c00113{left:123.333333pt;}
.x9_c00113{left:133.466667pt;}
.xe_c00113{left:134.933333pt;}
.xc_c00113{left:150.000000pt;}
.x8_c00113{left:158.400000pt;}
.x10_c00113{left:180.666667pt;}
.x18_c00113{left:216.834880pt;}
.x11_c00113{left:285.200000pt;}
.x16_c00113{left:287.600000pt;}
.x15_c00113{left:289.200000pt;}
.x14_c00113{left:290.666667pt;}
.x12_c00113{left:291.600000pt;}
.x13_c00113{left:292.533333pt;}
.x17_c00113{left:439.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_7bcfc34bfe773a58290ca0b3.woff2')format("woff");}.ff1_c00114{font-family:ff1_c00114;line-height:1.437000;font-style:normal;font-weight:normal;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_61eb4a399bfea5ce3e09109a.woff2')format("woff");}.ff2_c00114{font-family:ff2_c00114;line-height:1.437000;font-style:normal;font-weight:normal;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_e4933312f5e1ce6c78750613.woff2')format("woff");}.ff3_c00114{font-family:ff3_c00114;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00114;src:url('chunks/assets/font_4a5a26b66590d1d2e028ff6a.woff2')format("woff");}.ff4_c00114{font-family:ff4_c00114;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00114;src:url('chunks/assets/font_54779b2ef7f9c4e51f045185.woff2')format("woff");}.ff5_c00114{font-family:ff5_c00114;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00114;src:url('chunks/assets/font_88493c0049e508b96a311fc4.woff2')format("woff");}.ff6_c00114{font-family:ff6_c00114;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00114;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff7_c00114{font-family:ff7_c00114;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00114{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00114{vertical-align:0.000000px;}
.lsb_c00114{letter-spacing:0.000000px;}
.ls3_c00114{letter-spacing:3.000000px;}
.ls2_c00114{letter-spacing:3.600000px;}
.ls5_c00114{letter-spacing:6.000000px;}
.lsa_c00114{letter-spacing:9.000000px;}
.ls9_c00114{letter-spacing:12.000000px;}
.ls7_c00114{letter-spacing:14.445000px;}
.ls0_c00114{letter-spacing:17.400000px;}
.ls8_c00114{letter-spacing:18.600000px;}
.ls4_c00114{letter-spacing:31.245000px;}
.ls6_c00114{letter-spacing:32.445000px;}
.ls1_c00114{letter-spacing:34.245000px;}
.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;}
}
.ws6_c00114{word-spacing:-42.399000px;}
.ws2_c00114{word-spacing:-37.860000px;}
.ws5_c00114{word-spacing:-27.060000px;}
.ws0_c00114{word-spacing:-24.774000px;}
.ws7_c00114{word-spacing:-24.060000px;}
.ws4_c00114{word-spacing:-18.060000px;}
.ws9_c00114{word-spacing:-17.340000px;}
.ws8_c00114{word-spacing:-16.755000px;}
.ws3_c00114{word-spacing:-14.160000px;}
.wsa_c00114{word-spacing:0.000000px;}
.ws1_c00114{word-spacing:3.420000px;}
._2c_c00114{margin-left:-30.576000px;}
._22_c00114{margin-left:-20.220000px;}
._1d_c00114{margin-left:-13.566000px;}
._23_c00114{margin-left:-12.444000px;}
._29_c00114{margin-left:-10.806000px;}
._1c_c00114{margin-left:-9.690000px;}
._25_c00114{margin-left:-8.604000px;}
._12_c00114{margin-left:-7.572000px;}
._19_c00114{margin-left:-6.066000px;}
._11_c00114{margin-left:-4.560000px;}
._e_c00114{margin-left:-3.240000px;}
._8_c00114{margin-left:-2.046000px;}
._24_c00114{margin-left:-1.002000px;}
._0_c00114{width:1.890000px;}
._17_c00114{width:2.892000px;}
._3_c00114{width:3.906000px;}
._2_c00114{width:5.796000px;}
._4_c00114{width:7.182000px;}
._15_c00114{width:8.520000px;}
._f_c00114{width:9.567000px;}
._9_c00114{width:11.466000px;}
._1f_c00114{width:12.639000px;}
._a_c00114{width:14.049000px;}
._14_c00114{width:16.290000px;}
._20_c00114{width:17.298000px;}
._26_c00114{width:20.370000px;}
._b_c00114{width:21.609000px;}
._10_c00114{width:22.752000px;}
._18_c00114{width:24.840000px;}
._2b_c00114{width:28.398000px;}
._13_c00114{width:29.640000px;}
._6_c00114{width:32.130000px;}
._1_c00114{width:34.209000px;}
._28_c00114{width:36.969000px;}
._21_c00114{width:38.226000px;}
._c_c00114{width:42.552000px;}
._27_c00114{width:44.676000px;}
._d_c00114{width:49.896000px;}
._2a_c00114{width:55.440000px;}
._7_c00114{width:80.169000px;}
._1a_c00114{width:93.372000px;}
._1e_c00114{width:185.778000px;}
._5_c00114{width:223.965000px;}
._16_c00114{width:238.902000px;}
._1b_c00114{width:256.356000px;}
.fc2_c00114{color:transparent;}
.fc1_c00114{color:rgb(128,128,128);}
.fc0_c00114{color:rgb(0,0,0);}
.fs3_c00114{font-size:45.000000px;}
.fs5_c00114{font-size:48.000000px;}
.fs2_c00114{font-size:60.000000px;}
.fs0_c00114{font-size:63.000000px;}
.fs1_c00114{font-size:66.000000px;}
.fs4_c00114{font-size:69.000000px;}
.y0_c00114{bottom:0.000000px;}
.y54_c00114{bottom:3.105000px;}
.y53_c00114{bottom:7.228355px;}
.y52_c00114{bottom:31.635000px;}
.y51_c00114{bottom:53.985000px;}
.y2a_c00114{bottom:56.685000px;}
.y50_c00114{bottom:72.585000px;}
.y29_c00114{bottom:74.235000px;}
.y4f_c00114{bottom:89.685000px;}
.y28_c00114{bottom:92.835000px;}
.y4e_c00114{bottom:109.185000px;}
.y27_c00114{bottom:112.335000px;}
.y4d_c00114{bottom:126.135000px;}
.y26_c00114{bottom:130.635000px;}
.y4c_c00114{bottom:143.085000px;}
.y25_c00114{bottom:148.035000px;}
.y4b_c00114{bottom:163.335000px;}
.y24_c00114{bottom:166.635000px;}
.y4a_c00114{bottom:180.885000px;}
.y23_c00114{bottom:184.185000px;}
.y49_c00114{bottom:200.085000px;}
.y22_c00114{bottom:203.085000px;}
.y48_c00114{bottom:215.985000px;}
.y21_c00114{bottom:220.635000px;}
.y47_c00114{bottom:235.485000px;}
.y20_c00114{bottom:238.185000px;}
.y46_c00114{bottom:253.785000px;}
.y1f_c00114{bottom:257.085000px;}
.y45_c00114{bottom:271.035000px;}
.y1e_c00114{bottom:273.735000px;}
.y44_c00114{bottom:290.235000px;}
.y1d_c00114{bottom:291.885000px;}
.y43_c00114{bottom:308.235000px;}
.y1c_c00114{bottom:310.185000px;}
.y42_c00114{bottom:326.385000px;}
.y1b_c00114{bottom:328.935000px;}
.y41_c00114{bottom:344.535000px;}
.y1a_c00114{bottom:346.485000px;}
.y40_c00114{bottom:362.835000px;}
.y19_c00114{bottom:364.485000px;}
.y3f_c00114{bottom:380.985000px;}
.y18_c00114{bottom:382.035000px;}
.y3e_c00114{bottom:398.835000px;}
.y17_c00114{bottom:400.935000px;}
.y3d_c00114{bottom:416.835000px;}
.y16_c00114{bottom:418.185000px;}
.y3c_c00114{bottom:434.985000px;}
.y15_c00114{bottom:435.735000px;}
.y3b_c00114{bottom:452.535000px;}
.y14_c00114{bottom:453.885000px;}
.y3a_c00114{bottom:471.135000px;}
.y13_c00114{bottom:472.035000px;}
.y39_c00114{bottom:488.685000px;}
.y12_c00114{bottom:489.735000px;}
.y38_c00114{bottom:507.285000px;}
.y11_c00114{bottom:507.585000px;}
.y10_c00114{bottom:525.435000px;}
.yf_c00114{bottom:542.685000px;}
.y37_c00114{bottom:544.035000px;}
.ye_c00114{bottom:560.235000px;}
.y36_c00114{bottom:561.885000px;}
.yd_c00114{bottom:578.385000px;}
.y35_c00114{bottom:579.735000px;}
.yc_c00114{bottom:596.985000px;}
.y34_c00114{bottom:599.085000px;}
.yb_c00114{bottom:615.135000px;}
.y33_c00114{bottom:617.235000px;}
.ya_c00114{bottom:633.435000px;}
.y32_c00114{bottom:635.535000px;}
.y9_c00114{bottom:650.985000px;}
.y31_c00114{bottom:652.635000px;}
.y8_c00114{bottom:668.835000px;}
.y30_c00114{bottom:671.985000px;}
.y7_c00114{bottom:687.135000px;}
.y2f_c00114{bottom:690.435000px;}
.y6_c00114{bottom:704.685000px;}
.y2e_c00114{bottom:708.435000px;}
.y5_c00114{bottom:721.935000px;}
.y2d_c00114{bottom:725.835000px;}
.y4_c00114{bottom:739.785000px;}
.y2c_c00114{bottom:744.435000px;}
.y3_c00114{bottom:758.385000px;}
.y2b_c00114{bottom:762.735000px;}
.y2_c00114{bottom:780.885000px;}
.y1_c00114{bottom:801.435000px;}
.h8_c00114{height:13.200074px;}
.h9_c00114{height:43.804688px;}
.h4_c00114{height:62.880000px;}
.h6_c00114{height:64.020000px;}
.h5_c00114{height:65.040000px;}
.h3_c00114{height:66.024000px;}
.h2_c00114{height:69.168000px;}
.h7_c00114{height:73.623000px;}
.h1_c00114{height:821.250000px;}
.h0_c00114{height:821.325000px;}
.w2_c00114{width:104.875500px;}
.w1_c00114{width:570.000000px;}
.w0_c00114{width:570.225000px;}
.x0_c00114{left:0.000000px;}
.x8_c00114{left:12.150000px;}
.x5_c00114{left:15.750000px;}
.x4_c00114{left:44.100000px;}
.x9_c00114{left:54.900000px;}
.xc_c00114{left:67.050000px;}
.xb_c00114{left:69.150000px;}
.xa_c00114{left:70.200000px;}
.x6_c00114{left:71.250000px;}
.x3_c00114{left:72.600000px;}
.x2_c00114{left:73.950000px;}
.x7_c00114{left:108.600000px;}
.x1_c00114{left:218.400000px;}
.x14_c00114{left:236.926758px;}
.x12_c00114{left:281.850000px;}
.x10_c00114{left:283.800000px;}
.x11_c00114{left:285.150000px;}
.xf_c00114{left:287.100000px;}
.xe_c00114{left:289.200000px;}
.xd_c00114{left:290.550000px;}
.x13_c00114{left:375.000000px;}
@media print{
.v0_c00114{vertical-align:0.000000pt;}
.lsb_c00114{letter-spacing:0.000000pt;}
.ls3_c00114{letter-spacing:2.666667pt;}
.ls2_c00114{letter-spacing:3.200000pt;}
.ls5_c00114{letter-spacing:5.333333pt;}
.lsa_c00114{letter-spacing:8.000000pt;}
.ls9_c00114{letter-spacing:10.666667pt;}
.ls7_c00114{letter-spacing:12.840000pt;}
.ls0_c00114{letter-spacing:15.466667pt;}
.ls8_c00114{letter-spacing:16.533333pt;}
.ls4_c00114{letter-spacing:27.773333pt;}
.ls6_c00114{letter-spacing:28.840000pt;}
.ls1_c00114{letter-spacing:30.440000pt;}
.ws6_c00114{word-spacing:-37.688000pt;}
.ws2_c00114{word-spacing:-33.653333pt;}
.ws5_c00114{word-spacing:-24.053333pt;}
.ws0_c00114{word-spacing:-22.021333pt;}
.ws7_c00114{word-spacing:-21.386667pt;}
.ws4_c00114{word-spacing:-16.053333pt;}
.ws9_c00114{word-spacing:-15.413333pt;}
.ws8_c00114{word-spacing:-14.893333pt;}
.ws3_c00114{word-spacing:-12.586667pt;}
.wsa_c00114{word-spacing:0.000000pt;}
.ws1_c00114{word-spacing:3.040000pt;}
._2c_c00114{margin-left:-27.178667pt;}
._22_c00114{margin-left:-17.973333pt;}
._1d_c00114{margin-left:-12.058667pt;}
._23_c00114{margin-left:-11.061333pt;}
._29_c00114{margin-left:-9.605333pt;}
._1c_c00114{margin-left:-8.613333pt;}
._25_c00114{margin-left:-7.648000pt;}
._12_c00114{margin-left:-6.730667pt;}
._19_c00114{margin-left:-5.392000pt;}
._11_c00114{margin-left:-4.053333pt;}
._e_c00114{margin-left:-2.880000pt;}
._8_c00114{margin-left:-1.818667pt;}
._24_c00114{margin-left:-0.890667pt;}
._0_c00114{width:1.680000pt;}
._17_c00114{width:2.570667pt;}
._3_c00114{width:3.472000pt;}
._2_c00114{width:5.152000pt;}
._4_c00114{width:6.384000pt;}
._15_c00114{width:7.573333pt;}
._f_c00114{width:8.504000pt;}
._9_c00114{width:10.192000pt;}
._1f_c00114{width:11.234667pt;}
._a_c00114{width:12.488000pt;}
._14_c00114{width:14.480000pt;}
._20_c00114{width:15.376000pt;}
._26_c00114{width:18.106667pt;}
._b_c00114{width:19.208000pt;}
._10_c00114{width:20.224000pt;}
._18_c00114{width:22.080000pt;}
._2b_c00114{width:25.242667pt;}
._13_c00114{width:26.346667pt;}
._6_c00114{width:28.560000pt;}
._1_c00114{width:30.408000pt;}
._28_c00114{width:32.861333pt;}
._21_c00114{width:33.978667pt;}
._c_c00114{width:37.824000pt;}
._27_c00114{width:39.712000pt;}
._d_c00114{width:44.352000pt;}
._2a_c00114{width:49.280000pt;}
._7_c00114{width:71.261333pt;}
._1a_c00114{width:82.997333pt;}
._1e_c00114{width:165.136000pt;}
._5_c00114{width:199.080000pt;}
._16_c00114{width:212.357333pt;}
._1b_c00114{width:227.872000pt;}
.fs3_c00114{font-size:40.000000pt;}
.fs5_c00114{font-size:42.666667pt;}
.fs2_c00114{font-size:53.333333pt;}
.fs0_c00114{font-size:56.000000pt;}
.fs1_c00114{font-size:58.666667pt;}
.fs4_c00114{font-size:61.333333pt;}
.y0_c00114{bottom:0.000000pt;}
.y54_c00114{bottom:2.760000pt;}
.y53_c00114{bottom:6.425204pt;}
.y52_c00114{bottom:28.120000pt;}
.y51_c00114{bottom:47.986667pt;}
.y2a_c00114{bottom:50.386667pt;}
.y50_c00114{bottom:64.520000pt;}
.y29_c00114{bottom:65.986667pt;}
.y4f_c00114{bottom:79.720000pt;}
.y28_c00114{bottom:82.520000pt;}
.y4e_c00114{bottom:97.053333pt;}
.y27_c00114{bottom:99.853333pt;}
.y4d_c00114{bottom:112.120000pt;}
.y26_c00114{bottom:116.120000pt;}
.y4c_c00114{bottom:127.186667pt;}
.y25_c00114{bottom:131.586667pt;}
.y4b_c00114{bottom:145.186667pt;}
.y24_c00114{bottom:148.120000pt;}
.y4a_c00114{bottom:160.786667pt;}
.y23_c00114{bottom:163.720000pt;}
.y49_c00114{bottom:177.853333pt;}
.y22_c00114{bottom:180.520000pt;}
.y48_c00114{bottom:191.986667pt;}
.y21_c00114{bottom:196.120000pt;}
.y47_c00114{bottom:209.320000pt;}
.y20_c00114{bottom:211.720000pt;}
.y46_c00114{bottom:225.586667pt;}
.y1f_c00114{bottom:228.520000pt;}
.y45_c00114{bottom:240.920000pt;}
.y1e_c00114{bottom:243.320000pt;}
.y44_c00114{bottom:257.986667pt;}
.y1d_c00114{bottom:259.453333pt;}
.y43_c00114{bottom:273.986667pt;}
.y1c_c00114{bottom:275.720000pt;}
.y42_c00114{bottom:290.120000pt;}
.y1b_c00114{bottom:292.386667pt;}
.y41_c00114{bottom:306.253333pt;}
.y1a_c00114{bottom:307.986667pt;}
.y40_c00114{bottom:322.520000pt;}
.y19_c00114{bottom:323.986667pt;}
.y3f_c00114{bottom:338.653333pt;}
.y18_c00114{bottom:339.586667pt;}
.y3e_c00114{bottom:354.520000pt;}
.y17_c00114{bottom:356.386667pt;}
.y3d_c00114{bottom:370.520000pt;}
.y16_c00114{bottom:371.720000pt;}
.y3c_c00114{bottom:386.653333pt;}
.y15_c00114{bottom:387.320000pt;}
.y3b_c00114{bottom:402.253333pt;}
.y14_c00114{bottom:403.453333pt;}
.y3a_c00114{bottom:418.786667pt;}
.y13_c00114{bottom:419.586667pt;}
.y39_c00114{bottom:434.386667pt;}
.y12_c00114{bottom:435.320000pt;}
.y38_c00114{bottom:450.920000pt;}
.y11_c00114{bottom:451.186667pt;}
.y10_c00114{bottom:467.053333pt;}
.yf_c00114{bottom:482.386667pt;}
.y37_c00114{bottom:483.586667pt;}
.ye_c00114{bottom:497.986667pt;}
.y36_c00114{bottom:499.453333pt;}
.yd_c00114{bottom:514.120000pt;}
.y35_c00114{bottom:515.320000pt;}
.yc_c00114{bottom:530.653333pt;}
.y34_c00114{bottom:532.520000pt;}
.yb_c00114{bottom:546.786667pt;}
.y33_c00114{bottom:548.653333pt;}
.ya_c00114{bottom:563.053333pt;}
.y32_c00114{bottom:564.920000pt;}
.y9_c00114{bottom:578.653333pt;}
.y31_c00114{bottom:580.120000pt;}
.y8_c00114{bottom:594.520000pt;}
.y30_c00114{bottom:597.320000pt;}
.y7_c00114{bottom:610.786667pt;}
.y2f_c00114{bottom:613.720000pt;}
.y6_c00114{bottom:626.386667pt;}
.y2e_c00114{bottom:629.720000pt;}
.y5_c00114{bottom:641.720000pt;}
.y2d_c00114{bottom:645.186667pt;}
.y4_c00114{bottom:657.586667pt;}
.y2c_c00114{bottom:661.720000pt;}
.y3_c00114{bottom:674.120000pt;}
.y2b_c00114{bottom:677.986667pt;}
.y2_c00114{bottom:694.120000pt;}
.y1_c00114{bottom:712.386667pt;}
.h8_c00114{height:11.733399pt;}
.h9_c00114{height:38.937500pt;}
.h4_c00114{height:55.893333pt;}
.h6_c00114{height:56.906667pt;}
.h5_c00114{height:57.813333pt;}
.h3_c00114{height:58.688000pt;}
.h2_c00114{height:61.482667pt;}
.h7_c00114{height:65.442667pt;}
.h1_c00114{height:730.000000pt;}
.h0_c00114{height:730.066667pt;}
.w2_c00114{width:93.222667pt;}
.w1_c00114{width:506.666667pt;}
.w0_c00114{width:506.866667pt;}
.x0_c00114{left:0.000000pt;}
.x8_c00114{left:10.800000pt;}
.x5_c00114{left:14.000000pt;}
.x4_c00114{left:39.200000pt;}
.x9_c00114{left:48.800000pt;}
.xc_c00114{left:59.600000pt;}
.xb_c00114{left:61.466667pt;}
.xa_c00114{left:62.400000pt;}
.x6_c00114{left:63.333333pt;}
.x3_c00114{left:64.533333pt;}
.x2_c00114{left:65.733333pt;}
.x7_c00114{left:96.533333pt;}
.x1_c00114{left:194.133333pt;}
.x14_c00114{left:210.601563pt;}
.x12_c00114{left:250.533333pt;}
.x10_c00114{left:252.266667pt;}
.x11_c00114{left:253.466667pt;}
.xf_c00114{left:255.200000pt;}
.xe_c00114{left:257.066667pt;}
.xd_c00114{left:258.266667pt;}
.x13_c00114{left:333.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_c00115 {
    display:none;
  }
  .loading-indicator_c00115.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00115 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00115 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00115" -> "#page-container .classname_c00115")
 */
.pf_c00115 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00115 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00115.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00115 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00115 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00115 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00115 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00115 {overflow:visible;}
  }
}
.c_c00115 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00115 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00115:after { /* webkit #35443 */
  content: '';
}
.t_c00115:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00115 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00115 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00115 { /* info for Javascript */
  display:none;
}
.l_c00115 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00115 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00115 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00115:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00115{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00115;src:url('chunks/assets/font_440a1576376fdb65d12d08bf.woff2')format("woff");}.ff1_c00115{font-family:ff1_c00115;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00115;src:url('chunks/assets/font_41ac3e66dcf8d19c9a84912d.woff2')format("woff");}.ff2_c00115{font-family:ff2_c00115;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00115;src:url('chunks/assets/font_4af18b70938d768f911b93f0.woff2')format("woff");}.ff3_c00115{font-family:ff3_c00115;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00115;src:url('chunks/assets/font_0ce391de997f24f9f9dd37f4.woff2')format("woff");}.ff4_c00115{font-family:ff4_c00115;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00115;src:url('chunks/assets/font_22043f7a1532fc38de814260.woff2')format("woff");}.ff5_c00115{font-family:ff5_c00115;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00115;src:url('chunks/assets/font_412058e2913d60b74c136e3e.woff2')format("woff");}.ff6_c00115{font-family:ff6_c00115;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00115;src:url('chunks/assets/font_b710521c975abc40f5efb387.woff2')format("woff");}.ff7_c00115{font-family:ff7_c00115;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00115;src:url('chunks/assets/font_54be3a7acb785ca452d1c233.woff2')format("woff");}.ff8_c00115{font-family:ff8_c00115;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00115;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff9_c00115{font-family:ff9_c00115;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00115{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00115{vertical-align:0.000000px;}
.v1_c00115{vertical-align:79.800000px;}
.ls7_c00115{letter-spacing:-9.000000px;}
.ls5_c00115{letter-spacing:0.000000px;}
.ls0_c00115{letter-spacing:3.000000px;}
.ls1_c00115{letter-spacing:5.205000px;}
.ls2_c00115{letter-spacing:5.493000px;}
.ls3_c00115{letter-spacing:7.437000px;}
.ls4_c00115{letter-spacing:9.000000px;}
.ls6_c00115{letter-spacing:12.000000px;}
.sc__c00115{text-shadow:none;}
.sc0_c00115{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00115{-webkit-text-stroke:0px transparent;}
.sc0_c00115{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00115{word-spacing:-44.733000px;}
.ws6_c00115{word-spacing:-27.060000px;}
.ws3_c00115{word-spacing:-26.160000px;}
.ws0_c00115{word-spacing:-24.750000px;}
.ws8_c00115{word-spacing:-18.060000px;}
.ws7_c00115{word-spacing:-17.340000px;}
.ws4_c00115{word-spacing:-15.000000px;}
.ws2_c00115{word-spacing:-14.160000px;}
.ws1_c00115{word-spacing:-0.900000px;}
.ws9_c00115{word-spacing:0.000000px;}
._27_c00115{margin-left:-25.620000px;}
._28_c00115{margin-left:-23.190000px;}
._29_c00115{margin-left:-21.294000px;}
._23_c00115{margin-left:-17.802000px;}
._25_c00115{margin-left:-15.030000px;}
._24_c00115{margin-left:-12.888000px;}
._22_c00115{margin-left:-11.574000px;}
._17_c00115{margin-left:-10.260000px;}
._16_c00115{margin-left:-8.709000px;}
._13_c00115{margin-left:-7.581000px;}
._19_c00115{margin-left:-6.105000px;}
._b_c00115{margin-left:-5.100000px;}
._0_c00115{margin-left:-3.906000px;}
._f_c00115{margin-left:-2.115000px;}
._10_c00115{margin-left:-1.092000px;}
._d_c00115{width:1.344000px;}
._a_c00115{width:2.400000px;}
._7_c00115{width:4.221000px;}
._5_c00115{width:5.796000px;}
._11_c00115{width:7.233000px;}
._9_c00115{width:8.235000px;}
._2_c00115{width:9.576000px;}
._3_c00115{width:11.529000px;}
._1e_c00115{width:12.768000px;}
._4_c00115{width:13.860000px;}
._1b_c00115{width:15.234000px;}
._20_c00115{width:16.308000px;}
._6_c00115{width:17.829000px;}
._1a_c00115{width:19.239000px;}
._e_c00115{width:20.355000px;}
._1d_c00115{width:21.588000px;}
._8_c00115{width:22.680000px;}
._14_c00115{width:24.033000px;}
._12_c00115{width:25.572000px;}
._1c_c00115{width:26.757000px;}
._18_c00115{width:27.906000px;}
._15_c00115{width:29.910000px;}
._1f_c00115{width:31.866000px;}
._c_c00115{width:46.140000px;}
._21_c00115{width:117.048000px;}
._26_c00115{width:163.083000px;}
._2a_c00115{width:165.609000px;}
._1_c00115{width:352.656000px;}
.fc2_c00115{color:transparent;}
.fc1_c00115{color:rgb(128,128,128);}
.fc0_c00115{color:rgb(0,0,0);}
.fs2_c00115{font-size:45.000000px;}
.fs7_c00115{font-size:48.000000px;}
.fs5_c00115{font-size:57.000000px;}
.fs1_c00115{font-size:60.000000px;}
.fs0_c00115{font-size:63.000000px;}
.fs4_c00115{font-size:90.000000px;}
.fs3_c00115{font-size:93.000000px;}
.fs6_c00115{font-size:213.000000px;}
.y0_c00115{bottom:0.000000px;}
.y51_c00115{bottom:3.105000px;}
.y50_c00115{bottom:7.228355px;}
.y4f_c00115{bottom:59.685000px;}
.y4e_c00115{bottom:78.285000px;}
.y29_c00115{bottom:79.185000px;}
.y4d_c00115{bottom:95.835000px;}
.y28_c00115{bottom:98.085000px;}
.y4c_c00115{bottom:115.335000px;}
.y27_c00115{bottom:116.085000px;}
.y4a_c00115{bottom:130.935000px;}
.y4b_c00115{bottom:133.185000px;}
.y26_c00115{bottom:134.235000px;}
.y25_c00115{bottom:152.535000px;}
.y24_c00115{bottom:171.135000px;}
.y23_c00115{bottom:189.285000px;}
.y49_c00115{bottom:189.585000px;}
.y48_c00115{bottom:207.135000px;}
.y22_c00115{bottom:207.585000px;}
.y47_c00115{bottom:224.985000px;}
.y21_c00115{bottom:225.135000px;}
.y20_c00115{bottom:243.285000px;}
.y46_c00115{bottom:243.585000px;}
.y1f_c00115{bottom:261.135000px;}
.y45_c00115{bottom:262.185000px;}
.y1e_c00115{bottom:279.135000px;}
.y44_c00115{bottom:296.685000px;}
.y1d_c00115{bottom:297.585000px;}
.y1c_c00115{bottom:315.585000px;}
.y43_c00115{bottom:332.685000px;}
.y1b_c00115{bottom:334.335000px;}
.y42_c00115{bottom:350.685000px;}
.y1a_c00115{bottom:351.885000px;}
.y41_c00115{bottom:369.885000px;}
.y19_c00115{bottom:370.485000px;}
.y40_c00115{bottom:387.435000px;}
.y18_c00115{bottom:388.335000px;}
.y17_c00115{bottom:405.885000px;}
.y3f_c00115{bottom:423.885000px;}
.y16_c00115{bottom:424.185000px;}
.y15_c00115{bottom:442.035000px;}
.y3e_c00115{bottom:442.335000px;}
.y3d_c00115{bottom:460.035000px;}
.y14_c00115{bottom:460.335000px;}
.y3c_c00115{bottom:477.585000px;}
.y13_c00115{bottom:478.785000px;}
.y3b_c00115{bottom:495.735000px;}
.y12_c00115{bottom:496.785000px;}
.y3a_c00115{bottom:513.285000px;}
.y11_c00115{bottom:515.235000px;}
.y39_c00115{bottom:531.885000px;}
.y10_c00115{bottom:533.235000px;}
.y38_c00115{bottom:549.435000px;}
.yf_c00115{bottom:552.135000px;}
.y37_c00115{bottom:566.985000px;}
.ye_c00115{bottom:569.235000px;}
.y36_c00115{bottom:584.535000px;}
.yd_c00115{bottom:588.135000px;}
.y35_c00115{bottom:603.435000px;}
.yc_c00115{bottom:606.435000px;}
.y34_c00115{bottom:621.885000px;}
.yb_c00115{bottom:624.735000px;}
.y33_c00115{bottom:640.485000px;}
.ya_c00115{bottom:642.135000px;}
.y32_c00115{bottom:657.435000px;}
.y9_c00115{bottom:660.435000px;}
.y31_c00115{bottom:675.885000px;}
.y8_c00115{bottom:678.735000px;}
.y30_c00115{bottom:693.135000px;}
.y7_c00115{bottom:696.885000px;}
.y2f_c00115{bottom:712.335000px;}
.y6_c00115{bottom:715.185000px;}
.y2e_c00115{bottom:729.585000px;}
.y5_c00115{bottom:733.035000px;}
.y2d_c00115{bottom:748.785000px;}
.y4_c00115{bottom:751.635000px;}
.y2c_c00115{bottom:767.085000px;}
.y3_c00115{bottom:770.385000px;}
.y2b_c00115{bottom:785.235000px;}
.y2_c00115{bottom:788.685000px;}
.y2a_c00115{bottom:804.885000px;}
.y1_c00115{bottom:808.935000px;}
.h9_c00115{height:13.200074px;}
.ha_c00115{height:43.804688px;}
.h7_c00115{height:59.736000px;}
.h3_c00115{height:62.880000px;}
.h4_c00115{height:64.020000px;}
.h6_c00115{height:66.024000px;}
.h2_c00115{height:67.221000px;}
.h5_c00115{height:99.231000px;}
.h8_c00115{height:223.224000px;}
.h1_c00115{height:846.750000px;}
.h0_c00115{height:846.975000px;}
.w2_c00115{width:104.875500px;}
.w0_c00115{width:581.850000px;}
.w1_c00115{width:582.000000px;}
.x0_c00115{left:0.000000px;}
.x3_c00115{left:38.100000px;}
.x8_c00115{left:96.150000px;}
.x9_c00115{left:101.250000px;}
.x5_c00115{left:102.300000px;}
.x4_c00115{left:103.350000px;}
.x1_c00115{left:105.300000px;}
.xb_c00115{left:106.650000px;}
.xc_c00115{left:107.700000px;}
.xa_c00115{left:124.200000px;}
.x6_c00115{left:140.850000px;}
.x7_c00115{left:191.250000px;}
.x1d_c00115{left:242.739258px;}
.x2_c00115{left:247.650000px;}
.xd_c00115{left:315.900000px;}
.xe_c00115{left:317.850000px;}
.xf_c00115{left:318.900000px;}
.x11_c00115{left:320.400000px;}
.x12_c00115{left:321.600000px;}
.x13_c00115{left:322.950000px;}
.x15_c00115{left:325.050000px;}
.x1a_c00115{left:326.700000px;}
.x16_c00115{left:339.600000px;}
.x10_c00115{left:350.550000px;}
.x17_c00115{left:355.350000px;}
.x1b_c00115{left:369.000000px;}
.x18_c00115{left:379.800000px;}
.x14_c00115{left:382.050000px;}
.x19_c00115{left:411.150000px;}
.x1c_c00115{left:491.400000px;}
@media print{
.v0_c00115{vertical-align:0.000000pt;}
.v1_c00115{vertical-align:70.933333pt;}
.ls7_c00115{letter-spacing:-8.000000pt;}
.ls5_c00115{letter-spacing:0.000000pt;}
.ls0_c00115{letter-spacing:2.666667pt;}
.ls1_c00115{letter-spacing:4.626667pt;}
.ls2_c00115{letter-spacing:4.882667pt;}
.ls3_c00115{letter-spacing:6.610667pt;}
.ls4_c00115{letter-spacing:8.000000pt;}
.ls6_c00115{letter-spacing:10.666667pt;}
.ws5_c00115{word-spacing:-39.762667pt;}
.ws6_c00115{word-spacing:-24.053333pt;}
.ws3_c00115{word-spacing:-23.253333pt;}
.ws0_c00115{word-spacing:-22.000000pt;}
.ws8_c00115{word-spacing:-16.053333pt;}
.ws7_c00115{word-spacing:-15.413333pt;}
.ws4_c00115{word-spacing:-13.333333pt;}
.ws2_c00115{word-spacing:-12.586667pt;}
.ws1_c00115{word-spacing:-0.800000pt;}
.ws9_c00115{word-spacing:0.000000pt;}
._27_c00115{margin-left:-22.773333pt;}
._28_c00115{margin-left:-20.613333pt;}
._29_c00115{margin-left:-18.928000pt;}
._23_c00115{margin-left:-15.824000pt;}
._25_c00115{margin-left:-13.360000pt;}
._24_c00115{margin-left:-11.456000pt;}
._22_c00115{margin-left:-10.288000pt;}
._17_c00115{margin-left:-9.120000pt;}
._16_c00115{margin-left:-7.741333pt;}
._13_c00115{margin-left:-6.738667pt;}
._19_c00115{margin-left:-5.426667pt;}
._b_c00115{margin-left:-4.533333pt;}
._0_c00115{margin-left:-3.472000pt;}
._f_c00115{margin-left:-1.880000pt;}
._10_c00115{margin-left:-0.970667pt;}
._d_c00115{width:1.194667pt;}
._a_c00115{width:2.133333pt;}
._7_c00115{width:3.752000pt;}
._5_c00115{width:5.152000pt;}
._11_c00115{width:6.429333pt;}
._9_c00115{width:7.320000pt;}
._2_c00115{width:8.512000pt;}
._3_c00115{width:10.248000pt;}
._1e_c00115{width:11.349333pt;}
._4_c00115{width:12.320000pt;}
._1b_c00115{width:13.541333pt;}
._20_c00115{width:14.496000pt;}
._6_c00115{width:15.848000pt;}
._1a_c00115{width:17.101333pt;}
._e_c00115{width:18.093333pt;}
._1d_c00115{width:19.189333pt;}
._8_c00115{width:20.160000pt;}
._14_c00115{width:21.362667pt;}
._12_c00115{width:22.730667pt;}
._1c_c00115{width:23.784000pt;}
._18_c00115{width:24.805333pt;}
._15_c00115{width:26.586667pt;}
._1f_c00115{width:28.325333pt;}
._c_c00115{width:41.013333pt;}
._21_c00115{width:104.042667pt;}
._26_c00115{width:144.962667pt;}
._2a_c00115{width:147.208000pt;}
._1_c00115{width:313.472000pt;}
.fs2_c00115{font-size:40.000000pt;}
.fs7_c00115{font-size:42.666667pt;}
.fs5_c00115{font-size:50.666667pt;}
.fs1_c00115{font-size:53.333333pt;}
.fs0_c00115{font-size:56.000000pt;}
.fs4_c00115{font-size:80.000000pt;}
.fs3_c00115{font-size:82.666667pt;}
.fs6_c00115{font-size:189.333333pt;}
.y0_c00115{bottom:0.000000pt;}
.y51_c00115{bottom:2.760000pt;}
.y50_c00115{bottom:6.425204pt;}
.y4f_c00115{bottom:53.053333pt;}
.y4e_c00115{bottom:69.586667pt;}
.y29_c00115{bottom:70.386667pt;}
.y4d_c00115{bottom:85.186667pt;}
.y28_c00115{bottom:87.186667pt;}
.y4c_c00115{bottom:102.520000pt;}
.y27_c00115{bottom:103.186667pt;}
.y4a_c00115{bottom:116.386667pt;}
.y4b_c00115{bottom:118.386667pt;}
.y26_c00115{bottom:119.320000pt;}
.y25_c00115{bottom:135.586667pt;}
.y24_c00115{bottom:152.120000pt;}
.y23_c00115{bottom:168.253333pt;}
.y49_c00115{bottom:168.520000pt;}
.y48_c00115{bottom:184.120000pt;}
.y22_c00115{bottom:184.520000pt;}
.y47_c00115{bottom:199.986667pt;}
.y21_c00115{bottom:200.120000pt;}
.y20_c00115{bottom:216.253333pt;}
.y46_c00115{bottom:216.520000pt;}
.y1f_c00115{bottom:232.120000pt;}
.y45_c00115{bottom:233.053333pt;}
.y1e_c00115{bottom:248.120000pt;}
.y44_c00115{bottom:263.720000pt;}
.y1d_c00115{bottom:264.520000pt;}
.y1c_c00115{bottom:280.520000pt;}
.y43_c00115{bottom:295.720000pt;}
.y1b_c00115{bottom:297.186667pt;}
.y42_c00115{bottom:311.720000pt;}
.y1a_c00115{bottom:312.786667pt;}
.y41_c00115{bottom:328.786667pt;}
.y19_c00115{bottom:329.320000pt;}
.y40_c00115{bottom:344.386667pt;}
.y18_c00115{bottom:345.186667pt;}
.y17_c00115{bottom:360.786667pt;}
.y3f_c00115{bottom:376.786667pt;}
.y16_c00115{bottom:377.053333pt;}
.y15_c00115{bottom:392.920000pt;}
.y3e_c00115{bottom:393.186667pt;}
.y3d_c00115{bottom:408.920000pt;}
.y14_c00115{bottom:409.186667pt;}
.y3c_c00115{bottom:424.520000pt;}
.y13_c00115{bottom:425.586667pt;}
.y3b_c00115{bottom:440.653333pt;}
.y12_c00115{bottom:441.586667pt;}
.y3a_c00115{bottom:456.253333pt;}
.y11_c00115{bottom:457.986667pt;}
.y39_c00115{bottom:472.786667pt;}
.y10_c00115{bottom:473.986667pt;}
.y38_c00115{bottom:488.386667pt;}
.yf_c00115{bottom:490.786667pt;}
.y37_c00115{bottom:503.986667pt;}
.ye_c00115{bottom:505.986667pt;}
.y36_c00115{bottom:519.586667pt;}
.yd_c00115{bottom:522.786667pt;}
.y35_c00115{bottom:536.386667pt;}
.yc_c00115{bottom:539.053333pt;}
.y34_c00115{bottom:552.786667pt;}
.yb_c00115{bottom:555.320000pt;}
.y33_c00115{bottom:569.320000pt;}
.ya_c00115{bottom:570.786667pt;}
.y32_c00115{bottom:584.386667pt;}
.y9_c00115{bottom:587.053333pt;}
.y31_c00115{bottom:600.786667pt;}
.y8_c00115{bottom:603.320000pt;}
.y30_c00115{bottom:616.120000pt;}
.y7_c00115{bottom:619.453333pt;}
.y2f_c00115{bottom:633.186667pt;}
.y6_c00115{bottom:635.720000pt;}
.y2e_c00115{bottom:648.520000pt;}
.y5_c00115{bottom:651.586667pt;}
.y2d_c00115{bottom:665.586667pt;}
.y4_c00115{bottom:668.120000pt;}
.y2c_c00115{bottom:681.853333pt;}
.y3_c00115{bottom:684.786667pt;}
.y2b_c00115{bottom:697.986667pt;}
.y2_c00115{bottom:701.053333pt;}
.y2a_c00115{bottom:715.453333pt;}
.y1_c00115{bottom:719.053333pt;}
.h9_c00115{height:11.733399pt;}
.ha_c00115{height:38.937500pt;}
.h7_c00115{height:53.098667pt;}
.h3_c00115{height:55.893333pt;}
.h4_c00115{height:56.906667pt;}
.h6_c00115{height:58.688000pt;}
.h2_c00115{height:59.752000pt;}
.h5_c00115{height:88.205333pt;}
.h8_c00115{height:198.421333pt;}
.h1_c00115{height:752.666667pt;}
.h0_c00115{height:752.866667pt;}
.w2_c00115{width:93.222667pt;}
.w0_c00115{width:517.200000pt;}
.w1_c00115{width:517.333333pt;}
.x0_c00115{left:0.000000pt;}
.x3_c00115{left:33.866667pt;}
.x8_c00115{left:85.466667pt;}
.x9_c00115{left:90.000000pt;}
.x5_c00115{left:90.933333pt;}
.x4_c00115{left:91.866667pt;}
.x1_c00115{left:93.600000pt;}
.xb_c00115{left:94.800000pt;}
.xc_c00115{left:95.733333pt;}
.xa_c00115{left:110.400000pt;}
.x6_c00115{left:125.200000pt;}
.x7_c00115{left:170.000000pt;}
.x1d_c00115{left:215.768229pt;}
.x2_c00115{left:220.133333pt;}
.xd_c00115{left:280.800000pt;}
.xe_c00115{left:282.533333pt;}
.xf_c00115{left:283.466667pt;}
.x11_c00115{left:284.800000pt;}
.x12_c00115{left:285.866667pt;}
.x13_c00115{left:287.066667pt;}
.x15_c00115{left:288.933333pt;}
.x1a_c00115{left:290.400000pt;}
.x16_c00115{left:301.866667pt;}
.x10_c00115{left:311.600000pt;}
.x17_c00115{left:315.866667pt;}
.x1b_c00115{left:328.000000pt;}
.x18_c00115{left:337.600000pt;}
.x14_c00115{left:339.600000pt;}
.x19_c00115{left:365.466667pt;}
.x1c_c00115{left:436.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_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_df6f3b8f5e76463cb97569c9.woff2')format("woff");}.ff1_c00116{font-family:ff1_c00116;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00116;src:url('chunks/assets/font_70170920038f58b0cd92b7a0.woff2')format("woff");}.ff2_c00116{font-family:ff2_c00116;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00116;src:url('chunks/assets/font_b44293fdbdbff342bd6be8fc.woff2')format("woff");}.ff3_c00116{font-family:ff3_c00116;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00116;src:url('chunks/assets/font_42d7a766edbfcb2f6d17f6c1.woff2')format("woff");}.ff4_c00116{font-family:ff4_c00116;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00116;src:url('chunks/assets/font_8a4b615715d51a8f13011924.woff2')format("woff");}.ff5_c00116{font-family:ff5_c00116;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00116;src:url('chunks/assets/font_b4cd995faa7ff210aa218e83.woff2')format("woff");}.ff6_c00116{font-family:ff6_c00116;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00116;src:url('chunks/assets/font_21effafed0f1b33b362d673d.woff2')format("woff");}.ff7_c00116{font-family:ff7_c00116;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00116;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff8_c00116{font-family:ff8_c00116;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00116{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00116{vertical-align:0.000000px;}
.ls6_c00116{letter-spacing:-6.000000px;}
.ls5_c00116{letter-spacing:0.000000px;}
.ls0_c00116{letter-spacing:3.000000px;}
.ls1_c00116{letter-spacing:6.000000px;}
.ls2_c00116{letter-spacing:12.000000px;}
.ls4_c00116{letter-spacing:13.050000px;}
.ls3_c00116{letter-spacing:17.445000px;}
.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;}
}
.wsb_c00116{word-spacing:-33.303000px;}
.ws3_c00116{word-spacing:-27.060000px;}
.ws8_c00116{word-spacing:-26.160000px;}
.ws5_c00116{word-spacing:-17.340000px;}
.ws6_c00116{word-spacing:-17.307000px;}
.ws4_c00116{word-spacing:-16.500000px;}
.ws9_c00116{word-spacing:-15.000000px;}
.wsa_c00116{word-spacing:-14.604000px;}
.ws2_c00116{word-spacing:-14.160000px;}
.ws7_c00116{word-spacing:-13.452000px;}
.ws1_c00116{word-spacing:-8.340000px;}
.ws0_c00116{word-spacing:-0.060000px;}
.wsc_c00116{word-spacing:0.000000px;}
._2e_c00116{margin-left:-23.520000px;}
._16_c00116{margin-left:-17.400000px;}
._15_c00116{margin-left:-14.160000px;}
._20_c00116{margin-left:-11.760000px;}
._f_c00116{margin-left:-10.740000px;}
._12_c00116{margin-left:-8.940000px;}
._8_c00116{margin-left:-7.860000px;}
._7_c00116{margin-left:-5.880000px;}
._6_c00116{margin-left:-4.380000px;}
._5_c00116{margin-left:-3.360000px;}
._11_c00116{margin-left:-2.280000px;}
._b_c00116{margin-left:-1.260000px;}
._a_c00116{width:1.320000px;}
._9_c00116{width:3.060000px;}
._c_c00116{width:4.800000px;}
._d_c00116{width:6.180000px;}
._0_c00116{width:7.440000px;}
._18_c00116{width:8.880000px;}
._4_c00116{width:10.800000px;}
._e_c00116{width:12.120000px;}
._10_c00116{width:13.320000px;}
._19_c00116{width:14.340000px;}
._17_c00116{width:16.680000px;}
._13_c00116{width:18.000000px;}
._1_c00116{width:19.560000px;}
._1a_c00116{width:21.060000px;}
._3_c00116{width:22.260000px;}
._14_c00116{width:23.580000px;}
._1b_c00116{width:24.600000px;}
._1d_c00116{width:26.460000px;}
._23_c00116{width:27.840000px;}
._29_c00116{width:29.640000px;}
._22_c00116{width:31.020000px;}
._25_c00116{width:32.280000px;}
._26_c00116{width:33.360000px;}
._21_c00116{width:34.560000px;}
._2_c00116{width:35.940000px;}
._1e_c00116{width:37.620000px;}
._2b_c00116{width:38.880000px;}
._2a_c00116{width:40.500000px;}
._27_c00116{width:41.520000px;}
._2c_c00116{width:45.000000px;}
._24_c00116{width:46.920000px;}
._28_c00116{width:48.540000px;}
._2d_c00116{width:76.680000px;}
._1f_c00116{width:83.400000px;}
._1c_c00116{width:96.840000px;}
.fc2_c00116{color:transparent;}
.fc1_c00116{color:rgb(128,128,128);}
.fc0_c00116{color:rgb(0,0,0);}
.fs3_c00116{font-size:36.000000px;}
.fs4_c00116{font-size:45.000000px;}
.fs6_c00116{font-size:48.000000px;}
.fs2_c00116{font-size:57.000000px;}
.fs0_c00116{font-size:60.000000px;}
.fs5_c00116{font-size:63.000000px;}
.fs1_c00116{font-size:66.000000px;}
.y0_c00116{bottom:0.000000px;}
.y57_c00116{bottom:3.105000px;}
.y56_c00116{bottom:7.228357px;}
.y55_c00116{bottom:37.230000px;}
.y54_c00116{bottom:56.730000px;}
.y2b_c00116{bottom:61.530000px;}
.y53_c00116{bottom:75.630000px;}
.y2a_c00116{bottom:80.280000px;}
.y52_c00116{bottom:93.180000px;}
.y29_c00116{bottom:98.280000px;}
.y51_c00116{bottom:111.330000px;}
.y28_c00116{bottom:115.530000px;}
.y50_c00116{bottom:129.030000px;}
.y27_c00116{bottom:133.980000px;}
.y4f_c00116{bottom:147.780000px;}
.y26_c00116{bottom:152.280000px;}
.y4e_c00116{bottom:166.080000px;}
.y25_c00116{bottom:170.430000px;}
.y4d_c00116{bottom:183.930000px;}
.y24_c00116{bottom:188.280000px;}
.y4c_c00116{bottom:201.930000px;}
.y23_c00116{bottom:206.880000px;}
.y4b_c00116{bottom:220.080000px;}
.y22_c00116{bottom:223.830000px;}
.y4a_c00116{bottom:237.330000px;}
.y21_c00116{bottom:242.730000px;}
.y49_c00116{bottom:256.230000px;}
.y20_c00116{bottom:260.580000px;}
.y48_c00116{bottom:273.780000px;}
.y1f_c00116{bottom:278.880000px;}
.y47_c00116{bottom:292.680000px;}
.y1e_c00116{bottom:296.430000px;}
.y46_c00116{bottom:310.530000px;}
.y1d_c00116{bottom:314.580000px;}
.y45_c00116{bottom:328.380000px;}
.y1c_c00116{bottom:332.430000px;}
.y44_c00116{bottom:346.380000px;}
.y1b_c00116{bottom:350.280000px;}
.y43_c00116{bottom:364.830000px;}
.y1a_c00116{bottom:367.980000px;}
.y42_c00116{bottom:382.830000px;}
.y19_c00116{bottom:386.730000px;}
.y41_c00116{bottom:400.980000px;}
.y18_c00116{bottom:404.280000px;}
.y40_c00116{bottom:418.530000px;}
.y17_c00116{bottom:422.280000px;}
.y3f_c00116{bottom:436.830000px;}
.y16_c00116{bottom:439.530000px;}
.y3e_c00116{bottom:454.980000px;}
.y15_c00116{bottom:457.980000px;}
.y3d_c00116{bottom:472.830000px;}
.y14_c00116{bottom:475.530000px;}
.y1_c00116{bottom:477.630000px;}
.y3c_c00116{bottom:490.380000px;}
.y13_c00116{bottom:494.730000px;}
.y3b_c00116{bottom:509.280000px;}
.y12_c00116{bottom:510.630000px;}
.y3a_c00116{bottom:526.830000px;}
.y11_c00116{bottom:528.180000px;}
.y39_c00116{bottom:544.380000px;}
.y10_c00116{bottom:546.180000px;}
.y38_c00116{bottom:563.280000px;}
.yf_c00116{bottom:564.930000px;}
.y37_c00116{bottom:581.130000px;}
.ye_c00116{bottom:582.630000px;}
.y36_c00116{bottom:599.130000px;}
.yd_c00116{bottom:600.180000px;}
.y35_c00116{bottom:616.980000px;}
.yc_c00116{bottom:618.330000px;}
.y34_c00116{bottom:634.830000px;}
.yb_c00116{bottom:636.480000px;}
.y33_c00116{bottom:652.680000px;}
.ya_c00116{bottom:655.080000px;}
.y32_c00116{bottom:670.980000px;}
.y9_c00116{bottom:672.030000px;}
.y31_c00116{bottom:689.130000px;}
.y8_c00116{bottom:689.880000px;}
.y30_c00116{bottom:707.130000px;}
.y7_c00116{bottom:708.030000px;}
.y2f_c00116{bottom:725.280000px;}
.y6_c00116{bottom:726.030000px;}
.y5_c00116{bottom:743.280000px;}
.y2e_c00116{bottom:761.130000px;}
.y4_c00116{bottom:762.030000px;}
.y2d_c00116{bottom:779.580000px;}
.y3_c00116{bottom:780.330000px;}
.y2_c00116{bottom:800.280000px;}
.y2c_c00116{bottom:800.580000px;}
.h6_c00116{height:13.200074px;}
.h7_c00116{height:43.804688px;}
.h2_c00116{height:62.880000px;}
.h4_c00116{height:64.020000px;}
.h5_c00116{height:68.292000px;}
.h3_c00116{height:71.544000px;}
.h1_c00116{height:845.250000px;}
.h0_c00116{height:845.400000px;}
.w1_c00116{width:104.875500px;}
.w0_c00116{width:587.250000px;}
.x0_c00116{left:0.000000px;}
.x1_c00116{left:19.350000px;}
.x8_c00116{left:20.850000px;}
.x4_c00116{left:74.550000px;}
.x6_c00116{left:76.200000px;}
.x3_c00116{left:77.250000px;}
.x7_c00116{left:78.300000px;}
.xa_c00116{left:80.550000px;}
.x9_c00116{left:81.600000px;}
.xc_c00116{left:101.550000px;}
.xb_c00116{left:134.700000px;}
.x5_c00116{left:149.400000px;}
.x2_c00116{left:194.400000px;}
.x12_c00116{left:245.439240px;}
.xd_c00116{left:283.050000px;}
.x10_c00116{left:294.300000px;}
.xe_c00116{left:295.350000px;}
.xf_c00116{left:297.300000px;}
.x11_c00116{left:445.050000px;}
@media print{
.v0_c00116{vertical-align:0.000000pt;}
.ls6_c00116{letter-spacing:-5.333333pt;}
.ls5_c00116{letter-spacing:0.000000pt;}
.ls0_c00116{letter-spacing:2.666667pt;}
.ls1_c00116{letter-spacing:5.333333pt;}
.ls2_c00116{letter-spacing:10.666667pt;}
.ls4_c00116{letter-spacing:11.600000pt;}
.ls3_c00116{letter-spacing:15.506667pt;}
.wsb_c00116{word-spacing:-29.602667pt;}
.ws3_c00116{word-spacing:-24.053333pt;}
.ws8_c00116{word-spacing:-23.253333pt;}
.ws5_c00116{word-spacing:-15.413333pt;}
.ws6_c00116{word-spacing:-15.384000pt;}
.ws4_c00116{word-spacing:-14.666667pt;}
.ws9_c00116{word-spacing:-13.333333pt;}
.wsa_c00116{word-spacing:-12.981333pt;}
.ws2_c00116{word-spacing:-12.586667pt;}
.ws7_c00116{word-spacing:-11.957333pt;}
.ws1_c00116{word-spacing:-7.413333pt;}
.ws0_c00116{word-spacing:-0.053333pt;}
.wsc_c00116{word-spacing:0.000000pt;}
._2e_c00116{margin-left:-20.906667pt;}
._16_c00116{margin-left:-15.466667pt;}
._15_c00116{margin-left:-12.586667pt;}
._20_c00116{margin-left:-10.453333pt;}
._f_c00116{margin-left:-9.546667pt;}
._12_c00116{margin-left:-7.946667pt;}
._8_c00116{margin-left:-6.986667pt;}
._7_c00116{margin-left:-5.226667pt;}
._6_c00116{margin-left:-3.893333pt;}
._5_c00116{margin-left:-2.986667pt;}
._11_c00116{margin-left:-2.026667pt;}
._b_c00116{margin-left:-1.120000pt;}
._a_c00116{width:1.173333pt;}
._9_c00116{width:2.720000pt;}
._c_c00116{width:4.266667pt;}
._d_c00116{width:5.493333pt;}
._0_c00116{width:6.613333pt;}
._18_c00116{width:7.893333pt;}
._4_c00116{width:9.600000pt;}
._e_c00116{width:10.773333pt;}
._10_c00116{width:11.840000pt;}
._19_c00116{width:12.746667pt;}
._17_c00116{width:14.826667pt;}
._13_c00116{width:16.000000pt;}
._1_c00116{width:17.386667pt;}
._1a_c00116{width:18.720000pt;}
._3_c00116{width:19.786667pt;}
._14_c00116{width:20.960000pt;}
._1b_c00116{width:21.866667pt;}
._1d_c00116{width:23.520000pt;}
._23_c00116{width:24.746667pt;}
._29_c00116{width:26.346667pt;}
._22_c00116{width:27.573333pt;}
._25_c00116{width:28.693333pt;}
._26_c00116{width:29.653333pt;}
._21_c00116{width:30.720000pt;}
._2_c00116{width:31.946667pt;}
._1e_c00116{width:33.440000pt;}
._2b_c00116{width:34.560000pt;}
._2a_c00116{width:36.000000pt;}
._27_c00116{width:36.906667pt;}
._2c_c00116{width:40.000000pt;}
._24_c00116{width:41.706667pt;}
._28_c00116{width:43.146667pt;}
._2d_c00116{width:68.160000pt;}
._1f_c00116{width:74.133333pt;}
._1c_c00116{width:86.080000pt;}
.fs3_c00116{font-size:32.000000pt;}
.fs4_c00116{font-size:40.000000pt;}
.fs6_c00116{font-size:42.666667pt;}
.fs2_c00116{font-size:50.666667pt;}
.fs0_c00116{font-size:53.333333pt;}
.fs5_c00116{font-size:56.000000pt;}
.fs1_c00116{font-size:58.666667pt;}
.y0_c00116{bottom:0.000000pt;}
.y57_c00116{bottom:2.760000pt;}
.y56_c00116{bottom:6.425206pt;}
.y55_c00116{bottom:33.093333pt;}
.y54_c00116{bottom:50.426667pt;}
.y2b_c00116{bottom:54.693333pt;}
.y53_c00116{bottom:67.226667pt;}
.y2a_c00116{bottom:71.360000pt;}
.y52_c00116{bottom:82.826667pt;}
.y29_c00116{bottom:87.360000pt;}
.y51_c00116{bottom:98.960000pt;}
.y28_c00116{bottom:102.693333pt;}
.y50_c00116{bottom:114.693333pt;}
.y27_c00116{bottom:119.093333pt;}
.y4f_c00116{bottom:131.360000pt;}
.y26_c00116{bottom:135.360000pt;}
.y4e_c00116{bottom:147.626667pt;}
.y25_c00116{bottom:151.493333pt;}
.y4d_c00116{bottom:163.493333pt;}
.y24_c00116{bottom:167.360000pt;}
.y4c_c00116{bottom:179.493333pt;}
.y23_c00116{bottom:183.893333pt;}
.y4b_c00116{bottom:195.626667pt;}
.y22_c00116{bottom:198.960000pt;}
.y4a_c00116{bottom:210.960000pt;}
.y21_c00116{bottom:215.760000pt;}
.y49_c00116{bottom:227.760000pt;}
.y20_c00116{bottom:231.626667pt;}
.y48_c00116{bottom:243.360000pt;}
.y1f_c00116{bottom:247.893333pt;}
.y47_c00116{bottom:260.160000pt;}
.y1e_c00116{bottom:263.493333pt;}
.y46_c00116{bottom:276.026667pt;}
.y1d_c00116{bottom:279.626667pt;}
.y45_c00116{bottom:291.893333pt;}
.y1c_c00116{bottom:295.493333pt;}
.y44_c00116{bottom:307.893333pt;}
.y1b_c00116{bottom:311.360000pt;}
.y43_c00116{bottom:324.293333pt;}
.y1a_c00116{bottom:327.093333pt;}
.y42_c00116{bottom:340.293333pt;}
.y19_c00116{bottom:343.760000pt;}
.y41_c00116{bottom:356.426667pt;}
.y18_c00116{bottom:359.360000pt;}
.y40_c00116{bottom:372.026667pt;}
.y17_c00116{bottom:375.360000pt;}
.y3f_c00116{bottom:388.293333pt;}
.y16_c00116{bottom:390.693333pt;}
.y3e_c00116{bottom:404.426667pt;}
.y15_c00116{bottom:407.093333pt;}
.y3d_c00116{bottom:420.293333pt;}
.y14_c00116{bottom:422.693333pt;}
.y1_c00116{bottom:424.560000pt;}
.y3c_c00116{bottom:435.893333pt;}
.y13_c00116{bottom:439.760000pt;}
.y3b_c00116{bottom:452.693333pt;}
.y12_c00116{bottom:453.893333pt;}
.y3a_c00116{bottom:468.293333pt;}
.y11_c00116{bottom:469.493333pt;}
.y39_c00116{bottom:483.893333pt;}
.y10_c00116{bottom:485.493333pt;}
.y38_c00116{bottom:500.693333pt;}
.yf_c00116{bottom:502.160000pt;}
.y37_c00116{bottom:516.560000pt;}
.ye_c00116{bottom:517.893333pt;}
.y36_c00116{bottom:532.560000pt;}
.yd_c00116{bottom:533.493333pt;}
.y35_c00116{bottom:548.426667pt;}
.yc_c00116{bottom:549.626667pt;}
.y34_c00116{bottom:564.293333pt;}
.yb_c00116{bottom:565.760000pt;}
.y33_c00116{bottom:580.160000pt;}
.ya_c00116{bottom:582.293333pt;}
.y32_c00116{bottom:596.426667pt;}
.y9_c00116{bottom:597.360000pt;}
.y31_c00116{bottom:612.560000pt;}
.y8_c00116{bottom:613.226667pt;}
.y30_c00116{bottom:628.560000pt;}
.y7_c00116{bottom:629.360000pt;}
.y2f_c00116{bottom:644.693333pt;}
.y6_c00116{bottom:645.360000pt;}
.y5_c00116{bottom:660.693333pt;}
.y2e_c00116{bottom:676.560000pt;}
.y4_c00116{bottom:677.360000pt;}
.y2d_c00116{bottom:692.960000pt;}
.y3_c00116{bottom:693.626667pt;}
.y2_c00116{bottom:711.360000pt;}
.y2c_c00116{bottom:711.626667pt;}
.h6_c00116{height:11.733399pt;}
.h7_c00116{height:38.937500pt;}
.h2_c00116{height:55.893333pt;}
.h4_c00116{height:56.906667pt;}
.h5_c00116{height:60.704000pt;}
.h3_c00116{height:63.594667pt;}
.h1_c00116{height:751.333333pt;}
.h0_c00116{height:751.466667pt;}
.w1_c00116{width:93.222667pt;}
.w0_c00116{width:522.000000pt;}
.x0_c00116{left:0.000000pt;}
.x1_c00116{left:17.200000pt;}
.x8_c00116{left:18.533333pt;}
.x4_c00116{left:66.266667pt;}
.x6_c00116{left:67.733333pt;}
.x3_c00116{left:68.666667pt;}
.x7_c00116{left:69.600000pt;}
.xa_c00116{left:71.600000pt;}
.x9_c00116{left:72.533333pt;}
.xc_c00116{left:90.266667pt;}
.xb_c00116{left:119.733333pt;}
.x5_c00116{left:132.800000pt;}
.x2_c00116{left:172.800000pt;}
.x12_c00116{left:218.168213pt;}
.xd_c00116{left:251.600000pt;}
.x10_c00116{left:261.600000pt;}
.xe_c00116{left:262.533333pt;}
.xf_c00116{left:264.266667pt;}
.x11_c00116{left:395.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_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_c8bf83e50059a7396c15dabd.woff2')format("woff");}.ff1_c00117{font-family:ff1_c00117;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00117;src:url('chunks/assets/font_e2aed055d4fcb3c42021edd4.woff2')format("woff");}.ff2_c00117{font-family:ff2_c00117;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00117;src:url('chunks/assets/font_6bb1f7f50de5eb3a6c7e389e.woff2')format("woff");}.ff3_c00117{font-family:ff3_c00117;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00117;src:url('chunks/assets/font_1cff92d82b1bf71c4c5fb4b3.woff2')format("woff");}.ff4_c00117{font-family:ff4_c00117;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00117;src:url('chunks/assets/font_619f1a61c80d68bb84bcd854.woff2')format("woff");}.ff5_c00117{font-family:ff5_c00117;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00117;src:url('chunks/assets/font_056595e10922227785f00427.woff2')format("woff");}.ff6_c00117{font-family:ff6_c00117;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00117;src:url('chunks/assets/font_0ce391de997f24f9f9dd37f4.woff2')format("woff");}.ff7_c00117{font-family:ff7_c00117;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00117;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff8_c00117{font-family:ff8_c00117;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00117{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00117{vertical-align:0.000000px;}
.lsc_c00117{letter-spacing:-6.000000px;}
.ls9_c00117{letter-spacing:0.000000px;}
.ls4_c00117{letter-spacing:1.500000px;}
.ls8_c00117{letter-spacing:2.805000px;}
.ls1_c00117{letter-spacing:3.000000px;}
.ls6_c00117{letter-spacing:4.140000px;}
.lsb_c00117{letter-spacing:6.000000px;}
.ls3_c00117{letter-spacing:9.882000px;}
.ls2_c00117{letter-spacing:10.800000px;}
.lsa_c00117{letter-spacing:12.000000px;}
.ls7_c00117{letter-spacing:15.060000px;}
.ls5_c00117{letter-spacing:37.260000px;}
.ls0_c00117{letter-spacing:315.660000px;}
.sc__c00117{text-shadow:none;}
.sc0_c00117{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00117{-webkit-text-stroke:0px transparent;}
.sc0_c00117{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00117{word-spacing:-31.746000px;}
.ws5_c00117{word-spacing:-27.060000px;}
.ws1_c00117{word-spacing:-26.340000px;}
.ws2_c00117{word-spacing:-18.813000px;}
.ws4_c00117{word-spacing:-17.340000px;}
.ws3_c00117{word-spacing:-14.427000px;}
.ws0_c00117{word-spacing:-14.160000px;}
.ws6_c00117{word-spacing:-8.160000px;}
.ws8_c00117{word-spacing:0.000000px;}
._22_c00117{margin-left:-21.555000px;}
._23_c00117{margin-left:-18.900000px;}
._15_c00117{margin-left:-17.280000px;}
._12_c00117{margin-left:-15.354000px;}
._6_c00117{margin-left:-13.608000px;}
._14_c00117{margin-left:-12.093000px;}
._7_c00117{margin-left:-10.269000px;}
._17_c00117{margin-left:-9.129000px;}
._13_c00117{margin-left:-8.031000px;}
._9_c00117{margin-left:-6.189000px;}
._a_c00117{margin-left:-4.914000px;}
._8_c00117{margin-left:-3.702000px;}
._c_c00117{margin-left:-1.983000px;}
._b_c00117{width:1.281000px;}
._0_c00117{width:2.340000px;}
._1_c00117{width:4.080000px;}
._2_c00117{width:5.580000px;}
._3_c00117{width:7.080000px;}
._5_c00117{width:9.060000px;}
._4_c00117{width:10.620000px;}
._1a_c00117{width:11.778000px;}
._18_c00117{width:12.798000px;}
._d_c00117{width:13.881000px;}
._16_c00117{width:15.588000px;}
._1e_c00117{width:17.160000px;}
._24_c00117{width:18.393000px;}
._1b_c00117{width:19.707000px;}
._19_c00117{width:21.186000px;}
._e_c00117{width:22.239000px;}
._f_c00117{width:24.099000px;}
._21_c00117{width:25.539000px;}
._20_c00117{width:27.303000px;}
._10_c00117{width:28.686000px;}
._11_c00117{width:30.714000px;}
._1f_c00117{width:37.671000px;}
._1c_c00117{width:40.902000px;}
._25_c00117{width:52.074000px;}
._1d_c00117{width:186.222000px;}
.fc2_c00117{color:transparent;}
.fc1_c00117{color:rgb(128,128,128);}
.fc0_c00117{color:rgb(0,0,0);}
.fs4_c00117{font-size:39.000000px;}
.fs5_c00117{font-size:45.000000px;}
.fs6_c00117{font-size:48.000000px;}
.fs3_c00117{font-size:57.000000px;}
.fs0_c00117{font-size:60.000000px;}
.fs1_c00117{font-size:63.000000px;}
.fs2_c00117{font-size:66.000000px;}
.y0_c00117{bottom:0.000000px;}
.y56_c00117{bottom:3.105000px;}
.y55_c00117{bottom:7.228371px;}
.y54_c00117{bottom:45.315000px;}
.y2a_c00117{bottom:61.515000px;}
.y53_c00117{bottom:63.165000px;}
.y29_c00117{bottom:80.115000px;}
.y52_c00117{bottom:82.815000px;}
.y28_c00117{bottom:97.965000px;}
.y51_c00117{bottom:99.915000px;}
.y27_c00117{bottom:115.815000px;}
.y50_c00117{bottom:117.765000px;}
.y26_c00117{bottom:133.965000px;}
.y4f_c00117{bottom:135.465000px;}
.y25_c00117{bottom:151.965000px;}
.y4e_c00117{bottom:153.615000px;}
.y24_c00117{bottom:169.815000px;}
.y4d_c00117{bottom:171.465000px;}
.y23_c00117{bottom:187.665000px;}
.y4c_c00117{bottom:189.315000px;}
.y22_c00117{bottom:205.965000px;}
.y4b_c00117{bottom:207.015000px;}
.y21_c00117{bottom:224.115000px;}
.y4a_c00117{bottom:225.165000px;}
.y20_c00117{bottom:242.115000px;}
.y49_c00117{bottom:243.465000px;}
.y1f_c00117{bottom:259.965000px;}
.y48_c00117{bottom:261.615000px;}
.y1e_c00117{bottom:278.415000px;}
.y47_c00117{bottom:279.765000px;}
.y1d_c00117{bottom:295.965000px;}
.y46_c00117{bottom:297.015000px;}
.y1c_c00117{bottom:314.265000px;}
.y45_c00117{bottom:314.865000px;}
.y1b_c00117{bottom:332.115000px;}
.y44_c00117{bottom:333.765000px;}
.y1a_c00117{bottom:350.415000px;}
.y43_c00117{bottom:351.465000px;}
.y19_c00117{bottom:367.665000px;}
.y42_c00117{bottom:369.315000px;}
.y18_c00117{bottom:385.815000px;}
.y41_c00117{bottom:387.765000px;}
.y17_c00117{bottom:404.115000px;}
.y40_c00117{bottom:404.715000px;}
.y16_c00117{bottom:423.015000px;}
.y3f_c00117{bottom:423.315000px;}
.y15_c00117{bottom:440.115000px;}
.y3e_c00117{bottom:441.465000px;}
.y14_c00117{bottom:458.115000px;}
.y3d_c00117{bottom:459.015000px;}
.y13_c00117{bottom:476.265000px;}
.y3c_c00117{bottom:477.015000px;}
.y12_c00117{bottom:494.415000px;}
.y11_c00117{bottom:512.415000px;}
.y3b_c00117{bottom:513.315000px;}
.y10_c00117{bottom:530.565000px;}
.y3a_c00117{bottom:531.315000px;}
.yf_c00117{bottom:548.415000px;}
.y39_c00117{bottom:549.765000px;}
.ye_c00117{bottom:566.415000px;}
.y38_c00117{bottom:567.315000px;}
.yd_c00117{bottom:584.565000px;}
.y37_c00117{bottom:585.315000px;}
.yc_c00117{bottom:602.565000px;}
.y36_c00117{bottom:602.865000px;}
.yb_c00117{bottom:620.115000px;}
.y35_c00117{bottom:620.715000px;}
.ya_c00117{bottom:637.965000px;}
.y34_c00117{bottom:639.315000px;}
.y9_c00117{bottom:656.415000px;}
.y33_c00117{bottom:656.865000px;}
.y8_c00117{bottom:674.415000px;}
.y32_c00117{bottom:675.015000px;}
.y7_c00117{bottom:692.265000px;}
.y31_c00117{bottom:693.015000px;}
.y6_c00117{bottom:709.815000px;}
.y30_c00117{bottom:711.165000px;}
.y5_c00117{bottom:728.715000px;}
.y2f_c00117{bottom:729.015000px;}
.y4_c00117{bottom:746.565000px;}
.y2e_c00117{bottom:747.315000px;}
.y3_c00117{bottom:764.115000px;}
.y2d_c00117{bottom:764.865000px;}
.y2_c00117{bottom:781.965000px;}
.y2c_c00117{bottom:783.765000px;}
.y1_c00117{bottom:801.015000px;}
.y2b_c00117{bottom:802.365000px;}
.h7_c00117{height:13.200074px;}
.h8_c00117{height:43.804688px;}
.h6_c00117{height:59.736000px;}
.h2_c00117{height:62.880000px;}
.h3_c00117{height:66.024000px;}
.h5_c00117{height:69.168000px;}
.h4_c00117{height:70.422000px;}
.h0_c00117{height:839.175000px;}
.h1_c00117{height:839.250000px;}
.w2_c00117{width:104.875500px;}
.w1_c00117{width:576.000000px;}
.w0_c00117{width:576.150000px;}
.x0_c00117{left:0.000000px;}
.x7_c00117{left:44.550000px;}
.x8_c00117{left:99.600000px;}
.x6_c00117{left:102.900000px;}
.x1_c00117{left:104.550000px;}
.x3_c00117{left:105.600000px;}
.x2_c00117{left:106.650000px;}
.x5_c00117{left:121.200000px;}
.x4_c00117{left:125.250000px;}
.x10_c00117{left:239.889267px;}
.x9_c00117{left:316.350000px;}
.xe_c00117{left:317.700000px;}
.xd_c00117{left:318.900000px;}
.xc_c00117{left:319.950000px;}
.xa_c00117{left:321.300000px;}
.xb_c00117{left:323.100000px;}
.xf_c00117{left:482.700000px;}
@media print{
.v0_c00117{vertical-align:0.000000pt;}
.lsc_c00117{letter-spacing:-5.333333pt;}
.ls9_c00117{letter-spacing:0.000000pt;}
.ls4_c00117{letter-spacing:1.333333pt;}
.ls8_c00117{letter-spacing:2.493333pt;}
.ls1_c00117{letter-spacing:2.666667pt;}
.ls6_c00117{letter-spacing:3.680000pt;}
.lsb_c00117{letter-spacing:5.333333pt;}
.ls3_c00117{letter-spacing:8.784000pt;}
.ls2_c00117{letter-spacing:9.600000pt;}
.lsa_c00117{letter-spacing:10.666667pt;}
.ls7_c00117{letter-spacing:13.386667pt;}
.ls5_c00117{letter-spacing:33.120000pt;}
.ls0_c00117{letter-spacing:280.586667pt;}
.ws7_c00117{word-spacing:-28.218667pt;}
.ws5_c00117{word-spacing:-24.053333pt;}
.ws1_c00117{word-spacing:-23.413333pt;}
.ws2_c00117{word-spacing:-16.722667pt;}
.ws4_c00117{word-spacing:-15.413333pt;}
.ws3_c00117{word-spacing:-12.824000pt;}
.ws0_c00117{word-spacing:-12.586667pt;}
.ws6_c00117{word-spacing:-7.253333pt;}
.ws8_c00117{word-spacing:0.000000pt;}
._22_c00117{margin-left:-19.160000pt;}
._23_c00117{margin-left:-16.800000pt;}
._15_c00117{margin-left:-15.360000pt;}
._12_c00117{margin-left:-13.648000pt;}
._6_c00117{margin-left:-12.096000pt;}
._14_c00117{margin-left:-10.749333pt;}
._7_c00117{margin-left:-9.128000pt;}
._17_c00117{margin-left:-8.114667pt;}
._13_c00117{margin-left:-7.138667pt;}
._9_c00117{margin-left:-5.501333pt;}
._a_c00117{margin-left:-4.368000pt;}
._8_c00117{margin-left:-3.290667pt;}
._c_c00117{margin-left:-1.762667pt;}
._b_c00117{width:1.138667pt;}
._0_c00117{width:2.080000pt;}
._1_c00117{width:3.626667pt;}
._2_c00117{width:4.960000pt;}
._3_c00117{width:6.293333pt;}
._5_c00117{width:8.053333pt;}
._4_c00117{width:9.440000pt;}
._1a_c00117{width:10.469333pt;}
._18_c00117{width:11.376000pt;}
._d_c00117{width:12.338667pt;}
._16_c00117{width:13.856000pt;}
._1e_c00117{width:15.253333pt;}
._24_c00117{width:16.349333pt;}
._1b_c00117{width:17.517333pt;}
._19_c00117{width:18.832000pt;}
._e_c00117{width:19.768000pt;}
._f_c00117{width:21.421333pt;}
._21_c00117{width:22.701333pt;}
._20_c00117{width:24.269333pt;}
._10_c00117{width:25.498667pt;}
._11_c00117{width:27.301333pt;}
._1f_c00117{width:33.485333pt;}
._1c_c00117{width:36.357333pt;}
._25_c00117{width:46.288000pt;}
._1d_c00117{width:165.530667pt;}
.fs4_c00117{font-size:34.666667pt;}
.fs5_c00117{font-size:40.000000pt;}
.fs6_c00117{font-size:42.666667pt;}
.fs3_c00117{font-size:50.666667pt;}
.fs0_c00117{font-size:53.333333pt;}
.fs1_c00117{font-size:56.000000pt;}
.fs2_c00117{font-size:58.666667pt;}
.y0_c00117{bottom:0.000000pt;}
.y56_c00117{bottom:2.760000pt;}
.y55_c00117{bottom:6.425219pt;}
.y54_c00117{bottom:40.280000pt;}
.y2a_c00117{bottom:54.680000pt;}
.y53_c00117{bottom:56.146667pt;}
.y29_c00117{bottom:71.213333pt;}
.y52_c00117{bottom:73.613333pt;}
.y28_c00117{bottom:87.080000pt;}
.y51_c00117{bottom:88.813333pt;}
.y27_c00117{bottom:102.946667pt;}
.y50_c00117{bottom:104.680000pt;}
.y26_c00117{bottom:119.080000pt;}
.y4f_c00117{bottom:120.413333pt;}
.y25_c00117{bottom:135.080000pt;}
.y4e_c00117{bottom:136.546667pt;}
.y24_c00117{bottom:150.946667pt;}
.y4d_c00117{bottom:152.413333pt;}
.y23_c00117{bottom:166.813333pt;}
.y4c_c00117{bottom:168.280000pt;}
.y22_c00117{bottom:183.080000pt;}
.y4b_c00117{bottom:184.013333pt;}
.y21_c00117{bottom:199.213333pt;}
.y4a_c00117{bottom:200.146667pt;}
.y20_c00117{bottom:215.213333pt;}
.y49_c00117{bottom:216.413333pt;}
.y1f_c00117{bottom:231.080000pt;}
.y48_c00117{bottom:232.546667pt;}
.y1e_c00117{bottom:247.480000pt;}
.y47_c00117{bottom:248.680000pt;}
.y1d_c00117{bottom:263.080000pt;}
.y46_c00117{bottom:264.013333pt;}
.y1c_c00117{bottom:279.346667pt;}
.y45_c00117{bottom:279.880000pt;}
.y1b_c00117{bottom:295.213333pt;}
.y44_c00117{bottom:296.680000pt;}
.y1a_c00117{bottom:311.480000pt;}
.y43_c00117{bottom:312.413333pt;}
.y19_c00117{bottom:326.813333pt;}
.y42_c00117{bottom:328.280000pt;}
.y18_c00117{bottom:342.946667pt;}
.y41_c00117{bottom:344.680000pt;}
.y17_c00117{bottom:359.213333pt;}
.y40_c00117{bottom:359.746667pt;}
.y16_c00117{bottom:376.013333pt;}
.y3f_c00117{bottom:376.280000pt;}
.y15_c00117{bottom:391.213333pt;}
.y3e_c00117{bottom:392.413333pt;}
.y14_c00117{bottom:407.213333pt;}
.y3d_c00117{bottom:408.013333pt;}
.y13_c00117{bottom:423.346667pt;}
.y3c_c00117{bottom:424.013333pt;}
.y12_c00117{bottom:439.480000pt;}
.y11_c00117{bottom:455.480000pt;}
.y3b_c00117{bottom:456.280000pt;}
.y10_c00117{bottom:471.613333pt;}
.y3a_c00117{bottom:472.280000pt;}
.yf_c00117{bottom:487.480000pt;}
.y39_c00117{bottom:488.680000pt;}
.ye_c00117{bottom:503.480000pt;}
.y38_c00117{bottom:504.280000pt;}
.yd_c00117{bottom:519.613333pt;}
.y37_c00117{bottom:520.280000pt;}
.yc_c00117{bottom:535.613333pt;}
.y36_c00117{bottom:535.880000pt;}
.yb_c00117{bottom:551.213333pt;}
.y35_c00117{bottom:551.746667pt;}
.ya_c00117{bottom:567.080000pt;}
.y34_c00117{bottom:568.280000pt;}
.y9_c00117{bottom:583.480000pt;}
.y33_c00117{bottom:583.880000pt;}
.y8_c00117{bottom:599.480000pt;}
.y32_c00117{bottom:600.013333pt;}
.y7_c00117{bottom:615.346667pt;}
.y31_c00117{bottom:616.013333pt;}
.y6_c00117{bottom:630.946667pt;}
.y30_c00117{bottom:632.146667pt;}
.y5_c00117{bottom:647.746667pt;}
.y2f_c00117{bottom:648.013333pt;}
.y4_c00117{bottom:663.613333pt;}
.y2e_c00117{bottom:664.280000pt;}
.y3_c00117{bottom:679.213333pt;}
.y2d_c00117{bottom:679.880000pt;}
.y2_c00117{bottom:695.080000pt;}
.y2c_c00117{bottom:696.680000pt;}
.y1_c00117{bottom:712.013333pt;}
.y2b_c00117{bottom:713.213333pt;}
.h7_c00117{height:11.733399pt;}
.h8_c00117{height:38.937500pt;}
.h6_c00117{height:53.098667pt;}
.h2_c00117{height:55.893333pt;}
.h3_c00117{height:58.688000pt;}
.h5_c00117{height:61.482667pt;}
.h4_c00117{height:62.597333pt;}
.h0_c00117{height:745.933333pt;}
.h1_c00117{height:746.000000pt;}
.w2_c00117{width:93.222667pt;}
.w1_c00117{width:512.000000pt;}
.w0_c00117{width:512.133333pt;}
.x0_c00117{left:0.000000pt;}
.x7_c00117{left:39.600000pt;}
.x8_c00117{left:88.533333pt;}
.x6_c00117{left:91.466667pt;}
.x1_c00117{left:92.933333pt;}
.x3_c00117{left:93.866667pt;}
.x2_c00117{left:94.800000pt;}
.x5_c00117{left:107.733333pt;}
.x4_c00117{left:111.333333pt;}
.x10_c00117{left:213.234904pt;}
.x9_c00117{left:281.200000pt;}
.xe_c00117{left:282.400000pt;}
.xd_c00117{left:283.466667pt;}
.xc_c00117{left:284.400000pt;}
.xa_c00117{left:285.600000pt;}
.xb_c00117{left:287.200000pt;}
.xf_c00117{left:429.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_c00118 {
    display:none;
  }
  .loading-indicator_c00118.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00118 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00118 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00118" -> "#page-container .classname_c00118")
 */
.pf_c00118 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00118 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00118.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00118 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00118 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00118 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00118 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00118 {overflow:visible;}
  }
}
.c_c00118 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00118 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00118:after { /* webkit #35443 */
  content: '';
}
.t_c00118:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00118 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00118 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00118 { /* info for Javascript */
  display:none;
}
.l_c00118 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00118 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00118 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00118:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00118{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00118;src:url('chunks/assets/font_e1b571b4a2b1741b3f268828.woff2')format("woff");}.ff1_c00118{font-family:ff1_c00118;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00118;src:url('chunks/assets/font_20e00cf277c83230befff3ea.woff2')format("woff");}.ff2_c00118{font-family:ff2_c00118;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00118;src:url('chunks/assets/font_33d92a3df78fb9461ff15e1a.woff2')format("woff");}.ff3_c00118{font-family:ff3_c00118;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00118;src:url('chunks/assets/font_6a71cfa3684c52d77c029572.woff2')format("woff");}.ff4_c00118{font-family:ff4_c00118;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00118;src:url('chunks/assets/font_6eec1bb16eafd910b868d567.woff2')format("woff");}.ff5_c00118{font-family:ff5_c00118;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00118;src:url('chunks/assets/font_26a087487408f409f2dc6b8c.woff2')format("woff");}.ff6_c00118{font-family:ff6_c00118;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00118;src:url('chunks/assets/font_76b987c5b142286a6f608694.woff2')format("woff");}.ff7_c00118{font-family:ff7_c00118;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00118;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff8_c00118{font-family:ff8_c00118;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00118{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00118{vertical-align:0.000000px;}
.v1_c00118{vertical-align:86.400000px;}
.ls3_c00118{letter-spacing:0.000000px;}
.ls0_c00118{letter-spacing:3.000000px;}
.ls4_c00118{letter-spacing:6.000000px;}
.ls2_c00118{letter-spacing:11.637000px;}
.ls1_c00118{letter-spacing:12.000000px;}
.sc__c00118{text-shadow:none;}
.sc0_c00118{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00118{-webkit-text-stroke:0px transparent;}
.sc0_c00118{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00118{word-spacing:-35.295000px;}
.ws2_c00118{word-spacing:-27.060000px;}
.ws3_c00118{word-spacing:-26.160000px;}
.wsa_c00118{word-spacing:-25.389000px;}
.ws5_c00118{word-spacing:-18.060000px;}
.ws4_c00118{word-spacing:-17.340000px;}
.ws6_c00118{word-spacing:-16.500000px;}
.ws0_c00118{word-spacing:-14.160000px;}
.ws7_c00118{word-spacing:-13.623000px;}
.ws8_c00118{word-spacing:-1.938000px;}
.ws9_c00118{word-spacing:-0.720000px;}
.wsb_c00118{word-spacing:0.000000px;}
._5_c00118{margin-left:-18.135000px;}
._1f_c00118{margin-left:-16.467000px;}
._29_c00118{margin-left:-14.820000px;}
._1d_c00118{margin-left:-13.440000px;}
._22_c00118{margin-left:-12.420000px;}
._10_c00118{margin-left:-11.169000px;}
._1e_c00118{margin-left:-10.113000px;}
._c_c00118{margin-left:-8.520000px;}
._d_c00118{margin-left:-6.960000px;}
._a_c00118{margin-left:-5.700000px;}
._b_c00118{margin-left:-4.500000px;}
._e_c00118{margin-left:-3.480000px;}
._4_c00118{margin-left:-2.280000px;}
._11_c00118{margin-left:-1.020000px;}
._3_c00118{width:1.920000px;}
._8_c00118{width:3.540000px;}
._18_c00118{width:4.581000px;}
._1_c00118{width:5.589000px;}
._24_c00118{width:6.600000px;}
._0_c00118{width:7.659000px;}
._6_c00118{width:9.540000px;}
._9_c00118{width:11.541000px;}
._13_c00118{width:12.720000px;}
._25_c00118{width:14.259000px;}
._14_c00118{width:15.900000px;}
._20_c00118{width:16.971000px;}
._7_c00118{width:17.991000px;}
._12_c00118{width:19.113000px;}
._16_c00118{width:20.460000px;}
._17_c00118{width:21.780000px;}
._f_c00118{width:22.920000px;}
._15_c00118{width:24.900000px;}
._27_c00118{width:27.480000px;}
._21_c00118{width:29.310000px;}
._19_c00118{width:33.480000px;}
._1b_c00118{width:36.747000px;}
._2a_c00118{width:38.709000px;}
._2_c00118{width:41.262000px;}
._23_c00118{width:46.482000px;}
._28_c00118{width:92.640000px;}
._1c_c00118{width:112.149000px;}
._26_c00118{width:127.263000px;}
._1a_c00118{width:153.912000px;}
.fc2_c00118{color:transparent;}
.fc1_c00118{color:rgb(128,128,128);}
.fc0_c00118{color:rgb(0,0,0);}
.fs7_c00118{font-size:39.000000px;}
.fs2_c00118{font-size:45.000000px;}
.fs8_c00118{font-size:48.000000px;}
.fs6_c00118{font-size:51.000000px;}
.fs3_c00118{font-size:54.000000px;}
.fs4_c00118{font-size:57.000000px;}
.fs1_c00118{font-size:60.000000px;}
.fs0_c00118{font-size:69.000000px;}
.fs5_c00118{font-size:213.000000px;}
.y0_c00118{bottom:0.000000px;}
.y4b_c00118{bottom:3.105000px;}
.y4a_c00118{bottom:7.228371px;}
.y49_c00118{bottom:40.965000px;}
.y48_c00118{bottom:59.415000px;}
.y47_c00118{bottom:78.015000px;}
.y46_c00118{bottom:94.965000px;}
.y45_c00118{bottom:113.415000px;}
.y44_c00118{bottom:131.715000px;}
.y43_c00118{bottom:149.565000px;}
.y42_c00118{bottom:167.415000px;}
.y24_c00118{bottom:168.765000px;}
.y41_c00118{bottom:185.715000px;}
.y23_c00118{bottom:187.365000px;}
.y40_c00118{bottom:203.865000px;}
.y22_c00118{bottom:204.915000px;}
.y3f_c00118{bottom:221.415000px;}
.y21_c00118{bottom:222.165000px;}
.y3e_c00118{bottom:239.715000px;}
.y20_c00118{bottom:241.065000px;}
.y3d_c00118{bottom:257.565000px;}
.y1f_c00118{bottom:259.515000px;}
.y3c_c00118{bottom:275.415000px;}
.y1e_c00118{bottom:277.215000px;}
.y3b_c00118{bottom:292.965000px;}
.y1d_c00118{bottom:294.615000px;}
.y3a_c00118{bottom:311.265000px;}
.y1c_c00118{bottom:312.915000px;}
.y39_c00118{bottom:329.865000px;}
.y1b_c00118{bottom:330.465000px;}
.y38_c00118{bottom:347.415000px;}
.y1a_c00118{bottom:348.765000px;}
.y37_c00118{bottom:365.265000px;}
.y19_c00118{bottom:366.165000px;}
.y36_c00118{bottom:383.415000px;}
.y18_c00118{bottom:384.765000px;}
.y35_c00118{bottom:401.265000px;}
.y17_c00118{bottom:402.765000px;}
.y34_c00118{bottom:418.515000px;}
.y16_c00118{bottom:420.165000px;}
.y33_c00118{bottom:437.415000px;}
.y15_c00118{bottom:437.715000px;}
.y32_c00118{bottom:454.965000px;}
.y14_c00118{bottom:455.715000px;}
.y31_c00118{bottom:472.515000px;}
.y13_c00118{bottom:473.865000px;}
.y30_c00118{bottom:491.115000px;}
.y12_c00118{bottom:491.715000px;}
.y2f_c00118{bottom:508.665000px;}
.y11_c00118{bottom:509.265000px;}
.y2e_c00118{bottom:526.215000px;}
.y10_c00118{bottom:526.815000px;}
.yf_c00118{bottom:544.815000px;}
.ye_c00118{bottom:562.665000px;}
.y2d_c00118{bottom:562.965000px;}
.yd_c00118{bottom:580.515000px;}
.y2c_c00118{bottom:580.965000px;}
.y2b_c00118{bottom:598.815000px;}
.yc_c00118{bottom:599.415000px;}
.y29_c00118{bottom:613.365000px;}
.y2a_c00118{bottom:616.365000px;}
.yb_c00118{bottom:617.265000px;}
.ya_c00118{bottom:634.965000px;}
.y9_c00118{bottom:653.415000px;}
.y8_c00118{bottom:670.665000px;}
.y7_c00118{bottom:687.615000px;}
.y28_c00118{bottom:688.815000px;}
.y6_c00118{bottom:706.815000px;}
.y27_c00118{bottom:707.415000px;}
.y5_c00118{bottom:724.065000px;}
.y26_c00118{bottom:725.265000px;}
.y4_c00118{bottom:742.815000px;}
.y25_c00118{bottom:760.065000px;}
.y3_c00118{bottom:760.365000px;}
.y2_c00118{bottom:778.365000px;}
.y1_c00118{bottom:798.165000px;}
.h7_c00118{height:13.200074px;}
.h6_c00118{height:42.276000px;}
.h8_c00118{height:43.804688px;}
.h4_c00118{height:59.736000px;}
.h3_c00118{height:62.880000px;}
.h2_c00118{height:73.623000px;}
.h5_c00118{height:223.224000px;}
.h0_c00118{height:833.775000px;}
.h1_c00118{height:834.000000px;}
.w2_c00118{width:104.875500px;}
.w0_c00118{width:578.850000px;}
.w1_c00118{width:579.000000px;}
.x0_c00118{left:0.000000px;}
.x3_c00118{left:59.100000px;}
.x2_c00118{left:60.450000px;}
.x4_c00118{left:61.500000px;}
.x5_c00118{left:73.350000px;}
.x6_c00118{left:111.150000px;}
.x7_c00118{left:132.600000px;}
.x1_c00118{left:188.100000px;}
.x10_c00118{left:241.239258px;}
.xe_c00118{left:273.450000px;}
.x9_c00118{left:274.800000px;}
.xd_c00118{left:275.850000px;}
.xa_c00118{left:289.350000px;}
.xc_c00118{left:316.200000px;}
.xb_c00118{left:334.200000px;}
.x8_c00118{left:370.950000px;}
.xf_c00118{left:440.100000px;}
@media print{
.v0_c00118{vertical-align:0.000000pt;}
.v1_c00118{vertical-align:76.800000pt;}
.ls3_c00118{letter-spacing:0.000000pt;}
.ls0_c00118{letter-spacing:2.666667pt;}
.ls4_c00118{letter-spacing:5.333333pt;}
.ls2_c00118{letter-spacing:10.344000pt;}
.ls1_c00118{letter-spacing:10.666667pt;}
.ws1_c00118{word-spacing:-31.373333pt;}
.ws2_c00118{word-spacing:-24.053333pt;}
.ws3_c00118{word-spacing:-23.253333pt;}
.wsa_c00118{word-spacing:-22.568000pt;}
.ws5_c00118{word-spacing:-16.053333pt;}
.ws4_c00118{word-spacing:-15.413333pt;}
.ws6_c00118{word-spacing:-14.666667pt;}
.ws0_c00118{word-spacing:-12.586667pt;}
.ws7_c00118{word-spacing:-12.109333pt;}
.ws8_c00118{word-spacing:-1.722667pt;}
.ws9_c00118{word-spacing:-0.640000pt;}
.wsb_c00118{word-spacing:0.000000pt;}
._5_c00118{margin-left:-16.120000pt;}
._1f_c00118{margin-left:-14.637333pt;}
._29_c00118{margin-left:-13.173333pt;}
._1d_c00118{margin-left:-11.946667pt;}
._22_c00118{margin-left:-11.040000pt;}
._10_c00118{margin-left:-9.928000pt;}
._1e_c00118{margin-left:-8.989333pt;}
._c_c00118{margin-left:-7.573333pt;}
._d_c00118{margin-left:-6.186667pt;}
._a_c00118{margin-left:-5.066667pt;}
._b_c00118{margin-left:-4.000000pt;}
._e_c00118{margin-left:-3.093333pt;}
._4_c00118{margin-left:-2.026667pt;}
._11_c00118{margin-left:-0.906667pt;}
._3_c00118{width:1.706667pt;}
._8_c00118{width:3.146667pt;}
._18_c00118{width:4.072000pt;}
._1_c00118{width:4.968000pt;}
._24_c00118{width:5.866667pt;}
._0_c00118{width:6.808000pt;}
._6_c00118{width:8.480000pt;}
._9_c00118{width:10.258667pt;}
._13_c00118{width:11.306667pt;}
._25_c00118{width:12.674667pt;}
._14_c00118{width:14.133333pt;}
._20_c00118{width:15.085333pt;}
._7_c00118{width:15.992000pt;}
._12_c00118{width:16.989333pt;}
._16_c00118{width:18.186667pt;}
._17_c00118{width:19.360000pt;}
._f_c00118{width:20.373333pt;}
._15_c00118{width:22.133333pt;}
._27_c00118{width:24.426667pt;}
._21_c00118{width:26.053333pt;}
._19_c00118{width:29.760000pt;}
._1b_c00118{width:32.664000pt;}
._2a_c00118{width:34.408000pt;}
._2_c00118{width:36.677333pt;}
._23_c00118{width:41.317333pt;}
._28_c00118{width:82.346667pt;}
._1c_c00118{width:99.688000pt;}
._26_c00118{width:113.122667pt;}
._1a_c00118{width:136.810667pt;}
.fs7_c00118{font-size:34.666667pt;}
.fs2_c00118{font-size:40.000000pt;}
.fs8_c00118{font-size:42.666667pt;}
.fs6_c00118{font-size:45.333333pt;}
.fs3_c00118{font-size:48.000000pt;}
.fs4_c00118{font-size:50.666667pt;}
.fs1_c00118{font-size:53.333333pt;}
.fs0_c00118{font-size:61.333333pt;}
.fs5_c00118{font-size:189.333333pt;}
.y0_c00118{bottom:0.000000pt;}
.y4b_c00118{bottom:2.760000pt;}
.y4a_c00118{bottom:6.425219pt;}
.y49_c00118{bottom:36.413333pt;}
.y48_c00118{bottom:52.813333pt;}
.y47_c00118{bottom:69.346667pt;}
.y46_c00118{bottom:84.413333pt;}
.y45_c00118{bottom:100.813333pt;}
.y44_c00118{bottom:117.080000pt;}
.y43_c00118{bottom:132.946667pt;}
.y42_c00118{bottom:148.813333pt;}
.y24_c00118{bottom:150.013333pt;}
.y41_c00118{bottom:165.080000pt;}
.y23_c00118{bottom:166.546667pt;}
.y40_c00118{bottom:181.213333pt;}
.y22_c00118{bottom:182.146667pt;}
.y3f_c00118{bottom:196.813333pt;}
.y21_c00118{bottom:197.480000pt;}
.y3e_c00118{bottom:213.080000pt;}
.y20_c00118{bottom:214.280000pt;}
.y3d_c00118{bottom:228.946667pt;}
.y1f_c00118{bottom:230.680000pt;}
.y3c_c00118{bottom:244.813333pt;}
.y1e_c00118{bottom:246.413333pt;}
.y3b_c00118{bottom:260.413333pt;}
.y1d_c00118{bottom:261.880000pt;}
.y3a_c00118{bottom:276.680000pt;}
.y1c_c00118{bottom:278.146667pt;}
.y39_c00118{bottom:293.213333pt;}
.y1b_c00118{bottom:293.746667pt;}
.y38_c00118{bottom:308.813333pt;}
.y1a_c00118{bottom:310.013333pt;}
.y37_c00118{bottom:324.680000pt;}
.y19_c00118{bottom:325.480000pt;}
.y36_c00118{bottom:340.813333pt;}
.y18_c00118{bottom:342.013333pt;}
.y35_c00118{bottom:356.680000pt;}
.y17_c00118{bottom:358.013333pt;}
.y34_c00118{bottom:372.013333pt;}
.y16_c00118{bottom:373.480000pt;}
.y33_c00118{bottom:388.813333pt;}
.y15_c00118{bottom:389.080000pt;}
.y32_c00118{bottom:404.413333pt;}
.y14_c00118{bottom:405.080000pt;}
.y31_c00118{bottom:420.013333pt;}
.y13_c00118{bottom:421.213333pt;}
.y30_c00118{bottom:436.546667pt;}
.y12_c00118{bottom:437.080000pt;}
.y2f_c00118{bottom:452.146667pt;}
.y11_c00118{bottom:452.680000pt;}
.y2e_c00118{bottom:467.746667pt;}
.y10_c00118{bottom:468.280000pt;}
.yf_c00118{bottom:484.280000pt;}
.ye_c00118{bottom:500.146667pt;}
.y2d_c00118{bottom:500.413333pt;}
.yd_c00118{bottom:516.013333pt;}
.y2c_c00118{bottom:516.413333pt;}
.y2b_c00118{bottom:532.280000pt;}
.yc_c00118{bottom:532.813333pt;}
.y29_c00118{bottom:545.213333pt;}
.y2a_c00118{bottom:547.880000pt;}
.yb_c00118{bottom:548.680000pt;}
.ya_c00118{bottom:564.413333pt;}
.y9_c00118{bottom:580.813333pt;}
.y8_c00118{bottom:596.146667pt;}
.y7_c00118{bottom:611.213333pt;}
.y28_c00118{bottom:612.280000pt;}
.y6_c00118{bottom:628.280000pt;}
.y27_c00118{bottom:628.813333pt;}
.y5_c00118{bottom:643.613333pt;}
.y26_c00118{bottom:644.680000pt;}
.y4_c00118{bottom:660.280000pt;}
.y25_c00118{bottom:675.613333pt;}
.y3_c00118{bottom:675.880000pt;}
.y2_c00118{bottom:691.880000pt;}
.y1_c00118{bottom:709.480000pt;}
.h7_c00118{height:11.733399pt;}
.h6_c00118{height:37.578667pt;}
.h8_c00118{height:38.937500pt;}
.h4_c00118{height:53.098667pt;}
.h3_c00118{height:55.893333pt;}
.h2_c00118{height:65.442667pt;}
.h5_c00118{height:198.421333pt;}
.h0_c00118{height:741.133333pt;}
.h1_c00118{height:741.333333pt;}
.w2_c00118{width:93.222667pt;}
.w0_c00118{width:514.533333pt;}
.w1_c00118{width:514.666667pt;}
.x0_c00118{left:0.000000pt;}
.x3_c00118{left:52.533333pt;}
.x2_c00118{left:53.733333pt;}
.x4_c00118{left:54.666667pt;}
.x5_c00118{left:65.200000pt;}
.x6_c00118{left:98.800000pt;}
.x7_c00118{left:117.866667pt;}
.x1_c00118{left:167.200000pt;}
.x10_c00118{left:214.434896pt;}
.xe_c00118{left:243.066667pt;}
.x9_c00118{left:244.266667pt;}
.xd_c00118{left:245.200000pt;}
.xa_c00118{left:257.200000pt;}
.xc_c00118{left:281.066667pt;}
.xb_c00118{left:297.066667pt;}
.x8_c00118{left:329.733333pt;}
.xf_c00118{left:391.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_356d052ad8248249253cfabb.woff2')format("woff");}.ff1_c00119{font-family:ff1_c00119;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00119;src:url('chunks/assets/font_89c9e8ced37552ce8b5bd3d5.woff2')format("woff");}.ff2_c00119{font-family:ff2_c00119;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00119;src:url('chunks/assets/font_b0aac24d547b7df7d892a2d6.woff2')format("woff");}.ff3_c00119{font-family:ff3_c00119;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00119;src:url('chunks/assets/font_1b65c5585b737a53b056610c.woff2')format("woff");}.ff4_c00119{font-family:ff4_c00119;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00119;src:url('chunks/assets/font_25c35771ec1ad709f7c0b554.woff2')format("woff");}.ff5_c00119{font-family:ff5_c00119;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00119;src:url('chunks/assets/font_4cd1cfb2344f45f434495c5c.woff2')format("woff");}.ff6_c00119{font-family:ff6_c00119;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00119;src:url('chunks/assets/font_78b1a0c2100e02d916eabe4d.woff2')format("woff");}.ff7_c00119{font-family:ff7_c00119;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00119;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff8_c00119{font-family:ff8_c00119;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00119{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00119{vertical-align:0.000000px;}
.ls7_c00119{letter-spacing:0.000000px;}
.ls4_c00119{letter-spacing:1.140000px;}
.ls6_c00119{letter-spacing:2.340000px;}
.ls1_c00119{letter-spacing:3.000000px;}
.ls8_c00119{letter-spacing:6.000000px;}
.ls2_c00119{letter-spacing:12.000000px;}
.ls9_c00119{letter-spacing:15.000000px;}
.ls0_c00119{letter-spacing:19.293000px;}
.ls3_c00119{letter-spacing:34.518000px;}
.ls5_c00119{letter-spacing:50.493000px;}
.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;}
}
.wsa_c00119{word-spacing:-42.399000px;}
.ws2_c00119{word-spacing:-39.189000px;}
.ws8_c00119{word-spacing:-27.060000px;}
.ws3_c00119{word-spacing:-26.340000px;}
.ws0_c00119{word-spacing:-26.160000px;}
.ws4_c00119{word-spacing:-22.644000px;}
.ws6_c00119{word-spacing:-22.074000px;}
.ws7_c00119{word-spacing:-17.340000px;}
.ws1_c00119{word-spacing:-14.160000px;}
.ws5_c00119{word-spacing:-13.452000px;}
.ws9_c00119{word-spacing:-1.020000px;}
.wsb_c00119{word-spacing:0.000000px;}
._20_c00119{margin-left:-20.415000px;}
._21_c00119{margin-left:-18.780000px;}
._e_c00119{margin-left:-17.343000px;}
._c_c00119{margin-left:-13.680000px;}
._23_c00119{margin-left:-12.609000px;}
._0_c00119{margin-left:-10.500000px;}
._18_c00119{margin-left:-8.928000px;}
._1_c00119{margin-left:-7.800000px;}
._19_c00119{margin-left:-6.561000px;}
._16_c00119{margin-left:-4.992000px;}
._15_c00119{margin-left:-3.840000px;}
._3_c00119{margin-left:-2.070000px;}
._1d_c00119{margin-left:-1.026000px;}
._2_c00119{width:1.800000px;}
._10_c00119{width:2.883000px;}
._9_c00119{width:4.518000px;}
._a_c00119{width:5.553000px;}
._5_c00119{width:6.612000px;}
._b_c00119{width:8.613000px;}
._6_c00119{width:10.032000px;}
._f_c00119{width:11.793000px;}
._1a_c00119{width:13.431000px;}
._7_c00119{width:14.763000px;}
._17_c00119{width:15.891000px;}
._27_c00119{width:16.908000px;}
._8_c00119{width:18.687000px;}
._11_c00119{width:21.006000px;}
._14_c00119{width:22.824000px;}
._28_c00119{width:24.030000px;}
._13_c00119{width:25.680000px;}
._22_c00119{width:27.630000px;}
._24_c00119{width:31.923000px;}
._d_c00119{width:35.790000px;}
._2b_c00119{width:36.855000px;}
._29_c00119{width:42.507000px;}
._1e_c00119{width:43.896000px;}
._26_c00119{width:48.810000px;}
._1b_c00119{width:50.340000px;}
._1f_c00119{width:51.381000px;}
._1c_c00119{width:52.893000px;}
._2a_c00119{width:54.720000px;}
._25_c00119{width:55.914000px;}
._12_c00119{width:115.056000px;}
._2c_c00119{width:144.450000px;}
._4_c00119{width:310.716000px;}
.fc2_c00119{color:transparent;}
.fc1_c00119{color:rgb(128,128,128);}
.fc0_c00119{color:rgb(0,0,0);}
.fs4_c00119{font-size:39.000000px;}
.fs6_c00119{font-size:48.000000px;}
.fs3_c00119{font-size:51.000000px;}
.fs2_c00119{font-size:57.000000px;}
.fs0_c00119{font-size:60.000000px;}
.fs5_c00119{font-size:66.000000px;}
.fs1_c00119{font-size:69.000000px;}
.y0_c00119{bottom:0.000000px;}
.y51_c00119{bottom:3.105000px;}
.y50_c00119{bottom:7.228355px;}
.y4f_c00119{bottom:47.235000px;}
.y2c_c00119{bottom:63.735000px;}
.y4e_c00119{bottom:64.485000px;}
.y2b_c00119{bottom:82.335000px;}
.y4d_c00119{bottom:82.935000px;}
.y2a_c00119{bottom:100.785000px;}
.y4c_c00119{bottom:100.935000px;}
.y29_c00119{bottom:118.785000px;}
.y4b_c00119{bottom:119.085000px;}
.y28_c00119{bottom:136.635000px;}
.y27_c00119{bottom:154.185000px;}
.y4a_c00119{bottom:154.935000px;}
.y49_c00119{bottom:172.785000px;}
.y26_c00119{bottom:173.385000px;}
.y25_c00119{bottom:190.635000px;}
.y2_c00119{bottom:190.935000px;}
.y48_c00119{bottom:208.185000px;}
.y24_c00119{bottom:208.485000px;}
.y1_c00119{bottom:209.235000px;}
.y23_c00119{bottom:227.085000px;}
.y22_c00119{bottom:244.635000px;}
.y47_c00119{bottom:244.935000px;}
.y21_c00119{bottom:262.785000px;}
.y46_c00119{bottom:262.935000px;}
.y20_c00119{bottom:280.035000px;}
.y45_c00119{bottom:280.785000px;}
.y1f_c00119{bottom:298.335000px;}
.y1e_c00119{bottom:316.185000px;}
.y44_c00119{bottom:316.485000px;}
.y1d_c00119{bottom:334.335000px;}
.y43_c00119{bottom:352.035000px;}
.y1c_c00119{bottom:352.335000px;}
.y1b_c00119{bottom:370.185000px;}
.y1a_c00119{bottom:387.735000px;}
.y42_c00119{bottom:388.335000px;}
.y19_c00119{bottom:406.035000px;}
.y18_c00119{bottom:423.885000px;}
.y41_c00119{bottom:424.485000px;}
.y40_c00119{bottom:442.335000px;}
.y17_c00119{bottom:442.485000px;}
.y16_c00119{bottom:460.335000px;}
.y3f_c00119{bottom:460.635000px;}
.y15_c00119{bottom:478.485000px;}
.y3e_c00119{bottom:496.485000px;}
.y14_c00119{bottom:496.785000px;}
.y13_c00119{bottom:514.335000px;}
.y3d_c00119{bottom:514.635000px;}
.y3c_c00119{bottom:532.485000px;}
.y12_c00119{bottom:532.785000px;}
.y3b_c00119{bottom:549.435000px;}
.y11_c00119{bottom:550.335000px;}
.y3a_c00119{bottom:567.585000px;}
.y10_c00119{bottom:568.335000px;}
.y39_c00119{bottom:585.585000px;}
.yf_c00119{bottom:586.485000px;}
.y38_c00119{bottom:603.735000px;}
.ye_c00119{bottom:604.485000px;}
.y37_c00119{bottom:621.885000px;}
.yd_c00119{bottom:622.035000px;}
.y36_c00119{bottom:639.585000px;}
.yc_c00119{bottom:640.485000px;}
.y35_c00119{bottom:657.435000px;}
.yb_c00119{bottom:658.485000px;}
.y34_c00119{bottom:675.585000px;}
.ya_c00119{bottom:676.035000px;}
.y33_c00119{bottom:693.585000px;}
.y9_c00119{bottom:694.485000px;}
.y32_c00119{bottom:711.735000px;}
.y8_c00119{bottom:712.785000px;}
.y31_c00119{bottom:729.885000px;}
.y7_c00119{bottom:730.635000px;}
.y30_c00119{bottom:748.185000px;}
.y6_c00119{bottom:748.935000px;}
.y2f_c00119{bottom:766.035000px;}
.y5_c00119{bottom:767.085000px;}
.y2e_c00119{bottom:784.335000px;}
.y4_c00119{bottom:784.935000px;}
.y3_c00119{bottom:803.835000px;}
.y2d_c00119{bottom:805.485000px;}
.h7_c00119{height:13.200074px;}
.h8_c00119{height:43.804688px;}
.h4_c00119{height:59.736000px;}
.h2_c00119{height:62.880000px;}
.h5_c00119{height:70.422000px;}
.h6_c00119{height:73.623000px;}
.h3_c00119{height:74.796000px;}
.h1_c00119{height:846.750000px;}
.h0_c00119{height:846.975000px;}
.w2_c00119{width:104.875500px;}
.w0_c00119{width:581.850000px;}
.w1_c00119{width:582.000000px;}
.x0_c00119{left:0.000000px;}
.x1_c00119{left:46.500000px;}
.x4_c00119{left:105.900000px;}
.x3_c00119{left:106.950000px;}
.x5_c00119{left:108.000000px;}
.x2_c00119{left:109.050000px;}
.xc_c00119{left:242.739258px;}
.x9_c00119{left:319.200000px;}
.x8_c00119{left:320.250000px;}
.x7_c00119{left:322.200000px;}
.x6_c00119{left:323.700000px;}
.xa_c00119{left:325.650000px;}
.xb_c00119{left:497.400000px;}
@media print{
.v0_c00119{vertical-align:0.000000pt;}
.ls7_c00119{letter-spacing:0.000000pt;}
.ls4_c00119{letter-spacing:1.013333pt;}
.ls6_c00119{letter-spacing:2.080000pt;}
.ls1_c00119{letter-spacing:2.666667pt;}
.ls8_c00119{letter-spacing:5.333333pt;}
.ls2_c00119{letter-spacing:10.666667pt;}
.ls9_c00119{letter-spacing:13.333333pt;}
.ls0_c00119{letter-spacing:17.149333pt;}
.ls3_c00119{letter-spacing:30.682667pt;}
.ls5_c00119{letter-spacing:44.882667pt;}
.wsa_c00119{word-spacing:-37.688000pt;}
.ws2_c00119{word-spacing:-34.834667pt;}
.ws8_c00119{word-spacing:-24.053333pt;}
.ws3_c00119{word-spacing:-23.413333pt;}
.ws0_c00119{word-spacing:-23.253333pt;}
.ws4_c00119{word-spacing:-20.128000pt;}
.ws6_c00119{word-spacing:-19.621333pt;}
.ws7_c00119{word-spacing:-15.413333pt;}
.ws1_c00119{word-spacing:-12.586667pt;}
.ws5_c00119{word-spacing:-11.957333pt;}
.ws9_c00119{word-spacing:-0.906667pt;}
.wsb_c00119{word-spacing:0.000000pt;}
._20_c00119{margin-left:-18.146667pt;}
._21_c00119{margin-left:-16.693333pt;}
._e_c00119{margin-left:-15.416000pt;}
._c_c00119{margin-left:-12.160000pt;}
._23_c00119{margin-left:-11.208000pt;}
._0_c00119{margin-left:-9.333333pt;}
._18_c00119{margin-left:-7.936000pt;}
._1_c00119{margin-left:-6.933333pt;}
._19_c00119{margin-left:-5.832000pt;}
._16_c00119{margin-left:-4.437333pt;}
._15_c00119{margin-left:-3.413333pt;}
._3_c00119{margin-left:-1.840000pt;}
._1d_c00119{margin-left:-0.912000pt;}
._2_c00119{width:1.600000pt;}
._10_c00119{width:2.562667pt;}
._9_c00119{width:4.016000pt;}
._a_c00119{width:4.936000pt;}
._5_c00119{width:5.877333pt;}
._b_c00119{width:7.656000pt;}
._6_c00119{width:8.917333pt;}
._f_c00119{width:10.482667pt;}
._1a_c00119{width:11.938667pt;}
._7_c00119{width:13.122667pt;}
._17_c00119{width:14.125333pt;}
._27_c00119{width:15.029333pt;}
._8_c00119{width:16.610667pt;}
._11_c00119{width:18.672000pt;}
._14_c00119{width:20.288000pt;}
._28_c00119{width:21.360000pt;}
._13_c00119{width:22.826667pt;}
._22_c00119{width:24.560000pt;}
._24_c00119{width:28.376000pt;}
._d_c00119{width:31.813333pt;}
._2b_c00119{width:32.760000pt;}
._29_c00119{width:37.784000pt;}
._1e_c00119{width:39.018667pt;}
._26_c00119{width:43.386667pt;}
._1b_c00119{width:44.746667pt;}
._1f_c00119{width:45.672000pt;}
._1c_c00119{width:47.016000pt;}
._2a_c00119{width:48.640000pt;}
._25_c00119{width:49.701333pt;}
._12_c00119{width:102.272000pt;}
._2c_c00119{width:128.400000pt;}
._4_c00119{width:276.192000pt;}
.fs4_c00119{font-size:34.666667pt;}
.fs6_c00119{font-size:42.666667pt;}
.fs3_c00119{font-size:45.333333pt;}
.fs2_c00119{font-size:50.666667pt;}
.fs0_c00119{font-size:53.333333pt;}
.fs5_c00119{font-size:58.666667pt;}
.fs1_c00119{font-size:61.333333pt;}
.y0_c00119{bottom:0.000000pt;}
.y51_c00119{bottom:2.760000pt;}
.y50_c00119{bottom:6.425204pt;}
.y4f_c00119{bottom:41.986667pt;}
.y2c_c00119{bottom:56.653333pt;}
.y4e_c00119{bottom:57.320000pt;}
.y2b_c00119{bottom:73.186667pt;}
.y4d_c00119{bottom:73.720000pt;}
.y2a_c00119{bottom:89.586667pt;}
.y4c_c00119{bottom:89.720000pt;}
.y29_c00119{bottom:105.586667pt;}
.y4b_c00119{bottom:105.853333pt;}
.y28_c00119{bottom:121.453333pt;}
.y27_c00119{bottom:137.053333pt;}
.y4a_c00119{bottom:137.720000pt;}
.y49_c00119{bottom:153.586667pt;}
.y26_c00119{bottom:154.120000pt;}
.y25_c00119{bottom:169.453333pt;}
.y2_c00119{bottom:169.720000pt;}
.y48_c00119{bottom:185.053333pt;}
.y24_c00119{bottom:185.320000pt;}
.y1_c00119{bottom:185.986667pt;}
.y23_c00119{bottom:201.853333pt;}
.y22_c00119{bottom:217.453333pt;}
.y47_c00119{bottom:217.720000pt;}
.y21_c00119{bottom:233.586667pt;}
.y46_c00119{bottom:233.720000pt;}
.y20_c00119{bottom:248.920000pt;}
.y45_c00119{bottom:249.586667pt;}
.y1f_c00119{bottom:265.186667pt;}
.y1e_c00119{bottom:281.053333pt;}
.y44_c00119{bottom:281.320000pt;}
.y1d_c00119{bottom:297.186667pt;}
.y43_c00119{bottom:312.920000pt;}
.y1c_c00119{bottom:313.186667pt;}
.y1b_c00119{bottom:329.053333pt;}
.y1a_c00119{bottom:344.653333pt;}
.y42_c00119{bottom:345.186667pt;}
.y19_c00119{bottom:360.920000pt;}
.y18_c00119{bottom:376.786667pt;}
.y41_c00119{bottom:377.320000pt;}
.y40_c00119{bottom:393.186667pt;}
.y17_c00119{bottom:393.320000pt;}
.y16_c00119{bottom:409.186667pt;}
.y3f_c00119{bottom:409.453333pt;}
.y15_c00119{bottom:425.320000pt;}
.y3e_c00119{bottom:441.320000pt;}
.y14_c00119{bottom:441.586667pt;}
.y13_c00119{bottom:457.186667pt;}
.y3d_c00119{bottom:457.453333pt;}
.y3c_c00119{bottom:473.320000pt;}
.y12_c00119{bottom:473.586667pt;}
.y3b_c00119{bottom:488.386667pt;}
.y11_c00119{bottom:489.186667pt;}
.y3a_c00119{bottom:504.520000pt;}
.y10_c00119{bottom:505.186667pt;}
.y39_c00119{bottom:520.520000pt;}
.yf_c00119{bottom:521.320000pt;}
.y38_c00119{bottom:536.653333pt;}
.ye_c00119{bottom:537.320000pt;}
.y37_c00119{bottom:552.786667pt;}
.yd_c00119{bottom:552.920000pt;}
.y36_c00119{bottom:568.520000pt;}
.yc_c00119{bottom:569.320000pt;}
.y35_c00119{bottom:584.386667pt;}
.yb_c00119{bottom:585.320000pt;}
.y34_c00119{bottom:600.520000pt;}
.ya_c00119{bottom:600.920000pt;}
.y33_c00119{bottom:616.520000pt;}
.y9_c00119{bottom:617.320000pt;}
.y32_c00119{bottom:632.653333pt;}
.y8_c00119{bottom:633.586667pt;}
.y31_c00119{bottom:648.786667pt;}
.y7_c00119{bottom:649.453333pt;}
.y30_c00119{bottom:665.053333pt;}
.y6_c00119{bottom:665.720000pt;}
.y2f_c00119{bottom:680.920000pt;}
.y5_c00119{bottom:681.853333pt;}
.y2e_c00119{bottom:697.186667pt;}
.y4_c00119{bottom:697.720000pt;}
.y3_c00119{bottom:714.520000pt;}
.y2d_c00119{bottom:715.986667pt;}
.h7_c00119{height:11.733399pt;}
.h8_c00119{height:38.937500pt;}
.h4_c00119{height:53.098667pt;}
.h2_c00119{height:55.893333pt;}
.h5_c00119{height:62.597333pt;}
.h6_c00119{height:65.442667pt;}
.h3_c00119{height:66.485333pt;}
.h1_c00119{height:752.666667pt;}
.h0_c00119{height:752.866667pt;}
.w2_c00119{width:93.222667pt;}
.w0_c00119{width:517.200000pt;}
.w1_c00119{width:517.333333pt;}
.x0_c00119{left:0.000000pt;}
.x1_c00119{left:41.333333pt;}
.x4_c00119{left:94.133333pt;}
.x3_c00119{left:95.066667pt;}
.x5_c00119{left:96.000000pt;}
.x2_c00119{left:96.933333pt;}
.xc_c00119{left:215.768229pt;}
.x9_c00119{left:283.733333pt;}
.x8_c00119{left:284.666667pt;}
.x7_c00119{left:286.400000pt;}
.x6_c00119{left:287.733333pt;}
.xa_c00119{left:289.466667pt;}
.xb_c00119{left:442.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_860c0a224ec403cb00aca6c4.woff2')format("woff");}.ff1_c00120{font-family:ff1_c00120;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00120;src:url('chunks/assets/font_6363c0c19d33efacab1f7cad.woff2')format("woff");}.ff2_c00120{font-family:ff2_c00120;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00120;src:url('chunks/assets/font_8c28c3a7c279f5ea31abdb52.woff2')format("woff");}.ff3_c00120{font-family:ff3_c00120;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00120;src:url('chunks/assets/font_dc10c62b317b0c035b5e53ba.woff2')format("woff");}.ff4_c00120{font-family:ff4_c00120;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00120;src:url('chunks/assets/font_ad470673d41717152611df46.woff2')format("woff");}.ff5_c00120{font-family:ff5_c00120;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00120;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff6_c00120{font-family:ff6_c00120;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00120{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00120{vertical-align:0.000000px;}
.ls4_c00120{letter-spacing:0.000000px;}
.ls0_c00120{letter-spacing:3.000000px;}
.ls2_c00120{letter-spacing:12.300000px;}
.ls3_c00120{letter-spacing:15.000000px;}
.ls1_c00120{letter-spacing:15.300000px;}
.sc__c00120{text-shadow:none;}
.sc0_c00120{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00120{-webkit-text-stroke:0px transparent;}
.sc0_c00120{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00120{word-spacing:-46.746000px;}
.ws4_c00120{word-spacing:-17.340000px;}
.ws3_c00120{word-spacing:-14.160000px;}
.ws0_c00120{word-spacing:-13.452000px;}
.ws5_c00120{word-spacing:0.000000px;}
.ws1_c00120{word-spacing:1.083000px;}
._2d_c00120{margin-left:-20.472000px;}
._16_c00120{margin-left:-13.911000px;}
._23_c00120{margin-left:-12.000000px;}
._c_c00120{margin-left:-10.860000px;}
._15_c00120{margin-left:-8.121000px;}
._7_c00120{margin-left:-6.327000px;}
._8_c00120{margin-left:-5.301000px;}
._0_c00120{margin-left:-4.140000px;}
._22_c00120{margin-left:-3.120000px;}
._3_c00120{margin-left:-2.118000px;}
._e_c00120{margin-left:-1.062000px;}
._9_c00120{width:1.269000px;}
._a_c00120{width:2.337000px;}
._2_c00120{width:3.528000px;}
._b_c00120{width:4.866000px;}
._5_c00120{width:6.783000px;}
._4_c00120{width:8.571000px;}
._6_c00120{width:10.488000px;}
._17_c00120{width:11.760000px;}
._18_c00120{width:12.894000px;}
._f_c00120{width:13.920000px;}
._12_c00120{width:15.696000px;}
._2b_c00120{width:17.595000px;}
._1a_c00120{width:18.606000px;}
._1e_c00120{width:19.965000px;}
._10_c00120{width:21.237000px;}
._1f_c00120{width:22.350000px;}
._1_c00120{width:23.874000px;}
._1b_c00120{width:25.134000px;}
._19_c00120{width:27.360000px;}
._11_c00120{width:29.040000px;}
._27_c00120{width:30.120000px;}
._1d_c00120{width:31.326000px;}
._25_c00120{width:32.340000px;}
._26_c00120{width:34.134000px;}
._14_c00120{width:35.928000px;}
._2a_c00120{width:37.011000px;}
._28_c00120{width:38.214000px;}
._13_c00120{width:39.894000px;}
._21_c00120{width:42.123000px;}
._29_c00120{width:45.456000px;}
._2f_c00120{width:47.670000px;}
._2c_c00120{width:48.801000px;}
._20_c00120{width:54.279000px;}
._2e_c00120{width:58.986000px;}
._1c_c00120{width:67.260000px;}
._d_c00120{width:127.740000px;}
._24_c00120{width:489.792000px;}
.fc2_c00120{color:transparent;}
.fc1_c00120{color:rgb(128,128,128);}
.fc0_c00120{color:rgb(0,0,0);}
.fs4_c00120{font-size:39.000000px;}
.fs6_c00120{font-size:48.000000px;}
.fs3_c00120{font-size:57.000000px;}
.fs2_c00120{font-size:60.000000px;}
.fs1_c00120{font-size:63.000000px;}
.fs5_c00120{font-size:66.000000px;}
.fs0_c00120{font-size:69.000000px;}
.y0_c00120{bottom:0.000000px;}
.y53_c00120{bottom:3.105000px;}
.y52_c00120{bottom:7.228357px;}
.y51_c00120{bottom:38.430000px;}
.y50_c00120{bottom:57.780000px;}
.y2a_c00120{bottom:58.380000px;}
.y29_c00120{bottom:76.230000px;}
.y4f_c00120{bottom:93.480000px;}
.y28_c00120{bottom:94.530000px;}
.y4e_c00120{bottom:111.780000px;}
.y27_c00120{bottom:113.430000px;}
.y4d_c00120{bottom:130.380000px;}
.y26_c00120{bottom:131.280000px;}
.y4c_c00120{bottom:148.530000px;}
.y25_c00120{bottom:148.830000px;}
.y4b_c00120{bottom:165.030000px;}
.y24_c00120{bottom:167.430000px;}
.y4a_c00120{bottom:184.380000px;}
.y23_c00120{bottom:184.680000px;}
.y49_c00120{bottom:202.830000px;}
.y22_c00120{bottom:203.280000px;}
.y48_c00120{bottom:221.130000px;}
.y21_c00120{bottom:221.730000px;}
.y47_c00120{bottom:238.680000px;}
.y20_c00120{bottom:240.330000px;}
.y46_c00120{bottom:257.130000px;}
.y1f_c00120{bottom:257.880000px;}
.y45_c00120{bottom:275.730000px;}
.y1e_c00120{bottom:276.030000px;}
.y44_c00120{bottom:293.580000px;}
.y1d_c00120{bottom:294.630000px;}
.y43_c00120{bottom:311.580000px;}
.y1c_c00120{bottom:312.180000px;}
.y42_c00120{bottom:329.430000px;}
.y1b_c00120{bottom:330.780000px;}
.y41_c00120{bottom:347.730000px;}
.y1a_c00120{bottom:348.930000px;}
.y40_c00120{bottom:366.180000px;}
.y19_c00120{bottom:366.480000px;}
.y3f_c00120{bottom:384.480000px;}
.y18_c00120{bottom:384.780000px;}
.y17_c00120{bottom:402.330000px;}
.y3e_c00120{bottom:420.480000px;}
.y16_c00120{bottom:420.930000px;}
.y3d_c00120{bottom:438.180000px;}
.y15_c00120{bottom:438.780000px;}
.y14_c00120{bottom:456.330000px;}
.y3c_c00120{bottom:456.630000px;}
.y3b_c00120{bottom:474.480000px;}
.y13_c00120{bottom:475.530000px;}
.y12_c00120{bottom:492.180000px;}
.y3a_c00120{bottom:492.780000px;}
.y11_c00120{bottom:510.330000px;}
.y39_c00120{bottom:510.930000px;}
.y10_c00120{bottom:528.480000px;}
.y38_c00120{bottom:529.230000px;}
.yf_c00120{bottom:546.180000px;}
.y37_c00120{bottom:546.480000px;}
.ye_c00120{bottom:564.330000px;}
.y36_c00120{bottom:564.630000px;}
.yd_c00120{bottom:582.630000px;}
.y35_c00120{bottom:583.230000px;}
.yc_c00120{bottom:600.780000px;}
.y34_c00120{bottom:601.380000px;}
.yb_c00120{bottom:618.630000px;}
.y33_c00120{bottom:618.930000px;}
.ya_c00120{bottom:636.480000px;}
.y32_c00120{bottom:636.630000px;}
.y9_c00120{bottom:654.180000px;}
.y31_c00120{bottom:655.080000px;}
.y8_c00120{bottom:672.630000px;}
.y30_c00120{bottom:672.930000px;}
.y2f_c00120{bottom:690.630000px;}
.y7_c00120{bottom:691.530000px;}
.y6_c00120{bottom:708.180000px;}
.y2e_c00120{bottom:709.080000px;}
.y5_c00120{bottom:726.630000px;}
.y2d_c00120{bottom:727.380000px;}
.y2c_c00120{bottom:744.930000px;}
.y4_c00120{bottom:746.880000px;}
.y3_c00120{bottom:762.780000px;}
.y2_c00120{bottom:781.080000px;}
.y2b_c00120{bottom:802.980000px;}
.y1_c00120{bottom:803.880000px;}
.h7_c00120{height:13.200074px;}
.h8_c00120{height:43.804688px;}
.h4_c00120{height:59.736000px;}
.h5_c00120{height:62.880000px;}
.h3_c00120{height:67.221000px;}
.h6_c00120{height:70.422000px;}
.h2_c00120{height:72.312000px;}
.h0_c00120{height:835.950000px;}
.h1_c00120{height:836.250000px;}
.w1_c00120{width:104.875500px;}
.w0_c00120{width:580.500000px;}
.x0_c00120{left:0.000000px;}
.x8_c00120{left:16.800000px;}
.x9_c00120{left:18.450000px;}
.x3_c00120{left:36.750000px;}
.x2_c00120{left:75.000000px;}
.x5_c00120{left:76.200000px;}
.x7_c00120{left:77.550000px;}
.xa_c00120{left:79.350000px;}
.x4_c00120{left:81.300000px;}
.x6_c00120{left:91.500000px;}
.x1_c00120{left:189.450000px;}
.x12_c00120{left:242.064240px;}
.xb_c00120{left:280.350000px;}
.xf_c00120{left:290.850000px;}
.x10_c00120{left:292.650000px;}
.xc_c00120{left:293.850000px;}
.xd_c00120{left:294.900000px;}
.xe_c00120{left:322.200000px;}
.x11_c00120{left:441.750000px;}
@media print{
.v0_c00120{vertical-align:0.000000pt;}
.ls4_c00120{letter-spacing:0.000000pt;}
.ls0_c00120{letter-spacing:2.666667pt;}
.ls2_c00120{letter-spacing:10.933333pt;}
.ls3_c00120{letter-spacing:13.333333pt;}
.ls1_c00120{letter-spacing:13.600000pt;}
.ws2_c00120{word-spacing:-41.552000pt;}
.ws4_c00120{word-spacing:-15.413333pt;}
.ws3_c00120{word-spacing:-12.586667pt;}
.ws0_c00120{word-spacing:-11.957333pt;}
.ws5_c00120{word-spacing:0.000000pt;}
.ws1_c00120{word-spacing:0.962667pt;}
._2d_c00120{margin-left:-18.197333pt;}
._16_c00120{margin-left:-12.365333pt;}
._23_c00120{margin-left:-10.666667pt;}
._c_c00120{margin-left:-9.653333pt;}
._15_c00120{margin-left:-7.218667pt;}
._7_c00120{margin-left:-5.624000pt;}
._8_c00120{margin-left:-4.712000pt;}
._0_c00120{margin-left:-3.680000pt;}
._22_c00120{margin-left:-2.773333pt;}
._3_c00120{margin-left:-1.882667pt;}
._e_c00120{margin-left:-0.944000pt;}
._9_c00120{width:1.128000pt;}
._a_c00120{width:2.077333pt;}
._2_c00120{width:3.136000pt;}
._b_c00120{width:4.325333pt;}
._5_c00120{width:6.029333pt;}
._4_c00120{width:7.618667pt;}
._6_c00120{width:9.322667pt;}
._17_c00120{width:10.453333pt;}
._18_c00120{width:11.461333pt;}
._f_c00120{width:12.373333pt;}
._12_c00120{width:13.952000pt;}
._2b_c00120{width:15.640000pt;}
._1a_c00120{width:16.538667pt;}
._1e_c00120{width:17.746667pt;}
._10_c00120{width:18.877333pt;}
._1f_c00120{width:19.866667pt;}
._1_c00120{width:21.221333pt;}
._1b_c00120{width:22.341333pt;}
._19_c00120{width:24.320000pt;}
._11_c00120{width:25.813333pt;}
._27_c00120{width:26.773333pt;}
._1d_c00120{width:27.845333pt;}
._25_c00120{width:28.746667pt;}
._26_c00120{width:30.341333pt;}
._14_c00120{width:31.936000pt;}
._2a_c00120{width:32.898667pt;}
._28_c00120{width:33.968000pt;}
._13_c00120{width:35.461333pt;}
._21_c00120{width:37.442667pt;}
._29_c00120{width:40.405333pt;}
._2f_c00120{width:42.373333pt;}
._2c_c00120{width:43.378667pt;}
._20_c00120{width:48.248000pt;}
._2e_c00120{width:52.432000pt;}
._1c_c00120{width:59.786667pt;}
._d_c00120{width:113.546667pt;}
._24_c00120{width:435.370667pt;}
.fs4_c00120{font-size:34.666667pt;}
.fs6_c00120{font-size:42.666667pt;}
.fs3_c00120{font-size:50.666667pt;}
.fs2_c00120{font-size:53.333333pt;}
.fs1_c00120{font-size:56.000000pt;}
.fs5_c00120{font-size:58.666667pt;}
.fs0_c00120{font-size:61.333333pt;}
.y0_c00120{bottom:0.000000pt;}
.y53_c00120{bottom:2.760000pt;}
.y52_c00120{bottom:6.425206pt;}
.y51_c00120{bottom:34.160000pt;}
.y50_c00120{bottom:51.360000pt;}
.y2a_c00120{bottom:51.893333pt;}
.y29_c00120{bottom:67.760000pt;}
.y4f_c00120{bottom:83.093333pt;}
.y28_c00120{bottom:84.026667pt;}
.y4e_c00120{bottom:99.360000pt;}
.y27_c00120{bottom:100.826667pt;}
.y4d_c00120{bottom:115.893333pt;}
.y26_c00120{bottom:116.693333pt;}
.y4c_c00120{bottom:132.026667pt;}
.y25_c00120{bottom:132.293333pt;}
.y4b_c00120{bottom:146.693333pt;}
.y24_c00120{bottom:148.826667pt;}
.y4a_c00120{bottom:163.893333pt;}
.y23_c00120{bottom:164.160000pt;}
.y49_c00120{bottom:180.293333pt;}
.y22_c00120{bottom:180.693333pt;}
.y48_c00120{bottom:196.560000pt;}
.y21_c00120{bottom:197.093333pt;}
.y47_c00120{bottom:212.160000pt;}
.y20_c00120{bottom:213.626667pt;}
.y46_c00120{bottom:228.560000pt;}
.y1f_c00120{bottom:229.226667pt;}
.y45_c00120{bottom:245.093333pt;}
.y1e_c00120{bottom:245.360000pt;}
.y44_c00120{bottom:260.960000pt;}
.y1d_c00120{bottom:261.893333pt;}
.y43_c00120{bottom:276.960000pt;}
.y1c_c00120{bottom:277.493333pt;}
.y42_c00120{bottom:292.826667pt;}
.y1b_c00120{bottom:294.026667pt;}
.y41_c00120{bottom:309.093333pt;}
.y1a_c00120{bottom:310.160000pt;}
.y40_c00120{bottom:325.493333pt;}
.y19_c00120{bottom:325.760000pt;}
.y3f_c00120{bottom:341.760000pt;}
.y18_c00120{bottom:342.026667pt;}
.y17_c00120{bottom:357.626667pt;}
.y3e_c00120{bottom:373.760000pt;}
.y16_c00120{bottom:374.160000pt;}
.y3d_c00120{bottom:389.493333pt;}
.y15_c00120{bottom:390.026667pt;}
.y14_c00120{bottom:405.626667pt;}
.y3c_c00120{bottom:405.893333pt;}
.y3b_c00120{bottom:421.760000pt;}
.y13_c00120{bottom:422.693333pt;}
.y12_c00120{bottom:437.493333pt;}
.y3a_c00120{bottom:438.026667pt;}
.y11_c00120{bottom:453.626667pt;}
.y39_c00120{bottom:454.160000pt;}
.y10_c00120{bottom:469.760000pt;}
.y38_c00120{bottom:470.426667pt;}
.yf_c00120{bottom:485.493333pt;}
.y37_c00120{bottom:485.760000pt;}
.ye_c00120{bottom:501.626667pt;}
.y36_c00120{bottom:501.893333pt;}
.yd_c00120{bottom:517.893333pt;}
.y35_c00120{bottom:518.426667pt;}
.yc_c00120{bottom:534.026667pt;}
.y34_c00120{bottom:534.560000pt;}
.yb_c00120{bottom:549.893333pt;}
.y33_c00120{bottom:550.160000pt;}
.ya_c00120{bottom:565.760000pt;}
.y32_c00120{bottom:565.893333pt;}
.y9_c00120{bottom:581.493333pt;}
.y31_c00120{bottom:582.293333pt;}
.y8_c00120{bottom:597.893333pt;}
.y30_c00120{bottom:598.160000pt;}
.y2f_c00120{bottom:613.893333pt;}
.y7_c00120{bottom:614.693333pt;}
.y6_c00120{bottom:629.493333pt;}
.y2e_c00120{bottom:630.293333pt;}
.y5_c00120{bottom:645.893333pt;}
.y2d_c00120{bottom:646.560000pt;}
.y2c_c00120{bottom:662.160000pt;}
.y4_c00120{bottom:663.893333pt;}
.y3_c00120{bottom:678.026667pt;}
.y2_c00120{bottom:694.293333pt;}
.y2b_c00120{bottom:713.760000pt;}
.y1_c00120{bottom:714.560000pt;}
.h7_c00120{height:11.733399pt;}
.h8_c00120{height:38.937500pt;}
.h4_c00120{height:53.098667pt;}
.h5_c00120{height:55.893333pt;}
.h3_c00120{height:59.752000pt;}
.h6_c00120{height:62.597333pt;}
.h2_c00120{height:64.277333pt;}
.h0_c00120{height:743.066667pt;}
.h1_c00120{height:743.333333pt;}
.w1_c00120{width:93.222667pt;}
.w0_c00120{width:516.000000pt;}
.x0_c00120{left:0.000000pt;}
.x8_c00120{left:14.933333pt;}
.x9_c00120{left:16.400000pt;}
.x3_c00120{left:32.666667pt;}
.x2_c00120{left:66.666667pt;}
.x5_c00120{left:67.733333pt;}
.x7_c00120{left:68.933333pt;}
.xa_c00120{left:70.533333pt;}
.x4_c00120{left:72.266667pt;}
.x6_c00120{left:81.333333pt;}
.x1_c00120{left:168.400000pt;}
.x12_c00120{left:215.168213pt;}
.xb_c00120{left:249.200000pt;}
.xf_c00120{left:258.533333pt;}
.x10_c00120{left:260.133333pt;}
.xc_c00120{left:261.200000pt;}
.xd_c00120{left:262.133333pt;}
.xe_c00120{left:286.400000pt;}
.x11_c00120{left:392.666667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_0f3fec0795f084a2523cb902.woff2')format("woff");}.ff1_c00121{font-family:ff1_c00121;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00121;src:url('chunks/assets/font_3299baa46249a19a8ce5686e.woff2')format("woff");}.ff2_c00121{font-family:ff2_c00121;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00121;src:url('chunks/assets/font_3edf8f27f696c5eb50d18e7a.woff2')format("woff");}.ff3_c00121{font-family:ff3_c00121;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00121;src:url('chunks/assets/font_0ce391de997f24f9f9dd37f4.woff2')format("woff");}.ff4_c00121{font-family:ff4_c00121;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00121;src:url('chunks/assets/font_cbe587db00188c898d22c409.woff2')format("woff");}.ff5_c00121{font-family:ff5_c00121;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00121;src:url('chunks/assets/font_8b27db5e5d68d5374241b15d.woff2')format("woff");}.ff6_c00121{font-family:ff6_c00121;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00121;src:url('chunks/assets/font_30eacd740a65b5bb4e8e0703.woff2')format("woff");}.ff7_c00121{font-family:ff7_c00121;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00121;src:url('chunks/assets/font_5b59c7937cb6426c03c1d079.woff2')format("woff");}.ff8_c00121{font-family:ff8_c00121;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00121;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff9_c00121{font-family:ff9_c00121;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00121{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00121{vertical-align:0.000000px;}
.v1_c00121{vertical-align:16.800000px;}
.ls7_c00121{letter-spacing:0.000000px;}
.ls3_c00121{letter-spacing:0.405000px;}
.ls6_c00121{letter-spacing:0.432000px;}
.ls9_c00121{letter-spacing:3.000000px;}
.ls2_c00121{letter-spacing:4.005000px;}
.lsa_c00121{letter-spacing:6.000000px;}
.ls8_c00121{letter-spacing:12.000000px;}
.ls5_c00121{letter-spacing:14.493000px;}
.ls4_c00121{letter-spacing:15.000000px;}
.ls1_c00121{letter-spacing:125.760000px;}
.ls0_c00121{letter-spacing:322.140000px;}
.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;}
}
.ws8_c00121{word-spacing:-42.399000px;}
.ws2_c00121{word-spacing:-39.189000px;}
.ws5_c00121{word-spacing:-31.491000px;}
.ws1_c00121{word-spacing:-27.060000px;}
.ws6_c00121{word-spacing:-16.491000px;}
.ws3_c00121{word-spacing:-14.160000px;}
.ws7_c00121{word-spacing:-13.452000px;}
.ws0_c00121{word-spacing:-0.480000px;}
.ws9_c00121{word-spacing:0.000000px;}
.ws4_c00121{word-spacing:2.340000px;}
._24_c00121{margin-left:-20.550000px;}
._25_c00121{margin-left:-17.664000px;}
._18_c00121{margin-left:-15.660000px;}
._17_c00121{margin-left:-12.960000px;}
._2e_c00121{margin-left:-11.421000px;}
._26_c00121{margin-left:-10.179000px;}
._12_c00121{margin-left:-7.860000px;}
._9_c00121{margin-left:-6.060000px;}
._7_c00121{margin-left:-4.560000px;}
._a_c00121{margin-left:-2.580000px;}
._8_c00121{margin-left:-1.320000px;}
._5_c00121{width:1.620000px;}
._e_c00121{width:2.640000px;}
._6_c00121{width:3.720000px;}
._19_c00121{width:4.800000px;}
._b_c00121{width:6.180000px;}
._1_c00121{width:7.800000px;}
._2_c00121{width:8.940000px;}
._13_c00121{width:10.380000px;}
._4_c00121{width:11.460000px;}
._3_c00121{width:13.200000px;}
._15_c00121{width:14.220000px;}
._1c_c00121{width:15.300000px;}
._23_c00121{width:16.500000px;}
._2a_c00121{width:17.526000px;}
._c_c00121{width:19.320000px;}
._28_c00121{width:20.520000px;}
._14_c00121{width:21.540000px;}
._11_c00121{width:22.860000px;}
._f_c00121{width:24.840000px;}
._10_c00121{width:26.160000px;}
._1a_c00121{width:27.780000px;}
._0_c00121{width:29.880000px;}
._1f_c00121{width:31.260000px;}
._2d_c00121{width:32.700000px;}
._1e_c00121{width:33.840000px;}
._2b_c00121{width:35.160000px;}
._d_c00121{width:36.480000px;}
._1d_c00121{width:38.040000px;}
._2c_c00121{width:45.180000px;}
._27_c00121{width:47.280000px;}
._1b_c00121{width:50.700000px;}
._21_c00121{width:54.420000px;}
._20_c00121{width:96.420000px;}
._16_c00121{width:127.080000px;}
._29_c00121{width:129.765000px;}
._22_c00121{width:151.920000px;}
.fc2_c00121{color:transparent;}
.fc1_c00121{color:rgb(128,128,128);}
.fc0_c00121{color:rgb(0,0,0);}
.fs2_c00121{font-size:45.000000px;}
.fs5_c00121{font-size:45.600000px;}
.fs3_c00121{font-size:48.000000px;}
.fs4_c00121{font-size:57.000000px;}
.fs0_c00121{font-size:60.000000px;}
.fs1_c00121{font-size:69.000000px;}
.y0_c00121{bottom:0.000000px;}
.y52_c00121{bottom:3.105000px;}
.y51_c00121{bottom:7.228355px;}
.y50_c00121{bottom:43.185000px;}
.y4f_c00121{bottom:61.335000px;}
.y27_c00121{bottom:61.635000px;}
.y4e_c00121{bottom:79.335000px;}
.y26_c00121{bottom:80.535000px;}
.y4d_c00121{bottom:97.485000px;}
.y25_c00121{bottom:98.835000px;}
.y4c_c00121{bottom:115.785000px;}
.y24_c00121{bottom:116.985000px;}
.y4b_c00121{bottom:133.935000px;}
.y23_c00121{bottom:134.235000px;}
.y4a_c00121{bottom:152.085000px;}
.y22_c00121{bottom:152.535000px;}
.y21_c00121{bottom:170.685000px;}
.y49_c00121{bottom:188.235000px;}
.y20_c00121{bottom:188.685000px;}
.y48_c00121{bottom:206.235000px;}
.y1f_c00121{bottom:206.835000px;}
.y47_c00121{bottom:224.385000px;}
.y1e_c00121{bottom:225.435000px;}
.y46_c00121{bottom:243.285000px;}
.y1d_c00121{bottom:243.885000px;}
.y45_c00121{bottom:260.835000px;}
.y1c_c00121{bottom:261.585000px;}
.y44_c00121{bottom:278.985000px;}
.y1b_c00121{bottom:279.435000px;}
.y43_c00121{bottom:296.985000px;}
.y1a_c00121{bottom:297.585000px;}
.y42_c00121{bottom:314.535000px;}
.y19_c00121{bottom:315.585000px;}
.y41_c00121{bottom:332.385000px;}
.y18_c00121{bottom:333.435000px;}
.y40_c00121{bottom:351.585000px;}
.y17_c00121{bottom:351.885000px;}
.y3f_c00121{bottom:369.435000px;}
.y16_c00121{bottom:369.885000px;}
.y15_c00121{bottom:384.285000px;}
.y3e_c00121{bottom:387.135000px;}
.y3d_c00121{bottom:404.985000px;}
.y3c_c00121{bottom:423.885000px;}
.y14_c00121{bottom:425.235000px;}
.y3b_c00121{bottom:441.735000px;}
.y13_c00121{bottom:443.385000px;}
.y3a_c00121{bottom:459.885000px;}
.y12_c00121{bottom:461.235000px;}
.y39_c00121{bottom:477.885000px;}
.y11_c00121{bottom:479.235000px;}
.y38_c00121{bottom:496.335000px;}
.y37_c00121{bottom:514.335000px;}
.y10_c00121{bottom:515.385000px;}
.y36_c00121{bottom:532.785000px;}
.y35_c00121{bottom:550.485000px;}
.yf_c00121{bottom:552.735000px;}
.y34_c00121{bottom:569.385000px;}
.ye_c00121{bottom:570.285000px;}
.y33_c00121{bottom:587.235000px;}
.yd_c00121{bottom:588.585000px;}
.y32_c00121{bottom:605.385000px;}
.yc_c00121{bottom:606.435000px;}
.y31_c00121{bottom:623.985000px;}
.yb_c00121{bottom:625.035000px;}
.y30_c00121{bottom:642.135000px;}
.ya_c00121{bottom:643.635000px;}
.y2f_c00121{bottom:660.135000px;}
.y9_c00121{bottom:661.785000px;}
.y2e_c00121{bottom:678.585000px;}
.y8_c00121{bottom:680.385000px;}
.y2d_c00121{bottom:696.585000px;}
.y7_c00121{bottom:698.235000px;}
.y2c_c00121{bottom:715.035000px;}
.y6_c00121{bottom:716.535000px;}
.y2b_c00121{bottom:733.035000px;}
.y5_c00121{bottom:734.985000px;}
.y2a_c00121{bottom:750.285000px;}
.y4_c00121{bottom:752.985000px;}
.y29_c00121{bottom:769.485000px;}
.y3_c00121{bottom:771.435000px;}
.y28_c00121{bottom:787.335000px;}
.y2_c00121{bottom:789.285000px;}
.y1_c00121{bottom:808.635000px;}
.h9_c00121{height:13.200074px;}
.ha_c00121{height:43.804688px;}
.h5_c00121{height:51.216000px;}
.h7_c00121{height:59.736000px;}
.h2_c00121{height:62.880000px;}
.h6_c00121{height:72.312000px;}
.h8_c00121{height:73.623000px;}
.h3_c00121{height:74.796000px;}
.h4_c00121{height:79.680000px;}
.h1_c00121{height:846.750000px;}
.h0_c00121{height:846.975000px;}
.w2_c00121{width:104.875500px;}
.w0_c00121{width:581.850000px;}
.w1_c00121{width:582.000000px;}
.x0_c00121{left:0.000000px;}
.xe_c00121{left:49.350000px;}
.x10_c00121{left:50.400000px;}
.xf_c00121{left:51.600000px;}
.x11_c00121{left:105.750000px;}
.xd_c00121{left:108.000000px;}
.xc_c00121{left:110.700000px;}
.x6_c00121{left:112.350000px;}
.x5_c00121{left:113.400000px;}
.x2_c00121{left:114.450000px;}
.x4_c00121{left:115.800000px;}
.x3_c00121{left:116.850000px;}
.x1_c00121{left:118.200000px;}
.x8_c00121{left:133.050000px;}
.xb_c00121{left:160.050000px;}
.x9_c00121{left:170.550000px;}
.xa_c00121{left:190.650000px;}
.x7_c00121{left:214.650000px;}
.x19_c00121{left:242.739258px;}
.x17_c00121{left:328.500000px;}
.x15_c00121{left:329.850000px;}
.x16_c00121{left:331.050000px;}
.x13_c00121{left:332.100000px;}
.x14_c00121{left:333.750000px;}
.x12_c00121{left:337.500000px;}
.x18_c00121{left:500.850000px;}
@media print{
.v0_c00121{vertical-align:0.000000pt;}
.v1_c00121{vertical-align:14.933333pt;}
.ls7_c00121{letter-spacing:0.000000pt;}
.ls3_c00121{letter-spacing:0.360000pt;}
.ls6_c00121{letter-spacing:0.384000pt;}
.ls9_c00121{letter-spacing:2.666667pt;}
.ls2_c00121{letter-spacing:3.560000pt;}
.lsa_c00121{letter-spacing:5.333333pt;}
.ls8_c00121{letter-spacing:10.666667pt;}
.ls5_c00121{letter-spacing:12.882667pt;}
.ls4_c00121{letter-spacing:13.333333pt;}
.ls1_c00121{letter-spacing:111.786667pt;}
.ls0_c00121{letter-spacing:286.346667pt;}
.ws8_c00121{word-spacing:-37.688000pt;}
.ws2_c00121{word-spacing:-34.834667pt;}
.ws5_c00121{word-spacing:-27.992000pt;}
.ws1_c00121{word-spacing:-24.053333pt;}
.ws6_c00121{word-spacing:-14.658667pt;}
.ws3_c00121{word-spacing:-12.586667pt;}
.ws7_c00121{word-spacing:-11.957333pt;}
.ws0_c00121{word-spacing:-0.426667pt;}
.ws9_c00121{word-spacing:0.000000pt;}
.ws4_c00121{word-spacing:2.080000pt;}
._24_c00121{margin-left:-18.266667pt;}
._25_c00121{margin-left:-15.701333pt;}
._18_c00121{margin-left:-13.920000pt;}
._17_c00121{margin-left:-11.520000pt;}
._2e_c00121{margin-left:-10.152000pt;}
._26_c00121{margin-left:-9.048000pt;}
._12_c00121{margin-left:-6.986667pt;}
._9_c00121{margin-left:-5.386667pt;}
._7_c00121{margin-left:-4.053333pt;}
._a_c00121{margin-left:-2.293333pt;}
._8_c00121{margin-left:-1.173333pt;}
._5_c00121{width:1.440000pt;}
._e_c00121{width:2.346667pt;}
._6_c00121{width:3.306667pt;}
._19_c00121{width:4.266667pt;}
._b_c00121{width:5.493333pt;}
._1_c00121{width:6.933333pt;}
._2_c00121{width:7.946667pt;}
._13_c00121{width:9.226667pt;}
._4_c00121{width:10.186667pt;}
._3_c00121{width:11.733333pt;}
._15_c00121{width:12.640000pt;}
._1c_c00121{width:13.600000pt;}
._23_c00121{width:14.666667pt;}
._2a_c00121{width:15.578667pt;}
._c_c00121{width:17.173333pt;}
._28_c00121{width:18.240000pt;}
._14_c00121{width:19.146667pt;}
._11_c00121{width:20.320000pt;}
._f_c00121{width:22.080000pt;}
._10_c00121{width:23.253333pt;}
._1a_c00121{width:24.693333pt;}
._0_c00121{width:26.560000pt;}
._1f_c00121{width:27.786667pt;}
._2d_c00121{width:29.066667pt;}
._1e_c00121{width:30.080000pt;}
._2b_c00121{width:31.253333pt;}
._d_c00121{width:32.426667pt;}
._1d_c00121{width:33.813333pt;}
._2c_c00121{width:40.160000pt;}
._27_c00121{width:42.026667pt;}
._1b_c00121{width:45.066667pt;}
._21_c00121{width:48.373333pt;}
._20_c00121{width:85.706667pt;}
._16_c00121{width:112.960000pt;}
._29_c00121{width:115.346667pt;}
._22_c00121{width:135.040000pt;}
.fs2_c00121{font-size:40.000000pt;}
.fs5_c00121{font-size:40.533333pt;}
.fs3_c00121{font-size:42.666667pt;}
.fs4_c00121{font-size:50.666667pt;}
.fs0_c00121{font-size:53.333333pt;}
.fs1_c00121{font-size:61.333333pt;}
.y0_c00121{bottom:0.000000pt;}
.y52_c00121{bottom:2.760000pt;}
.y51_c00121{bottom:6.425204pt;}
.y50_c00121{bottom:38.386667pt;}
.y4f_c00121{bottom:54.520000pt;}
.y27_c00121{bottom:54.786667pt;}
.y4e_c00121{bottom:70.520000pt;}
.y26_c00121{bottom:71.586667pt;}
.y4d_c00121{bottom:86.653333pt;}
.y25_c00121{bottom:87.853333pt;}
.y4c_c00121{bottom:102.920000pt;}
.y24_c00121{bottom:103.986667pt;}
.y4b_c00121{bottom:119.053333pt;}
.y23_c00121{bottom:119.320000pt;}
.y4a_c00121{bottom:135.186667pt;}
.y22_c00121{bottom:135.586667pt;}
.y21_c00121{bottom:151.720000pt;}
.y49_c00121{bottom:167.320000pt;}
.y20_c00121{bottom:167.720000pt;}
.y48_c00121{bottom:183.320000pt;}
.y1f_c00121{bottom:183.853333pt;}
.y47_c00121{bottom:199.453333pt;}
.y1e_c00121{bottom:200.386667pt;}
.y46_c00121{bottom:216.253333pt;}
.y1d_c00121{bottom:216.786667pt;}
.y45_c00121{bottom:231.853333pt;}
.y1c_c00121{bottom:232.520000pt;}
.y44_c00121{bottom:247.986667pt;}
.y1b_c00121{bottom:248.386667pt;}
.y43_c00121{bottom:263.986667pt;}
.y1a_c00121{bottom:264.520000pt;}
.y42_c00121{bottom:279.586667pt;}
.y19_c00121{bottom:280.520000pt;}
.y41_c00121{bottom:295.453333pt;}
.y18_c00121{bottom:296.386667pt;}
.y40_c00121{bottom:312.520000pt;}
.y17_c00121{bottom:312.786667pt;}
.y3f_c00121{bottom:328.386667pt;}
.y16_c00121{bottom:328.786667pt;}
.y15_c00121{bottom:341.586667pt;}
.y3e_c00121{bottom:344.120000pt;}
.y3d_c00121{bottom:359.986667pt;}
.y3c_c00121{bottom:376.786667pt;}
.y14_c00121{bottom:377.986667pt;}
.y3b_c00121{bottom:392.653333pt;}
.y13_c00121{bottom:394.120000pt;}
.y3a_c00121{bottom:408.786667pt;}
.y12_c00121{bottom:409.986667pt;}
.y39_c00121{bottom:424.786667pt;}
.y11_c00121{bottom:425.986667pt;}
.y38_c00121{bottom:441.186667pt;}
.y37_c00121{bottom:457.186667pt;}
.y10_c00121{bottom:458.120000pt;}
.y36_c00121{bottom:473.586667pt;}
.y35_c00121{bottom:489.320000pt;}
.yf_c00121{bottom:491.320000pt;}
.y34_c00121{bottom:506.120000pt;}
.ye_c00121{bottom:506.920000pt;}
.y33_c00121{bottom:521.986667pt;}
.yd_c00121{bottom:523.186667pt;}
.y32_c00121{bottom:538.120000pt;}
.yc_c00121{bottom:539.053333pt;}
.y31_c00121{bottom:554.653333pt;}
.yb_c00121{bottom:555.586667pt;}
.y30_c00121{bottom:570.786667pt;}
.ya_c00121{bottom:572.120000pt;}
.y2f_c00121{bottom:586.786667pt;}
.y9_c00121{bottom:588.253333pt;}
.y2e_c00121{bottom:603.186667pt;}
.y8_c00121{bottom:604.786667pt;}
.y2d_c00121{bottom:619.186667pt;}
.y7_c00121{bottom:620.653333pt;}
.y2c_c00121{bottom:635.586667pt;}
.y6_c00121{bottom:636.920000pt;}
.y2b_c00121{bottom:651.586667pt;}
.y5_c00121{bottom:653.320000pt;}
.y2a_c00121{bottom:666.920000pt;}
.y4_c00121{bottom:669.320000pt;}
.y29_c00121{bottom:683.986667pt;}
.y3_c00121{bottom:685.720000pt;}
.y28_c00121{bottom:699.853333pt;}
.y2_c00121{bottom:701.586667pt;}
.y1_c00121{bottom:718.786667pt;}
.h9_c00121{height:11.733399pt;}
.ha_c00121{height:38.937500pt;}
.h5_c00121{height:45.525333pt;}
.h7_c00121{height:53.098667pt;}
.h2_c00121{height:55.893333pt;}
.h6_c00121{height:64.277333pt;}
.h8_c00121{height:65.442667pt;}
.h3_c00121{height:66.485333pt;}
.h4_c00121{height:70.826667pt;}
.h1_c00121{height:752.666667pt;}
.h0_c00121{height:752.866667pt;}
.w2_c00121{width:93.222667pt;}
.w0_c00121{width:517.200000pt;}
.w1_c00121{width:517.333333pt;}
.x0_c00121{left:0.000000pt;}
.xe_c00121{left:43.866667pt;}
.x10_c00121{left:44.800000pt;}
.xf_c00121{left:45.866667pt;}
.x11_c00121{left:94.000000pt;}
.xd_c00121{left:96.000000pt;}
.xc_c00121{left:98.400000pt;}
.x6_c00121{left:99.866667pt;}
.x5_c00121{left:100.800000pt;}
.x2_c00121{left:101.733333pt;}
.x4_c00121{left:102.933333pt;}
.x3_c00121{left:103.866667pt;}
.x1_c00121{left:105.066667pt;}
.x8_c00121{left:118.266667pt;}
.xb_c00121{left:142.266667pt;}
.x9_c00121{left:151.600000pt;}
.xa_c00121{left:169.466667pt;}
.x7_c00121{left:190.800000pt;}
.x19_c00121{left:215.768229pt;}
.x17_c00121{left:292.000000pt;}
.x15_c00121{left:293.200000pt;}
.x16_c00121{left:294.266667pt;}
.x13_c00121{left:295.200000pt;}
.x14_c00121{left:296.666667pt;}
.x12_c00121{left:300.000000pt;}
.x18_c00121{left:445.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_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_ffd782f002675e8162f9ac89.woff2')format("woff");}.ff1_c00122{font-family:ff1_c00122;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00122;src:url('chunks/assets/font_1c481715d631a08253c15bf1.woff2')format("woff");}.ff2_c00122{font-family:ff2_c00122;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00122;src:url('chunks/assets/font_073f7f87226927238f3a2880.woff2')format("woff");}.ff3_c00122{font-family:ff3_c00122;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00122;src:url('chunks/assets/font_4c0df1d2157d6847bd2dc1b8.woff2')format("woff");}.ff4_c00122{font-family:ff4_c00122;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00122;src:url('chunks/assets/font_c4c3d7b3c4d667a717f1bbe2.woff2')format("woff");}.ff5_c00122{font-family:ff5_c00122;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00122;src:url('chunks/assets/font_0ce391de997f24f9f9dd37f4.woff2')format("woff");}.ff6_c00122{font-family:ff6_c00122;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00122;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff7_c00122{font-family:ff7_c00122;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00122{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00122{vertical-align:0.000000px;}
.lsa_c00122{letter-spacing:-3.000000px;}
.ls9_c00122{letter-spacing:0.000000px;}
.ls8_c00122{letter-spacing:0.780000px;}
.ls1_c00122{letter-spacing:3.000000px;}
.ls3_c00122{letter-spacing:7.500000px;}
.ls6_c00122{letter-spacing:11.805000px;}
.lsb_c00122{letter-spacing:12.000000px;}
.ls4_c00122{letter-spacing:16.500000px;}
.ls2_c00122{letter-spacing:18.600000px;}
.ls7_c00122{letter-spacing:23.940000px;}
.ls5_c00122{letter-spacing:34.293000px;}
.ls0_c00122{letter-spacing:49.260000px;}
.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;}
}
.ws6_c00122{word-spacing:-27.060000px;}
.ws5_c00122{word-spacing:-26.160000px;}
.ws2_c00122{word-spacing:-22.074000px;}
.ws1_c00122{word-spacing:-17.340000px;}
.ws0_c00122{word-spacing:-14.160000px;}
.ws3_c00122{word-spacing:-13.452000px;}
.ws4_c00122{word-spacing:-11.340000px;}
.ws7_c00122{word-spacing:0.000000px;}
._1b_c00122{margin-left:-17.820000px;}
._29_c00122{margin-left:-14.172000px;}
._11_c00122{margin-left:-12.240000px;}
._15_c00122{margin-left:-10.560000px;}
._24_c00122{margin-left:-9.240000px;}
._9_c00122{margin-left:-7.872000px;}
._10_c00122{margin-left:-6.768000px;}
._4_c00122{margin-left:-5.400000px;}
._1e_c00122{margin-left:-4.392000px;}
._6_c00122{margin-left:-3.300000px;}
._5_c00122{margin-left:-2.160000px;}
._a_c00122{margin-left:-1.080000px;}
._2_c00122{width:1.512000px;}
._7_c00122{width:2.760000px;}
._8_c00122{width:4.080000px;}
._1_c00122{width:5.520000px;}
._22_c00122{width:6.549000px;}
._0_c00122{width:7.680000px;}
._b_c00122{width:8.904000px;}
._13_c00122{width:9.924000px;}
._12_c00122{width:11.376000px;}
._f_c00122{width:12.684000px;}
._14_c00122{width:13.740000px;}
._23_c00122{width:15.111000px;}
._1d_c00122{width:16.380000px;}
._20_c00122{width:17.562000px;}
._c_c00122{width:19.584000px;}
._e_c00122{width:20.664000px;}
._1c_c00122{width:22.596000px;}
._1a_c00122{width:24.300000px;}
._25_c00122{width:25.908000px;}
._d_c00122{width:27.240000px;}
._26_c00122{width:28.332000px;}
._18_c00122{width:30.336000px;}
._19_c00122{width:32.328000px;}
._28_c00122{width:33.840000px;}
._27_c00122{width:38.880000px;}
._17_c00122{width:45.840000px;}
._3_c00122{width:49.842000px;}
._21_c00122{width:52.593000px;}
._2a_c00122{width:63.384000px;}
._2b_c00122{width:67.500000px;}
._16_c00122{width:83.160000px;}
._1f_c00122{width:116.427000px;}
.fc2_c00122{color:transparent;}
.fc1_c00122{color:rgb(128,128,128);}
.fc0_c00122{color:rgb(0,0,0);}
.fs4_c00122{font-size:39.000000px;}
.fs5_c00122{font-size:45.000000px;}
.fs6_c00122{font-size:48.000000px;}
.fs3_c00122{font-size:57.000000px;}
.fs0_c00122{font-size:60.000000px;}
.fs1_c00122{font-size:63.000000px;}
.fs2_c00122{font-size:66.000000px;}
.y0_c00122{bottom:0.000000px;}
.y50_c00122{bottom:3.105000px;}
.y4f_c00122{bottom:7.228357px;}
.y4e_c00122{bottom:39.180000px;}
.y4d_c00122{bottom:57.780000px;}
.y29_c00122{bottom:60.480000px;}
.y4c_c00122{bottom:76.230000px;}
.y28_c00122{bottom:79.380000px;}
.y4b_c00122{bottom:94.230000px;}
.y27_c00122{bottom:95.130000px;}
.y4a_c00122{bottom:112.830000px;}
.y26_c00122{bottom:115.080000px;}
.y49_c00122{bottom:130.380000px;}
.y25_c00122{bottom:133.680000px;}
.y48_c00122{bottom:149.580000px;}
.y24_c00122{bottom:151.830000px;}
.y47_c00122{bottom:167.730000px;}
.y23_c00122{bottom:169.830000px;}
.y46_c00122{bottom:184.980000px;}
.y22_c00122{bottom:188.280000px;}
.y45_c00122{bottom:204.180000px;}
.y21_c00122{bottom:206.880000px;}
.y44_c00122{bottom:222.180000px;}
.y20_c00122{bottom:224.730000px;}
.y43_c00122{bottom:240.030000px;}
.y1f_c00122{bottom:243.030000px;}
.y42_c00122{bottom:258.630000px;}
.y1e_c00122{bottom:261.180000px;}
.y41_c00122{bottom:277.530000px;}
.y1d_c00122{bottom:279.180000px;}
.y40_c00122{bottom:295.380000px;}
.y1c_c00122{bottom:297.630000px;}
.y3f_c00122{bottom:312.480000px;}
.y1b_c00122{bottom:316.530000px;}
.y3e_c00122{bottom:331.380000px;}
.y1a_c00122{bottom:335.130000px;}
.y3d_c00122{bottom:349.980000px;}
.y19_c00122{bottom:353.130000px;}
.y3c_c00122{bottom:367.830000px;}
.y18_c00122{bottom:370.680000px;}
.y3b_c00122{bottom:385.530000px;}
.y17_c00122{bottom:389.130000px;}
.y3a_c00122{bottom:404.730000px;}
.y16_c00122{bottom:407.130000px;}
.y39_c00122{bottom:424.680000px;}
.y15_c00122{bottom:424.980000px;}
.y38_c00122{bottom:441.480000px;}
.y14_c00122{bottom:442.230000px;}
.y37_c00122{bottom:458.730000px;}
.y13_c00122{bottom:460.080000px;}
.y36_c00122{bottom:477.330000px;}
.y12_c00122{bottom:478.530000px;}
.y11_c00122{bottom:494.730000px;}
.y35_c00122{bottom:496.080000px;}
.y10_c00122{bottom:514.680000px;}
.yf_c00122{bottom:532.230000px;}
.y34_c00122{bottom:549.780000px;}
.ye_c00122{bottom:550.230000px;}
.y33_c00122{bottom:568.380000px;}
.yd_c00122{bottom:568.680000px;}
.y32_c00122{bottom:586.530000px;}
.yc_c00122{bottom:586.680000px;}
.y31_c00122{bottom:604.230000px;}
.yb_c00122{bottom:605.580000px;}
.y30_c00122{bottom:622.980000px;}
.ya_c00122{bottom:623.130000px;}
.y9_c00122{bottom:640.680000px;}
.y2f_c00122{bottom:658.530000px;}
.y8_c00122{bottom:658.830000px;}
.y2e_c00122{bottom:676.980000px;}
.y7_c00122{bottom:677.430000px;}
.y2d_c00122{bottom:694.980000px;}
.y6_c00122{bottom:695.580000px;}
.y5_c00122{bottom:712.830000px;}
.y2c_c00122{bottom:712.980000px;}
.y4_c00122{bottom:730.980000px;}
.y3_c00122{bottom:748.530000px;}
.y2b_c00122{bottom:748.980000px;}
.y2_c00122{bottom:766.830000px;}
.y1_c00122{bottom:785.130000px;}
.y2a_c00122{bottom:785.430000px;}
.h7_c00122{height:13.200074px;}
.h8_c00122{height:43.804688px;}
.h6_c00122{height:59.736000px;}
.h3_c00122{height:62.880000px;}
.h5_c00122{height:64.020000px;}
.h2_c00122{height:66.024000px;}
.h4_c00122{height:70.422000px;}
.h1_c00122{height:845.250000px;}
.h0_c00122{height:845.400000px;}
.w1_c00122{width:104.875500px;}
.w0_c00122{width:587.250000px;}
.x0_c00122{left:0.000000px;}
.x8_c00122{left:15.600000px;}
.x9_c00122{left:18.600000px;}
.x4_c00122{left:22.950000px;}
.x1_c00122{left:71.250000px;}
.x2_c00122{left:72.900000px;}
.x5_c00122{left:74.550000px;}
.x6_c00122{left:75.900000px;}
.x7_c00122{left:76.950000px;}
.x3_c00122{left:89.400000px;}
.x10_c00122{left:245.439240px;}
.xa_c00122{left:288.900000px;}
.xb_c00122{left:289.950000px;}
.xc_c00122{left:291.300000px;}
.xd_c00122{left:292.650000px;}
.xe_c00122{left:293.700000px;}
.xf_c00122{left:445.800000px;}
@media print{
.v0_c00122{vertical-align:0.000000pt;}
.lsa_c00122{letter-spacing:-2.666667pt;}
.ls9_c00122{letter-spacing:0.000000pt;}
.ls8_c00122{letter-spacing:0.693333pt;}
.ls1_c00122{letter-spacing:2.666667pt;}
.ls3_c00122{letter-spacing:6.666667pt;}
.ls6_c00122{letter-spacing:10.493333pt;}
.lsb_c00122{letter-spacing:10.666667pt;}
.ls4_c00122{letter-spacing:14.666667pt;}
.ls2_c00122{letter-spacing:16.533333pt;}
.ls7_c00122{letter-spacing:21.280000pt;}
.ls5_c00122{letter-spacing:30.482667pt;}
.ls0_c00122{letter-spacing:43.786667pt;}
.ws6_c00122{word-spacing:-24.053333pt;}
.ws5_c00122{word-spacing:-23.253333pt;}
.ws2_c00122{word-spacing:-19.621333pt;}
.ws1_c00122{word-spacing:-15.413333pt;}
.ws0_c00122{word-spacing:-12.586667pt;}
.ws3_c00122{word-spacing:-11.957333pt;}
.ws4_c00122{word-spacing:-10.080000pt;}
.ws7_c00122{word-spacing:0.000000pt;}
._1b_c00122{margin-left:-15.840000pt;}
._29_c00122{margin-left:-12.597333pt;}
._11_c00122{margin-left:-10.880000pt;}
._15_c00122{margin-left:-9.386667pt;}
._24_c00122{margin-left:-8.213333pt;}
._9_c00122{margin-left:-6.997333pt;}
._10_c00122{margin-left:-6.016000pt;}
._4_c00122{margin-left:-4.800000pt;}
._1e_c00122{margin-left:-3.904000pt;}
._6_c00122{margin-left:-2.933333pt;}
._5_c00122{margin-left:-1.920000pt;}
._a_c00122{margin-left:-0.960000pt;}
._2_c00122{width:1.344000pt;}
._7_c00122{width:2.453333pt;}
._8_c00122{width:3.626667pt;}
._1_c00122{width:4.906667pt;}
._22_c00122{width:5.821333pt;}
._0_c00122{width:6.826667pt;}
._b_c00122{width:7.914667pt;}
._13_c00122{width:8.821333pt;}
._12_c00122{width:10.112000pt;}
._f_c00122{width:11.274667pt;}
._14_c00122{width:12.213333pt;}
._23_c00122{width:13.432000pt;}
._1d_c00122{width:14.560000pt;}
._20_c00122{width:15.610667pt;}
._c_c00122{width:17.408000pt;}
._e_c00122{width:18.368000pt;}
._1c_c00122{width:20.085333pt;}
._1a_c00122{width:21.600000pt;}
._25_c00122{width:23.029333pt;}
._d_c00122{width:24.213333pt;}
._26_c00122{width:25.184000pt;}
._18_c00122{width:26.965333pt;}
._19_c00122{width:28.736000pt;}
._28_c00122{width:30.080000pt;}
._27_c00122{width:34.560000pt;}
._17_c00122{width:40.746667pt;}
._3_c00122{width:44.304000pt;}
._21_c00122{width:46.749333pt;}
._2a_c00122{width:56.341333pt;}
._2b_c00122{width:60.000000pt;}
._16_c00122{width:73.920000pt;}
._1f_c00122{width:103.490667pt;}
.fs4_c00122{font-size:34.666667pt;}
.fs5_c00122{font-size:40.000000pt;}
.fs6_c00122{font-size:42.666667pt;}
.fs3_c00122{font-size:50.666667pt;}
.fs0_c00122{font-size:53.333333pt;}
.fs1_c00122{font-size:56.000000pt;}
.fs2_c00122{font-size:58.666667pt;}
.y0_c00122{bottom:0.000000pt;}
.y50_c00122{bottom:2.760000pt;}
.y4f_c00122{bottom:6.425206pt;}
.y4e_c00122{bottom:34.826667pt;}
.y4d_c00122{bottom:51.360000pt;}
.y29_c00122{bottom:53.760000pt;}
.y4c_c00122{bottom:67.760000pt;}
.y28_c00122{bottom:70.560000pt;}
.y4b_c00122{bottom:83.760000pt;}
.y27_c00122{bottom:84.560000pt;}
.y4a_c00122{bottom:100.293333pt;}
.y26_c00122{bottom:102.293333pt;}
.y49_c00122{bottom:115.893333pt;}
.y25_c00122{bottom:118.826667pt;}
.y48_c00122{bottom:132.960000pt;}
.y24_c00122{bottom:134.960000pt;}
.y47_c00122{bottom:149.093333pt;}
.y23_c00122{bottom:150.960000pt;}
.y46_c00122{bottom:164.426667pt;}
.y22_c00122{bottom:167.360000pt;}
.y45_c00122{bottom:181.493333pt;}
.y21_c00122{bottom:183.893333pt;}
.y44_c00122{bottom:197.493333pt;}
.y20_c00122{bottom:199.760000pt;}
.y43_c00122{bottom:213.360000pt;}
.y1f_c00122{bottom:216.026667pt;}
.y42_c00122{bottom:229.893333pt;}
.y1e_c00122{bottom:232.160000pt;}
.y41_c00122{bottom:246.693333pt;}
.y1d_c00122{bottom:248.160000pt;}
.y40_c00122{bottom:262.560000pt;}
.y1c_c00122{bottom:264.560000pt;}
.y3f_c00122{bottom:277.760000pt;}
.y1b_c00122{bottom:281.360000pt;}
.y3e_c00122{bottom:294.560000pt;}
.y1a_c00122{bottom:297.893333pt;}
.y3d_c00122{bottom:311.093333pt;}
.y19_c00122{bottom:313.893333pt;}
.y3c_c00122{bottom:326.960000pt;}
.y18_c00122{bottom:329.493333pt;}
.y3b_c00122{bottom:342.693333pt;}
.y17_c00122{bottom:345.893333pt;}
.y3a_c00122{bottom:359.760000pt;}
.y16_c00122{bottom:361.893333pt;}
.y39_c00122{bottom:377.493333pt;}
.y15_c00122{bottom:377.760000pt;}
.y38_c00122{bottom:392.426667pt;}
.y14_c00122{bottom:393.093333pt;}
.y37_c00122{bottom:407.760000pt;}
.y13_c00122{bottom:408.960000pt;}
.y36_c00122{bottom:424.293333pt;}
.y12_c00122{bottom:425.360000pt;}
.y11_c00122{bottom:439.760000pt;}
.y35_c00122{bottom:440.960000pt;}
.y10_c00122{bottom:457.493333pt;}
.yf_c00122{bottom:473.093333pt;}
.y34_c00122{bottom:488.693333pt;}
.ye_c00122{bottom:489.093333pt;}
.y33_c00122{bottom:505.226667pt;}
.yd_c00122{bottom:505.493333pt;}
.y32_c00122{bottom:521.360000pt;}
.yc_c00122{bottom:521.493333pt;}
.y31_c00122{bottom:537.093333pt;}
.yb_c00122{bottom:538.293333pt;}
.y30_c00122{bottom:553.760000pt;}
.ya_c00122{bottom:553.893333pt;}
.y9_c00122{bottom:569.493333pt;}
.y2f_c00122{bottom:585.360000pt;}
.y8_c00122{bottom:585.626667pt;}
.y2e_c00122{bottom:601.760000pt;}
.y7_c00122{bottom:602.160000pt;}
.y2d_c00122{bottom:617.760000pt;}
.y6_c00122{bottom:618.293333pt;}
.y5_c00122{bottom:633.626667pt;}
.y2c_c00122{bottom:633.760000pt;}
.y4_c00122{bottom:649.760000pt;}
.y3_c00122{bottom:665.360000pt;}
.y2b_c00122{bottom:665.760000pt;}
.y2_c00122{bottom:681.626667pt;}
.y1_c00122{bottom:697.893333pt;}
.y2a_c00122{bottom:698.160000pt;}
.h7_c00122{height:11.733399pt;}
.h8_c00122{height:38.937500pt;}
.h6_c00122{height:53.098667pt;}
.h3_c00122{height:55.893333pt;}
.h5_c00122{height:56.906667pt;}
.h2_c00122{height:58.688000pt;}
.h4_c00122{height:62.597333pt;}
.h1_c00122{height:751.333333pt;}
.h0_c00122{height:751.466667pt;}
.w1_c00122{width:93.222667pt;}
.w0_c00122{width:522.000000pt;}
.x0_c00122{left:0.000000pt;}
.x8_c00122{left:13.866667pt;}
.x9_c00122{left:16.533333pt;}
.x4_c00122{left:20.400000pt;}
.x1_c00122{left:63.333333pt;}
.x2_c00122{left:64.800000pt;}
.x5_c00122{left:66.266667pt;}
.x6_c00122{left:67.466667pt;}
.x7_c00122{left:68.400000pt;}
.x3_c00122{left:79.466667pt;}
.x10_c00122{left:218.168213pt;}
.xa_c00122{left:256.800000pt;}
.xb_c00122{left:257.733333pt;}
.xc_c00122{left:258.933333pt;}
.xd_c00122{left:260.133333pt;}
.xe_c00122{left:261.066667pt;}
.xf_c00122{left:396.266667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3a91b3655940488446678863.woff2')format("woff");}.ff1_c00123{font-family:ff1_c00123;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00123;src:url('chunks/assets/font_e0bb8276c5d16f11007c9030.woff2')format("woff");}.ff2_c00123{font-family:ff2_c00123;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00123;src:url('chunks/assets/font_eae3cc33f6c863385e29abbc.woff2')format("woff");}.ff3_c00123{font-family:ff3_c00123;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00123;src:url('chunks/assets/font_b39c61c9fa1d493429e89a26.woff2')format("woff");}.ff4_c00123{font-family:ff4_c00123;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00123;src:url('chunks/assets/font_a40aa3b7a73e0817dca193da.woff2')format("woff");}.ff5_c00123{font-family:ff5_c00123;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00123;src:url('chunks/assets/font_32165549fbf3cc5e99ed0ec0.woff2')format("woff");}.ff6_c00123{font-family:ff6_c00123;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00123;src:url('chunks/assets/font_414302e605a5552845626410.woff2')format("woff");}.ff7_c00123{font-family:ff7_c00123;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00123;src:url('chunks/assets/font_73aac88bd747ac95e1159c7a.woff2')format("woff");}.ff8_c00123{font-family:ff8_c00123;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00123;src:url('chunks/assets/font_cd049174c5c41a007eea5073.woff2')format("woff");}.ff9_c00123{font-family:ff9_c00123;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00123;src:url('chunks/assets/font_60fb712694aa146582fe5573.woff2')format("woff");}.ffa_c00123{font-family:ffa_c00123;line-height:1.575000;font-style:normal;font-weight: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_c00123;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ffb_c00123{font-family:ffb_c00123;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00123{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00123{vertical-align:-64.800000px;}
.v0_c00123{vertical-align:0.000000px;}
.v2_c00123{vertical-align:102.000000px;}
.ls9_c00123{letter-spacing:0.000000px;}
.ls4_c00123{letter-spacing:1.200000px;}
.ls3_c00123{letter-spacing:3.000000px;}
.lsa_c00123{letter-spacing:9.000000px;}
.ls1_c00123{letter-spacing:11.400000px;}
.ls8_c00123{letter-spacing:12.000000px;}
.ls7_c00123{letter-spacing:12.060000px;}
.ls0_c00123{letter-spacing:15.456000px;}
.ls5_c00123{letter-spacing:20.940000px;}
.ls6_c00123{letter-spacing:24.804000px;}
.ls2_c00123{letter-spacing:309.987000px;}
.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;}
}
.ws4_c00123{word-spacing:-50.022000px;}
.ws0_c00123{word-spacing:-27.813000px;}
.ws6_c00123{word-spacing:-27.060000px;}
.ws5_c00123{word-spacing:-24.774000px;}
.ws2_c00123{word-spacing:-18.813000px;}
.ws1_c00123{word-spacing:-18.060000px;}
.ws7_c00123{word-spacing:-17.340000px;}
.ws8_c00123{word-spacing:-17.160000px;}
.ws3_c00123{word-spacing:-14.160000px;}
.ws9_c00123{word-spacing:0.000000px;}
._1f_c00123{margin-left:-19.038000px;}
._1e_c00123{margin-left:-16.716000px;}
._20_c00123{margin-left:-14.784000px;}
._b_c00123{margin-left:-10.800000px;}
._13_c00123{margin-left:-9.660000px;}
._15_c00123{margin-left:-7.914000px;}
._10_c00123{margin-left:-6.072000px;}
._c_c00123{margin-left:-4.776000px;}
._a_c00123{margin-left:-3.018000px;}
._7_c00123{margin-left:-1.764000px;}
._4_c00123{width:1.638000px;}
._11_c00123{width:2.748000px;}
._3_c00123{width:3.780000px;}
._9_c00123{width:4.920000px;}
._0_c00123{width:6.552000px;}
._1_c00123{width:8.316000px;}
._2_c00123{width:10.206000px;}
._8_c00123{width:11.340000px;}
._12_c00123{width:12.654000px;}
._1b_c00123{width:14.868000px;}
._19_c00123{width:16.140000px;}
._f_c00123{width:17.694000px;}
._d_c00123{width:19.104000px;}
._16_c00123{width:20.217000px;}
._17_c00123{width:22.050000px;}
._23_c00123{width:23.208000px;}
._1c_c00123{width:26.088000px;}
._22_c00123{width:27.534000px;}
._1a_c00123{width:28.584000px;}
._25_c00123{width:30.240000px;}
._1d_c00123{width:32.460000px;}
._6_c00123{width:34.650000px;}
._5_c00123{width:38.493000px;}
._24_c00123{width:40.953000px;}
._18_c00123{width:55.314000px;}
._26_c00123{width:105.444000px;}
._28_c00123{width:138.990000px;}
._27_c00123{width:146.052000px;}
._21_c00123{width:240.258000px;}
._14_c00123{width:280.140000px;}
._e_c00123{width:333.384000px;}
.fc2_c00123{color:transparent;}
.fc1_c00123{color:rgb(128,128,128);}
.fc0_c00123{color:rgb(0,0,0);}
.fs4_c00123{font-size:24.000000px;}
.fs7_c00123{font-size:48.000000px;}
.fs5_c00123{font-size:57.000000px;}
.fs3_c00123{font-size:60.000000px;}
.fs2_c00123{font-size:63.000000px;}
.fs1_c00123{font-size:66.000000px;}
.fs0_c00123{font-size:72.000000px;}
.fs6_c00123{font-size:189.000000px;}
.y0_c00123{bottom:0.000000px;}
.y54_c00123{bottom:3.105000px;}
.y53_c00123{bottom:7.228355px;}
.y52_c00123{bottom:43.185000px;}
.y27_c00123{bottom:58.035000px;}
.y51_c00123{bottom:60.285000px;}
.y26_c00123{bottom:77.235000px;}
.y50_c00123{bottom:79.185000px;}
.y25_c00123{bottom:95.535000px;}
.y4f_c00123{bottom:96.735000px;}
.y24_c00123{bottom:113.985000px;}
.y4e_c00123{bottom:115.035000px;}
.y23_c00123{bottom:131.985000px;}
.y4d_c00123{bottom:133.185000px;}
.y22_c00123{bottom:150.735000px;}
.y4c_c00123{bottom:151.785000px;}
.y21_c00123{bottom:168.735000px;}
.y4b_c00123{bottom:169.335000px;}
.y20_c00123{bottom:186.885000px;}
.y4a_c00123{bottom:187.335000px;}
.y1f_c00123{bottom:204.735000px;}
.y49_c00123{bottom:206.085000px;}
.y1e_c00123{bottom:222.735000px;}
.y48_c00123{bottom:224.085000px;}
.y1d_c00123{bottom:240.585000px;}
.y47_c00123{bottom:241.935000px;}
.y1c_c00123{bottom:258.735000px;}
.y46_c00123{bottom:260.235000px;}
.y1b_c00123{bottom:276.435000px;}
.y45_c00123{bottom:278.685000px;}
.y1a_c00123{bottom:294.585000px;}
.y44_c00123{bottom:296.235000px;}
.y19_c00123{bottom:312.885000px;}
.y43_c00123{bottom:313.785000px;}
.y18_c00123{bottom:330.735000px;}
.y42_c00123{bottom:332.085000px;}
.y17_c00123{bottom:348.885000px;}
.y41_c00123{bottom:349.935000px;}
.y16_c00123{bottom:366.885000px;}
.y40_c00123{bottom:368.535000px;}
.y15_c00123{bottom:384.735000px;}
.y3f_c00123{bottom:386.685000px;}
.y14_c00123{bottom:402.885000px;}
.y3e_c00123{bottom:404.535000px;}
.y13_c00123{bottom:421.185000px;}
.y3d_c00123{bottom:422.535000px;}
.y12_c00123{bottom:439.335000px;}
.y3c_c00123{bottom:440.985000px;}
.y11_c00123{bottom:457.635000px;}
.y3b_c00123{bottom:458.685000px;}
.y10_c00123{bottom:475.785000px;}
.y3a_c00123{bottom:477.135000px;}
.yf_c00123{bottom:493.785000px;}
.y39_c00123{bottom:495.135000px;}
.ye_c00123{bottom:511.635000px;}
.y38_c00123{bottom:513.585000px;}
.yd_c00123{bottom:529.485000px;}
.y37_c00123{bottom:531.885000px;}
.yc_c00123{bottom:547.635000px;}
.y36_c00123{bottom:548.985000px;}
.ya_c00123{bottom:558.585000px;}
.yb_c00123{bottom:565.635000px;}
.y35_c00123{bottom:567.885000px;}
.y34_c00123{bottom:585.885000px;}
.y33_c00123{bottom:603.735000px;}
.y9_c00123{bottom:621.285000px;}
.y32_c00123{bottom:622.935000px;}
.y8_c00123{bottom:639.435000px;}
.y31_c00123{bottom:640.485000px;}
.y7_c00123{bottom:657.135000px;}
.y30_c00123{bottom:659.085000px;}
.y2f_c00123{bottom:676.935000px;}
.y6_c00123{bottom:692.535000px;}
.y2e_c00123{bottom:695.235000px;}
.y5_c00123{bottom:710.985000px;}
.y2d_c00123{bottom:712.785000px;}
.y2c_c00123{bottom:730.935000px;}
.y4_c00123{bottom:747.135000px;}
.y2b_c00123{bottom:748.935000px;}
.y3_c00123{bottom:766.035000px;}
.y2a_c00123{bottom:767.685000px;}
.y2_c00123{bottom:783.585000px;}
.y29_c00123{bottom:785.385000px;}
.y1_c00123{bottom:802.935000px;}
.y28_c00123{bottom:804.285000px;}
.hc_c00123{height:13.200074px;}
.h5_c00123{height:30.386719px;}
.hd_c00123{height:43.804688px;}
.h6_c00123{height:59.736000px;}
.h4_c00123{height:62.880000px;}
.h7_c00123{height:64.020000px;}
.h3_c00123{height:66.024000px;}
.ha_c00123{height:67.221000px;}
.h9_c00123{height:69.168000px;}
.hb_c00123{height:70.422000px;}
.h2_c00123{height:78.048000px;}
.h8_c00123{height:201.663000px;}
.h1_c00123{height:846.750000px;}
.h0_c00123{height:846.975000px;}
.w2_c00123{width:104.875500px;}
.w0_c00123{width:581.850000px;}
.w1_c00123{width:582.000000px;}
.x0_c00123{left:0.000000px;}
.xb_c00123{left:45.600000px;}
.xc_c00123{left:46.800000px;}
.x6_c00123{left:52.650000px;}
.x8_c00123{left:73.350000px;}
.x4_c00123{left:105.750000px;}
.xd_c00123{left:107.400000px;}
.x3_c00123{left:108.450000px;}
.x2_c00123{left:109.650000px;}
.x1_c00123{left:113.400000px;}
.x7_c00123{left:123.900000px;}
.xa_c00123{left:152.100000px;}
.x9_c00123{left:188.100000px;}
.x5_c00123{left:204.300000px;}
.x14_c00123{left:242.739258px;}
.x10_c00123{left:322.200000px;}
.x12_c00123{left:324.300000px;}
.xf_c00123{left:325.800000px;}
.xe_c00123{left:327.600000px;}
.x11_c00123{left:328.650000px;}
.x13_c00123{left:503.850000px;}
@media print{
.v1_c00123{vertical-align:-57.600000pt;}
.v0_c00123{vertical-align:0.000000pt;}
.v2_c00123{vertical-align:90.666667pt;}
.ls9_c00123{letter-spacing:0.000000pt;}
.ls4_c00123{letter-spacing:1.066667pt;}
.ls3_c00123{letter-spacing:2.666667pt;}
.lsa_c00123{letter-spacing:8.000000pt;}
.ls1_c00123{letter-spacing:10.133333pt;}
.ls8_c00123{letter-spacing:10.666667pt;}
.ls7_c00123{letter-spacing:10.720000pt;}
.ls0_c00123{letter-spacing:13.738667pt;}
.ls5_c00123{letter-spacing:18.613333pt;}
.ls6_c00123{letter-spacing:22.048000pt;}
.ls2_c00123{letter-spacing:275.544000pt;}
.ws4_c00123{word-spacing:-44.464000pt;}
.ws0_c00123{word-spacing:-24.722667pt;}
.ws6_c00123{word-spacing:-24.053333pt;}
.ws5_c00123{word-spacing:-22.021333pt;}
.ws2_c00123{word-spacing:-16.722667pt;}
.ws1_c00123{word-spacing:-16.053333pt;}
.ws7_c00123{word-spacing:-15.413333pt;}
.ws8_c00123{word-spacing:-15.253333pt;}
.ws3_c00123{word-spacing:-12.586667pt;}
.ws9_c00123{word-spacing:0.000000pt;}
._1f_c00123{margin-left:-16.922667pt;}
._1e_c00123{margin-left:-14.858667pt;}
._20_c00123{margin-left:-13.141333pt;}
._b_c00123{margin-left:-9.600000pt;}
._13_c00123{margin-left:-8.586667pt;}
._15_c00123{margin-left:-7.034667pt;}
._10_c00123{margin-left:-5.397333pt;}
._c_c00123{margin-left:-4.245333pt;}
._a_c00123{margin-left:-2.682667pt;}
._7_c00123{margin-left:-1.568000pt;}
._4_c00123{width:1.456000pt;}
._11_c00123{width:2.442667pt;}
._3_c00123{width:3.360000pt;}
._9_c00123{width:4.373333pt;}
._0_c00123{width:5.824000pt;}
._1_c00123{width:7.392000pt;}
._2_c00123{width:9.072000pt;}
._8_c00123{width:10.080000pt;}
._12_c00123{width:11.248000pt;}
._1b_c00123{width:13.216000pt;}
._19_c00123{width:14.346667pt;}
._f_c00123{width:15.728000pt;}
._d_c00123{width:16.981333pt;}
._16_c00123{width:17.970667pt;}
._17_c00123{width:19.600000pt;}
._23_c00123{width:20.629333pt;}
._1c_c00123{width:23.189333pt;}
._22_c00123{width:24.474667pt;}
._1a_c00123{width:25.408000pt;}
._25_c00123{width:26.880000pt;}
._1d_c00123{width:28.853333pt;}
._6_c00123{width:30.800000pt;}
._5_c00123{width:34.216000pt;}
._24_c00123{width:36.402667pt;}
._18_c00123{width:49.168000pt;}
._26_c00123{width:93.728000pt;}
._28_c00123{width:123.546667pt;}
._27_c00123{width:129.824000pt;}
._21_c00123{width:213.562667pt;}
._14_c00123{width:249.013333pt;}
._e_c00123{width:296.341333pt;}
.fs4_c00123{font-size:21.333333pt;}
.fs7_c00123{font-size:42.666667pt;}
.fs5_c00123{font-size:50.666667pt;}
.fs3_c00123{font-size:53.333333pt;}
.fs2_c00123{font-size:56.000000pt;}
.fs1_c00123{font-size:58.666667pt;}
.fs0_c00123{font-size:64.000000pt;}
.fs6_c00123{font-size:168.000000pt;}
.y0_c00123{bottom:0.000000pt;}
.y54_c00123{bottom:2.760000pt;}
.y53_c00123{bottom:6.425204pt;}
.y52_c00123{bottom:38.386667pt;}
.y27_c00123{bottom:51.586667pt;}
.y51_c00123{bottom:53.586667pt;}
.y26_c00123{bottom:68.653333pt;}
.y50_c00123{bottom:70.386667pt;}
.y25_c00123{bottom:84.920000pt;}
.y4f_c00123{bottom:85.986667pt;}
.y24_c00123{bottom:101.320000pt;}
.y4e_c00123{bottom:102.253333pt;}
.y23_c00123{bottom:117.320000pt;}
.y4d_c00123{bottom:118.386667pt;}
.y22_c00123{bottom:133.986667pt;}
.y4c_c00123{bottom:134.920000pt;}
.y21_c00123{bottom:149.986667pt;}
.y4b_c00123{bottom:150.520000pt;}
.y20_c00123{bottom:166.120000pt;}
.y4a_c00123{bottom:166.520000pt;}
.y1f_c00123{bottom:181.986667pt;}
.y49_c00123{bottom:183.186667pt;}
.y1e_c00123{bottom:197.986667pt;}
.y48_c00123{bottom:199.186667pt;}
.y1d_c00123{bottom:213.853333pt;}
.y47_c00123{bottom:215.053333pt;}
.y1c_c00123{bottom:229.986667pt;}
.y46_c00123{bottom:231.320000pt;}
.y1b_c00123{bottom:245.720000pt;}
.y45_c00123{bottom:247.720000pt;}
.y1a_c00123{bottom:261.853333pt;}
.y44_c00123{bottom:263.320000pt;}
.y19_c00123{bottom:278.120000pt;}
.y43_c00123{bottom:278.920000pt;}
.y18_c00123{bottom:293.986667pt;}
.y42_c00123{bottom:295.186667pt;}
.y17_c00123{bottom:310.120000pt;}
.y41_c00123{bottom:311.053333pt;}
.y16_c00123{bottom:326.120000pt;}
.y40_c00123{bottom:327.586667pt;}
.y15_c00123{bottom:341.986667pt;}
.y3f_c00123{bottom:343.720000pt;}
.y14_c00123{bottom:358.120000pt;}
.y3e_c00123{bottom:359.586667pt;}
.y13_c00123{bottom:374.386667pt;}
.y3d_c00123{bottom:375.586667pt;}
.y12_c00123{bottom:390.520000pt;}
.y3c_c00123{bottom:391.986667pt;}
.y11_c00123{bottom:406.786667pt;}
.y3b_c00123{bottom:407.720000pt;}
.y10_c00123{bottom:422.920000pt;}
.y3a_c00123{bottom:424.120000pt;}
.yf_c00123{bottom:438.920000pt;}
.y39_c00123{bottom:440.120000pt;}
.ye_c00123{bottom:454.786667pt;}
.y38_c00123{bottom:456.520000pt;}
.yd_c00123{bottom:470.653333pt;}
.y37_c00123{bottom:472.786667pt;}
.yc_c00123{bottom:486.786667pt;}
.y36_c00123{bottom:487.986667pt;}
.ya_c00123{bottom:496.520000pt;}
.yb_c00123{bottom:502.786667pt;}
.y35_c00123{bottom:504.786667pt;}
.y34_c00123{bottom:520.786667pt;}
.y33_c00123{bottom:536.653333pt;}
.y9_c00123{bottom:552.253333pt;}
.y32_c00123{bottom:553.720000pt;}
.y8_c00123{bottom:568.386667pt;}
.y31_c00123{bottom:569.320000pt;}
.y7_c00123{bottom:584.120000pt;}
.y30_c00123{bottom:585.853333pt;}
.y2f_c00123{bottom:601.720000pt;}
.y6_c00123{bottom:615.586667pt;}
.y2e_c00123{bottom:617.986667pt;}
.y5_c00123{bottom:631.986667pt;}
.y2d_c00123{bottom:633.586667pt;}
.y2c_c00123{bottom:649.720000pt;}
.y4_c00123{bottom:664.120000pt;}
.y2b_c00123{bottom:665.720000pt;}
.y3_c00123{bottom:680.920000pt;}
.y2a_c00123{bottom:682.386667pt;}
.y2_c00123{bottom:696.520000pt;}
.y29_c00123{bottom:698.120000pt;}
.y1_c00123{bottom:713.720000pt;}
.y28_c00123{bottom:714.920000pt;}
.hc_c00123{height:11.733399pt;}
.h5_c00123{height:27.010417pt;}
.hd_c00123{height:38.937500pt;}
.h6_c00123{height:53.098667pt;}
.h4_c00123{height:55.893333pt;}
.h7_c00123{height:56.906667pt;}
.h3_c00123{height:58.688000pt;}
.ha_c00123{height:59.752000pt;}
.h9_c00123{height:61.482667pt;}
.hb_c00123{height:62.597333pt;}
.h2_c00123{height:69.376000pt;}
.h8_c00123{height:179.256000pt;}
.h1_c00123{height:752.666667pt;}
.h0_c00123{height:752.866667pt;}
.w2_c00123{width:93.222667pt;}
.w0_c00123{width:517.200000pt;}
.w1_c00123{width:517.333333pt;}
.x0_c00123{left:0.000000pt;}
.xb_c00123{left:40.533333pt;}
.xc_c00123{left:41.600000pt;}
.x6_c00123{left:46.800000pt;}
.x8_c00123{left:65.200000pt;}
.x4_c00123{left:94.000000pt;}
.xd_c00123{left:95.466667pt;}
.x3_c00123{left:96.400000pt;}
.x2_c00123{left:97.466667pt;}
.x1_c00123{left:100.800000pt;}
.x7_c00123{left:110.133333pt;}
.xa_c00123{left:135.200000pt;}
.x9_c00123{left:167.200000pt;}
.x5_c00123{left:181.600000pt;}
.x14_c00123{left:215.768229pt;}
.x10_c00123{left:286.400000pt;}
.x12_c00123{left:288.266667pt;}
.xf_c00123{left:289.600000pt;}
.xe_c00123{left:291.200000pt;}
.x11_c00123{left:292.133333pt;}
.x13_c00123{left:447.866667pt;}
}





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

.ir_c00124:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00124{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00124;src:url('chunks/assets/font_992e18894b2e8114709deed3.woff2')format("woff");}.ff1_c00124{font-family:ff1_c00124;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00124;src:url('chunks/assets/font_8809e813bf76dcfe51b3c77e.woff2')format("woff");}.ff2_c00124{font-family:ff2_c00124;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00124;src:url('chunks/assets/font_38c753fe254892a3342eac35.woff2')format("woff");}.ff3_c00124{font-family:ff3_c00124;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00124;src:url('chunks/assets/font_fc75a429f5d0550609974d0d.woff2')format("woff");}.ff4_c00124{font-family:ff4_c00124;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00124;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff5_c00124{font-family:ff5_c00124;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00124{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00124{vertical-align:0.000000px;}
.ls5_c00124{letter-spacing:0.000000px;}
.ls6_c00124{letter-spacing:3.000000px;}
.ls3_c00124{letter-spacing:7.200000px;}
.ls2_c00124{letter-spacing:8.220000px;}
.ls7_c00124{letter-spacing:9.000000px;}
.ls4_c00124{letter-spacing:15.000000px;}
.ls1_c00124{letter-spacing:24.132000px;}
.ls0_c00124{letter-spacing:213.387000px;}
.sc__c00124{text-shadow:none;}
.sc0_c00124{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00124{-webkit-text-stroke:0px transparent;}
.sc0_c00124{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00124{word-spacing:-33.189000px;}
.ws2_c00124{word-spacing:-32.424000px;}
.ws1_c00124{word-spacing:-14.868000px;}
.ws3_c00124{word-spacing:-14.160000px;}
.ws4_c00124{word-spacing:-1.140000px;}
.ws5_c00124{word-spacing:0.000000px;}
._1d_c00124{margin-left:-28.224000px;}
._38_c00124{margin-left:-18.387000px;}
._1b_c00124{margin-left:-17.142000px;}
._12_c00124{margin-left:-13.614000px;}
._8_c00124{margin-left:-11.907000px;}
._9_c00124{margin-left:-9.324000px;}
._17_c00124{margin-left:-7.572000px;}
._11_c00124{margin-left:-6.231000px;}
._e_c00124{margin-left:-5.010000px;}
._c_c00124{margin-left:-3.171000px;}
._b_c00124{margin-left:-1.389000px;}
._0_c00124{width:1.890000px;}
._a_c00124{width:3.300000px;}
._6_c00124{width:4.536000px;}
._3_c00124{width:5.670000px;}
._5_c00124{width:6.867000px;}
._2_c00124{width:7.938000px;}
._4_c00124{width:9.891000px;}
._28_c00124{width:10.962000px;}
._13_c00124{width:12.183000px;}
._24_c00124{width:13.299000px;}
._10_c00124{width:14.340000px;}
._f_c00124{width:15.720000px;}
._40_c00124{width:16.824000px;}
._39_c00124{width:17.865000px;}
._16_c00124{width:18.990000px;}
._29_c00124{width:20.181000px;}
._23_c00124{width:21.876000px;}
._25_c00124{width:23.265000px;}
._20_c00124{width:25.074000px;}
._1c_c00124{width:26.532000px;}
._1a_c00124{width:28.620000px;}
._30_c00124{width:30.756000px;}
._15_c00124{width:32.634000px;}
._2a_c00124{width:33.780000px;}
._21_c00124{width:35.940000px;}
._19_c00124{width:38.595000px;}
._2c_c00124{width:41.586000px;}
._1_c00124{width:44.100000px;}
._2d_c00124{width:49.770000px;}
._d_c00124{width:75.951000px;}
._3a_c00124{width:80.220000px;}
._1e_c00124{width:91.602000px;}
._18_c00124{width:93.963000px;}
._1f_c00124{width:94.998000px;}
._26_c00124{width:97.887000px;}
._22_c00124{width:100.884000px;}
._27_c00124{width:102.537000px;}
._2f_c00124{width:104.301000px;}
._2b_c00124{width:105.384000px;}
._31_c00124{width:109.842000px;}
._37_c00124{width:111.231000px;}
._32_c00124{width:115.125000px;}
._35_c00124{width:117.156000px;}
._3c_c00124{width:120.381000px;}
._3b_c00124{width:125.031000px;}
._3d_c00124{width:126.372000px;}
._3f_c00124{width:127.716000px;}
._2e_c00124{width:128.814000px;}
._42_c00124{width:131.160000px;}
._3e_c00124{width:132.744000px;}
._41_c00124{width:143.631000px;}
._34_c00124{width:180.339000px;}
._36_c00124{width:243.831000px;}
._43_c00124{width:305.379000px;}
._7_c00124{width:401.562000px;}
._14_c00124{width:443.946000px;}
._33_c00124{width:696.360000px;}
.fc2_c00124{color:transparent;}
.fc1_c00124{color:rgb(128,128,128);}
.fc0_c00124{color:rgb(0,0,0);}
.fs3_c00124{font-size:48.000000px;}
.fs1_c00124{font-size:60.000000px;}
.fs0_c00124{font-size:63.000000px;}
.fs2_c00124{font-size:69.000000px;}
.y0_c00124{bottom:0.000000px;}
.y2d_c00124{bottom:3.105000px;}
.y2c_c00124{bottom:7.228371px;}
.y2b_c00124{bottom:42.165000px;}
.y2a_c00124{bottom:60.465000px;}
.y29_c00124{bottom:78.615000px;}
.y28_c00124{bottom:96.615000px;}
.y27_c00124{bottom:113.865000px;}
.y26_c00124{bottom:132.315000px;}
.y25_c00124{bottom:150.165000px;}
.y24_c00124{bottom:169.065000px;}
.y23_c00124{bottom:187.365000px;}
.y22_c00124{bottom:204.615000px;}
.y21_c00124{bottom:223.065000px;}
.y20_c00124{bottom:241.965000px;}
.y1f_c00124{bottom:259.665000px;}
.y1e_c00124{bottom:277.815000px;}
.y1d_c00124{bottom:295.965000px;}
.y1c_c00124{bottom:313.665000px;}
.y1b_c00124{bottom:331.815000px;}
.y1a_c00124{bottom:349.665000px;}
.y19_c00124{bottom:367.515000px;}
.y18_c00124{bottom:386.115000px;}
.y17_c00124{bottom:403.965000px;}
.y16_c00124{bottom:421.215000px;}
.y15_c00124{bottom:439.815000px;}
.y14_c00124{bottom:457.665000px;}
.y13_c00124{bottom:475.665000px;}
.y12_c00124{bottom:493.515000px;}
.y11_c00124{bottom:511.365000px;}
.y10_c00124{bottom:529.515000px;}
.yf_c00124{bottom:547.815000px;}
.ye_c00124{bottom:565.965000px;}
.yd_c00124{bottom:583.665000px;}
.yc_c00124{bottom:602.415000px;}
.yb_c00124{bottom:620.415000px;}
.ya_c00124{bottom:637.665000px;}
.y9_c00124{bottom:655.515000px;}
.y8_c00124{bottom:673.965000px;}
.y7_c00124{bottom:691.965000px;}
.y6_c00124{bottom:710.565000px;}
.y5_c00124{bottom:728.715000px;}
.y4_c00124{bottom:746.865000px;}
.y3_c00124{bottom:765.165000px;}
.y2_c00124{bottom:782.115000px;}
.y1_c00124{bottom:802.215000px;}
.h5_c00124{height:13.200074px;}
.h6_c00124{height:43.804688px;}
.h3_c00124{height:62.880000px;}
.h2_c00124{height:66.024000px;}
.h4_c00124{height:74.796000px;}
.h0_c00124{height:833.775000px;}
.h1_c00124{height:834.000000px;}
.w2_c00124{width:104.875500px;}
.w0_c00124{width:578.850000px;}
.w1_c00124{width:579.000000px;}
.x0_c00124{left:0.000000px;}
.xb_c00124{left:2.250000px;}
.xc_c00124{left:6.750000px;}
.xa_c00124{left:8.100000px;}
.x7_c00124{left:56.250000px;}
.xe_c00124{left:66.750000px;}
.xd_c00124{left:68.400000px;}
.x9_c00124{left:69.450000px;}
.x8_c00124{left:70.500000px;}
.x4_c00124{left:72.450000px;}
.x5_c00124{left:73.800000px;}
.x2_c00124{left:75.300000px;}
.x3_c00124{left:116.100000px;}
.x6_c00124{left:121.200000px;}
.x1_c00124{left:208.350000px;}
.x10_c00124{left:241.239258px;}
.xf_c00124{left:378.600000px;}
@media print{
.v0_c00124{vertical-align:0.000000pt;}
.ls5_c00124{letter-spacing:0.000000pt;}
.ls6_c00124{letter-spacing:2.666667pt;}
.ls3_c00124{letter-spacing:6.400000pt;}
.ls2_c00124{letter-spacing:7.306667pt;}
.ls7_c00124{letter-spacing:8.000000pt;}
.ls4_c00124{letter-spacing:13.333333pt;}
.ls1_c00124{letter-spacing:21.450667pt;}
.ls0_c00124{letter-spacing:189.677333pt;}
.ws0_c00124{word-spacing:-29.501333pt;}
.ws2_c00124{word-spacing:-28.821333pt;}
.ws1_c00124{word-spacing:-13.216000pt;}
.ws3_c00124{word-spacing:-12.586667pt;}
.ws4_c00124{word-spacing:-1.013333pt;}
.ws5_c00124{word-spacing:0.000000pt;}
._1d_c00124{margin-left:-25.088000pt;}
._38_c00124{margin-left:-16.344000pt;}
._1b_c00124{margin-left:-15.237333pt;}
._12_c00124{margin-left:-12.101333pt;}
._8_c00124{margin-left:-10.584000pt;}
._9_c00124{margin-left:-8.288000pt;}
._17_c00124{margin-left:-6.730667pt;}
._11_c00124{margin-left:-5.538667pt;}
._e_c00124{margin-left:-4.453333pt;}
._c_c00124{margin-left:-2.818667pt;}
._b_c00124{margin-left:-1.234667pt;}
._0_c00124{width:1.680000pt;}
._a_c00124{width:2.933333pt;}
._6_c00124{width:4.032000pt;}
._3_c00124{width:5.040000pt;}
._5_c00124{width:6.104000pt;}
._2_c00124{width:7.056000pt;}
._4_c00124{width:8.792000pt;}
._28_c00124{width:9.744000pt;}
._13_c00124{width:10.829333pt;}
._24_c00124{width:11.821333pt;}
._10_c00124{width:12.746667pt;}
._f_c00124{width:13.973333pt;}
._40_c00124{width:14.954667pt;}
._39_c00124{width:15.880000pt;}
._16_c00124{width:16.880000pt;}
._29_c00124{width:17.938667pt;}
._23_c00124{width:19.445333pt;}
._25_c00124{width:20.680000pt;}
._20_c00124{width:22.288000pt;}
._1c_c00124{width:23.584000pt;}
._1a_c00124{width:25.440000pt;}
._30_c00124{width:27.338667pt;}
._15_c00124{width:29.008000pt;}
._2a_c00124{width:30.026667pt;}
._21_c00124{width:31.946667pt;}
._19_c00124{width:34.306667pt;}
._2c_c00124{width:36.965333pt;}
._1_c00124{width:39.200000pt;}
._2d_c00124{width:44.240000pt;}
._d_c00124{width:67.512000pt;}
._3a_c00124{width:71.306667pt;}
._1e_c00124{width:81.424000pt;}
._18_c00124{width:83.522667pt;}
._1f_c00124{width:84.442667pt;}
._26_c00124{width:87.010667pt;}
._22_c00124{width:89.674667pt;}
._27_c00124{width:91.144000pt;}
._2f_c00124{width:92.712000pt;}
._2b_c00124{width:93.674667pt;}
._31_c00124{width:97.637333pt;}
._37_c00124{width:98.872000pt;}
._32_c00124{width:102.333333pt;}
._35_c00124{width:104.138667pt;}
._3c_c00124{width:107.005333pt;}
._3b_c00124{width:111.138667pt;}
._3d_c00124{width:112.330667pt;}
._3f_c00124{width:113.525333pt;}
._2e_c00124{width:114.501333pt;}
._42_c00124{width:116.586667pt;}
._3e_c00124{width:117.994667pt;}
._41_c00124{width:127.672000pt;}
._34_c00124{width:160.301333pt;}
._36_c00124{width:216.738667pt;}
._43_c00124{width:271.448000pt;}
._7_c00124{width:356.944000pt;}
._14_c00124{width:394.618667pt;}
._33_c00124{width:618.986667pt;}
.fs3_c00124{font-size:42.666667pt;}
.fs1_c00124{font-size:53.333333pt;}
.fs0_c00124{font-size:56.000000pt;}
.fs2_c00124{font-size:61.333333pt;}
.y0_c00124{bottom:0.000000pt;}
.y2d_c00124{bottom:2.760000pt;}
.y2c_c00124{bottom:6.425219pt;}
.y2b_c00124{bottom:37.480000pt;}
.y2a_c00124{bottom:53.746667pt;}
.y29_c00124{bottom:69.880000pt;}
.y28_c00124{bottom:85.880000pt;}
.y27_c00124{bottom:101.213333pt;}
.y26_c00124{bottom:117.613333pt;}
.y25_c00124{bottom:133.480000pt;}
.y24_c00124{bottom:150.280000pt;}
.y23_c00124{bottom:166.546667pt;}
.y22_c00124{bottom:181.880000pt;}
.y21_c00124{bottom:198.280000pt;}
.y20_c00124{bottom:215.080000pt;}
.y1f_c00124{bottom:230.813333pt;}
.y1e_c00124{bottom:246.946667pt;}
.y1d_c00124{bottom:263.080000pt;}
.y1c_c00124{bottom:278.813333pt;}
.y1b_c00124{bottom:294.946667pt;}
.y1a_c00124{bottom:310.813333pt;}
.y19_c00124{bottom:326.680000pt;}
.y18_c00124{bottom:343.213333pt;}
.y17_c00124{bottom:359.080000pt;}
.y16_c00124{bottom:374.413333pt;}
.y15_c00124{bottom:390.946667pt;}
.y14_c00124{bottom:406.813333pt;}
.y13_c00124{bottom:422.813333pt;}
.y12_c00124{bottom:438.680000pt;}
.y11_c00124{bottom:454.546667pt;}
.y10_c00124{bottom:470.680000pt;}
.yf_c00124{bottom:486.946667pt;}
.ye_c00124{bottom:503.080000pt;}
.yd_c00124{bottom:518.813333pt;}
.yc_c00124{bottom:535.480000pt;}
.yb_c00124{bottom:551.480000pt;}
.ya_c00124{bottom:566.813333pt;}
.y9_c00124{bottom:582.680000pt;}
.y8_c00124{bottom:599.080000pt;}
.y7_c00124{bottom:615.080000pt;}
.y6_c00124{bottom:631.613333pt;}
.y5_c00124{bottom:647.746667pt;}
.y4_c00124{bottom:663.880000pt;}
.y3_c00124{bottom:680.146667pt;}
.y2_c00124{bottom:695.213333pt;}
.y1_c00124{bottom:713.080000pt;}
.h5_c00124{height:11.733399pt;}
.h6_c00124{height:38.937500pt;}
.h3_c00124{height:55.893333pt;}
.h2_c00124{height:58.688000pt;}
.h4_c00124{height:66.485333pt;}
.h0_c00124{height:741.133333pt;}
.h1_c00124{height:741.333333pt;}
.w2_c00124{width:93.222667pt;}
.w0_c00124{width:514.533333pt;}
.w1_c00124{width:514.666667pt;}
.x0_c00124{left:0.000000pt;}
.xb_c00124{left:2.000000pt;}
.xc_c00124{left:6.000000pt;}
.xa_c00124{left:7.200000pt;}
.x7_c00124{left:50.000000pt;}
.xe_c00124{left:59.333333pt;}
.xd_c00124{left:60.800000pt;}
.x9_c00124{left:61.733333pt;}
.x8_c00124{left:62.666667pt;}
.x4_c00124{left:64.400000pt;}
.x5_c00124{left:65.600000pt;}
.x2_c00124{left:66.933333pt;}
.x3_c00124{left:103.200000pt;}
.x6_c00124{left:107.733333pt;}
.x1_c00124{left:185.200000pt;}
.x10_c00124{left:214.434896pt;}
.xf_c00124{left:336.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_43feaa8ac9b6be6ea90d9e3e.woff2')format("woff");}.ff1_c00125{font-family:ff1_c00125;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00125;src:url('chunks/assets/font_613893c69c8dc6681620aff5.woff2')format("woff");}.ff2_c00125{font-family:ff2_c00125;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00125;src:url('chunks/assets/font_136bffebbfcc63d9ae32a2cd.woff2')format("woff");}.ff3_c00125{font-family:ff3_c00125;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00125;src:url('chunks/assets/font_4d4b37a7a66fd476aea2a177.woff2')format("woff");}.ff4_c00125{font-family:ff4_c00125;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00125;src:url('chunks/assets/font_e779b8eb02459501c81f841e.woff2')format("woff");}.ff5_c00125{font-family:ff5_c00125;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00125;src:url('chunks/assets/font_1f07ab213a93abcaf80d1962.woff2')format("woff");}.ff6_c00125{font-family:ff6_c00125;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00125;src:url('chunks/assets/font_7ec9216b874ee4d9fda3284d.woff2')format("woff");}.ff7_c00125{font-family:ff7_c00125;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00125;src:url('chunks/assets/font_7b6f1a2232e067096726c6fc.woff2')format("woff");}.ff8_c00125{font-family:ff8_c00125;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00125;src:url('chunks/assets/font_341f94b9676bc51ec383f76c.woff2')format("woff");}.ff9_c00125{font-family:ff9_c00125;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00125;src:url('chunks/assets/font_b0fd7de9bcd1bc972b980de9.woff2')format("woff");}.ffa_c00125{font-family:ffa_c00125;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:ffb_c00125;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ffb_c00125{font-family:ffb_c00125;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00125{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00125{vertical-align:-1.800000px;}
.v0_c00125{vertical-align:0.000000px;}
.ls6_c00125{letter-spacing:0.000000px;}
.ls1_c00125{letter-spacing:0.900000px;}
.ls5_c00125{letter-spacing:1.080000px;}
.ls0_c00125{letter-spacing:3.000000px;}
.ls2_c00125{letter-spacing:6.000000px;}
.ls3_c00125{letter-spacing:6.240000px;}
.ls4_c00125{letter-spacing:8.184000px;}
.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;}
}
.ws4_c00125{word-spacing:-39.399000px;}
.ws3_c00125{word-spacing:-21.300000px;}
.ws2_c00125{word-spacing:-18.060000px;}
.ws5_c00125{word-spacing:-17.340000px;}
.ws0_c00125{word-spacing:-14.427000px;}
.ws1_c00125{word-spacing:-14.160000px;}
.ws8_c00125{word-spacing:-4.320000px;}
.ws7_c00125{word-spacing:-0.090000px;}
.ws9_c00125{word-spacing:0.000000px;}
.ws6_c00125{word-spacing:5.544000px;}
._20_c00125{margin-left:-15.639000px;}
._1c_c00125{margin-left:-13.989000px;}
._0_c00125{margin-left:-12.537000px;}
._1d_c00125{margin-left:-11.277000px;}
._1f_c00125{margin-left:-9.078000px;}
._f_c00125{margin-left:-7.494000px;}
._a_c00125{margin-left:-6.489000px;}
._7_c00125{margin-left:-4.536000px;}
._5_c00125{margin-left:-3.150000px;}
._6_c00125{margin-left:-1.260000px;}
._2_c00125{width:1.638000px;}
._3_c00125{width:3.339000px;}
._c_c00125{width:4.473000px;}
._14_c00125{width:5.478000px;}
._4_c00125{width:6.804000px;}
._b_c00125{width:8.448000px;}
._9_c00125{width:10.458000px;}
._10_c00125{width:11.529000px;}
._8_c00125{width:14.175000px;}
._16_c00125{width:16.320000px;}
._19_c00125{width:17.766000px;}
._12_c00125{width:20.286000px;}
._1a_c00125{width:21.357000px;}
._13_c00125{width:22.680000px;}
._11_c00125{width:25.389000px;}
._1e_c00125{width:27.201000px;}
._d_c00125{width:28.503000px;}
._18_c00125{width:30.933000px;}
._17_c00125{width:32.508000px;}
._1b_c00125{width:35.028000px;}
._e_c00125{width:64.395000px;}
._15_c00125{width:101.484000px;}
._1_c00125{width:236.817000px;}
._21_c00125{width:674.190000px;}
.fc2_c00125{color:transparent;}
.fc1_c00125{color:rgb(128,128,128);}
.fc0_c00125{color:rgb(0,0,0);}
.fs5_c00125{font-size:48.000000px;}
.fs4_c00125{font-size:51.000000px;}
.fs1_c00125{font-size:57.000000px;}
.fs2_c00125{font-size:60.000000px;}
.fs0_c00125{font-size:63.000000px;}
.fs3_c00125{font-size:69.000000px;}
.fs6_c00125{font-size:72.000000px;}
.fs7_c00125{font-size:90.000000px;}
.y0_c00125{bottom:0.000000px;}
.y46_c00125{bottom:3.105000px;}
.y45_c00125{bottom:7.228355px;}
.y44_c00125{bottom:41.385000px;}
.y43_c00125{bottom:113.085000px;}
.y21_c00125{bottom:206.085000px;}
.y42_c00125{bottom:224.685000px;}
.y20_c00125{bottom:225.435000px;}
.y41_c00125{bottom:242.235000px;}
.y1f_c00125{bottom:243.285000px;}
.y40_c00125{bottom:260.835000px;}
.y1e_c00125{bottom:261.435000px;}
.y3f_c00125{bottom:278.985000px;}
.y1d_c00125{bottom:279.135000px;}
.y3e_c00125{bottom:297.285000px;}
.y1c_c00125{bottom:298.035000px;}
.y3d_c00125{bottom:315.135000px;}
.y1b_c00125{bottom:315.435000px;}
.y3c_c00125{bottom:333.135000px;}
.y1a_c00125{bottom:334.035000px;}
.y3b_c00125{bottom:351.885000px;}
.y19_c00125{bottom:352.635000px;}
.y3a_c00125{bottom:369.585000px;}
.y18_c00125{bottom:369.885000px;}
.y39_c00125{bottom:387.435000px;}
.y17_c00125{bottom:388.485000px;}
.y38_c00125{bottom:406.035000px;}
.y16_c00125{bottom:407.235000px;}
.y37_c00125{bottom:423.435000px;}
.y15_c00125{bottom:424.785000px;}
.y36_c00125{bottom:442.035000px;}
.y14_c00125{bottom:442.335000px;}
.y35_c00125{bottom:460.635000px;}
.y13_c00125{bottom:461.235000px;}
.y34_c00125{bottom:478.185000px;}
.y12_c00125{bottom:480.135000px;}
.y33_c00125{bottom:496.785000px;}
.y11_c00125{bottom:497.685000px;}
.y32_c00125{bottom:514.935000px;}
.y10_c00125{bottom:515.685000px;}
.y31_c00125{bottom:532.185000px;}
.yf_c00125{bottom:534.285000px;}
.y30_c00125{bottom:551.385000px;}
.ye_c00125{bottom:552.735000px;}
.y2f_c00125{bottom:568.635000px;}
.yd_c00125{bottom:571.335000px;}
.y2e_c00125{bottom:586.935000px;}
.yc_c00125{bottom:589.185000px;}
.y2d_c00125{bottom:604.035000px;}
.yb_c00125{bottom:607.035000px;}
.y2c_c00125{bottom:623.385000px;}
.ya_c00125{bottom:624.735000px;}
.y2b_c00125{bottom:641.835000px;}
.y9_c00125{bottom:643.185000px;}
.y2a_c00125{bottom:659.685000px;}
.y8_c00125{bottom:661.485000px;}
.y29_c00125{bottom:677.985000px;}
.y7_c00125{bottom:680.085000px;}
.y28_c00125{bottom:696.135000px;}
.y6_c00125{bottom:698.235000px;}
.y27_c00125{bottom:713.835000px;}
.y5_c00125{bottom:717.135000px;}
.y26_c00125{bottom:732.735000px;}
.y4_c00125{bottom:734.685000px;}
.y25_c00125{bottom:750.285000px;}
.y3_c00125{bottom:752.835000px;}
.y24_c00125{bottom:768.735000px;}
.y2_c00125{bottom:770.535000px;}
.y23_c00125{bottom:787.335000px;}
.y1_c00125{bottom:788.385000px;}
.y22_c00125{bottom:807.885000px;}
.h7_c00125{height:13.200074px;}
.h8_c00125{height:43.804688px;}
.h5_c00125{height:62.880000px;}
.h2_c00125{height:66.024000px;}
.h3_c00125{height:72.312000px;}
.h4_c00125{height:73.623000px;}
.h6_c00125{height:92.067187px;}
.h1_c00125{height:846.750000px;}
.h0_c00125{height:846.975000px;}
.w2_c00125{width:104.875500px;}
.w0_c00125{width:581.850000px;}
.w1_c00125{width:582.000000px;}
.x0_c00125{left:0.000000px;}
.x4_c00125{left:45.600000px;}
.x1_c00125{left:101.700000px;}
.x5_c00125{left:107.700000px;}
.x3_c00125{left:109.650000px;}
.x2_c00125{left:134.400000px;}
.xd_c00125{left:187.200000px;}
.xf_c00125{left:242.739258px;}
.xa_c00125{left:324.900000px;}
.x9_c00125{left:326.250000px;}
.x8_c00125{left:327.300000px;}
.x7_c00125{left:328.350000px;}
.x6_c00125{left:333.900000px;}
.xb_c00125{left:337.500000px;}
.xc_c00125{left:354.750000px;}
.xe_c00125{left:473.400000px;}
@media print{
.v1_c00125{vertical-align:-1.600000pt;}
.v0_c00125{vertical-align:0.000000pt;}
.ls6_c00125{letter-spacing:0.000000pt;}
.ls1_c00125{letter-spacing:0.800000pt;}
.ls5_c00125{letter-spacing:0.960000pt;}
.ls0_c00125{letter-spacing:2.666667pt;}
.ls2_c00125{letter-spacing:5.333333pt;}
.ls3_c00125{letter-spacing:5.546667pt;}
.ls4_c00125{letter-spacing:7.274667pt;}
.ws4_c00125{word-spacing:-35.021333pt;}
.ws3_c00125{word-spacing:-18.933333pt;}
.ws2_c00125{word-spacing:-16.053333pt;}
.ws5_c00125{word-spacing:-15.413333pt;}
.ws0_c00125{word-spacing:-12.824000pt;}
.ws1_c00125{word-spacing:-12.586667pt;}
.ws8_c00125{word-spacing:-3.840000pt;}
.ws7_c00125{word-spacing:-0.080000pt;}
.ws9_c00125{word-spacing:0.000000pt;}
.ws6_c00125{word-spacing:4.928000pt;}
._20_c00125{margin-left:-13.901333pt;}
._1c_c00125{margin-left:-12.434667pt;}
._0_c00125{margin-left:-11.144000pt;}
._1d_c00125{margin-left:-10.024000pt;}
._1f_c00125{margin-left:-8.069333pt;}
._f_c00125{margin-left:-6.661333pt;}
._a_c00125{margin-left:-5.768000pt;}
._7_c00125{margin-left:-4.032000pt;}
._5_c00125{margin-left:-2.800000pt;}
._6_c00125{margin-left:-1.120000pt;}
._2_c00125{width:1.456000pt;}
._3_c00125{width:2.968000pt;}
._c_c00125{width:3.976000pt;}
._14_c00125{width:4.869333pt;}
._4_c00125{width:6.048000pt;}
._b_c00125{width:7.509333pt;}
._9_c00125{width:9.296000pt;}
._10_c00125{width:10.248000pt;}
._8_c00125{width:12.600000pt;}
._16_c00125{width:14.506667pt;}
._19_c00125{width:15.792000pt;}
._12_c00125{width:18.032000pt;}
._1a_c00125{width:18.984000pt;}
._13_c00125{width:20.160000pt;}
._11_c00125{width:22.568000pt;}
._1e_c00125{width:24.178667pt;}
._d_c00125{width:25.336000pt;}
._18_c00125{width:27.496000pt;}
._17_c00125{width:28.896000pt;}
._1b_c00125{width:31.136000pt;}
._e_c00125{width:57.240000pt;}
._15_c00125{width:90.208000pt;}
._1_c00125{width:210.504000pt;}
._21_c00125{width:599.280000pt;}
.fs5_c00125{font-size:42.666667pt;}
.fs4_c00125{font-size:45.333333pt;}
.fs1_c00125{font-size:50.666667pt;}
.fs2_c00125{font-size:53.333333pt;}
.fs0_c00125{font-size:56.000000pt;}
.fs3_c00125{font-size:61.333333pt;}
.fs6_c00125{font-size:64.000000pt;}
.fs7_c00125{font-size:80.000000pt;}
.y0_c00125{bottom:0.000000pt;}
.y46_c00125{bottom:2.760000pt;}
.y45_c00125{bottom:6.425204pt;}
.y44_c00125{bottom:36.786667pt;}
.y43_c00125{bottom:100.520000pt;}
.y21_c00125{bottom:183.186667pt;}
.y42_c00125{bottom:199.720000pt;}
.y20_c00125{bottom:200.386667pt;}
.y41_c00125{bottom:215.320000pt;}
.y1f_c00125{bottom:216.253333pt;}
.y40_c00125{bottom:231.853333pt;}
.y1e_c00125{bottom:232.386667pt;}
.y3f_c00125{bottom:247.986667pt;}
.y1d_c00125{bottom:248.120000pt;}
.y3e_c00125{bottom:264.253333pt;}
.y1c_c00125{bottom:264.920000pt;}
.y3d_c00125{bottom:280.120000pt;}
.y1b_c00125{bottom:280.386667pt;}
.y3c_c00125{bottom:296.120000pt;}
.y1a_c00125{bottom:296.920000pt;}
.y3b_c00125{bottom:312.786667pt;}
.y19_c00125{bottom:313.453333pt;}
.y3a_c00125{bottom:328.520000pt;}
.y18_c00125{bottom:328.786667pt;}
.y39_c00125{bottom:344.386667pt;}
.y17_c00125{bottom:345.320000pt;}
.y38_c00125{bottom:360.920000pt;}
.y16_c00125{bottom:361.986667pt;}
.y37_c00125{bottom:376.386667pt;}
.y15_c00125{bottom:377.586667pt;}
.y36_c00125{bottom:392.920000pt;}
.y14_c00125{bottom:393.186667pt;}
.y35_c00125{bottom:409.453333pt;}
.y13_c00125{bottom:409.986667pt;}
.y34_c00125{bottom:425.053333pt;}
.y12_c00125{bottom:426.786667pt;}
.y33_c00125{bottom:441.586667pt;}
.y11_c00125{bottom:442.386667pt;}
.y32_c00125{bottom:457.720000pt;}
.y10_c00125{bottom:458.386667pt;}
.y31_c00125{bottom:473.053333pt;}
.yf_c00125{bottom:474.920000pt;}
.y30_c00125{bottom:490.120000pt;}
.ye_c00125{bottom:491.320000pt;}
.y2f_c00125{bottom:505.453333pt;}
.yd_c00125{bottom:507.853333pt;}
.y2e_c00125{bottom:521.720000pt;}
.yc_c00125{bottom:523.720000pt;}
.y2d_c00125{bottom:536.920000pt;}
.yb_c00125{bottom:539.586667pt;}
.y2c_c00125{bottom:554.120000pt;}
.ya_c00125{bottom:555.320000pt;}
.y2b_c00125{bottom:570.520000pt;}
.y9_c00125{bottom:571.720000pt;}
.y2a_c00125{bottom:586.386667pt;}
.y8_c00125{bottom:587.986667pt;}
.y29_c00125{bottom:602.653333pt;}
.y7_c00125{bottom:604.520000pt;}
.y28_c00125{bottom:618.786667pt;}
.y6_c00125{bottom:620.653333pt;}
.y27_c00125{bottom:634.520000pt;}
.y5_c00125{bottom:637.453333pt;}
.y26_c00125{bottom:651.320000pt;}
.y4_c00125{bottom:653.053333pt;}
.y25_c00125{bottom:666.920000pt;}
.y3_c00125{bottom:669.186667pt;}
.y24_c00125{bottom:683.320000pt;}
.y2_c00125{bottom:684.920000pt;}
.y23_c00125{bottom:699.853333pt;}
.y1_c00125{bottom:700.786667pt;}
.y22_c00125{bottom:718.120000pt;}
.h7_c00125{height:11.733399pt;}
.h8_c00125{height:38.937500pt;}
.h5_c00125{height:55.893333pt;}
.h2_c00125{height:58.688000pt;}
.h3_c00125{height:64.277333pt;}
.h4_c00125{height:65.442667pt;}
.h6_c00125{height:81.837500pt;}
.h1_c00125{height:752.666667pt;}
.h0_c00125{height:752.866667pt;}
.w2_c00125{width:93.222667pt;}
.w0_c00125{width:517.200000pt;}
.w1_c00125{width:517.333333pt;}
.x0_c00125{left:0.000000pt;}
.x4_c00125{left:40.533333pt;}
.x1_c00125{left:90.400000pt;}
.x5_c00125{left:95.733333pt;}
.x3_c00125{left:97.466667pt;}
.x2_c00125{left:119.466667pt;}
.xd_c00125{left:166.400000pt;}
.xf_c00125{left:215.768229pt;}
.xa_c00125{left:288.800000pt;}
.x9_c00125{left:290.000000pt;}
.x8_c00125{left:290.933333pt;}
.x7_c00125{left:291.866667pt;}
.x6_c00125{left:296.800000pt;}
.xb_c00125{left:300.000000pt;}
.xc_c00125{left:315.333333pt;}
.xe_c00125{left:420.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_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_3971d8f96d017105a3de7907.woff2')format("woff");}.ff1_c00126{font-family:ff1_c00126;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00126;src:url('chunks/assets/font_812fbdfb910eaf30f36638cf.woff2')format("woff");}.ff2_c00126{font-family:ff2_c00126;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00126;src:url('chunks/assets/font_e7aee10967fdfb18d15e4e00.woff2')format("woff");}.ff3_c00126{font-family:ff3_c00126;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00126;src:url('chunks/assets/font_a6cff1070b5cbb71a8c3101a.woff2')format("woff");}.ff4_c00126{font-family:ff4_c00126;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00126;src:url('chunks/assets/font_6c796665770b8a9d855f99f6.woff2')format("woff");}.ff5_c00126{font-family:ff5_c00126;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00126;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff6_c00126{font-family:ff6_c00126;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00126{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00126{vertical-align:0.000000px;}
.ls2_c00126{letter-spacing:0.000000px;}
.ls0_c00126{letter-spacing:3.000000px;}
.ls1_c00126{letter-spacing:16.740000px;}
.ls3_c00126{letter-spacing:24.000000px;}
.sc__c00126{text-shadow:none;}
.sc0_c00126{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00126{-webkit-text-stroke:0px transparent;}
.sc0_c00126{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00126{word-spacing:-30.540000px;}
.ws2_c00126{word-spacing:-25.095000px;}
.ws0_c00126{word-spacing:-17.340000px;}
.ws3_c00126{word-spacing:-16.491000px;}
.ws4_c00126{word-spacing:0.000000px;}
._11_c00126{margin-left:-32.130000px;}
._12_c00126{margin-left:-28.875000px;}
._6_c00126{margin-left:-22.020000px;}
._14_c00126{margin-left:-19.530000px;}
._15_c00126{margin-left:-16.170000px;}
._20_c00126{margin-left:-11.070000px;}
._17_c00126{margin-left:-7.665000px;}
._1c_c00126{margin-left:-6.612000px;}
._4_c00126{margin-left:-5.520000px;}
._1_c00126{margin-left:-4.080000px;}
._3_c00126{margin-left:-2.640000px;}
._16_c00126{margin-left:-1.575000px;}
._18_c00126{width:1.218000px;}
._5_c00126{width:2.640000px;}
._19_c00126{width:4.026000px;}
._0_c00126{width:5.280000px;}
._1b_c00126{width:7.275000px;}
._1d_c00126{width:8.310000px;}
._7_c00126{width:9.765000px;}
._8_c00126{width:10.920000px;}
._9_c00126{width:12.390000px;}
._b_c00126{width:13.965000px;}
._a_c00126{width:15.225000px;}
._21_c00126{width:16.260000px;}
._23_c00126{width:18.465000px;}
._22_c00126{width:20.109000px;}
._13_c00126{width:23.520000px;}
._2_c00126{width:25.140000px;}
._1f_c00126{width:26.787000px;}
._d_c00126{width:28.980000px;}
._10_c00126{width:31.920000px;}
._e_c00126{width:33.600000px;}
._f_c00126{width:35.175000px;}
._1e_c00126{width:36.732000px;}
._c_c00126{width:78.225000px;}
._1a_c00126{width:431.115000px;}
.fc2_c00126{color:transparent;}
.fc1_c00126{color:rgb(128,128,128);}
.fc0_c00126{color:rgb(0,0,0);}
.fs4_c00126{font-size:48.000000px;}
.fs2_c00126{font-size:54.000000px;}
.fs0_c00126{font-size:60.000000px;}
.fs3_c00126{font-size:69.000000px;}
.fs1_c00126{font-size:105.000000px;}
.y0_c00126{bottom:0.000000px;}
.y28_c00126{bottom:3.105000px;}
.y27_c00126{bottom:7.228363px;}
.y26_c00126{bottom:35.850000px;}
.y25_c00126{bottom:54.900000px;}
.y24_c00126{bottom:73.200000px;}
.y23_c00126{bottom:91.800000px;}
.y22_c00126{bottom:109.350000px;}
.y21_c00126{bottom:127.950000px;}
.y20_c00126{bottom:145.800000px;}
.y1f_c00126{bottom:164.100000px;}
.y1e_c00126{bottom:182.850000px;}
.y1d_c00126{bottom:200.550000px;}
.y1c_c00126{bottom:218.700000px;}
.y1b_c00126{bottom:235.650000px;}
.y1a_c00126{bottom:255.150000px;}
.y19_c00126{bottom:273.000000px;}
.y18_c00126{bottom:290.850000px;}
.y17_c00126{bottom:309.450000px;}
.y16_c00126{bottom:327.000000px;}
.y15_c00126{bottom:345.600000px;}
.y14_c00126{bottom:363.600000px;}
.y13_c00126{bottom:381.750000px;}
.y12_c00126{bottom:399.600000px;}
.y11_c00126{bottom:417.600000px;}
.y10_c00126{bottom:435.750000px;}
.yf_c00126{bottom:453.600000px;}
.ye_c00126{bottom:471.150000px;}
.yd_c00126{bottom:489.750000px;}
.yc_c00126{bottom:507.600000px;}
.yb_c00126{bottom:525.450000px;}
.ya_c00126{bottom:543.750000px;}
.y9_c00126{bottom:561.900000px;}
.y8_c00126{bottom:579.900000px;}
.y7_c00126{bottom:597.750000px;}
.y6_c00126{bottom:648.300000px;}
.y5_c00126{bottom:687.900000px;}
.y4_c00126{bottom:719.250000px;}
.y3_c00126{bottom:750.300000px;}
.y2_c00126{bottom:780.300000px;}
.y1_c00126{bottom:796.500000px;}
.h6_c00126{height:13.200074px;}
.h7_c00126{height:43.804688px;}
.h2_c00126{height:62.880000px;}
.h5_c00126{height:72.312000px;}
.h4_c00126{height:73.623000px;}
.h3_c00126{height:110.040000px;}
.h0_c00126{height:831.600000px;}
.h1_c00126{height:831.750000px;}
.w2_c00126{width:104.875500px;}
.w0_c00126{width:577.275000px;}
.w1_c00126{width:577.500000px;}
.x0_c00126{left:0.000000px;}
.xa_c00126{left:73.950000px;}
.xc_c00126{left:75.000000px;}
.xb_c00126{left:76.200000px;}
.x3_c00126{left:95.400000px;}
.x6_c00126{left:110.400000px;}
.x4_c00126{left:162.900000px;}
.x7_c00126{left:180.600000px;}
.x9_c00126{left:189.600000px;}
.x8_c00126{left:191.400000px;}
.x5_c00126{left:211.500000px;}
.xe_c00126{left:240.451767px;}
.x2_c00126{left:406.050000px;}
.xd_c00126{left:460.650000px;}
.x1_c00126{left:463.950000px;}
@media print{
.v0_c00126{vertical-align:0.000000pt;}
.ls2_c00126{letter-spacing:0.000000pt;}
.ls0_c00126{letter-spacing:2.666667pt;}
.ls1_c00126{letter-spacing:14.880000pt;}
.ls3_c00126{letter-spacing:21.333333pt;}
.ws1_c00126{word-spacing:-27.146667pt;}
.ws2_c00126{word-spacing:-22.306667pt;}
.ws0_c00126{word-spacing:-15.413333pt;}
.ws3_c00126{word-spacing:-14.658667pt;}
.ws4_c00126{word-spacing:0.000000pt;}
._11_c00126{margin-left:-28.560000pt;}
._12_c00126{margin-left:-25.666667pt;}
._6_c00126{margin-left:-19.573333pt;}
._14_c00126{margin-left:-17.360000pt;}
._15_c00126{margin-left:-14.373333pt;}
._20_c00126{margin-left:-9.840000pt;}
._17_c00126{margin-left:-6.813333pt;}
._1c_c00126{margin-left:-5.877333pt;}
._4_c00126{margin-left:-4.906667pt;}
._1_c00126{margin-left:-3.626667pt;}
._3_c00126{margin-left:-2.346667pt;}
._16_c00126{margin-left:-1.400000pt;}
._18_c00126{width:1.082667pt;}
._5_c00126{width:2.346667pt;}
._19_c00126{width:3.578667pt;}
._0_c00126{width:4.693333pt;}
._1b_c00126{width:6.466667pt;}
._1d_c00126{width:7.386667pt;}
._7_c00126{width:8.680000pt;}
._8_c00126{width:9.706667pt;}
._9_c00126{width:11.013333pt;}
._b_c00126{width:12.413333pt;}
._a_c00126{width:13.533333pt;}
._21_c00126{width:14.453333pt;}
._23_c00126{width:16.413333pt;}
._22_c00126{width:17.874667pt;}
._13_c00126{width:20.906667pt;}
._2_c00126{width:22.346667pt;}
._1f_c00126{width:23.810667pt;}
._d_c00126{width:25.760000pt;}
._10_c00126{width:28.373333pt;}
._e_c00126{width:29.866667pt;}
._f_c00126{width:31.266667pt;}
._1e_c00126{width:32.650667pt;}
._c_c00126{width:69.533333pt;}
._1a_c00126{width:383.213333pt;}
.fs4_c00126{font-size:42.666667pt;}
.fs2_c00126{font-size:48.000000pt;}
.fs0_c00126{font-size:53.333333pt;}
.fs3_c00126{font-size:61.333333pt;}
.fs1_c00126{font-size:93.333333pt;}
.y0_c00126{bottom:0.000000pt;}
.y28_c00126{bottom:2.760000pt;}
.y27_c00126{bottom:6.425212pt;}
.y26_c00126{bottom:31.866667pt;}
.y25_c00126{bottom:48.800000pt;}
.y24_c00126{bottom:65.066667pt;}
.y23_c00126{bottom:81.600000pt;}
.y22_c00126{bottom:97.200000pt;}
.y21_c00126{bottom:113.733333pt;}
.y20_c00126{bottom:129.600000pt;}
.y1f_c00126{bottom:145.866667pt;}
.y1e_c00126{bottom:162.533333pt;}
.y1d_c00126{bottom:178.266667pt;}
.y1c_c00126{bottom:194.400000pt;}
.y1b_c00126{bottom:209.466667pt;}
.y1a_c00126{bottom:226.800000pt;}
.y19_c00126{bottom:242.666667pt;}
.y18_c00126{bottom:258.533333pt;}
.y17_c00126{bottom:275.066667pt;}
.y16_c00126{bottom:290.666667pt;}
.y15_c00126{bottom:307.200000pt;}
.y14_c00126{bottom:323.200000pt;}
.y13_c00126{bottom:339.333333pt;}
.y12_c00126{bottom:355.200000pt;}
.y11_c00126{bottom:371.200000pt;}
.y10_c00126{bottom:387.333333pt;}
.yf_c00126{bottom:403.200000pt;}
.ye_c00126{bottom:418.800000pt;}
.yd_c00126{bottom:435.333333pt;}
.yc_c00126{bottom:451.200000pt;}
.yb_c00126{bottom:467.066667pt;}
.ya_c00126{bottom:483.333333pt;}
.y9_c00126{bottom:499.466667pt;}
.y8_c00126{bottom:515.466667pt;}
.y7_c00126{bottom:531.333333pt;}
.y6_c00126{bottom:576.266667pt;}
.y5_c00126{bottom:611.466667pt;}
.y4_c00126{bottom:639.333333pt;}
.y3_c00126{bottom:666.933333pt;}
.y2_c00126{bottom:693.600000pt;}
.y1_c00126{bottom:708.000000pt;}
.h6_c00126{height:11.733399pt;}
.h7_c00126{height:38.937500pt;}
.h2_c00126{height:55.893333pt;}
.h5_c00126{height:64.277333pt;}
.h4_c00126{height:65.442667pt;}
.h3_c00126{height:97.813333pt;}
.h0_c00126{height:739.200000pt;}
.h1_c00126{height:739.333333pt;}
.w2_c00126{width:93.222667pt;}
.w0_c00126{width:513.133333pt;}
.w1_c00126{width:513.333333pt;}
.x0_c00126{left:0.000000pt;}
.xa_c00126{left:65.733333pt;}
.xc_c00126{left:66.666667pt;}
.xb_c00126{left:67.733333pt;}
.x3_c00126{left:84.800000pt;}
.x6_c00126{left:98.133333pt;}
.x4_c00126{left:144.800000pt;}
.x7_c00126{left:160.533333pt;}
.x9_c00126{left:168.533333pt;}
.x8_c00126{left:170.133333pt;}
.x5_c00126{left:188.000000pt;}
.xe_c00126{left:213.734904pt;}
.x2_c00126{left:360.933333pt;}
.xd_c00126{left:409.466667pt;}
.x1_c00126{left:412.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_0841260890c3821ebddc3d3b.woff2')format("woff");}.ff1_c00127{font-family:ff1_c00127;line-height:1.437000;font-style:normal;font-weight:normal;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_689144bc8c524376f748ec15.woff2')format("woff");}.ff2_c00127{font-family:ff2_c00127;line-height:1.437000;font-style:normal;font-weight:normal;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_97323eca2701fc9517eaa435.woff2')format("woff");}.ff3_c00127{font-family:ff3_c00127;line-height:1.437000;font-style:normal;font-weight:normal;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_e4f5a9da1ddc415d67d9331f.woff2')format("woff");}.ff4_c00127{font-family:ff4_c00127;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00127;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff5_c00127{font-family:ff5_c00127;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00127{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00127{vertical-align:0.000000px;}
.v1_c00127{vertical-align:7.200000px;}
.ls3_c00127{letter-spacing:0.000000px;}
.ls0_c00127{letter-spacing:3.000000px;}
.ls1_c00127{letter-spacing:10.080000px;}
.ls2_c00127{letter-spacing:121.140000px;}
.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:-17.340000px;}
.ws1_c00127{word-spacing:-14.160000px;}
.ws2_c00127{word-spacing:0.000000px;}
._24_c00127{margin-left:-17.880000px;}
._23_c00127{margin-left:-12.960000px;}
._19_c00127{margin-left:-11.700000px;}
._1b_c00127{margin-left:-10.320000px;}
._16_c00127{margin-left:-9.240000px;}
._17_c00127{margin-left:-7.620000px;}
._14_c00127{margin-left:-6.600000px;}
._1a_c00127{margin-left:-5.520000px;}
._13_c00127{margin-left:-4.500000px;}
._9_c00127{margin-left:-3.420000px;}
._a_c00127{margin-left:-1.800000px;}
._b_c00127{width:1.680000px;}
._d_c00127{width:2.940000px;}
._10_c00127{width:4.080000px;}
._f_c00127{width:6.060000px;}
._e_c00127{width:7.740000px;}
._15_c00127{width:9.360000px;}
._11_c00127{width:10.440000px;}
._6_c00127{width:11.640000px;}
._0_c00127{width:13.080000px;}
._31_c00127{width:14.340000px;}
._1_c00127{width:15.480000px;}
._4_c00127{width:18.540000px;}
._3_c00127{width:20.460000px;}
._7_c00127{width:22.020000px;}
._2_c00127{width:23.160000px;}
._1e_c00127{width:24.720000px;}
._2f_c00127{width:25.800000px;}
._8_c00127{width:27.120000px;}
._c_c00127{width:28.320000px;}
._5_c00127{width:30.360000px;}
._21_c00127{width:32.160000px;}
._1f_c00127{width:34.980000px;}
._2b_c00127{width:36.180000px;}
._12_c00127{width:38.100000px;}
._18_c00127{width:50.340000px;}
._1c_c00127{width:53.220000px;}
._27_c00127{width:75.180000px;}
._2c_c00127{width:81.660000px;}
._26_c00127{width:83.100000px;}
._25_c00127{width:85.140000px;}
._1d_c00127{width:88.740000px;}
._2a_c00127{width:93.000000px;}
._29_c00127{width:95.400000px;}
._28_c00127{width:96.840000px;}
._20_c00127{width:99.840000px;}
._22_c00127{width:102.000000px;}
._30_c00127{width:103.560000px;}
._34_c00127{width:106.320000px;}
._35_c00127{width:242.160000px;}
._32_c00127{width:383.880000px;}
._2d_c00127{width:540.360000px;}
._33_c00127{width:669.267000px;}
._2e_c00127{width:694.500000px;}
.fc2_c00127{color:transparent;}
.fc1_c00127{color:rgb(128,128,128);}
.fc0_c00127{color:rgb(0,0,0);}
.fs3_c00127{font-size:48.000000px;}
.fs0_c00127{font-size:60.000000px;}
.fs1_c00127{font-size:63.000000px;}
.fs2_c00127{font-size:72.000000px;}
.y0_c00127{bottom:0.000000px;}
.y2b_c00127{bottom:3.105000px;}
.y2a_c00127{bottom:7.228355px;}
.y29_c00127{bottom:44.235000px;}
.y28_c00127{bottom:62.685000px;}
.y27_c00127{bottom:81.285000px;}
.y26_c00127{bottom:99.435000px;}
.y25_c00127{bottom:117.735000px;}
.y24_c00127{bottom:136.635000px;}
.y23_c00127{bottom:154.785000px;}
.y22_c00127{bottom:172.785000px;}
.y21_c00127{bottom:191.235000px;}
.y20_c00127{bottom:208.485000px;}
.y1f_c00127{bottom:227.685000px;}
.y1e_c00127{bottom:245.985000px;}
.y1d_c00127{bottom:263.835000px;}
.y1c_c00127{bottom:281.385000px;}
.y1b_c00127{bottom:299.385000px;}
.y1a_c00127{bottom:317.835000px;}
.y19_c00127{bottom:335.835000px;}
.y18_c00127{bottom:353.385000px;}
.y17_c00127{bottom:372.135000px;}
.y16_c00127{bottom:389.835000px;}
.y15_c00127{bottom:408.585000px;}
.y14_c00127{bottom:425.835000px;}
.y13_c00127{bottom:442.335000px;}
.y12_c00127{bottom:481.185000px;}
.y11_c00127{bottom:517.335000px;}
.y10_c00127{bottom:534.585000px;}
.yf_c00127{bottom:553.035000px;}
.ye_c00127{bottom:571.935000px;}
.yd_c00127{bottom:589.185000px;}
.yc_c00127{bottom:607.185000px;}
.yb_c00127{bottom:625.035000px;}
.ya_c00127{bottom:643.635000px;}
.y9_c00127{bottom:661.785000px;}
.y8_c00127{bottom:680.385000px;}
.y7_c00127{bottom:698.235000px;}
.y6_c00127{bottom:716.085000px;}
.y5_c00127{bottom:734.085000px;}
.y4_c00127{bottom:752.535000px;}
.y3_c00127{bottom:770.535000px;}
.y2_c00127{bottom:788.985000px;}
.y1_c00127{bottom:809.685000px;}
.h6_c00127{height:13.200074px;}
.h7_c00127{height:43.804688px;}
.h2_c00127{height:62.880000px;}
.h5_c00127{height:66.024000px;}
.h4_c00127{height:70.080000px;}
.h3_c00127{height:75.456000px;}
.h1_c00127{height:841.500000px;}
.h0_c00127{height:841.575000px;}
.w2_c00127{width:104.875500px;}
.w0_c00127{width:581.850000px;}
.w1_c00127{width:582.000000px;}
.x0_c00127{left:0.000000px;}
.x8_c00127{left:109.650000px;}
.x5_c00127{left:111.450000px;}
.x2_c00127{left:113.100000px;}
.x3_c00127{left:114.150000px;}
.x7_c00127{left:115.200000px;}
.x6_c00127{left:154.350000px;}
.x4_c00127{left:205.650000px;}
.x1_c00127{left:226.350000px;}
.xa_c00127{left:242.739258px;}
.x9_c00127{left:491.400000px;}
@media print{
.v0_c00127{vertical-align:0.000000pt;}
.v1_c00127{vertical-align:6.400000pt;}
.ls3_c00127{letter-spacing:0.000000pt;}
.ls0_c00127{letter-spacing:2.666667pt;}
.ls1_c00127{letter-spacing:8.960000pt;}
.ls2_c00127{letter-spacing:107.680000pt;}
.ws0_c00127{word-spacing:-15.413333pt;}
.ws1_c00127{word-spacing:-12.586667pt;}
.ws2_c00127{word-spacing:0.000000pt;}
._24_c00127{margin-left:-15.893333pt;}
._23_c00127{margin-left:-11.520000pt;}
._19_c00127{margin-left:-10.400000pt;}
._1b_c00127{margin-left:-9.173333pt;}
._16_c00127{margin-left:-8.213333pt;}
._17_c00127{margin-left:-6.773333pt;}
._14_c00127{margin-left:-5.866667pt;}
._1a_c00127{margin-left:-4.906667pt;}
._13_c00127{margin-left:-4.000000pt;}
._9_c00127{margin-left:-3.040000pt;}
._a_c00127{margin-left:-1.600000pt;}
._b_c00127{width:1.493333pt;}
._d_c00127{width:2.613333pt;}
._10_c00127{width:3.626667pt;}
._f_c00127{width:5.386667pt;}
._e_c00127{width:6.880000pt;}
._15_c00127{width:8.320000pt;}
._11_c00127{width:9.280000pt;}
._6_c00127{width:10.346667pt;}
._0_c00127{width:11.626667pt;}
._31_c00127{width:12.746667pt;}
._1_c00127{width:13.760000pt;}
._4_c00127{width:16.480000pt;}
._3_c00127{width:18.186667pt;}
._7_c00127{width:19.573333pt;}
._2_c00127{width:20.586667pt;}
._1e_c00127{width:21.973333pt;}
._2f_c00127{width:22.933333pt;}
._8_c00127{width:24.106667pt;}
._c_c00127{width:25.173333pt;}
._5_c00127{width:26.986667pt;}
._21_c00127{width:28.586667pt;}
._1f_c00127{width:31.093333pt;}
._2b_c00127{width:32.160000pt;}
._12_c00127{width:33.866667pt;}
._18_c00127{width:44.746667pt;}
._1c_c00127{width:47.306667pt;}
._27_c00127{width:66.826667pt;}
._2c_c00127{width:72.586667pt;}
._26_c00127{width:73.866667pt;}
._25_c00127{width:75.680000pt;}
._1d_c00127{width:78.880000pt;}
._2a_c00127{width:82.666667pt;}
._29_c00127{width:84.800000pt;}
._28_c00127{width:86.080000pt;}
._20_c00127{width:88.746667pt;}
._22_c00127{width:90.666667pt;}
._30_c00127{width:92.053333pt;}
._34_c00127{width:94.506667pt;}
._35_c00127{width:215.253333pt;}
._32_c00127{width:341.226667pt;}
._2d_c00127{width:480.320000pt;}
._33_c00127{width:594.904000pt;}
._2e_c00127{width:617.333333pt;}
.fs3_c00127{font-size:42.666667pt;}
.fs0_c00127{font-size:53.333333pt;}
.fs1_c00127{font-size:56.000000pt;}
.fs2_c00127{font-size:64.000000pt;}
.y0_c00127{bottom:0.000000pt;}
.y2b_c00127{bottom:2.760000pt;}
.y2a_c00127{bottom:6.425204pt;}
.y29_c00127{bottom:39.320000pt;}
.y28_c00127{bottom:55.720000pt;}
.y27_c00127{bottom:72.253333pt;}
.y26_c00127{bottom:88.386667pt;}
.y25_c00127{bottom:104.653333pt;}
.y24_c00127{bottom:121.453333pt;}
.y23_c00127{bottom:137.586667pt;}
.y22_c00127{bottom:153.586667pt;}
.y21_c00127{bottom:169.986667pt;}
.y20_c00127{bottom:185.320000pt;}
.y1f_c00127{bottom:202.386667pt;}
.y1e_c00127{bottom:218.653333pt;}
.y1d_c00127{bottom:234.520000pt;}
.y1c_c00127{bottom:250.120000pt;}
.y1b_c00127{bottom:266.120000pt;}
.y1a_c00127{bottom:282.520000pt;}
.y19_c00127{bottom:298.520000pt;}
.y18_c00127{bottom:314.120000pt;}
.y17_c00127{bottom:330.786667pt;}
.y16_c00127{bottom:346.520000pt;}
.y15_c00127{bottom:363.186667pt;}
.y14_c00127{bottom:378.520000pt;}
.y13_c00127{bottom:393.186667pt;}
.y12_c00127{bottom:427.720000pt;}
.y11_c00127{bottom:459.853333pt;}
.y10_c00127{bottom:475.186667pt;}
.yf_c00127{bottom:491.586667pt;}
.ye_c00127{bottom:508.386667pt;}
.yd_c00127{bottom:523.720000pt;}
.yc_c00127{bottom:539.720000pt;}
.yb_c00127{bottom:555.586667pt;}
.ya_c00127{bottom:572.120000pt;}
.y9_c00127{bottom:588.253333pt;}
.y8_c00127{bottom:604.786667pt;}
.y7_c00127{bottom:620.653333pt;}
.y6_c00127{bottom:636.520000pt;}
.y5_c00127{bottom:652.520000pt;}
.y4_c00127{bottom:668.920000pt;}
.y3_c00127{bottom:684.920000pt;}
.y2_c00127{bottom:701.320000pt;}
.y1_c00127{bottom:719.720000pt;}
.h6_c00127{height:11.733399pt;}
.h7_c00127{height:38.937500pt;}
.h2_c00127{height:55.893333pt;}
.h5_c00127{height:58.688000pt;}
.h4_c00127{height:62.293333pt;}
.h3_c00127{height:67.072000pt;}
.h1_c00127{height:748.000000pt;}
.h0_c00127{height:748.066667pt;}
.w2_c00127{width:93.222667pt;}
.w0_c00127{width:517.200000pt;}
.w1_c00127{width:517.333333pt;}
.x0_c00127{left:0.000000pt;}
.x8_c00127{left:97.466667pt;}
.x5_c00127{left:99.066667pt;}
.x2_c00127{left:100.533333pt;}
.x3_c00127{left:101.466667pt;}
.x7_c00127{left:102.400000pt;}
.x6_c00127{left:137.200000pt;}
.x4_c00127{left:182.800000pt;}
.x1_c00127{left:201.200000pt;}
.xa_c00127{left:215.768229pt;}
.x9_c00127{left:436.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_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_8f537fc1c09849aa3bdd9beb.woff2')format("woff");}.ff1_c00128{font-family:ff1_c00128;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00128;src:url('chunks/assets/font_1e9591fa3d2da2a9e820fdd9.woff2')format("woff");}.ff2_c00128{font-family:ff2_c00128;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00128;src:url('chunks/assets/font_25a6ead56a78c4c4391352e1.woff2')format("woff");}.ff3_c00128{font-family:ff3_c00128;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00128;src:url('chunks/assets/font_9ba80d4f0059ca88ffeb42c7.woff2')format("woff");}.ff4_c00128{font-family:ff4_c00128;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00128;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff5_c00128{font-family:ff5_c00128;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00128{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00128{vertical-align:0.000000px;}
.ls2_c00128{letter-spacing:0.000000px;}
.ls1_c00128{letter-spacing:0.405000px;}
.ls0_c00128{letter-spacing:3.000000px;}
.sc__c00128{text-shadow:none;}
.sc0_c00128{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00128{-webkit-text-stroke:0px transparent;}
.sc0_c00128{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00128{word-spacing:-29.295000px;}
.ws0_c00128{word-spacing:-14.160000px;}
.ws1_c00128{word-spacing:0.000000px;}
._17_c00128{margin-left:-14.580000px;}
._18_c00128{margin-left:-10.620000px;}
._f_c00128{margin-left:-8.760000px;}
._26_c00128{margin-left:-7.740000px;}
._d_c00128{margin-left:-6.720000px;}
._9_c00128{margin-left:-5.340000px;}
._8_c00128{margin-left:-3.480000px;}
._5_c00128{margin-left:-2.340000px;}
._4_c00128{margin-left:-1.200000px;}
._16_c00128{width:1.440000px;}
._6_c00128{width:3.000000px;}
._19_c00128{width:4.200000px;}
._1d_c00128{width:5.220000px;}
._10_c00128{width:6.660000px;}
._7_c00128{width:7.740000px;}
._1f_c00128{width:8.760000px;}
._1_c00128{width:9.780000px;}
._21_c00128{width:11.520000px;}
._0_c00128{width:12.600000px;}
._11_c00128{width:14.280000px;}
._3_c00128{width:15.360000px;}
._2b_c00128{width:16.407000px;}
._23_c00128{width:17.460000px;}
._b_c00128{width:19.140000px;}
._1b_c00128{width:20.400000px;}
._12_c00128{width:22.200000px;}
._14_c00128{width:23.580000px;}
._c_c00128{width:25.080000px;}
._22_c00128{width:26.340000px;}
._1c_c00128{width:27.360000px;}
._27_c00128{width:29.280000px;}
._15_c00128{width:30.480000px;}
._a_c00128{width:33.240000px;}
._e_c00128{width:35.460000px;}
._28_c00128{width:37.980000px;}
._13_c00128{width:44.040000px;}
._2a_c00128{width:45.501000px;}
._2_c00128{width:46.560000px;}
._29_c00128{width:48.609000px;}
._1e_c00128{width:54.840000px;}
._1a_c00128{width:66.360000px;}
._24_c00128{width:107.160000px;}
._20_c00128{width:138.720000px;}
._2c_c00128{width:223.080000px;}
._25_c00128{width:458.160000px;}
.fc2_c00128{color:transparent;}
.fc1_c00128{color:rgb(128,128,128);}
.fc0_c00128{color:rgb(0,0,0);}
.fs1_c00128{font-size:45.000000px;}
.fs3_c00128{font-size:48.000000px;}
.fs2_c00128{font-size:57.000000px;}
.fs0_c00128{font-size:60.000000px;}
.y0_c00128{bottom:0.000000px;}
.y51_c00128{bottom:3.105000px;}
.y50_c00128{bottom:7.228355px;}
.y4f_c00128{bottom:39.435000px;}
.y4e_c00128{bottom:61.785000px;}
.y2a_c00128{bottom:62.085000px;}
.y4d_c00128{bottom:79.335000px;}
.y29_c00128{bottom:80.535000px;}
.y4c_c00128{bottom:96.135000px;}
.y28_c00128{bottom:98.835000px;}
.y4b_c00128{bottom:114.435000px;}
.y27_c00128{bottom:116.985000px;}
.y4a_c00128{bottom:132.885000px;}
.y26_c00128{bottom:134.535000px;}
.y49_c00128{bottom:151.485000px;}
.y25_c00128{bottom:152.535000px;}
.y48_c00128{bottom:169.635000px;}
.y24_c00128{bottom:170.385000px;}
.y47_c00128{bottom:187.635000px;}
.y23_c00128{bottom:188.235000px;}
.y46_c00128{bottom:205.485000px;}
.y22_c00128{bottom:206.085000px;}
.y45_c00128{bottom:223.335000px;}
.y21_c00128{bottom:224.085000px;}
.y44_c00128{bottom:241.185000px;}
.y20_c00128{bottom:242.685000px;}
.y43_c00128{bottom:258.735000px;}
.y1f_c00128{bottom:260.085000px;}
.y1e_c00128{bottom:276.735000px;}
.y42_c00128{bottom:295.185000px;}
.y1d_c00128{bottom:295.335000px;}
.y41_c00128{bottom:313.185000px;}
.y1c_c00128{bottom:313.485000px;}
.y40_c00128{bottom:330.435000px;}
.y1b_c00128{bottom:331.335000px;}
.y3f_c00128{bottom:348.285000px;}
.y1a_c00128{bottom:349.335000px;}
.y3e_c00128{bottom:366.885000px;}
.y19_c00128{bottom:367.485000px;}
.y18_c00128{bottom:385.335000px;}
.y17_c00128{bottom:402.885000px;}
.y16_c00128{bottom:421.185000px;}
.y15_c00128{bottom:439.035000px;}
.y14_c00128{bottom:456.885000px;}
.y13_c00128{bottom:473.835000px;}
.y3d_c00128{bottom:474.135000px;}
.y12_c00128{bottom:491.385000px;}
.y3c_c00128{bottom:492.435000px;}
.y11_c00128{bottom:509.235000px;}
.y3b_c00128{bottom:510.585000px;}
.y10_c00128{bottom:527.385000px;}
.y3a_c00128{bottom:529.185000px;}
.yf_c00128{bottom:545.085000px;}
.y39_c00128{bottom:546.435000px;}
.ye_c00128{bottom:562.935000px;}
.y38_c00128{bottom:564.885000px;}
.yd_c00128{bottom:580.485000px;}
.y37_c00128{bottom:582.435000px;}
.yc_c00128{bottom:598.935000px;}
.y36_c00128{bottom:600.435000px;}
.yb_c00128{bottom:616.485000px;}
.y35_c00128{bottom:618.285000px;}
.ya_c00128{bottom:635.085000px;}
.y34_c00128{bottom:636.435000px;}
.y9_c00128{bottom:652.035000px;}
.y33_c00128{bottom:653.385000px;}
.y8_c00128{bottom:670.485000px;}
.y32_c00128{bottom:672.585000px;}
.y7_c00128{bottom:687.735000px;}
.y31_c00128{bottom:690.435000px;}
.y6_c00128{bottom:706.035000px;}
.y30_c00128{bottom:708.435000px;}
.y5_c00128{bottom:724.185000px;}
.y2f_c00128{bottom:726.585000px;}
.y4_c00128{bottom:741.735000px;}
.y2e_c00128{bottom:745.185000px;}
.y3_c00128{bottom:759.735000px;}
.y2d_c00128{bottom:762.735000px;}
.y2_c00128{bottom:778.185000px;}
.y2c_c00128{bottom:780.585000px;}
.y1_c00128{bottom:798.135000px;}
.y2b_c00128{bottom:799.485000px;}
.h4_c00128{height:13.200074px;}
.h5_c00128{height:43.804688px;}
.h3_c00128{height:59.736000px;}
.h2_c00128{height:62.880000px;}
.h0_c00128{height:837.525000px;}
.h1_c00128{height:837.750000px;}
.w2_c00128{width:104.875500px;}
.w1_c00128{width:581.250000px;}
.w0_c00128{width:581.550000px;}
.x0_c00128{left:0.000000px;}
.x4_c00128{left:12.450000px;}
.x8_c00128{left:13.800000px;}
.xa_c00128{left:52.650000px;}
.x6_c00128{left:70.500000px;}
.x9_c00128{left:71.550000px;}
.x2_c00128{left:72.600000px;}
.x3_c00128{left:73.950000px;}
.x5_c00128{left:75.150000px;}
.x7_c00128{left:100.950000px;}
.x1_c00128{left:210.150000px;}
.x16_c00128{left:242.589249px;}
.x13_c00128{left:282.450000px;}
.x14_c00128{left:286.500000px;}
.x10_c00128{left:287.850000px;}
.x11_c00128{left:288.900000px;}
.xb_c00128{left:289.950000px;}
.xe_c00128{left:291.600000px;}
.xd_c00128{left:292.650000px;}
.xc_c00128{left:293.700000px;}
.xf_c00128{left:305.400000px;}
.x12_c00128{left:370.350000px;}
.x15_c00128{left:391.200000px;}
@media print{
.v0_c00128{vertical-align:0.000000pt;}
.ls2_c00128{letter-spacing:0.000000pt;}
.ls1_c00128{letter-spacing:0.360000pt;}
.ls0_c00128{letter-spacing:2.666667pt;}
.ws2_c00128{word-spacing:-26.040000pt;}
.ws0_c00128{word-spacing:-12.586667pt;}
.ws1_c00128{word-spacing:0.000000pt;}
._17_c00128{margin-left:-12.960000pt;}
._18_c00128{margin-left:-9.440000pt;}
._f_c00128{margin-left:-7.786667pt;}
._26_c00128{margin-left:-6.880000pt;}
._d_c00128{margin-left:-5.973333pt;}
._9_c00128{margin-left:-4.746667pt;}
._8_c00128{margin-left:-3.093333pt;}
._5_c00128{margin-left:-2.080000pt;}
._4_c00128{margin-left:-1.066667pt;}
._16_c00128{width:1.280000pt;}
._6_c00128{width:2.666667pt;}
._19_c00128{width:3.733333pt;}
._1d_c00128{width:4.640000pt;}
._10_c00128{width:5.920000pt;}
._7_c00128{width:6.880000pt;}
._1f_c00128{width:7.786667pt;}
._1_c00128{width:8.693333pt;}
._21_c00128{width:10.240000pt;}
._0_c00128{width:11.200000pt;}
._11_c00128{width:12.693333pt;}
._3_c00128{width:13.653333pt;}
._2b_c00128{width:14.584000pt;}
._23_c00128{width:15.520000pt;}
._b_c00128{width:17.013333pt;}
._1b_c00128{width:18.133333pt;}
._12_c00128{width:19.733333pt;}
._14_c00128{width:20.960000pt;}
._c_c00128{width:22.293333pt;}
._22_c00128{width:23.413333pt;}
._1c_c00128{width:24.320000pt;}
._27_c00128{width:26.026667pt;}
._15_c00128{width:27.093333pt;}
._a_c00128{width:29.546667pt;}
._e_c00128{width:31.520000pt;}
._28_c00128{width:33.760000pt;}
._13_c00128{width:39.146667pt;}
._2a_c00128{width:40.445333pt;}
._2_c00128{width:41.386667pt;}
._29_c00128{width:43.208000pt;}
._1e_c00128{width:48.746667pt;}
._1a_c00128{width:58.986667pt;}
._24_c00128{width:95.253333pt;}
._20_c00128{width:123.306667pt;}
._2c_c00128{width:198.293333pt;}
._25_c00128{width:407.253333pt;}
.fs1_c00128{font-size:40.000000pt;}
.fs3_c00128{font-size:42.666667pt;}
.fs2_c00128{font-size:50.666667pt;}
.fs0_c00128{font-size:53.333333pt;}
.y0_c00128{bottom:0.000000pt;}
.y51_c00128{bottom:2.760000pt;}
.y50_c00128{bottom:6.425204pt;}
.y4f_c00128{bottom:35.053333pt;}
.y4e_c00128{bottom:54.920000pt;}
.y2a_c00128{bottom:55.186667pt;}
.y4d_c00128{bottom:70.520000pt;}
.y29_c00128{bottom:71.586667pt;}
.y4c_c00128{bottom:85.453333pt;}
.y28_c00128{bottom:87.853333pt;}
.y4b_c00128{bottom:101.720000pt;}
.y27_c00128{bottom:103.986667pt;}
.y4a_c00128{bottom:118.120000pt;}
.y26_c00128{bottom:119.586667pt;}
.y49_c00128{bottom:134.653333pt;}
.y25_c00128{bottom:135.586667pt;}
.y48_c00128{bottom:150.786667pt;}
.y24_c00128{bottom:151.453333pt;}
.y47_c00128{bottom:166.786667pt;}
.y23_c00128{bottom:167.320000pt;}
.y46_c00128{bottom:182.653333pt;}
.y22_c00128{bottom:183.186667pt;}
.y45_c00128{bottom:198.520000pt;}
.y21_c00128{bottom:199.186667pt;}
.y44_c00128{bottom:214.386667pt;}
.y20_c00128{bottom:215.720000pt;}
.y43_c00128{bottom:229.986667pt;}
.y1f_c00128{bottom:231.186667pt;}
.y1e_c00128{bottom:245.986667pt;}
.y42_c00128{bottom:262.386667pt;}
.y1d_c00128{bottom:262.520000pt;}
.y41_c00128{bottom:278.386667pt;}
.y1c_c00128{bottom:278.653333pt;}
.y40_c00128{bottom:293.720000pt;}
.y1b_c00128{bottom:294.520000pt;}
.y3f_c00128{bottom:309.586667pt;}
.y1a_c00128{bottom:310.520000pt;}
.y3e_c00128{bottom:326.120000pt;}
.y19_c00128{bottom:326.653333pt;}
.y18_c00128{bottom:342.520000pt;}
.y17_c00128{bottom:358.120000pt;}
.y16_c00128{bottom:374.386667pt;}
.y15_c00128{bottom:390.253333pt;}
.y14_c00128{bottom:406.120000pt;}
.y13_c00128{bottom:421.186667pt;}
.y3d_c00128{bottom:421.453333pt;}
.y12_c00128{bottom:436.786667pt;}
.y3c_c00128{bottom:437.720000pt;}
.y11_c00128{bottom:452.653333pt;}
.y3b_c00128{bottom:453.853333pt;}
.y10_c00128{bottom:468.786667pt;}
.y3a_c00128{bottom:470.386667pt;}
.yf_c00128{bottom:484.520000pt;}
.y39_c00128{bottom:485.720000pt;}
.ye_c00128{bottom:500.386667pt;}
.y38_c00128{bottom:502.120000pt;}
.yd_c00128{bottom:515.986667pt;}
.y37_c00128{bottom:517.720000pt;}
.yc_c00128{bottom:532.386667pt;}
.y36_c00128{bottom:533.720000pt;}
.yb_c00128{bottom:547.986667pt;}
.y35_c00128{bottom:549.586667pt;}
.ya_c00128{bottom:564.520000pt;}
.y34_c00128{bottom:565.720000pt;}
.y9_c00128{bottom:579.586667pt;}
.y33_c00128{bottom:580.786667pt;}
.y8_c00128{bottom:595.986667pt;}
.y32_c00128{bottom:597.853333pt;}
.y7_c00128{bottom:611.320000pt;}
.y31_c00128{bottom:613.720000pt;}
.y6_c00128{bottom:627.586667pt;}
.y30_c00128{bottom:629.720000pt;}
.y5_c00128{bottom:643.720000pt;}
.y2f_c00128{bottom:645.853333pt;}
.y4_c00128{bottom:659.320000pt;}
.y2e_c00128{bottom:662.386667pt;}
.y3_c00128{bottom:675.320000pt;}
.y2d_c00128{bottom:677.986667pt;}
.y2_c00128{bottom:691.720000pt;}
.y2c_c00128{bottom:693.853333pt;}
.y1_c00128{bottom:709.453333pt;}
.y2b_c00128{bottom:710.653333pt;}
.h4_c00128{height:11.733399pt;}
.h5_c00128{height:38.937500pt;}
.h3_c00128{height:53.098667pt;}
.h2_c00128{height:55.893333pt;}
.h0_c00128{height:744.466667pt;}
.h1_c00128{height:744.666667pt;}
.w2_c00128{width:93.222667pt;}
.w1_c00128{width:516.666667pt;}
.w0_c00128{width:516.933333pt;}
.x0_c00128{left:0.000000pt;}
.x4_c00128{left:11.066667pt;}
.x8_c00128{left:12.266667pt;}
.xa_c00128{left:46.800000pt;}
.x6_c00128{left:62.666667pt;}
.x9_c00128{left:63.600000pt;}
.x2_c00128{left:64.533333pt;}
.x3_c00128{left:65.733333pt;}
.x5_c00128{left:66.800000pt;}
.x7_c00128{left:89.733333pt;}
.x1_c00128{left:186.800000pt;}
.x16_c00128{left:215.634888pt;}
.x13_c00128{left:251.066667pt;}
.x14_c00128{left:254.666667pt;}
.x10_c00128{left:255.866667pt;}
.x11_c00128{left:256.800000pt;}
.xb_c00128{left:257.733333pt;}
.xe_c00128{left:259.200000pt;}
.xd_c00128{left:260.133333pt;}
.xc_c00128{left:261.066667pt;}
.xf_c00128{left:271.466667pt;}
.x12_c00128{left:329.200000pt;}
.x15_c00128{left:347.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_0d007328cb832542fca99150.woff2')format("woff");}.ff1_c00129{font-family:ff1_c00129;line-height:1.437000;font-style:normal;font-weight:normal;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_1a2f71d86de4562b3d9b2de5.woff2')format("woff");}.ff2_c00129{font-family:ff2_c00129;line-height:1.437000;font-style:normal;font-weight:normal;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_15164046931b9f6007519a9c.woff2')format("woff");}.ff3_c00129{font-family:ff3_c00129;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00129;src:url('chunks/assets/font_e70bc5c7246a5847353a5d30.woff2')format("woff");}.ff4_c00129{font-family:ff4_c00129;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00129;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff5_c00129{font-family:ff5_c00129;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00129{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00129{vertical-align:0.000000px;}
.ls2_c00129{letter-spacing:0.000000px;}
.ls1_c00129{letter-spacing:1.800000px;}
.ls0_c00129{letter-spacing:3.000000px;}
.sc__c00129{text-shadow:none;}
.sc0_c00129{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00129{-webkit-text-stroke:0px transparent;}
.sc0_c00129{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00129{word-spacing:-17.340000px;}
.ws0_c00129{word-spacing:-14.160000px;}
.ws2_c00129{word-spacing:0.000000px;}
._30_c00129{margin-left:-16.440000px;}
._20_c00129{margin-left:-14.640000px;}
._29_c00129{margin-left:-13.380000px;}
._2c_c00129{margin-left:-11.880000px;}
._1e_c00129{margin-left:-10.260000px;}
._e_c00129{margin-left:-8.280000px;}
._1b_c00129{margin-left:-6.540000px;}
._f_c00129{margin-left:-5.520000px;}
._a_c00129{margin-left:-3.960000px;}
._0_c00129{margin-left:-2.280000px;}
._d_c00129{margin-left:-1.260000px;}
._9_c00129{width:1.320000px;}
._13_c00129{width:2.640000px;}
._17_c00129{width:3.660000px;}
._16_c00129{width:4.800000px;}
._1d_c00129{width:6.540000px;}
._b_c00129{width:8.100000px;}
._1c_c00129{width:9.120000px;}
._18_c00129{width:10.620000px;}
._12_c00129{width:11.640000px;}
._2_c00129{width:13.080000px;}
._25_c00129{width:14.100000px;}
._3_c00129{width:15.180000px;}
._26_c00129{width:16.320000px;}
._6_c00129{width:18.540000px;}
._5_c00129{width:20.460000px;}
._15_c00129{width:21.780000px;}
._4_c00129{width:22.860000px;}
._8_c00129{width:25.020000px;}
._2f_c00129{width:26.460000px;}
._c_c00129{width:27.960000px;}
._1a_c00129{width:29.520000px;}
._2b_c00129{width:31.800000px;}
._11_c00129{width:33.360000px;}
._10_c00129{width:35.280000px;}
._7_c00129{width:36.660000px;}
._1f_c00129{width:38.400000px;}
._14_c00129{width:40.020000px;}
._21_c00129{width:41.580000px;}
._2a_c00129{width:42.900000px;}
._24_c00129{width:44.160000px;}
._28_c00129{width:45.900000px;}
._2d_c00129{width:47.880000px;}
._2e_c00129{width:50.040000px;}
._19_c00129{width:55.860000px;}
._22_c00129{width:58.260000px;}
._27_c00129{width:68.580000px;}
._23_c00129{width:199.680000px;}
._1_c00129{width:346.800000px;}
.fc2_c00129{color:transparent;}
.fc1_c00129{color:rgb(128,128,128);}
.fc0_c00129{color:rgb(0,0,0);}
.fs2_c00129{font-size:48.000000px;}
.fs0_c00129{font-size:60.000000px;}
.fs1_c00129{font-size:66.000000px;}
.y0_c00129{bottom:0.000000px;}
.y2d_c00129{bottom:3.105000px;}
.y2c_c00129{bottom:7.228355px;}
.y2b_c00129{bottom:41.385000px;}
.y2a_c00129{bottom:61.335000px;}
.y29_c00129{bottom:79.935000px;}
.y28_c00129{bottom:98.085000px;}
.y27_c00129{bottom:115.035000px;}
.y26_c00129{bottom:134.235000px;}
.y25_c00129{bottom:151.785000px;}
.y24_c00129{bottom:170.685000px;}
.y23_c00129{bottom:188.235000px;}
.y22_c00129{bottom:206.535000px;}
.y21_c00129{bottom:225.435000px;}
.y20_c00129{bottom:243.585000px;}
.y1f_c00129{bottom:262.185000px;}
.y1e_c00129{bottom:279.435000px;}
.y1d_c00129{bottom:297.585000px;}
.y1c_c00129{bottom:315.585000px;}
.y1b_c00129{bottom:334.485000px;}
.y1a_c00129{bottom:352.935000px;}
.y19_c00129{bottom:370.485000px;}
.y18_c00129{bottom:389.085000px;}
.y17_c00129{bottom:407.235000px;}
.y16_c00129{bottom:424.935000px;}
.y15_c00129{bottom:442.485000px;}
.y14_c00129{bottom:461.685000px;}
.y13_c00129{bottom:479.835000px;}
.y12_c00129{bottom:497.085000px;}
.y11_c00129{bottom:515.385000px;}
.y10_c00129{bottom:534.135000px;}
.yf_c00129{bottom:552.135000px;}
.ye_c00129{bottom:569.685000px;}
.yd_c00129{bottom:587.835000px;}
.yc_c00129{bottom:607.035000px;}
.yb_c00129{bottom:625.635000px;}
.ya_c00129{bottom:642.885000px;}
.y9_c00129{bottom:661.035000px;}
.y8_c00129{bottom:679.035000px;}
.y7_c00129{bottom:697.485000px;}
.y6_c00129{bottom:715.035000px;}
.y5_c00129{bottom:732.585000px;}
.y4_c00129{bottom:750.885000px;}
.y3_c00129{bottom:769.185000px;}
.y2_c00129{bottom:787.335000px;}
.y1_c00129{bottom:807.285000px;}
.h4_c00129{height:13.200074px;}
.h5_c00129{height:43.804688px;}
.h2_c00129{height:62.880000px;}
.h3_c00129{height:71.544000px;}
.h1_c00129{height:841.500000px;}
.h0_c00129{height:841.575000px;}
.w2_c00129{width:104.875500px;}
.w0_c00129{width:581.850000px;}
.w1_c00129{width:582.000000px;}
.x0_c00129{left:0.000000px;}
.x4_c00129{left:60.150000px;}
.x9_c00129{left:109.350000px;}
.x7_c00129{left:111.150000px;}
.x8_c00129{left:116.100000px;}
.x6_c00129{left:119.100000px;}
.x5_c00129{left:120.450000px;}
.x3_c00129{left:121.800000px;}
.x2_c00129{left:124.650000px;}
.x1_c00129{left:127.200000px;}
.xb_c00129{left:242.739258px;}
.xa_c00129{left:503.550000px;}
@media print{
.v0_c00129{vertical-align:0.000000pt;}
.ls2_c00129{letter-spacing:0.000000pt;}
.ls1_c00129{letter-spacing:1.600000pt;}
.ls0_c00129{letter-spacing:2.666667pt;}
.ws1_c00129{word-spacing:-15.413333pt;}
.ws0_c00129{word-spacing:-12.586667pt;}
.ws2_c00129{word-spacing:0.000000pt;}
._30_c00129{margin-left:-14.613333pt;}
._20_c00129{margin-left:-13.013333pt;}
._29_c00129{margin-left:-11.893333pt;}
._2c_c00129{margin-left:-10.560000pt;}
._1e_c00129{margin-left:-9.120000pt;}
._e_c00129{margin-left:-7.360000pt;}
._1b_c00129{margin-left:-5.813333pt;}
._f_c00129{margin-left:-4.906667pt;}
._a_c00129{margin-left:-3.520000pt;}
._0_c00129{margin-left:-2.026667pt;}
._d_c00129{margin-left:-1.120000pt;}
._9_c00129{width:1.173333pt;}
._13_c00129{width:2.346667pt;}
._17_c00129{width:3.253333pt;}
._16_c00129{width:4.266667pt;}
._1d_c00129{width:5.813333pt;}
._b_c00129{width:7.200000pt;}
._1c_c00129{width:8.106667pt;}
._18_c00129{width:9.440000pt;}
._12_c00129{width:10.346667pt;}
._2_c00129{width:11.626667pt;}
._25_c00129{width:12.533333pt;}
._3_c00129{width:13.493333pt;}
._26_c00129{width:14.506667pt;}
._6_c00129{width:16.480000pt;}
._5_c00129{width:18.186667pt;}
._15_c00129{width:19.360000pt;}
._4_c00129{width:20.320000pt;}
._8_c00129{width:22.240000pt;}
._2f_c00129{width:23.520000pt;}
._c_c00129{width:24.853333pt;}
._1a_c00129{width:26.240000pt;}
._2b_c00129{width:28.266667pt;}
._11_c00129{width:29.653333pt;}
._10_c00129{width:31.360000pt;}
._7_c00129{width:32.586667pt;}
._1f_c00129{width:34.133333pt;}
._14_c00129{width:35.573333pt;}
._21_c00129{width:36.960000pt;}
._2a_c00129{width:38.133333pt;}
._24_c00129{width:39.253333pt;}
._28_c00129{width:40.800000pt;}
._2d_c00129{width:42.560000pt;}
._2e_c00129{width:44.480000pt;}
._19_c00129{width:49.653333pt;}
._22_c00129{width:51.786667pt;}
._27_c00129{width:60.960000pt;}
._23_c00129{width:177.493333pt;}
._1_c00129{width:308.266667pt;}
.fs2_c00129{font-size:42.666667pt;}
.fs0_c00129{font-size:53.333333pt;}
.fs1_c00129{font-size:58.666667pt;}
.y0_c00129{bottom:0.000000pt;}
.y2d_c00129{bottom:2.760000pt;}
.y2c_c00129{bottom:6.425204pt;}
.y2b_c00129{bottom:36.786667pt;}
.y2a_c00129{bottom:54.520000pt;}
.y29_c00129{bottom:71.053333pt;}
.y28_c00129{bottom:87.186667pt;}
.y27_c00129{bottom:102.253333pt;}
.y26_c00129{bottom:119.320000pt;}
.y25_c00129{bottom:134.920000pt;}
.y24_c00129{bottom:151.720000pt;}
.y23_c00129{bottom:167.320000pt;}
.y22_c00129{bottom:183.586667pt;}
.y21_c00129{bottom:200.386667pt;}
.y20_c00129{bottom:216.520000pt;}
.y1f_c00129{bottom:233.053333pt;}
.y1e_c00129{bottom:248.386667pt;}
.y1d_c00129{bottom:264.520000pt;}
.y1c_c00129{bottom:280.520000pt;}
.y1b_c00129{bottom:297.320000pt;}
.y1a_c00129{bottom:313.720000pt;}
.y19_c00129{bottom:329.320000pt;}
.y18_c00129{bottom:345.853333pt;}
.y17_c00129{bottom:361.986667pt;}
.y16_c00129{bottom:377.720000pt;}
.y15_c00129{bottom:393.320000pt;}
.y14_c00129{bottom:410.386667pt;}
.y13_c00129{bottom:426.520000pt;}
.y12_c00129{bottom:441.853333pt;}
.y11_c00129{bottom:458.120000pt;}
.y10_c00129{bottom:474.786667pt;}
.yf_c00129{bottom:490.786667pt;}
.ye_c00129{bottom:506.386667pt;}
.yd_c00129{bottom:522.520000pt;}
.yc_c00129{bottom:539.586667pt;}
.yb_c00129{bottom:556.120000pt;}
.ya_c00129{bottom:571.453333pt;}
.y9_c00129{bottom:587.586667pt;}
.y8_c00129{bottom:603.586667pt;}
.y7_c00129{bottom:619.986667pt;}
.y6_c00129{bottom:635.586667pt;}
.y5_c00129{bottom:651.186667pt;}
.y4_c00129{bottom:667.453333pt;}
.y3_c00129{bottom:683.720000pt;}
.y2_c00129{bottom:699.853333pt;}
.y1_c00129{bottom:717.586667pt;}
.h4_c00129{height:11.733399pt;}
.h5_c00129{height:38.937500pt;}
.h2_c00129{height:55.893333pt;}
.h3_c00129{height:63.594667pt;}
.h1_c00129{height:748.000000pt;}
.h0_c00129{height:748.066667pt;}
.w2_c00129{width:93.222667pt;}
.w0_c00129{width:517.200000pt;}
.w1_c00129{width:517.333333pt;}
.x0_c00129{left:0.000000pt;}
.x4_c00129{left:53.466667pt;}
.x9_c00129{left:97.200000pt;}
.x7_c00129{left:98.800000pt;}
.x8_c00129{left:103.200000pt;}
.x6_c00129{left:105.866667pt;}
.x5_c00129{left:107.066667pt;}
.x3_c00129{left:108.266667pt;}
.x2_c00129{left:110.800000pt;}
.x1_c00129{left:113.066667pt;}
.xb_c00129{left:215.768229pt;}
.xa_c00129{left:447.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_6839e075a778858b278e1472.woff2')format("woff");}.ff1_c00130{font-family:ff1_c00130;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00130;src:url('chunks/assets/font_5198781694c595aed9f1389d.woff2')format("woff");}.ff2_c00130{font-family:ff2_c00130;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00130;src:url('chunks/assets/font_722fb451640676d0b2e58d35.woff2')format("woff");}.ff3_c00130{font-family:ff3_c00130;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00130;src:url('chunks/assets/font_0ce391de997f24f9f9dd37f4.woff2')format("woff");}.ff4_c00130{font-family:ff4_c00130;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00130;src:url('chunks/assets/font_8d787ac6e2290772fc54fc43.woff2')format("woff");}.ff5_c00130{font-family:ff5_c00130;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_c00130;src:url('chunks/assets/font_798425d49bce23c5338c2fef.woff2')format("woff");}.ff6_c00130{font-family:ff6_c00130;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00130;src:url('chunks/assets/font_80798f4c35917b38e5576c72.woff2')format("woff");}.ff7_c00130{font-family:ff7_c00130;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00130;src:url('chunks/assets/font_824a15c9c11ff98e7ef0b783.woff2')format("woff");}.ff8_c00130{font-family:ff8_c00130;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00130;src:url('chunks/assets/font_c3d4b52f3cb20023e721548d.woff2')format("woff");}.ff9_c00130{font-family:ff9_c00130;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00130;src:url('chunks/assets/font_10683ee247a31eab046a8e17.woff2')format("woff");}.ffa_c00130{font-family:ffa_c00130;line-height:1.437000;font-style:normal;font-weight: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_c00130;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ffb_c00130{font-family:ffb_c00130;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00130{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2_c00130{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1_c00130{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.v2_c00130{vertical-align:-1.800000px;}
.v0_c00130{vertical-align:0.000000px;}
.v1_c00130{vertical-align:103.800000px;}
.ls6_c00130{letter-spacing:0.000000px;}
.ls4_c00130{letter-spacing:0.576000px;}
.ls3_c00130{letter-spacing:1.260000px;}
.ls1_c00130{letter-spacing:3.000000px;}
.ls0_c00130{letter-spacing:4.005000px;}
.ls2_c00130{letter-spacing:7.800000px;}
.ls5_c00130{letter-spacing:9.000000px;}
.ls8_c00130{letter-spacing:12.000000px;}
.ls7_c00130{letter-spacing:18.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;}
}
.ws7_c00130{word-spacing:-52.680000px;}
.ws4_c00130{word-spacing:-46.272000px;}
.ws1_c00130{word-spacing:-43.854000px;}
.ws8_c00130{word-spacing:-42.744000px;}
.ws3_c00130{word-spacing:-18.060000px;}
.ws6_c00130{word-spacing:-17.784000px;}
.ws2_c00130{word-spacing:-16.500000px;}
.ws0_c00130{word-spacing:-14.160000px;}
.ws5_c00130{word-spacing:-5.784000px;}
.ws9_c00130{word-spacing:0.000000px;}
._5_c00130{margin-left:-28.050000px;}
._13_c00130{margin-left:-15.345000px;}
._14_c00130{margin-left:-13.878000px;}
._34_c00130{margin-left:-12.876000px;}
._22_c00130{margin-left:-11.523000px;}
._21_c00130{margin-left:-9.942000px;}
._16_c00130{margin-left:-8.448000px;}
._2f_c00130{margin-left:-7.386000px;}
._19_c00130{margin-left:-6.210000px;}
._7_c00130{margin-left:-4.686000px;}
._c_c00130{margin-left:-2.892000px;}
._9_c00130{margin-left:-1.704000px;}
._8_c00130{width:1.926000px;}
._a_c00130{width:2.928000px;}
._3_c00130{width:4.488000px;}
._1f_c00130{width:5.502000px;}
._1_c00130{width:6.534000px;}
._2_c00130{width:7.722000px;}
._d_c00130{width:9.240000px;}
._f_c00130{width:10.608000px;}
._12_c00130{width:12.330000px;}
._e_c00130{width:14.280000px;}
._1b_c00130{width:16.212000px;}
._15_c00130{width:17.556000px;}
._18_c00130{width:19.086000px;}
._3a_c00130{width:20.436000px;}
._10_c00130{width:21.468000px;}
._1a_c00130{width:22.590000px;}
._31_c00130{width:23.691000px;}
._2a_c00130{width:25.824000px;}
._11_c00130{width:27.132000px;}
._1c_c00130{width:28.908000px;}
._17_c00130{width:30.036000px;}
._28_c00130{width:31.278000px;}
._0_c00130{width:33.660000px;}
._39_c00130{width:43.698000px;}
._37_c00130{width:48.786000px;}
._38_c00130{width:54.960000px;}
._b_c00130{width:65.904000px;}
._35_c00130{width:69.816000px;}
._33_c00130{width:74.196000px;}
._1e_c00130{width:75.786000px;}
._24_c00130{width:79.644000px;}
._27_c00130{width:83.202000px;}
._29_c00130{width:85.290000px;}
._2b_c00130{width:87.648000px;}
._23_c00130{width:89.916000px;}
._32_c00130{width:94.497000px;}
._2c_c00130{width:99.114000px;}
._2e_c00130{width:101.301000px;}
._2d_c00130{width:106.590000px;}
._20_c00130{width:112.776000px;}
._26_c00130{width:118.578000px;}
._30_c00130{width:125.874000px;}
._6_c00130{width:139.326000px;}
._25_c00130{width:175.224000px;}
._1d_c00130{width:190.182000px;}
._4_c00130{width:261.426000px;}
._36_c00130{width:365.202000px;}
.fc2_c00130{color:transparent;}
.fc1_c00130{color:rgb(128,128,128);}
.fc0_c00130{color:rgb(0,0,0);}
.fs6_c00130{font-size:24.000000px;}
.fs2_c00130{font-size:45.000000px;}
.fs7_c00130{font-size:48.000000px;}
.fs1_c00130{font-size:60.000000px;}
.fs0_c00130{font-size:66.000000px;}
.fs4_c00130{font-size:81.000000px;}
.fs3_c00130{font-size:93.000000px;}
.fs5_c00130{font-size:192.000000px;}
.y0_c00130{bottom:0.000000px;}
.y40_c00130{bottom:3.105000px;}
.y3f_c00130{bottom:7.228363px;}
.y3e_c00130{bottom:48.600000px;}
.y38_c00130{bottom:51.750000px;}
.y3d_c00130{bottom:66.450000px;}
.y37_c00130{bottom:70.650000px;}
.y3c_c00130{bottom:85.050000px;}
.y36_c00130{bottom:88.350000px;}
.y3b_c00130{bottom:102.600000px;}
.y35_c00130{bottom:106.050000px;}
.y3a_c00130{bottom:120.900000px;}
.y34_c00130{bottom:124.200000px;}
.y39_c00130{bottom:139.050000px;}
.y33_c00130{bottom:142.350000px;}
.y32_c00130{bottom:147.900000px;}
.y31_c00130{bottom:158.400000px;}
.y30_c00130{bottom:177.300000px;}
.y2f_c00130{bottom:194.400000px;}
.y2e_c00130{bottom:212.400000px;}
.y2d_c00130{bottom:230.250000px;}
.y2c_c00130{bottom:249.150000px;}
.y2b_c00130{bottom:267.600000px;}
.y2a_c00130{bottom:285.300000px;}
.y29_c00130{bottom:303.750000px;}
.y28_c00130{bottom:321.750000px;}
.y27_c00130{bottom:339.600000px;}
.y26_c00130{bottom:357.750000px;}
.y25_c00130{bottom:375.600000px;}
.y24_c00130{bottom:394.650000px;}
.y23_c00130{bottom:412.050000px;}
.y22_c00130{bottom:430.350000px;}
.y20_c00130{bottom:440.550000px;}
.y1d_c00130{bottom:446.850000px;}
.y1c_c00130{bottom:447.900000px;}
.y21_c00130{bottom:448.200000px;}
.y1b_c00130{bottom:466.500000px;}
.y1a_c00130{bottom:484.350000px;}
.y1f_c00130{bottom:501.300000px;}
.y19_c00130{bottom:501.900000px;}
.y1e_c00130{bottom:519.150000px;}
.y18_c00130{bottom:520.500000px;}
.y17_c00130{bottom:538.350000px;}
.y16_c00130{bottom:556.200000px;}
.y15_c00130{bottom:574.500000px;}
.y14_c00130{bottom:593.100000px;}
.ya_c00130{bottom:609.150000px;}
.y13_c00130{bottom:611.250000px;}
.y12_c00130{bottom:629.400000px;}
.y9_c00130{bottom:645.000000px;}
.y11_c00130{bottom:647.400000px;}
.y8_c00130{bottom:663.300000px;}
.y10_c00130{bottom:665.550000px;}
.y7_c00130{bottom:681.750000px;}
.yf_c00130{bottom:684.150000px;}
.y6_c00130{bottom:699.600000px;}
.ye_c00130{bottom:702.000000px;}
.y5_c00130{bottom:717.300000px;}
.yd_c00130{bottom:720.300000px;}
.y4_c00130{bottom:736.050000px;}
.yc_c00130{bottom:738.150000px;}
.y3_c00130{bottom:753.750000px;}
.yb_c00130{bottom:756.000000px;}
.y2_c00130{bottom:772.950000px;}
.y1_c00130{bottom:792.000000px;}
.h9_c00130{height:13.200074px;}
.h8_c00130{height:30.386719px;}
.ha_c00130{height:43.804688px;}
.h2_c00130{height:62.880000px;}
.h7_c00130{height:64.020000px;}
.h1_c00130{height:69.168000px;}
.h4_c00130{height:71.544000px;}
.h5_c00130{height:87.804000px;}
.h3_c00130{height:96.996094px;}
.h6_c00130{height:243.093750px;}
.h0_c00130{height:823.500000px;}
.w2_c00130{width:104.875500px;}
.w0_c00130{width:571.875000px;}
.w1_c00130{width:572.250000px;}
.x0_c00130{left:0.000000px;}
.xf_c00130{left:65.850000px;}
.x16_c00130{left:67.800000px;}
.x10_c00130{left:68.850000px;}
.x17_c00130{left:69.900000px;}
.x3_c00130{left:70.950000px;}
.x4_c00130{left:72.000000px;}
.x2_c00130{left:73.500000px;}
.x11_c00130{left:77.700000px;}
.xa_c00130{left:107.250000px;}
.xe_c00130{left:110.700000px;}
.x5_c00130{left:143.100000px;}
.xd_c00130{left:148.950000px;}
.x1_c00130{left:206.100000px;}
.x1a_c00130{left:237.751740px;}
.xb_c00130{left:277.350000px;}
.x9_c00130{left:286.200000px;}
.x8_c00130{left:287.250000px;}
.x6_c00130{left:288.900000px;}
.x18_c00130{left:289.950000px;}
.x19_c00130{left:291.300000px;}
.xc_c00130{left:316.950000px;}
.x7_c00130{left:325.650000px;}
.x12_c00130{left:344.850000px;}
.x13_c00130{left:359.400000px;}
.x14_c00130{left:376.950000px;}
.x15_c00130{left:394.500000px;}
@media print{
.v2_c00130{vertical-align:-1.600000pt;}
.v0_c00130{vertical-align:0.000000pt;}
.v1_c00130{vertical-align:92.266667pt;}
.ls6_c00130{letter-spacing:0.000000pt;}
.ls4_c00130{letter-spacing:0.512000pt;}
.ls3_c00130{letter-spacing:1.120000pt;}
.ls1_c00130{letter-spacing:2.666667pt;}
.ls0_c00130{letter-spacing:3.560000pt;}
.ls2_c00130{letter-spacing:6.933333pt;}
.ls5_c00130{letter-spacing:8.000000pt;}
.ls8_c00130{letter-spacing:10.666667pt;}
.ls7_c00130{letter-spacing:16.000000pt;}
.ws7_c00130{word-spacing:-46.826667pt;}
.ws4_c00130{word-spacing:-41.130667pt;}
.ws1_c00130{word-spacing:-38.981333pt;}
.ws8_c00130{word-spacing:-37.994667pt;}
.ws3_c00130{word-spacing:-16.053333pt;}
.ws6_c00130{word-spacing:-15.808000pt;}
.ws2_c00130{word-spacing:-14.666667pt;}
.ws0_c00130{word-spacing:-12.586667pt;}
.ws5_c00130{word-spacing:-5.141333pt;}
.ws9_c00130{word-spacing:0.000000pt;}
._5_c00130{margin-left:-24.933333pt;}
._13_c00130{margin-left:-13.640000pt;}
._14_c00130{margin-left:-12.336000pt;}
._34_c00130{margin-left:-11.445333pt;}
._22_c00130{margin-left:-10.242667pt;}
._21_c00130{margin-left:-8.837333pt;}
._16_c00130{margin-left:-7.509333pt;}
._2f_c00130{margin-left:-6.565333pt;}
._19_c00130{margin-left:-5.520000pt;}
._7_c00130{margin-left:-4.165333pt;}
._c_c00130{margin-left:-2.570667pt;}
._9_c00130{margin-left:-1.514667pt;}
._8_c00130{width:1.712000pt;}
._a_c00130{width:2.602667pt;}
._3_c00130{width:3.989333pt;}
._1f_c00130{width:4.890667pt;}
._1_c00130{width:5.808000pt;}
._2_c00130{width:6.864000pt;}
._d_c00130{width:8.213333pt;}
._f_c00130{width:9.429333pt;}
._12_c00130{width:10.960000pt;}
._e_c00130{width:12.693333pt;}
._1b_c00130{width:14.410667pt;}
._15_c00130{width:15.605333pt;}
._18_c00130{width:16.965333pt;}
._3a_c00130{width:18.165333pt;}
._10_c00130{width:19.082667pt;}
._1a_c00130{width:20.080000pt;}
._31_c00130{width:21.058667pt;}
._2a_c00130{width:22.954667pt;}
._11_c00130{width:24.117333pt;}
._1c_c00130{width:25.696000pt;}
._17_c00130{width:26.698667pt;}
._28_c00130{width:27.802667pt;}
._0_c00130{width:29.920000pt;}
._39_c00130{width:38.842667pt;}
._37_c00130{width:43.365333pt;}
._38_c00130{width:48.853333pt;}
._b_c00130{width:58.581333pt;}
._35_c00130{width:62.058667pt;}
._33_c00130{width:65.952000pt;}
._1e_c00130{width:67.365333pt;}
._24_c00130{width:70.794667pt;}
._27_c00130{width:73.957333pt;}
._29_c00130{width:75.813333pt;}
._2b_c00130{width:77.909333pt;}
._23_c00130{width:79.925333pt;}
._32_c00130{width:83.997333pt;}
._2c_c00130{width:88.101333pt;}
._2e_c00130{width:90.045333pt;}
._2d_c00130{width:94.746667pt;}
._20_c00130{width:100.245333pt;}
._26_c00130{width:105.402667pt;}
._30_c00130{width:111.888000pt;}
._6_c00130{width:123.845333pt;}
._25_c00130{width:155.754667pt;}
._1d_c00130{width:169.050667pt;}
._4_c00130{width:232.378667pt;}
._36_c00130{width:324.624000pt;}
.fs6_c00130{font-size:21.333333pt;}
.fs2_c00130{font-size:40.000000pt;}
.fs7_c00130{font-size:42.666667pt;}
.fs1_c00130{font-size:53.333333pt;}
.fs0_c00130{font-size:58.666667pt;}
.fs4_c00130{font-size:72.000000pt;}
.fs3_c00130{font-size:82.666667pt;}
.fs5_c00130{font-size:170.666667pt;}
.y0_c00130{bottom:0.000000pt;}
.y40_c00130{bottom:2.760000pt;}
.y3f_c00130{bottom:6.425212pt;}
.y3e_c00130{bottom:43.200000pt;}
.y38_c00130{bottom:46.000000pt;}
.y3d_c00130{bottom:59.066667pt;}
.y37_c00130{bottom:62.800000pt;}
.y3c_c00130{bottom:75.600000pt;}
.y36_c00130{bottom:78.533333pt;}
.y3b_c00130{bottom:91.200000pt;}
.y35_c00130{bottom:94.266667pt;}
.y3a_c00130{bottom:107.466667pt;}
.y34_c00130{bottom:110.400000pt;}
.y39_c00130{bottom:123.600000pt;}
.y33_c00130{bottom:126.533333pt;}
.y32_c00130{bottom:131.466667pt;}
.y31_c00130{bottom:140.800000pt;}
.y30_c00130{bottom:157.600000pt;}
.y2f_c00130{bottom:172.800000pt;}
.y2e_c00130{bottom:188.800000pt;}
.y2d_c00130{bottom:204.666667pt;}
.y2c_c00130{bottom:221.466667pt;}
.y2b_c00130{bottom:237.866667pt;}
.y2a_c00130{bottom:253.600000pt;}
.y29_c00130{bottom:270.000000pt;}
.y28_c00130{bottom:286.000000pt;}
.y27_c00130{bottom:301.866667pt;}
.y26_c00130{bottom:318.000000pt;}
.y25_c00130{bottom:333.866667pt;}
.y24_c00130{bottom:350.800000pt;}
.y23_c00130{bottom:366.266667pt;}
.y22_c00130{bottom:382.533333pt;}
.y20_c00130{bottom:391.600000pt;}
.y1d_c00130{bottom:397.200000pt;}
.y1c_c00130{bottom:398.133333pt;}
.y21_c00130{bottom:398.400000pt;}
.y1b_c00130{bottom:414.666667pt;}
.y1a_c00130{bottom:430.533333pt;}
.y1f_c00130{bottom:445.600000pt;}
.y19_c00130{bottom:446.133333pt;}
.y1e_c00130{bottom:461.466667pt;}
.y18_c00130{bottom:462.666667pt;}
.y17_c00130{bottom:478.533333pt;}
.y16_c00130{bottom:494.400000pt;}
.y15_c00130{bottom:510.666667pt;}
.y14_c00130{bottom:527.200000pt;}
.ya_c00130{bottom:541.466667pt;}
.y13_c00130{bottom:543.333333pt;}
.y12_c00130{bottom:559.466667pt;}
.y9_c00130{bottom:573.333333pt;}
.y11_c00130{bottom:575.466667pt;}
.y8_c00130{bottom:589.600000pt;}
.y10_c00130{bottom:591.600000pt;}
.y7_c00130{bottom:606.000000pt;}
.yf_c00130{bottom:608.133333pt;}
.y6_c00130{bottom:621.866667pt;}
.ye_c00130{bottom:624.000000pt;}
.y5_c00130{bottom:637.600000pt;}
.yd_c00130{bottom:640.266667pt;}
.y4_c00130{bottom:654.266667pt;}
.yc_c00130{bottom:656.133333pt;}
.y3_c00130{bottom:670.000000pt;}
.yb_c00130{bottom:672.000000pt;}
.y2_c00130{bottom:687.066667pt;}
.y1_c00130{bottom:704.000000pt;}
.h9_c00130{height:11.733399pt;}
.h8_c00130{height:27.010417pt;}
.ha_c00130{height:38.937500pt;}
.h2_c00130{height:55.893333pt;}
.h7_c00130{height:56.906667pt;}
.h1_c00130{height:61.482667pt;}
.h4_c00130{height:63.594667pt;}
.h5_c00130{height:78.048000pt;}
.h3_c00130{height:86.218750pt;}
.h6_c00130{height:216.083333pt;}
.h0_c00130{height:732.000000pt;}
.w2_c00130{width:93.222667pt;}
.w0_c00130{width:508.333333pt;}
.w1_c00130{width:508.666667pt;}
.x0_c00130{left:0.000000pt;}
.xf_c00130{left:58.533333pt;}
.x16_c00130{left:60.266667pt;}
.x10_c00130{left:61.200000pt;}
.x17_c00130{left:62.133333pt;}
.x3_c00130{left:63.066667pt;}
.x4_c00130{left:64.000000pt;}
.x2_c00130{left:65.333333pt;}
.x11_c00130{left:69.066667pt;}
.xa_c00130{left:95.333333pt;}
.xe_c00130{left:98.400000pt;}
.x5_c00130{left:127.200000pt;}
.xd_c00130{left:132.400000pt;}
.x1_c00130{left:183.200000pt;}
.x1a_c00130{left:211.334880pt;}
.xb_c00130{left:246.533333pt;}
.x9_c00130{left:254.400000pt;}
.x8_c00130{left:255.333333pt;}
.x6_c00130{left:256.800000pt;}
.x18_c00130{left:257.733333pt;}
.x19_c00130{left:258.933333pt;}
.xc_c00130{left:281.733333pt;}
.x7_c00130{left:289.466667pt;}
.x12_c00130{left:306.533333pt;}
.x13_c00130{left:319.466667pt;}
.x14_c00130{left:335.066667pt;}
.x15_c00130{left:350.666667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_aa99791b49c63a30d28b82a6.woff2')format("woff");}.ff1_c00131{font-family:ff1_c00131;line-height:1.575000;font-style:normal;font-weight:normal;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_8671ff4cce49ee127a76ef40.woff2')format("woff");}.ff2_c00131{font-family:ff2_c00131;line-height:1.437000;font-style:normal;font-weight:normal;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_805f82cefb1badcf14703317.woff2')format("woff");}.ff3_c00131{font-family:ff3_c00131;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00131;src:url('chunks/assets/font_31f814ecd2093551c79b06ce.woff2')format("woff");}.ff4_c00131{font-family:ff4_c00131;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00131;src:url('chunks/assets/font_e8de06b124ea4735c97fbb52.woff2')format("woff");}.ff5_c00131{font-family:ff5_c00131;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00131;src:url('chunks/assets/font_cf4ec13808ecef780244ec3a.woff2')format("woff");}.ff6_c00131{font-family:ff6_c00131;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00131;src:url('chunks/assets/font_4399b65575ce758db7308d45.woff2')format("woff");}.ff7_c00131{font-family:ff7_c00131;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00131;src:url('chunks/assets/font_6f7fa02156e671cef17e54c3.woff2')format("woff");}.ff8_c00131{font-family:ff8_c00131;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00131;src:url('chunks/assets/font_7c7b114d6d8510036cb24ad0.woff2')format("woff");}.ff9_c00131{font-family:ff9_c00131;line-height:1.575000;font-style:normal;font-weight: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_c00131;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ffa_c00131{font-family:ffa_c00131;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00131{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00131{vertical-align:0.000000px;}
.lsa_c00131{letter-spacing:-6.000000px;}
.ls9_c00131{letter-spacing:0.000000px;}
.ls1_c00131{letter-spacing:0.600000px;}
.ls0_c00131{letter-spacing:3.000000px;}
.ls8_c00131{letter-spacing:6.000000px;}
.ls4_c00131{letter-spacing:9.780000px;}
.ls3_c00131{letter-spacing:10.800000px;}
.ls7_c00131{letter-spacing:15.000000px;}
.ls5_c00131{letter-spacing:18.045000px;}
.ls2_c00131{letter-spacing:20.445000px;}
.ls6_c00131{letter-spacing:207.540000px;}
.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:-21.000000px;}
.ws1_c00131{word-spacing:-18.060000px;}
.ws0_c00131{word-spacing:-17.340000px;}
.ws5_c00131{word-spacing:-16.338000px;}
.ws4_c00131{word-spacing:-15.000000px;}
.ws3_c00131{word-spacing:-14.160000px;}
.ws6_c00131{word-spacing:-7.338000px;}
.ws7_c00131{word-spacing:0.000000px;}
._15_c00131{margin-left:-14.250000px;}
._10_c00131{margin-left:-12.840000px;}
._9_c00131{margin-left:-10.020000px;}
._e_c00131{margin-left:-8.400000px;}
._5_c00131{margin-left:-6.900000px;}
._4_c00131{margin-left:-5.160000px;}
._0_c00131{margin-left:-3.300000px;}
._7_c00131{margin-left:-1.560000px;}
._a_c00131{width:1.734000px;}
._2_c00131{width:3.036000px;}
._3_c00131{width:4.422000px;}
._6_c00131{width:5.940000px;}
._11_c00131{width:7.908000px;}
._18_c00131{width:8.937000px;}
._8_c00131{width:10.140000px;}
._12_c00131{width:11.406000px;}
._b_c00131{width:13.386000px;}
._1b_c00131{width:14.460000px;}
._16_c00131{width:15.624000px;}
._14_c00131{width:17.355000px;}
._c_c00131{width:19.134000px;}
._1a_c00131{width:20.289000px;}
._19_c00131{width:21.681000px;}
._d_c00131{width:22.860000px;}
._17_c00131{width:26.388000px;}
._f_c00131{width:27.840000px;}
._1c_c00131{width:31.080000px;}
._13_c00131{width:41.154000px;}
._1_c00131{width:333.300000px;}
.fc2_c00131{color:transparent;}
.fc1_c00131{color:rgb(128,128,128);}
.fc0_c00131{color:rgb(0,0,0);}
.fs3_c00131{font-size:24.000000px;}
.fs4_c00131{font-size:39.000000px;}
.fs2_c00131{font-size:45.000000px;}
.fs6_c00131{font-size:48.000000px;}
.fs1_c00131{font-size:60.000000px;}
.fs5_c00131{font-size:63.000000px;}
.fs0_c00131{font-size:66.000000px;}
.y0_c00131{bottom:0.000000px;}
.y53_c00131{bottom:3.105000px;}
.y52_c00131{bottom:7.228371px;}
.y51_c00131{bottom:65.565000px;}
.y29_c00131{bottom:70.215000px;}
.y50_c00131{bottom:83.415000px;}
.y28_c00131{bottom:88.065000px;}
.y4f_c00131{bottom:102.015000px;}
.y27_c00131{bottom:106.815000px;}
.y4e_c00131{bottom:120.165000px;}
.y26_c00131{bottom:124.665000px;}
.y4d_c00131{bottom:137.415000px;}
.y25_c00131{bottom:142.515000px;}
.y4c_c00131{bottom:155.715000px;}
.y24_c00131{bottom:160.665000px;}
.y4b_c00131{bottom:173.115000px;}
.y23_c00131{bottom:179.265000px;}
.y4a_c00131{bottom:192.015000px;}
.y22_c00131{bottom:197.565000px;}
.y49_c00131{bottom:209.565000px;}
.y21_c00131{bottom:215.115000px;}
.y48_c00131{bottom:228.915000px;}
.y20_c00131{bottom:233.265000px;}
.y47_c00131{bottom:247.065000px;}
.y1f_c00131{bottom:251.415000px;}
.y46_c00131{bottom:264.915000px;}
.y1e_c00131{bottom:267.765000px;}
.y45_c00131{bottom:282.915000px;}
.y1d_c00131{bottom:286.965000px;}
.y44_c00131{bottom:301.815000px;}
.y1c_c00131{bottom:304.815000px;}
.y43_c00131{bottom:320.265000px;}
.y1b_c00131{bottom:322.665000px;}
.y42_c00131{bottom:337.815000px;}
.y1a_c00131{bottom:341.565000px;}
.y41_c00131{bottom:356.415000px;}
.y19_c00131{bottom:359.865000px;}
.y40_c00131{bottom:375.315000px;}
.y18_c00131{bottom:377.715000px;}
.y3f_c00131{bottom:392.265000px;}
.y17_c00131{bottom:395.865000px;}
.y3e_c00131{bottom:412.065000px;}
.y16_c00131{bottom:413.565000px;}
.y3d_c00131{bottom:430.365000px;}
.y15_c00131{bottom:432.015000px;}
.y3c_c00131{bottom:447.615000px;}
.y14_c00131{bottom:449.265000px;}
.y3b_c00131{bottom:466.215000px;}
.y13_c00131{bottom:467.865000px;}
.y3a_c00131{bottom:484.065000px;}
.y12_c00131{bottom:486.015000px;}
.y39_c00131{bottom:502.665000px;}
.y11_c00131{bottom:503.265000px;}
.y38_c00131{bottom:521.415000px;}
.y10_c00131{bottom:521.565000px;}
.y37_c00131{bottom:538.665000px;}
.yf_c00131{bottom:539.715000px;}
.y36_c00131{bottom:557.265000px;}
.ye_c00131{bottom:557.565000px;}
.y35_c00131{bottom:574.815000px;}
.yd_c00131{bottom:576.165000px;}
.y34_c00131{bottom:594.015000px;}
.yc_c00131{bottom:595.065000px;}
.y33_c00131{bottom:611.865000px;}
.yb_c00131{bottom:613.365000px;}
.y32_c00131{bottom:630.165000px;}
.ya_c00131{bottom:630.315000px;}
.y31_c00131{bottom:648.015000px;}
.y9_c00131{bottom:648.315000px;}
.y8_c00131{bottom:666.315000px;}
.y30_c00131{bottom:666.915000px;}
.y7_c00131{bottom:684.465000px;}
.y2f_c00131{bottom:702.315000px;}
.y6_c00131{bottom:702.465000px;}
.y2e_c00131{bottom:719.565000px;}
.y5_c00131{bottom:720.315000px;}
.y4_c00131{bottom:738.765000px;}
.y2d_c00131{bottom:738.915000px;}
.y3_c00131{bottom:757.065000px;}
.y2c_c00131{bottom:757.365000px;}
.y2b_c00131{bottom:774.915000px;}
.y2_c00131{bottom:775.215000px;}
.y1_c00131{bottom:796.215000px;}
.y2a_c00131{bottom:797.865000px;}
.h7_c00131{height:13.200074px;}
.h5_c00131{height:42.276000px;}
.h8_c00131{height:43.804688px;}
.h3_c00131{height:62.880000px;}
.h4_c00131{height:64.020000px;}
.h6_c00131{height:67.221000px;}
.h2_c00131{height:70.422000px;}
.h0_c00131{height:833.775000px;}
.h1_c00131{height:834.000000px;}
.w2_c00131{width:104.875500px;}
.w1_c00131{width:576.000000px;}
.w0_c00131{width:576.150000px;}
.x0_c00131{left:0.000000px;}
.x5_c00131{left:37.200000px;}
.x2_c00131{left:100.650000px;}
.x3_c00131{left:101.850000px;}
.x6_c00131{left:102.900000px;}
.x1_c00131{left:104.100000px;}
.x7_c00131{left:105.300000px;}
.x4_c00131{left:117.750000px;}
.xd_c00131{left:239.889267px;}
.x9_c00131{left:317.550000px;}
.xa_c00131{left:318.600000px;}
.xb_c00131{left:319.650000px;}
.xc_c00131{left:320.700000px;}
.x8_c00131{left:321.900000px;}
@media print{
.v0_c00131{vertical-align:0.000000pt;}
.lsa_c00131{letter-spacing:-5.333333pt;}
.ls9_c00131{letter-spacing:0.000000pt;}
.ls1_c00131{letter-spacing:0.533333pt;}
.ls0_c00131{letter-spacing:2.666667pt;}
.ls8_c00131{letter-spacing:5.333333pt;}
.ls4_c00131{letter-spacing:8.693333pt;}
.ls3_c00131{letter-spacing:9.600000pt;}
.ls7_c00131{letter-spacing:13.333333pt;}
.ls5_c00131{letter-spacing:16.040000pt;}
.ls2_c00131{letter-spacing:18.173333pt;}
.ls6_c00131{letter-spacing:184.480000pt;}
.ws2_c00131{word-spacing:-18.666667pt;}
.ws1_c00131{word-spacing:-16.053333pt;}
.ws0_c00131{word-spacing:-15.413333pt;}
.ws5_c00131{word-spacing:-14.522667pt;}
.ws4_c00131{word-spacing:-13.333333pt;}
.ws3_c00131{word-spacing:-12.586667pt;}
.ws6_c00131{word-spacing:-6.522667pt;}
.ws7_c00131{word-spacing:0.000000pt;}
._15_c00131{margin-left:-12.666667pt;}
._10_c00131{margin-left:-11.413333pt;}
._9_c00131{margin-left:-8.906667pt;}
._e_c00131{margin-left:-7.466667pt;}
._5_c00131{margin-left:-6.133333pt;}
._4_c00131{margin-left:-4.586667pt;}
._0_c00131{margin-left:-2.933333pt;}
._7_c00131{margin-left:-1.386667pt;}
._a_c00131{width:1.541333pt;}
._2_c00131{width:2.698667pt;}
._3_c00131{width:3.930667pt;}
._6_c00131{width:5.280000pt;}
._11_c00131{width:7.029333pt;}
._18_c00131{width:7.944000pt;}
._8_c00131{width:9.013333pt;}
._12_c00131{width:10.138667pt;}
._b_c00131{width:11.898667pt;}
._1b_c00131{width:12.853333pt;}
._16_c00131{width:13.888000pt;}
._14_c00131{width:15.426667pt;}
._c_c00131{width:17.008000pt;}
._1a_c00131{width:18.034667pt;}
._19_c00131{width:19.272000pt;}
._d_c00131{width:20.320000pt;}
._17_c00131{width:23.456000pt;}
._f_c00131{width:24.746667pt;}
._1c_c00131{width:27.626667pt;}
._13_c00131{width:36.581333pt;}
._1_c00131{width:296.266667pt;}
.fs3_c00131{font-size:21.333333pt;}
.fs4_c00131{font-size:34.666667pt;}
.fs2_c00131{font-size:40.000000pt;}
.fs6_c00131{font-size:42.666667pt;}
.fs1_c00131{font-size:53.333333pt;}
.fs5_c00131{font-size:56.000000pt;}
.fs0_c00131{font-size:58.666667pt;}
.y0_c00131{bottom:0.000000pt;}
.y53_c00131{bottom:2.760000pt;}
.y52_c00131{bottom:6.425219pt;}
.y51_c00131{bottom:58.280000pt;}
.y29_c00131{bottom:62.413333pt;}
.y50_c00131{bottom:74.146667pt;}
.y28_c00131{bottom:78.280000pt;}
.y4f_c00131{bottom:90.680000pt;}
.y27_c00131{bottom:94.946667pt;}
.y4e_c00131{bottom:106.813333pt;}
.y26_c00131{bottom:110.813333pt;}
.y4d_c00131{bottom:122.146667pt;}
.y25_c00131{bottom:126.680000pt;}
.y4c_c00131{bottom:138.413333pt;}
.y24_c00131{bottom:142.813333pt;}
.y4b_c00131{bottom:153.880000pt;}
.y23_c00131{bottom:159.346667pt;}
.y4a_c00131{bottom:170.680000pt;}
.y22_c00131{bottom:175.613333pt;}
.y49_c00131{bottom:186.280000pt;}
.y21_c00131{bottom:191.213333pt;}
.y48_c00131{bottom:203.480000pt;}
.y20_c00131{bottom:207.346667pt;}
.y47_c00131{bottom:219.613333pt;}
.y1f_c00131{bottom:223.480000pt;}
.y46_c00131{bottom:235.480000pt;}
.y1e_c00131{bottom:238.013333pt;}
.y45_c00131{bottom:251.480000pt;}
.y1d_c00131{bottom:255.080000pt;}
.y44_c00131{bottom:268.280000pt;}
.y1c_c00131{bottom:270.946667pt;}
.y43_c00131{bottom:284.680000pt;}
.y1b_c00131{bottom:286.813333pt;}
.y42_c00131{bottom:300.280000pt;}
.y1a_c00131{bottom:303.613333pt;}
.y41_c00131{bottom:316.813333pt;}
.y19_c00131{bottom:319.880000pt;}
.y40_c00131{bottom:333.613333pt;}
.y18_c00131{bottom:335.746667pt;}
.y3f_c00131{bottom:348.680000pt;}
.y17_c00131{bottom:351.880000pt;}
.y3e_c00131{bottom:366.280000pt;}
.y16_c00131{bottom:367.613333pt;}
.y3d_c00131{bottom:382.546667pt;}
.y15_c00131{bottom:384.013333pt;}
.y3c_c00131{bottom:397.880000pt;}
.y14_c00131{bottom:399.346667pt;}
.y3b_c00131{bottom:414.413333pt;}
.y13_c00131{bottom:415.880000pt;}
.y3a_c00131{bottom:430.280000pt;}
.y12_c00131{bottom:432.013333pt;}
.y39_c00131{bottom:446.813333pt;}
.y11_c00131{bottom:447.346667pt;}
.y38_c00131{bottom:463.480000pt;}
.y10_c00131{bottom:463.613333pt;}
.y37_c00131{bottom:478.813333pt;}
.yf_c00131{bottom:479.746667pt;}
.y36_c00131{bottom:495.346667pt;}
.ye_c00131{bottom:495.613333pt;}
.y35_c00131{bottom:510.946667pt;}
.yd_c00131{bottom:512.146667pt;}
.y34_c00131{bottom:528.013333pt;}
.yc_c00131{bottom:528.946667pt;}
.y33_c00131{bottom:543.880000pt;}
.yb_c00131{bottom:545.213333pt;}
.y32_c00131{bottom:560.146667pt;}
.ya_c00131{bottom:560.280000pt;}
.y31_c00131{bottom:576.013333pt;}
.y9_c00131{bottom:576.280000pt;}
.y8_c00131{bottom:592.280000pt;}
.y30_c00131{bottom:592.813333pt;}
.y7_c00131{bottom:608.413333pt;}
.y2f_c00131{bottom:624.280000pt;}
.y6_c00131{bottom:624.413333pt;}
.y2e_c00131{bottom:639.613333pt;}
.y5_c00131{bottom:640.280000pt;}
.y4_c00131{bottom:656.680000pt;}
.y2d_c00131{bottom:656.813333pt;}
.y3_c00131{bottom:672.946667pt;}
.y2c_c00131{bottom:673.213333pt;}
.y2b_c00131{bottom:688.813333pt;}
.y2_c00131{bottom:689.080000pt;}
.y1_c00131{bottom:707.746667pt;}
.y2a_c00131{bottom:709.213333pt;}
.h7_c00131{height:11.733399pt;}
.h5_c00131{height:37.578667pt;}
.h8_c00131{height:38.937500pt;}
.h3_c00131{height:55.893333pt;}
.h4_c00131{height:56.906667pt;}
.h6_c00131{height:59.752000pt;}
.h2_c00131{height:62.597333pt;}
.h0_c00131{height:741.133333pt;}
.h1_c00131{height:741.333333pt;}
.w2_c00131{width:93.222667pt;}
.w1_c00131{width:512.000000pt;}
.w0_c00131{width:512.133333pt;}
.x0_c00131{left:0.000000pt;}
.x5_c00131{left:33.066667pt;}
.x2_c00131{left:89.466667pt;}
.x3_c00131{left:90.533333pt;}
.x6_c00131{left:91.466667pt;}
.x1_c00131{left:92.533333pt;}
.x7_c00131{left:93.600000pt;}
.x4_c00131{left:104.666667pt;}
.xd_c00131{left:213.234904pt;}
.x9_c00131{left:282.266667pt;}
.xa_c00131{left:283.200000pt;}
.xb_c00131{left:284.133333pt;}
.xc_c00131{left:285.066667pt;}
.x8_c00131{left:286.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_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_3b1264117bd598f7f9872a7c.woff2')format("woff");}.ff1_c00132{font-family:ff1_c00132;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00132;src:url('chunks/assets/font_9016154b9f98d341d67e5427.woff2')format("woff");}.ff2_c00132{font-family:ff2_c00132;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00132;src:url('chunks/assets/font_bf9409a63bc50e791ca4ecb8.woff2')format("woff");}.ff3_c00132{font-family:ff3_c00132;line-height:1.575000;font-style:normal;font-weight:normal;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_1f68b0a3241d66deea1030cb.woff2')format("woff");}.ff4_c00132{font-family:ff4_c00132;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00132;src:url('chunks/assets/font_bdfb588f56ee61a21885fa16.woff2')format("woff");}.ff5_c00132{font-family:ff5_c00132;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00132;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff6_c00132{font-family:ff6_c00132;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00132{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00132{vertical-align:0.000000px;}
.ls6_c00132{letter-spacing:-3.000000px;}
.ls5_c00132{letter-spacing:0.000000px;}
.ls1_c00132{letter-spacing:1.800000px;}
.ls0_c00132{letter-spacing:3.000000px;}
.ls4_c00132{letter-spacing:7.440000px;}
.ls2_c00132{letter-spacing:14.400000px;}
.ls3_c00132{letter-spacing:15.600000px;}
.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;}
}
.ws2_c00132{word-spacing:-21.072000px;}
.ws0_c00132{word-spacing:-18.060000px;}
.ws1_c00132{word-spacing:-14.160000px;}
.ws3_c00132{word-spacing:0.000000px;}
._20_c00132{margin-left:-24.480000px;}
._22_c00132{margin-left:-15.960000px;}
._16_c00132{margin-left:-12.660000px;}
._15_c00132{margin-left:-7.320000px;}
._f_c00132{margin-left:-5.820000px;}
._10_c00132{margin-left:-4.740000px;}
._e_c00132{margin-left:-3.660000px;}
._8_c00132{margin-left:-2.640000px;}
._7_c00132{margin-left:-1.560000px;}
._5_c00132{width:1.260000px;}
._6_c00132{width:3.120000px;}
._c_c00132{width:5.040000px;}
._b_c00132{width:6.180000px;}
._9_c00132{width:7.560000px;}
._12_c00132{width:8.880000px;}
._1_c00132{width:10.140000px;}
._a_c00132{width:11.640000px;}
._0_c00132{width:13.140000px;}
._11_c00132{width:14.520000px;}
._14_c00132{width:15.720000px;}
._17_c00132{width:16.740000px;}
._3_c00132{width:20.160000px;}
._13_c00132{width:21.240000px;}
._4_c00132{width:22.260000px;}
._23_c00132{width:23.820000px;}
._1c_c00132{width:25.140000px;}
._18_c00132{width:26.520000px;}
._1e_c00132{width:27.900000px;}
._1f_c00132{width:32.400000px;}
._19_c00132{width:35.580000px;}
._2_c00132{width:40.140000px;}
._1b_c00132{width:55.260000px;}
._1d_c00132{width:109.080000px;}
._21_c00132{width:126.960000px;}
._d_c00132{width:151.920000px;}
._1a_c00132{width:163.200000px;}
.fc2_c00132{color:transparent;}
.fc1_c00132{color:rgb(128,128,128);}
.fc0_c00132{color:rgb(0,0,0);}
.fs3_c00132{font-size:48.000000px;}
.fs0_c00132{font-size:60.000000px;}
.fs1_c00132{font-size:66.000000px;}
.fs2_c00132{font-size:72.000000px;}
.y0_c00132{bottom:0.000000px;}
.y54_c00132{bottom:3.105000px;}
.y53_c00132{bottom:7.228371px;}
.y52_c00132{bottom:39.465000px;}
.y51_c00132{bottom:59.865000px;}
.y28_c00132{bottom:63.165000px;}
.y50_c00132{bottom:78.315000px;}
.y27_c00132{bottom:81.015000px;}
.y4f_c00132{bottom:95.565000px;}
.y4e_c00132{bottom:113.865000px;}
.y26_c00132{bottom:118.815000px;}
.y4d_c00132{bottom:132.315000px;}
.y25_c00132{bottom:137.115000px;}
.y4c_c00132{bottom:150.165000px;}
.y24_c00132{bottom:154.665000px;}
.y4b_c00132{bottom:168.765000px;}
.y23_c00132{bottom:171.915000px;}
.y4a_c00132{bottom:185.715000px;}
.y49_c00132{bottom:201.915000px;}
.y22_c00132{bottom:208.665000px;}
.y48_c00132{bottom:222.465000px;}
.y21_c00132{bottom:226.815000px;}
.y47_c00132{bottom:239.715000px;}
.y20_c00132{bottom:244.365000px;}
.y46_c00132{bottom:258.765000px;}
.y1f_c00132{bottom:262.215000px;}
.y45_c00132{bottom:277.065000px;}
.y1e_c00132{bottom:280.215000px;}
.y44_c00132{bottom:295.365000px;}
.y1d_c00132{bottom:297.765000px;}
.y43_c00132{bottom:313.515000px;}
.y1c_c00132{bottom:315.915000px;}
.y42_c00132{bottom:331.215000px;}
.y1b_c00132{bottom:334.215000px;}
.y41_c00132{bottom:349.665000px;}
.y1a_c00132{bottom:352.365000px;}
.y40_c00132{bottom:366.615000px;}
.y19_c00132{bottom:370.215000px;}
.y3f_c00132{bottom:383.715000px;}
.y18_c00132{bottom:388.515000px;}
.y3e_c00132{bottom:403.965000px;}
.y17_c00132{bottom:406.065000px;}
.y3d_c00132{bottom:421.215000px;}
.y16_c00132{bottom:423.915000px;}
.y3c_c00132{bottom:439.065000px;}
.y15_c00132{bottom:441.915000px;}
.y3b_c00132{bottom:458.115000px;}
.y14_c00132{bottom:459.765000px;}
.y3a_c00132{bottom:474.915000px;}
.y13_c00132{bottom:477.015000px;}
.y39_c00132{bottom:492.765000px;}
.y12_c00132{bottom:494.565000px;}
.y38_c00132{bottom:511.365000px;}
.y11_c00132{bottom:512.715000px;}
.y37_c00132{bottom:529.665000px;}
.y10_c00132{bottom:530.565000px;}
.y36_c00132{bottom:547.215000px;}
.yf_c00132{bottom:548.865000px;}
.y35_c00132{bottom:565.965000px;}
.ye_c00132{bottom:566.715000px;}
.y34_c00132{bottom:583.965000px;}
.yd_c00132{bottom:584.865000px;}
.y33_c00132{bottom:601.815000px;}
.yc_c00132{bottom:602.865000px;}
.y32_c00132{bottom:620.415000px;}
.yb_c00132{bottom:621.015000px;}
.y31_c00132{bottom:637.665000px;}
.ya_c00132{bottom:638.565000px;}
.y30_c00132{bottom:655.815000px;}
.y9_c00132{bottom:656.865000px;}
.y2f_c00132{bottom:673.365000px;}
.y8_c00132{bottom:674.715000px;}
.y2e_c00132{bottom:692.565000px;}
.y7_c00132{bottom:692.865000px;}
.y2d_c00132{bottom:710.415000px;}
.y6_c00132{bottom:711.165000px;}
.y2c_c00132{bottom:728.115000px;}
.y5_c00132{bottom:729.315000px;}
.y2b_c00132{bottom:745.665000px;}
.y4_c00132{bottom:746.565000px;}
.y2a_c00132{bottom:763.815000px;}
.y3_c00132{bottom:764.865000px;}
.y29_c00132{bottom:781.965000px;}
.y2_c00132{bottom:783.315000px;}
.y1_c00132{bottom:802.665000px;}
.h6_c00132{height:13.200074px;}
.h7_c00132{height:43.804688px;}
.h2_c00132{height:62.880000px;}
.h3_c00132{height:64.020000px;}
.h4_c00132{height:70.422000px;}
.h5_c00132{height:75.456000px;}
.h0_c00132{height:833.775000px;}
.h1_c00132{height:834.000000px;}
.w2_c00132{width:104.875500px;}
.w0_c00132{width:578.850000px;}
.w1_c00132{width:579.000000px;}
.x0_c00132{left:0.000000px;}
.x3_c00132{left:72.600000px;}
.x2_c00132{left:74.250000px;}
.x4_c00132{left:75.300000px;}
.x5_c00132{left:76.350000px;}
.x6_c00132{left:78.300000px;}
.x7_c00132{left:79.350000px;}
.x8_c00132{left:80.400000px;}
.xa_c00132{left:82.050000px;}
.xb_c00132{left:108.300000px;}
.xd_c00132{left:127.200000px;}
.xc_c00132{left:158.400000px;}
.x9_c00132{left:177.900000px;}
.x1_c00132{left:197.100000px;}
.x16_c00132{left:241.239258px;}
.xf_c00132{left:290.550000px;}
.xe_c00132{left:291.900000px;}
.x10_c00132{left:292.950000px;}
.x11_c00132{left:294.300000px;}
.x12_c00132{left:296.700000px;}
.x13_c00132{left:297.750000px;}
.x14_c00132{left:300.000000px;}
.x15_c00132{left:466.800000px;}
@media print{
.v0_c00132{vertical-align:0.000000pt;}
.ls6_c00132{letter-spacing:-2.666667pt;}
.ls5_c00132{letter-spacing:0.000000pt;}
.ls1_c00132{letter-spacing:1.600000pt;}
.ls0_c00132{letter-spacing:2.666667pt;}
.ls4_c00132{letter-spacing:6.613333pt;}
.ls2_c00132{letter-spacing:12.800000pt;}
.ls3_c00132{letter-spacing:13.866667pt;}
.ws2_c00132{word-spacing:-18.730667pt;}
.ws0_c00132{word-spacing:-16.053333pt;}
.ws1_c00132{word-spacing:-12.586667pt;}
.ws3_c00132{word-spacing:0.000000pt;}
._20_c00132{margin-left:-21.760000pt;}
._22_c00132{margin-left:-14.186667pt;}
._16_c00132{margin-left:-11.253333pt;}
._15_c00132{margin-left:-6.506667pt;}
._f_c00132{margin-left:-5.173333pt;}
._10_c00132{margin-left:-4.213333pt;}
._e_c00132{margin-left:-3.253333pt;}
._8_c00132{margin-left:-2.346667pt;}
._7_c00132{margin-left:-1.386667pt;}
._5_c00132{width:1.120000pt;}
._6_c00132{width:2.773333pt;}
._c_c00132{width:4.480000pt;}
._b_c00132{width:5.493333pt;}
._9_c00132{width:6.720000pt;}
._12_c00132{width:7.893333pt;}
._1_c00132{width:9.013333pt;}
._a_c00132{width:10.346667pt;}
._0_c00132{width:11.680000pt;}
._11_c00132{width:12.906667pt;}
._14_c00132{width:13.973333pt;}
._17_c00132{width:14.880000pt;}
._3_c00132{width:17.920000pt;}
._13_c00132{width:18.880000pt;}
._4_c00132{width:19.786667pt;}
._23_c00132{width:21.173333pt;}
._1c_c00132{width:22.346667pt;}
._18_c00132{width:23.573333pt;}
._1e_c00132{width:24.800000pt;}
._1f_c00132{width:28.800000pt;}
._19_c00132{width:31.626667pt;}
._2_c00132{width:35.680000pt;}
._1b_c00132{width:49.120000pt;}
._1d_c00132{width:96.960000pt;}
._21_c00132{width:112.853333pt;}
._d_c00132{width:135.040000pt;}
._1a_c00132{width:145.066667pt;}
.fs3_c00132{font-size:42.666667pt;}
.fs0_c00132{font-size:53.333333pt;}
.fs1_c00132{font-size:58.666667pt;}
.fs2_c00132{font-size:64.000000pt;}
.y0_c00132{bottom:0.000000pt;}
.y54_c00132{bottom:2.760000pt;}
.y53_c00132{bottom:6.425219pt;}
.y52_c00132{bottom:35.080000pt;}
.y51_c00132{bottom:53.213333pt;}
.y28_c00132{bottom:56.146667pt;}
.y50_c00132{bottom:69.613333pt;}
.y27_c00132{bottom:72.013333pt;}
.y4f_c00132{bottom:84.946667pt;}
.y4e_c00132{bottom:101.213333pt;}
.y26_c00132{bottom:105.613333pt;}
.y4d_c00132{bottom:117.613333pt;}
.y25_c00132{bottom:121.880000pt;}
.y4c_c00132{bottom:133.480000pt;}
.y24_c00132{bottom:137.480000pt;}
.y4b_c00132{bottom:150.013333pt;}
.y23_c00132{bottom:152.813333pt;}
.y4a_c00132{bottom:165.080000pt;}
.y49_c00132{bottom:179.480000pt;}
.y22_c00132{bottom:185.480000pt;}
.y48_c00132{bottom:197.746667pt;}
.y21_c00132{bottom:201.613333pt;}
.y47_c00132{bottom:213.080000pt;}
.y20_c00132{bottom:217.213333pt;}
.y46_c00132{bottom:230.013333pt;}
.y1f_c00132{bottom:233.080000pt;}
.y45_c00132{bottom:246.280000pt;}
.y1e_c00132{bottom:249.080000pt;}
.y44_c00132{bottom:262.546667pt;}
.y1d_c00132{bottom:264.680000pt;}
.y43_c00132{bottom:278.680000pt;}
.y1c_c00132{bottom:280.813333pt;}
.y42_c00132{bottom:294.413333pt;}
.y1b_c00132{bottom:297.080000pt;}
.y41_c00132{bottom:310.813333pt;}
.y1a_c00132{bottom:313.213333pt;}
.y40_c00132{bottom:325.880000pt;}
.y19_c00132{bottom:329.080000pt;}
.y3f_c00132{bottom:341.080000pt;}
.y18_c00132{bottom:345.346667pt;}
.y3e_c00132{bottom:359.080000pt;}
.y17_c00132{bottom:360.946667pt;}
.y3d_c00132{bottom:374.413333pt;}
.y16_c00132{bottom:376.813333pt;}
.y3c_c00132{bottom:390.280000pt;}
.y15_c00132{bottom:392.813333pt;}
.y3b_c00132{bottom:407.213333pt;}
.y14_c00132{bottom:408.680000pt;}
.y3a_c00132{bottom:422.146667pt;}
.y13_c00132{bottom:424.013333pt;}
.y39_c00132{bottom:438.013333pt;}
.y12_c00132{bottom:439.613333pt;}
.y38_c00132{bottom:454.546667pt;}
.y11_c00132{bottom:455.746667pt;}
.y37_c00132{bottom:470.813333pt;}
.y10_c00132{bottom:471.613333pt;}
.y36_c00132{bottom:486.413333pt;}
.yf_c00132{bottom:487.880000pt;}
.y35_c00132{bottom:503.080000pt;}
.ye_c00132{bottom:503.746667pt;}
.y34_c00132{bottom:519.080000pt;}
.yd_c00132{bottom:519.880000pt;}
.y33_c00132{bottom:534.946667pt;}
.yc_c00132{bottom:535.880000pt;}
.y32_c00132{bottom:551.480000pt;}
.yb_c00132{bottom:552.013333pt;}
.y31_c00132{bottom:566.813333pt;}
.ya_c00132{bottom:567.613333pt;}
.y30_c00132{bottom:582.946667pt;}
.y9_c00132{bottom:583.880000pt;}
.y2f_c00132{bottom:598.546667pt;}
.y8_c00132{bottom:599.746667pt;}
.y2e_c00132{bottom:615.613333pt;}
.y7_c00132{bottom:615.880000pt;}
.y2d_c00132{bottom:631.480000pt;}
.y6_c00132{bottom:632.146667pt;}
.y2c_c00132{bottom:647.213333pt;}
.y5_c00132{bottom:648.280000pt;}
.y2b_c00132{bottom:662.813333pt;}
.y4_c00132{bottom:663.613333pt;}
.y2a_c00132{bottom:678.946667pt;}
.y3_c00132{bottom:679.880000pt;}
.y29_c00132{bottom:695.080000pt;}
.y2_c00132{bottom:696.280000pt;}
.y1_c00132{bottom:713.480000pt;}
.h6_c00132{height:11.733399pt;}
.h7_c00132{height:38.937500pt;}
.h2_c00132{height:55.893333pt;}
.h3_c00132{height:56.906667pt;}
.h4_c00132{height:62.597333pt;}
.h5_c00132{height:67.072000pt;}
.h0_c00132{height:741.133333pt;}
.h1_c00132{height:741.333333pt;}
.w2_c00132{width:93.222667pt;}
.w0_c00132{width:514.533333pt;}
.w1_c00132{width:514.666667pt;}
.x0_c00132{left:0.000000pt;}
.x3_c00132{left:64.533333pt;}
.x2_c00132{left:66.000000pt;}
.x4_c00132{left:66.933333pt;}
.x5_c00132{left:67.866667pt;}
.x6_c00132{left:69.600000pt;}
.x7_c00132{left:70.533333pt;}
.x8_c00132{left:71.466667pt;}
.xa_c00132{left:72.933333pt;}
.xb_c00132{left:96.266667pt;}
.xd_c00132{left:113.066667pt;}
.xc_c00132{left:140.800000pt;}
.x9_c00132{left:158.133333pt;}
.x1_c00132{left:175.200000pt;}
.x16_c00132{left:214.434896pt;}
.xf_c00132{left:258.266667pt;}
.xe_c00132{left:259.466667pt;}
.x10_c00132{left:260.400000pt;}
.x11_c00132{left:261.600000pt;}
.x12_c00132{left:263.733333pt;}
.x13_c00132{left:264.666667pt;}
.x14_c00132{left:266.666667pt;}
.x15_c00132{left:414.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_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_4100211844de508c24a67d27.woff2')format("woff");}.ff1_c00133{font-family:ff1_c00133;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00133;src:url('chunks/assets/font_5abcc6f559585be355ce88f3.woff2')format("woff");}.ff2_c00133{font-family:ff2_c00133;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00133;src:url('chunks/assets/font_f3790c11fa1b72b5ebd5d0f3.woff2')format("woff");}.ff3_c00133{font-family:ff3_c00133;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00133;src:url('chunks/assets/font_642aab0579cc3f1be8ee039c.woff2')format("woff");}.ff4_c00133{font-family:ff4_c00133;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00133;src:url('chunks/assets/font_20a8ddd6ba8a0a921d58b4ef.woff2')format("woff");}.ff5_c00133{font-family:ff5_c00133;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00133;src:url('chunks/assets/font_689c1301f08fe404c8ce06e7.woff2')format("woff");}.ff6_c00133{font-family:ff6_c00133;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00133;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff7_c00133{font-family:ff7_c00133;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00133{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00133{vertical-align:0.000000px;}
.ls6_c00133{letter-spacing:0.000000px;}
.ls2_c00133{letter-spacing:0.405000px;}
.ls0_c00133{letter-spacing:1.005000px;}
.ls3_c00133{letter-spacing:1.650000px;}
.ls4_c00133{letter-spacing:2.400000px;}
.ls5_c00133{letter-spacing:3.000000px;}
.ls7_c00133{letter-spacing:6.000000px;}
.ls1_c00133{letter-spacing:20.940000px;}
.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;}
}
.ws1_c00133{word-spacing:-29.295000px;}
.ws3_c00133{word-spacing:-18.060000px;}
.ws2_c00133{word-spacing:-16.200000px;}
.ws0_c00133{word-spacing:-14.160000px;}
.ws4_c00133{word-spacing:0.000000px;}
._18_c00133{margin-left:-18.495000px;}
._25_c00133{margin-left:-16.140000px;}
._26_c00133{margin-left:-13.260000px;}
._1a_c00133{margin-left:-9.660000px;}
._24_c00133{margin-left:-8.580000px;}
._1c_c00133{margin-left:-7.080000px;}
._1f_c00133{margin-left:-5.520000px;}
._b_c00133{margin-left:-4.260000px;}
._d_c00133{margin-left:-3.120000px;}
._c_c00133{margin-left:-1.560000px;}
._7_c00133{width:1.260000px;}
._6_c00133{width:2.880000px;}
._f_c00133{width:3.900000px;}
._e_c00133{width:5.400000px;}
._9_c00133{width:7.380000px;}
._11_c00133{width:8.580000px;}
._14_c00133{width:9.600000px;}
._a_c00133{width:10.980000px;}
._1e_c00133{width:12.480000px;}
._0_c00133{width:14.400000px;}
._16_c00133{width:15.420000px;}
._1_c00133{width:16.440000px;}
._21_c00133{width:17.940000px;}
._13_c00133{width:20.040000px;}
._4_c00133{width:21.060000px;}
._3_c00133{width:22.560000px;}
._2c_c00133{width:23.640000px;}
._2_c00133{width:25.080000px;}
._17_c00133{width:26.760000px;}
._2a_c00133{width:29.160000px;}
._15_c00133{width:30.780000px;}
._2b_c00133{width:32.040000px;}
._19_c00133{width:35.820000px;}
._5_c00133{width:38.940000px;}
._1d_c00133{width:40.800000px;}
._20_c00133{width:42.540000px;}
._22_c00133{width:44.820000px;}
._8_c00133{width:45.960000px;}
._1b_c00133{width:47.640000px;}
._23_c00133{width:50.400000px;}
._2d_c00133{width:51.480000px;}
._31_c00133{width:54.480000px;}
._28_c00133{width:55.740000px;}
._2e_c00133{width:58.080000px;}
._30_c00133{width:59.460000px;}
._12_c00133{width:78.720000px;}
._10_c00133{width:85.260000px;}
._29_c00133{width:106.320000px;}
._27_c00133{width:148.680000px;}
._2f_c00133{width:251.280000px;}
.fc2_c00133{color:transparent;}
.fc1_c00133{color:rgb(128,128,128);}
.fc0_c00133{color:rgb(0,0,0);}
.fs3_c00133{font-size:40.800000px;}
.fs1_c00133{font-size:45.000000px;}
.fs4_c00133{font-size:48.000000px;}
.fs2_c00133{font-size:51.000000px;}
.fs0_c00133{font-size:60.000000px;}
.y0_c00133{bottom:0.000000px;}
.y2d_c00133{bottom:3.105000px;}
.y2c_c00133{bottom:7.228369px;}
.y2b_c00133{bottom:36.120000px;}
.y2a_c00133{bottom:55.920000px;}
.y29_c00133{bottom:74.820000px;}
.y28_c00133{bottom:92.070000px;}
.y27_c00133{bottom:111.420000px;}
.y26_c00133{bottom:129.570000px;}
.y25_c00133{bottom:147.420000px;}
.y24_c00133{bottom:165.420000px;}
.y23_c00133{bottom:183.870000px;}
.y22_c00133{bottom:202.170000px;}
.y21_c00133{bottom:220.320000px;}
.y20_c00133{bottom:238.320000px;}
.y1f_c00133{bottom:256.770000px;}
.y1e_c00133{bottom:274.620000px;}
.y1d_c00133{bottom:292.620000px;}
.y1c_c00133{bottom:310.770000px;}
.y1b_c00133{bottom:328.770000px;}
.y1a_c00133{bottom:346.620000px;}
.y19_c00133{bottom:365.070000px;}
.y18_c00133{bottom:383.670000px;}
.y17_c00133{bottom:401.520000px;}
.y16_c00133{bottom:419.220000px;}
.y15_c00133{bottom:437.670000px;}
.y14_c00133{bottom:455.670000px;}
.y13_c00133{bottom:474.420000px;}
.y12_c00133{bottom:492.120000px;}
.y11_c00133{bottom:509.970000px;}
.y10_c00133{bottom:528.420000px;}
.yf_c00133{bottom:546.120000px;}
.ye_c00133{bottom:564.270000px;}
.yd_c00133{bottom:582.570000px;}
.yc_c00133{bottom:600.720000px;}
.yb_c00133{bottom:618.870000px;}
.ya_c00133{bottom:636.870000px;}
.y9_c00133{bottom:655.020000px;}
.y8_c00133{bottom:673.620000px;}
.y7_c00133{bottom:691.170000px;}
.y6_c00133{bottom:709.020000px;}
.y5_c00133{bottom:727.620000px;}
.y4_c00133{bottom:744.870000px;}
.y3_c00133{bottom:763.320000px;}
.y2_c00133{bottom:781.320000px;}
.y1_c00133{bottom:800.820000px;}
.h4_c00133{height:13.200073px;}
.h5_c00133{height:43.804688px;}
.h2_c00133{height:62.880000px;}
.h3_c00133{height:64.020000px;}
.h0_c00133{height:829.950000px;}
.h1_c00133{height:830.250000px;}
.w2_c00133{width:104.875500px;}
.w0_c00133{width:573.450000px;}
.w1_c00133{width:573.750000px;}
.x0_c00133{left:0.000000px;}
.x3_c00133{left:45.900000px;}
.xd_c00133{left:99.750000px;}
.xe_c00133{left:100.950000px;}
.xc_c00133{left:103.500000px;}
.x6_c00133{left:107.400000px;}
.x9_c00133{left:108.750000px;}
.x7_c00133{left:111.300000px;}
.xb_c00133{left:112.650000px;}
.xa_c00133{left:114.300000px;}
.x8_c00133{left:115.350000px;}
.x5_c00133{left:118.500000px;}
.x2_c00133{left:123.150000px;}
.x4_c00133{left:147.450000px;}
.x1_c00133{left:226.350000px;}
.x10_c00133{left:238.539230px;}
.xf_c00133{left:495.750000px;}
@media print{
.v0_c00133{vertical-align:0.000000pt;}
.ls6_c00133{letter-spacing:0.000000pt;}
.ls2_c00133{letter-spacing:0.360000pt;}
.ls0_c00133{letter-spacing:0.893333pt;}
.ls3_c00133{letter-spacing:1.466667pt;}
.ls4_c00133{letter-spacing:2.133333pt;}
.ls5_c00133{letter-spacing:2.666667pt;}
.ls7_c00133{letter-spacing:5.333333pt;}
.ls1_c00133{letter-spacing:18.613333pt;}
.ws1_c00133{word-spacing:-26.040000pt;}
.ws3_c00133{word-spacing:-16.053333pt;}
.ws2_c00133{word-spacing:-14.400000pt;}
.ws0_c00133{word-spacing:-12.586667pt;}
.ws4_c00133{word-spacing:0.000000pt;}
._18_c00133{margin-left:-16.440000pt;}
._25_c00133{margin-left:-14.346667pt;}
._26_c00133{margin-left:-11.786667pt;}
._1a_c00133{margin-left:-8.586667pt;}
._24_c00133{margin-left:-7.626667pt;}
._1c_c00133{margin-left:-6.293333pt;}
._1f_c00133{margin-left:-4.906667pt;}
._b_c00133{margin-left:-3.786667pt;}
._d_c00133{margin-left:-2.773333pt;}
._c_c00133{margin-left:-1.386667pt;}
._7_c00133{width:1.120000pt;}
._6_c00133{width:2.560000pt;}
._f_c00133{width:3.466667pt;}
._e_c00133{width:4.800000pt;}
._9_c00133{width:6.560000pt;}
._11_c00133{width:7.626667pt;}
._14_c00133{width:8.533333pt;}
._a_c00133{width:9.760000pt;}
._1e_c00133{width:11.093333pt;}
._0_c00133{width:12.800000pt;}
._16_c00133{width:13.706667pt;}
._1_c00133{width:14.613333pt;}
._21_c00133{width:15.946667pt;}
._13_c00133{width:17.813333pt;}
._4_c00133{width:18.720000pt;}
._3_c00133{width:20.053333pt;}
._2c_c00133{width:21.013333pt;}
._2_c00133{width:22.293333pt;}
._17_c00133{width:23.786667pt;}
._2a_c00133{width:25.920000pt;}
._15_c00133{width:27.360000pt;}
._2b_c00133{width:28.480000pt;}
._19_c00133{width:31.840000pt;}
._5_c00133{width:34.613333pt;}
._1d_c00133{width:36.266667pt;}
._20_c00133{width:37.813333pt;}
._22_c00133{width:39.840000pt;}
._8_c00133{width:40.853333pt;}
._1b_c00133{width:42.346667pt;}
._23_c00133{width:44.800000pt;}
._2d_c00133{width:45.760000pt;}
._31_c00133{width:48.426667pt;}
._28_c00133{width:49.546667pt;}
._2e_c00133{width:51.626667pt;}
._30_c00133{width:52.853333pt;}
._12_c00133{width:69.973333pt;}
._10_c00133{width:75.786667pt;}
._29_c00133{width:94.506667pt;}
._27_c00133{width:132.160000pt;}
._2f_c00133{width:223.360000pt;}
.fs3_c00133{font-size:36.266667pt;}
.fs1_c00133{font-size:40.000000pt;}
.fs4_c00133{font-size:42.666667pt;}
.fs2_c00133{font-size:45.333333pt;}
.fs0_c00133{font-size:53.333333pt;}
.y0_c00133{bottom:0.000000pt;}
.y2d_c00133{bottom:2.760000pt;}
.y2c_c00133{bottom:6.425217pt;}
.y2b_c00133{bottom:32.106667pt;}
.y2a_c00133{bottom:49.706667pt;}
.y29_c00133{bottom:66.506667pt;}
.y28_c00133{bottom:81.840000pt;}
.y27_c00133{bottom:99.040000pt;}
.y26_c00133{bottom:115.173333pt;}
.y25_c00133{bottom:131.040000pt;}
.y24_c00133{bottom:147.040000pt;}
.y23_c00133{bottom:163.440000pt;}
.y22_c00133{bottom:179.706667pt;}
.y21_c00133{bottom:195.840000pt;}
.y20_c00133{bottom:211.840000pt;}
.y1f_c00133{bottom:228.240000pt;}
.y1e_c00133{bottom:244.106667pt;}
.y1d_c00133{bottom:260.106667pt;}
.y1c_c00133{bottom:276.240000pt;}
.y1b_c00133{bottom:292.240000pt;}
.y1a_c00133{bottom:308.106667pt;}
.y19_c00133{bottom:324.506667pt;}
.y18_c00133{bottom:341.040000pt;}
.y17_c00133{bottom:356.906667pt;}
.y16_c00133{bottom:372.640000pt;}
.y15_c00133{bottom:389.040000pt;}
.y14_c00133{bottom:405.040000pt;}
.y13_c00133{bottom:421.706667pt;}
.y12_c00133{bottom:437.440000pt;}
.y11_c00133{bottom:453.306667pt;}
.y10_c00133{bottom:469.706667pt;}
.yf_c00133{bottom:485.440000pt;}
.ye_c00133{bottom:501.573333pt;}
.yd_c00133{bottom:517.840000pt;}
.yc_c00133{bottom:533.973333pt;}
.yb_c00133{bottom:550.106667pt;}
.ya_c00133{bottom:566.106667pt;}
.y9_c00133{bottom:582.240000pt;}
.y8_c00133{bottom:598.773333pt;}
.y7_c00133{bottom:614.373333pt;}
.y6_c00133{bottom:630.240000pt;}
.y5_c00133{bottom:646.773333pt;}
.y4_c00133{bottom:662.106667pt;}
.y3_c00133{bottom:678.506667pt;}
.y2_c00133{bottom:694.506667pt;}
.y1_c00133{bottom:711.840000pt;}
.h4_c00133{height:11.733399pt;}
.h5_c00133{height:38.937500pt;}
.h2_c00133{height:55.893333pt;}
.h3_c00133{height:56.906667pt;}
.h0_c00133{height:737.733333pt;}
.h1_c00133{height:738.000000pt;}
.w2_c00133{width:93.222667pt;}
.w0_c00133{width:509.733333pt;}
.w1_c00133{width:510.000000pt;}
.x0_c00133{left:0.000000pt;}
.x3_c00133{left:40.800000pt;}
.xd_c00133{left:88.666667pt;}
.xe_c00133{left:89.733333pt;}
.xc_c00133{left:92.000000pt;}
.x6_c00133{left:95.466667pt;}
.x9_c00133{left:96.666667pt;}
.x7_c00133{left:98.933333pt;}
.xb_c00133{left:100.133333pt;}
.xa_c00133{left:101.600000pt;}
.x8_c00133{left:102.533333pt;}
.x5_c00133{left:105.333333pt;}
.x2_c00133{left:109.466667pt;}
.x4_c00133{left:131.066667pt;}
.x1_c00133{left:201.200000pt;}
.x10_c00133{left:212.034871pt;}
.xf_c00133{left:440.666667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_df0a0c0174186801edd78b07.woff2')format("woff");}.ff1_c00134{font-family:ff1_c00134;line-height:1.437000;font-style:normal;font-weight:normal;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_0f7ac3cba2d9b038f1b9f614.woff2')format("woff");}.ff2_c00134{font-family:ff2_c00134;line-height:1.437000;font-style:normal;font-weight:normal;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_e745068f430f24419d5c7f08.woff2')format("woff");}.ff3_c00134{font-family:ff3_c00134;line-height:1.437000;font-style:normal;font-weight:normal;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_8f3b429e11fe811765c52b95.woff2')format("woff");}.ff4_c00134{font-family:ff4_c00134;line-height:1.575000;font-style:normal;font-weight:normal;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_fccf2d4b67eb4c9939757eb9.woff2')format("woff");}.ff5_c00134{font-family:ff5_c00134;line-height:1.012793;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00134;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff6_c00134{font-family:ff6_c00134;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00134{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00134{vertical-align:-82.800000px;}
.v0_c00134{vertical-align:0.000000px;}
.ls5_c00134{letter-spacing:0.000000px;}
.ls3_c00134{letter-spacing:3.000000px;}
.ls6_c00134{letter-spacing:6.000000px;}
.ls1_c00134{letter-spacing:6.900000px;}
.ls2_c00134{letter-spacing:7.320000px;}
.ls0_c00134{letter-spacing:9.000000px;}
.ls4_c00134{letter-spacing:19.680000px;}
.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:-23.340000px;}
.ws1_c00134{word-spacing:-14.160000px;}
.ws3_c00134{word-spacing:-4.320000px;}
.ws4_c00134{word-spacing:0.000000px;}
.ws2_c00134{word-spacing:0.120000px;}
._3c_c00134{margin-left:-20.820000px;}
._30_c00134{margin-left:-15.756000px;}
._1d_c00134{margin-left:-13.380000px;}
._31_c00134{margin-left:-11.820000px;}
._22_c00134{margin-left:-10.032000px;}
._1f_c00134{margin-left:-8.808000px;}
._28_c00134{margin-left:-6.588000px;}
._23_c00134{margin-left:-5.328000px;}
._b_c00134{margin-left:-3.840000px;}
._6_c00134{margin-left:-2.160000px;}
._11_c00134{margin-left:-1.080000px;}
._2_c00134{width:1.380000px;}
._3_c00134{width:2.460000px;}
._c_c00134{width:3.528000px;}
._1_c00134{width:4.752000px;}
._1b_c00134{width:5.820000px;}
._d_c00134{width:6.852000px;}
._9_c00134{width:8.700000px;}
._8_c00134{width:10.260000px;}
._10_c00134{width:11.436000px;}
._1e_c00134{width:12.960000px;}
._2b_c00134{width:14.136000px;}
._7_c00134{width:15.300000px;}
._f_c00134{width:16.680000px;}
._12_c00134{width:17.700000px;}
._18_c00134{width:20.340000px;}
._5_c00134{width:21.540000px;}
._4_c00134{width:23.640000px;}
._2f_c00134{width:26.280000px;}
._1a_c00134{width:27.780000px;}
._33_c00134{width:28.968000px;}
._2e_c00134{width:30.024000px;}
._20_c00134{width:32.100000px;}
._2d_c00134{width:33.684000px;}
._15_c00134{width:35.796000px;}
._29_c00134{width:39.240000px;}
._0_c00134{width:40.260000px;}
._25_c00134{width:44.796000px;}
._2a_c00134{width:46.068000px;}
._26_c00134{width:47.148000px;}
._27_c00134{width:48.504000px;}
._24_c00134{width:49.740000px;}
._21_c00134{width:51.600000px;}
._1c_c00134{width:53.136000px;}
._19_c00134{width:54.288000px;}
._a_c00134{width:55.728000px;}
._13_c00134{width:57.948000px;}
._17_c00134{width:60.312000px;}
._37_c00134{width:76.164000px;}
._e_c00134{width:82.800000px;}
._3e_c00134{width:93.000000px;}
._16_c00134{width:109.815000px;}
._38_c00134{width:110.880000px;}
._34_c00134{width:121.980000px;}
._32_c00134{width:131.832000px;}
._14_c00134{width:136.740000px;}
._2c_c00134{width:178.440000px;}
._35_c00134{width:187.032000px;}
._3d_c00134{width:194.748000px;}
._3b_c00134{width:213.000000px;}
._39_c00134{width:349.644000px;}
._3a_c00134{width:352.020000px;}
._36_c00134{width:401.724000px;}
._40_c00134{width:762.768000px;}
._3f_c00134{width:904.584000px;}
.fc2_c00134{color:transparent;}
.fc1_c00134{color:rgb(128,128,128);}
.fc0_c00134{color:rgb(0,0,0);}
.fs2_c00134{font-size:45.000000px;}
.fs3_c00134{font-size:48.000000px;}
.fs1_c00134{font-size:60.000000px;}
.fs0_c00134{font-size:66.000000px;}
.y0_c00134{bottom:0.000000px;}
.y2c_c00134{bottom:3.105000px;}
.y2b_c00134{bottom:7.228357px;}
.y2a_c00134{bottom:69.930000px;}
.y29_c00134{bottom:88.080000px;}
.y28_c00134{bottom:106.980000px;}
.y27_c00134{bottom:123.930000px;}
.y26_c00134{bottom:140.730000px;}
.y25_c00134{bottom:160.680000px;}
.y24_c00134{bottom:178.830000px;}
.y23_c00134{bottom:196.830000px;}
.y22_c00134{bottom:214.380000px;}
.y21_c00134{bottom:232.830000px;}
.y20_c00134{bottom:249.180000px;}
.y1f_c00134{bottom:267.930000px;}
.y1e_c00134{bottom:286.830000px;}
.y1d_c00134{bottom:304.830000px;}
.y1c_c00134{bottom:322.380000px;}
.y1b_c00134{bottom:340.980000px;}
.y1a_c00134{bottom:358.380000px;}
.y19_c00134{bottom:376.980000px;}
.y18_c00134{bottom:395.280000px;}
.y17_c00134{bottom:413.130000px;}
.y16_c00134{bottom:432.030000px;}
.y15_c00134{bottom:449.580000px;}
.y14_c00134{bottom:467.880000px;}
.y13_c00134{bottom:485.430000px;}
.y12_c00134{bottom:502.980000px;}
.y11_c00134{bottom:521.730000px;}
.y10_c00134{bottom:539.430000px;}
.yf_c00134{bottom:557.880000px;}
.ye_c00134{bottom:575.880000px;}
.yd_c00134{bottom:593.730000px;}
.yc_c00134{bottom:611.580000px;}
.yb_c00134{bottom:629.880000px;}
.ya_c00134{bottom:647.430000px;}
.y9_c00134{bottom:665.880000px;}
.y8_c00134{bottom:683.880000px;}
.y7_c00134{bottom:702.030000px;}
.y6_c00134{bottom:720.180000px;}
.y5_c00134{bottom:738.180000px;}
.y4_c00134{bottom:756.330000px;}
.y3_c00134{bottom:774.330000px;}
.y2_c00134{bottom:791.730000px;}
.y1_c00134{bottom:813.030000px;}
.h5_c00134{height:13.200074px;}
.h6_c00134{height:43.804688px;}
.h3_c00134{height:62.880000px;}
.h4_c00134{height:64.020000px;}
.h2_c00134{height:69.168000px;}
.h1_c00134{height:845.250000px;}
.h0_c00134{height:845.400000px;}
.w1_c00134{width:104.875500px;}
.w0_c00134{width:587.250000px;}
.x0_c00134{left:0.000000px;}
.x3_c00134{left:20.700000px;}
.x4_c00134{left:23.700000px;}
.x8_c00134{left:25.650000px;}
.xb_c00134{left:26.700000px;}
.x2_c00134{left:79.650000px;}
.x5_c00134{left:81.000000px;}
.x6_c00134{left:82.050000px;}
.x7_c00134{left:84.150000px;}
.x9_c00134{left:86.100000px;}
.xa_c00134{left:87.450000px;}
.xc_c00134{left:88.800000px;}
.x1_c00134{left:221.700000px;}
.xd_c00134{left:245.439240px;}
@media print{
.v1_c00134{vertical-align:-73.600000pt;}
.v0_c00134{vertical-align:0.000000pt;}
.ls5_c00134{letter-spacing:0.000000pt;}
.ls3_c00134{letter-spacing:2.666667pt;}
.ls6_c00134{letter-spacing:5.333333pt;}
.ls1_c00134{letter-spacing:6.133333pt;}
.ls2_c00134{letter-spacing:6.506667pt;}
.ls0_c00134{letter-spacing:8.000000pt;}
.ls4_c00134{letter-spacing:17.493333pt;}
.ws0_c00134{word-spacing:-20.746667pt;}
.ws1_c00134{word-spacing:-12.586667pt;}
.ws3_c00134{word-spacing:-3.840000pt;}
.ws4_c00134{word-spacing:0.000000pt;}
.ws2_c00134{word-spacing:0.106667pt;}
._3c_c00134{margin-left:-18.506667pt;}
._30_c00134{margin-left:-14.005333pt;}
._1d_c00134{margin-left:-11.893333pt;}
._31_c00134{margin-left:-10.506667pt;}
._22_c00134{margin-left:-8.917333pt;}
._1f_c00134{margin-left:-7.829333pt;}
._28_c00134{margin-left:-5.856000pt;}
._23_c00134{margin-left:-4.736000pt;}
._b_c00134{margin-left:-3.413333pt;}
._6_c00134{margin-left:-1.920000pt;}
._11_c00134{margin-left:-0.960000pt;}
._2_c00134{width:1.226667pt;}
._3_c00134{width:2.186667pt;}
._c_c00134{width:3.136000pt;}
._1_c00134{width:4.224000pt;}
._1b_c00134{width:5.173333pt;}
._d_c00134{width:6.090667pt;}
._9_c00134{width:7.733333pt;}
._8_c00134{width:9.120000pt;}
._10_c00134{width:10.165333pt;}
._1e_c00134{width:11.520000pt;}
._2b_c00134{width:12.565333pt;}
._7_c00134{width:13.600000pt;}
._f_c00134{width:14.826667pt;}
._12_c00134{width:15.733333pt;}
._18_c00134{width:18.080000pt;}
._5_c00134{width:19.146667pt;}
._4_c00134{width:21.013333pt;}
._2f_c00134{width:23.360000pt;}
._1a_c00134{width:24.693333pt;}
._33_c00134{width:25.749333pt;}
._2e_c00134{width:26.688000pt;}
._20_c00134{width:28.533333pt;}
._2d_c00134{width:29.941333pt;}
._15_c00134{width:31.818667pt;}
._29_c00134{width:34.880000pt;}
._0_c00134{width:35.786667pt;}
._25_c00134{width:39.818667pt;}
._2a_c00134{width:40.949333pt;}
._26_c00134{width:41.909333pt;}
._27_c00134{width:43.114667pt;}
._24_c00134{width:44.213333pt;}
._21_c00134{width:45.866667pt;}
._1c_c00134{width:47.232000pt;}
._19_c00134{width:48.256000pt;}
._a_c00134{width:49.536000pt;}
._13_c00134{width:51.509333pt;}
._17_c00134{width:53.610667pt;}
._37_c00134{width:67.701333pt;}
._e_c00134{width:73.600000pt;}
._3e_c00134{width:82.666667pt;}
._16_c00134{width:97.613333pt;}
._38_c00134{width:98.560000pt;}
._34_c00134{width:108.426667pt;}
._32_c00134{width:117.184000pt;}
._14_c00134{width:121.546667pt;}
._2c_c00134{width:158.613333pt;}
._35_c00134{width:166.250667pt;}
._3d_c00134{width:173.109333pt;}
._3b_c00134{width:189.333333pt;}
._39_c00134{width:310.794667pt;}
._3a_c00134{width:312.906667pt;}
._36_c00134{width:357.088000pt;}
._40_c00134{width:678.016000pt;}
._3f_c00134{width:804.074667pt;}
.fs2_c00134{font-size:40.000000pt;}
.fs3_c00134{font-size:42.666667pt;}
.fs1_c00134{font-size:53.333333pt;}
.fs0_c00134{font-size:58.666667pt;}
.y0_c00134{bottom:0.000000pt;}
.y2c_c00134{bottom:2.760000pt;}
.y2b_c00134{bottom:6.425206pt;}
.y2a_c00134{bottom:62.160000pt;}
.y29_c00134{bottom:78.293333pt;}
.y28_c00134{bottom:95.093333pt;}
.y27_c00134{bottom:110.160000pt;}
.y26_c00134{bottom:125.093333pt;}
.y25_c00134{bottom:142.826667pt;}
.y24_c00134{bottom:158.960000pt;}
.y23_c00134{bottom:174.960000pt;}
.y22_c00134{bottom:190.560000pt;}
.y21_c00134{bottom:206.960000pt;}
.y20_c00134{bottom:221.493333pt;}
.y1f_c00134{bottom:238.160000pt;}
.y1e_c00134{bottom:254.960000pt;}
.y1d_c00134{bottom:270.960000pt;}
.y1c_c00134{bottom:286.560000pt;}
.y1b_c00134{bottom:303.093333pt;}
.y1a_c00134{bottom:318.560000pt;}
.y19_c00134{bottom:335.093333pt;}
.y18_c00134{bottom:351.360000pt;}
.y17_c00134{bottom:367.226667pt;}
.y16_c00134{bottom:384.026667pt;}
.y15_c00134{bottom:399.626667pt;}
.y14_c00134{bottom:415.893333pt;}
.y13_c00134{bottom:431.493333pt;}
.y12_c00134{bottom:447.093333pt;}
.y11_c00134{bottom:463.760000pt;}
.y10_c00134{bottom:479.493333pt;}
.yf_c00134{bottom:495.893333pt;}
.ye_c00134{bottom:511.893333pt;}
.yd_c00134{bottom:527.760000pt;}
.yc_c00134{bottom:543.626667pt;}
.yb_c00134{bottom:559.893333pt;}
.ya_c00134{bottom:575.493333pt;}
.y9_c00134{bottom:591.893333pt;}
.y8_c00134{bottom:607.893333pt;}
.y7_c00134{bottom:624.026667pt;}
.y6_c00134{bottom:640.160000pt;}
.y5_c00134{bottom:656.160000pt;}
.y4_c00134{bottom:672.293333pt;}
.y3_c00134{bottom:688.293333pt;}
.y2_c00134{bottom:703.760000pt;}
.y1_c00134{bottom:722.693333pt;}
.h5_c00134{height:11.733399pt;}
.h6_c00134{height:38.937500pt;}
.h3_c00134{height:55.893333pt;}
.h4_c00134{height:56.906667pt;}
.h2_c00134{height:61.482667pt;}
.h1_c00134{height:751.333333pt;}
.h0_c00134{height:751.466667pt;}
.w1_c00134{width:93.222667pt;}
.w0_c00134{width:522.000000pt;}
.x0_c00134{left:0.000000pt;}
.x3_c00134{left:18.400000pt;}
.x4_c00134{left:21.066667pt;}
.x8_c00134{left:22.800000pt;}
.xb_c00134{left:23.733333pt;}
.x2_c00134{left:70.800000pt;}
.x5_c00134{left:72.000000pt;}
.x6_c00134{left:72.933333pt;}
.x7_c00134{left:74.800000pt;}
.x9_c00134{left:76.533333pt;}
.xa_c00134{left:77.733333pt;}
.xc_c00134{left:78.933333pt;}
.x1_c00134{left:197.066667pt;}
.xd_c00134{left:218.168213pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_13a6e7b36f5f052397198b28.woff2')format("woff");}.ff1_c00135{font-family:ff1_c00135;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00135;src:url('chunks/assets/font_b0950ab5ede9850847c771ed.woff2')format("woff");}.ff2_c00135{font-family:ff2_c00135;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00135;src:url('chunks/assets/font_0ce391de997f24f9f9dd37f4.woff2')format("woff");}.ff3_c00135{font-family:ff3_c00135;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00135;src:url('chunks/assets/font_30b6a4f7f192a0942761a202.woff2')format("woff");}.ff4_c00135{font-family:ff4_c00135;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00135;src:url('chunks/assets/font_f4fa1370eadef76f21c1d8d4.woff2')format("woff");}.ff5_c00135{font-family:ff5_c00135;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00135;src:url('chunks/assets/font_e9854a363922f2652cee0b03.woff2')format("woff");}.ff6_c00135{font-family:ff6_c00135;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00135;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff7_c00135{font-family:ff7_c00135;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00135{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00135{vertical-align:0.000000px;}
.ls9_c00135{letter-spacing:0.000000px;}
.ls5_c00135{letter-spacing:0.840000px;}
.ls8_c00135{letter-spacing:3.000000px;}
.ls2_c00135{letter-spacing:4.440000px;}
.ls3_c00135{letter-spacing:6.000000px;}
.ls0_c00135{letter-spacing:7.005000px;}
.ls1_c00135{letter-spacing:9.576000px;}
.ls7_c00135{letter-spacing:16.080000px;}
.ls4_c00135{letter-spacing:23.616000px;}
.ls6_c00135{letter-spacing:37.560000px;}
.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;}
}
.ws4_c00135{word-spacing:-30.240000px;}
.ws5_c00135{word-spacing:-18.060000px;}
.ws0_c00135{word-spacing:-14.160000px;}
.ws1_c00135{word-spacing:-1.512000px;}
.ws2_c00135{word-spacing:-0.216000px;}
.ws6_c00135{word-spacing:0.000000px;}
.ws3_c00135{word-spacing:8.712000px;}
._8_c00135{margin-left:-21.540000px;}
._26_c00135{margin-left:-19.440000px;}
._25_c00135{margin-left:-16.860000px;}
._27_c00135{margin-left:-11.040000px;}
._24_c00135{margin-left:-9.720000px;}
._12_c00135{margin-left:-7.920000px;}
._13_c00135{margin-left:-6.600000px;}
._d_c00135{margin-left:-4.920000px;}
._b_c00135{margin-left:-3.780000px;}
._7_c00135{margin-left:-2.220000px;}
._4_c00135{margin-left:-1.020000px;}
._2_c00135{width:1.200000px;}
._5_c00135{width:2.280000px;}
._9_c00135{width:3.660000px;}
._c_c00135{width:5.280000px;}
._a_c00135{width:6.720000px;}
._14_c00135{width:8.100000px;}
._1_c00135{width:9.240000px;}
._15_c00135{width:10.620000px;}
._3_c00135{width:11.640000px;}
._f_c00135{width:13.140000px;}
._1f_c00135{width:14.148000px;}
._0_c00135{width:15.180000px;}
._1c_c00135{width:16.668000px;}
._18_c00135{width:18.528000px;}
._1d_c00135{width:19.932000px;}
._20_c00135{width:21.720000px;}
._11_c00135{width:22.980000px;}
._19_c00135{width:25.116000px;}
._16_c00135{width:26.520000px;}
._1e_c00135{width:27.744000px;}
._1b_c00135{width:29.040000px;}
._1a_c00135{width:31.464000px;}
._10_c00135{width:32.580000px;}
._21_c00135{width:33.600000px;}
._28_c00135{width:35.940000px;}
._6_c00135{width:38.220000px;}
._23_c00135{width:42.840000px;}
._17_c00135{width:46.920000px;}
._22_c00135{width:48.780000px;}
._e_c00135{width:194.400000px;}
.fc2_c00135{color:transparent;}
.fc1_c00135{color:rgb(128,128,128);}
.fc0_c00135{color:rgb(0,0,0);}
.fs3_c00135{font-size:24.000000px;}
.fs1_c00135{font-size:45.000000px;}
.fs2_c00135{font-size:48.000000px;}
.fs0_c00135{font-size:60.000000px;}
.y0_c00135{bottom:0.000000px;}
.y4f_c00135{bottom:3.105000px;}
.y4e_c00135{bottom:7.228355px;}
.y4d_c00135{bottom:46.185000px;}
.y4c_c00135{bottom:64.785000px;}
.y24_c00135{bottom:65.385000px;}
.y23_c00135{bottom:82.335000px;}
.y4b_c00135{bottom:83.985000px;}
.y22_c00135{bottom:100.485000px;}
.y4a_c00135{bottom:102.135000px;}
.y49_c00135{bottom:120.135000px;}
.y21_c00135{bottom:120.435000px;}
.y48_c00135{bottom:138.285000px;}
.y20_c00135{bottom:138.585000px;}
.y47_c00135{bottom:156.585000px;}
.y1f_c00135{bottom:157.185000px;}
.y46_c00135{bottom:174.135000px;}
.y1e_c00135{bottom:175.485000px;}
.y1d_c00135{bottom:192.735000px;}
.y1c_c00135{bottom:211.185000px;}
.y45_c00135{bottom:211.485000px;}
.y1b_c00135{bottom:229.035000px;}
.y1a_c00135{bottom:247.035000px;}
.y44_c00135{bottom:247.335000px;}
.y19_c00135{bottom:264.285000px;}
.y43_c00135{bottom:265.485000px;}
.y18_c00135{bottom:281.835000px;}
.y42_c00135{bottom:283.185000px;}
.y17_c00135{bottom:300.285000px;}
.y41_c00135{bottom:301.635000px;}
.y16_c00135{bottom:317.835000px;}
.y40_c00135{bottom:319.485000px;}
.y15_c00135{bottom:337.035000px;}
.y3f_c00135{bottom:337.785000px;}
.y14_c00135{bottom:355.035000px;}
.y3e_c00135{bottom:355.635000px;}
.y13_c00135{bottom:372.135000px;}
.y3d_c00135{bottom:373.635000px;}
.y12_c00135{bottom:390.135000px;}
.y3c_c00135{bottom:391.185000px;}
.y11_c00135{bottom:408.285000px;}
.y3b_c00135{bottom:408.735000px;}
.y10_c00135{bottom:425.835000px;}
.y3a_c00135{bottom:427.935000px;}
.yf_c00135{bottom:444.735000px;}
.y39_c00135{bottom:446.085000px;}
.ye_c00135{bottom:462.285000px;}
.y38_c00135{bottom:464.085000px;}
.yd_c00135{bottom:480.885000px;}
.y37_c00135{bottom:481.935000px;}
.yc_c00135{bottom:498.135000px;}
.y36_c00135{bottom:500.085000px;}
.yb_c00135{bottom:516.285000px;}
.y35_c00135{bottom:518.385000px;}
.ya_c00135{bottom:535.185000px;}
.y34_c00135{bottom:536.235000px;}
.y33_c00135{bottom:554.085000px;}
.y9_c00135{bottom:570.735000px;}
.y32_c00135{bottom:571.935000px;}
.y8_c00135{bottom:588.885000px;}
.y31_c00135{bottom:590.535000px;}
.y7_c00135{bottom:606.735000px;}
.y30_c00135{bottom:608.835000px;}
.y6_c00135{bottom:625.035000px;}
.y2f_c00135{bottom:626.685000px;}
.y2e_c00135{bottom:644.835000px;}
.y5_c00135{bottom:660.735000px;}
.y2d_c00135{bottom:662.835000px;}
.y4_c00135{bottom:679.935000px;}
.y2c_c00135{bottom:680.685000px;}
.y3_c00135{bottom:697.935000px;}
.y2b_c00135{bottom:698.535000px;}
.y2_c00135{bottom:716.085000px;}
.y2a_c00135{bottom:716.835000px;}
.y1_c00135{bottom:733.035000px;}
.y29_c00135{bottom:734.985000px;}
.y28_c00135{bottom:753.285000px;}
.y27_c00135{bottom:771.135000px;}
.y26_c00135{bottom:788.685000px;}
.y25_c00135{bottom:808.635000px;}
.h4_c00135{height:13.200074px;}
.h3_c00135{height:30.386719px;}
.h5_c00135{height:43.804688px;}
.h2_c00135{height:62.880000px;}
.h1_c00135{height:841.500000px;}
.h0_c00135{height:841.575000px;}
.w2_c00135{width:104.875500px;}
.w0_c00135{width:581.850000px;}
.w1_c00135{width:582.000000px;}
.x0_c00135{left:0.000000px;}
.x8_c00135{left:42.750000px;}
.x6_c00135{left:44.250000px;}
.x9_c00135{left:98.250000px;}
.x3_c00135{left:100.650000px;}
.x2_c00135{left:101.700000px;}
.x7_c00135{left:103.950000px;}
.x5_c00135{left:135.900000px;}
.x1_c00135{left:140.850000px;}
.xa_c00135{left:172.800000px;}
.x4_c00135{left:177.900000px;}
.x12_c00135{left:242.739258px;}
.xb_c00135{left:316.650000px;}
.xc_c00135{left:317.850000px;}
.xd_c00135{left:318.900000px;}
.xe_c00135{left:319.950000px;}
.x10_c00135{left:321.300000px;}
.xf_c00135{left:342.450000px;}
.x11_c00135{left:498.150000px;}
@media print{
.v0_c00135{vertical-align:0.000000pt;}
.ls9_c00135{letter-spacing:0.000000pt;}
.ls5_c00135{letter-spacing:0.746667pt;}
.ls8_c00135{letter-spacing:2.666667pt;}
.ls2_c00135{letter-spacing:3.946667pt;}
.ls3_c00135{letter-spacing:5.333333pt;}
.ls0_c00135{letter-spacing:6.226667pt;}
.ls1_c00135{letter-spacing:8.512000pt;}
.ls7_c00135{letter-spacing:14.293333pt;}
.ls4_c00135{letter-spacing:20.992000pt;}
.ls6_c00135{letter-spacing:33.386667pt;}
.ws4_c00135{word-spacing:-26.880000pt;}
.ws5_c00135{word-spacing:-16.053333pt;}
.ws0_c00135{word-spacing:-12.586667pt;}
.ws1_c00135{word-spacing:-1.344000pt;}
.ws2_c00135{word-spacing:-0.192000pt;}
.ws6_c00135{word-spacing:0.000000pt;}
.ws3_c00135{word-spacing:7.744000pt;}
._8_c00135{margin-left:-19.146667pt;}
._26_c00135{margin-left:-17.280000pt;}
._25_c00135{margin-left:-14.986667pt;}
._27_c00135{margin-left:-9.813333pt;}
._24_c00135{margin-left:-8.640000pt;}
._12_c00135{margin-left:-7.040000pt;}
._13_c00135{margin-left:-5.866667pt;}
._d_c00135{margin-left:-4.373333pt;}
._b_c00135{margin-left:-3.360000pt;}
._7_c00135{margin-left:-1.973333pt;}
._4_c00135{margin-left:-0.906667pt;}
._2_c00135{width:1.066667pt;}
._5_c00135{width:2.026667pt;}
._9_c00135{width:3.253333pt;}
._c_c00135{width:4.693333pt;}
._a_c00135{width:5.973333pt;}
._14_c00135{width:7.200000pt;}
._1_c00135{width:8.213333pt;}
._15_c00135{width:9.440000pt;}
._3_c00135{width:10.346667pt;}
._f_c00135{width:11.680000pt;}
._1f_c00135{width:12.576000pt;}
._0_c00135{width:13.493333pt;}
._1c_c00135{width:14.816000pt;}
._18_c00135{width:16.469333pt;}
._1d_c00135{width:17.717333pt;}
._20_c00135{width:19.306667pt;}
._11_c00135{width:20.426667pt;}
._19_c00135{width:22.325333pt;}
._16_c00135{width:23.573333pt;}
._1e_c00135{width:24.661333pt;}
._1b_c00135{width:25.813333pt;}
._1a_c00135{width:27.968000pt;}
._10_c00135{width:28.960000pt;}
._21_c00135{width:29.866667pt;}
._28_c00135{width:31.946667pt;}
._6_c00135{width:33.973333pt;}
._23_c00135{width:38.080000pt;}
._17_c00135{width:41.706667pt;}
._22_c00135{width:43.360000pt;}
._e_c00135{width:172.800000pt;}
.fs3_c00135{font-size:21.333333pt;}
.fs1_c00135{font-size:40.000000pt;}
.fs2_c00135{font-size:42.666667pt;}
.fs0_c00135{font-size:53.333333pt;}
.y0_c00135{bottom:0.000000pt;}
.y4f_c00135{bottom:2.760000pt;}
.y4e_c00135{bottom:6.425204pt;}
.y4d_c00135{bottom:41.053333pt;}
.y4c_c00135{bottom:57.586667pt;}
.y24_c00135{bottom:58.120000pt;}
.y23_c00135{bottom:73.186667pt;}
.y4b_c00135{bottom:74.653333pt;}
.y22_c00135{bottom:89.320000pt;}
.y4a_c00135{bottom:90.786667pt;}
.y49_c00135{bottom:106.786667pt;}
.y21_c00135{bottom:107.053333pt;}
.y48_c00135{bottom:122.920000pt;}
.y20_c00135{bottom:123.186667pt;}
.y47_c00135{bottom:139.186667pt;}
.y1f_c00135{bottom:139.720000pt;}
.y46_c00135{bottom:154.786667pt;}
.y1e_c00135{bottom:155.986667pt;}
.y1d_c00135{bottom:171.320000pt;}
.y1c_c00135{bottom:187.720000pt;}
.y45_c00135{bottom:187.986667pt;}
.y1b_c00135{bottom:203.586667pt;}
.y1a_c00135{bottom:219.586667pt;}
.y44_c00135{bottom:219.853333pt;}
.y19_c00135{bottom:234.920000pt;}
.y43_c00135{bottom:235.986667pt;}
.y18_c00135{bottom:250.520000pt;}
.y42_c00135{bottom:251.720000pt;}
.y17_c00135{bottom:266.920000pt;}
.y41_c00135{bottom:268.120000pt;}
.y16_c00135{bottom:282.520000pt;}
.y40_c00135{bottom:283.986667pt;}
.y15_c00135{bottom:299.586667pt;}
.y3f_c00135{bottom:300.253333pt;}
.y14_c00135{bottom:315.586667pt;}
.y3e_c00135{bottom:316.120000pt;}
.y13_c00135{bottom:330.786667pt;}
.y3d_c00135{bottom:332.120000pt;}
.y12_c00135{bottom:346.786667pt;}
.y3c_c00135{bottom:347.720000pt;}
.y11_c00135{bottom:362.920000pt;}
.y3b_c00135{bottom:363.320000pt;}
.y10_c00135{bottom:378.520000pt;}
.y3a_c00135{bottom:380.386667pt;}
.yf_c00135{bottom:395.320000pt;}
.y39_c00135{bottom:396.520000pt;}
.ye_c00135{bottom:410.920000pt;}
.y38_c00135{bottom:412.520000pt;}
.yd_c00135{bottom:427.453333pt;}
.y37_c00135{bottom:428.386667pt;}
.yc_c00135{bottom:442.786667pt;}
.y36_c00135{bottom:444.520000pt;}
.yb_c00135{bottom:458.920000pt;}
.y35_c00135{bottom:460.786667pt;}
.ya_c00135{bottom:475.720000pt;}
.y34_c00135{bottom:476.653333pt;}
.y33_c00135{bottom:492.520000pt;}
.y9_c00135{bottom:507.320000pt;}
.y32_c00135{bottom:508.386667pt;}
.y8_c00135{bottom:523.453333pt;}
.y31_c00135{bottom:524.920000pt;}
.y7_c00135{bottom:539.320000pt;}
.y30_c00135{bottom:541.186667pt;}
.y6_c00135{bottom:555.586667pt;}
.y2f_c00135{bottom:557.053333pt;}
.y2e_c00135{bottom:573.186667pt;}
.y5_c00135{bottom:587.320000pt;}
.y2d_c00135{bottom:589.186667pt;}
.y4_c00135{bottom:604.386667pt;}
.y2c_c00135{bottom:605.053333pt;}
.y3_c00135{bottom:620.386667pt;}
.y2b_c00135{bottom:620.920000pt;}
.y2_c00135{bottom:636.520000pt;}
.y2a_c00135{bottom:637.186667pt;}
.y1_c00135{bottom:651.586667pt;}
.y29_c00135{bottom:653.320000pt;}
.y28_c00135{bottom:669.586667pt;}
.y27_c00135{bottom:685.453333pt;}
.y26_c00135{bottom:701.053333pt;}
.y25_c00135{bottom:718.786667pt;}
.h4_c00135{height:11.733399pt;}
.h3_c00135{height:27.010417pt;}
.h5_c00135{height:38.937500pt;}
.h2_c00135{height:55.893333pt;}
.h1_c00135{height:748.000000pt;}
.h0_c00135{height:748.066667pt;}
.w2_c00135{width:93.222667pt;}
.w0_c00135{width:517.200000pt;}
.w1_c00135{width:517.333333pt;}
.x0_c00135{left:0.000000pt;}
.x8_c00135{left:38.000000pt;}
.x6_c00135{left:39.333333pt;}
.x9_c00135{left:87.333333pt;}
.x3_c00135{left:89.466667pt;}
.x2_c00135{left:90.400000pt;}
.x7_c00135{left:92.400000pt;}
.x5_c00135{left:120.800000pt;}
.x1_c00135{left:125.200000pt;}
.xa_c00135{left:153.600000pt;}
.x4_c00135{left:158.133333pt;}
.x12_c00135{left:215.768229pt;}
.xb_c00135{left:281.466667pt;}
.xc_c00135{left:282.533333pt;}
.xd_c00135{left:283.466667pt;}
.xe_c00135{left:284.400000pt;}
.x10_c00135{left:285.600000pt;}
.xf_c00135{left:304.400000pt;}
.x11_c00135{left:442.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_6e80c37eeec0c3af183c7f16.woff2')format("woff");}.ff1_c00136{font-family:ff1_c00136;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00136;src:url('chunks/assets/font_92390fcc6bd25e6782dd09e5.woff2')format("woff");}.ff2_c00136{font-family:ff2_c00136;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00136;src:url('chunks/assets/font_10ad43db494a43914f915444.woff2')format("woff");}.ff3_c00136{font-family:ff3_c00136;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00136;src:url('chunks/assets/font_c520bf08d8d2eb882b634691.woff2')format("woff");}.ff4_c00136{font-family:ff4_c00136;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00136;src:url('chunks/assets/font_b8fb1fc1a489ea3e8f8ac40f.woff2')format("woff");}.ff5_c00136{font-family:ff5_c00136;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00136;src:url('chunks/assets/font_3742996e0fb6b3460dd9c85c.woff2')format("woff");}.ff6_c00136{font-family:ff6_c00136;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00136;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff7_c00136{font-family:ff7_c00136;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00136{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00136{vertical-align:0.000000px;}
.ls3_c00136{letter-spacing:0.000000px;}
.ls0_c00136{letter-spacing:3.000000px;}
.ls4_c00136{letter-spacing:6.000000px;}
.ls2_c00136{letter-spacing:8.400000px;}
.ls1_c00136{letter-spacing:15.540000px;}
.sc__c00136{text-shadow:none;}
.sc0_c00136{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00136{-webkit-text-stroke:0px transparent;}
.sc0_c00136{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00136{word-spacing:-45.876000px;}
.ws3_c00136{word-spacing:-18.060000px;}
.ws2_c00136{word-spacing:-18.057000px;}
.ws0_c00136{word-spacing:-14.160000px;}
.ws4_c00136{word-spacing:0.000000px;}
._24_c00136{margin-left:-11.487000px;}
._23_c00136{margin-left:-10.200000px;}
._12_c00136{margin-left:-8.853000px;}
._1c_c00136{margin-left:-7.536000px;}
._c_c00136{margin-left:-6.000000px;}
._b_c00136{margin-left:-4.662000px;}
._d_c00136{margin-left:-3.438000px;}
._4_c00136{margin-left:-2.400000px;}
._a_c00136{margin-left:-1.380000px;}
._f_c00136{width:1.119000px;}
._5_c00136{width:2.181000px;}
._8_c00136{width:3.399000px;}
._7_c00136{width:4.959000px;}
._6_c00136{width:6.717000px;}
._1_c00136{width:8.379000px;}
._e_c00136{width:9.780000px;}
._0_c00136{width:10.899000px;}
._13_c00136{width:12.378000px;}
._3_c00136{width:13.419000px;}
._20_c00136{width:14.520000px;}
._1e_c00136{width:15.558000px;}
._19_c00136{width:16.980000px;}
._9_c00136{width:19.323000px;}
._11_c00136{width:21.060000px;}
._1a_c00136{width:23.511000px;}
._1f_c00136{width:24.744000px;}
._10_c00136{width:27.000000px;}
._15_c00136{width:28.656000px;}
._16_c00136{width:29.685000px;}
._1d_c00136{width:33.636000px;}
._2_c00136{width:36.099000px;}
._17_c00136{width:40.518000px;}
._14_c00136{width:42.483000px;}
._18_c00136{width:44.898000px;}
._1b_c00136{width:47.319000px;}
._22_c00136{width:125.208000px;}
._21_c00136{width:189.420000px;}
.fc2_c00136{color:transparent;}
.fc1_c00136{color:rgb(128,128,128);}
.fc0_c00136{color:rgb(0,0,0);}
.fs5_c00136{font-size:48.000000px;}
.fs4_c00136{font-size:51.000000px;}
.fs2_c00136{font-size:54.000000px;}
.fs1_c00136{font-size:60.000000px;}
.fs0_c00136{font-size:63.000000px;}
.fs3_c00136{font-size:69.000000px;}
.y0_c00136{bottom:0.000000px;}
.y53_c00136{bottom:3.105000px;}
.y52_c00136{bottom:7.228363px;}
.y51_c00136{bottom:37.800000px;}
.y2a_c00136{bottom:56.100000px;}
.y50_c00136{bottom:57.000000px;}
.y4f_c00136{bottom:75.300000px;}
.y29_c00136{bottom:76.650000px;}
.y4e_c00136{bottom:92.250000px;}
.y28_c00136{bottom:93.900000px;}
.y4d_c00136{bottom:111.600000px;}
.y27_c00136{bottom:112.350000px;}
.y4c_c00136{bottom:129.900000px;}
.y26_c00136{bottom:130.650000px;}
.y4b_c00136{bottom:147.150000px;}
.y25_c00136{bottom:148.050000px;}
.y4a_c00136{bottom:165.000000px;}
.y24_c00136{bottom:166.500000px;}
.y49_c00136{bottom:182.850000px;}
.y23_c00136{bottom:185.250000px;}
.y48_c00136{bottom:201.450000px;}
.y22_c00136{bottom:202.800000px;}
.y47_c00136{bottom:219.300000px;}
.y21_c00136{bottom:221.100000px;}
.y46_c00136{bottom:238.650000px;}
.y20_c00136{bottom:239.250000px;}
.y1f_c00136{bottom:256.950000px;}
.y45_c00136{bottom:257.100000px;}
.y44_c00136{bottom:275.100000px;}
.y1e_c00136{bottom:275.400000px;}
.y43_c00136{bottom:293.250000px;}
.y1d_c00136{bottom:294.600000px;}
.y1c_c00136{bottom:310.950000px;}
.y42_c00136{bottom:311.100000px;}
.y1b_c00136{bottom:330.150000px;}
.y41_c00136{bottom:330.450000px;}
.y40_c00136{bottom:348.000000px;}
.y1a_c00136{bottom:349.050000px;}
.y3f_c00136{bottom:366.450000px;}
.y19_c00136{bottom:366.600000px;}
.y3e_c00136{bottom:383.700000px;}
.y18_c00136{bottom:385.050000px;}
.y3d_c00136{bottom:401.550000px;}
.y17_c00136{bottom:402.300000px;}
.y3c_c00136{bottom:420.450000px;}
.y16_c00136{bottom:422.550000px;}
.y3b_c00136{bottom:439.050000px;}
.y15_c00136{bottom:440.400000px;}
.y14_c00136{bottom:457.050000px;}
.y3a_c00136{bottom:457.200000px;}
.y39_c00136{bottom:474.450000px;}
.y13_c00136{bottom:474.900000px;}
.y12_c00136{bottom:492.750000px;}
.y38_c00136{bottom:493.050000px;}
.y11_c00136{bottom:510.750000px;}
.y37_c00136{bottom:511.950000px;}
.y10_c00136{bottom:528.900000px;}
.y36_c00136{bottom:529.200000px;}
.yf_c00136{bottom:547.050000px;}
.y35_c00136{bottom:547.350000px;}
.ye_c00136{bottom:565.350000px;}
.yd_c00136{bottom:582.900000px;}
.y34_c00136{bottom:583.500000px;}
.yc_c00136{bottom:601.800000px;}
.yb_c00136{bottom:619.650000px;}
.y33_c00136{bottom:619.950000px;}
.y32_c00136{bottom:637.500000px;}
.ya_c00136{bottom:637.650000px;}
.y31_c00136{bottom:654.150000px;}
.y9_c00136{bottom:655.500000px;}
.y30_c00136{bottom:673.050000px;}
.y8_c00136{bottom:673.350000px;}
.y2f_c00136{bottom:690.900000px;}
.y7_c00136{bottom:691.650000px;}
.y6_c00136{bottom:709.500000px;}
.y2e_c00136{bottom:727.050000px;}
.y5_c00136{bottom:727.650000px;}
.y2d_c00136{bottom:745.200000px;}
.y4_c00136{bottom:745.650000px;}
.y2c_c00136{bottom:763.800000px;}
.y3_c00136{bottom:764.400000px;}
.y2b_c00136{bottom:781.650000px;}
.y2_c00136{bottom:781.950000px;}
.y1_c00136{bottom:801.600000px;}
.h6_c00136{height:13.200074px;}
.h7_c00136{height:43.804688px;}
.h3_c00136{height:62.880000px;}
.h5_c00136{height:64.020000px;}
.h2_c00136{height:66.024000px;}
.h4_c00136{height:72.312000px;}
.h0_c00136{height:831.600000px;}
.h1_c00136{height:831.750000px;}
.w2_c00136{width:104.875500px;}
.w0_c00136{width:577.275000px;}
.w1_c00136{width:577.500000px;}
.x0_c00136{left:0.000000px;}
.x9_c00136{left:12.600000px;}
.x6_c00136{left:51.600000px;}
.x2_c00136{left:67.500000px;}
.x3_c00136{left:68.550000px;}
.x5_c00136{left:69.900000px;}
.x7_c00136{left:71.550000px;}
.x8_c00136{left:73.800000px;}
.xa_c00136{left:74.850000px;}
.xc_c00136{left:76.500000px;}
.x4_c00136{left:85.050000px;}
.xb_c00136{left:103.500000px;}
.x1_c00136{left:199.800000px;}
.x15_c00136{left:240.451767px;}
.xd_c00136{left:285.450000px;}
.xe_c00136{left:286.500000px;}
.x10_c00136{left:288.150000px;}
.x11_c00136{left:289.200000px;}
.x12_c00136{left:290.250000px;}
.x13_c00136{left:291.300000px;}
.xf_c00136{left:319.950000px;}
.x14_c00136{left:458.250000px;}
@media print{
.v0_c00136{vertical-align:0.000000pt;}
.ls3_c00136{letter-spacing:0.000000pt;}
.ls0_c00136{letter-spacing:2.666667pt;}
.ls4_c00136{letter-spacing:5.333333pt;}
.ls2_c00136{letter-spacing:7.466667pt;}
.ls1_c00136{letter-spacing:13.813333pt;}
.ws1_c00136{word-spacing:-40.778667pt;}
.ws3_c00136{word-spacing:-16.053333pt;}
.ws2_c00136{word-spacing:-16.050667pt;}
.ws0_c00136{word-spacing:-12.586667pt;}
.ws4_c00136{word-spacing:0.000000pt;}
._24_c00136{margin-left:-10.210667pt;}
._23_c00136{margin-left:-9.066667pt;}
._12_c00136{margin-left:-7.869333pt;}
._1c_c00136{margin-left:-6.698667pt;}
._c_c00136{margin-left:-5.333333pt;}
._b_c00136{margin-left:-4.144000pt;}
._d_c00136{margin-left:-3.056000pt;}
._4_c00136{margin-left:-2.133333pt;}
._a_c00136{margin-left:-1.226667pt;}
._f_c00136{width:0.994667pt;}
._5_c00136{width:1.938667pt;}
._8_c00136{width:3.021333pt;}
._7_c00136{width:4.408000pt;}
._6_c00136{width:5.970667pt;}
._1_c00136{width:7.448000pt;}
._e_c00136{width:8.693333pt;}
._0_c00136{width:9.688000pt;}
._13_c00136{width:11.002667pt;}
._3_c00136{width:11.928000pt;}
._20_c00136{width:12.906667pt;}
._1e_c00136{width:13.829333pt;}
._19_c00136{width:15.093333pt;}
._9_c00136{width:17.176000pt;}
._11_c00136{width:18.720000pt;}
._1a_c00136{width:20.898667pt;}
._1f_c00136{width:21.994667pt;}
._10_c00136{width:24.000000pt;}
._15_c00136{width:25.472000pt;}
._16_c00136{width:26.386667pt;}
._1d_c00136{width:29.898667pt;}
._2_c00136{width:32.088000pt;}
._17_c00136{width:36.016000pt;}
._14_c00136{width:37.762667pt;}
._18_c00136{width:39.909333pt;}
._1b_c00136{width:42.061333pt;}
._22_c00136{width:111.296000pt;}
._21_c00136{width:168.373333pt;}
.fs5_c00136{font-size:42.666667pt;}
.fs4_c00136{font-size:45.333333pt;}
.fs2_c00136{font-size:48.000000pt;}
.fs1_c00136{font-size:53.333333pt;}
.fs0_c00136{font-size:56.000000pt;}
.fs3_c00136{font-size:61.333333pt;}
.y0_c00136{bottom:0.000000pt;}
.y53_c00136{bottom:2.760000pt;}
.y52_c00136{bottom:6.425212pt;}
.y51_c00136{bottom:33.600000pt;}
.y2a_c00136{bottom:49.866667pt;}
.y50_c00136{bottom:50.666667pt;}
.y4f_c00136{bottom:66.933333pt;}
.y29_c00136{bottom:68.133333pt;}
.y4e_c00136{bottom:82.000000pt;}
.y28_c00136{bottom:83.466667pt;}
.y4d_c00136{bottom:99.200000pt;}
.y27_c00136{bottom:99.866667pt;}
.y4c_c00136{bottom:115.466667pt;}
.y26_c00136{bottom:116.133333pt;}
.y4b_c00136{bottom:130.800000pt;}
.y25_c00136{bottom:131.600000pt;}
.y4a_c00136{bottom:146.666667pt;}
.y24_c00136{bottom:148.000000pt;}
.y49_c00136{bottom:162.533333pt;}
.y23_c00136{bottom:164.666667pt;}
.y48_c00136{bottom:179.066667pt;}
.y22_c00136{bottom:180.266667pt;}
.y47_c00136{bottom:194.933333pt;}
.y21_c00136{bottom:196.533333pt;}
.y46_c00136{bottom:212.133333pt;}
.y20_c00136{bottom:212.666667pt;}
.y1f_c00136{bottom:228.400000pt;}
.y45_c00136{bottom:228.533333pt;}
.y44_c00136{bottom:244.533333pt;}
.y1e_c00136{bottom:244.800000pt;}
.y43_c00136{bottom:260.666667pt;}
.y1d_c00136{bottom:261.866667pt;}
.y1c_c00136{bottom:276.400000pt;}
.y42_c00136{bottom:276.533333pt;}
.y1b_c00136{bottom:293.466667pt;}
.y41_c00136{bottom:293.733333pt;}
.y40_c00136{bottom:309.333333pt;}
.y1a_c00136{bottom:310.266667pt;}
.y3f_c00136{bottom:325.733333pt;}
.y19_c00136{bottom:325.866667pt;}
.y3e_c00136{bottom:341.066667pt;}
.y18_c00136{bottom:342.266667pt;}
.y3d_c00136{bottom:356.933333pt;}
.y17_c00136{bottom:357.600000pt;}
.y3c_c00136{bottom:373.733333pt;}
.y16_c00136{bottom:375.600000pt;}
.y3b_c00136{bottom:390.266667pt;}
.y15_c00136{bottom:391.466667pt;}
.y14_c00136{bottom:406.266667pt;}
.y3a_c00136{bottom:406.400000pt;}
.y39_c00136{bottom:421.733333pt;}
.y13_c00136{bottom:422.133333pt;}
.y12_c00136{bottom:438.000000pt;}
.y38_c00136{bottom:438.266667pt;}
.y11_c00136{bottom:454.000000pt;}
.y37_c00136{bottom:455.066667pt;}
.y10_c00136{bottom:470.133333pt;}
.y36_c00136{bottom:470.400000pt;}
.yf_c00136{bottom:486.266667pt;}
.y35_c00136{bottom:486.533333pt;}
.ye_c00136{bottom:502.533333pt;}
.yd_c00136{bottom:518.133333pt;}
.y34_c00136{bottom:518.666667pt;}
.yc_c00136{bottom:534.933333pt;}
.yb_c00136{bottom:550.800000pt;}
.y33_c00136{bottom:551.066667pt;}
.y32_c00136{bottom:566.666667pt;}
.ya_c00136{bottom:566.800000pt;}
.y31_c00136{bottom:581.466667pt;}
.y9_c00136{bottom:582.666667pt;}
.y30_c00136{bottom:598.266667pt;}
.y8_c00136{bottom:598.533333pt;}
.y2f_c00136{bottom:614.133333pt;}
.y7_c00136{bottom:614.800000pt;}
.y6_c00136{bottom:630.666667pt;}
.y2e_c00136{bottom:646.266667pt;}
.y5_c00136{bottom:646.800000pt;}
.y2d_c00136{bottom:662.400000pt;}
.y4_c00136{bottom:662.800000pt;}
.y2c_c00136{bottom:678.933333pt;}
.y3_c00136{bottom:679.466667pt;}
.y2b_c00136{bottom:694.800000pt;}
.y2_c00136{bottom:695.066667pt;}
.y1_c00136{bottom:712.533333pt;}
.h6_c00136{height:11.733399pt;}
.h7_c00136{height:38.937500pt;}
.h3_c00136{height:55.893333pt;}
.h5_c00136{height:56.906667pt;}
.h2_c00136{height:58.688000pt;}
.h4_c00136{height:64.277333pt;}
.h0_c00136{height:739.200000pt;}
.h1_c00136{height:739.333333pt;}
.w2_c00136{width:93.222667pt;}
.w0_c00136{width:513.133333pt;}
.w1_c00136{width:513.333333pt;}
.x0_c00136{left:0.000000pt;}
.x9_c00136{left:11.200000pt;}
.x6_c00136{left:45.866667pt;}
.x2_c00136{left:60.000000pt;}
.x3_c00136{left:60.933333pt;}
.x5_c00136{left:62.133333pt;}
.x7_c00136{left:63.600000pt;}
.x8_c00136{left:65.600000pt;}
.xa_c00136{left:66.533333pt;}
.xc_c00136{left:68.000000pt;}
.x4_c00136{left:75.600000pt;}
.xb_c00136{left:92.000000pt;}
.x1_c00136{left:177.600000pt;}
.x15_c00136{left:213.734904pt;}
.xd_c00136{left:253.733333pt;}
.xe_c00136{left:254.666667pt;}
.x10_c00136{left:256.133333pt;}
.x11_c00136{left:257.066667pt;}
.x12_c00136{left:258.000000pt;}
.x13_c00136{left:258.933333pt;}
.xf_c00136{left:284.400000pt;}
.x14_c00136{left:407.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_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_f3739f951fa82eeaaecb7a5a.woff2')format("woff");}.ff1_c00137{font-family:ff1_c00137;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00137;src:url('chunks/assets/font_9887db2c175cdfdf264d1b34.woff2')format("woff");}.ff2_c00137{font-family:ff2_c00137;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00137;src:url('chunks/assets/font_5caa7846b4d859d66526829c.woff2')format("woff");}.ff3_c00137{font-family:ff3_c00137;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00137;src:url('chunks/assets/font_592a65d30d797b6c88181342.woff2')format("woff");}.ff4_c00137{font-family:ff4_c00137;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00137;src:url('chunks/assets/font_0ce391de997f24f9f9dd37f4.woff2')format("woff");}.ff5_c00137{font-family:ff5_c00137;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00137;src:url('chunks/assets/font_84b7beee46d00507a3c0d12e.woff2')format("woff");}.ff6_c00137{font-family:ff6_c00137;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00137;src:url('chunks/assets/font_e3ff00cfe008e48e061e3c99.woff2')format("woff");}.ff7_c00137{font-family:ff7_c00137;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00137;src:url('chunks/assets/font_f42780f81919c08fa5f265c8.woff2')format("woff");}.ff8_c00137{font-family:ff8_c00137;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00137;src:url('chunks/assets/font_520d8011802712bd7511de5d.woff2')format("woff");}.ff9_c00137{font-family:ff9_c00137;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00137;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ffa_c00137{font-family:ffa_c00137;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00137{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00137{vertical-align:0.000000px;}
.v2_c00137{vertical-align:2.400000px;}
.v1_c00137{vertical-align:110.400000px;}
.ls8_c00137{letter-spacing:0.000000px;}
.ls7_c00137{letter-spacing:0.300000px;}
.ls0_c00137{letter-spacing:3.000000px;}
.ls3_c00137{letter-spacing:3.600000px;}
.ls4_c00137{letter-spacing:4.860000px;}
.ls9_c00137{letter-spacing:6.000000px;}
.ls6_c00137{letter-spacing:7.680000px;}
.ls1_c00137{letter-spacing:11.205000px;}
.ls5_c00137{letter-spacing:11.880000px;}
.lsa_c00137{letter-spacing:12.000000px;}
.ls2_c00137{letter-spacing:26.682000px;}
.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;}
}
.ws3_c00137{word-spacing:-30.303000px;}
.ws1_c00137{word-spacing:-21.000000px;}
.ws0_c00137{word-spacing:-14.160000px;}
.ws2_c00137{word-spacing:-13.053000px;}
.ws4_c00137{word-spacing:0.000000px;}
._22_c00137{margin-left:-18.501000px;}
._14_c00137{margin-left:-13.440000px;}
._2b_c00137{margin-left:-12.060000px;}
._27_c00137{margin-left:-10.980000px;}
._2a_c00137{margin-left:-9.840000px;}
._d_c00137{margin-left:-8.760000px;}
._0_c00137{margin-left:-6.360000px;}
._c_c00137{margin-left:-5.100000px;}
._9_c00137{margin-left:-4.020000px;}
._e_c00137{margin-left:-3.000000px;}
._12_c00137{margin-left:-1.020000px;}
._7_c00137{width:1.260000px;}
._6_c00137{width:2.280000px;}
._16_c00137{width:3.300000px;}
._8_c00137{width:4.320000px;}
._b_c00137{width:5.820000px;}
._13_c00137{width:6.900000px;}
._1a_c00137{width:8.100000px;}
._15_c00137{width:9.240000px;}
._f_c00137{width:10.281000px;}
._1b_c00137{width:11.940000px;}
._2_c00137{width:13.800000px;}
._3_c00137{width:15.240000px;}
._4_c00137{width:16.440000px;}
._a_c00137{width:21.360000px;}
._5_c00137{width:23.100000px;}
._19_c00137{width:24.420000px;}
._18_c00137{width:27.180000px;}
._26_c00137{width:28.464000px;}
._17_c00137{width:31.020000px;}
._10_c00137{width:33.396000px;}
._1c_c00137{width:35.580000px;}
._25_c00137{width:38.040000px;}
._21_c00137{width:39.120000px;}
._29_c00137{width:45.240000px;}
._23_c00137{width:50.100000px;}
._1e_c00137{width:58.020000px;}
._24_c00137{width:59.400000px;}
._1d_c00137{width:69.720000px;}
._20_c00137{width:105.459000px;}
._11_c00137{width:133.080000px;}
._1f_c00137{width:135.240000px;}
._28_c00137{width:258.600000px;}
._1_c00137{width:341.640000px;}
.fc2_c00137{color:transparent;}
.fc1_c00137{color:rgb(128,128,128);}
.fc0_c00137{color:rgb(0,0,0);}
.fs5_c00137{font-size:24.000000px;}
.fs2_c00137{font-size:45.000000px;}
.fs7_c00137{font-size:48.000000px;}
.fs6_c00137{font-size:57.000000px;}
.fs0_c00137{font-size:60.000000px;}
.fs4_c00137{font-size:63.000000px;}
.fs1_c00137{font-size:69.000000px;}
.fs3_c00137{font-size:207.000000px;}
.y0_c00137{bottom:0.000000px;}
.y4f_c00137{bottom:3.105000px;}
.y4e_c00137{bottom:7.228355px;}
.y4d_c00137{bottom:62.385000px;}
.y27_c00137{bottom:64.035000px;}
.y4c_c00137{bottom:81.285000px;}
.y26_c00137{bottom:82.335000px;}
.y4b_c00137{bottom:98.835000px;}
.y25_c00137{bottom:100.485000px;}
.y4a_c00137{bottom:116.385000px;}
.y24_c00137{bottom:118.485000px;}
.y49_c00137{bottom:134.985000px;}
.y23_c00137{bottom:136.935000px;}
.y48_c00137{bottom:152.535000px;}
.y22_c00137{bottom:154.785000px;}
.y47_c00137{bottom:171.435000px;}
.y21_c00137{bottom:172.485000px;}
.y46_c00137{bottom:189.285000px;}
.y20_c00137{bottom:191.235000px;}
.y45_c00137{bottom:206.235000px;}
.y1f_c00137{bottom:208.935000px;}
.y44_c00137{bottom:224.685000px;}
.y1e_c00137{bottom:227.385000px;}
.y43_c00137{bottom:244.335000px;}
.y1d_c00137{bottom:245.685000px;}
.y42_c00137{bottom:262.485000px;}
.y1c_c00137{bottom:263.835000px;}
.y41_c00137{bottom:280.485000px;}
.y1b_c00137{bottom:281.685000px;}
.y40_c00137{bottom:297.285000px;}
.y1a_c00137{bottom:299.385000px;}
.y3f_c00137{bottom:316.185000px;}
.y19_c00137{bottom:317.835000px;}
.y3e_c00137{bottom:334.335000px;}
.y18_c00137{bottom:335.835000px;}
.y3d_c00137{bottom:352.035000px;}
.y17_c00137{bottom:353.685000px;}
.y3c_c00137{bottom:370.785000px;}
.y16_c00137{bottom:372.135000px;}
.y15_c00137{bottom:389.085000px;}
.y14_c00137{bottom:407.235000px;}
.y3b_c00137{bottom:425.835000px;}
.y13_c00137{bottom:426.285000px;}
.y12_c00137{bottom:443.835000px;}
.y11_c00137{bottom:462.285000px;}
.y10_c00137{bottom:480.285000px;}
.y3a_c00137{bottom:480.585000px;}
.y39_c00137{bottom:497.385000px;}
.yf_c00137{bottom:499.185000px;}
.y38_c00137{bottom:516.585000px;}
.ye_c00137{bottom:517.935000px;}
.y37_c00137{bottom:533.835000px;}
.yd_c00137{bottom:535.935000px;}
.yb_c00137{bottom:544.485000px;}
.y36_c00137{bottom:552.135000px;}
.yc_c00137{bottom:553.785000px;}
.y35_c00137{bottom:569.385000px;}
.y34_c00137{bottom:588.135000px;}
.y33_c00137{bottom:606.135000px;}
.ya_c00137{bottom:607.485000px;}
.y32_c00137{bottom:625.335000px;}
.y9_c00137{bottom:625.935000px;}
.y31_c00137{bottom:643.485000px;}
.y8_c00137{bottom:644.235000px;}
.y30_c00137{bottom:661.185000px;}
.y7_c00137{bottom:662.385000px;}
.y2f_c00137{bottom:679.635000px;}
.y6_c00137{bottom:680.085000px;}
.y2e_c00137{bottom:697.485000px;}
.y5_c00137{bottom:713.685000px;}
.y2d_c00137{bottom:715.785000px;}
.y2c_c00137{bottom:733.935000px;}
.y4_c00137{bottom:751.185000px;}
.y2b_c00137{bottom:752.235000px;}
.y3_c00137{bottom:769.185000px;}
.y2a_c00137{bottom:770.085000px;}
.y2_c00137{bottom:787.335000px;}
.y29_c00137{bottom:788.385000px;}
.y1_c00137{bottom:805.935000px;}
.y28_c00137{bottom:808.335000px;}
.h8_c00137{height:13.200074px;}
.h9_c00137{height:43.804688px;}
.h3_c00137{height:62.880000px;}
.h2_c00137{height:64.020000px;}
.h6_c00137{height:65.280000px;}
.h7_c00137{height:67.221000px;}
.h4_c00137{height:73.623000px;}
.h5_c00137{height:216.936000px;}
.h1_c00137{height:841.500000px;}
.h0_c00137{height:841.575000px;}
.w2_c00137{width:104.875500px;}
.w0_c00137{width:581.850000px;}
.w1_c00137{width:582.000000px;}
.x0_c00137{left:0.000000px;}
.x11_c00137{left:49.950000px;}
.xc_c00137{left:51.000000px;}
.xd_c00137{left:52.950000px;}
.xe_c00137{left:54.000000px;}
.x5_c00137{left:63.750000px;}
.xf_c00137{left:109.950000px;}
.x10_c00137{left:111.300000px;}
.x3_c00137{left:112.800000px;}
.x2_c00137{left:114.450000px;}
.x1_c00137{left:118.200000px;}
.x6_c00137{left:125.850000px;}
.x7_c00137{left:143.100000px;}
.xb_c00137{left:155.850000px;}
.xa_c00137{left:159.000000px;}
.x8_c00137{left:169.350000px;}
.x4_c00137{left:184.950000px;}
.x9_c00137{left:195.750000px;}
.x17_c00137{left:242.739258px;}
.x12_c00137{left:310.200000px;}
.x16_c00137{left:323.700000px;}
.x14_c00137{left:327.300000px;}
.x13_c00137{left:328.350000px;}
.x15_c00137{left:329.400000px;}
@media print{
.v0_c00137{vertical-align:0.000000pt;}
.v2_c00137{vertical-align:2.133333pt;}
.v1_c00137{vertical-align:98.133333pt;}
.ls8_c00137{letter-spacing:0.000000pt;}
.ls7_c00137{letter-spacing:0.266667pt;}
.ls0_c00137{letter-spacing:2.666667pt;}
.ls3_c00137{letter-spacing:3.200000pt;}
.ls4_c00137{letter-spacing:4.320000pt;}
.ls9_c00137{letter-spacing:5.333333pt;}
.ls6_c00137{letter-spacing:6.826667pt;}
.ls1_c00137{letter-spacing:9.960000pt;}
.ls5_c00137{letter-spacing:10.560000pt;}
.lsa_c00137{letter-spacing:10.666667pt;}
.ls2_c00137{letter-spacing:23.717333pt;}
.ws3_c00137{word-spacing:-26.936000pt;}
.ws1_c00137{word-spacing:-18.666667pt;}
.ws0_c00137{word-spacing:-12.586667pt;}
.ws2_c00137{word-spacing:-11.602667pt;}
.ws4_c00137{word-spacing:0.000000pt;}
._22_c00137{margin-left:-16.445333pt;}
._14_c00137{margin-left:-11.946667pt;}
._2b_c00137{margin-left:-10.720000pt;}
._27_c00137{margin-left:-9.760000pt;}
._2a_c00137{margin-left:-8.746667pt;}
._d_c00137{margin-left:-7.786667pt;}
._0_c00137{margin-left:-5.653333pt;}
._c_c00137{margin-left:-4.533333pt;}
._9_c00137{margin-left:-3.573333pt;}
._e_c00137{margin-left:-2.666667pt;}
._12_c00137{margin-left:-0.906667pt;}
._7_c00137{width:1.120000pt;}
._6_c00137{width:2.026667pt;}
._16_c00137{width:2.933333pt;}
._8_c00137{width:3.840000pt;}
._b_c00137{width:5.173333pt;}
._13_c00137{width:6.133333pt;}
._1a_c00137{width:7.200000pt;}
._15_c00137{width:8.213333pt;}
._f_c00137{width:9.138667pt;}
._1b_c00137{width:10.613333pt;}
._2_c00137{width:12.266667pt;}
._3_c00137{width:13.546667pt;}
._4_c00137{width:14.613333pt;}
._a_c00137{width:18.986667pt;}
._5_c00137{width:20.533333pt;}
._19_c00137{width:21.706667pt;}
._18_c00137{width:24.160000pt;}
._26_c00137{width:25.301333pt;}
._17_c00137{width:27.573333pt;}
._10_c00137{width:29.685333pt;}
._1c_c00137{width:31.626667pt;}
._25_c00137{width:33.813333pt;}
._21_c00137{width:34.773333pt;}
._29_c00137{width:40.213333pt;}
._23_c00137{width:44.533333pt;}
._1e_c00137{width:51.573333pt;}
._24_c00137{width:52.800000pt;}
._1d_c00137{width:61.973333pt;}
._20_c00137{width:93.741333pt;}
._11_c00137{width:118.293333pt;}
._1f_c00137{width:120.213333pt;}
._28_c00137{width:229.866667pt;}
._1_c00137{width:303.680000pt;}
.fs5_c00137{font-size:21.333333pt;}
.fs2_c00137{font-size:40.000000pt;}
.fs7_c00137{font-size:42.666667pt;}
.fs6_c00137{font-size:50.666667pt;}
.fs0_c00137{font-size:53.333333pt;}
.fs4_c00137{font-size:56.000000pt;}
.fs1_c00137{font-size:61.333333pt;}
.fs3_c00137{font-size:184.000000pt;}
.y0_c00137{bottom:0.000000pt;}
.y4f_c00137{bottom:2.760000pt;}
.y4e_c00137{bottom:6.425204pt;}
.y4d_c00137{bottom:55.453333pt;}
.y27_c00137{bottom:56.920000pt;}
.y4c_c00137{bottom:72.253333pt;}
.y26_c00137{bottom:73.186667pt;}
.y4b_c00137{bottom:87.853333pt;}
.y25_c00137{bottom:89.320000pt;}
.y4a_c00137{bottom:103.453333pt;}
.y24_c00137{bottom:105.320000pt;}
.y49_c00137{bottom:119.986667pt;}
.y23_c00137{bottom:121.720000pt;}
.y48_c00137{bottom:135.586667pt;}
.y22_c00137{bottom:137.586667pt;}
.y47_c00137{bottom:152.386667pt;}
.y21_c00137{bottom:153.320000pt;}
.y46_c00137{bottom:168.253333pt;}
.y20_c00137{bottom:169.986667pt;}
.y45_c00137{bottom:183.320000pt;}
.y1f_c00137{bottom:185.720000pt;}
.y44_c00137{bottom:199.720000pt;}
.y1e_c00137{bottom:202.120000pt;}
.y43_c00137{bottom:217.186667pt;}
.y1d_c00137{bottom:218.386667pt;}
.y42_c00137{bottom:233.320000pt;}
.y1c_c00137{bottom:234.520000pt;}
.y41_c00137{bottom:249.320000pt;}
.y1b_c00137{bottom:250.386667pt;}
.y40_c00137{bottom:264.253333pt;}
.y1a_c00137{bottom:266.120000pt;}
.y3f_c00137{bottom:281.053333pt;}
.y19_c00137{bottom:282.520000pt;}
.y3e_c00137{bottom:297.186667pt;}
.y18_c00137{bottom:298.520000pt;}
.y3d_c00137{bottom:312.920000pt;}
.y17_c00137{bottom:314.386667pt;}
.y3c_c00137{bottom:329.586667pt;}
.y16_c00137{bottom:330.786667pt;}
.y15_c00137{bottom:345.853333pt;}
.y14_c00137{bottom:361.986667pt;}
.y3b_c00137{bottom:378.520000pt;}
.y13_c00137{bottom:378.920000pt;}
.y12_c00137{bottom:394.520000pt;}
.y11_c00137{bottom:410.920000pt;}
.y10_c00137{bottom:426.920000pt;}
.y3a_c00137{bottom:427.186667pt;}
.y39_c00137{bottom:442.120000pt;}
.yf_c00137{bottom:443.720000pt;}
.y38_c00137{bottom:459.186667pt;}
.ye_c00137{bottom:460.386667pt;}
.y37_c00137{bottom:474.520000pt;}
.yd_c00137{bottom:476.386667pt;}
.yb_c00137{bottom:483.986667pt;}
.y36_c00137{bottom:490.786667pt;}
.yc_c00137{bottom:492.253333pt;}
.y35_c00137{bottom:506.120000pt;}
.y34_c00137{bottom:522.786667pt;}
.y33_c00137{bottom:538.786667pt;}
.ya_c00137{bottom:539.986667pt;}
.y32_c00137{bottom:555.853333pt;}
.y9_c00137{bottom:556.386667pt;}
.y31_c00137{bottom:571.986667pt;}
.y8_c00137{bottom:572.653333pt;}
.y30_c00137{bottom:587.720000pt;}
.y7_c00137{bottom:588.786667pt;}
.y2f_c00137{bottom:604.120000pt;}
.y6_c00137{bottom:604.520000pt;}
.y2e_c00137{bottom:619.986667pt;}
.y5_c00137{bottom:634.386667pt;}
.y2d_c00137{bottom:636.253333pt;}
.y2c_c00137{bottom:652.386667pt;}
.y4_c00137{bottom:667.720000pt;}
.y2b_c00137{bottom:668.653333pt;}
.y3_c00137{bottom:683.720000pt;}
.y2a_c00137{bottom:684.520000pt;}
.y2_c00137{bottom:699.853333pt;}
.y29_c00137{bottom:700.786667pt;}
.y1_c00137{bottom:716.386667pt;}
.y28_c00137{bottom:718.520000pt;}
.h8_c00137{height:11.733399pt;}
.h9_c00137{height:38.937500pt;}
.h3_c00137{height:55.893333pt;}
.h2_c00137{height:56.906667pt;}
.h6_c00137{height:58.026667pt;}
.h7_c00137{height:59.752000pt;}
.h4_c00137{height:65.442667pt;}
.h5_c00137{height:192.832000pt;}
.h1_c00137{height:748.000000pt;}
.h0_c00137{height:748.066667pt;}
.w2_c00137{width:93.222667pt;}
.w0_c00137{width:517.200000pt;}
.w1_c00137{width:517.333333pt;}
.x0_c00137{left:0.000000pt;}
.x11_c00137{left:44.400000pt;}
.xc_c00137{left:45.333333pt;}
.xd_c00137{left:47.066667pt;}
.xe_c00137{left:48.000000pt;}
.x5_c00137{left:56.666667pt;}
.xf_c00137{left:97.733333pt;}
.x10_c00137{left:98.933333pt;}
.x3_c00137{left:100.266667pt;}
.x2_c00137{left:101.733333pt;}
.x1_c00137{left:105.066667pt;}
.x6_c00137{left:111.866667pt;}
.x7_c00137{left:127.200000pt;}
.xb_c00137{left:138.533333pt;}
.xa_c00137{left:141.333333pt;}
.x8_c00137{left:150.533333pt;}
.x4_c00137{left:164.400000pt;}
.x9_c00137{left:174.000000pt;}
.x17_c00137{left:215.768229pt;}
.x12_c00137{left:275.733333pt;}
.x16_c00137{left:287.733333pt;}
.x14_c00137{left:290.933333pt;}
.x13_c00137{left:291.866667pt;}
.x15_c00137{left:292.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_af7f48e0f4e3fa68322bd322.woff2')format("woff");}.ff1_c00138{font-family:ff1_c00138;line-height:1.437000;font-style:normal;font-weight:normal;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_ad2d3d5e7d1ce5b03149bffd.woff2')format("woff");}.ff2_c00138{font-family:ff2_c00138;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00138;src:url('chunks/assets/font_e09e226003611f912bd1886c.woff2')format("woff");}.ff3_c00138{font-family:ff3_c00138;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00138;src:url('chunks/assets/font_3e9588fe7b0d67a6110ce0a9.woff2')format("woff");}.ff4_c00138{font-family:ff4_c00138;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00138;src:url('chunks/assets/font_dc20350536a163e00c088419.woff2')format("woff");}.ff5_c00138{font-family:ff5_c00138;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00138;src:url('chunks/assets/font_44c4e43261a5cd464bfe346b.woff2')format("woff");}.ff6_c00138{font-family:ff6_c00138;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00138;src:url('chunks/assets/font_9128a6b4db59b5149b4e9fa8.woff2')format("woff");}.ff7_c00138{font-family:ff7_c00138;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00138;src:url('chunks/assets/font_cd44f7e2b085122949af5e9b.woff2')format("woff");}.ff8_c00138{font-family:ff8_c00138;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00138;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff9_c00138{font-family:ff9_c00138;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00138{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00138{vertical-align:0.000000px;}
.ls6_c00138{letter-spacing:0.000000px;}
.ls1_c00138{letter-spacing:0.405000px;}
.ls0_c00138{letter-spacing:1.605000px;}
.ls2_c00138{letter-spacing:3.000000px;}
.ls3_c00138{letter-spacing:7.500000px;}
.ls4_c00138{letter-spacing:7.740000px;}
.ls5_c00138{letter-spacing:11.700000px;}
.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;}
}
.ws1_c00138{word-spacing:-42.192000px;}
.ws2_c00138{word-spacing:-18.813000px;}
.ws4_c00138{word-spacing:-18.750000px;}
.ws6_c00138{word-spacing:-18.060000px;}
.ws7_c00138{word-spacing:-16.500000px;}
.ws3_c00138{word-spacing:-15.750000px;}
.ws0_c00138{word-spacing:-14.160000px;}
.ws5_c00138{word-spacing:-13.623000px;}
.ws9_c00138{word-spacing:0.000000px;}
.ws8_c00138{word-spacing:7.740000px;}
._10_c00138{margin-left:-14.520000px;}
._22_c00138{margin-left:-12.267000px;}
._1a_c00138{margin-left:-10.224000px;}
._14_c00138{margin-left:-8.820000px;}
._19_c00138{margin-left:-7.017000px;}
._1e_c00138{margin-left:-5.721000px;}
._6_c00138{margin-left:-4.680000px;}
._23_c00138{margin-left:-3.669000px;}
._d_c00138{margin-left:-2.661000px;}
._b_c00138{margin-left:-1.512000px;}
._0_c00138{width:1.380000px;}
._1_c00138{width:3.060000px;}
._2_c00138{width:4.560000px;}
._3_c00138{width:6.360000px;}
._8_c00138{width:7.629000px;}
._5_c00138{width:9.060000px;}
._a_c00138{width:10.143000px;}
._12_c00138{width:11.340000px;}
._24_c00138{width:12.351000px;}
._7_c00138{width:13.440000px;}
._13_c00138{width:14.613000px;}
._f_c00138{width:15.720000px;}
._16_c00138{width:17.361000px;}
._9_c00138{width:20.013000px;}
._1c_c00138{width:21.696000px;}
._21_c00138{width:22.815000px;}
._11_c00138{width:24.300000px;}
._1b_c00138{width:26.208000px;}
._15_c00138{width:27.720000px;}
._20_c00138{width:30.030000px;}
._1f_c00138{width:31.140000px;}
._18_c00138{width:32.871000px;}
._17_c00138{width:34.860000px;}
._e_c00138{width:38.334000px;}
._27_c00138{width:41.151000px;}
._28_c00138{width:64.425000px;}
._4_c00138{width:70.500000px;}
._c_c00138{width:79.443000px;}
._25_c00138{width:80.505000px;}
._1d_c00138{width:82.713000px;}
._26_c00138{width:113.241000px;}
.fc2_c00138{color:transparent;}
.fc1_c00138{color:rgb(128,128,128);}
.fc0_c00138{color:rgb(0,0,0);}
.fs1_c00138{font-size:45.000000px;}
.fs7_c00138{font-size:48.000000px;}
.fs4_c00138{font-size:57.000000px;}
.fs0_c00138{font-size:60.000000px;}
.fs2_c00138{font-size:63.000000px;}
.fs5_c00138{font-size:66.000000px;}
.fs3_c00138{font-size:72.000000px;}
.fs6_c00138{font-size:105.000000px;}
.y0_c00138{bottom:0.000000px;}
.y4f_c00138{bottom:3.105000px;}
.y4e_c00138{bottom:7.228357px;}
.y4d_c00138{bottom:32.130000px;}
.y4c_c00138{bottom:57.480000px;}
.y3f_c00138{bottom:66.480000px;}
.y4b_c00138{bottom:75.930000px;}
.y45_c00138{bottom:78.630000px;}
.y3e_c00138{bottom:86.130000px;}
.y4a_c00138{bottom:93.480000px;}
.y44_c00138{bottom:95.280000px;}
.y49_c00138{bottom:111.030000px;}
.y43_c00138{bottom:114.030000px;}
.y48_c00138{bottom:128.880000px;}
.y42_c00138{bottom:130.980000px;}
.y47_c00138{bottom:147.480000px;}
.y41_c00138{bottom:149.580000px;}
.y46_c00138{bottom:165.780000px;}
.y40_c00138{bottom:168.030000px;}
.y3d_c00138{bottom:184.980000px;}
.y3c_c00138{bottom:202.830000px;}
.y3b_c00138{bottom:220.380000px;}
.y2f_c00138{bottom:223.080000px;}
.y3a_c00138{bottom:238.980000px;}
.y2e_c00138{bottom:241.080000px;}
.y39_c00138{bottom:256.830000px;}
.y2d_c00138{bottom:259.980000px;}
.y38_c00138{bottom:274.380000px;}
.y2c_c00138{bottom:278.130000px;}
.y37_c00138{bottom:293.280000px;}
.y2b_c00138{bottom:295.680000px;}
.y36_c00138{bottom:311.580000px;}
.y2a_c00138{bottom:313.980000px;}
.y35_c00138{bottom:329.130000px;}
.y29_c00138{bottom:332.130000px;}
.y34_c00138{bottom:347.280000px;}
.y28_c00138{bottom:350.730000px;}
.y33_c00138{bottom:365.580000px;}
.y27_c00138{bottom:368.880000px;}
.y32_c00138{bottom:384.180000px;}
.y26_c00138{bottom:386.880000px;}
.y31_c00138{bottom:402.030000px;}
.y25_c00138{bottom:404.430000px;}
.y30_c00138{bottom:421.230000px;}
.y24_c00138{bottom:423.330000px;}
.y23_c00138{bottom:440.130000px;}
.y22_c00138{bottom:457.680000px;}
.y21_c00138{bottom:475.980000px;}
.y20_c00138{bottom:492.480000px;}
.y11_c00138{bottom:495.180000px;}
.y1f_c00138{bottom:511.380000px;}
.y10_c00138{bottom:513.330000px;}
.y1e_c00138{bottom:529.530000px;}
.yf_c00138{bottom:531.630000px;}
.y1d_c00138{bottom:547.830000px;}
.ye_c00138{bottom:549.180000px;}
.y1c_c00138{bottom:565.380000px;}
.yd_c00138{bottom:567.630000px;}
.y1b_c00138{bottom:584.280000px;}
.yc_c00138{bottom:585.330000px;}
.y1a_c00138{bottom:602.430000px;}
.yb_c00138{bottom:603.780000px;}
.y19_c00138{bottom:620.280000px;}
.ya_c00138{bottom:621.780000px;}
.y18_c00138{bottom:637.830000px;}
.y9_c00138{bottom:639.180000px;}
.y17_c00138{bottom:655.830000px;}
.y8_c00138{bottom:657.480000px;}
.y16_c00138{bottom:674.280000px;}
.y7_c00138{bottom:675.330000px;}
.y15_c00138{bottom:691.830000px;}
.y6_c00138{bottom:693.930000px;}
.y14_c00138{bottom:710.130000px;}
.y5_c00138{bottom:711.480000px;}
.y13_c00138{bottom:729.030000px;}
.y4_c00138{bottom:729.330000px;}
.y12_c00138{bottom:746.880000px;}
.y3_c00138{bottom:747.330000px;}
.y2_c00138{bottom:765.180000px;}
.y1_c00138{bottom:783.030000px;}
.ha_c00138{height:13.200074px;}
.hb_c00138{height:43.804688px;}
.h6_c00138{height:59.736000px;}
.h3_c00138{height:62.880000px;}
.h8_c00138{height:64.020000px;}
.h4_c00138{height:66.024000px;}
.h2_c00138{height:67.221000px;}
.h7_c00138{height:70.422000px;}
.h5_c00138{height:78.048000px;}
.h9_c00138{height:113.820000px;}
.h1_c00138{height:845.250000px;}
.h0_c00138{height:845.400000px;}
.w1_c00138{width:104.875500px;}
.w0_c00138{width:587.250000px;}
.x0_c00138{left:0.000000px;}
.xc_c00138{left:16.200000px;}
.x1_c00138{left:68.550000px;}
.x2_c00138{left:71.100000px;}
.x7_c00138{left:72.450000px;}
.x8_c00138{left:74.550000px;}
.x9_c00138{left:75.600000px;}
.xd_c00138{left:77.850000px;}
.x3_c00138{left:90.450000px;}
.xf_c00138{left:127.200000px;}
.x11_c00138{left:245.439240px;}
.x4_c00138{left:287.850000px;}
.x5_c00138{left:288.900000px;}
.x6_c00138{left:290.550000px;}
.xa_c00138{left:291.900000px;}
.xb_c00138{left:292.950000px;}
.xe_c00138{left:294.000000px;}
.x10_c00138{left:465.300000px;}
@media print{
.v0_c00138{vertical-align:0.000000pt;}
.ls6_c00138{letter-spacing:0.000000pt;}
.ls1_c00138{letter-spacing:0.360000pt;}
.ls0_c00138{letter-spacing:1.426667pt;}
.ls2_c00138{letter-spacing:2.666667pt;}
.ls3_c00138{letter-spacing:6.666667pt;}
.ls4_c00138{letter-spacing:6.880000pt;}
.ls5_c00138{letter-spacing:10.400000pt;}
.ws1_c00138{word-spacing:-37.504000pt;}
.ws2_c00138{word-spacing:-16.722667pt;}
.ws4_c00138{word-spacing:-16.666667pt;}
.ws6_c00138{word-spacing:-16.053333pt;}
.ws7_c00138{word-spacing:-14.666667pt;}
.ws3_c00138{word-spacing:-14.000000pt;}
.ws0_c00138{word-spacing:-12.586667pt;}
.ws5_c00138{word-spacing:-12.109333pt;}
.ws9_c00138{word-spacing:0.000000pt;}
.ws8_c00138{word-spacing:6.880000pt;}
._10_c00138{margin-left:-12.906667pt;}
._22_c00138{margin-left:-10.904000pt;}
._1a_c00138{margin-left:-9.088000pt;}
._14_c00138{margin-left:-7.840000pt;}
._19_c00138{margin-left:-6.237333pt;}
._1e_c00138{margin-left:-5.085333pt;}
._6_c00138{margin-left:-4.160000pt;}
._23_c00138{margin-left:-3.261333pt;}
._d_c00138{margin-left:-2.365333pt;}
._b_c00138{margin-left:-1.344000pt;}
._0_c00138{width:1.226667pt;}
._1_c00138{width:2.720000pt;}
._2_c00138{width:4.053333pt;}
._3_c00138{width:5.653333pt;}
._8_c00138{width:6.781333pt;}
._5_c00138{width:8.053333pt;}
._a_c00138{width:9.016000pt;}
._12_c00138{width:10.080000pt;}
._24_c00138{width:10.978667pt;}
._7_c00138{width:11.946667pt;}
._13_c00138{width:12.989333pt;}
._f_c00138{width:13.973333pt;}
._16_c00138{width:15.432000pt;}
._9_c00138{width:17.789333pt;}
._1c_c00138{width:19.285333pt;}
._21_c00138{width:20.280000pt;}
._11_c00138{width:21.600000pt;}
._1b_c00138{width:23.296000pt;}
._15_c00138{width:24.640000pt;}
._20_c00138{width:26.693333pt;}
._1f_c00138{width:27.680000pt;}
._18_c00138{width:29.218667pt;}
._17_c00138{width:30.986667pt;}
._e_c00138{width:34.074667pt;}
._27_c00138{width:36.578667pt;}
._28_c00138{width:57.266667pt;}
._4_c00138{width:62.666667pt;}
._c_c00138{width:70.616000pt;}
._25_c00138{width:71.560000pt;}
._1d_c00138{width:73.522667pt;}
._26_c00138{width:100.658667pt;}
.fs1_c00138{font-size:40.000000pt;}
.fs7_c00138{font-size:42.666667pt;}
.fs4_c00138{font-size:50.666667pt;}
.fs0_c00138{font-size:53.333333pt;}
.fs2_c00138{font-size:56.000000pt;}
.fs5_c00138{font-size:58.666667pt;}
.fs3_c00138{font-size:64.000000pt;}
.fs6_c00138{font-size:93.333333pt;}
.y0_c00138{bottom:0.000000pt;}
.y4f_c00138{bottom:2.760000pt;}
.y4e_c00138{bottom:6.425206pt;}
.y4d_c00138{bottom:28.560000pt;}
.y4c_c00138{bottom:51.093333pt;}
.y3f_c00138{bottom:59.093333pt;}
.y4b_c00138{bottom:67.493333pt;}
.y45_c00138{bottom:69.893333pt;}
.y3e_c00138{bottom:76.560000pt;}
.y4a_c00138{bottom:83.093333pt;}
.y44_c00138{bottom:84.693333pt;}
.y49_c00138{bottom:98.693333pt;}
.y43_c00138{bottom:101.360000pt;}
.y48_c00138{bottom:114.560000pt;}
.y42_c00138{bottom:116.426667pt;}
.y47_c00138{bottom:131.093333pt;}
.y41_c00138{bottom:132.960000pt;}
.y46_c00138{bottom:147.360000pt;}
.y40_c00138{bottom:149.360000pt;}
.y3d_c00138{bottom:164.426667pt;}
.y3c_c00138{bottom:180.293333pt;}
.y3b_c00138{bottom:195.893333pt;}
.y2f_c00138{bottom:198.293333pt;}
.y3a_c00138{bottom:212.426667pt;}
.y2e_c00138{bottom:214.293333pt;}
.y39_c00138{bottom:228.293333pt;}
.y2d_c00138{bottom:231.093333pt;}
.y38_c00138{bottom:243.893333pt;}
.y2c_c00138{bottom:247.226667pt;}
.y37_c00138{bottom:260.693333pt;}
.y2b_c00138{bottom:262.826667pt;}
.y36_c00138{bottom:276.960000pt;}
.y2a_c00138{bottom:279.093333pt;}
.y35_c00138{bottom:292.560000pt;}
.y29_c00138{bottom:295.226667pt;}
.y34_c00138{bottom:308.693333pt;}
.y28_c00138{bottom:311.760000pt;}
.y33_c00138{bottom:324.960000pt;}
.y27_c00138{bottom:327.893333pt;}
.y32_c00138{bottom:341.493333pt;}
.y26_c00138{bottom:343.893333pt;}
.y31_c00138{bottom:357.360000pt;}
.y25_c00138{bottom:359.493333pt;}
.y30_c00138{bottom:374.426667pt;}
.y24_c00138{bottom:376.293333pt;}
.y23_c00138{bottom:391.226667pt;}
.y22_c00138{bottom:406.826667pt;}
.y21_c00138{bottom:423.093333pt;}
.y20_c00138{bottom:437.760000pt;}
.y11_c00138{bottom:440.160000pt;}
.y1f_c00138{bottom:454.560000pt;}
.y10_c00138{bottom:456.293333pt;}
.y1e_c00138{bottom:470.693333pt;}
.yf_c00138{bottom:472.560000pt;}
.y1d_c00138{bottom:486.960000pt;}
.ye_c00138{bottom:488.160000pt;}
.y1c_c00138{bottom:502.560000pt;}
.yd_c00138{bottom:504.560000pt;}
.y1b_c00138{bottom:519.360000pt;}
.yc_c00138{bottom:520.293333pt;}
.y1a_c00138{bottom:535.493333pt;}
.yb_c00138{bottom:536.693333pt;}
.y19_c00138{bottom:551.360000pt;}
.ya_c00138{bottom:552.693333pt;}
.y18_c00138{bottom:566.960000pt;}
.y9_c00138{bottom:568.160000pt;}
.y17_c00138{bottom:582.960000pt;}
.y8_c00138{bottom:584.426667pt;}
.y16_c00138{bottom:599.360000pt;}
.y7_c00138{bottom:600.293333pt;}
.y15_c00138{bottom:614.960000pt;}
.y6_c00138{bottom:616.826667pt;}
.y14_c00138{bottom:631.226667pt;}
.y5_c00138{bottom:632.426667pt;}
.y13_c00138{bottom:648.026667pt;}
.y4_c00138{bottom:648.293333pt;}
.y12_c00138{bottom:663.893333pt;}
.y3_c00138{bottom:664.293333pt;}
.y2_c00138{bottom:680.160000pt;}
.y1_c00138{bottom:696.026667pt;}
.ha_c00138{height:11.733399pt;}
.hb_c00138{height:38.937500pt;}
.h6_c00138{height:53.098667pt;}
.h3_c00138{height:55.893333pt;}
.h8_c00138{height:56.906667pt;}
.h4_c00138{height:58.688000pt;}
.h2_c00138{height:59.752000pt;}
.h7_c00138{height:62.597333pt;}
.h5_c00138{height:69.376000pt;}
.h9_c00138{height:101.173333pt;}
.h1_c00138{height:751.333333pt;}
.h0_c00138{height:751.466667pt;}
.w1_c00138{width:93.222667pt;}
.w0_c00138{width:522.000000pt;}
.x0_c00138{left:0.000000pt;}
.xc_c00138{left:14.400000pt;}
.x1_c00138{left:60.933333pt;}
.x2_c00138{left:63.200000pt;}
.x7_c00138{left:64.400000pt;}
.x8_c00138{left:66.266667pt;}
.x9_c00138{left:67.200000pt;}
.xd_c00138{left:69.200000pt;}
.x3_c00138{left:80.400000pt;}
.xf_c00138{left:113.066667pt;}
.x11_c00138{left:218.168213pt;}
.x4_c00138{left:255.866667pt;}
.x5_c00138{left:256.800000pt;}
.x6_c00138{left:258.266667pt;}
.xa_c00138{left:259.466667pt;}
.xb_c00138{left:260.400000pt;}
.xe_c00138{left:261.333333pt;}
.x10_c00138{left:413.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_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_5913a16f734928d8aa7a8b8f.woff2')format("woff");}.ff1_c00139{font-family:ff1_c00139;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00139;src:url('chunks/assets/font_57ae9b9031be0a40b3378ea7.woff2')format("woff");}.ff2_c00139{font-family:ff2_c00139;line-height:1.437000;font-style:normal;font-weight:normal;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_354ff35b39ee9cac948b8eba.woff2')format("woff");}.ff3_c00139{font-family:ff3_c00139;line-height:1.437000;font-style:normal;font-weight:normal;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_ef7895d218bf976e105f7d1b.woff2')format("woff");}.ff4_c00139{font-family:ff4_c00139;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00139;src:url('chunks/assets/font_648a34f1e610fe4c4d5a9232.woff2')format("woff");}.ff5_c00139{font-family:ff5_c00139;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00139;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff6_c00139{font-family:ff6_c00139;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00139{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00139{vertical-align:0.000000px;}
.v1_c00139{vertical-align:110.400000px;}
.ls3_c00139{letter-spacing:0.000000px;}
.ls1_c00139{letter-spacing:3.000000px;}
.ls4_c00139{letter-spacing:6.000000px;}
.ls2_c00139{letter-spacing:22.482000px;}
.ls0_c00139{letter-spacing:33.777000px;}
.sc__c00139{text-shadow:none;}
.sc0_c00139{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00139{-webkit-text-stroke:0px transparent;}
.sc0_c00139{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00139{word-spacing:-39.018000px;}
.ws3_c00139{word-spacing:-23.340000px;}
.ws0_c00139{word-spacing:-22.074000px;}
.ws4_c00139{word-spacing:-18.060000px;}
.ws2_c00139{word-spacing:-14.160000px;}
.ws6_c00139{word-spacing:-13.452000px;}
.ws5_c00139{word-spacing:-0.120000px;}
.ws7_c00139{word-spacing:0.000000px;}
._2e_c00139{margin-left:-17.400000px;}
._30_c00139{margin-left:-12.840000px;}
._1d_c00139{margin-left:-11.028000px;}
._27_c00139{margin-left:-9.960000px;}
._1b_c00139{margin-left:-8.118000px;}
._15_c00139{margin-left:-7.080000px;}
._13_c00139{margin-left:-5.460000px;}
._14_c00139{margin-left:-4.320000px;}
._12_c00139{margin-left:-2.400000px;}
._11_c00139{margin-left:-1.260000px;}
._d_c00139{width:1.380000px;}
._19_c00139{width:2.400000px;}
._0_c00139{width:3.894000px;}
._a_c00139{width:5.412000px;}
._f_c00139{width:6.906000px;}
._b_c00139{width:8.928000px;}
._25_c00139{width:10.140000px;}
._17_c00139{width:11.160000px;}
._1a_c00139{width:12.252000px;}
._22_c00139{width:13.260000px;}
._2_c00139{width:14.280000px;}
._26_c00139{width:16.140000px;}
._e_c00139{width:17.340000px;}
._5_c00139{width:19.740000px;}
._4_c00139{width:21.660000px;}
._20_c00139{width:22.920000px;}
._3_c00139{width:24.600000px;}
._1f_c00139{width:25.920000px;}
._c_c00139{width:27.840000px;}
._6_c00139{width:31.260000px;}
._2c_c00139{width:33.486000px;}
._9_c00139{width:34.740000px;}
._7_c00139{width:36.780000px;}
._28_c00139{width:41.520000px;}
._8_c00139{width:42.780000px;}
._29_c00139{width:51.840000px;}
._1c_c00139{width:70.326000px;}
._24_c00139{width:72.834000px;}
._2b_c00139{width:74.454000px;}
._2a_c00139{width:75.618000px;}
._23_c00139{width:76.620000px;}
._10_c00139{width:77.958000px;}
._21_c00139{width:79.920000px;}
._18_c00139{width:80.928000px;}
._16_c00139{width:83.700000px;}
._1e_c00139{width:95.280000px;}
._2d_c00139{width:179.454000px;}
._2f_c00139{width:229.551000px;}
._1_c00139{width:309.972000px;}
.fc2_c00139{color:transparent;}
.fc1_c00139{color:rgb(128,128,128);}
.fc0_c00139{color:rgb(0,0,0);}
.fs5_c00139{font-size:48.000000px;}
.fs2_c00139{font-size:54.000000px;}
.fs3_c00139{font-size:57.000000px;}
.fs1_c00139{font-size:60.000000px;}
.fs0_c00139{font-size:66.000000px;}
.fs4_c00139{font-size:207.000000px;}
.y0_c00139{bottom:0.000000px;}
.y3c_c00139{bottom:3.105000px;}
.y3b_c00139{bottom:7.228357px;}
.y2b_c00139{bottom:37.530000px;}
.y38_c00139{bottom:54.030000px;}
.y2a_c00139{bottom:55.380000px;}
.y37_c00139{bottom:73.230000px;}
.y29_c00139{bottom:73.980000px;}
.y36_c00139{bottom:91.080000px;}
.y28_c00139{bottom:92.430000px;}
.y34_c00139{bottom:100.380000px;}
.y35_c00139{bottom:109.680000px;}
.y27_c00139{bottom:110.430000px;}
.y26_c00139{bottom:128.580000px;}
.y25_c00139{bottom:147.180000px;}
.y33_c00139{bottom:163.980000px;}
.y24_c00139{bottom:165.030000px;}
.y32_c00139{bottom:182.280000px;}
.y23_c00139{bottom:183.630000px;}
.y3a_c00139{bottom:184.230000px;}
.y31_c00139{bottom:200.580000px;}
.y22_c00139{bottom:201.780000px;}
.y39_c00139{bottom:203.880000px;}
.y30_c00139{bottom:218.730000px;}
.y21_c00139{bottom:219.480000px;}
.y20_c00139{bottom:237.630000px;}
.y2f_c00139{bottom:253.230000px;}
.y1f_c00139{bottom:256.530000px;}
.y1e_c00139{bottom:274.380000px;}
.y2e_c00139{bottom:288.630000px;}
.y1d_c00139{bottom:292.380000px;}
.y2d_c00139{bottom:307.230000px;}
.y1c_c00139{bottom:310.530000px;}
.y2c_c00139{bottom:326.430000px;}
.y1b_c00139{bottom:327.780000px;}
.y1a_c00139{bottom:345.330000px;}
.y19_c00139{bottom:363.480000px;}
.y18_c00139{bottom:381.480000px;}
.y17_c00139{bottom:399.930000px;}
.y16_c00139{bottom:418.230000px;}
.y15_c00139{bottom:435.780000px;}
.y14_c00139{bottom:454.380000px;}
.y13_c00139{bottom:473.130000px;}
.y12_c00139{bottom:490.680000px;}
.y11_c00139{bottom:508.680000px;}
.y10_c00139{bottom:526.830000px;}
.yf_c00139{bottom:545.130000px;}
.ye_c00139{bottom:562.980000px;}
.yd_c00139{bottom:581.280000px;}
.yc_c00139{bottom:598.830000px;}
.yb_c00139{bottom:617.280000px;}
.ya_c00139{bottom:635.580000px;}
.y9_c00139{bottom:653.730000px;}
.y8_c00139{bottom:671.730000px;}
.y7_c00139{bottom:689.880000px;}
.y6_c00139{bottom:707.730000px;}
.y5_c00139{bottom:726.330000px;}
.y4_c00139{bottom:744.480000px;}
.y3_c00139{bottom:762.780000px;}
.y2_c00139{bottom:780.330000px;}
.y1_c00139{bottom:799.980000px;}
.h7_c00139{height:13.200074px;}
.h8_c00139{height:43.804688px;}
.h5_c00139{height:59.736000px;}
.h3_c00139{height:62.880000px;}
.h4_c00139{height:64.020000px;}
.h2_c00139{height:70.422000px;}
.h6_c00139{height:216.936000px;}
.h0_c00139{height:835.950000px;}
.h1_c00139{height:836.250000px;}
.w2_c00139{width:104.875500px;}
.w1_c00139{width:577.500000px;}
.w0_c00139{width:577.800000px;}
.x0_c00139{left:0.000000px;}
.x12_c00139{left:100.650000px;}
.x6_c00139{left:102.600000px;}
.x2_c00139{left:103.650000px;}
.x5_c00139{left:105.300000px;}
.x4_c00139{left:107.100000px;}
.x3_c00139{left:108.750000px;}
.x1_c00139{left:112.050000px;}
.x10_c00139{left:113.400000px;}
.x11_c00139{left:128.550000px;}
.x14_c00139{left:141.150000px;}
.x13_c00139{left:145.800000px;}
.xf_c00139{left:169.200000px;}
.x17_c00139{left:240.714249px;}
.x7_c00139{left:262.950000px;}
.xb_c00139{left:313.500000px;}
.xd_c00139{left:315.000000px;}
.xc_c00139{left:316.350000px;}
.xa_c00139{left:318.600000px;}
.x8_c00139{left:319.650000px;}
.x9_c00139{left:320.700000px;}
.xe_c00139{left:476.550000px;}
.x15_c00139{left:521.550000px;}
.x16_c00139{left:524.250000px;}
@media print{
.v0_c00139{vertical-align:0.000000pt;}
.v1_c00139{vertical-align:98.133333pt;}
.ls3_c00139{letter-spacing:0.000000pt;}
.ls1_c00139{letter-spacing:2.666667pt;}
.ls4_c00139{letter-spacing:5.333333pt;}
.ls2_c00139{letter-spacing:19.984000pt;}
.ls0_c00139{letter-spacing:30.024000pt;}
.ws1_c00139{word-spacing:-34.682667pt;}
.ws3_c00139{word-spacing:-20.746667pt;}
.ws0_c00139{word-spacing:-19.621333pt;}
.ws4_c00139{word-spacing:-16.053333pt;}
.ws2_c00139{word-spacing:-12.586667pt;}
.ws6_c00139{word-spacing:-11.957333pt;}
.ws5_c00139{word-spacing:-0.106667pt;}
.ws7_c00139{word-spacing:0.000000pt;}
._2e_c00139{margin-left:-15.466667pt;}
._30_c00139{margin-left:-11.413333pt;}
._1d_c00139{margin-left:-9.802667pt;}
._27_c00139{margin-left:-8.853333pt;}
._1b_c00139{margin-left:-7.216000pt;}
._15_c00139{margin-left:-6.293333pt;}
._13_c00139{margin-left:-4.853333pt;}
._14_c00139{margin-left:-3.840000pt;}
._12_c00139{margin-left:-2.133333pt;}
._11_c00139{margin-left:-1.120000pt;}
._d_c00139{width:1.226667pt;}
._19_c00139{width:2.133333pt;}
._0_c00139{width:3.461333pt;}
._a_c00139{width:4.810667pt;}
._f_c00139{width:6.138667pt;}
._b_c00139{width:7.936000pt;}
._25_c00139{width:9.013333pt;}
._17_c00139{width:9.920000pt;}
._1a_c00139{width:10.890667pt;}
._22_c00139{width:11.786667pt;}
._2_c00139{width:12.693333pt;}
._26_c00139{width:14.346667pt;}
._e_c00139{width:15.413333pt;}
._5_c00139{width:17.546667pt;}
._4_c00139{width:19.253333pt;}
._20_c00139{width:20.373333pt;}
._3_c00139{width:21.866667pt;}
._1f_c00139{width:23.040000pt;}
._c_c00139{width:24.746667pt;}
._6_c00139{width:27.786667pt;}
._2c_c00139{width:29.765333pt;}
._9_c00139{width:30.880000pt;}
._7_c00139{width:32.693333pt;}
._28_c00139{width:36.906667pt;}
._8_c00139{width:38.026667pt;}
._29_c00139{width:46.080000pt;}
._1c_c00139{width:62.512000pt;}
._24_c00139{width:64.741333pt;}
._2b_c00139{width:66.181333pt;}
._2a_c00139{width:67.216000pt;}
._23_c00139{width:68.106667pt;}
._10_c00139{width:69.296000pt;}
._21_c00139{width:71.040000pt;}
._18_c00139{width:71.936000pt;}
._16_c00139{width:74.400000pt;}
._1e_c00139{width:84.693333pt;}
._2d_c00139{width:159.514667pt;}
._2f_c00139{width:204.045333pt;}
._1_c00139{width:275.530667pt;}
.fs5_c00139{font-size:42.666667pt;}
.fs2_c00139{font-size:48.000000pt;}
.fs3_c00139{font-size:50.666667pt;}
.fs1_c00139{font-size:53.333333pt;}
.fs0_c00139{font-size:58.666667pt;}
.fs4_c00139{font-size:184.000000pt;}
.y0_c00139{bottom:0.000000pt;}
.y3c_c00139{bottom:2.760000pt;}
.y3b_c00139{bottom:6.425206pt;}
.y2b_c00139{bottom:33.360000pt;}
.y38_c00139{bottom:48.026667pt;}
.y2a_c00139{bottom:49.226667pt;}
.y37_c00139{bottom:65.093333pt;}
.y29_c00139{bottom:65.760000pt;}
.y36_c00139{bottom:80.960000pt;}
.y28_c00139{bottom:82.160000pt;}
.y34_c00139{bottom:89.226667pt;}
.y35_c00139{bottom:97.493333pt;}
.y27_c00139{bottom:98.160000pt;}
.y26_c00139{bottom:114.293333pt;}
.y25_c00139{bottom:130.826667pt;}
.y33_c00139{bottom:145.760000pt;}
.y24_c00139{bottom:146.693333pt;}
.y32_c00139{bottom:162.026667pt;}
.y23_c00139{bottom:163.226667pt;}
.y3a_c00139{bottom:163.760000pt;}
.y31_c00139{bottom:178.293333pt;}
.y22_c00139{bottom:179.360000pt;}
.y39_c00139{bottom:181.226667pt;}
.y30_c00139{bottom:194.426667pt;}
.y21_c00139{bottom:195.093333pt;}
.y20_c00139{bottom:211.226667pt;}
.y2f_c00139{bottom:225.093333pt;}
.y1f_c00139{bottom:228.026667pt;}
.y1e_c00139{bottom:243.893333pt;}
.y2e_c00139{bottom:256.560000pt;}
.y1d_c00139{bottom:259.893333pt;}
.y2d_c00139{bottom:273.093333pt;}
.y1c_c00139{bottom:276.026667pt;}
.y2c_c00139{bottom:290.160000pt;}
.y1b_c00139{bottom:291.360000pt;}
.y1a_c00139{bottom:306.960000pt;}
.y19_c00139{bottom:323.093333pt;}
.y18_c00139{bottom:339.093333pt;}
.y17_c00139{bottom:355.493333pt;}
.y16_c00139{bottom:371.760000pt;}
.y15_c00139{bottom:387.360000pt;}
.y14_c00139{bottom:403.893333pt;}
.y13_c00139{bottom:420.560000pt;}
.y12_c00139{bottom:436.160000pt;}
.y11_c00139{bottom:452.160000pt;}
.y10_c00139{bottom:468.293333pt;}
.yf_c00139{bottom:484.560000pt;}
.ye_c00139{bottom:500.426667pt;}
.yd_c00139{bottom:516.693333pt;}
.yc_c00139{bottom:532.293333pt;}
.yb_c00139{bottom:548.693333pt;}
.ya_c00139{bottom:564.960000pt;}
.y9_c00139{bottom:581.093333pt;}
.y8_c00139{bottom:597.093333pt;}
.y7_c00139{bottom:613.226667pt;}
.y6_c00139{bottom:629.093333pt;}
.y5_c00139{bottom:645.626667pt;}
.y4_c00139{bottom:661.760000pt;}
.y3_c00139{bottom:678.026667pt;}
.y2_c00139{bottom:693.626667pt;}
.y1_c00139{bottom:711.093333pt;}
.h7_c00139{height:11.733399pt;}
.h8_c00139{height:38.937500pt;}
.h5_c00139{height:53.098667pt;}
.h3_c00139{height:55.893333pt;}
.h4_c00139{height:56.906667pt;}
.h2_c00139{height:62.597333pt;}
.h6_c00139{height:192.832000pt;}
.h0_c00139{height:743.066667pt;}
.h1_c00139{height:743.333333pt;}
.w2_c00139{width:93.222667pt;}
.w1_c00139{width:513.333333pt;}
.w0_c00139{width:513.600000pt;}
.x0_c00139{left:0.000000pt;}
.x12_c00139{left:89.466667pt;}
.x6_c00139{left:91.200000pt;}
.x2_c00139{left:92.133333pt;}
.x5_c00139{left:93.600000pt;}
.x4_c00139{left:95.200000pt;}
.x3_c00139{left:96.666667pt;}
.x1_c00139{left:99.600000pt;}
.x10_c00139{left:100.800000pt;}
.x11_c00139{left:114.266667pt;}
.x14_c00139{left:125.466667pt;}
.x13_c00139{left:129.600000pt;}
.xf_c00139{left:150.400000pt;}
.x17_c00139{left:213.968221pt;}
.x7_c00139{left:233.733333pt;}
.xb_c00139{left:278.666667pt;}
.xd_c00139{left:280.000000pt;}
.xc_c00139{left:281.200000pt;}
.xa_c00139{left:283.200000pt;}
.x8_c00139{left:284.133333pt;}
.x9_c00139{left:285.066667pt;}
.xe_c00139{left:423.600000pt;}
.x15_c00139{left:463.600000pt;}
.x16_c00139{left:466.000000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_78b9aa07898a1f292e3e23b8.woff2')format("woff");}.ff1_c00140{font-family:ff1_c00140;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00140;src:url('chunks/assets/font_703e8534943a204fa2ea2566.woff2')format("woff");}.ff2_c00140{font-family:ff2_c00140;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00140;src:url('chunks/assets/font_f9efa8e1a80bf4cdd85cc9b2.woff2')format("woff");}.ff3_c00140{font-family:ff3_c00140;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00140;src:url('chunks/assets/font_05a5a5cc4ef6c3d17299eba6.woff2')format("woff");}.ff4_c00140{font-family:ff4_c00140;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00140;src:url('chunks/assets/font_75fca7bb87c0c34ff0ef837b.woff2')format("woff");}.ff5_c00140{font-family:ff5_c00140;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00140;src:url('chunks/assets/font_328cce4a47474290d9675e5f.woff2')format("woff");}.ff6_c00140{font-family:ff6_c00140;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00140;src:url('chunks/assets/font_ce07c18194be24438c85e85f.woff2')format("woff");}.ff7_c00140{font-family:ff7_c00140;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00140;src:url('chunks/assets/font_4d9cd9347d82c4cd3b9f70b9.woff2')format("woff");}.ff8_c00140{font-family:ff8_c00140;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00140;src:url('chunks/assets/font_ff856b8c22153478515d758b.woff2')format("woff");}.ff9_c00140{font-family:ff9_c00140;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00140;src:url('chunks/assets/font_0560010b37f9e6cded86756b.woff2')format("woff");}.ffa_c00140{font-family:ffa_c00140;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00140;src:url('chunks/assets/font_93f40d0e51f5c9a80f38b475.woff2')format("woff");}.ffb_c00140{font-family:ffb_c00140;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc_c00140;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ffc_c00140{font-family:ffc_c00140;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00140{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00140{vertical-align:0.000000px;}
.lsc_c00140{letter-spacing:-6.000000px;}
.lsb_c00140{letter-spacing:0.000000px;}
.ls2_c00140{letter-spacing:0.060000px;}
.lsa_c00140{letter-spacing:0.450000px;}
.ls1_c00140{letter-spacing:1.605000px;}
.ls3_c00140{letter-spacing:3.000000px;}
.ls9_c00140{letter-spacing:5.054400px;}
.ls8_c00140{letter-spacing:5.400000px;}
.lsd_c00140{letter-spacing:6.000000px;}
.ls6_c00140{letter-spacing:6.411000px;}
.ls0_c00140{letter-spacing:11.205000px;}
.ls5_c00140{letter-spacing:14.640000px;}
.ls4_c00140{letter-spacing:25.860000px;}
.ls7_c00140{letter-spacing:31.011000px;}
.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;}
}
.ws9_c00140{word-spacing:-32.670000px;}
.ws8_c00140{word-spacing:-26.136000px;}
.wsa_c00140{word-spacing:-23.340000px;}
.ws5_c00140{word-spacing:-18.750000px;}
.ws6_c00140{word-spacing:-18.060000px;}
.ws7_c00140{word-spacing:-15.576000px;}
.ws0_c00140{word-spacing:-14.160000px;}
.ws2_c00140{word-spacing:-12.036000px;}
.ws1_c00140{word-spacing:-0.510000px;}
.wsb_c00140{word-spacing:0.000000px;}
.ws3_c00140{word-spacing:7.122000px;}
.ws4_c00140{word-spacing:11.712000px;}
._27_c00140{margin-left:-21.846000px;}
._13_c00140{margin-left:-19.620000px;}
._d_c00140{margin-left:-17.160000px;}
._4_c00140{margin-left:-13.980000px;}
._12_c00140{margin-left:-12.180000px;}
._2_c00140{margin-left:-10.380000px;}
._14_c00140{margin-left:-9.318000px;}
._11_c00140{margin-left:-8.100000px;}
._16_c00140{margin-left:-7.080000px;}
._15_c00140{margin-left:-5.679000px;}
._1_c00140{margin-left:-4.140000px;}
._17_c00140{margin-left:-3.000000px;}
._3_c00140{margin-left:-1.680000px;}
._0_c00140{width:1.980000px;}
._9_c00140{width:3.120000px;}
._8_c00140{width:4.800000px;}
._5_c00140{width:6.060000px;}
._e_c00140{width:7.740000px;}
._a_c00140{width:9.000000px;}
._7_c00140{width:10.620000px;}
._f_c00140{width:12.060000px;}
._6_c00140{width:13.920000px;}
._1d_c00140{width:15.420000px;}
._1e_c00140{width:16.560000px;}
._c_c00140{width:18.180000px;}
._1f_c00140{width:19.440000px;}
._20_c00140{width:21.360000px;}
._1c_c00140{width:23.280000px;}
._22_c00140{width:24.960000px;}
._25_c00140{width:27.606000px;}
._18_c00140{width:30.219000px;}
._b_c00140{width:33.960000px;}
._1a_c00140{width:37.500000px;}
._1b_c00140{width:40.800000px;}
._23_c00140{width:41.820000px;}
._24_c00140{width:44.640000px;}
._26_c00140{width:60.150000px;}
._19_c00140{width:61.854000px;}
._28_c00140{width:97.722000px;}
._10_c00140{width:113.820000px;}
._29_c00140{width:151.923000px;}
._21_c00140{width:292.680000px;}
.fc2_c00140{color:transparent;}
.fc1_c00140{color:rgb(128,128,128);}
.fc0_c00140{color:rgb(0,0,0);}
.fs1_c00140{font-size:45.000000px;}
.fs7_c00140{font-size:48.000000px;}
.fs4_c00140{font-size:51.000000px;}
.fs6_c00140{font-size:52.800000px;}
.fs3_c00140{font-size:54.000000px;}
.fs0_c00140{font-size:60.000000px;}
.fs2_c00140{font-size:63.000000px;}
.fs5_c00140{font-size:66.000000px;}
.y0_c00140{bottom:0.000000px;}
.y55_c00140{bottom:3.105000px;}
.y54_c00140{bottom:7.228357px;}
.y53_c00140{bottom:47.580000px;}
.y52_c00140{bottom:66.480000px;}
.y29_c00140{bottom:69.180000px;}
.y51_c00140{bottom:84.780000px;}
.y28_c00140{bottom:87.780000px;}
.y50_c00140{bottom:101.580000px;}
.y27_c00140{bottom:105.030000px;}
.y4f_c00140{bottom:120.780000px;}
.y26_c00140{bottom:122.880000px;}
.y4e_c00140{bottom:139.680000px;}
.y25_c00140{bottom:141.480000px;}
.y4d_c00140{bottom:157.680000px;}
.y24_c00140{bottom:159.630000px;}
.y4c_c00140{bottom:176.130000px;}
.y23_c00140{bottom:177.630000px;}
.y4b_c00140{bottom:194.130000px;}
.y22_c00140{bottom:196.380000px;}
.y4a_c00140{bottom:212.580000px;}
.y21_c00140{bottom:214.080000px;}
.y49_c00140{bottom:228.780000px;}
.y20_c00140{bottom:232.230000px;}
.y48_c00140{bottom:249.180000px;}
.y1f_c00140{bottom:250.530000px;}
.y47_c00140{bottom:266.580000px;}
.y1e_c00140{bottom:269.430000px;}
.y46_c00140{bottom:284.280000px;}
.y1d_c00140{bottom:287.280000px;}
.y45_c00140{bottom:303.180000px;}
.y1c_c00140{bottom:304.830000px;}
.y44_c00140{bottom:319.380000px;}
.y1b_c00140{bottom:322.980000px;}
.y43_c00140{bottom:338.280000px;}
.y1a_c00140{bottom:341.280000px;}
.y42_c00140{bottom:356.430000px;}
.y19_c00140{bottom:359.430000px;}
.y41_c00140{bottom:374.730000px;}
.y18_c00140{bottom:377.430000px;}
.y40_c00140{bottom:393.180000px;}
.y17_c00140{bottom:394.980000px;}
.y3f_c00140{bottom:411.030000px;}
.y16_c00140{bottom:413.430000px;}
.y3e_c00140{bottom:427.230000px;}
.y15_c00140{bottom:431.280000px;}
.y3d_c00140{bottom:447.480000px;}
.y14_c00140{bottom:448.980000px;}
.y3c_c00140{bottom:465.480000px;}
.y13_c00140{bottom:467.130000px;}
.y3b_c00140{bottom:484.080000px;}
.y12_c00140{bottom:484.980000px;}
.y11_c00140{bottom:502.830000px;}
.y3a_c00140{bottom:503.580000px;}
.y10_c00140{bottom:520.380000px;}
.y39_c00140{bottom:520.830000px;}
.yf_c00140{bottom:538.380000px;}
.y38_c00140{bottom:539.430000px;}
.ye_c00140{bottom:556.830000px;}
.y37_c00140{bottom:557.580000px;}
.yd_c00140{bottom:574.830000px;}
.y36_c00140{bottom:575.730000px;}
.yc_c00140{bottom:593.280000px;}
.y35_c00140{bottom:594.030000px;}
.yb_c00140{bottom:610.230000px;}
.y34_c00140{bottom:611.880000px;}
.ya_c00140{bottom:629.130000px;}
.y33_c00140{bottom:629.880000px;}
.y9_c00140{bottom:647.280000px;}
.y32_c00140{bottom:648.030000px;}
.y8_c00140{bottom:664.830000px;}
.y31_c00140{bottom:666.180000px;}
.y7_c00140{bottom:682.530000px;}
.y30_c00140{bottom:684.480000px;}
.y6_c00140{bottom:700.980000px;}
.y2f_c00140{bottom:702.030000px;}
.y5_c00140{bottom:718.980000px;}
.y2e_c00140{bottom:720.180000px;}
.y4_c00140{bottom:736.830000px;}
.y2d_c00140{bottom:737.880000px;}
.y3_c00140{bottom:754.080000px;}
.y2c_c00140{bottom:756.330000px;}
.y2_c00140{bottom:771.930000px;}
.y2b_c00140{bottom:774.630000px;}
.y1_c00140{bottom:790.080000px;}
.y2a_c00140{bottom:792.780000px;}
.hb_c00140{height:13.200074px;}
.hc_c00140{height:43.804688px;}
.h5_c00140{height:53.448000px;}
.h6_c00140{height:58.536000px;}
.h7_c00140{height:59.690918px;}
.h8_c00140{height:61.831055px;}
.h2_c00140{height:62.880000px;}
.ha_c00140{height:64.020000px;}
.h4_c00140{height:66.024000px;}
.h3_c00140{height:67.221000px;}
.h9_c00140{height:69.168000px;}
.h1_c00140{height:845.250000px;}
.h0_c00140{height:845.400000px;}
.w1_c00140{width:104.875500px;}
.w0_c00140{width:587.250000px;}
.x0_c00140{left:0.000000px;}
.x1_c00140{left:12.150000px;}
.x2_c00140{left:14.400000px;}
.x4_c00140{left:48.300000px;}
.x9_c00140{left:66.150000px;}
.x8_c00140{left:67.800000px;}
.x6_c00140{left:68.850000px;}
.x3_c00140{left:69.900000px;}
.x7_c00140{left:71.550000px;}
.x5_c00140{left:103.500000px;}
.x17_c00140{left:245.439240px;}
.x15_c00140{left:280.800000px;}
.xa_c00140{left:282.150000px;}
.x13_c00140{left:283.500000px;}
.xf_c00140{left:284.850000px;}
.x10_c00140{left:285.900000px;}
.xb_c00140{left:287.250000px;}
.x11_c00140{left:288.300000px;}
.xc_c00140{left:289.500000px;}
.xd_c00140{left:290.850000px;}
.x12_c00140{left:303.450000px;}
.x14_c00140{left:320.550000px;}
.xe_c00140{left:335.700000px;}
.x16_c00140{left:393.150000px;}
@media print{
.v0_c00140{vertical-align:0.000000pt;}
.lsc_c00140{letter-spacing:-5.333333pt;}
.lsb_c00140{letter-spacing:0.000000pt;}
.ls2_c00140{letter-spacing:0.053333pt;}
.lsa_c00140{letter-spacing:0.400000pt;}
.ls1_c00140{letter-spacing:1.426667pt;}
.ls3_c00140{letter-spacing:2.666667pt;}
.ls9_c00140{letter-spacing:4.492800pt;}
.ls8_c00140{letter-spacing:4.800000pt;}
.lsd_c00140{letter-spacing:5.333333pt;}
.ls6_c00140{letter-spacing:5.698667pt;}
.ls0_c00140{letter-spacing:9.960000pt;}
.ls5_c00140{letter-spacing:13.013333pt;}
.ls4_c00140{letter-spacing:22.986667pt;}
.ls7_c00140{letter-spacing:27.565333pt;}
.ws9_c00140{word-spacing:-29.040000pt;}
.ws8_c00140{word-spacing:-23.232000pt;}
.wsa_c00140{word-spacing:-20.746667pt;}
.ws5_c00140{word-spacing:-16.666667pt;}
.ws6_c00140{word-spacing:-16.053333pt;}
.ws7_c00140{word-spacing:-13.845333pt;}
.ws0_c00140{word-spacing:-12.586667pt;}
.ws2_c00140{word-spacing:-10.698667pt;}
.ws1_c00140{word-spacing:-0.453333pt;}
.wsb_c00140{word-spacing:0.000000pt;}
.ws3_c00140{word-spacing:6.330667pt;}
.ws4_c00140{word-spacing:10.410667pt;}
._27_c00140{margin-left:-19.418667pt;}
._13_c00140{margin-left:-17.440000pt;}
._d_c00140{margin-left:-15.253333pt;}
._4_c00140{margin-left:-12.426667pt;}
._12_c00140{margin-left:-10.826667pt;}
._2_c00140{margin-left:-9.226667pt;}
._14_c00140{margin-left:-8.282667pt;}
._11_c00140{margin-left:-7.200000pt;}
._16_c00140{margin-left:-6.293333pt;}
._15_c00140{margin-left:-5.048000pt;}
._1_c00140{margin-left:-3.680000pt;}
._17_c00140{margin-left:-2.666667pt;}
._3_c00140{margin-left:-1.493333pt;}
._0_c00140{width:1.760000pt;}
._9_c00140{width:2.773333pt;}
._8_c00140{width:4.266667pt;}
._5_c00140{width:5.386667pt;}
._e_c00140{width:6.880000pt;}
._a_c00140{width:8.000000pt;}
._7_c00140{width:9.440000pt;}
._f_c00140{width:10.720000pt;}
._6_c00140{width:12.373333pt;}
._1d_c00140{width:13.706667pt;}
._1e_c00140{width:14.720000pt;}
._c_c00140{width:16.160000pt;}
._1f_c00140{width:17.280000pt;}
._20_c00140{width:18.986667pt;}
._1c_c00140{width:20.693333pt;}
._22_c00140{width:22.186667pt;}
._25_c00140{width:24.538667pt;}
._18_c00140{width:26.861333pt;}
._b_c00140{width:30.186667pt;}
._1a_c00140{width:33.333333pt;}
._1b_c00140{width:36.266667pt;}
._23_c00140{width:37.173333pt;}
._24_c00140{width:39.680000pt;}
._26_c00140{width:53.466667pt;}
._19_c00140{width:54.981333pt;}
._28_c00140{width:86.864000pt;}
._10_c00140{width:101.173333pt;}
._29_c00140{width:135.042667pt;}
._21_c00140{width:260.160000pt;}
.fs1_c00140{font-size:40.000000pt;}
.fs7_c00140{font-size:42.666667pt;}
.fs4_c00140{font-size:45.333333pt;}
.fs6_c00140{font-size:46.933333pt;}
.fs3_c00140{font-size:48.000000pt;}
.fs0_c00140{font-size:53.333333pt;}
.fs2_c00140{font-size:56.000000pt;}
.fs5_c00140{font-size:58.666667pt;}
.y0_c00140{bottom:0.000000pt;}
.y55_c00140{bottom:2.760000pt;}
.y54_c00140{bottom:6.425206pt;}
.y53_c00140{bottom:42.293333pt;}
.y52_c00140{bottom:59.093333pt;}
.y29_c00140{bottom:61.493333pt;}
.y51_c00140{bottom:75.360000pt;}
.y28_c00140{bottom:78.026667pt;}
.y50_c00140{bottom:90.293333pt;}
.y27_c00140{bottom:93.360000pt;}
.y4f_c00140{bottom:107.360000pt;}
.y26_c00140{bottom:109.226667pt;}
.y4e_c00140{bottom:124.160000pt;}
.y25_c00140{bottom:125.760000pt;}
.y4d_c00140{bottom:140.160000pt;}
.y24_c00140{bottom:141.893333pt;}
.y4c_c00140{bottom:156.560000pt;}
.y23_c00140{bottom:157.893333pt;}
.y4b_c00140{bottom:172.560000pt;}
.y22_c00140{bottom:174.560000pt;}
.y4a_c00140{bottom:188.960000pt;}
.y21_c00140{bottom:190.293333pt;}
.y49_c00140{bottom:203.360000pt;}
.y20_c00140{bottom:206.426667pt;}
.y48_c00140{bottom:221.493333pt;}
.y1f_c00140{bottom:222.693333pt;}
.y47_c00140{bottom:236.960000pt;}
.y1e_c00140{bottom:239.493333pt;}
.y46_c00140{bottom:252.693333pt;}
.y1d_c00140{bottom:255.360000pt;}
.y45_c00140{bottom:269.493333pt;}
.y1c_c00140{bottom:270.960000pt;}
.y44_c00140{bottom:283.893333pt;}
.y1b_c00140{bottom:287.093333pt;}
.y43_c00140{bottom:300.693333pt;}
.y1a_c00140{bottom:303.360000pt;}
.y42_c00140{bottom:316.826667pt;}
.y19_c00140{bottom:319.493333pt;}
.y41_c00140{bottom:333.093333pt;}
.y18_c00140{bottom:335.493333pt;}
.y40_c00140{bottom:349.493333pt;}
.y17_c00140{bottom:351.093333pt;}
.y3f_c00140{bottom:365.360000pt;}
.y16_c00140{bottom:367.493333pt;}
.y3e_c00140{bottom:379.760000pt;}
.y15_c00140{bottom:383.360000pt;}
.y3d_c00140{bottom:397.760000pt;}
.y14_c00140{bottom:399.093333pt;}
.y3c_c00140{bottom:413.760000pt;}
.y13_c00140{bottom:415.226667pt;}
.y3b_c00140{bottom:430.293333pt;}
.y12_c00140{bottom:431.093333pt;}
.y11_c00140{bottom:446.960000pt;}
.y3a_c00140{bottom:447.626667pt;}
.y10_c00140{bottom:462.560000pt;}
.y39_c00140{bottom:462.960000pt;}
.yf_c00140{bottom:478.560000pt;}
.y38_c00140{bottom:479.493333pt;}
.ye_c00140{bottom:494.960000pt;}
.y37_c00140{bottom:495.626667pt;}
.yd_c00140{bottom:510.960000pt;}
.y36_c00140{bottom:511.760000pt;}
.yc_c00140{bottom:527.360000pt;}
.y35_c00140{bottom:528.026667pt;}
.yb_c00140{bottom:542.426667pt;}
.y34_c00140{bottom:543.893333pt;}
.ya_c00140{bottom:559.226667pt;}
.y33_c00140{bottom:559.893333pt;}
.y9_c00140{bottom:575.360000pt;}
.y32_c00140{bottom:576.026667pt;}
.y8_c00140{bottom:590.960000pt;}
.y31_c00140{bottom:592.160000pt;}
.y7_c00140{bottom:606.693333pt;}
.y30_c00140{bottom:608.426667pt;}
.y6_c00140{bottom:623.093333pt;}
.y2f_c00140{bottom:624.026667pt;}
.y5_c00140{bottom:639.093333pt;}
.y2e_c00140{bottom:640.160000pt;}
.y4_c00140{bottom:654.960000pt;}
.y2d_c00140{bottom:655.893333pt;}
.y3_c00140{bottom:670.293333pt;}
.y2c_c00140{bottom:672.293333pt;}
.y2_c00140{bottom:686.160000pt;}
.y2b_c00140{bottom:688.560000pt;}
.y1_c00140{bottom:702.293333pt;}
.y2a_c00140{bottom:704.693333pt;}
.hb_c00140{height:11.733399pt;}
.hc_c00140{height:38.937500pt;}
.h5_c00140{height:47.509333pt;}
.h6_c00140{height:52.032000pt;}
.h7_c00140{height:53.058594pt;}
.h8_c00140{height:54.960938pt;}
.h2_c00140{height:55.893333pt;}
.ha_c00140{height:56.906667pt;}
.h4_c00140{height:58.688000pt;}
.h3_c00140{height:59.752000pt;}
.h9_c00140{height:61.482667pt;}
.h1_c00140{height:751.333333pt;}
.h0_c00140{height:751.466667pt;}
.w1_c00140{width:93.222667pt;}
.w0_c00140{width:522.000000pt;}
.x0_c00140{left:0.000000pt;}
.x1_c00140{left:10.800000pt;}
.x2_c00140{left:12.800000pt;}
.x4_c00140{left:42.933333pt;}
.x9_c00140{left:58.800000pt;}
.x8_c00140{left:60.266667pt;}
.x6_c00140{left:61.200000pt;}
.x3_c00140{left:62.133333pt;}
.x7_c00140{left:63.600000pt;}
.x5_c00140{left:92.000000pt;}
.x17_c00140{left:218.168213pt;}
.x15_c00140{left:249.600000pt;}
.xa_c00140{left:250.800000pt;}
.x13_c00140{left:252.000000pt;}
.xf_c00140{left:253.200000pt;}
.x10_c00140{left:254.133333pt;}
.xb_c00140{left:255.333333pt;}
.x11_c00140{left:256.266667pt;}
.xc_c00140{left:257.333333pt;}
.xd_c00140{left:258.533333pt;}
.x12_c00140{left:269.733333pt;}
.x14_c00140{left:284.933333pt;}
.xe_c00140{left:298.400000pt;}
.x16_c00140{left:349.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_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_1001584a6c6c1ae94463ff55.woff2')format("woff");}.ff1_c00141{font-family:ff1_c00141;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00141;src:url('chunks/assets/font_f68d98c2c7f8380e99a4b879.woff2')format("woff");}.ff2_c00141{font-family:ff2_c00141;line-height:1.437000;font-style:normal;font-weight:normal;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_73784842445274f5c8a62eb8.woff2')format("woff");}.ff3_c00141{font-family:ff3_c00141;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00141;src:url('chunks/assets/font_b9a525e8b7d2e4e7062ece2b.woff2')format("woff");}.ff4_c00141{font-family:ff4_c00141;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00141;src:url('chunks/assets/font_9f28913aa39fe300245d038f.woff2')format("woff");}.ff5_c00141{font-family:ff5_c00141;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00141;src:url('chunks/assets/font_37903d210c2b7b6ac689e29f.woff2')format("woff");}.ff6_c00141{font-family:ff6_c00141;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00141;src:url('chunks/assets/font_20da2bf927c56ca39fa56a30.woff2')format("woff");}.ff7_c00141{font-family:ff7_c00141;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00141;src:url('chunks/assets/font_4340fe0c398f01490b661dc3.woff2')format("woff");}.ff8_c00141{font-family:ff8_c00141;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00141;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff9_c00141{font-family:ff9_c00141;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00141{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00141{vertical-align:0.000000px;}
.ls5_c00141{letter-spacing:-3.000000px;}
.ls3_c00141{letter-spacing:0.000000px;}
.ls1_c00141{letter-spacing:3.000000px;}
.ls4_c00141{letter-spacing:6.000000px;}
.ls2_c00141{letter-spacing:6.450000px;}
.ls0_c00141{letter-spacing:7.080000px;}
.sc__c00141{text-shadow:none;}
.sc0_c00141{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00141{-webkit-text-stroke:0px transparent;}
.sc0_c00141{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00141{word-spacing:-38.961000px;}
.ws5_c00141{word-spacing:-37.062000px;}
.ws4_c00141{word-spacing:-23.250000px;}
.ws3_c00141{word-spacing:-17.340000px;}
.ws1_c00141{word-spacing:-14.160000px;}
.ws2_c00141{word-spacing:-12.291000px;}
.ws6_c00141{word-spacing:0.000000px;}
._2d_c00141{margin-left:-17.172000px;}
._d_c00141{margin-left:-14.628000px;}
._20_c00141{margin-left:-13.587000px;}
._e_c00141{margin-left:-11.730000px;}
._1e_c00141{margin-left:-10.623000px;}
._12_c00141{margin-left:-8.640000px;}
._13_c00141{margin-left:-7.560000px;}
._c_c00141{margin-left:-6.141000px;}
._a_c00141{margin-left:-4.278000px;}
._b_c00141{margin-left:-2.760000px;}
._f_c00141{margin-left:-1.044000px;}
._29_c00141{width:1.023000px;}
._1_c00141{width:2.049000px;}
._0_c00141{width:3.321000px;}
._11_c00141{width:4.965000px;}
._23_c00141{width:6.015000px;}
._17_c00141{width:7.239000px;}
._16_c00141{width:8.511000px;}
._3_c00141{width:10.419000px;}
._4_c00141{width:11.523000px;}
._9_c00141{width:13.248000px;}
._7_c00141{width:14.283000px;}
._6_c00141{width:15.663000px;}
._24_c00141{width:16.950000px;}
._5_c00141{width:18.078000px;}
._18_c00141{width:19.686000px;}
._2c_c00141{width:21.021000px;}
._26_c00141{width:22.758000px;}
._1c_c00141{width:25.104000px;}
._1f_c00141{width:27.633000px;}
._1b_c00141{width:29.187000px;}
._1d_c00141{width:31.200000px;}
._19_c00141{width:33.369000px;}
._8_c00141{width:36.984000px;}
._2b_c00141{width:42.879000px;}
._1a_c00141{width:45.600000px;}
._22_c00141{width:47.733000px;}
._2e_c00141{width:58.866000px;}
._27_c00141{width:59.964000px;}
._21_c00141{width:61.002000px;}
._28_c00141{width:65.712000px;}
._14_c00141{width:81.021000px;}
._15_c00141{width:85.338000px;}
._2a_c00141{width:117.525000px;}
._25_c00141{width:175.368000px;}
._10_c00141{width:214.785000px;}
._2_c00141{width:348.657000px;}
.fc2_c00141{color:transparent;}
.fc1_c00141{color:rgb(128,128,128);}
.fc0_c00141{color:rgb(0,0,0);}
.fs5_c00141{font-size:48.000000px;}
.fs3_c00141{font-size:51.000000px;}
.fs2_c00141{font-size:60.000000px;}
.fs4_c00141{font-size:66.000000px;}
.fs1_c00141{font-size:69.000000px;}
.fs0_c00141{font-size:81.000000px;}
.y0_c00141{bottom:0.000000px;}
.y51_c00141{bottom:3.105000px;}
.y50_c00141{bottom:7.228355px;}
.y4f_c00141{bottom:40.785000px;}
.y2a_c00141{bottom:42.885000px;}
.y29_c00141{bottom:61.035000px;}
.y28_c00141{bottom:79.635000px;}
.y27_c00141{bottom:97.485000px;}
.y26_c00141{bottom:116.085000px;}
.y4e_c00141{bottom:131.835000px;}
.y25_c00141{bottom:134.235000px;}
.y4d_c00141{bottom:149.835000px;}
.y24_c00141{bottom:152.835000px;}
.y4c_c00141{bottom:168.735000px;}
.y23_c00141{bottom:170.985000px;}
.y4b_c00141{bottom:187.185000px;}
.y22_c00141{bottom:190.035000px;}
.y4a_c00141{bottom:205.485000px;}
.y21_c00141{bottom:208.185000px;}
.y49_c00141{bottom:223.635000px;}
.y20_c00141{bottom:226.335000px;}
.y48_c00141{bottom:241.935000px;}
.y1f_c00141{bottom:244.335000px;}
.y47_c00141{bottom:261.135000px;}
.y1e_c00141{bottom:262.935000px;}
.y46_c00141{bottom:279.135000px;}
.y1d_c00141{bottom:281.085000px;}
.y45_c00141{bottom:297.585000px;}
.y1c_c00141{bottom:299.385000px;}
.y44_c00141{bottom:315.135000px;}
.y1b_c00141{bottom:317.535000px;}
.y43_c00141{bottom:333.435000px;}
.y1a_c00141{bottom:335.685000px;}
.y42_c00141{bottom:351.885000px;}
.y19_c00141{bottom:354.285000px;}
.y41_c00141{bottom:369.135000px;}
.y18_c00141{bottom:372.585000px;}
.y40_c00141{bottom:387.735000px;}
.y17_c00141{bottom:390.435000px;}
.y3f_c00141{bottom:406.035000px;}
.y16_c00141{bottom:408.585000px;}
.y3e_c00141{bottom:423.885000px;}
.y15_c00141{bottom:426.135000px;}
.y3d_c00141{bottom:442.485000px;}
.y14_c00141{bottom:444.735000px;}
.y3c_c00141{bottom:460.035000px;}
.y13_c00141{bottom:462.585000px;}
.y3b_c00141{bottom:478.485000px;}
.y12_c00141{bottom:480.285000px;}
.y3a_c00141{bottom:496.485000px;}
.y11_c00141{bottom:498.735000px;}
.y39_c00141{bottom:514.935000px;}
.y10_c00141{bottom:517.035000px;}
.y38_c00141{bottom:532.785000px;}
.yf_c00141{bottom:535.635000px;}
.y37_c00141{bottom:550.785000px;}
.ye_c00141{bottom:553.035000px;}
.y36_c00141{bottom:568.935000px;}
.yd_c00141{bottom:571.335000px;}
.y35_c00141{bottom:586.785000px;}
.yc_c00141{bottom:589.485000px;}
.y34_c00141{bottom:605.385000px;}
.yb_c00141{bottom:607.185000px;}
.y33_c00141{bottom:623.385000px;}
.ya_c00141{bottom:625.935000px;}
.y32_c00141{bottom:641.235000px;}
.y9_c00141{bottom:643.935000px;}
.y31_c00141{bottom:659.385000px;}
.y8_c00141{bottom:661.785000px;}
.y30_c00141{bottom:676.935000px;}
.y7_c00141{bottom:680.385000px;}
.y2f_c00141{bottom:694.935000px;}
.y6_c00141{bottom:698.835000px;}
.y2e_c00141{bottom:714.435000px;}
.y2d_c00141{bottom:732.585000px;}
.y5_c00141{bottom:735.435000px;}
.y2c_c00141{bottom:749.835000px;}
.y4_c00141{bottom:754.935000px;}
.y2b_c00141{bottom:766.485000px;}
.y3_c00141{bottom:771.735000px;}
.y2_c00141{bottom:787.635000px;}
.y1_c00141{bottom:808.335000px;}
.h6_c00141{height:13.200074px;}
.h7_c00141{height:43.804688px;}
.h3_c00141{height:62.880000px;}
.h5_c00141{height:70.422000px;}
.h4_c00141{height:73.623000px;}
.h2_c00141{height:87.804000px;}
.h1_c00141{height:841.500000px;}
.h0_c00141{height:841.575000px;}
.w2_c00141{width:104.875500px;}
.w1_c00141{width:556.500000px;}
.w0_c00141{width:556.725000px;}
.x0_c00141{left:0.000000px;}
.x6_c00141{left:35.400000px;}
.x7_c00141{left:36.450000px;}
.x4_c00141{left:37.800000px;}
.x8_c00141{left:39.150000px;}
.x9_c00141{left:95.250000px;}
.x3_c00141{left:96.750000px;}
.x5_c00141{left:98.250000px;}
.x2_c00141{left:99.600000px;}
.x1_c00141{left:103.650000px;}
.xa_c00141{left:174.900000px;}
.x15_c00141{left:230.176758px;}
.xc_c00141{left:309.450000px;}
.xe_c00141{left:312.150000px;}
.xd_c00141{left:313.500000px;}
.xf_c00141{left:314.550000px;}
.x10_c00141{left:316.350000px;}
.x11_c00141{left:327.150000px;}
.x12_c00141{left:343.950000px;}
.xb_c00141{left:353.100000px;}
.x13_c00141{left:390.150000px;}
.x14_c00141{left:452.700000px;}
@media print{
.v0_c00141{vertical-align:0.000000pt;}
.ls5_c00141{letter-spacing:-2.666667pt;}
.ls3_c00141{letter-spacing:0.000000pt;}
.ls1_c00141{letter-spacing:2.666667pt;}
.ls4_c00141{letter-spacing:5.333333pt;}
.ls2_c00141{letter-spacing:5.733333pt;}
.ls0_c00141{letter-spacing:6.293333pt;}
.ws0_c00141{word-spacing:-34.632000pt;}
.ws5_c00141{word-spacing:-32.944000pt;}
.ws4_c00141{word-spacing:-20.666667pt;}
.ws3_c00141{word-spacing:-15.413333pt;}
.ws1_c00141{word-spacing:-12.586667pt;}
.ws2_c00141{word-spacing:-10.925333pt;}
.ws6_c00141{word-spacing:0.000000pt;}
._2d_c00141{margin-left:-15.264000pt;}
._d_c00141{margin-left:-13.002667pt;}
._20_c00141{margin-left:-12.077333pt;}
._e_c00141{margin-left:-10.426667pt;}
._1e_c00141{margin-left:-9.442667pt;}
._12_c00141{margin-left:-7.680000pt;}
._13_c00141{margin-left:-6.720000pt;}
._c_c00141{margin-left:-5.458667pt;}
._a_c00141{margin-left:-3.802667pt;}
._b_c00141{margin-left:-2.453333pt;}
._f_c00141{margin-left:-0.928000pt;}
._29_c00141{width:0.909333pt;}
._1_c00141{width:1.821333pt;}
._0_c00141{width:2.952000pt;}
._11_c00141{width:4.413333pt;}
._23_c00141{width:5.346667pt;}
._17_c00141{width:6.434667pt;}
._16_c00141{width:7.565333pt;}
._3_c00141{width:9.261333pt;}
._4_c00141{width:10.242667pt;}
._9_c00141{width:11.776000pt;}
._7_c00141{width:12.696000pt;}
._6_c00141{width:13.922667pt;}
._24_c00141{width:15.066667pt;}
._5_c00141{width:16.069333pt;}
._18_c00141{width:17.498667pt;}
._2c_c00141{width:18.685333pt;}
._26_c00141{width:20.229333pt;}
._1c_c00141{width:22.314667pt;}
._1f_c00141{width:24.562667pt;}
._1b_c00141{width:25.944000pt;}
._1d_c00141{width:27.733333pt;}
._19_c00141{width:29.661333pt;}
._8_c00141{width:32.874667pt;}
._2b_c00141{width:38.114667pt;}
._1a_c00141{width:40.533333pt;}
._22_c00141{width:42.429333pt;}
._2e_c00141{width:52.325333pt;}
._27_c00141{width:53.301333pt;}
._21_c00141{width:54.224000pt;}
._28_c00141{width:58.410667pt;}
._14_c00141{width:72.018667pt;}
._15_c00141{width:75.856000pt;}
._2a_c00141{width:104.466667pt;}
._25_c00141{width:155.882667pt;}
._10_c00141{width:190.920000pt;}
._2_c00141{width:309.917333pt;}
.fs5_c00141{font-size:42.666667pt;}
.fs3_c00141{font-size:45.333333pt;}
.fs2_c00141{font-size:53.333333pt;}
.fs4_c00141{font-size:58.666667pt;}
.fs1_c00141{font-size:61.333333pt;}
.fs0_c00141{font-size:72.000000pt;}
.y0_c00141{bottom:0.000000pt;}
.y51_c00141{bottom:2.760000pt;}
.y50_c00141{bottom:6.425204pt;}
.y4f_c00141{bottom:36.253333pt;}
.y2a_c00141{bottom:38.120000pt;}
.y29_c00141{bottom:54.253333pt;}
.y28_c00141{bottom:70.786667pt;}
.y27_c00141{bottom:86.653333pt;}
.y26_c00141{bottom:103.186667pt;}
.y4e_c00141{bottom:117.186667pt;}
.y25_c00141{bottom:119.320000pt;}
.y4d_c00141{bottom:133.186667pt;}
.y24_c00141{bottom:135.853333pt;}
.y4c_c00141{bottom:149.986667pt;}
.y23_c00141{bottom:151.986667pt;}
.y4b_c00141{bottom:166.386667pt;}
.y22_c00141{bottom:168.920000pt;}
.y4a_c00141{bottom:182.653333pt;}
.y21_c00141{bottom:185.053333pt;}
.y49_c00141{bottom:198.786667pt;}
.y20_c00141{bottom:201.186667pt;}
.y48_c00141{bottom:215.053333pt;}
.y1f_c00141{bottom:217.186667pt;}
.y47_c00141{bottom:232.120000pt;}
.y1e_c00141{bottom:233.720000pt;}
.y46_c00141{bottom:248.120000pt;}
.y1d_c00141{bottom:249.853333pt;}
.y45_c00141{bottom:264.520000pt;}
.y1c_c00141{bottom:266.120000pt;}
.y44_c00141{bottom:280.120000pt;}
.y1b_c00141{bottom:282.253333pt;}
.y43_c00141{bottom:296.386667pt;}
.y1a_c00141{bottom:298.386667pt;}
.y42_c00141{bottom:312.786667pt;}
.y19_c00141{bottom:314.920000pt;}
.y41_c00141{bottom:328.120000pt;}
.y18_c00141{bottom:331.186667pt;}
.y40_c00141{bottom:344.653333pt;}
.y17_c00141{bottom:347.053333pt;}
.y3f_c00141{bottom:360.920000pt;}
.y16_c00141{bottom:363.186667pt;}
.y3e_c00141{bottom:376.786667pt;}
.y15_c00141{bottom:378.786667pt;}
.y3d_c00141{bottom:393.320000pt;}
.y14_c00141{bottom:395.320000pt;}
.y3c_c00141{bottom:408.920000pt;}
.y13_c00141{bottom:411.186667pt;}
.y3b_c00141{bottom:425.320000pt;}
.y12_c00141{bottom:426.920000pt;}
.y3a_c00141{bottom:441.320000pt;}
.y11_c00141{bottom:443.320000pt;}
.y39_c00141{bottom:457.720000pt;}
.y10_c00141{bottom:459.586667pt;}
.y38_c00141{bottom:473.586667pt;}
.yf_c00141{bottom:476.120000pt;}
.y37_c00141{bottom:489.586667pt;}
.ye_c00141{bottom:491.586667pt;}
.y36_c00141{bottom:505.720000pt;}
.yd_c00141{bottom:507.853333pt;}
.y35_c00141{bottom:521.586667pt;}
.yc_c00141{bottom:523.986667pt;}
.y34_c00141{bottom:538.120000pt;}
.yb_c00141{bottom:539.720000pt;}
.y33_c00141{bottom:554.120000pt;}
.ya_c00141{bottom:556.386667pt;}
.y32_c00141{bottom:569.986667pt;}
.y9_c00141{bottom:572.386667pt;}
.y31_c00141{bottom:586.120000pt;}
.y8_c00141{bottom:588.253333pt;}
.y30_c00141{bottom:601.720000pt;}
.y7_c00141{bottom:604.786667pt;}
.y2f_c00141{bottom:617.720000pt;}
.y6_c00141{bottom:621.186667pt;}
.y2e_c00141{bottom:635.053333pt;}
.y2d_c00141{bottom:651.186667pt;}
.y5_c00141{bottom:653.720000pt;}
.y2c_c00141{bottom:666.520000pt;}
.y4_c00141{bottom:671.053333pt;}
.y2b_c00141{bottom:681.320000pt;}
.y3_c00141{bottom:685.986667pt;}
.y2_c00141{bottom:700.120000pt;}
.y1_c00141{bottom:718.520000pt;}
.h6_c00141{height:11.733399pt;}
.h7_c00141{height:38.937500pt;}
.h3_c00141{height:55.893333pt;}
.h5_c00141{height:62.597333pt;}
.h4_c00141{height:65.442667pt;}
.h2_c00141{height:78.048000pt;}
.h1_c00141{height:748.000000pt;}
.h0_c00141{height:748.066667pt;}
.w2_c00141{width:93.222667pt;}
.w1_c00141{width:494.666667pt;}
.w0_c00141{width:494.866667pt;}
.x0_c00141{left:0.000000pt;}
.x6_c00141{left:31.466667pt;}
.x7_c00141{left:32.400000pt;}
.x4_c00141{left:33.600000pt;}
.x8_c00141{left:34.800000pt;}
.x9_c00141{left:84.666667pt;}
.x3_c00141{left:86.000000pt;}
.x5_c00141{left:87.333333pt;}
.x2_c00141{left:88.533333pt;}
.x1_c00141{left:92.133333pt;}
.xa_c00141{left:155.466667pt;}
.x15_c00141{left:204.601563pt;}
.xc_c00141{left:275.066667pt;}
.xe_c00141{left:277.466667pt;}
.xd_c00141{left:278.666667pt;}
.xf_c00141{left:279.600000pt;}
.x10_c00141{left:281.200000pt;}
.x11_c00141{left:290.800000pt;}
.x12_c00141{left:305.733333pt;}
.xb_c00141{left:313.866667pt;}
.x13_c00141{left:346.800000pt;}
.x14_c00141{left:402.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ebf6d7b708b7460a606ed152.woff2')format("woff");}.ff1_c00142{font-family:ff1_c00142;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00142;src:url('chunks/assets/font_208b3bceded1d1f7c9f8488c.woff2')format("woff");}.ff2_c00142{font-family:ff2_c00142;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00142;src:url('chunks/assets/font_68e9978a62662e5e5f5a0f75.woff2')format("woff");}.ff3_c00142{font-family:ff3_c00142;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00142;src:url('chunks/assets/font_0ce391de997f24f9f9dd37f4.woff2')format("woff");}.ff4_c00142{font-family:ff4_c00142;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00142;src:url('chunks/assets/font_891262791fcb66cdc065c27b.woff2')format("woff");}.ff5_c00142{font-family:ff5_c00142;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00142;src:url('chunks/assets/font_a4ca0b596ae2a957b73e6378.woff2')format("woff");}.ff6_c00142{font-family:ff6_c00142;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00142;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff7_c00142{font-family:ff7_c00142;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00142{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00142{vertical-align:0.000000px;}
.v1_c00142{vertical-align:108.600000px;}
.lsa_c00142{letter-spacing:0.000000px;}
.ls2_c00142{letter-spacing:1.980000px;}
.ls8_c00142{letter-spacing:3.000000px;}
.ls1_c00142{letter-spacing:6.780000px;}
.ls0_c00142{letter-spacing:7.380000px;}
.ls3_c00142{letter-spacing:9.000000px;}
.ls7_c00142{letter-spacing:9.693000px;}
.ls6_c00142{letter-spacing:11.493000px;}
.ls5_c00142{letter-spacing:13.584000px;}
.ls9_c00142{letter-spacing:21.093000px;}
.ls4_c00142{letter-spacing:47.460000px;}
.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;}
}
.ws4_c00142{word-spacing:-53.463000px;}
.ws2_c00142{word-spacing:-35.415000px;}
.ws3_c00142{word-spacing:-29.295000px;}
.ws5_c00142{word-spacing:-24.774000px;}
.ws0_c00142{word-spacing:-20.319000px;}
.ws1_c00142{word-spacing:-14.160000px;}
.ws7_c00142{word-spacing:-13.452000px;}
.ws6_c00142{word-spacing:-4.920000px;}
.ws8_c00142{word-spacing:0.000000px;}
._c_c00142{margin-left:-19.083000px;}
._6_c00142{margin-left:-17.280000px;}
._1b_c00142{margin-left:-16.188000px;}
._28_c00142{margin-left:-14.682000px;}
._20_c00142{margin-left:-13.179000px;}
._f_c00142{margin-left:-12.078000px;}
._5_c00142{margin-left:-9.720000px;}
._10_c00142{margin-left:-8.544000px;}
._13_c00142{margin-left:-7.152000px;}
._4_c00142{margin-left:-5.820000px;}
._16_c00142{margin-left:-4.665000px;}
._7_c00142{margin-left:-3.600000px;}
._1_c00142{margin-left:-2.280000px;}
._11_c00142{margin-left:-1.245000px;}
._1f_c00142{width:1.005000px;}
._2_c00142{width:2.040000px;}
._a_c00142{width:3.120000px;}
._3_c00142{width:4.140000px;}
._8_c00142{width:5.571000px;}
._0_c00142{width:7.314000px;}
._1d_c00142{width:8.385000px;}
._b_c00142{width:9.447000px;}
._12_c00142{width:11.115000px;}
._9_c00142{width:12.186000px;}
._23_c00142{width:13.314000px;}
._26_c00142{width:14.394000px;}
._1e_c00142{width:15.711000px;}
._17_c00142{width:16.863000px;}
._25_c00142{width:18.405000px;}
._21_c00142{width:20.379000px;}
._18_c00142{width:22.062000px;}
._19_c00142{width:24.501000px;}
._2c_c00142{width:25.518000px;}
._2a_c00142{width:27.201000px;}
._e_c00142{width:29.130000px;}
._1a_c00142{width:31.029000px;}
._1c_c00142{width:32.340000px;}
._d_c00142{width:34.626000px;}
._22_c00142{width:35.910000px;}
._15_c00142{width:41.148000px;}
._2b_c00142{width:44.631000px;}
._24_c00142{width:55.410000px;}
._29_c00142{width:57.888000px;}
._14_c00142{width:74.451000px;}
._2d_c00142{width:204.204000px;}
._27_c00142{width:340.032000px;}
.fc2_c00142{color:transparent;}
.fc1_c00142{color:rgb(128,128,128);}
.fc0_c00142{color:rgb(0,0,0);}
.fs2_c00142{font-size:45.000000px;}
.fs5_c00142{font-size:48.000000px;}
.fs6_c00142{font-size:57.000000px;}
.fs1_c00142{font-size:60.000000px;}
.fs4_c00142{font-size:66.000000px;}
.fs0_c00142{font-size:69.000000px;}
.fs3_c00142{font-size:213.000000px;}
.y0_c00142{bottom:0.000000px;}
.y53_c00142{bottom:3.105000px;}
.y52_c00142{bottom:7.228357px;}
.y51_c00142{bottom:44.880000px;}
.y50_c00142{bottom:62.880000px;}
.y26_c00142{bottom:65.880000px;}
.y4f_c00142{bottom:81.630000px;}
.y25_c00142{bottom:83.430000px;}
.y4e_c00142{bottom:99.330000px;}
.y24_c00142{bottom:101.280000px;}
.y4d_c00142{bottom:117.780000px;}
.y23_c00142{bottom:119.880000px;}
.y4c_c00142{bottom:134.730000px;}
.y22_c00142{bottom:137.730000px;}
.y4b_c00142{bottom:153.930000px;}
.y21_c00142{bottom:155.580000px;}
.y4a_c00142{bottom:171.480000px;}
.y20_c00142{bottom:173.580000px;}
.y49_c00142{bottom:190.380000px;}
.y1f_c00142{bottom:192.330000px;}
.y48_c00142{bottom:208.680000px;}
.y1e_c00142{bottom:210.630000px;}
.y47_c00142{bottom:226.530000px;}
.y1d_c00142{bottom:228.480000px;}
.y46_c00142{bottom:244.080000px;}
.y1c_c00142{bottom:246.480000px;}
.y45_c00142{bottom:261.630000px;}
.y1b_c00142{bottom:264.930000px;}
.y44_c00142{bottom:280.830000px;}
.y1a_c00142{bottom:282.780000px;}
.y43_c00142{bottom:298.980000px;}
.y19_c00142{bottom:300.780000px;}
.y42_c00142{bottom:316.980000px;}
.y18_c00142{bottom:318.630000px;}
.y41_c00142{bottom:334.830000px;}
.y17_c00142{bottom:336.480000px;}
.y40_c00142{bottom:352.980000px;}
.y16_c00142{bottom:354.480000px;}
.y3f_c00142{bottom:370.980000px;}
.y15_c00142{bottom:371.880000px;}
.y3e_c00142{bottom:389.130000px;}
.y14_c00142{bottom:389.880000px;}
.y3d_c00142{bottom:406.080000px;}
.y13_c00142{bottom:407.730000px;}
.y12_c00142{bottom:425.580000px;}
.y3c_c00142{bottom:426.030000px;}
.y3b_c00142{bottom:442.830000px;}
.y11_c00142{bottom:443.580000px;}
.y3a_c00142{bottom:460.080000px;}
.y10_c00142{bottom:460.680000px;}
.y39_c00142{bottom:478.530000px;}
.yf_c00142{bottom:478.680000px;}
.ye_c00142{bottom:496.080000px;}
.y38_c00142{bottom:496.830000px;}
.yd_c00142{bottom:514.080000px;}
.y37_c00142{bottom:514.980000px;}
.yc_c00142{bottom:531.930000px;}
.y36_c00142{bottom:532.980000px;}
.yb_c00142{bottom:550.080000px;}
.y35_c00142{bottom:550.830000px;}
.ya_c00142{bottom:567.780000px;}
.y34_c00142{bottom:569.130000px;}
.y9_c00142{bottom:586.680000px;}
.y33_c00142{bottom:586.980000px;}
.y8_c00142{bottom:604.080000px;}
.y32_c00142{bottom:605.880000px;}
.y6_c00142{bottom:613.080000px;}
.y7_c00142{bottom:622.080000px;}
.y31_c00142{bottom:623.430000px;}
.y30_c00142{bottom:641.280000px;}
.y2f_c00142{bottom:660.180000px;}
.y5_c00142{bottom:675.630000px;}
.y2e_c00142{bottom:677.730000px;}
.y4_c00142{bottom:693.930000px;}
.y2d_c00142{bottom:695.580000px;}
.y3_c00142{bottom:712.080000px;}
.y2c_c00142{bottom:713.880000px;}
.y2_c00142{bottom:729.630000px;}
.y2b_c00142{bottom:732.030000px;}
.y2a_c00142{bottom:750.030000px;}
.y29_c00142{bottom:767.880000px;}
.y28_c00142{bottom:785.730000px;}
.y1_c00142{bottom:802.980000px;}
.y27_c00142{bottom:803.880000px;}
.h6_c00142{height:13.200074px;}
.h7_c00142{height:43.804688px;}
.h3_c00142{height:62.880000px;}
.h5_c00142{height:69.168000px;}
.h2_c00142{height:72.312000px;}
.h4_c00142{height:223.224000px;}
.h0_c00142{height:835.950000px;}
.h1_c00142{height:836.250000px;}
.w1_c00142{width:104.875500px;}
.w0_c00142{width:580.500000px;}
.x0_c00142{left:0.000000px;}
.xa_c00142{left:11.550000px;}
.xb_c00142{left:16.500000px;}
.xf_c00142{left:68.250000px;}
.xe_c00142{left:69.900000px;}
.xd_c00142{left:71.850000px;}
.xc_c00142{left:73.200000px;}
.x10_c00142{left:74.700000px;}
.x9_c00142{left:75.900000px;}
.x6_c00142{left:76.950000px;}
.x2_c00142{left:78.600000px;}
.x3_c00142{left:88.200000px;}
.x4_c00142{left:106.650000px;}
.x8_c00142{left:114.150000px;}
.x7_c00142{left:118.800000px;}
.x5_c00142{left:131.550000px;}
.x1_c00142{left:217.650000px;}
.x18_c00142{left:242.064240px;}
.x11_c00142{left:261.300000px;}
.x14_c00142{left:291.150000px;}
.x12_c00142{left:292.350000px;}
.x13_c00142{left:294.000000px;}
.x16_c00142{left:295.200000px;}
.x15_c00142{left:309.150000px;}
.x17_c00142{left:387.000000px;}
@media print{
.v0_c00142{vertical-align:0.000000pt;}
.v1_c00142{vertical-align:96.533333pt;}
.lsa_c00142{letter-spacing:0.000000pt;}
.ls2_c00142{letter-spacing:1.760000pt;}
.ls8_c00142{letter-spacing:2.666667pt;}
.ls1_c00142{letter-spacing:6.026667pt;}
.ls0_c00142{letter-spacing:6.560000pt;}
.ls3_c00142{letter-spacing:8.000000pt;}
.ls7_c00142{letter-spacing:8.616000pt;}
.ls6_c00142{letter-spacing:10.216000pt;}
.ls5_c00142{letter-spacing:12.074667pt;}
.ls9_c00142{letter-spacing:18.749333pt;}
.ls4_c00142{letter-spacing:42.186667pt;}
.ws4_c00142{word-spacing:-47.522667pt;}
.ws2_c00142{word-spacing:-31.480000pt;}
.ws3_c00142{word-spacing:-26.040000pt;}
.ws5_c00142{word-spacing:-22.021333pt;}
.ws0_c00142{word-spacing:-18.061333pt;}
.ws1_c00142{word-spacing:-12.586667pt;}
.ws7_c00142{word-spacing:-11.957333pt;}
.ws6_c00142{word-spacing:-4.373333pt;}
.ws8_c00142{word-spacing:0.000000pt;}
._c_c00142{margin-left:-16.962667pt;}
._6_c00142{margin-left:-15.360000pt;}
._1b_c00142{margin-left:-14.389333pt;}
._28_c00142{margin-left:-13.050667pt;}
._20_c00142{margin-left:-11.714667pt;}
._f_c00142{margin-left:-10.736000pt;}
._5_c00142{margin-left:-8.640000pt;}
._10_c00142{margin-left:-7.594667pt;}
._13_c00142{margin-left:-6.357333pt;}
._4_c00142{margin-left:-5.173333pt;}
._16_c00142{margin-left:-4.146667pt;}
._7_c00142{margin-left:-3.200000pt;}
._1_c00142{margin-left:-2.026667pt;}
._11_c00142{margin-left:-1.106667pt;}
._1f_c00142{width:0.893333pt;}
._2_c00142{width:1.813333pt;}
._a_c00142{width:2.773333pt;}
._3_c00142{width:3.680000pt;}
._8_c00142{width:4.952000pt;}
._0_c00142{width:6.501333pt;}
._1d_c00142{width:7.453333pt;}
._b_c00142{width:8.397333pt;}
._12_c00142{width:9.880000pt;}
._9_c00142{width:10.832000pt;}
._23_c00142{width:11.834667pt;}
._26_c00142{width:12.794667pt;}
._1e_c00142{width:13.965333pt;}
._17_c00142{width:14.989333pt;}
._25_c00142{width:16.360000pt;}
._21_c00142{width:18.114667pt;}
._18_c00142{width:19.610667pt;}
._19_c00142{width:21.778667pt;}
._2c_c00142{width:22.682667pt;}
._2a_c00142{width:24.178667pt;}
._e_c00142{width:25.893333pt;}
._1a_c00142{width:27.581333pt;}
._1c_c00142{width:28.746667pt;}
._d_c00142{width:30.778667pt;}
._22_c00142{width:31.920000pt;}
._15_c00142{width:36.576000pt;}
._2b_c00142{width:39.672000pt;}
._24_c00142{width:49.253333pt;}
._29_c00142{width:51.456000pt;}
._14_c00142{width:66.178667pt;}
._2d_c00142{width:181.514667pt;}
._27_c00142{width:302.250667pt;}
.fs2_c00142{font-size:40.000000pt;}
.fs5_c00142{font-size:42.666667pt;}
.fs6_c00142{font-size:50.666667pt;}
.fs1_c00142{font-size:53.333333pt;}
.fs4_c00142{font-size:58.666667pt;}
.fs0_c00142{font-size:61.333333pt;}
.fs3_c00142{font-size:189.333333pt;}
.y0_c00142{bottom:0.000000pt;}
.y53_c00142{bottom:2.760000pt;}
.y52_c00142{bottom:6.425206pt;}
.y51_c00142{bottom:39.893333pt;}
.y50_c00142{bottom:55.893333pt;}
.y26_c00142{bottom:58.560000pt;}
.y4f_c00142{bottom:72.560000pt;}
.y25_c00142{bottom:74.160000pt;}
.y4e_c00142{bottom:88.293333pt;}
.y24_c00142{bottom:90.026667pt;}
.y4d_c00142{bottom:104.693333pt;}
.y23_c00142{bottom:106.560000pt;}
.y4c_c00142{bottom:119.760000pt;}
.y22_c00142{bottom:122.426667pt;}
.y4b_c00142{bottom:136.826667pt;}
.y21_c00142{bottom:138.293333pt;}
.y4a_c00142{bottom:152.426667pt;}
.y20_c00142{bottom:154.293333pt;}
.y49_c00142{bottom:169.226667pt;}
.y1f_c00142{bottom:170.960000pt;}
.y48_c00142{bottom:185.493333pt;}
.y1e_c00142{bottom:187.226667pt;}
.y47_c00142{bottom:201.360000pt;}
.y1d_c00142{bottom:203.093333pt;}
.y46_c00142{bottom:216.960000pt;}
.y1c_c00142{bottom:219.093333pt;}
.y45_c00142{bottom:232.560000pt;}
.y1b_c00142{bottom:235.493333pt;}
.y44_c00142{bottom:249.626667pt;}
.y1a_c00142{bottom:251.360000pt;}
.y43_c00142{bottom:265.760000pt;}
.y19_c00142{bottom:267.360000pt;}
.y42_c00142{bottom:281.760000pt;}
.y18_c00142{bottom:283.226667pt;}
.y41_c00142{bottom:297.626667pt;}
.y17_c00142{bottom:299.093333pt;}
.y40_c00142{bottom:313.760000pt;}
.y16_c00142{bottom:315.093333pt;}
.y3f_c00142{bottom:329.760000pt;}
.y15_c00142{bottom:330.560000pt;}
.y3e_c00142{bottom:345.893333pt;}
.y14_c00142{bottom:346.560000pt;}
.y3d_c00142{bottom:360.960000pt;}
.y13_c00142{bottom:362.426667pt;}
.y12_c00142{bottom:378.293333pt;}
.y3c_c00142{bottom:378.693333pt;}
.y3b_c00142{bottom:393.626667pt;}
.y11_c00142{bottom:394.293333pt;}
.y3a_c00142{bottom:408.960000pt;}
.y10_c00142{bottom:409.493333pt;}
.y39_c00142{bottom:425.360000pt;}
.yf_c00142{bottom:425.493333pt;}
.ye_c00142{bottom:440.960000pt;}
.y38_c00142{bottom:441.626667pt;}
.yd_c00142{bottom:456.960000pt;}
.y37_c00142{bottom:457.760000pt;}
.yc_c00142{bottom:472.826667pt;}
.y36_c00142{bottom:473.760000pt;}
.yb_c00142{bottom:488.960000pt;}
.y35_c00142{bottom:489.626667pt;}
.ya_c00142{bottom:504.693333pt;}
.y34_c00142{bottom:505.893333pt;}
.y9_c00142{bottom:521.493333pt;}
.y33_c00142{bottom:521.760000pt;}
.y8_c00142{bottom:536.960000pt;}
.y32_c00142{bottom:538.560000pt;}
.y6_c00142{bottom:544.960000pt;}
.y7_c00142{bottom:552.960000pt;}
.y31_c00142{bottom:554.160000pt;}
.y30_c00142{bottom:570.026667pt;}
.y2f_c00142{bottom:586.826667pt;}
.y5_c00142{bottom:600.560000pt;}
.y2e_c00142{bottom:602.426667pt;}
.y4_c00142{bottom:616.826667pt;}
.y2d_c00142{bottom:618.293333pt;}
.y3_c00142{bottom:632.960000pt;}
.y2c_c00142{bottom:634.560000pt;}
.y2_c00142{bottom:648.560000pt;}
.y2b_c00142{bottom:650.693333pt;}
.y2a_c00142{bottom:666.693333pt;}
.y29_c00142{bottom:682.560000pt;}
.y28_c00142{bottom:698.426667pt;}
.y1_c00142{bottom:713.760000pt;}
.y27_c00142{bottom:714.560000pt;}
.h6_c00142{height:11.733399pt;}
.h7_c00142{height:38.937500pt;}
.h3_c00142{height:55.893333pt;}
.h5_c00142{height:61.482667pt;}
.h2_c00142{height:64.277333pt;}
.h4_c00142{height:198.421333pt;}
.h0_c00142{height:743.066667pt;}
.h1_c00142{height:743.333333pt;}
.w1_c00142{width:93.222667pt;}
.w0_c00142{width:516.000000pt;}
.x0_c00142{left:0.000000pt;}
.xa_c00142{left:10.266667pt;}
.xb_c00142{left:14.666667pt;}
.xf_c00142{left:60.666667pt;}
.xe_c00142{left:62.133333pt;}
.xd_c00142{left:63.866667pt;}
.xc_c00142{left:65.066667pt;}
.x10_c00142{left:66.400000pt;}
.x9_c00142{left:67.466667pt;}
.x6_c00142{left:68.400000pt;}
.x2_c00142{left:69.866667pt;}
.x3_c00142{left:78.400000pt;}
.x4_c00142{left:94.800000pt;}
.x8_c00142{left:101.466667pt;}
.x7_c00142{left:105.600000pt;}
.x5_c00142{left:116.933333pt;}
.x1_c00142{left:193.466667pt;}
.x18_c00142{left:215.168213pt;}
.x11_c00142{left:232.266667pt;}
.x14_c00142{left:258.800000pt;}
.x12_c00142{left:259.866667pt;}
.x13_c00142{left:261.333333pt;}
.x16_c00142{left:262.400000pt;}
.x15_c00142{left:274.800000pt;}
.x17_c00142{left:344.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_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_df58ccb1d36e30902c647d44.woff2')format("woff");}.ff1_c00143{font-family:ff1_c00143;line-height:1.437000;font-style:normal;font-weight:normal;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_2c7054fc850abbeee2b27539.woff2')format("woff");}.ff2_c00143{font-family:ff2_c00143;line-height:1.437000;font-style:normal;font-weight:normal;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_5401017a7efa031aaed5818f.woff2')format("woff");}.ff3_c00143{font-family:ff3_c00143;line-height:1.437000;font-style:normal;font-weight:normal;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_68e9978a62662e5e5f5a0f75.woff2')format("woff");}.ff4_c00143{font-family:ff4_c00143;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00143;src:url('chunks/assets/font_20a4e2de37dd813aa0874b94.woff2')format("woff");}.ff5_c00143{font-family:ff5_c00143;line-height:1.575000;font-style:normal;font-weight:normal;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_c634235293d90370ddf8d705.woff2')format("woff");}.ff6_c00143{font-family:ff6_c00143;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00143;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff7_c00143{font-family:ff7_c00143;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00143{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00143{vertical-align:0.000000px;}
.ls6_c00143{letter-spacing:-3.000000px;}
.ls4_c00143{letter-spacing:0.000000px;}
.ls2_c00143{letter-spacing:3.000000px;}
.ls3_c00143{letter-spacing:5.280000px;}
.ls5_c00143{letter-spacing:6.000000px;}
.ls1_c00143{letter-spacing:9.540000px;}
.ls0_c00143{letter-spacing:10.800000px;}
.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;}
}
.ws2_c00143{word-spacing:-40.137000px;}
.ws3_c00143{word-spacing:-24.570000px;}
.ws5_c00143{word-spacing:-18.060000px;}
.ws4_c00143{word-spacing:-15.048000px;}
.ws1_c00143{word-spacing:-14.160000px;}
.ws0_c00143{word-spacing:-13.053000px;}
.ws6_c00143{word-spacing:0.000000px;}
._2c_c00143{margin-left:-20.580000px;}
._33_c00143{margin-left:-18.759000px;}
._23_c00143{margin-left:-16.758000px;}
._27_c00143{margin-left:-15.480000px;}
._31_c00143{margin-left:-13.902000px;}
._21_c00143{margin-left:-12.564000px;}
._3_c00143{margin-left:-11.040000px;}
._1c_c00143{margin-left:-9.840000px;}
._2_c00143{margin-left:-8.220000px;}
._13_c00143{margin-left:-6.360000px;}
._0_c00143{margin-left:-4.800000px;}
._1_c00143{margin-left:-3.180000px;}
._c_c00143{margin-left:-1.500000px;}
._11_c00143{width:1.200000px;}
._6_c00143{width:2.580000px;}
._b_c00143{width:3.840000px;}
._8_c00143{width:5.520000px;}
._5_c00143{width:6.600000px;}
._f_c00143{width:8.040000px;}
._a_c00143{width:10.260000px;}
._9_c00143{width:11.580000px;}
._12_c00143{width:12.600000px;}
._10_c00143{width:13.620000px;}
._d_c00143{width:15.480000px;}
._22_c00143{width:16.491000px;}
._16_c00143{width:19.200000px;}
._17_c00143{width:21.180000px;}
._18_c00143{width:22.200000px;}
._20_c00143{width:23.619000px;}
._15_c00143{width:24.720000px;}
._14_c00143{width:25.800000px;}
._25_c00143{width:27.360000px;}
._32_c00143{width:28.560000px;}
._2b_c00143{width:29.640000px;}
._1d_c00143{width:31.545000px;}
._2d_c00143{width:36.780000px;}
._26_c00143{width:37.860000px;}
._2e_c00143{width:40.284000px;}
._2a_c00143{width:42.420000px;}
._19_c00143{width:49.434000px;}
._29_c00143{width:60.420000px;}
._1b_c00143{width:62.982000px;}
._e_c00143{width:64.920000px;}
._1f_c00143{width:117.123000px;}
._28_c00143{width:134.565000px;}
._30_c00143{width:152.421000px;}
._1e_c00143{width:168.132000px;}
._24_c00143{width:171.000000px;}
._7_c00143{width:185.760000px;}
._1a_c00143{width:197.649000px;}
._4_c00143{width:308.040000px;}
._2f_c00143{width:334.860000px;}
.fc2_c00143{color:transparent;}
.fc1_c00143{color:rgb(128,128,128);}
.fc0_c00143{color:rgb(0,0,0);}
.fs3_c00143{font-size:45.000000px;}
.fs4_c00143{font-size:48.000000px;}
.fs2_c00143{font-size:51.000000px;}
.fs1_c00143{font-size:57.000000px;}
.fs0_c00143{font-size:60.000000px;}
.y0_c00143{bottom:0.000000px;}
.y52_c00143{bottom:3.105000px;}
.y51_c00143{bottom:7.228355px;}
.y50_c00143{bottom:41.835000px;}
.y4f_c00143{bottom:58.935000px;}
.y2a_c00143{bottom:60.735000px;}
.y4e_c00143{bottom:77.985000px;}
.y29_c00143{bottom:78.885000px;}
.y4d_c00143{bottom:96.135000px;}
.y28_c00143{bottom:97.185000px;}
.y4c_c00143{bottom:113.985000px;}
.y27_c00143{bottom:115.785000px;}
.y4b_c00143{bottom:132.285000px;}
.y26_c00143{bottom:134.535000px;}
.y4a_c00143{bottom:150.435000px;}
.y25_c00143{bottom:152.535000px;}
.y49_c00143{bottom:169.335000px;}
.y24_c00143{bottom:170.985000px;}
.y48_c00143{bottom:187.185000px;}
.y23_c00143{bottom:188.985000px;}
.y47_c00143{bottom:204.885000px;}
.y22_c00143{bottom:207.435000px;}
.y46_c00143{bottom:223.335000px;}
.y21_c00143{bottom:225.735000px;}
.y45_c00143{bottom:241.935000px;}
.y20_c00143{bottom:243.585000px;}
.y44_c00143{bottom:260.235000px;}
.y1f_c00143{bottom:262.185000px;}
.y43_c00143{bottom:278.085000px;}
.y1e_c00143{bottom:280.035000px;}
.y42_c00143{bottom:296.685000px;}
.y1d_c00143{bottom:298.335000px;}
.y41_c00143{bottom:314.085000px;}
.y1c_c00143{bottom:315.885000px;}
.y40_c00143{bottom:332.685000px;}
.y1b_c00143{bottom:334.485000px;}
.y3f_c00143{bottom:350.985000px;}
.y1a_c00143{bottom:353.235000px;}
.y3e_c00143{bottom:369.135000px;}
.y19_c00143{bottom:370.785000px;}
.y3d_c00143{bottom:387.735000px;}
.y18_c00143{bottom:389.085000px;}
.y3c_c00143{bottom:407.235000px;}
.y17_c00143{bottom:407.385000px;}
.y3b_c00143{bottom:424.485000px;}
.y16_c00143{bottom:425.835000px;}
.y3a_c00143{bottom:442.785000px;}
.y15_c00143{bottom:443.835000px;}
.y39_c00143{bottom:460.635000px;}
.y14_c00143{bottom:461.235000px;}
.y13_c00143{bottom:478.935000px;}
.y38_c00143{bottom:479.235000px;}
.y12_c00143{bottom:497.085000px;}
.y37_c00143{bottom:515.685000px;}
.y11_c00143{bottom:515.985000px;}
.y36_c00143{bottom:533.535000px;}
.y10_c00143{bottom:534.135000px;}
.y35_c00143{bottom:551.685000px;}
.yf_c00143{bottom:551.835000px;}
.ye_c00143{bottom:569.985000px;}
.yd_c00143{bottom:587.835000px;}
.y34_c00143{bottom:588.285000px;}
.yc_c00143{bottom:606.135000px;}
.y33_c00143{bottom:606.435000px;}
.yb_c00143{bottom:624.285000px;}
.y32_c00143{bottom:642.135000px;}
.ya_c00143{bottom:642.885000px;}
.y31_c00143{bottom:660.435000px;}
.y9_c00143{bottom:660.735000px;}
.y30_c00143{bottom:678.585000px;}
.y8_c00143{bottom:679.035000px;}
.y2f_c00143{bottom:696.285000px;}
.y7_c00143{bottom:696.585000px;}
.y6_c00143{bottom:714.735000px;}
.y2e_c00143{bottom:715.185000px;}
.y2d_c00143{bottom:733.035000px;}
.y5_c00143{bottom:733.335000px;}
.y2c_c00143{bottom:751.185000px;}
.y4_c00143{bottom:751.635000px;}
.y2b_c00143{bottom:769.785000px;}
.y3_c00143{bottom:770.535000px;}
.y2_c00143{bottom:787.335000px;}
.y1_c00143{bottom:807.885000px;}
.h4_c00143{height:13.200074px;}
.h5_c00143{height:43.804688px;}
.h3_c00143{height:59.736000px;}
.h2_c00143{height:62.880000px;}
.h1_c00143{height:841.500000px;}
.h0_c00143{height:841.575000px;}
.w2_c00143{width:104.875500px;}
.w1_c00143{width:556.500000px;}
.w0_c00143{width:556.725000px;}
.x0_c00143{left:0.000000px;}
.x5_c00143{left:31.800000px;}
.x6_c00143{left:34.050000px;}
.x4_c00143{left:37.200000px;}
.x7_c00143{left:57.000000px;}
.x3_c00143{left:92.850000px;}
.x1_c00143{left:94.200000px;}
.x2_c00143{left:95.400000px;}
.x8_c00143{left:96.600000px;}
.x9_c00143{left:97.650000px;}
.x12_c00143{left:230.176758px;}
.xc_c00143{left:308.250000px;}
.xd_c00143{left:309.450000px;}
.xa_c00143{left:311.550000px;}
.xe_c00143{left:314.100000px;}
.xf_c00143{left:315.150000px;}
.x10_c00143{left:316.950000px;}
.xb_c00143{left:330.150000px;}
.x11_c00143{left:480.600000px;}
@media print{
.v0_c00143{vertical-align:0.000000pt;}
.ls6_c00143{letter-spacing:-2.666667pt;}
.ls4_c00143{letter-spacing:0.000000pt;}
.ls2_c00143{letter-spacing:2.666667pt;}
.ls3_c00143{letter-spacing:4.693333pt;}
.ls5_c00143{letter-spacing:5.333333pt;}
.ls1_c00143{letter-spacing:8.480000pt;}
.ls0_c00143{letter-spacing:9.600000pt;}
.ws2_c00143{word-spacing:-35.677333pt;}
.ws3_c00143{word-spacing:-21.840000pt;}
.ws5_c00143{word-spacing:-16.053333pt;}
.ws4_c00143{word-spacing:-13.376000pt;}
.ws1_c00143{word-spacing:-12.586667pt;}
.ws0_c00143{word-spacing:-11.602667pt;}
.ws6_c00143{word-spacing:0.000000pt;}
._2c_c00143{margin-left:-18.293333pt;}
._33_c00143{margin-left:-16.674667pt;}
._23_c00143{margin-left:-14.896000pt;}
._27_c00143{margin-left:-13.760000pt;}
._31_c00143{margin-left:-12.357333pt;}
._21_c00143{margin-left:-11.168000pt;}
._3_c00143{margin-left:-9.813333pt;}
._1c_c00143{margin-left:-8.746667pt;}
._2_c00143{margin-left:-7.306667pt;}
._13_c00143{margin-left:-5.653333pt;}
._0_c00143{margin-left:-4.266667pt;}
._1_c00143{margin-left:-2.826667pt;}
._c_c00143{margin-left:-1.333333pt;}
._11_c00143{width:1.066667pt;}
._6_c00143{width:2.293333pt;}
._b_c00143{width:3.413333pt;}
._8_c00143{width:4.906667pt;}
._5_c00143{width:5.866667pt;}
._f_c00143{width:7.146667pt;}
._a_c00143{width:9.120000pt;}
._9_c00143{width:10.293333pt;}
._12_c00143{width:11.200000pt;}
._10_c00143{width:12.106667pt;}
._d_c00143{width:13.760000pt;}
._22_c00143{width:14.658667pt;}
._16_c00143{width:17.066667pt;}
._17_c00143{width:18.826667pt;}
._18_c00143{width:19.733333pt;}
._20_c00143{width:20.994667pt;}
._15_c00143{width:21.973333pt;}
._14_c00143{width:22.933333pt;}
._25_c00143{width:24.320000pt;}
._32_c00143{width:25.386667pt;}
._2b_c00143{width:26.346667pt;}
._1d_c00143{width:28.040000pt;}
._2d_c00143{width:32.693333pt;}
._26_c00143{width:33.653333pt;}
._2e_c00143{width:35.808000pt;}
._2a_c00143{width:37.706667pt;}
._19_c00143{width:43.941333pt;}
._29_c00143{width:53.706667pt;}
._1b_c00143{width:55.984000pt;}
._e_c00143{width:57.706667pt;}
._1f_c00143{width:104.109333pt;}
._28_c00143{width:119.613333pt;}
._30_c00143{width:135.485333pt;}
._1e_c00143{width:149.450667pt;}
._24_c00143{width:152.000000pt;}
._7_c00143{width:165.120000pt;}
._1a_c00143{width:175.688000pt;}
._4_c00143{width:273.813333pt;}
._2f_c00143{width:297.653333pt;}
.fs3_c00143{font-size:40.000000pt;}
.fs4_c00143{font-size:42.666667pt;}
.fs2_c00143{font-size:45.333333pt;}
.fs1_c00143{font-size:50.666667pt;}
.fs0_c00143{font-size:53.333333pt;}
.y0_c00143{bottom:0.000000pt;}
.y52_c00143{bottom:2.760000pt;}
.y51_c00143{bottom:6.425204pt;}
.y50_c00143{bottom:37.186667pt;}
.y4f_c00143{bottom:52.386667pt;}
.y2a_c00143{bottom:53.986667pt;}
.y4e_c00143{bottom:69.320000pt;}
.y29_c00143{bottom:70.120000pt;}
.y4d_c00143{bottom:85.453333pt;}
.y28_c00143{bottom:86.386667pt;}
.y4c_c00143{bottom:101.320000pt;}
.y27_c00143{bottom:102.920000pt;}
.y4b_c00143{bottom:117.586667pt;}
.y26_c00143{bottom:119.586667pt;}
.y4a_c00143{bottom:133.720000pt;}
.y25_c00143{bottom:135.586667pt;}
.y49_c00143{bottom:150.520000pt;}
.y24_c00143{bottom:151.986667pt;}
.y48_c00143{bottom:166.386667pt;}
.y23_c00143{bottom:167.986667pt;}
.y47_c00143{bottom:182.120000pt;}
.y22_c00143{bottom:184.386667pt;}
.y46_c00143{bottom:198.520000pt;}
.y21_c00143{bottom:200.653333pt;}
.y45_c00143{bottom:215.053333pt;}
.y20_c00143{bottom:216.520000pt;}
.y44_c00143{bottom:231.320000pt;}
.y1f_c00143{bottom:233.053333pt;}
.y43_c00143{bottom:247.186667pt;}
.y1e_c00143{bottom:248.920000pt;}
.y42_c00143{bottom:263.720000pt;}
.y1d_c00143{bottom:265.186667pt;}
.y41_c00143{bottom:279.186667pt;}
.y1c_c00143{bottom:280.786667pt;}
.y40_c00143{bottom:295.720000pt;}
.y1b_c00143{bottom:297.320000pt;}
.y3f_c00143{bottom:311.986667pt;}
.y1a_c00143{bottom:313.986667pt;}
.y3e_c00143{bottom:328.120000pt;}
.y19_c00143{bottom:329.586667pt;}
.y3d_c00143{bottom:344.653333pt;}
.y18_c00143{bottom:345.853333pt;}
.y3c_c00143{bottom:361.986667pt;}
.y17_c00143{bottom:362.120000pt;}
.y3b_c00143{bottom:377.320000pt;}
.y16_c00143{bottom:378.520000pt;}
.y3a_c00143{bottom:393.586667pt;}
.y15_c00143{bottom:394.520000pt;}
.y39_c00143{bottom:409.453333pt;}
.y14_c00143{bottom:409.986667pt;}
.y13_c00143{bottom:425.720000pt;}
.y38_c00143{bottom:425.986667pt;}
.y12_c00143{bottom:441.853333pt;}
.y37_c00143{bottom:458.386667pt;}
.y11_c00143{bottom:458.653333pt;}
.y36_c00143{bottom:474.253333pt;}
.y10_c00143{bottom:474.786667pt;}
.y35_c00143{bottom:490.386667pt;}
.yf_c00143{bottom:490.520000pt;}
.ye_c00143{bottom:506.653333pt;}
.yd_c00143{bottom:522.520000pt;}
.y34_c00143{bottom:522.920000pt;}
.yc_c00143{bottom:538.786667pt;}
.y33_c00143{bottom:539.053333pt;}
.yb_c00143{bottom:554.920000pt;}
.y32_c00143{bottom:570.786667pt;}
.ya_c00143{bottom:571.453333pt;}
.y31_c00143{bottom:587.053333pt;}
.y9_c00143{bottom:587.320000pt;}
.y30_c00143{bottom:603.186667pt;}
.y8_c00143{bottom:603.586667pt;}
.y2f_c00143{bottom:618.920000pt;}
.y7_c00143{bottom:619.186667pt;}
.y6_c00143{bottom:635.320000pt;}
.y2e_c00143{bottom:635.720000pt;}
.y2d_c00143{bottom:651.586667pt;}
.y5_c00143{bottom:651.853333pt;}
.y2c_c00143{bottom:667.720000pt;}
.y4_c00143{bottom:668.120000pt;}
.y2b_c00143{bottom:684.253333pt;}
.y3_c00143{bottom:684.920000pt;}
.y2_c00143{bottom:699.853333pt;}
.y1_c00143{bottom:718.120000pt;}
.h4_c00143{height:11.733399pt;}
.h5_c00143{height:38.937500pt;}
.h3_c00143{height:53.098667pt;}
.h2_c00143{height:55.893333pt;}
.h1_c00143{height:748.000000pt;}
.h0_c00143{height:748.066667pt;}
.w2_c00143{width:93.222667pt;}
.w1_c00143{width:494.666667pt;}
.w0_c00143{width:494.866667pt;}
.x0_c00143{left:0.000000pt;}
.x5_c00143{left:28.266667pt;}
.x6_c00143{left:30.266667pt;}
.x4_c00143{left:33.066667pt;}
.x7_c00143{left:50.666667pt;}
.x3_c00143{left:82.533333pt;}
.x1_c00143{left:83.733333pt;}
.x2_c00143{left:84.800000pt;}
.x8_c00143{left:85.866667pt;}
.x9_c00143{left:86.800000pt;}
.x12_c00143{left:204.601563pt;}
.xc_c00143{left:274.000000pt;}
.xd_c00143{left:275.066667pt;}
.xa_c00143{left:276.933333pt;}
.xe_c00143{left:279.200000pt;}
.xf_c00143{left:280.133333pt;}
.x10_c00143{left:281.733333pt;}
.xb_c00143{left:293.466667pt;}
.x11_c00143{left:427.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_9d1101ff83220bf1eb2d3bcc.woff2')format("woff");}.ff1_c00144{font-family:ff1_c00144;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00144;src:url('chunks/assets/font_d55d9a5b5d1f822b55c1be26.woff2')format("woff");}.ff2_c00144{font-family:ff2_c00144;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00144;src:url('chunks/assets/font_339f7e89fdf5dd13104d6584.woff2')format("woff");}.ff3_c00144{font-family:ff3_c00144;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00144;src:url('chunks/assets/font_7a4f6719f5eb2cd597f60fea.woff2')format("woff");}.ff4_c00144{font-family:ff4_c00144;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00144;src:url('chunks/assets/font_aaa566ef70f1781190052932.woff2')format("woff");}.ff5_c00144{font-family:ff5_c00144;line-height:1.338867;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00144;src:url('chunks/assets/font_abfa9df410f926bc104ceb69.woff2')format("woff");}.ff6_c00144{font-family:ff6_c00144;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00144;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff7_c00144{font-family:ff7_c00144;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00144{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00144{vertical-align:0.000000px;}
.ls9_c00144{letter-spacing:-6.000000px;}
.ls6_c00144{letter-spacing:0.000000px;}
.ls7_c00144{letter-spacing:3.000000px;}
.ls0_c00144{letter-spacing:4.440000px;}
.ls2_c00144{letter-spacing:6.240000px;}
.ls3_c00144{letter-spacing:8.340000px;}
.ls8_c00144{letter-spacing:9.000000px;}
.ls5_c00144{letter-spacing:10.440000px;}
.ls1_c00144{letter-spacing:17.850000px;}
.ls4_c00144{letter-spacing:205.140000px;}
.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;}
}
.ws6_c00144{word-spacing:-24.060000px;}
.ws3_c00144{word-spacing:-23.160000px;}
.ws7_c00144{word-spacing:-18.060000px;}
.ws2_c00144{word-spacing:-15.060000px;}
.ws8_c00144{word-spacing:-15.048000px;}
.ws1_c00144{word-spacing:-14.160000px;}
.ws9_c00144{word-spacing:-12.000000px;}
.ws5_c00144{word-spacing:-8.160000px;}
.ws4_c00144{word-spacing:-0.042000px;}
.wsc_c00144{word-spacing:0.000000px;}
.ws0_c00144{word-spacing:4.320000px;}
.wsb_c00144{word-spacing:6.300000px;}
.wsa_c00144{word-spacing:13.800000px;}
._38_c00144{margin-left:-26.160000px;}
._2a_c00144{margin-left:-21.714000px;}
._3_c00144{margin-left:-15.300000px;}
._16_c00144{margin-left:-13.155000px;}
._3e_c00144{margin-left:-11.676000px;}
._2f_c00144{margin-left:-10.224000px;}
._19_c00144{margin-left:-9.120000px;}
._18_c00144{margin-left:-7.917000px;}
._15_c00144{margin-left:-6.297000px;}
._14_c00144{margin-left:-5.280000px;}
._0_c00144{margin-left:-3.480000px;}
._11_c00144{margin-left:-1.500000px;}
._f_c00144{width:1.080000px;}
._d_c00144{width:3.060000px;}
._10_c00144{width:4.068000px;}
._b_c00144{width:5.136000px;}
._1b_c00144{width:6.480000px;}
._e_c00144{width:7.680000px;}
._1d_c00144{width:8.712000px;}
._29_c00144{width:9.807000px;}
._13_c00144{width:10.824000px;}
._2d_c00144{width:12.444000px;}
._2_c00144{width:13.620000px;}
._2b_c00144{width:15.180000px;}
._1a_c00144{width:16.959000px;}
._5_c00144{width:18.240000px;}
._31_c00144{width:19.353000px;}
._12_c00144{width:20.556000px;}
._17_c00144{width:21.807000px;}
._1e_c00144{width:23.100000px;}
._1c_c00144{width:24.384000px;}
._a_c00144{width:25.920000px;}
._4_c00144{width:26.940000px;}
._23_c00144{width:28.320000px;}
._28_c00144{width:30.240000px;}
._1f_c00144{width:31.332000px;}
._7_c00144{width:32.736000px;}
._22_c00144{width:34.173000px;}
._24_c00144{width:35.784000px;}
._8_c00144{width:36.960000px;}
._21_c00144{width:40.692000px;}
._27_c00144{width:42.141000px;}
._2c_c00144{width:43.353000px;}
._9_c00144{width:44.784000px;}
._30_c00144{width:46.980000px;}
._6_c00144{width:48.120000px;}
._35_c00144{width:52.599000px;}
._36_c00144{width:54.648000px;}
._20_c00144{width:57.060000px;}
._3a_c00144{width:59.115000px;}
._1_c00144{width:62.640000px;}
._34_c00144{width:79.221000px;}
._25_c00144{width:141.168000px;}
._33_c00144{width:179.559000px;}
._3c_c00144{width:181.356000px;}
._26_c00144{width:185.361000px;}
._3f_c00144{width:190.953000px;}
._39_c00144{width:197.256000px;}
._32_c00144{width:252.096000px;}
._37_c00144{width:265.620000px;}
._c_c00144{width:285.240000px;}
._2e_c00144{width:297.696000px;}
._3d_c00144{width:337.566000px;}
._3b_c00144{width:721.560000px;}
.fc2_c00144{color:transparent;}
.fc1_c00144{color:rgb(128,128,128);}
.fc0_c00144{color:rgb(0,0,0);}
.fs4_c00144{font-size:42.000000px;}
.fs1_c00144{font-size:48.000000px;}
.fs0_c00144{font-size:60.000000px;}
.fs2_c00144{font-size:63.000000px;}
.fs3_c00144{font-size:66.000000px;}
.y0_c00144{bottom:0.000000px;}
.y2d_c00144{bottom:3.105000px;}
.y2c_c00144{bottom:7.228357px;}
.y2b_c00144{bottom:38.430000px;}
.y2a_c00144{bottom:57.330000px;}
.y29_c00144{bottom:75.930000px;}
.y28_c00144{bottom:93.180000px;}
.y27_c00144{bottom:111.330000px;}
.y26_c00144{bottom:129.330000px;}
.y25_c00144{bottom:149.130000px;}
.y24_c00144{bottom:166.380000px;}
.y23_c00144{bottom:183.330000px;}
.y22_c00144{bottom:201.480000px;}
.y21_c00144{bottom:219.780000px;}
.y20_c00144{bottom:238.680000px;}
.y1f_c00144{bottom:256.530000px;}
.y1e_c00144{bottom:275.130000px;}
.y1d_c00144{bottom:292.680000px;}
.y1c_c00144{bottom:310.830000px;}
.y1b_c00144{bottom:329.130000px;}
.y1a_c00144{bottom:346.680000px;}
.y19_c00144{bottom:364.830000px;}
.y18_c00144{bottom:383.130000px;}
.y17_c00144{bottom:400.680000px;}
.y16_c00144{bottom:418.830000px;}
.y15_c00144{bottom:436.830000px;}
.y14_c00144{bottom:454.680000px;}
.y13_c00144{bottom:472.830000px;}
.y12_c00144{bottom:490.380000px;}
.y11_c00144{bottom:508.380000px;}
.y10_c00144{bottom:526.230000px;}
.yf_c00144{bottom:544.680000px;}
.ye_c00144{bottom:562.380000px;}
.yd_c00144{bottom:580.530000px;}
.yc_c00144{bottom:597.780000px;}
.yb_c00144{bottom:615.030000px;}
.ya_c00144{bottom:634.230000px;}
.y9_c00144{bottom:652.080000px;}
.y8_c00144{bottom:669.630000px;}
.y7_c00144{bottom:687.930000px;}
.y6_c00144{bottom:705.480000px;}
.y5_c00144{bottom:723.930000px;}
.y4_c00144{bottom:741.930000px;}
.y3_c00144{bottom:760.380000px;}
.y2_c00144{bottom:778.680000px;}
.y1_c00144{bottom:797.580000px;}
.h4_c00144{height:13.200074px;}
.h5_c00144{height:43.804688px;}
.h2_c00144{height:62.880000px;}
.h3_c00144{height:69.168000px;}
.h0_c00144{height:835.950000px;}
.h1_c00144{height:836.250000px;}
.w1_c00144{width:104.875500px;}
.w0_c00144{width:580.500000px;}
.x0_c00144{left:0.000000px;}
.x8_c00144{left:13.200000px;}
.x9_c00144{left:17.100000px;}
.x7_c00144{left:51.600000px;}
.x12_c00144{left:69.300000px;}
.x10_c00144{left:71.400000px;}
.xe_c00144{left:73.500000px;}
.xf_c00144{left:75.000000px;}
.x11_c00144{left:76.050000px;}
.x4_c00144{left:77.100000px;}
.x3_c00144{left:78.150000px;}
.x5_c00144{left:80.100000px;}
.xb_c00144{left:81.300000px;}
.x2_c00144{left:82.500000px;}
.x6_c00144{left:83.850000px;}
.x14_c00144{left:92.850000px;}
.x13_c00144{left:112.650000px;}
.xd_c00144{left:120.750000px;}
.xa_c00144{left:125.850000px;}
.xc_c00144{left:137.700000px;}
.x1_c00144{left:154.800000px;}
.x16_c00144{left:242.064240px;}
.x15_c00144{left:375.600000px;}
@media print{
.v0_c00144{vertical-align:0.000000pt;}
.ls9_c00144{letter-spacing:-5.333333pt;}
.ls6_c00144{letter-spacing:0.000000pt;}
.ls7_c00144{letter-spacing:2.666667pt;}
.ls0_c00144{letter-spacing:3.946667pt;}
.ls2_c00144{letter-spacing:5.546667pt;}
.ls3_c00144{letter-spacing:7.413333pt;}
.ls8_c00144{letter-spacing:8.000000pt;}
.ls5_c00144{letter-spacing:9.280000pt;}
.ls1_c00144{letter-spacing:15.866667pt;}
.ls4_c00144{letter-spacing:182.346667pt;}
.ws6_c00144{word-spacing:-21.386667pt;}
.ws3_c00144{word-spacing:-20.586667pt;}
.ws7_c00144{word-spacing:-16.053333pt;}
.ws2_c00144{word-spacing:-13.386667pt;}
.ws8_c00144{word-spacing:-13.376000pt;}
.ws1_c00144{word-spacing:-12.586667pt;}
.ws9_c00144{word-spacing:-10.666667pt;}
.ws5_c00144{word-spacing:-7.253333pt;}
.ws4_c00144{word-spacing:-0.037333pt;}
.wsc_c00144{word-spacing:0.000000pt;}
.ws0_c00144{word-spacing:3.840000pt;}
.wsb_c00144{word-spacing:5.600000pt;}
.wsa_c00144{word-spacing:12.266667pt;}
._38_c00144{margin-left:-23.253333pt;}
._2a_c00144{margin-left:-19.301333pt;}
._3_c00144{margin-left:-13.600000pt;}
._16_c00144{margin-left:-11.693333pt;}
._3e_c00144{margin-left:-10.378667pt;}
._2f_c00144{margin-left:-9.088000pt;}
._19_c00144{margin-left:-8.106667pt;}
._18_c00144{margin-left:-7.037333pt;}
._15_c00144{margin-left:-5.597333pt;}
._14_c00144{margin-left:-4.693333pt;}
._0_c00144{margin-left:-3.093333pt;}
._11_c00144{margin-left:-1.333333pt;}
._f_c00144{width:0.960000pt;}
._d_c00144{width:2.720000pt;}
._10_c00144{width:3.616000pt;}
._b_c00144{width:4.565333pt;}
._1b_c00144{width:5.760000pt;}
._e_c00144{width:6.826667pt;}
._1d_c00144{width:7.744000pt;}
._29_c00144{width:8.717333pt;}
._13_c00144{width:9.621333pt;}
._2d_c00144{width:11.061333pt;}
._2_c00144{width:12.106667pt;}
._2b_c00144{width:13.493333pt;}
._1a_c00144{width:15.074667pt;}
._5_c00144{width:16.213333pt;}
._31_c00144{width:17.202667pt;}
._12_c00144{width:18.272000pt;}
._17_c00144{width:19.384000pt;}
._1e_c00144{width:20.533333pt;}
._1c_c00144{width:21.674667pt;}
._a_c00144{width:23.040000pt;}
._4_c00144{width:23.946667pt;}
._23_c00144{width:25.173333pt;}
._28_c00144{width:26.880000pt;}
._1f_c00144{width:27.850667pt;}
._7_c00144{width:29.098667pt;}
._22_c00144{width:30.376000pt;}
._24_c00144{width:31.808000pt;}
._8_c00144{width:32.853333pt;}
._21_c00144{width:36.170667pt;}
._27_c00144{width:37.458667pt;}
._2c_c00144{width:38.536000pt;}
._9_c00144{width:39.808000pt;}
._30_c00144{width:41.760000pt;}
._6_c00144{width:42.773333pt;}
._35_c00144{width:46.754667pt;}
._36_c00144{width:48.576000pt;}
._20_c00144{width:50.720000pt;}
._3a_c00144{width:52.546667pt;}
._1_c00144{width:55.680000pt;}
._34_c00144{width:70.418667pt;}
._25_c00144{width:125.482667pt;}
._33_c00144{width:159.608000pt;}
._3c_c00144{width:161.205333pt;}
._26_c00144{width:164.765333pt;}
._3f_c00144{width:169.736000pt;}
._39_c00144{width:175.338667pt;}
._32_c00144{width:224.085333pt;}
._37_c00144{width:236.106667pt;}
._c_c00144{width:253.546667pt;}
._2e_c00144{width:264.618667pt;}
._3d_c00144{width:300.058667pt;}
._3b_c00144{width:641.386667pt;}
.fs4_c00144{font-size:37.333333pt;}
.fs1_c00144{font-size:42.666667pt;}
.fs0_c00144{font-size:53.333333pt;}
.fs2_c00144{font-size:56.000000pt;}
.fs3_c00144{font-size:58.666667pt;}
.y0_c00144{bottom:0.000000pt;}
.y2d_c00144{bottom:2.760000pt;}
.y2c_c00144{bottom:6.425206pt;}
.y2b_c00144{bottom:34.160000pt;}
.y2a_c00144{bottom:50.960000pt;}
.y29_c00144{bottom:67.493333pt;}
.y28_c00144{bottom:82.826667pt;}
.y27_c00144{bottom:98.960000pt;}
.y26_c00144{bottom:114.960000pt;}
.y25_c00144{bottom:132.560000pt;}
.y24_c00144{bottom:147.893333pt;}
.y23_c00144{bottom:162.960000pt;}
.y22_c00144{bottom:179.093333pt;}
.y21_c00144{bottom:195.360000pt;}
.y20_c00144{bottom:212.160000pt;}
.y1f_c00144{bottom:228.026667pt;}
.y1e_c00144{bottom:244.560000pt;}
.y1d_c00144{bottom:260.160000pt;}
.y1c_c00144{bottom:276.293333pt;}
.y1b_c00144{bottom:292.560000pt;}
.y1a_c00144{bottom:308.160000pt;}
.y19_c00144{bottom:324.293333pt;}
.y18_c00144{bottom:340.560000pt;}
.y17_c00144{bottom:356.160000pt;}
.y16_c00144{bottom:372.293333pt;}
.y15_c00144{bottom:388.293333pt;}
.y14_c00144{bottom:404.160000pt;}
.y13_c00144{bottom:420.293333pt;}
.y12_c00144{bottom:435.893333pt;}
.y11_c00144{bottom:451.893333pt;}
.y10_c00144{bottom:467.760000pt;}
.yf_c00144{bottom:484.160000pt;}
.ye_c00144{bottom:499.893333pt;}
.yd_c00144{bottom:516.026667pt;}
.yc_c00144{bottom:531.360000pt;}
.yb_c00144{bottom:546.693333pt;}
.ya_c00144{bottom:563.760000pt;}
.y9_c00144{bottom:579.626667pt;}
.y8_c00144{bottom:595.226667pt;}
.y7_c00144{bottom:611.493333pt;}
.y6_c00144{bottom:627.093333pt;}
.y5_c00144{bottom:643.493333pt;}
.y4_c00144{bottom:659.493333pt;}
.y3_c00144{bottom:675.893333pt;}
.y2_c00144{bottom:692.160000pt;}
.y1_c00144{bottom:708.960000pt;}
.h4_c00144{height:11.733399pt;}
.h5_c00144{height:38.937500pt;}
.h2_c00144{height:55.893333pt;}
.h3_c00144{height:61.482667pt;}
.h0_c00144{height:743.066667pt;}
.h1_c00144{height:743.333333pt;}
.w1_c00144{width:93.222667pt;}
.w0_c00144{width:516.000000pt;}
.x0_c00144{left:0.000000pt;}
.x8_c00144{left:11.733333pt;}
.x9_c00144{left:15.200000pt;}
.x7_c00144{left:45.866667pt;}
.x12_c00144{left:61.600000pt;}
.x10_c00144{left:63.466667pt;}
.xe_c00144{left:65.333333pt;}
.xf_c00144{left:66.666667pt;}
.x11_c00144{left:67.600000pt;}
.x4_c00144{left:68.533333pt;}
.x3_c00144{left:69.466667pt;}
.x5_c00144{left:71.200000pt;}
.xb_c00144{left:72.266667pt;}
.x2_c00144{left:73.333333pt;}
.x6_c00144{left:74.533333pt;}
.x14_c00144{left:82.533333pt;}
.x13_c00144{left:100.133333pt;}
.xd_c00144{left:107.333333pt;}
.xa_c00144{left:111.866667pt;}
.xc_c00144{left:122.400000pt;}
.x1_c00144{left:137.600000pt;}
.x16_c00144{left:215.168213pt;}
.x15_c00144{left:333.866667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_2c9371e7f61344ccc3b6f7c4.woff2')format("woff");}.ff1_c00145{font-family:ff1_c00145;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00145;src:url('chunks/assets/font_9f1a6419872a1d3822200bf3.woff2')format("woff");}.ff2_c00145{font-family:ff2_c00145;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00145;src:url('chunks/assets/font_5c4b94e59009d5afc3dcb4d3.woff2')format("woff");}.ff3_c00145{font-family:ff3_c00145;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00145;src:url('chunks/assets/font_423162ed338a499d97aae564.woff2')format("woff");}.ff4_c00145{font-family:ff4_c00145;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00145;src:url('chunks/assets/font_f868c087c4c1c3c4da1522b5.woff2')format("woff");}.ff5_c00145{font-family:ff5_c00145;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00145;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff6_c00145{font-family:ff6_c00145;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00145{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m0_c00145{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00145{vertical-align:-52.800000px;}
.v0_c00145{vertical-align:0.000000px;}
.v2_c00145{vertical-align:18.600000px;}
.ls4_c00145{letter-spacing:0.000000px;}
.ls0_c00145{letter-spacing:3.000000px;}
.ls1_c00145{letter-spacing:3.093000px;}
.ls5_c00145{letter-spacing:6.000000px;}
.ls6_c00145{letter-spacing:12.000000px;}
.ls2_c00145{letter-spacing:34.740000px;}
.ls3_c00145{letter-spacing:63.600000px;}
.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;}
}
.ws1_c00145{word-spacing:-23.340000px;}
.ws2_c00145{word-spacing:-18.060000px;}
.ws3_c00145{word-spacing:-15.576000px;}
.ws0_c00145{word-spacing:-14.160000px;}
.ws5_c00145{word-spacing:-4.152000px;}
.ws6_c00145{word-spacing:0.000000px;}
.ws4_c00145{word-spacing:71.988000px;}
._17_c00145{margin-left:-33.720000px;}
._24_c00145{margin-left:-25.680000px;}
._27_c00145{margin-left:-19.980000px;}
._21_c00145{margin-left:-18.660000px;}
._2a_c00145{margin-left:-14.322000px;}
._29_c00145{margin-left:-13.278000px;}
._1c_c00145{margin-left:-11.160000px;}
._19_c00145{margin-left:-8.880000px;}
._13_c00145{margin-left:-7.620000px;}
._10_c00145{margin-left:-5.460000px;}
._e_c00145{margin-left:-3.780000px;}
._a_c00145{margin-left:-2.640000px;}
._f_c00145{margin-left:-1.260000px;}
._9_c00145{width:1.200000px;}
._8_c00145{width:2.520000px;}
._11_c00145{width:4.200000px;}
._c_c00145{width:5.880000px;}
._5_c00145{width:7.680000px;}
._0_c00145{width:9.720000px;}
._b_c00145{width:11.040000px;}
._3_c00145{width:12.600000px;}
._4_c00145{width:14.640000px;}
._1_c00145{width:15.960000px;}
._2d_c00145{width:16.980000px;}
._1e_c00145{width:18.000000px;}
._7_c00145{width:19.860000px;}
._6_c00145{width:22.200000px;}
._12_c00145{width:23.640000px;}
._23_c00145{width:24.780000px;}
._2c_c00145{width:26.100000px;}
._25_c00145{width:27.360000px;}
._2e_c00145{width:29.340000px;}
._15_c00145{width:31.080000px;}
._20_c00145{width:32.940000px;}
._22_c00145{width:35.220000px;}
._18_c00145{width:37.380000px;}
._16_c00145{width:42.120000px;}
._1f_c00145{width:43.260000px;}
._14_c00145{width:44.640000px;}
._28_c00145{width:47.580000px;}
._26_c00145{width:50.016000px;}
._1a_c00145{width:74.700000px;}
._d_c00145{width:96.900000px;}
._2b_c00145{width:102.336000px;}
._2_c00145{width:297.240000px;}
._1b_c00145{width:309.120000px;}
._1d_c00145{width:310.740000px;}
.fc2_c00145{color:transparent;}
.fc1_c00145{color:rgb(128,128,128);}
.fc0_c00145{color:rgb(0,0,0);}
.fs3_c00145{font-size:24.000000px;}
.fs4_c00145{font-size:48.000000px;}
.fs1_c00145{font-size:57.000000px;}
.fs0_c00145{font-size:60.000000px;}
.fs2_c00145{font-size:66.000000px;}
.y0_c00145{bottom:0.000000px;}
.y50_c00145{bottom:3.105000px;}
.y4f_c00145{bottom:7.228355px;}
.y4e_c00145{bottom:40.485000px;}
.y4d_c00145{bottom:58.635000px;}
.y2a_c00145{bottom:60.285000px;}
.y4c_c00145{bottom:76.935000px;}
.y29_c00145{bottom:78.585000px;}
.y4b_c00145{bottom:95.085000px;}
.y28_c00145{bottom:95.535000px;}
.y4a_c00145{bottom:113.685000px;}
.y27_c00145{bottom:115.035000px;}
.y26_c00145{bottom:131.535000px;}
.y49_c00145{bottom:131.985000px;}
.y25_c00145{bottom:149.835000px;}
.y48_c00145{bottom:168.285000px;}
.y24_c00145{bottom:169.335000px;}
.y47_c00145{bottom:186.585000px;}
.y23_c00145{bottom:187.635000px;}
.y46_c00145{bottom:204.735000px;}
.y22_c00145{bottom:206.085000px;}
.y45_c00145{bottom:222.735000px;}
.y21_c00145{bottom:223.785000px;}
.y44_c00145{bottom:240.585000px;}
.y20_c00145{bottom:242.535000px;}
.y43_c00145{bottom:259.485000px;}
.y1f_c00145{bottom:260.235000px;}
.y42_c00145{bottom:277.635000px;}
.y1e_c00145{bottom:278.085000px;}
.y1d_c00145{bottom:294.585000px;}
.y41_c00145{bottom:295.335000px;}
.y1c_c00145{bottom:313.485000px;}
.y40_c00145{bottom:314.085000px;}
.y3f_c00145{bottom:326.685000px;}
.y1b_c00145{bottom:332.685000px;}
.y1a_c00145{bottom:351.585000px;}
.y3e_c00145{bottom:368.235000px;}
.y19_c00145{bottom:369.135000px;}
.y3d_c00145{bottom:386.085000px;}
.y18_c00145{bottom:388.335000px;}
.y3c_c00145{bottom:404.535000px;}
.y17_c00145{bottom:404.685000px;}
.y3b_c00145{bottom:423.435000px;}
.y16_c00145{bottom:423.585000px;}
.y15_c00145{bottom:440.985000px;}
.y3a_c00145{bottom:441.135000px;}
.y39_c00145{bottom:457.635000px;}
.y14_c00145{bottom:459.285000px;}
.y13_c00145{bottom:477.435000px;}
.y38_c00145{bottom:493.635000px;}
.y12_c00145{bottom:494.985000px;}
.y37_c00145{bottom:512.985000px;}
.y11_c00145{bottom:514.035000px;}
.y36_c00145{bottom:531.435000px;}
.y10_c00145{bottom:531.885000px;}
.yf_c00145{bottom:549.435000px;}
.y35_c00145{bottom:550.035000px;}
.y34_c00145{bottom:567.585000px;}
.ye_c00145{bottom:568.035000px;}
.yd_c00145{bottom:585.585000px;}
.yc_c00145{bottom:603.435000px;}
.y33_c00145{bottom:603.735000px;}
.yb_c00145{bottom:622.035000px;}
.ya_c00145{bottom:639.435000px;}
.y32_c00145{bottom:640.185000px;}
.y31_c00145{bottom:657.735000px;}
.y9_c00145{bottom:658.035000px;}
.y8_c00145{bottom:675.885000px;}
.y30_c00145{bottom:693.135000px;}
.y7_c00145{bottom:693.885000px;}
.y2f_c00145{bottom:712.035000px;}
.y6_c00145{bottom:712.335000px;}
.y5_c00145{bottom:728.985000px;}
.y2e_c00145{bottom:730.335000px;}
.y4_c00145{bottom:748.185000px;}
.y2d_c00145{bottom:748.485000px;}
.y3_c00145{bottom:765.135000px;}
.y2c_c00145{bottom:766.785000px;}
.y2_c00145{bottom:784.335000px;}
.y2b_c00145{bottom:784.935000px;}
.y1_c00145{bottom:803.835000px;}
.h9_c00145{height:13.200074px;}
.ha_c00145{height:43.804688px;}
.h7_c00145{height:59.736000px;}
.h4_c00145{height:60.819000px;}
.h2_c00145{height:62.880000px;}
.h3_c00145{height:64.020000px;}
.h5_c00145{height:69.168000px;}
.h8_c00145{height:81.480000px;}
.h6_c00145{height:83.563477px;}
.h1_c00145{height:841.500000px;}
.h0_c00145{height:841.575000px;}
.w2_c00145{width:104.875500px;}
.w1_c00145{width:556.500000px;}
.w0_c00145{width:556.725000px;}
.x0_c00145{left:0.000000px;}
.x6_c00145{left:20.550000px;}
.xa_c00145{left:21.600000px;}
.x2_c00145{left:75.900000px;}
.x1_c00145{left:76.950000px;}
.x5_c00145{left:78.600000px;}
.x3_c00145{left:82.050000px;}
.x4_c00145{left:83.400000px;}
.x7_c00145{left:85.050000px;}
.xb_c00145{left:86.400000px;}
.xc_c00145{left:87.750000px;}
.x8_c00145{left:158.400000px;}
.x9_c00145{left:161.700000px;}
.x1a_c00145{left:230.176758px;}
.xd_c00145{left:299.250000px;}
.xe_c00145{left:300.300000px;}
.xf_c00145{left:302.100000px;}
.x16_c00145{left:303.300000px;}
.x17_c00145{left:304.350000px;}
.x18_c00145{left:305.400000px;}
.x12_c00145{left:314.250000px;}
.x13_c00145{left:321.300000px;}
.x15_c00145{left:324.900000px;}
.x10_c00145{left:339.150000px;}
.x11_c00145{left:345.150000px;}
.x14_c00145{left:388.350000px;}
.x19_c00145{left:451.950000px;}
@media print{
.v1_c00145{vertical-align:-46.933333pt;}
.v0_c00145{vertical-align:0.000000pt;}
.v2_c00145{vertical-align:16.533333pt;}
.ls4_c00145{letter-spacing:0.000000pt;}
.ls0_c00145{letter-spacing:2.666667pt;}
.ls1_c00145{letter-spacing:2.749333pt;}
.ls5_c00145{letter-spacing:5.333333pt;}
.ls6_c00145{letter-spacing:10.666667pt;}
.ls2_c00145{letter-spacing:30.880000pt;}
.ls3_c00145{letter-spacing:56.533333pt;}
.ws1_c00145{word-spacing:-20.746667pt;}
.ws2_c00145{word-spacing:-16.053333pt;}
.ws3_c00145{word-spacing:-13.845333pt;}
.ws0_c00145{word-spacing:-12.586667pt;}
.ws5_c00145{word-spacing:-3.690667pt;}
.ws6_c00145{word-spacing:0.000000pt;}
.ws4_c00145{word-spacing:63.989333pt;}
._17_c00145{margin-left:-29.973333pt;}
._24_c00145{margin-left:-22.826667pt;}
._27_c00145{margin-left:-17.760000pt;}
._21_c00145{margin-left:-16.586667pt;}
._2a_c00145{margin-left:-12.730667pt;}
._29_c00145{margin-left:-11.802667pt;}
._1c_c00145{margin-left:-9.920000pt;}
._19_c00145{margin-left:-7.893333pt;}
._13_c00145{margin-left:-6.773333pt;}
._10_c00145{margin-left:-4.853333pt;}
._e_c00145{margin-left:-3.360000pt;}
._a_c00145{margin-left:-2.346667pt;}
._f_c00145{margin-left:-1.120000pt;}
._9_c00145{width:1.066667pt;}
._8_c00145{width:2.240000pt;}
._11_c00145{width:3.733333pt;}
._c_c00145{width:5.226667pt;}
._5_c00145{width:6.826667pt;}
._0_c00145{width:8.640000pt;}
._b_c00145{width:9.813333pt;}
._3_c00145{width:11.200000pt;}
._4_c00145{width:13.013333pt;}
._1_c00145{width:14.186667pt;}
._2d_c00145{width:15.093333pt;}
._1e_c00145{width:16.000000pt;}
._7_c00145{width:17.653333pt;}
._6_c00145{width:19.733333pt;}
._12_c00145{width:21.013333pt;}
._23_c00145{width:22.026667pt;}
._2c_c00145{width:23.200000pt;}
._25_c00145{width:24.320000pt;}
._2e_c00145{width:26.080000pt;}
._15_c00145{width:27.626667pt;}
._20_c00145{width:29.280000pt;}
._22_c00145{width:31.306667pt;}
._18_c00145{width:33.226667pt;}
._16_c00145{width:37.440000pt;}
._1f_c00145{width:38.453333pt;}
._14_c00145{width:39.680000pt;}
._28_c00145{width:42.293333pt;}
._26_c00145{width:44.458667pt;}
._1a_c00145{width:66.400000pt;}
._d_c00145{width:86.133333pt;}
._2b_c00145{width:90.965333pt;}
._2_c00145{width:264.213333pt;}
._1b_c00145{width:274.773333pt;}
._1d_c00145{width:276.213333pt;}
.fs3_c00145{font-size:21.333333pt;}
.fs4_c00145{font-size:42.666667pt;}
.fs1_c00145{font-size:50.666667pt;}
.fs0_c00145{font-size:53.333333pt;}
.fs2_c00145{font-size:58.666667pt;}
.y0_c00145{bottom:0.000000pt;}
.y50_c00145{bottom:2.760000pt;}
.y4f_c00145{bottom:6.425204pt;}
.y4e_c00145{bottom:35.986667pt;}
.y4d_c00145{bottom:52.120000pt;}
.y2a_c00145{bottom:53.586667pt;}
.y4c_c00145{bottom:68.386667pt;}
.y29_c00145{bottom:69.853333pt;}
.y4b_c00145{bottom:84.520000pt;}
.y28_c00145{bottom:84.920000pt;}
.y4a_c00145{bottom:101.053333pt;}
.y27_c00145{bottom:102.253333pt;}
.y26_c00145{bottom:116.920000pt;}
.y49_c00145{bottom:117.320000pt;}
.y25_c00145{bottom:133.186667pt;}
.y48_c00145{bottom:149.586667pt;}
.y24_c00145{bottom:150.520000pt;}
.y47_c00145{bottom:165.853333pt;}
.y23_c00145{bottom:166.786667pt;}
.y46_c00145{bottom:181.986667pt;}
.y22_c00145{bottom:183.186667pt;}
.y45_c00145{bottom:197.986667pt;}
.y21_c00145{bottom:198.920000pt;}
.y44_c00145{bottom:213.853333pt;}
.y20_c00145{bottom:215.586667pt;}
.y43_c00145{bottom:230.653333pt;}
.y1f_c00145{bottom:231.320000pt;}
.y42_c00145{bottom:246.786667pt;}
.y1e_c00145{bottom:247.186667pt;}
.y1d_c00145{bottom:261.853333pt;}
.y41_c00145{bottom:262.520000pt;}
.y1c_c00145{bottom:278.653333pt;}
.y40_c00145{bottom:279.186667pt;}
.y3f_c00145{bottom:290.386667pt;}
.y1b_c00145{bottom:295.720000pt;}
.y1a_c00145{bottom:312.520000pt;}
.y3e_c00145{bottom:327.320000pt;}
.y19_c00145{bottom:328.120000pt;}
.y3d_c00145{bottom:343.186667pt;}
.y18_c00145{bottom:345.186667pt;}
.y3c_c00145{bottom:359.586667pt;}
.y17_c00145{bottom:359.720000pt;}
.y3b_c00145{bottom:376.386667pt;}
.y16_c00145{bottom:376.520000pt;}
.y15_c00145{bottom:391.986667pt;}
.y3a_c00145{bottom:392.120000pt;}
.y39_c00145{bottom:406.786667pt;}
.y14_c00145{bottom:408.253333pt;}
.y13_c00145{bottom:424.386667pt;}
.y38_c00145{bottom:438.786667pt;}
.y12_c00145{bottom:439.986667pt;}
.y37_c00145{bottom:455.986667pt;}
.y11_c00145{bottom:456.920000pt;}
.y36_c00145{bottom:472.386667pt;}
.y10_c00145{bottom:472.786667pt;}
.yf_c00145{bottom:488.386667pt;}
.y35_c00145{bottom:488.920000pt;}
.y34_c00145{bottom:504.520000pt;}
.ye_c00145{bottom:504.920000pt;}
.yd_c00145{bottom:520.520000pt;}
.yc_c00145{bottom:536.386667pt;}
.y33_c00145{bottom:536.653333pt;}
.yb_c00145{bottom:552.920000pt;}
.ya_c00145{bottom:568.386667pt;}
.y32_c00145{bottom:569.053333pt;}
.y31_c00145{bottom:584.653333pt;}
.y9_c00145{bottom:584.920000pt;}
.y8_c00145{bottom:600.786667pt;}
.y30_c00145{bottom:616.120000pt;}
.y7_c00145{bottom:616.786667pt;}
.y2f_c00145{bottom:632.920000pt;}
.y6_c00145{bottom:633.186667pt;}
.y5_c00145{bottom:647.986667pt;}
.y2e_c00145{bottom:649.186667pt;}
.y4_c00145{bottom:665.053333pt;}
.y2d_c00145{bottom:665.320000pt;}
.y3_c00145{bottom:680.120000pt;}
.y2c_c00145{bottom:681.586667pt;}
.y2_c00145{bottom:697.186667pt;}
.y2b_c00145{bottom:697.720000pt;}
.y1_c00145{bottom:714.520000pt;}
.h9_c00145{height:11.733399pt;}
.ha_c00145{height:38.937500pt;}
.h7_c00145{height:53.098667pt;}
.h4_c00145{height:54.061333pt;}
.h2_c00145{height:55.893333pt;}
.h3_c00145{height:56.906667pt;}
.h5_c00145{height:61.482667pt;}
.h8_c00145{height:72.426667pt;}
.h6_c00145{height:74.278646pt;}
.h1_c00145{height:748.000000pt;}
.h0_c00145{height:748.066667pt;}
.w2_c00145{width:93.222667pt;}
.w1_c00145{width:494.666667pt;}
.w0_c00145{width:494.866667pt;}
.x0_c00145{left:0.000000pt;}
.x6_c00145{left:18.266667pt;}
.xa_c00145{left:19.200000pt;}
.x2_c00145{left:67.466667pt;}
.x1_c00145{left:68.400000pt;}
.x5_c00145{left:69.866667pt;}
.x3_c00145{left:72.933333pt;}
.x4_c00145{left:74.133333pt;}
.x7_c00145{left:75.600000pt;}
.xb_c00145{left:76.800000pt;}
.xc_c00145{left:78.000000pt;}
.x8_c00145{left:140.800000pt;}
.x9_c00145{left:143.733333pt;}
.x1a_c00145{left:204.601563pt;}
.xd_c00145{left:266.000000pt;}
.xe_c00145{left:266.933333pt;}
.xf_c00145{left:268.533333pt;}
.x16_c00145{left:269.600000pt;}
.x17_c00145{left:270.533333pt;}
.x18_c00145{left:271.466667pt;}
.x12_c00145{left:279.333333pt;}
.x13_c00145{left:285.600000pt;}
.x15_c00145{left:288.800000pt;}
.x10_c00145{left:301.466667pt;}
.x11_c00145{left:306.800000pt;}
.x14_c00145{left:345.200000pt;}
.x19_c00145{left:401.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_9e5e59aa66ea7bb52bda4d4d.woff2')format("woff");}.ff1_c00146{font-family:ff1_c00146;line-height:1.437000;font-style:normal;font-weight:normal;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_a2b4581dec5c21b50380a479.woff2')format("woff");}.ff2_c00146{font-family:ff2_c00146;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00146;src:url('chunks/assets/font_e3bfdf71cf662e9f0c16b484.woff2')format("woff");}.ff3_c00146{font-family:ff3_c00146;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00146;src:url('chunks/assets/font_05b07b30ef27f6ce5296c5c8.woff2')format("woff");}.ff4_c00146{font-family:ff4_c00146;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00146;src:url('chunks/assets/font_75208ee3ab004794e4b2e452.woff2')format("woff");}.ff5_c00146{font-family:ff5_c00146;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00146;src:url('chunks/assets/font_507c8a0028461a3b38efbcd2.woff2')format("woff");}.ff6_c00146{font-family:ff6_c00146;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00146;src:url('chunks/assets/font_db92185df370fb4887646ed7.woff2')format("woff");}.ff7_c00146{font-family:ff7_c00146;line-height:1.012793;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00146;src:url('chunks/assets/font_0ce391de997f24f9f9dd37f4.woff2')format("woff");}.ff8_c00146{font-family:ff8_c00146;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00146;src:url('chunks/assets/font_2d8e91d8dc517191c0a2a9e6.woff2')format("woff");}.ff9_c00146{font-family:ff9_c00146;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00146;src:url('chunks/assets/font_feaecf82792a3f2dbe24cad4.woff2')format("woff");}.ffa_c00146{font-family:ffa_c00146;line-height:1.575000;font-style:normal;font-weight: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_c00146;src:url('chunks/assets/font_5a773dcad70d84638ecb2d41.woff2')format("woff");}.ffb_c00146{font-family:ffb_c00146;line-height:1.012793;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc_c00146;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ffc_c00146{font-family:ffc_c00146;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00146{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00146{vertical-align:0.000000px;}
.ls11_c00146{letter-spacing:-3.000000px;}
.lsf_c00146{letter-spacing:0.000000px;}
.ls4_c00146{letter-spacing:1.467000px;}
.ls8_c00146{letter-spacing:1.605000px;}
.lsc_c00146{letter-spacing:2.667000px;}
.ls0_c00146{letter-spacing:3.000000px;}
.lsb_c00146{letter-spacing:3.267000px;}
.ls6_c00146{letter-spacing:4.440000px;}
.lsd_c00146{letter-spacing:4.686000px;}
.ls3_c00146{letter-spacing:5.067000px;}
.ls1_c00146{letter-spacing:6.000000px;}
.lse_c00146{letter-spacing:7.467000px;}
.ls2_c00146{letter-spacing:8.787000px;}
.ls10_c00146{letter-spacing:9.000000px;}
.ls7_c00146{letter-spacing:18.387000px;}
.ls5_c00146{letter-spacing:18.987000px;}
.lsa_c00146{letter-spacing:26.187000px;}
.ls9_c00146{letter-spacing:39.987000px;}
.sc__c00146{text-shadow:none;}
.sc0_c00146{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00146{-webkit-text-stroke:0px transparent;}
.sc0_c00146{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00146{word-spacing:-22.623000px;}
.ws7_c00146{word-spacing:-20.679000px;}
.ws1_c00146{word-spacing:-19.500000px;}
.ws3_c00146{word-spacing:-18.801000px;}
.ws4_c00146{word-spacing:-18.060000px;}
.ws2_c00146{word-spacing:-14.427000px;}
.ws0_c00146{word-spacing:-14.160000px;}
.ws6_c00146{word-spacing:-11.679000px;}
.ws8_c00146{word-spacing:0.000000px;}
._30_c00146{margin-left:-15.270000px;}
._19_c00146{margin-left:-13.083000px;}
._1c_c00146{margin-left:-11.907000px;}
._17_c00146{margin-left:-10.020000px;}
._13_c00146{margin-left:-7.980000px;}
._10_c00146{margin-left:-6.000000px;}
._11_c00146{margin-left:-4.224000px;}
._c_c00146{margin-left:-2.583000px;}
._14_c00146{margin-left:-1.437000px;}
._18_c00146{width:1.110000px;}
._a_c00146{width:2.244000px;}
._b_c00146{width:3.801000px;}
._1_c00146{width:4.968000px;}
._0_c00146{width:6.348000px;}
._5_c00146{width:7.452000px;}
._e_c00146{width:9.072000px;}
._7_c00146{width:10.143000px;}
._1a_c00146{width:11.760000px;}
._3_c00146{width:13.179000px;}
._4_c00146{width:14.352000px;}
._12_c00146{width:15.858000px;}
._6_c00146{width:17.319000px;}
._21_c00146{width:18.345000px;}
._15_c00146{width:20.331000px;}
._1e_c00146{width:21.966000px;}
._26_c00146{width:23.997000px;}
._16_c00146{width:25.929000px;}
._22_c00146{width:27.987000px;}
._2a_c00146{width:29.682000px;}
._f_c00146{width:32.445000px;}
._28_c00146{width:33.561000px;}
._27_c00146{width:36.216000px;}
._2_c00146{width:39.054000px;}
._1d_c00146{width:40.182000px;}
._9_c00146{width:41.400000px;}
._2e_c00146{width:42.609000px;}
._25_c00146{width:46.500000px;}
._2f_c00146{width:47.859000px;}
._d_c00146{width:66.981000px;}
._2b_c00146{width:68.412000px;}
._2c_c00146{width:71.550000px;}
._1f_c00146{width:73.869000px;}
._24_c00146{width:78.390000px;}
._1b_c00146{width:81.735000px;}
._23_c00146{width:84.852000px;}
._20_c00146{width:92.712000px;}
._29_c00146{width:119.817000px;}
._2d_c00146{width:126.891000px;}
._31_c00146{width:178.503000px;}
._8_c00146{width:336.513000px;}
.fc2_c00146{color:transparent;}
.fc1_c00146{color:rgb(128,128,128);}
.fc0_c00146{color:rgb(0,0,0);}
.fs8_c00146{font-size:45.000000px;}
.fs3_c00146{font-size:48.000000px;}
.fs1_c00146{font-size:51.000000px;}
.fs5_c00146{font-size:54.000000px;}
.fs6_c00146{font-size:57.000000px;}
.fs2_c00146{font-size:60.000000px;}
.fs7_c00146{font-size:63.000000px;}
.fs4_c00146{font-size:66.000000px;}
.fs0_c00146{font-size:69.000000px;}
.y0_c00146{bottom:0.000000px;}
.y51_c00146{bottom:3.105000px;}
.y50_c00146{bottom:7.228363px;}
.y4f_c00146{bottom:48.150000px;}
.y4e_c00146{bottom:66.450000px;}
.y43_c00146{bottom:67.500000px;}
.y4d_c00146{bottom:84.750000px;}
.y42_c00146{bottom:86.100000px;}
.y4c_c00146{bottom:102.600000px;}
.y41_c00146{bottom:104.250000px;}
.y4b_c00146{bottom:120.150000px;}
.y40_c00146{bottom:121.500000px;}
.y4a_c00146{bottom:139.050000px;}
.y3f_c00146{bottom:139.950000px;}
.y49_c00146{bottom:156.900000px;}
.y3e_c00146{bottom:157.200000px;}
.y48_c00146{bottom:175.200000px;}
.y3d_c00146{bottom:176.100000px;}
.y47_c00146{bottom:193.350000px;}
.y3c_c00146{bottom:194.100000px;}
.y46_c00146{bottom:211.650000px;}
.y3b_c00146{bottom:212.850000px;}
.y45_c00146{bottom:229.800000px;}
.y3a_c00146{bottom:230.550000px;}
.y44_c00146{bottom:247.950000px;}
.y39_c00146{bottom:249.000000px;}
.y34_c00146{bottom:265.950000px;}
.y33_c00146{bottom:284.400000px;}
.y32_c00146{bottom:302.700000px;}
.y38_c00146{bottom:303.450000px;}
.y31_c00146{bottom:320.550000px;}
.y37_c00146{bottom:322.350000px;}
.y30_c00146{bottom:338.850000px;}
.y36_c00146{bottom:339.450000px;}
.y2f_c00146{bottom:356.700000px;}
.y35_c00146{bottom:357.000000px;}
.y2e_c00146{bottom:374.850000px;}
.y28_c00146{bottom:375.000000px;}
.y27_c00146{bottom:393.150000px;}
.y26_c00146{bottom:411.000000px;}
.y25_c00146{bottom:427.650000px;}
.y2d_c00146{bottom:429.600000px;}
.y24_c00146{bottom:446.550000px;}
.y2c_c00146{bottom:447.750000px;}
.y23_c00146{bottom:464.100000px;}
.y2b_c00146{bottom:465.750000px;}
.y22_c00146{bottom:481.500000px;}
.y2a_c00146{bottom:484.200000px;}
.y21_c00146{bottom:500.400000px;}
.y29_c00146{bottom:501.750000px;}
.y20_c00146{bottom:518.400000px;}
.y1f_c00146{bottom:536.250000px;}
.yf_c00146{bottom:553.800000px;}
.y1d_c00146{bottom:555.750000px;}
.ye_c00146{bottom:571.800000px;}
.y1c_c00146{bottom:573.750000px;}
.y10_c00146{bottom:586.200000px;}
.yd_c00146{bottom:589.650000px;}
.y1b_c00146{bottom:591.750000px;}
.yc_c00146{bottom:607.800000px;}
.y1a_c00146{bottom:609.900000px;}
.yb_c00146{bottom:625.800000px;}
.y19_c00146{bottom:628.050000px;}
.ya_c00146{bottom:643.650000px;}
.y18_c00146{bottom:646.950000px;}
.y1e_c00146{bottom:647.250000px;}
.y9_c00146{bottom:661.950000px;}
.y17_c00146{bottom:664.800000px;}
.y8_c00146{bottom:680.100000px;}
.y16_c00146{bottom:682.800000px;}
.y7_c00146{bottom:697.350000px;}
.y15_c00146{bottom:700.350000px;}
.y6_c00146{bottom:715.800000px;}
.y14_c00146{bottom:719.100000px;}
.y5_c00146{bottom:734.400000px;}
.y13_c00146{bottom:738.000000px;}
.y4_c00146{bottom:752.250000px;}
.y12_c00146{bottom:755.400000px;}
.y3_c00146{bottom:770.250000px;}
.y11_c00146{bottom:772.500000px;}
.y2_c00146{bottom:790.200000px;}
.y1_c00146{bottom:809.700000px;}
.h9_c00146{height:13.200074px;}
.ha_c00146{height:43.804688px;}
.h7_c00146{height:53.448000px;}
.h5_c00146{height:59.736000px;}
.h3_c00146{height:62.880000px;}
.h6_c00146{height:66.024000px;}
.h4_c00146{height:70.422000px;}
.h2_c00146{height:72.312000px;}
.h8_c00146{height:73.623000px;}
.h1_c00146{height:842.250000px;}
.h0_c00146{height:842.400000px;}
.w2_c00146{width:104.875500px;}
.w0_c00146{width:584.850000px;}
.w1_c00146{width:585.000000px;}
.x0_c00146{left:0.000000px;}
.x10_c00146{left:9.150000px;}
.x11_c00146{left:11.400000px;}
.x8_c00146{left:14.100000px;}
.x18_c00146{left:60.300000px;}
.x17_c00146{left:61.650000px;}
.x16_c00146{left:63.000000px;}
.x15_c00146{left:64.500000px;}
.x2_c00146{left:66.150000px;}
.x5_c00146{left:68.550000px;}
.x7_c00146{left:71.100000px;}
.xf_c00146{left:72.450000px;}
.x6_c00146{left:73.650000px;}
.x4_c00146{left:75.150000px;}
.x3_c00146{left:76.200000px;}
.x1_c00146{left:210.600000px;}
.x1d_c00146{left:244.239258px;}
.x1b_c00146{left:279.150000px;}
.x1a_c00146{left:280.350000px;}
.x19_c00146{left:281.850000px;}
.x14_c00146{left:283.500000px;}
.x13_c00146{left:285.900000px;}
.x12_c00146{left:287.250000px;}
.xa_c00146{left:288.300000px;}
.xd_c00146{left:289.650000px;}
.xc_c00146{left:290.850000px;}
.xb_c00146{left:292.050000px;}
.x9_c00146{left:294.000000px;}
.x1c_c00146{left:380.700000px;}
.xe_c00146{left:495.000000px;}
@media print{
.v0_c00146{vertical-align:0.000000pt;}
.ls11_c00146{letter-spacing:-2.666667pt;}
.lsf_c00146{letter-spacing:0.000000pt;}
.ls4_c00146{letter-spacing:1.304000pt;}
.ls8_c00146{letter-spacing:1.426667pt;}
.lsc_c00146{letter-spacing:2.370667pt;}
.ls0_c00146{letter-spacing:2.666667pt;}
.lsb_c00146{letter-spacing:2.904000pt;}
.ls6_c00146{letter-spacing:3.946667pt;}
.lsd_c00146{letter-spacing:4.165333pt;}
.ls3_c00146{letter-spacing:4.504000pt;}
.ls1_c00146{letter-spacing:5.333333pt;}
.lse_c00146{letter-spacing:6.637333pt;}
.ls2_c00146{letter-spacing:7.810667pt;}
.ls10_c00146{letter-spacing:8.000000pt;}
.ls7_c00146{letter-spacing:16.344000pt;}
.ls5_c00146{letter-spacing:16.877333pt;}
.lsa_c00146{letter-spacing:23.277333pt;}
.ls9_c00146{letter-spacing:35.544000pt;}
.ws5_c00146{word-spacing:-20.109333pt;}
.ws7_c00146{word-spacing:-18.381333pt;}
.ws1_c00146{word-spacing:-17.333333pt;}
.ws3_c00146{word-spacing:-16.712000pt;}
.ws4_c00146{word-spacing:-16.053333pt;}
.ws2_c00146{word-spacing:-12.824000pt;}
.ws0_c00146{word-spacing:-12.586667pt;}
.ws6_c00146{word-spacing:-10.381333pt;}
.ws8_c00146{word-spacing:0.000000pt;}
._30_c00146{margin-left:-13.573333pt;}
._19_c00146{margin-left:-11.629333pt;}
._1c_c00146{margin-left:-10.584000pt;}
._17_c00146{margin-left:-8.906667pt;}
._13_c00146{margin-left:-7.093333pt;}
._10_c00146{margin-left:-5.333333pt;}
._11_c00146{margin-left:-3.754667pt;}
._c_c00146{margin-left:-2.296000pt;}
._14_c00146{margin-left:-1.277333pt;}
._18_c00146{width:0.986667pt;}
._a_c00146{width:1.994667pt;}
._b_c00146{width:3.378667pt;}
._1_c00146{width:4.416000pt;}
._0_c00146{width:5.642667pt;}
._5_c00146{width:6.624000pt;}
._e_c00146{width:8.064000pt;}
._7_c00146{width:9.016000pt;}
._1a_c00146{width:10.453333pt;}
._3_c00146{width:11.714667pt;}
._4_c00146{width:12.757333pt;}
._12_c00146{width:14.096000pt;}
._6_c00146{width:15.394667pt;}
._21_c00146{width:16.306667pt;}
._15_c00146{width:18.072000pt;}
._1e_c00146{width:19.525333pt;}
._26_c00146{width:21.330667pt;}
._16_c00146{width:23.048000pt;}
._22_c00146{width:24.877333pt;}
._2a_c00146{width:26.384000pt;}
._f_c00146{width:28.840000pt;}
._28_c00146{width:29.832000pt;}
._27_c00146{width:32.192000pt;}
._2_c00146{width:34.714667pt;}
._1d_c00146{width:35.717333pt;}
._9_c00146{width:36.800000pt;}
._2e_c00146{width:37.874667pt;}
._25_c00146{width:41.333333pt;}
._2f_c00146{width:42.541333pt;}
._d_c00146{width:59.538667pt;}
._2b_c00146{width:60.810667pt;}
._2c_c00146{width:63.600000pt;}
._1f_c00146{width:65.661333pt;}
._24_c00146{width:69.680000pt;}
._1b_c00146{width:72.653333pt;}
._23_c00146{width:75.424000pt;}
._20_c00146{width:82.410667pt;}
._29_c00146{width:106.504000pt;}
._2d_c00146{width:112.792000pt;}
._31_c00146{width:158.669333pt;}
._8_c00146{width:299.122667pt;}
.fs8_c00146{font-size:40.000000pt;}
.fs3_c00146{font-size:42.666667pt;}
.fs1_c00146{font-size:45.333333pt;}
.fs5_c00146{font-size:48.000000pt;}
.fs6_c00146{font-size:50.666667pt;}
.fs2_c00146{font-size:53.333333pt;}
.fs7_c00146{font-size:56.000000pt;}
.fs4_c00146{font-size:58.666667pt;}
.fs0_c00146{font-size:61.333333pt;}
.y0_c00146{bottom:0.000000pt;}
.y51_c00146{bottom:2.760000pt;}
.y50_c00146{bottom:6.425212pt;}
.y4f_c00146{bottom:42.800000pt;}
.y4e_c00146{bottom:59.066667pt;}
.y43_c00146{bottom:60.000000pt;}
.y4d_c00146{bottom:75.333333pt;}
.y42_c00146{bottom:76.533333pt;}
.y4c_c00146{bottom:91.200000pt;}
.y41_c00146{bottom:92.666667pt;}
.y4b_c00146{bottom:106.800000pt;}
.y40_c00146{bottom:108.000000pt;}
.y4a_c00146{bottom:123.600000pt;}
.y3f_c00146{bottom:124.400000pt;}
.y49_c00146{bottom:139.466667pt;}
.y3e_c00146{bottom:139.733333pt;}
.y48_c00146{bottom:155.733333pt;}
.y3d_c00146{bottom:156.533333pt;}
.y47_c00146{bottom:171.866667pt;}
.y3c_c00146{bottom:172.533333pt;}
.y46_c00146{bottom:188.133333pt;}
.y3b_c00146{bottom:189.200000pt;}
.y45_c00146{bottom:204.266667pt;}
.y3a_c00146{bottom:204.933333pt;}
.y44_c00146{bottom:220.400000pt;}
.y39_c00146{bottom:221.333333pt;}
.y34_c00146{bottom:236.400000pt;}
.y33_c00146{bottom:252.800000pt;}
.y32_c00146{bottom:269.066667pt;}
.y38_c00146{bottom:269.733333pt;}
.y31_c00146{bottom:284.933333pt;}
.y37_c00146{bottom:286.533333pt;}
.y30_c00146{bottom:301.200000pt;}
.y36_c00146{bottom:301.733333pt;}
.y2f_c00146{bottom:317.066667pt;}
.y35_c00146{bottom:317.333333pt;}
.y2e_c00146{bottom:333.200000pt;}
.y28_c00146{bottom:333.333333pt;}
.y27_c00146{bottom:349.466667pt;}
.y26_c00146{bottom:365.333333pt;}
.y25_c00146{bottom:380.133333pt;}
.y2d_c00146{bottom:381.866667pt;}
.y24_c00146{bottom:396.933333pt;}
.y2c_c00146{bottom:398.000000pt;}
.y23_c00146{bottom:412.533333pt;}
.y2b_c00146{bottom:414.000000pt;}
.y22_c00146{bottom:428.000000pt;}
.y2a_c00146{bottom:430.400000pt;}
.y21_c00146{bottom:444.800000pt;}
.y29_c00146{bottom:446.000000pt;}
.y20_c00146{bottom:460.800000pt;}
.y1f_c00146{bottom:476.666667pt;}
.yf_c00146{bottom:492.266667pt;}
.y1d_c00146{bottom:494.000000pt;}
.ye_c00146{bottom:508.266667pt;}
.y1c_c00146{bottom:510.000000pt;}
.y10_c00146{bottom:521.066667pt;}
.yd_c00146{bottom:524.133333pt;}
.y1b_c00146{bottom:526.000000pt;}
.yc_c00146{bottom:540.266667pt;}
.y1a_c00146{bottom:542.133333pt;}
.yb_c00146{bottom:556.266667pt;}
.y19_c00146{bottom:558.266667pt;}
.ya_c00146{bottom:572.133333pt;}
.y18_c00146{bottom:575.066667pt;}
.y1e_c00146{bottom:575.333333pt;}
.y9_c00146{bottom:588.400000pt;}
.y17_c00146{bottom:590.933333pt;}
.y8_c00146{bottom:604.533333pt;}
.y16_c00146{bottom:606.933333pt;}
.y7_c00146{bottom:619.866667pt;}
.y15_c00146{bottom:622.533333pt;}
.y6_c00146{bottom:636.266667pt;}
.y14_c00146{bottom:639.200000pt;}
.y5_c00146{bottom:652.800000pt;}
.y13_c00146{bottom:656.000000pt;}
.y4_c00146{bottom:668.666667pt;}
.y12_c00146{bottom:671.466667pt;}
.y3_c00146{bottom:684.666667pt;}
.y11_c00146{bottom:686.666667pt;}
.y2_c00146{bottom:702.400000pt;}
.y1_c00146{bottom:719.733333pt;}
.h9_c00146{height:11.733399pt;}
.ha_c00146{height:38.937500pt;}
.h7_c00146{height:47.509333pt;}
.h5_c00146{height:53.098667pt;}
.h3_c00146{height:55.893333pt;}
.h6_c00146{height:58.688000pt;}
.h4_c00146{height:62.597333pt;}
.h2_c00146{height:64.277333pt;}
.h8_c00146{height:65.442667pt;}
.h1_c00146{height:748.666667pt;}
.h0_c00146{height:748.800000pt;}
.w2_c00146{width:93.222667pt;}
.w0_c00146{width:519.866667pt;}
.w1_c00146{width:520.000000pt;}
.x0_c00146{left:0.000000pt;}
.x10_c00146{left:8.133333pt;}
.x11_c00146{left:10.133333pt;}
.x8_c00146{left:12.533333pt;}
.x18_c00146{left:53.600000pt;}
.x17_c00146{left:54.800000pt;}
.x16_c00146{left:56.000000pt;}
.x15_c00146{left:57.333333pt;}
.x2_c00146{left:58.800000pt;}
.x5_c00146{left:60.933333pt;}
.x7_c00146{left:63.200000pt;}
.xf_c00146{left:64.400000pt;}
.x6_c00146{left:65.466667pt;}
.x4_c00146{left:66.800000pt;}
.x3_c00146{left:67.733333pt;}
.x1_c00146{left:187.200000pt;}
.x1d_c00146{left:217.101563pt;}
.x1b_c00146{left:248.133333pt;}
.x1a_c00146{left:249.200000pt;}
.x19_c00146{left:250.533333pt;}
.x14_c00146{left:252.000000pt;}
.x13_c00146{left:254.133333pt;}
.x12_c00146{left:255.333333pt;}
.xa_c00146{left:256.266667pt;}
.xd_c00146{left:257.466667pt;}
.xc_c00146{left:258.533333pt;}
.xb_c00146{left:259.600000pt;}
.x9_c00146{left:261.333333pt;}
.x1c_c00146{left:338.400000pt;}
.xe_c00146{left:440.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_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_a47f91e8506d423503dd23c1.woff2')format("woff");}.ff1_c00147{font-family:ff1_c00147;line-height:1.575000;font-style:normal;font-weight:normal;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_ae993f5496cb7543763f5212.woff2')format("woff");}.ff2_c00147{font-family:ff2_c00147;line-height:1.437000;font-style:normal;font-weight:normal;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_0a4eb6203fa8c673986ea7e5.woff2')format("woff");}.ff3_c00147{font-family:ff3_c00147;line-height:1.437000;font-style:normal;font-weight:normal;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_dc61d3f6f50ef369f723d0ad.woff2')format("woff");}.ff4_c00147{font-family:ff4_c00147;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00147;src:url('chunks/assets/font_28a213103c055be71e28c31d.woff2')format("woff");}.ff5_c00147{font-family:ff5_c00147;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00147;src:url('chunks/assets/font_662c038188d898be3c3297da.woff2')format("woff");}.ff6_c00147{font-family:ff6_c00147;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00147;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff7_c00147{font-family:ff7_c00147;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00147{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00147{vertical-align:0.000000px;}
.ls5_c00147{letter-spacing:0.000000px;}
.ls3_c00147{letter-spacing:3.000000px;}
.ls1_c00147{letter-spacing:4.800000px;}
.ls6_c00147{letter-spacing:6.000000px;}
.ls2_c00147{letter-spacing:12.000000px;}
.ls0_c00147{letter-spacing:19.200000px;}
.ls4_c00147{letter-spacing:21.300000px;}
.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;}
}
.ws4_c00147{word-spacing:-41.565000px;}
.ws0_c00147{word-spacing:-36.540000px;}
.ws5_c00147{word-spacing:-23.340000px;}
.ws1_c00147{word-spacing:-18.060000px;}
.ws3_c00147{word-spacing:-14.160000px;}
.ws2_c00147{word-spacing:-13.452000px;}
.ws6_c00147{word-spacing:0.000000px;}
._2b_c00147{margin-left:-19.560000px;}
._28_c00147{margin-left:-17.589000px;}
._2c_c00147{margin-left:-15.420000px;}
._2f_c00147{margin-left:-13.860000px;}
._16_c00147{margin-left:-12.660000px;}
._e_c00147{margin-left:-10.020000px;}
._13_c00147{margin-left:-8.700000px;}
._23_c00147{margin-left:-7.620000px;}
._12_c00147{margin-left:-6.540000px;}
._15_c00147{margin-left:-5.460000px;}
._f_c00147{margin-left:-4.260000px;}
._0_c00147{margin-left:-2.940000px;}
._6_c00147{margin-left:-1.440000px;}
._9_c00147{width:1.500000px;}
._a_c00147{width:2.580000px;}
._29_c00147{width:3.600000px;}
._c_c00147{width:4.620000px;}
._d_c00147{width:6.120000px;}
._3_c00147{width:7.320000px;}
._5_c00147{width:8.700000px;}
._11_c00147{width:10.620000px;}
._8_c00147{width:11.760000px;}
._7_c00147{width:12.900000px;}
._10_c00147{width:14.340000px;}
._18_c00147{width:15.900000px;}
._4_c00147{width:17.040000px;}
._21_c00147{width:19.062000px;}
._26_c00147{width:20.220000px;}
._2_c00147{width:21.660000px;}
._14_c00147{width:22.980000px;}
._1c_c00147{width:24.450000px;}
._1a_c00147{width:25.680000px;}
._22_c00147{width:27.780000px;}
._19_c00147{width:29.580000px;}
._2d_c00147{width:31.980000px;}
._17_c00147{width:33.960000px;}
._1f_c00147{width:36.840000px;}
._2a_c00147{width:38.640000px;}
._20_c00147{width:43.365000px;}
._24_c00147{width:44.880000px;}
._1e_c00147{width:53.508000px;}
._2e_c00147{width:63.378000px;}
._b_c00147{width:70.200000px;}
._27_c00147{width:96.354000px;}
._25_c00147{width:130.140000px;}
._1b_c00147{width:135.204000px;}
._1d_c00147{width:160.128000px;}
._1_c00147{width:740.040000px;}
.fc2_c00147{color:transparent;}
.fc1_c00147{color:rgb(128,128,128);}
.fc0_c00147{color:rgb(0,0,0);}
.fs2_c00147{font-size:39.000000px;}
.fs4_c00147{font-size:48.000000px;}
.fs3_c00147{font-size:51.000000px;}
.fs1_c00147{font-size:57.000000px;}
.fs0_c00147{font-size:60.000000px;}
.y0_c00147{bottom:0.000000px;}
.y5a_c00147{bottom:3.105000px;}
.y59_c00147{bottom:7.228355px;}
.y53_c00147{bottom:40.035000px;}
.y52_c00147{bottom:62.385000px;}
.y2a_c00147{bottom:65.685000px;}
.y51_c00147{bottom:80.985000px;}
.y29_c00147{bottom:83.685000px;}
.y50_c00147{bottom:98.835000px;}
.y28_c00147{bottom:102.135000px;}
.y4f_c00147{bottom:117.435000px;}
.y27_c00147{bottom:120.735000px;}
.y4e_c00147{bottom:136.035000px;}
.y26_c00147{bottom:137.685000px;}
.y4d_c00147{bottom:153.885000px;}
.y25_c00147{bottom:157.185000px;}
.y4c_c00147{bottom:172.335000px;}
.y24_c00147{bottom:175.185000px;}
.y4b_c00147{bottom:190.635000px;}
.y23_c00147{bottom:193.335000px;}
.y4a_c00147{bottom:208.935000px;}
.y22_c00147{bottom:211.485000px;}
.y49_c00147{bottom:227.085000px;}
.y21_c00147{bottom:229.485000px;}
.y48_c00147{bottom:245.235000px;}
.y20_c00147{bottom:249.285000px;}
.y47_c00147{bottom:263.235000px;}
.y1f_c00147{bottom:266.235000px;}
.y46_c00147{bottom:281.685000px;}
.y1e_c00147{bottom:284.835000px;}
.y45_c00147{bottom:299.385000px;}
.y1d_c00147{bottom:302.085000px;}
.y44_c00147{bottom:317.235000px;}
.y1c_c00147{bottom:320.535000px;}
.y43_c00147{bottom:335.385000px;}
.y1b_c00147{bottom:338.535000px;}
.y42_c00147{bottom:353.685000px;}
.y1a_c00147{bottom:357.285000px;}
.y41_c00147{bottom:372.135000px;}
.y19_c00147{bottom:375.285000px;}
.y40_c00147{bottom:389.835000px;}
.y18_c00147{bottom:393.435000px;}
.y3f_c00147{bottom:407.685000px;}
.y17_c00147{bottom:411.285000px;}
.y3e_c00147{bottom:426.885000px;}
.y16_c00147{bottom:429.585000px;}
.y3d_c00147{bottom:445.035000px;}
.y15_c00147{bottom:448.185000px;}
.y3c_c00147{bottom:463.035000px;}
.y14_c00147{bottom:466.635000px;}
.y3b_c00147{bottom:481.185000px;}
.y13_c00147{bottom:484.635000px;}
.y3a_c00147{bottom:499.185000px;}
.y12_c00147{bottom:502.485000px;}
.y39_c00147{bottom:517.335000px;}
.y11_c00147{bottom:521.085000px;}
.y38_c00147{bottom:535.485000px;}
.y10_c00147{bottom:538.335000px;}
.y37_c00147{bottom:553.785000px;}
.yf_c00147{bottom:557.085000px;}
.y36_c00147{bottom:572.385000px;}
.ye_c00147{bottom:574.635000px;}
.y58_c00147{bottom:585.885000px;}
.y35_c00147{bottom:590.235000px;}
.yd_c00147{bottom:592.935000px;}
.y34_c00147{bottom:608.085000px;}
.yc_c00147{bottom:611.085000px;}
.y33_c00147{bottom:626.085000px;}
.yb_c00147{bottom:628.635000px;}
.y32_c00147{bottom:643.935000px;}
.ya_c00147{bottom:646.635000px;}
.y31_c00147{bottom:661.485000px;}
.y9_c00147{bottom:664.485000px;}
.y30_c00147{bottom:680.385000px;}
.y8_c00147{bottom:682.335000px;}
.y57_c00147{bottom:692.835000px;}
.y2f_c00147{bottom:698.535000px;}
.y7_c00147{bottom:700.635000px;}
.y56_c00147{bottom:712.785000px;}
.y2e_c00147{bottom:716.835000px;}
.y6_c00147{bottom:718.785000px;}
.y55_c00147{bottom:731.985000px;}
.y2d_c00147{bottom:734.385000px;}
.y5_c00147{bottom:736.335000px;}
.y54_c00147{bottom:748.785000px;}
.y2c_c00147{bottom:752.535000px;}
.y4_c00147{bottom:754.635000px;}
.y2b_c00147{bottom:770.535000px;}
.y3_c00147{bottom:773.235000px;}
.y2_c00147{bottom:789.285000px;}
.y1_c00147{bottom:810.285000px;}
.h6_c00147{height:13.200074px;}
.h7_c00147{height:43.804688px;}
.h5_c00147{height:59.690918px;}
.h4_c00147{height:59.736000px;}
.h3_c00147{height:62.880000px;}
.h2_c00147{height:64.020000px;}
.h1_c00147{height:841.500000px;}
.h0_c00147{height:841.575000px;}
.w2_c00147{width:104.875500px;}
.w1_c00147{width:556.500000px;}
.w0_c00147{width:556.725000px;}
.x0_c00147{left:0.000000px;}
.x3_c00147{left:74.700000px;}
.x1_c00147{left:79.200000px;}
.x7_c00147{left:83.700000px;}
.x8_c00147{left:85.350000px;}
.x6_c00147{left:86.400000px;}
.x4_c00147{left:87.750000px;}
.xb_c00147{left:88.800000px;}
.x2_c00147{left:89.850000px;}
.xa_c00147{left:106.650000px;}
.x9_c00147{left:124.200000px;}
.x5_c00147{left:148.800000px;}
.x16_c00147{left:230.176758px;}
.xf_c00147{left:299.700000px;}
.xd_c00147{left:301.050000px;}
.xe_c00147{left:302.400000px;}
.x10_c00147{left:303.450000px;}
.xc_c00147{left:304.650000px;}
.x11_c00147{left:306.450000px;}
.x12_c00147{left:477.000000px;}
.x14_c00147{left:506.250000px;}
.x13_c00147{left:507.300000px;}
.x15_c00147{left:508.950000px;}
@media print{
.v0_c00147{vertical-align:0.000000pt;}
.ls5_c00147{letter-spacing:0.000000pt;}
.ls3_c00147{letter-spacing:2.666667pt;}
.ls1_c00147{letter-spacing:4.266667pt;}
.ls6_c00147{letter-spacing:5.333333pt;}
.ls2_c00147{letter-spacing:10.666667pt;}
.ls0_c00147{letter-spacing:17.066667pt;}
.ls4_c00147{letter-spacing:18.933333pt;}
.ws4_c00147{word-spacing:-36.946667pt;}
.ws0_c00147{word-spacing:-32.480000pt;}
.ws5_c00147{word-spacing:-20.746667pt;}
.ws1_c00147{word-spacing:-16.053333pt;}
.ws3_c00147{word-spacing:-12.586667pt;}
.ws2_c00147{word-spacing:-11.957333pt;}
.ws6_c00147{word-spacing:0.000000pt;}
._2b_c00147{margin-left:-17.386667pt;}
._28_c00147{margin-left:-15.634667pt;}
._2c_c00147{margin-left:-13.706667pt;}
._2f_c00147{margin-left:-12.320000pt;}
._16_c00147{margin-left:-11.253333pt;}
._e_c00147{margin-left:-8.906667pt;}
._13_c00147{margin-left:-7.733333pt;}
._23_c00147{margin-left:-6.773333pt;}
._12_c00147{margin-left:-5.813333pt;}
._15_c00147{margin-left:-4.853333pt;}
._f_c00147{margin-left:-3.786667pt;}
._0_c00147{margin-left:-2.613333pt;}
._6_c00147{margin-left:-1.280000pt;}
._9_c00147{width:1.333333pt;}
._a_c00147{width:2.293333pt;}
._29_c00147{width:3.200000pt;}
._c_c00147{width:4.106667pt;}
._d_c00147{width:5.440000pt;}
._3_c00147{width:6.506667pt;}
._5_c00147{width:7.733333pt;}
._11_c00147{width:9.440000pt;}
._8_c00147{width:10.453333pt;}
._7_c00147{width:11.466667pt;}
._10_c00147{width:12.746667pt;}
._18_c00147{width:14.133333pt;}
._4_c00147{width:15.146667pt;}
._21_c00147{width:16.944000pt;}
._26_c00147{width:17.973333pt;}
._2_c00147{width:19.253333pt;}
._14_c00147{width:20.426667pt;}
._1c_c00147{width:21.733333pt;}
._1a_c00147{width:22.826667pt;}
._22_c00147{width:24.693333pt;}
._19_c00147{width:26.293333pt;}
._2d_c00147{width:28.426667pt;}
._17_c00147{width:30.186667pt;}
._1f_c00147{width:32.746667pt;}
._2a_c00147{width:34.346667pt;}
._20_c00147{width:38.546667pt;}
._24_c00147{width:39.893333pt;}
._1e_c00147{width:47.562667pt;}
._2e_c00147{width:56.336000pt;}
._b_c00147{width:62.400000pt;}
._27_c00147{width:85.648000pt;}
._25_c00147{width:115.680000pt;}
._1b_c00147{width:120.181333pt;}
._1d_c00147{width:142.336000pt;}
._1_c00147{width:657.813333pt;}
.fs2_c00147{font-size:34.666667pt;}
.fs4_c00147{font-size:42.666667pt;}
.fs3_c00147{font-size:45.333333pt;}
.fs1_c00147{font-size:50.666667pt;}
.fs0_c00147{font-size:53.333333pt;}
.y0_c00147{bottom:0.000000pt;}
.y5a_c00147{bottom:2.760000pt;}
.y59_c00147{bottom:6.425204pt;}
.y53_c00147{bottom:35.586667pt;}
.y52_c00147{bottom:55.453333pt;}
.y2a_c00147{bottom:58.386667pt;}
.y51_c00147{bottom:71.986667pt;}
.y29_c00147{bottom:74.386667pt;}
.y50_c00147{bottom:87.853333pt;}
.y28_c00147{bottom:90.786667pt;}
.y4f_c00147{bottom:104.386667pt;}
.y27_c00147{bottom:107.320000pt;}
.y4e_c00147{bottom:120.920000pt;}
.y26_c00147{bottom:122.386667pt;}
.y4d_c00147{bottom:136.786667pt;}
.y25_c00147{bottom:139.720000pt;}
.y4c_c00147{bottom:153.186667pt;}
.y24_c00147{bottom:155.720000pt;}
.y4b_c00147{bottom:169.453333pt;}
.y23_c00147{bottom:171.853333pt;}
.y4a_c00147{bottom:185.720000pt;}
.y22_c00147{bottom:187.986667pt;}
.y49_c00147{bottom:201.853333pt;}
.y21_c00147{bottom:203.986667pt;}
.y48_c00147{bottom:217.986667pt;}
.y20_c00147{bottom:221.586667pt;}
.y47_c00147{bottom:233.986667pt;}
.y1f_c00147{bottom:236.653333pt;}
.y46_c00147{bottom:250.386667pt;}
.y1e_c00147{bottom:253.186667pt;}
.y45_c00147{bottom:266.120000pt;}
.y1d_c00147{bottom:268.520000pt;}
.y44_c00147{bottom:281.986667pt;}
.y1c_c00147{bottom:284.920000pt;}
.y43_c00147{bottom:298.120000pt;}
.y1b_c00147{bottom:300.920000pt;}
.y42_c00147{bottom:314.386667pt;}
.y1a_c00147{bottom:317.586667pt;}
.y41_c00147{bottom:330.786667pt;}
.y19_c00147{bottom:333.586667pt;}
.y40_c00147{bottom:346.520000pt;}
.y18_c00147{bottom:349.720000pt;}
.y3f_c00147{bottom:362.386667pt;}
.y17_c00147{bottom:365.586667pt;}
.y3e_c00147{bottom:379.453333pt;}
.y16_c00147{bottom:381.853333pt;}
.y3d_c00147{bottom:395.586667pt;}
.y15_c00147{bottom:398.386667pt;}
.y3c_c00147{bottom:411.586667pt;}
.y14_c00147{bottom:414.786667pt;}
.y3b_c00147{bottom:427.720000pt;}
.y13_c00147{bottom:430.786667pt;}
.y3a_c00147{bottom:443.720000pt;}
.y12_c00147{bottom:446.653333pt;}
.y39_c00147{bottom:459.853333pt;}
.y11_c00147{bottom:463.186667pt;}
.y38_c00147{bottom:475.986667pt;}
.y10_c00147{bottom:478.520000pt;}
.y37_c00147{bottom:492.253333pt;}
.yf_c00147{bottom:495.186667pt;}
.y36_c00147{bottom:508.786667pt;}
.ye_c00147{bottom:510.786667pt;}
.y58_c00147{bottom:520.786667pt;}
.y35_c00147{bottom:524.653333pt;}
.yd_c00147{bottom:527.053333pt;}
.y34_c00147{bottom:540.520000pt;}
.yc_c00147{bottom:543.186667pt;}
.y33_c00147{bottom:556.520000pt;}
.yb_c00147{bottom:558.786667pt;}
.y32_c00147{bottom:572.386667pt;}
.ya_c00147{bottom:574.786667pt;}
.y31_c00147{bottom:587.986667pt;}
.y9_c00147{bottom:590.653333pt;}
.y30_c00147{bottom:604.786667pt;}
.y8_c00147{bottom:606.520000pt;}
.y57_c00147{bottom:615.853333pt;}
.y2f_c00147{bottom:620.920000pt;}
.y7_c00147{bottom:622.786667pt;}
.y56_c00147{bottom:633.586667pt;}
.y2e_c00147{bottom:637.186667pt;}
.y6_c00147{bottom:638.920000pt;}
.y55_c00147{bottom:650.653333pt;}
.y2d_c00147{bottom:652.786667pt;}
.y5_c00147{bottom:654.520000pt;}
.y54_c00147{bottom:665.586667pt;}
.y2c_c00147{bottom:668.920000pt;}
.y4_c00147{bottom:670.786667pt;}
.y2b_c00147{bottom:684.920000pt;}
.y3_c00147{bottom:687.320000pt;}
.y2_c00147{bottom:701.586667pt;}
.y1_c00147{bottom:720.253333pt;}
.h6_c00147{height:11.733399pt;}
.h7_c00147{height:38.937500pt;}
.h5_c00147{height:53.058594pt;}
.h4_c00147{height:53.098667pt;}
.h3_c00147{height:55.893333pt;}
.h2_c00147{height:56.906667pt;}
.h1_c00147{height:748.000000pt;}
.h0_c00147{height:748.066667pt;}
.w2_c00147{width:93.222667pt;}
.w1_c00147{width:494.666667pt;}
.w0_c00147{width:494.866667pt;}
.x0_c00147{left:0.000000pt;}
.x3_c00147{left:66.400000pt;}
.x1_c00147{left:70.400000pt;}
.x7_c00147{left:74.400000pt;}
.x8_c00147{left:75.866667pt;}
.x6_c00147{left:76.800000pt;}
.x4_c00147{left:78.000000pt;}
.xb_c00147{left:78.933333pt;}
.x2_c00147{left:79.866667pt;}
.xa_c00147{left:94.800000pt;}
.x9_c00147{left:110.400000pt;}
.x5_c00147{left:132.266667pt;}
.x16_c00147{left:204.601563pt;}
.xf_c00147{left:266.400000pt;}
.xd_c00147{left:267.600000pt;}
.xe_c00147{left:268.800000pt;}
.x10_c00147{left:269.733333pt;}
.xc_c00147{left:270.800000pt;}
.x11_c00147{left:272.400000pt;}
.x12_c00147{left:424.000000pt;}
.x14_c00147{left:450.000000pt;}
.x13_c00147{left:450.933333pt;}
.x15_c00147{left:452.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3381002ed866f77a74ce4ea6.woff2')format("woff");}.ff1_c00148{font-family:ff1_c00148;line-height:1.437000;font-style:normal;font-weight:normal;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_a32c03f8b9ad863b865f35dc.woff2')format("woff");}.ff2_c00148{font-family:ff2_c00148;line-height:1.437000;font-style:normal;font-weight:normal;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_e12b49c76245bcc24b1110bd.woff2')format("woff");}.ff3_c00148{font-family:ff3_c00148;line-height:1.437000;font-style:normal;font-weight:normal;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_5f274b810120185165b2f9a6.woff2')format("woff");}.ff4_c00148{font-family:ff4_c00148;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00148;src:url('chunks/assets/font_79999d591e53f2e2cc1b1823.woff2')format("woff");}.ff5_c00148{font-family:ff5_c00148;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00148;src:url('chunks/assets/font_473437f310b00b1fc161ef4e.woff2')format("woff");}.ff6_c00148{font-family:ff6_c00148;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00148;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff7_c00148{font-family:ff7_c00148;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00148{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00148{vertical-align:0.000000px;}
.v1_c00148{vertical-align:10.800000px;}
.ls9_c00148{letter-spacing:0.000000px;}
.ls2_c00148{letter-spacing:0.480000px;}
.ls7_c00148{letter-spacing:3.000000px;}
.ls0_c00148{letter-spacing:5.343000px;}
.ls3_c00148{letter-spacing:6.060000px;}
.ls6_c00148{letter-spacing:7.440000px;}
.lsa_c00148{letter-spacing:9.000000px;}
.ls4_c00148{letter-spacing:9.576000px;}
.ls8_c00148{letter-spacing:9.600000px;}
.ls5_c00148{letter-spacing:26.460000px;}
.ls1_c00148{letter-spacing:100.140000px;}
.sc__c00148{text-shadow:none;}
.sc0_c00148{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00148{-webkit-text-stroke:0px transparent;}
.sc0_c00148{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00148{word-spacing:-45.876000px;}
.ws6_c00148{word-spacing:-29.700000px;}
.ws5_c00148{word-spacing:-23.760000px;}
.ws7_c00148{word-spacing:-22.623000px;}
.ws1_c00148{word-spacing:-18.060000px;}
.ws8_c00148{word-spacing:-17.340000px;}
.ws4_c00148{word-spacing:-14.160000px;}
.ws9_c00148{word-spacing:0.000000px;}
.ws3_c00148{word-spacing:1.080000px;}
.ws2_c00148{word-spacing:8.940000px;}
._25_c00148{margin-left:-19.920000px;}
._29_c00148{margin-left:-18.780000px;}
._28_c00148{margin-left:-13.920000px;}
._27_c00148{margin-left:-11.400000px;}
._8_c00148{margin-left:-9.660000px;}
._23_c00148{margin-left:-8.160000px;}
._18_c00148{margin-left:-7.140000px;}
._7_c00148{margin-left:-5.760000px;}
._19_c00148{margin-left:-4.740000px;}
._2_c00148{margin-left:-3.600000px;}
._14_c00148{margin-left:-2.580000px;}
._5_c00148{margin-left:-1.560000px;}
._3_c00148{width:1.800000px;}
._a_c00148{width:2.880000px;}
._d_c00148{width:4.380000px;}
._0_c00148{width:5.520000px;}
._f_c00148{width:6.540000px;}
._b_c00148{width:7.800000px;}
._16_c00148{width:8.880000px;}
._1_c00148{width:9.960000px;}
._24_c00148{width:11.040000px;}
._9_c00148{width:12.300000px;}
._c_c00148{width:13.320000px;}
._11_c00148{width:14.460000px;}
._15_c00148{width:15.900000px;}
._6_c00148{width:17.040000px;}
._1b_c00148{width:18.360000px;}
._13_c00148{width:19.620000px;}
._12_c00148{width:21.060000px;}
._e_c00148{width:22.500000px;}
._1e_c00148{width:23.520000px;}
._4_c00148{width:24.780000px;}
._1f_c00148{width:26.760000px;}
._10_c00148{width:28.140000px;}
._22_c00148{width:34.230000px;}
._1c_c00148{width:37.680000px;}
._1a_c00148{width:46.140000px;}
._17_c00148{width:49.020000px;}
._21_c00148{width:54.369000px;}
._1d_c00148{width:61.323000px;}
._20_c00148{width:88.020000px;}
._26_c00148{width:137.820000px;}
.fc2_c00148{color:transparent;}
.fc1_c00148{color:rgb(128,128,128);}
.fc0_c00148{color:rgb(0,0,0);}
.fs4_c00148{font-size:48.000000px;}
.fs1_c00148{font-size:54.000000px;}
.fs3_c00148{font-size:57.000000px;}
.fs0_c00148{font-size:60.000000px;}
.fs2_c00148{font-size:63.000000px;}
.y0_c00148{bottom:0.000000px;}
.y4d_c00148{bottom:3.105000px;}
.y4c_c00148{bottom:7.228355px;}
.y4b_c00148{bottom:34.035000px;}
.y4a_c00148{bottom:54.585000px;}
.y49_c00148{bottom:73.485000px;}
.y24_c00148{bottom:89.985000px;}
.y48_c00148{bottom:92.085000px;}
.y47_c00148{bottom:109.335000px;}
.y46_c00148{bottom:127.185000px;}
.y45_c00148{bottom:144.435000px;}
.y44_c00148{bottom:161.685000px;}
.y23_c00148{bottom:164.385000px;}
.y43_c00148{bottom:179.535000px;}
.y22_c00148{bottom:187.185000px;}
.y42_c00148{bottom:199.335000px;}
.y21_c00148{bottom:202.785000px;}
.y41_c00148{bottom:217.935000px;}
.y20_c00148{bottom:220.635000px;}
.y40_c00148{bottom:236.535000px;}
.y1f_c00148{bottom:241.185000px;}
.y3f_c00148{bottom:253.335000px;}
.y1e_c00148{bottom:259.485000px;}
.y3e_c00148{bottom:273.735000px;}
.y1d_c00148{bottom:277.635000px;}
.y3d_c00148{bottom:291.285000px;}
.y1c_c00148{bottom:295.935000px;}
.y3c_c00148{bottom:309.735000px;}
.y1b_c00148{bottom:313.185000px;}
.y3b_c00148{bottom:327.735000px;}
.y1a_c00148{bottom:331.785000px;}
.y3a_c00148{bottom:345.285000px;}
.y19_c00148{bottom:349.935000px;}
.y39_c00148{bottom:365.085000px;}
.y18_c00148{bottom:368.235000px;}
.y38_c00148{bottom:382.935000px;}
.y17_c00148{bottom:386.085000px;}
.y37_c00148{bottom:400.485000px;}
.y16_c00148{bottom:404.235000px;}
.y36_c00148{bottom:418.785000px;}
.y15_c00148{bottom:422.535000px;}
.y35_c00148{bottom:436.935000px;}
.y14_c00148{bottom:440.385000px;}
.y34_c00148{bottom:453.135000px;}
.y13_c00148{bottom:458.235000px;}
.y33_c00148{bottom:472.485000px;}
.y12_c00148{bottom:474.735000px;}
.y32_c00148{bottom:490.335000px;}
.y11_c00148{bottom:493.335000px;}
.y31_c00148{bottom:508.635000px;}
.y10_c00148{bottom:511.335000px;}
.y30_c00148{bottom:525.435000px;}
.yf_c00148{bottom:530.085000px;}
.y2f_c00148{bottom:543.585000px;}
.ye_c00148{bottom:547.335000px;}
.y2e_c00148{bottom:561.585000px;}
.yd_c00148{bottom:565.185000px;}
.y2d_c00148{bottom:580.485000px;}
.yc_c00148{bottom:583.185000px;}
.y2c_c00148{bottom:599.085000px;}
.yb_c00148{bottom:601.335000px;}
.y2b_c00148{bottom:616.635000px;}
.ya_c00148{bottom:619.185000px;}
.y2a_c00148{bottom:634.035000px;}
.y9_c00148{bottom:637.485000px;}
.y29_c00148{bottom:650.235000px;}
.y8_c00148{bottom:655.335000px;}
.y7_c00148{bottom:673.335000px;}
.y28_c00148{bottom:689.835000px;}
.y6_c00148{bottom:691.785000px;}
.y27_c00148{bottom:706.935000px;}
.y5_c00148{bottom:709.035000px;}
.y26_c00148{bottom:726.285000px;}
.y4_c00148{bottom:727.635000px;}
.y3_c00148{bottom:746.085000px;}
.y25_c00148{bottom:762.735000px;}
.y2_c00148{bottom:763.335000px;}
.y1_c00148{bottom:781.935000px;}
.h7_c00148{height:13.200074px;}
.h8_c00148{height:43.804688px;}
.h4_c00148{height:59.736000px;}
.h2_c00148{height:62.880000px;}
.h6_c00148{height:64.020000px;}
.h3_c00148{height:66.024000px;}
.h5_c00148{height:73.680000px;}
.h0_c00148{height:837.525000px;}
.h1_c00148{height:837.750000px;}
.w2_c00148{width:104.875500px;}
.w1_c00148{width:581.250000px;}
.w0_c00148{width:581.550000px;}
.x0_c00148{left:0.000000px;}
.x6_c00148{left:60.450000px;}
.x3_c00148{left:66.150000px;}
.x1_c00148{left:71.250000px;}
.x2_c00148{left:72.450000px;}
.x4_c00148{left:73.950000px;}
.x5_c00148{left:75.600000px;}
.x7_c00148{left:76.950000px;}
.x8_c00148{left:78.300000px;}
.x9_c00148{left:102.000000px;}
.xa_c00148{left:116.850000px;}
.xb_c00148{left:141.450000px;}
.xd_c00148{left:145.200000px;}
.xc_c00148{left:160.350000px;}
.x19_c00148{left:242.589249px;}
.x16_c00148{left:284.250000px;}
.x17_c00148{left:286.500000px;}
.x15_c00148{left:287.550000px;}
.xf_c00148{left:288.900000px;}
.x13_c00148{left:289.950000px;}
.x14_c00148{left:291.000000px;}
.x10_c00148{left:313.500000px;}
.x12_c00148{left:322.050000px;}
.xe_c00148{left:355.350000px;}
.x11_c00148{left:373.050000px;}
.x18_c00148{left:455.250000px;}
@media print{
.v0_c00148{vertical-align:0.000000pt;}
.v1_c00148{vertical-align:9.600000pt;}
.ls9_c00148{letter-spacing:0.000000pt;}
.ls2_c00148{letter-spacing:0.426667pt;}
.ls7_c00148{letter-spacing:2.666667pt;}
.ls0_c00148{letter-spacing:4.749333pt;}
.ls3_c00148{letter-spacing:5.386667pt;}
.ls6_c00148{letter-spacing:6.613333pt;}
.lsa_c00148{letter-spacing:8.000000pt;}
.ls4_c00148{letter-spacing:8.512000pt;}
.ls8_c00148{letter-spacing:8.533333pt;}
.ls5_c00148{letter-spacing:23.520000pt;}
.ls1_c00148{letter-spacing:89.013333pt;}
.ws0_c00148{word-spacing:-40.778667pt;}
.ws6_c00148{word-spacing:-26.400000pt;}
.ws5_c00148{word-spacing:-21.120000pt;}
.ws7_c00148{word-spacing:-20.109333pt;}
.ws1_c00148{word-spacing:-16.053333pt;}
.ws8_c00148{word-spacing:-15.413333pt;}
.ws4_c00148{word-spacing:-12.586667pt;}
.ws9_c00148{word-spacing:0.000000pt;}
.ws3_c00148{word-spacing:0.960000pt;}
.ws2_c00148{word-spacing:7.946667pt;}
._25_c00148{margin-left:-17.706667pt;}
._29_c00148{margin-left:-16.693333pt;}
._28_c00148{margin-left:-12.373333pt;}
._27_c00148{margin-left:-10.133333pt;}
._8_c00148{margin-left:-8.586667pt;}
._23_c00148{margin-left:-7.253333pt;}
._18_c00148{margin-left:-6.346667pt;}
._7_c00148{margin-left:-5.120000pt;}
._19_c00148{margin-left:-4.213333pt;}
._2_c00148{margin-left:-3.200000pt;}
._14_c00148{margin-left:-2.293333pt;}
._5_c00148{margin-left:-1.386667pt;}
._3_c00148{width:1.600000pt;}
._a_c00148{width:2.560000pt;}
._d_c00148{width:3.893333pt;}
._0_c00148{width:4.906667pt;}
._f_c00148{width:5.813333pt;}
._b_c00148{width:6.933333pt;}
._16_c00148{width:7.893333pt;}
._1_c00148{width:8.853333pt;}
._24_c00148{width:9.813333pt;}
._9_c00148{width:10.933333pt;}
._c_c00148{width:11.840000pt;}
._11_c00148{width:12.853333pt;}
._15_c00148{width:14.133333pt;}
._6_c00148{width:15.146667pt;}
._1b_c00148{width:16.320000pt;}
._13_c00148{width:17.440000pt;}
._12_c00148{width:18.720000pt;}
._e_c00148{width:20.000000pt;}
._1e_c00148{width:20.906667pt;}
._4_c00148{width:22.026667pt;}
._1f_c00148{width:23.786667pt;}
._10_c00148{width:25.013333pt;}
._22_c00148{width:30.426667pt;}
._1c_c00148{width:33.493333pt;}
._1a_c00148{width:41.013333pt;}
._17_c00148{width:43.573333pt;}
._21_c00148{width:48.328000pt;}
._1d_c00148{width:54.509333pt;}
._20_c00148{width:78.240000pt;}
._26_c00148{width:122.506667pt;}
.fs4_c00148{font-size:42.666667pt;}
.fs1_c00148{font-size:48.000000pt;}
.fs3_c00148{font-size:50.666667pt;}
.fs0_c00148{font-size:53.333333pt;}
.fs2_c00148{font-size:56.000000pt;}
.y0_c00148{bottom:0.000000pt;}
.y4d_c00148{bottom:2.760000pt;}
.y4c_c00148{bottom:6.425204pt;}
.y4b_c00148{bottom:30.253333pt;}
.y4a_c00148{bottom:48.520000pt;}
.y49_c00148{bottom:65.320000pt;}
.y24_c00148{bottom:79.986667pt;}
.y48_c00148{bottom:81.853333pt;}
.y47_c00148{bottom:97.186667pt;}
.y46_c00148{bottom:113.053333pt;}
.y45_c00148{bottom:128.386667pt;}
.y44_c00148{bottom:143.720000pt;}
.y23_c00148{bottom:146.120000pt;}
.y43_c00148{bottom:159.586667pt;}
.y22_c00148{bottom:166.386667pt;}
.y42_c00148{bottom:177.186667pt;}
.y21_c00148{bottom:180.253333pt;}
.y41_c00148{bottom:193.720000pt;}
.y20_c00148{bottom:196.120000pt;}
.y40_c00148{bottom:210.253333pt;}
.y1f_c00148{bottom:214.386667pt;}
.y3f_c00148{bottom:225.186667pt;}
.y1e_c00148{bottom:230.653333pt;}
.y3e_c00148{bottom:243.320000pt;}
.y1d_c00148{bottom:246.786667pt;}
.y3d_c00148{bottom:258.920000pt;}
.y1c_c00148{bottom:263.053333pt;}
.y3c_c00148{bottom:275.320000pt;}
.y1b_c00148{bottom:278.386667pt;}
.y3b_c00148{bottom:291.320000pt;}
.y1a_c00148{bottom:294.920000pt;}
.y3a_c00148{bottom:306.920000pt;}
.y19_c00148{bottom:311.053333pt;}
.y39_c00148{bottom:324.520000pt;}
.y18_c00148{bottom:327.320000pt;}
.y38_c00148{bottom:340.386667pt;}
.y17_c00148{bottom:343.186667pt;}
.y37_c00148{bottom:355.986667pt;}
.y16_c00148{bottom:359.320000pt;}
.y36_c00148{bottom:372.253333pt;}
.y15_c00148{bottom:375.586667pt;}
.y35_c00148{bottom:388.386667pt;}
.y14_c00148{bottom:391.453333pt;}
.y34_c00148{bottom:402.786667pt;}
.y13_c00148{bottom:407.320000pt;}
.y33_c00148{bottom:419.986667pt;}
.y12_c00148{bottom:421.986667pt;}
.y32_c00148{bottom:435.853333pt;}
.y11_c00148{bottom:438.520000pt;}
.y31_c00148{bottom:452.120000pt;}
.y10_c00148{bottom:454.520000pt;}
.y30_c00148{bottom:467.053333pt;}
.yf_c00148{bottom:471.186667pt;}
.y2f_c00148{bottom:483.186667pt;}
.ye_c00148{bottom:486.520000pt;}
.y2e_c00148{bottom:499.186667pt;}
.yd_c00148{bottom:502.386667pt;}
.y2d_c00148{bottom:515.986667pt;}
.yc_c00148{bottom:518.386667pt;}
.y2c_c00148{bottom:532.520000pt;}
.yb_c00148{bottom:534.520000pt;}
.y2b_c00148{bottom:548.120000pt;}
.ya_c00148{bottom:550.386667pt;}
.y2a_c00148{bottom:563.586667pt;}
.y9_c00148{bottom:566.653333pt;}
.y29_c00148{bottom:577.986667pt;}
.y8_c00148{bottom:582.520000pt;}
.y7_c00148{bottom:598.520000pt;}
.y28_c00148{bottom:613.186667pt;}
.y6_c00148{bottom:614.920000pt;}
.y27_c00148{bottom:628.386667pt;}
.y5_c00148{bottom:630.253333pt;}
.y26_c00148{bottom:645.586667pt;}
.y4_c00148{bottom:646.786667pt;}
.y3_c00148{bottom:663.186667pt;}
.y25_c00148{bottom:677.986667pt;}
.y2_c00148{bottom:678.520000pt;}
.y1_c00148{bottom:695.053333pt;}
.h7_c00148{height:11.733399pt;}
.h8_c00148{height:38.937500pt;}
.h4_c00148{height:53.098667pt;}
.h2_c00148{height:55.893333pt;}
.h6_c00148{height:56.906667pt;}
.h3_c00148{height:58.688000pt;}
.h5_c00148{height:65.493333pt;}
.h0_c00148{height:744.466667pt;}
.h1_c00148{height:744.666667pt;}
.w2_c00148{width:93.222667pt;}
.w1_c00148{width:516.666667pt;}
.w0_c00148{width:516.933333pt;}
.x0_c00148{left:0.000000pt;}
.x6_c00148{left:53.733333pt;}
.x3_c00148{left:58.800000pt;}
.x1_c00148{left:63.333333pt;}
.x2_c00148{left:64.400000pt;}
.x4_c00148{left:65.733333pt;}
.x5_c00148{left:67.200000pt;}
.x7_c00148{left:68.400000pt;}
.x8_c00148{left:69.600000pt;}
.x9_c00148{left:90.666667pt;}
.xa_c00148{left:103.866667pt;}
.xb_c00148{left:125.733333pt;}
.xd_c00148{left:129.066667pt;}
.xc_c00148{left:142.533333pt;}
.x19_c00148{left:215.634888pt;}
.x16_c00148{left:252.666667pt;}
.x17_c00148{left:254.666667pt;}
.x15_c00148{left:255.600000pt;}
.xf_c00148{left:256.800000pt;}
.x13_c00148{left:257.733333pt;}
.x14_c00148{left:258.666667pt;}
.x10_c00148{left:278.666667pt;}
.x12_c00148{left:286.266667pt;}
.xe_c00148{left:315.866667pt;}
.x11_c00148{left:331.600000pt;}
.x18_c00148{left:404.666667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ab61c38201a944105988ad6a.woff2')format("woff");}.ff1_c00149{font-family:ff1_c00149;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00149;src:url('chunks/assets/font_7481ffe60bc52ad300173a71.woff2')format("woff");}.ff2_c00149{font-family:ff2_c00149;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00149;src:url('chunks/assets/font_84e367b20bfec8855c2dc11f.woff2')format("woff");}.ff3_c00149{font-family:ff3_c00149;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00149;src:url('chunks/assets/font_31e6f490382eaee2c3c9bed7.woff2')format("woff");}.ff4_c00149{font-family:ff4_c00149;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00149;src:url('chunks/assets/font_c69f01abc79fc2fb0d520ae7.woff2')format("woff");}.ff5_c00149{font-family:ff5_c00149;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00149;src:url('chunks/assets/font_21fe7d071f89322b375f0ed1.woff2')format("woff");}.ff6_c00149{font-family:ff6_c00149;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00149;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff7_c00149{font-family:ff7_c00149;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00149{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00149{vertical-align:0.000000px;}
.ls4_c00149{letter-spacing:0.000000px;}
.ls0_c00149{letter-spacing:3.000000px;}
.ls2_c00149{letter-spacing:8.787000px;}
.ls1_c00149{letter-spacing:9.000000px;}
.ls3_c00149{letter-spacing:15.387000px;}
.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;}
}
.ws3_c00149{word-spacing:-42.189000px;}
.ws4_c00149{word-spacing:-19.500000px;}
.ws1_c00149{word-spacing:-18.060000px;}
.ws5_c00149{word-spacing:-17.340000px;}
.ws2_c00149{word-spacing:-14.427000px;}
.ws0_c00149{word-spacing:-14.160000px;}
.ws6_c00149{word-spacing:0.000000px;}
._29_c00149{margin-left:-18.705000px;}
._2a_c00149{margin-left:-17.649000px;}
._24_c00149{margin-left:-12.294000px;}
._18_c00149{margin-left:-11.160000px;}
._d_c00149{margin-left:-9.660000px;}
._26_c00149{margin-left:-8.520000px;}
._f_c00149{margin-left:-7.440000px;}
._c_c00149{margin-left:-6.420000px;}
._e_c00149{margin-left:-4.620000px;}
._3_c00149{margin-left:-3.420000px;}
._4_c00149{margin-left:-2.160000px;}
._5_c00149{margin-left:-1.140000px;}
._0_c00149{width:1.800000px;}
._1_c00149{width:2.880000px;}
._11_c00149{width:4.620000px;}
._2c_c00149{width:5.640000px;}
._a_c00149{width:6.720000px;}
._19_c00149{width:8.160000px;}
._8_c00149{width:9.240000px;}
._14_c00149{width:10.800000px;}
._6_c00149{width:12.180000px;}
._9_c00149{width:13.260000px;}
._15_c00149{width:14.340000px;}
._10_c00149{width:15.720000px;}
._28_c00149{width:17.775000px;}
._17_c00149{width:18.780000px;}
._27_c00149{width:20.580000px;}
._22_c00149{width:21.900000px;}
._13_c00149{width:22.920000px;}
._1e_c00149{width:24.540000px;}
._7_c00149{width:25.620000px;}
._2e_c00149{width:26.760000px;}
._12_c00149{width:27.780000px;}
._1f_c00149{width:28.800000px;}
._b_c00149{width:29.880000px;}
._1d_c00149{width:31.320000px;}
._1a_c00149{width:33.060000px;}
._23_c00149{width:34.263000px;}
._1b_c00149{width:35.340000px;}
._16_c00149{width:37.980000px;}
._1c_c00149{width:42.000000px;}
._21_c00149{width:43.080000px;}
._20_c00149{width:64.380000px;}
._25_c00149{width:72.720000px;}
._2d_c00149{width:89.340000px;}
._2b_c00149{width:116.499000px;}
._2_c00149{width:354.000000px;}
.fc2_c00149{color:transparent;}
.fc1_c00149{color:rgb(128,128,128);}
.fc0_c00149{color:rgb(0,0,0);}
.fs4_c00149{font-size:48.000000px;}
.fs0_c00149{font-size:60.000000px;}
.fs1_c00149{font-size:63.000000px;}
.fs3_c00149{font-size:66.000000px;}
.fs2_c00149{font-size:69.000000px;}
.y0_c00149{bottom:0.000000px;}
.y53_c00149{bottom:3.105000px;}
.y52_c00149{bottom:7.228355px;}
.y51_c00149{bottom:37.485000px;}
.y2a_c00149{bottom:53.985000px;}
.y50_c00149{bottom:54.885000px;}
.y29_c00149{bottom:72.585000px;}
.y4f_c00149{bottom:73.485000px;}
.y28_c00149{bottom:91.035000px;}
.y4e_c00149{bottom:91.335000px;}
.y4d_c00149{bottom:109.935000px;}
.y27_c00149{bottom:110.385000px;}
.y26_c00149{bottom:127.785000px;}
.y4c_c00149{bottom:127.935000px;}
.y25_c00149{bottom:145.485000px;}
.y4b_c00149{bottom:146.685000px;}
.y24_c00149{bottom:164.385000px;}
.y4a_c00149{bottom:164.685000px;}
.y2b_c00149{bottom:181.185000px;}
.y23_c00149{bottom:181.785000px;}
.y49_c00149{bottom:182.835000px;}
.y22_c00149{bottom:199.785000px;}
.y48_c00149{bottom:200.835000px;}
.y21_c00149{bottom:217.935000px;}
.y47_c00149{bottom:218.985000px;}
.y20_c00149{bottom:235.935000px;}
.y46_c00149{bottom:236.835000px;}
.y1f_c00149{bottom:254.685000px;}
.y45_c00149{bottom:255.735000px;}
.y1e_c00149{bottom:272.385000px;}
.y44_c00149{bottom:274.335000px;}
.y1d_c00149{bottom:290.235000px;}
.y43_c00149{bottom:291.885000px;}
.y42_c00149{bottom:309.135000px;}
.y1c_c00149{bottom:309.435000px;}
.y1b_c00149{bottom:326.685000px;}
.y41_c00149{bottom:328.035000px;}
.y1a_c00149{bottom:344.835000px;}
.y40_c00149{bottom:345.285000px;}
.y19_c00149{bottom:363.435000px;}
.y18_c00149{bottom:381.285000px;}
.y3f_c00149{bottom:382.335000px;}
.y17_c00149{bottom:399.585000px;}
.y3e_c00149{bottom:400.635000px;}
.y16_c00149{bottom:416.835000px;}
.y3d_c00149{bottom:418.785000px;}
.y15_c00149{bottom:436.335000px;}
.y3c_c00149{bottom:437.085000px;}
.y14_c00149{bottom:453.885000px;}
.y3b_c00149{bottom:454.185000px;}
.y13_c00149{bottom:472.185000px;}
.y3a_c00149{bottom:472.485000px;}
.y12_c00149{bottom:490.335000px;}
.y39_c00149{bottom:490.635000px;}
.y11_c00149{bottom:508.185000px;}
.y38_c00149{bottom:508.635000px;}
.y37_c00149{bottom:526.485000px;}
.y10_c00149{bottom:526.785000px;}
.yf_c00149{bottom:544.635000px;}
.y36_c00149{bottom:545.085000px;}
.ye_c00149{bottom:563.235000px;}
.yd_c00149{bottom:581.085000px;}
.y35_c00149{bottom:581.385000px;}
.yc_c00149{bottom:599.085000px;}
.y34_c00149{bottom:599.385000px;}
.yb_c00149{bottom:617.535000px;}
.y33_c00149{bottom:617.835000px;}
.ya_c00149{bottom:635.535000px;}
.y9_c00149{bottom:653.685000px;}
.y8_c00149{bottom:671.835000px;}
.y32_c00149{bottom:672.285000px;}
.y7_c00149{bottom:689.835000px;}
.y31_c00149{bottom:690.885000px;}
.y6_c00149{bottom:708.285000px;}
.y30_c00149{bottom:708.435000px;}
.y5_c00149{bottom:725.535000px;}
.y2f_c00149{bottom:726.585000px;}
.y4_c00149{bottom:744.435000px;}
.y2e_c00149{bottom:744.885000px;}
.y2d_c00149{bottom:762.285000px;}
.y3_c00149{bottom:762.435000px;}
.y2_c00149{bottom:780.585000px;}
.y2c_c00149{bottom:799.485000px;}
.y1_c00149{bottom:799.785000px;}
.h6_c00149{height:13.200074px;}
.h7_c00149{height:43.804688px;}
.h2_c00149{height:62.880000px;}
.h3_c00149{height:66.024000px;}
.h5_c00149{height:70.422000px;}
.h4_c00149{height:74.796000px;}
.h1_c00149{height:841.500000px;}
.h0_c00149{height:841.575000px;}
.w2_c00149{width:104.875500px;}
.w0_c00149{width:565.950000px;}
.w1_c00149{width:566.250000px;}
.x0_c00149{left:0.000000px;}
.x8_c00149{left:22.950000px;}
.xc_c00149{left:30.150000px;}
.x9_c00149{left:62.550000px;}
.x6_c00149{left:67.950000px;}
.xa_c00149{left:84.150000px;}
.xb_c00149{left:85.800000px;}
.x5_c00149{left:87.450000px;}
.x4_c00149{left:88.800000px;}
.x3_c00149{left:90.000000px;}
.x2_c00149{left:91.800000px;}
.x1_c00149{left:93.150000px;}
.x7_c00149{left:114.150000px;}
.x1c_c00149{left:234.789230px;}
.xd_c00149{left:298.350000px;}
.x1a_c00149{left:299.700000px;}
.x19_c00149{left:301.350000px;}
.x16_c00149{left:303.000000px;}
.x18_c00149{left:304.050000px;}
.x17_c00149{left:305.100000px;}
.x14_c00149{left:306.150000px;}
.x15_c00149{left:307.350000px;}
.x13_c00149{left:310.050000px;}
.x11_c00149{left:311.100000px;}
.x12_c00149{left:312.450000px;}
.xf_c00149{left:313.500000px;}
.x10_c00149{left:314.550000px;}
.xe_c00149{left:316.200000px;}
.x1b_c00149{left:460.650000px;}
@media print{
.v0_c00149{vertical-align:0.000000pt;}
.ls4_c00149{letter-spacing:0.000000pt;}
.ls0_c00149{letter-spacing:2.666667pt;}
.ls2_c00149{letter-spacing:7.810667pt;}
.ls1_c00149{letter-spacing:8.000000pt;}
.ls3_c00149{letter-spacing:13.677333pt;}
.ws3_c00149{word-spacing:-37.501333pt;}
.ws4_c00149{word-spacing:-17.333333pt;}
.ws1_c00149{word-spacing:-16.053333pt;}
.ws5_c00149{word-spacing:-15.413333pt;}
.ws2_c00149{word-spacing:-12.824000pt;}
.ws0_c00149{word-spacing:-12.586667pt;}
.ws6_c00149{word-spacing:0.000000pt;}
._29_c00149{margin-left:-16.626667pt;}
._2a_c00149{margin-left:-15.688000pt;}
._24_c00149{margin-left:-10.928000pt;}
._18_c00149{margin-left:-9.920000pt;}
._d_c00149{margin-left:-8.586667pt;}
._26_c00149{margin-left:-7.573333pt;}
._f_c00149{margin-left:-6.613333pt;}
._c_c00149{margin-left:-5.706667pt;}
._e_c00149{margin-left:-4.106667pt;}
._3_c00149{margin-left:-3.040000pt;}
._4_c00149{margin-left:-1.920000pt;}
._5_c00149{margin-left:-1.013333pt;}
._0_c00149{width:1.600000pt;}
._1_c00149{width:2.560000pt;}
._11_c00149{width:4.106667pt;}
._2c_c00149{width:5.013333pt;}
._a_c00149{width:5.973333pt;}
._19_c00149{width:7.253333pt;}
._8_c00149{width:8.213333pt;}
._14_c00149{width:9.600000pt;}
._6_c00149{width:10.826667pt;}
._9_c00149{width:11.786667pt;}
._15_c00149{width:12.746667pt;}
._10_c00149{width:13.973333pt;}
._28_c00149{width:15.800000pt;}
._17_c00149{width:16.693333pt;}
._27_c00149{width:18.293333pt;}
._22_c00149{width:19.466667pt;}
._13_c00149{width:20.373333pt;}
._1e_c00149{width:21.813333pt;}
._7_c00149{width:22.773333pt;}
._2e_c00149{width:23.786667pt;}
._12_c00149{width:24.693333pt;}
._1f_c00149{width:25.600000pt;}
._b_c00149{width:26.560000pt;}
._1d_c00149{width:27.840000pt;}
._1a_c00149{width:29.386667pt;}
._23_c00149{width:30.456000pt;}
._1b_c00149{width:31.413333pt;}
._16_c00149{width:33.760000pt;}
._1c_c00149{width:37.333333pt;}
._21_c00149{width:38.293333pt;}
._20_c00149{width:57.226667pt;}
._25_c00149{width:64.640000pt;}
._2d_c00149{width:79.413333pt;}
._2b_c00149{width:103.554667pt;}
._2_c00149{width:314.666667pt;}
.fs4_c00149{font-size:42.666667pt;}
.fs0_c00149{font-size:53.333333pt;}
.fs1_c00149{font-size:56.000000pt;}
.fs3_c00149{font-size:58.666667pt;}
.fs2_c00149{font-size:61.333333pt;}
.y0_c00149{bottom:0.000000pt;}
.y53_c00149{bottom:2.760000pt;}
.y52_c00149{bottom:6.425204pt;}
.y51_c00149{bottom:33.320000pt;}
.y2a_c00149{bottom:47.986667pt;}
.y50_c00149{bottom:48.786667pt;}
.y29_c00149{bottom:64.520000pt;}
.y4f_c00149{bottom:65.320000pt;}
.y28_c00149{bottom:80.920000pt;}
.y4e_c00149{bottom:81.186667pt;}
.y4d_c00149{bottom:97.720000pt;}
.y27_c00149{bottom:98.120000pt;}
.y26_c00149{bottom:113.586667pt;}
.y4c_c00149{bottom:113.720000pt;}
.y25_c00149{bottom:129.320000pt;}
.y4b_c00149{bottom:130.386667pt;}
.y24_c00149{bottom:146.120000pt;}
.y4a_c00149{bottom:146.386667pt;}
.y2b_c00149{bottom:161.053333pt;}
.y23_c00149{bottom:161.586667pt;}
.y49_c00149{bottom:162.520000pt;}
.y22_c00149{bottom:177.586667pt;}
.y48_c00149{bottom:178.520000pt;}
.y21_c00149{bottom:193.720000pt;}
.y47_c00149{bottom:194.653333pt;}
.y20_c00149{bottom:209.720000pt;}
.y46_c00149{bottom:210.520000pt;}
.y1f_c00149{bottom:226.386667pt;}
.y45_c00149{bottom:227.320000pt;}
.y1e_c00149{bottom:242.120000pt;}
.y44_c00149{bottom:243.853333pt;}
.y1d_c00149{bottom:257.986667pt;}
.y43_c00149{bottom:259.453333pt;}
.y42_c00149{bottom:274.786667pt;}
.y1c_c00149{bottom:275.053333pt;}
.y1b_c00149{bottom:290.386667pt;}
.y41_c00149{bottom:291.586667pt;}
.y1a_c00149{bottom:306.520000pt;}
.y40_c00149{bottom:306.920000pt;}
.y19_c00149{bottom:323.053333pt;}
.y18_c00149{bottom:338.920000pt;}
.y3f_c00149{bottom:339.853333pt;}
.y17_c00149{bottom:355.186667pt;}
.y3e_c00149{bottom:356.120000pt;}
.y16_c00149{bottom:370.520000pt;}
.y3d_c00149{bottom:372.253333pt;}
.y15_c00149{bottom:387.853333pt;}
.y3c_c00149{bottom:388.520000pt;}
.y14_c00149{bottom:403.453333pt;}
.y3b_c00149{bottom:403.720000pt;}
.y13_c00149{bottom:419.720000pt;}
.y3a_c00149{bottom:419.986667pt;}
.y12_c00149{bottom:435.853333pt;}
.y39_c00149{bottom:436.120000pt;}
.y11_c00149{bottom:451.720000pt;}
.y38_c00149{bottom:452.120000pt;}
.y37_c00149{bottom:467.986667pt;}
.y10_c00149{bottom:468.253333pt;}
.yf_c00149{bottom:484.120000pt;}
.y36_c00149{bottom:484.520000pt;}
.ye_c00149{bottom:500.653333pt;}
.yd_c00149{bottom:516.520000pt;}
.y35_c00149{bottom:516.786667pt;}
.yc_c00149{bottom:532.520000pt;}
.y34_c00149{bottom:532.786667pt;}
.yb_c00149{bottom:548.920000pt;}
.y33_c00149{bottom:549.186667pt;}
.ya_c00149{bottom:564.920000pt;}
.y9_c00149{bottom:581.053333pt;}
.y8_c00149{bottom:597.186667pt;}
.y32_c00149{bottom:597.586667pt;}
.y7_c00149{bottom:613.186667pt;}
.y31_c00149{bottom:614.120000pt;}
.y6_c00149{bottom:629.586667pt;}
.y30_c00149{bottom:629.720000pt;}
.y5_c00149{bottom:644.920000pt;}
.y2f_c00149{bottom:645.853333pt;}
.y4_c00149{bottom:661.720000pt;}
.y2e_c00149{bottom:662.120000pt;}
.y2d_c00149{bottom:677.586667pt;}
.y3_c00149{bottom:677.720000pt;}
.y2_c00149{bottom:693.853333pt;}
.y2c_c00149{bottom:710.653333pt;}
.y1_c00149{bottom:710.920000pt;}
.h6_c00149{height:11.733399pt;}
.h7_c00149{height:38.937500pt;}
.h2_c00149{height:55.893333pt;}
.h3_c00149{height:58.688000pt;}
.h5_c00149{height:62.597333pt;}
.h4_c00149{height:66.485333pt;}
.h1_c00149{height:748.000000pt;}
.h0_c00149{height:748.066667pt;}
.w2_c00149{width:93.222667pt;}
.w0_c00149{width:503.066667pt;}
.w1_c00149{width:503.333333pt;}
.x0_c00149{left:0.000000pt;}
.x8_c00149{left:20.400000pt;}
.xc_c00149{left:26.800000pt;}
.x9_c00149{left:55.600000pt;}
.x6_c00149{left:60.400000pt;}
.xa_c00149{left:74.800000pt;}
.xb_c00149{left:76.266667pt;}
.x5_c00149{left:77.733333pt;}
.x4_c00149{left:78.933333pt;}
.x3_c00149{left:80.000000pt;}
.x2_c00149{left:81.600000pt;}
.x1_c00149{left:82.800000pt;}
.x7_c00149{left:101.466667pt;}
.x1c_c00149{left:208.701538pt;}
.xd_c00149{left:265.200000pt;}
.x1a_c00149{left:266.400000pt;}
.x19_c00149{left:267.866667pt;}
.x16_c00149{left:269.333333pt;}
.x18_c00149{left:270.266667pt;}
.x17_c00149{left:271.200000pt;}
.x14_c00149{left:272.133333pt;}
.x15_c00149{left:273.200000pt;}
.x13_c00149{left:275.600000pt;}
.x11_c00149{left:276.533333pt;}
.x12_c00149{left:277.733333pt;}
.xf_c00149{left:278.666667pt;}
.x10_c00149{left:279.600000pt;}
.xe_c00149{left:281.066667pt;}
.x1b_c00149{left:409.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_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_f669a05e484bde3c920425c5.woff2')format("woff");}.ff1_c00150{font-family:ff1_c00150;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00150;src:url('chunks/assets/font_07d30e64438c46bdffb8a5db.woff2')format("woff");}.ff2_c00150{font-family:ff2_c00150;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00150;src:url('chunks/assets/font_6a9b071f9b87164f1489f5ac.woff2')format("woff");}.ff3_c00150{font-family:ff3_c00150;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00150;src:url('chunks/assets/font_1e87db18f80e0f6108f593ef.woff2')format("woff");}.ff4_c00150{font-family:ff4_c00150;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00150;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff5_c00150{font-family:ff5_c00150;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00150{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00150{vertical-align:0.000000px;}
.v1_c00150{vertical-align:97.200000px;}
.ls7_c00150{letter-spacing:0.000000px;}
.ls0_c00150{letter-spacing:3.000000px;}
.ls8_c00150{letter-spacing:6.000000px;}
.ls3_c00150{letter-spacing:9.000000px;}
.ls1_c00150{letter-spacing:9.600000px;}
.ls4_c00150{letter-spacing:10.155000px;}
.ls2_c00150{letter-spacing:10.551000px;}
.ls6_c00150{letter-spacing:15.000000px;}
.ls5_c00150{letter-spacing:38.181000px;}
.sc__c00150{text-shadow:none;}
.sc0_c00150{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00150{-webkit-text-stroke:0px transparent;}
.sc0_c00150{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00150{word-spacing:-24.774000px;}
.ws5_c00150{word-spacing:-21.000000px;}
.ws4_c00150{word-spacing:-19.500000px;}
.ws0_c00150{word-spacing:-17.340000px;}
.ws1_c00150{word-spacing:-14.160000px;}
.ws3_c00150{word-spacing:-0.420000px;}
.ws6_c00150{word-spacing:0.000000px;}
._2b_c00150{margin-left:-22.800000px;}
._29_c00150{margin-left:-21.300000px;}
._16_c00150{margin-left:-17.940000px;}
._2a_c00150{margin-left:-16.620000px;}
._f_c00150{margin-left:-15.114000px;}
._e_c00150{margin-left:-12.870000px;}
._10_c00150{margin-left:-11.682000px;}
._24_c00150{margin-left:-10.158000px;}
._d_c00150{margin-left:-9.060000px;}
._8_c00150{margin-left:-7.560000px;}
._9_c00150{margin-left:-6.120000px;}
._4_c00150{margin-left:-4.260000px;}
._6_c00150{margin-left:-2.880000px;}
._5_c00150{margin-left:-1.320000px;}
._12_c00150{width:1.200000px;}
._b_c00150{width:2.220000px;}
._c_c00150{width:3.600000px;}
._0_c00150{width:4.980000px;}
._14_c00150{width:6.120000px;}
._1_c00150{width:7.260000px;}
._2_c00150{width:9.060000px;}
._3_c00150{width:10.500000px;}
._19_c00150{width:11.520000px;}
._a_c00150{width:12.720000px;}
._7_c00150{width:14.040000px;}
._11_c00150{width:15.600000px;}
._22_c00150{width:17.220000px;}
._1d_c00150{width:18.660000px;}
._15_c00150{width:20.040000px;}
._1e_c00150{width:21.240000px;}
._1a_c00150{width:22.560000px;}
._13_c00150{width:24.120000px;}
._18_c00150{width:25.620000px;}
._17_c00150{width:27.900000px;}
._28_c00150{width:28.920000px;}
._26_c00150{width:31.080000px;}
._27_c00150{width:34.140000px;}
._1f_c00150{width:35.400000px;}
._23_c00150{width:38.700000px;}
._20_c00150{width:42.060000px;}
._1b_c00150{width:51.660000px;}
._1c_c00150{width:60.960000px;}
._25_c00150{width:192.000000px;}
._21_c00150{width:317.580000px;}
.fc2_c00150{color:transparent;}
.fc1_c00150{color:rgb(128,128,128);}
.fc0_c00150{color:rgb(0,0,0);}
.fs5_c00150{font-size:48.000000px;}
.fs2_c00150{font-size:57.000000px;}
.fs0_c00150{font-size:60.000000px;}
.fs1_c00150{font-size:66.000000px;}
.fs4_c00150{font-size:69.000000px;}
.fs3_c00150{font-size:189.000000px;}
.y0_c00150{bottom:0.000000px;}
.y52_c00150{bottom:3.105000px;}
.y51_c00150{bottom:7.228371px;}
.y50_c00150{bottom:36.165000px;}
.y4f_c00150{bottom:56.415000px;}
.y29_c00150{bottom:58.515000px;}
.y4e_c00150{bottom:74.715000px;}
.y28_c00150{bottom:75.615000px;}
.y4d_c00150{bottom:92.565000px;}
.y27_c00150{bottom:95.865000px;}
.y4c_c00150{bottom:110.715000px;}
.y26_c00150{bottom:113.115000px;}
.y4b_c00150{bottom:128.715000px;}
.y25_c00150{bottom:132.315000px;}
.y4a_c00150{bottom:146.865000px;}
.y24_c00150{bottom:150.165000px;}
.y49_c00150{bottom:165.165000px;}
.y23_c00150{bottom:167.715000px;}
.y48_c00150{bottom:182.565000px;}
.y22_c00150{bottom:184.365000px;}
.y47_c00150{bottom:201.165000px;}
.y21_c00150{bottom:203.565000px;}
.y46_c00150{bottom:219.015000px;}
.y20_c00150{bottom:222.765000px;}
.y45_c00150{bottom:237.315000px;}
.y1f_c00150{bottom:241.065000px;}
.y44_c00150{bottom:255.615000px;}
.y1e_c00150{bottom:256.965000px;}
.y43_c00150{bottom:273.765000px;}
.y1d_c00150{bottom:277.515000px;}
.y42_c00150{bottom:291.915000px;}
.y1c_c00150{bottom:295.065000px;}
.y41_c00150{bottom:309.915000px;}
.y1b_c00150{bottom:312.915000px;}
.y40_c00150{bottom:327.765000px;}
.y1a_c00150{bottom:330.165000px;}
.y3f_c00150{bottom:346.065000px;}
.y19_c00150{bottom:349.065000px;}
.y3e_c00150{bottom:363.915000px;}
.y18_c00150{bottom:366.915000px;}
.y3d_c00150{bottom:382.515000px;}
.y17_c00150{bottom:385.515000px;}
.y3c_c00150{bottom:400.065000px;}
.y16_c00150{bottom:403.065000px;}
.y3b_c00150{bottom:418.215000px;}
.y15_c00150{bottom:421.515000px;}
.y3a_c00150{bottom:436.815000px;}
.y14_c00150{bottom:439.515000px;}
.y39_c00150{bottom:454.665000px;}
.y13_c00150{bottom:457.065000px;}
.y38_c00150{bottom:471.915000px;}
.y12_c00150{bottom:475.215000px;}
.y37_c00150{bottom:489.465000px;}
.y11_c00150{bottom:493.065000px;}
.y36_c00150{bottom:508.665000px;}
.y10_c00150{bottom:510.315000px;}
.y35_c00150{bottom:526.815000px;}
.yf_c00150{bottom:528.615000px;}
.y34_c00150{bottom:544.365000px;}
.ye_c00150{bottom:547.065000px;}
.y33_c00150{bottom:561.315000px;}
.yd_c00150{bottom:563.715000px;}
.y31_c00150{bottom:573.765000px;}
.y32_c00150{bottom:579.915000px;}
.yc_c00150{bottom:583.215000px;}
.yb_c00150{bottom:600.465000px;}
.ya_c00150{bottom:618.765000px;}
.y30_c00150{bottom:635.265000px;}
.y9_c00150{bottom:636.165000px;}
.y2f_c00150{bottom:652.515000px;}
.y8_c00150{bottom:654.465000px;}
.y2e_c00150{bottom:670.365000px;}
.y7_c00150{bottom:671.715000px;}
.y2d_c00150{bottom:687.465000px;}
.y6_c00150{bottom:689.865000px;}
.y2c_c00150{bottom:707.115000px;}
.y5_c00150{bottom:708.465000px;}
.y2b_c00150{bottom:724.965000px;}
.y4_c00150{bottom:726.315000px;}
.y3_c00150{bottom:744.165000px;}
.y2a_c00150{bottom:759.465000px;}
.y2_c00150{bottom:762.165000px;}
.y1_c00150{bottom:780.615000px;}
.h8_c00150{height:13.200074px;}
.h9_c00150{height:43.804688px;}
.h2_c00150{height:62.880000px;}
.h7_c00150{height:64.020000px;}
.h4_c00150{height:69.168000px;}
.h3_c00150{height:70.422000px;}
.h6_c00150{height:73.623000px;}
.h5_c00150{height:198.072000px;}
.h1_c00150{height:836.250000px;}
.h0_c00150{height:836.475000px;}
.w2_c00150{width:104.875500px;}
.w1_c00150{width:589.500000px;}
.w0_c00150{width:589.650000px;}
.x0_c00150{left:0.000000px;}
.x1_c00150{left:69.900000px;}
.x2_c00150{left:71.100000px;}
.x3_c00150{left:72.600000px;}
.x4_c00150{left:74.250000px;}
.x5_c00150{left:76.050000px;}
.x6_c00150{left:77.700000px;}
.x7_c00150{left:79.050000px;}
.x13_c00150{left:246.639267px;}
.xa_c00150{left:289.200000px;}
.x9_c00150{left:290.850000px;}
.x10_c00150{left:292.350000px;}
.x11_c00150{left:293.700000px;}
.xb_c00150{left:303.150000px;}
.xc_c00150{left:318.600000px;}
.xd_c00150{left:319.650000px;}
.xf_c00150{left:332.850000px;}
.x8_c00150{left:359.100000px;}
.xe_c00150{left:372.000000px;}
.x12_c00150{left:472.200000px;}
@media print{
.v0_c00150{vertical-align:0.000000pt;}
.v1_c00150{vertical-align:86.400000pt;}
.ls7_c00150{letter-spacing:0.000000pt;}
.ls0_c00150{letter-spacing:2.666667pt;}
.ls8_c00150{letter-spacing:5.333333pt;}
.ls3_c00150{letter-spacing:8.000000pt;}
.ls1_c00150{letter-spacing:8.533333pt;}
.ls4_c00150{letter-spacing:9.026667pt;}
.ls2_c00150{letter-spacing:9.378667pt;}
.ls6_c00150{letter-spacing:13.333333pt;}
.ls5_c00150{letter-spacing:33.938667pt;}
.ws2_c00150{word-spacing:-22.021333pt;}
.ws5_c00150{word-spacing:-18.666667pt;}
.ws4_c00150{word-spacing:-17.333333pt;}
.ws0_c00150{word-spacing:-15.413333pt;}
.ws1_c00150{word-spacing:-12.586667pt;}
.ws3_c00150{word-spacing:-0.373333pt;}
.ws6_c00150{word-spacing:0.000000pt;}
._2b_c00150{margin-left:-20.266667pt;}
._29_c00150{margin-left:-18.933333pt;}
._16_c00150{margin-left:-15.946667pt;}
._2a_c00150{margin-left:-14.773333pt;}
._f_c00150{margin-left:-13.434667pt;}
._e_c00150{margin-left:-11.440000pt;}
._10_c00150{margin-left:-10.384000pt;}
._24_c00150{margin-left:-9.029333pt;}
._d_c00150{margin-left:-8.053333pt;}
._8_c00150{margin-left:-6.720000pt;}
._9_c00150{margin-left:-5.440000pt;}
._4_c00150{margin-left:-3.786667pt;}
._6_c00150{margin-left:-2.560000pt;}
._5_c00150{margin-left:-1.173333pt;}
._12_c00150{width:1.066667pt;}
._b_c00150{width:1.973333pt;}
._c_c00150{width:3.200000pt;}
._0_c00150{width:4.426667pt;}
._14_c00150{width:5.440000pt;}
._1_c00150{width:6.453333pt;}
._2_c00150{width:8.053333pt;}
._3_c00150{width:9.333333pt;}
._19_c00150{width:10.240000pt;}
._a_c00150{width:11.306667pt;}
._7_c00150{width:12.480000pt;}
._11_c00150{width:13.866667pt;}
._22_c00150{width:15.306667pt;}
._1d_c00150{width:16.586667pt;}
._15_c00150{width:17.813333pt;}
._1e_c00150{width:18.880000pt;}
._1a_c00150{width:20.053333pt;}
._13_c00150{width:21.440000pt;}
._18_c00150{width:22.773333pt;}
._17_c00150{width:24.800000pt;}
._28_c00150{width:25.706667pt;}
._26_c00150{width:27.626667pt;}
._27_c00150{width:30.346667pt;}
._1f_c00150{width:31.466667pt;}
._23_c00150{width:34.400000pt;}
._20_c00150{width:37.386667pt;}
._1b_c00150{width:45.920000pt;}
._1c_c00150{width:54.186667pt;}
._25_c00150{width:170.666667pt;}
._21_c00150{width:282.293333pt;}
.fs5_c00150{font-size:42.666667pt;}
.fs2_c00150{font-size:50.666667pt;}
.fs0_c00150{font-size:53.333333pt;}
.fs1_c00150{font-size:58.666667pt;}
.fs4_c00150{font-size:61.333333pt;}
.fs3_c00150{font-size:168.000000pt;}
.y0_c00150{bottom:0.000000pt;}
.y52_c00150{bottom:2.760000pt;}
.y51_c00150{bottom:6.425219pt;}
.y50_c00150{bottom:32.146667pt;}
.y4f_c00150{bottom:50.146667pt;}
.y29_c00150{bottom:52.013333pt;}
.y4e_c00150{bottom:66.413333pt;}
.y28_c00150{bottom:67.213333pt;}
.y4d_c00150{bottom:82.280000pt;}
.y27_c00150{bottom:85.213333pt;}
.y4c_c00150{bottom:98.413333pt;}
.y26_c00150{bottom:100.546667pt;}
.y4b_c00150{bottom:114.413333pt;}
.y25_c00150{bottom:117.613333pt;}
.y4a_c00150{bottom:130.546667pt;}
.y24_c00150{bottom:133.480000pt;}
.y49_c00150{bottom:146.813333pt;}
.y23_c00150{bottom:149.080000pt;}
.y48_c00150{bottom:162.280000pt;}
.y22_c00150{bottom:163.880000pt;}
.y47_c00150{bottom:178.813333pt;}
.y21_c00150{bottom:180.946667pt;}
.y46_c00150{bottom:194.680000pt;}
.y20_c00150{bottom:198.013333pt;}
.y45_c00150{bottom:210.946667pt;}
.y1f_c00150{bottom:214.280000pt;}
.y44_c00150{bottom:227.213333pt;}
.y1e_c00150{bottom:228.413333pt;}
.y43_c00150{bottom:243.346667pt;}
.y1d_c00150{bottom:246.680000pt;}
.y42_c00150{bottom:259.480000pt;}
.y1c_c00150{bottom:262.280000pt;}
.y41_c00150{bottom:275.480000pt;}
.y1b_c00150{bottom:278.146667pt;}
.y40_c00150{bottom:291.346667pt;}
.y1a_c00150{bottom:293.480000pt;}
.y3f_c00150{bottom:307.613333pt;}
.y19_c00150{bottom:310.280000pt;}
.y3e_c00150{bottom:323.480000pt;}
.y18_c00150{bottom:326.146667pt;}
.y3d_c00150{bottom:340.013333pt;}
.y17_c00150{bottom:342.680000pt;}
.y3c_c00150{bottom:355.613333pt;}
.y16_c00150{bottom:358.280000pt;}
.y3b_c00150{bottom:371.746667pt;}
.y15_c00150{bottom:374.680000pt;}
.y3a_c00150{bottom:388.280000pt;}
.y14_c00150{bottom:390.680000pt;}
.y39_c00150{bottom:404.146667pt;}
.y13_c00150{bottom:406.280000pt;}
.y38_c00150{bottom:419.480000pt;}
.y12_c00150{bottom:422.413333pt;}
.y37_c00150{bottom:435.080000pt;}
.y11_c00150{bottom:438.280000pt;}
.y36_c00150{bottom:452.146667pt;}
.y10_c00150{bottom:453.613333pt;}
.y35_c00150{bottom:468.280000pt;}
.yf_c00150{bottom:469.880000pt;}
.y34_c00150{bottom:483.880000pt;}
.ye_c00150{bottom:486.280000pt;}
.y33_c00150{bottom:498.946667pt;}
.yd_c00150{bottom:501.080000pt;}
.y31_c00150{bottom:510.013333pt;}
.y32_c00150{bottom:515.480000pt;}
.yc_c00150{bottom:518.413333pt;}
.yb_c00150{bottom:533.746667pt;}
.ya_c00150{bottom:550.013333pt;}
.y30_c00150{bottom:564.680000pt;}
.y9_c00150{bottom:565.480000pt;}
.y2f_c00150{bottom:580.013333pt;}
.y8_c00150{bottom:581.746667pt;}
.y2e_c00150{bottom:595.880000pt;}
.y7_c00150{bottom:597.080000pt;}
.y2d_c00150{bottom:611.080000pt;}
.y6_c00150{bottom:613.213333pt;}
.y2c_c00150{bottom:628.546667pt;}
.y5_c00150{bottom:629.746667pt;}
.y2b_c00150{bottom:644.413333pt;}
.y4_c00150{bottom:645.613333pt;}
.y3_c00150{bottom:661.480000pt;}
.y2a_c00150{bottom:675.080000pt;}
.y2_c00150{bottom:677.480000pt;}
.y1_c00150{bottom:693.880000pt;}
.h8_c00150{height:11.733399pt;}
.h9_c00150{height:38.937500pt;}
.h2_c00150{height:55.893333pt;}
.h7_c00150{height:56.906667pt;}
.h4_c00150{height:61.482667pt;}
.h3_c00150{height:62.597333pt;}
.h6_c00150{height:65.442667pt;}
.h5_c00150{height:176.064000pt;}
.h1_c00150{height:743.333333pt;}
.h0_c00150{height:743.533333pt;}
.w2_c00150{width:93.222667pt;}
.w1_c00150{width:524.000000pt;}
.w0_c00150{width:524.133333pt;}
.x0_c00150{left:0.000000pt;}
.x1_c00150{left:62.133333pt;}
.x2_c00150{left:63.200000pt;}
.x3_c00150{left:64.533333pt;}
.x4_c00150{left:66.000000pt;}
.x5_c00150{left:67.600000pt;}
.x6_c00150{left:69.066667pt;}
.x7_c00150{left:70.266667pt;}
.x13_c00150{left:219.234904pt;}
.xa_c00150{left:257.066667pt;}
.x9_c00150{left:258.533333pt;}
.x10_c00150{left:259.866667pt;}
.x11_c00150{left:261.066667pt;}
.xb_c00150{left:269.466667pt;}
.xc_c00150{left:283.200000pt;}
.xd_c00150{left:284.133333pt;}
.xf_c00150{left:295.866667pt;}
.x8_c00150{left:319.200000pt;}
.xe_c00150{left:330.666667pt;}
.x12_c00150{left:419.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_66bdf1b02915782a482c2dad.woff2')format("woff");}.ff1_c00151{font-family:ff1_c00151;line-height:1.437000;font-style:normal;font-weight:normal;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_2c57637b2a92245b0dd14c72.woff2')format("woff");}.ff2_c00151{font-family:ff2_c00151;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00151;src:url('chunks/assets/font_0482e843eaaa89f4c7453f5f.woff2')format("woff");}.ff3_c00151{font-family:ff3_c00151;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00151;src:url('chunks/assets/font_2edc945404d47f0d401e2537.woff2')format("woff");}.ff4_c00151{font-family:ff4_c00151;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00151;src:url('chunks/assets/font_4e279e6370faa7a603d8bf00.woff2')format("woff");}.ff5_c00151{font-family:ff5_c00151;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00151;src:url('chunks/assets/font_adb6cd42ca93a836ded737da.woff2')format("woff");}.ff6_c00151{font-family:ff6_c00151;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00151;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff7_c00151{font-family:ff7_c00151;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00151{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00151{vertical-align:0.000000px;}
.ls6_c00151{letter-spacing:0.000000px;}
.ls2_c00151{letter-spacing:1.200000px;}
.ls4_c00151{letter-spacing:2.400000px;}
.ls0_c00151{letter-spacing:3.000000px;}
.ls5_c00151{letter-spacing:3.900000px;}
.ls8_c00151{letter-spacing:6.000000px;}
.ls3_c00151{letter-spacing:7.800000px;}
.ls7_c00151{letter-spacing:15.000000px;}
.ls1_c00151{letter-spacing:21.060000px;}
.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;}
}
.ws4_c00151{word-spacing:-21.000000px;}
.ws2_c00151{word-spacing:-18.060000px;}
.ws0_c00151{word-spacing:-15.906000px;}
.ws3_c00151{word-spacing:-14.427000px;}
.ws1_c00151{word-spacing:-14.160000px;}
.ws5_c00151{word-spacing:0.000000px;}
._24_c00151{margin-left:-24.672000px;}
._1c_c00151{margin-left:-18.960000px;}
._1f_c00151{margin-left:-16.464000px;}
._1d_c00151{margin-left:-14.322000px;}
._26_c00151{margin-left:-13.236000px;}
._1b_c00151{margin-left:-11.874000px;}
._25_c00151{margin-left:-10.116000px;}
._17_c00151{margin-left:-9.030000px;}
._15_c00151{margin-left:-7.560000px;}
._3_c00151{margin-left:-5.646000px;}
._d_c00151{margin-left:-3.918000px;}
._7_c00151{margin-left:-2.262000px;}
._6_c00151{margin-left:-1.098000px;}
._8_c00151{width:1.086000px;}
._0_c00151{width:2.214000px;}
._1_c00151{width:3.324000px;}
._2_c00151{width:4.398000px;}
._12_c00151{width:5.820000px;}
._5_c00151{width:7.260000px;}
._11_c00151{width:8.280000px;}
._4_c00151{width:10.140000px;}
._10_c00151{width:11.970000px;}
._f_c00151{width:13.716000px;}
._13_c00151{width:14.922000px;}
._14_c00151{width:16.620000px;}
._20_c00151{width:18.510000px;}
._18_c00151{width:19.794000px;}
._1e_c00151{width:21.408000px;}
._16_c00151{width:22.728000px;}
._a_c00151{width:25.440000px;}
._23_c00151{width:27.318000px;}
._1a_c00151{width:28.434000px;}
._22_c00151{width:29.484000px;}
._19_c00151{width:30.522000px;}
._9_c00151{width:32.988000px;}
._b_c00151{width:35.250000px;}
._c_c00151{width:45.108000px;}
._e_c00151{width:60.840000px;}
._21_c00151{width:74.787000px;}
._28_c00151{width:306.618000px;}
._27_c00151{width:378.318000px;}
.fc2_c00151{color:transparent;}
.fc1_c00151{color:rgb(128,128,128);}
.fc0_c00151{color:rgb(0,0,0);}
.fs4_c00151{font-size:45.000000px;}
.fs5_c00151{font-size:48.000000px;}
.fs0_c00151{font-size:54.000000px;}
.fs2_c00151{font-size:57.000000px;}
.fs1_c00151{font-size:60.000000px;}
.fs3_c00151{font-size:63.000000px;}
.y0_c00151{bottom:0.000000px;}
.y52_c00151{bottom:3.105000px;}
.y51_c00151{bottom:7.228355px;}
.y50_c00151{bottom:33.435000px;}
.y2a_c00151{bottom:49.485000px;}
.y4f_c00151{bottom:50.835000px;}
.y29_c00151{bottom:68.085000px;}
.y4e_c00151{bottom:69.885000px;}
.y28_c00151{bottom:86.685000px;}
.y4d_c00151{bottom:88.035000px;}
.y27_c00151{bottom:104.985000px;}
.y4c_c00151{bottom:106.635000px;}
.y26_c00151{bottom:123.885000px;}
.y4b_c00151{bottom:125.235000px;}
.y25_c00151{bottom:142.035000px;}
.y4a_c00151{bottom:142.635000px;}
.y24_c00151{bottom:160.185000px;}
.y49_c00151{bottom:160.335000px;}
.y23_c00151{bottom:178.485000px;}
.y48_c00151{bottom:179.085000px;}
.y22_c00151{bottom:196.035000px;}
.y47_c00151{bottom:196.635000px;}
.y21_c00151{bottom:214.635000px;}
.y46_c00151{bottom:214.785000px;}
.y20_c00151{bottom:232.485000px;}
.y45_c00151{bottom:232.785000px;}
.y1f_c00151{bottom:250.785000px;}
.y1e_c00151{bottom:268.635000px;}
.y44_c00151{bottom:269.235000px;}
.y1d_c00151{bottom:286.785000px;}
.y43_c00151{bottom:287.085000px;}
.y1c_c00151{bottom:304.785000px;}
.y42_c00151{bottom:322.635000px;}
.y1b_c00151{bottom:322.935000px;}
.y1a_c00151{bottom:341.085000px;}
.y41_c00151{bottom:341.235000px;}
.y19_c00151{bottom:359.085000px;}
.y40_c00151{bottom:359.385000px;}
.y3f_c00151{bottom:377.085000px;}
.y18_c00151{bottom:377.235000px;}
.y17_c00151{bottom:395.535000px;}
.y16_c00151{bottom:413.685000px;}
.y3e_c00151{bottom:413.985000px;}
.y3d_c00151{bottom:431.535000px;}
.y15_c00151{bottom:431.685000px;}
.y3c_c00151{bottom:449.535000px;}
.y14_c00151{bottom:450.435000px;}
.y3b_c00151{bottom:468.135000px;}
.y13_c00151{bottom:468.435000px;}
.y12_c00151{bottom:485.685000px;}
.y3a_c00151{bottom:486.285000px;}
.y11_c00151{bottom:503.835000px;}
.y39_c00151{bottom:504.885000px;}
.y10_c00151{bottom:521.685000px;}
.y38_c00151{bottom:522.435000px;}
.yf_c00151{bottom:539.685000px;}
.y37_c00151{bottom:540.285000px;}
.ye_c00151{bottom:557.535000px;}
.y36_c00151{bottom:558.435000px;}
.yd_c00151{bottom:575.385000px;}
.y35_c00151{bottom:577.035000px;}
.yc_c00151{bottom:592.935000px;}
.y34_c00151{bottom:594.585000px;}
.yb_c00151{bottom:611.835000px;}
.y33_c00151{bottom:612.885000px;}
.ya_c00151{bottom:629.535000px;}
.y32_c00151{bottom:630.435000px;}
.y9_c00151{bottom:647.685000px;}
.y31_c00151{bottom:647.985000px;}
.y8_c00151{bottom:665.835000px;}
.y30_c00151{bottom:666.585000px;}
.y7_c00151{bottom:683.985000px;}
.y2f_c00151{bottom:684.435000px;}
.y2e_c00151{bottom:701.685000px;}
.y6_c00151{bottom:702.585000px;}
.y5_c00151{bottom:719.685000px;}
.y2d_c00151{bottom:720.585000px;}
.y4_c00151{bottom:737.985000px;}
.y2c_c00151{bottom:738.135000px;}
.y3_c00151{bottom:756.285000px;}
.y2_c00151{bottom:774.135000px;}
.y1_c00151{bottom:793.785000px;}
.y2b_c00151{bottom:794.385000px;}
.h6_c00151{height:13.200074px;}
.h7_c00151{height:43.804688px;}
.h2_c00151{height:56.592000px;}
.h3_c00151{height:62.880000px;}
.h4_c00151{height:64.020000px;}
.h5_c00151{height:66.024000px;}
.h1_c00151{height:841.500000px;}
.h0_c00151{height:841.575000px;}
.w2_c00151{width:104.875500px;}
.w0_c00151{width:565.950000px;}
.w1_c00151{width:566.250000px;}
.x0_c00151{left:0.000000px;}
.x9_c00151{left:72.000000px;}
.x5_c00151{left:76.350000px;}
.xc_c00151{left:84.450000px;}
.xb_c00151{left:85.800000px;}
.x8_c00151{left:87.150000px;}
.x7_c00151{left:88.200000px;}
.x6_c00151{left:90.450000px;}
.x4_c00151{left:92.100000px;}
.x3_c00151{left:93.150000px;}
.x2_c00151{left:94.800000px;}
.x1_c00151{left:100.200000px;}
.xd_c00151{left:108.450000px;}
.xa_c00151{left:134.100000px;}
.xe_c00151{left:212.700000px;}
.x1b_c00151{left:234.789230px;}
.x16_c00151{left:301.050000px;}
.x19_c00151{left:304.350000px;}
.x15_c00151{left:305.700000px;}
.x14_c00151{left:307.050000px;}
.x13_c00151{left:308.400000px;}
.x12_c00151{left:310.500000px;}
.x11_c00151{left:311.550000px;}
.x10_c00151{left:312.900000px;}
.xf_c00151{left:313.950000px;}
.x18_c00151{left:324.600000px;}
.x17_c00151{left:371.250000px;}
.x1a_c00151{left:472.800000px;}
@media print{
.v0_c00151{vertical-align:0.000000pt;}
.ls6_c00151{letter-spacing:0.000000pt;}
.ls2_c00151{letter-spacing:1.066667pt;}
.ls4_c00151{letter-spacing:2.133333pt;}
.ls0_c00151{letter-spacing:2.666667pt;}
.ls5_c00151{letter-spacing:3.466667pt;}
.ls8_c00151{letter-spacing:5.333333pt;}
.ls3_c00151{letter-spacing:6.933333pt;}
.ls7_c00151{letter-spacing:13.333333pt;}
.ls1_c00151{letter-spacing:18.720000pt;}
.ws4_c00151{word-spacing:-18.666667pt;}
.ws2_c00151{word-spacing:-16.053333pt;}
.ws0_c00151{word-spacing:-14.138667pt;}
.ws3_c00151{word-spacing:-12.824000pt;}
.ws1_c00151{word-spacing:-12.586667pt;}
.ws5_c00151{word-spacing:0.000000pt;}
._24_c00151{margin-left:-21.930667pt;}
._1c_c00151{margin-left:-16.853333pt;}
._1f_c00151{margin-left:-14.634667pt;}
._1d_c00151{margin-left:-12.730667pt;}
._26_c00151{margin-left:-11.765333pt;}
._1b_c00151{margin-left:-10.554667pt;}
._25_c00151{margin-left:-8.992000pt;}
._17_c00151{margin-left:-8.026667pt;}
._15_c00151{margin-left:-6.720000pt;}
._3_c00151{margin-left:-5.018667pt;}
._d_c00151{margin-left:-3.482667pt;}
._7_c00151{margin-left:-2.010667pt;}
._6_c00151{margin-left:-0.976000pt;}
._8_c00151{width:0.965333pt;}
._0_c00151{width:1.968000pt;}
._1_c00151{width:2.954667pt;}
._2_c00151{width:3.909333pt;}
._12_c00151{width:5.173333pt;}
._5_c00151{width:6.453333pt;}
._11_c00151{width:7.360000pt;}
._4_c00151{width:9.013333pt;}
._10_c00151{width:10.640000pt;}
._f_c00151{width:12.192000pt;}
._13_c00151{width:13.264000pt;}
._14_c00151{width:14.773333pt;}
._20_c00151{width:16.453333pt;}
._18_c00151{width:17.594667pt;}
._1e_c00151{width:19.029333pt;}
._16_c00151{width:20.202667pt;}
._a_c00151{width:22.613333pt;}
._23_c00151{width:24.282667pt;}
._1a_c00151{width:25.274667pt;}
._22_c00151{width:26.208000pt;}
._19_c00151{width:27.130667pt;}
._9_c00151{width:29.322667pt;}
._b_c00151{width:31.333333pt;}
._c_c00151{width:40.096000pt;}
._e_c00151{width:54.080000pt;}
._21_c00151{width:66.477333pt;}
._28_c00151{width:272.549333pt;}
._27_c00151{width:336.282667pt;}
.fs4_c00151{font-size:40.000000pt;}
.fs5_c00151{font-size:42.666667pt;}
.fs0_c00151{font-size:48.000000pt;}
.fs2_c00151{font-size:50.666667pt;}
.fs1_c00151{font-size:53.333333pt;}
.fs3_c00151{font-size:56.000000pt;}
.y0_c00151{bottom:0.000000pt;}
.y52_c00151{bottom:2.760000pt;}
.y51_c00151{bottom:6.425204pt;}
.y50_c00151{bottom:29.720000pt;}
.y2a_c00151{bottom:43.986667pt;}
.y4f_c00151{bottom:45.186667pt;}
.y29_c00151{bottom:60.520000pt;}
.y4e_c00151{bottom:62.120000pt;}
.y28_c00151{bottom:77.053333pt;}
.y4d_c00151{bottom:78.253333pt;}
.y27_c00151{bottom:93.320000pt;}
.y4c_c00151{bottom:94.786667pt;}
.y26_c00151{bottom:110.120000pt;}
.y4b_c00151{bottom:111.320000pt;}
.y25_c00151{bottom:126.253333pt;}
.y4a_c00151{bottom:126.786667pt;}
.y24_c00151{bottom:142.386667pt;}
.y49_c00151{bottom:142.520000pt;}
.y23_c00151{bottom:158.653333pt;}
.y48_c00151{bottom:159.186667pt;}
.y22_c00151{bottom:174.253333pt;}
.y47_c00151{bottom:174.786667pt;}
.y21_c00151{bottom:190.786667pt;}
.y46_c00151{bottom:190.920000pt;}
.y20_c00151{bottom:206.653333pt;}
.y45_c00151{bottom:206.920000pt;}
.y1f_c00151{bottom:222.920000pt;}
.y1e_c00151{bottom:238.786667pt;}
.y44_c00151{bottom:239.320000pt;}
.y1d_c00151{bottom:254.920000pt;}
.y43_c00151{bottom:255.186667pt;}
.y1c_c00151{bottom:270.920000pt;}
.y42_c00151{bottom:286.786667pt;}
.y1b_c00151{bottom:287.053333pt;}
.y1a_c00151{bottom:303.186667pt;}
.y41_c00151{bottom:303.320000pt;}
.y19_c00151{bottom:319.186667pt;}
.y40_c00151{bottom:319.453333pt;}
.y3f_c00151{bottom:335.186667pt;}
.y18_c00151{bottom:335.320000pt;}
.y17_c00151{bottom:351.586667pt;}
.y16_c00151{bottom:367.720000pt;}
.y3e_c00151{bottom:367.986667pt;}
.y3d_c00151{bottom:383.586667pt;}
.y15_c00151{bottom:383.720000pt;}
.y3c_c00151{bottom:399.586667pt;}
.y14_c00151{bottom:400.386667pt;}
.y3b_c00151{bottom:416.120000pt;}
.y13_c00151{bottom:416.386667pt;}
.y12_c00151{bottom:431.720000pt;}
.y3a_c00151{bottom:432.253333pt;}
.y11_c00151{bottom:447.853333pt;}
.y39_c00151{bottom:448.786667pt;}
.y10_c00151{bottom:463.720000pt;}
.y38_c00151{bottom:464.386667pt;}
.yf_c00151{bottom:479.720000pt;}
.y37_c00151{bottom:480.253333pt;}
.ye_c00151{bottom:495.586667pt;}
.y36_c00151{bottom:496.386667pt;}
.yd_c00151{bottom:511.453333pt;}
.y35_c00151{bottom:512.920000pt;}
.yc_c00151{bottom:527.053333pt;}
.y34_c00151{bottom:528.520000pt;}
.yb_c00151{bottom:543.853333pt;}
.y33_c00151{bottom:544.786667pt;}
.ya_c00151{bottom:559.586667pt;}
.y32_c00151{bottom:560.386667pt;}
.y9_c00151{bottom:575.720000pt;}
.y31_c00151{bottom:575.986667pt;}
.y8_c00151{bottom:591.853333pt;}
.y30_c00151{bottom:592.520000pt;}
.y7_c00151{bottom:607.986667pt;}
.y2f_c00151{bottom:608.386667pt;}
.y2e_c00151{bottom:623.720000pt;}
.y6_c00151{bottom:624.520000pt;}
.y5_c00151{bottom:639.720000pt;}
.y2d_c00151{bottom:640.520000pt;}
.y4_c00151{bottom:655.986667pt;}
.y2c_c00151{bottom:656.120000pt;}
.y3_c00151{bottom:672.253333pt;}
.y2_c00151{bottom:688.120000pt;}
.y1_c00151{bottom:705.586667pt;}
.y2b_c00151{bottom:706.120000pt;}
.h6_c00151{height:11.733399pt;}
.h7_c00151{height:38.937500pt;}
.h2_c00151{height:50.304000pt;}
.h3_c00151{height:55.893333pt;}
.h4_c00151{height:56.906667pt;}
.h5_c00151{height:58.688000pt;}
.h1_c00151{height:748.000000pt;}
.h0_c00151{height:748.066667pt;}
.w2_c00151{width:93.222667pt;}
.w0_c00151{width:503.066667pt;}
.w1_c00151{width:503.333333pt;}
.x0_c00151{left:0.000000pt;}
.x9_c00151{left:64.000000pt;}
.x5_c00151{left:67.866667pt;}
.xc_c00151{left:75.066667pt;}
.xb_c00151{left:76.266667pt;}
.x8_c00151{left:77.466667pt;}
.x7_c00151{left:78.400000pt;}
.x6_c00151{left:80.400000pt;}
.x4_c00151{left:81.866667pt;}
.x3_c00151{left:82.800000pt;}
.x2_c00151{left:84.266667pt;}
.x1_c00151{left:89.066667pt;}
.xd_c00151{left:96.400000pt;}
.xa_c00151{left:119.200000pt;}
.xe_c00151{left:189.066667pt;}
.x1b_c00151{left:208.701538pt;}
.x16_c00151{left:267.600000pt;}
.x19_c00151{left:270.533333pt;}
.x15_c00151{left:271.733333pt;}
.x14_c00151{left:272.933333pt;}
.x13_c00151{left:274.133333pt;}
.x12_c00151{left:276.000000pt;}
.x11_c00151{left:276.933333pt;}
.x10_c00151{left:278.133333pt;}
.xf_c00151{left:279.066667pt;}
.x18_c00151{left:288.533333pt;}
.x17_c00151{left:330.000000pt;}
.x1a_c00151{left:420.266667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_118d00f18f331abd3b7512bf.woff2')format("woff");}.ff1_c00152{font-family:ff1_c00152;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00152;src:url('chunks/assets/font_c39a9797a95c6cf2ad015c75.woff2')format("woff");}.ff2_c00152{font-family:ff2_c00152;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00152;src:url('chunks/assets/font_225f7897ca4ab88d79395c76.woff2')format("woff");}.ff3_c00152{font-family:ff3_c00152;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00152;src:url('chunks/assets/font_0ce391de997f24f9f9dd37f4.woff2')format("woff");}.ff4_c00152{font-family:ff4_c00152;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00152;src:url('chunks/assets/font_ee5113fb56facc92c56fe9e0.woff2')format("woff");}.ff5_c00152{font-family:ff5_c00152;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00152;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff6_c00152{font-family:ff6_c00152;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00152{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00152{vertical-align:0.000000px;}
.ls3_c00152{letter-spacing:0.000000px;}
.ls0_c00152{letter-spacing:3.000000px;}
.ls1_c00152{letter-spacing:4.005000px;}
.ls2_c00152{letter-spacing:5.340000px;}
.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;}
}
.ws1_c00152{word-spacing:-29.295000px;}
.ws2_c00152{word-spacing:-18.060000px;}
.ws0_c00152{word-spacing:-14.160000px;}
.ws3_c00152{word-spacing:0.000000px;}
._10_c00152{margin-left:-16.440000px;}
._15_c00152{margin-left:-13.560000px;}
._16_c00152{margin-left:-12.120000px;}
._17_c00152{margin-left:-11.100000px;}
._11_c00152{margin-left:-8.880000px;}
._b_c00152{margin-left:-7.500000px;}
._19_c00152{margin-left:-6.435000px;}
._f_c00152{margin-left:-4.980000px;}
._9_c00152{margin-left:-3.795000px;}
._18_c00152{margin-left:-2.760000px;}
._12_c00152{margin-left:-1.740000px;}
._a_c00152{width:1.080000px;}
._4_c00152{width:2.100000px;}
._6_c00152{width:3.300000px;}
._1d_c00152{width:4.440000px;}
._d_c00152{width:5.520000px;}
._c_c00152{width:6.780000px;}
._21_c00152{width:7.800000px;}
._1_c00152{width:8.880000px;}
._e_c00152{width:10.080000px;}
._0_c00152{width:11.700000px;}
._14_c00152{width:13.080000px;}
._3_c00152{width:15.360000px;}
._20_c00152{width:16.800000px;}
._13_c00152{width:19.170000px;}
._1c_c00152{width:21.075000px;}
._5_c00152{width:23.160000px;}
._1b_c00152{width:25.140000px;}
._8_c00152{width:26.700000px;}
._1a_c00152{width:29.310000px;}
._7_c00152{width:31.500000px;}
._1e_c00152{width:33.300000px;}
._2_c00152{width:34.560000px;}
._1f_c00152{width:37.380000px;}
.fc2_c00152{color:transparent;}
.fc1_c00152{color:rgb(128,128,128);}
.fc0_c00152{color:rgb(0,0,0);}
.fs1_c00152{font-size:45.000000px;}
.fs3_c00152{font-size:48.000000px;}
.fs0_c00152{font-size:60.000000px;}
.fs2_c00152{font-size:183.000000px;}
.y0_c00152{bottom:0.000000px;}
.y34_c00152{bottom:3.105000px;}
.y33_c00152{bottom:7.228371px;}
.y32_c00152{bottom:190.065000px;}
.y31_c00152{bottom:350.415000px;}
.y19_c00152{bottom:355.815000px;}
.y30_c00152{bottom:370.365000px;}
.y18_c00152{bottom:374.715000px;}
.y2f_c00152{bottom:387.465000px;}
.y17_c00152{bottom:391.515000px;}
.y2e_c00152{bottom:406.665000px;}
.y16_c00152{bottom:409.365000px;}
.y2d_c00152{bottom:424.965000px;}
.y15_c00152{bottom:429.015000px;}
.y2c_c00152{bottom:443.265000px;}
.y14_c00152{bottom:446.565000px;}
.y2b_c00152{bottom:461.715000px;}
.y13_c00152{bottom:464.415000px;}
.y2a_c00152{bottom:479.265000px;}
.y12_c00152{bottom:481.965000px;}
.y29_c00152{bottom:497.865000px;}
.y11_c00152{bottom:499.515000px;}
.y28_c00152{bottom:516.015000px;}
.y10_c00152{bottom:517.815000px;}
.y27_c00152{bottom:534.015000px;}
.yf_c00152{bottom:536.265000px;}
.y26_c00152{bottom:552.165000px;}
.ye_c00152{bottom:553.515000px;}
.y25_c00152{bottom:570.165000px;}
.yd_c00152{bottom:572.115000px;}
.y24_c00152{bottom:588.615000px;}
.yc_c00152{bottom:590.265000px;}
.y23_c00152{bottom:606.165000px;}
.yb_c00152{bottom:608.265000px;}
.y22_c00152{bottom:624.465000px;}
.ya_c00152{bottom:626.415000px;}
.y21_c00152{bottom:642.615000px;}
.y9_c00152{bottom:644.265000px;}
.y20_c00152{bottom:660.615000px;}
.y8_c00152{bottom:662.265000px;}
.y1f_c00152{bottom:679.065000px;}
.y7_c00152{bottom:680.865000px;}
.y1e_c00152{bottom:696.915000px;}
.y6_c00152{bottom:699.015000px;}
.y1d_c00152{bottom:715.815000px;}
.y5_c00152{bottom:717.315000px;}
.y1c_c00152{bottom:733.365000px;}
.y4_c00152{bottom:735.765000px;}
.y1b_c00152{bottom:751.365000px;}
.y3_c00152{bottom:753.015000px;}
.y1a_c00152{bottom:769.965000px;}
.y2_c00152{bottom:771.165000px;}
.y1_c00152{bottom:790.065000px;}
.h4_c00152{height:13.200074px;}
.h5_c00152{height:43.804688px;}
.h2_c00152{height:62.880000px;}
.h3_c00152{height:198.372000px;}
.h1_c00152{height:822.750000px;}
.h0_c00152{height:822.975000px;}
.w2_c00152{width:104.875500px;}
.w1_c00152{width:579.750000px;}
.w0_c00152{width:579.975000px;}
.x0_c00152{left:0.000000px;}
.x4_c00152{left:59.850000px;}
.x5_c00152{left:62.550000px;}
.x6_c00152{left:64.050000px;}
.x7_c00152{left:66.450000px;}
.x8_c00152{left:67.500000px;}
.x9_c00152{left:69.150000px;}
.xa_c00152{left:70.200000px;}
.x2_c00152{left:94.200000px;}
.x3_c00152{left:128.550000px;}
.x17_c00152{left:143.400000px;}
.x1_c00152{left:187.950000px;}
.x18_c00152{left:241.801758px;}
.x11_c00152{left:269.400000px;}
.xc_c00152{left:271.050000px;}
.x10_c00152{left:272.100000px;}
.xb_c00152{left:274.650000px;}
.xd_c00152{left:275.700000px;}
.xe_c00152{left:276.750000px;}
.xf_c00152{left:278.850000px;}
.x12_c00152{left:279.900000px;}
.x13_c00152{left:281.100000px;}
.x14_c00152{left:293.400000px;}
.x15_c00152{left:302.100000px;}
.x16_c00152{left:347.700000px;}
@media print{
.v0_c00152{vertical-align:0.000000pt;}
.ls3_c00152{letter-spacing:0.000000pt;}
.ls0_c00152{letter-spacing:2.666667pt;}
.ls1_c00152{letter-spacing:3.560000pt;}
.ls2_c00152{letter-spacing:4.746667pt;}
.ws1_c00152{word-spacing:-26.040000pt;}
.ws2_c00152{word-spacing:-16.053333pt;}
.ws0_c00152{word-spacing:-12.586667pt;}
.ws3_c00152{word-spacing:0.000000pt;}
._10_c00152{margin-left:-14.613333pt;}
._15_c00152{margin-left:-12.053333pt;}
._16_c00152{margin-left:-10.773333pt;}
._17_c00152{margin-left:-9.866667pt;}
._11_c00152{margin-left:-7.893333pt;}
._b_c00152{margin-left:-6.666667pt;}
._19_c00152{margin-left:-5.720000pt;}
._f_c00152{margin-left:-4.426667pt;}
._9_c00152{margin-left:-3.373333pt;}
._18_c00152{margin-left:-2.453333pt;}
._12_c00152{margin-left:-1.546667pt;}
._a_c00152{width:0.960000pt;}
._4_c00152{width:1.866667pt;}
._6_c00152{width:2.933333pt;}
._1d_c00152{width:3.946667pt;}
._d_c00152{width:4.906667pt;}
._c_c00152{width:6.026667pt;}
._21_c00152{width:6.933333pt;}
._1_c00152{width:7.893333pt;}
._e_c00152{width:8.960000pt;}
._0_c00152{width:10.400000pt;}
._14_c00152{width:11.626667pt;}
._3_c00152{width:13.653333pt;}
._20_c00152{width:14.933333pt;}
._13_c00152{width:17.040000pt;}
._1c_c00152{width:18.733333pt;}
._5_c00152{width:20.586667pt;}
._1b_c00152{width:22.346667pt;}
._8_c00152{width:23.733333pt;}
._1a_c00152{width:26.053333pt;}
._7_c00152{width:28.000000pt;}
._1e_c00152{width:29.600000pt;}
._2_c00152{width:30.720000pt;}
._1f_c00152{width:33.226667pt;}
.fs1_c00152{font-size:40.000000pt;}
.fs3_c00152{font-size:42.666667pt;}
.fs0_c00152{font-size:53.333333pt;}
.fs2_c00152{font-size:162.666667pt;}
.y0_c00152{bottom:0.000000pt;}
.y34_c00152{bottom:2.760000pt;}
.y33_c00152{bottom:6.425219pt;}
.y32_c00152{bottom:168.946667pt;}
.y31_c00152{bottom:311.480000pt;}
.y19_c00152{bottom:316.280000pt;}
.y30_c00152{bottom:329.213333pt;}
.y18_c00152{bottom:333.080000pt;}
.y2f_c00152{bottom:344.413333pt;}
.y17_c00152{bottom:348.013333pt;}
.y2e_c00152{bottom:361.480000pt;}
.y16_c00152{bottom:363.880000pt;}
.y2d_c00152{bottom:377.746667pt;}
.y15_c00152{bottom:381.346667pt;}
.y2c_c00152{bottom:394.013333pt;}
.y14_c00152{bottom:396.946667pt;}
.y2b_c00152{bottom:410.413333pt;}
.y13_c00152{bottom:412.813333pt;}
.y2a_c00152{bottom:426.013333pt;}
.y12_c00152{bottom:428.413333pt;}
.y29_c00152{bottom:442.546667pt;}
.y11_c00152{bottom:444.013333pt;}
.y28_c00152{bottom:458.680000pt;}
.y10_c00152{bottom:460.280000pt;}
.y27_c00152{bottom:474.680000pt;}
.yf_c00152{bottom:476.680000pt;}
.y26_c00152{bottom:490.813333pt;}
.ye_c00152{bottom:492.013333pt;}
.y25_c00152{bottom:506.813333pt;}
.yd_c00152{bottom:508.546667pt;}
.y24_c00152{bottom:523.213333pt;}
.yc_c00152{bottom:524.680000pt;}
.y23_c00152{bottom:538.813333pt;}
.yb_c00152{bottom:540.680000pt;}
.y22_c00152{bottom:555.080000pt;}
.ya_c00152{bottom:556.813333pt;}
.y21_c00152{bottom:571.213333pt;}
.y9_c00152{bottom:572.680000pt;}
.y20_c00152{bottom:587.213333pt;}
.y8_c00152{bottom:588.680000pt;}
.y1f_c00152{bottom:603.613333pt;}
.y7_c00152{bottom:605.213333pt;}
.y1e_c00152{bottom:619.480000pt;}
.y6_c00152{bottom:621.346667pt;}
.y1d_c00152{bottom:636.280000pt;}
.y5_c00152{bottom:637.613333pt;}
.y1c_c00152{bottom:651.880000pt;}
.y4_c00152{bottom:654.013333pt;}
.y1b_c00152{bottom:667.880000pt;}
.y3_c00152{bottom:669.346667pt;}
.y1a_c00152{bottom:684.413333pt;}
.y2_c00152{bottom:685.480000pt;}
.y1_c00152{bottom:702.280000pt;}
.h4_c00152{height:11.733399pt;}
.h5_c00152{height:38.937500pt;}
.h2_c00152{height:55.893333pt;}
.h3_c00152{height:176.330667pt;}
.h1_c00152{height:731.333333pt;}
.h0_c00152{height:731.533333pt;}
.w2_c00152{width:93.222667pt;}
.w1_c00152{width:515.333333pt;}
.w0_c00152{width:515.533333pt;}
.x0_c00152{left:0.000000pt;}
.x4_c00152{left:53.200000pt;}
.x5_c00152{left:55.600000pt;}
.x6_c00152{left:56.933333pt;}
.x7_c00152{left:59.066667pt;}
.x8_c00152{left:60.000000pt;}
.x9_c00152{left:61.466667pt;}
.xa_c00152{left:62.400000pt;}
.x2_c00152{left:83.733333pt;}
.x3_c00152{left:114.266667pt;}
.x17_c00152{left:127.466667pt;}
.x1_c00152{left:167.066667pt;}
.x18_c00152{left:214.934896pt;}
.x11_c00152{left:239.466667pt;}
.xc_c00152{left:240.933333pt;}
.x10_c00152{left:241.866667pt;}
.xb_c00152{left:244.133333pt;}
.xd_c00152{left:245.066667pt;}
.xe_c00152{left:246.000000pt;}
.xf_c00152{left:247.866667pt;}
.x12_c00152{left:248.800000pt;}
.x13_c00152{left:249.866667pt;}
.x14_c00152{left:260.800000pt;}
.x15_c00152{left:268.533333pt;}
.x16_c00152{left:309.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_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_2faffcb74c5342c894745acd.woff2')format("woff");}.ff1_c00153{font-family:ff1_c00153;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00153;src:url('chunks/assets/font_c988e478fbb38f90ec4fe0ad.woff2')format("woff");}.ff2_c00153{font-family:ff2_c00153;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00153;src:url('chunks/assets/font_978c21dae51243a0d585e605.woff2')format("woff");}.ff3_c00153{font-family:ff3_c00153;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00153;src:url('chunks/assets/font_285447eeb3b39e9e34c085a9.woff2')format("woff");}.ff4_c00153{font-family:ff4_c00153;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00153;src:url('chunks/assets/font_438a9856379b383c85d6ec34.woff2')format("woff");}.ff5_c00153{font-family:ff5_c00153;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00153;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff6_c00153{font-family:ff6_c00153;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00153{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00153{vertical-align:0.000000px;}
.ls2_c00153{letter-spacing:0.000000px;}
.ls1_c00153{letter-spacing:3.000000px;}
.ls3_c00153{letter-spacing:6.000000px;}
.ls0_c00153{letter-spacing:21.000000px;}
.sc__c00153{text-shadow:none;}
.sc0_c00153{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00153{-webkit-text-stroke:0px transparent;}
.sc0_c00153{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00153{word-spacing:-30.540000px;}
.ws0_c00153{word-spacing:-25.095000px;}
.ws2_c00153{word-spacing:-21.000000px;}
.ws3_c00153{word-spacing:-18.813000px;}
.ws4_c00153{word-spacing:0.000000px;}
._f_c00153{margin-left:-14.994000px;}
._11_c00153{margin-left:-12.393000px;}
._17_c00153{margin-left:-9.912000px;}
._3_c00153{margin-left:-7.455000px;}
._6_c00153{margin-left:-5.880000px;}
._19_c00153{margin-left:-4.794000px;}
._5_c00153{margin-left:-3.675000px;}
._2_c00153{margin-left:-2.460000px;}
._c_c00153{margin-left:-1.098000px;}
._0_c00153{width:1.476000px;}
._9_c00153{width:2.835000px;}
._a_c00153{width:3.996000px;}
._d_c00153{width:5.157000px;}
._e_c00153{width:6.525000px;}
._13_c00153{width:7.824000px;}
._1b_c00153{width:8.904000px;}
._16_c00153{width:10.278000px;}
._1a_c00153{width:11.400000px;}
._15_c00153{width:12.915000px;}
._1c_c00153{width:14.868000px;}
._1d_c00153{width:23.004000px;}
._8_c00153{width:30.120000px;}
._18_c00153{width:31.986000px;}
._1e_c00153{width:36.549000px;}
._10_c00153{width:37.656000px;}
._14_c00153{width:42.084000px;}
._4_c00153{width:45.570000px;}
._1f_c00153{width:53.448000px;}
._7_c00153{width:54.600000px;}
._1_c00153{width:74.169000px;}
._12_c00153{width:119.934000px;}
._b_c00153{width:334.026000px;}
.fc2_c00153{color:transparent;}
.fc1_c00153{color:rgb(128,128,128);}
.fc0_c00153{color:rgb(0,0,0);}
.fs4_c00153{font-size:48.000000px;}
.fs3_c00153{font-size:60.000000px;}
.fs2_c00153{font-size:63.000000px;}
.fs1_c00153{font-size:105.000000px;}
.fs0_c00153{font-size:123.000000px;}
.y0_c00153{bottom:0.000000px;}
.y27_c00153{bottom:3.105000px;}
.y26_c00153{bottom:7.228355px;}
.y25_c00153{bottom:39.735000px;}
.y24_c00153{bottom:57.585000px;}
.y23_c00153{bottom:76.035000px;}
.y22_c00153{bottom:94.185000px;}
.y21_c00153{bottom:112.335000px;}
.y20_c00153{bottom:130.485000px;}
.y1f_c00153{bottom:148.485000px;}
.y1e_c00153{bottom:166.935000px;}
.y1d_c00153{bottom:184.935000px;}
.y1c_c00153{bottom:203.085000px;}
.y1b_c00153{bottom:220.635000px;}
.y1a_c00153{bottom:238.635000px;}
.y19_c00153{bottom:257.085000px;}
.y18_c00153{bottom:274.935000px;}
.y17_c00153{bottom:293.235000px;}
.y16_c00153{bottom:311.385000px;}
.y15_c00153{bottom:329.535000px;}
.y14_c00153{bottom:347.535000px;}
.y13_c00153{bottom:365.535000px;}
.y12_c00153{bottom:383.685000px;}
.y11_c00153{bottom:402.285000px;}
.y10_c00153{bottom:420.135000px;}
.yf_c00153{bottom:438.435000px;}
.ye_c00153{bottom:456.585000px;}
.yd_c00153{bottom:474.885000px;}
.yc_c00153{bottom:492.735000px;}
.yb_c00153{bottom:510.585000px;}
.ya_c00153{bottom:528.885000px;}
.y9_c00153{bottom:547.035000px;}
.y8_c00153{bottom:565.185000px;}
.y7_c00153{bottom:582.885000px;}
.y6_c00153{bottom:616.935000px;}
.y5_c00153{bottom:635.085000px;}
.y4_c00153{bottom:652.335000px;}
.y3_c00153{bottom:692.535000px;}
.y2_c00153{bottom:723.285000px;}
.y1_c00153{bottom:753.885000px;}
.h8_c00153{height:13.200074px;}
.h9_c00153{height:43.804688px;}
.h5_c00153{height:62.880000px;}
.h6_c00153{height:64.620000px;}
.h7_c00153{height:66.024000px;}
.h4_c00153{height:68.292000px;}
.h3_c00153{height:110.040000px;}
.h2_c00153{height:128.904000px;}
.h1_c00153{height:841.500000px;}
.h0_c00153{height:841.575000px;}
.w2_c00153{width:104.875500px;}
.w0_c00153{width:565.950000px;}
.w1_c00153{width:566.250000px;}
.x0_c00153{left:0.000000px;}
.xe_c00153{left:87.000000px;}
.xd_c00153{left:92.850000px;}
.xc_c00153{left:94.050000px;}
.xb_c00153{left:95.400000px;}
.xa_c00153{left:96.450000px;}
.x9_c00153{left:98.100000px;}
.x5_c00153{left:102.900000px;}
.x4_c00153{left:105.300000px;}
.x1_c00153{left:136.350000px;}
.x2_c00153{left:197.850000px;}
.x6_c00153{left:215.550000px;}
.x8_c00153{left:219.300000px;}
.x7_c00153{left:221.100000px;}
.x10_c00153{left:234.789230px;}
.x3_c00153{left:244.800000px;}
.xf_c00153{left:467.700000px;}
@media print{
.v0_c00153{vertical-align:0.000000pt;}
.ls2_c00153{letter-spacing:0.000000pt;}
.ls1_c00153{letter-spacing:2.666667pt;}
.ls3_c00153{letter-spacing:5.333333pt;}
.ls0_c00153{letter-spacing:18.666667pt;}
.ws1_c00153{word-spacing:-27.146667pt;}
.ws0_c00153{word-spacing:-22.306667pt;}
.ws2_c00153{word-spacing:-18.666667pt;}
.ws3_c00153{word-spacing:-16.722667pt;}
.ws4_c00153{word-spacing:0.000000pt;}
._f_c00153{margin-left:-13.328000pt;}
._11_c00153{margin-left:-11.016000pt;}
._17_c00153{margin-left:-8.810667pt;}
._3_c00153{margin-left:-6.626667pt;}
._6_c00153{margin-left:-5.226667pt;}
._19_c00153{margin-left:-4.261333pt;}
._5_c00153{margin-left:-3.266667pt;}
._2_c00153{margin-left:-2.186667pt;}
._c_c00153{margin-left:-0.976000pt;}
._0_c00153{width:1.312000pt;}
._9_c00153{width:2.520000pt;}
._a_c00153{width:3.552000pt;}
._d_c00153{width:4.584000pt;}
._e_c00153{width:5.800000pt;}
._13_c00153{width:6.954667pt;}
._1b_c00153{width:7.914667pt;}
._16_c00153{width:9.136000pt;}
._1a_c00153{width:10.133333pt;}
._15_c00153{width:11.480000pt;}
._1c_c00153{width:13.216000pt;}
._1d_c00153{width:20.448000pt;}
._8_c00153{width:26.773333pt;}
._18_c00153{width:28.432000pt;}
._1e_c00153{width:32.488000pt;}
._10_c00153{width:33.472000pt;}
._14_c00153{width:37.408000pt;}
._4_c00153{width:40.506667pt;}
._1f_c00153{width:47.509333pt;}
._7_c00153{width:48.533333pt;}
._1_c00153{width:65.928000pt;}
._12_c00153{width:106.608000pt;}
._b_c00153{width:296.912000pt;}
.fs4_c00153{font-size:42.666667pt;}
.fs3_c00153{font-size:53.333333pt;}
.fs2_c00153{font-size:56.000000pt;}
.fs1_c00153{font-size:93.333333pt;}
.fs0_c00153{font-size:109.333333pt;}
.y0_c00153{bottom:0.000000pt;}
.y27_c00153{bottom:2.760000pt;}
.y26_c00153{bottom:6.425204pt;}
.y25_c00153{bottom:35.320000pt;}
.y24_c00153{bottom:51.186667pt;}
.y23_c00153{bottom:67.586667pt;}
.y22_c00153{bottom:83.720000pt;}
.y21_c00153{bottom:99.853333pt;}
.y20_c00153{bottom:115.986667pt;}
.y1f_c00153{bottom:131.986667pt;}
.y1e_c00153{bottom:148.386667pt;}
.y1d_c00153{bottom:164.386667pt;}
.y1c_c00153{bottom:180.520000pt;}
.y1b_c00153{bottom:196.120000pt;}
.y1a_c00153{bottom:212.120000pt;}
.y19_c00153{bottom:228.520000pt;}
.y18_c00153{bottom:244.386667pt;}
.y17_c00153{bottom:260.653333pt;}
.y16_c00153{bottom:276.786667pt;}
.y15_c00153{bottom:292.920000pt;}
.y14_c00153{bottom:308.920000pt;}
.y13_c00153{bottom:324.920000pt;}
.y12_c00153{bottom:341.053333pt;}
.y11_c00153{bottom:357.586667pt;}
.y10_c00153{bottom:373.453333pt;}
.yf_c00153{bottom:389.720000pt;}
.ye_c00153{bottom:405.853333pt;}
.yd_c00153{bottom:422.120000pt;}
.yc_c00153{bottom:437.986667pt;}
.yb_c00153{bottom:453.853333pt;}
.ya_c00153{bottom:470.120000pt;}
.y9_c00153{bottom:486.253333pt;}
.y8_c00153{bottom:502.386667pt;}
.y7_c00153{bottom:518.120000pt;}
.y6_c00153{bottom:548.386667pt;}
.y5_c00153{bottom:564.520000pt;}
.y4_c00153{bottom:579.853333pt;}
.y3_c00153{bottom:615.586667pt;}
.y2_c00153{bottom:642.920000pt;}
.y1_c00153{bottom:670.120000pt;}
.h8_c00153{height:11.733399pt;}
.h9_c00153{height:38.937500pt;}
.h5_c00153{height:55.893333pt;}
.h6_c00153{height:57.440000pt;}
.h7_c00153{height:58.688000pt;}
.h4_c00153{height:60.704000pt;}
.h3_c00153{height:97.813333pt;}
.h2_c00153{height:114.581333pt;}
.h1_c00153{height:748.000000pt;}
.h0_c00153{height:748.066667pt;}
.w2_c00153{width:93.222667pt;}
.w0_c00153{width:503.066667pt;}
.w1_c00153{width:503.333333pt;}
.x0_c00153{left:0.000000pt;}
.xe_c00153{left:77.333333pt;}
.xd_c00153{left:82.533333pt;}
.xc_c00153{left:83.600000pt;}
.xb_c00153{left:84.800000pt;}
.xa_c00153{left:85.733333pt;}
.x9_c00153{left:87.200000pt;}
.x5_c00153{left:91.466667pt;}
.x4_c00153{left:93.600000pt;}
.x1_c00153{left:121.200000pt;}
.x2_c00153{left:175.866667pt;}
.x6_c00153{left:191.600000pt;}
.x8_c00153{left:194.933333pt;}
.x7_c00153{left:196.533333pt;}
.x10_c00153{left:208.701538pt;}
.x3_c00153{left:217.600000pt;}
.xf_c00153{left:415.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_dbdc88ff4d9b953fbee7b391.woff2')format("woff");}.ff1_c00154{font-family:ff1_c00154;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00154;src:url('chunks/assets/font_a39b3125d7678cd1bee0f604.woff2')format("woff");}.ff2_c00154{font-family:ff2_c00154;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00154;src:url('chunks/assets/font_c7dddf23d815cf0af7a3fc4c.woff2')format("woff");}.ff3_c00154{font-family:ff3_c00154;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00154;src:url('chunks/assets/font_705eaacb77a1fd7d505ecf5d.woff2')format("woff");}.ff4_c00154{font-family:ff4_c00154;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00154;src:url('chunks/assets/font_7c7b114d6d8510036cb24ad0.woff2')format("woff");}.ff5_c00154{font-family:ff5_c00154;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00154;src:url('chunks/assets/font_d4d8a89e001f6cb045ba0362.woff2')format("woff");}.ff6_c00154{font-family:ff6_c00154;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00154;src:url('chunks/assets/font_dc4d4f93c6d22a2e4a20d245.woff2')format("woff");}.ff7_c00154{font-family:ff7_c00154;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00154;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff8_c00154{font-family:ff8_c00154;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00154{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00154{vertical-align:0.000000px;}
.v1_c00154{vertical-align:18.000000px;}
.ls5_c00154{letter-spacing:0.000000px;}
.ls1_c00154{letter-spacing:0.630000px;}
.ls0_c00154{letter-spacing:3.000000px;}
.ls6_c00154{letter-spacing:6.000000px;}
.ls4_c00154{letter-spacing:6.540000px;}
.ls3_c00154{letter-spacing:17.880000px;}
.ls2_c00154{letter-spacing:54.540000px;}
.sc__c00154{text-shadow:none;}
.sc0_c00154{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00154{-webkit-text-stroke:0px transparent;}
.sc0_c00154{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00154{word-spacing:-50.652000px;}
.ws1_c00154{word-spacing:-25.008000px;}
.ws4_c00154{word-spacing:-23.340000px;}
.ws6_c00154{word-spacing:-18.060000px;}
.ws0_c00154{word-spacing:-17.340000px;}
.ws5_c00154{word-spacing:-14.160000px;}
.ws3_c00154{word-spacing:-1.140000px;}
.ws7_c00154{word-spacing:-0.840000px;}
.ws8_c00154{word-spacing:0.000000px;}
._1a_c00154{margin-left:-23.880000px;}
._1b_c00154{margin-left:-18.000000px;}
._14_c00154{margin-left:-13.680000px;}
._b_c00154{margin-left:-9.840000px;}
._19_c00154{margin-left:-8.580000px;}
._f_c00154{margin-left:-7.260000px;}
._3_c00154{margin-left:-6.120000px;}
._5_c00154{margin-left:-4.800000px;}
._4_c00154{margin-left:-3.660000px;}
._2_c00154{margin-left:-2.160000px;}
._1_c00154{margin-left:-1.140000px;}
._7_c00154{width:1.980000px;}
._0_c00154{width:3.600000px;}
._6_c00154{width:5.160000px;}
._12_c00154{width:6.246000px;}
._d_c00154{width:7.800000px;}
._10_c00154{width:9.060000px;}
._9_c00154{width:10.620000px;}
._e_c00154{width:12.240000px;}
._c_c00154{width:13.380000px;}
._a_c00154{width:15.000000px;}
._8_c00154{width:16.080000px;}
._16_c00154{width:19.620000px;}
._13_c00154{width:20.640000px;}
._1c_c00154{width:22.200000px;}
._15_c00154{width:24.120000px;}
._11_c00154{width:25.860000px;}
._18_c00154{width:28.800000px;}
._17_c00154{width:32.700000px;}
.fc2_c00154{color:transparent;}
.fc1_c00154{color:rgb(128,128,128);}
.fc0_c00154{color:rgb(0,0,0);}
.fs3_c00154{font-size:48.000000px;}
.fs1_c00154{font-size:54.000000px;}
.fs0_c00154{font-size:60.000000px;}
.fs2_c00154{font-size:63.000000px;}
.y0_c00154{bottom:0.000000px;}
.y47_c00154{bottom:3.105000px;}
.y46_c00154{bottom:7.228363px;}
.y45_c00154{bottom:31.350000px;}
.y44_c00154{bottom:50.250000px;}
.y27_c00154{bottom:53.250000px;}
.y43_c00154{bottom:67.950000px;}
.y26_c00154{bottom:71.850000px;}
.y42_c00154{bottom:87.450000px;}
.y25_c00154{bottom:90.000000px;}
.y41_c00154{bottom:105.900000px;}
.y24_c00154{bottom:106.650000px;}
.y40_c00154{bottom:123.750000px;}
.y23_c00154{bottom:126.450000px;}
.y3f_c00154{bottom:141.150000px;}
.y22_c00154{bottom:144.150000px;}
.y3e_c00154{bottom:160.350000px;}
.y21_c00154{bottom:162.600000px;}
.y3d_c00154{bottom:178.500000px;}
.y20_c00154{bottom:180.600000px;}
.y3c_c00154{bottom:196.050000px;}
.y1f_c00154{bottom:198.150000px;}
.y3b_c00154{bottom:215.400000px;}
.y1e_c00154{bottom:217.050000px;}
.y3a_c00154{bottom:232.650000px;}
.y1d_c00154{bottom:235.200000px;}
.y39_c00154{bottom:250.800000px;}
.y1c_c00154{bottom:252.150000px;}
.y38_c00154{bottom:268.950000px;}
.y1b_c00154{bottom:271.650000px;}
.y37_c00154{bottom:286.200000px;}
.y1a_c00154{bottom:289.500000px;}
.y36_c00154{bottom:304.800000px;}
.y19_c00154{bottom:307.350000px;}
.y35_c00154{bottom:321.900000px;}
.y18_c00154{bottom:325.950000px;}
.y34_c00154{bottom:341.850000px;}
.y17_c00154{bottom:343.500000px;}
.y33_c00154{bottom:359.700000px;}
.y16_c00154{bottom:360.450000px;}
.y32_c00154{bottom:378.000000px;}
.y15_c00154{bottom:380.250000px;}
.y31_c00154{bottom:395.550000px;}
.y14_c00154{bottom:397.950000px;}
.y30_c00154{bottom:413.700000px;}
.y13_c00154{bottom:416.400000px;}
.y2f_c00154{bottom:431.700000px;}
.y12_c00154{bottom:434.400000px;}
.y2e_c00154{bottom:451.200000px;}
.y11_c00154{bottom:452.550000px;}
.y2d_c00154{bottom:467.400000px;}
.y10_c00154{bottom:470.400000px;}
.y2c_c00154{bottom:487.350000px;}
.yf_c00154{bottom:488.250000px;}
.y2b_c00154{bottom:504.600000px;}
.ye_c00154{bottom:505.800000px;}
.y2a_c00154{bottom:522.750000px;}
.yd_c00154{bottom:523.800000px;}
.y29_c00154{bottom:541.050000px;}
.yc_c00154{bottom:541.950000px;}
.yb_c00154{bottom:555.750000px;}
.y28_c00154{bottom:558.900000px;}
.ya_c00154{bottom:595.050000px;}
.y9_c00154{bottom:613.800000px;}
.y8_c00154{bottom:649.050000px;}
.y7_c00154{bottom:667.950000px;}
.y6_c00154{bottom:686.250000px;}
.y5_c00154{bottom:704.400000px;}
.y4_c00154{bottom:722.550000px;}
.y3_c00154{bottom:740.550000px;}
.y2_c00154{bottom:759.000000px;}
.y1_c00154{bottom:777.000000px;}
.h7_c00154{height:13.200074px;}
.h8_c00154{height:43.804688px;}
.h2_c00154{height:62.880000px;}
.h6_c00154{height:63.480000px;}
.h5_c00154{height:64.020000px;}
.h3_c00154{height:66.024000px;}
.h4_c00154{height:80.880000px;}
.h1_c00154{height:828.750000px;}
.h0_c00154{height:828.900000px;}
.w1_c00154{width:104.875500px;}
.w0_c00154{width:584.250000px;}
.x0_c00154{left:0.000000px;}
.x2_c00154{left:60.450000px;}
.x1_c00154{left:62.700000px;}
.x3_c00154{left:63.750000px;}
.x6_c00154{left:65.400000px;}
.x7_c00154{left:66.750000px;}
.x8_c00154{left:68.550000px;}
.x4_c00154{left:78.600000px;}
.x5_c00154{left:86.700000px;}
.xd_c00154{left:243.939240px;}
.x9_c00154{left:280.050000px;}
.xb_c00154{left:281.400000px;}
.xa_c00154{left:315.600000px;}
.xc_c00154{left:461.700000px;}
@media print{
.v0_c00154{vertical-align:0.000000pt;}
.v1_c00154{vertical-align:16.000000pt;}
.ls5_c00154{letter-spacing:0.000000pt;}
.ls1_c00154{letter-spacing:0.560000pt;}
.ls0_c00154{letter-spacing:2.666667pt;}
.ls6_c00154{letter-spacing:5.333333pt;}
.ls4_c00154{letter-spacing:5.813333pt;}
.ls3_c00154{letter-spacing:15.893333pt;}
.ls2_c00154{letter-spacing:48.480000pt;}
.ws2_c00154{word-spacing:-45.024000pt;}
.ws1_c00154{word-spacing:-22.229333pt;}
.ws4_c00154{word-spacing:-20.746667pt;}
.ws6_c00154{word-spacing:-16.053333pt;}
.ws0_c00154{word-spacing:-15.413333pt;}
.ws5_c00154{word-spacing:-12.586667pt;}
.ws3_c00154{word-spacing:-1.013333pt;}
.ws7_c00154{word-spacing:-0.746667pt;}
.ws8_c00154{word-spacing:0.000000pt;}
._1a_c00154{margin-left:-21.226667pt;}
._1b_c00154{margin-left:-16.000000pt;}
._14_c00154{margin-left:-12.160000pt;}
._b_c00154{margin-left:-8.746667pt;}
._19_c00154{margin-left:-7.626667pt;}
._f_c00154{margin-left:-6.453333pt;}
._3_c00154{margin-left:-5.440000pt;}
._5_c00154{margin-left:-4.266667pt;}
._4_c00154{margin-left:-3.253333pt;}
._2_c00154{margin-left:-1.920000pt;}
._1_c00154{margin-left:-1.013333pt;}
._7_c00154{width:1.760000pt;}
._0_c00154{width:3.200000pt;}
._6_c00154{width:4.586667pt;}
._12_c00154{width:5.552000pt;}
._d_c00154{width:6.933333pt;}
._10_c00154{width:8.053333pt;}
._9_c00154{width:9.440000pt;}
._e_c00154{width:10.880000pt;}
._c_c00154{width:11.893333pt;}
._a_c00154{width:13.333333pt;}
._8_c00154{width:14.293333pt;}
._16_c00154{width:17.440000pt;}
._13_c00154{width:18.346667pt;}
._1c_c00154{width:19.733333pt;}
._15_c00154{width:21.440000pt;}
._11_c00154{width:22.986667pt;}
._18_c00154{width:25.600000pt;}
._17_c00154{width:29.066667pt;}
.fs3_c00154{font-size:42.666667pt;}
.fs1_c00154{font-size:48.000000pt;}
.fs0_c00154{font-size:53.333333pt;}
.fs2_c00154{font-size:56.000000pt;}
.y0_c00154{bottom:0.000000pt;}
.y47_c00154{bottom:2.760000pt;}
.y46_c00154{bottom:6.425212pt;}
.y45_c00154{bottom:27.866667pt;}
.y44_c00154{bottom:44.666667pt;}
.y27_c00154{bottom:47.333333pt;}
.y43_c00154{bottom:60.400000pt;}
.y26_c00154{bottom:63.866667pt;}
.y42_c00154{bottom:77.733333pt;}
.y25_c00154{bottom:80.000000pt;}
.y41_c00154{bottom:94.133333pt;}
.y24_c00154{bottom:94.800000pt;}
.y40_c00154{bottom:110.000000pt;}
.y23_c00154{bottom:112.400000pt;}
.y3f_c00154{bottom:125.466667pt;}
.y22_c00154{bottom:128.133333pt;}
.y3e_c00154{bottom:142.533333pt;}
.y21_c00154{bottom:144.533333pt;}
.y3d_c00154{bottom:158.666667pt;}
.y20_c00154{bottom:160.533333pt;}
.y3c_c00154{bottom:174.266667pt;}
.y1f_c00154{bottom:176.133333pt;}
.y3b_c00154{bottom:191.466667pt;}
.y1e_c00154{bottom:192.933333pt;}
.y3a_c00154{bottom:206.800000pt;}
.y1d_c00154{bottom:209.066667pt;}
.y39_c00154{bottom:222.933333pt;}
.y1c_c00154{bottom:224.133333pt;}
.y38_c00154{bottom:239.066667pt;}
.y1b_c00154{bottom:241.466667pt;}
.y37_c00154{bottom:254.400000pt;}
.y1a_c00154{bottom:257.333333pt;}
.y36_c00154{bottom:270.933333pt;}
.y19_c00154{bottom:273.200000pt;}
.y35_c00154{bottom:286.133333pt;}
.y18_c00154{bottom:289.733333pt;}
.y34_c00154{bottom:303.866667pt;}
.y17_c00154{bottom:305.333333pt;}
.y33_c00154{bottom:319.733333pt;}
.y16_c00154{bottom:320.400000pt;}
.y32_c00154{bottom:336.000000pt;}
.y15_c00154{bottom:338.000000pt;}
.y31_c00154{bottom:351.600000pt;}
.y14_c00154{bottom:353.733333pt;}
.y30_c00154{bottom:367.733333pt;}
.y13_c00154{bottom:370.133333pt;}
.y2f_c00154{bottom:383.733333pt;}
.y12_c00154{bottom:386.133333pt;}
.y2e_c00154{bottom:401.066667pt;}
.y11_c00154{bottom:402.266667pt;}
.y2d_c00154{bottom:415.466667pt;}
.y10_c00154{bottom:418.133333pt;}
.y2c_c00154{bottom:433.200000pt;}
.yf_c00154{bottom:434.000000pt;}
.y2b_c00154{bottom:448.533333pt;}
.ye_c00154{bottom:449.600000pt;}
.y2a_c00154{bottom:464.666667pt;}
.yd_c00154{bottom:465.600000pt;}
.y29_c00154{bottom:480.933333pt;}
.yc_c00154{bottom:481.733333pt;}
.yb_c00154{bottom:494.000000pt;}
.y28_c00154{bottom:496.800000pt;}
.ya_c00154{bottom:528.933333pt;}
.y9_c00154{bottom:545.600000pt;}
.y8_c00154{bottom:576.933333pt;}
.y7_c00154{bottom:593.733333pt;}
.y6_c00154{bottom:610.000000pt;}
.y5_c00154{bottom:626.133333pt;}
.y4_c00154{bottom:642.266667pt;}
.y3_c00154{bottom:658.266667pt;}
.y2_c00154{bottom:674.666667pt;}
.y1_c00154{bottom:690.666667pt;}
.h7_c00154{height:11.733399pt;}
.h8_c00154{height:38.937500pt;}
.h2_c00154{height:55.893333pt;}
.h6_c00154{height:56.426667pt;}
.h5_c00154{height:56.906667pt;}
.h3_c00154{height:58.688000pt;}
.h4_c00154{height:71.893333pt;}
.h1_c00154{height:736.666667pt;}
.h0_c00154{height:736.800000pt;}
.w1_c00154{width:93.222667pt;}
.w0_c00154{width:519.333333pt;}
.x0_c00154{left:0.000000pt;}
.x2_c00154{left:53.733333pt;}
.x1_c00154{left:55.733333pt;}
.x3_c00154{left:56.666667pt;}
.x6_c00154{left:58.133333pt;}
.x7_c00154{left:59.333333pt;}
.x8_c00154{left:60.933333pt;}
.x4_c00154{left:69.866667pt;}
.x5_c00154{left:77.066667pt;}
.xd_c00154{left:216.834880pt;}
.x9_c00154{left:248.933333pt;}
.xb_c00154{left:250.133333pt;}
.xa_c00154{left:280.533333pt;}
.xc_c00154{left:410.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3eb2938a9e1d3923d0849f98.woff2')format("woff");}.ff1_c00155{font-family:ff1_c00155;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00155;src:url('chunks/assets/font_dcde323e9819f031fc446552.woff2')format("woff");}.ff2_c00155{font-family:ff2_c00155;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00155;src:url('chunks/assets/font_38f3d79be42001565a50380f.woff2')format("woff");}.ff3_c00155{font-family:ff3_c00155;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00155;src:url('chunks/assets/font_fa65db300ed2602b2d9658c7.woff2')format("woff");}.ff4_c00155{font-family:ff4_c00155;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00155;src:url('chunks/assets/font_859cf6bf9a88f8618e812b0b.woff2')format("woff");}.ff5_c00155{font-family:ff5_c00155;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00155;src:url('chunks/assets/font_b990c830494b093f0ce135f8.woff2')format("woff");}.ff6_c00155{font-family:ff6_c00155;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00155;src:url('chunks/assets/font_74f04ba7d3a4efa77a6db5d9.woff2')format("woff");}.ff7_c00155{font-family:ff7_c00155;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00155;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff8_c00155{font-family:ff8_c00155;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00155{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00155{vertical-align:0.000000px;}
.ls6_c00155{letter-spacing:0.000000px;}
.ls3_c00155{letter-spacing:1.260000px;}
.ls2_c00155{letter-spacing:3.000000px;}
.ls4_c00155{letter-spacing:4.680000px;}
.ls0_c00155{letter-spacing:6.168000px;}
.ls7_c00155{letter-spacing:12.000000px;}
.ls5_c00155{letter-spacing:15.000000px;}
.ls1_c00155{letter-spacing:119.760000px;}
.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:-41.019000px;}
.ws3_c00155{word-spacing:-28.860000px;}
.ws1_c00155{word-spacing:-18.060000px;}
.ws5_c00155{word-spacing:-15.420000px;}
.ws2_c00155{word-spacing:-14.160000px;}
.ws4_c00155{word-spacing:-5.784000px;}
.ws6_c00155{word-spacing:0.000000px;}
._27_c00155{margin-left:-19.779000px;}
._25_c00155{margin-left:-18.636000px;}
._23_c00155{margin-left:-17.400000px;}
._19_c00155{margin-left:-14.496000px;}
._1e_c00155{margin-left:-13.170000px;}
._22_c00155{margin-left:-11.964000px;}
._1c_c00155{margin-left:-10.542000px;}
._15_c00155{margin-left:-8.532000px;}
._14_c00155{margin-left:-6.996000px;}
._17_c00155{margin-left:-5.778000px;}
._f_c00155{margin-left:-4.500000px;}
._e_c00155{margin-left:-2.760000px;}
._11_c00155{margin-left:-1.464000px;}
._8_c00155{width:1.782000px;}
._7_c00155{width:3.654000px;}
._4_c00155{width:5.040000px;}
._5_c00155{width:6.804000px;}
._6_c00155{width:7.812000px;}
._9_c00155{width:8.832000px;}
._a_c00155{width:10.146000px;}
._2_c00155{width:11.277000px;}
._0_c00155{width:12.285000px;}
._12_c00155{width:13.722000px;}
._1_c00155{width:15.687000px;}
._29_c00155{width:17.628000px;}
._10_c00155{width:19.782000px;}
._13_c00155{width:20.916000px;}
._34_c00155{width:22.047000px;}
._c_c00155{width:24.000000px;}
._2d_c00155{width:25.770000px;}
._d_c00155{width:27.174000px;}
._1f_c00155{width:29.778000px;}
._16_c00155{width:34.410000px;}
._2e_c00155{width:35.922000px;}
._28_c00155{width:37.608000px;}
._30_c00155{width:42.570000px;}
._35_c00155{width:43.644000px;}
._18_c00155{width:45.216000px;}
._21_c00155{width:47.874000px;}
._2f_c00155{width:48.900000px;}
._2c_c00155{width:67.542000px;}
._2a_c00155{width:68.766000px;}
._1b_c00155{width:77.808000px;}
._b_c00155{width:89.484000px;}
._26_c00155{width:90.669000px;}
._24_c00155{width:93.816000px;}
._32_c00155{width:125.202000px;}
._2b_c00155{width:146.106000px;}
._1a_c00155{width:184.458000px;}
._31_c00155{width:197.796000px;}
._1d_c00155{width:245.616000px;}
._20_c00155{width:257.502000px;}
._33_c00155{width:266.778000px;}
._3_c00155{width:317.190000px;}
._36_c00155{width:327.720000px;}
.fc2_c00155{color:transparent;}
.fc1_c00155{color:rgb(128,128,128);}
.fc0_c00155{color:rgb(0,0,0);}
.fs3_c00155{font-size:24.000000px;}
.fs5_c00155{font-size:48.000000px;}
.fs2_c00155{font-size:57.000000px;}
.fs1_c00155{font-size:60.000000px;}
.fs0_c00155{font-size:63.000000px;}
.fs4_c00155{font-size:66.000000px;}
.y0_c00155{bottom:0.000000px;}
.y4d_c00155{bottom:3.105000px;}
.y4c_c00155{bottom:7.228355px;}
.y4b_c00155{bottom:37.485000px;}
.y4a_c00155{bottom:56.385000px;}
.y49_c00155{bottom:75.585000px;}
.y48_c00155{bottom:93.735000px;}
.y47_c00155{bottom:112.335000px;}
.y46_c00155{bottom:128.835000px;}
.y45_c00155{bottom:147.435000px;}
.y2f_c00155{bottom:148.785000px;}
.y44_c00155{bottom:165.585000px;}
.y2e_c00155{bottom:167.085000px;}
.y43_c00155{bottom:183.285000px;}
.y2d_c00155{bottom:185.235000px;}
.y42_c00155{bottom:202.185000px;}
.y2c_c00155{bottom:203.085000px;}
.y41_c00155{bottom:221.385000px;}
.y2b_c00155{bottom:221.685000px;}
.y2a_c00155{bottom:239.535000px;}
.y29_c00155{bottom:257.835000px;}
.y40_c00155{bottom:275.385000px;}
.y28_c00155{bottom:276.435000px;}
.y3f_c00155{bottom:292.635000px;}
.y27_c00155{bottom:294.285000px;}
.y4_c00155{bottom:310.185000px;}
.y3e_c00155{bottom:311.085000px;}
.y26_c00155{bottom:312.135000px;}
.y3d_c00155{bottom:328.935000px;}
.y3_c00155{bottom:329.085000px;}
.y25_c00155{bottom:330.435000px;}
.y3c_c00155{bottom:347.235000px;}
.y24_c00155{bottom:349.635000px;}
.y3b_c00155{bottom:365.385000px;}
.y23_c00155{bottom:367.485000px;}
.y3a_c00155{bottom:383.385000px;}
.y22_c00155{bottom:385.335000px;}
.y39_c00155{bottom:401.835000px;}
.y21_c00155{bottom:403.935000px;}
.y38_c00155{bottom:420.135000px;}
.y37_c00155{bottom:438.285000px;}
.y20_c00155{bottom:439.785000px;}
.y36_c00155{bottom:456.285000px;}
.y1f_c00155{bottom:458.235000px;}
.y35_c00155{bottom:474.135000px;}
.y1e_c00155{bottom:476.535000px;}
.y34_c00155{bottom:492.285000px;}
.y1d_c00155{bottom:494.685000px;}
.y33_c00155{bottom:510.285000px;}
.y32_c00155{bottom:528.735000px;}
.y1c_c00155{bottom:528.885000px;}
.y31_c00155{bottom:546.735000px;}
.y30_c00155{bottom:564.885000px;}
.y1b_c00155{bottom:565.935000px;}
.y1a_c00155{bottom:571.635000px;}
.y19_c00155{bottom:582.735000px;}
.y18_c00155{bottom:601.335000px;}
.ye_c00155{bottom:602.385000px;}
.y17_c00155{bottom:618.585000px;}
.yd_c00155{bottom:620.685000px;}
.y16_c00155{bottom:636.735000px;}
.yc_c00155{bottom:638.235000px;}
.y15_c00155{bottom:655.335000px;}
.yb_c00155{bottom:656.985000px;}
.y14_c00155{bottom:673.935000px;}
.ya_c00155{bottom:674.985000px;}
.y13_c00155{bottom:689.835000px;}
.y9_c00155{bottom:693.435000px;}
.y12_c00155{bottom:709.335000px;}
.y8_c00155{bottom:711.735000px;}
.y11_c00155{bottom:727.335000px;}
.y7_c00155{bottom:729.585000px;}
.y10_c00155{bottom:746.235000px;}
.y6_c00155{bottom:748.485000px;}
.yf_c00155{bottom:764.085000px;}
.y5_c00155{bottom:765.735000px;}
.y2_c00155{bottom:782.535000px;}
.y1_c00155{bottom:802.935000px;}
.h7_c00155{height:13.200074px;}
.h8_c00155{height:43.804688px;}
.h4_c00155{height:55.914551px;}
.h3_c00155{height:62.880000px;}
.h5_c00155{height:65.040000px;}
.h2_c00155{height:66.024000px;}
.h6_c00155{height:70.422000px;}
.h1_c00155{height:841.500000px;}
.h0_c00155{height:841.575000px;}
.w2_c00155{width:104.875500px;}
.w0_c00155{width:565.950000px;}
.w1_c00155{width:566.250000px;}
.x0_c00155{left:0.000000px;}
.x3_c00155{left:32.400000px;}
.x4_c00155{left:35.850000px;}
.x19_c00155{left:55.050000px;}
.x1b_c00155{left:92.700000px;}
.x1a_c00155{left:94.500000px;}
.x12_c00155{left:95.550000px;}
.x11_c00155{left:97.200000px;}
.xa_c00155{left:99.150000px;}
.x2_c00155{left:100.350000px;}
.x5_c00155{left:101.550000px;}
.x1_c00155{left:104.250000px;}
.xd_c00155{left:110.700000px;}
.xb_c00155{left:116.400000px;}
.xe_c00155{left:131.550000px;}
.x10_c00155{left:143.400000px;}
.xf_c00155{left:159.000000px;}
.xc_c00155{left:175.500000px;}
.x1d_c00155{left:234.789230px;}
.x18_c00155{left:310.200000px;}
.x16_c00155{left:311.400000px;}
.x15_c00155{left:312.900000px;}
.x14_c00155{left:314.550000px;}
.x9_c00155{left:315.600000px;}
.x13_c00155{left:317.550000px;}
.x8_c00155{left:319.950000px;}
.x7_c00155{left:321.000000px;}
.x6_c00155{left:322.650000px;}
.x17_c00155{left:327.000000px;}
.x1c_c00155{left:490.050000px;}
@media print{
.v0_c00155{vertical-align:0.000000pt;}
.ls6_c00155{letter-spacing:0.000000pt;}
.ls3_c00155{letter-spacing:1.120000pt;}
.ls2_c00155{letter-spacing:2.666667pt;}
.ls4_c00155{letter-spacing:4.160000pt;}
.ls0_c00155{letter-spacing:5.482667pt;}
.ls7_c00155{letter-spacing:10.666667pt;}
.ls5_c00155{letter-spacing:13.333333pt;}
.ls1_c00155{letter-spacing:106.453333pt;}
.ws0_c00155{word-spacing:-36.461333pt;}
.ws3_c00155{word-spacing:-25.653333pt;}
.ws1_c00155{word-spacing:-16.053333pt;}
.ws5_c00155{word-spacing:-13.706667pt;}
.ws2_c00155{word-spacing:-12.586667pt;}
.ws4_c00155{word-spacing:-5.141333pt;}
.ws6_c00155{word-spacing:0.000000pt;}
._27_c00155{margin-left:-17.581333pt;}
._25_c00155{margin-left:-16.565333pt;}
._23_c00155{margin-left:-15.466667pt;}
._19_c00155{margin-left:-12.885333pt;}
._1e_c00155{margin-left:-11.706667pt;}
._22_c00155{margin-left:-10.634667pt;}
._1c_c00155{margin-left:-9.370667pt;}
._15_c00155{margin-left:-7.584000pt;}
._14_c00155{margin-left:-6.218667pt;}
._17_c00155{margin-left:-5.136000pt;}
._f_c00155{margin-left:-4.000000pt;}
._e_c00155{margin-left:-2.453333pt;}
._11_c00155{margin-left:-1.301333pt;}
._8_c00155{width:1.584000pt;}
._7_c00155{width:3.248000pt;}
._4_c00155{width:4.480000pt;}
._5_c00155{width:6.048000pt;}
._6_c00155{width:6.944000pt;}
._9_c00155{width:7.850667pt;}
._a_c00155{width:9.018667pt;}
._2_c00155{width:10.024000pt;}
._0_c00155{width:10.920000pt;}
._12_c00155{width:12.197333pt;}
._1_c00155{width:13.944000pt;}
._29_c00155{width:15.669333pt;}
._10_c00155{width:17.584000pt;}
._13_c00155{width:18.592000pt;}
._34_c00155{width:19.597333pt;}
._c_c00155{width:21.333333pt;}
._2d_c00155{width:22.906667pt;}
._d_c00155{width:24.154667pt;}
._1f_c00155{width:26.469333pt;}
._16_c00155{width:30.586667pt;}
._2e_c00155{width:31.930667pt;}
._28_c00155{width:33.429333pt;}
._30_c00155{width:37.840000pt;}
._35_c00155{width:38.794667pt;}
._18_c00155{width:40.192000pt;}
._21_c00155{width:42.554667pt;}
._2f_c00155{width:43.466667pt;}
._2c_c00155{width:60.037333pt;}
._2a_c00155{width:61.125333pt;}
._1b_c00155{width:69.162667pt;}
._b_c00155{width:79.541333pt;}
._26_c00155{width:80.594667pt;}
._24_c00155{width:83.392000pt;}
._32_c00155{width:111.290667pt;}
._2b_c00155{width:129.872000pt;}
._1a_c00155{width:163.962667pt;}
._31_c00155{width:175.818667pt;}
._1d_c00155{width:218.325333pt;}
._20_c00155{width:228.890667pt;}
._33_c00155{width:237.136000pt;}
._3_c00155{width:281.946667pt;}
._36_c00155{width:291.306667pt;}
.fs3_c00155{font-size:21.333333pt;}
.fs5_c00155{font-size:42.666667pt;}
.fs2_c00155{font-size:50.666667pt;}
.fs1_c00155{font-size:53.333333pt;}
.fs0_c00155{font-size:56.000000pt;}
.fs4_c00155{font-size:58.666667pt;}
.y0_c00155{bottom:0.000000pt;}
.y4d_c00155{bottom:2.760000pt;}
.y4c_c00155{bottom:6.425204pt;}
.y4b_c00155{bottom:33.320000pt;}
.y4a_c00155{bottom:50.120000pt;}
.y49_c00155{bottom:67.186667pt;}
.y48_c00155{bottom:83.320000pt;}
.y47_c00155{bottom:99.853333pt;}
.y46_c00155{bottom:114.520000pt;}
.y45_c00155{bottom:131.053333pt;}
.y2f_c00155{bottom:132.253333pt;}
.y44_c00155{bottom:147.186667pt;}
.y2e_c00155{bottom:148.520000pt;}
.y43_c00155{bottom:162.920000pt;}
.y2d_c00155{bottom:164.653333pt;}
.y42_c00155{bottom:179.720000pt;}
.y2c_c00155{bottom:180.520000pt;}
.y41_c00155{bottom:196.786667pt;}
.y2b_c00155{bottom:197.053333pt;}
.y2a_c00155{bottom:212.920000pt;}
.y29_c00155{bottom:229.186667pt;}
.y40_c00155{bottom:244.786667pt;}
.y28_c00155{bottom:245.720000pt;}
.y3f_c00155{bottom:260.120000pt;}
.y27_c00155{bottom:261.586667pt;}
.y4_c00155{bottom:275.720000pt;}
.y3e_c00155{bottom:276.520000pt;}
.y26_c00155{bottom:277.453333pt;}
.y3d_c00155{bottom:292.386667pt;}
.y3_c00155{bottom:292.520000pt;}
.y25_c00155{bottom:293.720000pt;}
.y3c_c00155{bottom:308.653333pt;}
.y24_c00155{bottom:310.786667pt;}
.y3b_c00155{bottom:324.786667pt;}
.y23_c00155{bottom:326.653333pt;}
.y3a_c00155{bottom:340.786667pt;}
.y22_c00155{bottom:342.520000pt;}
.y39_c00155{bottom:357.186667pt;}
.y21_c00155{bottom:359.053333pt;}
.y38_c00155{bottom:373.453333pt;}
.y37_c00155{bottom:389.586667pt;}
.y20_c00155{bottom:390.920000pt;}
.y36_c00155{bottom:405.586667pt;}
.y1f_c00155{bottom:407.320000pt;}
.y35_c00155{bottom:421.453333pt;}
.y1e_c00155{bottom:423.586667pt;}
.y34_c00155{bottom:437.586667pt;}
.y1d_c00155{bottom:439.720000pt;}
.y33_c00155{bottom:453.586667pt;}
.y32_c00155{bottom:469.986667pt;}
.y1c_c00155{bottom:470.120000pt;}
.y31_c00155{bottom:485.986667pt;}
.y30_c00155{bottom:502.120000pt;}
.y1b_c00155{bottom:503.053333pt;}
.y1a_c00155{bottom:508.120000pt;}
.y19_c00155{bottom:517.986667pt;}
.y18_c00155{bottom:534.520000pt;}
.ye_c00155{bottom:535.453333pt;}
.y17_c00155{bottom:549.853333pt;}
.yd_c00155{bottom:551.720000pt;}
.y16_c00155{bottom:565.986667pt;}
.yc_c00155{bottom:567.320000pt;}
.y15_c00155{bottom:582.520000pt;}
.yb_c00155{bottom:583.986667pt;}
.y14_c00155{bottom:599.053333pt;}
.ya_c00155{bottom:599.986667pt;}
.y13_c00155{bottom:613.186667pt;}
.y9_c00155{bottom:616.386667pt;}
.y12_c00155{bottom:630.520000pt;}
.y8_c00155{bottom:632.653333pt;}
.y11_c00155{bottom:646.520000pt;}
.y7_c00155{bottom:648.520000pt;}
.y10_c00155{bottom:663.320000pt;}
.y6_c00155{bottom:665.320000pt;}
.yf_c00155{bottom:679.186667pt;}
.y5_c00155{bottom:680.653333pt;}
.y2_c00155{bottom:695.586667pt;}
.y1_c00155{bottom:713.720000pt;}
.h7_c00155{height:11.733399pt;}
.h8_c00155{height:38.937500pt;}
.h4_c00155{height:49.701823pt;}
.h3_c00155{height:55.893333pt;}
.h5_c00155{height:57.813333pt;}
.h2_c00155{height:58.688000pt;}
.h6_c00155{height:62.597333pt;}
.h1_c00155{height:748.000000pt;}
.h0_c00155{height:748.066667pt;}
.w2_c00155{width:93.222667pt;}
.w0_c00155{width:503.066667pt;}
.w1_c00155{width:503.333333pt;}
.x0_c00155{left:0.000000pt;}
.x3_c00155{left:28.800000pt;}
.x4_c00155{left:31.866667pt;}
.x19_c00155{left:48.933333pt;}
.x1b_c00155{left:82.400000pt;}
.x1a_c00155{left:84.000000pt;}
.x12_c00155{left:84.933333pt;}
.x11_c00155{left:86.400000pt;}
.xa_c00155{left:88.133333pt;}
.x2_c00155{left:89.200000pt;}
.x5_c00155{left:90.266667pt;}
.x1_c00155{left:92.666667pt;}
.xd_c00155{left:98.400000pt;}
.xb_c00155{left:103.466667pt;}
.xe_c00155{left:116.933333pt;}
.x10_c00155{left:127.466667pt;}
.xf_c00155{left:141.333333pt;}
.xc_c00155{left:156.000000pt;}
.x1d_c00155{left:208.701538pt;}
.x18_c00155{left:275.733333pt;}
.x16_c00155{left:276.800000pt;}
.x15_c00155{left:278.133333pt;}
.x14_c00155{left:279.600000pt;}
.x9_c00155{left:280.533333pt;}
.x13_c00155{left:282.266667pt;}
.x8_c00155{left:284.400000pt;}
.x7_c00155{left:285.333333pt;}
.x6_c00155{left:286.800000pt;}
.x17_c00155{left:290.666667pt;}
.x1c_c00155{left:435.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_7b64e184bb8737fbb63f3cec.woff2')format("woff");}.ff1_c00156{font-family:ff1_c00156;line-height:1.437000;font-style:normal;font-weight:normal;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_cdb70e98d08ea62163894e47.woff2')format("woff");}.ff2_c00156{font-family:ff2_c00156;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00156;src:url('chunks/assets/font_896b2b9fcebdbece3d932a4a.woff2')format("woff");}.ff3_c00156{font-family:ff3_c00156;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00156;src:url('chunks/assets/font_b7287a4e599112b3769474ea.woff2')format("woff");}.ff4_c00156{font-family:ff4_c00156;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00156;src:url('chunks/assets/font_6527f428c3e3884dbbacf2b7.woff2')format("woff");}.ff5_c00156{font-family:ff5_c00156;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00156;src:url('chunks/assets/font_aa2550780ad904800c500145.woff2')format("woff");}.ff6_c00156{font-family:ff6_c00156;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00156;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff7_c00156{font-family:ff7_c00156;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00156{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00156{vertical-align:0.000000px;}
.ls3_c00156{letter-spacing:0.000000px;}
.ls1_c00156{letter-spacing:2.400000px;}
.ls2_c00156{letter-spacing:3.000000px;}
.ls0_c00156{letter-spacing:3.405000px;}
.ls4_c00156{letter-spacing:6.000000px;}
.sc__c00156{text-shadow:none;}
.sc0_c00156{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00156{-webkit-text-stroke:0px transparent;}
.sc0_c00156{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00156{word-spacing:-14.160000px;}
.ws1_c00156{word-spacing:0.000000px;}
._2f_c00156{margin-left:-17.400000px;}
._23_c00156{margin-left:-14.520000px;}
._2d_c00156{margin-left:-13.020000px;}
._22_c00156{margin-left:-12.000000px;}
._19_c00156{margin-left:-9.660000px;}
._24_c00156{margin-left:-7.860000px;}
._2a_c00156{margin-left:-6.180000px;}
._13_c00156{margin-left:-4.860000px;}
._7_c00156{margin-left:-3.720000px;}
._1_c00156{margin-left:-1.860000px;}
._5_c00156{width:1.440000px;}
._6_c00156{width:2.820000px;}
._2_c00156{width:4.140000px;}
._d_c00156{width:5.400000px;}
._0_c00156{width:6.840000px;}
._4_c00156{width:7.920000px;}
._f_c00156{width:9.480000px;}
._1b_c00156{width:10.740000px;}
._14_c00156{width:11.760000px;}
._1d_c00156{width:13.560000px;}
._15_c00156{width:14.880000px;}
._12_c00156{width:15.900000px;}
._27_c00156{width:17.100000px;}
._16_c00156{width:19.620000px;}
._1a_c00156{width:20.820000px;}
._10_c00156{width:22.500000px;}
._9_c00156{width:24.780000px;}
._b_c00156{width:26.040000px;}
._1e_c00156{width:28.440000px;}
._c_c00156{width:29.940000px;}
._20_c00156{width:31.080000px;}
._a_c00156{width:32.460000px;}
._26_c00156{width:33.960000px;}
._2b_c00156{width:35.160000px;}
._2e_c00156{width:38.760000px;}
._25_c00156{width:39.840000px;}
._17_c00156{width:45.720000px;}
._3_c00156{width:46.740000px;}
._11_c00156{width:48.180000px;}
._21_c00156{width:50.460000px;}
._1f_c00156{width:51.480000px;}
._28_c00156{width:54.060000px;}
._33_c00156{width:55.200000px;}
._36_c00156{width:56.700000px;}
._35_c00156{width:59.820000px;}
._37_c00156{width:61.560000px;}
._38_c00156{width:63.840000px;}
._e_c00156{width:90.960000px;}
._31_c00156{width:110.340000px;}
._29_c00156{width:126.420000px;}
._32_c00156{width:129.240000px;}
._30_c00156{width:139.680000px;}
._1c_c00156{width:171.600000px;}
._18_c00156{width:209.700000px;}
._39_c00156{width:212.640000px;}
._2c_c00156{width:232.260000px;}
._34_c00156{width:289.560000px;}
._8_c00156{width:439.140000px;}
.fc2_c00156{color:transparent;}
.fc1_c00156{color:rgb(128,128,128);}
.fc0_c00156{color:rgb(0,0,0);}
.fs2_c00156{font-size:45.000000px;}
.fs5_c00156{font-size:48.000000px;}
.fs3_c00156{font-size:54.000000px;}
.fs4_c00156{font-size:57.000000px;}
.fs0_c00156{font-size:60.000000px;}
.fs1_c00156{font-size:84.000000px;}
.y0_c00156{bottom:0.000000px;}
.y2a_c00156{bottom:3.105000px;}
.y29_c00156{bottom:7.228371px;}
.y28_c00156{bottom:41.565000px;}
.y27_c00156{bottom:60.465000px;}
.y26_c00156{bottom:78.765000px;}
.y25_c00156{bottom:96.915000px;}
.y24_c00156{bottom:114.465000px;}
.y23_c00156{bottom:132.765000px;}
.y22_c00156{bottom:150.315000px;}
.y21_c00156{bottom:169.065000px;}
.y20_c00156{bottom:187.665000px;}
.y1f_c00156{bottom:205.215000px;}
.y1e_c00156{bottom:224.115000px;}
.y1d_c00156{bottom:240.315000px;}
.y1c_c00156{bottom:313.965000px;}
.y1b_c00156{bottom:331.815000px;}
.y1a_c00156{bottom:350.415000px;}
.y19_c00156{bottom:368.865000px;}
.y18_c00156{bottom:387.465000px;}
.y17_c00156{bottom:403.965000px;}
.y16_c00156{bottom:422.265000px;}
.y15_c00156{bottom:441.465000px;}
.y14_c00156{bottom:459.015000px;}
.y13_c00156{bottom:477.315000px;}
.y12_c00156{bottom:495.765000px;}
.y11_c00156{bottom:513.315000px;}
.y10_c00156{bottom:531.315000px;}
.yf_c00156{bottom:549.915000px;}
.ye_c00156{bottom:567.465000px;}
.yd_c00156{bottom:586.365000px;}
.yc_c00156{bottom:603.765000px;}
.yb_c00156{bottom:622.665000px;}
.ya_c00156{bottom:639.915000px;}
.y9_c00156{bottom:658.215000px;}
.y8_c00156{bottom:676.665000px;}
.y7_c00156{bottom:694.215000px;}
.y6_c00156{bottom:712.515000px;}
.y5_c00156{bottom:730.665000px;}
.y4_c00156{bottom:748.965000px;}
.y3_c00156{bottom:767.265000px;}
.y2_c00156{bottom:786.015000px;}
.y1_c00156{bottom:805.965000px;}
.h6_c00156{height:13.200074px;}
.h7_c00156{height:43.804688px;}
.h5_c00156{height:59.736000px;}
.h3_c00156{height:62.880000px;}
.h4_c00156{height:64.020000px;}
.h2_c00156{height:88.032000px;}
.h1_c00156{height:836.250000px;}
.h0_c00156{height:836.475000px;}
.w2_c00156{width:104.875500px;}
.w1_c00156{width:589.500000px;}
.w0_c00156{width:589.650000px;}
.x0_c00156{left:0.000000px;}
.x5_c00156{left:32.100000px;}
.x9_c00156{left:64.050000px;}
.x4_c00156{left:66.150000px;}
.x8_c00156{left:67.800000px;}
.x2_c00156{left:69.900000px;}
.x3_c00156{left:70.950000px;}
.x6_c00156{left:73.500000px;}
.x7_c00156{left:95.850000px;}
.x1_c00156{left:196.350000px;}
.xb_c00156{left:246.639267px;}
.xa_c00156{left:382.950000px;}
@media print{
.v0_c00156{vertical-align:0.000000pt;}
.ls3_c00156{letter-spacing:0.000000pt;}
.ls1_c00156{letter-spacing:2.133333pt;}
.ls2_c00156{letter-spacing:2.666667pt;}
.ls0_c00156{letter-spacing:3.026667pt;}
.ls4_c00156{letter-spacing:5.333333pt;}
.ws0_c00156{word-spacing:-12.586667pt;}
.ws1_c00156{word-spacing:0.000000pt;}
._2f_c00156{margin-left:-15.466667pt;}
._23_c00156{margin-left:-12.906667pt;}
._2d_c00156{margin-left:-11.573333pt;}
._22_c00156{margin-left:-10.666667pt;}
._19_c00156{margin-left:-8.586667pt;}
._24_c00156{margin-left:-6.986667pt;}
._2a_c00156{margin-left:-5.493333pt;}
._13_c00156{margin-left:-4.320000pt;}
._7_c00156{margin-left:-3.306667pt;}
._1_c00156{margin-left:-1.653333pt;}
._5_c00156{width:1.280000pt;}
._6_c00156{width:2.506667pt;}
._2_c00156{width:3.680000pt;}
._d_c00156{width:4.800000pt;}
._0_c00156{width:6.080000pt;}
._4_c00156{width:7.040000pt;}
._f_c00156{width:8.426667pt;}
._1b_c00156{width:9.546667pt;}
._14_c00156{width:10.453333pt;}
._1d_c00156{width:12.053333pt;}
._15_c00156{width:13.226667pt;}
._12_c00156{width:14.133333pt;}
._27_c00156{width:15.200000pt;}
._16_c00156{width:17.440000pt;}
._1a_c00156{width:18.506667pt;}
._10_c00156{width:20.000000pt;}
._9_c00156{width:22.026667pt;}
._b_c00156{width:23.146667pt;}
._1e_c00156{width:25.280000pt;}
._c_c00156{width:26.613333pt;}
._20_c00156{width:27.626667pt;}
._a_c00156{width:28.853333pt;}
._26_c00156{width:30.186667pt;}
._2b_c00156{width:31.253333pt;}
._2e_c00156{width:34.453333pt;}
._25_c00156{width:35.413333pt;}
._17_c00156{width:40.640000pt;}
._3_c00156{width:41.546667pt;}
._11_c00156{width:42.826667pt;}
._21_c00156{width:44.853333pt;}
._1f_c00156{width:45.760000pt;}
._28_c00156{width:48.053333pt;}
._33_c00156{width:49.066667pt;}
._36_c00156{width:50.400000pt;}
._35_c00156{width:53.173333pt;}
._37_c00156{width:54.720000pt;}
._38_c00156{width:56.746667pt;}
._e_c00156{width:80.853333pt;}
._31_c00156{width:98.080000pt;}
._29_c00156{width:112.373333pt;}
._32_c00156{width:114.880000pt;}
._30_c00156{width:124.160000pt;}
._1c_c00156{width:152.533333pt;}
._18_c00156{width:186.400000pt;}
._39_c00156{width:189.013333pt;}
._2c_c00156{width:206.453333pt;}
._34_c00156{width:257.386667pt;}
._8_c00156{width:390.346667pt;}
.fs2_c00156{font-size:40.000000pt;}
.fs5_c00156{font-size:42.666667pt;}
.fs3_c00156{font-size:48.000000pt;}
.fs4_c00156{font-size:50.666667pt;}
.fs0_c00156{font-size:53.333333pt;}
.fs1_c00156{font-size:74.666667pt;}
.y0_c00156{bottom:0.000000pt;}
.y2a_c00156{bottom:2.760000pt;}
.y29_c00156{bottom:6.425219pt;}
.y28_c00156{bottom:36.946667pt;}
.y27_c00156{bottom:53.746667pt;}
.y26_c00156{bottom:70.013333pt;}
.y25_c00156{bottom:86.146667pt;}
.y24_c00156{bottom:101.746667pt;}
.y23_c00156{bottom:118.013333pt;}
.y22_c00156{bottom:133.613333pt;}
.y21_c00156{bottom:150.280000pt;}
.y20_c00156{bottom:166.813333pt;}
.y1f_c00156{bottom:182.413333pt;}
.y1e_c00156{bottom:199.213333pt;}
.y1d_c00156{bottom:213.613333pt;}
.y1c_c00156{bottom:279.080000pt;}
.y1b_c00156{bottom:294.946667pt;}
.y1a_c00156{bottom:311.480000pt;}
.y19_c00156{bottom:327.880000pt;}
.y18_c00156{bottom:344.413333pt;}
.y17_c00156{bottom:359.080000pt;}
.y16_c00156{bottom:375.346667pt;}
.y15_c00156{bottom:392.413333pt;}
.y14_c00156{bottom:408.013333pt;}
.y13_c00156{bottom:424.280000pt;}
.y12_c00156{bottom:440.680000pt;}
.y11_c00156{bottom:456.280000pt;}
.y10_c00156{bottom:472.280000pt;}
.yf_c00156{bottom:488.813333pt;}
.ye_c00156{bottom:504.413333pt;}
.yd_c00156{bottom:521.213333pt;}
.yc_c00156{bottom:536.680000pt;}
.yb_c00156{bottom:553.480000pt;}
.ya_c00156{bottom:568.813333pt;}
.y9_c00156{bottom:585.080000pt;}
.y8_c00156{bottom:601.480000pt;}
.y7_c00156{bottom:617.080000pt;}
.y6_c00156{bottom:633.346667pt;}
.y5_c00156{bottom:649.480000pt;}
.y4_c00156{bottom:665.746667pt;}
.y3_c00156{bottom:682.013333pt;}
.y2_c00156{bottom:698.680000pt;}
.y1_c00156{bottom:716.413333pt;}
.h6_c00156{height:11.733399pt;}
.h7_c00156{height:38.937500pt;}
.h5_c00156{height:53.098667pt;}
.h3_c00156{height:55.893333pt;}
.h4_c00156{height:56.906667pt;}
.h2_c00156{height:78.250667pt;}
.h1_c00156{height:743.333333pt;}
.h0_c00156{height:743.533333pt;}
.w2_c00156{width:93.222667pt;}
.w1_c00156{width:524.000000pt;}
.w0_c00156{width:524.133333pt;}
.x0_c00156{left:0.000000pt;}
.x5_c00156{left:28.533333pt;}
.x9_c00156{left:56.933333pt;}
.x4_c00156{left:58.800000pt;}
.x8_c00156{left:60.266667pt;}
.x2_c00156{left:62.133333pt;}
.x3_c00156{left:63.066667pt;}
.x6_c00156{left:65.333333pt;}
.x7_c00156{left:85.200000pt;}
.x1_c00156{left:174.533333pt;}
.xb_c00156{left:219.234904pt;}
.xa_c00156{left:340.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0870b3fd43c300c34aee7675.woff2')format("woff");}.ff1_c00157{font-family:ff1_c00157;line-height:1.437000;font-style:normal;font-weight:normal;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_13b6b5c37d18d5ff1a225afa.woff2')format("woff");}.ff2_c00157{font-family:ff2_c00157;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00157;src:url('chunks/assets/font_4f985843fe78d1f46ef007ae.woff2')format("woff");}.ff3_c00157{font-family:ff3_c00157;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00157;src:url('chunks/assets/font_eb11b13d7b47fa3e4416d48e.woff2')format("woff");}.ff4_c00157{font-family:ff4_c00157;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00157;src:url('chunks/assets/font_b9e7770ebd1d84ce42dc38cc.woff2')format("woff");}.ff5_c00157{font-family:ff5_c00157;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00157;src:url('chunks/assets/font_7331060ec183aeed1f4a9db3.woff2')format("woff");}.ff6_c00157{font-family:ff6_c00157;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00157;src:url('chunks/assets/font_a745aba5970701f63aa13ad5.woff2')format("woff");}.ff7_c00157{font-family:ff7_c00157;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00157;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff8_c00157{font-family:ff8_c00157;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00157{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00157{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.v0_c00157{vertical-align:0.000000px;}
.v1_c00157{vertical-align:96.600000px;}
.ls6_c00157{letter-spacing:0.000000px;}
.ls0_c00157{letter-spacing:0.405000px;}
.ls1_c00157{letter-spacing:3.000000px;}
.ls3_c00157{letter-spacing:5.805000px;}
.ls8_c00157{letter-spacing:6.000000px;}
.ls5_c00157{letter-spacing:8.520000px;}
.ls4_c00157{letter-spacing:8.805000px;}
.ls7_c00157{letter-spacing:12.000000px;}
.ls2_c00157{letter-spacing:19.614000px;}
.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;}
}
.ws4_c00157{word-spacing:-31.746000px;}
.ws0_c00157{word-spacing:-29.295000px;}
.ws5_c00157{word-spacing:-18.060000px;}
.ws1_c00157{word-spacing:-17.784000px;}
.ws7_c00157{word-spacing:-17.340000px;}
.ws3_c00157{word-spacing:-14.160000px;}
.ws8_c00157{word-spacing:0.000000px;}
.ws6_c00157{word-spacing:7.140000px;}
.ws2_c00157{word-spacing:54.000000px;}
._16_c00157{margin-left:-19.260000px;}
._2d_c00157{margin-left:-17.580000px;}
._13_c00157{margin-left:-14.595000px;}
._1e_c00157{margin-left:-12.888000px;}
._1b_c00157{margin-left:-10.980000px;}
._2f_c00157{margin-left:-9.612000px;}
._2b_c00157{margin-left:-8.424000px;}
._1d_c00157{margin-left:-7.392000px;}
._1f_c00157{margin-left:-6.288000px;}
._20_c00157{margin-left:-5.040000px;}
._23_c00157{margin-left:-3.840000px;}
._22_c00157{margin-left:-2.820000px;}
._19_c00157{margin-left:-1.680000px;}
._f_c00157{width:1.380000px;}
._d_c00157{width:3.000000px;}
._a_c00157{width:4.020000px;}
._c_c00157{width:5.340000px;}
._9_c00157{width:6.360000px;}
._0_c00157{width:8.040000px;}
._1_c00157{width:9.900000px;}
._8_c00157{width:11.640000px;}
._17_c00157{width:12.900000px;}
._21_c00157{width:14.160000px;}
._3_c00157{width:15.480000px;}
._29_c00157{width:16.620000px;}
._11_c00157{width:18.780000px;}
._12_c00157{width:20.400000px;}
._4_c00157{width:21.540000px;}
._30_c00157{width:22.620000px;}
._6_c00157{width:24.360000px;}
._14_c00157{width:25.740000px;}
._5_c00157{width:27.000000px;}
._28_c00157{width:29.700000px;}
._b_c00157{width:31.980000px;}
._2c_c00157{width:34.680000px;}
._1a_c00157{width:35.700000px;}
._7_c00157{width:38.460000px;}
._2e_c00157{width:57.960000px;}
._18_c00157{width:59.820000px;}
._35_c00157{width:64.320000px;}
._36_c00157{width:66.780000px;}
._34_c00157{width:72.180000px;}
._10_c00157{width:73.920000px;}
._1c_c00157{width:76.980000px;}
._32_c00157{width:78.348000px;}
._33_c00157{width:79.620000px;}
._25_c00157{width:80.880000px;}
._15_c00157{width:82.620000px;}
._31_c00157{width:84.780000px;}
._e_c00157{width:87.600000px;}
._27_c00157{width:107.580000px;}
._24_c00157{width:127.200000px;}
._37_c00157{width:131.637000px;}
._26_c00157{width:138.660000px;}
._2a_c00157{width:292.380000px;}
._2_c00157{width:347.760000px;}
.fc2_c00157{color:transparent;}
.fc1_c00157{color:rgb(128,128,128);}
.fc0_c00157{color:rgb(0,0,0);}
.fs2_c00157{font-size:24.000000px;}
.fs1_c00157{font-size:45.000000px;}
.fs5_c00157{font-size:48.000000px;}
.fs0_c00157{font-size:60.000000px;}
.fs3_c00157{font-size:66.000000px;}
.fs4_c00157{font-size:189.000000px;}
.y0_c00157{bottom:0.000000px;}
.y49_c00157{bottom:3.105000px;}
.y48_c00157{bottom:7.228355px;}
.y47_c00157{bottom:35.985000px;}
.y46_c00157{bottom:55.335000px;}
.y45_c00157{bottom:73.935000px;}
.y44_c00157{bottom:92.085000px;}
.y43_c00157{bottom:109.335000px;}
.y42_c00157{bottom:129.135000px;}
.y41_c00157{bottom:147.735000px;}
.y40_c00157{bottom:165.735000px;}
.y3f_c00157{bottom:183.885000px;}
.y22_c00157{bottom:185.535000px;}
.y3e_c00157{bottom:200.835000px;}
.y21_c00157{bottom:204.435000px;}
.y3d_c00157{bottom:218.685000px;}
.y20_c00157{bottom:222.435000px;}
.y3c_c00157{bottom:236.535000px;}
.y1f_c00157{bottom:241.635000px;}
.y1d_c00157{bottom:253.635000px;}
.y3b_c00157{bottom:256.035000px;}
.y1e_c00157{bottom:259.185000px;}
.y3a_c00157{bottom:272.985000px;}
.y39_c00157{bottom:289.785000px;}
.y1c_c00157{bottom:295.185000px;}
.y38_c00157{bottom:309.435000px;}
.y1b_c00157{bottom:314.535000px;}
.y37_c00157{bottom:328.035000px;}
.y1a_c00157{bottom:332.685000px;}
.y36_c00157{bottom:345.885000px;}
.y19_c00157{bottom:351.585000px;}
.y35_c00157{bottom:363.435000px;}
.y18_c00157{bottom:369.585000px;}
.y34_c00157{bottom:382.035000px;}
.y17_c00157{bottom:387.735000px;}
.y33_c00157{bottom:399.285000px;}
.y16_c00157{bottom:405.585000px;}
.y32_c00157{bottom:418.185000px;}
.y31_c00157{bottom:436.335000px;}
.y15_c00157{bottom:440.385000px;}
.y30_c00157{bottom:454.185000px;}
.y2f_c00157{bottom:472.035000px;}
.y14_c00157{bottom:477.135000px;}
.y2e_c00157{bottom:490.635000px;}
.y13_c00157{bottom:495.135000px;}
.y2d_c00157{bottom:509.235000px;}
.y12_c00157{bottom:514.935000px;}
.y2c_c00157{bottom:527.085000px;}
.y11_c00157{bottom:532.185000px;}
.y2b_c00157{bottom:545.085000px;}
.y10_c00157{bottom:550.485000px;}
.y2a_c00157{bottom:563.535000px;}
.yf_c00157{bottom:567.885000px;}
.y29_c00157{bottom:582.135000px;}
.ye_c00157{bottom:585.885000px;}
.y28_c00157{bottom:600.735000px;}
.yd_c00157{bottom:605.685000px;}
.y27_c00157{bottom:618.885000px;}
.yc_c00157{bottom:622.935000px;}
.y26_c00157{bottom:636.735000px;}
.yb_c00157{bottom:642.585000px;}
.y25_c00157{bottom:655.035000px;}
.ya_c00157{bottom:660.735000px;}
.y24_c00157{bottom:670.935000px;}
.y9_c00157{bottom:678.585000px;}
.y23_c00157{bottom:691.785000px;}
.y8_c00157{bottom:693.435000px;}
.y7_c00157{bottom:696.585000px;}
.y6_c00157{bottom:712.485000px;}
.y5_c00157{bottom:729.585000px;}
.y4_c00157{bottom:748.935000px;}
.y3_c00157{bottom:767.685000px;}
.y2_c00157{bottom:784.935000px;}
.y1_c00157{bottom:804.885000px;}
.h7_c00157{height:13.200074px;}
.h3_c00157{height:30.386719px;}
.h8_c00157{height:43.804688px;}
.h2_c00157{height:62.880000px;}
.h4_c00157{height:64.020000px;}
.h5_c00157{height:70.422000px;}
.h6_c00157{height:198.072000px;}
.h1_c00157{height:841.500000px;}
.h0_c00157{height:841.575000px;}
.w2_c00157{width:104.875500px;}
.w0_c00157{width:565.950000px;}
.w1_c00157{width:566.250000px;}
.x0_c00157{left:0.000000px;}
.x15_c00157{left:31.500000px;}
.x2_c00157{left:42.900000px;}
.xc_c00157{left:76.350000px;}
.x1e_c00157{left:92.250000px;}
.x1d_c00157{left:93.600000px;}
.x3_c00157{left:95.250000px;}
.xd_c00157{left:99.300000px;}
.xb_c00157{left:101.550000px;}
.xa_c00157{left:102.600000px;}
.x9_c00157{left:103.950000px;}
.x5_c00157{left:105.600000px;}
.x4_c00157{left:106.650000px;}
.x1_c00157{left:111.450000px;}
.x10_c00157{left:112.800000px;}
.x11_c00157{left:129.000000px;}
.x6_c00157{left:132.750000px;}
.xf_c00157{left:135.000000px;}
.x14_c00157{left:141.750000px;}
.x7_c00157{left:146.700000px;}
.x12_c00157{left:151.500000px;}
.xe_c00157{left:170.850000px;}
.x13_c00157{left:173.550000px;}
.x8_c00157{left:175.950000px;}
.x20_c00157{left:234.789230px;}
.x1a_c00157{left:306.150000px;}
.x1c_c00157{left:313.500000px;}
.x1b_c00157{left:314.550000px;}
.x16_c00157{left:315.900000px;}
.x19_c00157{left:316.950000px;}
.x18_c00157{left:318.000000px;}
.x17_c00157{left:319.350000px;}
.x1f_c00157{left:467.400000px;}
@media print{
.v0_c00157{vertical-align:0.000000pt;}
.v1_c00157{vertical-align:85.866667pt;}
.ls6_c00157{letter-spacing:0.000000pt;}
.ls0_c00157{letter-spacing:0.360000pt;}
.ls1_c00157{letter-spacing:2.666667pt;}
.ls3_c00157{letter-spacing:5.160000pt;}
.ls8_c00157{letter-spacing:5.333333pt;}
.ls5_c00157{letter-spacing:7.573333pt;}
.ls4_c00157{letter-spacing:7.826667pt;}
.ls7_c00157{letter-spacing:10.666667pt;}
.ls2_c00157{letter-spacing:17.434667pt;}
.ws4_c00157{word-spacing:-28.218667pt;}
.ws0_c00157{word-spacing:-26.040000pt;}
.ws5_c00157{word-spacing:-16.053333pt;}
.ws1_c00157{word-spacing:-15.808000pt;}
.ws7_c00157{word-spacing:-15.413333pt;}
.ws3_c00157{word-spacing:-12.586667pt;}
.ws8_c00157{word-spacing:0.000000pt;}
.ws6_c00157{word-spacing:6.346667pt;}
.ws2_c00157{word-spacing:48.000000pt;}
._16_c00157{margin-left:-17.120000pt;}
._2d_c00157{margin-left:-15.626667pt;}
._13_c00157{margin-left:-12.973333pt;}
._1e_c00157{margin-left:-11.456000pt;}
._1b_c00157{margin-left:-9.760000pt;}
._2f_c00157{margin-left:-8.544000pt;}
._2b_c00157{margin-left:-7.488000pt;}
._1d_c00157{margin-left:-6.570667pt;}
._1f_c00157{margin-left:-5.589333pt;}
._20_c00157{margin-left:-4.480000pt;}
._23_c00157{margin-left:-3.413333pt;}
._22_c00157{margin-left:-2.506667pt;}
._19_c00157{margin-left:-1.493333pt;}
._f_c00157{width:1.226667pt;}
._d_c00157{width:2.666667pt;}
._a_c00157{width:3.573333pt;}
._c_c00157{width:4.746667pt;}
._9_c00157{width:5.653333pt;}
._0_c00157{width:7.146667pt;}
._1_c00157{width:8.800000pt;}
._8_c00157{width:10.346667pt;}
._17_c00157{width:11.466667pt;}
._21_c00157{width:12.586667pt;}
._3_c00157{width:13.760000pt;}
._29_c00157{width:14.773333pt;}
._11_c00157{width:16.693333pt;}
._12_c00157{width:18.133333pt;}
._4_c00157{width:19.146667pt;}
._30_c00157{width:20.106667pt;}
._6_c00157{width:21.653333pt;}
._14_c00157{width:22.880000pt;}
._5_c00157{width:24.000000pt;}
._28_c00157{width:26.400000pt;}
._b_c00157{width:28.426667pt;}
._2c_c00157{width:30.826667pt;}
._1a_c00157{width:31.733333pt;}
._7_c00157{width:34.186667pt;}
._2e_c00157{width:51.520000pt;}
._18_c00157{width:53.173333pt;}
._35_c00157{width:57.173333pt;}
._36_c00157{width:59.360000pt;}
._34_c00157{width:64.160000pt;}
._10_c00157{width:65.706667pt;}
._1c_c00157{width:68.426667pt;}
._32_c00157{width:69.642667pt;}
._33_c00157{width:70.773333pt;}
._25_c00157{width:71.893333pt;}
._15_c00157{width:73.440000pt;}
._31_c00157{width:75.360000pt;}
._e_c00157{width:77.866667pt;}
._27_c00157{width:95.626667pt;}
._24_c00157{width:113.066667pt;}
._37_c00157{width:117.010667pt;}
._26_c00157{width:123.253333pt;}
._2a_c00157{width:259.893333pt;}
._2_c00157{width:309.120000pt;}
.fs2_c00157{font-size:21.333333pt;}
.fs1_c00157{font-size:40.000000pt;}
.fs5_c00157{font-size:42.666667pt;}
.fs0_c00157{font-size:53.333333pt;}
.fs3_c00157{font-size:58.666667pt;}
.fs4_c00157{font-size:168.000000pt;}
.y0_c00157{bottom:0.000000pt;}
.y49_c00157{bottom:2.760000pt;}
.y48_c00157{bottom:6.425204pt;}
.y47_c00157{bottom:31.986667pt;}
.y46_c00157{bottom:49.186667pt;}
.y45_c00157{bottom:65.720000pt;}
.y44_c00157{bottom:81.853333pt;}
.y43_c00157{bottom:97.186667pt;}
.y42_c00157{bottom:114.786667pt;}
.y41_c00157{bottom:131.320000pt;}
.y40_c00157{bottom:147.320000pt;}
.y3f_c00157{bottom:163.453333pt;}
.y22_c00157{bottom:164.920000pt;}
.y3e_c00157{bottom:178.520000pt;}
.y21_c00157{bottom:181.720000pt;}
.y3d_c00157{bottom:194.386667pt;}
.y20_c00157{bottom:197.720000pt;}
.y3c_c00157{bottom:210.253333pt;}
.y1f_c00157{bottom:214.786667pt;}
.y1d_c00157{bottom:225.453333pt;}
.y3b_c00157{bottom:227.586667pt;}
.y1e_c00157{bottom:230.386667pt;}
.y3a_c00157{bottom:242.653333pt;}
.y39_c00157{bottom:257.586667pt;}
.y1c_c00157{bottom:262.386667pt;}
.y38_c00157{bottom:275.053333pt;}
.y1b_c00157{bottom:279.586667pt;}
.y37_c00157{bottom:291.586667pt;}
.y1a_c00157{bottom:295.720000pt;}
.y36_c00157{bottom:307.453333pt;}
.y19_c00157{bottom:312.520000pt;}
.y35_c00157{bottom:323.053333pt;}
.y18_c00157{bottom:328.520000pt;}
.y34_c00157{bottom:339.586667pt;}
.y17_c00157{bottom:344.653333pt;}
.y33_c00157{bottom:354.920000pt;}
.y16_c00157{bottom:360.520000pt;}
.y32_c00157{bottom:371.720000pt;}
.y31_c00157{bottom:387.853333pt;}
.y15_c00157{bottom:391.453333pt;}
.y30_c00157{bottom:403.720000pt;}
.y2f_c00157{bottom:419.586667pt;}
.y14_c00157{bottom:424.120000pt;}
.y2e_c00157{bottom:436.120000pt;}
.y13_c00157{bottom:440.120000pt;}
.y2d_c00157{bottom:452.653333pt;}
.y12_c00157{bottom:457.720000pt;}
.y2c_c00157{bottom:468.520000pt;}
.y11_c00157{bottom:473.053333pt;}
.y2b_c00157{bottom:484.520000pt;}
.y10_c00157{bottom:489.320000pt;}
.y2a_c00157{bottom:500.920000pt;}
.yf_c00157{bottom:504.786667pt;}
.y29_c00157{bottom:517.453333pt;}
.ye_c00157{bottom:520.786667pt;}
.y28_c00157{bottom:533.986667pt;}
.yd_c00157{bottom:538.386667pt;}
.y27_c00157{bottom:550.120000pt;}
.yc_c00157{bottom:553.720000pt;}
.y26_c00157{bottom:565.986667pt;}
.yb_c00157{bottom:571.186667pt;}
.y25_c00157{bottom:582.253333pt;}
.ya_c00157{bottom:587.320000pt;}
.y24_c00157{bottom:596.386667pt;}
.y9_c00157{bottom:603.186667pt;}
.y23_c00157{bottom:614.920000pt;}
.y8_c00157{bottom:616.386667pt;}
.y7_c00157{bottom:619.186667pt;}
.y6_c00157{bottom:633.320000pt;}
.y5_c00157{bottom:648.520000pt;}
.y4_c00157{bottom:665.720000pt;}
.y3_c00157{bottom:682.386667pt;}
.y2_c00157{bottom:697.720000pt;}
.y1_c00157{bottom:715.453333pt;}
.h7_c00157{height:11.733399pt;}
.h3_c00157{height:27.010417pt;}
.h8_c00157{height:38.937500pt;}
.h2_c00157{height:55.893333pt;}
.h4_c00157{height:56.906667pt;}
.h5_c00157{height:62.597333pt;}
.h6_c00157{height:176.064000pt;}
.h1_c00157{height:748.000000pt;}
.h0_c00157{height:748.066667pt;}
.w2_c00157{width:93.222667pt;}
.w0_c00157{width:503.066667pt;}
.w1_c00157{width:503.333333pt;}
.x0_c00157{left:0.000000pt;}
.x15_c00157{left:28.000000pt;}
.x2_c00157{left:38.133333pt;}
.xc_c00157{left:67.866667pt;}
.x1e_c00157{left:82.000000pt;}
.x1d_c00157{left:83.200000pt;}
.x3_c00157{left:84.666667pt;}
.xd_c00157{left:88.266667pt;}
.xb_c00157{left:90.266667pt;}
.xa_c00157{left:91.200000pt;}
.x9_c00157{left:92.400000pt;}
.x5_c00157{left:93.866667pt;}
.x4_c00157{left:94.800000pt;}
.x1_c00157{left:99.066667pt;}
.x10_c00157{left:100.266667pt;}
.x11_c00157{left:114.666667pt;}
.x6_c00157{left:118.000000pt;}
.xf_c00157{left:120.000000pt;}
.x14_c00157{left:126.000000pt;}
.x7_c00157{left:130.400000pt;}
.x12_c00157{left:134.666667pt;}
.xe_c00157{left:151.866667pt;}
.x13_c00157{left:154.266667pt;}
.x8_c00157{left:156.400000pt;}
.x20_c00157{left:208.701538pt;}
.x1a_c00157{left:272.133333pt;}
.x1c_c00157{left:278.666667pt;}
.x1b_c00157{left:279.600000pt;}
.x16_c00157{left:280.800000pt;}
.x19_c00157{left:281.733333pt;}
.x18_c00157{left:282.666667pt;}
.x17_c00157{left:283.866667pt;}
.x1f_c00157{left:415.466667pt;}
}





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

.ir_c00158:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00158{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00158;src:url('chunks/assets/font_14d95b8c5081adb1ed102314.woff2')format("woff");}.ff1_c00158{font-family:ff1_c00158;line-height:1.437000;font-style:normal;font-weight:normal;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_b7a53a8c57648e0f0fa6284f.woff2')format("woff");}.ff2_c00158{font-family:ff2_c00158;line-height:1.437000;font-style:normal;font-weight:normal;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_061833e4c2a740cd17eaa318.woff2')format("woff");}.ff3_c00158{font-family:ff3_c00158;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00158;src:url('chunks/assets/font_bc1b48ba7f4ad10606d4e341.woff2')format("woff");}.ff4_c00158{font-family:ff4_c00158;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00158;src:url('chunks/assets/font_e219566cb3ffb0cc873f9d65.woff2')format("woff");}.ff5_c00158{font-family:ff5_c00158;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00158;src:url('chunks/assets/font_a8f0ca41edaddf6d4bea24b9.woff2')format("woff");}.ff6_c00158{font-family:ff6_c00158;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00158;src:url('chunks/assets/font_5423ccddc0bee22d3e9d59b5.woff2')format("woff");}.ff7_c00158{font-family:ff7_c00158;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00158;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff8_c00158{font-family:ff8_c00158;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00158{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00158{vertical-align:-73.200000px;}
.v0_c00158{vertical-align:0.000000px;}
.ls8_c00158{letter-spacing:0.000000px;}
.ls6_c00158{letter-spacing:1.440000px;}
.ls0_c00158{letter-spacing:3.000000px;}
.ls4_c00158{letter-spacing:4.005000px;}
.ls3_c00158{letter-spacing:7.740000px;}
.ls1_c00158{letter-spacing:8.205000px;}
.ls5_c00158{letter-spacing:8.460000px;}
.ls7_c00158{letter-spacing:12.000000px;}
.ls2_c00158{letter-spacing:20.940000px;}
.sc__c00158{text-shadow:none;}
.sc0_c00158{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00158{-webkit-text-stroke:0px transparent;}
.sc0_c00158{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00158{word-spacing:-29.295000px;}
.ws0_c00158{word-spacing:-27.060000px;}
.ws1_c00158{word-spacing:-17.340000px;}
.ws4_c00158{word-spacing:-14.427000px;}
.ws3_c00158{word-spacing:-14.160000px;}
.ws5_c00158{word-spacing:0.000000px;}
._19_c00158{margin-left:-16.191000px;}
._24_c00158{margin-left:-15.042000px;}
._12_c00158{margin-left:-13.824000px;}
._18_c00158{margin-left:-11.163000px;}
._14_c00158{margin-left:-8.814000px;}
._11_c00158{margin-left:-6.849000px;}
._1f_c00158{margin-left:-5.751000px;}
._10_c00158{margin-left:-4.050000px;}
._13_c00158{margin-left:-2.910000px;}
._8_c00158{margin-left:-1.860000px;}
._d_c00158{width:1.620000px;}
._f_c00158{width:2.637000px;}
._b_c00158{width:4.080000px;}
._6_c00158{width:6.003000px;}
._c_c00158{width:7.620000px;}
._1_c00158{width:8.625000px;}
._16_c00158{width:9.903000px;}
._5_c00158{width:10.971000px;}
._a_c00158{width:12.372000px;}
._0_c00158{width:13.869000px;}
._3_c00158{width:15.801000px;}
._4_c00158{width:18.216000px;}
._9_c00158{width:19.518000px;}
._23_c00158{width:20.550000px;}
._2_c00158{width:21.942000px;}
._1a_c00158{width:23.751000px;}
._15_c00158{width:25.245000px;}
._22_c00158{width:26.880000px;}
._17_c00158{width:28.038000px;}
._1d_c00158{width:29.199000px;}
._29_c00158{width:31.683000px;}
._1e_c00158{width:33.510000px;}
._26_c00158{width:34.737000px;}
._20_c00158{width:36.261000px;}
._25_c00158{width:49.173000px;}
._2a_c00158{width:55.782000px;}
._1c_c00158{width:60.114000px;}
._e_c00158{width:81.420000px;}
._27_c00158{width:84.555000px;}
._1b_c00158{width:99.459000px;}
._28_c00158{width:102.561000px;}
._21_c00158{width:126.486000px;}
._2b_c00158{width:196.146000px;}
._7_c00158{width:420.705000px;}
.fc2_c00158{color:transparent;}
.fc1_c00158{color:rgb(128,128,128);}
.fc0_c00158{color:rgb(0,0,0);}
.fs4_c00158{font-size:45.000000px;}
.fs6_c00158{font-size:48.000000px;}
.fs2_c00158{font-size:57.000000px;}
.fs1_c00158{font-size:60.000000px;}
.fs3_c00158{font-size:63.000000px;}
.fs5_c00158{font-size:66.000000px;}
.fs0_c00158{font-size:69.000000px;}
.y0_c00158{bottom:0.000000px;}
.y54_c00158{bottom:3.105000px;}
.y53_c00158{bottom:7.228363px;}
.y52_c00158{bottom:33.150000px;}
.y51_c00158{bottom:51.300000px;}
.y29_c00158{bottom:52.350000px;}
.y50_c00158{bottom:69.600000px;}
.y28_c00158{bottom:70.650000px;}
.y4f_c00158{bottom:87.750000px;}
.y27_c00158{bottom:88.350000px;}
.y4e_c00158{bottom:105.600000px;}
.y26_c00158{bottom:106.350000px;}
.y4d_c00158{bottom:123.600000px;}
.y25_c00158{bottom:124.200000px;}
.y24_c00158{bottom:141.450000px;}
.y4c_c00158{bottom:141.750000px;}
.y23_c00158{bottom:159.600000px;}
.y4b_c00158{bottom:160.350000px;}
.y22_c00158{bottom:177.900000px;}
.y4a_c00158{bottom:178.500000px;}
.y21_c00158{bottom:195.450000px;}
.y49_c00158{bottom:196.800000px;}
.y20_c00158{bottom:213.900000px;}
.y48_c00158{bottom:215.400000px;}
.y1f_c00158{bottom:231.450000px;}
.y47_c00158{bottom:233.250000px;}
.y1e_c00158{bottom:250.650000px;}
.y46_c00158{bottom:251.400000px;}
.y1d_c00158{bottom:268.200000px;}
.y45_c00158{bottom:269.700000px;}
.y1c_c00158{bottom:286.800000px;}
.y44_c00158{bottom:287.850000px;}
.y1b_c00158{bottom:304.050000px;}
.y43_c00158{bottom:305.850000px;}
.y1a_c00158{bottom:321.900000px;}
.y42_c00158{bottom:324.000000px;}
.y19_c00158{bottom:340.500000px;}
.y41_c00158{bottom:342.300000px;}
.y18_c00158{bottom:358.650000px;}
.y40_c00158{bottom:359.850000px;}
.y17_c00158{bottom:376.950000px;}
.y3f_c00158{bottom:378.450000px;}
.y16_c00158{bottom:394.500000px;}
.y3e_c00158{bottom:396.300000px;}
.y15_c00158{bottom:412.650000px;}
.y3d_c00158{bottom:414.150000px;}
.y3c_c00158{bottom:432.000000px;}
.y14_c00158{bottom:449.250000px;}
.y3b_c00158{bottom:450.900000px;}
.y13_c00158{bottom:466.500000px;}
.y3a_c00158{bottom:468.750000px;}
.y12_c00158{bottom:484.650000px;}
.y39_c00158{bottom:487.650000px;}
.y11_c00158{bottom:502.650000px;}
.y38_c00158{bottom:505.350000px;}
.y10_c00158{bottom:521.100000px;}
.y37_c00158{bottom:524.100000px;}
.yf_c00158{bottom:538.950000px;}
.y36_c00158{bottom:542.100000px;}
.ye_c00158{bottom:558.450000px;}
.y35_c00158{bottom:559.350000px;}
.yd_c00158{bottom:575.100000px;}
.y34_c00158{bottom:577.800000px;}
.yc_c00158{bottom:593.700000px;}
.y33_c00158{bottom:595.650000px;}
.yb_c00158{bottom:611.850000px;}
.y32_c00158{bottom:614.250000px;}
.ya_c00158{bottom:628.800000px;}
.y31_c00158{bottom:632.700000px;}
.y9_c00158{bottom:647.700000px;}
.y30_c00158{bottom:650.700000px;}
.y8_c00158{bottom:665.850000px;}
.y2f_c00158{bottom:668.550000px;}
.y7_c00158{bottom:684.000000px;}
.y2e_c00158{bottom:686.700000px;}
.y6_c00158{bottom:702.750000px;}
.y2d_c00158{bottom:705.300000px;}
.y5_c00158{bottom:720.300000px;}
.y2c_c00158{bottom:723.300000px;}
.y4_c00158{bottom:737.850000px;}
.y2b_c00158{bottom:740.850000px;}
.y3_c00158{bottom:755.700000px;}
.y2a_c00158{bottom:759.600000px;}
.y2_c00158{bottom:776.550000px;}
.y1_c00158{bottom:795.750000px;}
.h6_c00158{height:13.200074px;}
.h7_c00158{height:43.804688px;}
.h3_c00158{height:62.880000px;}
.h4_c00158{height:66.024000px;}
.h5_c00158{height:70.422000px;}
.h2_c00158{height:72.312000px;}
.h1_c00158{height:828.750000px;}
.h0_c00158{height:828.900000px;}
.w1_c00158{width:104.875500px;}
.w0_c00158{width:584.250000px;}
.x0_c00158{left:0.000000px;}
.x8_c00158{left:8.550000px;}
.x7_c00158{left:43.650000px;}
.xa_c00158{left:59.100000px;}
.x6_c00158{left:62.100000px;}
.x5_c00158{left:63.900000px;}
.x3_c00158{left:65.100000px;}
.x4_c00158{left:66.150000px;}
.x2_c00158{left:67.800000px;}
.xb_c00158{left:85.800000px;}
.x9_c00158{left:103.650000px;}
.x1_c00158{left:204.600000px;}
.x15_c00158{left:243.939240px;}
.x13_c00158{left:274.050000px;}
.x12_c00158{left:275.400000px;}
.x11_c00158{left:277.200000px;}
.xd_c00158{left:278.400000px;}
.x10_c00158{left:279.450000px;}
.xf_c00158{left:280.500000px;}
.xe_c00158{left:282.150000px;}
.xc_c00158{left:284.100000px;}
.x14_c00158{left:365.850000px;}
@media print{
.v1_c00158{vertical-align:-65.066667pt;}
.v0_c00158{vertical-align:0.000000pt;}
.ls8_c00158{letter-spacing:0.000000pt;}
.ls6_c00158{letter-spacing:1.280000pt;}
.ls0_c00158{letter-spacing:2.666667pt;}
.ls4_c00158{letter-spacing:3.560000pt;}
.ls3_c00158{letter-spacing:6.880000pt;}
.ls1_c00158{letter-spacing:7.293333pt;}
.ls5_c00158{letter-spacing:7.520000pt;}
.ls7_c00158{letter-spacing:10.666667pt;}
.ls2_c00158{letter-spacing:18.613333pt;}
.ws2_c00158{word-spacing:-26.040000pt;}
.ws0_c00158{word-spacing:-24.053333pt;}
.ws1_c00158{word-spacing:-15.413333pt;}
.ws4_c00158{word-spacing:-12.824000pt;}
.ws3_c00158{word-spacing:-12.586667pt;}
.ws5_c00158{word-spacing:0.000000pt;}
._19_c00158{margin-left:-14.392000pt;}
._24_c00158{margin-left:-13.370667pt;}
._12_c00158{margin-left:-12.288000pt;}
._18_c00158{margin-left:-9.922667pt;}
._14_c00158{margin-left:-7.834667pt;}
._11_c00158{margin-left:-6.088000pt;}
._1f_c00158{margin-left:-5.112000pt;}
._10_c00158{margin-left:-3.600000pt;}
._13_c00158{margin-left:-2.586667pt;}
._8_c00158{margin-left:-1.653333pt;}
._d_c00158{width:1.440000pt;}
._f_c00158{width:2.344000pt;}
._b_c00158{width:3.626667pt;}
._6_c00158{width:5.336000pt;}
._c_c00158{width:6.773333pt;}
._1_c00158{width:7.666667pt;}
._16_c00158{width:8.802667pt;}
._5_c00158{width:9.752000pt;}
._a_c00158{width:10.997333pt;}
._0_c00158{width:12.328000pt;}
._3_c00158{width:14.045333pt;}
._4_c00158{width:16.192000pt;}
._9_c00158{width:17.349333pt;}
._23_c00158{width:18.266667pt;}
._2_c00158{width:19.504000pt;}
._1a_c00158{width:21.112000pt;}
._15_c00158{width:22.440000pt;}
._22_c00158{width:23.893333pt;}
._17_c00158{width:24.922667pt;}
._1d_c00158{width:25.954667pt;}
._29_c00158{width:28.162667pt;}
._1e_c00158{width:29.786667pt;}
._26_c00158{width:30.877333pt;}
._20_c00158{width:32.232000pt;}
._25_c00158{width:43.709333pt;}
._2a_c00158{width:49.584000pt;}
._1c_c00158{width:53.434667pt;}
._e_c00158{width:72.373333pt;}
._27_c00158{width:75.160000pt;}
._1b_c00158{width:88.408000pt;}
._28_c00158{width:91.165333pt;}
._21_c00158{width:112.432000pt;}
._2b_c00158{width:174.352000pt;}
._7_c00158{width:373.960000pt;}
.fs4_c00158{font-size:40.000000pt;}
.fs6_c00158{font-size:42.666667pt;}
.fs2_c00158{font-size:50.666667pt;}
.fs1_c00158{font-size:53.333333pt;}
.fs3_c00158{font-size:56.000000pt;}
.fs5_c00158{font-size:58.666667pt;}
.fs0_c00158{font-size:61.333333pt;}
.y0_c00158{bottom:0.000000pt;}
.y54_c00158{bottom:2.760000pt;}
.y53_c00158{bottom:6.425212pt;}
.y52_c00158{bottom:29.466667pt;}
.y51_c00158{bottom:45.600000pt;}
.y29_c00158{bottom:46.533333pt;}
.y50_c00158{bottom:61.866667pt;}
.y28_c00158{bottom:62.800000pt;}
.y4f_c00158{bottom:78.000000pt;}
.y27_c00158{bottom:78.533333pt;}
.y4e_c00158{bottom:93.866667pt;}
.y26_c00158{bottom:94.533333pt;}
.y4d_c00158{bottom:109.866667pt;}
.y25_c00158{bottom:110.400000pt;}
.y24_c00158{bottom:125.733333pt;}
.y4c_c00158{bottom:126.000000pt;}
.y23_c00158{bottom:141.866667pt;}
.y4b_c00158{bottom:142.533333pt;}
.y22_c00158{bottom:158.133333pt;}
.y4a_c00158{bottom:158.666667pt;}
.y21_c00158{bottom:173.733333pt;}
.y49_c00158{bottom:174.933333pt;}
.y20_c00158{bottom:190.133333pt;}
.y48_c00158{bottom:191.466667pt;}
.y1f_c00158{bottom:205.733333pt;}
.y47_c00158{bottom:207.333333pt;}
.y1e_c00158{bottom:222.800000pt;}
.y46_c00158{bottom:223.466667pt;}
.y1d_c00158{bottom:238.400000pt;}
.y45_c00158{bottom:239.733333pt;}
.y1c_c00158{bottom:254.933333pt;}
.y44_c00158{bottom:255.866667pt;}
.y1b_c00158{bottom:270.266667pt;}
.y43_c00158{bottom:271.866667pt;}
.y1a_c00158{bottom:286.133333pt;}
.y42_c00158{bottom:288.000000pt;}
.y19_c00158{bottom:302.666667pt;}
.y41_c00158{bottom:304.266667pt;}
.y18_c00158{bottom:318.800000pt;}
.y40_c00158{bottom:319.866667pt;}
.y17_c00158{bottom:335.066667pt;}
.y3f_c00158{bottom:336.400000pt;}
.y16_c00158{bottom:350.666667pt;}
.y3e_c00158{bottom:352.266667pt;}
.y15_c00158{bottom:366.800000pt;}
.y3d_c00158{bottom:368.133333pt;}
.y3c_c00158{bottom:384.000000pt;}
.y14_c00158{bottom:399.333333pt;}
.y3b_c00158{bottom:400.800000pt;}
.y13_c00158{bottom:414.666667pt;}
.y3a_c00158{bottom:416.666667pt;}
.y12_c00158{bottom:430.800000pt;}
.y39_c00158{bottom:433.466667pt;}
.y11_c00158{bottom:446.800000pt;}
.y38_c00158{bottom:449.200000pt;}
.y10_c00158{bottom:463.200000pt;}
.y37_c00158{bottom:465.866667pt;}
.yf_c00158{bottom:479.066667pt;}
.y36_c00158{bottom:481.866667pt;}
.ye_c00158{bottom:496.400000pt;}
.y35_c00158{bottom:497.200000pt;}
.yd_c00158{bottom:511.200000pt;}
.y34_c00158{bottom:513.600000pt;}
.yc_c00158{bottom:527.733333pt;}
.y33_c00158{bottom:529.466667pt;}
.yb_c00158{bottom:543.866667pt;}
.y32_c00158{bottom:546.000000pt;}
.ya_c00158{bottom:558.933333pt;}
.y31_c00158{bottom:562.400000pt;}
.y9_c00158{bottom:575.733333pt;}
.y30_c00158{bottom:578.400000pt;}
.y8_c00158{bottom:591.866667pt;}
.y2f_c00158{bottom:594.266667pt;}
.y7_c00158{bottom:608.000000pt;}
.y2e_c00158{bottom:610.400000pt;}
.y6_c00158{bottom:624.666667pt;}
.y2d_c00158{bottom:626.933333pt;}
.y5_c00158{bottom:640.266667pt;}
.y2c_c00158{bottom:642.933333pt;}
.y4_c00158{bottom:655.866667pt;}
.y2b_c00158{bottom:658.533333pt;}
.y3_c00158{bottom:671.733333pt;}
.y2a_c00158{bottom:675.200000pt;}
.y2_c00158{bottom:690.266667pt;}
.y1_c00158{bottom:707.333333pt;}
.h6_c00158{height:11.733399pt;}
.h7_c00158{height:38.937500pt;}
.h3_c00158{height:55.893333pt;}
.h4_c00158{height:58.688000pt;}
.h5_c00158{height:62.597333pt;}
.h2_c00158{height:64.277333pt;}
.h1_c00158{height:736.666667pt;}
.h0_c00158{height:736.800000pt;}
.w1_c00158{width:93.222667pt;}
.w0_c00158{width:519.333333pt;}
.x0_c00158{left:0.000000pt;}
.x8_c00158{left:7.600000pt;}
.x7_c00158{left:38.800000pt;}
.xa_c00158{left:52.533333pt;}
.x6_c00158{left:55.200000pt;}
.x5_c00158{left:56.800000pt;}
.x3_c00158{left:57.866667pt;}
.x4_c00158{left:58.800000pt;}
.x2_c00158{left:60.266667pt;}
.xb_c00158{left:76.266667pt;}
.x9_c00158{left:92.133333pt;}
.x1_c00158{left:181.866667pt;}
.x15_c00158{left:216.834880pt;}
.x13_c00158{left:243.600000pt;}
.x12_c00158{left:244.800000pt;}
.x11_c00158{left:246.400000pt;}
.xd_c00158{left:247.466667pt;}
.x10_c00158{left:248.400000pt;}
.xf_c00158{left:249.333333pt;}
.xe_c00158{left:250.800000pt;}
.xc_c00158{left:252.533333pt;}
.x14_c00158{left:325.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_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_440b3a361b93b22a05c7dbba.woff2')format("woff");}.ff1_c00159{font-family:ff1_c00159;line-height:1.437000;font-style:normal;font-weight:normal;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_b1a4135a9e104e7fb6198d14.woff2')format("woff");}.ff2_c00159{font-family:ff2_c00159;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00159;src:url('chunks/assets/font_a20b1ef45d59333e4d8d5c70.woff2')format("woff");}.ff3_c00159{font-family:ff3_c00159;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00159;src:url('chunks/assets/font_532e97388b780f8710a63612.woff2')format("woff");}.ff4_c00159{font-family:ff4_c00159;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00159;src:url('chunks/assets/font_9524fcce4171c73b5a34c472.woff2')format("woff");}.ff5_c00159{font-family:ff5_c00159;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00159;src:url('chunks/assets/font_adc06c9796cb5450ac6d946e.woff2')format("woff");}.ff6_c00159{font-family:ff6_c00159;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00159;src:url('chunks/assets/font_c0a95b11b0f43c48a443ca73.woff2')format("woff");}.ff7_c00159{font-family:ff7_c00159;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00159;src:url('chunks/assets/font_6105c17c3228052140a0ebdf.woff2')format("woff");}.ff8_c00159{font-family:ff8_c00159;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00159;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff9_c00159{font-family:ff9_c00159;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00159{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00159{vertical-align:0.000000px;}
.v1_c00159{vertical-align:89.400000px;}
.lsd_c00159{letter-spacing:0.000000px;}
.ls6_c00159{letter-spacing:2.940000px;}
.ls0_c00159{letter-spacing:3.000000px;}
.ls2_c00159{letter-spacing:3.294000px;}
.lsa_c00159{letter-spacing:4.500000px;}
.ls9_c00159{letter-spacing:5.880000px;}
.lse_c00159{letter-spacing:6.000000px;}
.ls1_c00159{letter-spacing:10.140000px;}
.ls4_c00159{letter-spacing:11.940000px;}
.ls8_c00159{letter-spacing:16.200000px;}
.lsc_c00159{letter-spacing:18.000000px;}
.ls7_c00159{letter-spacing:20.445000px;}
.ls5_c00159{letter-spacing:39.405000px;}
.lsb_c00159{letter-spacing:45.645000px;}
.ls3_c00159{letter-spacing:62.268000px;}
.sc__c00159{text-shadow:none;}
.sc0_c00159{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00159{-webkit-text-stroke:0px transparent;}
.sc0_c00159{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00159{word-spacing:-48.258000px;}
.ws3_c00159{word-spacing:-29.295000px;}
.ws2_c00159{word-spacing:-17.340000px;}
.ws0_c00159{word-spacing:-14.160000px;}
.ws4_c00159{word-spacing:-3.780000px;}
.ws5_c00159{word-spacing:0.000000px;}
._14_c00159{margin-left:-26.832000px;}
._1c_c00159{margin-left:-18.660000px;}
._22_c00159{margin-left:-16.968000px;}
._1b_c00159{margin-left:-13.935000px;}
._d_c00159{margin-left:-12.720000px;}
._9_c00159{margin-left:-11.640000px;}
._1e_c00159{margin-left:-10.500000px;}
._7_c00159{margin-left:-9.180000px;}
._12_c00159{margin-left:-7.992000px;}
._8_c00159{margin-left:-6.780000px;}
._c_c00159{margin-left:-4.800000px;}
._4_c00159{margin-left:-3.360000px;}
._5_c00159{margin-left:-1.740000px;}
._11_c00159{width:1.020000px;}
._a_c00159{width:2.760000px;}
._1_c00159{width:3.840000px;}
._e_c00159{width:5.220000px;}
._10_c00159{width:6.600000px;}
._3_c00159{width:8.100000px;}
._f_c00159{width:10.140000px;}
._1f_c00159{width:11.160000px;}
._19_c00159{width:12.240000px;}
._13_c00159{width:13.500000px;}
._0_c00159{width:14.520000px;}
._16_c00159{width:15.612000px;}
._20_c00159{width:18.180000px;}
._17_c00159{width:19.272000px;}
._25_c00159{width:21.240000px;}
._18_c00159{width:22.380000px;}
._6_c00159{width:24.480000px;}
._21_c00159{width:25.560000px;}
._26_c00159{width:26.760000px;}
._23_c00159{width:28.860000px;}
._27_c00159{width:31.260000px;}
._24_c00159{width:32.460000px;}
._1a_c00159{width:33.720000px;}
._28_c00159{width:36.660000px;}
._29_c00159{width:39.660000px;}
._2a_c00159{width:46.128000px;}
._15_c00159{width:47.460000px;}
._b_c00159{width:52.680000px;}
._2_c00159{width:285.240000px;}
._1d_c00159{width:478.020000px;}
.fc2_c00159{color:transparent;}
.fc1_c00159{color:rgb(128,128,128);}
.fc0_c00159{color:rgb(0,0,0);}
.fs4_c00159{font-size:45.000000px;}
.fs7_c00159{font-size:48.000000px;}
.fs3_c00159{font-size:54.000000px;}
.fs2_c00159{font-size:57.000000px;}
.fs0_c00159{font-size:60.000000px;}
.fs6_c00159{font-size:63.000000px;}
.fs1_c00159{font-size:72.000000px;}
.fs5_c00159{font-size:132.000000px;}
.y0_c00159{bottom:0.000000px;}
.y4b_c00159{bottom:3.105000px;}
.y4a_c00159{bottom:7.228355px;}
.y49_c00159{bottom:38.085000px;}
.y48_c00159{bottom:56.985000px;}
.y26_c00159{bottom:57.735000px;}
.y47_c00159{bottom:76.185000px;}
.y25_c00159{bottom:76.485000px;}
.y46_c00159{bottom:94.185000px;}
.y24_c00159{bottom:95.085000px;}
.y45_c00159{bottom:112.335000px;}
.y23_c00159{bottom:112.935000px;}
.y44_c00159{bottom:130.935000px;}
.y22_c00159{bottom:131.235000px;}
.y21_c00159{bottom:149.085000px;}
.y43_c00159{bottom:149.385000px;}
.y42_c00159{bottom:167.085000px;}
.y20_c00159{bottom:169.035000px;}
.y1f_c00159{bottom:185.535000px;}
.y1e_c00159{bottom:203.385000px;}
.y1d_c00159{bottom:221.985000px;}
.y41_c00159{bottom:239.985000px;}
.y1c_c00159{bottom:240.285000px;}
.y1b_c00159{bottom:258.735000px;}
.y40_c00159{bottom:276.735000px;}
.y1a_c00159{bottom:277.035000px;}
.y19_c00159{bottom:294.585000px;}
.y3f_c00159{bottom:294.885000px;}
.y18_c00159{bottom:312.735000px;}
.y3e_c00159{bottom:313.185000px;}
.y16_c00159{bottom:327.585000px;}
.y17_c00159{bottom:331.335000px;}
.y3d_c00159{bottom:331.635000px;}
.y3c_c00159{bottom:349.335000px;}
.y3b_c00159{bottom:367.785000px;}
.y3a_c00159{bottom:386.085000px;}
.y15_c00159{bottom:386.385000px;}
.y14_c00159{bottom:404.535000px;}
.y13_c00159{bottom:422.085000px;}
.y39_c00159{bottom:422.235000px;}
.y12_c00159{bottom:440.685000px;}
.y38_c00159{bottom:458.685000px;}
.y11_c00159{bottom:476.085000px;}
.y37_c00159{bottom:477.135000px;}
.y36_c00159{bottom:495.435000px;}
.y10_c00159{bottom:512.235000px;}
.y35_c00159{bottom:513.585000px;}
.yf_c00159{bottom:530.535000px;}
.y34_c00159{bottom:531.585000px;}
.ye_c00159{bottom:549.135000px;}
.y33_c00159{bottom:550.335000px;}
.yd_c00159{bottom:567.585000px;}
.y32_c00159{bottom:568.335000px;}
.yc_c00159{bottom:586.185000px;}
.y31_c00159{bottom:604.035000px;}
.yb_c00159{bottom:605.385000px;}
.y30_c00159{bottom:622.335000px;}
.ya_c00159{bottom:622.635000px;}
.y9_c00159{bottom:640.785000px;}
.y2f_c00159{bottom:658.485000px;}
.y8_c00159{bottom:659.835000px;}
.y2e_c00159{bottom:677.235000px;}
.y7_c00159{bottom:677.985000px;}
.y2d_c00159{bottom:695.235000px;}
.y6_c00159{bottom:695.985000px;}
.y2c_c00159{bottom:713.385000px;}
.y5_c00159{bottom:713.835000px;}
.y4_c00159{bottom:731.685000px;}
.y2b_c00159{bottom:731.985000px;}
.y2a_c00159{bottom:749.835000px;}
.y3_c00159{bottom:750.585000px;}
.y29_c00159{bottom:767.835000px;}
.y2_c00159{bottom:769.035000px;}
.y28_c00159{bottom:786.735000px;}
.y1_c00159{bottom:787.035000px;}
.y27_c00159{bottom:805.935000px;}
.h9_c00159{height:13.200074px;}
.ha_c00159{height:43.804688px;}
.h6_c00159{height:56.592000px;}
.h3_c00159{height:62.880000px;}
.h4_c00159{height:63.480000px;}
.h2_c00159{height:64.020000px;}
.h8_c00159{height:67.221000px;}
.h5_c00159{height:78.048000px;}
.h7_c00159{height:152.280000px;}
.h1_c00159{height:841.500000px;}
.h0_c00159{height:841.575000px;}
.w2_c00159{width:104.875500px;}
.w0_c00159{width:565.950000px;}
.w1_c00159{width:566.250000px;}
.x0_c00159{left:0.000000px;}
.xa_c00159{left:50.850000px;}
.xd_c00159{left:110.700000px;}
.x1_c00159{left:112.950000px;}
.x2_c00159{left:114.450000px;}
.x9_c00159{left:115.650000px;}
.xc_c00159{left:117.000000px;}
.x5_c00159{left:130.950000px;}
.x8_c00159{left:142.050000px;}
.x6_c00159{left:149.850000px;}
.x4_c00159{left:163.350000px;}
.x7_c00159{left:182.250000px;}
.x3_c00159{left:183.300000px;}
.xb_c00159{left:186.900000px;}
.x13_c00159{left:234.789230px;}
.xf_c00159{left:327.300000px;}
.x10_c00159{left:328.350000px;}
.x11_c00159{left:329.850000px;}
.xe_c00159{left:332.700000px;}
.x12_c00159{left:507.000000px;}
@media print{
.v0_c00159{vertical-align:0.000000pt;}
.v1_c00159{vertical-align:79.466667pt;}
.lsd_c00159{letter-spacing:0.000000pt;}
.ls6_c00159{letter-spacing:2.613333pt;}
.ls0_c00159{letter-spacing:2.666667pt;}
.ls2_c00159{letter-spacing:2.928000pt;}
.lsa_c00159{letter-spacing:4.000000pt;}
.ls9_c00159{letter-spacing:5.226667pt;}
.lse_c00159{letter-spacing:5.333333pt;}
.ls1_c00159{letter-spacing:9.013333pt;}
.ls4_c00159{letter-spacing:10.613333pt;}
.ls8_c00159{letter-spacing:14.400000pt;}
.lsc_c00159{letter-spacing:16.000000pt;}
.ls7_c00159{letter-spacing:18.173333pt;}
.ls5_c00159{letter-spacing:35.026667pt;}
.lsb_c00159{letter-spacing:40.573333pt;}
.ls3_c00159{letter-spacing:55.349333pt;}
.ws1_c00159{word-spacing:-42.896000pt;}
.ws3_c00159{word-spacing:-26.040000pt;}
.ws2_c00159{word-spacing:-15.413333pt;}
.ws0_c00159{word-spacing:-12.586667pt;}
.ws4_c00159{word-spacing:-3.360000pt;}
.ws5_c00159{word-spacing:0.000000pt;}
._14_c00159{margin-left:-23.850667pt;}
._1c_c00159{margin-left:-16.586667pt;}
._22_c00159{margin-left:-15.082667pt;}
._1b_c00159{margin-left:-12.386667pt;}
._d_c00159{margin-left:-11.306667pt;}
._9_c00159{margin-left:-10.346667pt;}
._1e_c00159{margin-left:-9.333333pt;}
._7_c00159{margin-left:-8.160000pt;}
._12_c00159{margin-left:-7.104000pt;}
._8_c00159{margin-left:-6.026667pt;}
._c_c00159{margin-left:-4.266667pt;}
._4_c00159{margin-left:-2.986667pt;}
._5_c00159{margin-left:-1.546667pt;}
._11_c00159{width:0.906667pt;}
._a_c00159{width:2.453333pt;}
._1_c00159{width:3.413333pt;}
._e_c00159{width:4.640000pt;}
._10_c00159{width:5.866667pt;}
._3_c00159{width:7.200000pt;}
._f_c00159{width:9.013333pt;}
._1f_c00159{width:9.920000pt;}
._19_c00159{width:10.880000pt;}
._13_c00159{width:12.000000pt;}
._0_c00159{width:12.906667pt;}
._16_c00159{width:13.877333pt;}
._20_c00159{width:16.160000pt;}
._17_c00159{width:17.130667pt;}
._25_c00159{width:18.880000pt;}
._18_c00159{width:19.893333pt;}
._6_c00159{width:21.760000pt;}
._21_c00159{width:22.720000pt;}
._26_c00159{width:23.786667pt;}
._23_c00159{width:25.653333pt;}
._27_c00159{width:27.786667pt;}
._24_c00159{width:28.853333pt;}
._1a_c00159{width:29.973333pt;}
._28_c00159{width:32.586667pt;}
._29_c00159{width:35.253333pt;}
._2a_c00159{width:41.002667pt;}
._15_c00159{width:42.186667pt;}
._b_c00159{width:46.826667pt;}
._2_c00159{width:253.546667pt;}
._1d_c00159{width:424.906667pt;}
.fs4_c00159{font-size:40.000000pt;}
.fs7_c00159{font-size:42.666667pt;}
.fs3_c00159{font-size:48.000000pt;}
.fs2_c00159{font-size:50.666667pt;}
.fs0_c00159{font-size:53.333333pt;}
.fs6_c00159{font-size:56.000000pt;}
.fs1_c00159{font-size:64.000000pt;}
.fs5_c00159{font-size:117.333333pt;}
.y0_c00159{bottom:0.000000pt;}
.y4b_c00159{bottom:2.760000pt;}
.y4a_c00159{bottom:6.425204pt;}
.y49_c00159{bottom:33.853333pt;}
.y48_c00159{bottom:50.653333pt;}
.y26_c00159{bottom:51.320000pt;}
.y47_c00159{bottom:67.720000pt;}
.y25_c00159{bottom:67.986667pt;}
.y46_c00159{bottom:83.720000pt;}
.y24_c00159{bottom:84.520000pt;}
.y45_c00159{bottom:99.853333pt;}
.y23_c00159{bottom:100.386667pt;}
.y44_c00159{bottom:116.386667pt;}
.y22_c00159{bottom:116.653333pt;}
.y21_c00159{bottom:132.520000pt;}
.y43_c00159{bottom:132.786667pt;}
.y42_c00159{bottom:148.520000pt;}
.y20_c00159{bottom:150.253333pt;}
.y1f_c00159{bottom:164.920000pt;}
.y1e_c00159{bottom:180.786667pt;}
.y1d_c00159{bottom:197.320000pt;}
.y41_c00159{bottom:213.320000pt;}
.y1c_c00159{bottom:213.586667pt;}
.y1b_c00159{bottom:229.986667pt;}
.y40_c00159{bottom:245.986667pt;}
.y1a_c00159{bottom:246.253333pt;}
.y19_c00159{bottom:261.853333pt;}
.y3f_c00159{bottom:262.120000pt;}
.y18_c00159{bottom:277.986667pt;}
.y3e_c00159{bottom:278.386667pt;}
.y16_c00159{bottom:291.186667pt;}
.y17_c00159{bottom:294.520000pt;}
.y3d_c00159{bottom:294.786667pt;}
.y3c_c00159{bottom:310.520000pt;}
.y3b_c00159{bottom:326.920000pt;}
.y3a_c00159{bottom:343.186667pt;}
.y15_c00159{bottom:343.453333pt;}
.y14_c00159{bottom:359.586667pt;}
.y13_c00159{bottom:375.186667pt;}
.y39_c00159{bottom:375.320000pt;}
.y12_c00159{bottom:391.720000pt;}
.y38_c00159{bottom:407.720000pt;}
.y11_c00159{bottom:423.186667pt;}
.y37_c00159{bottom:424.120000pt;}
.y36_c00159{bottom:440.386667pt;}
.y10_c00159{bottom:455.320000pt;}
.y35_c00159{bottom:456.520000pt;}
.yf_c00159{bottom:471.586667pt;}
.y34_c00159{bottom:472.520000pt;}
.ye_c00159{bottom:488.120000pt;}
.y33_c00159{bottom:489.186667pt;}
.yd_c00159{bottom:504.520000pt;}
.y32_c00159{bottom:505.186667pt;}
.yc_c00159{bottom:521.053333pt;}
.y31_c00159{bottom:536.920000pt;}
.yb_c00159{bottom:538.120000pt;}
.y30_c00159{bottom:553.186667pt;}
.ya_c00159{bottom:553.453333pt;}
.y9_c00159{bottom:569.586667pt;}
.y2f_c00159{bottom:585.320000pt;}
.y8_c00159{bottom:586.520000pt;}
.y2e_c00159{bottom:601.986667pt;}
.y7_c00159{bottom:602.653333pt;}
.y2d_c00159{bottom:617.986667pt;}
.y6_c00159{bottom:618.653333pt;}
.y2c_c00159{bottom:634.120000pt;}
.y5_c00159{bottom:634.520000pt;}
.y4_c00159{bottom:650.386667pt;}
.y2b_c00159{bottom:650.653333pt;}
.y2a_c00159{bottom:666.520000pt;}
.y3_c00159{bottom:667.186667pt;}
.y29_c00159{bottom:682.520000pt;}
.y2_c00159{bottom:683.586667pt;}
.y28_c00159{bottom:699.320000pt;}
.y1_c00159{bottom:699.586667pt;}
.y27_c00159{bottom:716.386667pt;}
.h9_c00159{height:11.733399pt;}
.ha_c00159{height:38.937500pt;}
.h6_c00159{height:50.304000pt;}
.h3_c00159{height:55.893333pt;}
.h4_c00159{height:56.426667pt;}
.h2_c00159{height:56.906667pt;}
.h8_c00159{height:59.752000pt;}
.h5_c00159{height:69.376000pt;}
.h7_c00159{height:135.360000pt;}
.h1_c00159{height:748.000000pt;}
.h0_c00159{height:748.066667pt;}
.w2_c00159{width:93.222667pt;}
.w0_c00159{width:503.066667pt;}
.w1_c00159{width:503.333333pt;}
.x0_c00159{left:0.000000pt;}
.xa_c00159{left:45.200000pt;}
.xd_c00159{left:98.400000pt;}
.x1_c00159{left:100.400000pt;}
.x2_c00159{left:101.733333pt;}
.x9_c00159{left:102.800000pt;}
.xc_c00159{left:104.000000pt;}
.x5_c00159{left:116.400000pt;}
.x8_c00159{left:126.266667pt;}
.x6_c00159{left:133.200000pt;}
.x4_c00159{left:145.200000pt;}
.x7_c00159{left:162.000000pt;}
.x3_c00159{left:162.933333pt;}
.xb_c00159{left:166.133333pt;}
.x13_c00159{left:208.701538pt;}
.xf_c00159{left:290.933333pt;}
.x10_c00159{left:291.866667pt;}
.x11_c00159{left:293.200000pt;}
.xe_c00159{left:295.733333pt;}
.x12_c00159{left:450.666667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_38266c24181ebc8ad47441ce.woff2')format("woff");}.ff1_c00160{font-family:ff1_c00160;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00160;src:url('chunks/assets/font_f71ccb2425bdc1c63bda8a01.woff2')format("woff");}.ff2_c00160{font-family:ff2_c00160;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00160;src:url('chunks/assets/font_2e975ad5109cbdb4ea0a8297.woff2')format("woff");}.ff3_c00160{font-family:ff3_c00160;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00160;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff4_c00160{font-family:ff4_c00160;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00160{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00160{vertical-align:0.000000px;}
.ls1_c00160{letter-spacing:0.000000px;}
.ls0_c00160{letter-spacing:3.000000px;}
.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:-23.760000px;}
.ws2_c00160{word-spacing:-18.060000px;}
.ws0_c00160{word-spacing:-14.160000px;}
.ws4_c00160{word-spacing:0.000000px;}
.ws3_c00160{word-spacing:1.080000px;}
._27_c00160{margin-left:-16.800000px;}
._24_c00160{margin-left:-13.260000px;}
._1f_c00160{margin-left:-10.560000px;}
._13_c00160{margin-left:-8.100000px;}
._e_c00160{margin-left:-6.300000px;}
._f_c00160{margin-left:-4.740000px;}
._9_c00160{margin-left:-3.060000px;}
._4_c00160{margin-left:-1.860000px;}
._5_c00160{width:1.440000px;}
._a_c00160{width:2.640000px;}
._7_c00160{width:4.320000px;}
._c_c00160{width:5.580000px;}
._6_c00160{width:7.200000px;}
._8_c00160{width:8.760000px;}
._1_c00160{width:10.140000px;}
._16_c00160{width:11.460000px;}
._0_c00160{width:12.540000px;}
._3_c00160{width:14.160000px;}
._b_c00160{width:16.020000px;}
._d_c00160{width:18.240000px;}
._19_c00160{width:19.440000px;}
._17_c00160{width:20.580000px;}
._15_c00160{width:21.660000px;}
._22_c00160{width:22.800000px;}
._12_c00160{width:24.000000px;}
._25_c00160{width:25.080000px;}
._1e_c00160{width:26.100000px;}
._20_c00160{width:27.240000px;}
._11_c00160{width:28.980000px;}
._18_c00160{width:31.020000px;}
._1c_c00160{width:33.120000px;}
._1b_c00160{width:34.620000px;}
._1a_c00160{width:36.660000px;}
._10_c00160{width:39.120000px;}
._1d_c00160{width:40.320000px;}
._26_c00160{width:42.720000px;}
._28_c00160{width:43.860000px;}
._23_c00160{width:45.240000px;}
._2_c00160{width:49.140000px;}
._14_c00160{width:124.680000px;}
._29_c00160{width:179.340000px;}
._21_c00160{width:419.820000px;}
.fc2_c00160{color:transparent;}
.fc1_c00160{color:rgb(128,128,128);}
.fc0_c00160{color:rgb(0,0,0);}
.fs1_c00160{font-size:48.000000px;}
.fs0_c00160{font-size:60.000000px;}
.y0_c00160{bottom:0.000000px;}
.y50_c00160{bottom:3.105000px;}
.y4f_c00160{bottom:7.228363px;}
.y4e_c00160{bottom:31.350000px;}
.y4d_c00160{bottom:49.050000px;}
.y2a_c00160{bottom:49.950000px;}
.y29_c00160{bottom:69.150000px;}
.y4c_c00160{bottom:85.500000px;}
.y28_c00160{bottom:86.850000px;}
.y27_c00160{bottom:104.700000px;}
.y4b_c00160{bottom:105.300000px;}
.y4a_c00160{bottom:122.550000px;}
.y26_c00160{bottom:123.150000px;}
.y25_c00160{bottom:140.400000px;}
.y24_c00160{bottom:157.350000px;}
.y49_c00160{bottom:158.250000px;}
.y48_c00160{bottom:175.500000px;}
.y23_c00160{bottom:175.950000px;}
.y22_c00160{bottom:194.400000px;}
.y47_c00160{bottom:212.400000px;}
.y21_c00160{bottom:213.000000px;}
.y20_c00160{bottom:230.850000px;}
.y1f_c00160{bottom:249.150000px;}
.y46_c00160{bottom:266.700000px;}
.y1e_c00160{bottom:267.300000px;}
.y1d_c00160{bottom:284.550000px;}
.y45_c00160{bottom:285.300000px;}
.y1c_c00160{bottom:302.400000px;}
.y44_c00160{bottom:303.450000px;}
.y1b_c00160{bottom:320.700000px;}
.y43_c00160{bottom:321.300000px;}
.y1a_c00160{bottom:339.150000px;}
.y42_c00160{bottom:339.300000px;}
.y19_c00160{bottom:357.450000px;}
.y18_c00160{bottom:375.600000px;}
.y17_c00160{bottom:393.150000px;}
.y41_c00160{bottom:393.600000px;}
.y16_c00160{bottom:411.750000px;}
.y40_c00160{bottom:412.050000px;}
.y15_c00160{bottom:429.000000px;}
.y3f_c00160{bottom:429.750000px;}
.y3e_c00160{bottom:447.600000px;}
.y14_c00160{bottom:447.900000px;}
.y13_c00160{bottom:465.150000px;}
.y3d_c00160{bottom:466.200000px;}
.y12_c00160{bottom:483.300000px;}
.y3c_c00160{bottom:484.050000px;}
.y11_c00160{bottom:500.250000px;}
.y3b_c00160{bottom:502.200000px;}
.y10_c00160{bottom:518.850000px;}
.y3a_c00160{bottom:520.200000px;}
.yf_c00160{bottom:536.700000px;}
.y39_c00160{bottom:538.350000px;}
.ye_c00160{bottom:554.550000px;}
.y38_c00160{bottom:556.200000px;}
.yd_c00160{bottom:572.700000px;}
.y37_c00160{bottom:574.050000px;}
.yc_c00160{bottom:590.400000px;}
.y36_c00160{bottom:592.050000px;}
.yb_c00160{bottom:608.250000px;}
.y35_c00160{bottom:609.900000px;}
.ya_c00160{bottom:626.100000px;}
.y34_c00160{bottom:628.200000px;}
.y9_c00160{bottom:644.250000px;}
.y33_c00160{bottom:646.650000px;}
.y8_c00160{bottom:661.950000px;}
.y32_c00160{bottom:664.200000px;}
.y7_c00160{bottom:680.400000px;}
.y31_c00160{bottom:682.200000px;}
.y6_c00160{bottom:697.950000px;}
.y30_c00160{bottom:700.050000px;}
.y5_c00160{bottom:715.800000px;}
.y2f_c00160{bottom:718.500000px;}
.y4_c00160{bottom:733.800000px;}
.y2e_c00160{bottom:736.050000px;}
.y3_c00160{bottom:752.250000px;}
.y2d_c00160{bottom:754.650000px;}
.y2_c00160{bottom:770.850000px;}
.y2c_c00160{bottom:772.650000px;}
.y1_c00160{bottom:790.800000px;}
.y2b_c00160{bottom:791.850000px;}
.h3_c00160{height:13.200074px;}
.h4_c00160{height:43.804688px;}
.h2_c00160{height:62.880000px;}
.h1_c00160{height:820.500000px;}
.h0_c00160{height:820.800000px;}
.w2_c00160{width:104.875500px;}
.w1_c00160{width:578.250000px;}
.w0_c00160{width:578.325000px;}
.x0_c00160{left:0.000000px;}
.x3_c00160{left:7.200000px;}
.x5_c00160{left:9.750000px;}
.x4_c00160{left:27.900000px;}
.x7_c00160{left:60.000000px;}
.xb_c00160{left:65.550000px;}
.xa_c00160{left:66.600000px;}
.x2_c00160{left:67.800000px;}
.x6_c00160{left:69.450000px;}
.x8_c00160{left:71.100000px;}
.x9_c00160{left:116.100000px;}
.x1_c00160{left:196.650000px;}
.x12_c00160{left:240.976730px;}
.xc_c00160{left:275.850000px;}
.x10_c00160{left:279.750000px;}
.xd_c00160{left:284.250000px;}
.xf_c00160{left:285.600000px;}
.xe_c00160{left:299.400000px;}
.x11_c00160{left:378.900000px;}
@media print{
.v0_c00160{vertical-align:0.000000pt;}
.ls1_c00160{letter-spacing:0.000000pt;}
.ls0_c00160{letter-spacing:2.666667pt;}
.ws1_c00160{word-spacing:-21.120000pt;}
.ws2_c00160{word-spacing:-16.053333pt;}
.ws0_c00160{word-spacing:-12.586667pt;}
.ws4_c00160{word-spacing:0.000000pt;}
.ws3_c00160{word-spacing:0.960000pt;}
._27_c00160{margin-left:-14.933333pt;}
._24_c00160{margin-left:-11.786667pt;}
._1f_c00160{margin-left:-9.386667pt;}
._13_c00160{margin-left:-7.200000pt;}
._e_c00160{margin-left:-5.600000pt;}
._f_c00160{margin-left:-4.213333pt;}
._9_c00160{margin-left:-2.720000pt;}
._4_c00160{margin-left:-1.653333pt;}
._5_c00160{width:1.280000pt;}
._a_c00160{width:2.346667pt;}
._7_c00160{width:3.840000pt;}
._c_c00160{width:4.960000pt;}
._6_c00160{width:6.400000pt;}
._8_c00160{width:7.786667pt;}
._1_c00160{width:9.013333pt;}
._16_c00160{width:10.186667pt;}
._0_c00160{width:11.146667pt;}
._3_c00160{width:12.586667pt;}
._b_c00160{width:14.240000pt;}
._d_c00160{width:16.213333pt;}
._19_c00160{width:17.280000pt;}
._17_c00160{width:18.293333pt;}
._15_c00160{width:19.253333pt;}
._22_c00160{width:20.266667pt;}
._12_c00160{width:21.333333pt;}
._25_c00160{width:22.293333pt;}
._1e_c00160{width:23.200000pt;}
._20_c00160{width:24.213333pt;}
._11_c00160{width:25.760000pt;}
._18_c00160{width:27.573333pt;}
._1c_c00160{width:29.440000pt;}
._1b_c00160{width:30.773333pt;}
._1a_c00160{width:32.586667pt;}
._10_c00160{width:34.773333pt;}
._1d_c00160{width:35.840000pt;}
._26_c00160{width:37.973333pt;}
._28_c00160{width:38.986667pt;}
._23_c00160{width:40.213333pt;}
._2_c00160{width:43.680000pt;}
._14_c00160{width:110.826667pt;}
._29_c00160{width:159.413333pt;}
._21_c00160{width:373.173333pt;}
.fs1_c00160{font-size:42.666667pt;}
.fs0_c00160{font-size:53.333333pt;}
.y0_c00160{bottom:0.000000pt;}
.y50_c00160{bottom:2.760000pt;}
.y4f_c00160{bottom:6.425212pt;}
.y4e_c00160{bottom:27.866667pt;}
.y4d_c00160{bottom:43.600000pt;}
.y2a_c00160{bottom:44.400000pt;}
.y29_c00160{bottom:61.466667pt;}
.y4c_c00160{bottom:76.000000pt;}
.y28_c00160{bottom:77.200000pt;}
.y27_c00160{bottom:93.066667pt;}
.y4b_c00160{bottom:93.600000pt;}
.y4a_c00160{bottom:108.933333pt;}
.y26_c00160{bottom:109.466667pt;}
.y25_c00160{bottom:124.800000pt;}
.y24_c00160{bottom:139.866667pt;}
.y49_c00160{bottom:140.666667pt;}
.y48_c00160{bottom:156.000000pt;}
.y23_c00160{bottom:156.400000pt;}
.y22_c00160{bottom:172.800000pt;}
.y47_c00160{bottom:188.800000pt;}
.y21_c00160{bottom:189.333333pt;}
.y20_c00160{bottom:205.200000pt;}
.y1f_c00160{bottom:221.466667pt;}
.y46_c00160{bottom:237.066667pt;}
.y1e_c00160{bottom:237.600000pt;}
.y1d_c00160{bottom:252.933333pt;}
.y45_c00160{bottom:253.600000pt;}
.y1c_c00160{bottom:268.800000pt;}
.y44_c00160{bottom:269.733333pt;}
.y1b_c00160{bottom:285.066667pt;}
.y43_c00160{bottom:285.600000pt;}
.y1a_c00160{bottom:301.466667pt;}
.y42_c00160{bottom:301.600000pt;}
.y19_c00160{bottom:317.733333pt;}
.y18_c00160{bottom:333.866667pt;}
.y17_c00160{bottom:349.466667pt;}
.y41_c00160{bottom:349.866667pt;}
.y16_c00160{bottom:366.000000pt;}
.y40_c00160{bottom:366.266667pt;}
.y15_c00160{bottom:381.333333pt;}
.y3f_c00160{bottom:382.000000pt;}
.y3e_c00160{bottom:397.866667pt;}
.y14_c00160{bottom:398.133333pt;}
.y13_c00160{bottom:413.466667pt;}
.y3d_c00160{bottom:414.400000pt;}
.y12_c00160{bottom:429.600000pt;}
.y3c_c00160{bottom:430.266667pt;}
.y11_c00160{bottom:444.666667pt;}
.y3b_c00160{bottom:446.400000pt;}
.y10_c00160{bottom:461.200000pt;}
.y3a_c00160{bottom:462.400000pt;}
.yf_c00160{bottom:477.066667pt;}
.y39_c00160{bottom:478.533333pt;}
.ye_c00160{bottom:492.933333pt;}
.y38_c00160{bottom:494.400000pt;}
.yd_c00160{bottom:509.066667pt;}
.y37_c00160{bottom:510.266667pt;}
.yc_c00160{bottom:524.800000pt;}
.y36_c00160{bottom:526.266667pt;}
.yb_c00160{bottom:540.666667pt;}
.y35_c00160{bottom:542.133333pt;}
.ya_c00160{bottom:556.533333pt;}
.y34_c00160{bottom:558.400000pt;}
.y9_c00160{bottom:572.666667pt;}
.y33_c00160{bottom:574.800000pt;}
.y8_c00160{bottom:588.400000pt;}
.y32_c00160{bottom:590.400000pt;}
.y7_c00160{bottom:604.800000pt;}
.y31_c00160{bottom:606.400000pt;}
.y6_c00160{bottom:620.400000pt;}
.y30_c00160{bottom:622.266667pt;}
.y5_c00160{bottom:636.266667pt;}
.y2f_c00160{bottom:638.666667pt;}
.y4_c00160{bottom:652.266667pt;}
.y2e_c00160{bottom:654.266667pt;}
.y3_c00160{bottom:668.666667pt;}
.y2d_c00160{bottom:670.800000pt;}
.y2_c00160{bottom:685.200000pt;}
.y2c_c00160{bottom:686.800000pt;}
.y1_c00160{bottom:702.933333pt;}
.y2b_c00160{bottom:703.866667pt;}
.h3_c00160{height:11.733399pt;}
.h4_c00160{height:38.937500pt;}
.h2_c00160{height:55.893333pt;}
.h1_c00160{height:729.333333pt;}
.h0_c00160{height:729.600000pt;}
.w2_c00160{width:93.222667pt;}
.w1_c00160{width:514.000000pt;}
.w0_c00160{width:514.066667pt;}
.x0_c00160{left:0.000000pt;}
.x3_c00160{left:6.400000pt;}
.x5_c00160{left:8.666667pt;}
.x4_c00160{left:24.800000pt;}
.x7_c00160{left:53.333333pt;}
.xb_c00160{left:58.266667pt;}
.xa_c00160{left:59.200000pt;}
.x2_c00160{left:60.266667pt;}
.x6_c00160{left:61.733333pt;}
.x8_c00160{left:63.200000pt;}
.x9_c00160{left:103.200000pt;}
.x1_c00160{left:174.800000pt;}
.x12_c00160{left:214.201538pt;}
.xc_c00160{left:245.200000pt;}
.x10_c00160{left:248.666667pt;}
.xd_c00160{left:252.666667pt;}
.xf_c00160{left:253.866667pt;}
.xe_c00160{left:266.133333pt;}
.x11_c00160{left:336.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_2406cdfb38ceb5f509b878e2.woff2')format("woff");}.ff1_c00161{font-family:ff1_c00161;line-height:1.437000;font-style:normal;font-weight:normal;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_cb39b0250888ac16645313be.woff2')format("woff");}.ff2_c00161{font-family:ff2_c00161;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00161;src:url('chunks/assets/font_5370dbba17adff2d42eae92f.woff2')format("woff");}.ff3_c00161{font-family:ff3_c00161;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00161;src:url('chunks/assets/font_c28bd3c8b166592449f2947b.woff2')format("woff");}.ff4_c00161{font-family:ff4_c00161;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00161;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff5_c00161{font-family:ff5_c00161;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00161{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00161{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.v0_c00161{vertical-align:0.000000px;}
.v1_c00161{vertical-align:78.000000px;}
.ls5_c00161{letter-spacing:0.000000px;}
.ls0_c00161{letter-spacing:3.000000px;}
.ls1_c00161{letter-spacing:3.237000px;}
.ls4_c00161{letter-spacing:17.340000px;}
.ls3_c00161{letter-spacing:19.140000px;}
.ls2_c00161{letter-spacing:55.860000px;}
.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;}
}
.ws1_c00161{word-spacing:-22.074000px;}
.ws4_c00161{word-spacing:-18.060000px;}
.ws0_c00161{word-spacing:-17.340000px;}
.ws3_c00161{word-spacing:-14.160000px;}
.ws5_c00161{word-spacing:0.000000px;}
.ws2_c00161{word-spacing:0.660000px;}
._20_c00161{margin-left:-12.420000px;}
._1e_c00161{margin-left:-11.280000px;}
._17_c00161{margin-left:-9.804000px;}
._14_c00161{margin-left:-8.760000px;}
._11_c00161{margin-left:-6.900000px;}
._d_c00161{margin-left:-5.700000px;}
._e_c00161{margin-left:-4.020000px;}
._c_c00161{margin-left:-2.100000px;}
._1a_c00161{margin-left:-1.080000px;}
._b_c00161{width:1.440000px;}
._a_c00161{width:2.940000px;}
._16_c00161{width:4.260000px;}
._f_c00161{width:5.460000px;}
._24_c00161{width:6.480000px;}
._0_c00161{width:7.500000px;}
._19_c00161{width:9.060000px;}
._1_c00161{width:10.980000px;}
._13_c00161{width:12.240000px;}
._3_c00161{width:13.380000px;}
._21_c00161{width:14.400000px;}
._4_c00161{width:15.480000px;}
._15_c00161{width:17.100000px;}
._7_c00161{width:18.540000px;}
._6_c00161{width:20.460000px;}
._12_c00161{width:22.140000px;}
._5_c00161{width:23.160000px;}
._18_c00161{width:24.252000px;}
._9_c00161{width:25.920000px;}
._1d_c00161{width:27.300000px;}
._1b_c00161{width:29.940000px;}
._1c_c00161{width:31.860000px;}
._1f_c00161{width:35.880000px;}
._8_c00161{width:37.860000px;}
._25_c00161{width:40.260000px;}
._23_c00161{width:42.900000px;}
._10_c00161{width:70.920000px;}
._22_c00161{width:107.580000px;}
._26_c00161{width:128.940000px;}
._2_c00161{width:336.960000px;}
.fc2_c00161{color:transparent;}
.fc1_c00161{color:rgb(128,128,128);}
.fc0_c00161{color:rgb(0,0,0);}
.fs3_c00161{font-size:48.000000px;}
.fs0_c00161{font-size:60.000000px;}
.fs2_c00161{font-size:66.000000px;}
.fs1_c00161{font-size:213.000000px;}
.y0_c00161{bottom:0.000000px;}
.y52_c00161{bottom:3.105000px;}
.y51_c00161{bottom:7.228355px;}
.y50_c00161{bottom:37.785000px;}
.y4f_c00161{bottom:56.385000px;}
.y27_c00161{bottom:59.985000px;}
.y4e_c00161{bottom:74.535000px;}
.y26_c00161{bottom:78.585000px;}
.y4d_c00161{bottom:93.435000px;}
.y25_c00161{bottom:96.735000px;}
.y4c_c00161{bottom:111.735000px;}
.y24_c00161{bottom:115.785000px;}
.y4b_c00161{bottom:130.185000px;}
.y23_c00161{bottom:133.335000px;}
.y4a_c00161{bottom:148.035000px;}
.y22_c00161{bottom:151.785000px;}
.y49_c00161{bottom:166.035000px;}
.y21_c00161{bottom:170.085000px;}
.y48_c00161{bottom:184.485000px;}
.y20_c00161{bottom:188.685000px;}
.y47_c00161{bottom:202.785000px;}
.y1f_c00161{bottom:206.235000px;}
.y46_c00161{bottom:220.935000px;}
.y1e_c00161{bottom:224.685000px;}
.y45_c00161{bottom:239.085000px;}
.y1d_c00161{bottom:242.685000px;}
.y44_c00161{bottom:257.385000px;}
.y1c_c00161{bottom:260.835000px;}
.y43_c00161{bottom:275.685000px;}
.y1b_c00161{bottom:278.985000px;}
.y42_c00161{bottom:293.535000px;}
.y1a_c00161{bottom:296.685000px;}
.y41_c00161{bottom:311.385000px;}
.y19_c00161{bottom:314.835000px;}
.y40_c00161{bottom:329.685000px;}
.y18_c00161{bottom:333.435000px;}
.y3f_c00161{bottom:347.985000px;}
.y17_c00161{bottom:350.535000px;}
.y3e_c00161{bottom:365.835000px;}
.y16_c00161{bottom:369.585000px;}
.y3d_c00161{bottom:384.435000px;}
.y15_c00161{bottom:386.985000px;}
.y3c_c00161{bottom:402.885000px;}
.y14_c00161{bottom:405.585000px;}
.y3b_c00161{bottom:420.735000px;}
.y13_c00161{bottom:423.585000px;}
.y3a_c00161{bottom:438.735000px;}
.y12_c00161{bottom:442.485000px;}
.y39_c00161{bottom:457.185000px;}
.y11_c00161{bottom:460.035000px;}
.y38_c00161{bottom:475.485000px;}
.y10_c00161{bottom:478.785000px;}
.y37_c00161{bottom:492.735000px;}
.yf_c00161{bottom:496.335000px;}
.y36_c00161{bottom:511.185000px;}
.ye_c00161{bottom:514.935000px;}
.y35_c00161{bottom:529.485000px;}
.yd_c00161{bottom:532.935000px;}
.y34_c00161{bottom:548.085000px;}
.yc_c00161{bottom:550.335000px;}
.y33_c00161{bottom:565.935000px;}
.yb_c00161{bottom:568.935000px;}
.y32_c00161{bottom:583.785000px;}
.y9_c00161{bottom:585.585000px;}
.ya_c00161{bottom:586.485000px;}
.y31_c00161{bottom:602.685000px;}
.y30_c00161{bottom:620.235000px;}
.y2f_c00161{bottom:638.535000px;}
.y8_c00161{bottom:641.835000px;}
.y2e_c00161{bottom:656.385000px;}
.y7_c00161{bottom:659.835000px;}
.y2d_c00161{bottom:674.235000px;}
.y6_c00161{bottom:678.285000px;}
.y2c_c00161{bottom:692.235000px;}
.y2b_c00161{bottom:710.385000px;}
.y5_c00161{bottom:712.785000px;}
.y2a_c00161{bottom:728.985000px;}
.y29_c00161{bottom:746.835000px;}
.y4_c00161{bottom:750.885000px;}
.y28_c00161{bottom:765.135000px;}
.y3_c00161{bottom:769.035000px;}
.y2_c00161{bottom:785.385000px;}
.y1_c00161{bottom:805.635000px;}
.h5_c00161{height:13.200074px;}
.h6_c00161{height:43.804688px;}
.h2_c00161{height:62.880000px;}
.h4_c00161{height:70.422000px;}
.h3_c00161{height:223.224000px;}
.h1_c00161{height:841.500000px;}
.h0_c00161{height:841.575000px;}
.w2_c00161{width:104.875500px;}
.w0_c00161{width:565.950000px;}
.w1_c00161{width:566.250000px;}
.x0_c00161{left:0.000000px;}
.x9_c00161{left:37.050000px;}
.x8_c00161{left:100.500000px;}
.x2_c00161{left:101.550000px;}
.x6_c00161{left:103.050000px;}
.x1_c00161{left:104.550000px;}
.x4_c00161{left:120.600000px;}
.x7_c00161{left:126.900000px;}
.x5_c00161{left:156.900000px;}
.x3_c00161{left:198.150000px;}
.x10_c00161{left:234.789230px;}
.xd_c00161{left:313.800000px;}
.xe_c00161{left:316.200000px;}
.xa_c00161{left:317.250000px;}
.xb_c00161{left:318.600000px;}
.xc_c00161{left:319.950000px;}
.xf_c00161{left:481.500000px;}
@media print{
.v0_c00161{vertical-align:0.000000pt;}
.v1_c00161{vertical-align:69.333333pt;}
.ls5_c00161{letter-spacing:0.000000pt;}
.ls0_c00161{letter-spacing:2.666667pt;}
.ls1_c00161{letter-spacing:2.877333pt;}
.ls4_c00161{letter-spacing:15.413333pt;}
.ls3_c00161{letter-spacing:17.013333pt;}
.ls2_c00161{letter-spacing:49.653333pt;}
.ws1_c00161{word-spacing:-19.621333pt;}
.ws4_c00161{word-spacing:-16.053333pt;}
.ws0_c00161{word-spacing:-15.413333pt;}
.ws3_c00161{word-spacing:-12.586667pt;}
.ws5_c00161{word-spacing:0.000000pt;}
.ws2_c00161{word-spacing:0.586667pt;}
._20_c00161{margin-left:-11.040000pt;}
._1e_c00161{margin-left:-10.026667pt;}
._17_c00161{margin-left:-8.714667pt;}
._14_c00161{margin-left:-7.786667pt;}
._11_c00161{margin-left:-6.133333pt;}
._d_c00161{margin-left:-5.066667pt;}
._e_c00161{margin-left:-3.573333pt;}
._c_c00161{margin-left:-1.866667pt;}
._1a_c00161{margin-left:-0.960000pt;}
._b_c00161{width:1.280000pt;}
._a_c00161{width:2.613333pt;}
._16_c00161{width:3.786667pt;}
._f_c00161{width:4.853333pt;}
._24_c00161{width:5.760000pt;}
._0_c00161{width:6.666667pt;}
._19_c00161{width:8.053333pt;}
._1_c00161{width:9.760000pt;}
._13_c00161{width:10.880000pt;}
._3_c00161{width:11.893333pt;}
._21_c00161{width:12.800000pt;}
._4_c00161{width:13.760000pt;}
._15_c00161{width:15.200000pt;}
._7_c00161{width:16.480000pt;}
._6_c00161{width:18.186667pt;}
._12_c00161{width:19.680000pt;}
._5_c00161{width:20.586667pt;}
._18_c00161{width:21.557333pt;}
._9_c00161{width:23.040000pt;}
._1d_c00161{width:24.266667pt;}
._1b_c00161{width:26.613333pt;}
._1c_c00161{width:28.320000pt;}
._1f_c00161{width:31.893333pt;}
._8_c00161{width:33.653333pt;}
._25_c00161{width:35.786667pt;}
._23_c00161{width:38.133333pt;}
._10_c00161{width:63.040000pt;}
._22_c00161{width:95.626667pt;}
._26_c00161{width:114.613333pt;}
._2_c00161{width:299.520000pt;}
.fs3_c00161{font-size:42.666667pt;}
.fs0_c00161{font-size:53.333333pt;}
.fs2_c00161{font-size:58.666667pt;}
.fs1_c00161{font-size:189.333333pt;}
.y0_c00161{bottom:0.000000pt;}
.y52_c00161{bottom:2.760000pt;}
.y51_c00161{bottom:6.425204pt;}
.y50_c00161{bottom:33.586667pt;}
.y4f_c00161{bottom:50.120000pt;}
.y27_c00161{bottom:53.320000pt;}
.y4e_c00161{bottom:66.253333pt;}
.y26_c00161{bottom:69.853333pt;}
.y4d_c00161{bottom:83.053333pt;}
.y25_c00161{bottom:85.986667pt;}
.y4c_c00161{bottom:99.320000pt;}
.y24_c00161{bottom:102.920000pt;}
.y4b_c00161{bottom:115.720000pt;}
.y23_c00161{bottom:118.520000pt;}
.y4a_c00161{bottom:131.586667pt;}
.y22_c00161{bottom:134.920000pt;}
.y49_c00161{bottom:147.586667pt;}
.y21_c00161{bottom:151.186667pt;}
.y48_c00161{bottom:163.986667pt;}
.y20_c00161{bottom:167.720000pt;}
.y47_c00161{bottom:180.253333pt;}
.y1f_c00161{bottom:183.320000pt;}
.y46_c00161{bottom:196.386667pt;}
.y1e_c00161{bottom:199.720000pt;}
.y45_c00161{bottom:212.520000pt;}
.y1d_c00161{bottom:215.720000pt;}
.y44_c00161{bottom:228.786667pt;}
.y1c_c00161{bottom:231.853333pt;}
.y43_c00161{bottom:245.053333pt;}
.y1b_c00161{bottom:247.986667pt;}
.y42_c00161{bottom:260.920000pt;}
.y1a_c00161{bottom:263.720000pt;}
.y41_c00161{bottom:276.786667pt;}
.y19_c00161{bottom:279.853333pt;}
.y40_c00161{bottom:293.053333pt;}
.y18_c00161{bottom:296.386667pt;}
.y3f_c00161{bottom:309.320000pt;}
.y17_c00161{bottom:311.586667pt;}
.y3e_c00161{bottom:325.186667pt;}
.y16_c00161{bottom:328.520000pt;}
.y3d_c00161{bottom:341.720000pt;}
.y15_c00161{bottom:343.986667pt;}
.y3c_c00161{bottom:358.120000pt;}
.y14_c00161{bottom:360.520000pt;}
.y3b_c00161{bottom:373.986667pt;}
.y13_c00161{bottom:376.520000pt;}
.y3a_c00161{bottom:389.986667pt;}
.y12_c00161{bottom:393.320000pt;}
.y39_c00161{bottom:406.386667pt;}
.y11_c00161{bottom:408.920000pt;}
.y38_c00161{bottom:422.653333pt;}
.y10_c00161{bottom:425.586667pt;}
.y37_c00161{bottom:437.986667pt;}
.yf_c00161{bottom:441.186667pt;}
.y36_c00161{bottom:454.386667pt;}
.ye_c00161{bottom:457.720000pt;}
.y35_c00161{bottom:470.653333pt;}
.yd_c00161{bottom:473.720000pt;}
.y34_c00161{bottom:487.186667pt;}
.yc_c00161{bottom:489.186667pt;}
.y33_c00161{bottom:503.053333pt;}
.yb_c00161{bottom:505.720000pt;}
.y32_c00161{bottom:518.920000pt;}
.y9_c00161{bottom:520.520000pt;}
.ya_c00161{bottom:521.320000pt;}
.y31_c00161{bottom:535.720000pt;}
.y30_c00161{bottom:551.320000pt;}
.y2f_c00161{bottom:567.586667pt;}
.y8_c00161{bottom:570.520000pt;}
.y2e_c00161{bottom:583.453333pt;}
.y7_c00161{bottom:586.520000pt;}
.y2d_c00161{bottom:599.320000pt;}
.y6_c00161{bottom:602.920000pt;}
.y2c_c00161{bottom:615.320000pt;}
.y2b_c00161{bottom:631.453333pt;}
.y5_c00161{bottom:633.586667pt;}
.y2a_c00161{bottom:647.986667pt;}
.y29_c00161{bottom:663.853333pt;}
.y4_c00161{bottom:667.453333pt;}
.y28_c00161{bottom:680.120000pt;}
.y3_c00161{bottom:683.586667pt;}
.y2_c00161{bottom:698.120000pt;}
.y1_c00161{bottom:716.120000pt;}
.h5_c00161{height:11.733399pt;}
.h6_c00161{height:38.937500pt;}
.h2_c00161{height:55.893333pt;}
.h4_c00161{height:62.597333pt;}
.h3_c00161{height:198.421333pt;}
.h1_c00161{height:748.000000pt;}
.h0_c00161{height:748.066667pt;}
.w2_c00161{width:93.222667pt;}
.w0_c00161{width:503.066667pt;}
.w1_c00161{width:503.333333pt;}
.x0_c00161{left:0.000000pt;}
.x9_c00161{left:32.933333pt;}
.x8_c00161{left:89.333333pt;}
.x2_c00161{left:90.266667pt;}
.x6_c00161{left:91.600000pt;}
.x1_c00161{left:92.933333pt;}
.x4_c00161{left:107.200000pt;}
.x7_c00161{left:112.800000pt;}
.x5_c00161{left:139.466667pt;}
.x3_c00161{left:176.133333pt;}
.x10_c00161{left:208.701538pt;}
.xd_c00161{left:278.933333pt;}
.xe_c00161{left:281.066667pt;}
.xa_c00161{left:282.000000pt;}
.xb_c00161{left:283.200000pt;}
.xc_c00161{left:284.400000pt;}
.xf_c00161{left:428.000000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_85b90e9a62768d4b4c57707d.woff2')format("woff");}.ff1_c00162{font-family:ff1_c00162;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00162;src:url('chunks/assets/font_018df275d77834bbbf28435e.woff2')format("woff");}.ff2_c00162{font-family:ff2_c00162;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00162;src:url('chunks/assets/font_c0ce8d296fca3d01023924c7.woff2')format("woff");}.ff3_c00162{font-family:ff3_c00162;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00162;src:url('chunks/assets/font_117ae9e412cae1dc8d4ef180.woff2')format("woff");}.ff4_c00162{font-family:ff4_c00162;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00162;src:url('chunks/assets/font_dda8eb1d96e0124b8c3807b5.woff2')format("woff");}.ff5_c00162{font-family:ff5_c00162;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00162;src:url('chunks/assets/font_08461d5b215b3d6c8d1762b3.woff2')format("woff");}.ff6_c00162{font-family:ff6_c00162;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00162;src:url('chunks/assets/font_b2dc36f019fae769f615a32f.woff2')format("woff");}.ff7_c00162{font-family:ff7_c00162;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00162;src:url('chunks/assets/font_3981cc01421919c929a42b57.woff2')format("woff");}.ff8_c00162{font-family:ff8_c00162;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00162;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff9_c00162{font-family:ff9_c00162;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00162{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00162{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.v0_c00162{vertical-align:0.000000px;}
.ls3_c00162{letter-spacing:0.000000px;}
.ls2_c00162{letter-spacing:1.005000px;}
.ls0_c00162{letter-spacing:3.000000px;}
.ls4_c00162{letter-spacing:6.000000px;}
.ls1_c00162{letter-spacing:7.740000px;}
.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;}
}
.ws2_c00162{word-spacing:-21.000000px;}
.ws0_c00162{word-spacing:-19.500000px;}
.ws3_c00162{word-spacing:-18.060000px;}
.ws4_c00162{word-spacing:-16.500000px;}
.ws1_c00162{word-spacing:-14.160000px;}
.ws5_c00162{word-spacing:0.000000px;}
._8_c00162{margin-left:-21.120000px;}
._23_c00162{margin-left:-13.920000px;}
._26_c00162{margin-left:-12.093000px;}
._2b_c00162{margin-left:-10.260000px;}
._18_c00162{margin-left:-9.240000px;}
._12_c00162{margin-left:-7.560000px;}
._15_c00162{margin-left:-6.360000px;}
._f_c00162{margin-left:-4.440000px;}
._10_c00162{margin-left:-3.060000px;}
._a_c00162{margin-left:-1.980000px;}
._d_c00162{width:1.380000px;}
._c_c00162{width:2.400000px;}
._1e_c00162{width:3.420000px;}
._e_c00162{width:4.440000px;}
._19_c00162{width:5.613000px;}
._6_c00162{width:7.140000px;}
._16_c00162{width:8.244000px;}
._1_c00162{width:10.260000px;}
._1c_c00162{width:11.340000px;}
._5_c00162{width:12.780000px;}
._0_c00162{width:14.700000px;}
._3_c00162{width:15.960000px;}
._b_c00162{width:19.080000px;}
._20_c00162{width:20.160000px;}
._4_c00162{width:21.180000px;}
._14_c00162{width:22.320000px;}
._29_c00162{width:23.574000px;}
._25_c00162{width:25.320000px;}
._2_c00162{width:27.060000px;}
._13_c00162{width:29.160000px;}
._27_c00162{width:30.240000px;}
._1d_c00162{width:33.705000px;}
._22_c00162{width:35.820000px;}
._1f_c00162{width:37.275000px;}
._2d_c00162{width:38.820000px;}
._21_c00162{width:41.760000px;}
._28_c00162{width:43.014000px;}
._1a_c00162{width:44.361000px;}
._30_c00162{width:45.471000px;}
._24_c00162{width:47.520000px;}
._31_c00162{width:61.737000px;}
._2f_c00162{width:63.060000px;}
._2a_c00162{width:67.920000px;}
._17_c00162{width:75.480000px;}
._11_c00162{width:77.940000px;}
._7_c00162{width:89.760000px;}
._1b_c00162{width:96.300000px;}
._33_c00162{width:178.020000px;}
._2e_c00162{width:203.820000px;}
._9_c00162{width:302.460000px;}
._2c_c00162{width:314.340000px;}
._32_c00162{width:871.380000px;}
.fc2_c00162{color:transparent;}
.fc1_c00162{color:rgb(128,128,128);}
.fc0_c00162{color:rgb(0,0,0);}
.fs5_c00162{font-size:24.000000px;}
.fs4_c00162{font-size:45.000000px;}
.fs6_c00162{font-size:48.000000px;}
.fs2_c00162{font-size:54.000000px;}
.fs0_c00162{font-size:60.000000px;}
.fs3_c00162{font-size:63.000000px;}
.fs1_c00162{font-size:66.000000px;}
.y0_c00162{bottom:0.000000px;}
.y4f_c00162{bottom:3.105000px;}
.y4e_c00162{bottom:7.228371px;}
.y48_c00162{bottom:40.815000px;}
.y47_c00162{bottom:60.765000px;}
.y46_c00162{bottom:78.765000px;}
.y45_c00162{bottom:96.165000px;}
.y4d_c00162{bottom:97.515000px;}
.y44_c00162{bottom:114.465000px;}
.y4c_c00162{bottom:115.215000px;}
.y43_c00162{bottom:131.415000px;}
.y4b_c00162{bottom:133.365000px;}
.y42_c00162{bottom:149.865000px;}
.y4a_c00162{bottom:150.615000px;}
.y41_c00162{bottom:167.865000px;}
.y49_c00162{bottom:168.465000px;}
.y40_c00162{bottom:186.615000px;}
.y3f_c00162{bottom:203.565000px;}
.y3e_c00162{bottom:222.165000px;}
.y22_c00162{bottom:222.765000px;}
.y3d_c00162{bottom:240.615000px;}
.y21_c00162{bottom:240.765000px;}
.y20_c00162{bottom:258.315000px;}
.y3c_c00162{bottom:276.465000px;}
.y1f_c00162{bottom:277.215000px;}
.y1e_c00162{bottom:294.615000px;}
.y3b_c00162{bottom:294.765000px;}
.y4_c00162{bottom:312.615000px;}
.y3a_c00162{bottom:312.915000px;}
.y1d_c00162{bottom:313.665000px;}
.y39_c00162{bottom:330.465000px;}
.y1c_c00162{bottom:331.515000px;}
.y38_c00162{bottom:349.065000px;}
.y1b_c00162{bottom:349.665000px;}
.y37_c00162{bottom:367.215000px;}
.y1a_c00162{bottom:367.515000px;}
.y19_c00162{bottom:385.515000px;}
.y18_c00162{bottom:403.965000px;}
.y36_c00162{bottom:404.115000px;}
.y17_c00162{bottom:422.265000px;}
.y35_c00162{bottom:422.565000px;}
.y16_c00162{bottom:440.115000px;}
.y34_c00162{bottom:440.265000px;}
.y15_c00162{bottom:457.965000px;}
.y33_c00162{bottom:458.415000px;}
.y32_c00162{bottom:476.565000px;}
.y14_c00162{bottom:476.865000px;}
.y13_c00162{bottom:493.065000px;}
.y31_c00162{bottom:495.165000px;}
.y12_c00162{bottom:512.415000px;}
.y30_c00162{bottom:513.315000px;}
.y11_c00162{bottom:530.265000px;}
.y2f_c00162{bottom:530.865000px;}
.y10_c00162{bottom:548.415000px;}
.y2e_c00162{bottom:549.465000px;}
.yf_c00162{bottom:566.115000px;}
.y2d_c00162{bottom:567.465000px;}
.ye_c00162{bottom:584.565000px;}
.y2c_c00162{bottom:586.215000px;}
.yd_c00162{bottom:602.565000px;}
.y2b_c00162{bottom:603.165000px;}
.yc_c00162{bottom:620.715000px;}
.y2a_c00162{bottom:622.065000px;}
.yb_c00162{bottom:639.315000px;}
.y29_c00162{bottom:640.215000px;}
.ya_c00162{bottom:656.865000px;}
.y28_c00162{bottom:657.915000px;}
.y9_c00162{bottom:675.015000px;}
.y27_c00162{bottom:676.665000px;}
.y8_c00162{bottom:692.865000px;}
.y26_c00162{bottom:694.215000px;}
.y7_c00162{bottom:710.565000px;}
.y25_c00162{bottom:712.215000px;}
.y6_c00162{bottom:729.015000px;}
.y24_c00162{bottom:730.815000px;}
.y5_c00162{bottom:747.015000px;}
.y23_c00162{bottom:747.915000px;}
.y3_c00162{bottom:765.765000px;}
.y2_c00162{bottom:784.065000px;}
.y1_c00162{bottom:803.715000px;}
.h6_c00162{height:13.200074px;}
.h7_c00162{height:43.804688px;}
.h3_c00162{height:62.880000px;}
.h4_c00162{height:64.020000px;}
.h5_c00162{height:67.221000px;}
.h2_c00162{height:70.422000px;}
.h1_c00162{height:831.000000px;}
.h0_c00162{height:831.075000px;}
.w2_c00162{width:104.875500px;}
.w0_c00162{width:590.775000px;}
.w1_c00162{width:591.000000px;}
.x0_c00162{left:0.000000px;}
.x4_c00162{left:14.850000px;}
.x13_c00162{left:66.720000px;}
.x14_c00162{left:70.507500px;}
.x8_c00162{left:71.850000px;}
.x7_c00162{left:72.900000px;}
.x5_c00162{left:75.300000px;}
.x3_c00162{left:77.250000px;}
.x2_c00162{left:79.950000px;}
.x6_c00162{left:102.900000px;}
.x16_c00162{left:136.410000px;}
.x15_c00162{left:151.560000px;}
.x10_c00162{left:154.950000px;}
.x11_c00162{left:160.650000px;}
.x1_c00162{left:218.400000px;}
.x17_c00162{left:247.201767px;}
.x12_c00162{left:284.577000px;}
.xf_c00162{left:286.500000px;}
.xc_c00162{left:288.000000px;}
.xe_c00162{left:289.350000px;}
.xd_c00162{left:290.700000px;}
.xb_c00162{left:292.050000px;}
.xa_c00162{left:293.250000px;}
.x9_c00162{left:294.300000px;}
@media print{
.v0_c00162{vertical-align:0.000000pt;}
.ls3_c00162{letter-spacing:0.000000pt;}
.ls2_c00162{letter-spacing:0.893333pt;}
.ls0_c00162{letter-spacing:2.666667pt;}
.ls4_c00162{letter-spacing:5.333333pt;}
.ls1_c00162{letter-spacing:6.880000pt;}
.ws2_c00162{word-spacing:-18.666667pt;}
.ws0_c00162{word-spacing:-17.333333pt;}
.ws3_c00162{word-spacing:-16.053333pt;}
.ws4_c00162{word-spacing:-14.666667pt;}
.ws1_c00162{word-spacing:-12.586667pt;}
.ws5_c00162{word-spacing:0.000000pt;}
._8_c00162{margin-left:-18.773333pt;}
._23_c00162{margin-left:-12.373333pt;}
._26_c00162{margin-left:-10.749333pt;}
._2b_c00162{margin-left:-9.120000pt;}
._18_c00162{margin-left:-8.213333pt;}
._12_c00162{margin-left:-6.720000pt;}
._15_c00162{margin-left:-5.653333pt;}
._f_c00162{margin-left:-3.946667pt;}
._10_c00162{margin-left:-2.720000pt;}
._a_c00162{margin-left:-1.760000pt;}
._d_c00162{width:1.226667pt;}
._c_c00162{width:2.133333pt;}
._1e_c00162{width:3.040000pt;}
._e_c00162{width:3.946667pt;}
._19_c00162{width:4.989333pt;}
._6_c00162{width:6.346667pt;}
._16_c00162{width:7.328000pt;}
._1_c00162{width:9.120000pt;}
._1c_c00162{width:10.080000pt;}
._5_c00162{width:11.360000pt;}
._0_c00162{width:13.066667pt;}
._3_c00162{width:14.186667pt;}
._b_c00162{width:16.960000pt;}
._20_c00162{width:17.920000pt;}
._4_c00162{width:18.826667pt;}
._14_c00162{width:19.840000pt;}
._29_c00162{width:20.954667pt;}
._25_c00162{width:22.506667pt;}
._2_c00162{width:24.053333pt;}
._13_c00162{width:25.920000pt;}
._27_c00162{width:26.880000pt;}
._1d_c00162{width:29.960000pt;}
._22_c00162{width:31.840000pt;}
._1f_c00162{width:33.133333pt;}
._2d_c00162{width:34.506667pt;}
._21_c00162{width:37.120000pt;}
._28_c00162{width:38.234667pt;}
._1a_c00162{width:39.432000pt;}
._30_c00162{width:40.418667pt;}
._24_c00162{width:42.240000pt;}
._31_c00162{width:54.877333pt;}
._2f_c00162{width:56.053333pt;}
._2a_c00162{width:60.373333pt;}
._17_c00162{width:67.093333pt;}
._11_c00162{width:69.280000pt;}
._7_c00162{width:79.786667pt;}
._1b_c00162{width:85.600000pt;}
._33_c00162{width:158.240000pt;}
._2e_c00162{width:181.173333pt;}
._9_c00162{width:268.853333pt;}
._2c_c00162{width:279.413333pt;}
._32_c00162{width:774.560000pt;}
.fs5_c00162{font-size:21.333333pt;}
.fs4_c00162{font-size:40.000000pt;}
.fs6_c00162{font-size:42.666667pt;}
.fs2_c00162{font-size:48.000000pt;}
.fs0_c00162{font-size:53.333333pt;}
.fs3_c00162{font-size:56.000000pt;}
.fs1_c00162{font-size:58.666667pt;}
.y0_c00162{bottom:0.000000pt;}
.y4f_c00162{bottom:2.760000pt;}
.y4e_c00162{bottom:6.425219pt;}
.y48_c00162{bottom:36.280000pt;}
.y47_c00162{bottom:54.013333pt;}
.y46_c00162{bottom:70.013333pt;}
.y45_c00162{bottom:85.480000pt;}
.y4d_c00162{bottom:86.680000pt;}
.y44_c00162{bottom:101.746667pt;}
.y4c_c00162{bottom:102.413333pt;}
.y43_c00162{bottom:116.813333pt;}
.y4b_c00162{bottom:118.546667pt;}
.y42_c00162{bottom:133.213333pt;}
.y4a_c00162{bottom:133.880000pt;}
.y41_c00162{bottom:149.213333pt;}
.y49_c00162{bottom:149.746667pt;}
.y40_c00162{bottom:165.880000pt;}
.y3f_c00162{bottom:180.946667pt;}
.y3e_c00162{bottom:197.480000pt;}
.y22_c00162{bottom:198.013333pt;}
.y3d_c00162{bottom:213.880000pt;}
.y21_c00162{bottom:214.013333pt;}
.y20_c00162{bottom:229.613333pt;}
.y3c_c00162{bottom:245.746667pt;}
.y1f_c00162{bottom:246.413333pt;}
.y1e_c00162{bottom:261.880000pt;}
.y3b_c00162{bottom:262.013333pt;}
.y4_c00162{bottom:277.880000pt;}
.y3a_c00162{bottom:278.146667pt;}
.y1d_c00162{bottom:278.813333pt;}
.y39_c00162{bottom:293.746667pt;}
.y1c_c00162{bottom:294.680000pt;}
.y38_c00162{bottom:310.280000pt;}
.y1b_c00162{bottom:310.813333pt;}
.y37_c00162{bottom:326.413333pt;}
.y1a_c00162{bottom:326.680000pt;}
.y19_c00162{bottom:342.680000pt;}
.y18_c00162{bottom:359.080000pt;}
.y36_c00162{bottom:359.213333pt;}
.y17_c00162{bottom:375.346667pt;}
.y35_c00162{bottom:375.613333pt;}
.y16_c00162{bottom:391.213333pt;}
.y34_c00162{bottom:391.346667pt;}
.y15_c00162{bottom:407.080000pt;}
.y33_c00162{bottom:407.480000pt;}
.y32_c00162{bottom:423.613333pt;}
.y14_c00162{bottom:423.880000pt;}
.y13_c00162{bottom:438.280000pt;}
.y31_c00162{bottom:440.146667pt;}
.y12_c00162{bottom:455.480000pt;}
.y30_c00162{bottom:456.280000pt;}
.y11_c00162{bottom:471.346667pt;}
.y2f_c00162{bottom:471.880000pt;}
.y10_c00162{bottom:487.480000pt;}
.y2e_c00162{bottom:488.413333pt;}
.yf_c00162{bottom:503.213333pt;}
.y2d_c00162{bottom:504.413333pt;}
.ye_c00162{bottom:519.613333pt;}
.y2c_c00162{bottom:521.080000pt;}
.yd_c00162{bottom:535.613333pt;}
.y2b_c00162{bottom:536.146667pt;}
.yc_c00162{bottom:551.746667pt;}
.y2a_c00162{bottom:552.946667pt;}
.yb_c00162{bottom:568.280000pt;}
.y29_c00162{bottom:569.080000pt;}
.ya_c00162{bottom:583.880000pt;}
.y28_c00162{bottom:584.813333pt;}
.y9_c00162{bottom:600.013333pt;}
.y27_c00162{bottom:601.480000pt;}
.y8_c00162{bottom:615.880000pt;}
.y26_c00162{bottom:617.080000pt;}
.y7_c00162{bottom:631.613333pt;}
.y25_c00162{bottom:633.080000pt;}
.y6_c00162{bottom:648.013333pt;}
.y24_c00162{bottom:649.613333pt;}
.y5_c00162{bottom:664.013333pt;}
.y23_c00162{bottom:664.813333pt;}
.y3_c00162{bottom:680.680000pt;}
.y2_c00162{bottom:696.946667pt;}
.y1_c00162{bottom:714.413333pt;}
.h6_c00162{height:11.733399pt;}
.h7_c00162{height:38.937500pt;}
.h3_c00162{height:55.893333pt;}
.h4_c00162{height:56.906667pt;}
.h5_c00162{height:59.752000pt;}
.h2_c00162{height:62.597333pt;}
.h1_c00162{height:738.666667pt;}
.h0_c00162{height:738.733333pt;}
.w2_c00162{width:93.222667pt;}
.w0_c00162{width:525.133333pt;}
.w1_c00162{width:525.333333pt;}
.x0_c00162{left:0.000000pt;}
.x4_c00162{left:13.200000pt;}
.x13_c00162{left:59.306667pt;}
.x14_c00162{left:62.673333pt;}
.x8_c00162{left:63.866667pt;}
.x7_c00162{left:64.800000pt;}
.x5_c00162{left:66.933333pt;}
.x3_c00162{left:68.666667pt;}
.x2_c00162{left:71.066667pt;}
.x6_c00162{left:91.466667pt;}
.x16_c00162{left:121.253333pt;}
.x15_c00162{left:134.720000pt;}
.x10_c00162{left:137.733333pt;}
.x11_c00162{left:142.800000pt;}
.x1_c00162{left:194.133333pt;}
.x17_c00162{left:219.734904pt;}
.x12_c00162{left:252.957333pt;}
.xf_c00162{left:254.666667pt;}
.xc_c00162{left:256.000000pt;}
.xe_c00162{left:257.200000pt;}
.xd_c00162{left:258.400000pt;}
.xb_c00162{left:259.600000pt;}
.xa_c00162{left:260.666667pt;}
.x9_c00162{left:261.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b9480a52255b889396490af2.woff2')format("woff");}.ff1_c00163{font-family:ff1_c00163;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00163;src:url('chunks/assets/font_ed767904b4d1e89a66ecbb3e.woff2')format("woff");}.ff2_c00163{font-family:ff2_c00163;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00163;src:url('chunks/assets/font_ef4d18b19bf25143ba3b4073.woff2')format("woff");}.ff3_c00163{font-family:ff3_c00163;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00163;src:url('chunks/assets/font_aae1126519f06f6a50e09f12.woff2')format("woff");}.ff4_c00163{font-family:ff4_c00163;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00163;src:url('chunks/assets/font_b3a7879a4eaa27ce4fcd3a2d.woff2')format("woff");}.ff5_c00163{font-family:ff5_c00163;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00163;src:url('chunks/assets/font_7164f7fc20c479aacf7b7c04.woff2')format("woff");}.ff6_c00163{font-family:ff6_c00163;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00163;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff7_c00163{font-family:ff7_c00163;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00163{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00163{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.v0_c00163{vertical-align:0.000000px;}
.v1_c00163{vertical-align:90.600000px;}
.ls4_c00163{letter-spacing:0.000000px;}
.ls3_c00163{letter-spacing:3.000000px;}
.ls1_c00163{letter-spacing:4.500000px;}
.ls2_c00163{letter-spacing:6.552000px;}
.ls0_c00163{letter-spacing:46.608000px;}
.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;}
}
.ws3_c00163{word-spacing:-44.733000px;}
.ws6_c00163{word-spacing:-29.295000px;}
.ws4_c00163{word-spacing:-25.860000px;}
.ws2_c00163{word-spacing:-18.060000px;}
.ws1_c00163{word-spacing:-14.160000px;}
.ws5_c00163{word-spacing:-6.984000px;}
.ws7_c00163{word-spacing:0.000000px;}
.ws0_c00163{word-spacing:1.320000px;}
._20_c00163{margin-left:-24.960000px;}
._11_c00163{margin-left:-19.020000px;}
._24_c00163{margin-left:-17.940000px;}
._1f_c00163{margin-left:-15.540000px;}
._12_c00163{margin-left:-12.840000px;}
._f_c00163{margin-left:-10.380000px;}
._10_c00163{margin-left:-8.400000px;}
._19_c00163{margin-left:-6.660000px;}
._b_c00163{margin-left:-5.460000px;}
._1a_c00163{margin-left:-3.960000px;}
._13_c00163{margin-left:-2.280000px;}
._d_c00163{margin-left:-1.260000px;}
._9_c00163{width:1.080000px;}
._14_c00163{width:2.400000px;}
._c_c00163{width:3.600000px;}
._e_c00163{width:4.740000px;}
._17_c00163{width:5.880000px;}
._a_c00163{width:7.200000px;}
._22_c00163{width:8.400000px;}
._1b_c00163{width:9.600000px;}
._0_c00163{width:11.280000px;}
._8_c00163{width:13.080000px;}
._3_c00163{width:14.700000px;}
._4_c00163{width:16.440000px;}
._16_c00163{width:17.700000px;}
._25_c00163{width:19.440000px;}
._1_c00163{width:20.520000px;}
._6_c00163{width:22.260000px;}
._27_c00163{width:23.460000px;}
._5_c00163{width:24.480000px;}
._29_c00163{width:26.220000px;}
._1e_c00163{width:28.260000px;}
._1c_c00163{width:29.280000px;}
._2c_c00163{width:30.300000px;}
._1d_c00163{width:32.520000px;}
._2e_c00163{width:33.840000px;}
._26_c00163{width:35.520000px;}
._2d_c00163{width:37.260000px;}
._7_c00163{width:38.460000px;}
._2b_c00163{width:42.525000px;}
._2a_c00163{width:46.020000px;}
._23_c00163{width:53.580000px;}
._18_c00163{width:60.360000px;}
._21_c00163{width:112.080000px;}
._28_c00163{width:166.200000px;}
._15_c00163{width:237.060000px;}
._2_c00163{width:312.540000px;}
.fc2_c00163{color:transparent;}
.fc1_c00163{color:rgb(128,128,128);}
.fc0_c00163{color:rgb(0,0,0);}
.fs6_c00163{font-size:45.000000px;}
.fs5_c00163{font-size:48.000000px;}
.fs0_c00163{font-size:60.000000px;}
.fs4_c00163{font-size:72.000000px;}
.fs3_c00163{font-size:90.000000px;}
.fs2_c00163{font-size:93.000000px;}
.fs1_c00163{font-size:132.000000px;}
.y0_c00163{bottom:0.000000px;}
.y52_c00163{bottom:3.105000px;}
.y51_c00163{bottom:7.228355px;}
.y50_c00163{bottom:62.085000px;}
.y4f_c00163{bottom:81.285000px;}
.y26_c00163{bottom:84.285000px;}
.y4e_c00163{bottom:99.585000px;}
.y25_c00163{bottom:103.635000px;}
.y4d_c00163{bottom:119.385000px;}
.y24_c00163{bottom:121.785000px;}
.y4c_c00163{bottom:135.585000px;}
.y23_c00163{bottom:140.085000px;}
.y4b_c00163{bottom:154.785000px;}
.y22_c00163{bottom:158.535000px;}
.y4a_c00163{bottom:172.335000px;}
.y21_c00163{bottom:176.535000px;}
.y49_c00163{bottom:188.985000px;}
.y20_c00163{bottom:194.385000px;}
.y48_c00163{bottom:208.935000px;}
.y1f_c00163{bottom:213.135000px;}
.y47_c00163{bottom:227.685000px;}
.y1e_c00163{bottom:231.435000px;}
.y46_c00163{bottom:246.585000px;}
.y1d_c00163{bottom:249.735000px;}
.y45_c00163{bottom:263.835000px;}
.y1c_c00163{bottom:267.885000px;}
.y44_c00163{bottom:282.435000px;}
.y1b_c00163{bottom:285.735000px;}
.y43_c00163{bottom:300.285000px;}
.y1a_c00163{bottom:303.435000px;}
.y42_c00163{bottom:318.135000px;}
.y19_c00163{bottom:322.335000px;}
.y41_c00163{bottom:336.135000px;}
.y18_c00163{bottom:340.785000px;}
.y40_c00163{bottom:355.035000px;}
.y17_c00163{bottom:359.085000px;}
.y3f_c00163{bottom:372.735000px;}
.y16_c00163{bottom:376.635000px;}
.y3e_c00163{bottom:391.185000px;}
.y15_c00163{bottom:395.535000px;}
.y3d_c00163{bottom:409.635000px;}
.y14_c00163{bottom:412.635000px;}
.y12_c00163{bottom:426.885000px;}
.y3c_c00163{bottom:427.935000px;}
.y13_c00163{bottom:431.685000px;}
.y3b_c00163{bottom:446.385000px;}
.y3a_c00163{bottom:463.635000px;}
.y39_c00163{bottom:481.935000px;}
.y11_c00163{bottom:485.535000px;}
.y38_c00163{bottom:500.535000px;}
.y10_c00163{bottom:504.585000px;}
.y37_c00163{bottom:518.985000px;}
.yf_c00163{bottom:522.435000px;}
.y36_c00163{bottom:536.985000px;}
.ye_c00163{bottom:541.335000px;}
.y35_c00163{bottom:554.835000px;}
.yd_c00163{bottom:558.885000px;}
.y34_c00163{bottom:573.285000px;}
.y33_c00163{bottom:591.585000px;}
.yc_c00163{bottom:593.985000px;}
.y32_c00163{bottom:609.885000px;}
.y31_c00163{bottom:626.685000px;}
.yb_c00163{bottom:631.035000px;}
.y30_c00163{bottom:646.185000px;}
.ya_c00163{bottom:649.335000px;}
.y2f_c00163{bottom:662.535000px;}
.y9_c00163{bottom:668.235000px;}
.y2e_c00163{bottom:682.035000px;}
.y8_c00163{bottom:685.335000px;}
.y2d_c00163{bottom:699.585000px;}
.y7_c00163{bottom:703.635000px;}
.y2c_c00163{bottom:717.885000px;}
.y6_c00163{bottom:722.235000px;}
.y2b_c00163{bottom:737.385000px;}
.y5_c00163{bottom:740.385000px;}
.y2a_c00163{bottom:755.235000px;}
.y4_c00163{bottom:758.385000px;}
.y29_c00163{bottom:772.185000px;}
.y3_c00163{bottom:776.535000px;}
.y28_c00163{bottom:791.685000px;}
.y2_c00163{bottom:794.685000px;}
.y27_c00163{bottom:812.985000px;}
.y1_c00163{bottom:814.335000px;}
.h6_c00163{height:13.200074px;}
.h7_c00163{height:43.804688px;}
.h2_c00163{height:62.880000px;}
.h5_c00163{height:75.456000px;}
.h4_c00163{height:100.812000px;}
.h3_c00163{height:153.480000px;}
.h1_c00163{height:841.500000px;}
.h0_c00163{height:841.575000px;}
.w2_c00163{width:104.875500px;}
.w0_c00163{width:565.950000px;}
.w1_c00163{width:566.250000px;}
.x0_c00163{left:0.000000px;}
.xb_c00163{left:25.350000px;}
.xf_c00163{left:40.200000px;}
.xa_c00163{left:65.700000px;}
.xc_c00163{left:79.350000px;}
.x10_c00163{left:87.450000px;}
.xe_c00163{left:88.800000px;}
.x1_c00163{left:89.850000px;}
.xd_c00163{left:90.900000px;}
.x2_c00163{left:92.100000px;}
.x3_c00163{left:93.150000px;}
.x5_c00163{left:106.650000px;}
.x9_c00163{left:117.150000px;}
.x6_c00163{left:121.950000px;}
.x7_c00163{left:138.150000px;}
.x4_c00163{left:166.500000px;}
.x8_c00163{left:174.150000px;}
.x19_c00163{left:234.789230px;}
.x16_c00163{left:307.350000px;}
.x12_c00163{left:309.450000px;}
.x13_c00163{left:310.500000px;}
.x14_c00163{left:311.550000px;}
.x11_c00163{left:317.250000px;}
.x17_c00163{left:325.650000px;}
.x15_c00163{left:347.850000px;}
.x18_c00163{left:459.600000px;}
@media print{
.v0_c00163{vertical-align:0.000000pt;}
.v1_c00163{vertical-align:80.533333pt;}
.ls4_c00163{letter-spacing:0.000000pt;}
.ls3_c00163{letter-spacing:2.666667pt;}
.ls1_c00163{letter-spacing:4.000000pt;}
.ls2_c00163{letter-spacing:5.824000pt;}
.ls0_c00163{letter-spacing:41.429333pt;}
.ws3_c00163{word-spacing:-39.762667pt;}
.ws6_c00163{word-spacing:-26.040000pt;}
.ws4_c00163{word-spacing:-22.986667pt;}
.ws2_c00163{word-spacing:-16.053333pt;}
.ws1_c00163{word-spacing:-12.586667pt;}
.ws5_c00163{word-spacing:-6.208000pt;}
.ws7_c00163{word-spacing:0.000000pt;}
.ws0_c00163{word-spacing:1.173333pt;}
._20_c00163{margin-left:-22.186667pt;}
._11_c00163{margin-left:-16.906667pt;}
._24_c00163{margin-left:-15.946667pt;}
._1f_c00163{margin-left:-13.813333pt;}
._12_c00163{margin-left:-11.413333pt;}
._f_c00163{margin-left:-9.226667pt;}
._10_c00163{margin-left:-7.466667pt;}
._19_c00163{margin-left:-5.920000pt;}
._b_c00163{margin-left:-4.853333pt;}
._1a_c00163{margin-left:-3.520000pt;}
._13_c00163{margin-left:-2.026667pt;}
._d_c00163{margin-left:-1.120000pt;}
._9_c00163{width:0.960000pt;}
._14_c00163{width:2.133333pt;}
._c_c00163{width:3.200000pt;}
._e_c00163{width:4.213333pt;}
._17_c00163{width:5.226667pt;}
._a_c00163{width:6.400000pt;}
._22_c00163{width:7.466667pt;}
._1b_c00163{width:8.533333pt;}
._0_c00163{width:10.026667pt;}
._8_c00163{width:11.626667pt;}
._3_c00163{width:13.066667pt;}
._4_c00163{width:14.613333pt;}
._16_c00163{width:15.733333pt;}
._25_c00163{width:17.280000pt;}
._1_c00163{width:18.240000pt;}
._6_c00163{width:19.786667pt;}
._27_c00163{width:20.853333pt;}
._5_c00163{width:21.760000pt;}
._29_c00163{width:23.306667pt;}
._1e_c00163{width:25.120000pt;}
._1c_c00163{width:26.026667pt;}
._2c_c00163{width:26.933333pt;}
._1d_c00163{width:28.906667pt;}
._2e_c00163{width:30.080000pt;}
._26_c00163{width:31.573333pt;}
._2d_c00163{width:33.120000pt;}
._7_c00163{width:34.186667pt;}
._2b_c00163{width:37.800000pt;}
._2a_c00163{width:40.906667pt;}
._23_c00163{width:47.626667pt;}
._18_c00163{width:53.653333pt;}
._21_c00163{width:99.626667pt;}
._28_c00163{width:147.733333pt;}
._15_c00163{width:210.720000pt;}
._2_c00163{width:277.813333pt;}
.fs6_c00163{font-size:40.000000pt;}
.fs5_c00163{font-size:42.666667pt;}
.fs0_c00163{font-size:53.333333pt;}
.fs4_c00163{font-size:64.000000pt;}
.fs3_c00163{font-size:80.000000pt;}
.fs2_c00163{font-size:82.666667pt;}
.fs1_c00163{font-size:117.333333pt;}
.y0_c00163{bottom:0.000000pt;}
.y52_c00163{bottom:2.760000pt;}
.y51_c00163{bottom:6.425204pt;}
.y50_c00163{bottom:55.186667pt;}
.y4f_c00163{bottom:72.253333pt;}
.y26_c00163{bottom:74.920000pt;}
.y4e_c00163{bottom:88.520000pt;}
.y25_c00163{bottom:92.120000pt;}
.y4d_c00163{bottom:106.120000pt;}
.y24_c00163{bottom:108.253333pt;}
.y4c_c00163{bottom:120.520000pt;}
.y23_c00163{bottom:124.520000pt;}
.y4b_c00163{bottom:137.586667pt;}
.y22_c00163{bottom:140.920000pt;}
.y4a_c00163{bottom:153.186667pt;}
.y21_c00163{bottom:156.920000pt;}
.y49_c00163{bottom:167.986667pt;}
.y20_c00163{bottom:172.786667pt;}
.y48_c00163{bottom:185.720000pt;}
.y1f_c00163{bottom:189.453333pt;}
.y47_c00163{bottom:202.386667pt;}
.y1e_c00163{bottom:205.720000pt;}
.y46_c00163{bottom:219.186667pt;}
.y1d_c00163{bottom:221.986667pt;}
.y45_c00163{bottom:234.520000pt;}
.y1c_c00163{bottom:238.120000pt;}
.y44_c00163{bottom:251.053333pt;}
.y1b_c00163{bottom:253.986667pt;}
.y43_c00163{bottom:266.920000pt;}
.y1a_c00163{bottom:269.720000pt;}
.y42_c00163{bottom:282.786667pt;}
.y19_c00163{bottom:286.520000pt;}
.y41_c00163{bottom:298.786667pt;}
.y18_c00163{bottom:302.920000pt;}
.y40_c00163{bottom:315.586667pt;}
.y17_c00163{bottom:319.186667pt;}
.y3f_c00163{bottom:331.320000pt;}
.y16_c00163{bottom:334.786667pt;}
.y3e_c00163{bottom:347.720000pt;}
.y15_c00163{bottom:351.586667pt;}
.y3d_c00163{bottom:364.120000pt;}
.y14_c00163{bottom:366.786667pt;}
.y12_c00163{bottom:379.453333pt;}
.y3c_c00163{bottom:380.386667pt;}
.y13_c00163{bottom:383.720000pt;}
.y3b_c00163{bottom:396.786667pt;}
.y3a_c00163{bottom:412.120000pt;}
.y39_c00163{bottom:428.386667pt;}
.y11_c00163{bottom:431.586667pt;}
.y38_c00163{bottom:444.920000pt;}
.y10_c00163{bottom:448.520000pt;}
.y37_c00163{bottom:461.320000pt;}
.yf_c00163{bottom:464.386667pt;}
.y36_c00163{bottom:477.320000pt;}
.ye_c00163{bottom:481.186667pt;}
.y35_c00163{bottom:493.186667pt;}
.yd_c00163{bottom:496.786667pt;}
.y34_c00163{bottom:509.586667pt;}
.y33_c00163{bottom:525.853333pt;}
.yc_c00163{bottom:527.986667pt;}
.y32_c00163{bottom:542.120000pt;}
.y31_c00163{bottom:557.053333pt;}
.yb_c00163{bottom:560.920000pt;}
.y30_c00163{bottom:574.386667pt;}
.ya_c00163{bottom:577.186667pt;}
.y2f_c00163{bottom:588.920000pt;}
.y9_c00163{bottom:593.986667pt;}
.y2e_c00163{bottom:606.253333pt;}
.y8_c00163{bottom:609.186667pt;}
.y2d_c00163{bottom:621.853333pt;}
.y7_c00163{bottom:625.453333pt;}
.y2c_c00163{bottom:638.120000pt;}
.y6_c00163{bottom:641.986667pt;}
.y2b_c00163{bottom:655.453333pt;}
.y5_c00163{bottom:658.120000pt;}
.y2a_c00163{bottom:671.320000pt;}
.y4_c00163{bottom:674.120000pt;}
.y29_c00163{bottom:686.386667pt;}
.y3_c00163{bottom:690.253333pt;}
.y28_c00163{bottom:703.720000pt;}
.y2_c00163{bottom:706.386667pt;}
.y27_c00163{bottom:722.653333pt;}
.y1_c00163{bottom:723.853333pt;}
.h6_c00163{height:11.733399pt;}
.h7_c00163{height:38.937500pt;}
.h2_c00163{height:55.893333pt;}
.h5_c00163{height:67.072000pt;}
.h4_c00163{height:89.610667pt;}
.h3_c00163{height:136.426667pt;}
.h1_c00163{height:748.000000pt;}
.h0_c00163{height:748.066667pt;}
.w2_c00163{width:93.222667pt;}
.w0_c00163{width:503.066667pt;}
.w1_c00163{width:503.333333pt;}
.x0_c00163{left:0.000000pt;}
.xb_c00163{left:22.533333pt;}
.xf_c00163{left:35.733333pt;}
.xa_c00163{left:58.400000pt;}
.xc_c00163{left:70.533333pt;}
.x10_c00163{left:77.733333pt;}
.xe_c00163{left:78.933333pt;}
.x1_c00163{left:79.866667pt;}
.xd_c00163{left:80.800000pt;}
.x2_c00163{left:81.866667pt;}
.x3_c00163{left:82.800000pt;}
.x5_c00163{left:94.800000pt;}
.x9_c00163{left:104.133333pt;}
.x6_c00163{left:108.400000pt;}
.x7_c00163{left:122.800000pt;}
.x4_c00163{left:148.000000pt;}
.x8_c00163{left:154.800000pt;}
.x19_c00163{left:208.701538pt;}
.x16_c00163{left:273.200000pt;}
.x12_c00163{left:275.066667pt;}
.x13_c00163{left:276.000000pt;}
.x14_c00163{left:276.933333pt;}
.x11_c00163{left:282.000000pt;}
.x17_c00163{left:289.466667pt;}
.x15_c00163{left:309.200000pt;}
.x18_c00163{left:408.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f6de4d8e044b4f70cb61b7eb.woff2')format("woff");}.ff1_c00164{font-family:ff1_c00164;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00164;src:url('chunks/assets/font_1553975ac08fe3288033ae7a.woff2')format("woff");}.ff2_c00164{font-family:ff2_c00164;line-height:1.575000;font-style:normal;font-weight:normal;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_0aceb8af6be3a7633986a7aa.woff2')format("woff");}.ff3_c00164{font-family:ff3_c00164;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00164;src:url('chunks/assets/font_c9597c7a9e610ec5ae62b626.woff2')format("woff");}.ff4_c00164{font-family:ff4_c00164;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00164;src:url('chunks/assets/font_6567b921b1a4e7d57ad0f19f.woff2')format("woff");}.ff5_c00164{font-family:ff5_c00164;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00164;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff6_c00164{font-family:ff6_c00164;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00164{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00164{vertical-align:0.000000px;}
.ls5_c00164{letter-spacing:0.000000px;}
.ls0_c00164{letter-spacing:3.000000px;}
.ls4_c00164{letter-spacing:6.000000px;}
.ls7_c00164{letter-spacing:9.000000px;}
.ls2_c00164{letter-spacing:13.293000px;}
.ls6_c00164{letter-spacing:18.000000px;}
.ls3_c00164{letter-spacing:23.493000px;}
.ls1_c00164{letter-spacing:36.540000px;}
.sc__c00164{text-shadow:none;}
.sc0_c00164{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00164{-webkit-text-stroke:0px transparent;}
.sc0_c00164{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00164{word-spacing:-32.160000px;}
.ws0_c00164{word-spacing:-23.340000px;}
.ws5_c00164{word-spacing:-22.452000px;}
.ws2_c00164{word-spacing:-17.340000px;}
.ws3_c00164{word-spacing:-14.160000px;}
.ws4_c00164{word-spacing:-13.452000px;}
.ws6_c00164{word-spacing:0.000000px;}
._a_c00164{margin-left:-21.480000px;}
._d_c00164{margin-left:-19.140000px;}
._28_c00164{margin-left:-17.820000px;}
._27_c00164{margin-left:-16.020000px;}
._b_c00164{margin-left:-14.160000px;}
._c_c00164{margin-left:-12.960000px;}
._21_c00164{margin-left:-8.808000px;}
._4_c00164{margin-left:-7.620000px;}
._16_c00164{margin-left:-5.580000px;}
._5_c00164{margin-left:-3.720000px;}
._1_c00164{margin-left:-2.520000px;}
._0_c00164{margin-left:-1.080000px;}
._3_c00164{width:1.260000px;}
._2_c00164{width:2.580000px;}
._7_c00164{width:3.900000px;}
._8_c00164{width:5.580000px;}
._f_c00164{width:6.660000px;}
._18_c00164{width:8.580000px;}
._26_c00164{width:9.600000px;}
._11_c00164{width:10.740000px;}
._15_c00164{width:11.880000px;}
._1b_c00164{width:12.900000px;}
._13_c00164{width:14.040000px;}
._22_c00164{width:15.480000px;}
._1c_c00164{width:16.980000px;}
._29_c00164{width:19.560000px;}
._12_c00164{width:20.580000px;}
._1d_c00164{width:21.900000px;}
._23_c00164{width:23.160000px;}
._19_c00164{width:24.420000px;}
._24_c00164{width:25.500000px;}
._e_c00164{width:26.940000px;}
._17_c00164{width:28.440000px;}
._1a_c00164{width:30.000000px;}
._20_c00164{width:31.800000px;}
._1f_c00164{width:32.880000px;}
._14_c00164{width:34.260000px;}
._33_c00164{width:35.400000px;}
._10_c00164{width:36.720000px;}
._25_c00164{width:38.280000px;}
._32_c00164{width:39.960000px;}
._2c_c00164{width:42.180000px;}
._2d_c00164{width:43.320000px;}
._31_c00164{width:46.440000px;}
._2e_c00164{width:48.480000px;}
._2f_c00164{width:50.400000px;}
._2b_c00164{width:56.040000px;}
._30_c00164{width:66.480000px;}
._1e_c00164{width:150.180000px;}
._6_c00164{width:174.000000px;}
._9_c00164{width:258.060000px;}
._2a_c00164{width:444.180000px;}
.fc2_c00164{color:transparent;}
.fc1_c00164{color:rgb(128,128,128);}
.fc0_c00164{color:rgb(0,0,0);}
.fs3_c00164{font-size:48.000000px;}
.fs2_c00164{font-size:57.000000px;}
.fs0_c00164{font-size:60.000000px;}
.fs1_c00164{font-size:63.000000px;}
.y0_c00164{bottom:0.000000px;}
.y54_c00164{bottom:3.105000px;}
.y53_c00164{bottom:7.228369px;}
.y52_c00164{bottom:30.270000px;}
.y51_c00164{bottom:48.570000px;}
.y28_c00164{bottom:51.870000px;}
.y50_c00164{bottom:67.470000px;}
.y27_c00164{bottom:70.770000px;}
.y4f_c00164{bottom:85.020000px;}
.y26_c00164{bottom:87.420000px;}
.y4e_c00164{bottom:102.870000px;}
.y25_c00164{bottom:106.920000px;}
.y4d_c00164{bottom:121.470000px;}
.y24_c00164{bottom:125.520000px;}
.y4c_c00164{bottom:139.620000px;}
.y23_c00164{bottom:143.070000px;}
.y4b_c00164{bottom:157.920000px;}
.y22_c00164{bottom:160.920000px;}
.y4a_c00164{bottom:175.770000px;}
.y21_c00164{bottom:179.820000px;}
.y49_c00164{bottom:194.670000px;}
.y20_c00164{bottom:197.820000px;}
.y48_c00164{bottom:212.520000px;}
.y1f_c00164{bottom:214.920000px;}
.y47_c00164{bottom:230.820000px;}
.y1e_c00164{bottom:234.270000px;}
.y46_c00164{bottom:249.120000px;}
.y1d_c00164{bottom:252.420000px;}
.y45_c00164{bottom:267.420000px;}
.y1c_c00164{bottom:270.570000px;}
.y44_c00164{bottom:285.570000px;}
.y1b_c00164{bottom:288.870000px;}
.y43_c00164{bottom:303.720000px;}
.y1a_c00164{bottom:307.470000px;}
.y42_c00164{bottom:321.870000px;}
.y19_c00164{bottom:325.620000px;}
.y41_c00164{bottom:340.320000px;}
.y18_c00164{bottom:343.470000px;}
.y40_c00164{bottom:358.470000px;}
.y17_c00164{bottom:361.770000px;}
.y3f_c00164{bottom:376.620000px;}
.y16_c00164{bottom:379.620000px;}
.y3e_c00164{bottom:395.220000px;}
.y3d_c00164{bottom:413.370000px;}
.y15_c00164{bottom:417.120000px;}
.y3c_c00164{bottom:431.670000px;}
.y14_c00164{bottom:433.920000px;}
.y3b_c00164{bottom:450.120000px;}
.y13_c00164{bottom:451.920000px;}
.y3a_c00164{bottom:468.420000px;}
.y12_c00164{bottom:470.370000px;}
.y39_c00164{bottom:486.570000px;}
.y11_c00164{bottom:488.370000px;}
.y38_c00164{bottom:505.470000px;}
.y10_c00164{bottom:506.520000px;}
.y37_c00164{bottom:523.470000px;}
.yf_c00164{bottom:524.820000px;}
.y36_c00164{bottom:541.620000px;}
.ye_c00164{bottom:542.670000px;}
.y35_c00164{bottom:559.170000px;}
.yd_c00164{bottom:560.820000px;}
.y34_c00164{bottom:578.370000px;}
.yc_c00164{bottom:578.520000px;}
.y33_c00164{bottom:595.920000px;}
.yb_c00164{bottom:597.270000px;}
.y32_c00164{bottom:614.220000px;}
.ya_c00164{bottom:614.970000px;}
.y31_c00164{bottom:632.520000px;}
.y9_c00164{bottom:633.420000px;}
.y8_c00164{bottom:650.970000px;}
.y30_c00164{bottom:668.970000px;}
.y7_c00164{bottom:669.270000px;}
.y6_c00164{bottom:687.420000px;}
.y2f_c00164{bottom:687.870000px;}
.y5_c00164{bottom:705.270000px;}
.y2e_c00164{bottom:705.720000px;}
.y4_c00164{bottom:723.570000px;}
.y2d_c00164{bottom:724.620000px;}
.y3_c00164{bottom:741.720000px;}
.y2c_c00164{bottom:742.770000px;}
.y2_c00164{bottom:760.020000px;}
.y2b_c00164{bottom:760.320000px;}
.y1_c00164{bottom:778.320000px;}
.y2a_c00164{bottom:778.920000px;}
.y29_c00164{bottom:798.570000px;}
.h6_c00164{height:13.200073px;}
.h7_c00164{height:43.804688px;}
.h5_c00164{height:59.736000px;}
.h3_c00164{height:62.880000px;}
.h2_c00164{height:64.020000px;}
.h4_c00164{height:66.024000px;}
.h1_c00164{height:824.250000px;}
.h0_c00164{height:824.550000px;}
.w2_c00164{width:104.875500px;}
.w1_c00164{width:585.750000px;}
.w0_c00164{width:585.900000px;}
.x0_c00164{left:0.000000px;}
.x2_c00164{left:14.550000px;}
.x9_c00164{left:20.250000px;}
.x7_c00164{left:34.350000px;}
.x1_c00164{left:75.600000px;}
.x3_c00164{left:76.650000px;}
.x4_c00164{left:78.300000px;}
.x5_c00164{left:79.350000px;}
.x6_c00164{left:80.700000px;}
.xa_c00164{left:81.750000px;}
.x8_c00164{left:82.800000px;}
.xb_c00164{left:101.850000px;}
.x17_c00164{left:244.764267px;}
.xc_c00164{left:287.850000px;}
.xe_c00164{left:289.200000px;}
.xd_c00164{left:291.300000px;}
.xf_c00164{left:292.500000px;}
.x10_c00164{left:293.550000px;}
.x11_c00164{left:295.350000px;}
.x12_c00164{left:296.550000px;}
.x13_c00164{left:298.350000px;}
.x14_c00164{left:300.000000px;}
.x15_c00164{left:301.050000px;}
.x16_c00164{left:474.150000px;}
@media print{
.v0_c00164{vertical-align:0.000000pt;}
.ls5_c00164{letter-spacing:0.000000pt;}
.ls0_c00164{letter-spacing:2.666667pt;}
.ls4_c00164{letter-spacing:5.333333pt;}
.ls7_c00164{letter-spacing:8.000000pt;}
.ls2_c00164{letter-spacing:11.816000pt;}
.ls6_c00164{letter-spacing:16.000000pt;}
.ls3_c00164{letter-spacing:20.882667pt;}
.ls1_c00164{letter-spacing:32.480000pt;}
.ws1_c00164{word-spacing:-28.586667pt;}
.ws0_c00164{word-spacing:-20.746667pt;}
.ws5_c00164{word-spacing:-19.957333pt;}
.ws2_c00164{word-spacing:-15.413333pt;}
.ws3_c00164{word-spacing:-12.586667pt;}
.ws4_c00164{word-spacing:-11.957333pt;}
.ws6_c00164{word-spacing:0.000000pt;}
._a_c00164{margin-left:-19.093333pt;}
._d_c00164{margin-left:-17.013333pt;}
._28_c00164{margin-left:-15.840000pt;}
._27_c00164{margin-left:-14.240000pt;}
._b_c00164{margin-left:-12.586667pt;}
._c_c00164{margin-left:-11.520000pt;}
._21_c00164{margin-left:-7.829333pt;}
._4_c00164{margin-left:-6.773333pt;}
._16_c00164{margin-left:-4.960000pt;}
._5_c00164{margin-left:-3.306667pt;}
._1_c00164{margin-left:-2.240000pt;}
._0_c00164{margin-left:-0.960000pt;}
._3_c00164{width:1.120000pt;}
._2_c00164{width:2.293333pt;}
._7_c00164{width:3.466667pt;}
._8_c00164{width:4.960000pt;}
._f_c00164{width:5.920000pt;}
._18_c00164{width:7.626667pt;}
._26_c00164{width:8.533333pt;}
._11_c00164{width:9.546667pt;}
._15_c00164{width:10.560000pt;}
._1b_c00164{width:11.466667pt;}
._13_c00164{width:12.480000pt;}
._22_c00164{width:13.760000pt;}
._1c_c00164{width:15.093333pt;}
._29_c00164{width:17.386667pt;}
._12_c00164{width:18.293333pt;}
._1d_c00164{width:19.466667pt;}
._23_c00164{width:20.586667pt;}
._19_c00164{width:21.706667pt;}
._24_c00164{width:22.666667pt;}
._e_c00164{width:23.946667pt;}
._17_c00164{width:25.280000pt;}
._1a_c00164{width:26.666667pt;}
._20_c00164{width:28.266667pt;}
._1f_c00164{width:29.226667pt;}
._14_c00164{width:30.453333pt;}
._33_c00164{width:31.466667pt;}
._10_c00164{width:32.640000pt;}
._25_c00164{width:34.026667pt;}
._32_c00164{width:35.520000pt;}
._2c_c00164{width:37.493333pt;}
._2d_c00164{width:38.506667pt;}
._31_c00164{width:41.280000pt;}
._2e_c00164{width:43.093333pt;}
._2f_c00164{width:44.800000pt;}
._2b_c00164{width:49.813333pt;}
._30_c00164{width:59.093333pt;}
._1e_c00164{width:133.493333pt;}
._6_c00164{width:154.666667pt;}
._9_c00164{width:229.386667pt;}
._2a_c00164{width:394.826667pt;}
.fs3_c00164{font-size:42.666667pt;}
.fs2_c00164{font-size:50.666667pt;}
.fs0_c00164{font-size:53.333333pt;}
.fs1_c00164{font-size:56.000000pt;}
.y0_c00164{bottom:0.000000pt;}
.y54_c00164{bottom:2.760000pt;}
.y53_c00164{bottom:6.425217pt;}
.y52_c00164{bottom:26.906667pt;}
.y51_c00164{bottom:43.173333pt;}
.y28_c00164{bottom:46.106667pt;}
.y50_c00164{bottom:59.973333pt;}
.y27_c00164{bottom:62.906667pt;}
.y4f_c00164{bottom:75.573333pt;}
.y26_c00164{bottom:77.706667pt;}
.y4e_c00164{bottom:91.440000pt;}
.y25_c00164{bottom:95.040000pt;}
.y4d_c00164{bottom:107.973333pt;}
.y24_c00164{bottom:111.573333pt;}
.y4c_c00164{bottom:124.106667pt;}
.y23_c00164{bottom:127.173333pt;}
.y4b_c00164{bottom:140.373333pt;}
.y22_c00164{bottom:143.040000pt;}
.y4a_c00164{bottom:156.240000pt;}
.y21_c00164{bottom:159.840000pt;}
.y49_c00164{bottom:173.040000pt;}
.y20_c00164{bottom:175.840000pt;}
.y48_c00164{bottom:188.906667pt;}
.y1f_c00164{bottom:191.040000pt;}
.y47_c00164{bottom:205.173333pt;}
.y1e_c00164{bottom:208.240000pt;}
.y46_c00164{bottom:221.440000pt;}
.y1d_c00164{bottom:224.373333pt;}
.y45_c00164{bottom:237.706667pt;}
.y1c_c00164{bottom:240.506667pt;}
.y44_c00164{bottom:253.840000pt;}
.y1b_c00164{bottom:256.773333pt;}
.y43_c00164{bottom:269.973333pt;}
.y1a_c00164{bottom:273.306667pt;}
.y42_c00164{bottom:286.106667pt;}
.y19_c00164{bottom:289.440000pt;}
.y41_c00164{bottom:302.506667pt;}
.y18_c00164{bottom:305.306667pt;}
.y40_c00164{bottom:318.640000pt;}
.y17_c00164{bottom:321.573333pt;}
.y3f_c00164{bottom:334.773333pt;}
.y16_c00164{bottom:337.440000pt;}
.y3e_c00164{bottom:351.306667pt;}
.y3d_c00164{bottom:367.440000pt;}
.y15_c00164{bottom:370.773333pt;}
.y3c_c00164{bottom:383.706667pt;}
.y14_c00164{bottom:385.706667pt;}
.y3b_c00164{bottom:400.106667pt;}
.y13_c00164{bottom:401.706667pt;}
.y3a_c00164{bottom:416.373333pt;}
.y12_c00164{bottom:418.106667pt;}
.y39_c00164{bottom:432.506667pt;}
.y11_c00164{bottom:434.106667pt;}
.y38_c00164{bottom:449.306667pt;}
.y10_c00164{bottom:450.240000pt;}
.y37_c00164{bottom:465.306667pt;}
.yf_c00164{bottom:466.506667pt;}
.y36_c00164{bottom:481.440000pt;}
.ye_c00164{bottom:482.373333pt;}
.y35_c00164{bottom:497.040000pt;}
.yd_c00164{bottom:498.506667pt;}
.y34_c00164{bottom:514.106667pt;}
.yc_c00164{bottom:514.240000pt;}
.y33_c00164{bottom:529.706667pt;}
.yb_c00164{bottom:530.906667pt;}
.y32_c00164{bottom:545.973333pt;}
.ya_c00164{bottom:546.640000pt;}
.y31_c00164{bottom:562.240000pt;}
.y9_c00164{bottom:563.040000pt;}
.y8_c00164{bottom:578.640000pt;}
.y30_c00164{bottom:594.640000pt;}
.y7_c00164{bottom:594.906667pt;}
.y6_c00164{bottom:611.040000pt;}
.y2f_c00164{bottom:611.440000pt;}
.y5_c00164{bottom:626.906667pt;}
.y2e_c00164{bottom:627.306667pt;}
.y4_c00164{bottom:643.173333pt;}
.y2d_c00164{bottom:644.106667pt;}
.y3_c00164{bottom:659.306667pt;}
.y2c_c00164{bottom:660.240000pt;}
.y2_c00164{bottom:675.573333pt;}
.y2b_c00164{bottom:675.840000pt;}
.y1_c00164{bottom:691.840000pt;}
.y2a_c00164{bottom:692.373333pt;}
.y29_c00164{bottom:709.840000pt;}
.h6_c00164{height:11.733399pt;}
.h7_c00164{height:38.937500pt;}
.h5_c00164{height:53.098667pt;}
.h3_c00164{height:55.893333pt;}
.h2_c00164{height:56.906667pt;}
.h4_c00164{height:58.688000pt;}
.h1_c00164{height:732.666667pt;}
.h0_c00164{height:732.933333pt;}
.w2_c00164{width:93.222667pt;}
.w1_c00164{width:520.666667pt;}
.w0_c00164{width:520.800000pt;}
.x0_c00164{left:0.000000pt;}
.x2_c00164{left:12.933333pt;}
.x9_c00164{left:18.000000pt;}
.x7_c00164{left:30.533333pt;}
.x1_c00164{left:67.200000pt;}
.x3_c00164{left:68.133333pt;}
.x4_c00164{left:69.600000pt;}
.x5_c00164{left:70.533333pt;}
.x6_c00164{left:71.733333pt;}
.xa_c00164{left:72.666667pt;}
.x8_c00164{left:73.600000pt;}
.xb_c00164{left:90.533333pt;}
.x17_c00164{left:217.568237pt;}
.xc_c00164{left:255.866667pt;}
.xe_c00164{left:257.066667pt;}
.xd_c00164{left:258.933333pt;}
.xf_c00164{left:260.000000pt;}
.x10_c00164{left:260.933333pt;}
.x11_c00164{left:262.533333pt;}
.x12_c00164{left:263.600000pt;}
.x13_c00164{left:265.200000pt;}
.x14_c00164{left:266.666667pt;}
.x15_c00164{left:267.600000pt;}
.x16_c00164{left:421.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_af10a9e669fd7f85c59b86cc.woff2')format("woff");}.ff1_c00165{font-family:ff1_c00165;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00165;src:url('chunks/assets/font_481d5eba1ce4fbcfa2fda5a6.woff2')format("woff");}.ff2_c00165{font-family:ff2_c00165;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00165;src:url('chunks/assets/font_dca0e74e9c057381b114aef6.woff2')format("woff");}.ff3_c00165{font-family:ff3_c00165;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00165;src:url('chunks/assets/font_d37a080edfcda8ca797a6b96.woff2')format("woff");}.ff4_c00165{font-family:ff4_c00165;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00165;src:url('chunks/assets/font_42050a0a5b61553f60c5fa4c.woff2')format("woff");}.ff5_c00165{font-family:ff5_c00165;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00165;src:url('chunks/assets/font_fb1639c49ff41d7ba5f83665.woff2')format("woff");}.ff6_c00165{font-family:ff6_c00165;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00165;src:url('chunks/assets/font_3489d6025032e6ef16315fa8.woff2')format("woff");}.ff7_c00165{font-family:ff7_c00165;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00165;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff8_c00165{font-family:ff8_c00165;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00165{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00165{vertical-align:0.000000px;}
.v1_c00165{vertical-align:88.200000px;}
.ls7_c00165{letter-spacing:0.000000px;}
.ls4_c00165{letter-spacing:2.730000px;}
.ls1_c00165{letter-spacing:3.000000px;}
.ls5_c00165{letter-spacing:3.600000px;}
.ls0_c00165{letter-spacing:6.000000px;}
.ls8_c00165{letter-spacing:15.000000px;}
.ls3_c00165{letter-spacing:21.000000px;}
.ls6_c00165{letter-spacing:23.445000px;}
.ls2_c00165{letter-spacing:29.376000px;}
.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;}
}
.ws7_c00165{word-spacing:-35.340000px;}
.ws8_c00165{word-spacing:-30.813000px;}
.ws5_c00165{word-spacing:-18.060000px;}
.ws4_c00165{word-spacing:-17.340000px;}
.ws3_c00165{word-spacing:-14.160000px;}
.ws2_c00165{word-spacing:-13.452000px;}
.ws0_c00165{word-spacing:-4.860000px;}
.ws1_c00165{word-spacing:-3.840000px;}
.ws9_c00165{word-spacing:0.000000px;}
.ws6_c00165{word-spacing:1.380000px;}
._17_c00165{margin-left:-20.295000px;}
._25_c00165{margin-left:-18.069000px;}
._1a_c00165{margin-left:-16.080000px;}
._23_c00165{margin-left:-14.226000px;}
._27_c00165{margin-left:-12.975000px;}
._24_c00165{margin-left:-11.214000px;}
._6_c00165{margin-left:-9.420000px;}
._1d_c00165{margin-left:-8.400000px;}
._3_c00165{margin-left:-6.900000px;}
._11_c00165{margin-left:-5.703000px;}
._5_c00165{margin-left:-4.140000px;}
._7_c00165{margin-left:-2.760000px;}
._4_c00165{margin-left:-1.500000px;}
._9_c00165{width:1.500000px;}
._b_c00165{width:3.120000px;}
._a_c00165{width:4.440000px;}
._e_c00165{width:5.580000px;}
._8_c00165{width:6.780000px;}
._10_c00165{width:8.394000px;}
._12_c00165{width:9.684000px;}
._d_c00165{width:11.100000px;}
._13_c00165{width:12.408000px;}
._f_c00165{width:13.638000px;}
._0_c00165{width:15.240000px;}
._1_c00165{width:16.440000px;}
._15_c00165{width:17.520000px;}
._20_c00165{width:19.080000px;}
._c_c00165{width:20.820000px;}
._2a_c00165{width:22.080000px;}
._2_c00165{width:23.100000px;}
._14_c00165{width:25.356000px;}
._28_c00165{width:31.140000px;}
._26_c00165{width:33.915000px;}
._2b_c00165{width:37.860000px;}
._29_c00165{width:42.900000px;}
._22_c00165{width:44.520000px;}
._2c_c00165{width:46.800000px;}
._16_c00165{width:54.840000px;}
._18_c00165{width:78.900000px;}
._1e_c00165{width:105.180000px;}
._1c_c00165{width:123.381000px;}
._21_c00165{width:217.650000px;}
._1b_c00165{width:230.340000px;}
._1f_c00165{width:243.186000px;}
._19_c00165{width:474.990000px;}
.fc2_c00165{color:transparent;}
.fc1_c00165{color:rgb(128,128,128);}
.fc0_c00165{color:rgb(0,0,0);}
.fs1_c00165{font-size:42.000000px;}
.fs3_c00165{font-size:45.000000px;}
.fs6_c00165{font-size:48.000000px;}
.fs2_c00165{font-size:57.000000px;}
.fs0_c00165{font-size:60.000000px;}
.fs5_c00165{font-size:63.000000px;}
.fs4_c00165{font-size:132.000000px;}
.y0_c00165{bottom:0.000000px;}
.y4f_c00165{bottom:3.105000px;}
.y4e_c00165{bottom:7.228371px;}
.y4d_c00165{bottom:38.565000px;}
.y27_c00165{bottom:52.365000px;}
.y4c_c00165{bottom:56.415000px;}
.y26_c00165{bottom:71.865000px;}
.y4b_c00165{bottom:75.315000px;}
.y25_c00165{bottom:89.565000px;}
.y4a_c00165{bottom:93.465000px;}
.y24_c00165{bottom:108.315000px;}
.y49_c00165{bottom:111.165000px;}
.y23_c00165{bottom:126.615000px;}
.y48_c00165{bottom:129.915000px;}
.y22_c00165{bottom:144.765000px;}
.y47_c00165{bottom:147.915000px;}
.y21_c00165{bottom:163.365000px;}
.y46_c00165{bottom:166.065000px;}
.y20_c00165{bottom:181.215000px;}
.y45_c00165{bottom:184.065000px;}
.y1f_c00165{bottom:199.215000px;}
.y44_c00165{bottom:202.515000px;}
.y1e_c00165{bottom:215.715000px;}
.y43_c00165{bottom:220.065000px;}
.y1d_c00165{bottom:235.215000px;}
.y42_c00165{bottom:238.665000px;}
.y1c_c00165{bottom:254.115000px;}
.y41_c00165{bottom:256.965000px;}
.y1b_c00165{bottom:271.665000px;}
.y40_c00165{bottom:275.415000px;}
.y1a_c00165{bottom:290.565000px;}
.y3f_c00165{bottom:292.965000px;}
.y19_c00165{bottom:307.215000px;}
.y3e_c00165{bottom:310.965000px;}
.y18_c00165{bottom:325.065000px;}
.y3d_c00165{bottom:329.415000px;}
.y17_c00165{bottom:344.565000px;}
.y3c_c00165{bottom:347.415000px;}
.y16_c00165{bottom:364.215000px;}
.y3b_c00165{bottom:366.315000px;}
.y14_c00165{bottom:378.015000px;}
.y15_c00165{bottom:383.415000px;}
.y3a_c00165{bottom:384.165000px;}
.y39_c00165{bottom:402.015000px;}
.y38_c00165{bottom:420.165000px;}
.y13_c00165{bottom:437.415000px;}
.y37_c00165{bottom:438.465000px;}
.y12_c00165{bottom:455.415000px;}
.y36_c00165{bottom:456.015000px;}
.y11_c00165{bottom:474.315000px;}
.y10_c00165{bottom:492.165000px;}
.y35_c00165{bottom:492.465000px;}
.y34_c00165{bottom:510.615000px;}
.yf_c00165{bottom:511.365000px;}
.y33_c00165{bottom:528.915000px;}
.ye_c00165{bottom:545.415000px;}
.y32_c00165{bottom:547.065000px;}
.y31_c00165{bottom:565.065000px;}
.yd_c00165{bottom:581.865000px;}
.y30_c00165{bottom:582.915000px;}
.yc_c00165{bottom:601.215000px;}
.yb_c00165{bottom:619.365000px;}
.ya_c00165{bottom:637.215000px;}
.y2f_c00165{bottom:637.665000px;}
.y9_c00165{bottom:655.515000px;}
.y8_c00165{bottom:673.365000px;}
.y2e_c00165{bottom:673.665000px;}
.y7_c00165{bottom:691.665000px;}
.y2d_c00165{bottom:691.965000px;}
.y2c_c00165{bottom:709.815000px;}
.y6_c00165{bottom:710.115000px;}
.y2b_c00165{bottom:728.115000px;}
.y5_c00165{bottom:729.315000px;}
.y2a_c00165{bottom:746.265000px;}
.y4_c00165{bottom:746.865000px;}
.y29_c00165{bottom:764.565000px;}
.y3_c00165{bottom:765.465000px;}
.y2_c00165{bottom:782.115000px;}
.y28_c00165{bottom:782.415000px;}
.y1_c00165{bottom:802.365000px;}
.h9_c00165{height:13.200074px;}
.ha_c00165{height:43.804688px;}
.h3_c00165{height:44.016000px;}
.h4_c00165{height:59.736000px;}
.h2_c00165{height:62.880000px;}
.h5_c00165{height:64.020000px;}
.h8_c00165{height:65.040000px;}
.h7_c00165{height:66.024000px;}
.h6_c00165{height:151.080000px;}
.h0_c00165{height:833.775000px;}
.h1_c00165{height:834.000000px;}
.w2_c00165{width:104.875500px;}
.w1_c00165{width:560.250000px;}
.w0_c00165{width:560.550000px;}
.x0_c00165{left:0.000000px;}
.x10_c00165{left:30.750000px;}
.xb_c00165{left:31.800000px;}
.xf_c00165{left:32.850000px;}
.xc_c00165{left:34.800000px;}
.xd_c00165{left:71.550000px;}
.x13_c00165{left:90.450000px;}
.x12_c00165{left:92.700000px;}
.x6_c00165{left:93.900000px;}
.xe_c00165{left:95.850000px;}
.x9_c00165{left:97.650000px;}
.x2_c00165{left:99.300000px;}
.x3_c00165{left:100.800000px;}
.x5_c00165{left:102.000000px;}
.xa_c00165{left:127.350000px;}
.x7_c00165{left:130.350000px;}
.x11_c00165{left:158.700000px;}
.x8_c00165{left:160.650000px;}
.x4_c00165{left:168.150000px;}
.x1_c00165{left:220.650000px;}
.x1e_c00165{left:232.089249px;}
.x14_c00165{left:303.750000px;}
.x19_c00165{left:308.400000px;}
.x1a_c00165{left:310.050000px;}
.x1b_c00165{left:311.850000px;}
.x18_c00165{left:314.100000px;}
.x17_c00165{left:315.600000px;}
.x16_c00165{left:316.800000px;}
.x15_c00165{left:317.850000px;}
.x1c_c00165{left:321.600000px;}
.x1d_c00165{left:482.850000px;}
@media print{
.v0_c00165{vertical-align:0.000000pt;}
.v1_c00165{vertical-align:78.400000pt;}
.ls7_c00165{letter-spacing:0.000000pt;}
.ls4_c00165{letter-spacing:2.426667pt;}
.ls1_c00165{letter-spacing:2.666667pt;}
.ls5_c00165{letter-spacing:3.200000pt;}
.ls0_c00165{letter-spacing:5.333333pt;}
.ls8_c00165{letter-spacing:13.333333pt;}
.ls3_c00165{letter-spacing:18.666667pt;}
.ls6_c00165{letter-spacing:20.840000pt;}
.ls2_c00165{letter-spacing:26.112000pt;}
.ws7_c00165{word-spacing:-31.413333pt;}
.ws8_c00165{word-spacing:-27.389333pt;}
.ws5_c00165{word-spacing:-16.053333pt;}
.ws4_c00165{word-spacing:-15.413333pt;}
.ws3_c00165{word-spacing:-12.586667pt;}
.ws2_c00165{word-spacing:-11.957333pt;}
.ws0_c00165{word-spacing:-4.320000pt;}
.ws1_c00165{word-spacing:-3.413333pt;}
.ws9_c00165{word-spacing:0.000000pt;}
.ws6_c00165{word-spacing:1.226667pt;}
._17_c00165{margin-left:-18.040000pt;}
._25_c00165{margin-left:-16.061333pt;}
._1a_c00165{margin-left:-14.293333pt;}
._23_c00165{margin-left:-12.645333pt;}
._27_c00165{margin-left:-11.533333pt;}
._24_c00165{margin-left:-9.968000pt;}
._6_c00165{margin-left:-8.373333pt;}
._1d_c00165{margin-left:-7.466667pt;}
._3_c00165{margin-left:-6.133333pt;}
._11_c00165{margin-left:-5.069333pt;}
._5_c00165{margin-left:-3.680000pt;}
._7_c00165{margin-left:-2.453333pt;}
._4_c00165{margin-left:-1.333333pt;}
._9_c00165{width:1.333333pt;}
._b_c00165{width:2.773333pt;}
._a_c00165{width:3.946667pt;}
._e_c00165{width:4.960000pt;}
._8_c00165{width:6.026667pt;}
._10_c00165{width:7.461333pt;}
._12_c00165{width:8.608000pt;}
._d_c00165{width:9.866667pt;}
._13_c00165{width:11.029333pt;}
._f_c00165{width:12.122667pt;}
._0_c00165{width:13.546667pt;}
._1_c00165{width:14.613333pt;}
._15_c00165{width:15.573333pt;}
._20_c00165{width:16.960000pt;}
._c_c00165{width:18.506667pt;}
._2a_c00165{width:19.626667pt;}
._2_c00165{width:20.533333pt;}
._14_c00165{width:22.538667pt;}
._28_c00165{width:27.680000pt;}
._26_c00165{width:30.146667pt;}
._2b_c00165{width:33.653333pt;}
._29_c00165{width:38.133333pt;}
._22_c00165{width:39.573333pt;}
._2c_c00165{width:41.600000pt;}
._16_c00165{width:48.746667pt;}
._18_c00165{width:70.133333pt;}
._1e_c00165{width:93.493333pt;}
._1c_c00165{width:109.672000pt;}
._21_c00165{width:193.466667pt;}
._1b_c00165{width:204.746667pt;}
._1f_c00165{width:216.165333pt;}
._19_c00165{width:422.213333pt;}
.fs1_c00165{font-size:37.333333pt;}
.fs3_c00165{font-size:40.000000pt;}
.fs6_c00165{font-size:42.666667pt;}
.fs2_c00165{font-size:50.666667pt;}
.fs0_c00165{font-size:53.333333pt;}
.fs5_c00165{font-size:56.000000pt;}
.fs4_c00165{font-size:117.333333pt;}
.y0_c00165{bottom:0.000000pt;}
.y4f_c00165{bottom:2.760000pt;}
.y4e_c00165{bottom:6.425219pt;}
.y4d_c00165{bottom:34.280000pt;}
.y27_c00165{bottom:46.546667pt;}
.y4c_c00165{bottom:50.146667pt;}
.y26_c00165{bottom:63.880000pt;}
.y4b_c00165{bottom:66.946667pt;}
.y25_c00165{bottom:79.613333pt;}
.y4a_c00165{bottom:83.080000pt;}
.y24_c00165{bottom:96.280000pt;}
.y49_c00165{bottom:98.813333pt;}
.y23_c00165{bottom:112.546667pt;}
.y48_c00165{bottom:115.480000pt;}
.y22_c00165{bottom:128.680000pt;}
.y47_c00165{bottom:131.480000pt;}
.y21_c00165{bottom:145.213333pt;}
.y46_c00165{bottom:147.613333pt;}
.y20_c00165{bottom:161.080000pt;}
.y45_c00165{bottom:163.613333pt;}
.y1f_c00165{bottom:177.080000pt;}
.y44_c00165{bottom:180.013333pt;}
.y1e_c00165{bottom:191.746667pt;}
.y43_c00165{bottom:195.613333pt;}
.y1d_c00165{bottom:209.080000pt;}
.y42_c00165{bottom:212.146667pt;}
.y1c_c00165{bottom:225.880000pt;}
.y41_c00165{bottom:228.413333pt;}
.y1b_c00165{bottom:241.480000pt;}
.y40_c00165{bottom:244.813333pt;}
.y1a_c00165{bottom:258.280000pt;}
.y3f_c00165{bottom:260.413333pt;}
.y19_c00165{bottom:273.080000pt;}
.y3e_c00165{bottom:276.413333pt;}
.y18_c00165{bottom:288.946667pt;}
.y3d_c00165{bottom:292.813333pt;}
.y17_c00165{bottom:306.280000pt;}
.y3c_c00165{bottom:308.813333pt;}
.y16_c00165{bottom:323.746667pt;}
.y3b_c00165{bottom:325.613333pt;}
.y14_c00165{bottom:336.013333pt;}
.y15_c00165{bottom:340.813333pt;}
.y3a_c00165{bottom:341.480000pt;}
.y39_c00165{bottom:357.346667pt;}
.y38_c00165{bottom:373.480000pt;}
.y13_c00165{bottom:388.813333pt;}
.y37_c00165{bottom:389.746667pt;}
.y12_c00165{bottom:404.813333pt;}
.y36_c00165{bottom:405.346667pt;}
.y11_c00165{bottom:421.613333pt;}
.y10_c00165{bottom:437.480000pt;}
.y35_c00165{bottom:437.746667pt;}
.y34_c00165{bottom:453.880000pt;}
.yf_c00165{bottom:454.546667pt;}
.y33_c00165{bottom:470.146667pt;}
.ye_c00165{bottom:484.813333pt;}
.y32_c00165{bottom:486.280000pt;}
.y31_c00165{bottom:502.280000pt;}
.yd_c00165{bottom:517.213333pt;}
.y30_c00165{bottom:518.146667pt;}
.yc_c00165{bottom:534.413333pt;}
.yb_c00165{bottom:550.546667pt;}
.ya_c00165{bottom:566.413333pt;}
.y2f_c00165{bottom:566.813333pt;}
.y9_c00165{bottom:582.680000pt;}
.y8_c00165{bottom:598.546667pt;}
.y2e_c00165{bottom:598.813333pt;}
.y7_c00165{bottom:614.813333pt;}
.y2d_c00165{bottom:615.080000pt;}
.y2c_c00165{bottom:630.946667pt;}
.y6_c00165{bottom:631.213333pt;}
.y2b_c00165{bottom:647.213333pt;}
.y5_c00165{bottom:648.280000pt;}
.y2a_c00165{bottom:663.346667pt;}
.y4_c00165{bottom:663.880000pt;}
.y29_c00165{bottom:679.613333pt;}
.y3_c00165{bottom:680.413333pt;}
.y2_c00165{bottom:695.213333pt;}
.y28_c00165{bottom:695.480000pt;}
.y1_c00165{bottom:713.213333pt;}
.h9_c00165{height:11.733399pt;}
.ha_c00165{height:38.937500pt;}
.h3_c00165{height:39.125333pt;}
.h4_c00165{height:53.098667pt;}
.h2_c00165{height:55.893333pt;}
.h5_c00165{height:56.906667pt;}
.h8_c00165{height:57.813333pt;}
.h7_c00165{height:58.688000pt;}
.h6_c00165{height:134.293333pt;}
.h0_c00165{height:741.133333pt;}
.h1_c00165{height:741.333333pt;}
.w2_c00165{width:93.222667pt;}
.w1_c00165{width:498.000000pt;}
.w0_c00165{width:498.266667pt;}
.x0_c00165{left:0.000000pt;}
.x10_c00165{left:27.333333pt;}
.xb_c00165{left:28.266667pt;}
.xf_c00165{left:29.200000pt;}
.xc_c00165{left:30.933333pt;}
.xd_c00165{left:63.600000pt;}
.x13_c00165{left:80.400000pt;}
.x12_c00165{left:82.400000pt;}
.x6_c00165{left:83.466667pt;}
.xe_c00165{left:85.200000pt;}
.x9_c00165{left:86.800000pt;}
.x2_c00165{left:88.266667pt;}
.x3_c00165{left:89.600000pt;}
.x5_c00165{left:90.666667pt;}
.xa_c00165{left:113.200000pt;}
.x7_c00165{left:115.866667pt;}
.x11_c00165{left:141.066667pt;}
.x8_c00165{left:142.800000pt;}
.x4_c00165{left:149.466667pt;}
.x1_c00165{left:196.133333pt;}
.x1e_c00165{left:206.301554pt;}
.x14_c00165{left:270.000000pt;}
.x19_c00165{left:274.133333pt;}
.x1a_c00165{left:275.600000pt;}
.x1b_c00165{left:277.200000pt;}
.x18_c00165{left:279.200000pt;}
.x17_c00165{left:280.533333pt;}
.x16_c00165{left:281.600000pt;}
.x15_c00165{left:282.533333pt;}
.x1c_c00165{left:285.866667pt;}
.x1d_c00165{left:429.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_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_769b451ee309b4b67bb4af31.woff2')format("woff");}.ff1_c00166{font-family:ff1_c00166;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00166;src:url('chunks/assets/font_87f0d9e8c351f555ae80c3d6.woff2')format("woff");}.ff2_c00166{font-family:ff2_c00166;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00166;src:url('chunks/assets/font_c7b9120927878bc121526c1a.woff2')format("woff");}.ff3_c00166{font-family:ff3_c00166;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00166;src:url('chunks/assets/font_cd4fd06ad975eee8fc920aa5.woff2')format("woff");}.ff4_c00166{font-family:ff4_c00166;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00166;src:url('chunks/assets/font_59ad4fad3092315f34bb1f95.woff2')format("woff");}.ff5_c00166{font-family:ff5_c00166;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00166;src:url('chunks/assets/font_280a8b97e5fccfcc7003b641.woff2')format("woff");}.ff6_c00166{font-family:ff6_c00166;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00166;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff7_c00166{font-family:ff7_c00166;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00166;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff8_c00166{font-family:ff8_c00166;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00166;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff9_c00166{font-family:ff9_c00166;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00166{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00166{vertical-align:0.000000px;}
.ls6_c00166{letter-spacing:0.000000px;}
.ls4_c00166{letter-spacing:1.005000px;}
.ls3_c00166{letter-spacing:2.205000px;}
.ls0_c00166{letter-spacing:3.000000px;}
.ls7_c00166{letter-spacing:6.000000px;}
.ls1_c00166{letter-spacing:6.720000px;}
.ls2_c00166{letter-spacing:18.540000px;}
.ls5_c00166{letter-spacing:26.250000px;}
.sc__c00166{text-shadow:none;}
.sc0_c00166{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00166{-webkit-text-stroke:0px transparent;}
.sc0_c00166{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00166{word-spacing:-29.295000px;}
.ws3_c00166{word-spacing:-23.340000px;}
.ws0_c00166{word-spacing:-17.340000px;}
.ws1_c00166{word-spacing:-14.160000px;}
.ws4_c00166{word-spacing:0.000000px;}
._16_c00166{margin-left:-20.400000px;}
._1a_c00166{margin-left:-12.420000px;}
._12_c00166{margin-left:-10.800000px;}
._17_c00166{margin-left:-9.060000px;}
._d_c00166{margin-left:-7.800000px;}
._a_c00166{margin-left:-6.240000px;}
._e_c00166{margin-left:-4.980000px;}
._b_c00166{margin-left:-3.720000px;}
._11_c00166{margin-left:-2.460000px;}
._c_c00166{margin-left:-1.260000px;}
._6_c00166{width:1.080000px;}
._5_c00166{width:2.160000px;}
._4_c00166{width:3.180000px;}
._7_c00166{width:4.620000px;}
._3_c00166{width:5.880000px;}
._9_c00166{width:7.740000px;}
._1_c00166{width:8.880000px;}
._10_c00166{width:9.900000px;}
._0_c00166{width:11.700000px;}
._13_c00166{width:13.020000px;}
._20_c00166{width:14.160000px;}
._14_c00166{width:15.300000px;}
._26_c00166{width:16.860000px;}
._15_c00166{width:19.980000px;}
._1b_c00166{width:21.780000px;}
._21_c00166{width:23.040000px;}
._8_c00166{width:24.165000px;}
._1e_c00166{width:25.860000px;}
._1d_c00166{width:26.940000px;}
._22_c00166{width:28.680000px;}
._27_c00166{width:30.120000px;}
._29_c00166{width:31.140000px;}
._1c_c00166{width:34.620000px;}
._24_c00166{width:37.080000px;}
._23_c00166{width:39.600000px;}
._2_c00166{width:42.060000px;}
._28_c00166{width:50.820000px;}
._f_c00166{width:57.780000px;}
._25_c00166{width:68.400000px;}
._2a_c00166{width:107.160000px;}
._1f_c00166{width:150.417000px;}
._18_c00166{width:188.880000px;}
._19_c00166{width:295.980000px;}
.fc2_c00166{color:transparent;}
.fc1_c00166{color:rgb(128,128,128);}
.fc0_c00166{color:rgb(0,0,0);}
.fs1_c00166{font-size:45.000000px;}
.fs3_c00166{font-size:48.000000px;}
.fs2_c00166{font-size:51.000000px;}
.fs0_c00166{font-size:60.000000px;}
.y0_c00166{bottom:0.000000px;}
.y56_c00166{bottom:3.105000px;}
.y55_c00166{bottom:7.228371px;}
.y54_c00166{bottom:32.715000px;}
.y53_c00166{bottom:49.665000px;}
.y2a_c00166{bottom:52.065000px;}
.y52_c00166{bottom:69.165000px;}
.y29_c00166{bottom:69.315000px;}
.y51_c00166{bottom:87.765000px;}
.y28_c00166{bottom:88.815000px;}
.y50_c00166{bottom:105.015000px;}
.y27_c00166{bottom:106.365000px;}
.y4f_c00166{bottom:122.565000px;}
.y26_c00166{bottom:124.215000px;}
.y4e_c00166{bottom:141.465000px;}
.y25_c00166{bottom:142.815000px;}
.y4d_c00166{bottom:159.015000px;}
.y24_c00166{bottom:160.365000px;}
.y4c_c00166{bottom:177.615000px;}
.y23_c00166{bottom:179.265000px;}
.y4b_c00166{bottom:195.765000px;}
.y22_c00166{bottom:197.415000px;}
.y4a_c00166{bottom:213.765000px;}
.y21_c00166{bottom:214.665000px;}
.y49_c00166{bottom:231.765000px;}
.y20_c00166{bottom:232.665000px;}
.y48_c00166{bottom:249.765000px;}
.y1f_c00166{bottom:251.115000px;}
.y47_c00166{bottom:267.765000px;}
.y1e_c00166{bottom:269.115000px;}
.y46_c00166{bottom:285.915000px;}
.y1d_c00166{bottom:287.865000px;}
.y45_c00166{bottom:304.215000px;}
.y1c_c00166{bottom:305.565000px;}
.y44_c00166{bottom:321.765000px;}
.y1b_c00166{bottom:323.715000px;}
.y43_c00166{bottom:340.515000px;}
.y1a_c00166{bottom:342.015000px;}
.y42_c00166{bottom:358.515000px;}
.y19_c00166{bottom:359.565000px;}
.y41_c00166{bottom:376.965000px;}
.y18_c00166{bottom:378.765000px;}
.y40_c00166{bottom:394.965000px;}
.y17_c00166{bottom:396.615000px;}
.y3f_c00166{bottom:413.415000px;}
.y16_c00166{bottom:413.565000px;}
.y3e_c00166{bottom:431.415000px;}
.y15_c00166{bottom:432.765000px;}
.y3d_c00166{bottom:449.265000px;}
.y14_c00166{bottom:451.215000px;}
.y3c_c00166{bottom:467.565000px;}
.y13_c00166{bottom:468.915000px;}
.y12_c00166{bottom:485.715000px;}
.y3b_c00166{bottom:486.015000px;}
.y3a_c00166{bottom:504.015000px;}
.y11_c00166{bottom:504.915000px;}
.y39_c00166{bottom:522.165000px;}
.y10_c00166{bottom:522.915000px;}
.y38_c00166{bottom:540.315000px;}
.yf_c00166{bottom:541.365000px;}
.y37_c00166{bottom:558.315000px;}
.ye_c00166{bottom:559.215000px;}
.y36_c00166{bottom:576.165000px;}
.yd_c00166{bottom:576.915000px;}
.y35_c00166{bottom:594.315000px;}
.yc_c00166{bottom:595.665000px;}
.y34_c00166{bottom:613.215000px;}
.yb_c00166{bottom:613.665000px;}
.y33_c00166{bottom:630.765000px;}
.ya_c00166{bottom:631.515000px;}
.y32_c00166{bottom:649.065000px;}
.y9_c00166{bottom:649.365000px;}
.y31_c00166{bottom:666.915000px;}
.y8_c00166{bottom:667.365000px;}
.y30_c00166{bottom:684.915000px;}
.y7_c00166{bottom:685.515000px;}
.y6_c00166{bottom:703.365000px;}
.y2f_c00166{bottom:703.665000px;}
.y5_c00166{bottom:721.365000px;}
.y2e_c00166{bottom:721.665000px;}
.y4_c00166{bottom:739.815000px;}
.y2d_c00166{bottom:740.115000px;}
.y3_c00166{bottom:757.665000px;}
.y2c_c00166{bottom:758.115000px;}
.y2_c00166{bottom:775.665000px;}
.y2b_c00166{bottom:776.565000px;}
.y1_c00166{bottom:795.615000px;}
.h5_c00166{height:13.200074px;}
.h6_c00166{height:43.804688px;}
.h2_c00166{height:62.880000px;}
.h3_c00166{height:64.020000px;}
.h4_c00166{height:64.571777px;}
.h1_c00166{height:831.000000px;}
.h0_c00166{height:831.075000px;}
.w2_c00166{width:104.875500px;}
.w0_c00166{width:590.775000px;}
.w1_c00166{width:591.000000px;}
.x0_c00166{left:0.000000px;}
.x3_c00166{left:13.500000px;}
.x4_c00166{left:15.300000px;}
.xc_c00166{left:19.200000px;}
.x2_c00166{left:74.250000px;}
.x5_c00166{left:75.600000px;}
.x6_c00166{left:76.650000px;}
.x7_c00166{left:78.000000px;}
.x8_c00166{left:79.350000px;}
.x9_c00166{left:80.700000px;}
.xa_c00166{left:81.900000px;}
.xb_c00166{left:82.950000px;}
.x1_c00166{left:201.150000px;}
.x14_c00166{left:247.201767px;}
.xd_c00166{left:290.550000px;}
.xe_c00166{left:291.900000px;}
.xf_c00166{left:293.550000px;}
.x10_c00166{left:295.200000px;}
.x11_c00166{left:296.250000px;}
.x12_c00166{left:297.300000px;}
.x13_c00166{left:461.700000px;}
@media print{
.v0_c00166{vertical-align:0.000000pt;}
.ls6_c00166{letter-spacing:0.000000pt;}
.ls4_c00166{letter-spacing:0.893333pt;}
.ls3_c00166{letter-spacing:1.960000pt;}
.ls0_c00166{letter-spacing:2.666667pt;}
.ls7_c00166{letter-spacing:5.333333pt;}
.ls1_c00166{letter-spacing:5.973333pt;}
.ls2_c00166{letter-spacing:16.480000pt;}
.ls5_c00166{letter-spacing:23.333333pt;}
.ws2_c00166{word-spacing:-26.040000pt;}
.ws3_c00166{word-spacing:-20.746667pt;}
.ws0_c00166{word-spacing:-15.413333pt;}
.ws1_c00166{word-spacing:-12.586667pt;}
.ws4_c00166{word-spacing:0.000000pt;}
._16_c00166{margin-left:-18.133333pt;}
._1a_c00166{margin-left:-11.040000pt;}
._12_c00166{margin-left:-9.600000pt;}
._17_c00166{margin-left:-8.053333pt;}
._d_c00166{margin-left:-6.933333pt;}
._a_c00166{margin-left:-5.546667pt;}
._e_c00166{margin-left:-4.426667pt;}
._b_c00166{margin-left:-3.306667pt;}
._11_c00166{margin-left:-2.186667pt;}
._c_c00166{margin-left:-1.120000pt;}
._6_c00166{width:0.960000pt;}
._5_c00166{width:1.920000pt;}
._4_c00166{width:2.826667pt;}
._7_c00166{width:4.106667pt;}
._3_c00166{width:5.226667pt;}
._9_c00166{width:6.880000pt;}
._1_c00166{width:7.893333pt;}
._10_c00166{width:8.800000pt;}
._0_c00166{width:10.400000pt;}
._13_c00166{width:11.573333pt;}
._20_c00166{width:12.586667pt;}
._14_c00166{width:13.600000pt;}
._26_c00166{width:14.986667pt;}
._15_c00166{width:17.760000pt;}
._1b_c00166{width:19.360000pt;}
._21_c00166{width:20.480000pt;}
._8_c00166{width:21.480000pt;}
._1e_c00166{width:22.986667pt;}
._1d_c00166{width:23.946667pt;}
._22_c00166{width:25.493333pt;}
._27_c00166{width:26.773333pt;}
._29_c00166{width:27.680000pt;}
._1c_c00166{width:30.773333pt;}
._24_c00166{width:32.960000pt;}
._23_c00166{width:35.200000pt;}
._2_c00166{width:37.386667pt;}
._28_c00166{width:45.173333pt;}
._f_c00166{width:51.360000pt;}
._25_c00166{width:60.800000pt;}
._2a_c00166{width:95.253333pt;}
._1f_c00166{width:133.704000pt;}
._18_c00166{width:167.893333pt;}
._19_c00166{width:263.093333pt;}
.fs1_c00166{font-size:40.000000pt;}
.fs3_c00166{font-size:42.666667pt;}
.fs2_c00166{font-size:45.333333pt;}
.fs0_c00166{font-size:53.333333pt;}
.y0_c00166{bottom:0.000000pt;}
.y56_c00166{bottom:2.760000pt;}
.y55_c00166{bottom:6.425219pt;}
.y54_c00166{bottom:29.080000pt;}
.y53_c00166{bottom:44.146667pt;}
.y2a_c00166{bottom:46.280000pt;}
.y52_c00166{bottom:61.480000pt;}
.y29_c00166{bottom:61.613333pt;}
.y51_c00166{bottom:78.013333pt;}
.y28_c00166{bottom:78.946667pt;}
.y50_c00166{bottom:93.346667pt;}
.y27_c00166{bottom:94.546667pt;}
.y4f_c00166{bottom:108.946667pt;}
.y26_c00166{bottom:110.413333pt;}
.y4e_c00166{bottom:125.746667pt;}
.y25_c00166{bottom:126.946667pt;}
.y4d_c00166{bottom:141.346667pt;}
.y24_c00166{bottom:142.546667pt;}
.y4c_c00166{bottom:157.880000pt;}
.y23_c00166{bottom:159.346667pt;}
.y4b_c00166{bottom:174.013333pt;}
.y22_c00166{bottom:175.480000pt;}
.y4a_c00166{bottom:190.013333pt;}
.y21_c00166{bottom:190.813333pt;}
.y49_c00166{bottom:206.013333pt;}
.y20_c00166{bottom:206.813333pt;}
.y48_c00166{bottom:222.013333pt;}
.y1f_c00166{bottom:223.213333pt;}
.y47_c00166{bottom:238.013333pt;}
.y1e_c00166{bottom:239.213333pt;}
.y46_c00166{bottom:254.146667pt;}
.y1d_c00166{bottom:255.880000pt;}
.y45_c00166{bottom:270.413333pt;}
.y1c_c00166{bottom:271.613333pt;}
.y44_c00166{bottom:286.013333pt;}
.y1b_c00166{bottom:287.746667pt;}
.y43_c00166{bottom:302.680000pt;}
.y1a_c00166{bottom:304.013333pt;}
.y42_c00166{bottom:318.680000pt;}
.y19_c00166{bottom:319.613333pt;}
.y41_c00166{bottom:335.080000pt;}
.y18_c00166{bottom:336.680000pt;}
.y40_c00166{bottom:351.080000pt;}
.y17_c00166{bottom:352.546667pt;}
.y3f_c00166{bottom:367.480000pt;}
.y16_c00166{bottom:367.613333pt;}
.y3e_c00166{bottom:383.480000pt;}
.y15_c00166{bottom:384.680000pt;}
.y3d_c00166{bottom:399.346667pt;}
.y14_c00166{bottom:401.080000pt;}
.y3c_c00166{bottom:415.613333pt;}
.y13_c00166{bottom:416.813333pt;}
.y12_c00166{bottom:431.746667pt;}
.y3b_c00166{bottom:432.013333pt;}
.y3a_c00166{bottom:448.013333pt;}
.y11_c00166{bottom:448.813333pt;}
.y39_c00166{bottom:464.146667pt;}
.y10_c00166{bottom:464.813333pt;}
.y38_c00166{bottom:480.280000pt;}
.yf_c00166{bottom:481.213333pt;}
.y37_c00166{bottom:496.280000pt;}
.ye_c00166{bottom:497.080000pt;}
.y36_c00166{bottom:512.146667pt;}
.yd_c00166{bottom:512.813333pt;}
.y35_c00166{bottom:528.280000pt;}
.yc_c00166{bottom:529.480000pt;}
.y34_c00166{bottom:545.080000pt;}
.yb_c00166{bottom:545.480000pt;}
.y33_c00166{bottom:560.680000pt;}
.ya_c00166{bottom:561.346667pt;}
.y32_c00166{bottom:576.946667pt;}
.y9_c00166{bottom:577.213333pt;}
.y31_c00166{bottom:592.813333pt;}
.y8_c00166{bottom:593.213333pt;}
.y30_c00166{bottom:608.813333pt;}
.y7_c00166{bottom:609.346667pt;}
.y6_c00166{bottom:625.213333pt;}
.y2f_c00166{bottom:625.480000pt;}
.y5_c00166{bottom:641.213333pt;}
.y2e_c00166{bottom:641.480000pt;}
.y4_c00166{bottom:657.613333pt;}
.y2d_c00166{bottom:657.880000pt;}
.y3_c00166{bottom:673.480000pt;}
.y2c_c00166{bottom:673.880000pt;}
.y2_c00166{bottom:689.480000pt;}
.y2b_c00166{bottom:690.280000pt;}
.y1_c00166{bottom:707.213333pt;}
.h5_c00166{height:11.733399pt;}
.h6_c00166{height:38.937500pt;}
.h2_c00166{height:55.893333pt;}
.h3_c00166{height:56.906667pt;}
.h4_c00166{height:57.397135pt;}
.h1_c00166{height:738.666667pt;}
.h0_c00166{height:738.733333pt;}
.w2_c00166{width:93.222667pt;}
.w0_c00166{width:525.133333pt;}
.w1_c00166{width:525.333333pt;}
.x0_c00166{left:0.000000pt;}
.x3_c00166{left:12.000000pt;}
.x4_c00166{left:13.600000pt;}
.xc_c00166{left:17.066667pt;}
.x2_c00166{left:66.000000pt;}
.x5_c00166{left:67.200000pt;}
.x6_c00166{left:68.133333pt;}
.x7_c00166{left:69.333333pt;}
.x8_c00166{left:70.533333pt;}
.x9_c00166{left:71.733333pt;}
.xa_c00166{left:72.800000pt;}
.xb_c00166{left:73.733333pt;}
.x1_c00166{left:178.800000pt;}
.x14_c00166{left:219.734904pt;}
.xd_c00166{left:258.266667pt;}
.xe_c00166{left:259.466667pt;}
.xf_c00166{left:260.933333pt;}
.x10_c00166{left:262.400000pt;}
.x11_c00166{left:263.333333pt;}
.x12_c00166{left:264.266667pt;}
.x13_c00166{left:410.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ac8f1101949e0c608763f2a7.woff2')format("woff");}.ff1_c00167{font-family:ff1_c00167;line-height:1.437000;font-style:normal;font-weight:normal;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_7f6b8f83b48dea76e636450b.woff2')format("woff");}.ff2_c00167{font-family:ff2_c00167;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00167;src:url('chunks/assets/font_0c47d4b6dd8200eb0eb9d3ea.woff2')format("woff");}.ff3_c00167{font-family:ff3_c00167;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00167;src:url('chunks/assets/font_f11218fd0572f4509a912a3c.woff2')format("woff");}.ff4_c00167{font-family:ff4_c00167;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00167;src:url('chunks/assets/font_d94d22bef9c07ba5a6ca9557.woff2')format("woff");}.ff5_c00167{font-family:ff5_c00167;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00167;src:url('chunks/assets/font_492ae1f3794a158a53441083.woff2')format("woff");}.ff6_c00167{font-family:ff6_c00167;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00167;src:url('chunks/assets/font_2cbcbbfac92c82ce8212fa51.woff2')format("woff");}.ff7_c00167{font-family:ff7_c00167;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00167;src:url('chunks/assets/font_634ab99a98f3a67dbec85376.woff2')format("woff");}.ff8_c00167{font-family:ff8_c00167;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00167;src:url('chunks/assets/font_79ad7e6bc179845148a12b32.woff2')format("woff");}.ff9_c00167{font-family:ff9_c00167;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00167;src:url('chunks/assets/font_605aebbd58c84228adb78f62.woff2')format("woff");}.ffa_c00167{font-family:ffa_c00167;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00167;src:url('chunks/assets/font_036c14e6f4df1dcf00cdc0b7.woff2')format("woff");}.ffb_c00167{font-family:ffb_c00167;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc_c00167;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ffc_c00167{font-family:ffc_c00167;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00167{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00167{vertical-align:0.000000px;}
.ls7_c00167{letter-spacing:-6.000000px;}
.ls6_c00167{letter-spacing:-3.000000px;}
.ls3_c00167{letter-spacing:0.000000px;}
.ls2_c00167{letter-spacing:2.205000px;}
.ls1_c00167{letter-spacing:3.000000px;}
.ls5_c00167{letter-spacing:6.000000px;}
.ls4_c00167{letter-spacing:12.000000px;}
.ls0_c00167{letter-spacing:16.143000px;}
.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;}
}
.wsa_c00167{word-spacing:-29.295000px;}
.ws4_c00167{word-spacing:-24.366000px;}
.ws9_c00167{word-spacing:-23.340000px;}
.wsc_c00167{word-spacing:-18.060000px;}
.ws5_c00167{word-spacing:-15.576000px;}
.ws1_c00167{word-spacing:-15.366000px;}
.ws0_c00167{word-spacing:-14.160000px;}
.ws8_c00167{word-spacing:-12.750000px;}
.wsb_c00167{word-spacing:-7.452000px;}
.ws2_c00167{word-spacing:-3.054000px;}
.ws3_c00167{word-spacing:-3.043200px;}
.ws7_c00167{word-spacing:-0.051000px;}
.ws6_c00167{word-spacing:-0.040800px;}
.wsd_c00167{word-spacing:0.000000px;}
._29_c00167{margin-left:-19.246800px;}
._10_c00167{margin-left:-13.542000px;}
._11_c00167{margin-left:-11.556000px;}
._15_c00167{margin-left:-10.422000px;}
._18_c00167{margin-left:-9.331200px;}
._17_c00167{margin-left:-8.280000px;}
._f_c00167{margin-left:-6.822000px;}
._d_c00167{margin-left:-5.700000px;}
._b_c00167{margin-left:-3.780000px;}
._a_c00167{margin-left:-2.520000px;}
._12_c00167{margin-left:-1.512000px;}
._1_c00167{width:1.260000px;}
._0_c00167{width:2.700000px;}
._2_c00167{width:4.140000px;}
._3_c00167{width:5.820000px;}
._7_c00167{width:7.440000px;}
._6_c00167{width:8.580000px;}
._8_c00167{width:10.260000px;}
._c_c00167{width:12.540000px;}
._5_c00167{width:13.740000px;}
._1b_c00167{width:14.796000px;}
._1c_c00167{width:16.302000px;}
._19_c00167{width:17.508000px;}
._28_c00167{width:18.672000px;}
._1a_c00167{width:21.660000px;}
._21_c00167{width:22.986000px;}
._24_c00167{width:25.800000px;}
._1e_c00167{width:28.335000px;}
._25_c00167{width:29.628000px;}
._1d_c00167{width:30.867000px;}
._22_c00167{width:34.785000px;}
._2d_c00167{width:36.192000px;}
._20_c00167{width:38.844000px;}
._1f_c00167{width:41.124000px;}
._2c_c00167{width:42.204000px;}
._4_c00167{width:57.000000px;}
._9_c00167{width:59.580000px;}
._30_c00167{width:61.680000px;}
._26_c00167{width:63.960000px;}
._2f_c00167{width:65.191200px;}
._23_c00167{width:67.860000px;}
._27_c00167{width:69.000000px;}
._16_c00167{width:70.791000px;}
._2a_c00167{width:80.760000px;}
._e_c00167{width:115.800000px;}
._14_c00167{width:130.722000px;}
._2e_c00167{width:133.908000px;}
._2b_c00167{width:239.520000px;}
._13_c00167{width:286.977000px;}
.fc2_c00167{color:transparent;}
.fc1_c00167{color:rgb(128,128,128);}
.fc0_c00167{color:rgb(0,0,0);}
.fs8_c00167{font-size:24.000000px;}
.fs6_c00167{font-size:40.800000px;}
.fs3_c00167{font-size:43.200000px;}
.fs7_c00167{font-size:45.000000px;}
.fsa_c00167{font-size:48.000000px;}
.fs5_c00167{font-size:51.000000px;}
.fs1_c00167{font-size:54.000000px;}
.fs9_c00167{font-size:57.000000px;}
.fs0_c00167{font-size:60.000000px;}
.fs2_c00167{font-size:63.000000px;}
.fs4_c00167{font-size:66.000000px;}
.y0_c00167{bottom:0.000000px;}
.y40_c00167{bottom:3.105000px;}
.y3f_c00167{bottom:7.228355px;}
.y3e_c00167{bottom:40.035000px;}
.y3d_c00167{bottom:57.735000px;}
.y3c_c00167{bottom:76.635000px;}
.y3b_c00167{bottom:94.485000px;}
.y3a_c00167{bottom:113.385000px;}
.y39_c00167{bottom:131.535000px;}
.y38_c00167{bottom:148.935000px;}
.y2e_c00167{bottom:149.535000px;}
.y37_c00167{bottom:167.085000px;}
.y2d_c00167{bottom:167.685000px;}
.y36_c00167{bottom:185.235000px;}
.y2c_c00167{bottom:185.835000px;}
.y2b_c00167{bottom:203.835000px;}
.y2a_c00167{bottom:222.435000px;}
.y35_c00167{bottom:222.735000px;}
.y34_c00167{bottom:239.835000px;}
.y29_c00167{bottom:239.985000px;}
.y33_c00167{bottom:257.535000px;}
.y28_c00167{bottom:258.135000px;}
.y32_c00167{bottom:275.985000px;}
.y27_c00167{bottom:276.435000px;}
.y26_c00167{bottom:293.835000px;}
.y31_c00167{bottom:311.535000px;}
.y25_c00167{bottom:311.835000px;}
.y24_c00167{bottom:330.285000px;}
.y23_c00167{bottom:347.835000px;}
.y30_c00167{bottom:348.885000px;}
.y22_c00167{bottom:366.135000px;}
.y2f_c00167{bottom:380.385000px;}
.y21_c00167{bottom:383.985000px;}
.y20_c00167{bottom:401.835000px;}
.y1f_c00167{bottom:420.435000px;}
.y1e_c00167{bottom:438.435000px;}
.y1d_c00167{bottom:456.285000px;}
.y12_c00167{bottom:456.885000px;}
.y1c_c00167{bottom:473.835000px;}
.y11_c00167{bottom:474.735000px;}
.y1b_c00167{bottom:492.435000px;}
.y10_c00167{bottom:493.035000px;}
.y1a_c00167{bottom:510.585000px;}
.yf_c00167{bottom:511.185000px;}
.ye_c00167{bottom:528.885000px;}
.y19_c00167{bottom:529.185000px;}
.yd_c00167{bottom:547.035000px;}
.y18_c00167{bottom:547.335000px;}
.yc_c00167{bottom:564.885000px;}
.y17_c00167{bottom:565.935000px;}
.yb_c00167{bottom:583.185000px;}
.y16_c00167{bottom:601.785000px;}
.ya_c00167{bottom:619.185000px;}
.y15_c00167{bottom:619.335000px;}
.y14_c00167{bottom:638.085000px;}
.y9_c00167{bottom:638.235000px;}
.y8_c00167{bottom:655.635000px;}
.y13_c00167{bottom:656.085000px;}
.y7_c00167{bottom:674.235000px;}
.y6_c00167{bottom:691.785000px;}
.y5_c00167{bottom:710.685000px;}
.y4_c00167{bottom:728.985000px;}
.y3_c00167{bottom:746.085000px;}
.y2_c00167{bottom:764.385000px;}
.y1_c00167{bottom:783.285000px;}
.hb_c00167{height:13.200074px;}
.h9_c00167{height:30.386719px;}
.hc_c00167{height:43.804688px;}
.h3_c00167{height:56.592000px;}
.h7_c00167{height:59.690918px;}
.ha_c00167{height:59.736000px;}
.h6_c00167{height:61.831055px;}
.h2_c00167{height:62.880000px;}
.h8_c00167{height:64.020000px;}
.h4_c00167{height:66.024000px;}
.h5_c00167{height:69.168000px;}
.h1_c00167{height:841.500000px;}
.h0_c00167{height:841.575000px;}
.w2_c00167{width:104.875500px;}
.w0_c00167{width:565.950000px;}
.w1_c00167{width:566.250000px;}
.x0_c00167{left:0.000000px;}
.xd_c00167{left:54.600000px;}
.xf_c00167{left:60.750000px;}
.x10_c00167{left:68.400000px;}
.x14_c00167{left:85.650000px;}
.xe_c00167{left:88.050000px;}
.x15_c00167{left:90.150000px;}
.x16_c00167{left:91.350000px;}
.xc_c00167{left:92.400000px;}
.xb_c00167{left:93.750000px;}
.xa_c00167{left:95.400000px;}
.x4_c00167{left:96.750000px;}
.x3_c00167{left:98.250000px;}
.x1_c00167{left:100.200000px;}
.x2_c00167{left:101.400000px;}
.x18_c00167{left:234.789230px;}
.x13_c00167{left:307.350000px;}
.x12_c00167{left:308.700000px;}
.x9_c00167{left:310.050000px;}
.x5_c00167{left:326.700000px;}
.x8_c00167{left:343.500000px;}
.x6_c00167{left:375.900000px;}
.x7_c00167{left:392.850000px;}
.x11_c00167{left:447.900000px;}
.x17_c00167{left:475.500000px;}
@media print{
.v0_c00167{vertical-align:0.000000pt;}
.ls7_c00167{letter-spacing:-5.333333pt;}
.ls6_c00167{letter-spacing:-2.666667pt;}
.ls3_c00167{letter-spacing:0.000000pt;}
.ls2_c00167{letter-spacing:1.960000pt;}
.ls1_c00167{letter-spacing:2.666667pt;}
.ls5_c00167{letter-spacing:5.333333pt;}
.ls4_c00167{letter-spacing:10.666667pt;}
.ls0_c00167{letter-spacing:14.349333pt;}
.wsa_c00167{word-spacing:-26.040000pt;}
.ws4_c00167{word-spacing:-21.658667pt;}
.ws9_c00167{word-spacing:-20.746667pt;}
.wsc_c00167{word-spacing:-16.053333pt;}
.ws5_c00167{word-spacing:-13.845333pt;}
.ws1_c00167{word-spacing:-13.658667pt;}
.ws0_c00167{word-spacing:-12.586667pt;}
.ws8_c00167{word-spacing:-11.333333pt;}
.wsb_c00167{word-spacing:-6.624000pt;}
.ws2_c00167{word-spacing:-2.714667pt;}
.ws3_c00167{word-spacing:-2.705067pt;}
.ws7_c00167{word-spacing:-0.045333pt;}
.ws6_c00167{word-spacing:-0.036267pt;}
.wsd_c00167{word-spacing:0.000000pt;}
._29_c00167{margin-left:-17.108267pt;}
._10_c00167{margin-left:-12.037333pt;}
._11_c00167{margin-left:-10.272000pt;}
._15_c00167{margin-left:-9.264000pt;}
._18_c00167{margin-left:-8.294400pt;}
._17_c00167{margin-left:-7.360000pt;}
._f_c00167{margin-left:-6.064000pt;}
._d_c00167{margin-left:-5.066667pt;}
._b_c00167{margin-left:-3.360000pt;}
._a_c00167{margin-left:-2.240000pt;}
._12_c00167{margin-left:-1.344000pt;}
._1_c00167{width:1.120000pt;}
._0_c00167{width:2.400000pt;}
._2_c00167{width:3.680000pt;}
._3_c00167{width:5.173333pt;}
._7_c00167{width:6.613333pt;}
._6_c00167{width:7.626667pt;}
._8_c00167{width:9.120000pt;}
._c_c00167{width:11.146667pt;}
._5_c00167{width:12.213333pt;}
._1b_c00167{width:13.152000pt;}
._1c_c00167{width:14.490667pt;}
._19_c00167{width:15.562667pt;}
._28_c00167{width:16.597333pt;}
._1a_c00167{width:19.253333pt;}
._21_c00167{width:20.432000pt;}
._24_c00167{width:22.933333pt;}
._1e_c00167{width:25.186667pt;}
._25_c00167{width:26.336000pt;}
._1d_c00167{width:27.437333pt;}
._22_c00167{width:30.920000pt;}
._2d_c00167{width:32.170667pt;}
._20_c00167{width:34.528000pt;}
._1f_c00167{width:36.554667pt;}
._2c_c00167{width:37.514667pt;}
._4_c00167{width:50.666667pt;}
._9_c00167{width:52.960000pt;}
._30_c00167{width:54.826667pt;}
._26_c00167{width:56.853333pt;}
._2f_c00167{width:57.947733pt;}
._23_c00167{width:60.320000pt;}
._27_c00167{width:61.333333pt;}
._16_c00167{width:62.925333pt;}
._2a_c00167{width:71.786667pt;}
._e_c00167{width:102.933333pt;}
._14_c00167{width:116.197333pt;}
._2e_c00167{width:119.029333pt;}
._2b_c00167{width:212.906667pt;}
._13_c00167{width:255.090667pt;}
.fs8_c00167{font-size:21.333333pt;}
.fs6_c00167{font-size:36.266667pt;}
.fs3_c00167{font-size:38.400000pt;}
.fs7_c00167{font-size:40.000000pt;}
.fsa_c00167{font-size:42.666667pt;}
.fs5_c00167{font-size:45.333333pt;}
.fs1_c00167{font-size:48.000000pt;}
.fs9_c00167{font-size:50.666667pt;}
.fs0_c00167{font-size:53.333333pt;}
.fs2_c00167{font-size:56.000000pt;}
.fs4_c00167{font-size:58.666667pt;}
.y0_c00167{bottom:0.000000pt;}
.y40_c00167{bottom:2.760000pt;}
.y3f_c00167{bottom:6.425204pt;}
.y3e_c00167{bottom:35.586667pt;}
.y3d_c00167{bottom:51.320000pt;}
.y3c_c00167{bottom:68.120000pt;}
.y3b_c00167{bottom:83.986667pt;}
.y3a_c00167{bottom:100.786667pt;}
.y39_c00167{bottom:116.920000pt;}
.y38_c00167{bottom:132.386667pt;}
.y2e_c00167{bottom:132.920000pt;}
.y37_c00167{bottom:148.520000pt;}
.y2d_c00167{bottom:149.053333pt;}
.y36_c00167{bottom:164.653333pt;}
.y2c_c00167{bottom:165.186667pt;}
.y2b_c00167{bottom:181.186667pt;}
.y2a_c00167{bottom:197.720000pt;}
.y35_c00167{bottom:197.986667pt;}
.y34_c00167{bottom:213.186667pt;}
.y29_c00167{bottom:213.320000pt;}
.y33_c00167{bottom:228.920000pt;}
.y28_c00167{bottom:229.453333pt;}
.y32_c00167{bottom:245.320000pt;}
.y27_c00167{bottom:245.720000pt;}
.y26_c00167{bottom:261.186667pt;}
.y31_c00167{bottom:276.920000pt;}
.y25_c00167{bottom:277.186667pt;}
.y24_c00167{bottom:293.586667pt;}
.y23_c00167{bottom:309.186667pt;}
.y30_c00167{bottom:310.120000pt;}
.y22_c00167{bottom:325.453333pt;}
.y2f_c00167{bottom:338.120000pt;}
.y21_c00167{bottom:341.320000pt;}
.y20_c00167{bottom:357.186667pt;}
.y1f_c00167{bottom:373.720000pt;}
.y1e_c00167{bottom:389.720000pt;}
.y1d_c00167{bottom:405.586667pt;}
.y12_c00167{bottom:406.120000pt;}
.y1c_c00167{bottom:421.186667pt;}
.y11_c00167{bottom:421.986667pt;}
.y1b_c00167{bottom:437.720000pt;}
.y10_c00167{bottom:438.253333pt;}
.y1a_c00167{bottom:453.853333pt;}
.yf_c00167{bottom:454.386667pt;}
.ye_c00167{bottom:470.120000pt;}
.y19_c00167{bottom:470.386667pt;}
.yd_c00167{bottom:486.253333pt;}
.y18_c00167{bottom:486.520000pt;}
.yc_c00167{bottom:502.120000pt;}
.y17_c00167{bottom:503.053333pt;}
.yb_c00167{bottom:518.386667pt;}
.y16_c00167{bottom:534.920000pt;}
.ya_c00167{bottom:550.386667pt;}
.y15_c00167{bottom:550.520000pt;}
.y14_c00167{bottom:567.186667pt;}
.y9_c00167{bottom:567.320000pt;}
.y8_c00167{bottom:582.786667pt;}
.y13_c00167{bottom:583.186667pt;}
.y7_c00167{bottom:599.320000pt;}
.y6_c00167{bottom:614.920000pt;}
.y5_c00167{bottom:631.720000pt;}
.y4_c00167{bottom:647.986667pt;}
.y3_c00167{bottom:663.186667pt;}
.y2_c00167{bottom:679.453333pt;}
.y1_c00167{bottom:696.253333pt;}
.hb_c00167{height:11.733399pt;}
.h9_c00167{height:27.010417pt;}
.hc_c00167{height:38.937500pt;}
.h3_c00167{height:50.304000pt;}
.h7_c00167{height:53.058594pt;}
.ha_c00167{height:53.098667pt;}
.h6_c00167{height:54.960938pt;}
.h2_c00167{height:55.893333pt;}
.h8_c00167{height:56.906667pt;}
.h4_c00167{height:58.688000pt;}
.h5_c00167{height:61.482667pt;}
.h1_c00167{height:748.000000pt;}
.h0_c00167{height:748.066667pt;}
.w2_c00167{width:93.222667pt;}
.w0_c00167{width:503.066667pt;}
.w1_c00167{width:503.333333pt;}
.x0_c00167{left:0.000000pt;}
.xd_c00167{left:48.533333pt;}
.xf_c00167{left:54.000000pt;}
.x10_c00167{left:60.800000pt;}
.x14_c00167{left:76.133333pt;}
.xe_c00167{left:78.266667pt;}
.x15_c00167{left:80.133333pt;}
.x16_c00167{left:81.200000pt;}
.xc_c00167{left:82.133333pt;}
.xb_c00167{left:83.333333pt;}
.xa_c00167{left:84.800000pt;}
.x4_c00167{left:86.000000pt;}
.x3_c00167{left:87.333333pt;}
.x1_c00167{left:89.066667pt;}
.x2_c00167{left:90.133333pt;}
.x18_c00167{left:208.701538pt;}
.x13_c00167{left:273.200000pt;}
.x12_c00167{left:274.400000pt;}
.x9_c00167{left:275.600000pt;}
.x5_c00167{left:290.400000pt;}
.x8_c00167{left:305.333333pt;}
.x6_c00167{left:334.133333pt;}
.x7_c00167{left:349.200000pt;}
.x11_c00167{left:398.133333pt;}
.x17_c00167{left:422.666667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_6730755016aa6aa7025b3f27.woff2')format("woff");}.ff1_c00168{font-family:ff1_c00168;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00168;src:url('chunks/assets/font_e36536beaf05fd1ee7ce4a49.woff2')format("woff");}.ff2_c00168{font-family:ff2_c00168;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00168;src:url('chunks/assets/font_8a97adb1a62194079d72ab90.woff2')format("woff");}.ff3_c00168{font-family:ff3_c00168;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00168;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff4_c00168{font-family:ff4_c00168;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00168{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00168{vertical-align:0.000000px;}
.ls4_c00168{letter-spacing:0.000000px;}
.ls3_c00168{letter-spacing:1.680000px;}
.ls1_c00168{letter-spacing:2.220000px;}
.ls0_c00168{letter-spacing:3.000000px;}
.ls2_c00168{letter-spacing:4.140000px;}
.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;}
}
.ws3_c00168{word-spacing:-18.060000px;}
.ws1_c00168{word-spacing:-17.340000px;}
.ws0_c00168{word-spacing:-14.160000px;}
.ws2_c00168{word-spacing:-4.500000px;}
.ws4_c00168{word-spacing:0.000000px;}
._23_c00168{margin-left:-38.088000px;}
._22_c00168{margin-left:-23.913000px;}
._24_c00168{margin-left:-22.785000px;}
._19_c00168{margin-left:-12.780000px;}
._18_c00168{margin-left:-11.760000px;}
._17_c00168{margin-left:-10.320000px;}
._29_c00168{margin-left:-9.180000px;}
._14_c00168{margin-left:-8.040000px;}
._11_c00168{margin-left:-6.300000px;}
._b_c00168{margin-left:-5.160000px;}
._d_c00168{margin-left:-3.240000px;}
._8_c00168{margin-left:-1.320000px;}
._5_c00168{width:1.260000px;}
._6_c00168{width:2.400000px;}
._e_c00168{width:4.140000px;}
._1b_c00168{width:5.160000px;}
._12_c00168{width:6.600000px;}
._a_c00168{width:7.680000px;}
._1_c00168{width:8.880000px;}
._9_c00168{width:10.380000px;}
._0_c00168{width:12.000000px;}
._13_c00168{width:13.020000px;}
._3_c00168{width:14.160000px;}
._4_c00168{width:15.840000px;}
._1f_c00168{width:17.040000px;}
._10_c00168{width:19.980000px;}
._15_c00168{width:22.140000px;}
._f_c00168{width:23.820000px;}
._16_c00168{width:26.100000px;}
._25_c00168{width:28.320000px;}
._21_c00168{width:29.820000px;}
._1e_c00168{width:31.740000px;}
._7_c00168{width:33.120000px;}
._1c_c00168{width:34.560000px;}
._20_c00168{width:36.660000px;}
._2_c00168{width:37.860000px;}
._27_c00168{width:39.240000px;}
._2a_c00168{width:40.260000px;}
._28_c00168{width:46.740000px;}
._26_c00168{width:49.680000px;}
._1d_c00168{width:54.780000px;}
._1a_c00168{width:70.740000px;}
._c_c00168{width:125.160000px;}
.fc2_c00168{color:transparent;}
.fc1_c00168{color:rgb(128,128,128);}
.fc0_c00168{color:rgb(0,0,0);}
.fs2_c00168{font-size:48.000000px;}
.fs0_c00168{font-size:60.000000px;}
.fs1_c00168{font-size:207.000000px;}
.y0_c00168{bottom:0.000000px;}
.y56_c00168{bottom:3.105000px;}
.y55_c00168{bottom:7.228371px;}
.y54_c00168{bottom:36.915000px;}
.y2a_c00168{bottom:52.665000px;}
.y53_c00168{bottom:54.315000px;}
.y29_c00168{bottom:72.015000px;}
.y52_c00168{bottom:72.615000px;}
.y28_c00168{bottom:89.865000px;}
.y51_c00168{bottom:90.915000px;}
.y27_c00168{bottom:107.415000px;}
.y50_c00168{bottom:108.315000px;}
.y26_c00168{bottom:125.565000px;}
.y4f_c00168{bottom:126.315000px;}
.y25_c00168{bottom:143.865000px;}
.y4e_c00168{bottom:144.165000px;}
.y24_c00168{bottom:161.715000px;}
.y4d_c00168{bottom:162.315000px;}
.y23_c00168{bottom:179.565000px;}
.y4c_c00168{bottom:180.015000px;}
.y22_c00168{bottom:197.415000px;}
.y4b_c00168{bottom:198.765000px;}
.y21_c00168{bottom:215.115000px;}
.y4a_c00168{bottom:216.465000px;}
.y20_c00168{bottom:233.865000px;}
.y49_c00168{bottom:235.215000px;}
.y1f_c00168{bottom:251.565000px;}
.y48_c00168{bottom:252.765000px;}
.y1e_c00168{bottom:269.415000px;}
.y47_c00168{bottom:270.765000px;}
.y1d_c00168{bottom:287.865000px;}
.y46_c00168{bottom:288.915000px;}
.y1c_c00168{bottom:305.865000px;}
.y45_c00168{bottom:306.765000px;}
.y1b_c00168{bottom:324.015000px;}
.y44_c00168{bottom:324.765000px;}
.y1a_c00168{bottom:342.015000px;}
.y43_c00168{bottom:342.615000px;}
.y19_c00168{bottom:359.565000px;}
.y42_c00168{bottom:360.915000px;}
.y18_c00168{bottom:378.465000px;}
.y41_c00168{bottom:379.065000px;}
.y17_c00168{bottom:396.615000px;}
.y40_c00168{bottom:396.915000px;}
.y16_c00168{bottom:414.765000px;}
.y3f_c00168{bottom:415.515000px;}
.y15_c00168{bottom:432.465000px;}
.y3e_c00168{bottom:433.665000px;}
.y3d_c00168{bottom:451.365000px;}
.y14_c00168{bottom:451.665000px;}
.y13_c00168{bottom:468.465000px;}
.y3c_c00168{bottom:469.515000px;}
.y12_c00168{bottom:486.315000px;}
.y3b_c00168{bottom:487.665000px;}
.y11_c00168{bottom:504.315000px;}
.y3a_c00168{bottom:505.365000px;}
.y10_c00168{bottom:522.765000px;}
.y39_c00168{bottom:523.515000px;}
.yf_c00168{bottom:540.465000px;}
.y38_c00168{bottom:541.065000px;}
.ye_c00168{bottom:558.915000px;}
.y37_c00168{bottom:559.665000px;}
.yd_c00168{bottom:576.915000px;}
.yc_c00168{bottom:594.765000px;}
.y36_c00168{bottom:595.365000px;}
.yb_c00168{bottom:613.215000px;}
.y35_c00168{bottom:614.265000px;}
.ya_c00168{bottom:630.915000px;}
.y34_c00168{bottom:632.115000px;}
.y9_c00168{bottom:649.065000px;}
.y33_c00168{bottom:649.815000px;}
.y8_c00168{bottom:666.915000px;}
.y32_c00168{bottom:667.665000px;}
.y7_c00168{bottom:684.765000px;}
.y31_c00168{bottom:685.515000px;}
.y6_c00168{bottom:703.065000px;}
.y30_c00168{bottom:704.715000px;}
.y5_c00168{bottom:721.365000px;}
.y2f_c00168{bottom:722.715000px;}
.y4_c00168{bottom:739.515000px;}
.y2e_c00168{bottom:740.265000px;}
.y3_c00168{bottom:757.365000px;}
.y2d_c00168{bottom:758.715000px;}
.y2_c00168{bottom:775.665000px;}
.y2c_c00168{bottom:777.015000px;}
.y1_c00168{bottom:795.165000px;}
.y2b_c00168{bottom:795.615000px;}
.h4_c00168{height:13.200074px;}
.h5_c00168{height:43.804688px;}
.h2_c00168{height:62.880000px;}
.h3_c00168{height:216.936000px;}
.h1_c00168{height:831.000000px;}
.h0_c00168{height:831.075000px;}
.w2_c00168{width:104.875500px;}
.w0_c00168{width:590.775000px;}
.w1_c00168{width:591.000000px;}
.x0_c00168{left:0.000000px;}
.x7_c00168{left:18.900000px;}
.x9_c00168{left:52.350000px;}
.x2_c00168{left:75.300000px;}
.x3_c00168{left:76.500000px;}
.x4_c00168{left:78.000000px;}
.x5_c00168{left:79.650000px;}
.x6_c00168{left:80.700000px;}
.x8_c00168{left:82.350000px;}
.x1_c00168{left:198.900000px;}
.x13_c00168{left:247.201767px;}
.xa_c00168{left:284.850000px;}
.xd_c00168{left:292.950000px;}
.xb_c00168{left:294.000000px;}
.xe_c00168{left:295.050000px;}
.xf_c00168{left:297.000000px;}
.x10_c00168{left:298.050000px;}
.x11_c00168{left:300.150000px;}
.xc_c00168{left:318.300000px;}
.x12_c00168{left:462.000000px;}
@media print{
.v0_c00168{vertical-align:0.000000pt;}
.ls4_c00168{letter-spacing:0.000000pt;}
.ls3_c00168{letter-spacing:1.493333pt;}
.ls1_c00168{letter-spacing:1.973333pt;}
.ls0_c00168{letter-spacing:2.666667pt;}
.ls2_c00168{letter-spacing:3.680000pt;}
.ws3_c00168{word-spacing:-16.053333pt;}
.ws1_c00168{word-spacing:-15.413333pt;}
.ws0_c00168{word-spacing:-12.586667pt;}
.ws2_c00168{word-spacing:-4.000000pt;}
.ws4_c00168{word-spacing:0.000000pt;}
._23_c00168{margin-left:-33.856000pt;}
._22_c00168{margin-left:-21.256000pt;}
._24_c00168{margin-left:-20.253333pt;}
._19_c00168{margin-left:-11.360000pt;}
._18_c00168{margin-left:-10.453333pt;}
._17_c00168{margin-left:-9.173333pt;}
._29_c00168{margin-left:-8.160000pt;}
._14_c00168{margin-left:-7.146667pt;}
._11_c00168{margin-left:-5.600000pt;}
._b_c00168{margin-left:-4.586667pt;}
._d_c00168{margin-left:-2.880000pt;}
._8_c00168{margin-left:-1.173333pt;}
._5_c00168{width:1.120000pt;}
._6_c00168{width:2.133333pt;}
._e_c00168{width:3.680000pt;}
._1b_c00168{width:4.586667pt;}
._12_c00168{width:5.866667pt;}
._a_c00168{width:6.826667pt;}
._1_c00168{width:7.893333pt;}
._9_c00168{width:9.226667pt;}
._0_c00168{width:10.666667pt;}
._13_c00168{width:11.573333pt;}
._3_c00168{width:12.586667pt;}
._4_c00168{width:14.080000pt;}
._1f_c00168{width:15.146667pt;}
._10_c00168{width:17.760000pt;}
._15_c00168{width:19.680000pt;}
._f_c00168{width:21.173333pt;}
._16_c00168{width:23.200000pt;}
._25_c00168{width:25.173333pt;}
._21_c00168{width:26.506667pt;}
._1e_c00168{width:28.213333pt;}
._7_c00168{width:29.440000pt;}
._1c_c00168{width:30.720000pt;}
._20_c00168{width:32.586667pt;}
._2_c00168{width:33.653333pt;}
._27_c00168{width:34.880000pt;}
._2a_c00168{width:35.786667pt;}
._28_c00168{width:41.546667pt;}
._26_c00168{width:44.160000pt;}
._1d_c00168{width:48.693333pt;}
._1a_c00168{width:62.880000pt;}
._c_c00168{width:111.253333pt;}
.fs2_c00168{font-size:42.666667pt;}
.fs0_c00168{font-size:53.333333pt;}
.fs1_c00168{font-size:184.000000pt;}
.y0_c00168{bottom:0.000000pt;}
.y56_c00168{bottom:2.760000pt;}
.y55_c00168{bottom:6.425219pt;}
.y54_c00168{bottom:32.813333pt;}
.y2a_c00168{bottom:46.813333pt;}
.y53_c00168{bottom:48.280000pt;}
.y29_c00168{bottom:64.013333pt;}
.y52_c00168{bottom:64.546667pt;}
.y28_c00168{bottom:79.880000pt;}
.y51_c00168{bottom:80.813333pt;}
.y27_c00168{bottom:95.480000pt;}
.y50_c00168{bottom:96.280000pt;}
.y26_c00168{bottom:111.613333pt;}
.y4f_c00168{bottom:112.280000pt;}
.y25_c00168{bottom:127.880000pt;}
.y4e_c00168{bottom:128.146667pt;}
.y24_c00168{bottom:143.746667pt;}
.y4d_c00168{bottom:144.280000pt;}
.y23_c00168{bottom:159.613333pt;}
.y4c_c00168{bottom:160.013333pt;}
.y22_c00168{bottom:175.480000pt;}
.y4b_c00168{bottom:176.680000pt;}
.y21_c00168{bottom:191.213333pt;}
.y4a_c00168{bottom:192.413333pt;}
.y20_c00168{bottom:207.880000pt;}
.y49_c00168{bottom:209.080000pt;}
.y1f_c00168{bottom:223.613333pt;}
.y48_c00168{bottom:224.680000pt;}
.y1e_c00168{bottom:239.480000pt;}
.y47_c00168{bottom:240.680000pt;}
.y1d_c00168{bottom:255.880000pt;}
.y46_c00168{bottom:256.813333pt;}
.y1c_c00168{bottom:271.880000pt;}
.y45_c00168{bottom:272.680000pt;}
.y1b_c00168{bottom:288.013333pt;}
.y44_c00168{bottom:288.680000pt;}
.y1a_c00168{bottom:304.013333pt;}
.y43_c00168{bottom:304.546667pt;}
.y19_c00168{bottom:319.613333pt;}
.y42_c00168{bottom:320.813333pt;}
.y18_c00168{bottom:336.413333pt;}
.y41_c00168{bottom:336.946667pt;}
.y17_c00168{bottom:352.546667pt;}
.y40_c00168{bottom:352.813333pt;}
.y16_c00168{bottom:368.680000pt;}
.y3f_c00168{bottom:369.346667pt;}
.y15_c00168{bottom:384.413333pt;}
.y3e_c00168{bottom:385.480000pt;}
.y3d_c00168{bottom:401.213333pt;}
.y14_c00168{bottom:401.480000pt;}
.y13_c00168{bottom:416.413333pt;}
.y3c_c00168{bottom:417.346667pt;}
.y12_c00168{bottom:432.280000pt;}
.y3b_c00168{bottom:433.480000pt;}
.y11_c00168{bottom:448.280000pt;}
.y3a_c00168{bottom:449.213333pt;}
.y10_c00168{bottom:464.680000pt;}
.y39_c00168{bottom:465.346667pt;}
.yf_c00168{bottom:480.413333pt;}
.y38_c00168{bottom:480.946667pt;}
.ye_c00168{bottom:496.813333pt;}
.y37_c00168{bottom:497.480000pt;}
.yd_c00168{bottom:512.813333pt;}
.yc_c00168{bottom:528.680000pt;}
.y36_c00168{bottom:529.213333pt;}
.yb_c00168{bottom:545.080000pt;}
.y35_c00168{bottom:546.013333pt;}
.ya_c00168{bottom:560.813333pt;}
.y34_c00168{bottom:561.880000pt;}
.y9_c00168{bottom:576.946667pt;}
.y33_c00168{bottom:577.613333pt;}
.y8_c00168{bottom:592.813333pt;}
.y32_c00168{bottom:593.480000pt;}
.y7_c00168{bottom:608.680000pt;}
.y31_c00168{bottom:609.346667pt;}
.y6_c00168{bottom:624.946667pt;}
.y30_c00168{bottom:626.413333pt;}
.y5_c00168{bottom:641.213333pt;}
.y2f_c00168{bottom:642.413333pt;}
.y4_c00168{bottom:657.346667pt;}
.y2e_c00168{bottom:658.013333pt;}
.y3_c00168{bottom:673.213333pt;}
.y2d_c00168{bottom:674.413333pt;}
.y2_c00168{bottom:689.480000pt;}
.y2c_c00168{bottom:690.680000pt;}
.y1_c00168{bottom:706.813333pt;}
.y2b_c00168{bottom:707.213333pt;}
.h4_c00168{height:11.733399pt;}
.h5_c00168{height:38.937500pt;}
.h2_c00168{height:55.893333pt;}
.h3_c00168{height:192.832000pt;}
.h1_c00168{height:738.666667pt;}
.h0_c00168{height:738.733333pt;}
.w2_c00168{width:93.222667pt;}
.w0_c00168{width:525.133333pt;}
.w1_c00168{width:525.333333pt;}
.x0_c00168{left:0.000000pt;}
.x7_c00168{left:16.800000pt;}
.x9_c00168{left:46.533333pt;}
.x2_c00168{left:66.933333pt;}
.x3_c00168{left:68.000000pt;}
.x4_c00168{left:69.333333pt;}
.x5_c00168{left:70.800000pt;}
.x6_c00168{left:71.733333pt;}
.x8_c00168{left:73.200000pt;}
.x1_c00168{left:176.800000pt;}
.x13_c00168{left:219.734904pt;}
.xa_c00168{left:253.200000pt;}
.xd_c00168{left:260.400000pt;}
.xb_c00168{left:261.333333pt;}
.xe_c00168{left:262.266667pt;}
.xf_c00168{left:264.000000pt;}
.x10_c00168{left:264.933333pt;}
.x11_c00168{left:266.800000pt;}
.xc_c00168{left:282.933333pt;}
.x12_c00168{left:410.666667pt;}
}





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

.ir_c00169:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00169{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00169;src:url('chunks/assets/font_85bd86a41b870272482db48c.woff2')format("woff");}.ff1_c00169{font-family:ff1_c00169;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00169;src:url('chunks/assets/font_c620e9a21404818bfe3e1ebb.woff2')format("woff");}.ff2_c00169{font-family:ff2_c00169;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00169;src:url('chunks/assets/font_8bb6ec6ddb0ee9b3a1fd0fdc.woff2')format("woff");}.ff3_c00169{font-family:ff3_c00169;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00169;src:url('chunks/assets/font_c24d328dbc364fb2e9344a41.woff2')format("woff");}.ff4_c00169{font-family:ff4_c00169;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00169;src:url('chunks/assets/font_8391e48bd03137d0d0bc45ca.woff2')format("woff");}.ff5_c00169{font-family:ff5_c00169;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00169;src:url('chunks/assets/font_a5f701dcdb240ce234bf455c.woff2')format("woff");}.ff6_c00169{font-family:ff6_c00169;line-height:1.012793;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00169;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff7_c00169{font-family:ff7_c00169;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00169{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00169{vertical-align:0.000000px;}
.v1_c00169{vertical-align:75.600000px;}
.ls7_c00169{letter-spacing:0.000000px;}
.ls3_c00169{letter-spacing:3.000000px;}
.ls0_c00169{letter-spacing:6.000000px;}
.ls5_c00169{letter-spacing:7.500000px;}
.ls2_c00169{letter-spacing:9.000000px;}
.ls6_c00169{letter-spacing:15.000000px;}
.ls4_c00169{letter-spacing:31.245000px;}
.ls1_c00169{letter-spacing:109.845000px;}
.sc__c00169{text-shadow:none;}
.sc0_c00169{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00169{-webkit-text-stroke:0px transparent;}
.sc0_c00169{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00169{word-spacing:-28.860000px;}
.ws0_c00169{word-spacing:-23.340000px;}
.ws2_c00169{word-spacing:-23.160000px;}
.ws4_c00169{word-spacing:-22.560000px;}
.ws6_c00169{word-spacing:-18.060000px;}
.ws1_c00169{word-spacing:-14.160000px;}
.ws5_c00169{word-spacing:-0.162000px;}
.ws7_c00169{word-spacing:0.000000px;}
._25_c00169{margin-left:-23.100000px;}
._28_c00169{margin-left:-19.920000px;}
._10_c00169{margin-left:-15.660000px;}
._11_c00169{margin-left:-14.640000px;}
._e_c00169{margin-left:-13.080000px;}
._1f_c00169{margin-left:-10.980000px;}
._18_c00169{margin-left:-9.720000px;}
._12_c00169{margin-left:-7.920000px;}
._5_c00169{margin-left:-6.360000px;}
._b_c00169{margin-left:-5.100000px;}
._8_c00169{margin-left:-3.720000px;}
._9_c00169{margin-left:-2.100000px;}
._f_c00169{margin-left:-1.080000px;}
._7_c00169{width:1.440000px;}
._a_c00169{width:2.460000px;}
._6_c00169{width:3.540000px;}
._c_c00169{width:4.800000px;}
._26_c00169{width:5.820000px;}
._2_c00169{width:6.840000px;}
._1_c00169{width:8.700000px;}
._3_c00169{width:10.680000px;}
._1e_c00169{width:12.060000px;}
._d_c00169{width:13.200000px;}
._4_c00169{width:15.000000px;}
._2b_c00169{width:16.140000px;}
._16_c00169{width:17.340000px;}
._24_c00169{width:18.753000px;}
._17_c00169{width:20.160000px;}
._15_c00169{width:21.540000px;}
._1d_c00169{width:22.980000px;}
._13_c00169{width:24.000000px;}
._21_c00169{width:25.440000px;}
._1a_c00169{width:26.580000px;}
._20_c00169{width:27.600000px;}
._2a_c00169{width:30.180000px;}
._23_c00169{width:32.880000px;}
._19_c00169{width:34.560000px;}
._1c_c00169{width:36.120000px;}
._1b_c00169{width:37.500000px;}
._22_c00169{width:38.700000px;}
._29_c00169{width:81.960000px;}
._27_c00169{width:131.580000px;}
._14_c00169{width:134.640000px;}
._0_c00169{width:329.340000px;}
.fc2_c00169{color:transparent;}
.fc1_c00169{color:rgb(128,128,128);}
.fc0_c00169{color:rgb(0,0,0);}
.fs1_c00169{font-size:45.000000px;}
.fs4_c00169{font-size:48.000000px;}
.fs2_c00169{font-size:57.000000px;}
.fs0_c00169{font-size:60.000000px;}
.fs3_c00169{font-size:162.000000px;}
.y0_c00169{bottom:0.000000px;}
.y54_c00169{bottom:3.105000px;}
.y53_c00169{bottom:7.228369px;}
.y52_c00169{bottom:34.020000px;}
.y51_c00169{bottom:51.570000px;}
.y2a_c00169{bottom:53.970000px;}
.y50_c00169{bottom:70.470000px;}
.y29_c00169{bottom:72.270000px;}
.y4f_c00169{bottom:87.420000px;}
.y28_c00169{bottom:89.370000px;}
.y4e_c00169{bottom:106.620000px;}
.y27_c00169{bottom:107.670000px;}
.y4d_c00169{bottom:123.870000px;}
.y26_c00169{bottom:125.670000px;}
.y4c_c00169{bottom:142.320000px;}
.y25_c00169{bottom:144.120000px;}
.y4b_c00169{bottom:160.920000px;}
.y24_c00169{bottom:162.570000px;}
.y4a_c00169{bottom:178.770000px;}
.y23_c00169{bottom:180.270000px;}
.y49_c00169{bottom:196.470000px;}
.y22_c00169{bottom:198.420000px;}
.y48_c00169{bottom:214.020000px;}
.y21_c00169{bottom:216.570000px;}
.y47_c00169{bottom:232.920000px;}
.y20_c00169{bottom:234.570000px;}
.y46_c00169{bottom:251.370000px;}
.y1f_c00169{bottom:252.420000px;}
.y45_c00169{bottom:269.670000px;}
.y1e_c00169{bottom:269.970000px;}
.y44_c00169{bottom:286.920000px;}
.y1d_c00169{bottom:288.270000px;}
.y43_c00169{bottom:305.370000px;}
.y1c_c00169{bottom:306.120000px;}
.y42_c00169{bottom:322.920000px;}
.y1b_c00169{bottom:324.570000px;}
.y41_c00169{bottom:341.520000px;}
.y1a_c00169{bottom:342.570000px;}
.y40_c00169{bottom:359.370000px;}
.y19_c00169{bottom:360.420000px;}
.y3f_c00169{bottom:377.670000px;}
.y18_c00169{bottom:378.570000px;}
.y3e_c00169{bottom:395.820000px;}
.y17_c00169{bottom:396.570000px;}
.y3d_c00169{bottom:414.120000px;}
.y16_c00169{bottom:415.020000px;}
.y3c_c00169{bottom:431.970000px;}
.y15_c00169{bottom:432.720000px;}
.y3b_c00169{bottom:449.220000px;}
.y14_c00169{bottom:450.870000px;}
.y3a_c00169{bottom:467.820000px;}
.y13_c00169{bottom:470.070000px;}
.y39_c00169{bottom:485.970000px;}
.y12_c00169{bottom:487.920000px;}
.y38_c00169{bottom:503.820000px;}
.y11_c00169{bottom:505.920000px;}
.y37_c00169{bottom:521.820000px;}
.y10_c00169{bottom:524.070000px;}
.y36_c00169{bottom:539.970000px;}
.yf_c00169{bottom:541.920000px;}
.y35_c00169{bottom:558.120000px;}
.ye_c00169{bottom:559.620000px;}
.y34_c00169{bottom:576.420000px;}
.yd_c00169{bottom:578.070000px;}
.y32_c00169{bottom:593.370000px;}
.y33_c00169{bottom:594.270000px;}
.yc_c00169{bottom:595.920000px;}
.yb_c00169{bottom:613.920000px;}
.ya_c00169{bottom:631.770000px;}
.y31_c00169{bottom:649.020000px;}
.y9_c00169{bottom:650.070000px;}
.y30_c00169{bottom:666.570000px;}
.y8_c00169{bottom:668.220000px;}
.y2f_c00169{bottom:685.170000px;}
.y7_c00169{bottom:686.070000px;}
.y2e_c00169{bottom:703.020000px;}
.y6_c00169{bottom:704.970000px;}
.y2d_c00169{bottom:721.620000px;}
.y5_c00169{bottom:722.820000px;}
.y4_c00169{bottom:741.120000px;}
.y2c_c00169{bottom:755.970000px;}
.y3_c00169{bottom:759.270000px;}
.y2_c00169{bottom:777.570000px;}
.y2b_c00169{bottom:794.820000px;}
.y1_c00169{bottom:795.870000px;}
.h6_c00169{height:13.200073px;}
.h7_c00169{height:43.804688px;}
.h4_c00169{height:59.736000px;}
.h3_c00169{height:62.880000px;}
.h2_c00169{height:64.020000px;}
.h5_c00169{height:139.620000px;}
.h0_c00169{height:829.950000px;}
.h1_c00169{height:830.250000px;}
.w2_c00169{width:104.875500px;}
.w0_c00169{width:557.850000px;}
.w1_c00169{width:558.000000px;}
.x0_c00169{left:0.000000px;}
.x5_c00169{left:27.750000px;}
.x6_c00169{left:29.700000px;}
.xd_c00169{left:84.000000px;}
.xc_c00169{left:85.050000px;}
.xb_c00169{left:86.100000px;}
.x8_c00169{left:87.150000px;}
.xa_c00169{left:89.100000px;}
.x9_c00169{left:90.900000px;}
.x4_c00169{left:92.700000px;}
.x3_c00169{left:93.750000px;}
.x1_c00169{left:99.150000px;}
.xe_c00169{left:102.900000px;}
.xf_c00169{left:124.200000px;}
.x7_c00169{left:131.700000px;}
.x10_c00169{left:133.200000px;}
.x2_c00169{left:157.650000px;}
.x11_c00169{left:159.600000px;}
.x23_c00169{left:230.739258px;}
.x12_c00169{left:295.350000px;}
.x21_c00169{left:297.300000px;}
.x20_c00169{left:298.950000px;}
.x1f_c00169{left:301.050000px;}
.x1e_c00169{left:302.100000px;}
.x1c_c00169{left:303.300000px;}
.x1d_c00169{left:304.800000px;}
.x1a_c00169{left:306.450000px;}
.x1b_c00169{left:307.500000px;}
.x15_c00169{left:308.700000px;}
.x14_c00169{left:310.050000px;}
.x16_c00169{left:321.600000px;}
.x17_c00169{left:346.500000px;}
.x19_c00169{left:349.350000px;}
.x18_c00169{left:388.500000px;}
.x13_c00169{left:400.200000px;}
.x22_c00169{left:458.250000px;}
@media print{
.v0_c00169{vertical-align:0.000000pt;}
.v1_c00169{vertical-align:67.200000pt;}
.ls7_c00169{letter-spacing:0.000000pt;}
.ls3_c00169{letter-spacing:2.666667pt;}
.ls0_c00169{letter-spacing:5.333333pt;}
.ls5_c00169{letter-spacing:6.666667pt;}
.ls2_c00169{letter-spacing:8.000000pt;}
.ls6_c00169{letter-spacing:13.333333pt;}
.ls4_c00169{letter-spacing:27.773333pt;}
.ls1_c00169{letter-spacing:97.640000pt;}
.ws3_c00169{word-spacing:-25.653333pt;}
.ws0_c00169{word-spacing:-20.746667pt;}
.ws2_c00169{word-spacing:-20.586667pt;}
.ws4_c00169{word-spacing:-20.053333pt;}
.ws6_c00169{word-spacing:-16.053333pt;}
.ws1_c00169{word-spacing:-12.586667pt;}
.ws5_c00169{word-spacing:-0.144000pt;}
.ws7_c00169{word-spacing:0.000000pt;}
._25_c00169{margin-left:-20.533333pt;}
._28_c00169{margin-left:-17.706667pt;}
._10_c00169{margin-left:-13.920000pt;}
._11_c00169{margin-left:-13.013333pt;}
._e_c00169{margin-left:-11.626667pt;}
._1f_c00169{margin-left:-9.760000pt;}
._18_c00169{margin-left:-8.640000pt;}
._12_c00169{margin-left:-7.040000pt;}
._5_c00169{margin-left:-5.653333pt;}
._b_c00169{margin-left:-4.533333pt;}
._8_c00169{margin-left:-3.306667pt;}
._9_c00169{margin-left:-1.866667pt;}
._f_c00169{margin-left:-0.960000pt;}
._7_c00169{width:1.280000pt;}
._a_c00169{width:2.186667pt;}
._6_c00169{width:3.146667pt;}
._c_c00169{width:4.266667pt;}
._26_c00169{width:5.173333pt;}
._2_c00169{width:6.080000pt;}
._1_c00169{width:7.733333pt;}
._3_c00169{width:9.493333pt;}
._1e_c00169{width:10.720000pt;}
._d_c00169{width:11.733333pt;}
._4_c00169{width:13.333333pt;}
._2b_c00169{width:14.346667pt;}
._16_c00169{width:15.413333pt;}
._24_c00169{width:16.669333pt;}
._17_c00169{width:17.920000pt;}
._15_c00169{width:19.146667pt;}
._1d_c00169{width:20.426667pt;}
._13_c00169{width:21.333333pt;}
._21_c00169{width:22.613333pt;}
._1a_c00169{width:23.626667pt;}
._20_c00169{width:24.533333pt;}
._2a_c00169{width:26.826667pt;}
._23_c00169{width:29.226667pt;}
._19_c00169{width:30.720000pt;}
._1c_c00169{width:32.106667pt;}
._1b_c00169{width:33.333333pt;}
._22_c00169{width:34.400000pt;}
._29_c00169{width:72.853333pt;}
._27_c00169{width:116.960000pt;}
._14_c00169{width:119.680000pt;}
._0_c00169{width:292.746667pt;}
.fs1_c00169{font-size:40.000000pt;}
.fs4_c00169{font-size:42.666667pt;}
.fs2_c00169{font-size:50.666667pt;}
.fs0_c00169{font-size:53.333333pt;}
.fs3_c00169{font-size:144.000000pt;}
.y0_c00169{bottom:0.000000pt;}
.y54_c00169{bottom:2.760000pt;}
.y53_c00169{bottom:6.425217pt;}
.y52_c00169{bottom:30.240000pt;}
.y51_c00169{bottom:45.840000pt;}
.y2a_c00169{bottom:47.973333pt;}
.y50_c00169{bottom:62.640000pt;}
.y29_c00169{bottom:64.240000pt;}
.y4f_c00169{bottom:77.706667pt;}
.y28_c00169{bottom:79.440000pt;}
.y4e_c00169{bottom:94.773333pt;}
.y27_c00169{bottom:95.706667pt;}
.y4d_c00169{bottom:110.106667pt;}
.y26_c00169{bottom:111.706667pt;}
.y4c_c00169{bottom:126.506667pt;}
.y25_c00169{bottom:128.106667pt;}
.y4b_c00169{bottom:143.040000pt;}
.y24_c00169{bottom:144.506667pt;}
.y4a_c00169{bottom:158.906667pt;}
.y23_c00169{bottom:160.240000pt;}
.y49_c00169{bottom:174.640000pt;}
.y22_c00169{bottom:176.373333pt;}
.y48_c00169{bottom:190.240000pt;}
.y21_c00169{bottom:192.506667pt;}
.y47_c00169{bottom:207.040000pt;}
.y20_c00169{bottom:208.506667pt;}
.y46_c00169{bottom:223.440000pt;}
.y1f_c00169{bottom:224.373333pt;}
.y45_c00169{bottom:239.706667pt;}
.y1e_c00169{bottom:239.973333pt;}
.y44_c00169{bottom:255.040000pt;}
.y1d_c00169{bottom:256.240000pt;}
.y43_c00169{bottom:271.440000pt;}
.y1c_c00169{bottom:272.106667pt;}
.y42_c00169{bottom:287.040000pt;}
.y1b_c00169{bottom:288.506667pt;}
.y41_c00169{bottom:303.573333pt;}
.y1a_c00169{bottom:304.506667pt;}
.y40_c00169{bottom:319.440000pt;}
.y19_c00169{bottom:320.373333pt;}
.y3f_c00169{bottom:335.706667pt;}
.y18_c00169{bottom:336.506667pt;}
.y3e_c00169{bottom:351.840000pt;}
.y17_c00169{bottom:352.506667pt;}
.y3d_c00169{bottom:368.106667pt;}
.y16_c00169{bottom:368.906667pt;}
.y3c_c00169{bottom:383.973333pt;}
.y15_c00169{bottom:384.640000pt;}
.y3b_c00169{bottom:399.306667pt;}
.y14_c00169{bottom:400.773333pt;}
.y3a_c00169{bottom:415.840000pt;}
.y13_c00169{bottom:417.840000pt;}
.y39_c00169{bottom:431.973333pt;}
.y12_c00169{bottom:433.706667pt;}
.y38_c00169{bottom:447.840000pt;}
.y11_c00169{bottom:449.706667pt;}
.y37_c00169{bottom:463.840000pt;}
.y10_c00169{bottom:465.840000pt;}
.y36_c00169{bottom:479.973333pt;}
.yf_c00169{bottom:481.706667pt;}
.y35_c00169{bottom:496.106667pt;}
.ye_c00169{bottom:497.440000pt;}
.y34_c00169{bottom:512.373333pt;}
.yd_c00169{bottom:513.840000pt;}
.y32_c00169{bottom:527.440000pt;}
.y33_c00169{bottom:528.240000pt;}
.yc_c00169{bottom:529.706667pt;}
.yb_c00169{bottom:545.706667pt;}
.ya_c00169{bottom:561.573333pt;}
.y31_c00169{bottom:576.906667pt;}
.y9_c00169{bottom:577.840000pt;}
.y30_c00169{bottom:592.506667pt;}
.y8_c00169{bottom:593.973333pt;}
.y2f_c00169{bottom:609.040000pt;}
.y7_c00169{bottom:609.840000pt;}
.y2e_c00169{bottom:624.906667pt;}
.y6_c00169{bottom:626.640000pt;}
.y2d_c00169{bottom:641.440000pt;}
.y5_c00169{bottom:642.506667pt;}
.y4_c00169{bottom:658.773333pt;}
.y2c_c00169{bottom:671.973333pt;}
.y3_c00169{bottom:674.906667pt;}
.y2_c00169{bottom:691.173333pt;}
.y2b_c00169{bottom:706.506667pt;}
.y1_c00169{bottom:707.440000pt;}
.h6_c00169{height:11.733399pt;}
.h7_c00169{height:38.937500pt;}
.h4_c00169{height:53.098667pt;}
.h3_c00169{height:55.893333pt;}
.h2_c00169{height:56.906667pt;}
.h5_c00169{height:124.106667pt;}
.h0_c00169{height:737.733333pt;}
.h1_c00169{height:738.000000pt;}
.w2_c00169{width:93.222667pt;}
.w0_c00169{width:495.866667pt;}
.w1_c00169{width:496.000000pt;}
.x0_c00169{left:0.000000pt;}
.x5_c00169{left:24.666667pt;}
.x6_c00169{left:26.400000pt;}
.xd_c00169{left:74.666667pt;}
.xc_c00169{left:75.600000pt;}
.xb_c00169{left:76.533333pt;}
.x8_c00169{left:77.466667pt;}
.xa_c00169{left:79.200000pt;}
.x9_c00169{left:80.800000pt;}
.x4_c00169{left:82.400000pt;}
.x3_c00169{left:83.333333pt;}
.x1_c00169{left:88.133333pt;}
.xe_c00169{left:91.466667pt;}
.xf_c00169{left:110.400000pt;}
.x7_c00169{left:117.066667pt;}
.x10_c00169{left:118.400000pt;}
.x2_c00169{left:140.133333pt;}
.x11_c00169{left:141.866667pt;}
.x23_c00169{left:205.101563pt;}
.x12_c00169{left:262.533333pt;}
.x21_c00169{left:264.266667pt;}
.x20_c00169{left:265.733333pt;}
.x1f_c00169{left:267.600000pt;}
.x1e_c00169{left:268.533333pt;}
.x1c_c00169{left:269.600000pt;}
.x1d_c00169{left:270.933333pt;}
.x1a_c00169{left:272.400000pt;}
.x1b_c00169{left:273.333333pt;}
.x15_c00169{left:274.400000pt;}
.x14_c00169{left:275.600000pt;}
.x16_c00169{left:285.866667pt;}
.x17_c00169{left:308.000000pt;}
.x19_c00169{left:310.533333pt;}
.x18_c00169{left:345.333333pt;}
.x13_c00169{left:355.733333pt;}
.x22_c00169{left:407.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_c00170 {
    display:none;
  }
  .loading-indicator_c00170.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00170 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00170 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00170" -> "#page-container .classname_c00170")
 */
.pf_c00170 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00170 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00170.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00170 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00170 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00170 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00170 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00170 {overflow:visible;}
  }
}
.c_c00170 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00170 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00170:after { /* webkit #35443 */
  content: '';
}
.t_c00170:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00170 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00170 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00170 { /* info for Javascript */
  display:none;
}
.l_c00170 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00170 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00170 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00170:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00170{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00170;src:url('chunks/assets/font_3c28edfaf11f15b122b3d82e.woff2')format("woff");}.ff1_c00170{font-family:ff1_c00170;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00170;src:url('chunks/assets/font_3f1eba9f1fde40466d1c7654.woff2')format("woff");}.ff2_c00170{font-family:ff2_c00170;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00170;src:url('chunks/assets/font_1ce17c23b47358fb3d2cb3b0.woff2')format("woff");}.ff3_c00170{font-family:ff3_c00170;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00170;src:url('chunks/assets/font_0ce391de997f24f9f9dd37f4.woff2')format("woff");}.ff4_c00170{font-family:ff4_c00170;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00170;src:url('chunks/assets/font_9255116fe4fe843defbe9374.woff2')format("woff");}.ff5_c00170{font-family:ff5_c00170;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00170;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff6_c00170{font-family:ff6_c00170;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00170{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00170{vertical-align:0.000000px;}
.ls2_c00170{letter-spacing:0.000000px;}
.ls1_c00170{letter-spacing:0.405000px;}
.ls0_c00170{letter-spacing:3.000000px;}
.ls3_c00170{letter-spacing:6.000000px;}
.sc__c00170{text-shadow:none;}
.sc0_c00170{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00170{-webkit-text-stroke:0px transparent;}
.sc0_c00170{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00170{word-spacing:-39.780000px;}
.ws0_c00170{word-spacing:-32.424000px;}
.ws3_c00170{word-spacing:-23.340000px;}
.ws4_c00170{word-spacing:-18.060000px;}
.ws5_c00170{word-spacing:0.000000px;}
.ws2_c00170{word-spacing:5.160000px;}
._d_c00170{margin-left:-14.040000px;}
._1b_c00170{margin-left:-11.460000px;}
._24_c00170{margin-left:-7.380000px;}
._29_c00170{margin-left:-6.120000px;}
._4_c00170{margin-left:-5.040000px;}
._3_c00170{margin-left:-3.000000px;}
._8_c00170{margin-left:-1.260000px;}
._0_c00170{width:1.440000px;}
._6_c00170{width:2.460000px;}
._5_c00170{width:3.480000px;}
._a_c00170{width:4.500000px;}
._7_c00170{width:6.360000px;}
._e_c00170{width:8.280000px;}
._1_c00170{width:10.140000px;}
._b_c00170{width:11.520000px;}
._2_c00170{width:13.320000px;}
._27_c00170{width:14.460000px;}
._12_c00170{width:15.660000px;}
._1f_c00170{width:17.880000px;}
._f_c00170{width:19.380000px;}
._2b_c00170{width:21.060000px;}
._10_c00170{width:22.440000px;}
._21_c00170{width:24.240000px;}
._15_c00170{width:26.520000px;}
._19_c00170{width:28.620000px;}
._2a_c00170{width:31.500000px;}
._28_c00170{width:33.180000px;}
._17_c00170{width:34.260000px;}
._16_c00170{width:37.140000px;}
._22_c00170{width:39.000000px;}
._2c_c00170{width:41.280000px;}
._23_c00170{width:42.300000px;}
._1c_c00170{width:43.740000px;}
._1e_c00170{width:45.300000px;}
._18_c00170{width:47.340000px;}
._1a_c00170{width:48.840000px;}
._14_c00170{width:49.980000px;}
._20_c00170{width:51.060000px;}
._13_c00170{width:52.500000px;}
._11_c00170{width:54.420000px;}
._9_c00170{width:57.060000px;}
._1d_c00170{width:58.920000px;}
._25_c00170{width:69.540000px;}
._c_c00170{width:81.960000px;}
._2d_c00170{width:127.140000px;}
._26_c00170{width:132.360000px;}
.fc2_c00170{color:transparent;}
.fc1_c00170{color:rgb(128,128,128);}
.fc0_c00170{color:rgb(0,0,0);}
.fs2_c00170{font-size:45.000000px;}
.fs1_c00170{font-size:48.000000px;}
.fs0_c00170{font-size:60.000000px;}
.y0_c00170{bottom:0.000000px;}
.y2c_c00170{bottom:3.105000px;}
.y2b_c00170{bottom:7.228363px;}
.y2a_c00170{bottom:34.200000px;}
.y29_c00170{bottom:52.350000px;}
.y28_c00170{bottom:71.550000px;}
.y27_c00170{bottom:88.800000px;}
.y26_c00170{bottom:107.100000px;}
.y25_c00170{bottom:125.250000px;}
.y24_c00170{bottom:143.400000px;}
.y23_c00170{bottom:162.000000px;}
.y22_c00170{bottom:178.950000px;}
.y21_c00170{bottom:197.400000px;}
.y20_c00170{bottom:216.450000px;}
.y1f_c00170{bottom:234.000000px;}
.y1e_c00170{bottom:251.700000px;}
.y1d_c00170{bottom:270.450000px;}
.y1c_c00170{bottom:288.150000px;}
.y1b_c00170{bottom:307.500000px;}
.y1a_c00170{bottom:324.450000px;}
.y19_c00170{bottom:342.900000px;}
.y18_c00170{bottom:360.750000px;}
.y17_c00170{bottom:378.450000px;}
.y16_c00170{bottom:397.650000px;}
.y15_c00170{bottom:416.100000px;}
.y14_c00170{bottom:433.350000px;}
.y13_c00170{bottom:452.550000px;}
.y12_c00170{bottom:469.500000px;}
.y11_c00170{bottom:487.950000px;}
.y10_c00170{bottom:506.550000px;}
.yf_c00170{bottom:524.100000px;}
.ye_c00170{bottom:543.000000px;}
.yd_c00170{bottom:559.950000px;}
.yc_c00170{bottom:578.700000px;}
.yb_c00170{bottom:597.000000px;}
.ya_c00170{bottom:614.850000px;}
.y9_c00170{bottom:632.850000px;}
.y8_c00170{bottom:650.700000px;}
.y7_c00170{bottom:668.700000px;}
.y6_c00170{bottom:686.850000px;}
.y5_c00170{bottom:705.000000px;}
.y4_c00170{bottom:723.300000px;}
.y3_c00170{bottom:741.750000px;}
.y2_c00170{bottom:759.750000px;}
.y1_c00170{bottom:777.900000px;}
.h4_c00170{height:13.200074px;}
.h5_c00170{height:43.804688px;}
.h2_c00170{height:62.880000px;}
.h3_c00170{height:64.020000px;}
.h0_c00170{height:839.700000px;}
.h1_c00170{height:840.000000px;}
.w2_c00170{width:104.875500px;}
.w1_c00170{width:597.000000px;}
.w0_c00170{width:597.225000px;}
.x0_c00170{left:0.000000px;}
.x8_c00170{left:16.650000px;}
.x9_c00170{left:18.000000px;}
.x3_c00170{left:74.100000px;}
.x2_c00170{left:75.450000px;}
.x1_c00170{left:76.500000px;}
.x5_c00170{left:77.850000px;}
.x4_c00170{left:79.650000px;}
.x6_c00170{left:81.750000px;}
.x7_c00170{left:83.250000px;}
.xb_c00170{left:250.426758px;}
.xa_c00170{left:478.200000px;}
@media print{
.v0_c00170{vertical-align:0.000000pt;}
.ls2_c00170{letter-spacing:0.000000pt;}
.ls1_c00170{letter-spacing:0.360000pt;}
.ls0_c00170{letter-spacing:2.666667pt;}
.ls3_c00170{letter-spacing:5.333333pt;}
.ws1_c00170{word-spacing:-35.360000pt;}
.ws0_c00170{word-spacing:-28.821333pt;}
.ws3_c00170{word-spacing:-20.746667pt;}
.ws4_c00170{word-spacing:-16.053333pt;}
.ws5_c00170{word-spacing:0.000000pt;}
.ws2_c00170{word-spacing:4.586667pt;}
._d_c00170{margin-left:-12.480000pt;}
._1b_c00170{margin-left:-10.186667pt;}
._24_c00170{margin-left:-6.560000pt;}
._29_c00170{margin-left:-5.440000pt;}
._4_c00170{margin-left:-4.480000pt;}
._3_c00170{margin-left:-2.666667pt;}
._8_c00170{margin-left:-1.120000pt;}
._0_c00170{width:1.280000pt;}
._6_c00170{width:2.186667pt;}
._5_c00170{width:3.093333pt;}
._a_c00170{width:4.000000pt;}
._7_c00170{width:5.653333pt;}
._e_c00170{width:7.360000pt;}
._1_c00170{width:9.013333pt;}
._b_c00170{width:10.240000pt;}
._2_c00170{width:11.840000pt;}
._27_c00170{width:12.853333pt;}
._12_c00170{width:13.920000pt;}
._1f_c00170{width:15.893333pt;}
._f_c00170{width:17.226667pt;}
._2b_c00170{width:18.720000pt;}
._10_c00170{width:19.946667pt;}
._21_c00170{width:21.546667pt;}
._15_c00170{width:23.573333pt;}
._19_c00170{width:25.440000pt;}
._2a_c00170{width:28.000000pt;}
._28_c00170{width:29.493333pt;}
._17_c00170{width:30.453333pt;}
._16_c00170{width:33.013333pt;}
._22_c00170{width:34.666667pt;}
._2c_c00170{width:36.693333pt;}
._23_c00170{width:37.600000pt;}
._1c_c00170{width:38.880000pt;}
._1e_c00170{width:40.266667pt;}
._18_c00170{width:42.080000pt;}
._1a_c00170{width:43.413333pt;}
._14_c00170{width:44.426667pt;}
._20_c00170{width:45.386667pt;}
._13_c00170{width:46.666667pt;}
._11_c00170{width:48.373333pt;}
._9_c00170{width:50.720000pt;}
._1d_c00170{width:52.373333pt;}
._25_c00170{width:61.813333pt;}
._c_c00170{width:72.853333pt;}
._2d_c00170{width:113.013333pt;}
._26_c00170{width:117.653333pt;}
.fs2_c00170{font-size:40.000000pt;}
.fs1_c00170{font-size:42.666667pt;}
.fs0_c00170{font-size:53.333333pt;}
.y0_c00170{bottom:0.000000pt;}
.y2c_c00170{bottom:2.760000pt;}
.y2b_c00170{bottom:6.425212pt;}
.y2a_c00170{bottom:30.400000pt;}
.y29_c00170{bottom:46.533333pt;}
.y28_c00170{bottom:63.600000pt;}
.y27_c00170{bottom:78.933333pt;}
.y26_c00170{bottom:95.200000pt;}
.y25_c00170{bottom:111.333333pt;}
.y24_c00170{bottom:127.466667pt;}
.y23_c00170{bottom:144.000000pt;}
.y22_c00170{bottom:159.066667pt;}
.y21_c00170{bottom:175.466667pt;}
.y20_c00170{bottom:192.400000pt;}
.y1f_c00170{bottom:208.000000pt;}
.y1e_c00170{bottom:223.733333pt;}
.y1d_c00170{bottom:240.400000pt;}
.y1c_c00170{bottom:256.133333pt;}
.y1b_c00170{bottom:273.333333pt;}
.y1a_c00170{bottom:288.400000pt;}
.y19_c00170{bottom:304.800000pt;}
.y18_c00170{bottom:320.666667pt;}
.y17_c00170{bottom:336.400000pt;}
.y16_c00170{bottom:353.466667pt;}
.y15_c00170{bottom:369.866667pt;}
.y14_c00170{bottom:385.200000pt;}
.y13_c00170{bottom:402.266667pt;}
.y12_c00170{bottom:417.333333pt;}
.y11_c00170{bottom:433.733333pt;}
.y10_c00170{bottom:450.266667pt;}
.yf_c00170{bottom:465.866667pt;}
.ye_c00170{bottom:482.666667pt;}
.yd_c00170{bottom:497.733333pt;}
.yc_c00170{bottom:514.400000pt;}
.yb_c00170{bottom:530.666667pt;}
.ya_c00170{bottom:546.533333pt;}
.y9_c00170{bottom:562.533333pt;}
.y8_c00170{bottom:578.400000pt;}
.y7_c00170{bottom:594.400000pt;}
.y6_c00170{bottom:610.533333pt;}
.y5_c00170{bottom:626.666667pt;}
.y4_c00170{bottom:642.933333pt;}
.y3_c00170{bottom:659.333333pt;}
.y2_c00170{bottom:675.333333pt;}
.y1_c00170{bottom:691.466667pt;}
.h4_c00170{height:11.733399pt;}
.h5_c00170{height:38.937500pt;}
.h2_c00170{height:55.893333pt;}
.h3_c00170{height:56.906667pt;}
.h0_c00170{height:746.400000pt;}
.h1_c00170{height:746.666667pt;}
.w2_c00170{width:93.222667pt;}
.w1_c00170{width:530.666667pt;}
.w0_c00170{width:530.866667pt;}
.x0_c00170{left:0.000000pt;}
.x8_c00170{left:14.800000pt;}
.x9_c00170{left:16.000000pt;}
.x3_c00170{left:65.866667pt;}
.x2_c00170{left:67.066667pt;}
.x1_c00170{left:68.000000pt;}
.x5_c00170{left:69.200000pt;}
.x4_c00170{left:70.800000pt;}
.x6_c00170{left:72.666667pt;}
.x7_c00170{left:74.000000pt;}
.xb_c00170{left:222.601563pt;}
.xa_c00170{left:425.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_c00171 {
    display:none;
  }
  .loading-indicator_c00171.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00171 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00171 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00171" -> "#page-container .classname_c00171")
 */
.pf_c00171 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00171 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00171.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00171 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00171 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00171 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00171 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00171 {overflow:visible;}
  }
}
.c_c00171 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00171 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00171:after { /* webkit #35443 */
  content: '';
}
.t_c00171:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00171 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00171 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00171 { /* info for Javascript */
  display:none;
}
.l_c00171 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00171 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00171 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00171:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00171{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00171;src:url('chunks/assets/font_8427c7ae4830e3fd39b3263f.woff2')format("woff");}.ff1_c00171{font-family:ff1_c00171;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00171;src:url('chunks/assets/font_aba2f9b4aa3982b94a6a859f.woff2')format("woff");}.ff2_c00171{font-family:ff2_c00171;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00171;src:url('chunks/assets/font_b7c897b1e9d876ddb8f52f0b.woff2')format("woff");}.ff3_c00171{font-family:ff3_c00171;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00171;src:url('chunks/assets/font_2071d63e0db7724314f66ab0.woff2')format("woff");}.ff4_c00171{font-family:ff4_c00171;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00171;src:url('chunks/assets/font_b90cf9628baa086a4f37b13d.woff2')format("woff");}.ff5_c00171{font-family:ff5_c00171;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00171;src:url('chunks/assets/font_f3790c11fa1b72b5ebd5d0f3.woff2')format("woff");}.ff6_c00171{font-family:ff6_c00171;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00171;src:url('chunks/assets/font_474f7912060aa6a7239af1c2.woff2')format("woff");}.ff7_c00171{font-family:ff7_c00171;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00171;src:url('chunks/assets/font_7d7c370e5eca81c18e770a83.woff2')format("woff");}.ff8_c00171{font-family:ff8_c00171;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00171;src:url('chunks/assets/font_512c953b0e72e08bdc829f45.woff2')format("woff");}.ff9_c00171{font-family:ff9_c00171;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00171;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ffa_c00171{font-family:ffa_c00171;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00171{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00171{vertical-align:0.000000px;}
.v1_c00171{vertical-align:3.000000px;}
.ls9_c00171{letter-spacing:0.000000px;}
.ls1_c00171{letter-spacing:0.600000px;}
.ls3_c00171{letter-spacing:3.000000px;}
.ls6_c00171{letter-spacing:3.600000px;}
.lsb_c00171{letter-spacing:6.000000px;}
.ls2_c00171{letter-spacing:6.240000px;}
.ls7_c00171{letter-spacing:9.405000px;}
.ls8_c00171{letter-spacing:11.700000px;}
.lsa_c00171{letter-spacing:15.000000px;}
.ls4_c00171{letter-spacing:28.377000px;}
.ls0_c00171{letter-spacing:34.080000px;}
.ls5_c00171{letter-spacing:112.140000px;}
.sc__c00171{text-shadow:none;}
.sc0_c00171{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00171{-webkit-text-stroke:0px transparent;}
.sc0_c00171{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00171{word-spacing:-29.295000px;}
.ws7_c00171{word-spacing:-27.000000px;}
.wsa_c00171{word-spacing:-21.750000px;}
.ws8_c00171{word-spacing:-21.645000px;}
.ws2_c00171{word-spacing:-21.000000px;}
.ws6_c00171{word-spacing:-18.750000px;}
.ws1_c00171{word-spacing:-18.060000px;}
.ws5_c00171{word-spacing:-16.500000px;}
.ws3_c00171{word-spacing:-14.160000px;}
.ws9_c00171{word-spacing:-4.776000px;}
.wsb_c00171{word-spacing:0.000000px;}
.ws0_c00171{word-spacing:0.420000px;}
._28_c00171{margin-left:-21.060000px;}
._1f_c00171{margin-left:-18.720000px;}
._25_c00171{margin-left:-13.800000px;}
._18_c00171{margin-left:-11.580000px;}
._15_c00171{margin-left:-9.840000px;}
._1e_c00171{margin-left:-8.820000px;}
._17_c00171{margin-left:-7.680000px;}
._29_c00171{margin-left:-6.633000px;}
._14_c00171{margin-left:-5.580000px;}
._16_c00171{margin-left:-4.500000px;}
._e_c00171{margin-left:-2.700000px;}
._f_c00171{margin-left:-1.560000px;}
._c_c00171{width:1.140000px;}
._9_c00171{width:2.520000px;}
._7_c00171{width:3.900000px;}
._8_c00171{width:5.160000px;}
._2_c00171{width:6.840000px;}
._6_c00171{width:8.322000px;}
._0_c00171{width:9.420000px;}
._5_c00171{width:11.400000px;}
._4_c00171{width:13.395000px;}
._11_c00171{width:15.240000px;}
._3_c00171{width:16.869000px;}
._1b_c00171{width:19.680000px;}
._1c_c00171{width:21.303000px;}
._b_c00171{width:22.680000px;}
._13_c00171{width:23.760000px;}
._20_c00171{width:25.065000px;}
._10_c00171{width:26.940000px;}
._26_c00171{width:29.706000px;}
._12_c00171{width:32.520000px;}
._d_c00171{width:33.840000px;}
._19_c00171{width:35.340000px;}
._1a_c00171{width:39.420000px;}
._22_c00171{width:43.620000px;}
._27_c00171{width:45.807000px;}
._24_c00171{width:50.940000px;}
._21_c00171{width:61.320000px;}
._23_c00171{width:66.000000px;}
._2c_c00171{width:74.580000px;}
._a_c00171{width:80.220000px;}
._2a_c00171{width:142.125000px;}
._1d_c00171{width:303.000000px;}
._1_c00171{width:307.071000px;}
._2b_c00171{width:347.556000px;}
.fc2_c00171{color:transparent;}
.fc1_c00171{color:rgb(128,128,128);}
.fc0_c00171{color:rgb(0,0,0);}
.fs3_c00171{font-size:45.000000px;}
.fs5_c00171{font-size:48.000000px;}
.fs4_c00171{font-size:51.000000px;}
.fs2_c00171{font-size:54.000000px;}
.fs1_c00171{font-size:57.000000px;}
.fs0_c00171{font-size:60.000000px;}
.fs6_c00171{font-size:63.000000px;}
.y0_c00171{bottom:0.000000px;}
.y58_c00171{bottom:3.105000px;}
.y57_c00171{bottom:7.228357px;}
.y56_c00171{bottom:39.180000px;}
.y55_c00171{bottom:56.430000px;}
.y31_c00171{bottom:61.830000px;}
.y54_c00171{bottom:76.230000px;}
.y30_c00171{bottom:83.130000px;}
.y32_c00171{bottom:91.230000px;}
.y53_c00171{bottom:91.530000px;}
.y29_c00171{bottom:92.580000px;}
.y2f_c00171{bottom:98.880000px;}
.y28_c00171{bottom:110.730000px;}
.y52_c00171{bottom:111.780000px;}
.y27_c00171{bottom:128.580000px;}
.y51_c00171{bottom:129.330000px;}
.y26_c00171{bottom:147.180000px;}
.y50_c00171{bottom:147.480000px;}
.y25_c00171{bottom:165.330000px;}
.y4f_c00171{bottom:165.480000px;}
.y24_c00171{bottom:183.330000px;}
.y23_c00171{bottom:201.180000px;}
.y4e_c00171{bottom:201.480000px;}
.y22_c00171{bottom:219.330000px;}
.y4d_c00171{bottom:219.780000px;}
.y21_c00171{bottom:237.330000px;}
.y4c_c00171{bottom:238.230000px;}
.y4b_c00171{bottom:255.180000px;}
.y20_c00171{bottom:255.780000px;}
.y1f_c00171{bottom:273.480000px;}
.y4a_c00171{bottom:274.080000px;}
.y1e_c00171{bottom:290.880000px;}
.y49_c00171{bottom:291.330000px;}
.y1d_c00171{bottom:309.780000px;}
.y48_c00171{bottom:309.930000px;}
.y47_c00171{bottom:327.480000px;}
.y1c_c00171{bottom:328.380000px;}
.y46_c00171{bottom:345.630000px;}
.y1b_c00171{bottom:346.380000px;}
.y2c_c00171{bottom:351.030000px;}
.y45_c00171{bottom:363.180000px;}
.y1a_c00171{bottom:364.230000px;}
.y2b_c00171{bottom:369.330000px;}
.y19_c00171{bottom:381.030000px;}
.y44_c00171{bottom:381.480000px;}
.y2a_c00171{bottom:387.480000px;}
.y43_c00171{bottom:399.030000px;}
.y18_c00171{bottom:399.630000px;}
.y17_c00171{bottom:417.930000px;}
.y16_c00171{bottom:435.480000px;}
.y42_c00171{bottom:436.830000px;}
.y15_c00171{bottom:453.930000px;}
.y2e_c00171{bottom:454.230000px;}
.y14_c00171{bottom:471.930000px;}
.y41_c00171{bottom:472.230000px;}
.y2d_c00171{bottom:473.130000px;}
.y40_c00171{bottom:489.780000px;}
.y13_c00171{bottom:490.080000px;}
.y3f_c00171{bottom:507.330000px;}
.y12_c00171{bottom:509.730000px;}
.y11_c00171{bottom:526.530000px;}
.y3_c00171{bottom:531.630000px;}
.y3e_c00171{bottom:543.780000px;}
.y10_c00171{bottom:544.680000px;}
.y3d_c00171{bottom:562.230000px;}
.yf_c00171{bottom:562.380000px;}
.ye_c00171{bottom:580.830000px;}
.y3c_c00171{bottom:598.380000px;}
.yd_c00171{bottom:598.830000px;}
.y3b_c00171{bottom:616.980000px;}
.yc_c00171{bottom:617.280000px;}
.y3a_c00171{bottom:633.780000px;}
.yb_c00171{bottom:635.280000px;}
.y39_c00171{bottom:652.680000px;}
.ya_c00171{bottom:653.730000px;}
.y38_c00171{bottom:670.380000px;}
.y9_c00171{bottom:671.580000px;}
.y37_c00171{bottom:688.530000px;}
.y8_c00171{bottom:689.580000px;}
.y36_c00171{bottom:706.380000px;}
.y7_c00171{bottom:708.780000px;}
.y35_c00171{bottom:724.680000px;}
.y6_c00171{bottom:727.080000px;}
.y34_c00171{bottom:743.130000px;}
.y5_c00171{bottom:745.230000px;}
.y33_c00171{bottom:761.730000px;}
.y4_c00171{bottom:762.780000px;}
.y2_c00171{bottom:780.330000px;}
.y1_c00171{bottom:800.880000px;}
.hc_c00171{height:13.200074px;}
.hd_c00171{height:43.804688px;}
.h6_c00171{height:50.053711px;}
.ha_c00171{height:52.971680px;}
.h9_c00171{height:52.998047px;}
.h5_c00171{height:59.690918px;}
.h4_c00171{height:59.736000px;}
.h2_c00171{height:62.880000px;}
.h3_c00171{height:64.020000px;}
.h7_c00171{height:65.880000px;}
.h8_c00171{height:66.024000px;}
.hb_c00171{height:67.221000px;}
.h0_c00171{height:835.950000px;}
.h1_c00171{height:836.250000px;}
.w2_c00171{width:104.875500px;}
.w0_c00171{width:562.125000px;}
.w1_c00171{width:562.500000px;}
.x0_c00171{left:0.000000px;}
.xe_c00171{left:24.000000px;}
.xc_c00171{left:27.450000px;}
.x3_c00171{left:28.650000px;}
.x17_c00171{left:83.700000px;}
.xb_c00171{left:85.050000px;}
.xa_c00171{left:86.400000px;}
.x9_c00171{left:87.750000px;}
.x7_c00171{left:88.800000px;}
.x8_c00171{left:90.450000px;}
.x4_c00171{left:92.100000px;}
.x5_c00171{left:93.450000px;}
.x1_c00171{left:96.600000px;}
.x6_c00171{left:109.650000px;}
.x2_c00171{left:112.350000px;}
.x19_c00171{left:232.876740px;}
.xf_c00171{left:243.900000px;}
.x15_c00171{left:302.100000px;}
.x16_c00171{left:303.300000px;}
.x14_c00171{left:305.700000px;}
.x13_c00171{left:307.350000px;}
.x12_c00171{left:308.700000px;}
.x10_c00171{left:309.900000px;}
.x11_c00171{left:311.100000px;}
.x18_c00171{left:467.550000px;}
.xd_c00171{left:514.650000px;}
@media print{
.v0_c00171{vertical-align:0.000000pt;}
.v1_c00171{vertical-align:2.666667pt;}
.ls9_c00171{letter-spacing:0.000000pt;}
.ls1_c00171{letter-spacing:0.533333pt;}
.ls3_c00171{letter-spacing:2.666667pt;}
.ls6_c00171{letter-spacing:3.200000pt;}
.lsb_c00171{letter-spacing:5.333333pt;}
.ls2_c00171{letter-spacing:5.546667pt;}
.ls7_c00171{letter-spacing:8.360000pt;}
.ls8_c00171{letter-spacing:10.400000pt;}
.lsa_c00171{letter-spacing:13.333333pt;}
.ls4_c00171{letter-spacing:25.224000pt;}
.ls0_c00171{letter-spacing:30.293333pt;}
.ls5_c00171{letter-spacing:99.680000pt;}
.ws4_c00171{word-spacing:-26.040000pt;}
.ws7_c00171{word-spacing:-24.000000pt;}
.wsa_c00171{word-spacing:-19.333333pt;}
.ws8_c00171{word-spacing:-19.240000pt;}
.ws2_c00171{word-spacing:-18.666667pt;}
.ws6_c00171{word-spacing:-16.666667pt;}
.ws1_c00171{word-spacing:-16.053333pt;}
.ws5_c00171{word-spacing:-14.666667pt;}
.ws3_c00171{word-spacing:-12.586667pt;}
.ws9_c00171{word-spacing:-4.245333pt;}
.wsb_c00171{word-spacing:0.000000pt;}
.ws0_c00171{word-spacing:0.373333pt;}
._28_c00171{margin-left:-18.720000pt;}
._1f_c00171{margin-left:-16.640000pt;}
._25_c00171{margin-left:-12.266667pt;}
._18_c00171{margin-left:-10.293333pt;}
._15_c00171{margin-left:-8.746667pt;}
._1e_c00171{margin-left:-7.840000pt;}
._17_c00171{margin-left:-6.826667pt;}
._29_c00171{margin-left:-5.896000pt;}
._14_c00171{margin-left:-4.960000pt;}
._16_c00171{margin-left:-4.000000pt;}
._e_c00171{margin-left:-2.400000pt;}
._f_c00171{margin-left:-1.386667pt;}
._c_c00171{width:1.013333pt;}
._9_c00171{width:2.240000pt;}
._7_c00171{width:3.466667pt;}
._8_c00171{width:4.586667pt;}
._2_c00171{width:6.080000pt;}
._6_c00171{width:7.397333pt;}
._0_c00171{width:8.373333pt;}
._5_c00171{width:10.133333pt;}
._4_c00171{width:11.906667pt;}
._11_c00171{width:13.546667pt;}
._3_c00171{width:14.994667pt;}
._1b_c00171{width:17.493333pt;}
._1c_c00171{width:18.936000pt;}
._b_c00171{width:20.160000pt;}
._13_c00171{width:21.120000pt;}
._20_c00171{width:22.280000pt;}
._10_c00171{width:23.946667pt;}
._26_c00171{width:26.405333pt;}
._12_c00171{width:28.906667pt;}
._d_c00171{width:30.080000pt;}
._19_c00171{width:31.413333pt;}
._1a_c00171{width:35.040000pt;}
._22_c00171{width:38.773333pt;}
._27_c00171{width:40.717333pt;}
._24_c00171{width:45.280000pt;}
._21_c00171{width:54.506667pt;}
._23_c00171{width:58.666667pt;}
._2c_c00171{width:66.293333pt;}
._a_c00171{width:71.306667pt;}
._2a_c00171{width:126.333333pt;}
._1d_c00171{width:269.333333pt;}
._1_c00171{width:272.952000pt;}
._2b_c00171{width:308.938667pt;}
.fs3_c00171{font-size:40.000000pt;}
.fs5_c00171{font-size:42.666667pt;}
.fs4_c00171{font-size:45.333333pt;}
.fs2_c00171{font-size:48.000000pt;}
.fs1_c00171{font-size:50.666667pt;}
.fs0_c00171{font-size:53.333333pt;}
.fs6_c00171{font-size:56.000000pt;}
.y0_c00171{bottom:0.000000pt;}
.y58_c00171{bottom:2.760000pt;}
.y57_c00171{bottom:6.425206pt;}
.y56_c00171{bottom:34.826667pt;}
.y55_c00171{bottom:50.160000pt;}
.y31_c00171{bottom:54.960000pt;}
.y54_c00171{bottom:67.760000pt;}
.y30_c00171{bottom:73.893333pt;}
.y32_c00171{bottom:81.093333pt;}
.y53_c00171{bottom:81.360000pt;}
.y29_c00171{bottom:82.293333pt;}
.y2f_c00171{bottom:87.893333pt;}
.y28_c00171{bottom:98.426667pt;}
.y52_c00171{bottom:99.360000pt;}
.y27_c00171{bottom:114.293333pt;}
.y51_c00171{bottom:114.960000pt;}
.y26_c00171{bottom:130.826667pt;}
.y50_c00171{bottom:131.093333pt;}
.y25_c00171{bottom:146.960000pt;}
.y4f_c00171{bottom:147.093333pt;}
.y24_c00171{bottom:162.960000pt;}
.y23_c00171{bottom:178.826667pt;}
.y4e_c00171{bottom:179.093333pt;}
.y22_c00171{bottom:194.960000pt;}
.y4d_c00171{bottom:195.360000pt;}
.y21_c00171{bottom:210.960000pt;}
.y4c_c00171{bottom:211.760000pt;}
.y4b_c00171{bottom:226.826667pt;}
.y20_c00171{bottom:227.360000pt;}
.y1f_c00171{bottom:243.093333pt;}
.y4a_c00171{bottom:243.626667pt;}
.y1e_c00171{bottom:258.560000pt;}
.y49_c00171{bottom:258.960000pt;}
.y1d_c00171{bottom:275.360000pt;}
.y48_c00171{bottom:275.493333pt;}
.y47_c00171{bottom:291.093333pt;}
.y1c_c00171{bottom:291.893333pt;}
.y46_c00171{bottom:307.226667pt;}
.y1b_c00171{bottom:307.893333pt;}
.y2c_c00171{bottom:312.026667pt;}
.y45_c00171{bottom:322.826667pt;}
.y1a_c00171{bottom:323.760000pt;}
.y2b_c00171{bottom:328.293333pt;}
.y19_c00171{bottom:338.693333pt;}
.y44_c00171{bottom:339.093333pt;}
.y2a_c00171{bottom:344.426667pt;}
.y43_c00171{bottom:354.693333pt;}
.y18_c00171{bottom:355.226667pt;}
.y17_c00171{bottom:371.493333pt;}
.y16_c00171{bottom:387.093333pt;}
.y42_c00171{bottom:388.293333pt;}
.y15_c00171{bottom:403.493333pt;}
.y2e_c00171{bottom:403.760000pt;}
.y14_c00171{bottom:419.493333pt;}
.y41_c00171{bottom:419.760000pt;}
.y2d_c00171{bottom:420.560000pt;}
.y40_c00171{bottom:435.360000pt;}
.y13_c00171{bottom:435.626667pt;}
.y3f_c00171{bottom:450.960000pt;}
.y12_c00171{bottom:453.093333pt;}
.y11_c00171{bottom:468.026667pt;}
.y3_c00171{bottom:472.560000pt;}
.y3e_c00171{bottom:483.360000pt;}
.y10_c00171{bottom:484.160000pt;}
.y3d_c00171{bottom:499.760000pt;}
.yf_c00171{bottom:499.893333pt;}
.ye_c00171{bottom:516.293333pt;}
.y3c_c00171{bottom:531.893333pt;}
.yd_c00171{bottom:532.293333pt;}
.y3b_c00171{bottom:548.426667pt;}
.yc_c00171{bottom:548.693333pt;}
.y3a_c00171{bottom:563.360000pt;}
.yb_c00171{bottom:564.693333pt;}
.y39_c00171{bottom:580.160000pt;}
.ya_c00171{bottom:581.093333pt;}
.y38_c00171{bottom:595.893333pt;}
.y9_c00171{bottom:596.960000pt;}
.y37_c00171{bottom:612.026667pt;}
.y8_c00171{bottom:612.960000pt;}
.y36_c00171{bottom:627.893333pt;}
.y7_c00171{bottom:630.026667pt;}
.y35_c00171{bottom:644.160000pt;}
.y6_c00171{bottom:646.293333pt;}
.y34_c00171{bottom:660.560000pt;}
.y5_c00171{bottom:662.426667pt;}
.y33_c00171{bottom:677.093333pt;}
.y4_c00171{bottom:678.026667pt;}
.y2_c00171{bottom:693.626667pt;}
.y1_c00171{bottom:711.893333pt;}
.hc_c00171{height:11.733399pt;}
.hd_c00171{height:38.937500pt;}
.h6_c00171{height:44.492188pt;}
.ha_c00171{height:47.085938pt;}
.h9_c00171{height:47.109375pt;}
.h5_c00171{height:53.058594pt;}
.h4_c00171{height:53.098667pt;}
.h2_c00171{height:55.893333pt;}
.h3_c00171{height:56.906667pt;}
.h7_c00171{height:58.560000pt;}
.h8_c00171{height:58.688000pt;}
.hb_c00171{height:59.752000pt;}
.h0_c00171{height:743.066667pt;}
.h1_c00171{height:743.333333pt;}
.w2_c00171{width:93.222667pt;}
.w0_c00171{width:499.666667pt;}
.w1_c00171{width:500.000000pt;}
.x0_c00171{left:0.000000pt;}
.xe_c00171{left:21.333333pt;}
.xc_c00171{left:24.400000pt;}
.x3_c00171{left:25.466667pt;}
.x17_c00171{left:74.400000pt;}
.xb_c00171{left:75.600000pt;}
.xa_c00171{left:76.800000pt;}
.x9_c00171{left:78.000000pt;}
.x7_c00171{left:78.933333pt;}
.x8_c00171{left:80.400000pt;}
.x4_c00171{left:81.866667pt;}
.x5_c00171{left:83.066667pt;}
.x1_c00171{left:85.866667pt;}
.x6_c00171{left:97.466667pt;}
.x2_c00171{left:99.866667pt;}
.x19_c00171{left:207.001546pt;}
.xf_c00171{left:216.800000pt;}
.x15_c00171{left:268.533333pt;}
.x16_c00171{left:269.600000pt;}
.x14_c00171{left:271.733333pt;}
.x13_c00171{left:273.200000pt;}
.x12_c00171{left:274.400000pt;}
.x10_c00171{left:275.466667pt;}
.x11_c00171{left:276.533333pt;}
.x18_c00171{left:415.600000pt;}
.xd_c00171{left:457.466667pt;}
}





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

.ir_c00172:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00172{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00172;src:url('chunks/assets/font_3c9696b66e30a927acaf2a27.woff2')format("woff");}.ff1_c00172{font-family:ff1_c00172;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00172;src:url('chunks/assets/font_0801938c1d416d2ddf084408.woff2')format("woff");}.ff2_c00172{font-family:ff2_c00172;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00172;src:url('chunks/assets/font_daf623c526ad2523adfc0c22.woff2')format("woff");}.ff3_c00172{font-family:ff3_c00172;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_c00172;src:url('chunks/assets/font_9673ab454adee6785c1069f9.woff2')format("woff");}.ff4_c00172{font-family:ff4_c00172;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00172;src:url('chunks/assets/font_fc41ecbe0d63fd736f5c54d7.woff2')format("woff");}.ff5_c00172{font-family:ff5_c00172;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00172;src:url('chunks/assets/font_c97f01875c1c0f97b276af38.woff2')format("woff");}.ff6_c00172{font-family:ff6_c00172;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00172;src:url('chunks/assets/font_cbfad9f999b4bb2dbed25b26.woff2')format("woff");}.ff7_c00172{font-family:ff7_c00172;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00172;src:url('chunks/assets/font_7c7b114d6d8510036cb24ad0.woff2')format("woff");}.ff8_c00172{font-family:ff8_c00172;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00172;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff9_c00172{font-family:ff9_c00172;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00172{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00172{vertical-align:0.000000px;}
.v1_c00172{vertical-align:7.200000px;}
.ls7_c00172{letter-spacing:0.000000px;}
.ls3_c00172{letter-spacing:1.200000px;}
.ls2_c00172{letter-spacing:3.000000px;}
.ls1_c00172{letter-spacing:4.200000px;}
.ls8_c00172{letter-spacing:6.000000px;}
.ls4_c00172{letter-spacing:12.300000px;}
.ls5_c00172{letter-spacing:15.000000px;}
.ls6_c00172{letter-spacing:26.205000px;}
.ls0_c00172{letter-spacing:122.460000px;}
.sc__c00172{text-shadow:none;}
.sc0_c00172{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00172{-webkit-text-stroke:0px transparent;}
.sc0_c00172{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00172{word-spacing:-50.022000px;}
.ws1_c00172{word-spacing:-31.680000px;}
.ws2_c00172{word-spacing:-23.340000px;}
.ws3_c00172{word-spacing:-18.060000px;}
.ws6_c00172{word-spacing:-15.390000px;}
.ws0_c00172{word-spacing:-14.160000px;}
.ws5_c00172{word-spacing:-6.783000px;}
.ws7_c00172{word-spacing:0.000000px;}
._17_c00172{margin-left:-18.198000px;}
._11_c00172{margin-left:-15.600000px;}
._18_c00172{margin-left:-12.657000px;}
._19_c00172{margin-left:-10.308000px;}
._14_c00172{margin-left:-8.742000px;}
._16_c00172{margin-left:-7.068000px;}
._a_c00172{margin-left:-6.060000px;}
._8_c00172{margin-left:-4.980000px;}
._9_c00172{margin-left:-3.780000px;}
._1d_c00172{margin-left:-2.760000px;}
._4_c00172{margin-left:-1.680000px;}
._0_c00172{width:1.197000px;}
._7_c00172{width:2.220000px;}
._12_c00172{width:3.600000px;}
._10_c00172{width:5.460000px;}
._e_c00172{width:6.780000px;}
._d_c00172{width:7.860000px;}
._5_c00172{width:9.840000px;}
._6_c00172{width:11.283000px;}
._2_c00172{width:13.041000px;}
._3_c00172{width:14.301000px;}
._1b_c00172{width:16.512000px;}
._b_c00172{width:19.200000px;}
._f_c00172{width:21.300000px;}
._1a_c00172{width:23.220000px;}
._1e_c00172{width:24.714000px;}
._15_c00172{width:25.860000px;}
._13_c00172{width:28.110000px;}
._24_c00172{width:30.456000px;}
._c_c00172{width:32.460000px;}
._1c_c00172{width:34.203000px;}
._23_c00172{width:35.658000px;}
._21_c00172{width:38.430000px;}
._22_c00172{width:47.187000px;}
._20_c00172{width:108.915000px;}
._1_c00172{width:195.993000px;}
._25_c00172{width:197.700000px;}
._1f_c00172{width:433.632000px;}
.fc2_c00172{color:transparent;}
.fc1_c00172{color:rgb(128,128,128);}
.fc0_c00172{color:rgb(0,0,0);}
.fs3_c00172{font-size:39.000000px;}
.fs4_c00172{font-size:45.000000px;}
.fs5_c00172{font-size:48.000000px;}
.fs1_c00172{font-size:60.000000px;}
.fs0_c00172{font-size:63.000000px;}
.fs2_c00172{font-size:96.000000px;}
.y0_c00172{bottom:0.000000px;}
.y57_c00172{bottom:3.105000px;}
.y56_c00172{bottom:7.228355px;}
.y55_c00172{bottom:32.985000px;}
.y54_c00172{bottom:51.585000px;}
.y29_c00172{bottom:53.235000px;}
.y53_c00172{bottom:69.885000px;}
.y28_c00172{bottom:71.835000px;}
.y52_c00172{bottom:88.335000px;}
.y27_c00172{bottom:89.385000px;}
.y51_c00172{bottom:105.885000px;}
.y26_c00172{bottom:107.535000px;}
.y50_c00172{bottom:123.735000px;}
.y25_c00172{bottom:125.235000px;}
.y4f_c00172{bottom:141.435000px;}
.y24_c00172{bottom:143.685000px;}
.y4e_c00172{bottom:159.585000px;}
.y23_c00172{bottom:161.535000px;}
.y4d_c00172{bottom:177.735000px;}
.y22_c00172{bottom:179.085000px;}
.y4c_c00172{bottom:195.435000px;}
.y21_c00172{bottom:197.385000px;}
.y4b_c00172{bottom:213.285000px;}
.y20_c00172{bottom:214.935000px;}
.y4a_c00172{bottom:231.735000px;}
.y1f_c00172{bottom:233.235000px;}
.y49_c00172{bottom:249.735000px;}
.y1e_c00172{bottom:251.685000px;}
.y48_c00172{bottom:268.185000px;}
.y1d_c00172{bottom:269.685000px;}
.y47_c00172{bottom:286.185000px;}
.y1c_c00172{bottom:286.785000px;}
.y46_c00172{bottom:303.735000px;}
.y1b_c00172{bottom:304.635000px;}
.y45_c00172{bottom:322.635000px;}
.y1a_c00172{bottom:322.935000px;}
.y44_c00172{bottom:339.885000px;}
.y19_c00172{bottom:340.785000px;}
.y43_c00172{bottom:358.035000px;}
.y18_c00172{bottom:358.635000px;}
.y17_c00172{bottom:374.835000px;}
.y42_c00172{bottom:376.335000px;}
.y41_c00172{bottom:394.785000px;}
.y16_c00172{bottom:395.835000px;}
.y40_c00172{bottom:412.785000px;}
.y15_c00172{bottom:413.685000px;}
.y2a_c00172{bottom:415.335000px;}
.y3f_c00172{bottom:430.335000px;}
.y14_c00172{bottom:430.935000px;}
.y13_c00172{bottom:447.885000px;}
.y3e_c00172{bottom:448.785000px;}
.y3d_c00172{bottom:466.635000px;}
.y3c_c00172{bottom:484.185000px;}
.y12_c00172{bottom:484.335000px;}
.y11_c00172{bottom:501.885000px;}
.y3b_c00172{bottom:502.485000px;}
.y10_c00172{bottom:520.635000px;}
.yf_c00172{bottom:537.885000px;}
.y3a_c00172{bottom:538.335000px;}
.ye_c00172{bottom:556.485000px;}
.yd_c00172{bottom:574.035000px;}
.y39_c00172{bottom:574.635000px;}
.yc_c00172{bottom:592.185000px;}
.y38_c00172{bottom:592.635000px;}
.yb_c00172{bottom:609.885000px;}
.y37_c00172{bottom:611.085000px;}
.ya_c00172{bottom:628.335000px;}
.y36_c00172{bottom:628.785000px;}
.y9_c00172{bottom:646.335000px;}
.y35_c00172{bottom:646.635000px;}
.y8_c00172{bottom:664.185000px;}
.y34_c00172{bottom:664.785000px;}
.y2c_c00172{bottom:678.585000px;}
.y7_c00172{bottom:681.735000px;}
.y33_c00172{bottom:683.685000px;}
.y2b_c00172{bottom:697.485000px;}
.y6_c00172{bottom:700.185000px;}
.y32_c00172{bottom:701.235000px;}
.y5_c00172{bottom:717.885000px;}
.y31_c00172{bottom:718.485000px;}
.y4_c00172{bottom:736.035000px;}
.y30_c00172{bottom:736.785000px;}
.y3_c00172{bottom:753.285000px;}
.y2f_c00172{bottom:754.635000px;}
.y2_c00172{bottom:771.735000px;}
.y2e_c00172{bottom:772.785000px;}
.y2d_c00172{bottom:791.985000px;}
.y1_c00172{bottom:792.135000px;}
.h7_c00172{height:13.200074px;}
.h8_c00172{height:43.804688px;}
.h3_c00172{height:62.880000px;}
.h6_c00172{height:64.020000px;}
.h2_c00172{height:66.024000px;}
.h5_c00172{height:70.080000px;}
.h4_c00172{height:96.750000px;}
.h0_c00172{height:832.125000px;}
.h1_c00172{height:832.500000px;}
.w2_c00172{width:104.875500px;}
.w1_c00172{width:591.750000px;}
.w0_c00172{width:591.825000px;}
.x0_c00172{left:0.000000px;}
.xe_c00172{left:55.050000px;}
.x2_c00172{left:61.800000px;}
.xd_c00172{left:65.550000px;}
.xc_c00172{left:67.200000px;}
.x4_c00172{left:68.850000px;}
.x5_c00172{left:70.200000px;}
.x3_c00172{left:71.250000px;}
.xa_c00172{left:73.200000px;}
.x8_c00172{left:96.600000px;}
.xb_c00172{left:114.450000px;}
.x7_c00172{left:121.500000px;}
.x9_c00172{left:122.850000px;}
.x6_c00172{left:136.650000px;}
.x1_c00172{left:183.600000px;}
.x18_c00172{left:247.726730px;}
.x11_c00172{left:282.900000px;}
.x14_c00172{left:284.850000px;}
.x16_c00172{left:286.200000px;}
.x15_c00172{left:287.550000px;}
.x13_c00172{left:288.600000px;}
.x12_c00172{left:289.950000px;}
.x17_c00172{left:383.100000px;}
.x10_c00172{left:492.150000px;}
.xf_c00172{left:495.000000px;}
@media print{
.v0_c00172{vertical-align:0.000000pt;}
.v1_c00172{vertical-align:6.400000pt;}
.ls7_c00172{letter-spacing:0.000000pt;}
.ls3_c00172{letter-spacing:1.066667pt;}
.ls2_c00172{letter-spacing:2.666667pt;}
.ls1_c00172{letter-spacing:3.733333pt;}
.ls8_c00172{letter-spacing:5.333333pt;}
.ls4_c00172{letter-spacing:10.933333pt;}
.ls5_c00172{letter-spacing:13.333333pt;}
.ls6_c00172{letter-spacing:23.293333pt;}
.ls0_c00172{letter-spacing:108.853333pt;}
.ws4_c00172{word-spacing:-44.464000pt;}
.ws1_c00172{word-spacing:-28.160000pt;}
.ws2_c00172{word-spacing:-20.746667pt;}
.ws3_c00172{word-spacing:-16.053333pt;}
.ws6_c00172{word-spacing:-13.680000pt;}
.ws0_c00172{word-spacing:-12.586667pt;}
.ws5_c00172{word-spacing:-6.029333pt;}
.ws7_c00172{word-spacing:0.000000pt;}
._17_c00172{margin-left:-16.176000pt;}
._11_c00172{margin-left:-13.866667pt;}
._18_c00172{margin-left:-11.250667pt;}
._19_c00172{margin-left:-9.162667pt;}
._14_c00172{margin-left:-7.770667pt;}
._16_c00172{margin-left:-6.282667pt;}
._a_c00172{margin-left:-5.386667pt;}
._8_c00172{margin-left:-4.426667pt;}
._9_c00172{margin-left:-3.360000pt;}
._1d_c00172{margin-left:-2.453333pt;}
._4_c00172{margin-left:-1.493333pt;}
._0_c00172{width:1.064000pt;}
._7_c00172{width:1.973333pt;}
._12_c00172{width:3.200000pt;}
._10_c00172{width:4.853333pt;}
._e_c00172{width:6.026667pt;}
._d_c00172{width:6.986667pt;}
._5_c00172{width:8.746667pt;}
._6_c00172{width:10.029333pt;}
._2_c00172{width:11.592000pt;}
._3_c00172{width:12.712000pt;}
._1b_c00172{width:14.677333pt;}
._b_c00172{width:17.066667pt;}
._f_c00172{width:18.933333pt;}
._1a_c00172{width:20.640000pt;}
._1e_c00172{width:21.968000pt;}
._15_c00172{width:22.986667pt;}
._13_c00172{width:24.986667pt;}
._24_c00172{width:27.072000pt;}
._c_c00172{width:28.853333pt;}
._1c_c00172{width:30.402667pt;}
._23_c00172{width:31.696000pt;}
._21_c00172{width:34.160000pt;}
._22_c00172{width:41.944000pt;}
._20_c00172{width:96.813333pt;}
._1_c00172{width:174.216000pt;}
._25_c00172{width:175.733333pt;}
._1f_c00172{width:385.450667pt;}
.fs3_c00172{font-size:34.666667pt;}
.fs4_c00172{font-size:40.000000pt;}
.fs5_c00172{font-size:42.666667pt;}
.fs1_c00172{font-size:53.333333pt;}
.fs0_c00172{font-size:56.000000pt;}
.fs2_c00172{font-size:85.333333pt;}
.y0_c00172{bottom:0.000000pt;}
.y57_c00172{bottom:2.760000pt;}
.y56_c00172{bottom:6.425204pt;}
.y55_c00172{bottom:29.320000pt;}
.y54_c00172{bottom:45.853333pt;}
.y29_c00172{bottom:47.320000pt;}
.y53_c00172{bottom:62.120000pt;}
.y28_c00172{bottom:63.853333pt;}
.y52_c00172{bottom:78.520000pt;}
.y27_c00172{bottom:79.453333pt;}
.y51_c00172{bottom:94.120000pt;}
.y26_c00172{bottom:95.586667pt;}
.y50_c00172{bottom:109.986667pt;}
.y25_c00172{bottom:111.320000pt;}
.y4f_c00172{bottom:125.720000pt;}
.y24_c00172{bottom:127.720000pt;}
.y4e_c00172{bottom:141.853333pt;}
.y23_c00172{bottom:143.586667pt;}
.y4d_c00172{bottom:157.986667pt;}
.y22_c00172{bottom:159.186667pt;}
.y4c_c00172{bottom:173.720000pt;}
.y21_c00172{bottom:175.453333pt;}
.y4b_c00172{bottom:189.586667pt;}
.y20_c00172{bottom:191.053333pt;}
.y4a_c00172{bottom:205.986667pt;}
.y1f_c00172{bottom:207.320000pt;}
.y49_c00172{bottom:221.986667pt;}
.y1e_c00172{bottom:223.720000pt;}
.y48_c00172{bottom:238.386667pt;}
.y1d_c00172{bottom:239.720000pt;}
.y47_c00172{bottom:254.386667pt;}
.y1c_c00172{bottom:254.920000pt;}
.y46_c00172{bottom:269.986667pt;}
.y1b_c00172{bottom:270.786667pt;}
.y45_c00172{bottom:286.786667pt;}
.y1a_c00172{bottom:287.053333pt;}
.y44_c00172{bottom:302.120000pt;}
.y19_c00172{bottom:302.920000pt;}
.y43_c00172{bottom:318.253333pt;}
.y18_c00172{bottom:318.786667pt;}
.y17_c00172{bottom:333.186667pt;}
.y42_c00172{bottom:334.520000pt;}
.y41_c00172{bottom:350.920000pt;}
.y16_c00172{bottom:351.853333pt;}
.y40_c00172{bottom:366.920000pt;}
.y15_c00172{bottom:367.720000pt;}
.y2a_c00172{bottom:369.186667pt;}
.y3f_c00172{bottom:382.520000pt;}
.y14_c00172{bottom:383.053333pt;}
.y13_c00172{bottom:398.120000pt;}
.y3e_c00172{bottom:398.920000pt;}
.y3d_c00172{bottom:414.786667pt;}
.y3c_c00172{bottom:430.386667pt;}
.y12_c00172{bottom:430.520000pt;}
.y11_c00172{bottom:446.120000pt;}
.y3b_c00172{bottom:446.653333pt;}
.y10_c00172{bottom:462.786667pt;}
.yf_c00172{bottom:478.120000pt;}
.y3a_c00172{bottom:478.520000pt;}
.ye_c00172{bottom:494.653333pt;}
.yd_c00172{bottom:510.253333pt;}
.y39_c00172{bottom:510.786667pt;}
.yc_c00172{bottom:526.386667pt;}
.y38_c00172{bottom:526.786667pt;}
.yb_c00172{bottom:542.120000pt;}
.y37_c00172{bottom:543.186667pt;}
.ya_c00172{bottom:558.520000pt;}
.y36_c00172{bottom:558.920000pt;}
.y9_c00172{bottom:574.520000pt;}
.y35_c00172{bottom:574.786667pt;}
.y8_c00172{bottom:590.386667pt;}
.y34_c00172{bottom:590.920000pt;}
.y2c_c00172{bottom:603.186667pt;}
.y7_c00172{bottom:605.986667pt;}
.y33_c00172{bottom:607.720000pt;}
.y2b_c00172{bottom:619.986667pt;}
.y6_c00172{bottom:622.386667pt;}
.y32_c00172{bottom:623.320000pt;}
.y5_c00172{bottom:638.120000pt;}
.y31_c00172{bottom:638.653333pt;}
.y4_c00172{bottom:654.253333pt;}
.y30_c00172{bottom:654.920000pt;}
.y3_c00172{bottom:669.586667pt;}
.y2f_c00172{bottom:670.786667pt;}
.y2_c00172{bottom:685.986667pt;}
.y2e_c00172{bottom:686.920000pt;}
.y2d_c00172{bottom:703.986667pt;}
.y1_c00172{bottom:704.120000pt;}
.h7_c00172{height:11.733399pt;}
.h8_c00172{height:38.937500pt;}
.h3_c00172{height:55.893333pt;}
.h6_c00172{height:56.906667pt;}
.h2_c00172{height:58.688000pt;}
.h5_c00172{height:62.293333pt;}
.h4_c00172{height:86.000000pt;}
.h0_c00172{height:739.666667pt;}
.h1_c00172{height:740.000000pt;}
.w2_c00172{width:93.222667pt;}
.w1_c00172{width:526.000000pt;}
.w0_c00172{width:526.066667pt;}
.x0_c00172{left:0.000000pt;}
.xe_c00172{left:48.933333pt;}
.x2_c00172{left:54.933333pt;}
.xd_c00172{left:58.266667pt;}
.xc_c00172{left:59.733333pt;}
.x4_c00172{left:61.200000pt;}
.x5_c00172{left:62.400000pt;}
.x3_c00172{left:63.333333pt;}
.xa_c00172{left:65.066667pt;}
.x8_c00172{left:85.866667pt;}
.xb_c00172{left:101.733333pt;}
.x7_c00172{left:108.000000pt;}
.x9_c00172{left:109.200000pt;}
.x6_c00172{left:121.466667pt;}
.x1_c00172{left:163.200000pt;}
.x18_c00172{left:220.201538pt;}
.x11_c00172{left:251.466667pt;}
.x14_c00172{left:253.200000pt;}
.x16_c00172{left:254.400000pt;}
.x15_c00172{left:255.600000pt;}
.x13_c00172{left:256.533333pt;}
.x12_c00172{left:257.733333pt;}
.x17_c00172{left:340.533333pt;}
.x10_c00172{left:437.466667pt;}
.xf_c00172{left:440.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;}
@font-face{font-family:ff1_c00173;src:url('chunks/assets/font_b02b30877159ecff7c8e16db.woff2')format("woff");}.ff1_c00173{font-family:ff1_c00173;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00173;src:url('chunks/assets/font_d7835b8069924c252f8dd711.woff2')format("woff");}.ff2_c00173{font-family:ff2_c00173;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00173;src:url('chunks/assets/font_46477b84a02a118a880a896b.woff2')format("woff");}.ff3_c00173{font-family:ff3_c00173;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00173;src:url('chunks/assets/font_f71bc47a06e1a4efc7857449.woff2')format("woff");}.ff4_c00173{font-family:ff4_c00173;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00173;src:url('chunks/assets/font_a2df2226465b36d72dd4279d.woff2')format("woff");}.ff5_c00173{font-family:ff5_c00173;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00173;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff6_c00173{font-family:ff6_c00173;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00173{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00173{vertical-align:0.000000px;}
.ls4_c00173{letter-spacing:0.000000px;}
.ls0_c00173{letter-spacing:3.000000px;}
.ls1_c00173{letter-spacing:6.000000px;}
.ls2_c00173{letter-spacing:14.400000px;}
.ls5_c00173{letter-spacing:21.000000px;}
.ls3_c00173{letter-spacing:29.340000px;}
.sc__c00173{text-shadow:none;}
.sc0_c00173{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00173{-webkit-text-stroke:0px transparent;}
.sc0_c00173{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00173{word-spacing:-35.340000px;}
.ws0_c00173{word-spacing:-29.295000px;}
.ws2_c00173{word-spacing:-18.060000px;}
.ws5_c00173{word-spacing:-17.340000px;}
.ws3_c00173{word-spacing:-16.755000px;}
.ws1_c00173{word-spacing:-14.160000px;}
.ws6_c00173{word-spacing:0.000000px;}
._1a_c00173{margin-left:-18.720000px;}
._12_c00173{margin-left:-15.720000px;}
._d_c00173{margin-left:-14.700000px;}
._27_c00173{margin-left:-13.305000px;}
._26_c00173{margin-left:-11.400000px;}
._e_c00173{margin-left:-10.260000px;}
._20_c00173{margin-left:-8.475000px;}
._1e_c00173{margin-left:-6.360000px;}
._1d_c00173{margin-left:-5.115000px;}
._15_c00173{margin-left:-3.540000px;}
._17_c00173{margin-left:-2.520000px;}
._18_c00173{margin-left:-1.020000px;}
._7_c00173{width:1.875000px;}
._b_c00173{width:2.955000px;}
._0_c00173{width:4.005000px;}
._1_c00173{width:5.205000px;}
._a_c00173{width:7.155000px;}
._9_c00173{width:8.280000px;}
._14_c00173{width:9.660000px;}
._1c_c00173{width:10.920000px;}
._1f_c00173{width:12.300000px;}
._3_c00173{width:13.500000px;}
._4_c00173{width:15.540000px;}
._5_c00173{width:16.740000px;}
._c_c00173{width:18.795000px;}
._16_c00173{width:20.160000px;}
._24_c00173{width:21.750000px;}
._6_c00173{width:23.400000px;}
._2a_c00173{width:24.480000px;}
._10_c00173{width:25.800000px;}
._25_c00173{width:27.495000px;}
._22_c00173{width:28.545000px;}
._19_c00173{width:30.840000px;}
._11_c00173{width:33.465000px;}
._29_c00173{width:34.800000px;}
._f_c00173{width:36.660000px;}
._2b_c00173{width:104.415000px;}
._28_c00173{width:112.455000px;}
._23_c00173{width:119.745000px;}
._2c_c00173{width:194.520000px;}
._1b_c00173{width:209.460000px;}
._21_c00173{width:235.395000px;}
._13_c00173{width:246.060000px;}
._2_c00173{width:328.140000px;}
._8_c00173{width:421.830000px;}
.fc2_c00173{color:transparent;}
.fc1_c00173{color:rgb(128,128,128);}
.fc0_c00173{color:rgb(0,0,0);}
.fs0_c00173{font-size:45.000000px;}
.fs3_c00173{font-size:48.000000px;}
.fs1_c00173{font-size:60.000000px;}
.fs2_c00173{font-size:69.000000px;}
.y0_c00173{bottom:0.000000px;}
.y58_c00173{bottom:3.105000px;}
.y57_c00173{bottom:7.228357px;}
.y56_c00173{bottom:37.530000px;}
.y2b_c00173{bottom:45.330000px;}
.y55_c00173{bottom:55.680000px;}
.y2a_c00173{bottom:57.480000px;}
.y54_c00173{bottom:74.580000px;}
.y29_c00173{bottom:76.680000px;}
.y53_c00173{bottom:92.430000px;}
.y28_c00173{bottom:93.780000px;}
.y52_c00173{bottom:110.130000px;}
.y27_c00173{bottom:113.130000px;}
.y51_c00173{bottom:128.880000px;}
.y26_c00173{bottom:131.580000px;}
.y50_c00173{bottom:147.180000px;}
.y25_c00173{bottom:149.580000px;}
.y4f_c00173{bottom:165.330000px;}
.y24_c00173{bottom:167.130000px;}
.y4e_c00173{bottom:183.330000px;}
.y23_c00173{bottom:185.280000px;}
.y4d_c00173{bottom:201.180000px;}
.y22_c00173{bottom:203.130000px;}
.y4c_c00173{bottom:219.780000px;}
.y21_c00173{bottom:220.830000px;}
.y4b_c00173{bottom:238.230000px;}
.y20_c00173{bottom:238.980000px;}
.y4a_c00173{bottom:255.180000px;}
.y1f_c00173{bottom:257.580000px;}
.y49_c00173{bottom:274.380000px;}
.y1e_c00173{bottom:274.830000px;}
.y48_c00173{bottom:291.930000px;}
.y1d_c00173{bottom:293.730000px;}
.y47_c00173{bottom:310.530000px;}
.y1c_c00173{bottom:311.880000px;}
.y46_c00173{bottom:328.080000px;}
.y1b_c00173{bottom:330.180000px;}
.y45_c00173{bottom:346.680000px;}
.y1a_c00173{bottom:348.330000px;}
.y44_c00173{bottom:364.230000px;}
.y19_c00173{bottom:365.880000px;}
.y43_c00173{bottom:382.380000px;}
.y18_c00173{bottom:382.830000px;}
.y42_c00173{bottom:400.980000px;}
.y17_c00173{bottom:401.730000px;}
.y41_c00173{bottom:417.930000px;}
.y16_c00173{bottom:419.880000px;}
.y40_c00173{bottom:436.680000px;}
.y15_c00173{bottom:438.030000px;}
.y3f_c00173{bottom:454.380000px;}
.y14_c00173{bottom:455.580000px;}
.y3e_c00173{bottom:472.830000px;}
.y13_c00173{bottom:473.580000px;}
.y3d_c00173{bottom:490.830000px;}
.y12_c00173{bottom:491.430000px;}
.y3c_c00173{bottom:508.980000px;}
.y11_c00173{bottom:509.730000px;}
.y3b_c00173{bottom:527.130000px;}
.y10_c00173{bottom:527.880000px;}
.y3a_c00173{bottom:544.380000px;}
.yf_c00173{bottom:545.730000px;}
.y39_c00173{bottom:563.280000px;}
.ye_c00173{bottom:564.030000px;}
.y38_c00173{bottom:581.130000px;}
.yd_c00173{bottom:581.880000px;}
.y37_c00173{bottom:599.430000px;}
.yc_c00173{bottom:600.030000px;}
.y36_c00173{bottom:617.280000px;}
.yb_c00173{bottom:618.030000px;}
.y35_c00173{bottom:635.130000px;}
.ya_c00173{bottom:636.480000px;}
.y34_c00173{bottom:652.830000px;}
.y9_c00173{bottom:654.480000px;}
.y33_c00173{bottom:671.280000px;}
.y8_c00173{bottom:672.030000px;}
.y32_c00173{bottom:689.880000px;}
.y7_c00173{bottom:690.630000px;}
.y31_c00173{bottom:708.030000px;}
.y6_c00173{bottom:709.080000px;}
.y30_c00173{bottom:726.030000px;}
.y5_c00173{bottom:726.630000px;}
.y2f_c00173{bottom:744.480000px;}
.y4_c00173{bottom:744.930000px;}
.y2e_c00173{bottom:762.480000px;}
.y3_c00173{bottom:764.130000px;}
.y2d_c00173{bottom:781.080000px;}
.y2_c00173{bottom:782.730000px;}
.y2c_c00173{bottom:800.880000px;}
.y1_c00173{bottom:803.580000px;}
.h6_c00173{height:13.200074px;}
.h7_c00173{height:43.804688px;}
.h3_c00173{height:47.160000px;}
.h2_c00173{height:62.880000px;}
.h4_c00173{height:65.040000px;}
.h5_c00173{height:72.312000px;}
.h0_c00173{height:835.950000px;}
.h1_c00173{height:836.250000px;}
.w2_c00173{width:104.875500px;}
.w0_c00173{width:562.125000px;}
.w1_c00173{width:562.500000px;}
.x0_c00173{left:0.000000px;}
.x3_c00173{left:28.650000px;}
.x9_c00173{left:34.050000px;}
.x4_c00173{left:39.150000px;}
.xb_c00173{left:48.150000px;}
.x8_c00173{left:92.850000px;}
.x7_c00173{left:96.900000px;}
.xa_c00173{left:98.100000px;}
.x2_c00173{left:99.150000px;}
.x5_c00173{left:100.500000px;}
.x1_c00173{left:104.550000px;}
.x6_c00173{left:122.550000px;}
.xc_c00173{left:186.000000px;}
.x11_c00173{left:232.876740px;}
.xd_c00173{left:301.650000px;}
.xe_c00173{left:313.800000px;}
.xf_c00173{left:314.850000px;}
.x10_c00173{left:484.200000px;}
@media print{
.v0_c00173{vertical-align:0.000000pt;}
.ls4_c00173{letter-spacing:0.000000pt;}
.ls0_c00173{letter-spacing:2.666667pt;}
.ls1_c00173{letter-spacing:5.333333pt;}
.ls2_c00173{letter-spacing:12.800000pt;}
.ls5_c00173{letter-spacing:18.666667pt;}
.ls3_c00173{letter-spacing:26.080000pt;}
.ws4_c00173{word-spacing:-31.413333pt;}
.ws0_c00173{word-spacing:-26.040000pt;}
.ws2_c00173{word-spacing:-16.053333pt;}
.ws5_c00173{word-spacing:-15.413333pt;}
.ws3_c00173{word-spacing:-14.893333pt;}
.ws1_c00173{word-spacing:-12.586667pt;}
.ws6_c00173{word-spacing:0.000000pt;}
._1a_c00173{margin-left:-16.640000pt;}
._12_c00173{margin-left:-13.973333pt;}
._d_c00173{margin-left:-13.066667pt;}
._27_c00173{margin-left:-11.826667pt;}
._26_c00173{margin-left:-10.133333pt;}
._e_c00173{margin-left:-9.120000pt;}
._20_c00173{margin-left:-7.533333pt;}
._1e_c00173{margin-left:-5.653333pt;}
._1d_c00173{margin-left:-4.546667pt;}
._15_c00173{margin-left:-3.146667pt;}
._17_c00173{margin-left:-2.240000pt;}
._18_c00173{margin-left:-0.906667pt;}
._7_c00173{width:1.666667pt;}
._b_c00173{width:2.626667pt;}
._0_c00173{width:3.560000pt;}
._1_c00173{width:4.626667pt;}
._a_c00173{width:6.360000pt;}
._9_c00173{width:7.360000pt;}
._14_c00173{width:8.586667pt;}
._1c_c00173{width:9.706667pt;}
._1f_c00173{width:10.933333pt;}
._3_c00173{width:12.000000pt;}
._4_c00173{width:13.813333pt;}
._5_c00173{width:14.880000pt;}
._c_c00173{width:16.706667pt;}
._16_c00173{width:17.920000pt;}
._24_c00173{width:19.333333pt;}
._6_c00173{width:20.800000pt;}
._2a_c00173{width:21.760000pt;}
._10_c00173{width:22.933333pt;}
._25_c00173{width:24.440000pt;}
._22_c00173{width:25.373333pt;}
._19_c00173{width:27.413333pt;}
._11_c00173{width:29.746667pt;}
._29_c00173{width:30.933333pt;}
._f_c00173{width:32.586667pt;}
._2b_c00173{width:92.813333pt;}
._28_c00173{width:99.960000pt;}
._23_c00173{width:106.440000pt;}
._2c_c00173{width:172.906667pt;}
._1b_c00173{width:186.186667pt;}
._21_c00173{width:209.240000pt;}
._13_c00173{width:218.720000pt;}
._2_c00173{width:291.680000pt;}
._8_c00173{width:374.960000pt;}
.fs0_c00173{font-size:40.000000pt;}
.fs3_c00173{font-size:42.666667pt;}
.fs1_c00173{font-size:53.333333pt;}
.fs2_c00173{font-size:61.333333pt;}
.y0_c00173{bottom:0.000000pt;}
.y58_c00173{bottom:2.760000pt;}
.y57_c00173{bottom:6.425206pt;}
.y56_c00173{bottom:33.360000pt;}
.y2b_c00173{bottom:40.293333pt;}
.y55_c00173{bottom:49.493333pt;}
.y2a_c00173{bottom:51.093333pt;}
.y54_c00173{bottom:66.293333pt;}
.y29_c00173{bottom:68.160000pt;}
.y53_c00173{bottom:82.160000pt;}
.y28_c00173{bottom:83.360000pt;}
.y52_c00173{bottom:97.893333pt;}
.y27_c00173{bottom:100.560000pt;}
.y51_c00173{bottom:114.560000pt;}
.y26_c00173{bottom:116.960000pt;}
.y50_c00173{bottom:130.826667pt;}
.y25_c00173{bottom:132.960000pt;}
.y4f_c00173{bottom:146.960000pt;}
.y24_c00173{bottom:148.560000pt;}
.y4e_c00173{bottom:162.960000pt;}
.y23_c00173{bottom:164.693333pt;}
.y4d_c00173{bottom:178.826667pt;}
.y22_c00173{bottom:180.560000pt;}
.y4c_c00173{bottom:195.360000pt;}
.y21_c00173{bottom:196.293333pt;}
.y4b_c00173{bottom:211.760000pt;}
.y20_c00173{bottom:212.426667pt;}
.y4a_c00173{bottom:226.826667pt;}
.y1f_c00173{bottom:228.960000pt;}
.y49_c00173{bottom:243.893333pt;}
.y1e_c00173{bottom:244.293333pt;}
.y48_c00173{bottom:259.493333pt;}
.y1d_c00173{bottom:261.093333pt;}
.y47_c00173{bottom:276.026667pt;}
.y1c_c00173{bottom:277.226667pt;}
.y46_c00173{bottom:291.626667pt;}
.y1b_c00173{bottom:293.493333pt;}
.y45_c00173{bottom:308.160000pt;}
.y1a_c00173{bottom:309.626667pt;}
.y44_c00173{bottom:323.760000pt;}
.y19_c00173{bottom:325.226667pt;}
.y43_c00173{bottom:339.893333pt;}
.y18_c00173{bottom:340.293333pt;}
.y42_c00173{bottom:356.426667pt;}
.y17_c00173{bottom:357.093333pt;}
.y41_c00173{bottom:371.493333pt;}
.y16_c00173{bottom:373.226667pt;}
.y40_c00173{bottom:388.160000pt;}
.y15_c00173{bottom:389.360000pt;}
.y3f_c00173{bottom:403.893333pt;}
.y14_c00173{bottom:404.960000pt;}
.y3e_c00173{bottom:420.293333pt;}
.y13_c00173{bottom:420.960000pt;}
.y3d_c00173{bottom:436.293333pt;}
.y12_c00173{bottom:436.826667pt;}
.y3c_c00173{bottom:452.426667pt;}
.y11_c00173{bottom:453.093333pt;}
.y3b_c00173{bottom:468.560000pt;}
.y10_c00173{bottom:469.226667pt;}
.y3a_c00173{bottom:483.893333pt;}
.yf_c00173{bottom:485.093333pt;}
.y39_c00173{bottom:500.693333pt;}
.ye_c00173{bottom:501.360000pt;}
.y38_c00173{bottom:516.560000pt;}
.yd_c00173{bottom:517.226667pt;}
.y37_c00173{bottom:532.826667pt;}
.yc_c00173{bottom:533.360000pt;}
.y36_c00173{bottom:548.693333pt;}
.yb_c00173{bottom:549.360000pt;}
.y35_c00173{bottom:564.560000pt;}
.ya_c00173{bottom:565.760000pt;}
.y34_c00173{bottom:580.293333pt;}
.y9_c00173{bottom:581.760000pt;}
.y33_c00173{bottom:596.693333pt;}
.y8_c00173{bottom:597.360000pt;}
.y32_c00173{bottom:613.226667pt;}
.y7_c00173{bottom:613.893333pt;}
.y31_c00173{bottom:629.360000pt;}
.y6_c00173{bottom:630.293333pt;}
.y30_c00173{bottom:645.360000pt;}
.y5_c00173{bottom:645.893333pt;}
.y2f_c00173{bottom:661.760000pt;}
.y4_c00173{bottom:662.160000pt;}
.y2e_c00173{bottom:677.760000pt;}
.y3_c00173{bottom:679.226667pt;}
.y2d_c00173{bottom:694.293333pt;}
.y2_c00173{bottom:695.760000pt;}
.y2c_c00173{bottom:711.893333pt;}
.y1_c00173{bottom:714.293333pt;}
.h6_c00173{height:11.733399pt;}
.h7_c00173{height:38.937500pt;}
.h3_c00173{height:41.920000pt;}
.h2_c00173{height:55.893333pt;}
.h4_c00173{height:57.813333pt;}
.h5_c00173{height:64.277333pt;}
.h0_c00173{height:743.066667pt;}
.h1_c00173{height:743.333333pt;}
.w2_c00173{width:93.222667pt;}
.w0_c00173{width:499.666667pt;}
.w1_c00173{width:500.000000pt;}
.x0_c00173{left:0.000000pt;}
.x3_c00173{left:25.466667pt;}
.x9_c00173{left:30.266667pt;}
.x4_c00173{left:34.800000pt;}
.xb_c00173{left:42.800000pt;}
.x8_c00173{left:82.533333pt;}
.x7_c00173{left:86.133333pt;}
.xa_c00173{left:87.200000pt;}
.x2_c00173{left:88.133333pt;}
.x5_c00173{left:89.333333pt;}
.x1_c00173{left:92.933333pt;}
.x6_c00173{left:108.933333pt;}
.xc_c00173{left:165.333333pt;}
.x11_c00173{left:207.001546pt;}
.xd_c00173{left:268.133333pt;}
.xe_c00173{left:278.933333pt;}
.xf_c00173{left:279.866667pt;}
.x10_c00173{left:430.400000pt;}
}





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

.ir_c00174:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00174{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00174;src:url('chunks/assets/font_9c278f86866d51db1461c33e.woff2')format("woff");}.ff1_c00174{font-family:ff1_c00174;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00174;src:url('chunks/assets/font_b5f967127c19999872d0ab6c.woff2')format("woff");}.ff2_c00174{font-family:ff2_c00174;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00174;src:url('chunks/assets/font_b2a3488df6f02b677c072863.woff2')format("woff");}.ff3_c00174{font-family:ff3_c00174;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00174;src:url('chunks/assets/font_68243ea510434a0a46522897.woff2')format("woff");}.ff4_c00174{font-family:ff4_c00174;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00174;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff5_c00174{font-family:ff5_c00174;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00174{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00174{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.v2_c00174{vertical-align:-79.800000px;}
.v0_c00174{vertical-align:0.000000px;}
.v1_c00174{vertical-align:97.200000px;}
.ls6_c00174{letter-spacing:0.000000px;}
.ls2_c00174{letter-spacing:2.625000px;}
.ls4_c00174{letter-spacing:2.640000px;}
.ls1_c00174{letter-spacing:3.000000px;}
.ls5_c00174{letter-spacing:21.000000px;}
.ls0_c00174{letter-spacing:33.438000px;}
.ls3_c00174{letter-spacing:55.260000px;}
.sc__c00174{text-shadow:none;}
.sc0_c00174{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00174{-webkit-text-stroke:0px transparent;}
.sc0_c00174{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00174{word-spacing:-18.060000px;}
.ws0_c00174{word-spacing:-14.160000px;}
.ws5_c00174{word-spacing:0.000000px;}
.ws3_c00174{word-spacing:0.120000px;}
.ws1_c00174{word-spacing:0.660000px;}
.ws2_c00174{word-spacing:3.240000px;}
._0_c00174{margin-left:-22.920000px;}
._1c_c00174{margin-left:-15.240000px;}
._29_c00174{margin-left:-13.020000px;}
._28_c00174{margin-left:-11.280000px;}
._16_c00174{margin-left:-10.200000px;}
._25_c00174{margin-left:-9.060000px;}
._24_c00174{margin-left:-7.800000px;}
._27_c00174{margin-left:-6.240000px;}
._15_c00174{margin-left:-4.920000px;}
._2_c00174{margin-left:-3.840000px;}
._c_c00174{margin-left:-2.340000px;}
._7_c00174{margin-left:-1.320000px;}
._6_c00174{width:1.020000px;}
._a_c00174{width:2.040000px;}
._5_c00174{width:3.660000px;}
._4_c00174{width:5.040000px;}
._e_c00174{width:6.840000px;}
._11_c00174{width:8.100000px;}
._9_c00174{width:9.480000px;}
._f_c00174{width:10.620000px;}
._b_c00174{width:11.940000px;}
._14_c00174{width:13.020000px;}
._8_c00174{width:14.460000px;}
._1d_c00174{width:16.320000px;}
._12_c00174{width:19.980000px;}
._d_c00174{width:21.000000px;}
._13_c00174{width:23.340000px;}
._23_c00174{width:25.560000px;}
._17_c00174{width:26.640000px;}
._18_c00174{width:27.900000px;}
._10_c00174{width:28.980000px;}
._2b_c00174{width:31.500000px;}
._26_c00174{width:33.420000px;}
._1b_c00174{width:34.500000px;}
._2a_c00174{width:35.760000px;}
._1a_c00174{width:38.400000px;}
._2c_c00174{width:42.300000px;}
._1_c00174{width:54.240000px;}
._2d_c00174{width:59.280000px;}
._3_c00174{width:61.740000px;}
._1f_c00174{width:69.180000px;}
._21_c00174{width:80.100000px;}
._20_c00174{width:115.080000px;}
._1e_c00174{width:150.420000px;}
._2e_c00174{width:226.560000px;}
._22_c00174{width:310.740000px;}
._19_c00174{width:506.580000px;}
.fc2_c00174{color:transparent;}
.fc1_c00174{color:rgb(128,128,128);}
.fc0_c00174{color:rgb(0,0,0);}
.fs3_c00174{font-size:48.000000px;}
.fs0_c00174{font-size:60.000000px;}
.fs2_c00174{font-size:75.000000px;}
.fs1_c00174{font-size:213.000000px;}
.y0_c00174{bottom:0.000000px;}
.y4f_c00174{bottom:3.105000px;}
.y4e_c00174{bottom:7.228355px;}
.y4d_c00174{bottom:38.085000px;}
.y4c_c00174{bottom:55.935000px;}
.y27_c00174{bottom:57.585000px;}
.y4b_c00174{bottom:74.235000px;}
.y26_c00174{bottom:75.585000px;}
.y4a_c00174{bottom:91.485000px;}
.y25_c00174{bottom:93.135000px;}
.y49_c00174{bottom:109.935000px;}
.y24_c00174{bottom:111.585000px;}
.y48_c00174{bottom:127.935000px;}
.y23_c00174{bottom:129.135000px;}
.y22_c00174{bottom:146.835000px;}
.y21_c00174{bottom:164.385000px;}
.y20_c00174{bottom:181.185000px;}
.y47_c00174{bottom:181.935000px;}
.y46_c00174{bottom:199.785000px;}
.y1f_c00174{bottom:201.135000px;}
.y45_c00174{bottom:217.335000px;}
.y1e_c00174{bottom:218.685000px;}
.y1d_c00174{bottom:235.485000px;}
.y44_c00174{bottom:235.785000px;}
.y1c_c00174{bottom:253.785000px;}
.y43_c00174{bottom:271.935000px;}
.y1b_c00174{bottom:272.385000px;}
.y42_c00174{bottom:289.935000px;}
.y1a_c00174{bottom:290.835000px;}
.y19_c00174{bottom:308.385000px;}
.y18_c00174{bottom:326.235000px;}
.y41_c00174{bottom:326.385000px;}
.y40_c00174{bottom:344.235000px;}
.y17_c00174{bottom:344.835000px;}
.y3f_c00174{bottom:361.785000px;}
.y16_c00174{bottom:362.085000px;}
.y15_c00174{bottom:379.635000px;}
.y3e_c00174{bottom:380.235000px;}
.y14_c00174{bottom:397.935000px;}
.y3d_c00174{bottom:398.235000px;}
.y13_c00174{bottom:416.385000px;}
.y3c_c00174{bottom:416.685000px;}
.y12_c00174{bottom:434.385000px;}
.y3b_c00174{bottom:434.685000px;}
.y11_c00174{bottom:452.535000px;}
.y3a_c00174{bottom:452.835000px;}
.y10_c00174{bottom:470.085000px;}
.yf_c00174{bottom:488.235000px;}
.y39_c00174{bottom:488.385000px;}
.ye_c00174{bottom:506.235000px;}
.y38_c00174{bottom:506.535000px;}
.yc_c00174{bottom:518.385000px;}
.y37_c00174{bottom:523.485000px;}
.yd_c00174{bottom:524.385000px;}
.y36_c00174{bottom:542.685000px;}
.y35_c00174{bottom:560.535000px;}
.yb_c00174{bottom:578.085000px;}
.y34_c00174{bottom:578.835000px;}
.ya_c00174{bottom:596.235000px;}
.y33_c00174{bottom:596.985000px;}
.y9_c00174{bottom:614.835000px;}
.y32_c00174{bottom:615.135000px;}
.y31_c00174{bottom:632.685000px;}
.y8_c00174{bottom:649.335000px;}
.y30_c00174{bottom:651.285000px;}
.y2f_c00174{bottom:669.135000px;}
.y7_c00174{bottom:685.785000px;}
.y2e_c00174{bottom:686.835000px;}
.y6_c00174{bottom:703.635000px;}
.y2d_c00174{bottom:705.585000px;}
.y5_c00174{bottom:722.235000px;}
.y2c_c00174{bottom:723.135000px;}
.y4_c00174{bottom:740.385000px;}
.y2b_c00174{bottom:741.735000px;}
.y3_c00174{bottom:758.235000px;}
.y2a_c00174{bottom:759.285000px;}
.y2_c00174{bottom:775.935000px;}
.y29_c00174{bottom:777.585000px;}
.y1_c00174{bottom:796.785000px;}
.y28_c00174{bottom:797.385000px;}
.h5_c00174{height:13.200074px;}
.h6_c00174{height:43.804688px;}
.h2_c00174{height:62.880000px;}
.h4_c00174{height:78.600000px;}
.h3_c00174{height:223.224000px;}
.h1_c00174{height:834.750000px;}
.h0_c00174{height:834.825000px;}
.w2_c00174{width:104.875500px;}
.w1_c00174{width:593.250000px;}
.w0_c00174{width:593.475000px;}
.x0_c00174{left:0.000000px;}
.xc_c00174{left:17.250000px;}
.x8_c00174{left:21.900000px;}
.x7_c00174{left:22.950000px;}
.xd_c00174{left:75.600000px;}
.xb_c00174{left:77.400000px;}
.x9_c00174{left:78.750000px;}
.x2_c00174{left:80.400000px;}
.x3_c00174{left:82.050000px;}
.x6_c00174{left:95.250000px;}
.xa_c00174{left:102.000000px;}
.x5_c00174{left:124.200000px;}
.x4_c00174{left:152.850000px;}
.x1_c00174{left:172.200000px;}
.x16_c00174{left:248.551758px;}
.x14_c00174{left:289.950000px;}
.xe_c00174{left:291.600000px;}
.x13_c00174{left:292.950000px;}
.x12_c00174{left:294.000000px;}
.x11_c00174{left:295.350000px;}
.x10_c00174{left:296.700000px;}
.xf_c00174{left:298.050000px;}
.x15_c00174{left:382.500000px;}
@media print{
.v2_c00174{vertical-align:-70.933333pt;}
.v0_c00174{vertical-align:0.000000pt;}
.v1_c00174{vertical-align:86.400000pt;}
.ls6_c00174{letter-spacing:0.000000pt;}
.ls2_c00174{letter-spacing:2.333333pt;}
.ls4_c00174{letter-spacing:2.346667pt;}
.ls1_c00174{letter-spacing:2.666667pt;}
.ls5_c00174{letter-spacing:18.666667pt;}
.ls0_c00174{letter-spacing:29.722667pt;}
.ls3_c00174{letter-spacing:49.120000pt;}
.ws4_c00174{word-spacing:-16.053333pt;}
.ws0_c00174{word-spacing:-12.586667pt;}
.ws5_c00174{word-spacing:0.000000pt;}
.ws3_c00174{word-spacing:0.106667pt;}
.ws1_c00174{word-spacing:0.586667pt;}
.ws2_c00174{word-spacing:2.880000pt;}
._0_c00174{margin-left:-20.373333pt;}
._1c_c00174{margin-left:-13.546667pt;}
._29_c00174{margin-left:-11.573333pt;}
._28_c00174{margin-left:-10.026667pt;}
._16_c00174{margin-left:-9.066667pt;}
._25_c00174{margin-left:-8.053333pt;}
._24_c00174{margin-left:-6.933333pt;}
._27_c00174{margin-left:-5.546667pt;}
._15_c00174{margin-left:-4.373333pt;}
._2_c00174{margin-left:-3.413333pt;}
._c_c00174{margin-left:-2.080000pt;}
._7_c00174{margin-left:-1.173333pt;}
._6_c00174{width:0.906667pt;}
._a_c00174{width:1.813333pt;}
._5_c00174{width:3.253333pt;}
._4_c00174{width:4.480000pt;}
._e_c00174{width:6.080000pt;}
._11_c00174{width:7.200000pt;}
._9_c00174{width:8.426667pt;}
._f_c00174{width:9.440000pt;}
._b_c00174{width:10.613333pt;}
._14_c00174{width:11.573333pt;}
._8_c00174{width:12.853333pt;}
._1d_c00174{width:14.506667pt;}
._12_c00174{width:17.760000pt;}
._d_c00174{width:18.666667pt;}
._13_c00174{width:20.746667pt;}
._23_c00174{width:22.720000pt;}
._17_c00174{width:23.680000pt;}
._18_c00174{width:24.800000pt;}
._10_c00174{width:25.760000pt;}
._2b_c00174{width:28.000000pt;}
._26_c00174{width:29.706667pt;}
._1b_c00174{width:30.666667pt;}
._2a_c00174{width:31.786667pt;}
._1a_c00174{width:34.133333pt;}
._2c_c00174{width:37.600000pt;}
._1_c00174{width:48.213333pt;}
._2d_c00174{width:52.693333pt;}
._3_c00174{width:54.880000pt;}
._1f_c00174{width:61.493333pt;}
._21_c00174{width:71.200000pt;}
._20_c00174{width:102.293333pt;}
._1e_c00174{width:133.706667pt;}
._2e_c00174{width:201.386667pt;}
._22_c00174{width:276.213333pt;}
._19_c00174{width:450.293333pt;}
.fs3_c00174{font-size:42.666667pt;}
.fs0_c00174{font-size:53.333333pt;}
.fs2_c00174{font-size:66.666667pt;}
.fs1_c00174{font-size:189.333333pt;}
.y0_c00174{bottom:0.000000pt;}
.y4f_c00174{bottom:2.760000pt;}
.y4e_c00174{bottom:6.425204pt;}
.y4d_c00174{bottom:33.853333pt;}
.y4c_c00174{bottom:49.720000pt;}
.y27_c00174{bottom:51.186667pt;}
.y4b_c00174{bottom:65.986667pt;}
.y26_c00174{bottom:67.186667pt;}
.y4a_c00174{bottom:81.320000pt;}
.y25_c00174{bottom:82.786667pt;}
.y49_c00174{bottom:97.720000pt;}
.y24_c00174{bottom:99.186667pt;}
.y48_c00174{bottom:113.720000pt;}
.y23_c00174{bottom:114.786667pt;}
.y22_c00174{bottom:130.520000pt;}
.y21_c00174{bottom:146.120000pt;}
.y20_c00174{bottom:161.053333pt;}
.y47_c00174{bottom:161.720000pt;}
.y46_c00174{bottom:177.586667pt;}
.y1f_c00174{bottom:178.786667pt;}
.y45_c00174{bottom:193.186667pt;}
.y1e_c00174{bottom:194.386667pt;}
.y1d_c00174{bottom:209.320000pt;}
.y44_c00174{bottom:209.586667pt;}
.y1c_c00174{bottom:225.586667pt;}
.y43_c00174{bottom:241.720000pt;}
.y1b_c00174{bottom:242.120000pt;}
.y42_c00174{bottom:257.720000pt;}
.y1a_c00174{bottom:258.520000pt;}
.y19_c00174{bottom:274.120000pt;}
.y18_c00174{bottom:289.986667pt;}
.y41_c00174{bottom:290.120000pt;}
.y40_c00174{bottom:305.986667pt;}
.y17_c00174{bottom:306.520000pt;}
.y3f_c00174{bottom:321.586667pt;}
.y16_c00174{bottom:321.853333pt;}
.y15_c00174{bottom:337.453333pt;}
.y3e_c00174{bottom:337.986667pt;}
.y14_c00174{bottom:353.720000pt;}
.y3d_c00174{bottom:353.986667pt;}
.y13_c00174{bottom:370.120000pt;}
.y3c_c00174{bottom:370.386667pt;}
.y12_c00174{bottom:386.120000pt;}
.y3b_c00174{bottom:386.386667pt;}
.y11_c00174{bottom:402.253333pt;}
.y3a_c00174{bottom:402.520000pt;}
.y10_c00174{bottom:417.853333pt;}
.yf_c00174{bottom:433.986667pt;}
.y39_c00174{bottom:434.120000pt;}
.ye_c00174{bottom:449.986667pt;}
.y38_c00174{bottom:450.253333pt;}
.yc_c00174{bottom:460.786667pt;}
.y37_c00174{bottom:465.320000pt;}
.yd_c00174{bottom:466.120000pt;}
.y36_c00174{bottom:482.386667pt;}
.y35_c00174{bottom:498.253333pt;}
.yb_c00174{bottom:513.853333pt;}
.y34_c00174{bottom:514.520000pt;}
.ya_c00174{bottom:529.986667pt;}
.y33_c00174{bottom:530.653333pt;}
.y9_c00174{bottom:546.520000pt;}
.y32_c00174{bottom:546.786667pt;}
.y31_c00174{bottom:562.386667pt;}
.y8_c00174{bottom:577.186667pt;}
.y30_c00174{bottom:578.920000pt;}
.y2f_c00174{bottom:594.786667pt;}
.y7_c00174{bottom:609.586667pt;}
.y2e_c00174{bottom:610.520000pt;}
.y6_c00174{bottom:625.453333pt;}
.y2d_c00174{bottom:627.186667pt;}
.y5_c00174{bottom:641.986667pt;}
.y2c_c00174{bottom:642.786667pt;}
.y4_c00174{bottom:658.120000pt;}
.y2b_c00174{bottom:659.320000pt;}
.y3_c00174{bottom:673.986667pt;}
.y2a_c00174{bottom:674.920000pt;}
.y2_c00174{bottom:689.720000pt;}
.y29_c00174{bottom:691.186667pt;}
.y1_c00174{bottom:708.253333pt;}
.y28_c00174{bottom:708.786667pt;}
.h5_c00174{height:11.733399pt;}
.h6_c00174{height:38.937500pt;}
.h2_c00174{height:55.893333pt;}
.h4_c00174{height:69.866667pt;}
.h3_c00174{height:198.421333pt;}
.h1_c00174{height:742.000000pt;}
.h0_c00174{height:742.066667pt;}
.w2_c00174{width:93.222667pt;}
.w1_c00174{width:527.333333pt;}
.w0_c00174{width:527.533333pt;}
.x0_c00174{left:0.000000pt;}
.xc_c00174{left:15.333333pt;}
.x8_c00174{left:19.466667pt;}
.x7_c00174{left:20.400000pt;}
.xd_c00174{left:67.200000pt;}
.xb_c00174{left:68.800000pt;}
.x9_c00174{left:70.000000pt;}
.x2_c00174{left:71.466667pt;}
.x3_c00174{left:72.933333pt;}
.x6_c00174{left:84.666667pt;}
.xa_c00174{left:90.666667pt;}
.x5_c00174{left:110.400000pt;}
.x4_c00174{left:135.866667pt;}
.x1_c00174{left:153.066667pt;}
.x16_c00174{left:220.934896pt;}
.x14_c00174{left:257.733333pt;}
.xe_c00174{left:259.200000pt;}
.x13_c00174{left:260.400000pt;}
.x12_c00174{left:261.333333pt;}
.x11_c00174{left:262.533333pt;}
.x10_c00174{left:263.733333pt;}
.xf_c00174{left:264.933333pt;}
.x15_c00174{left:340.000000pt;}
}





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

.ir_c00175:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00175{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00175;src:url('chunks/assets/font_efd49b62d7573c714cdf9e7f.woff2')format("woff");}.ff1_c00175{font-family:ff1_c00175;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00175;src:url('chunks/assets/font_d3c1b0650655f3256286463a.woff2')format("woff");}.ff2_c00175{font-family:ff2_c00175;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00175;src:url('chunks/assets/font_859a5d3e720913dfb2cdcbaf.woff2')format("woff");}.ff3_c00175{font-family:ff3_c00175;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00175;src:url('chunks/assets/font_8b6143c8ee94549682009431.woff2')format("woff");}.ff4_c00175{font-family:ff4_c00175;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00175;src:url('chunks/assets/font_f3010c34494e13ec887d432a.woff2')format("woff");}.ff5_c00175{font-family:ff5_c00175;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00175;src:url('chunks/assets/font_981941320b1358c72e52e488.woff2')format("woff");}.ff6_c00175{font-family:ff6_c00175;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00175;src:url('chunks/assets/font_c645fe5004e13d3b687cb107.woff2')format("woff");}.ff7_c00175{font-family:ff7_c00175;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00175;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff8_c00175{font-family:ff8_c00175;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00175{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00175{vertical-align:0.000000px;}
.ls9_c00175{letter-spacing:0.000000px;}
.ls2_c00175{letter-spacing:1.152000px;}
.ls5_c00175{letter-spacing:3.000000px;}
.lsa_c00175{letter-spacing:6.000000px;}
.ls7_c00175{letter-spacing:6.093000px;}
.lsb_c00175{letter-spacing:9.000000px;}
.ls3_c00175{letter-spacing:10.293000px;}
.ls8_c00175{letter-spacing:11.493000px;}
.ls6_c00175{letter-spacing:20.493000px;}
.ls4_c00175{letter-spacing:26.481000px;}
.ls0_c00175{letter-spacing:48.081000px;}
.ls1_c00175{letter-spacing:63.693000px;}
.sc__c00175{text-shadow:none;}
.sc0_c00175{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00175{-webkit-text-stroke:0px transparent;}
.sc0_c00175{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00175{word-spacing:-22.452000px;}
.ws2_c00175{word-spacing:-18.060000px;}
.ws0_c00175{word-spacing:-16.284000px;}
.ws7_c00175{word-spacing:-14.160000px;}
.ws1_c00175{word-spacing:-13.452000px;}
.ws4_c00175{word-spacing:-3.240000px;}
.ws6_c00175{word-spacing:-0.045000px;}
.ws5_c00175{word-spacing:-0.036000px;}
.ws8_c00175{word-spacing:0.000000px;}
._1d_c00175{margin-left:-18.012000px;}
._28_c00175{margin-left:-15.882000px;}
._24_c00175{margin-left:-14.778000px;}
._1c_c00175{margin-left:-12.798000px;}
._18_c00175{margin-left:-10.983000px;}
._15_c00175{margin-left:-9.522000px;}
._14_c00175{margin-left:-7.527000px;}
._c_c00175{margin-left:-5.865000px;}
._a_c00175{margin-left:-4.830000px;}
._b_c00175{margin-left:-3.519000px;}
._10_c00175{margin-left:-2.160000px;}
._f_c00175{margin-left:-1.086000px;}
._9_c00175{width:1.986000px;}
._d_c00175{width:3.585000px;}
._8_c00175{width:4.602000px;}
._0_c00175{width:6.420000px;}
._1_c00175{width:8.280000px;}
._16_c00175{width:9.330000px;}
._7_c00175{width:10.359000px;}
._e_c00175{width:12.336000px;}
._26_c00175{width:13.494000px;}
._3_c00175{width:14.700000px;}
._17_c00175{width:15.729000px;}
._4_c00175{width:16.740000px;}
._20_c00175{width:17.943000px;}
._12_c00175{width:19.416000px;}
._11_c00175{width:20.583000px;}
._6_c00175{width:22.860000px;}
._5_c00175{width:25.080000px;}
._21_c00175{width:27.111000px;}
._23_c00175{width:28.998000px;}
._1e_c00175{width:30.786000px;}
._1a_c00175{width:33.942000px;}
._19_c00175{width:38.280000px;}
._27_c00175{width:39.789000px;}
._1f_c00175{width:54.468000px;}
._2a_c00175{width:70.188000px;}
._25_c00175{width:79.644000px;}
._29_c00175{width:103.551000px;}
._1b_c00175{width:128.679000px;}
._13_c00175{width:186.030000px;}
._22_c00175{width:282.441000px;}
._2_c00175{width:307.920000px;}
.fc2_c00175{color:transparent;}
.fc1_c00175{color:rgb(128,128,128);}
.fc0_c00175{color:rgb(0,0,0);}
.fs4_c00175{font-size:36.000000px;}
.fs3_c00175{font-size:45.000000px;}
.fs5_c00175{font-size:48.000000px;}
.fs1_c00175{font-size:57.000000px;}
.fs0_c00175{font-size:60.000000px;}
.fs2_c00175{font-size:69.000000px;}
.y0_c00175{bottom:0.000000px;}
.y58_c00175{bottom:3.105000px;}
.y57_c00175{bottom:7.228355px;}
.y56_c00175{bottom:38.835000px;}
.y2b_c00175{bottom:44.085000px;}
.y55_c00175{bottom:60.285000px;}
.y2a_c00175{bottom:62.385000px;}
.y54_c00175{bottom:79.185000px;}
.y29_c00175{bottom:80.985000px;}
.y53_c00175{bottom:96.135000px;}
.y28_c00175{bottom:97.785000px;}
.y52_c00175{bottom:113.985000px;}
.y27_c00175{bottom:117.135000px;}
.y51_c00175{bottom:131.535000px;}
.y26_c00175{bottom:135.285000px;}
.y50_c00175{bottom:149.535000px;}
.y25_c00175{bottom:153.585000px;}
.y4f_c00175{bottom:167.985000px;}
.y24_c00175{bottom:171.435000px;}
.y4e_c00175{bottom:184.635000px;}
.y23_c00175{bottom:189.285000px;}
.y4d_c00175{bottom:203.835000px;}
.y22_c00175{bottom:207.585000px;}
.y4c_c00175{bottom:221.685000px;}
.y21_c00175{bottom:226.035000px;}
.y4b_c00175{bottom:238.635000px;}
.y20_c00175{bottom:242.535000px;}
.y4a_c00175{bottom:258.285000px;}
.y1f_c00175{bottom:260.835000px;}
.y49_c00175{bottom:276.285000px;}
.y1e_c00175{bottom:278.985000px;}
.y48_c00175{bottom:294.285000px;}
.y1d_c00175{bottom:296.535000px;}
.y47_c00175{bottom:312.435000px;}
.y1c_c00175{bottom:314.535000px;}
.y46_c00175{bottom:330.735000px;}
.y1b_c00175{bottom:333.435000px;}
.y45_c00175{bottom:348.285000px;}
.y1a_c00175{bottom:351.585000px;}
.y44_c00175{bottom:365.085000px;}
.y19_c00175{bottom:369.885000px;}
.y43_c00175{bottom:384.735000px;}
.y18_c00175{bottom:388.035000px;}
.y42_c00175{bottom:402.885000px;}
.y17_c00175{bottom:405.885000px;}
.y41_c00175{bottom:420.885000px;}
.y16_c00175{bottom:424.785000px;}
.y40_c00175{bottom:439.785000px;}
.y15_c00175{bottom:442.335000px;}
.y3f_c00175{bottom:457.185000px;}
.y14_c00175{bottom:460.335000px;}
.y3e_c00175{bottom:475.185000px;}
.y13_c00175{bottom:479.235000px;}
.y3d_c00175{bottom:493.035000px;}
.y12_c00175{bottom:497.085000px;}
.y3c_c00175{bottom:511.635000px;}
.y11_c00175{bottom:515.385000px;}
.y3b_c00175{bottom:529.185000px;}
.y10_c00175{bottom:534.585000px;}
.y3a_c00175{bottom:547.335000px;}
.yf_c00175{bottom:552.735000px;}
.y39_c00175{bottom:566.535000px;}
.ye_c00175{bottom:569.685000px;}
.y38_c00175{bottom:584.835000px;}
.yd_c00175{bottom:587.685000px;}
.y37_c00175{bottom:603.435000px;}
.yc_c00175{bottom:605.685000px;}
.y36_c00175{bottom:621.885000px;}
.yb_c00175{bottom:623.685000px;}
.y35_c00175{bottom:639.885000px;}
.ya_c00175{bottom:641.535000px;}
.y34_c00175{bottom:658.485000px;}
.y9_c00175{bottom:659.385000px;}
.y33_c00175{bottom:675.885000px;}
.y8_c00175{bottom:677.985000px;}
.y32_c00175{bottom:693.885000px;}
.y7_c00175{bottom:696.285000px;}
.y31_c00175{bottom:713.085000px;}
.y6_c00175{bottom:714.435000px;}
.y30_c00175{bottom:729.885000px;}
.y5_c00175{bottom:732.735000px;}
.y2f_c00175{bottom:748.785000px;}
.y4_c00175{bottom:750.885000px;}
.y2e_c00175{bottom:767.835000px;}
.y3_c00175{bottom:769.035000px;}
.y2d_c00175{bottom:785.685000px;}
.y2_c00175{bottom:786.585000px;}
.y2c_c00175{bottom:805.485000px;}
.y1_c00175{bottom:808.335000px;}
.h6_c00175{height:13.200074px;}
.h7_c00175{height:43.804688px;}
.h3_c00175{height:59.736000px;}
.h2_c00175{height:62.880000px;}
.h5_c00175{height:64.020000px;}
.h4_c00175{height:72.312000px;}
.h1_c00175{height:841.500000px;}
.h0_c00175{height:841.575000px;}
.w2_c00175{width:104.875500px;}
.w0_c00175{width:565.950000px;}
.w1_c00175{width:566.250000px;}
.x0_c00175{left:0.000000px;}
.x4_c00175{left:33.750000px;}
.x9_c00175{left:35.100000px;}
.x5_c00175{left:36.750000px;}
.x8_c00175{left:75.000000px;}
.xa_c00175{left:83.100000px;}
.x7_c00175{left:94.500000px;}
.x6_c00175{left:95.550000px;}
.x3_c00175{left:96.900000px;}
.x2_c00175{left:98.250000px;}
.x1_c00175{left:102.900000px;}
.xb_c00175{left:103.950000px;}
.x12_c00175{left:234.789230px;}
.xf_c00175{left:314.250000px;}
.xe_c00175{left:315.300000px;}
.xd_c00175{left:316.650000px;}
.x10_c00175{left:318.000000px;}
.xc_c00175{left:324.300000px;}
.x11_c00175{left:480.600000px;}
@media print{
.v0_c00175{vertical-align:0.000000pt;}
.ls9_c00175{letter-spacing:0.000000pt;}
.ls2_c00175{letter-spacing:1.024000pt;}
.ls5_c00175{letter-spacing:2.666667pt;}
.lsa_c00175{letter-spacing:5.333333pt;}
.ls7_c00175{letter-spacing:5.416000pt;}
.lsb_c00175{letter-spacing:8.000000pt;}
.ls3_c00175{letter-spacing:9.149333pt;}
.ls8_c00175{letter-spacing:10.216000pt;}
.ls6_c00175{letter-spacing:18.216000pt;}
.ls4_c00175{letter-spacing:23.538667pt;}
.ls0_c00175{letter-spacing:42.738667pt;}
.ls1_c00175{letter-spacing:56.616000pt;}
.ws3_c00175{word-spacing:-19.957333pt;}
.ws2_c00175{word-spacing:-16.053333pt;}
.ws0_c00175{word-spacing:-14.474667pt;}
.ws7_c00175{word-spacing:-12.586667pt;}
.ws1_c00175{word-spacing:-11.957333pt;}
.ws4_c00175{word-spacing:-2.880000pt;}
.ws6_c00175{word-spacing:-0.040000pt;}
.ws5_c00175{word-spacing:-0.032000pt;}
.ws8_c00175{word-spacing:0.000000pt;}
._1d_c00175{margin-left:-16.010667pt;}
._28_c00175{margin-left:-14.117333pt;}
._24_c00175{margin-left:-13.136000pt;}
._1c_c00175{margin-left:-11.376000pt;}
._18_c00175{margin-left:-9.762667pt;}
._15_c00175{margin-left:-8.464000pt;}
._14_c00175{margin-left:-6.690667pt;}
._c_c00175{margin-left:-5.213333pt;}
._a_c00175{margin-left:-4.293333pt;}
._b_c00175{margin-left:-3.128000pt;}
._10_c00175{margin-left:-1.920000pt;}
._f_c00175{margin-left:-0.965333pt;}
._9_c00175{width:1.765333pt;}
._d_c00175{width:3.186667pt;}
._8_c00175{width:4.090667pt;}
._0_c00175{width:5.706667pt;}
._1_c00175{width:7.360000pt;}
._16_c00175{width:8.293333pt;}
._7_c00175{width:9.208000pt;}
._e_c00175{width:10.965333pt;}
._26_c00175{width:11.994667pt;}
._3_c00175{width:13.066667pt;}
._17_c00175{width:13.981333pt;}
._4_c00175{width:14.880000pt;}
._20_c00175{width:15.949333pt;}
._12_c00175{width:17.258667pt;}
._11_c00175{width:18.296000pt;}
._6_c00175{width:20.320000pt;}
._5_c00175{width:22.293333pt;}
._21_c00175{width:24.098667pt;}
._23_c00175{width:25.776000pt;}
._1e_c00175{width:27.365333pt;}
._1a_c00175{width:30.170667pt;}
._19_c00175{width:34.026667pt;}
._27_c00175{width:35.368000pt;}
._1f_c00175{width:48.416000pt;}
._2a_c00175{width:62.389333pt;}
._25_c00175{width:70.794667pt;}
._29_c00175{width:92.045333pt;}
._1b_c00175{width:114.381333pt;}
._13_c00175{width:165.360000pt;}
._22_c00175{width:251.058667pt;}
._2_c00175{width:273.706667pt;}
.fs4_c00175{font-size:32.000000pt;}
.fs3_c00175{font-size:40.000000pt;}
.fs5_c00175{font-size:42.666667pt;}
.fs1_c00175{font-size:50.666667pt;}
.fs0_c00175{font-size:53.333333pt;}
.fs2_c00175{font-size:61.333333pt;}
.y0_c00175{bottom:0.000000pt;}
.y58_c00175{bottom:2.760000pt;}
.y57_c00175{bottom:6.425204pt;}
.y56_c00175{bottom:34.520000pt;}
.y2b_c00175{bottom:39.186667pt;}
.y55_c00175{bottom:53.586667pt;}
.y2a_c00175{bottom:55.453333pt;}
.y54_c00175{bottom:70.386667pt;}
.y29_c00175{bottom:71.986667pt;}
.y53_c00175{bottom:85.453333pt;}
.y28_c00175{bottom:86.920000pt;}
.y52_c00175{bottom:101.320000pt;}
.y27_c00175{bottom:104.120000pt;}
.y51_c00175{bottom:116.920000pt;}
.y26_c00175{bottom:120.253333pt;}
.y50_c00175{bottom:132.920000pt;}
.y25_c00175{bottom:136.520000pt;}
.y4f_c00175{bottom:149.320000pt;}
.y24_c00175{bottom:152.386667pt;}
.y4e_c00175{bottom:164.120000pt;}
.y23_c00175{bottom:168.253333pt;}
.y4d_c00175{bottom:181.186667pt;}
.y22_c00175{bottom:184.520000pt;}
.y4c_c00175{bottom:197.053333pt;}
.y21_c00175{bottom:200.920000pt;}
.y4b_c00175{bottom:212.120000pt;}
.y20_c00175{bottom:215.586667pt;}
.y4a_c00175{bottom:229.586667pt;}
.y1f_c00175{bottom:231.853333pt;}
.y49_c00175{bottom:245.586667pt;}
.y1e_c00175{bottom:247.986667pt;}
.y48_c00175{bottom:261.586667pt;}
.y1d_c00175{bottom:263.586667pt;}
.y47_c00175{bottom:277.720000pt;}
.y1c_c00175{bottom:279.586667pt;}
.y46_c00175{bottom:293.986667pt;}
.y1b_c00175{bottom:296.386667pt;}
.y45_c00175{bottom:309.586667pt;}
.y1a_c00175{bottom:312.520000pt;}
.y44_c00175{bottom:324.520000pt;}
.y19_c00175{bottom:328.786667pt;}
.y43_c00175{bottom:341.986667pt;}
.y18_c00175{bottom:344.920000pt;}
.y42_c00175{bottom:358.120000pt;}
.y17_c00175{bottom:360.786667pt;}
.y41_c00175{bottom:374.120000pt;}
.y16_c00175{bottom:377.586667pt;}
.y40_c00175{bottom:390.920000pt;}
.y15_c00175{bottom:393.186667pt;}
.y3f_c00175{bottom:406.386667pt;}
.y14_c00175{bottom:409.186667pt;}
.y3e_c00175{bottom:422.386667pt;}
.y13_c00175{bottom:425.986667pt;}
.y3d_c00175{bottom:438.253333pt;}
.y12_c00175{bottom:441.853333pt;}
.y3c_c00175{bottom:454.786667pt;}
.y11_c00175{bottom:458.120000pt;}
.y3b_c00175{bottom:470.386667pt;}
.y10_c00175{bottom:475.186667pt;}
.y3a_c00175{bottom:486.520000pt;}
.yf_c00175{bottom:491.320000pt;}
.y39_c00175{bottom:503.586667pt;}
.ye_c00175{bottom:506.386667pt;}
.y38_c00175{bottom:519.853333pt;}
.yd_c00175{bottom:522.386667pt;}
.y37_c00175{bottom:536.386667pt;}
.yc_c00175{bottom:538.386667pt;}
.y36_c00175{bottom:552.786667pt;}
.yb_c00175{bottom:554.386667pt;}
.y35_c00175{bottom:568.786667pt;}
.ya_c00175{bottom:570.253333pt;}
.y34_c00175{bottom:585.320000pt;}
.y9_c00175{bottom:586.120000pt;}
.y33_c00175{bottom:600.786667pt;}
.y8_c00175{bottom:602.653333pt;}
.y32_c00175{bottom:616.786667pt;}
.y7_c00175{bottom:618.920000pt;}
.y31_c00175{bottom:633.853333pt;}
.y6_c00175{bottom:635.053333pt;}
.y30_c00175{bottom:648.786667pt;}
.y5_c00175{bottom:651.320000pt;}
.y2f_c00175{bottom:665.586667pt;}
.y4_c00175{bottom:667.453333pt;}
.y2e_c00175{bottom:682.520000pt;}
.y3_c00175{bottom:683.586667pt;}
.y2d_c00175{bottom:698.386667pt;}
.y2_c00175{bottom:699.186667pt;}
.y2c_c00175{bottom:715.986667pt;}
.y1_c00175{bottom:718.520000pt;}
.h6_c00175{height:11.733399pt;}
.h7_c00175{height:38.937500pt;}
.h3_c00175{height:53.098667pt;}
.h2_c00175{height:55.893333pt;}
.h5_c00175{height:56.906667pt;}
.h4_c00175{height:64.277333pt;}
.h1_c00175{height:748.000000pt;}
.h0_c00175{height:748.066667pt;}
.w2_c00175{width:93.222667pt;}
.w0_c00175{width:503.066667pt;}
.w1_c00175{width:503.333333pt;}
.x0_c00175{left:0.000000pt;}
.x4_c00175{left:30.000000pt;}
.x9_c00175{left:31.200000pt;}
.x5_c00175{left:32.666667pt;}
.x8_c00175{left:66.666667pt;}
.xa_c00175{left:73.866667pt;}
.x7_c00175{left:84.000000pt;}
.x6_c00175{left:84.933333pt;}
.x3_c00175{left:86.133333pt;}
.x2_c00175{left:87.333333pt;}
.x1_c00175{left:91.466667pt;}
.xb_c00175{left:92.400000pt;}
.x12_c00175{left:208.701538pt;}
.xf_c00175{left:279.333333pt;}
.xe_c00175{left:280.266667pt;}
.xd_c00175{left:281.466667pt;}
.x10_c00175{left:282.666667pt;}
.xc_c00175{left:288.266667pt;}
.x11_c00175{left:427.200000pt;}
}





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

.ir_c00176:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00176{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00176;src:url('chunks/assets/font_a3487aa3a79294ffe1fb17bd.woff2')format("woff");}.ff1_c00176{font-family:ff1_c00176;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00176;src:url('chunks/assets/font_ee4ed62cf24805552fc97f45.woff2')format("woff");}.ff2_c00176{font-family:ff2_c00176;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00176;src:url('chunks/assets/font_b2dc36f019fae769f615a32f.woff2')format("woff");}.ff3_c00176{font-family:ff3_c00176;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00176;src:url('chunks/assets/font_667703eebcf3ec3c0e647192.woff2')format("woff");}.ff4_c00176{font-family:ff4_c00176;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00176;src:url('chunks/assets/font_ff484171d4f1349f62c5dc27.woff2')format("woff");}.ff5_c00176{font-family:ff5_c00176;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00176;src:url('chunks/assets/font_7c7b114d6d8510036cb24ad0.woff2')format("woff");}.ff6_c00176{font-family:ff6_c00176;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00176;src:url('chunks/assets/font_758ad60c5a8f2e2bacce8393.woff2')format("woff");}.ff7_c00176{font-family:ff7_c00176;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00176;src:url('chunks/assets/font_55eb9db8683fc23c726f566e.woff2')format("woff");}.ff8_c00176{font-family:ff8_c00176;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00176;src:url('chunks/assets/font_196ec518cc688c00eca9dd5e.woff2')format("woff");}.ff9_c00176{font-family:ff9_c00176;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00176;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ffa_c00176{font-family:ffa_c00176;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00176{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00176{vertical-align:0.000000px;}
.v1_c00176{vertical-align:69.000000px;}
.ls7_c00176{letter-spacing:0.000000px;}
.ls2_c00176{letter-spacing:1.200000px;}
.ls0_c00176{letter-spacing:3.000000px;}
.ls4_c00176{letter-spacing:3.405000px;}
.ls6_c00176{letter-spacing:7.260000px;}
.ls3_c00176{letter-spacing:17.280000px;}
.ls5_c00176{letter-spacing:25.260000px;}
.ls1_c00176{letter-spacing:83.628000px;}
.sc__c00176{text-shadow:none;}
.sc0_c00176{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00176{-webkit-text-stroke:0px transparent;}
.sc0_c00176{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00176{word-spacing:-19.008000px;}
.ws1_c00176{word-spacing:-17.340000px;}
.ws0_c00176{word-spacing:-14.160000px;}
.ws3_c00176{word-spacing:0.000000px;}
._21_c00176{margin-left:-18.540000px;}
._22_c00176{margin-left:-15.180000px;}
._30_c00176{margin-left:-12.900000px;}
._1c_c00176{margin-left:-10.200000px;}
._1d_c00176{margin-left:-8.700000px;}
._1e_c00176{margin-left:-7.020000px;}
._18_c00176{margin-left:-5.880000px;}
._a_c00176{margin-left:-4.560000px;}
._d_c00176{margin-left:-3.120000px;}
._9_c00176{margin-left:-1.920000px;}
._8_c00176{width:1.260000px;}
._3_c00176{width:2.520000px;}
._1_c00176{width:4.140000px;}
._2_c00176{width:5.160000px;}
._4_c00176{width:6.300000px;}
._0_c00176{width:7.500000px;}
._2b_c00176{width:8.520000px;}
._5_c00176{width:9.540000px;}
._2f_c00176{width:10.800000px;}
._f_c00176{width:11.880000px;}
._6_c00176{width:12.900000px;}
._12_c00176{width:14.100000px;}
._7_c00176{width:15.240000px;}
._20_c00176{width:16.380000px;}
._27_c00176{width:17.460000px;}
._16_c00176{width:18.840000px;}
._1a_c00176{width:20.640000px;}
._17_c00176{width:22.500000px;}
._2e_c00176{width:23.820000px;}
._1f_c00176{width:24.840000px;}
._1b_c00176{width:25.920000px;}
._14_c00176{width:27.000000px;}
._15_c00176{width:28.800000px;}
._11_c00176{width:30.600000px;}
._26_c00176{width:32.700000px;}
._2d_c00176{width:33.960000px;}
._2c_c00176{width:36.780000px;}
._b_c00176{width:38.520000px;}
._19_c00176{width:41.040000px;}
._c_c00176{width:45.240000px;}
._29_c00176{width:48.240000px;}
._23_c00176{width:50.100000px;}
._2a_c00176{width:54.180000px;}
._13_c00176{width:55.380000px;}
._24_c00176{width:57.780000px;}
._10_c00176{width:115.380000px;}
._e_c00176{width:139.800000px;}
._25_c00176{width:172.320000px;}
._28_c00176{width:187.020000px;}
._31_c00176{width:233.400000px;}
.fc2_c00176{color:transparent;}
.fc1_c00176{color:rgb(128,128,128);}
.fc0_c00176{color:rgb(0,0,0);}
.fs1_c00176{font-size:24.000000px;}
.fs4_c00176{font-size:45.000000px;}
.fs6_c00176{font-size:48.000000px;}
.fs2_c00176{font-size:54.000000px;}
.fs0_c00176{font-size:60.000000px;}
.fs5_c00176{font-size:63.000000px;}
.fs3_c00176{font-size:132.000000px;}
.y0_c00176{bottom:0.000000px;}
.y51_c00176{bottom:3.105000px;}
.y50_c00176{bottom:7.228357px;}
.y4f_c00176{bottom:52.080000px;}
.y4e_c00176{bottom:72.930000px;}
.y26_c00176{bottom:73.680000px;}
.y4d_c00176{bottom:89.880000px;}
.y25_c00176{bottom:92.130000px;}
.y4c_c00176{bottom:108.030000px;}
.y24_c00176{bottom:109.680000px;}
.y4b_c00176{bottom:125.880000px;}
.y23_c00176{bottom:127.680000px;}
.y1_c00176{bottom:130.980000px;}
.y4a_c00176{bottom:143.880000px;}
.y22_c00176{bottom:146.880000px;}
.y49_c00176{bottom:161.730000px;}
.y21_c00176{bottom:162.330000px;}
.y48_c00176{bottom:180.180000px;}
.y20_c00176{bottom:180.930000px;}
.y47_c00176{bottom:197.430000px;}
.y1f_c00176{bottom:198.780000px;}
.y1e_c00176{bottom:214.980000px;}
.y46_c00176{bottom:216.030000px;}
.y1d_c00176{bottom:216.330000px;}
.y45_c00176{bottom:233.880000px;}
.y44_c00176{bottom:251.880000px;}
.y43_c00176{bottom:269.430000px;}
.y1c_c00176{bottom:287.280000px;}
.y42_c00176{bottom:288.180000px;}
.y1b_c00176{bottom:305.880000px;}
.y41_c00176{bottom:324.030000px;}
.y1a_c00176{bottom:324.330000px;}
.y40_c00176{bottom:342.180000px;}
.y19_c00176{bottom:358.530000px;}
.y3f_c00176{bottom:360.480000px;}
.y3e_c00176{bottom:378.630000px;}
.y18_c00176{bottom:395.280000px;}
.y3d_c00176{bottom:396.330000px;}
.y17_c00176{bottom:414.180000px;}
.y3c_c00176{bottom:414.480000px;}
.y3b_c00176{bottom:432.630000px;}
.y16_c00176{bottom:432.780000px;}
.y15_c00176{bottom:450.180000px;}
.y3a_c00176{bottom:450.330000px;}
.y14_c00176{bottom:468.180000px;}
.y39_c00176{bottom:468.480000px;}
.y13_c00176{bottom:485.730000px;}
.y38_c00176{bottom:486.330000px;}
.y12_c00176{bottom:503.580000px;}
.y37_c00176{bottom:504.630000px;}
.y11_c00176{bottom:521.880000px;}
.y36_c00176{bottom:523.230000px;}
.y10_c00176{bottom:539.280000px;}
.y35_c00176{bottom:540.630000px;}
.yf_c00176{bottom:557.880000px;}
.y34_c00176{bottom:558.330000px;}
.ye_c00176{bottom:575.430000px;}
.y33_c00176{bottom:577.080000px;}
.yd_c00176{bottom:593.430000px;}
.y32_c00176{bottom:594.330000px;}
.yc_c00176{bottom:611.280000px;}
.y31_c00176{bottom:612.180000px;}
.yb_c00176{bottom:629.130000px;}
.y30_c00176{bottom:629.880000px;}
.ya_c00176{bottom:647.280000px;}
.y2f_c00176{bottom:648.330000px;}
.y9_c00176{bottom:663.930000px;}
.y2e_c00176{bottom:666.930000px;}
.y8_c00176{bottom:681.780000px;}
.y2d_c00176{bottom:683.730000px;}
.y7_c00176{bottom:700.080000px;}
.y2c_c00176{bottom:701.430000px;}
.y6_c00176{bottom:718.230000px;}
.y2b_c00176{bottom:719.580000px;}
.y5_c00176{bottom:736.080000px;}
.y2a_c00176{bottom:737.880000px;}
.y4_c00176{bottom:754.080000px;}
.y29_c00176{bottom:755.730000px;}
.y3_c00176{bottom:771.930000px;}
.y28_c00176{bottom:773.880000px;}
.y2_c00176{bottom:789.480000px;}
.y27_c00176{bottom:792.180000px;}
.h6_c00176{height:13.200074px;}
.h7_c00176{height:43.804688px;}
.h2_c00176{height:62.880000px;}
.h4_c00176{height:64.020000px;}
.h5_c00176{height:67.221000px;}
.h3_c00176{height:138.336000px;}
.h0_c00176{height:842.700000px;}
.h1_c00176{height:843.000000px;}
.w1_c00176{width:104.875500px;}
.w0_c00176{width:590.250000px;}
.x0_c00176{left:0.000000px;}
.xd_c00176{left:17.550000px;}
.xe_c00176{left:19.350000px;}
.x1_c00176{left:21.150000px;}
.xf_c00176{left:68.250000px;}
.x2_c00176{left:73.200000px;}
.x4_c00176{left:74.700000px;}
.x3_c00176{left:76.650000px;}
.x6_c00176{left:77.700000px;}
.x7_c00176{left:78.900000px;}
.x5_c00176{left:79.950000px;}
.x9_c00176{left:81.300000px;}
.xa_c00176{left:92.550000px;}
.xc_c00176{left:94.200000px;}
.xb_c00176{left:116.550000px;}
.x8_c00176{left:149.100000px;}
.x19_c00176{left:246.939240px;}
.x12_c00176{left:289.950000px;}
.x17_c00176{left:291.000000px;}
.x15_c00176{left:292.050000px;}
.x14_c00176{left:294.000000px;}
.x11_c00176{left:295.350000px;}
.x10_c00176{left:296.700000px;}
.x13_c00176{left:314.850000px;}
.x16_c00176{left:321.000000px;}
.x18_c00176{left:394.950000px;}
@media print{
.v0_c00176{vertical-align:0.000000pt;}
.v1_c00176{vertical-align:61.333333pt;}
.ls7_c00176{letter-spacing:0.000000pt;}
.ls2_c00176{letter-spacing:1.066667pt;}
.ls0_c00176{letter-spacing:2.666667pt;}
.ls4_c00176{letter-spacing:3.026667pt;}
.ls6_c00176{letter-spacing:6.453333pt;}
.ls3_c00176{letter-spacing:15.360000pt;}
.ls5_c00176{letter-spacing:22.453333pt;}
.ls1_c00176{letter-spacing:74.336000pt;}
.ws2_c00176{word-spacing:-16.896000pt;}
.ws1_c00176{word-spacing:-15.413333pt;}
.ws0_c00176{word-spacing:-12.586667pt;}
.ws3_c00176{word-spacing:0.000000pt;}
._21_c00176{margin-left:-16.480000pt;}
._22_c00176{margin-left:-13.493333pt;}
._30_c00176{margin-left:-11.466667pt;}
._1c_c00176{margin-left:-9.066667pt;}
._1d_c00176{margin-left:-7.733333pt;}
._1e_c00176{margin-left:-6.240000pt;}
._18_c00176{margin-left:-5.226667pt;}
._a_c00176{margin-left:-4.053333pt;}
._d_c00176{margin-left:-2.773333pt;}
._9_c00176{margin-left:-1.706667pt;}
._8_c00176{width:1.120000pt;}
._3_c00176{width:2.240000pt;}
._1_c00176{width:3.680000pt;}
._2_c00176{width:4.586667pt;}
._4_c00176{width:5.600000pt;}
._0_c00176{width:6.666667pt;}
._2b_c00176{width:7.573333pt;}
._5_c00176{width:8.480000pt;}
._2f_c00176{width:9.600000pt;}
._f_c00176{width:10.560000pt;}
._6_c00176{width:11.466667pt;}
._12_c00176{width:12.533333pt;}
._7_c00176{width:13.546667pt;}
._20_c00176{width:14.560000pt;}
._27_c00176{width:15.520000pt;}
._16_c00176{width:16.746667pt;}
._1a_c00176{width:18.346667pt;}
._17_c00176{width:20.000000pt;}
._2e_c00176{width:21.173333pt;}
._1f_c00176{width:22.080000pt;}
._1b_c00176{width:23.040000pt;}
._14_c00176{width:24.000000pt;}
._15_c00176{width:25.600000pt;}
._11_c00176{width:27.200000pt;}
._26_c00176{width:29.066667pt;}
._2d_c00176{width:30.186667pt;}
._2c_c00176{width:32.693333pt;}
._b_c00176{width:34.240000pt;}
._19_c00176{width:36.480000pt;}
._c_c00176{width:40.213333pt;}
._29_c00176{width:42.880000pt;}
._23_c00176{width:44.533333pt;}
._2a_c00176{width:48.160000pt;}
._13_c00176{width:49.226667pt;}
._24_c00176{width:51.360000pt;}
._10_c00176{width:102.560000pt;}
._e_c00176{width:124.266667pt;}
._25_c00176{width:153.173333pt;}
._28_c00176{width:166.240000pt;}
._31_c00176{width:207.466667pt;}
.fs1_c00176{font-size:21.333333pt;}
.fs4_c00176{font-size:40.000000pt;}
.fs6_c00176{font-size:42.666667pt;}
.fs2_c00176{font-size:48.000000pt;}
.fs0_c00176{font-size:53.333333pt;}
.fs5_c00176{font-size:56.000000pt;}
.fs3_c00176{font-size:117.333333pt;}
.y0_c00176{bottom:0.000000pt;}
.y51_c00176{bottom:2.760000pt;}
.y50_c00176{bottom:6.425206pt;}
.y4f_c00176{bottom:46.293333pt;}
.y4e_c00176{bottom:64.826667pt;}
.y26_c00176{bottom:65.493333pt;}
.y4d_c00176{bottom:79.893333pt;}
.y25_c00176{bottom:81.893333pt;}
.y4c_c00176{bottom:96.026667pt;}
.y24_c00176{bottom:97.493333pt;}
.y4b_c00176{bottom:111.893333pt;}
.y23_c00176{bottom:113.493333pt;}
.y1_c00176{bottom:116.426667pt;}
.y4a_c00176{bottom:127.893333pt;}
.y22_c00176{bottom:130.560000pt;}
.y49_c00176{bottom:143.760000pt;}
.y21_c00176{bottom:144.293333pt;}
.y48_c00176{bottom:160.160000pt;}
.y20_c00176{bottom:160.826667pt;}
.y47_c00176{bottom:175.493333pt;}
.y1f_c00176{bottom:176.693333pt;}
.y1e_c00176{bottom:191.093333pt;}
.y46_c00176{bottom:192.026667pt;}
.y1d_c00176{bottom:192.293333pt;}
.y45_c00176{bottom:207.893333pt;}
.y44_c00176{bottom:223.893333pt;}
.y43_c00176{bottom:239.493333pt;}
.y1c_c00176{bottom:255.360000pt;}
.y42_c00176{bottom:256.160000pt;}
.y1b_c00176{bottom:271.893333pt;}
.y41_c00176{bottom:288.026667pt;}
.y1a_c00176{bottom:288.293333pt;}
.y40_c00176{bottom:304.160000pt;}
.y19_c00176{bottom:318.693333pt;}
.y3f_c00176{bottom:320.426667pt;}
.y3e_c00176{bottom:336.560000pt;}
.y18_c00176{bottom:351.360000pt;}
.y3d_c00176{bottom:352.293333pt;}
.y17_c00176{bottom:368.160000pt;}
.y3c_c00176{bottom:368.426667pt;}
.y3b_c00176{bottom:384.560000pt;}
.y16_c00176{bottom:384.693333pt;}
.y15_c00176{bottom:400.160000pt;}
.y3a_c00176{bottom:400.293333pt;}
.y14_c00176{bottom:416.160000pt;}
.y39_c00176{bottom:416.426667pt;}
.y13_c00176{bottom:431.760000pt;}
.y38_c00176{bottom:432.293333pt;}
.y12_c00176{bottom:447.626667pt;}
.y37_c00176{bottom:448.560000pt;}
.y11_c00176{bottom:463.893333pt;}
.y36_c00176{bottom:465.093333pt;}
.y10_c00176{bottom:479.360000pt;}
.y35_c00176{bottom:480.560000pt;}
.yf_c00176{bottom:495.893333pt;}
.y34_c00176{bottom:496.293333pt;}
.ye_c00176{bottom:511.493333pt;}
.y33_c00176{bottom:512.960000pt;}
.yd_c00176{bottom:527.493333pt;}
.y32_c00176{bottom:528.293333pt;}
.yc_c00176{bottom:543.360000pt;}
.y31_c00176{bottom:544.160000pt;}
.yb_c00176{bottom:559.226667pt;}
.y30_c00176{bottom:559.893333pt;}
.ya_c00176{bottom:575.360000pt;}
.y2f_c00176{bottom:576.293333pt;}
.y9_c00176{bottom:590.160000pt;}
.y2e_c00176{bottom:592.826667pt;}
.y8_c00176{bottom:606.026667pt;}
.y2d_c00176{bottom:607.760000pt;}
.y7_c00176{bottom:622.293333pt;}
.y2c_c00176{bottom:623.493333pt;}
.y6_c00176{bottom:638.426667pt;}
.y2b_c00176{bottom:639.626667pt;}
.y5_c00176{bottom:654.293333pt;}
.y2a_c00176{bottom:655.893333pt;}
.y4_c00176{bottom:670.293333pt;}
.y29_c00176{bottom:671.760000pt;}
.y3_c00176{bottom:686.160000pt;}
.y28_c00176{bottom:687.893333pt;}
.y2_c00176{bottom:701.760000pt;}
.y27_c00176{bottom:704.160000pt;}
.h6_c00176{height:11.733399pt;}
.h7_c00176{height:38.937500pt;}
.h2_c00176{height:55.893333pt;}
.h4_c00176{height:56.906667pt;}
.h5_c00176{height:59.752000pt;}
.h3_c00176{height:122.965333pt;}
.h0_c00176{height:749.066667pt;}
.h1_c00176{height:749.333333pt;}
.w1_c00176{width:93.222667pt;}
.w0_c00176{width:524.666667pt;}
.x0_c00176{left:0.000000pt;}
.xd_c00176{left:15.600000pt;}
.xe_c00176{left:17.200000pt;}
.x1_c00176{left:18.800000pt;}
.xf_c00176{left:60.666667pt;}
.x2_c00176{left:65.066667pt;}
.x4_c00176{left:66.400000pt;}
.x3_c00176{left:68.133333pt;}
.x6_c00176{left:69.066667pt;}
.x7_c00176{left:70.133333pt;}
.x5_c00176{left:71.066667pt;}
.x9_c00176{left:72.266667pt;}
.xa_c00176{left:82.266667pt;}
.xc_c00176{left:83.733333pt;}
.xb_c00176{left:103.600000pt;}
.x8_c00176{left:132.533333pt;}
.x19_c00176{left:219.501546pt;}
.x12_c00176{left:257.733333pt;}
.x17_c00176{left:258.666667pt;}
.x15_c00176{left:259.600000pt;}
.x14_c00176{left:261.333333pt;}
.x11_c00176{left:262.533333pt;}
.x10_c00176{left:263.733333pt;}
.x13_c00176{left:279.866667pt;}
.x16_c00176{left:285.333333pt;}
.x18_c00176{left:351.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_6bbe5e1a9de26912f23db804.woff2')format("woff");}.ff1_c00177{font-family:ff1_c00177;line-height:1.437000;font-style:normal;font-weight:normal;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_4742fa5919e18a15d6b691bd.woff2')format("woff");}.ff2_c00177{font-family:ff2_c00177;line-height:1.575000;font-style:normal;font-weight:normal;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_3eb02244c4952c847b26acca.woff2')format("woff");}.ff3_c00177{font-family:ff3_c00177;line-height:1.437000;font-style:normal;font-weight:normal;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_35eabe5d7d0fb807da932b50.woff2')format("woff");}.ff4_c00177{font-family:ff4_c00177;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00177;src:url('chunks/assets/font_2949bda16a3d64a67b242df0.woff2')format("woff");}.ff5_c00177{font-family:ff5_c00177;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00177;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff6_c00177{font-family:ff6_c00177;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00177{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00177{vertical-align:0.000000px;}
.ls6_c00177{letter-spacing:0.000000px;}
.ls2_c00177{letter-spacing:3.000000px;}
.ls5_c00177{letter-spacing:6.000000px;}
.ls7_c00177{letter-spacing:9.000000px;}
.ls1_c00177{letter-spacing:11.340000px;}
.ls3_c00177{letter-spacing:14.460000px;}
.ls4_c00177{letter-spacing:15.000000px;}
.ls0_c00177{letter-spacing:39.387000px;}
.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;}
}
.ws2_c00177{word-spacing:-23.340000px;}
.ws4_c00177{word-spacing:-22.623000px;}
.ws1_c00177{word-spacing:-18.060000px;}
.ws3_c00177{word-spacing:-14.160000px;}
.ws0_c00177{word-spacing:-3.120000px;}
.ws5_c00177{word-spacing:0.000000px;}
._18_c00177{margin-left:-18.000000px;}
._1e_c00177{margin-left:-13.464000px;}
._16_c00177{margin-left:-12.000000px;}
._17_c00177{margin-left:-10.740000px;}
._13_c00177{margin-left:-9.696000px;}
._14_c00177{margin-left:-7.818000px;}
._1_c00177{margin-left:-6.615000px;}
._0_c00177{margin-left:-5.607000px;}
._e_c00177{margin-left:-3.843000px;}
._d_c00177{margin-left:-2.331000px;}
._12_c00177{margin-left:-1.029000px;}
._b_c00177{width:1.008000px;}
._c_c00177{width:2.142000px;}
._10_c00177{width:4.110000px;}
._3_c00177{width:5.418000px;}
._4_c00177{width:6.993000px;}
._5_c00177{width:8.379000px;}
._8_c00177{width:9.420000px;}
._11_c00177{width:10.647000px;}
._15_c00177{width:12.540000px;}
._22_c00177{width:13.947000px;}
._19_c00177{width:15.525000px;}
._7_c00177{width:17.280000px;}
._a_c00177{width:18.720000px;}
._6_c00177{width:20.427000px;}
._9_c00177{width:21.960000px;}
._24_c00177{width:24.192000px;}
._20_c00177{width:26.052000px;}
._23_c00177{width:28.530000px;}
._21_c00177{width:32.547000px;}
._1f_c00177{width:40.500000px;}
._25_c00177{width:43.575000px;}
._26_c00177{width:54.018000px;}
._1b_c00177{width:60.444000px;}
._f_c00177{width:66.708000px;}
._1a_c00177{width:85.740000px;}
._1d_c00177{width:107.655000px;}
._1c_c00177{width:113.490000px;}
._2_c00177{width:331.317000px;}
.fc2_c00177{color:transparent;}
.fc1_c00177{color:rgb(128,128,128);}
.fc0_c00177{color:rgb(0,0,0);}
.fs3_c00177{font-size:45.000000px;}
.fs4_c00177{font-size:48.000000px;}
.fs2_c00177{font-size:57.000000px;}
.fs1_c00177{font-size:60.000000px;}
.fs0_c00177{font-size:63.000000px;}
.y0_c00177{bottom:0.000000px;}
.y52_c00177{bottom:3.105000px;}
.y51_c00177{bottom:7.228357px;}
.y50_c00177{bottom:35.130000px;}
.y2a_c00177{bottom:52.680000px;}
.y4f_c00177{bottom:53.280000px;}
.y4e_c00177{bottom:71.580000px;}
.y29_c00177{bottom:72.180000px;}
.y4d_c00177{bottom:89.730000px;}
.y28_c00177{bottom:89.880000px;}
.y27_c00177{bottom:108.330000px;}
.y4c_c00177{bottom:124.530000px;}
.y26_c00177{bottom:126.330000px;}
.y4b_c00177{bottom:142.830000px;}
.y25_c00177{bottom:145.830000px;}
.y4a_c00177{bottom:162.030000px;}
.y24_c00177{bottom:163.080000px;}
.y49_c00177{bottom:179.580000px;}
.y23_c00177{bottom:181.530000px;}
.y22_c00177{bottom:199.080000px;}
.y21_c00177{bottom:217.080000px;}
.y48_c00177{bottom:233.580000px;}
.y20_c00177{bottom:235.530000px;}
.y47_c00177{bottom:252.780000px;}
.y1f_c00177{bottom:253.830000px;}
.y46_c00177{bottom:270.630000px;}
.y1e_c00177{bottom:271.680000px;}
.y45_c00177{bottom:288.780000px;}
.y1d_c00177{bottom:289.530000px;}
.y44_c00177{bottom:306.780000px;}
.y1c_c00177{bottom:307.230000px;}
.y43_c00177{bottom:324.780000px;}
.y1b_c00177{bottom:325.680000px;}
.y42_c00177{bottom:342.630000px;}
.y1a_c00177{bottom:344.580000px;}
.y41_c00177{bottom:360.480000px;}
.y19_c00177{bottom:361.830000px;}
.y40_c00177{bottom:378.780000px;}
.y18_c00177{bottom:379.980000px;}
.y3f_c00177{bottom:396.630000px;}
.y17_c00177{bottom:397.980000px;}
.y3e_c00177{bottom:415.230000px;}
.y16_c00177{bottom:416.430000px;}
.y3d_c00177{bottom:433.080000px;}
.y15_c00177{bottom:434.430000px;}
.y3c_c00177{bottom:451.530000px;}
.y14_c00177{bottom:452.880000px;}
.y3b_c00177{bottom:469.230000px;}
.y13_c00177{bottom:470.430000px;}
.y3a_c00177{bottom:487.380000px;}
.y12_c00177{bottom:488.730000px;}
.y39_c00177{bottom:505.080000px;}
.y11_c00177{bottom:507.630000px;}
.y38_c00177{bottom:523.080000px;}
.y10_c00177{bottom:525.180000px;}
.y37_c00177{bottom:541.080000px;}
.yf_c00177{bottom:542.730000px;}
.y36_c00177{bottom:556.980000px;}
.ye_c00177{bottom:561.930000px;}
.y35_c00177{bottom:577.230000px;}
.yd_c00177{bottom:579.180000px;}
.y34_c00177{bottom:594.330000px;}
.yc_c00177{bottom:597.780000px;}
.y33_c00177{bottom:613.980000px;}
.yb_c00177{bottom:615.930000px;}
.y32_c00177{bottom:631.530000px;}
.ya_c00177{bottom:634.230000px;}
.y31_c00177{bottom:649.680000px;}
.y9_c00177{bottom:653.430000px;}
.y30_c00177{bottom:667.230000px;}
.y8_c00177{bottom:671.580000px;}
.y2f_c00177{bottom:686.580000px;}
.y7_c00177{bottom:689.880000px;}
.y2e_c00177{bottom:703.980000px;}
.y6_c00177{bottom:708.180000px;}
.y2d_c00177{bottom:721.230000px;}
.y5_c00177{bottom:726.330000px;}
.y2c_c00177{bottom:741.780000px;}
.y4_c00177{bottom:744.180000px;}
.y2b_c00177{bottom:759.030000px;}
.y3_c00177{bottom:762.480000px;}
.y2_c00177{bottom:779.280000px;}
.y1_c00177{bottom:799.530000px;}
.h5_c00177{height:13.200074px;}
.h6_c00177{height:43.804688px;}
.h3_c00177{height:62.880000px;}
.h4_c00177{height:64.020000px;}
.h2_c00177{height:66.024000px;}
.h1_c00177{height:825.000000px;}
.h0_c00177{height:825.150000px;}
.w2_c00177{width:104.875500px;}
.w1_c00177{width:555.000000px;}
.w0_c00177{width:555.150000px;}
.x0_c00177{left:0.000000px;}
.x5_c00177{left:27.900000px;}
.x6_c00177{left:30.000000px;}
.x4_c00177{left:89.700000px;}
.x2_c00177{left:91.050000px;}
.x7_c00177{left:92.100000px;}
.x8_c00177{left:93.450000px;}
.x9_c00177{left:95.100000px;}
.x1_c00177{left:96.450000px;}
.x3_c00177{left:104.250000px;}
.x10_c00177{left:229.389267px;}
.xd_c00177{left:304.050000px;}
.xa_c00177{left:305.100000px;}
.xb_c00177{left:306.450000px;}
.xc_c00177{left:307.800000px;}
.xe_c00177{left:309.750000px;}
.xf_c00177{left:477.900000px;}
@media print{
.v0_c00177{vertical-align:0.000000pt;}
.ls6_c00177{letter-spacing:0.000000pt;}
.ls2_c00177{letter-spacing:2.666667pt;}
.ls5_c00177{letter-spacing:5.333333pt;}
.ls7_c00177{letter-spacing:8.000000pt;}
.ls1_c00177{letter-spacing:10.080000pt;}
.ls3_c00177{letter-spacing:12.853333pt;}
.ls4_c00177{letter-spacing:13.333333pt;}
.ls0_c00177{letter-spacing:35.010667pt;}
.ws2_c00177{word-spacing:-20.746667pt;}
.ws4_c00177{word-spacing:-20.109333pt;}
.ws1_c00177{word-spacing:-16.053333pt;}
.ws3_c00177{word-spacing:-12.586667pt;}
.ws0_c00177{word-spacing:-2.773333pt;}
.ws5_c00177{word-spacing:0.000000pt;}
._18_c00177{margin-left:-16.000000pt;}
._1e_c00177{margin-left:-11.968000pt;}
._16_c00177{margin-left:-10.666667pt;}
._17_c00177{margin-left:-9.546667pt;}
._13_c00177{margin-left:-8.618667pt;}
._14_c00177{margin-left:-6.949333pt;}
._1_c00177{margin-left:-5.880000pt;}
._0_c00177{margin-left:-4.984000pt;}
._e_c00177{margin-left:-3.416000pt;}
._d_c00177{margin-left:-2.072000pt;}
._12_c00177{margin-left:-0.914667pt;}
._b_c00177{width:0.896000pt;}
._c_c00177{width:1.904000pt;}
._10_c00177{width:3.653333pt;}
._3_c00177{width:4.816000pt;}
._4_c00177{width:6.216000pt;}
._5_c00177{width:7.448000pt;}
._8_c00177{width:8.373333pt;}
._11_c00177{width:9.464000pt;}
._15_c00177{width:11.146667pt;}
._22_c00177{width:12.397333pt;}
._19_c00177{width:13.800000pt;}
._7_c00177{width:15.360000pt;}
._a_c00177{width:16.640000pt;}
._6_c00177{width:18.157333pt;}
._9_c00177{width:19.520000pt;}
._24_c00177{width:21.504000pt;}
._20_c00177{width:23.157333pt;}
._23_c00177{width:25.360000pt;}
._21_c00177{width:28.930667pt;}
._1f_c00177{width:36.000000pt;}
._25_c00177{width:38.733333pt;}
._26_c00177{width:48.016000pt;}
._1b_c00177{width:53.728000pt;}
._f_c00177{width:59.296000pt;}
._1a_c00177{width:76.213333pt;}
._1d_c00177{width:95.693333pt;}
._1c_c00177{width:100.880000pt;}
._2_c00177{width:294.504000pt;}
.fs3_c00177{font-size:40.000000pt;}
.fs4_c00177{font-size:42.666667pt;}
.fs2_c00177{font-size:50.666667pt;}
.fs1_c00177{font-size:53.333333pt;}
.fs0_c00177{font-size:56.000000pt;}
.y0_c00177{bottom:0.000000pt;}
.y52_c00177{bottom:2.760000pt;}
.y51_c00177{bottom:6.425206pt;}
.y50_c00177{bottom:31.226667pt;}
.y2a_c00177{bottom:46.826667pt;}
.y4f_c00177{bottom:47.360000pt;}
.y4e_c00177{bottom:63.626667pt;}
.y29_c00177{bottom:64.160000pt;}
.y4d_c00177{bottom:79.760000pt;}
.y28_c00177{bottom:79.893333pt;}
.y27_c00177{bottom:96.293333pt;}
.y4c_c00177{bottom:110.693333pt;}
.y26_c00177{bottom:112.293333pt;}
.y4b_c00177{bottom:126.960000pt;}
.y25_c00177{bottom:129.626667pt;}
.y4a_c00177{bottom:144.026667pt;}
.y24_c00177{bottom:144.960000pt;}
.y49_c00177{bottom:159.626667pt;}
.y23_c00177{bottom:161.360000pt;}
.y22_c00177{bottom:176.960000pt;}
.y21_c00177{bottom:192.960000pt;}
.y48_c00177{bottom:207.626667pt;}
.y20_c00177{bottom:209.360000pt;}
.y47_c00177{bottom:224.693333pt;}
.y1f_c00177{bottom:225.626667pt;}
.y46_c00177{bottom:240.560000pt;}
.y1e_c00177{bottom:241.493333pt;}
.y45_c00177{bottom:256.693333pt;}
.y1d_c00177{bottom:257.360000pt;}
.y44_c00177{bottom:272.693333pt;}
.y1c_c00177{bottom:273.093333pt;}
.y43_c00177{bottom:288.693333pt;}
.y1b_c00177{bottom:289.493333pt;}
.y42_c00177{bottom:304.560000pt;}
.y1a_c00177{bottom:306.293333pt;}
.y41_c00177{bottom:320.426667pt;}
.y19_c00177{bottom:321.626667pt;}
.y40_c00177{bottom:336.693333pt;}
.y18_c00177{bottom:337.760000pt;}
.y3f_c00177{bottom:352.560000pt;}
.y17_c00177{bottom:353.760000pt;}
.y3e_c00177{bottom:369.093333pt;}
.y16_c00177{bottom:370.160000pt;}
.y3d_c00177{bottom:384.960000pt;}
.y15_c00177{bottom:386.160000pt;}
.y3c_c00177{bottom:401.360000pt;}
.y14_c00177{bottom:402.560000pt;}
.y3b_c00177{bottom:417.093333pt;}
.y13_c00177{bottom:418.160000pt;}
.y3a_c00177{bottom:433.226667pt;}
.y12_c00177{bottom:434.426667pt;}
.y39_c00177{bottom:448.960000pt;}
.y11_c00177{bottom:451.226667pt;}
.y38_c00177{bottom:464.960000pt;}
.y10_c00177{bottom:466.826667pt;}
.y37_c00177{bottom:480.960000pt;}
.yf_c00177{bottom:482.426667pt;}
.y36_c00177{bottom:495.093333pt;}
.ye_c00177{bottom:499.493333pt;}
.y35_c00177{bottom:513.093333pt;}
.yd_c00177{bottom:514.826667pt;}
.y34_c00177{bottom:528.293333pt;}
.yc_c00177{bottom:531.360000pt;}
.y33_c00177{bottom:545.760000pt;}
.yb_c00177{bottom:547.493333pt;}
.y32_c00177{bottom:561.360000pt;}
.ya_c00177{bottom:563.760000pt;}
.y31_c00177{bottom:577.493333pt;}
.y9_c00177{bottom:580.826667pt;}
.y30_c00177{bottom:593.093333pt;}
.y8_c00177{bottom:596.960000pt;}
.y2f_c00177{bottom:610.293333pt;}
.y7_c00177{bottom:613.226667pt;}
.y2e_c00177{bottom:625.760000pt;}
.y6_c00177{bottom:629.493333pt;}
.y2d_c00177{bottom:641.093333pt;}
.y5_c00177{bottom:645.626667pt;}
.y2c_c00177{bottom:659.360000pt;}
.y4_c00177{bottom:661.493333pt;}
.y2b_c00177{bottom:674.693333pt;}
.y3_c00177{bottom:677.760000pt;}
.y2_c00177{bottom:692.693333pt;}
.y1_c00177{bottom:710.693333pt;}
.h5_c00177{height:11.733399pt;}
.h6_c00177{height:38.937500pt;}
.h3_c00177{height:55.893333pt;}
.h4_c00177{height:56.906667pt;}
.h2_c00177{height:58.688000pt;}
.h1_c00177{height:733.333333pt;}
.h0_c00177{height:733.466667pt;}
.w2_c00177{width:93.222667pt;}
.w1_c00177{width:493.333333pt;}
.w0_c00177{width:493.466667pt;}
.x0_c00177{left:0.000000pt;}
.x5_c00177{left:24.800000pt;}
.x6_c00177{left:26.666667pt;}
.x4_c00177{left:79.733333pt;}
.x2_c00177{left:80.933333pt;}
.x7_c00177{left:81.866667pt;}
.x8_c00177{left:83.066667pt;}
.x9_c00177{left:84.533333pt;}
.x1_c00177{left:85.733333pt;}
.x3_c00177{left:92.666667pt;}
.x10_c00177{left:203.901571pt;}
.xd_c00177{left:270.266667pt;}
.xa_c00177{left:271.200000pt;}
.xb_c00177{left:272.400000pt;}
.xc_c00177{left:273.600000pt;}
.xe_c00177{left:275.333333pt;}
.xf_c00177{left:424.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f22f39b68f14f5b0ce11cf6b.woff2')format("woff");}.ff1_c00178{font-family:ff1_c00178;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00178;src:url('chunks/assets/font_c8aa62734ecf6b8ea17f8218.woff2')format("woff");}.ff2_c00178{font-family:ff2_c00178;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00178;src:url('chunks/assets/font_7f7b6b28ad55656b8af83026.woff2')format("woff");}.ff3_c00178{font-family:ff3_c00178;line-height:1.575000;font-style:normal;font-weight:normal;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_0ce391de997f24f9f9dd37f4.woff2')format("woff");}.ff4_c00178{font-family:ff4_c00178;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00178;src:url('chunks/assets/font_fa1c6f8a4ab4a90d280657e4.woff2')format("woff");}.ff5_c00178{font-family:ff5_c00178;line-height:1.575000;font-style:normal;font-weight:normal;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_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff6_c00178{font-family:ff6_c00178;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00178{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00178{vertical-align:0.000000px;}
.v1_c00178{vertical-align:105.600000px;}
.ls5_c00178{letter-spacing:0.000000px;}
.ls0_c00178{letter-spacing:3.000000px;}
.ls4_c00178{letter-spacing:3.900000px;}
.ls2_c00178{letter-spacing:6.000000px;}
.ls3_c00178{letter-spacing:9.960000px;}
.ls1_c00178{letter-spacing:49.926000px;}
.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;}
}
.ws2_c00178{word-spacing:-29.295000px;}
.ws3_c00178{word-spacing:-23.340000px;}
.ws4_c00178{word-spacing:-18.960000px;}
.ws1_c00178{word-spacing:-18.060000px;}
.ws0_c00178{word-spacing:-14.160000px;}
.ws5_c00178{word-spacing:0.000000px;}
._26_c00178{margin-left:-18.420000px;}
._27_c00178{margin-left:-15.300000px;}
._18_c00178{margin-left:-14.076000px;}
._1c_c00178{margin-left:-12.840000px;}
._1d_c00178{margin-left:-11.640000px;}
._25_c00178{margin-left:-9.675000px;}
._17_c00178{margin-left:-8.040000px;}
._9_c00178{margin-left:-6.480000px;}
._1f_c00178{margin-left:-5.205000px;}
._1_c00178{margin-left:-4.200000px;}
._0_c00178{margin-left:-2.520000px;}
._a_c00178{margin-left:-1.020000px;}
._b_c00178{width:1.020000px;}
._6_c00178{width:2.220000px;}
._7_c00178{width:3.420000px;}
._c_c00178{width:4.920000px;}
._11_c00178{width:6.540000px;}
._8_c00178{width:7.920000px;}
._1a_c00178{width:9.480000px;}
._3_c00178{width:10.740000px;}
._d_c00178{width:12.180000px;}
._2_c00178{width:13.440000px;}
._1b_c00178{width:14.520000px;}
._5_c00178{width:16.260000px;}
._22_c00178{width:19.680000px;}
._14_c00178{width:21.000000px;}
._10_c00178{width:22.920000px;}
._16_c00178{width:24.420000px;}
._e_c00178{width:26.340000px;}
._12_c00178{width:27.660000px;}
._29_c00178{width:29.220000px;}
._13_c00178{width:30.720000px;}
._23_c00178{width:33.960000px;}
._24_c00178{width:35.940000px;}
._28_c00178{width:38.100000px;}
._4_c00178{width:40.140000px;}
._f_c00178{width:41.280000px;}
._15_c00178{width:43.380000px;}
._21_c00178{width:46.740000px;}
._20_c00178{width:57.891000px;}
._1e_c00178{width:81.102000px;}
._19_c00178{width:395.574000px;}
.fc2_c00178{color:transparent;}
.fc1_c00178{color:rgb(128,128,128);}
.fc0_c00178{color:rgb(0,0,0);}
.fs2_c00178{font-size:45.000000px;}
.fs5_c00178{font-size:48.000000px;}
.fs3_c00178{font-size:57.000000px;}
.fs0_c00178{font-size:60.000000px;}
.fs1_c00178{font-size:69.000000px;}
.fs4_c00178{font-size:201.000000px;}
.y0_c00178{bottom:0.000000px;}
.y54_c00178{bottom:3.105000px;}
.y53_c00178{bottom:7.228357px;}
.y52_c00178{bottom:37.830000px;}
.y51_c00178{bottom:59.130000px;}
.y34_c00178{bottom:63.480000px;}
.y50_c00178{bottom:77.580000px;}
.y33_c00178{bottom:81.330000px;}
.y4f_c00178{bottom:95.580000px;}
.y32_c00178{bottom:99.180000px;}
.y4e_c00178{bottom:113.430000px;}
.y31_c00178{bottom:116.880000px;}
.y4d_c00178{bottom:131.730000px;}
.y30_c00178{bottom:133.980000px;}
.y4c_c00178{bottom:149.130000px;}
.y2f_c00178{bottom:151.230000px;}
.y4b_c00178{bottom:167.130000px;}
.y2e_c00178{bottom:170.430000px;}
.y4a_c00178{bottom:186.330000px;}
.y2d_c00178{bottom:189.030000px;}
.y49_c00178{bottom:204.180000px;}
.y2c_c00178{bottom:206.580000px;}
.y48_c00178{bottom:221.730000px;}
.y2b_c00178{bottom:224.730000px;}
.y47_c00178{bottom:238.980000px;}
.y2a_c00178{bottom:242.280000px;}
.y46_c00178{bottom:257.580000px;}
.y29_c00178{bottom:260.280000px;}
.y45_c00178{bottom:274.830000px;}
.y28_c00178{bottom:278.730000px;}
.y44_c00178{bottom:293.580000px;}
.y27_c00178{bottom:296.280000px;}
.y43_c00178{bottom:310.830000px;}
.y26_c00178{bottom:314.280000px;}
.y42_c00178{bottom:330.030000px;}
.y25_c00178{bottom:332.130000px;}
.y41_c00178{bottom:348.330000px;}
.y24_c00178{bottom:350.280000px;}
.y40_c00178{bottom:366.480000px;}
.y23_c00178{bottom:366.630000px;}
.y3f_c00178{bottom:384.480000px;}
.y22_c00178{bottom:386.130000px;}
.y3e_c00178{bottom:401.580000px;}
.y21_c00178{bottom:403.830000px;}
.y3d_c00178{bottom:421.230000px;}
.y20_c00178{bottom:421.980000px;}
.y3c_c00178{bottom:439.080000px;}
.y1f_c00178{bottom:440.130000px;}
.y3b_c00178{bottom:456.630000px;}
.y1e_c00178{bottom:457.980000px;}
.y3a_c00178{bottom:474.930000px;}
.y1d_c00178{bottom:475.230000px;}
.y39_c00178{bottom:492.480000px;}
.y1c_c00178{bottom:494.130000px;}
.y38_c00178{bottom:510.630000px;}
.y1b_c00178{bottom:512.430000px;}
.y37_c00178{bottom:527.880000px;}
.y11_c00178{bottom:529.830000px;}
.y35_c00178{bottom:537.330000px;}
.y36_c00178{bottom:546.480000px;}
.y10_c00178{bottom:547.530000px;}
.yf_c00178{bottom:565.980000px;}
.ye_c00178{bottom:583.830000px;}
.y1a_c00178{bottom:600.480000px;}
.yd_c00178{bottom:601.530000px;}
.y19_c00178{bottom:618.930000px;}
.yc_c00178{bottom:619.380000px;}
.y18_c00178{bottom:636.930000px;}
.yb_c00178{bottom:637.230000px;}
.y1_c00178{bottom:639.180000px;}
.ya_c00178{bottom:655.080000px;}
.y9_c00178{bottom:672.630000px;}
.y17_c00178{bottom:689.880000px;}
.y8_c00178{bottom:691.230000px;}
.y7_c00178{bottom:708.480000px;}
.y6_c00178{bottom:726.330000px;}
.y16_c00178{bottom:726.930000px;}
.y15_c00178{bottom:743.580000px;}
.y5_c00178{bottom:744.630000px;}
.y14_c00178{bottom:762.180000px;}
.y4_c00178{bottom:763.830000px;}
.y13_c00178{bottom:780.330000px;}
.y3_c00178{bottom:780.930000px;}
.y2_c00178{bottom:800.880000px;}
.y12_c00178{bottom:801.330000px;}
.h7_c00178{height:13.200074px;}
.h8_c00178{height:43.804688px;}
.h4_c00178{height:59.736000px;}
.h2_c00178{height:62.880000px;}
.h6_c00178{height:64.020000px;}
.h3_c00178{height:73.623000px;}
.h5_c00178{height:210.648000px;}
.h0_c00178{height:842.700000px;}
.h1_c00178{height:843.000000px;}
.w1_c00178{width:104.875500px;}
.w0_c00178{width:590.250000px;}
.x0_c00178{left:0.000000px;}
.x1_c00178{left:18.150000px;}
.x11_c00178{left:56.700000px;}
.x10_c00178{left:69.750000px;}
.xf_c00178{left:70.800000px;}
.x13_c00178{left:71.850000px;}
.x12_c00178{left:72.900000px;}
.x6_c00178{left:74.250000px;}
.x4_c00178{left:76.200000px;}
.x5_c00178{left:77.250000px;}
.x3_c00178{left:78.300000px;}
.xd_c00178{left:79.950000px;}
.xe_c00178{left:81.000000px;}
.x2_c00178{left:212.250000px;}
.x1a_c00178{left:246.939240px;}
.x17_c00178{left:284.100000px;}
.x16_c00178{left:285.450000px;}
.x15_c00178{left:289.650000px;}
.x7_c00178{left:290.850000px;}
.x8_c00178{left:292.350000px;}
.x18_c00178{left:293.550000px;}
.xa_c00178{left:310.500000px;}
.xb_c00178{left:325.950000px;}
.x14_c00178{left:338.850000px;}
.xc_c00178{left:362.850000px;}
.x9_c00178{left:384.450000px;}
.x19_c00178{left:392.100000px;}
@media print{
.v0_c00178{vertical-align:0.000000pt;}
.v1_c00178{vertical-align:93.866667pt;}
.ls5_c00178{letter-spacing:0.000000pt;}
.ls0_c00178{letter-spacing:2.666667pt;}
.ls4_c00178{letter-spacing:3.466667pt;}
.ls2_c00178{letter-spacing:5.333333pt;}
.ls3_c00178{letter-spacing:8.853333pt;}
.ls1_c00178{letter-spacing:44.378667pt;}
.ws2_c00178{word-spacing:-26.040000pt;}
.ws3_c00178{word-spacing:-20.746667pt;}
.ws4_c00178{word-spacing:-16.853333pt;}
.ws1_c00178{word-spacing:-16.053333pt;}
.ws0_c00178{word-spacing:-12.586667pt;}
.ws5_c00178{word-spacing:0.000000pt;}
._26_c00178{margin-left:-16.373333pt;}
._27_c00178{margin-left:-13.600000pt;}
._18_c00178{margin-left:-12.512000pt;}
._1c_c00178{margin-left:-11.413333pt;}
._1d_c00178{margin-left:-10.346667pt;}
._25_c00178{margin-left:-8.600000pt;}
._17_c00178{margin-left:-7.146667pt;}
._9_c00178{margin-left:-5.760000pt;}
._1f_c00178{margin-left:-4.626667pt;}
._1_c00178{margin-left:-3.733333pt;}
._0_c00178{margin-left:-2.240000pt;}
._a_c00178{margin-left:-0.906667pt;}
._b_c00178{width:0.906667pt;}
._6_c00178{width:1.973333pt;}
._7_c00178{width:3.040000pt;}
._c_c00178{width:4.373333pt;}
._11_c00178{width:5.813333pt;}
._8_c00178{width:7.040000pt;}
._1a_c00178{width:8.426667pt;}
._3_c00178{width:9.546667pt;}
._d_c00178{width:10.826667pt;}
._2_c00178{width:11.946667pt;}
._1b_c00178{width:12.906667pt;}
._5_c00178{width:14.453333pt;}
._22_c00178{width:17.493333pt;}
._14_c00178{width:18.666667pt;}
._10_c00178{width:20.373333pt;}
._16_c00178{width:21.706667pt;}
._e_c00178{width:23.413333pt;}
._12_c00178{width:24.586667pt;}
._29_c00178{width:25.973333pt;}
._13_c00178{width:27.306667pt;}
._23_c00178{width:30.186667pt;}
._24_c00178{width:31.946667pt;}
._28_c00178{width:33.866667pt;}
._4_c00178{width:35.680000pt;}
._f_c00178{width:36.693333pt;}
._15_c00178{width:38.560000pt;}
._21_c00178{width:41.546667pt;}
._20_c00178{width:51.458667pt;}
._1e_c00178{width:72.090667pt;}
._19_c00178{width:351.621333pt;}
.fs2_c00178{font-size:40.000000pt;}
.fs5_c00178{font-size:42.666667pt;}
.fs3_c00178{font-size:50.666667pt;}
.fs0_c00178{font-size:53.333333pt;}
.fs1_c00178{font-size:61.333333pt;}
.fs4_c00178{font-size:178.666667pt;}
.y0_c00178{bottom:0.000000pt;}
.y54_c00178{bottom:2.760000pt;}
.y53_c00178{bottom:6.425206pt;}
.y52_c00178{bottom:33.626667pt;}
.y51_c00178{bottom:52.560000pt;}
.y34_c00178{bottom:56.426667pt;}
.y50_c00178{bottom:68.960000pt;}
.y33_c00178{bottom:72.293333pt;}
.y4f_c00178{bottom:84.960000pt;}
.y32_c00178{bottom:88.160000pt;}
.y4e_c00178{bottom:100.826667pt;}
.y31_c00178{bottom:103.893333pt;}
.y4d_c00178{bottom:117.093333pt;}
.y30_c00178{bottom:119.093333pt;}
.y4c_c00178{bottom:132.560000pt;}
.y2f_c00178{bottom:134.426667pt;}
.y4b_c00178{bottom:148.560000pt;}
.y2e_c00178{bottom:151.493333pt;}
.y4a_c00178{bottom:165.626667pt;}
.y2d_c00178{bottom:168.026667pt;}
.y49_c00178{bottom:181.493333pt;}
.y2c_c00178{bottom:183.626667pt;}
.y48_c00178{bottom:197.093333pt;}
.y2b_c00178{bottom:199.760000pt;}
.y47_c00178{bottom:212.426667pt;}
.y2a_c00178{bottom:215.360000pt;}
.y46_c00178{bottom:228.960000pt;}
.y29_c00178{bottom:231.360000pt;}
.y45_c00178{bottom:244.293333pt;}
.y28_c00178{bottom:247.760000pt;}
.y44_c00178{bottom:260.960000pt;}
.y27_c00178{bottom:263.360000pt;}
.y43_c00178{bottom:276.293333pt;}
.y26_c00178{bottom:279.360000pt;}
.y42_c00178{bottom:293.360000pt;}
.y25_c00178{bottom:295.226667pt;}
.y41_c00178{bottom:309.626667pt;}
.y24_c00178{bottom:311.360000pt;}
.y40_c00178{bottom:325.760000pt;}
.y23_c00178{bottom:325.893333pt;}
.y3f_c00178{bottom:341.760000pt;}
.y22_c00178{bottom:343.226667pt;}
.y3e_c00178{bottom:356.960000pt;}
.y21_c00178{bottom:358.960000pt;}
.y3d_c00178{bottom:374.426667pt;}
.y20_c00178{bottom:375.093333pt;}
.y3c_c00178{bottom:390.293333pt;}
.y1f_c00178{bottom:391.226667pt;}
.y3b_c00178{bottom:405.893333pt;}
.y1e_c00178{bottom:407.093333pt;}
.y3a_c00178{bottom:422.160000pt;}
.y1d_c00178{bottom:422.426667pt;}
.y39_c00178{bottom:437.760000pt;}
.y1c_c00178{bottom:439.226667pt;}
.y38_c00178{bottom:453.893333pt;}
.y1b_c00178{bottom:455.493333pt;}
.y37_c00178{bottom:469.226667pt;}
.y11_c00178{bottom:470.960000pt;}
.y35_c00178{bottom:477.626667pt;}
.y36_c00178{bottom:485.760000pt;}
.y10_c00178{bottom:486.693333pt;}
.yf_c00178{bottom:503.093333pt;}
.ye_c00178{bottom:518.960000pt;}
.y1a_c00178{bottom:533.760000pt;}
.yd_c00178{bottom:534.693333pt;}
.y19_c00178{bottom:550.160000pt;}
.yc_c00178{bottom:550.560000pt;}
.y18_c00178{bottom:566.160000pt;}
.yb_c00178{bottom:566.426667pt;}
.y1_c00178{bottom:568.160000pt;}
.ya_c00178{bottom:582.293333pt;}
.y9_c00178{bottom:597.893333pt;}
.y17_c00178{bottom:613.226667pt;}
.y8_c00178{bottom:614.426667pt;}
.y7_c00178{bottom:629.760000pt;}
.y6_c00178{bottom:645.626667pt;}
.y16_c00178{bottom:646.160000pt;}
.y15_c00178{bottom:660.960000pt;}
.y5_c00178{bottom:661.893333pt;}
.y14_c00178{bottom:677.493333pt;}
.y4_c00178{bottom:678.960000pt;}
.y13_c00178{bottom:693.626667pt;}
.y3_c00178{bottom:694.160000pt;}
.y2_c00178{bottom:711.893333pt;}
.y12_c00178{bottom:712.293333pt;}
.h7_c00178{height:11.733399pt;}
.h8_c00178{height:38.937500pt;}
.h4_c00178{height:53.098667pt;}
.h2_c00178{height:55.893333pt;}
.h6_c00178{height:56.906667pt;}
.h3_c00178{height:65.442667pt;}
.h5_c00178{height:187.242667pt;}
.h0_c00178{height:749.066667pt;}
.h1_c00178{height:749.333333pt;}
.w1_c00178{width:93.222667pt;}
.w0_c00178{width:524.666667pt;}
.x0_c00178{left:0.000000pt;}
.x1_c00178{left:16.133333pt;}
.x11_c00178{left:50.400000pt;}
.x10_c00178{left:62.000000pt;}
.xf_c00178{left:62.933333pt;}
.x13_c00178{left:63.866667pt;}
.x12_c00178{left:64.800000pt;}
.x6_c00178{left:66.000000pt;}
.x4_c00178{left:67.733333pt;}
.x5_c00178{left:68.666667pt;}
.x3_c00178{left:69.600000pt;}
.xd_c00178{left:71.066667pt;}
.xe_c00178{left:72.000000pt;}
.x2_c00178{left:188.666667pt;}
.x1a_c00178{left:219.501546pt;}
.x17_c00178{left:252.533333pt;}
.x16_c00178{left:253.733333pt;}
.x15_c00178{left:257.466667pt;}
.x7_c00178{left:258.533333pt;}
.x8_c00178{left:259.866667pt;}
.x18_c00178{left:260.933333pt;}
.xa_c00178{left:276.000000pt;}
.xb_c00178{left:289.733333pt;}
.x14_c00178{left:301.200000pt;}
.xc_c00178{left:322.533333pt;}
.x9_c00178{left:341.733333pt;}
.x19_c00178{left:348.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_89e4bc23237e60956aa68745.woff2')format("woff");}.ff1_c00179{font-family:ff1_c00179;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00179;src:url('chunks/assets/font_987f481f2776e1b5bc9c38da.woff2')format("woff");}.ff2_c00179{font-family:ff2_c00179;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00179;src:url('chunks/assets/font_164144be587d363e8d22d49a.woff2')format("woff");}.ff3_c00179{font-family:ff3_c00179;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00179;src:url('chunks/assets/font_6016860c0d973f51b7553b49.woff2')format("woff");}.ff4_c00179{font-family:ff4_c00179;line-height:1.575000;font-style:normal;font-weight:normal;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_7d057ef27b706ae6e11964c0.woff2')format("woff");}.ff5_c00179{font-family:ff5_c00179;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00179;src:url('chunks/assets/font_db5673bbffddb1baa3a4e101.woff2')format("woff");}.ff6_c00179{font-family:ff6_c00179;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00179;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff7_c00179{font-family:ff7_c00179;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00179{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00179{vertical-align:0.000000px;}
.ls8_c00179{letter-spacing:-6.000000px;}
.ls6_c00179{letter-spacing:0.000000px;}
.ls3_c00179{letter-spacing:2.880000px;}
.ls1_c00179{letter-spacing:3.000000px;}
.ls0_c00179{letter-spacing:5.340000px;}
.ls7_c00179{letter-spacing:6.000000px;}
.ls4_c00179{letter-spacing:6.540000px;}
.ls2_c00179{letter-spacing:8.580000px;}
.ls5_c00179{letter-spacing:8.640000px;}
.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;}
}
.ws4_c00179{word-spacing:-29.295000px;}
.ws6_c00179{word-spacing:-23.340000px;}
.ws5_c00179{word-spacing:-18.060000px;}
.ws3_c00179{word-spacing:-17.340000px;}
.ws0_c00179{word-spacing:-14.160000px;}
.ws2_c00179{word-spacing:-6.036000px;}
.ws1_c00179{word-spacing:-4.140000px;}
.ws8_c00179{word-spacing:0.000000px;}
.ws7_c00179{word-spacing:1.020000px;}
._2a_c00179{margin-left:-26.520000px;}
._28_c00179{margin-left:-18.201000px;}
._2c_c00179{margin-left:-16.920000px;}
._1f_c00179{margin-left:-14.880000px;}
._23_c00179{margin-left:-12.600000px;}
._11_c00179{margin-left:-11.160000px;}
._22_c00179{margin-left:-10.020000px;}
._20_c00179{margin-left:-8.820000px;}
._2_c00179{margin-left:-7.560000px;}
._13_c00179{margin-left:-6.300000px;}
._1d_c00179{margin-left:-5.220000px;}
._3_c00179{margin-left:-4.140000px;}
._10_c00179{margin-left:-3.000000px;}
._19_c00179{margin-left:-1.560000px;}
._12_c00179{width:1.980000px;}
._1_c00179{width:3.000000px;}
._0_c00179{width:4.260000px;}
._1a_c00179{width:5.286000px;}
._15_c00179{width:6.300000px;}
._18_c00179{width:7.314000px;}
._7_c00179{width:8.400000px;}
._f_c00179{width:9.960000px;}
._1b_c00179{width:11.880000px;}
._6_c00179{width:13.200000px;}
._1c_c00179{width:14.220000px;}
._4_c00179{width:15.300000px;}
._17_c00179{width:16.941000px;}
._a_c00179{width:19.260000px;}
._9_c00179{width:20.460000px;}
._2b_c00179{width:22.620000px;}
._8_c00179{width:23.700000px;}
._27_c00179{width:24.780000px;}
._24_c00179{width:26.520000px;}
._c_c00179{width:28.080000px;}
._e_c00179{width:30.420000px;}
._b_c00179{width:31.740000px;}
._21_c00179{width:33.888000px;}
._d_c00179{width:36.000000px;}
._25_c00179{width:62.700000px;}
._14_c00179{width:94.740000px;}
._26_c00179{width:123.120000px;}
._1e_c00179{width:144.660000px;}
._29_c00179{width:192.006000px;}
._16_c00179{width:278.547000px;}
._5_c00179{width:311.040000px;}
.fc2_c00179{color:transparent;}
.fc1_c00179{color:rgb(128,128,128);}
.fc0_c00179{color:rgb(0,0,0);}
.fs1_c00179{font-size:24.000000px;}
.fs3_c00179{font-size:45.000000px;}
.fs4_c00179{font-size:48.000000px;}
.fs2_c00179{font-size:51.000000px;}
.fs0_c00179{font-size:60.000000px;}
.y0_c00179{bottom:0.000000px;}
.y54_c00179{bottom:3.105000px;}
.y53_c00179{bottom:7.228355px;}
.y52_c00179{bottom:39.735000px;}
.y2d_c00179{bottom:55.035000px;}
.y51_c00179{bottom:57.585000px;}
.y2c_c00179{bottom:73.935000px;}
.y50_c00179{bottom:76.185000px;}
.y2b_c00179{bottom:92.085000px;}
.y4f_c00179{bottom:94.785000px;}
.y2a_c00179{bottom:109.935000px;}
.y4e_c00179{bottom:113.085000px;}
.y29_c00179{bottom:128.235000px;}
.y4d_c00179{bottom:129.885000px;}
.y28_c00179{bottom:146.085000px;}
.y4c_c00179{bottom:148.785000px;}
.y27_c00179{bottom:164.385000px;}
.y4b_c00179{bottom:165.285000px;}
.y26_c00179{bottom:182.235000px;}
.y4a_c00179{bottom:183.285000px;}
.y25_c00179{bottom:200.835000px;}
.y49_c00179{bottom:201.435000px;}
.y24_c00179{bottom:218.985000px;}
.y48_c00179{bottom:220.035000px;}
.y23_c00179{bottom:237.285000px;}
.y47_c00179{bottom:237.885000px;}
.y22_c00179{bottom:255.435000px;}
.y46_c00179{bottom:256.035000px;}
.y45_c00179{bottom:273.585000px;}
.y21_c00179{bottom:273.735000px;}
.y20_c00179{bottom:291.285000px;}
.y44_c00179{bottom:292.185000px;}
.y1f_c00179{bottom:309.435000px;}
.y43_c00179{bottom:310.035000px;}
.y1e_c00179{bottom:327.585000px;}
.y42_c00179{bottom:327.735000px;}
.y1d_c00179{bottom:345.585000px;}
.y41_c00179{bottom:346.935000px;}
.y1c_c00179{bottom:363.435000px;}
.y40_c00179{bottom:364.035000px;}
.y1b_c00179{bottom:382.335000px;}
.y1a_c00179{bottom:400.185000px;}
.y3f_c00179{bottom:400.485000px;}
.y19_c00179{bottom:417.735000px;}
.y18_c00179{bottom:436.335000px;}
.y3e_c00179{bottom:437.085000px;}
.y3d_c00179{bottom:454.185000px;}
.y17_c00179{bottom:454.485000px;}
.y16_c00179{bottom:472.185000px;}
.y3c_c00179{bottom:473.085000px;}
.y15_c00179{bottom:490.335000px;}
.y3b_c00179{bottom:490.635000px;}
.y14_c00179{bottom:508.185000px;}
.y3a_c00179{bottom:508.935000px;}
.y39_c00179{bottom:526.035000px;}
.y13_c00179{bottom:526.485000px;}
.y12_c00179{bottom:544.635000px;}
.y38_c00179{bottom:544.935000px;}
.y11_c00179{bottom:562.635000px;}
.y37_c00179{bottom:563.235000px;}
.y36_c00179{bottom:580.785000px;}
.y10_c00179{bottom:581.835000px;}
.yf_c00179{bottom:599.085000px;}
.y35_c00179{bottom:599.685000px;}
.y34_c00179{bottom:616.935000px;}
.ye_c00179{bottom:617.835000px;}
.y33_c00179{bottom:635.385000px;}
.yd_c00179{bottom:635.835000px;}
.y32_c00179{bottom:653.385000px;}
.yc_c00179{bottom:654.285000px;}
.y31_c00179{bottom:671.835000px;}
.yb_c00179{bottom:672.285000px;}
.ya_c00179{bottom:689.835000px;}
.y30_c00179{bottom:707.685000px;}
.y9_c00179{bottom:708.435000px;}
.y2f_c00179{bottom:726.285000px;}
.y8_c00179{bottom:726.585000px;}
.y3_c00179{bottom:742.185000px;}
.y2e_c00179{bottom:743.835000px;}
.y7_c00179{bottom:744.135000px;}
.y2_c00179{bottom:762.285000px;}
.y6_c00179{bottom:762.735000px;}
.y5_c00179{bottom:780.285000px;}
.y1_c00179{bottom:780.885000px;}
.y4_c00179{bottom:800.235000px;}
.h5_c00179{height:13.200074px;}
.h6_c00179{height:43.804688px;}
.h4_c00179{height:53.448000px;}
.h2_c00179{height:62.880000px;}
.h3_c00179{height:64.020000px;}
.h1_c00179{height:841.500000px;}
.h0_c00179{height:841.575000px;}
.w2_c00179{width:104.875500px;}
.w0_c00179{width:565.950000px;}
.w1_c00179{width:566.250000px;}
.x0_c00179{left:0.000000px;}
.x2_c00179{left:33.750000px;}
.x1_c00179{left:36.000000px;}
.x9_c00179{left:38.250000px;}
.x8_c00179{left:94.950000px;}
.x6_c00179{left:96.300000px;}
.x5_c00179{left:97.650000px;}
.x4_c00179{left:99.300000px;}
.xa_c00179{left:100.650000px;}
.x3_c00179{left:103.650000px;}
.x7_c00179{left:111.150000px;}
.x15_c00179{left:234.789230px;}
.x13_c00179{left:310.800000px;}
.x12_c00179{left:312.750000px;}
.x11_c00179{left:314.100000px;}
.x10_c00179{left:315.150000px;}
.xf_c00179{left:316.200000px;}
.xe_c00179{left:317.250000px;}
.xd_c00179{left:318.300000px;}
.xb_c00179{left:319.350000px;}
.xc_c00179{left:320.700000px;}
.x14_c00179{left:479.850000px;}
@media print{
.v0_c00179{vertical-align:0.000000pt;}
.ls8_c00179{letter-spacing:-5.333333pt;}
.ls6_c00179{letter-spacing:0.000000pt;}
.ls3_c00179{letter-spacing:2.560000pt;}
.ls1_c00179{letter-spacing:2.666667pt;}
.ls0_c00179{letter-spacing:4.746667pt;}
.ls7_c00179{letter-spacing:5.333333pt;}
.ls4_c00179{letter-spacing:5.813333pt;}
.ls2_c00179{letter-spacing:7.626667pt;}
.ls5_c00179{letter-spacing:7.680000pt;}
.ws4_c00179{word-spacing:-26.040000pt;}
.ws6_c00179{word-spacing:-20.746667pt;}
.ws5_c00179{word-spacing:-16.053333pt;}
.ws3_c00179{word-spacing:-15.413333pt;}
.ws0_c00179{word-spacing:-12.586667pt;}
.ws2_c00179{word-spacing:-5.365333pt;}
.ws1_c00179{word-spacing:-3.680000pt;}
.ws8_c00179{word-spacing:0.000000pt;}
.ws7_c00179{word-spacing:0.906667pt;}
._2a_c00179{margin-left:-23.573333pt;}
._28_c00179{margin-left:-16.178667pt;}
._2c_c00179{margin-left:-15.040000pt;}
._1f_c00179{margin-left:-13.226667pt;}
._23_c00179{margin-left:-11.200000pt;}
._11_c00179{margin-left:-9.920000pt;}
._22_c00179{margin-left:-8.906667pt;}
._20_c00179{margin-left:-7.840000pt;}
._2_c00179{margin-left:-6.720000pt;}
._13_c00179{margin-left:-5.600000pt;}
._1d_c00179{margin-left:-4.640000pt;}
._3_c00179{margin-left:-3.680000pt;}
._10_c00179{margin-left:-2.666667pt;}
._19_c00179{margin-left:-1.386667pt;}
._12_c00179{width:1.760000pt;}
._1_c00179{width:2.666667pt;}
._0_c00179{width:3.786667pt;}
._1a_c00179{width:4.698667pt;}
._15_c00179{width:5.600000pt;}
._18_c00179{width:6.501333pt;}
._7_c00179{width:7.466667pt;}
._f_c00179{width:8.853333pt;}
._1b_c00179{width:10.560000pt;}
._6_c00179{width:11.733333pt;}
._1c_c00179{width:12.640000pt;}
._4_c00179{width:13.600000pt;}
._17_c00179{width:15.058667pt;}
._a_c00179{width:17.120000pt;}
._9_c00179{width:18.186667pt;}
._2b_c00179{width:20.106667pt;}
._8_c00179{width:21.066667pt;}
._27_c00179{width:22.026667pt;}
._24_c00179{width:23.573333pt;}
._c_c00179{width:24.960000pt;}
._e_c00179{width:27.040000pt;}
._b_c00179{width:28.213333pt;}
._21_c00179{width:30.122667pt;}
._d_c00179{width:32.000000pt;}
._25_c00179{width:55.733333pt;}
._14_c00179{width:84.213333pt;}
._26_c00179{width:109.440000pt;}
._1e_c00179{width:128.586667pt;}
._29_c00179{width:170.672000pt;}
._16_c00179{width:247.597333pt;}
._5_c00179{width:276.480000pt;}
.fs1_c00179{font-size:21.333333pt;}
.fs3_c00179{font-size:40.000000pt;}
.fs4_c00179{font-size:42.666667pt;}
.fs2_c00179{font-size:45.333333pt;}
.fs0_c00179{font-size:53.333333pt;}
.y0_c00179{bottom:0.000000pt;}
.y54_c00179{bottom:2.760000pt;}
.y53_c00179{bottom:6.425204pt;}
.y52_c00179{bottom:35.320000pt;}
.y2d_c00179{bottom:48.920000pt;}
.y51_c00179{bottom:51.186667pt;}
.y2c_c00179{bottom:65.720000pt;}
.y50_c00179{bottom:67.720000pt;}
.y2b_c00179{bottom:81.853333pt;}
.y4f_c00179{bottom:84.253333pt;}
.y2a_c00179{bottom:97.720000pt;}
.y4e_c00179{bottom:100.520000pt;}
.y29_c00179{bottom:113.986667pt;}
.y4d_c00179{bottom:115.453333pt;}
.y28_c00179{bottom:129.853333pt;}
.y4c_c00179{bottom:132.253333pt;}
.y27_c00179{bottom:146.120000pt;}
.y4b_c00179{bottom:146.920000pt;}
.y26_c00179{bottom:161.986667pt;}
.y4a_c00179{bottom:162.920000pt;}
.y25_c00179{bottom:178.520000pt;}
.y49_c00179{bottom:179.053333pt;}
.y24_c00179{bottom:194.653333pt;}
.y48_c00179{bottom:195.586667pt;}
.y23_c00179{bottom:210.920000pt;}
.y47_c00179{bottom:211.453333pt;}
.y22_c00179{bottom:227.053333pt;}
.y46_c00179{bottom:227.586667pt;}
.y45_c00179{bottom:243.186667pt;}
.y21_c00179{bottom:243.320000pt;}
.y20_c00179{bottom:258.920000pt;}
.y44_c00179{bottom:259.720000pt;}
.y1f_c00179{bottom:275.053333pt;}
.y43_c00179{bottom:275.586667pt;}
.y1e_c00179{bottom:291.186667pt;}
.y42_c00179{bottom:291.320000pt;}
.y1d_c00179{bottom:307.186667pt;}
.y41_c00179{bottom:308.386667pt;}
.y1c_c00179{bottom:323.053333pt;}
.y40_c00179{bottom:323.586667pt;}
.y1b_c00179{bottom:339.853333pt;}
.y1a_c00179{bottom:355.720000pt;}
.y3f_c00179{bottom:355.986667pt;}
.y19_c00179{bottom:371.320000pt;}
.y18_c00179{bottom:387.853333pt;}
.y3e_c00179{bottom:388.520000pt;}
.y3d_c00179{bottom:403.720000pt;}
.y17_c00179{bottom:403.986667pt;}
.y16_c00179{bottom:419.720000pt;}
.y3c_c00179{bottom:420.520000pt;}
.y15_c00179{bottom:435.853333pt;}
.y3b_c00179{bottom:436.120000pt;}
.y14_c00179{bottom:451.720000pt;}
.y3a_c00179{bottom:452.386667pt;}
.y39_c00179{bottom:467.586667pt;}
.y13_c00179{bottom:467.986667pt;}
.y12_c00179{bottom:484.120000pt;}
.y38_c00179{bottom:484.386667pt;}
.y11_c00179{bottom:500.120000pt;}
.y37_c00179{bottom:500.653333pt;}
.y36_c00179{bottom:516.253333pt;}
.y10_c00179{bottom:517.186667pt;}
.yf_c00179{bottom:532.520000pt;}
.y35_c00179{bottom:533.053333pt;}
.y34_c00179{bottom:548.386667pt;}
.ye_c00179{bottom:549.186667pt;}
.y33_c00179{bottom:564.786667pt;}
.yd_c00179{bottom:565.186667pt;}
.y32_c00179{bottom:580.786667pt;}
.yc_c00179{bottom:581.586667pt;}
.y31_c00179{bottom:597.186667pt;}
.yb_c00179{bottom:597.586667pt;}
.ya_c00179{bottom:613.186667pt;}
.y30_c00179{bottom:629.053333pt;}
.y9_c00179{bottom:629.720000pt;}
.y2f_c00179{bottom:645.586667pt;}
.y8_c00179{bottom:645.853333pt;}
.y3_c00179{bottom:659.720000pt;}
.y2e_c00179{bottom:661.186667pt;}
.y7_c00179{bottom:661.453333pt;}
.y2_c00179{bottom:677.586667pt;}
.y6_c00179{bottom:677.986667pt;}
.y5_c00179{bottom:693.586667pt;}
.y1_c00179{bottom:694.120000pt;}
.y4_c00179{bottom:711.320000pt;}
.h5_c00179{height:11.733399pt;}
.h6_c00179{height:38.937500pt;}
.h4_c00179{height:47.509333pt;}
.h2_c00179{height:55.893333pt;}
.h3_c00179{height:56.906667pt;}
.h1_c00179{height:748.000000pt;}
.h0_c00179{height:748.066667pt;}
.w2_c00179{width:93.222667pt;}
.w0_c00179{width:503.066667pt;}
.w1_c00179{width:503.333333pt;}
.x0_c00179{left:0.000000pt;}
.x2_c00179{left:30.000000pt;}
.x1_c00179{left:32.000000pt;}
.x9_c00179{left:34.000000pt;}
.x8_c00179{left:84.400000pt;}
.x6_c00179{left:85.600000pt;}
.x5_c00179{left:86.800000pt;}
.x4_c00179{left:88.266667pt;}
.xa_c00179{left:89.466667pt;}
.x3_c00179{left:92.133333pt;}
.x7_c00179{left:98.800000pt;}
.x15_c00179{left:208.701538pt;}
.x13_c00179{left:276.266667pt;}
.x12_c00179{left:278.000000pt;}
.x11_c00179{left:279.200000pt;}
.x10_c00179{left:280.133333pt;}
.xf_c00179{left:281.066667pt;}
.xe_c00179{left:282.000000pt;}
.xd_c00179{left:282.933333pt;}
.xb_c00179{left:283.866667pt;}
.xc_c00179{left:285.066667pt;}
.x14_c00179{left:426.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ee663b580c4b402cc9493088.woff2')format("woff");}.ff1_c00180{font-family:ff1_c00180;line-height:1.437000;font-style:normal;font-weight:normal;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_7f43ca22bed6cdd383a89d00.woff2')format("woff");}.ff2_c00180{font-family:ff2_c00180;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00180;src:url('chunks/assets/font_754d30bfd29eac401174ed97.woff2')format("woff");}.ff3_c00180{font-family:ff3_c00180;line-height:1.437000;font-style:normal;font-weight:normal;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_df833c1682dd3c43c9e9dfa9.woff2')format("woff");}.ff4_c00180{font-family:ff4_c00180;line-height:1.575000;font-style:normal;font-weight:normal;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_b034c27b7198da2c47583f3d.woff2')format("woff");}.ff5_c00180{font-family:ff5_c00180;line-height:1.437000;font-style:normal;font-weight:normal;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_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff6_c00180{font-family:ff6_c00180;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00180{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00180{vertical-align:0.000000px;}
.ls2_c00180{letter-spacing:0.000000px;}
.ls1_c00180{letter-spacing:1.680000px;}
.ls0_c00180{letter-spacing:3.000000px;}
.ls3_c00180{letter-spacing:6.000000px;}
.ls4_c00180{letter-spacing:21.000000px;}
.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;}
}
.ws5_c00180{word-spacing:-50.397000px;}
.ws0_c00180{word-spacing:-29.295000px;}
.ws2_c00180{word-spacing:-23.340000px;}
.ws4_c00180{word-spacing:-17.340000px;}
.ws3_c00180{word-spacing:-15.840000px;}
.ws1_c00180{word-spacing:-14.160000px;}
.ws6_c00180{word-spacing:-3.720000px;}
.ws7_c00180{word-spacing:0.000000px;}
._13_c00180{margin-left:-18.270000px;}
._10_c00180{margin-left:-13.200000px;}
._1d_c00180{margin-left:-11.250000px;}
._21_c00180{margin-left:-10.245000px;}
._9_c00180{margin-left:-9.120000px;}
._3_c00180{margin-left:-7.185000px;}
._c_c00180{margin-left:-5.910000px;}
._a_c00180{margin-left:-4.605000px;}
._4_c00180{margin-left:-3.510000px;}
._1_c00180{margin-left:-1.755000px;}
._0_c00180{width:1.620000px;}
._6_c00180{width:3.090000px;}
._5_c00180{width:4.290000px;}
._7_c00180{width:5.610000px;}
._16_c00180{width:6.690000px;}
._8_c00180{width:8.130000px;}
._2_c00180{width:9.780000px;}
._11_c00180{width:11.160000px;}
._b_c00180{width:12.765000px;}
._12_c00180{width:14.520000px;}
._15_c00180{width:16.575000px;}
._e_c00180{width:19.740000px;}
._1b_c00180{width:21.045000px;}
._14_c00180{width:22.380000px;}
._d_c00180{width:23.445000px;}
._17_c00180{width:26.130000px;}
._1e_c00180{width:27.420000px;}
._22_c00180{width:28.695000px;}
._19_c00180{width:39.840000px;}
._18_c00180{width:40.950000px;}
._1f_c00180{width:59.415000px;}
._1c_c00180{width:118.095000px;}
._20_c00180{width:157.860000px;}
._f_c00180{width:191.445000px;}
._1a_c00180{width:437.940000px;}
.fc2_c00180{color:transparent;}
.fc1_c00180{color:rgb(128,128,128);}
.fc0_c00180{color:rgb(0,0,0);}
.fs1_c00180{font-size:45.000000px;}
.fs3_c00180{font-size:48.000000px;}
.fs0_c00180{font-size:60.000000px;}
.fs2_c00180{font-size:123.000000px;}
.y0_c00180{bottom:0.000000px;}
.y34_c00180{bottom:3.105000px;}
.y33_c00180{bottom:7.228355px;}
.y32_c00180{bottom:46.485000px;}
.y31_c00180{bottom:195.435000px;}
.y1a_c00180{bottom:324.885000px;}
.y30_c00180{bottom:342.885000px;}
.y19_c00180{bottom:344.235000px;}
.y2f_c00180{bottom:360.135000px;}
.y18_c00180{bottom:361.785000px;}
.y2e_c00180{bottom:378.285000px;}
.y17_c00180{bottom:380.385000px;}
.y2d_c00180{bottom:396.885000px;}
.y16_c00180{bottom:398.235000px;}
.y2c_c00180{bottom:413.985000px;}
.y15_c00180{bottom:416.835000px;}
.y2b_c00180{bottom:433.335000px;}
.y14_c00180{bottom:434.385000px;}
.y2a_c00180{bottom:451.485000px;}
.y13_c00180{bottom:452.235000px;}
.y29_c00180{bottom:469.485000px;}
.y12_c00180{bottom:470.835000px;}
.y28_c00180{bottom:487.635000px;}
.y11_c00180{bottom:487.935000px;}
.y27_c00180{bottom:505.785000px;}
.y10_c00180{bottom:505.935000px;}
.y26_c00180{bottom:523.335000px;}
.yf_c00180{bottom:524.085000px;}
.ye_c00180{bottom:541.935000px;}
.y25_c00180{bottom:559.485000px;}
.yd_c00180{bottom:560.235000px;}
.yc_c00180{bottom:578.085000px;}
.y24_c00180{bottom:595.935000px;}
.yb_c00180{bottom:596.235000px;}
.ya_c00180{bottom:614.535000px;}
.y9_c00180{bottom:631.785000px;}
.y23_c00180{bottom:632.685000px;}
.y22_c00180{bottom:650.235000px;}
.y8_c00180{bottom:650.385000px;}
.y7_c00180{bottom:667.935000px;}
.y21_c00180{bottom:668.535000px;}
.y6_c00180{bottom:686.385000px;}
.y5_c00180{bottom:704.235000px;}
.y20_c00180{bottom:704.385000px;}
.y4_c00180{bottom:721.935000px;}
.y1f_c00180{bottom:722.835000px;}
.y3_c00180{bottom:740.385000px;}
.y1e_c00180{bottom:740.685000px;}
.y2_c00180{bottom:758.235000px;}
.y1d_c00180{bottom:758.985000px;}
.y1_c00180{bottom:776.535000px;}
.y1c_c00180{bottom:776.835000px;}
.y1b_c00180{bottom:795.735000px;}
.h5_c00180{height:13.200074px;}
.h6_c00180{height:43.804688px;}
.h3_c00180{height:62.880000px;}
.h2_c00180{height:64.020000px;}
.h4_c00180{height:128.904000px;}
.h1_c00180{height:834.750000px;}
.h0_c00180{height:834.825000px;}
.w2_c00180{width:104.875500px;}
.w0_c00180{width:584.850000px;}
.w1_c00180{width:585.000000px;}
.x0_c00180{left:0.000000px;}
.x1_c00180{left:73.200000px;}
.x3_c00180{left:75.600000px;}
.x2_c00180{left:76.650000px;}
.x4_c00180{left:78.600000px;}
.x11_c00180{left:244.239258px;}
.x5_c00180{left:286.200000px;}
.xb_c00180{left:287.250000px;}
.xa_c00180{left:288.450000px;}
.x8_c00180{left:289.500000px;}
.x9_c00180{left:290.550000px;}
.x7_c00180{left:291.600000px;}
.x6_c00180{left:292.650000px;}
.xc_c00180{left:299.400000px;}
.xd_c00180{left:321.900000px;}
.xe_c00180{left:343.800000px;}
.xf_c00180{left:363.450000px;}
.x10_c00180{left:406.950000px;}
@media print{
.v0_c00180{vertical-align:0.000000pt;}
.ls2_c00180{letter-spacing:0.000000pt;}
.ls1_c00180{letter-spacing:1.493333pt;}
.ls0_c00180{letter-spacing:2.666667pt;}
.ls3_c00180{letter-spacing:5.333333pt;}
.ls4_c00180{letter-spacing:18.666667pt;}
.ws5_c00180{word-spacing:-44.797333pt;}
.ws0_c00180{word-spacing:-26.040000pt;}
.ws2_c00180{word-spacing:-20.746667pt;}
.ws4_c00180{word-spacing:-15.413333pt;}
.ws3_c00180{word-spacing:-14.080000pt;}
.ws1_c00180{word-spacing:-12.586667pt;}
.ws6_c00180{word-spacing:-3.306667pt;}
.ws7_c00180{word-spacing:0.000000pt;}
._13_c00180{margin-left:-16.240000pt;}
._10_c00180{margin-left:-11.733333pt;}
._1d_c00180{margin-left:-10.000000pt;}
._21_c00180{margin-left:-9.106667pt;}
._9_c00180{margin-left:-8.106667pt;}
._3_c00180{margin-left:-6.386667pt;}
._c_c00180{margin-left:-5.253333pt;}
._a_c00180{margin-left:-4.093333pt;}
._4_c00180{margin-left:-3.120000pt;}
._1_c00180{margin-left:-1.560000pt;}
._0_c00180{width:1.440000pt;}
._6_c00180{width:2.746667pt;}
._5_c00180{width:3.813333pt;}
._7_c00180{width:4.986667pt;}
._16_c00180{width:5.946667pt;}
._8_c00180{width:7.226667pt;}
._2_c00180{width:8.693333pt;}
._11_c00180{width:9.920000pt;}
._b_c00180{width:11.346667pt;}
._12_c00180{width:12.906667pt;}
._15_c00180{width:14.733333pt;}
._e_c00180{width:17.546667pt;}
._1b_c00180{width:18.706667pt;}
._14_c00180{width:19.893333pt;}
._d_c00180{width:20.840000pt;}
._17_c00180{width:23.226667pt;}
._1e_c00180{width:24.373333pt;}
._22_c00180{width:25.506667pt;}
._19_c00180{width:35.413333pt;}
._18_c00180{width:36.400000pt;}
._1f_c00180{width:52.813333pt;}
._1c_c00180{width:104.973333pt;}
._20_c00180{width:140.320000pt;}
._f_c00180{width:170.173333pt;}
._1a_c00180{width:389.280000pt;}
.fs1_c00180{font-size:40.000000pt;}
.fs3_c00180{font-size:42.666667pt;}
.fs0_c00180{font-size:53.333333pt;}
.fs2_c00180{font-size:109.333333pt;}
.y0_c00180{bottom:0.000000pt;}
.y34_c00180{bottom:2.760000pt;}
.y33_c00180{bottom:6.425204pt;}
.y32_c00180{bottom:41.320000pt;}
.y31_c00180{bottom:173.720000pt;}
.y1a_c00180{bottom:288.786667pt;}
.y30_c00180{bottom:304.786667pt;}
.y19_c00180{bottom:305.986667pt;}
.y2f_c00180{bottom:320.120000pt;}
.y18_c00180{bottom:321.586667pt;}
.y2e_c00180{bottom:336.253333pt;}
.y17_c00180{bottom:338.120000pt;}
.y2d_c00180{bottom:352.786667pt;}
.y16_c00180{bottom:353.986667pt;}
.y2c_c00180{bottom:367.986667pt;}
.y15_c00180{bottom:370.520000pt;}
.y2b_c00180{bottom:385.186667pt;}
.y14_c00180{bottom:386.120000pt;}
.y2a_c00180{bottom:401.320000pt;}
.y13_c00180{bottom:401.986667pt;}
.y29_c00180{bottom:417.320000pt;}
.y12_c00180{bottom:418.520000pt;}
.y28_c00180{bottom:433.453333pt;}
.y11_c00180{bottom:433.720000pt;}
.y27_c00180{bottom:449.586667pt;}
.y10_c00180{bottom:449.720000pt;}
.y26_c00180{bottom:465.186667pt;}
.yf_c00180{bottom:465.853333pt;}
.ye_c00180{bottom:481.720000pt;}
.y25_c00180{bottom:497.320000pt;}
.yd_c00180{bottom:497.986667pt;}
.yc_c00180{bottom:513.853333pt;}
.y24_c00180{bottom:529.720000pt;}
.yb_c00180{bottom:529.986667pt;}
.ya_c00180{bottom:546.253333pt;}
.y9_c00180{bottom:561.586667pt;}
.y23_c00180{bottom:562.386667pt;}
.y22_c00180{bottom:577.986667pt;}
.y8_c00180{bottom:578.120000pt;}
.y7_c00180{bottom:593.720000pt;}
.y21_c00180{bottom:594.253333pt;}
.y6_c00180{bottom:610.120000pt;}
.y5_c00180{bottom:625.986667pt;}
.y20_c00180{bottom:626.120000pt;}
.y4_c00180{bottom:641.720000pt;}
.y1f_c00180{bottom:642.520000pt;}
.y3_c00180{bottom:658.120000pt;}
.y1e_c00180{bottom:658.386667pt;}
.y2_c00180{bottom:673.986667pt;}
.y1d_c00180{bottom:674.653333pt;}
.y1_c00180{bottom:690.253333pt;}
.y1c_c00180{bottom:690.520000pt;}
.y1b_c00180{bottom:707.320000pt;}
.h5_c00180{height:11.733399pt;}
.h6_c00180{height:38.937500pt;}
.h3_c00180{height:55.893333pt;}
.h2_c00180{height:56.906667pt;}
.h4_c00180{height:114.581333pt;}
.h1_c00180{height:742.000000pt;}
.h0_c00180{height:742.066667pt;}
.w2_c00180{width:93.222667pt;}
.w0_c00180{width:519.866667pt;}
.w1_c00180{width:520.000000pt;}
.x0_c00180{left:0.000000pt;}
.x1_c00180{left:65.066667pt;}
.x3_c00180{left:67.200000pt;}
.x2_c00180{left:68.133333pt;}
.x4_c00180{left:69.866667pt;}
.x11_c00180{left:217.101563pt;}
.x5_c00180{left:254.400000pt;}
.xb_c00180{left:255.333333pt;}
.xa_c00180{left:256.400000pt;}
.x8_c00180{left:257.333333pt;}
.x9_c00180{left:258.266667pt;}
.x7_c00180{left:259.200000pt;}
.x6_c00180{left:260.133333pt;}
.xc_c00180{left:266.133333pt;}
.xd_c00180{left:286.133333pt;}
.xe_c00180{left:305.600000pt;}
.xf_c00180{left:323.066667pt;}
.x10_c00180{left:361.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_5d5c6fb092ede8a889f570bc.woff2')format("woff");}.ff1_c00181{font-family:ff1_c00181;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00181;src:url('chunks/assets/font_9e517e05cf2d9bafa39ce2e1.woff2')format("woff");}.ff2_c00181{font-family:ff2_c00181;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00181;src:url('chunks/assets/font_24237709a2a49cca946667ae.woff2')format("woff");}.ff3_c00181{font-family:ff3_c00181;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00181;src:url('chunks/assets/font_18ed6ad033c215cd644b2bd1.woff2')format("woff");}.ff4_c00181{font-family:ff4_c00181;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00181;src:url('chunks/assets/font_0ce391de997f24f9f9dd37f4.woff2')format("woff");}.ff5_c00181{font-family:ff5_c00181;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00181;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff6_c00181{font-family:ff6_c00181;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00181{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00181{vertical-align:0.000000px;}
.ls6_c00181{letter-spacing:0.000000px;}
.ls3_c00181{letter-spacing:1.005000px;}
.ls7_c00181{letter-spacing:3.000000px;}
.ls0_c00181{letter-spacing:3.300000px;}
.ls2_c00181{letter-spacing:7.080000px;}
.ls4_c00181{letter-spacing:7.293000px;}
.ls1_c00181{letter-spacing:12.900000px;}
.ls5_c00181{letter-spacing:24.000000px;}
.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;}
}
.ws3_c00181{word-spacing:-29.295000px;}
.ws0_c00181{word-spacing:-25.095000px;}
.ws2_c00181{word-spacing:-14.160000px;}
.ws1_c00181{word-spacing:-13.452000px;}
.ws4_c00181{word-spacing:0.000000px;}
._18_c00181{margin-left:-12.681000px;}
._d_c00181{margin-left:-8.505000px;}
._6_c00181{margin-left:-7.455000px;}
._e_c00181{margin-left:-6.405000px;}
._8_c00181{margin-left:-5.355000px;}
._a_c00181{margin-left:-3.465000px;}
._b_c00181{margin-left:-2.100000px;}
._14_c00181{margin-left:-1.008000px;}
._12_c00181{width:1.092000px;}
._11_c00181{width:3.072000px;}
._10_c00181{width:4.368000px;}
._f_c00181{width:5.559000px;}
._17_c00181{width:6.561000px;}
._5_c00181{width:7.665000px;}
._19_c00181{width:8.694000px;}
._0_c00181{width:9.765000px;}
._1_c00181{width:11.970000px;}
._3_c00181{width:13.125000px;}
._2_c00181{width:14.385000px;}
._16_c00181{width:16.080000px;}
._13_c00181{width:17.343000px;}
._15_c00181{width:19.113000px;}
._1a_c00181{width:27.000000px;}
._c_c00181{width:34.125000px;}
._7_c00181{width:47.880000px;}
._9_c00181{width:55.965000px;}
._4_c00181{width:75.600000px;}
._1b_c00181{width:1374.660000px;}
.fc2_c00181{color:transparent;}
.fc1_c00181{color:rgb(128,128,128);}
.fc0_c00181{color:rgb(0,0,0);}
.fs2_c00181{font-size:39.000000px;}
.fs4_c00181{font-size:45.000000px;}
.fs5_c00181{font-size:48.000000px;}
.fs1_c00181{font-size:57.000000px;}
.fs3_c00181{font-size:60.000000px;}
.fs0_c00181{font-size:105.000000px;}
.y0_c00181{bottom:0.000000px;}
.y27_c00181{bottom:3.105000px;}
.y26_c00181{bottom:7.228369px;}
.y25_c00181{bottom:42.570000px;}
.y24_c00181{bottom:60.120000px;}
.y23_c00181{bottom:79.020000px;}
.y22_c00181{bottom:97.170000px;}
.y21_c00181{bottom:115.320000px;}
.y20_c00181{bottom:133.020000px;}
.y1f_c00181{bottom:151.170000px;}
.y1e_c00181{bottom:168.720000px;}
.y1d_c00181{bottom:186.870000px;}
.y1c_c00181{bottom:204.570000px;}
.y1b_c00181{bottom:222.420000px;}
.y1a_c00181{bottom:241.020000px;}
.y19_c00181{bottom:258.120000px;}
.y18_c00181{bottom:276.720000px;}
.y17_c00181{bottom:294.570000px;}
.y16_c00181{bottom:312.420000px;}
.y15_c00181{bottom:330.720000px;}
.y14_c00181{bottom:348.870000px;}
.y13_c00181{bottom:366.570000px;}
.y12_c00181{bottom:384.420000px;}
.y11_c00181{bottom:402.570000px;}
.y10_c00181{bottom:420.570000px;}
.yf_c00181{bottom:439.020000px;}
.ye_c00181{bottom:457.020000px;}
.yd_c00181{bottom:474.870000px;}
.yc_c00181{bottom:493.020000px;}
.yb_c00181{bottom:511.320000px;}
.ya_c00181{bottom:529.170000px;}
.y9_c00181{bottom:546.720000px;}
.y8_c00181{bottom:565.020000px;}
.y7_c00181{bottom:582.870000px;}
.y6_c00181{bottom:601.320000px;}
.y5_c00181{bottom:635.070000px;}
.y4_c00181{bottom:652.320000px;}
.y3_c00181{bottom:690.570000px;}
.y2_c00181{bottom:722.220000px;}
.y1_c00181{bottom:752.970000px;}
.h5_c00181{height:13.200073px;}
.h6_c00181{height:43.804688px;}
.h3_c00181{height:59.736000px;}
.h4_c00181{height:62.880000px;}
.h2_c00181{height:110.040000px;}
.h0_c00181{height:829.950000px;}
.h1_c00181{height:830.250000px;}
.w2_c00181{width:104.875500px;}
.w0_c00181{width:557.850000px;}
.w1_c00181{width:558.000000px;}
.x0_c00181{left:0.000000px;}
.xd_c00181{left:96.150000px;}
.xc_c00181{left:97.200000px;}
.xb_c00181{left:98.550000px;}
.xa_c00181{left:99.600000px;}
.x9_c00181{left:100.950000px;}
.x4_c00181{left:105.300000px;}
.xe_c00181{left:113.100000px;}
.x5_c00181{left:121.200000px;}
.x1_c00181{left:148.800000px;}
.x2_c00181{left:198.900000px;}
.xf_c00181{left:230.739258px;}
.x6_c00181{left:240.600000px;}
.x8_c00181{left:244.350000px;}
.x3_c00181{left:246.000000px;}
.x7_c00181{left:247.800000px;}
@media print{
.v0_c00181{vertical-align:0.000000pt;}
.ls6_c00181{letter-spacing:0.000000pt;}
.ls3_c00181{letter-spacing:0.893333pt;}
.ls7_c00181{letter-spacing:2.666667pt;}
.ls0_c00181{letter-spacing:2.933333pt;}
.ls2_c00181{letter-spacing:6.293333pt;}
.ls4_c00181{letter-spacing:6.482667pt;}
.ls1_c00181{letter-spacing:11.466667pt;}
.ls5_c00181{letter-spacing:21.333333pt;}
.ws3_c00181{word-spacing:-26.040000pt;}
.ws0_c00181{word-spacing:-22.306667pt;}
.ws2_c00181{word-spacing:-12.586667pt;}
.ws1_c00181{word-spacing:-11.957333pt;}
.ws4_c00181{word-spacing:0.000000pt;}
._18_c00181{margin-left:-11.272000pt;}
._d_c00181{margin-left:-7.560000pt;}
._6_c00181{margin-left:-6.626667pt;}
._e_c00181{margin-left:-5.693333pt;}
._8_c00181{margin-left:-4.760000pt;}
._a_c00181{margin-left:-3.080000pt;}
._b_c00181{margin-left:-1.866667pt;}
._14_c00181{margin-left:-0.896000pt;}
._12_c00181{width:0.970667pt;}
._11_c00181{width:2.730667pt;}
._10_c00181{width:3.882667pt;}
._f_c00181{width:4.941333pt;}
._17_c00181{width:5.832000pt;}
._5_c00181{width:6.813333pt;}
._19_c00181{width:7.728000pt;}
._0_c00181{width:8.680000pt;}
._1_c00181{width:10.640000pt;}
._3_c00181{width:11.666667pt;}
._2_c00181{width:12.786667pt;}
._16_c00181{width:14.293333pt;}
._13_c00181{width:15.416000pt;}
._15_c00181{width:16.989333pt;}
._1a_c00181{width:24.000000pt;}
._c_c00181{width:30.333333pt;}
._7_c00181{width:42.560000pt;}
._9_c00181{width:49.746667pt;}
._4_c00181{width:67.200000pt;}
._1b_c00181{width:1221.920000pt;}
.fs2_c00181{font-size:34.666667pt;}
.fs4_c00181{font-size:40.000000pt;}
.fs5_c00181{font-size:42.666667pt;}
.fs1_c00181{font-size:50.666667pt;}
.fs3_c00181{font-size:53.333333pt;}
.fs0_c00181{font-size:93.333333pt;}
.y0_c00181{bottom:0.000000pt;}
.y27_c00181{bottom:2.760000pt;}
.y26_c00181{bottom:6.425217pt;}
.y25_c00181{bottom:37.840000pt;}
.y24_c00181{bottom:53.440000pt;}
.y23_c00181{bottom:70.240000pt;}
.y22_c00181{bottom:86.373333pt;}
.y21_c00181{bottom:102.506667pt;}
.y20_c00181{bottom:118.240000pt;}
.y1f_c00181{bottom:134.373333pt;}
.y1e_c00181{bottom:149.973333pt;}
.y1d_c00181{bottom:166.106667pt;}
.y1c_c00181{bottom:181.840000pt;}
.y1b_c00181{bottom:197.706667pt;}
.y1a_c00181{bottom:214.240000pt;}
.y19_c00181{bottom:229.440000pt;}
.y18_c00181{bottom:245.973333pt;}
.y17_c00181{bottom:261.840000pt;}
.y16_c00181{bottom:277.706667pt;}
.y15_c00181{bottom:293.973333pt;}
.y14_c00181{bottom:310.106667pt;}
.y13_c00181{bottom:325.840000pt;}
.y12_c00181{bottom:341.706667pt;}
.y11_c00181{bottom:357.840000pt;}
.y10_c00181{bottom:373.840000pt;}
.yf_c00181{bottom:390.240000pt;}
.ye_c00181{bottom:406.240000pt;}
.yd_c00181{bottom:422.106667pt;}
.yc_c00181{bottom:438.240000pt;}
.yb_c00181{bottom:454.506667pt;}
.ya_c00181{bottom:470.373333pt;}
.y9_c00181{bottom:485.973333pt;}
.y8_c00181{bottom:502.240000pt;}
.y7_c00181{bottom:518.106667pt;}
.y6_c00181{bottom:534.506667pt;}
.y5_c00181{bottom:564.506667pt;}
.y4_c00181{bottom:579.840000pt;}
.y3_c00181{bottom:613.840000pt;}
.y2_c00181{bottom:641.973333pt;}
.y1_c00181{bottom:669.306667pt;}
.h5_c00181{height:11.733399pt;}
.h6_c00181{height:38.937500pt;}
.h3_c00181{height:53.098667pt;}
.h4_c00181{height:55.893333pt;}
.h2_c00181{height:97.813333pt;}
.h0_c00181{height:737.733333pt;}
.h1_c00181{height:738.000000pt;}
.w2_c00181{width:93.222667pt;}
.w0_c00181{width:495.866667pt;}
.w1_c00181{width:496.000000pt;}
.x0_c00181{left:0.000000pt;}
.xd_c00181{left:85.466667pt;}
.xc_c00181{left:86.400000pt;}
.xb_c00181{left:87.600000pt;}
.xa_c00181{left:88.533333pt;}
.x9_c00181{left:89.733333pt;}
.x4_c00181{left:93.600000pt;}
.xe_c00181{left:100.533333pt;}
.x5_c00181{left:107.733333pt;}
.x1_c00181{left:132.266667pt;}
.x2_c00181{left:176.800000pt;}
.xf_c00181{left:205.101563pt;}
.x6_c00181{left:213.866667pt;}
.x8_c00181{left:217.200000pt;}
.x3_c00181{left:218.666667pt;}
.x7_c00181{left:220.266667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_7f997350a71cdd0ace3ca9d0.woff2')format("woff");}.ff1_c00182{font-family:ff1_c00182;line-height:1.437000;font-style:normal;font-weight:normal;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_bb4cc60ee2d4b3d886e3c3bd.woff2')format("woff");}.ff2_c00182{font-family:ff2_c00182;line-height:1.437000;font-style:normal;font-weight:normal;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_371360a46846365b946ee1ac.woff2')format("woff");}.ff3_c00182{font-family:ff3_c00182;line-height:1.437000;font-style:normal;font-weight:normal;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_a81a7b25ca2ca136c1f07867.woff2')format("woff");}.ff4_c00182{font-family:ff4_c00182;line-height:1.437000;font-style:normal;font-weight:normal;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_1ece5a47aa6e11660c73929d.woff2')format("woff");}.ff5_c00182{font-family:ff5_c00182;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00182;src:url('chunks/assets/font_adcb409e3b0a9b6a63dcce53.woff2')format("woff");}.ff6_c00182{font-family:ff6_c00182;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00182;src:url('chunks/assets/font_7a8a8c9c4f7f5d76e4ba924e.woff2')format("woff");}.ff7_c00182{font-family:ff7_c00182;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00182;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff8_c00182{font-family:ff8_c00182;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00182{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00182{vertical-align:0.000000px;}
.v2_c00182{vertical-align:7.200000px;}
.v1_c00182{vertical-align:97.200000px;}
.ls5_c00182{letter-spacing:0.000000px;}
.ls0_c00182{letter-spacing:3.000000px;}
.ls3_c00182{letter-spacing:7.605000px;}
.ls6_c00182{letter-spacing:9.000000px;}
.ls2_c00182{letter-spacing:21.261000px;}
.ls1_c00182{letter-spacing:22.005000px;}
.ls4_c00182{letter-spacing:821.220000px;}
.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.760000px;}
.ws2_c00182{word-spacing:-31.746000px;}
.ws5_c00182{word-spacing:-23.160000px;}
.ws4_c00182{word-spacing:-18.813000px;}
.ws3_c00182{word-spacing:-15.576000px;}
.ws1_c00182{word-spacing:-14.160000px;}
.ws6_c00182{word-spacing:0.000000px;}
._28_c00182{margin-left:-25.572000px;}
._29_c00182{margin-left:-16.560000px;}
._21_c00182{margin-left:-15.384000px;}
._c_c00182{margin-left:-11.328000px;}
._33_c00182{margin-left:-10.056000px;}
._d_c00182{margin-left:-8.928000px;}
._e_c00182{margin-left:-7.632000px;}
._b_c00182{margin-left:-6.192000px;}
._5_c00182{margin-left:-5.160000px;}
._1_c00182{margin-left:-3.360000px;}
._0_c00182{margin-left:-1.800000px;}
._7_c00182{width:1.140000px;}
._8_c00182{width:2.280000px;}
._2_c00182{width:4.140000px;}
._3_c00182{width:5.580000px;}
._6_c00182{width:7.800000px;}
._4_c00182{width:9.420000px;}
._11_c00182{width:10.800000px;}
._2c_c00182{width:11.820000px;}
._f_c00182{width:12.840000px;}
._1b_c00182{width:13.980000px;}
._17_c00182{width:15.324000px;}
._a_c00182{width:17.460000px;}
._1f_c00182{width:19.368000px;}
._18_c00182{width:20.580000px;}
._10_c00182{width:22.020000px;}
._20_c00182{width:24.120000px;}
._13_c00182{width:25.452000px;}
._1d_c00182{width:27.072000px;}
._15_c00182{width:29.400000px;}
._14_c00182{width:31.812000px;}
._1a_c00182{width:40.380000px;}
._26_c00182{width:42.720000px;}
._25_c00182{width:44.580000px;}
._24_c00182{width:46.524000px;}
._12_c00182{width:48.672000px;}
._23_c00182{width:49.812000px;}
._16_c00182{width:51.960000px;}
._1e_c00182{width:53.496000px;}
._19_c00182{width:55.380000px;}
._1c_c00182{width:61.128000px;}
._2d_c00182{width:65.100000px;}
._31_c00182{width:70.860000px;}
._27_c00182{width:74.760000px;}
._38_c00182{width:85.140000px;}
._2e_c00182{width:91.620000px;}
._35_c00182{width:93.000000px;}
._36_c00182{width:102.348000px;}
._2f_c00182{width:159.060000px;}
._34_c00182{width:204.180000px;}
._22_c00182{width:205.608000px;}
._9_c00182{width:219.120000px;}
._37_c00182{width:294.420000px;}
._30_c00182{width:332.280000px;}
._2b_c00182{width:356.448000px;}
._32_c00182{width:410.922000px;}
._2a_c00182{width:569.460000px;}
.fc2_c00182{color:transparent;}
.fc1_c00182{color:rgb(128,128,128);}
.fc0_c00182{color:rgb(0,0,0);}
.fs2_c00182{font-size:45.000000px;}
.fs1_c00182{font-size:48.000000px;}
.fs0_c00182{font-size:60.000000px;}
.fs4_c00182{font-size:63.000000px;}
.fs5_c00182{font-size:66.000000px;}
.fs3_c00182{font-size:189.000000px;}
.y0_c00182{bottom:0.000000px;}
.y2a_c00182{bottom:3.105000px;}
.y29_c00182{bottom:7.228355px;}
.y28_c00182{bottom:19.935000px;}
.y27_c00182{bottom:40.485000px;}
.y26_c00182{bottom:58.785000px;}
.y25_c00182{bottom:76.335000px;}
.y24_c00182{bottom:105.285000px;}
.y23_c00182{bottom:119.385000px;}
.y22_c00182{bottom:139.635000px;}
.y21_c00182{bottom:159.285000px;}
.y20_c00182{bottom:177.435000px;}
.y1f_c00182{bottom:194.985000px;}
.y1e_c00182{bottom:214.185000px;}
.y1d_c00182{bottom:230.385000px;}
.y1c_c00182{bottom:248.685000px;}
.y1b_c00182{bottom:264.285000px;}
.y1a_c00182{bottom:285.735000px;}
.y19_c00182{bottom:303.285000px;}
.y18_c00182{bottom:320.835000px;}
.y17_c00182{bottom:340.185000px;}
.y16_c00182{bottom:357.735000px;}
.y15_c00182{bottom:374.835000px;}
.y14_c00182{bottom:392.835000px;}
.y13_c00182{bottom:412.035000px;}
.y12_c00182{bottom:430.335000px;}
.y11_c00182{bottom:449.085000px;}
.y10_c00182{bottom:465.735000px;}
.yf_c00182{bottom:484.935000px;}
.ye_c00182{bottom:503.235000px;}
.yd_c00182{bottom:521.985000px;}
.yc_c00182{bottom:539.535000px;}
.yb_c00182{bottom:556.185000px;}
.ya_c00182{bottom:575.685000px;}
.y9_c00182{bottom:592.185000px;}
.y8_c00182{bottom:610.185000px;}
.y7_c00182{bottom:628.785000px;}
.y5_c00182{bottom:641.535000px;}
.y6_c00182{bottom:646.335000px;}
.y4_c00182{bottom:702.285000px;}
.y3_c00182{bottom:720.435000px;}
.y2_c00182{bottom:756.585000px;}
.y1_c00182{bottom:775.185000px;}
.h8_c00182{height:13.200074px;}
.h9_c00182{height:43.804688px;}
.h2_c00182{height:62.880000px;}
.h4_c00182{height:66.024000px;}
.h5_c00182{height:71.544000px;}
.h7_c00182{height:73.224000px;}
.h6_c00182{height:83.563477px;}
.h3_c00182{height:198.072000px;}
.h1_c00182{height:826.500000px;}
.h0_c00182{height:826.725000px;}
.w2_c00182{width:104.875500px;}
.w0_c00182{width:578.850000px;}
.w1_c00182{width:579.000000px;}
.x0_c00182{left:0.000000px;}
.x2_c00182{left:57.600000px;}
.x1_c00182{left:59.400000px;}
.x4_c00182{left:61.800000px;}
.x6_c00182{left:62.850000px;}
.x7_c00182{left:63.900000px;}
.x8_c00182{left:65.250000px;}
.x3_c00182{left:73.650000px;}
.xb_c00182{left:78.300000px;}
.xe_c00182{left:92.550000px;}
.xf_c00182{left:95.550000px;}
.x5_c00182{left:102.600000px;}
.xc_c00182{left:121.800000px;}
.xa_c00182{left:132.900000px;}
.xd_c00182{left:149.250000px;}
.x11_c00182{left:241.239258px;}
.x9_c00182{left:277.500000px;}
.x10_c00182{left:447.900000px;}
@media print{
.v0_c00182{vertical-align:0.000000pt;}
.v2_c00182{vertical-align:6.400000pt;}
.v1_c00182{vertical-align:86.400000pt;}
.ls5_c00182{letter-spacing:0.000000pt;}
.ls0_c00182{letter-spacing:2.666667pt;}
.ls3_c00182{letter-spacing:6.760000pt;}
.ls6_c00182{letter-spacing:8.000000pt;}
.ls2_c00182{letter-spacing:18.898667pt;}
.ls1_c00182{letter-spacing:19.560000pt;}
.ls4_c00182{letter-spacing:729.973333pt;}
.ws0_c00182{word-spacing:-29.120000pt;}
.ws2_c00182{word-spacing:-28.218667pt;}
.ws5_c00182{word-spacing:-20.586667pt;}
.ws4_c00182{word-spacing:-16.722667pt;}
.ws3_c00182{word-spacing:-13.845333pt;}
.ws1_c00182{word-spacing:-12.586667pt;}
.ws6_c00182{word-spacing:0.000000pt;}
._28_c00182{margin-left:-22.730667pt;}
._29_c00182{margin-left:-14.720000pt;}
._21_c00182{margin-left:-13.674667pt;}
._c_c00182{margin-left:-10.069333pt;}
._33_c00182{margin-left:-8.938667pt;}
._d_c00182{margin-left:-7.936000pt;}
._e_c00182{margin-left:-6.784000pt;}
._b_c00182{margin-left:-5.504000pt;}
._5_c00182{margin-left:-4.586667pt;}
._1_c00182{margin-left:-2.986667pt;}
._0_c00182{margin-left:-1.600000pt;}
._7_c00182{width:1.013333pt;}
._8_c00182{width:2.026667pt;}
._2_c00182{width:3.680000pt;}
._3_c00182{width:4.960000pt;}
._6_c00182{width:6.933333pt;}
._4_c00182{width:8.373333pt;}
._11_c00182{width:9.600000pt;}
._2c_c00182{width:10.506667pt;}
._f_c00182{width:11.413333pt;}
._1b_c00182{width:12.426667pt;}
._17_c00182{width:13.621333pt;}
._a_c00182{width:15.520000pt;}
._1f_c00182{width:17.216000pt;}
._18_c00182{width:18.293333pt;}
._10_c00182{width:19.573333pt;}
._20_c00182{width:21.440000pt;}
._13_c00182{width:22.624000pt;}
._1d_c00182{width:24.064000pt;}
._15_c00182{width:26.133333pt;}
._14_c00182{width:28.277333pt;}
._1a_c00182{width:35.893333pt;}
._26_c00182{width:37.973333pt;}
._25_c00182{width:39.626667pt;}
._24_c00182{width:41.354667pt;}
._12_c00182{width:43.264000pt;}
._23_c00182{width:44.277333pt;}
._16_c00182{width:46.186667pt;}
._1e_c00182{width:47.552000pt;}
._19_c00182{width:49.226667pt;}
._1c_c00182{width:54.336000pt;}
._2d_c00182{width:57.866667pt;}
._31_c00182{width:62.986667pt;}
._27_c00182{width:66.453333pt;}
._38_c00182{width:75.680000pt;}
._2e_c00182{width:81.440000pt;}
._35_c00182{width:82.666667pt;}
._36_c00182{width:90.976000pt;}
._2f_c00182{width:141.386667pt;}
._34_c00182{width:181.493333pt;}
._22_c00182{width:182.762667pt;}
._9_c00182{width:194.773333pt;}
._37_c00182{width:261.706667pt;}
._30_c00182{width:295.360000pt;}
._2b_c00182{width:316.842667pt;}
._32_c00182{width:365.264000pt;}
._2a_c00182{width:506.186667pt;}
.fs2_c00182{font-size:40.000000pt;}
.fs1_c00182{font-size:42.666667pt;}
.fs0_c00182{font-size:53.333333pt;}
.fs4_c00182{font-size:56.000000pt;}
.fs5_c00182{font-size:58.666667pt;}
.fs3_c00182{font-size:168.000000pt;}
.y0_c00182{bottom:0.000000pt;}
.y2a_c00182{bottom:2.760000pt;}
.y29_c00182{bottom:6.425204pt;}
.y28_c00182{bottom:17.720000pt;}
.y27_c00182{bottom:35.986667pt;}
.y26_c00182{bottom:52.253333pt;}
.y25_c00182{bottom:67.853333pt;}
.y24_c00182{bottom:93.586667pt;}
.y23_c00182{bottom:106.120000pt;}
.y22_c00182{bottom:124.120000pt;}
.y21_c00182{bottom:141.586667pt;}
.y20_c00182{bottom:157.720000pt;}
.y1f_c00182{bottom:173.320000pt;}
.y1e_c00182{bottom:190.386667pt;}
.y1d_c00182{bottom:204.786667pt;}
.y1c_c00182{bottom:221.053333pt;}
.y1b_c00182{bottom:234.920000pt;}
.y1a_c00182{bottom:253.986667pt;}
.y19_c00182{bottom:269.586667pt;}
.y18_c00182{bottom:285.186667pt;}
.y17_c00182{bottom:302.386667pt;}
.y16_c00182{bottom:317.986667pt;}
.y15_c00182{bottom:333.186667pt;}
.y14_c00182{bottom:349.186667pt;}
.y13_c00182{bottom:366.253333pt;}
.y12_c00182{bottom:382.520000pt;}
.y11_c00182{bottom:399.186667pt;}
.y10_c00182{bottom:413.986667pt;}
.yf_c00182{bottom:431.053333pt;}
.ye_c00182{bottom:447.320000pt;}
.yd_c00182{bottom:463.986667pt;}
.yc_c00182{bottom:479.586667pt;}
.yb_c00182{bottom:494.386667pt;}
.ya_c00182{bottom:511.720000pt;}
.y9_c00182{bottom:526.386667pt;}
.y8_c00182{bottom:542.386667pt;}
.y7_c00182{bottom:558.920000pt;}
.y5_c00182{bottom:570.253333pt;}
.y6_c00182{bottom:574.520000pt;}
.y4_c00182{bottom:624.253333pt;}
.y3_c00182{bottom:640.386667pt;}
.y2_c00182{bottom:672.520000pt;}
.y1_c00182{bottom:689.053333pt;}
.h8_c00182{height:11.733399pt;}
.h9_c00182{height:38.937500pt;}
.h2_c00182{height:55.893333pt;}
.h4_c00182{height:58.688000pt;}
.h5_c00182{height:63.594667pt;}
.h7_c00182{height:65.088000pt;}
.h6_c00182{height:74.278646pt;}
.h3_c00182{height:176.064000pt;}
.h1_c00182{height:734.666667pt;}
.h0_c00182{height:734.866667pt;}
.w2_c00182{width:93.222667pt;}
.w0_c00182{width:514.533333pt;}
.w1_c00182{width:514.666667pt;}
.x0_c00182{left:0.000000pt;}
.x2_c00182{left:51.200000pt;}
.x1_c00182{left:52.800000pt;}
.x4_c00182{left:54.933333pt;}
.x6_c00182{left:55.866667pt;}
.x7_c00182{left:56.800000pt;}
.x8_c00182{left:58.000000pt;}
.x3_c00182{left:65.466667pt;}
.xb_c00182{left:69.600000pt;}
.xe_c00182{left:82.266667pt;}
.xf_c00182{left:84.933333pt;}
.x5_c00182{left:91.200000pt;}
.xc_c00182{left:108.266667pt;}
.xa_c00182{left:118.133333pt;}
.xd_c00182{left:132.666667pt;}
.x11_c00182{left:214.434896pt;}
.x9_c00182{left:246.666667pt;}
.x10_c00182{left:398.133333pt;}
}





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

.ir_c00183:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00183{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00183;src:url('chunks/assets/font_dc08d91d740fee1f762550fd.woff2')format("woff");}.ff1_c00183{font-family:ff1_c00183;line-height:1.437000;font-style:normal;font-weight:normal;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_c07a09dcad021a17c0176a4d.woff2')format("woff");}.ff2_c00183{font-family:ff2_c00183;line-height:1.437000;font-style:normal;font-weight:normal;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_98606634f378deaeed93ab33.woff2')format("woff");}.ff3_c00183{font-family:ff3_c00183;line-height:1.437000;font-style:normal;font-weight:normal;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_90a304b8eb6471300d8d60c1.woff2')format("woff");}.ff4_c00183{font-family:ff4_c00183;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00183;src:url('chunks/assets/font_cd46a6f1c795995b4f1bed5e.woff2')format("woff");}.ff5_c00183{font-family:ff5_c00183;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00183;src:url('chunks/assets/font_3c0b54b48c63b1cbc40146dd.woff2')format("woff");}.ff6_c00183{font-family:ff6_c00183;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00183;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff7_c00183{font-family:ff7_c00183;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00183{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00183{vertical-align:0.000000px;}
.ls2_c00183{letter-spacing:0.000000px;}
.ls0_c00183{letter-spacing:3.000000px;}
.ls3_c00183{letter-spacing:6.000000px;}
.ls4_c00183{letter-spacing:9.000000px;}
.ls1_c00183{letter-spacing:18.000000px;}
.sc__c00183{text-shadow:none;}
.sc0_c00183{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00183{-webkit-text-stroke:0px transparent;}
.sc0_c00183{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00183{word-spacing:-50.292000px;}
.ws3_c00183{word-spacing:-29.295000px;}
.ws2_c00183{word-spacing:-21.000000px;}
.ws1_c00183{word-spacing:-18.060000px;}
.ws0_c00183{word-spacing:-14.160000px;}
.ws5_c00183{word-spacing:0.000000px;}
._26_c00183{margin-left:-18.780000px;}
._f_c00183{margin-left:-14.280000px;}
._4_c00183{margin-left:-11.040000px;}
._13_c00183{margin-left:-9.840000px;}
._0_c00183{margin-left:-7.860000px;}
._7_c00183{margin-left:-6.660000px;}
._5_c00183{margin-left:-4.860000px;}
._6_c00183{margin-left:-3.600000px;}
._3_c00183{margin-left:-2.220000px;}
._c_c00183{margin-left:-1.080000px;}
._8_c00183{width:1.740000px;}
._2_c00183{width:2.940000px;}
._d_c00183{width:4.320000px;}
._9_c00183{width:5.580000px;}
._e_c00183{width:7.260000px;}
._b_c00183{width:8.940000px;}
._14_c00183{width:10.320000px;}
._10_c00183{width:11.520000px;}
._17_c00183{width:12.720000px;}
._12_c00183{width:13.860000px;}
._15_c00183{width:15.120000px;}
._1f_c00183{width:16.320000px;}
._11_c00183{width:19.500000px;}
._19_c00183{width:21.300000px;}
._a_c00183{width:22.440000px;}
._20_c00183{width:23.580000px;}
._1a_c00183{width:24.900000px;}
._21_c00183{width:25.980000px;}
._22_c00183{width:27.456000px;}
._18_c00183{width:29.280000px;}
._1c_c00183{width:36.240000px;}
._25_c00183{width:38.520000px;}
._1d_c00183{width:40.440000px;}
._1e_c00183{width:50.880000px;}
._27_c00183{width:52.620000px;}
._23_c00183{width:54.480000px;}
._24_c00183{width:68.340000px;}
._1b_c00183{width:142.920000px;}
._16_c00183{width:228.900000px;}
._1_c00183{width:448.260000px;}
.fc2_c00183{color:transparent;}
.fc1_c00183{color:rgb(128,128,128);}
.fc0_c00183{color:rgb(0,0,0);}
.fs2_c00183{font-size:45.000000px;}
.fs4_c00183{font-size:48.000000px;}
.fs0_c00183{font-size:60.000000px;}
.fs1_c00183{font-size:69.000000px;}
.fs3_c00183{font-size:93.000000px;}
.y0_c00183{bottom:0.000000px;}
.y57_c00183{bottom:3.105000px;}
.y56_c00183{bottom:7.228369px;}
.y55_c00183{bottom:43.920000px;}
.y2a_c00183{bottom:57.420000px;}
.y54_c00183{bottom:60.420000px;}
.y29_c00183{bottom:76.170000px;}
.y53_c00183{bottom:78.870000px;}
.y28_c00183{bottom:93.720000px;}
.y52_c00183{bottom:97.170000px;}
.y27_c00183{bottom:112.020000px;}
.y51_c00183{bottom:115.770000px;}
.y26_c00183{bottom:129.870000px;}
.y50_c00183{bottom:134.220000px;}
.y25_c00183{bottom:148.770000px;}
.y4f_c00183{bottom:151.470000px;}
.y24_c00183{bottom:165.720000px;}
.y4e_c00183{bottom:169.020000px;}
.y23_c00183{bottom:184.170000px;}
.y4d_c00183{bottom:187.020000px;}
.y22_c00183{bottom:203.070000px;}
.y4c_c00183{bottom:204.870000px;}
.y21_c00183{bottom:220.320000px;}
.y4b_c00183{bottom:222.420000px;}
.y20_c00183{bottom:238.320000px;}
.y4a_c00183{bottom:240.870000px;}
.y1f_c00183{bottom:256.170000px;}
.y49_c00183{bottom:259.170000px;}
.y1e_c00183{bottom:274.770000px;}
.y48_c00183{bottom:276.720000px;}
.y1d_c00183{bottom:292.170000px;}
.y47_c00183{bottom:294.870000px;}
.y1c_c00183{bottom:311.070000px;}
.y46_c00183{bottom:312.870000px;}
.y1b_c00183{bottom:328.620000px;}
.y45_c00183{bottom:330.720000px;}
.y1a_c00183{bottom:346.320000px;}
.y44_c00183{bottom:349.020000px;}
.y19_c00183{bottom:365.220000px;}
.y43_c00183{bottom:366.870000px;}
.y18_c00183{bottom:383.370000px;}
.y42_c00183{bottom:385.020000px;}
.y17_c00183{bottom:400.320000px;}
.y41_c00183{bottom:402.570000px;}
.y16_c00183{bottom:419.220000px;}
.y40_c00183{bottom:420.420000px;}
.y15_c00183{bottom:437.670000px;}
.y3f_c00183{bottom:438.420000px;}
.y14_c00183{bottom:455.670000px;}
.y3e_c00183{bottom:456.570000px;}
.y13_c00183{bottom:472.770000px;}
.y3d_c00183{bottom:474.870000px;}
.y12_c00183{bottom:490.770000px;}
.y3c_c00183{bottom:493.020000px;}
.y11_c00183{bottom:508.620000px;}
.y3b_c00183{bottom:511.020000px;}
.y10_c00183{bottom:526.770000px;}
.y3a_c00183{bottom:529.170000px;}
.yf_c00183{bottom:545.670000px;}
.y39_c00183{bottom:546.720000px;}
.ye_c00183{bottom:562.320000px;}
.y38_c00183{bottom:564.870000px;}
.yd_c00183{bottom:580.770000px;}
.y37_c00183{bottom:582.570000px;}
.yc_c00183{bottom:597.270000px;}
.y36_c00183{bottom:600.720000px;}
.yb_c00183{bottom:617.520000px;}
.y35_c00183{bottom:618.870000px;}
.ya_c00183{bottom:635.220000px;}
.y34_c00183{bottom:636.570000px;}
.y9_c00183{bottom:653.370000px;}
.y33_c00183{bottom:654.420000px;}
.y32_c00183{bottom:672.270000px;}
.y8_c00183{bottom:672.570000px;}
.y31_c00183{bottom:690.570000px;}
.y7_c00183{bottom:690.870000px;}
.y30_c00183{bottom:708.720000px;}
.y6_c00183{bottom:709.470000px;}
.y2f_c00183{bottom:727.020000px;}
.y5_c00183{bottom:727.320000px;}
.y4_c00183{bottom:744.120000px;}
.y2e_c00183{bottom:744.570000px;}
.y2d_c00183{bottom:762.720000px;}
.y3_c00183{bottom:764.370000px;}
.y2c_c00183{bottom:780.270000px;}
.y2_c00183{bottom:781.320000px;}
.y1_c00183{bottom:800.220000px;}
.y2b_c00183{bottom:801.270000px;}
.h5_c00183{height:13.200073px;}
.h6_c00183{height:43.804688px;}
.h1_c00183{height:62.880000px;}
.h2_c00183{height:64.020000px;}
.h3_c00183{height:73.623000px;}
.h4_c00183{height:91.274414px;}
.h0_c00183{height:840.750000px;}
.w2_c00183{width:104.875500px;}
.w1_c00183{width:561.750000px;}
.w0_c00183{width:561.900000px;}
.x0_c00183{left:0.000000px;}
.x6_c00183{left:30.000000px;}
.x7_c00183{left:31.350000px;}
.x5_c00183{left:84.150000px;}
.x4_c00183{left:90.750000px;}
.x8_c00183{left:92.850000px;}
.x2_c00183{left:93.900000px;}
.x3_c00183{left:96.150000px;}
.x1_c00183{left:97.950000px;}
.xf_c00183{left:232.764267px;}
.x9_c00183{left:302.100000px;}
.xb_c00183{left:309.450000px;}
.xc_c00183{left:310.500000px;}
.xa_c00183{left:311.550000px;}
.xd_c00183{left:339.150000px;}
.xe_c00183{left:466.050000px;}
@media print{
.v0_c00183{vertical-align:0.000000pt;}
.ls2_c00183{letter-spacing:0.000000pt;}
.ls0_c00183{letter-spacing:2.666667pt;}
.ls3_c00183{letter-spacing:5.333333pt;}
.ls4_c00183{letter-spacing:8.000000pt;}
.ls1_c00183{letter-spacing:16.000000pt;}
.ws4_c00183{word-spacing:-44.704000pt;}
.ws3_c00183{word-spacing:-26.040000pt;}
.ws2_c00183{word-spacing:-18.666667pt;}
.ws1_c00183{word-spacing:-16.053333pt;}
.ws0_c00183{word-spacing:-12.586667pt;}
.ws5_c00183{word-spacing:0.000000pt;}
._26_c00183{margin-left:-16.693333pt;}
._f_c00183{margin-left:-12.693333pt;}
._4_c00183{margin-left:-9.813333pt;}
._13_c00183{margin-left:-8.746667pt;}
._0_c00183{margin-left:-6.986667pt;}
._7_c00183{margin-left:-5.920000pt;}
._5_c00183{margin-left:-4.320000pt;}
._6_c00183{margin-left:-3.200000pt;}
._3_c00183{margin-left:-1.973333pt;}
._c_c00183{margin-left:-0.960000pt;}
._8_c00183{width:1.546667pt;}
._2_c00183{width:2.613333pt;}
._d_c00183{width:3.840000pt;}
._9_c00183{width:4.960000pt;}
._e_c00183{width:6.453333pt;}
._b_c00183{width:7.946667pt;}
._14_c00183{width:9.173333pt;}
._10_c00183{width:10.240000pt;}
._17_c00183{width:11.306667pt;}
._12_c00183{width:12.320000pt;}
._15_c00183{width:13.440000pt;}
._1f_c00183{width:14.506667pt;}
._11_c00183{width:17.333333pt;}
._19_c00183{width:18.933333pt;}
._a_c00183{width:19.946667pt;}
._20_c00183{width:20.960000pt;}
._1a_c00183{width:22.133333pt;}
._21_c00183{width:23.093333pt;}
._22_c00183{width:24.405333pt;}
._18_c00183{width:26.026667pt;}
._1c_c00183{width:32.213333pt;}
._25_c00183{width:34.240000pt;}
._1d_c00183{width:35.946667pt;}
._1e_c00183{width:45.226667pt;}
._27_c00183{width:46.773333pt;}
._23_c00183{width:48.426667pt;}
._24_c00183{width:60.746667pt;}
._1b_c00183{width:127.040000pt;}
._16_c00183{width:203.466667pt;}
._1_c00183{width:398.453333pt;}
.fs2_c00183{font-size:40.000000pt;}
.fs4_c00183{font-size:42.666667pt;}
.fs0_c00183{font-size:53.333333pt;}
.fs1_c00183{font-size:61.333333pt;}
.fs3_c00183{font-size:82.666667pt;}
.y0_c00183{bottom:0.000000pt;}
.y57_c00183{bottom:2.760000pt;}
.y56_c00183{bottom:6.425217pt;}
.y55_c00183{bottom:39.040000pt;}
.y2a_c00183{bottom:51.040000pt;}
.y54_c00183{bottom:53.706667pt;}
.y29_c00183{bottom:67.706667pt;}
.y53_c00183{bottom:70.106667pt;}
.y28_c00183{bottom:83.306667pt;}
.y52_c00183{bottom:86.373333pt;}
.y27_c00183{bottom:99.573333pt;}
.y51_c00183{bottom:102.906667pt;}
.y26_c00183{bottom:115.440000pt;}
.y50_c00183{bottom:119.306667pt;}
.y25_c00183{bottom:132.240000pt;}
.y4f_c00183{bottom:134.640000pt;}
.y24_c00183{bottom:147.306667pt;}
.y4e_c00183{bottom:150.240000pt;}
.y23_c00183{bottom:163.706667pt;}
.y4d_c00183{bottom:166.240000pt;}
.y22_c00183{bottom:180.506667pt;}
.y4c_c00183{bottom:182.106667pt;}
.y21_c00183{bottom:195.840000pt;}
.y4b_c00183{bottom:197.706667pt;}
.y20_c00183{bottom:211.840000pt;}
.y4a_c00183{bottom:214.106667pt;}
.y1f_c00183{bottom:227.706667pt;}
.y49_c00183{bottom:230.373333pt;}
.y1e_c00183{bottom:244.240000pt;}
.y48_c00183{bottom:245.973333pt;}
.y1d_c00183{bottom:259.706667pt;}
.y47_c00183{bottom:262.106667pt;}
.y1c_c00183{bottom:276.506667pt;}
.y46_c00183{bottom:278.106667pt;}
.y1b_c00183{bottom:292.106667pt;}
.y45_c00183{bottom:293.973333pt;}
.y1a_c00183{bottom:307.840000pt;}
.y44_c00183{bottom:310.240000pt;}
.y19_c00183{bottom:324.640000pt;}
.y43_c00183{bottom:326.106667pt;}
.y18_c00183{bottom:340.773333pt;}
.y42_c00183{bottom:342.240000pt;}
.y17_c00183{bottom:355.840000pt;}
.y41_c00183{bottom:357.840000pt;}
.y16_c00183{bottom:372.640000pt;}
.y40_c00183{bottom:373.706667pt;}
.y15_c00183{bottom:389.040000pt;}
.y3f_c00183{bottom:389.706667pt;}
.y14_c00183{bottom:405.040000pt;}
.y3e_c00183{bottom:405.840000pt;}
.y13_c00183{bottom:420.240000pt;}
.y3d_c00183{bottom:422.106667pt;}
.y12_c00183{bottom:436.240000pt;}
.y3c_c00183{bottom:438.240000pt;}
.y11_c00183{bottom:452.106667pt;}
.y3b_c00183{bottom:454.240000pt;}
.y10_c00183{bottom:468.240000pt;}
.y3a_c00183{bottom:470.373333pt;}
.yf_c00183{bottom:485.040000pt;}
.y39_c00183{bottom:485.973333pt;}
.ye_c00183{bottom:499.840000pt;}
.y38_c00183{bottom:502.106667pt;}
.yd_c00183{bottom:516.240000pt;}
.y37_c00183{bottom:517.840000pt;}
.yc_c00183{bottom:530.906667pt;}
.y36_c00183{bottom:533.973333pt;}
.yb_c00183{bottom:548.906667pt;}
.y35_c00183{bottom:550.106667pt;}
.ya_c00183{bottom:564.640000pt;}
.y34_c00183{bottom:565.840000pt;}
.y9_c00183{bottom:580.773333pt;}
.y33_c00183{bottom:581.706667pt;}
.y32_c00183{bottom:597.573333pt;}
.y8_c00183{bottom:597.840000pt;}
.y31_c00183{bottom:613.840000pt;}
.y7_c00183{bottom:614.106667pt;}
.y30_c00183{bottom:629.973333pt;}
.y6_c00183{bottom:630.640000pt;}
.y2f_c00183{bottom:646.240000pt;}
.y5_c00183{bottom:646.506667pt;}
.y4_c00183{bottom:661.440000pt;}
.y2e_c00183{bottom:661.840000pt;}
.y2d_c00183{bottom:677.973333pt;}
.y3_c00183{bottom:679.440000pt;}
.y2c_c00183{bottom:693.573333pt;}
.y2_c00183{bottom:694.506667pt;}
.y1_c00183{bottom:711.306667pt;}
.y2b_c00183{bottom:712.240000pt;}
.h5_c00183{height:11.733399pt;}
.h6_c00183{height:38.937500pt;}
.h1_c00183{height:55.893333pt;}
.h2_c00183{height:56.906667pt;}
.h3_c00183{height:65.442667pt;}
.h4_c00183{height:81.132812pt;}
.h0_c00183{height:747.333333pt;}
.w2_c00183{width:93.222667pt;}
.w1_c00183{width:499.333333pt;}
.w0_c00183{width:499.466667pt;}
.x0_c00183{left:0.000000pt;}
.x6_c00183{left:26.666667pt;}
.x7_c00183{left:27.866667pt;}
.x5_c00183{left:74.800000pt;}
.x4_c00183{left:80.666667pt;}
.x8_c00183{left:82.533333pt;}
.x2_c00183{left:83.466667pt;}
.x3_c00183{left:85.466667pt;}
.x1_c00183{left:87.066667pt;}
.xf_c00183{left:206.901571pt;}
.x9_c00183{left:268.533333pt;}
.xb_c00183{left:275.066667pt;}
.xc_c00183{left:276.000000pt;}
.xa_c00183{left:276.933333pt;}
.xd_c00183{left:301.466667pt;}
.xe_c00183{left:414.266667pt;}
}





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

.ir_c00184:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00184{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00184;src:url('chunks/assets/font_7f6e4df0d3591ad0f82be7d3.woff2')format("woff");}.ff1_c00184{font-family:ff1_c00184;line-height:1.437000;font-style:normal;font-weight:normal;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_bcbd6f2d1f0cc8e4d7b1f571.woff2')format("woff");}.ff2_c00184{font-family:ff2_c00184;line-height:1.437000;font-style:normal;font-weight:normal;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_db5cb1be493dbe4bc07c79f9.woff2')format("woff");}.ff3_c00184{font-family:ff3_c00184;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00184;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff4_c00184{font-family:ff4_c00184;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00184{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00184{vertical-align:0.000000px;}
.ls7_c00184{letter-spacing:0.000000px;}
.ls0_c00184{letter-spacing:1.605000px;}
.ls5_c00184{letter-spacing:2.205000px;}
.ls3_c00184{letter-spacing:2.805000px;}
.ls1_c00184{letter-spacing:2.880000px;}
.ls2_c00184{letter-spacing:3.000000px;}
.ls8_c00184{letter-spacing:9.000000px;}
.ls4_c00184{letter-spacing:24.480000px;}
.ls6_c00184{letter-spacing:28.005000px;}
.sc__c00184{text-shadow:none;}
.sc0_c00184{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00184{-webkit-text-stroke:0px transparent;}
.sc0_c00184{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00184{word-spacing:-29.295000px;}
.ws3_c00184{word-spacing:-23.160000px;}
.ws0_c00184{word-spacing:-14.160000px;}
.ws5_c00184{word-spacing:0.000000px;}
.ws2_c00184{word-spacing:0.420000px;}
.ws4_c00184{word-spacing:2.280000px;}
._25_c00184{margin-left:-24.840000px;}
._22_c00184{margin-left:-12.960000px;}
._1e_c00184{margin-left:-10.740000px;}
._4_c00184{margin-left:-9.360000px;}
._1b_c00184{margin-left:-8.340000px;}
._21_c00184{margin-left:-6.840000px;}
._10_c00184{margin-left:-5.568000px;}
._b_c00184{margin-left:-3.840000px;}
._18_c00184{margin-left:-2.700000px;}
._8_c00184{margin-left:-1.440000px;}
._7_c00184{width:1.620000px;}
._d_c00184{width:2.760000px;}
._6_c00184{width:4.080000px;}
._1_c00184{width:5.520000px;}
._0_c00184{width:6.693000px;}
._5_c00184{width:7.740000px;}
._11_c00184{width:9.180000px;}
._e_c00184{width:10.380000px;}
._3_c00184{width:11.661000px;}
._a_c00184{width:12.720000px;}
._9_c00184{width:13.800000px;}
._17_c00184{width:15.120000px;}
._16_c00184{width:16.440000px;}
._1c_c00184{width:19.320000px;}
._15_c00184{width:21.480000px;}
._20_c00184{width:23.580000px;}
._19_c00184{width:25.320000px;}
._1f_c00184{width:26.820000px;}
._26_c00184{width:28.377000px;}
._2_c00184{width:29.463000px;}
._13_c00184{width:30.960000px;}
._12_c00184{width:32.520000px;}
._24_c00184{width:33.708000px;}
._1d_c00184{width:36.780000px;}
._1a_c00184{width:39.720000px;}
._23_c00184{width:41.877000px;}
._14_c00184{width:44.340000px;}
._c_c00184{width:48.480000px;}
._f_c00184{width:154.140000px;}
.fc2_c00184{color:transparent;}
.fc1_c00184{color:rgb(128,128,128);}
.fc0_c00184{color:rgb(0,0,0);}
.fs2_c00184{font-size:45.000000px;}
.fs3_c00184{font-size:48.000000px;}
.fs1_c00184{font-size:60.000000px;}
.fs0_c00184{font-size:69.000000px;}
.y0_c00184{bottom:0.000000px;}
.y5d_c00184{bottom:3.105000px;}
.y5c_c00184{bottom:7.228355px;}
.y54_c00184{bottom:31.635000px;}
.y53_c00184{bottom:50.535000px;}
.y2a_c00184{bottom:54.885000px;}
.y52_c00184{bottom:69.135000px;}
.y29_c00184{bottom:73.485000px;}
.y51_c00184{bottom:86.985000px;}
.y28_c00184{bottom:90.735000px;}
.y50_c00184{bottom:104.535000px;}
.y27_c00184{bottom:108.885000px;}
.y5b_c00184{bottom:120.735000px;}
.y4f_c00184{bottom:122.535000px;}
.y26_c00184{bottom:126.435000px;}
.y5a_c00184{bottom:137.985000px;}
.y4e_c00184{bottom:140.685000px;}
.y25_c00184{bottom:143.085000px;}
.y59_c00184{bottom:157.935000px;}
.y4d_c00184{bottom:158.535000px;}
.y24_c00184{bottom:162.585000px;}
.y4c_c00184{bottom:175.485000px;}
.y23_c00184{bottom:180.585000px;}
.y58_c00184{bottom:193.935000px;}
.y4b_c00184{bottom:194.985000px;}
.y22_c00184{bottom:198.735000px;}
.y57_c00184{bottom:212.535000px;}
.y4a_c00184{bottom:212.835000px;}
.y21_c00184{bottom:216.585000px;}
.y49_c00184{bottom:230.385000px;}
.y20_c00184{bottom:233.835000px;}
.y48_c00184{bottom:248.985000px;}
.y1f_c00184{bottom:252.735000px;}
.y47_c00184{bottom:266.985000px;}
.y1e_c00184{bottom:270.885000px;}
.y46_c00184{bottom:285.135000px;}
.y1d_c00184{bottom:288.585000px;}
.y45_c00184{bottom:302.985000px;}
.y56_c00184{bottom:303.735000px;}
.y1c_c00184{bottom:307.035000px;}
.y44_c00184{bottom:321.285000px;}
.y55_c00184{bottom:321.885000px;}
.y1b_c00184{bottom:324.885000px;}
.y43_c00184{bottom:338.385000px;}
.y1a_c00184{bottom:342.885000px;}
.y42_c00184{bottom:356.985000px;}
.y19_c00184{bottom:361.035000px;}
.y41_c00184{bottom:375.585000px;}
.y18_c00184{bottom:378.885000px;}
.y40_c00184{bottom:393.735000px;}
.y17_c00184{bottom:397.185000px;}
.y3f_c00184{bottom:411.435000px;}
.y16_c00184{bottom:414.435000px;}
.y3e_c00184{bottom:430.185000px;}
.y15_c00184{bottom:432.885000px;}
.y3d_c00184{bottom:448.185000px;}
.y14_c00184{bottom:450.885000px;}
.y3c_c00184{bottom:466.335000px;}
.y13_c00184{bottom:468.735000px;}
.y3b_c00184{bottom:483.585000px;}
.y12_c00184{bottom:487.335000px;}
.y3a_c00184{bottom:502.785000px;}
.y11_c00184{bottom:505.485000px;}
.y39_c00184{bottom:520.635000px;}
.y10_c00184{bottom:523.485000px;}
.y38_c00184{bottom:539.235000px;}
.yf_c00184{bottom:541.935000px;}
.y37_c00184{bottom:556.785000px;}
.ye_c00184{bottom:559.485000px;}
.y36_c00184{bottom:575.085000px;}
.yd_c00184{bottom:577.485000px;}
.y35_c00184{bottom:593.235000px;}
.yc_c00184{bottom:596.085000px;}
.y34_c00184{bottom:611.835000px;}
.yb_c00184{bottom:613.935000px;}
.y33_c00184{bottom:629.685000px;}
.ya_c00184{bottom:631.785000px;}
.y32_c00184{bottom:647.685000px;}
.y9_c00184{bottom:649.935000px;}
.y31_c00184{bottom:665.835000px;}
.y8_c00184{bottom:667.485000px;}
.y30_c00184{bottom:683.985000px;}
.y7_c00184{bottom:685.335000px;}
.y2f_c00184{bottom:702.585000px;}
.y6_c00184{bottom:703.635000px;}
.y2e_c00184{bottom:720.585000px;}
.y5_c00184{bottom:721.935000px;}
.y2d_c00184{bottom:737.385000px;}
.y4_c00184{bottom:740.385000px;}
.y2c_c00184{bottom:756.585000px;}
.y3_c00184{bottom:758.985000px;}
.y2b_c00184{bottom:774.885000px;}
.y2_c00184{bottom:775.785000px;}
.y1_c00184{bottom:795.435000px;}
.h4_c00184{height:13.200074px;}
.h5_c00184{height:43.804688px;}
.h3_c00184{height:62.880000px;}
.h2_c00184{height:72.312000px;}
.h1_c00184{height:834.750000px;}
.h0_c00184{height:834.825000px;}
.w2_c00184{width:104.875500px;}
.w0_c00184{width:584.850000px;}
.w1_c00184{width:585.000000px;}
.x0_c00184{left:0.000000px;}
.x3_c00184{left:9.450000px;}
.x4_c00184{left:11.100000px;}
.x8_c00184{left:13.800000px;}
.x2_c00184{left:61.200000px;}
.x5_c00184{left:70.200000px;}
.x6_c00184{left:71.550000px;}
.x7_c00184{left:72.600000px;}
.x9_c00184{left:74.250000px;}
.xa_c00184{left:75.300000px;}
.xb_c00184{left:76.650000px;}
.x1_c00184{left:201.150000px;}
.x16_c00184{left:244.239258px;}
.xe_c00184{left:283.500000px;}
.xc_c00184{left:289.200000px;}
.xd_c00184{left:290.250000px;}
.xf_c00184{left:291.300000px;}
.x10_c00184{left:292.650000px;}
.x11_c00184{left:461.550000px;}
.x15_c00184{left:490.650000px;}
.x12_c00184{left:492.750000px;}
.x14_c00184{left:494.400000px;}
.x13_c00184{left:495.450000px;}
@media print{
.v0_c00184{vertical-align:0.000000pt;}
.ls7_c00184{letter-spacing:0.000000pt;}
.ls0_c00184{letter-spacing:1.426667pt;}
.ls5_c00184{letter-spacing:1.960000pt;}
.ls3_c00184{letter-spacing:2.493333pt;}
.ls1_c00184{letter-spacing:2.560000pt;}
.ls2_c00184{letter-spacing:2.666667pt;}
.ls8_c00184{letter-spacing:8.000000pt;}
.ls4_c00184{letter-spacing:21.760000pt;}
.ls6_c00184{letter-spacing:24.893333pt;}
.ws1_c00184{word-spacing:-26.040000pt;}
.ws3_c00184{word-spacing:-20.586667pt;}
.ws0_c00184{word-spacing:-12.586667pt;}
.ws5_c00184{word-spacing:0.000000pt;}
.ws2_c00184{word-spacing:0.373333pt;}
.ws4_c00184{word-spacing:2.026667pt;}
._25_c00184{margin-left:-22.080000pt;}
._22_c00184{margin-left:-11.520000pt;}
._1e_c00184{margin-left:-9.546667pt;}
._4_c00184{margin-left:-8.320000pt;}
._1b_c00184{margin-left:-7.413333pt;}
._21_c00184{margin-left:-6.080000pt;}
._10_c00184{margin-left:-4.949333pt;}
._b_c00184{margin-left:-3.413333pt;}
._18_c00184{margin-left:-2.400000pt;}
._8_c00184{margin-left:-1.280000pt;}
._7_c00184{width:1.440000pt;}
._d_c00184{width:2.453333pt;}
._6_c00184{width:3.626667pt;}
._1_c00184{width:4.906667pt;}
._0_c00184{width:5.949333pt;}
._5_c00184{width:6.880000pt;}
._11_c00184{width:8.160000pt;}
._e_c00184{width:9.226667pt;}
._3_c00184{width:10.365333pt;}
._a_c00184{width:11.306667pt;}
._9_c00184{width:12.266667pt;}
._17_c00184{width:13.440000pt;}
._16_c00184{width:14.613333pt;}
._1c_c00184{width:17.173333pt;}
._15_c00184{width:19.093333pt;}
._20_c00184{width:20.960000pt;}
._19_c00184{width:22.506667pt;}
._1f_c00184{width:23.840000pt;}
._26_c00184{width:25.224000pt;}
._2_c00184{width:26.189333pt;}
._13_c00184{width:27.520000pt;}
._12_c00184{width:28.906667pt;}
._24_c00184{width:29.962667pt;}
._1d_c00184{width:32.693333pt;}
._1a_c00184{width:35.306667pt;}
._23_c00184{width:37.224000pt;}
._14_c00184{width:39.413333pt;}
._c_c00184{width:43.093333pt;}
._f_c00184{width:137.013333pt;}
.fs2_c00184{font-size:40.000000pt;}
.fs3_c00184{font-size:42.666667pt;}
.fs1_c00184{font-size:53.333333pt;}
.fs0_c00184{font-size:61.333333pt;}
.y0_c00184{bottom:0.000000pt;}
.y5d_c00184{bottom:2.760000pt;}
.y5c_c00184{bottom:6.425204pt;}
.y54_c00184{bottom:28.120000pt;}
.y53_c00184{bottom:44.920000pt;}
.y2a_c00184{bottom:48.786667pt;}
.y52_c00184{bottom:61.453333pt;}
.y29_c00184{bottom:65.320000pt;}
.y51_c00184{bottom:77.320000pt;}
.y28_c00184{bottom:80.653333pt;}
.y50_c00184{bottom:92.920000pt;}
.y27_c00184{bottom:96.786667pt;}
.y5b_c00184{bottom:107.320000pt;}
.y4f_c00184{bottom:108.920000pt;}
.y26_c00184{bottom:112.386667pt;}
.y5a_c00184{bottom:122.653333pt;}
.y4e_c00184{bottom:125.053333pt;}
.y25_c00184{bottom:127.186667pt;}
.y59_c00184{bottom:140.386667pt;}
.y4d_c00184{bottom:140.920000pt;}
.y24_c00184{bottom:144.520000pt;}
.y4c_c00184{bottom:155.986667pt;}
.y23_c00184{bottom:160.520000pt;}
.y58_c00184{bottom:172.386667pt;}
.y4b_c00184{bottom:173.320000pt;}
.y22_c00184{bottom:176.653333pt;}
.y57_c00184{bottom:188.920000pt;}
.y4a_c00184{bottom:189.186667pt;}
.y21_c00184{bottom:192.520000pt;}
.y49_c00184{bottom:204.786667pt;}
.y20_c00184{bottom:207.853333pt;}
.y48_c00184{bottom:221.320000pt;}
.y1f_c00184{bottom:224.653333pt;}
.y47_c00184{bottom:237.320000pt;}
.y1e_c00184{bottom:240.786667pt;}
.y46_c00184{bottom:253.453333pt;}
.y1d_c00184{bottom:256.520000pt;}
.y45_c00184{bottom:269.320000pt;}
.y56_c00184{bottom:269.986667pt;}
.y1c_c00184{bottom:272.920000pt;}
.y44_c00184{bottom:285.586667pt;}
.y55_c00184{bottom:286.120000pt;}
.y1b_c00184{bottom:288.786667pt;}
.y43_c00184{bottom:300.786667pt;}
.y1a_c00184{bottom:304.786667pt;}
.y42_c00184{bottom:317.320000pt;}
.y19_c00184{bottom:320.920000pt;}
.y41_c00184{bottom:333.853333pt;}
.y18_c00184{bottom:336.786667pt;}
.y40_c00184{bottom:349.986667pt;}
.y17_c00184{bottom:353.053333pt;}
.y3f_c00184{bottom:365.720000pt;}
.y16_c00184{bottom:368.386667pt;}
.y3e_c00184{bottom:382.386667pt;}
.y15_c00184{bottom:384.786667pt;}
.y3d_c00184{bottom:398.386667pt;}
.y14_c00184{bottom:400.786667pt;}
.y3c_c00184{bottom:414.520000pt;}
.y13_c00184{bottom:416.653333pt;}
.y3b_c00184{bottom:429.853333pt;}
.y12_c00184{bottom:433.186667pt;}
.y3a_c00184{bottom:446.920000pt;}
.y11_c00184{bottom:449.320000pt;}
.y39_c00184{bottom:462.786667pt;}
.y10_c00184{bottom:465.320000pt;}
.y38_c00184{bottom:479.320000pt;}
.yf_c00184{bottom:481.720000pt;}
.y37_c00184{bottom:494.920000pt;}
.ye_c00184{bottom:497.320000pt;}
.y36_c00184{bottom:511.186667pt;}
.yd_c00184{bottom:513.320000pt;}
.y35_c00184{bottom:527.320000pt;}
.yc_c00184{bottom:529.853333pt;}
.y34_c00184{bottom:543.853333pt;}
.yb_c00184{bottom:545.720000pt;}
.y33_c00184{bottom:559.720000pt;}
.ya_c00184{bottom:561.586667pt;}
.y32_c00184{bottom:575.720000pt;}
.y9_c00184{bottom:577.720000pt;}
.y31_c00184{bottom:591.853333pt;}
.y8_c00184{bottom:593.320000pt;}
.y30_c00184{bottom:607.986667pt;}
.y7_c00184{bottom:609.186667pt;}
.y2f_c00184{bottom:624.520000pt;}
.y6_c00184{bottom:625.453333pt;}
.y2e_c00184{bottom:640.520000pt;}
.y5_c00184{bottom:641.720000pt;}
.y2d_c00184{bottom:655.453333pt;}
.y4_c00184{bottom:658.120000pt;}
.y2c_c00184{bottom:672.520000pt;}
.y3_c00184{bottom:674.653333pt;}
.y2b_c00184{bottom:688.786667pt;}
.y2_c00184{bottom:689.586667pt;}
.y1_c00184{bottom:707.053333pt;}
.h4_c00184{height:11.733399pt;}
.h5_c00184{height:38.937500pt;}
.h3_c00184{height:55.893333pt;}
.h2_c00184{height:64.277333pt;}
.h1_c00184{height:742.000000pt;}
.h0_c00184{height:742.066667pt;}
.w2_c00184{width:93.222667pt;}
.w0_c00184{width:519.866667pt;}
.w1_c00184{width:520.000000pt;}
.x0_c00184{left:0.000000pt;}
.x3_c00184{left:8.400000pt;}
.x4_c00184{left:9.866667pt;}
.x8_c00184{left:12.266667pt;}
.x2_c00184{left:54.400000pt;}
.x5_c00184{left:62.400000pt;}
.x6_c00184{left:63.600000pt;}
.x7_c00184{left:64.533333pt;}
.x9_c00184{left:66.000000pt;}
.xa_c00184{left:66.933333pt;}
.xb_c00184{left:68.133333pt;}
.x1_c00184{left:178.800000pt;}
.x16_c00184{left:217.101563pt;}
.xe_c00184{left:252.000000pt;}
.xc_c00184{left:257.066667pt;}
.xd_c00184{left:258.000000pt;}
.xf_c00184{left:258.933333pt;}
.x10_c00184{left:260.133333pt;}
.x11_c00184{left:410.266667pt;}
.x15_c00184{left:436.133333pt;}
.x12_c00184{left:438.000000pt;}
.x14_c00184{left:439.466667pt;}
.x13_c00184{left:440.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_349c1f46bdb671f4b22f75bd.woff2')format("woff");}.ff1_c00185{font-family:ff1_c00185;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00185;src:url('chunks/assets/font_8d648d84bbfa3f760aa7a6d1.woff2')format("woff");}.ff2_c00185{font-family:ff2_c00185;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00185;src:url('chunks/assets/font_5b137dec2fbdd614ae24d21d.woff2')format("woff");}.ff3_c00185{font-family:ff3_c00185;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00185;src:url('chunks/assets/font_6c904892737515821a4a4b18.woff2')format("woff");}.ff4_c00185{font-family:ff4_c00185;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00185;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff5_c00185{font-family:ff5_c00185;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00185{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00185{vertical-align:0.000000px;}
.ls4_c00185{letter-spacing:0.000000px;}
.ls0_c00185{letter-spacing:3.000000px;}
.ls1_c00185{letter-spacing:5.184000px;}
.ls2_c00185{letter-spacing:8.940000px;}
.ls3_c00185{letter-spacing:9.000000px;}
.sc__c00185{text-shadow:none;}
.sc0_c00185{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00185{-webkit-text-stroke:0px transparent;}
.sc0_c00185{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00185{word-spacing:-52.680000px;}
.ws3_c00185{word-spacing:-42.744000px;}
.ws1_c00185{word-spacing:-23.160000px;}
.ws7_c00185{word-spacing:-18.060000px;}
.ws4_c00185{word-spacing:-17.340000px;}
.ws5_c00185{word-spacing:-14.160000px;}
.ws6_c00185{word-spacing:-13.452000px;}
.ws8_c00185{word-spacing:0.000000px;}
.ws0_c00185{word-spacing:0.060000px;}
._1b_c00185{margin-left:-27.420000px;}
._11_c00185{margin-left:-19.014000px;}
._17_c00185{margin-left:-13.188000px;}
._12_c00185{margin-left:-12.120000px;}
._13_c00185{margin-left:-11.082000px;}
._6_c00185{margin-left:-9.960000px;}
._5_c00185{margin-left:-8.760000px;}
._3_c00185{margin-left:-6.660000px;}
._4_c00185{margin-left:-5.520000px;}
._c_c00185{margin-left:-3.768000px;}
._a_c00185{margin-left:-2.118000px;}
._b_c00185{margin-left:-1.080000px;}
._8_c00185{width:1.440000px;}
._9_c00185{width:3.360000px;}
._f_c00185{width:4.650000px;}
._2_c00185{width:5.940000px;}
._7_c00185{width:7.980000px;}
._1f_c00185{width:9.060000px;}
._0_c00185{width:10.080000px;}
._1_c00185{width:11.880000px;}
._e_c00185{width:12.984000px;}
._10_c00185{width:14.028000px;}
._15_c00185{width:15.384000px;}
._20_c00185{width:16.620000px;}
._1e_c00185{width:18.840000px;}
._23_c00185{width:20.640000px;}
._14_c00185{width:21.990000px;}
._16_c00185{width:23.706000px;}
._25_c00185{width:25.212000px;}
._24_c00185{width:26.322000px;}
._d_c00185{width:29.580000px;}
._26_c00185{width:32.862000px;}
._19_c00185{width:33.996000px;}
._22_c00185{width:35.598000px;}
._1a_c00185{width:36.720000px;}
._18_c00185{width:43.374000px;}
._1d_c00185{width:54.090000px;}
._21_c00185{width:66.918000px;}
._1c_c00185{width:147.660000px;}
.fc2_c00185{color:transparent;}
.fc1_c00185{color:rgb(128,128,128);}
.fc0_c00185{color:rgb(0,0,0);}
.fs2_c00185{font-size:48.000000px;}
.fs1_c00185{font-size:57.000000px;}
.fs0_c00185{font-size:60.000000px;}
.y0_c00185{bottom:0.000000px;}
.y52_c00185{bottom:3.105000px;}
.y51_c00185{bottom:7.228369px;}
.y50_c00185{bottom:46.170000px;}
.y27_c00185{bottom:61.020000px;}
.y4f_c00185{bottom:63.420000px;}
.y26_c00185{bottom:79.620000px;}
.y4e_c00185{bottom:81.720000px;}
.y25_c00185{bottom:97.470000px;}
.y4d_c00185{bottom:99.570000px;}
.y24_c00185{bottom:115.770000px;}
.y4c_c00185{bottom:118.170000px;}
.y23_c00185{bottom:133.620000px;}
.y4b_c00185{bottom:136.020000px;}
.y4a_c00185{bottom:154.470000px;}
.y22_c00185{bottom:169.770000px;}
.y49_c00185{bottom:172.170000px;}
.y21_c00185{bottom:187.620000px;}
.y48_c00185{bottom:190.620000px;}
.y20_c00185{bottom:206.820000px;}
.y47_c00185{bottom:208.170000px;}
.y46_c00185{bottom:226.470000px;}
.y1f_c00185{bottom:240.870000px;}
.y45_c00185{bottom:244.920000px;}
.y44_c00185{bottom:263.220000px;}
.y1e_c00185{bottom:277.470000px;}
.y43_c00185{bottom:281.070000px;}
.y1d_c00185{bottom:294.870000px;}
.y42_c00185{bottom:298.320000px;}
.y1c_c00185{bottom:314.220000px;}
.y41_c00185{bottom:316.920000px;}
.y1b_c00185{bottom:331.320000px;}
.y40_c00185{bottom:335.370000px;}
.y1a_c00185{bottom:349.920000px;}
.y3f_c00185{bottom:352.620000px;}
.y19_c00185{bottom:368.220000px;}
.y3e_c00185{bottom:370.620000px;}
.y18_c00185{bottom:386.370000px;}
.y3d_c00185{bottom:389.070000px;}
.y17_c00185{bottom:404.370000px;}
.y3c_c00185{bottom:406.920000px;}
.y16_c00185{bottom:422.520000px;}
.y3b_c00185{bottom:424.620000px;}
.y15_c00185{bottom:441.120000px;}
.y3a_c00185{bottom:442.770000px;}
.y14_c00185{bottom:458.970000px;}
.y39_c00185{bottom:460.920000px;}
.y13_c00185{bottom:477.270000px;}
.y38_c00185{bottom:478.620000px;}
.y12_c00185{bottom:495.420000px;}
.y37_c00185{bottom:497.070000px;}
.y11_c00185{bottom:513.720000px;}
.y36_c00185{bottom:515.070000px;}
.y10_c00185{bottom:531.570000px;}
.y35_c00185{bottom:532.620000px;}
.yf_c00185{bottom:550.020000px;}
.y34_c00185{bottom:551.370000px;}
.ye_c00185{bottom:567.720000px;}
.y33_c00185{bottom:569.070000px;}
.yd_c00185{bottom:586.170000px;}
.y32_c00185{bottom:587.220000px;}
.yc_c00185{bottom:604.770000px;}
.y31_c00185{bottom:605.520000px;}
.yb_c00185{bottom:621.570000px;}
.y30_c00185{bottom:623.970000px;}
.ya_c00185{bottom:640.920000px;}
.y2f_c00185{bottom:641.820000px;}
.y2e_c00185{bottom:659.820000px;}
.y9_c00185{bottom:660.420000px;}
.y8_c00185{bottom:677.970000px;}
.y2d_c00185{bottom:678.270000px;}
.y7_c00185{bottom:695.520000px;}
.y2c_c00185{bottom:695.820000px;}
.y6_c00185{bottom:714.120000px;}
.y2b_c00185{bottom:714.420000px;}
.y5_c00185{bottom:732.720000px;}
.y2a_c00185{bottom:750.570000px;}
.y4_c00185{bottom:751.170000px;}
.y29_c00185{bottom:768.720000px;}
.y3_c00185{bottom:771.120000px;}
.y28_c00185{bottom:787.020000px;}
.y2_c00185{bottom:787.320000px;}
.y1_c00185{bottom:806.670000px;}
.h3_c00185{height:13.200073px;}
.h4_c00185{height:43.804688px;}
.h2_c00185{height:59.736000px;}
.h1_c00185{height:62.880000px;}
.h0_c00185{height:840.750000px;}
.w2_c00185{width:104.875500px;}
.w1_c00185{width:561.750000px;}
.w0_c00185{width:561.900000px;}
.x0_c00185{left:0.000000px;}
.xd_c00185{left:24.000000px;}
.x7_c00185{left:29.250000px;}
.x5_c00185{left:76.650000px;}
.xb_c00185{left:87.450000px;}
.x6_c00185{left:89.700000px;}
.x4_c00185{left:91.050000px;}
.x2_c00185{left:92.400000px;}
.x9_c00185{left:116.850000px;}
.xc_c00185{left:119.850000px;}
.x3_c00185{left:135.300000px;}
.xa_c00185{left:155.250000px;}
.x8_c00185{left:187.350000px;}
.x1_c00185{left:217.050000px;}
.x17_c00185{left:232.764267px;}
.x12_c00185{left:297.600000px;}
.x15_c00185{left:303.000000px;}
.x14_c00185{left:304.350000px;}
.x13_c00185{left:305.400000px;}
.x11_c00185{left:306.750000px;}
.xe_c00185{left:307.800000px;}
.xf_c00185{left:309.150000px;}
.x10_c00185{left:327.300000px;}
.x16_c00185{left:476.100000px;}
@media print{
.v0_c00185{vertical-align:0.000000pt;}
.ls4_c00185{letter-spacing:0.000000pt;}
.ls0_c00185{letter-spacing:2.666667pt;}
.ls1_c00185{letter-spacing:4.608000pt;}
.ls2_c00185{letter-spacing:7.946667pt;}
.ls3_c00185{letter-spacing:8.000000pt;}
.ws2_c00185{word-spacing:-46.826667pt;}
.ws3_c00185{word-spacing:-37.994667pt;}
.ws1_c00185{word-spacing:-20.586667pt;}
.ws7_c00185{word-spacing:-16.053333pt;}
.ws4_c00185{word-spacing:-15.413333pt;}
.ws5_c00185{word-spacing:-12.586667pt;}
.ws6_c00185{word-spacing:-11.957333pt;}
.ws8_c00185{word-spacing:0.000000pt;}
.ws0_c00185{word-spacing:0.053333pt;}
._1b_c00185{margin-left:-24.373333pt;}
._11_c00185{margin-left:-16.901333pt;}
._17_c00185{margin-left:-11.722667pt;}
._12_c00185{margin-left:-10.773333pt;}
._13_c00185{margin-left:-9.850667pt;}
._6_c00185{margin-left:-8.853333pt;}
._5_c00185{margin-left:-7.786667pt;}
._3_c00185{margin-left:-5.920000pt;}
._4_c00185{margin-left:-4.906667pt;}
._c_c00185{margin-left:-3.349333pt;}
._a_c00185{margin-left:-1.882667pt;}
._b_c00185{margin-left:-0.960000pt;}
._8_c00185{width:1.280000pt;}
._9_c00185{width:2.986667pt;}
._f_c00185{width:4.133333pt;}
._2_c00185{width:5.280000pt;}
._7_c00185{width:7.093333pt;}
._1f_c00185{width:8.053333pt;}
._0_c00185{width:8.960000pt;}
._1_c00185{width:10.560000pt;}
._e_c00185{width:11.541333pt;}
._10_c00185{width:12.469333pt;}
._15_c00185{width:13.674667pt;}
._20_c00185{width:14.773333pt;}
._1e_c00185{width:16.746667pt;}
._23_c00185{width:18.346667pt;}
._14_c00185{width:19.546667pt;}
._16_c00185{width:21.072000pt;}
._25_c00185{width:22.410667pt;}
._24_c00185{width:23.397333pt;}
._d_c00185{width:26.293333pt;}
._26_c00185{width:29.210667pt;}
._19_c00185{width:30.218667pt;}
._22_c00185{width:31.642667pt;}
._1a_c00185{width:32.640000pt;}
._18_c00185{width:38.554667pt;}
._1d_c00185{width:48.080000pt;}
._21_c00185{width:59.482667pt;}
._1c_c00185{width:131.253333pt;}
.fs2_c00185{font-size:42.666667pt;}
.fs1_c00185{font-size:50.666667pt;}
.fs0_c00185{font-size:53.333333pt;}
.y0_c00185{bottom:0.000000pt;}
.y52_c00185{bottom:2.760000pt;}
.y51_c00185{bottom:6.425217pt;}
.y50_c00185{bottom:41.040000pt;}
.y27_c00185{bottom:54.240000pt;}
.y4f_c00185{bottom:56.373333pt;}
.y26_c00185{bottom:70.773333pt;}
.y4e_c00185{bottom:72.640000pt;}
.y25_c00185{bottom:86.640000pt;}
.y4d_c00185{bottom:88.506667pt;}
.y24_c00185{bottom:102.906667pt;}
.y4c_c00185{bottom:105.040000pt;}
.y23_c00185{bottom:118.773333pt;}
.y4b_c00185{bottom:120.906667pt;}
.y4a_c00185{bottom:137.306667pt;}
.y22_c00185{bottom:150.906667pt;}
.y49_c00185{bottom:153.040000pt;}
.y21_c00185{bottom:166.773333pt;}
.y48_c00185{bottom:169.440000pt;}
.y20_c00185{bottom:183.840000pt;}
.y47_c00185{bottom:185.040000pt;}
.y46_c00185{bottom:201.306667pt;}
.y1f_c00185{bottom:214.106667pt;}
.y45_c00185{bottom:217.706667pt;}
.y44_c00185{bottom:233.973333pt;}
.y1e_c00185{bottom:246.640000pt;}
.y43_c00185{bottom:249.840000pt;}
.y1d_c00185{bottom:262.106667pt;}
.y42_c00185{bottom:265.173333pt;}
.y1c_c00185{bottom:279.306667pt;}
.y41_c00185{bottom:281.706667pt;}
.y1b_c00185{bottom:294.506667pt;}
.y40_c00185{bottom:298.106667pt;}
.y1a_c00185{bottom:311.040000pt;}
.y3f_c00185{bottom:313.440000pt;}
.y19_c00185{bottom:327.306667pt;}
.y3e_c00185{bottom:329.440000pt;}
.y18_c00185{bottom:343.440000pt;}
.y3d_c00185{bottom:345.840000pt;}
.y17_c00185{bottom:359.440000pt;}
.y3c_c00185{bottom:361.706667pt;}
.y16_c00185{bottom:375.573333pt;}
.y3b_c00185{bottom:377.440000pt;}
.y15_c00185{bottom:392.106667pt;}
.y3a_c00185{bottom:393.573333pt;}
.y14_c00185{bottom:407.973333pt;}
.y39_c00185{bottom:409.706667pt;}
.y13_c00185{bottom:424.240000pt;}
.y38_c00185{bottom:425.440000pt;}
.y12_c00185{bottom:440.373333pt;}
.y37_c00185{bottom:441.840000pt;}
.y11_c00185{bottom:456.640000pt;}
.y36_c00185{bottom:457.840000pt;}
.y10_c00185{bottom:472.506667pt;}
.y35_c00185{bottom:473.440000pt;}
.yf_c00185{bottom:488.906667pt;}
.y34_c00185{bottom:490.106667pt;}
.ye_c00185{bottom:504.640000pt;}
.y33_c00185{bottom:505.840000pt;}
.yd_c00185{bottom:521.040000pt;}
.y32_c00185{bottom:521.973333pt;}
.yc_c00185{bottom:537.573333pt;}
.y31_c00185{bottom:538.240000pt;}
.yb_c00185{bottom:552.506667pt;}
.y30_c00185{bottom:554.640000pt;}
.ya_c00185{bottom:569.706667pt;}
.y2f_c00185{bottom:570.506667pt;}
.y2e_c00185{bottom:586.506667pt;}
.y9_c00185{bottom:587.040000pt;}
.y8_c00185{bottom:602.640000pt;}
.y2d_c00185{bottom:602.906667pt;}
.y7_c00185{bottom:618.240000pt;}
.y2c_c00185{bottom:618.506667pt;}
.y6_c00185{bottom:634.773333pt;}
.y2b_c00185{bottom:635.040000pt;}
.y5_c00185{bottom:651.306667pt;}
.y2a_c00185{bottom:667.173333pt;}
.y4_c00185{bottom:667.706667pt;}
.y29_c00185{bottom:683.306667pt;}
.y3_c00185{bottom:685.440000pt;}
.y28_c00185{bottom:699.573333pt;}
.y2_c00185{bottom:699.840000pt;}
.y1_c00185{bottom:717.040000pt;}
.h3_c00185{height:11.733399pt;}
.h4_c00185{height:38.937500pt;}
.h2_c00185{height:53.098667pt;}
.h1_c00185{height:55.893333pt;}
.h0_c00185{height:747.333333pt;}
.w2_c00185{width:93.222667pt;}
.w1_c00185{width:499.333333pt;}
.w0_c00185{width:499.466667pt;}
.x0_c00185{left:0.000000pt;}
.xd_c00185{left:21.333333pt;}
.x7_c00185{left:26.000000pt;}
.x5_c00185{left:68.133333pt;}
.xb_c00185{left:77.733333pt;}
.x6_c00185{left:79.733333pt;}
.x4_c00185{left:80.933333pt;}
.x2_c00185{left:82.133333pt;}
.x9_c00185{left:103.866667pt;}
.xc_c00185{left:106.533333pt;}
.x3_c00185{left:120.266667pt;}
.xa_c00185{left:138.000000pt;}
.x8_c00185{left:166.533333pt;}
.x1_c00185{left:192.933333pt;}
.x17_c00185{left:206.901571pt;}
.x12_c00185{left:264.533333pt;}
.x15_c00185{left:269.333333pt;}
.x14_c00185{left:270.533333pt;}
.x13_c00185{left:271.466667pt;}
.x11_c00185{left:272.666667pt;}
.xe_c00185{left:273.600000pt;}
.xf_c00185{left:274.800000pt;}
.x10_c00185{left:290.933333pt;}
.x16_c00185{left:423.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_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_9dc6158528cc5ddc9036bb7c.woff2')format("woff");}.ff1_c00186{font-family:ff1_c00186;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00186;src:url('chunks/assets/font_e0856be54d37b228594f4bac.woff2')format("woff");}.ff2_c00186{font-family:ff2_c00186;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00186;src:url('chunks/assets/font_9765bdc9b943932d3d403a38.woff2')format("woff");}.ff3_c00186{font-family:ff3_c00186;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00186;src:url('chunks/assets/font_62b786f00a4a25aa4c204a3b.woff2')format("woff");}.ff4_c00186{font-family:ff4_c00186;line-height:1.012793;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00186;src:url('chunks/assets/font_a5e52213c6f5e9663c2c35d6.woff2')format("woff");}.ff5_c00186{font-family:ff5_c00186;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00186;src:url('chunks/assets/font_76356a909f14b055eeed6995.woff2')format("woff");}.ff6_c00186{font-family:ff6_c00186;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00186;src:url('chunks/assets/font_5ef67695ac87909d8a7a3db8.woff2')format("woff");}.ff7_c00186{font-family:ff7_c00186;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00186;src:url('chunks/assets/font_6814dbec80f1cc4736b824f2.woff2')format("woff");}.ff8_c00186{font-family:ff8_c00186;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00186;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff9_c00186{font-family:ff9_c00186;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00186{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00186{vertical-align:0.000000px;}
.ls7_c00186{letter-spacing:-3.000000px;}
.ls5_c00186{letter-spacing:0.000000px;}
.ls1_c00186{letter-spacing:0.660000px;}
.ls2_c00186{letter-spacing:1.380000px;}
.ls3_c00186{letter-spacing:3.000000px;}
.ls0_c00186{letter-spacing:6.000000px;}
.ls6_c00186{letter-spacing:9.000000px;}
.ls4_c00186{letter-spacing:28.281000px;}
.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;}
}
.wsa_c00186{word-spacing:-39.399000px;}
.ws8_c00186{word-spacing:-33.895200px;}
.ws6_c00186{word-spacing:-24.072000px;}
.ws2_c00186{word-spacing:-22.623000px;}
.ws3_c00186{word-spacing:-20.340000px;}
.ws9_c00186{word-spacing:-20.250000px;}
.ws7_c00186{word-spacing:-19.500000px;}
.ws0_c00186{word-spacing:-18.060000px;}
.ws5_c00186{word-spacing:-15.801000px;}
.ws1_c00186{word-spacing:-14.160000px;}
.wsb_c00186{word-spacing:0.000000px;}
.ws4_c00186{word-spacing:23.940000px;}
._1b_c00186{margin-left:-21.825000px;}
._2a_c00186{margin-left:-20.484000px;}
._1f_c00186{margin-left:-17.325000px;}
._1d_c00186{margin-left:-15.540000px;}
._1e_c00186{margin-left:-13.575000px;}
._1c_c00186{margin-left:-12.120000px;}
._26_c00186{margin-left:-10.602000px;}
._20_c00186{margin-left:-9.600000px;}
._c_c00186{margin-left:-8.460000px;}
._10_c00186{margin-left:-7.065000px;}
._a_c00186{margin-left:-6.018000px;}
._8_c00186{margin-left:-4.500000px;}
._11_c00186{margin-left:-3.240000px;}
._0_c00186{margin-left:-2.160000px;}
._1_c00186{margin-left:-1.020000px;}
._3_c00186{width:1.920000px;}
._4_c00186{width:2.940000px;}
._9_c00186{width:4.560000px;}
._5_c00186{width:6.480000px;}
._d_c00186{width:8.145000px;}
._6_c00186{width:10.200000px;}
._2_c00186{width:11.940000px;}
._14_c00186{width:13.740000px;}
._24_c00186{width:15.120000px;}
._7_c00186{width:16.140000px;}
._21_c00186{width:17.400000px;}
._13_c00186{width:19.398000px;}
._f_c00186{width:20.661000px;}
._19_c00186{width:21.720000px;}
._12_c00186{width:22.860000px;}
._16_c00186{width:24.000000px;}
._18_c00186{width:25.020000px;}
._e_c00186{width:26.049000px;}
._15_c00186{width:27.465000px;}
._17_c00186{width:28.500000px;}
._1a_c00186{width:32.280000px;}
._25_c00186{width:37.209000px;}
._22_c00186{width:49.980000px;}
._b_c00186{width:55.998000px;}
._2b_c00186{width:84.954000px;}
._28_c00186{width:102.558000px;}
._27_c00186{width:114.030000px;}
._29_c00186{width:173.895000px;}
._23_c00186{width:222.960000px;}
.fc2_c00186{color:transparent;}
.fc1_c00186{color:rgb(128,128,128);}
.fc0_c00186{color:rgb(0,0,0);}
.fs8_c00186{font-size:48.000000px;}
.fs5_c00186{font-size:50.400000px;}
.fs1_c00186{font-size:51.000000px;}
.fs2_c00186{font-size:57.000000px;}
.fs0_c00186{font-size:60.000000px;}
.fs4_c00186{font-size:63.000000px;}
.fs3_c00186{font-size:66.000000px;}
.fs7_c00186{font-size:69.000000px;}
.fs6_c00186{font-size:81.000000px;}
.y0_c00186{bottom:0.000000px;}
.y55_c00186{bottom:3.105000px;}
.y54_c00186{bottom:7.228371px;}
.y53_c00186{bottom:25.365000px;}
.y52_c00186{bottom:43.665000px;}
.y29_c00186{bottom:48.615000px;}
.y51_c00186{bottom:62.565000px;}
.y28_c00186{bottom:66.615000px;}
.y50_c00186{bottom:80.715000px;}
.y27_c00186{bottom:85.365000px;}
.y4f_c00186{bottom:98.865000px;}
.y26_c00186{bottom:101.565000px;}
.y4e_c00186{bottom:116.865000px;}
.y25_c00186{bottom:120.465000px;}
.y4d_c00186{bottom:135.015000px;}
.y24_c00186{bottom:138.015000px;}
.y4c_c00186{bottom:153.315000px;}
.y23_c00186{bottom:154.965000px;}
.y4b_c00186{bottom:171.465000px;}
.y22_c00186{bottom:174.915000px;}
.y4a_c00186{bottom:189.465000px;}
.y21_c00186{bottom:193.065000px;}
.y49_c00186{bottom:207.915000px;}
.y20_c00186{bottom:211.665000px;}
.y48_c00186{bottom:225.765000px;}
.y1f_c00186{bottom:227.265000px;}
.y47_c00186{bottom:243.465000px;}
.y1e_c00186{bottom:247.815000px;}
.y46_c00186{bottom:261.015000px;}
.y1d_c00186{bottom:265.965000px;}
.y45_c00186{bottom:279.915000px;}
.y1c_c00186{bottom:282.915000px;}
.y44_c00186{bottom:297.765000px;}
.y1b_c00186{bottom:301.515000px;}
.y43_c00186{bottom:314.865000px;}
.y1a_c00186{bottom:318.615000px;}
.y42_c00186{bottom:333.765000px;}
.y19_c00186{bottom:337.215000px;}
.y41_c00186{bottom:351.465000px;}
.y18_c00186{bottom:354.765000px;}
.y40_c00186{bottom:369.015000px;}
.y17_c00186{bottom:372.615000px;}
.y3f_c00186{bottom:388.815000px;}
.y16_c00186{bottom:391.815000px;}
.y3e_c00186{bottom:405.765000px;}
.y15_c00186{bottom:409.515000px;}
.y3d_c00186{bottom:424.665000px;}
.y14_c00186{bottom:428.415000px;}
.y3c_c00186{bottom:441.765000px;}
.y13_c00186{bottom:445.515000px;}
.y3b_c00186{bottom:459.765000px;}
.y12_c00186{bottom:463.815000px;}
.y3a_c00186{bottom:478.965000px;}
.y11_c00186{bottom:481.065000px;}
.y39_c00186{bottom:496.515000px;}
.y10_c00186{bottom:499.665000px;}
.y38_c00186{bottom:514.815000px;}
.yf_c00186{bottom:517.815000px;}
.y37_c00186{bottom:532.665000px;}
.ye_c00186{bottom:535.965000px;}
.y36_c00186{bottom:551.115000px;}
.yd_c00186{bottom:552.915000px;}
.y35_c00186{bottom:569.715000px;}
.yc_c00186{bottom:571.365000px;}
.y34_c00186{bottom:587.565000px;}
.yb_c00186{bottom:590.265000px;}
.y33_c00186{bottom:605.115000px;}
.ya_c00186{bottom:607.965000px;}
.y32_c00186{bottom:625.515000px;}
.y9_c00186{bottom:626.115000px;}
.y31_c00186{bottom:640.965000px;}
.y8_c00186{bottom:643.965000px;}
.y30_c00186{bottom:660.015000px;}
.y7_c00186{bottom:661.815000px;}
.y2f_c00186{bottom:678.015000px;}
.y6_c00186{bottom:680.715000px;}
.y2e_c00186{bottom:696.015000px;}
.y5_c00186{bottom:697.965000px;}
.y2d_c00186{bottom:714.615000px;}
.y4_c00186{bottom:716.565000px;}
.y2c_c00186{bottom:732.765000px;}
.y3_c00186{bottom:734.115000px;}
.y2b_c00186{bottom:750.615000px;}
.y2_c00186{bottom:752.415000px;}
.y2a_c00186{bottom:769.515000px;}
.y1_c00186{bottom:770.265000px;}
.h9_c00186{height:13.200074px;}
.ha_c00186{height:43.804688px;}
.h3_c00186{height:53.448000px;}
.h2_c00186{height:62.880000px;}
.h5_c00186{height:66.024000px;}
.h4_c00186{height:70.422000px;}
.h7_c00186{height:72.312000px;}
.h8_c00186{height:73.623000px;}
.h6_c00186{height:86.427000px;}
.h1_c00186{height:831.000000px;}
.h0_c00186{height:831.075000px;}
.w2_c00186{width:104.875500px;}
.w1_c00186{width:582.000000px;}
.w0_c00186{width:582.150000px;}
.x0_c00186{left:0.000000px;}
.x8_c00186{left:16.800000px;}
.x4_c00186{left:37.800000px;}
.xc_c00186{left:62.400000px;}
.x2_c00186{left:73.200000px;}
.x3_c00186{left:74.700000px;}
.x6_c00186{left:75.900000px;}
.x7_c00186{left:76.950000px;}
.x9_c00186{left:78.000000px;}
.x5_c00186{left:91.800000px;}
.xb_c00186{left:97.500000px;}
.xa_c00186{left:123.750000px;}
.x1_c00186{left:135.900000px;}
.x13_c00186{left:242.889267px;}
.x11_c00186{left:284.100000px;}
.xf_c00186{left:286.800000px;}
.x10_c00186{left:288.450000px;}
.xd_c00186{left:289.800000px;}
.xe_c00186{left:304.050000px;}
.x12_c00186{left:456.300000px;}
@media print{
.v0_c00186{vertical-align:0.000000pt;}
.ls7_c00186{letter-spacing:-2.666667pt;}
.ls5_c00186{letter-spacing:0.000000pt;}
.ls1_c00186{letter-spacing:0.586667pt;}
.ls2_c00186{letter-spacing:1.226667pt;}
.ls3_c00186{letter-spacing:2.666667pt;}
.ls0_c00186{letter-spacing:5.333333pt;}
.ls6_c00186{letter-spacing:8.000000pt;}
.ls4_c00186{letter-spacing:25.138667pt;}
.wsa_c00186{word-spacing:-35.021333pt;}
.ws8_c00186{word-spacing:-30.129067pt;}
.ws6_c00186{word-spacing:-21.397333pt;}
.ws2_c00186{word-spacing:-20.109333pt;}
.ws3_c00186{word-spacing:-18.080000pt;}
.ws9_c00186{word-spacing:-18.000000pt;}
.ws7_c00186{word-spacing:-17.333333pt;}
.ws0_c00186{word-spacing:-16.053333pt;}
.ws5_c00186{word-spacing:-14.045333pt;}
.ws1_c00186{word-spacing:-12.586667pt;}
.wsb_c00186{word-spacing:0.000000pt;}
.ws4_c00186{word-spacing:21.280000pt;}
._1b_c00186{margin-left:-19.400000pt;}
._2a_c00186{margin-left:-18.208000pt;}
._1f_c00186{margin-left:-15.400000pt;}
._1d_c00186{margin-left:-13.813333pt;}
._1e_c00186{margin-left:-12.066667pt;}
._1c_c00186{margin-left:-10.773333pt;}
._26_c00186{margin-left:-9.424000pt;}
._20_c00186{margin-left:-8.533333pt;}
._c_c00186{margin-left:-7.520000pt;}
._10_c00186{margin-left:-6.280000pt;}
._a_c00186{margin-left:-5.349333pt;}
._8_c00186{margin-left:-4.000000pt;}
._11_c00186{margin-left:-2.880000pt;}
._0_c00186{margin-left:-1.920000pt;}
._1_c00186{margin-left:-0.906667pt;}
._3_c00186{width:1.706667pt;}
._4_c00186{width:2.613333pt;}
._9_c00186{width:4.053333pt;}
._5_c00186{width:5.760000pt;}
._d_c00186{width:7.240000pt;}
._6_c00186{width:9.066667pt;}
._2_c00186{width:10.613333pt;}
._14_c00186{width:12.213333pt;}
._24_c00186{width:13.440000pt;}
._7_c00186{width:14.346667pt;}
._21_c00186{width:15.466667pt;}
._13_c00186{width:17.242667pt;}
._f_c00186{width:18.365333pt;}
._19_c00186{width:19.306667pt;}
._12_c00186{width:20.320000pt;}
._16_c00186{width:21.333333pt;}
._18_c00186{width:22.240000pt;}
._e_c00186{width:23.154667pt;}
._15_c00186{width:24.413333pt;}
._17_c00186{width:25.333333pt;}
._1a_c00186{width:28.693333pt;}
._25_c00186{width:33.074667pt;}
._22_c00186{width:44.426667pt;}
._b_c00186{width:49.776000pt;}
._2b_c00186{width:75.514667pt;}
._28_c00186{width:91.162667pt;}
._27_c00186{width:101.360000pt;}
._29_c00186{width:154.573333pt;}
._23_c00186{width:198.186667pt;}
.fs8_c00186{font-size:42.666667pt;}
.fs5_c00186{font-size:44.800000pt;}
.fs1_c00186{font-size:45.333333pt;}
.fs2_c00186{font-size:50.666667pt;}
.fs0_c00186{font-size:53.333333pt;}
.fs4_c00186{font-size:56.000000pt;}
.fs3_c00186{font-size:58.666667pt;}
.fs7_c00186{font-size:61.333333pt;}
.fs6_c00186{font-size:72.000000pt;}
.y0_c00186{bottom:0.000000pt;}
.y55_c00186{bottom:2.760000pt;}
.y54_c00186{bottom:6.425219pt;}
.y53_c00186{bottom:22.546667pt;}
.y52_c00186{bottom:38.813333pt;}
.y29_c00186{bottom:43.213333pt;}
.y51_c00186{bottom:55.613333pt;}
.y28_c00186{bottom:59.213333pt;}
.y50_c00186{bottom:71.746667pt;}
.y27_c00186{bottom:75.880000pt;}
.y4f_c00186{bottom:87.880000pt;}
.y26_c00186{bottom:90.280000pt;}
.y4e_c00186{bottom:103.880000pt;}
.y25_c00186{bottom:107.080000pt;}
.y4d_c00186{bottom:120.013333pt;}
.y24_c00186{bottom:122.680000pt;}
.y4c_c00186{bottom:136.280000pt;}
.y23_c00186{bottom:137.746667pt;}
.y4b_c00186{bottom:152.413333pt;}
.y22_c00186{bottom:155.480000pt;}
.y4a_c00186{bottom:168.413333pt;}
.y21_c00186{bottom:171.613333pt;}
.y49_c00186{bottom:184.813333pt;}
.y20_c00186{bottom:188.146667pt;}
.y48_c00186{bottom:200.680000pt;}
.y1f_c00186{bottom:202.013333pt;}
.y47_c00186{bottom:216.413333pt;}
.y1e_c00186{bottom:220.280000pt;}
.y46_c00186{bottom:232.013333pt;}
.y1d_c00186{bottom:236.413333pt;}
.y45_c00186{bottom:248.813333pt;}
.y1c_c00186{bottom:251.480000pt;}
.y44_c00186{bottom:264.680000pt;}
.y1b_c00186{bottom:268.013333pt;}
.y43_c00186{bottom:279.880000pt;}
.y1a_c00186{bottom:283.213333pt;}
.y42_c00186{bottom:296.680000pt;}
.y19_c00186{bottom:299.746667pt;}
.y41_c00186{bottom:312.413333pt;}
.y18_c00186{bottom:315.346667pt;}
.y40_c00186{bottom:328.013333pt;}
.y17_c00186{bottom:331.213333pt;}
.y3f_c00186{bottom:345.613333pt;}
.y16_c00186{bottom:348.280000pt;}
.y3e_c00186{bottom:360.680000pt;}
.y15_c00186{bottom:364.013333pt;}
.y3d_c00186{bottom:377.480000pt;}
.y14_c00186{bottom:380.813333pt;}
.y3c_c00186{bottom:392.680000pt;}
.y13_c00186{bottom:396.013333pt;}
.y3b_c00186{bottom:408.680000pt;}
.y12_c00186{bottom:412.280000pt;}
.y3a_c00186{bottom:425.746667pt;}
.y11_c00186{bottom:427.613333pt;}
.y39_c00186{bottom:441.346667pt;}
.y10_c00186{bottom:444.146667pt;}
.y38_c00186{bottom:457.613333pt;}
.yf_c00186{bottom:460.280000pt;}
.y37_c00186{bottom:473.480000pt;}
.ye_c00186{bottom:476.413333pt;}
.y36_c00186{bottom:489.880000pt;}
.yd_c00186{bottom:491.480000pt;}
.y35_c00186{bottom:506.413333pt;}
.yc_c00186{bottom:507.880000pt;}
.y34_c00186{bottom:522.280000pt;}
.yb_c00186{bottom:524.680000pt;}
.y33_c00186{bottom:537.880000pt;}
.ya_c00186{bottom:540.413333pt;}
.y32_c00186{bottom:556.013333pt;}
.y9_c00186{bottom:556.546667pt;}
.y31_c00186{bottom:569.746667pt;}
.y8_c00186{bottom:572.413333pt;}
.y30_c00186{bottom:586.680000pt;}
.y7_c00186{bottom:588.280000pt;}
.y2f_c00186{bottom:602.680000pt;}
.y6_c00186{bottom:605.080000pt;}
.y2e_c00186{bottom:618.680000pt;}
.y5_c00186{bottom:620.413333pt;}
.y2d_c00186{bottom:635.213333pt;}
.y4_c00186{bottom:636.946667pt;}
.y2c_c00186{bottom:651.346667pt;}
.y3_c00186{bottom:652.546667pt;}
.y2b_c00186{bottom:667.213333pt;}
.y2_c00186{bottom:668.813333pt;}
.y2a_c00186{bottom:684.013333pt;}
.y1_c00186{bottom:684.680000pt;}
.h9_c00186{height:11.733399pt;}
.ha_c00186{height:38.937500pt;}
.h3_c00186{height:47.509333pt;}
.h2_c00186{height:55.893333pt;}
.h5_c00186{height:58.688000pt;}
.h4_c00186{height:62.597333pt;}
.h7_c00186{height:64.277333pt;}
.h8_c00186{height:65.442667pt;}
.h6_c00186{height:76.824000pt;}
.h1_c00186{height:738.666667pt;}
.h0_c00186{height:738.733333pt;}
.w2_c00186{width:93.222667pt;}
.w1_c00186{width:517.333333pt;}
.w0_c00186{width:517.466667pt;}
.x0_c00186{left:0.000000pt;}
.x8_c00186{left:14.933333pt;}
.x4_c00186{left:33.600000pt;}
.xc_c00186{left:55.466667pt;}
.x2_c00186{left:65.066667pt;}
.x3_c00186{left:66.400000pt;}
.x6_c00186{left:67.466667pt;}
.x7_c00186{left:68.400000pt;}
.x9_c00186{left:69.333333pt;}
.x5_c00186{left:81.600000pt;}
.xb_c00186{left:86.666667pt;}
.xa_c00186{left:110.000000pt;}
.x1_c00186{left:120.800000pt;}
.x13_c00186{left:215.901571pt;}
.x11_c00186{left:252.533333pt;}
.xf_c00186{left:254.933333pt;}
.x10_c00186{left:256.400000pt;}
.xd_c00186{left:257.600000pt;}
.xe_c00186{left:270.266667pt;}
.x12_c00186{left:405.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_c00187 {
    display:none;
  }
  .loading-indicator_c00187.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00187 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00187 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00187" -> "#page-container .classname_c00187")
 */
.pf_c00187 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00187 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00187.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00187 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00187 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00187 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00187 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00187 {overflow:visible;}
  }
}
.c_c00187 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00187 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00187:after { /* webkit #35443 */
  content: '';
}
.t_c00187:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00187 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00187 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00187 { /* info for Javascript */
  display:none;
}
.l_c00187 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00187 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00187 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00187:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00187{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00187;src:url('chunks/assets/font_67fecce309e43bd1ddf88037.woff2')format("woff");}.ff1_c00187{font-family:ff1_c00187;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00187;src:url('chunks/assets/font_84e2631635437b0819419d18.woff2')format("woff");}.ff2_c00187{font-family:ff2_c00187;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00187;src:url('chunks/assets/font_410d57d56006d58c656d851e.woff2')format("woff");}.ff3_c00187{font-family:ff3_c00187;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00187;src:url('chunks/assets/font_0ce391de997f24f9f9dd37f4.woff2')format("woff");}.ff4_c00187{font-family:ff4_c00187;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00187;src:url('chunks/assets/font_477bea3eafccb8f23cdfd6f8.woff2')format("woff");}.ff5_c00187{font-family:ff5_c00187;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00187;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff6_c00187{font-family:ff6_c00187;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00187{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00187{vertical-align:0.000000px;}
.ls6_c00187{letter-spacing:0.000000px;}
.ls0_c00187{letter-spacing:0.405000px;}
.ls1_c00187{letter-spacing:0.480000px;}
.ls4_c00187{letter-spacing:2.340000px;}
.ls2_c00187{letter-spacing:3.000000px;}
.ls5_c00187{letter-spacing:9.000000px;}
.ls3_c00187{letter-spacing:14.340000px;}
.ls7_c00187{letter-spacing:15.000000px;}
.sc__c00187{text-shadow:none;}
.sc0_c00187{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00187{-webkit-text-stroke:0px transparent;}
.sc0_c00187{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00187{word-spacing:-26.319000px;}
.ws2_c00187{word-spacing:-17.340000px;}
.ws1_c00187{word-spacing:-14.160000px;}
.ws3_c00187{word-spacing:0.000000px;}
._1e_c00187{margin-left:-26.760000px;}
._24_c00187{margin-left:-21.720000px;}
._23_c00187{margin-left:-16.041000px;}
._16_c00187{margin-left:-13.812000px;}
._1f_c00187{margin-left:-12.357000px;}
._17_c00187{margin-left:-10.722000px;}
._20_c00187{margin-left:-9.693000px;}
._13_c00187{margin-left:-8.430000px;}
._1_c00187{margin-left:-6.348000px;}
._e_c00187{margin-left:-4.638000px;}
._5_c00187{margin-left:-2.622000px;}
._3_c00187{margin-left:-1.242000px;}
._7_c00187{width:1.020000px;}
._8_c00187{width:2.040000px;}
._4_c00187{width:3.243000px;}
._0_c00187{width:5.106000px;}
._14_c00187{width:6.237000px;}
._6_c00187{width:7.659000px;}
._10_c00187{width:9.522000px;}
._f_c00187{width:11.280000px;}
._21_c00187{width:12.297000px;}
._d_c00187{width:13.494000px;}
._1b_c00187{width:14.823000px;}
._19_c00187{width:16.674000px;}
._11_c00187{width:20.340000px;}
._12_c00187{width:21.480000px;}
._15_c00187{width:25.074000px;}
._28_c00187{width:26.274000px;}
._26_c00187{width:28.284000px;}
._25_c00187{width:29.835000px;}
._27_c00187{width:35.682000px;}
._29_c00187{width:38.130000px;}
._a_c00187{width:42.900000px;}
._9_c00187{width:45.180000px;}
._1a_c00187{width:48.900000px;}
._b_c00187{width:51.282000px;}
._c_c00187{width:53.700000px;}
._1d_c00187{width:69.111000px;}
._1c_c00187{width:72.819000px;}
._2a_c00187{width:79.572000px;}
._18_c00187{width:144.972000px;}
._22_c00187{width:269.211000px;}
._2_c00187{width:353.871000px;}
.fc2_c00187{color:transparent;}
.fc1_c00187{color:rgb(128,128,128);}
.fc0_c00187{color:rgb(0,0,0);}
.fs2_c00187{font-size:45.000000px;}
.fs3_c00187{font-size:48.000000px;}
.fs1_c00187{font-size:60.000000px;}
.fs0_c00187{font-size:69.000000px;}
.y0_c00187{bottom:0.000000px;}
.y53_c00187{bottom:3.105000px;}
.y52_c00187{bottom:7.228369px;}
.y51_c00187{bottom:41.070000px;}
.y2a_c00187{bottom:58.020000px;}
.y50_c00187{bottom:59.370000px;}
.y29_c00187{bottom:77.220000px;}
.y4f_c00187{bottom:77.670000px;}
.y28_c00187{bottom:94.770000px;}
.y4e_c00187{bottom:95.520000px;}
.y27_c00187{bottom:112.770000px;}
.y4d_c00187{bottom:113.370000px;}
.y26_c00187{bottom:131.520000px;}
.y4c_c00187{bottom:131.670000px;}
.y25_c00187{bottom:148.770000px;}
.y4b_c00187{bottom:150.120000px;}
.y24_c00187{bottom:167.070000px;}
.y4a_c00187{bottom:167.970000px;}
.y23_c00187{bottom:185.520000px;}
.y49_c00187{bottom:185.970000px;}
.y22_c00187{bottom:203.220000px;}
.y48_c00187{bottom:204.420000px;}
.y21_c00187{bottom:221.970000px;}
.y47_c00187{bottom:222.120000px;}
.y20_c00187{bottom:239.520000px;}
.y46_c00187{bottom:240.270000px;}
.y1f_c00187{bottom:257.220000px;}
.y45_c00187{bottom:258.570000px;}
.y1e_c00187{bottom:275.670000px;}
.y44_c00187{bottom:276.720000px;}
.y1d_c00187{bottom:293.970000px;}
.y43_c00187{bottom:294.570000px;}
.y1c_c00187{bottom:311.520000px;}
.y42_c00187{bottom:312.420000px;}
.y1b_c00187{bottom:330.870000px;}
.y41_c00187{bottom:331.020000px;}
.y40_c00187{bottom:348.570000px;}
.y1a_c00187{bottom:348.720000px;}
.y19_c00187{bottom:366.570000px;}
.y3f_c00187{bottom:366.870000px;}
.y18_c00187{bottom:384.420000px;}
.y3e_c00187{bottom:385.470000px;}
.y17_c00187{bottom:402.570000px;}
.y3d_c00187{bottom:403.020000px;}
.y16_c00187{bottom:420.570000px;}
.y3c_c00187{bottom:421.470000px;}
.y15_c00187{bottom:438.720000px;}
.y3b_c00187{bottom:439.320000px;}
.y14_c00187{bottom:457.320000px;}
.y3a_c00187{bottom:457.620000px;}
.y13_c00187{bottom:475.470000px;}
.y12_c00187{bottom:492.720000px;}
.y39_c00187{bottom:494.370000px;}
.y11_c00187{bottom:511.020000px;}
.y38_c00187{bottom:511.920000px;}
.y10_c00187{bottom:529.170000px;}
.y37_c00187{bottom:530.220000px;}
.yf_c00187{bottom:547.020000px;}
.y36_c00187{bottom:548.670000px;}
.ye_c00187{bottom:565.020000px;}
.y35_c00187{bottom:566.370000px;}
.yd_c00187{bottom:583.170000px;}
.y34_c00187{bottom:583.920000px;}
.yc_c00187{bottom:601.470000px;}
.y33_c00187{bottom:602.370000px;}
.yb_c00187{bottom:619.320000px;}
.y32_c00187{bottom:620.370000px;}
.ya_c00187{bottom:637.470000px;}
.y31_c00187{bottom:639.120000px;}
.y9_c00187{bottom:655.770000px;}
.y30_c00187{bottom:656.820000px;}
.y8_c00187{bottom:674.220000px;}
.y2f_c00187{bottom:674.970000px;}
.y7_c00187{bottom:692.220000px;}
.y6_c00187{bottom:709.770000px;}
.y5_c00187{bottom:727.920000px;}
.y2e_c00187{bottom:728.220000px;}
.y2d_c00187{bottom:746.220000px;}
.y4_c00187{bottom:746.520000px;}
.y3_c00187{bottom:764.070000px;}
.y2c_c00187{bottom:764.670000px;}
.y2_c00187{bottom:782.220000px;}
.y1_c00187{bottom:800.820000px;}
.y2b_c00187{bottom:802.920000px;}
.h4_c00187{height:13.200073px;}
.h5_c00187{height:43.804688px;}
.h2_c00187{height:62.880000px;}
.h3_c00187{height:72.312000px;}
.h1_c00187{height:73.623000px;}
.h0_c00187{height:840.750000px;}
.w2_c00187{width:104.875500px;}
.w1_c00187{width:561.750000px;}
.w0_c00187{width:561.900000px;}
.x0_c00187{left:0.000000px;}
.x4_c00187{left:25.950000px;}
.x3_c00187{left:47.250000px;}
.x5_c00187{left:54.900000px;}
.x6_c00187{left:81.000000px;}
.x9_c00187{left:87.450000px;}
.x8_c00187{left:88.500000px;}
.x7_c00187{left:89.550000px;}
.x2_c00187{left:90.750000px;}
.x1_c00187{left:92.250000px;}
.x10_c00187{left:232.764267px;}
.xa_c00187{left:300.750000px;}
.xe_c00187{left:305.400000px;}
.xb_c00187{left:307.500000px;}
.xd_c00187{left:308.850000px;}
.xc_c00187{left:344.700000px;}
.xf_c00187{left:478.950000px;}
@media print{
.v0_c00187{vertical-align:0.000000pt;}
.ls6_c00187{letter-spacing:0.000000pt;}
.ls0_c00187{letter-spacing:0.360000pt;}
.ls1_c00187{letter-spacing:0.426667pt;}
.ls4_c00187{letter-spacing:2.080000pt;}
.ls2_c00187{letter-spacing:2.666667pt;}
.ls5_c00187{letter-spacing:8.000000pt;}
.ls3_c00187{letter-spacing:12.746667pt;}
.ls7_c00187{letter-spacing:13.333333pt;}
.ws0_c00187{word-spacing:-23.394667pt;}
.ws2_c00187{word-spacing:-15.413333pt;}
.ws1_c00187{word-spacing:-12.586667pt;}
.ws3_c00187{word-spacing:0.000000pt;}
._1e_c00187{margin-left:-23.786667pt;}
._24_c00187{margin-left:-19.306667pt;}
._23_c00187{margin-left:-14.258667pt;}
._16_c00187{margin-left:-12.277333pt;}
._1f_c00187{margin-left:-10.984000pt;}
._17_c00187{margin-left:-9.530667pt;}
._20_c00187{margin-left:-8.616000pt;}
._13_c00187{margin-left:-7.493333pt;}
._1_c00187{margin-left:-5.642667pt;}
._e_c00187{margin-left:-4.122667pt;}
._5_c00187{margin-left:-2.330667pt;}
._3_c00187{margin-left:-1.104000pt;}
._7_c00187{width:0.906667pt;}
._8_c00187{width:1.813333pt;}
._4_c00187{width:2.882667pt;}
._0_c00187{width:4.538667pt;}
._14_c00187{width:5.544000pt;}
._6_c00187{width:6.808000pt;}
._10_c00187{width:8.464000pt;}
._f_c00187{width:10.026667pt;}
._21_c00187{width:10.930667pt;}
._d_c00187{width:11.994667pt;}
._1b_c00187{width:13.176000pt;}
._19_c00187{width:14.821333pt;}
._11_c00187{width:18.080000pt;}
._12_c00187{width:19.093333pt;}
._15_c00187{width:22.288000pt;}
._28_c00187{width:23.354667pt;}
._26_c00187{width:25.141333pt;}
._25_c00187{width:26.520000pt;}
._27_c00187{width:31.717333pt;}
._29_c00187{width:33.893333pt;}
._a_c00187{width:38.133333pt;}
._9_c00187{width:40.160000pt;}
._1a_c00187{width:43.466667pt;}
._b_c00187{width:45.584000pt;}
._c_c00187{width:47.733333pt;}
._1d_c00187{width:61.432000pt;}
._1c_c00187{width:64.728000pt;}
._2a_c00187{width:70.730667pt;}
._18_c00187{width:128.864000pt;}
._22_c00187{width:239.298667pt;}
._2_c00187{width:314.552000pt;}
.fs2_c00187{font-size:40.000000pt;}
.fs3_c00187{font-size:42.666667pt;}
.fs1_c00187{font-size:53.333333pt;}
.fs0_c00187{font-size:61.333333pt;}
.y0_c00187{bottom:0.000000pt;}
.y53_c00187{bottom:2.760000pt;}
.y52_c00187{bottom:6.425217pt;}
.y51_c00187{bottom:36.506667pt;}
.y2a_c00187{bottom:51.573333pt;}
.y50_c00187{bottom:52.773333pt;}
.y29_c00187{bottom:68.640000pt;}
.y4f_c00187{bottom:69.040000pt;}
.y28_c00187{bottom:84.240000pt;}
.y4e_c00187{bottom:84.906667pt;}
.y27_c00187{bottom:100.240000pt;}
.y4d_c00187{bottom:100.773333pt;}
.y26_c00187{bottom:116.906667pt;}
.y4c_c00187{bottom:117.040000pt;}
.y25_c00187{bottom:132.240000pt;}
.y4b_c00187{bottom:133.440000pt;}
.y24_c00187{bottom:148.506667pt;}
.y4a_c00187{bottom:149.306667pt;}
.y23_c00187{bottom:164.906667pt;}
.y49_c00187{bottom:165.306667pt;}
.y22_c00187{bottom:180.640000pt;}
.y48_c00187{bottom:181.706667pt;}
.y21_c00187{bottom:197.306667pt;}
.y47_c00187{bottom:197.440000pt;}
.y20_c00187{bottom:212.906667pt;}
.y46_c00187{bottom:213.573333pt;}
.y1f_c00187{bottom:228.640000pt;}
.y45_c00187{bottom:229.840000pt;}
.y1e_c00187{bottom:245.040000pt;}
.y44_c00187{bottom:245.973333pt;}
.y1d_c00187{bottom:261.306667pt;}
.y43_c00187{bottom:261.840000pt;}
.y1c_c00187{bottom:276.906667pt;}
.y42_c00187{bottom:277.706667pt;}
.y1b_c00187{bottom:294.106667pt;}
.y41_c00187{bottom:294.240000pt;}
.y40_c00187{bottom:309.840000pt;}
.y1a_c00187{bottom:309.973333pt;}
.y19_c00187{bottom:325.840000pt;}
.y3f_c00187{bottom:326.106667pt;}
.y18_c00187{bottom:341.706667pt;}
.y3e_c00187{bottom:342.640000pt;}
.y17_c00187{bottom:357.840000pt;}
.y3d_c00187{bottom:358.240000pt;}
.y16_c00187{bottom:373.840000pt;}
.y3c_c00187{bottom:374.640000pt;}
.y15_c00187{bottom:389.973333pt;}
.y3b_c00187{bottom:390.506667pt;}
.y14_c00187{bottom:406.506667pt;}
.y3a_c00187{bottom:406.773333pt;}
.y13_c00187{bottom:422.640000pt;}
.y12_c00187{bottom:437.973333pt;}
.y39_c00187{bottom:439.440000pt;}
.y11_c00187{bottom:454.240000pt;}
.y38_c00187{bottom:455.040000pt;}
.y10_c00187{bottom:470.373333pt;}
.y37_c00187{bottom:471.306667pt;}
.yf_c00187{bottom:486.240000pt;}
.y36_c00187{bottom:487.706667pt;}
.ye_c00187{bottom:502.240000pt;}
.y35_c00187{bottom:503.440000pt;}
.yd_c00187{bottom:518.373333pt;}
.y34_c00187{bottom:519.040000pt;}
.yc_c00187{bottom:534.640000pt;}
.y33_c00187{bottom:535.440000pt;}
.yb_c00187{bottom:550.506667pt;}
.y32_c00187{bottom:551.440000pt;}
.ya_c00187{bottom:566.640000pt;}
.y31_c00187{bottom:568.106667pt;}
.y9_c00187{bottom:582.906667pt;}
.y30_c00187{bottom:583.840000pt;}
.y8_c00187{bottom:599.306667pt;}
.y2f_c00187{bottom:599.973333pt;}
.y7_c00187{bottom:615.306667pt;}
.y6_c00187{bottom:630.906667pt;}
.y5_c00187{bottom:647.040000pt;}
.y2e_c00187{bottom:647.306667pt;}
.y2d_c00187{bottom:663.306667pt;}
.y4_c00187{bottom:663.573333pt;}
.y3_c00187{bottom:679.173333pt;}
.y2c_c00187{bottom:679.706667pt;}
.y2_c00187{bottom:695.306667pt;}
.y1_c00187{bottom:711.840000pt;}
.y2b_c00187{bottom:713.706667pt;}
.h4_c00187{height:11.733399pt;}
.h5_c00187{height:38.937500pt;}
.h2_c00187{height:55.893333pt;}
.h3_c00187{height:64.277333pt;}
.h1_c00187{height:65.442667pt;}
.h0_c00187{height:747.333333pt;}
.w2_c00187{width:93.222667pt;}
.w1_c00187{width:499.333333pt;}
.w0_c00187{width:499.466667pt;}
.x0_c00187{left:0.000000pt;}
.x4_c00187{left:23.066667pt;}
.x3_c00187{left:42.000000pt;}
.x5_c00187{left:48.800000pt;}
.x6_c00187{left:72.000000pt;}
.x9_c00187{left:77.733333pt;}
.x8_c00187{left:78.666667pt;}
.x7_c00187{left:79.600000pt;}
.x2_c00187{left:80.666667pt;}
.x1_c00187{left:82.000000pt;}
.x10_c00187{left:206.901571pt;}
.xa_c00187{left:267.333333pt;}
.xe_c00187{left:271.466667pt;}
.xb_c00187{left:273.333333pt;}
.xd_c00187{left:274.533333pt;}
.xc_c00187{left:306.400000pt;}
.xf_c00187{left:425.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d11ffaa9fa3e8027040edf73.woff2')format("woff");}.ff1_c00188{font-family:ff1_c00188;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00188;src:url('chunks/assets/font_637a88e59c35eb623141b45e.woff2')format("woff");}.ff2_c00188{font-family:ff2_c00188;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00188;src:url('chunks/assets/font_aa9ee0d29d95f442a9d0432a.woff2')format("woff");}.ff3_c00188{font-family:ff3_c00188;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00188;src:url('chunks/assets/font_ed6e223cbf6e3352166ba978.woff2')format("woff");}.ff4_c00188{font-family:ff4_c00188;line-height:1.575000;font-style:normal;font-weight:normal;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_91d02470e23bd823562f0e1f.woff2')format("woff");}.ff5_c00188{font-family:ff5_c00188;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00188;src:url('chunks/assets/font_aab2ecb76c7fd6ce0c672d70.woff2')format("woff");}.ff6_c00188{font-family:ff6_c00188;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00188;src:url('chunks/assets/font_b46a6d9629e932943e39492b.woff2')format("woff");}.ff7_c00188{font-family:ff7_c00188;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00188;src:url('chunks/assets/font_53970840027122674b0aca81.woff2')format("woff");}.ff8_c00188{font-family:ff8_c00188;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00188;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff9_c00188{font-family:ff9_c00188;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00188{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00188{vertical-align:0.000000px;}
.lsb_c00188{letter-spacing:-6.000000px;}
.lsa_c00188{letter-spacing:0.000000px;}
.ls7_c00188{letter-spacing:1.800000px;}
.ls6_c00188{letter-spacing:2.184000px;}
.ls0_c00188{letter-spacing:3.000000px;}
.lsc_c00188{letter-spacing:6.000000px;}
.ls9_c00188{letter-spacing:9.000000px;}
.ls1_c00188{letter-spacing:10.200000px;}
.ls3_c00188{letter-spacing:14.184000px;}
.ls4_c00188{letter-spacing:24.384000px;}
.ls8_c00188{letter-spacing:24.405000px;}
.ls5_c00188{letter-spacing:30.984000px;}
.ls2_c00188{letter-spacing:83.784000px;}
.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;}
}
.ws3_c00188{word-spacing:-44.415000px;}
.ws4_c00188{word-spacing:-18.060000px;}
.ws5_c00188{word-spacing:-17.340000px;}
.ws1_c00188{word-spacing:-14.160000px;}
.ws6_c00188{word-spacing:0.000000px;}
.ws0_c00188{word-spacing:3.360000px;}
.ws2_c00188{word-spacing:5.040000px;}
._c_c00188{margin-left:-20.130000px;}
._24_c00188{margin-left:-18.060000px;}
._29_c00188{margin-left:-14.460000px;}
._1b_c00188{margin-left:-12.690000px;}
._26_c00188{margin-left:-10.590000px;}
._28_c00188{margin-left:-9.420000px;}
._d_c00188{margin-left:-8.052000px;}
._12_c00188{margin-left:-6.240000px;}
._4_c00188{margin-left:-5.040000px;}
._a_c00188{margin-left:-3.900000px;}
._9_c00188{margin-left:-2.700000px;}
._b_c00188{margin-left:-1.560000px;}
._3_c00188{width:1.620000px;}
._6_c00188{width:3.360000px;}
._7_c00188{width:4.680000px;}
._5_c00188{width:6.660000px;}
._11_c00188{width:8.550000px;}
._8_c00188{width:9.840000px;}
._10_c00188{width:11.520000px;}
._0_c00188{width:12.720000px;}
._19_c00188{width:14.220000px;}
._2_c00188{width:15.660000px;}
._18_c00188{width:17.136000px;}
._f_c00188{width:19.020000px;}
._27_c00188{width:20.304000px;}
._e_c00188{width:21.672000px;}
._1d_c00188{width:22.758000px;}
._14_c00188{width:23.760000px;}
._21_c00188{width:25.296000px;}
._13_c00188{width:27.030000px;}
._25_c00188{width:28.080000px;}
._1a_c00188{width:30.060000px;}
._16_c00188{width:31.260000px;}
._22_c00188{width:33.084000px;}
._2a_c00188{width:35.652000px;}
._1e_c00188{width:38.280000px;}
._20_c00188{width:40.158000px;}
._1c_c00188{width:42.420000px;}
._1f_c00188{width:43.428000px;}
._1_c00188{width:45.540000px;}
._2c_c00188{width:52.140000px;}
._2d_c00188{width:56.520000px;}
._2b_c00188{width:61.125000px;}
._17_c00188{width:72.540000px;}
._2e_c00188{width:83.700000px;}
._23_c00188{width:124.656000px;}
._2f_c00188{width:197.100000px;}
._15_c00188{width:240.660000px;}
.fc2_c00188{color:transparent;}
.fc1_c00188{color:rgb(128,128,128);}
.fc0_c00188{color:rgb(0,0,0);}
.fs4_c00188{font-size:45.000000px;}
.fs3_c00188{font-size:48.000000px;}
.fs1_c00188{font-size:60.000000px;}
.fs2_c00188{font-size:66.000000px;}
.fs0_c00188{font-size:213.000000px;}
.y0_c00188{bottom:0.000000px;}
.y51_c00188{bottom:3.105000px;}
.y50_c00188{bottom:7.228357px;}
.y4f_c00188{bottom:38.430000px;}
.y4e_c00188{bottom:61.530000px;}
.y28_c00188{bottom:62.730000px;}
.y4d_c00188{bottom:79.680000px;}
.y27_c00188{bottom:80.280000px;}
.y4c_c00188{bottom:97.230000px;}
.y26_c00188{bottom:98.880000px;}
.y4b_c00188{bottom:115.080000px;}
.y25_c00188{bottom:116.880000px;}
.y4a_c00188{bottom:133.080000px;}
.y24_c00188{bottom:134.280000px;}
.y49_c00188{bottom:151.530000px;}
.y23_c00188{bottom:151.980000px;}
.y48_c00188{bottom:169.080000px;}
.y22_c00188{bottom:169.530000px;}
.y47_c00188{bottom:186.630000px;}
.y21_c00188{bottom:187.080000px;}
.y46_c00188{bottom:204.480000px;}
.y20_c00188{bottom:204.930000px;}
.y45_c00188{bottom:222.180000px;}
.y1f_c00188{bottom:223.080000px;}
.y44_c00188{bottom:239.730000px;}
.y1e_c00188{bottom:240.930000px;}
.y1d_c00188{bottom:257.730000px;}
.y43_c00188{bottom:258.180000px;}
.y1c_c00188{bottom:275.730000px;}
.y42_c00188{bottom:276.180000px;}
.y1b_c00188{bottom:293.730000px;}
.y41_c00188{bottom:294.030000px;}
.y1a_c00188{bottom:311.580000px;}
.y40_c00188{bottom:311.880000px;}
.y19_c00188{bottom:329.730000px;}
.y3f_c00188{bottom:330.030000px;}
.y3e_c00188{bottom:347.280000px;}
.y18_c00188{bottom:347.580000px;}
.y3d_c00188{bottom:365.130000px;}
.y17_c00188{bottom:365.280000px;}
.y16_c00188{bottom:383.430000px;}
.y15_c00188{bottom:401.580000px;}
.y3c_c00188{bottom:419.280000px;}
.y14_c00188{bottom:419.580000px;}
.y13_c00188{bottom:437.430000px;}
.y12_c00188{bottom:454.680000px;}
.y3b_c00188{bottom:455.580000px;}
.y11_c00188{bottom:472.230000px;}
.y3a_c00188{bottom:473.280000px;}
.y10_c00188{bottom:490.080000px;}
.y39_c00188{bottom:491.430000px;}
.yf_c00188{bottom:508.380000px;}
.y38_c00188{bottom:509.730000px;}
.ye_c00188{bottom:525.780000px;}
.y37_c00188{bottom:527.580000px;}
.yd_c00188{bottom:543.780000px;}
.y36_c00188{bottom:545.430000px;}
.yc_c00188{bottom:561.330000px;}
.y35_c00188{bottom:563.280000px;}
.y1_c00188{bottom:574.830000px;}
.yb_c00188{bottom:579.480000px;}
.y34_c00188{bottom:581.580000px;}
.ya_c00188{bottom:597.330000px;}
.y33_c00188{bottom:598.680000px;}
.y32_c00188{bottom:617.580000px;}
.y9_c00188{bottom:632.880000px;}
.y31_c00188{bottom:635.280000px;}
.y8_c00188{bottom:651.330000px;}
.y30_c00188{bottom:653.430000px;}
.y7_c00188{bottom:668.880000px;}
.y2f_c00188{bottom:671.580000px;}
.y6_c00188{bottom:687.180000px;}
.y2e_c00188{bottom:689.280000px;}
.y2d_c00188{bottom:707.430000px;}
.y5_c00188{bottom:721.230000px;}
.y2c_c00188{bottom:725.580000px;}
.y2b_c00188{bottom:743.580000px;}
.y4_c00188{bottom:757.680000px;}
.y2a_c00188{bottom:762.030000px;}
.y3_c00188{bottom:776.280000px;}
.y29_c00188{bottom:779.580000px;}
.y2_c00188{bottom:797.280000px;}
.h6_c00188{height:13.200074px;}
.h7_c00188{height:43.804688px;}
.h3_c00188{height:62.880000px;}
.h5_c00188{height:64.020000px;}
.h4_c00188{height:70.422000px;}
.h2_c00188{height:223.224000px;}
.h0_c00188{height:842.700000px;}
.h1_c00188{height:843.000000px;}
.w1_c00188{width:104.875500px;}
.w0_c00188{width:590.250000px;}
.x0_c00188{left:0.000000px;}
.xa_c00188{left:17.850000px;}
.xb_c00188{left:19.950000px;}
.x3_c00188{left:77.250000px;}
.x1_c00188{left:79.350000px;}
.x9_c00188{left:80.550000px;}
.x6_c00188{left:95.400000px;}
.x5_c00188{left:115.350000px;}
.x8_c00188{left:123.450000px;}
.x4_c00188{left:146.700000px;}
.x7_c00188{left:160.200000px;}
.x2_c00188{left:210.600000px;}
.x15_c00188{left:246.939240px;}
.x13_c00188{left:290.850000px;}
.x12_c00188{left:293.550000px;}
.x10_c00188{left:294.600000px;}
.xe_c00188{left:295.950000px;}
.xf_c00188{left:297.000000px;}
.xd_c00188{left:298.050000px;}
.xc_c00188{left:300.000000px;}
.x11_c00188{left:325.050000px;}
.x14_c00188{left:395.250000px;}
@media print{
.v0_c00188{vertical-align:0.000000pt;}
.lsb_c00188{letter-spacing:-5.333333pt;}
.lsa_c00188{letter-spacing:0.000000pt;}
.ls7_c00188{letter-spacing:1.600000pt;}
.ls6_c00188{letter-spacing:1.941333pt;}
.ls0_c00188{letter-spacing:2.666667pt;}
.lsc_c00188{letter-spacing:5.333333pt;}
.ls9_c00188{letter-spacing:8.000000pt;}
.ls1_c00188{letter-spacing:9.066667pt;}
.ls3_c00188{letter-spacing:12.608000pt;}
.ls4_c00188{letter-spacing:21.674667pt;}
.ls8_c00188{letter-spacing:21.693333pt;}
.ls5_c00188{letter-spacing:27.541333pt;}
.ls2_c00188{letter-spacing:74.474667pt;}
.ws3_c00188{word-spacing:-39.480000pt;}
.ws4_c00188{word-spacing:-16.053333pt;}
.ws5_c00188{word-spacing:-15.413333pt;}
.ws1_c00188{word-spacing:-12.586667pt;}
.ws6_c00188{word-spacing:0.000000pt;}
.ws0_c00188{word-spacing:2.986667pt;}
.ws2_c00188{word-spacing:4.480000pt;}
._c_c00188{margin-left:-17.893333pt;}
._24_c00188{margin-left:-16.053333pt;}
._29_c00188{margin-left:-12.853333pt;}
._1b_c00188{margin-left:-11.280000pt;}
._26_c00188{margin-left:-9.413333pt;}
._28_c00188{margin-left:-8.373333pt;}
._d_c00188{margin-left:-7.157333pt;}
._12_c00188{margin-left:-5.546667pt;}
._4_c00188{margin-left:-4.480000pt;}
._a_c00188{margin-left:-3.466667pt;}
._9_c00188{margin-left:-2.400000pt;}
._b_c00188{margin-left:-1.386667pt;}
._3_c00188{width:1.440000pt;}
._6_c00188{width:2.986667pt;}
._7_c00188{width:4.160000pt;}
._5_c00188{width:5.920000pt;}
._11_c00188{width:7.600000pt;}
._8_c00188{width:8.746667pt;}
._10_c00188{width:10.240000pt;}
._0_c00188{width:11.306667pt;}
._19_c00188{width:12.640000pt;}
._2_c00188{width:13.920000pt;}
._18_c00188{width:15.232000pt;}
._f_c00188{width:16.906667pt;}
._27_c00188{width:18.048000pt;}
._e_c00188{width:19.264000pt;}
._1d_c00188{width:20.229333pt;}
._14_c00188{width:21.120000pt;}
._21_c00188{width:22.485333pt;}
._13_c00188{width:24.026667pt;}
._25_c00188{width:24.960000pt;}
._1a_c00188{width:26.720000pt;}
._16_c00188{width:27.786667pt;}
._22_c00188{width:29.408000pt;}
._2a_c00188{width:31.690667pt;}
._1e_c00188{width:34.026667pt;}
._20_c00188{width:35.696000pt;}
._1c_c00188{width:37.706667pt;}
._1f_c00188{width:38.602667pt;}
._1_c00188{width:40.480000pt;}
._2c_c00188{width:46.346667pt;}
._2d_c00188{width:50.240000pt;}
._2b_c00188{width:54.333333pt;}
._17_c00188{width:64.480000pt;}
._2e_c00188{width:74.400000pt;}
._23_c00188{width:110.805333pt;}
._2f_c00188{width:175.200000pt;}
._15_c00188{width:213.920000pt;}
.fs4_c00188{font-size:40.000000pt;}
.fs3_c00188{font-size:42.666667pt;}
.fs1_c00188{font-size:53.333333pt;}
.fs2_c00188{font-size:58.666667pt;}
.fs0_c00188{font-size:189.333333pt;}
.y0_c00188{bottom:0.000000pt;}
.y51_c00188{bottom:2.760000pt;}
.y50_c00188{bottom:6.425206pt;}
.y4f_c00188{bottom:34.160000pt;}
.y4e_c00188{bottom:54.693333pt;}
.y28_c00188{bottom:55.760000pt;}
.y4d_c00188{bottom:70.826667pt;}
.y27_c00188{bottom:71.360000pt;}
.y4c_c00188{bottom:86.426667pt;}
.y26_c00188{bottom:87.893333pt;}
.y4b_c00188{bottom:102.293333pt;}
.y25_c00188{bottom:103.893333pt;}
.y4a_c00188{bottom:118.293333pt;}
.y24_c00188{bottom:119.360000pt;}
.y49_c00188{bottom:134.693333pt;}
.y23_c00188{bottom:135.093333pt;}
.y48_c00188{bottom:150.293333pt;}
.y22_c00188{bottom:150.693333pt;}
.y47_c00188{bottom:165.893333pt;}
.y21_c00188{bottom:166.293333pt;}
.y46_c00188{bottom:181.760000pt;}
.y20_c00188{bottom:182.160000pt;}
.y45_c00188{bottom:197.493333pt;}
.y1f_c00188{bottom:198.293333pt;}
.y44_c00188{bottom:213.093333pt;}
.y1e_c00188{bottom:214.160000pt;}
.y1d_c00188{bottom:229.093333pt;}
.y43_c00188{bottom:229.493333pt;}
.y1c_c00188{bottom:245.093333pt;}
.y42_c00188{bottom:245.493333pt;}
.y1b_c00188{bottom:261.093333pt;}
.y41_c00188{bottom:261.360000pt;}
.y1a_c00188{bottom:276.960000pt;}
.y40_c00188{bottom:277.226667pt;}
.y19_c00188{bottom:293.093333pt;}
.y3f_c00188{bottom:293.360000pt;}
.y3e_c00188{bottom:308.693333pt;}
.y18_c00188{bottom:308.960000pt;}
.y3d_c00188{bottom:324.560000pt;}
.y17_c00188{bottom:324.693333pt;}
.y16_c00188{bottom:340.826667pt;}
.y15_c00188{bottom:356.960000pt;}
.y3c_c00188{bottom:372.693333pt;}
.y14_c00188{bottom:372.960000pt;}
.y13_c00188{bottom:388.826667pt;}
.y12_c00188{bottom:404.160000pt;}
.y3b_c00188{bottom:404.960000pt;}
.y11_c00188{bottom:419.760000pt;}
.y3a_c00188{bottom:420.693333pt;}
.y10_c00188{bottom:435.626667pt;}
.y39_c00188{bottom:436.826667pt;}
.yf_c00188{bottom:451.893333pt;}
.y38_c00188{bottom:453.093333pt;}
.ye_c00188{bottom:467.360000pt;}
.y37_c00188{bottom:468.960000pt;}
.yd_c00188{bottom:483.360000pt;}
.y36_c00188{bottom:484.826667pt;}
.yc_c00188{bottom:498.960000pt;}
.y35_c00188{bottom:500.693333pt;}
.y1_c00188{bottom:510.960000pt;}
.yb_c00188{bottom:515.093333pt;}
.y34_c00188{bottom:516.960000pt;}
.ya_c00188{bottom:530.960000pt;}
.y33_c00188{bottom:532.160000pt;}
.y32_c00188{bottom:548.960000pt;}
.y9_c00188{bottom:562.560000pt;}
.y31_c00188{bottom:564.693333pt;}
.y8_c00188{bottom:578.960000pt;}
.y30_c00188{bottom:580.826667pt;}
.y7_c00188{bottom:594.560000pt;}
.y2f_c00188{bottom:596.960000pt;}
.y6_c00188{bottom:610.826667pt;}
.y2e_c00188{bottom:612.693333pt;}
.y2d_c00188{bottom:628.826667pt;}
.y5_c00188{bottom:641.093333pt;}
.y2c_c00188{bottom:644.960000pt;}
.y2b_c00188{bottom:660.960000pt;}
.y4_c00188{bottom:673.493333pt;}
.y2a_c00188{bottom:677.360000pt;}
.y3_c00188{bottom:690.026667pt;}
.y29_c00188{bottom:692.960000pt;}
.y2_c00188{bottom:708.693333pt;}
.h6_c00188{height:11.733399pt;}
.h7_c00188{height:38.937500pt;}
.h3_c00188{height:55.893333pt;}
.h5_c00188{height:56.906667pt;}
.h4_c00188{height:62.597333pt;}
.h2_c00188{height:198.421333pt;}
.h0_c00188{height:749.066667pt;}
.h1_c00188{height:749.333333pt;}
.w1_c00188{width:93.222667pt;}
.w0_c00188{width:524.666667pt;}
.x0_c00188{left:0.000000pt;}
.xa_c00188{left:15.866667pt;}
.xb_c00188{left:17.733333pt;}
.x3_c00188{left:68.666667pt;}
.x1_c00188{left:70.533333pt;}
.x9_c00188{left:71.600000pt;}
.x6_c00188{left:84.800000pt;}
.x5_c00188{left:102.533333pt;}
.x8_c00188{left:109.733333pt;}
.x4_c00188{left:130.400000pt;}
.x7_c00188{left:142.400000pt;}
.x2_c00188{left:187.200000pt;}
.x15_c00188{left:219.501546pt;}
.x13_c00188{left:258.533333pt;}
.x12_c00188{left:260.933333pt;}
.x10_c00188{left:261.866667pt;}
.xe_c00188{left:263.066667pt;}
.xf_c00188{left:264.000000pt;}
.xd_c00188{left:264.933333pt;}
.xc_c00188{left:266.666667pt;}
.x11_c00188{left:288.933333pt;}
.x14_c00188{left:351.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_79851f24f5f8bcf1518876ed.woff2')format("woff");}.ff1_c00189{font-family:ff1_c00189;line-height:1.437000;font-style:normal;font-weight:normal;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_0c6f956e1e3835f8f5cd0b9e.woff2')format("woff");}.ff2_c00189{font-family:ff2_c00189;line-height:1.437000;font-style:normal;font-weight:normal;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_303627cc8c99d91ae8aa5cd9.woff2')format("woff");}.ff3_c00189{font-family:ff3_c00189;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00189;src:url('chunks/assets/font_9dbf7bbe475675999b4396c4.woff2')format("woff");}.ff4_c00189{font-family:ff4_c00189;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00189;src:url('chunks/assets/font_585bcdc62040aab1f63a7740.woff2')format("woff");}.ff5_c00189{font-family:ff5_c00189;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00189;src:url('chunks/assets/font_5e518adfcf8d16c65e29deb7.woff2')format("woff");}.ff6_c00189{font-family:ff6_c00189;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00189;src:url('chunks/assets/font_e07fe67be464f20679f04b64.woff2')format("woff");}.ff7_c00189{font-family:ff7_c00189;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00189;src:url('chunks/assets/font_ede54cd093a0b834c6ec6f1a.woff2')format("woff");}.ff8_c00189{font-family:ff8_c00189;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00189;src:url('chunks/assets/font_35310b5afa7b941a389b69a2.woff2')format("woff");}.ff9_c00189{font-family:ff9_c00189;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00189;src:url('chunks/assets/font_6e0d8d52c32e7689273446a0.woff2')format("woff");}.ffa_c00189{font-family:ffa_c00189;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00189;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ffb_c00189{font-family:ffb_c00189;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00189{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00189{vertical-align:0.000000px;}
.v1_c00189{vertical-align:103.800000px;}
.lsa_c00189{letter-spacing:-3.000000px;}
.ls8_c00189{letter-spacing:0.000000px;}
.ls0_c00189{letter-spacing:3.000000px;}
.ls2_c00189{letter-spacing:4.350000px;}
.ls9_c00189{letter-spacing:6.000000px;}
.ls5_c00189{letter-spacing:7.605000px;}
.ls7_c00189{letter-spacing:7.740000px;}
.ls1_c00189{letter-spacing:13.200000px;}
.ls3_c00189{letter-spacing:26.340000px;}
.ls4_c00189{letter-spacing:33.126000px;}
.ls6_c00189{letter-spacing:36.540000px;}
.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;}
}
.ws3_c00189{word-spacing:-39.498000px;}
.ws1_c00189{word-spacing:-29.295000px;}
.ws2_c00189{word-spacing:-22.566000px;}
.ws4_c00189{word-spacing:-18.813000px;}
.ws0_c00189{word-spacing:-14.160000px;}
.ws5_c00189{word-spacing:0.000000px;}
._d_c00189{margin-left:-16.440000px;}
._24_c00189{margin-left:-14.160000px;}
._22_c00189{margin-left:-12.720000px;}
._1f_c00189{margin-left:-11.520000px;}
._e_c00189{margin-left:-9.900000px;}
._16_c00189{margin-left:-7.800000px;}
._15_c00189{margin-left:-6.780000px;}
._14_c00189{margin-left:-4.860000px;}
._13_c00189{margin-left:-3.420000px;}
._4_c00189{margin-left:-1.800000px;}
._11_c00189{width:1.020000px;}
._1_c00189{width:2.040000px;}
._9_c00189{width:3.240000px;}
._0_c00189{width:4.260000px;}
._6_c00189{width:5.280000px;}
._5_c00189{width:6.840000px;}
._7_c00189{width:8.520000px;}
._18_c00189{width:10.140000px;}
._12_c00189{width:11.700000px;}
._c_c00189{width:13.020000px;}
._19_c00189{width:14.640000px;}
._10_c00189{width:15.660000px;}
._1c_c00189{width:16.680000px;}
._b_c00189{width:17.880000px;}
._2_c00189{width:19.020000px;}
._17_c00189{width:21.120000px;}
._26_c00189{width:22.446000px;}
._3_c00189{width:24.180000px;}
._1b_c00189{width:25.980000px;}
._29_c00189{width:27.960000px;}
._a_c00189{width:28.980000px;}
._1a_c00189{width:30.300000px;}
._27_c00189{width:34.074000px;}
._f_c00189{width:35.100000px;}
._1d_c00189{width:36.600000px;}
._23_c00189{width:39.600000px;}
._1e_c00189{width:41.760000px;}
._8_c00189{width:44.340000px;}
._25_c00189{width:52.440000px;}
._20_c00189{width:57.300000px;}
._21_c00189{width:77.898000px;}
._28_c00189{width:100.080000px;}
.fc2_c00189{color:transparent;}
.fc1_c00189{color:rgb(128,128,128);}
.fc0_c00189{color:rgb(0,0,0);}
.fs7_c00189{font-size:24.000000px;}
.fs1_c00189{font-size:45.000000px;}
.fs9_c00189{font-size:48.000000px;}
.fs3_c00189{font-size:51.000000px;}
.fs4_c00189{font-size:54.000000px;}
.fs0_c00189{font-size:60.000000px;}
.fs6_c00189{font-size:63.000000px;}
.fs2_c00189{font-size:66.000000px;}
.fs5_c00189{font-size:69.000000px;}
.fs8_c00189{font-size:201.000000px;}
.y0_c00189{bottom:0.000000px;}
.y51_c00189{bottom:3.105000px;}
.y50_c00189{bottom:7.228369px;}
.y4f_c00189{bottom:37.470000px;}
.y4e_c00189{bottom:56.970000px;}
.y29_c00189{bottom:58.320000px;}
.y4d_c00189{bottom:73.920000px;}
.y28_c00189{bottom:77.520000px;}
.y4c_c00189{bottom:93.120000px;}
.y27_c00189{bottom:94.470000px;}
.y4b_c00189{bottom:110.070000px;}
.y26_c00189{bottom:112.770000px;}
.y4a_c00189{bottom:128.520000px;}
.y25_c00189{bottom:130.620000px;}
.y49_c00189{bottom:146.520000px;}
.y24_c00189{bottom:148.470000px;}
.y48_c00189{bottom:164.370000px;}
.y23_c00189{bottom:166.770000px;}
.y47_c00189{bottom:182.520000px;}
.y22_c00189{bottom:184.620000px;}
.y46_c00189{bottom:200.370000px;}
.y21_c00189{bottom:202.470000px;}
.y45_c00189{bottom:217.320000px;}
.y20_c00189{bottom:220.320000px;}
.y44_c00189{bottom:236.520000px;}
.y1f_c00189{bottom:238.320000px;}
.y43_c00189{bottom:254.820000px;}
.y1e_c00189{bottom:256.770000px;}
.y42_c00189{bottom:272.070000px;}
.y1d_c00189{bottom:273.720000px;}
.y41_c00189{bottom:289.620000px;}
.y1c_c00189{bottom:290.970000px;}
.y40_c00189{bottom:307.770000px;}
.y1b_c00189{bottom:309.720000px;}
.y3f_c00189{bottom:325.620000px;}
.y1a_c00189{bottom:327.720000px;}
.y3e_c00189{bottom:344.220000px;}
.y19_c00189{bottom:345.570000px;}
.y3c_c00189{bottom:353.970000px;}
.y3d_c00189{bottom:362.370000px;}
.y18_c00189{bottom:364.170000px;}
.y17_c00189{bottom:381.420000px;}
.y16_c00189{bottom:399.570000px;}
.y3b_c00189{bottom:416.370000px;}
.y15_c00189{bottom:417.120000px;}
.y3a_c00189{bottom:433.920000px;}
.y14_c00189{bottom:435.120000px;}
.y39_c00189{bottom:451.920000px;}
.y13_c00189{bottom:453.270000px;}
.y38_c00189{bottom:470.520000px;}
.y12_c00189{bottom:471.420000px;}
.y37_c00189{bottom:488.070000px;}
.y11_c00189{bottom:489.270000px;}
.y10_c00189{bottom:507.270000px;}
.y36_c00189{bottom:522.120000px;}
.yf_c00189{bottom:525.120000px;}
.ye_c00189{bottom:542.670000px;}
.y35_c00189{bottom:560.220000px;}
.yd_c00189{bottom:560.970000px;}
.y34_c00189{bottom:577.470000px;}
.yc_c00189{bottom:579.420000px;}
.y33_c00189{bottom:596.370000px;}
.yb_c00189{bottom:596.970000px;}
.y32_c00189{bottom:613.920000px;}
.ya_c00189{bottom:615.270000px;}
.y31_c00189{bottom:632.370000px;}
.y9_c00189{bottom:633.420000px;}
.y30_c00189{bottom:649.620000px;}
.y8_c00189{bottom:651.270000px;}
.y2f_c00189{bottom:667.620000px;}
.y7_c00189{bottom:668.820000px;}
.y2e_c00189{bottom:685.770000px;}
.y6_c00189{bottom:686.820000px;}
.y2d_c00189{bottom:704.070000px;}
.y5_c00189{bottom:704.970000px;}
.y2c_c00189{bottom:721.620000px;}
.y4_c00189{bottom:722.820000px;}
.y2b_c00189{bottom:740.370000px;}
.y3_c00189{bottom:740.520000px;}
.y2_c00189{bottom:758.370000px;}
.y2a_c00189{bottom:776.520000px;}
.y1_c00189{bottom:776.820000px;}
.h7_c00189{height:13.200073px;}
.h8_c00189{height:43.804688px;}
.h1_c00189{height:62.880000px;}
.h2_c00189{height:64.020000px;}
.h5_c00189{height:66.024000px;}
.h3_c00189{height:69.168000px;}
.h4_c00189{height:73.623000px;}
.h6_c00189{height:210.648000px;}
.h0_c00189{height:840.750000px;}
.w1_c00189{width:104.875500px;}
.w0_c00189{width:570.000000px;}
.x0_c00189{left:0.000000px;}
.x6_c00189{left:36.000000px;}
.x7_c00189{left:37.050000px;}
.x9_c00189{left:38.700000px;}
.x8_c00189{left:97.800000px;}
.x3_c00189{left:99.150000px;}
.x5_c00189{left:100.200000px;}
.x4_c00189{left:101.250000px;}
.x2_c00189{left:102.600000px;}
.x1_c00189{left:173.100000px;}
.x14_c00189{left:236.814240px;}
.x12_c00189{left:313.800000px;}
.xa_c00189{left:315.450000px;}
.xb_c00189{left:316.800000px;}
.xd_c00189{left:321.900000px;}
.xe_c00189{left:354.750000px;}
.x11_c00189{left:357.300000px;}
.x10_c00189{left:360.000000px;}
.xc_c00189{left:382.050000px;}
.xf_c00189{left:392.550000px;}
.x13_c00189{left:478.500000px;}
@media print{
.v0_c00189{vertical-align:0.000000pt;}
.v1_c00189{vertical-align:92.266667pt;}
.lsa_c00189{letter-spacing:-2.666667pt;}
.ls8_c00189{letter-spacing:0.000000pt;}
.ls0_c00189{letter-spacing:2.666667pt;}
.ls2_c00189{letter-spacing:3.866667pt;}
.ls9_c00189{letter-spacing:5.333333pt;}
.ls5_c00189{letter-spacing:6.760000pt;}
.ls7_c00189{letter-spacing:6.880000pt;}
.ls1_c00189{letter-spacing:11.733333pt;}
.ls3_c00189{letter-spacing:23.413333pt;}
.ls4_c00189{letter-spacing:29.445333pt;}
.ls6_c00189{letter-spacing:32.480000pt;}
.ws3_c00189{word-spacing:-35.109333pt;}
.ws1_c00189{word-spacing:-26.040000pt;}
.ws2_c00189{word-spacing:-20.058667pt;}
.ws4_c00189{word-spacing:-16.722667pt;}
.ws0_c00189{word-spacing:-12.586667pt;}
.ws5_c00189{word-spacing:0.000000pt;}
._d_c00189{margin-left:-14.613333pt;}
._24_c00189{margin-left:-12.586667pt;}
._22_c00189{margin-left:-11.306667pt;}
._1f_c00189{margin-left:-10.240000pt;}
._e_c00189{margin-left:-8.800000pt;}
._16_c00189{margin-left:-6.933333pt;}
._15_c00189{margin-left:-6.026667pt;}
._14_c00189{margin-left:-4.320000pt;}
._13_c00189{margin-left:-3.040000pt;}
._4_c00189{margin-left:-1.600000pt;}
._11_c00189{width:0.906667pt;}
._1_c00189{width:1.813333pt;}
._9_c00189{width:2.880000pt;}
._0_c00189{width:3.786667pt;}
._6_c00189{width:4.693333pt;}
._5_c00189{width:6.080000pt;}
._7_c00189{width:7.573333pt;}
._18_c00189{width:9.013333pt;}
._12_c00189{width:10.400000pt;}
._c_c00189{width:11.573333pt;}
._19_c00189{width:13.013333pt;}
._10_c00189{width:13.920000pt;}
._1c_c00189{width:14.826667pt;}
._b_c00189{width:15.893333pt;}
._2_c00189{width:16.906667pt;}
._17_c00189{width:18.773333pt;}
._26_c00189{width:19.952000pt;}
._3_c00189{width:21.493333pt;}
._1b_c00189{width:23.093333pt;}
._29_c00189{width:24.853333pt;}
._a_c00189{width:25.760000pt;}
._1a_c00189{width:26.933333pt;}
._27_c00189{width:30.288000pt;}
._f_c00189{width:31.200000pt;}
._1d_c00189{width:32.533333pt;}
._23_c00189{width:35.200000pt;}
._1e_c00189{width:37.120000pt;}
._8_c00189{width:39.413333pt;}
._25_c00189{width:46.613333pt;}
._20_c00189{width:50.933333pt;}
._21_c00189{width:69.242667pt;}
._28_c00189{width:88.960000pt;}
.fs7_c00189{font-size:21.333333pt;}
.fs1_c00189{font-size:40.000000pt;}
.fs9_c00189{font-size:42.666667pt;}
.fs3_c00189{font-size:45.333333pt;}
.fs4_c00189{font-size:48.000000pt;}
.fs0_c00189{font-size:53.333333pt;}
.fs6_c00189{font-size:56.000000pt;}
.fs2_c00189{font-size:58.666667pt;}
.fs5_c00189{font-size:61.333333pt;}
.fs8_c00189{font-size:178.666667pt;}
.y0_c00189{bottom:0.000000pt;}
.y51_c00189{bottom:2.760000pt;}
.y50_c00189{bottom:6.425217pt;}
.y4f_c00189{bottom:33.306667pt;}
.y4e_c00189{bottom:50.640000pt;}
.y29_c00189{bottom:51.840000pt;}
.y4d_c00189{bottom:65.706667pt;}
.y28_c00189{bottom:68.906667pt;}
.y4c_c00189{bottom:82.773333pt;}
.y27_c00189{bottom:83.973333pt;}
.y4b_c00189{bottom:97.840000pt;}
.y26_c00189{bottom:100.240000pt;}
.y4a_c00189{bottom:114.240000pt;}
.y25_c00189{bottom:116.106667pt;}
.y49_c00189{bottom:130.240000pt;}
.y24_c00189{bottom:131.973333pt;}
.y48_c00189{bottom:146.106667pt;}
.y23_c00189{bottom:148.240000pt;}
.y47_c00189{bottom:162.240000pt;}
.y22_c00189{bottom:164.106667pt;}
.y46_c00189{bottom:178.106667pt;}
.y21_c00189{bottom:179.973333pt;}
.y45_c00189{bottom:193.173333pt;}
.y20_c00189{bottom:195.840000pt;}
.y44_c00189{bottom:210.240000pt;}
.y1f_c00189{bottom:211.840000pt;}
.y43_c00189{bottom:226.506667pt;}
.y1e_c00189{bottom:228.240000pt;}
.y42_c00189{bottom:241.840000pt;}
.y1d_c00189{bottom:243.306667pt;}
.y41_c00189{bottom:257.440000pt;}
.y1c_c00189{bottom:258.640000pt;}
.y40_c00189{bottom:273.573333pt;}
.y1b_c00189{bottom:275.306667pt;}
.y3f_c00189{bottom:289.440000pt;}
.y1a_c00189{bottom:291.306667pt;}
.y3e_c00189{bottom:305.973333pt;}
.y19_c00189{bottom:307.173333pt;}
.y3c_c00189{bottom:314.640000pt;}
.y3d_c00189{bottom:322.106667pt;}
.y18_c00189{bottom:323.706667pt;}
.y17_c00189{bottom:339.040000pt;}
.y16_c00189{bottom:355.173333pt;}
.y3b_c00189{bottom:370.106667pt;}
.y15_c00189{bottom:370.773333pt;}
.y3a_c00189{bottom:385.706667pt;}
.y14_c00189{bottom:386.773333pt;}
.y39_c00189{bottom:401.706667pt;}
.y13_c00189{bottom:402.906667pt;}
.y38_c00189{bottom:418.240000pt;}
.y12_c00189{bottom:419.040000pt;}
.y37_c00189{bottom:433.840000pt;}
.y11_c00189{bottom:434.906667pt;}
.y10_c00189{bottom:450.906667pt;}
.y36_c00189{bottom:464.106667pt;}
.yf_c00189{bottom:466.773333pt;}
.ye_c00189{bottom:482.373333pt;}
.y35_c00189{bottom:497.973333pt;}
.yd_c00189{bottom:498.640000pt;}
.y34_c00189{bottom:513.306667pt;}
.yc_c00189{bottom:515.040000pt;}
.y33_c00189{bottom:530.106667pt;}
.yb_c00189{bottom:530.640000pt;}
.y32_c00189{bottom:545.706667pt;}
.ya_c00189{bottom:546.906667pt;}
.y31_c00189{bottom:562.106667pt;}
.y9_c00189{bottom:563.040000pt;}
.y30_c00189{bottom:577.440000pt;}
.y8_c00189{bottom:578.906667pt;}
.y2f_c00189{bottom:593.440000pt;}
.y7_c00189{bottom:594.506667pt;}
.y2e_c00189{bottom:609.573333pt;}
.y6_c00189{bottom:610.506667pt;}
.y2d_c00189{bottom:625.840000pt;}
.y5_c00189{bottom:626.640000pt;}
.y2c_c00189{bottom:641.440000pt;}
.y4_c00189{bottom:642.506667pt;}
.y2b_c00189{bottom:658.106667pt;}
.y3_c00189{bottom:658.240000pt;}
.y2_c00189{bottom:674.106667pt;}
.y2a_c00189{bottom:690.240000pt;}
.y1_c00189{bottom:690.506667pt;}
.h7_c00189{height:11.733399pt;}
.h8_c00189{height:38.937500pt;}
.h1_c00189{height:55.893333pt;}
.h2_c00189{height:56.906667pt;}
.h5_c00189{height:58.688000pt;}
.h3_c00189{height:61.482667pt;}
.h4_c00189{height:65.442667pt;}
.h6_c00189{height:187.242667pt;}
.h0_c00189{height:747.333333pt;}
.w1_c00189{width:93.222667pt;}
.w0_c00189{width:506.666667pt;}
.x0_c00189{left:0.000000pt;}
.x6_c00189{left:32.000000pt;}
.x7_c00189{left:32.933333pt;}
.x9_c00189{left:34.400000pt;}
.x8_c00189{left:86.933333pt;}
.x3_c00189{left:88.133333pt;}
.x5_c00189{left:89.066667pt;}
.x4_c00189{left:90.000000pt;}
.x2_c00189{left:91.200000pt;}
.x1_c00189{left:153.866667pt;}
.x14_c00189{left:210.501546pt;}
.x12_c00189{left:278.933333pt;}
.xa_c00189{left:280.400000pt;}
.xb_c00189{left:281.600000pt;}
.xd_c00189{left:286.133333pt;}
.xe_c00189{left:315.333333pt;}
.x11_c00189{left:317.600000pt;}
.x10_c00189{left:320.000000pt;}
.xc_c00189{left:339.600000pt;}
.xf_c00189{left:348.933333pt;}
.x13_c00189{left:425.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_8799631769d7564e0bba8572.woff2')format("woff");}.ff1_c00190{font-family:ff1_c00190;line-height:1.575000;font-style:normal;font-weight:normal;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_55f822e82aaebc9138df4f61.woff2')format("woff");}.ff2_c00190{font-family:ff2_c00190;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00190;src:url('chunks/assets/font_9929fcfcbcf9e5fae6b80c4a.woff2')format("woff");}.ff3_c00190{font-family:ff3_c00190;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00190;src:url('chunks/assets/font_b3e24a003896e76fd1a7ceb2.woff2')format("woff");}.ff4_c00190{font-family:ff4_c00190;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00190;src:url('chunks/assets/font_2fa1c2a89d9ceb23ee0fc68a.woff2')format("woff");}.ff5_c00190{font-family:ff5_c00190;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00190;src:url('chunks/assets/font_d06752aa1689f0ae378d5430.woff2')format("woff");}.ff6_c00190{font-family:ff6_c00190;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00190;src:url('chunks/assets/font_fb1639c49ff41d7ba5f83665.woff2')format("woff");}.ff7_c00190{font-family:ff7_c00190;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00190;src:url('chunks/assets/font_9f9d2c2cc72c33afe6715e3b.woff2')format("woff");}.ff8_c00190{font-family:ff8_c00190;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00190;src:url('chunks/assets/font_ccb462b12a071c95bc2b1823.woff2')format("woff");}.ff9_c00190{font-family:ff9_c00190;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00190;src:url('chunks/assets/font_e248d73d5bf37accafb967a0.woff2')format("woff");}.ffa_c00190{font-family:ffa_c00190;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00190;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ffb_c00190{font-family:ffb_c00190;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00190{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00190{vertical-align:0.000000px;}
.lsb_c00190{letter-spacing:-6.000000px;}
.lsa_c00190{letter-spacing:0.000000px;}
.ls2_c00190{letter-spacing:3.000000px;}
.ls3_c00190{letter-spacing:6.000000px;}
.ls9_c00190{letter-spacing:9.000000px;}
.ls0_c00190{letter-spacing:32.940000px;}
.ls1_c00190{letter-spacing:34.377000px;}
.ls4_c00190{letter-spacing:52.893000px;}
.ls7_c00190{letter-spacing:78.693000px;}
.ls6_c00190{letter-spacing:81.093000px;}
.ls5_c00190{letter-spacing:82.893000px;}
.ls8_c00190{letter-spacing:84.093000px;}
.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;}
}
.ws5_c00190{word-spacing:-21.672000px;}
.ws6_c00190{word-spacing:-18.813000px;}
.ws4_c00190{word-spacing:-16.500000px;}
.ws7_c00190{word-spacing:-15.576000px;}
.ws2_c00190{word-spacing:-15.060000px;}
.ws3_c00190{word-spacing:-14.160000px;}
.ws8_c00190{word-spacing:-13.452000px;}
.ws1_c00190{word-spacing:-6.000000px;}
.ws9_c00190{word-spacing:0.000000px;}
.ws0_c00190{word-spacing:4.365000px;}
._22_c00190{margin-left:-19.296000px;}
._24_c00190{margin-left:-16.956000px;}
._1f_c00190{margin-left:-14.226000px;}
._17_c00190{margin-left:-11.301000px;}
._18_c00190{margin-left:-9.669000px;}
._6_c00190{margin-left:-8.418000px;}
._25_c00190{margin-left:-7.416000px;}
._8_c00190{margin-left:-6.255000px;}
._9_c00190{margin-left:-4.725000px;}
._b_c00190{margin-left:-3.192000px;}
._a_c00190{margin-left:-1.959000px;}
._0_c00190{width:1.656000px;}
._3_c00190{width:2.829000px;}
._2_c00190{width:4.071000px;}
._4_c00190{width:5.451000px;}
._c_c00190{width:7.446000px;}
._7_c00190{width:8.640000px;}
._e_c00190{width:9.741000px;}
._12_c00190{width:11.613000px;}
._1a_c00190{width:12.729000px;}
._19_c00190{width:13.764000px;}
._1c_c00190{width:14.988000px;}
._10_c00190{width:16.074000px;}
._1d_c00190{width:17.871000px;}
._1_c00190{width:19.044000px;}
._f_c00190{width:20.217000px;}
._20_c00190{width:22.533000px;}
._23_c00190{width:24.684000px;}
._11_c00190{width:26.583000px;}
._15_c00190{width:29.019000px;}
._21_c00190{width:30.921000px;}
._16_c00190{width:32.940000px;}
._1b_c00190{width:34.821000px;}
._2b_c00190{width:37.167000px;}
._1e_c00190{width:39.906000px;}
._14_c00190{width:48.717000px;}
._13_c00190{width:53.604000px;}
._2c_c00190{width:54.882000px;}
._2a_c00190{width:60.150000px;}
._2d_c00190{width:72.399000px;}
._29_c00190{width:80.085000px;}
._27_c00190{width:89.424000px;}
._28_c00190{width:269.304000px;}
._d_c00190{width:299.871000px;}
._5_c00190{width:418.140000px;}
._26_c00190{width:486.420000px;}
.fc2_c00190{color:transparent;}
.fc1_c00190{color:rgb(128,128,128);}
.fc0_c00190{color:rgb(0,0,0);}
.fs5_c00190{font-size:45.000000px;}
.fs6_c00190{font-size:48.000000px;}
.fs3_c00190{font-size:54.000000px;}
.fs4_c00190{font-size:57.000000px;}
.fs1_c00190{font-size:60.000000px;}
.fs2_c00190{font-size:63.000000px;}
.fs8_c00190{font-size:66.000000px;}
.fs0_c00190{font-size:69.000000px;}
.fs7_c00190{font-size:72.000000px;}
.y0_c00190{bottom:0.000000px;}
.y4b_c00190{bottom:3.105000px;}
.y4a_c00190{bottom:7.228357px;}
.y49_c00190{bottom:65.130000px;}
.y48_c00190{bottom:83.130000px;}
.y47_c00190{bottom:100.680000px;}
.y46_c00190{bottom:119.130000px;}
.y45_c00190{bottom:136.680000px;}
.y44_c00190{bottom:153.630000px;}
.y43_c00190{bottom:170.730000px;}
.y42_c00190{bottom:189.030000px;}
.y41_c00190{bottom:207.330000px;}
.y21_c00190{bottom:224.430000px;}
.y40_c00190{bottom:225.780000px;}
.y20_c00190{bottom:243.030000px;}
.y3f_c00190{bottom:243.780000px;}
.y1f_c00190{bottom:261.330000px;}
.y3e_c00190{bottom:261.630000px;}
.y1e_c00190{bottom:279.180000px;}
.y3d_c00190{bottom:279.630000px;}
.y1d_c00190{bottom:296.730000px;}
.y3c_c00190{bottom:297.630000px;}
.y1c_c00190{bottom:314.580000px;}
.y3b_c00190{bottom:315.630000px;}
.y1b_c00190{bottom:332.730000px;}
.y3a_c00190{bottom:334.080000px;}
.y1a_c00190{bottom:349.680000px;}
.y39_c00190{bottom:351.630000px;}
.y19_c00190{bottom:367.830000px;}
.y38_c00190{bottom:369.330000px;}
.y18_c00190{bottom:386.430000px;}
.y37_c00190{bottom:387.780000px;}
.y17_c00190{bottom:404.430000px;}
.y36_c00190{bottom:405.780000px;}
.y16_c00190{bottom:421.980000px;}
.y35_c00190{bottom:423.930000px;}
.y15_c00190{bottom:439.830000px;}
.y34_c00190{bottom:442.830000px;}
.y14_c00190{bottom:458.280000px;}
.y33_c00190{bottom:460.080000px;}
.y13_c00190{bottom:475.980000px;}
.y32_c00190{bottom:477.930000px;}
.y12_c00190{bottom:493.380000px;}
.y31_c00190{bottom:495.780000px;}
.y11_c00190{bottom:511.080000px;}
.y30_c00190{bottom:513.630000px;}
.y10_c00190{bottom:529.230000px;}
.y2f_c00190{bottom:531.930000px;}
.yf_c00190{bottom:547.380000px;}
.y2e_c00190{bottom:549.780000px;}
.ye_c00190{bottom:565.080000px;}
.y2d_c00190{bottom:567.780000px;}
.yd_c00190{bottom:582.480000px;}
.y2c_c00190{bottom:586.230000px;}
.yc_c00190{bottom:601.080000px;}
.y2b_c00190{bottom:603.780000px;}
.yb_c00190{bottom:619.080000px;}
.y2a_c00190{bottom:621.780000px;}
.ya_c00190{bottom:636.480000px;}
.y29_c00190{bottom:639.180000px;}
.y9_c00190{bottom:654.780000px;}
.y28_c00190{bottom:658.080000px;}
.y8_c00190{bottom:672.630000px;}
.y27_c00190{bottom:676.980000px;}
.y7_c00190{bottom:690.480000px;}
.y26_c00190{bottom:694.680000px;}
.y6_c00190{bottom:710.130000px;}
.y25_c00190{bottom:712.530000px;}
.y5_c00190{bottom:727.380000px;}
.y24_c00190{bottom:730.380000px;}
.y4_c00190{bottom:744.180000px;}
.y23_c00190{bottom:748.680000px;}
.y3_c00190{bottom:761.430000px;}
.y22_c00190{bottom:767.130000px;}
.y2_c00190{bottom:782.280000px;}
.y1_c00190{bottom:802.230000px;}
.hc_c00190{height:13.200074px;}
.hd_c00190{height:43.804688px;}
.h5_c00190{height:47.160000px;}
.hb_c00190{height:59.736000px;}
.h9_c00190{height:61.831055px;}
.h4_c00190{height:62.880000px;}
.h6_c00190{height:64.020000px;}
.h7_c00190{height:66.024000px;}
.h3_c00190{height:67.221000px;}
.ha_c00190{height:69.168000px;}
.h2_c00190{height:73.623000px;}
.h8_c00190{height:78.048000px;}
.h0_c00190{height:842.700000px;}
.h1_c00190{height:843.000000px;}
.w1_c00190{width:104.875500px;}
.w0_c00190{width:590.250000px;}
.x0_c00190{left:0.000000px;}
.xa_c00190{left:20.550000px;}
.x11_c00190{left:24.000000px;}
.x9_c00190{left:28.800000px;}
.x6_c00190{left:71.850000px;}
.x5_c00190{left:79.200000px;}
.x4_c00190{left:81.000000px;}
.x3_c00190{left:82.650000px;}
.x2_c00190{left:84.000000px;}
.x7_c00190{left:85.050000px;}
.x8_c00190{left:86.700000px;}
.x1_c00190{left:225.600000px;}
.x12_c00190{left:246.939240px;}
.xb_c00190{left:296.700000px;}
.xf_c00190{left:298.050000px;}
.xe_c00190{left:299.250000px;}
.xd_c00190{left:300.600000px;}
.xc_c00190{left:301.800000px;}
.x10_c00190{left:326.250000px;}
@media print{
.v0_c00190{vertical-align:0.000000pt;}
.lsb_c00190{letter-spacing:-5.333333pt;}
.lsa_c00190{letter-spacing:0.000000pt;}
.ls2_c00190{letter-spacing:2.666667pt;}
.ls3_c00190{letter-spacing:5.333333pt;}
.ls9_c00190{letter-spacing:8.000000pt;}
.ls0_c00190{letter-spacing:29.280000pt;}
.ls1_c00190{letter-spacing:30.557333pt;}
.ls4_c00190{letter-spacing:47.016000pt;}
.ls7_c00190{letter-spacing:69.949333pt;}
.ls6_c00190{letter-spacing:72.082667pt;}
.ls5_c00190{letter-spacing:73.682667pt;}
.ls8_c00190{letter-spacing:74.749333pt;}
.ws5_c00190{word-spacing:-19.264000pt;}
.ws6_c00190{word-spacing:-16.722667pt;}
.ws4_c00190{word-spacing:-14.666667pt;}
.ws7_c00190{word-spacing:-13.845333pt;}
.ws2_c00190{word-spacing:-13.386667pt;}
.ws3_c00190{word-spacing:-12.586667pt;}
.ws8_c00190{word-spacing:-11.957333pt;}
.ws1_c00190{word-spacing:-5.333333pt;}
.ws9_c00190{word-spacing:0.000000pt;}
.ws0_c00190{word-spacing:3.880000pt;}
._22_c00190{margin-left:-17.152000pt;}
._24_c00190{margin-left:-15.072000pt;}
._1f_c00190{margin-left:-12.645333pt;}
._17_c00190{margin-left:-10.045333pt;}
._18_c00190{margin-left:-8.594667pt;}
._6_c00190{margin-left:-7.482667pt;}
._25_c00190{margin-left:-6.592000pt;}
._8_c00190{margin-left:-5.560000pt;}
._9_c00190{margin-left:-4.200000pt;}
._b_c00190{margin-left:-2.837333pt;}
._a_c00190{margin-left:-1.741333pt;}
._0_c00190{width:1.472000pt;}
._3_c00190{width:2.514667pt;}
._2_c00190{width:3.618667pt;}
._4_c00190{width:4.845333pt;}
._c_c00190{width:6.618667pt;}
._7_c00190{width:7.680000pt;}
._e_c00190{width:8.658667pt;}
._12_c00190{width:10.322667pt;}
._1a_c00190{width:11.314667pt;}
._19_c00190{width:12.234667pt;}
._1c_c00190{width:13.322667pt;}
._10_c00190{width:14.288000pt;}
._1d_c00190{width:15.885333pt;}
._1_c00190{width:16.928000pt;}
._f_c00190{width:17.970667pt;}
._20_c00190{width:20.029333pt;}
._23_c00190{width:21.941333pt;}
._11_c00190{width:23.629333pt;}
._15_c00190{width:25.794667pt;}
._21_c00190{width:27.485333pt;}
._16_c00190{width:29.280000pt;}
._1b_c00190{width:30.952000pt;}
._2b_c00190{width:33.037333pt;}
._1e_c00190{width:35.472000pt;}
._14_c00190{width:43.304000pt;}
._13_c00190{width:47.648000pt;}
._2c_c00190{width:48.784000pt;}
._2a_c00190{width:53.466667pt;}
._2d_c00190{width:64.354667pt;}
._29_c00190{width:71.186667pt;}
._27_c00190{width:79.488000pt;}
._28_c00190{width:239.381333pt;}
._d_c00190{width:266.552000pt;}
._5_c00190{width:371.680000pt;}
._26_c00190{width:432.373333pt;}
.fs5_c00190{font-size:40.000000pt;}
.fs6_c00190{font-size:42.666667pt;}
.fs3_c00190{font-size:48.000000pt;}
.fs4_c00190{font-size:50.666667pt;}
.fs1_c00190{font-size:53.333333pt;}
.fs2_c00190{font-size:56.000000pt;}
.fs8_c00190{font-size:58.666667pt;}
.fs0_c00190{font-size:61.333333pt;}
.fs7_c00190{font-size:64.000000pt;}
.y0_c00190{bottom:0.000000pt;}
.y4b_c00190{bottom:2.760000pt;}
.y4a_c00190{bottom:6.425206pt;}
.y49_c00190{bottom:57.893333pt;}
.y48_c00190{bottom:73.893333pt;}
.y47_c00190{bottom:89.493333pt;}
.y46_c00190{bottom:105.893333pt;}
.y45_c00190{bottom:121.493333pt;}
.y44_c00190{bottom:136.560000pt;}
.y43_c00190{bottom:151.760000pt;}
.y42_c00190{bottom:168.026667pt;}
.y41_c00190{bottom:184.293333pt;}
.y21_c00190{bottom:199.493333pt;}
.y40_c00190{bottom:200.693333pt;}
.y20_c00190{bottom:216.026667pt;}
.y3f_c00190{bottom:216.693333pt;}
.y1f_c00190{bottom:232.293333pt;}
.y3e_c00190{bottom:232.560000pt;}
.y1e_c00190{bottom:248.160000pt;}
.y3d_c00190{bottom:248.560000pt;}
.y1d_c00190{bottom:263.760000pt;}
.y3c_c00190{bottom:264.560000pt;}
.y1c_c00190{bottom:279.626667pt;}
.y3b_c00190{bottom:280.560000pt;}
.y1b_c00190{bottom:295.760000pt;}
.y3a_c00190{bottom:296.960000pt;}
.y1a_c00190{bottom:310.826667pt;}
.y39_c00190{bottom:312.560000pt;}
.y19_c00190{bottom:326.960000pt;}
.y38_c00190{bottom:328.293333pt;}
.y18_c00190{bottom:343.493333pt;}
.y37_c00190{bottom:344.693333pt;}
.y17_c00190{bottom:359.493333pt;}
.y36_c00190{bottom:360.693333pt;}
.y16_c00190{bottom:375.093333pt;}
.y35_c00190{bottom:376.826667pt;}
.y15_c00190{bottom:390.960000pt;}
.y34_c00190{bottom:393.626667pt;}
.y14_c00190{bottom:407.360000pt;}
.y33_c00190{bottom:408.960000pt;}
.y13_c00190{bottom:423.093333pt;}
.y32_c00190{bottom:424.826667pt;}
.y12_c00190{bottom:438.560000pt;}
.y31_c00190{bottom:440.693333pt;}
.y11_c00190{bottom:454.293333pt;}
.y30_c00190{bottom:456.560000pt;}
.y10_c00190{bottom:470.426667pt;}
.y2f_c00190{bottom:472.826667pt;}
.yf_c00190{bottom:486.560000pt;}
.y2e_c00190{bottom:488.693333pt;}
.ye_c00190{bottom:502.293333pt;}
.y2d_c00190{bottom:504.693333pt;}
.yd_c00190{bottom:517.760000pt;}
.y2c_c00190{bottom:521.093333pt;}
.yc_c00190{bottom:534.293333pt;}
.y2b_c00190{bottom:536.693333pt;}
.yb_c00190{bottom:550.293333pt;}
.y2a_c00190{bottom:552.693333pt;}
.ya_c00190{bottom:565.760000pt;}
.y29_c00190{bottom:568.160000pt;}
.y9_c00190{bottom:582.026667pt;}
.y28_c00190{bottom:584.960000pt;}
.y8_c00190{bottom:597.893333pt;}
.y27_c00190{bottom:601.760000pt;}
.y7_c00190{bottom:613.760000pt;}
.y26_c00190{bottom:617.493333pt;}
.y6_c00190{bottom:631.226667pt;}
.y25_c00190{bottom:633.360000pt;}
.y5_c00190{bottom:646.560000pt;}
.y24_c00190{bottom:649.226667pt;}
.y4_c00190{bottom:661.493333pt;}
.y23_c00190{bottom:665.493333pt;}
.y3_c00190{bottom:676.826667pt;}
.y22_c00190{bottom:681.893333pt;}
.y2_c00190{bottom:695.360000pt;}
.y1_c00190{bottom:713.093333pt;}
.hc_c00190{height:11.733399pt;}
.hd_c00190{height:38.937500pt;}
.h5_c00190{height:41.920000pt;}
.hb_c00190{height:53.098667pt;}
.h9_c00190{height:54.960938pt;}
.h4_c00190{height:55.893333pt;}
.h6_c00190{height:56.906667pt;}
.h7_c00190{height:58.688000pt;}
.h3_c00190{height:59.752000pt;}
.ha_c00190{height:61.482667pt;}
.h2_c00190{height:65.442667pt;}
.h8_c00190{height:69.376000pt;}
.h0_c00190{height:749.066667pt;}
.h1_c00190{height:749.333333pt;}
.w1_c00190{width:93.222667pt;}
.w0_c00190{width:524.666667pt;}
.x0_c00190{left:0.000000pt;}
.xa_c00190{left:18.266667pt;}
.x11_c00190{left:21.333333pt;}
.x9_c00190{left:25.600000pt;}
.x6_c00190{left:63.866667pt;}
.x5_c00190{left:70.400000pt;}
.x4_c00190{left:72.000000pt;}
.x3_c00190{left:73.466667pt;}
.x2_c00190{left:74.666667pt;}
.x7_c00190{left:75.600000pt;}
.x8_c00190{left:77.066667pt;}
.x1_c00190{left:200.533333pt;}
.x12_c00190{left:219.501546pt;}
.xb_c00190{left:263.733333pt;}
.xf_c00190{left:264.933333pt;}
.xe_c00190{left:266.000000pt;}
.xd_c00190{left:267.200000pt;}
.xc_c00190{left:268.266667pt;}
.x10_c00190{left:290.000000pt;}
}





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

.ir_c00191:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00191{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00191;src:url('chunks/assets/font_76c978c3e688ccc323e0e2de.woff2')format("woff");}.ff1_c00191{font-family:ff1_c00191;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00191;src:url('chunks/assets/font_615f6665f9a10afc37694459.woff2')format("woff");}.ff2_c00191{font-family:ff2_c00191;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00191;src:url('chunks/assets/font_4b28b11481fdb3fb695c9126.woff2')format("woff");}.ff3_c00191{font-family:ff3_c00191;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00191;src:url('chunks/assets/font_f68176a666885e0b1fd10897.woff2')format("woff");}.ff4_c00191{font-family:ff4_c00191;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00191;src:url('chunks/assets/font_7c7b114d6d8510036cb24ad0.woff2')format("woff");}.ff5_c00191{font-family:ff5_c00191;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00191;src:url('chunks/assets/font_dba6047248cf3978b4440122.woff2')format("woff");}.ff6_c00191{font-family:ff6_c00191;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00191;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff7_c00191{font-family:ff7_c00191;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00191{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00191{vertical-align:0.000000px;}
.ls5_c00191{letter-spacing:-3.000000px;}
.ls4_c00191{letter-spacing:0.000000px;}
.ls1_c00191{letter-spacing:2.205000px;}
.ls0_c00191{letter-spacing:3.000000px;}
.ls3_c00191{letter-spacing:3.450000px;}
.ls2_c00191{letter-spacing:7.632000px;}
.sc__c00191{text-shadow:none;}
.sc0_c00191{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00191{-webkit-text-stroke:0px transparent;}
.sc0_c00191{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00191{word-spacing:-18.060000px;}
.ws1_c00191{word-spacing:-15.000000px;}
.ws0_c00191{word-spacing:-14.160000px;}
.ws2_c00191{word-spacing:-3.918000px;}
.ws4_c00191{word-spacing:-3.540000px;}
.ws5_c00191{word-spacing:0.000000px;}
._24_c00191{margin-left:-20.364000px;}
._1c_c00191{margin-left:-11.322000px;}
._10_c00191{margin-left:-10.020000px;}
._1d_c00191{margin-left:-8.895000px;}
._1b_c00191{margin-left:-7.833000px;}
._f_c00191{margin-left:-6.600000px;}
._11_c00191{margin-left:-4.680000px;}
._3_c00191{margin-left:-3.480000px;}
._1_c00191{margin-left:-2.100000px;}
._7_c00191{margin-left:-1.080000px;}
._0_c00191{width:1.380000px;}
._2_c00191{width:3.000000px;}
._5_c00191{width:4.440000px;}
._e_c00191{width:5.520000px;}
._4_c00191{width:6.900000px;}
._d_c00191{width:8.220000px;}
._23_c00191{width:9.240000px;}
._1a_c00191{width:10.320000px;}
._6_c00191{width:11.520000px;}
._15_c00191{width:12.660000px;}
._c_c00191{width:13.680000px;}
._14_c00191{width:15.120000px;}
._b_c00191{width:16.200000px;}
._19_c00191{width:17.940000px;}
._9_c00191{width:20.340000px;}
._1e_c00191{width:22.419000px;}
._12_c00191{width:23.940000px;}
._1f_c00191{width:25.341000px;}
._16_c00191{width:26.700000px;}
._a_c00191{width:29.640000px;}
._8_c00191{width:32.400000px;}
._20_c00191{width:34.260000px;}
._21_c00191{width:40.380000px;}
._22_c00191{width:53.220000px;}
._17_c00191{width:57.300000px;}
._13_c00191{width:67.740000px;}
._18_c00191{width:136.380000px;}
.fc2_c00191{color:transparent;}
.fc1_c00191{color:rgb(128,128,128);}
.fc0_c00191{color:rgb(0,0,0);}
.fs4_c00191{font-size:39.000000px;}
.fs1_c00191{font-size:45.000000px;}
.fs6_c00191{font-size:48.000000px;}
.fs5_c00191{font-size:51.000000px;}
.fs3_c00191{font-size:54.000000px;}
.fs0_c00191{font-size:60.000000px;}
.fs2_c00191{font-size:63.000000px;}
.y0_c00191{bottom:0.000000px;}
.y51_c00191{bottom:3.105000px;}
.y50_c00191{bottom:7.228369px;}
.y4f_c00191{bottom:32.970000px;}
.y29_c00191{bottom:55.020000px;}
.y28_c00191{bottom:73.170000px;}
.y4e_c00191{bottom:85.320000px;}
.y27_c00191{bottom:91.170000px;}
.y4d_c00191{bottom:107.670000px;}
.y26_c00191{bottom:109.020000px;}
.y4c_c00191{bottom:126.120000px;}
.y25_c00191{bottom:127.170000px;}
.y4b_c00191{bottom:143.070000px;}
.y24_c00191{bottom:144.720000px;}
.y4a_c00191{bottom:161.970000px;}
.y23_c00191{bottom:163.620000px;}
.y49_c00191{bottom:180.120000px;}
.y22_c00191{bottom:181.470000px;}
.y48_c00191{bottom:197.820000px;}
.y21_c00191{bottom:198.420000px;}
.y47_c00191{bottom:215.370000px;}
.y20_c00191{bottom:217.620000px;}
.y46_c00191{bottom:234.270000px;}
.y1f_c00191{bottom:234.870000px;}
.y45_c00191{bottom:252.720000px;}
.y1e_c00191{bottom:253.170000px;}
.y44_c00191{bottom:270.270000px;}
.y1d_c00191{bottom:271.620000px;}
.y43_c00191{bottom:288.270000px;}
.y1c_c00191{bottom:289.620000px;}
.y42_c00191{bottom:306.420000px;}
.y1b_c00191{bottom:307.770000px;}
.y41_c00191{bottom:324.570000px;}
.y1a_c00191{bottom:325.320000px;}
.y40_c00191{bottom:343.170000px;}
.y19_c00191{bottom:344.520000px;}
.y3f_c00191{bottom:361.020000px;}
.y18_c00191{bottom:362.070000px;}
.y3e_c00191{bottom:378.720000px;}
.y17_c00191{bottom:379.620000px;}
.y3d_c00191{bottom:397.470000px;}
.y16_c00191{bottom:397.920000px;}
.y3c_c00191{bottom:415.470000px;}
.y15_c00191{bottom:416.520000px;}
.y3b_c00191{bottom:433.620000px;}
.y14_c00191{bottom:434.070000px;}
.y3a_c00191{bottom:451.920000px;}
.y13_c00191{bottom:452.520000px;}
.y39_c00191{bottom:469.770000px;}
.y12_c00191{bottom:470.520000px;}
.y38_c00191{bottom:487.620000px;}
.y11_c00191{bottom:488.370000px;}
.y37_c00191{bottom:505.620000px;}
.y10_c00191{bottom:506.520000px;}
.y36_c00191{bottom:523.470000px;}
.yf_c00191{bottom:524.820000px;}
.y35_c00191{bottom:541.320000px;}
.ye_c00191{bottom:543.270000px;}
.y34_c00191{bottom:559.920000px;}
.yd_c00191{bottom:561.870000px;}
.y33_c00191{bottom:577.470000px;}
.yc_c00191{bottom:578.520000px;}
.y32_c00191{bottom:595.620000px;}
.yb_c00191{bottom:597.420000px;}
.y31_c00191{bottom:614.220000px;}
.ya_c00191{bottom:614.520000px;}
.y9_c00191{bottom:632.520000px;}
.y30_c00191{bottom:650.370000px;}
.y8_c00191{bottom:650.970000px;}
.y7_c00191{bottom:668.820000px;}
.y2f_c00191{bottom:687.120000px;}
.y6_c00191{bottom:687.270000px;}
.y5_c00191{bottom:705.420000px;}
.y2e_c00191{bottom:705.720000px;}
.y4_c00191{bottom:723.570000px;}
.y2d_c00191{bottom:741.420000px;}
.y3_c00191{bottom:742.170000px;}
.y2c_c00191{bottom:760.020000px;}
.y2_c00191{bottom:760.770000px;}
.y2b_c00191{bottom:777.870000px;}
.y1_c00191{bottom:778.320000px;}
.y2a_c00191{bottom:798.420000px;}
.h4_c00191{height:13.200073px;}
.h5_c00191{height:43.804688px;}
.h1_c00191{height:62.880000px;}
.h3_c00191{height:64.020000px;}
.h2_c00191{height:67.221000px;}
.h0_c00191{height:840.750000px;}
.w1_c00191{width:104.875500px;}
.w0_c00191{width:570.000000px;}
.x0_c00191{left:0.000000px;}
.x3_c00191{left:36.450000px;}
.x2_c00191{left:100.350000px;}
.x1_c00191{left:101.550000px;}
.x10_c00191{left:236.814240px;}
.x5_c00191{left:313.800000px;}
.x7_c00191{left:315.150000px;}
.x6_c00191{left:316.200000px;}
.x4_c00191{left:317.250000px;}
.x9_c00191{left:318.300000px;}
.x8_c00191{left:319.500000px;}
.xa_c00191{left:320.850000px;}
.xb_c00191{left:338.400000px;}
.xc_c00191{left:371.250000px;}
.xd_c00191{left:389.100000px;}
.xe_c00191{left:403.650000px;}
.xf_c00191{left:472.800000px;}
@media print{
.v0_c00191{vertical-align:0.000000pt;}
.ls5_c00191{letter-spacing:-2.666667pt;}
.ls4_c00191{letter-spacing:0.000000pt;}
.ls1_c00191{letter-spacing:1.960000pt;}
.ls0_c00191{letter-spacing:2.666667pt;}
.ls3_c00191{letter-spacing:3.066667pt;}
.ls2_c00191{letter-spacing:6.784000pt;}
.ws3_c00191{word-spacing:-16.053333pt;}
.ws1_c00191{word-spacing:-13.333333pt;}
.ws0_c00191{word-spacing:-12.586667pt;}
.ws2_c00191{word-spacing:-3.482667pt;}
.ws4_c00191{word-spacing:-3.146667pt;}
.ws5_c00191{word-spacing:0.000000pt;}
._24_c00191{margin-left:-18.101333pt;}
._1c_c00191{margin-left:-10.064000pt;}
._10_c00191{margin-left:-8.906667pt;}
._1d_c00191{margin-left:-7.906667pt;}
._1b_c00191{margin-left:-6.962667pt;}
._f_c00191{margin-left:-5.866667pt;}
._11_c00191{margin-left:-4.160000pt;}
._3_c00191{margin-left:-3.093333pt;}
._1_c00191{margin-left:-1.866667pt;}
._7_c00191{margin-left:-0.960000pt;}
._0_c00191{width:1.226667pt;}
._2_c00191{width:2.666667pt;}
._5_c00191{width:3.946667pt;}
._e_c00191{width:4.906667pt;}
._4_c00191{width:6.133333pt;}
._d_c00191{width:7.306667pt;}
._23_c00191{width:8.213333pt;}
._1a_c00191{width:9.173333pt;}
._6_c00191{width:10.240000pt;}
._15_c00191{width:11.253333pt;}
._c_c00191{width:12.160000pt;}
._14_c00191{width:13.440000pt;}
._b_c00191{width:14.400000pt;}
._19_c00191{width:15.946667pt;}
._9_c00191{width:18.080000pt;}
._1e_c00191{width:19.928000pt;}
._12_c00191{width:21.280000pt;}
._1f_c00191{width:22.525333pt;}
._16_c00191{width:23.733333pt;}
._a_c00191{width:26.346667pt;}
._8_c00191{width:28.800000pt;}
._20_c00191{width:30.453333pt;}
._21_c00191{width:35.893333pt;}
._22_c00191{width:47.306667pt;}
._17_c00191{width:50.933333pt;}
._13_c00191{width:60.213333pt;}
._18_c00191{width:121.226667pt;}
.fs4_c00191{font-size:34.666667pt;}
.fs1_c00191{font-size:40.000000pt;}
.fs6_c00191{font-size:42.666667pt;}
.fs5_c00191{font-size:45.333333pt;}
.fs3_c00191{font-size:48.000000pt;}
.fs0_c00191{font-size:53.333333pt;}
.fs2_c00191{font-size:56.000000pt;}
.y0_c00191{bottom:0.000000pt;}
.y51_c00191{bottom:2.760000pt;}
.y50_c00191{bottom:6.425217pt;}
.y4f_c00191{bottom:29.306667pt;}
.y29_c00191{bottom:48.906667pt;}
.y28_c00191{bottom:65.040000pt;}
.y4e_c00191{bottom:75.840000pt;}
.y27_c00191{bottom:81.040000pt;}
.y4d_c00191{bottom:95.706667pt;}
.y26_c00191{bottom:96.906667pt;}
.y4c_c00191{bottom:112.106667pt;}
.y25_c00191{bottom:113.040000pt;}
.y4b_c00191{bottom:127.173333pt;}
.y24_c00191{bottom:128.640000pt;}
.y4a_c00191{bottom:143.973333pt;}
.y23_c00191{bottom:145.440000pt;}
.y49_c00191{bottom:160.106667pt;}
.y22_c00191{bottom:161.306667pt;}
.y48_c00191{bottom:175.840000pt;}
.y21_c00191{bottom:176.373333pt;}
.y47_c00191{bottom:191.440000pt;}
.y20_c00191{bottom:193.440000pt;}
.y46_c00191{bottom:208.240000pt;}
.y1f_c00191{bottom:208.773333pt;}
.y45_c00191{bottom:224.640000pt;}
.y1e_c00191{bottom:225.040000pt;}
.y44_c00191{bottom:240.240000pt;}
.y1d_c00191{bottom:241.440000pt;}
.y43_c00191{bottom:256.240000pt;}
.y1c_c00191{bottom:257.440000pt;}
.y42_c00191{bottom:272.373333pt;}
.y1b_c00191{bottom:273.573333pt;}
.y41_c00191{bottom:288.506667pt;}
.y1a_c00191{bottom:289.173333pt;}
.y40_c00191{bottom:305.040000pt;}
.y19_c00191{bottom:306.240000pt;}
.y3f_c00191{bottom:320.906667pt;}
.y18_c00191{bottom:321.840000pt;}
.y3e_c00191{bottom:336.640000pt;}
.y17_c00191{bottom:337.440000pt;}
.y3d_c00191{bottom:353.306667pt;}
.y16_c00191{bottom:353.706667pt;}
.y3c_c00191{bottom:369.306667pt;}
.y15_c00191{bottom:370.240000pt;}
.y3b_c00191{bottom:385.440000pt;}
.y14_c00191{bottom:385.840000pt;}
.y3a_c00191{bottom:401.706667pt;}
.y13_c00191{bottom:402.240000pt;}
.y39_c00191{bottom:417.573333pt;}
.y12_c00191{bottom:418.240000pt;}
.y38_c00191{bottom:433.440000pt;}
.y11_c00191{bottom:434.106667pt;}
.y37_c00191{bottom:449.440000pt;}
.y10_c00191{bottom:450.240000pt;}
.y36_c00191{bottom:465.306667pt;}
.yf_c00191{bottom:466.506667pt;}
.y35_c00191{bottom:481.173333pt;}
.ye_c00191{bottom:482.906667pt;}
.y34_c00191{bottom:497.706667pt;}
.yd_c00191{bottom:499.440000pt;}
.y33_c00191{bottom:513.306667pt;}
.yc_c00191{bottom:514.240000pt;}
.y32_c00191{bottom:529.440000pt;}
.yb_c00191{bottom:531.040000pt;}
.y31_c00191{bottom:545.973333pt;}
.ya_c00191{bottom:546.240000pt;}
.y9_c00191{bottom:562.240000pt;}
.y30_c00191{bottom:578.106667pt;}
.y8_c00191{bottom:578.640000pt;}
.y7_c00191{bottom:594.506667pt;}
.y2f_c00191{bottom:610.773333pt;}
.y6_c00191{bottom:610.906667pt;}
.y5_c00191{bottom:627.040000pt;}
.y2e_c00191{bottom:627.306667pt;}
.y4_c00191{bottom:643.173333pt;}
.y2d_c00191{bottom:659.040000pt;}
.y3_c00191{bottom:659.706667pt;}
.y2c_c00191{bottom:675.573333pt;}
.y2_c00191{bottom:676.240000pt;}
.y2b_c00191{bottom:691.440000pt;}
.y1_c00191{bottom:691.840000pt;}
.y2a_c00191{bottom:709.706667pt;}
.h4_c00191{height:11.733399pt;}
.h5_c00191{height:38.937500pt;}
.h1_c00191{height:55.893333pt;}
.h3_c00191{height:56.906667pt;}
.h2_c00191{height:59.752000pt;}
.h0_c00191{height:747.333333pt;}
.w1_c00191{width:93.222667pt;}
.w0_c00191{width:506.666667pt;}
.x0_c00191{left:0.000000pt;}
.x3_c00191{left:32.400000pt;}
.x2_c00191{left:89.200000pt;}
.x1_c00191{left:90.266667pt;}
.x10_c00191{left:210.501546pt;}
.x5_c00191{left:278.933333pt;}
.x7_c00191{left:280.133333pt;}
.x6_c00191{left:281.066667pt;}
.x4_c00191{left:282.000000pt;}
.x9_c00191{left:282.933333pt;}
.x8_c00191{left:284.000000pt;}
.xa_c00191{left:285.200000pt;}
.xb_c00191{left:300.800000pt;}
.xc_c00191{left:330.000000pt;}
.xd_c00191{left:345.866667pt;}
.xe_c00191{left:358.800000pt;}
.xf_c00191{left:420.266667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b9e101f0523de2d606a70ff1.woff2')format("woff");}.ff1_c00192{font-family:ff1_c00192;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00192;src:url('chunks/assets/font_ba053e0eb1ae194c9e526b87.woff2')format("woff");}.ff2_c00192{font-family:ff2_c00192;line-height:1.437000;font-style:normal;font-weight:normal;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_de8163ce5aeb2c99a8e90691.woff2')format("woff");}.ff3_c00192{font-family:ff3_c00192;line-height:1.437000;font-style:normal;font-weight:normal;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_549b8ba76e74a57880fe9aea.woff2')format("woff");}.ff4_c00192{font-family:ff4_c00192;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00192;src:url('chunks/assets/font_9eae2279fe41dcae7436ba50.woff2')format("woff");}.ff5_c00192{font-family:ff5_c00192;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00192;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff6_c00192{font-family:ff6_c00192;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00192;src:url('chunks/assets/font_0981b36ef1721a00d55383bf.woff2')format("woff");}.ff7_c00192{font-family:ff7_c00192;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00192;src:url('chunks/assets/font_cdcc439d7deba18c517af791.woff2')format("woff");}.ff8_c00192{font-family:ff8_c00192;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00192;src:url('chunks/assets/font_1767803ceb123f82b02d35f2.woff2')format("woff");}.ff9_c00192{font-family:ff9_c00192;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00192;src:url('chunks/assets/font_9009876667525b693c8e567a.woff2')format("woff");}.ffa_c00192{font-family:ffa_c00192;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00192;src:url('chunks/assets/font_b56e4a91b574ff69b6ade7ab.woff2')format("woff");}.ffb_c00192{font-family:ffb_c00192;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc_c00192;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ffc_c00192{font-family:ffc_c00192;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00192{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00192{vertical-align:0.000000px;}
.v1_c00192{vertical-align:106.200000px;}
.ls10_c00192{letter-spacing:-6.000000px;}
.ls11_c00192{letter-spacing:0.000000px;}
.ls9_c00192{letter-spacing:0.120000px;}
.ls7_c00192{letter-spacing:0.187200px;}
.lsd_c00192{letter-spacing:2.205000px;}
.lsa_c00192{letter-spacing:2.400000px;}
.ls2_c00192{letter-spacing:3.000000px;}
.ls8_c00192{letter-spacing:6.000000px;}
.ls4_c00192{letter-spacing:8.493000px;}
.lse_c00192{letter-spacing:8.715000px;}
.ls0_c00192{letter-spacing:9.405000px;}
.lsb_c00192{letter-spacing:15.000000px;}
.lsc_c00192{letter-spacing:17.445000px;}
.ls1_c00192{letter-spacing:18.390000px;}
.ls5_c00192{letter-spacing:37.293000px;}
.lsf_c00192{letter-spacing:62.940000px;}
.ls6_c00192{letter-spacing:102.093000px;}
.ls3_c00192{letter-spacing:108.093000px;}
.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;}
}
.ws7_c00192{word-spacing:-48.876000px;}
.ws9_c00192{word-spacing:-29.295000px;}
.ws8_c00192{word-spacing:-28.860000px;}
.ws4_c00192{word-spacing:-28.215000px;}
.ws0_c00192{word-spacing:-21.084000px;}
.ws6_c00192{word-spacing:-21.057000px;}
.ws5_c00192{word-spacing:-19.500000px;}
.ws2_c00192{word-spacing:-16.500000px;}
.ws1_c00192{word-spacing:-14.160000px;}
.ws3_c00192{word-spacing:-13.452000px;}
.wsa_c00192{word-spacing:0.000000px;}
._34_c00192{margin-left:-19.860000px;}
._22_c00192{margin-left:-18.480000px;}
._1d_c00192{margin-left:-17.082000px;}
._8_c00192{margin-left:-14.040000px;}
._2c_c00192{margin-left:-12.660000px;}
._21_c00192{margin-left:-10.410000px;}
._2b_c00192{margin-left:-9.300000px;}
._18_c00192{margin-left:-8.235000px;}
._29_c00192{margin-left:-6.543000px;}
._12_c00192{margin-left:-5.442000px;}
._11_c00192{margin-left:-4.320000px;}
._10_c00192{margin-left:-3.135000px;}
._3_c00192{margin-left:-1.920000px;}
._4_c00192{width:1.380000px;}
._2_c00192{width:2.772000px;}
._9_c00192{width:3.948000px;}
._1a_c00192{width:5.028000px;}
._5_c00192{width:6.120000px;}
._13_c00192{width:7.740000px;}
._6_c00192{width:9.360000px;}
._7_c00192{width:10.860000px;}
._a_c00192{width:11.940000px;}
._0_c00192{width:13.650000px;}
._f_c00192{width:15.444000px;}
._16_c00192{width:16.680000px;}
._17_c00192{width:18.222000px;}
._b_c00192{width:20.688000px;}
._c_c00192{width:22.260000px;}
._d_c00192{width:24.348000px;}
._1_c00192{width:25.830000px;}
._1b_c00192{width:27.060000px;}
._19_c00192{width:29.157000px;}
._20_c00192{width:30.255000px;}
._30_c00192{width:31.284000px;}
._26_c00192{width:32.919000px;}
._e_c00192{width:33.960000px;}
._1c_c00192{width:36.060000px;}
._2a_c00192{width:38.160000px;}
._31_c00192{width:39.495000px;}
._25_c00192{width:41.280000px;}
._32_c00192{width:43.395000px;}
._27_c00192{width:45.225000px;}
._24_c00192{width:46.440000px;}
._2e_c00192{width:51.438000px;}
._23_c00192{width:53.922000px;}
._2d_c00192{width:62.907000px;}
._1f_c00192{width:113.952000px;}
._15_c00192{width:123.780000px;}
._1e_c00192{width:190.464000px;}
._33_c00192{width:209.736000px;}
._2f_c00192{width:246.840000px;}
._14_c00192{width:296.655000px;}
._28_c00192{width:449.988000px;}
.fc2_c00192{color:transparent;}
.fc1_c00192{color:rgb(128,128,128);}
.fc0_c00192{color:rgb(0,0,0);}
.fs3_c00192{font-size:45.000000px;}
.fs6_c00192{font-size:45.600000px;}
.fsa_c00192{font-size:48.000000px;}
.fs9_c00192{font-size:54.000000px;}
.fs5_c00192{font-size:57.000000px;}
.fs2_c00192{font-size:60.000000px;}
.fs8_c00192{font-size:63.000000px;}
.fs7_c00192{font-size:66.000000px;}
.fs1_c00192{font-size:84.000000px;}
.fs0_c00192{font-size:90.000000px;}
.fs4_c00192{font-size:195.000000px;}
.y0_c00192{bottom:0.000000px;}
.y52_c00192{bottom:3.105000px;}
.y51_c00192{bottom:7.228371px;}
.y4d_c00192{bottom:32.115000px;}
.y4c_c00192{bottom:53.115000px;}
.y26_c00192{bottom:55.665000px;}
.y4b_c00192{bottom:71.565000px;}
.y25_c00192{bottom:73.665000px;}
.y4a_c00192{bottom:89.115000px;}
.y24_c00192{bottom:92.115000px;}
.y49_c00192{bottom:107.115000px;}
.y23_c00192{bottom:109.665000px;}
.y48_c00192{bottom:124.965000px;}
.y22_c00192{bottom:127.365000px;}
.y47_c00192{bottom:142.815000px;}
.y21_c00192{bottom:144.915000px;}
.y46_c00192{bottom:161.115000px;}
.y20_c00192{bottom:162.765000px;}
.y45_c00192{bottom:179.265000px;}
.y1f_c00192{bottom:180.315000px;}
.y44_c00192{bottom:197.115000px;}
.y1e_c00192{bottom:198.165000px;}
.y43_c00192{bottom:214.665000px;}
.y1d_c00192{bottom:215.715000px;}
.y42_c00192{bottom:232.965000px;}
.y1c_c00192{bottom:234.315000px;}
.y41_c00192{bottom:250.815000px;}
.y1b_c00192{bottom:251.865000px;}
.y40_c00192{bottom:268.665000px;}
.y1a_c00192{bottom:270.315000px;}
.y3f_c00192{bottom:286.215000px;}
.y19_c00192{bottom:288.015000px;}
.y3e_c00192{bottom:304.215000px;}
.y18_c00192{bottom:305.865000px;}
.y3d_c00192{bottom:321.315000px;}
.y17_c00192{bottom:323.415000px;}
.y3c_c00192{bottom:339.315000px;}
.y16_c00192{bottom:340.515000px;}
.y50_c00192{bottom:341.865000px;}
.y3b_c00192{bottom:357.165000px;}
.y15_c00192{bottom:359.565000px;}
.y3a_c00192{bottom:375.015000px;}
.y14_c00192{bottom:377.115000px;}
.y39_c00192{bottom:393.615000px;}
.y13_c00192{bottom:394.515000px;}
.y38_c00192{bottom:410.715000px;}
.y12_c00192{bottom:413.415000px;}
.y37_c00192{bottom:429.615000px;}
.y11_c00192{bottom:431.415000px;}
.y36_c00192{bottom:446.865000px;}
.y10_c00192{bottom:448.965000px;}
.y35_c00192{bottom:464.865000px;}
.yf_c00192{bottom:466.215000px;}
.y4f_c00192{bottom:467.565000px;}
.y34_c00192{bottom:483.015000px;}
.ye_c00192{bottom:483.765000px;}
.y4e_c00192{bottom:484.365000px;}
.y33_c00192{bottom:500.865000px;}
.yd_c00192{bottom:501.915000px;}
.y32_c00192{bottom:518.715000px;}
.yc_c00192{bottom:519.465000px;}
.yb_c00192{bottom:537.315000px;}
.ya_c00192{bottom:555.165000px;}
.y9_c00192{bottom:572.865000px;}
.y31_c00192{bottom:573.165000px;}
.y8_c00192{bottom:591.315000px;}
.y30_c00192{bottom:591.615000px;}
.y7_c00192{bottom:609.165000px;}
.y5_c00192{bottom:618.465000px;}
.y6_c00192{bottom:627.165000px;}
.y2f_c00192{bottom:627.465000px;}
.y2e_c00192{bottom:645.315000px;}
.y2d_c00192{bottom:663.315000px;}
.y4_c00192{bottom:680.865000px;}
.y2c_c00192{bottom:681.765000px;}
.y3_c00192{bottom:699.615000px;}
.y2_c00192{bottom:717.165000px;}
.y2b_c00192{bottom:717.615000px;}
.y2a_c00192{bottom:736.065000px;}
.y1_c00192{bottom:750.015000px;}
.y29_c00192{bottom:753.615000px;}
.y28_c00192{bottom:771.615000px;}
.y27_c00192{bottom:790.215000px;}
.ha_c00192{height:13.200074px;}
.hb_c00192{height:43.804688px;}
.h6_c00192{height:59.736000px;}
.h3_c00192{height:62.880000px;}
.h9_c00192{height:64.020000px;}
.h8_c00192{height:66.024000px;}
.h7_c00192{height:70.422000px;}
.h2_c00192{height:88.286133px;}
.h5_c00192{height:88.330078px;}
.h4_c00192{height:246.892090px;}
.h1_c00192{height:822.750000px;}
.h0_c00192{height:822.975000px;}
.w1_c00192{width:104.875500px;}
.w0_c00192{width:576.750000px;}
.x0_c00192{left:0.000000px;}
.xd_c00192{left:19.800000px;}
.xe_c00192{left:21.900000px;}
.x8_c00192{left:24.600000px;}
.x9_c00192{left:25.650000px;}
.x11_c00192{left:76.050000px;}
.x10_c00192{left:77.700000px;}
.xf_c00192{left:79.350000px;}
.xa_c00192{left:81.300000px;}
.xc_c00192{left:82.950000px;}
.xb_c00192{left:84.300000px;}
.x5_c00192{left:85.350000px;}
.x2_c00192{left:118.050000px;}
.x3_c00192{left:120.600000px;}
.x7_c00192{left:126.900000px;}
.x6_c00192{left:131.250000px;}
.x1_c00192{left:156.900000px;}
.x4_c00192{left:163.350000px;}
.x1f_c00192{left:240.189240px;}
.x1a_c00192{left:290.850000px;}
.x12_c00192{left:292.950000px;}
.x18_c00192{left:294.600000px;}
.x19_c00192{left:295.950000px;}
.x15_c00192{left:297.000000px;}
.x17_c00192{left:298.050000px;}
.x16_c00192{left:299.700000px;}
.x14_c00192{left:301.050000px;}
.x13_c00192{left:302.400000px;}
.x1b_c00192{left:393.150000px;}
.x1d_c00192{left:501.900000px;}
.x1c_c00192{left:503.100000px;}
.x1e_c00192{left:517.350000px;}
@media print{
.v0_c00192{vertical-align:0.000000pt;}
.v1_c00192{vertical-align:94.400000pt;}
.ls10_c00192{letter-spacing:-5.333333pt;}
.ls11_c00192{letter-spacing:0.000000pt;}
.ls9_c00192{letter-spacing:0.106667pt;}
.ls7_c00192{letter-spacing:0.166400pt;}
.lsd_c00192{letter-spacing:1.960000pt;}
.lsa_c00192{letter-spacing:2.133333pt;}
.ls2_c00192{letter-spacing:2.666667pt;}
.ls8_c00192{letter-spacing:5.333333pt;}
.ls4_c00192{letter-spacing:7.549333pt;}
.lse_c00192{letter-spacing:7.746667pt;}
.ls0_c00192{letter-spacing:8.360000pt;}
.lsb_c00192{letter-spacing:13.333333pt;}
.lsc_c00192{letter-spacing:15.506667pt;}
.ls1_c00192{letter-spacing:16.346667pt;}
.ls5_c00192{letter-spacing:33.149333pt;}
.lsf_c00192{letter-spacing:55.946667pt;}
.ls6_c00192{letter-spacing:90.749333pt;}
.ls3_c00192{letter-spacing:96.082667pt;}
.ws7_c00192{word-spacing:-43.445333pt;}
.ws9_c00192{word-spacing:-26.040000pt;}
.ws8_c00192{word-spacing:-25.653333pt;}
.ws4_c00192{word-spacing:-25.080000pt;}
.ws0_c00192{word-spacing:-18.741333pt;}
.ws6_c00192{word-spacing:-18.717333pt;}
.ws5_c00192{word-spacing:-17.333333pt;}
.ws2_c00192{word-spacing:-14.666667pt;}
.ws1_c00192{word-spacing:-12.586667pt;}
.ws3_c00192{word-spacing:-11.957333pt;}
.wsa_c00192{word-spacing:0.000000pt;}
._34_c00192{margin-left:-17.653333pt;}
._22_c00192{margin-left:-16.426667pt;}
._1d_c00192{margin-left:-15.184000pt;}
._8_c00192{margin-left:-12.480000pt;}
._2c_c00192{margin-left:-11.253333pt;}
._21_c00192{margin-left:-9.253333pt;}
._2b_c00192{margin-left:-8.266667pt;}
._18_c00192{margin-left:-7.320000pt;}
._29_c00192{margin-left:-5.816000pt;}
._12_c00192{margin-left:-4.837333pt;}
._11_c00192{margin-left:-3.840000pt;}
._10_c00192{margin-left:-2.786667pt;}
._3_c00192{margin-left:-1.706667pt;}
._4_c00192{width:1.226667pt;}
._2_c00192{width:2.464000pt;}
._9_c00192{width:3.509333pt;}
._1a_c00192{width:4.469333pt;}
._5_c00192{width:5.440000pt;}
._13_c00192{width:6.880000pt;}
._6_c00192{width:8.320000pt;}
._7_c00192{width:9.653333pt;}
._a_c00192{width:10.613333pt;}
._0_c00192{width:12.133333pt;}
._f_c00192{width:13.728000pt;}
._16_c00192{width:14.826667pt;}
._17_c00192{width:16.197333pt;}
._b_c00192{width:18.389333pt;}
._c_c00192{width:19.786667pt;}
._d_c00192{width:21.642667pt;}
._1_c00192{width:22.960000pt;}
._1b_c00192{width:24.053333pt;}
._19_c00192{width:25.917333pt;}
._20_c00192{width:26.893333pt;}
._30_c00192{width:27.808000pt;}
._26_c00192{width:29.261333pt;}
._e_c00192{width:30.186667pt;}
._1c_c00192{width:32.053333pt;}
._2a_c00192{width:33.920000pt;}
._31_c00192{width:35.106667pt;}
._25_c00192{width:36.693333pt;}
._32_c00192{width:38.573333pt;}
._27_c00192{width:40.200000pt;}
._24_c00192{width:41.280000pt;}
._2e_c00192{width:45.722667pt;}
._23_c00192{width:47.930667pt;}
._2d_c00192{width:55.917333pt;}
._1f_c00192{width:101.290667pt;}
._15_c00192{width:110.026667pt;}
._1e_c00192{width:169.301333pt;}
._33_c00192{width:186.432000pt;}
._2f_c00192{width:219.413333pt;}
._14_c00192{width:263.693333pt;}
._28_c00192{width:399.989333pt;}
.fs3_c00192{font-size:40.000000pt;}
.fs6_c00192{font-size:40.533333pt;}
.fsa_c00192{font-size:42.666667pt;}
.fs9_c00192{font-size:48.000000pt;}
.fs5_c00192{font-size:50.666667pt;}
.fs2_c00192{font-size:53.333333pt;}
.fs8_c00192{font-size:56.000000pt;}
.fs7_c00192{font-size:58.666667pt;}
.fs1_c00192{font-size:74.666667pt;}
.fs0_c00192{font-size:80.000000pt;}
.fs4_c00192{font-size:173.333333pt;}
.y0_c00192{bottom:0.000000pt;}
.y52_c00192{bottom:2.760000pt;}
.y51_c00192{bottom:6.425219pt;}
.y4d_c00192{bottom:28.546667pt;}
.y4c_c00192{bottom:47.213333pt;}
.y26_c00192{bottom:49.480000pt;}
.y4b_c00192{bottom:63.613333pt;}
.y25_c00192{bottom:65.480000pt;}
.y4a_c00192{bottom:79.213333pt;}
.y24_c00192{bottom:81.880000pt;}
.y49_c00192{bottom:95.213333pt;}
.y23_c00192{bottom:97.480000pt;}
.y48_c00192{bottom:111.080000pt;}
.y22_c00192{bottom:113.213333pt;}
.y47_c00192{bottom:126.946667pt;}
.y21_c00192{bottom:128.813333pt;}
.y46_c00192{bottom:143.213333pt;}
.y20_c00192{bottom:144.680000pt;}
.y45_c00192{bottom:159.346667pt;}
.y1f_c00192{bottom:160.280000pt;}
.y44_c00192{bottom:175.213333pt;}
.y1e_c00192{bottom:176.146667pt;}
.y43_c00192{bottom:190.813333pt;}
.y1d_c00192{bottom:191.746667pt;}
.y42_c00192{bottom:207.080000pt;}
.y1c_c00192{bottom:208.280000pt;}
.y41_c00192{bottom:222.946667pt;}
.y1b_c00192{bottom:223.880000pt;}
.y40_c00192{bottom:238.813333pt;}
.y1a_c00192{bottom:240.280000pt;}
.y3f_c00192{bottom:254.413333pt;}
.y19_c00192{bottom:256.013333pt;}
.y3e_c00192{bottom:270.413333pt;}
.y18_c00192{bottom:271.880000pt;}
.y3d_c00192{bottom:285.613333pt;}
.y17_c00192{bottom:287.480000pt;}
.y3c_c00192{bottom:301.613333pt;}
.y16_c00192{bottom:302.680000pt;}
.y50_c00192{bottom:303.880000pt;}
.y3b_c00192{bottom:317.480000pt;}
.y15_c00192{bottom:319.613333pt;}
.y3a_c00192{bottom:333.346667pt;}
.y14_c00192{bottom:335.213333pt;}
.y39_c00192{bottom:349.880000pt;}
.y13_c00192{bottom:350.680000pt;}
.y38_c00192{bottom:365.080000pt;}
.y12_c00192{bottom:367.480000pt;}
.y37_c00192{bottom:381.880000pt;}
.y11_c00192{bottom:383.480000pt;}
.y36_c00192{bottom:397.213333pt;}
.y10_c00192{bottom:399.080000pt;}
.y35_c00192{bottom:413.213333pt;}
.yf_c00192{bottom:414.413333pt;}
.y4f_c00192{bottom:415.613333pt;}
.y34_c00192{bottom:429.346667pt;}
.ye_c00192{bottom:430.013333pt;}
.y4e_c00192{bottom:430.546667pt;}
.y33_c00192{bottom:445.213333pt;}
.yd_c00192{bottom:446.146667pt;}
.y32_c00192{bottom:461.080000pt;}
.yc_c00192{bottom:461.746667pt;}
.yb_c00192{bottom:477.613333pt;}
.ya_c00192{bottom:493.480000pt;}
.y9_c00192{bottom:509.213333pt;}
.y31_c00192{bottom:509.480000pt;}
.y8_c00192{bottom:525.613333pt;}
.y30_c00192{bottom:525.880000pt;}
.y7_c00192{bottom:541.480000pt;}
.y5_c00192{bottom:549.746667pt;}
.y6_c00192{bottom:557.480000pt;}
.y2f_c00192{bottom:557.746667pt;}
.y2e_c00192{bottom:573.613333pt;}
.y2d_c00192{bottom:589.613333pt;}
.y4_c00192{bottom:605.213333pt;}
.y2c_c00192{bottom:606.013333pt;}
.y3_c00192{bottom:621.880000pt;}
.y2_c00192{bottom:637.480000pt;}
.y2b_c00192{bottom:637.880000pt;}
.y2a_c00192{bottom:654.280000pt;}
.y1_c00192{bottom:666.680000pt;}
.y29_c00192{bottom:669.880000pt;}
.y28_c00192{bottom:685.880000pt;}
.y27_c00192{bottom:702.413333pt;}
.ha_c00192{height:11.733399pt;}
.hb_c00192{height:38.937500pt;}
.h6_c00192{height:53.098667pt;}
.h3_c00192{height:55.893333pt;}
.h9_c00192{height:56.906667pt;}
.h8_c00192{height:58.688000pt;}
.h7_c00192{height:62.597333pt;}
.h2_c00192{height:78.476562pt;}
.h5_c00192{height:78.515625pt;}
.h4_c00192{height:219.459635pt;}
.h1_c00192{height:731.333333pt;}
.h0_c00192{height:731.533333pt;}
.w1_c00192{width:93.222667pt;}
.w0_c00192{width:512.666667pt;}
.x0_c00192{left:0.000000pt;}
.xd_c00192{left:17.600000pt;}
.xe_c00192{left:19.466667pt;}
.x8_c00192{left:21.866667pt;}
.x9_c00192{left:22.800000pt;}
.x11_c00192{left:67.600000pt;}
.x10_c00192{left:69.066667pt;}
.xf_c00192{left:70.533333pt;}
.xa_c00192{left:72.266667pt;}
.xc_c00192{left:73.733333pt;}
.xb_c00192{left:74.933333pt;}
.x5_c00192{left:75.866667pt;}
.x2_c00192{left:104.933333pt;}
.x3_c00192{left:107.200000pt;}
.x7_c00192{left:112.800000pt;}
.x6_c00192{left:116.666667pt;}
.x1_c00192{left:139.466667pt;}
.x4_c00192{left:145.200000pt;}
.x1f_c00192{left:213.501546pt;}
.x1a_c00192{left:258.533333pt;}
.x12_c00192{left:260.400000pt;}
.x18_c00192{left:261.866667pt;}
.x19_c00192{left:263.066667pt;}
.x15_c00192{left:264.000000pt;}
.x17_c00192{left:264.933333pt;}
.x16_c00192{left:266.400000pt;}
.x14_c00192{left:267.600000pt;}
.x13_c00192{left:268.800000pt;}
.x1b_c00192{left:349.466667pt;}
.x1d_c00192{left:446.133333pt;}
.x1c_c00192{left:447.200000pt;}
.x1e_c00192{left:459.866667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c17b8e4c859451775f1ba3c6.woff2')format("woff");}.ff1_c00193{font-family:ff1_c00193;line-height:1.437000;font-style:normal;font-weight:normal;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_06eabdca9856bbe869d0b866.woff2')format("woff");}.ff2_c00193{font-family:ff2_c00193;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00193;src:url('chunks/assets/font_c890475cd130a93bac0f9e67.woff2')format("woff");}.ff3_c00193{font-family:ff3_c00193;line-height:1.437000;font-style:normal;font-weight:normal;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_0ce391de997f24f9f9dd37f4.woff2')format("woff");}.ff4_c00193{font-family:ff4_c00193;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00193;src:url('chunks/assets/font_b6031f87fda14480c79a1f92.woff2')format("woff");}.ff5_c00193{font-family:ff5_c00193;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00193;src:url('chunks/assets/font_45007b042b4a50987e556241.woff2')format("woff");}.ff6_c00193{font-family:ff6_c00193;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00193;src:url('chunks/assets/font_9ed4ba4ced77509af2357af2.woff2')format("woff");}.ff7_c00193{font-family:ff7_c00193;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00193;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff8_c00193{font-family:ff8_c00193;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00193{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00193{vertical-align:0.000000px;}
.lse_c00193{letter-spacing:-3.000000px;}
.lsc_c00193{letter-spacing:0.000000px;}
.ls1_c00193{letter-spacing:1.605000px;}
.ls0_c00193{letter-spacing:3.000000px;}
.ls8_c00193{letter-spacing:6.000000px;}
.ls4_c00193{letter-spacing:8.520000px;}
.lsd_c00193{letter-spacing:9.000000px;}
.ls2_c00193{letter-spacing:9.720000px;}
.lsa_c00193{letter-spacing:12.000000px;}
.ls3_c00193{letter-spacing:14.340000px;}
.ls9_c00193{letter-spacing:19.260000px;}
.ls5_c00193{letter-spacing:20.787000px;}
.lsb_c00193{letter-spacing:21.987000px;}
.ls7_c00193{letter-spacing:24.060000px;}
.ls6_c00193{letter-spacing:28.860000px;}
.sc__c00193{text-shadow:none;}
.sc0_c00193{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00193{-webkit-text-stroke:0px transparent;}
.sc0_c00193{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00193{word-spacing:-26.427000px;}
.ws2_c00193{word-spacing:-22.623000px;}
.ws4_c00193{word-spacing:-18.060000px;}
.ws1_c00193{word-spacing:-14.427000px;}
.ws0_c00193{word-spacing:-14.160000px;}
.ws6_c00193{word-spacing:0.000000px;}
.ws5_c00193{word-spacing:2.340000px;}
._2c_c00193{margin-left:-17.838000px;}
._2d_c00193{margin-left:-15.372000px;}
._2a_c00193{margin-left:-13.377000px;}
._28_c00193{margin-left:-11.352000px;}
._2b_c00193{margin-left:-9.771000px;}
._24_c00193{margin-left:-8.220000px;}
._23_c00193{margin-left:-6.636000px;}
._1b_c00193{margin-left:-5.460000px;}
._22_c00193{margin-left:-4.236000px;}
._11_c00193{margin-left:-2.220000px;}
._1c_c00193{margin-left:-1.152000px;}
._f_c00193{width:1.440000px;}
._d_c00193{width:2.640000px;}
._b_c00193{width:3.660000px;}
._c_c00193{width:4.740000px;}
._0_c00193{width:5.820000px;}
._1_c00193{width:7.440000px;}
._2_c00193{width:8.460000px;}
._e_c00193{width:9.840000px;}
._9_c00193{width:11.400000px;}
._a_c00193{width:13.140000px;}
._14_c00193{width:14.244000px;}
._4_c00193{width:15.600000px;}
._12_c00193{width:16.704000px;}
._13_c00193{width:18.492000px;}
._18_c00193{width:19.752000px;}
._16_c00193{width:21.168000px;}
._7_c00193{width:22.560000px;}
._6_c00193{width:24.060000px;}
._15_c00193{width:25.392000px;}
._5_c00193{width:27.060000px;}
._27_c00193{width:28.116000px;}
._19_c00193{width:29.328000px;}
._17_c00193{width:30.840000px;}
._21_c00193{width:32.664000px;}
._2e_c00193{width:34.320000px;}
._1e_c00193{width:36.900000px;}
._29_c00193{width:40.416000px;}
._20_c00193{width:44.940000px;}
._1a_c00193{width:46.200000px;}
._8_c00193{width:52.140000px;}
._1f_c00193{width:56.688000px;}
._25_c00193{width:58.296000px;}
._1d_c00193{width:64.320000px;}
._10_c00193{width:72.180000px;}
._26_c00193{width:109.392000px;}
._3_c00193{width:362.040000px;}
.fc2_c00193{color:transparent;}
.fc1_c00193{color:rgb(128,128,128);}
.fc0_c00193{color:rgb(0,0,0);}
.fs1_c00193{font-size:24.000000px;}
.fs2_c00193{font-size:45.000000px;}
.fs6_c00193{font-size:48.000000px;}
.fs5_c00193{font-size:54.000000px;}
.fs4_c00193{font-size:57.000000px;}
.fs0_c00193{font-size:60.000000px;}
.fs3_c00193{font-size:63.000000px;}
.y0_c00193{bottom:0.000000px;}
.y57_c00193{bottom:3.105000px;}
.y56_c00193{bottom:7.228371px;}
.y53_c00193{bottom:45.015000px;}
.y52_c00193{bottom:62.865000px;}
.y2a_c00193{bottom:65.565000px;}
.y51_c00193{bottom:80.715000px;}
.y29_c00193{bottom:83.415000px;}
.y50_c00193{bottom:99.015000px;}
.y28_c00193{bottom:101.715000px;}
.y4f_c00193{bottom:117.165000px;}
.y27_c00193{bottom:119.565000px;}
.y4e_c00193{bottom:135.315000px;}
.y26_c00193{bottom:138.465000px;}
.y4d_c00193{bottom:153.015000px;}
.y25_c00193{bottom:156.615000px;}
.y4c_c00193{bottom:171.465000px;}
.y24_c00193{bottom:174.165000px;}
.y4b_c00193{bottom:189.315000px;}
.y23_c00193{bottom:192.465000px;}
.y4a_c00193{bottom:207.315000px;}
.y22_c00193{bottom:210.915000px;}
.y49_c00193{bottom:225.465000px;}
.y21_c00193{bottom:228.915000px;}
.y48_c00193{bottom:244.065000px;}
.y20_c00193{bottom:246.765000px;}
.y55_c00193{bottom:260.565000px;}
.y47_c00193{bottom:261.915000px;}
.y1f_c00193{bottom:264.915000px;}
.y54_c00193{bottom:280.215000px;}
.y46_c00193{bottom:280.515000px;}
.y1e_c00193{bottom:283.215000px;}
.y45_c00193{bottom:298.065000px;}
.y1d_c00193{bottom:300.465000px;}
.y44_c00193{bottom:315.315000px;}
.y1c_c00193{bottom:318.615000px;}
.y43_c00193{bottom:333.915000px;}
.y1b_c00193{bottom:336.615000px;}
.y42_c00193{bottom:352.365000px;}
.y1a_c00193{bottom:355.815000px;}
.y41_c00193{bottom:369.915000px;}
.y19_c00193{bottom:372.615000px;}
.y40_c00193{bottom:386.865000px;}
.y18_c00193{bottom:390.465000px;}
.y3f_c00193{bottom:406.365000px;}
.y17_c00193{bottom:408.165000px;}
.y3e_c00193{bottom:424.215000px;}
.y16_c00193{bottom:426.915000px;}
.y3d_c00193{bottom:441.465000px;}
.y15_c00193{bottom:444.915000px;}
.y3c_c00193{bottom:460.365000px;}
.y14_c00193{bottom:462.465000px;}
.y3b_c00193{bottom:477.915000px;}
.y13_c00193{bottom:480.315000px;}
.y12_c00193{bottom:498.465000px;}
.y3a_c00193{bottom:498.615000px;}
.y39_c00193{bottom:514.065000px;}
.y11_c00193{bottom:516.765000px;}
.y38_c00193{bottom:533.265000px;}
.y10_c00193{bottom:536.265000px;}
.y37_c00193{bottom:549.465000px;}
.yf_c00193{bottom:553.515000px;}
.y36_c00193{bottom:568.065000px;}
.ye_c00193{bottom:570.165000px;}
.y35_c00193{bottom:586.965000px;}
.yd_c00193{bottom:589.365000px;}
.y34_c00193{bottom:604.815000px;}
.yc_c00193{bottom:607.815000px;}
.y33_c00193{bottom:622.665000px;}
.yb_c00193{bottom:625.365000px;}
.y32_c00193{bottom:641.265000px;}
.ya_c00193{bottom:643.065000px;}
.y31_c00193{bottom:659.115000px;}
.y9_c00193{bottom:660.915000px;}
.y30_c00193{bottom:677.115000px;}
.y8_c00193{bottom:678.765000px;}
.y2f_c00193{bottom:694.965000px;}
.y7_c00193{bottom:697.965000px;}
.y2e_c00193{bottom:713.865000px;}
.y6_c00193{bottom:714.915000px;}
.y2d_c00193{bottom:730.665000px;}
.y5_c00193{bottom:733.365000px;}
.y2c_c00193{bottom:749.565000px;}
.y4_c00193{bottom:751.065000px;}
.y2b_c00193{bottom:768.465000px;}
.y3_c00193{bottom:769.815000px;}
.y2_c00193{bottom:786.465000px;}
.y1_c00193{bottom:806.715000px;}
.h5_c00193{height:13.200074px;}
.h3_c00193{height:30.386719px;}
.h6_c00193{height:43.804688px;}
.h2_c00193{height:62.880000px;}
.h4_c00193{height:66.024000px;}
.h1_c00193{height:851.250000px;}
.h0_c00193{height:851.325000px;}
.w2_c00193{width:104.875500px;}
.w1_c00193{width:572.250000px;}
.w0_c00193{width:572.400000px;}
.x0_c00193{left:0.000000px;}
.x6_c00193{left:42.900000px;}
.x8_c00193{left:45.150000px;}
.x9_c00193{left:47.250000px;}
.x3_c00193{left:103.950000px;}
.x4_c00193{left:105.300000px;}
.x5_c00193{left:106.350000px;}
.x1_c00193{left:108.450000px;}
.x2_c00193{left:110.100000px;}
.x7_c00193{left:135.600000px;}
.x13_c00193{left:238.014267px;}
.xb_c00193{left:319.950000px;}
.xd_c00193{left:321.600000px;}
.xc_c00193{left:322.650000px;}
.xa_c00193{left:323.700000px;}
.xf_c00193{left:325.050000px;}
.xe_c00193{left:349.650000px;}
.x10_c00193{left:478.800000px;}
.x11_c00193{left:522.450000px;}
.x12_c00193{left:523.500000px;}
@media print{
.v0_c00193{vertical-align:0.000000pt;}
.lse_c00193{letter-spacing:-2.666667pt;}
.lsc_c00193{letter-spacing:0.000000pt;}
.ls1_c00193{letter-spacing:1.426667pt;}
.ls0_c00193{letter-spacing:2.666667pt;}
.ls8_c00193{letter-spacing:5.333333pt;}
.ls4_c00193{letter-spacing:7.573333pt;}
.lsd_c00193{letter-spacing:8.000000pt;}
.ls2_c00193{letter-spacing:8.640000pt;}
.lsa_c00193{letter-spacing:10.666667pt;}
.ls3_c00193{letter-spacing:12.746667pt;}
.ls9_c00193{letter-spacing:17.120000pt;}
.ls5_c00193{letter-spacing:18.477333pt;}
.lsb_c00193{letter-spacing:19.544000pt;}
.ls7_c00193{letter-spacing:21.386667pt;}
.ls6_c00193{letter-spacing:25.653333pt;}
.ws3_c00193{word-spacing:-23.490667pt;}
.ws2_c00193{word-spacing:-20.109333pt;}
.ws4_c00193{word-spacing:-16.053333pt;}
.ws1_c00193{word-spacing:-12.824000pt;}
.ws0_c00193{word-spacing:-12.586667pt;}
.ws6_c00193{word-spacing:0.000000pt;}
.ws5_c00193{word-spacing:2.080000pt;}
._2c_c00193{margin-left:-15.856000pt;}
._2d_c00193{margin-left:-13.664000pt;}
._2a_c00193{margin-left:-11.890667pt;}
._28_c00193{margin-left:-10.090667pt;}
._2b_c00193{margin-left:-8.685333pt;}
._24_c00193{margin-left:-7.306667pt;}
._23_c00193{margin-left:-5.898667pt;}
._1b_c00193{margin-left:-4.853333pt;}
._22_c00193{margin-left:-3.765333pt;}
._11_c00193{margin-left:-1.973333pt;}
._1c_c00193{margin-left:-1.024000pt;}
._f_c00193{width:1.280000pt;}
._d_c00193{width:2.346667pt;}
._b_c00193{width:3.253333pt;}
._c_c00193{width:4.213333pt;}
._0_c00193{width:5.173333pt;}
._1_c00193{width:6.613333pt;}
._2_c00193{width:7.520000pt;}
._e_c00193{width:8.746667pt;}
._9_c00193{width:10.133333pt;}
._a_c00193{width:11.680000pt;}
._14_c00193{width:12.661333pt;}
._4_c00193{width:13.866667pt;}
._12_c00193{width:14.848000pt;}
._13_c00193{width:16.437333pt;}
._18_c00193{width:17.557333pt;}
._16_c00193{width:18.816000pt;}
._7_c00193{width:20.053333pt;}
._6_c00193{width:21.386667pt;}
._15_c00193{width:22.570667pt;}
._5_c00193{width:24.053333pt;}
._27_c00193{width:24.992000pt;}
._19_c00193{width:26.069333pt;}
._17_c00193{width:27.413333pt;}
._21_c00193{width:29.034667pt;}
._2e_c00193{width:30.506667pt;}
._1e_c00193{width:32.800000pt;}
._29_c00193{width:35.925333pt;}
._20_c00193{width:39.946667pt;}
._1a_c00193{width:41.066667pt;}
._8_c00193{width:46.346667pt;}
._1f_c00193{width:50.389333pt;}
._25_c00193{width:51.818667pt;}
._1d_c00193{width:57.173333pt;}
._10_c00193{width:64.160000pt;}
._26_c00193{width:97.237333pt;}
._3_c00193{width:321.813333pt;}
.fs1_c00193{font-size:21.333333pt;}
.fs2_c00193{font-size:40.000000pt;}
.fs6_c00193{font-size:42.666667pt;}
.fs5_c00193{font-size:48.000000pt;}
.fs4_c00193{font-size:50.666667pt;}
.fs0_c00193{font-size:53.333333pt;}
.fs3_c00193{font-size:56.000000pt;}
.y0_c00193{bottom:0.000000pt;}
.y57_c00193{bottom:2.760000pt;}
.y56_c00193{bottom:6.425219pt;}
.y53_c00193{bottom:40.013333pt;}
.y52_c00193{bottom:55.880000pt;}
.y2a_c00193{bottom:58.280000pt;}
.y51_c00193{bottom:71.746667pt;}
.y29_c00193{bottom:74.146667pt;}
.y50_c00193{bottom:88.013333pt;}
.y28_c00193{bottom:90.413333pt;}
.y4f_c00193{bottom:104.146667pt;}
.y27_c00193{bottom:106.280000pt;}
.y4e_c00193{bottom:120.280000pt;}
.y26_c00193{bottom:123.080000pt;}
.y4d_c00193{bottom:136.013333pt;}
.y25_c00193{bottom:139.213333pt;}
.y4c_c00193{bottom:152.413333pt;}
.y24_c00193{bottom:154.813333pt;}
.y4b_c00193{bottom:168.280000pt;}
.y23_c00193{bottom:171.080000pt;}
.y4a_c00193{bottom:184.280000pt;}
.y22_c00193{bottom:187.480000pt;}
.y49_c00193{bottom:200.413333pt;}
.y21_c00193{bottom:203.480000pt;}
.y48_c00193{bottom:216.946667pt;}
.y20_c00193{bottom:219.346667pt;}
.y55_c00193{bottom:231.613333pt;}
.y47_c00193{bottom:232.813333pt;}
.y1f_c00193{bottom:235.480000pt;}
.y54_c00193{bottom:249.080000pt;}
.y46_c00193{bottom:249.346667pt;}
.y1e_c00193{bottom:251.746667pt;}
.y45_c00193{bottom:264.946667pt;}
.y1d_c00193{bottom:267.080000pt;}
.y44_c00193{bottom:280.280000pt;}
.y1c_c00193{bottom:283.213333pt;}
.y43_c00193{bottom:296.813333pt;}
.y1b_c00193{bottom:299.213333pt;}
.y42_c00193{bottom:313.213333pt;}
.y1a_c00193{bottom:316.280000pt;}
.y41_c00193{bottom:328.813333pt;}
.y19_c00193{bottom:331.213333pt;}
.y40_c00193{bottom:343.880000pt;}
.y18_c00193{bottom:347.080000pt;}
.y3f_c00193{bottom:361.213333pt;}
.y17_c00193{bottom:362.813333pt;}
.y3e_c00193{bottom:377.080000pt;}
.y16_c00193{bottom:379.480000pt;}
.y3d_c00193{bottom:392.413333pt;}
.y15_c00193{bottom:395.480000pt;}
.y3c_c00193{bottom:409.213333pt;}
.y14_c00193{bottom:411.080000pt;}
.y3b_c00193{bottom:424.813333pt;}
.y13_c00193{bottom:426.946667pt;}
.y12_c00193{bottom:443.080000pt;}
.y3a_c00193{bottom:443.213333pt;}
.y39_c00193{bottom:456.946667pt;}
.y11_c00193{bottom:459.346667pt;}
.y38_c00193{bottom:474.013333pt;}
.y10_c00193{bottom:476.680000pt;}
.y37_c00193{bottom:488.413333pt;}
.yf_c00193{bottom:492.013333pt;}
.y36_c00193{bottom:504.946667pt;}
.ye_c00193{bottom:506.813333pt;}
.y35_c00193{bottom:521.746667pt;}
.yd_c00193{bottom:523.880000pt;}
.y34_c00193{bottom:537.613333pt;}
.yc_c00193{bottom:540.280000pt;}
.y33_c00193{bottom:553.480000pt;}
.yb_c00193{bottom:555.880000pt;}
.y32_c00193{bottom:570.013333pt;}
.ya_c00193{bottom:571.613333pt;}
.y31_c00193{bottom:585.880000pt;}
.y9_c00193{bottom:587.480000pt;}
.y30_c00193{bottom:601.880000pt;}
.y8_c00193{bottom:603.346667pt;}
.y2f_c00193{bottom:617.746667pt;}
.y7_c00193{bottom:620.413333pt;}
.y2e_c00193{bottom:634.546667pt;}
.y6_c00193{bottom:635.480000pt;}
.y2d_c00193{bottom:649.480000pt;}
.y5_c00193{bottom:651.880000pt;}
.y2c_c00193{bottom:666.280000pt;}
.y4_c00193{bottom:667.613333pt;}
.y2b_c00193{bottom:683.080000pt;}
.y3_c00193{bottom:684.280000pt;}
.y2_c00193{bottom:699.080000pt;}
.y1_c00193{bottom:717.080000pt;}
.h5_c00193{height:11.733399pt;}
.h3_c00193{height:27.010417pt;}
.h6_c00193{height:38.937500pt;}
.h2_c00193{height:55.893333pt;}
.h4_c00193{height:58.688000pt;}
.h1_c00193{height:756.666667pt;}
.h0_c00193{height:756.733333pt;}
.w2_c00193{width:93.222667pt;}
.w1_c00193{width:508.666667pt;}
.w0_c00193{width:508.800000pt;}
.x0_c00193{left:0.000000pt;}
.x6_c00193{left:38.133333pt;}
.x8_c00193{left:40.133333pt;}
.x9_c00193{left:42.000000pt;}
.x3_c00193{left:92.400000pt;}
.x4_c00193{left:93.600000pt;}
.x5_c00193{left:94.533333pt;}
.x1_c00193{left:96.400000pt;}
.x2_c00193{left:97.866667pt;}
.x7_c00193{left:120.533333pt;}
.x13_c00193{left:211.568237pt;}
.xb_c00193{left:284.400000pt;}
.xd_c00193{left:285.866667pt;}
.xc_c00193{left:286.800000pt;}
.xa_c00193{left:287.733333pt;}
.xf_c00193{left:288.933333pt;}
.xe_c00193{left:310.800000pt;}
.x10_c00193{left:425.600000pt;}
.x11_c00193{left:464.400000pt;}
.x12_c00193{left:465.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e2a3d5ea28e5a344c9f17dfa.woff2')format("woff");}.ff1_c00194{font-family:ff1_c00194;line-height:1.437000;font-style:normal;font-weight:normal;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_e0b6f8dca3e83f52ae20b1e2.woff2')format("woff");}.ff2_c00194{font-family:ff2_c00194;line-height:1.437000;font-style:normal;font-weight:normal;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_085947da63c180e7f4ecc9b5.woff2')format("woff");}.ff3_c00194{font-family:ff3_c00194;line-height:1.437000;font-style:normal;font-weight:normal;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_5a957ae5a047a99b41e72471.woff2')format("woff");}.ff4_c00194{font-family:ff4_c00194;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00194;src:url('chunks/assets/font_590ce6aac83848c1027609a8.woff2')format("woff");}.ff5_c00194{font-family:ff5_c00194;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00194;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff6_c00194{font-family:ff6_c00194;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00194{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00194{vertical-align:0.000000px;}
.v1_c00194{vertical-align:97.800000px;}
.ls5_c00194{letter-spacing:0.000000px;}
.ls0_c00194{letter-spacing:3.000000px;}
.ls6_c00194{letter-spacing:6.000000px;}
.ls3_c00194{letter-spacing:18.060000px;}
.ls4_c00194{letter-spacing:25.080000px;}
.ls1_c00194{letter-spacing:34.260000px;}
.ls2_c00194{letter-spacing:46.260000px;}
.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;}
}
.ws4_c00194{word-spacing:-38.961000px;}
.ws3_c00194{word-spacing:-18.060000px;}
.ws2_c00194{word-spacing:-17.340000px;}
.ws0_c00194{word-spacing:-17.160000px;}
.ws1_c00194{word-spacing:-14.160000px;}
.ws5_c00194{word-spacing:-0.183000px;}
.ws6_c00194{word-spacing:0.000000px;}
._24_c00194{margin-left:-23.220000px;}
._28_c00194{margin-left:-13.434000px;}
._1f_c00194{margin-left:-11.721000px;}
._19_c00194{margin-left:-9.624000px;}
._16_c00194{margin-left:-7.956000px;}
._15_c00194{margin-left:-6.867000px;}
._14_c00194{margin-left:-5.052000px;}
._c_c00194{margin-left:-3.720000px;}
._d_c00194{margin-left:-2.700000px;}
._b_c00194{margin-left:-1.368000px;}
._13_c00194{width:1.008000px;}
._8_c00194{width:2.100000px;}
._9_c00194{width:3.888000px;}
._1_c00194{width:5.244000px;}
._0_c00194{width:6.348000px;}
._6_c00194{width:7.440000px;}
._10_c00194{width:9.279000px;}
._3_c00194{width:10.500000px;}
._e_c00194{width:12.240000px;}
._5_c00194{width:13.500000px;}
._12_c00194{width:15.168000px;}
._29_c00194{width:16.212000px;}
._1b_c00194{width:19.116000px;}
._1c_c00194{width:20.340000px;}
._20_c00194{width:21.540000px;}
._4_c00194{width:23.400000px;}
._2_c00194{width:24.981000px;}
._2c_c00194{width:26.172000px;}
._f_c00194{width:27.432000px;}
._1d_c00194{width:29.472000px;}
._11_c00194{width:30.492000px;}
._17_c00194{width:31.692000px;}
._18_c00194{width:34.764000px;}
._22_c00194{width:36.516000px;}
._25_c00194{width:38.952000px;}
._27_c00194{width:40.512000px;}
._26_c00194{width:42.048000px;}
._21_c00194{width:44.688000px;}
._1e_c00194{width:45.864000px;}
._2a_c00194{width:70.296000px;}
._a_c00194{width:82.428000px;}
._1a_c00194{width:107.064000px;}
._2b_c00194{width:124.212000px;}
._23_c00194{width:183.216000px;}
._2d_c00194{width:231.420000px;}
._7_c00194{width:427.140000px;}
.fc2_c00194{color:transparent;}
.fc1_c00194{color:rgb(128,128,128);}
.fc0_c00194{color:rgb(0,0,0);}
.fs5_c00194{font-size:48.000000px;}
.fs1_c00194{font-size:60.000000px;}
.fs4_c00194{font-size:66.000000px;}
.fs0_c00194{font-size:69.000000px;}
.fs2_c00194{font-size:81.000000px;}
.fs3_c00194{font-size:183.000000px;}
.y0_c00194{bottom:0.000000px;}
.y52_c00194{bottom:3.105000px;}
.y51_c00194{bottom:7.228357px;}
.y50_c00194{bottom:49.230000px;}
.y4f_c00194{bottom:66.930000px;}
.y2a_c00194{bottom:68.280000px;}
.y4e_c00194{bottom:84.780000px;}
.y29_c00194{bottom:85.830000px;}
.y4d_c00194{bottom:102.030000px;}
.y28_c00194{bottom:103.980000px;}
.y4c_c00194{bottom:120.930000px;}
.y27_c00194{bottom:122.280000px;}
.y4b_c00194{bottom:138.480000px;}
.y26_c00194{bottom:139.080000px;}
.y4a_c00194{bottom:156.930000px;}
.y25_c00194{bottom:157.680000px;}
.y49_c00194{bottom:173.880000px;}
.y24_c00194{bottom:176.580000px;}
.y48_c00194{bottom:192.480000px;}
.y23_c00194{bottom:194.130000px;}
.y47_c00194{bottom:210.330000px;}
.y22_c00194{bottom:212.280000px;}
.y46_c00194{bottom:228.480000px;}
.y21_c00194{bottom:229.830000px;}
.y45_c00194{bottom:246.030000px;}
.y20_c00194{bottom:247.380000px;}
.y44_c00194{bottom:262.530000px;}
.y1f_c00194{bottom:265.680000px;}
.y43_c00194{bottom:282.480000px;}
.y1e_c00194{bottom:283.830000px;}
.y42_c00194{bottom:299.730000px;}
.y1d_c00194{bottom:301.830000px;}
.y41_c00194{bottom:317.880000px;}
.y1c_c00194{bottom:319.680000px;}
.y40_c00194{bottom:335.880000px;}
.y1b_c00194{bottom:337.830000px;}
.y3f_c00194{bottom:353.730000px;}
.y1a_c00194{bottom:355.680000px;}
.y3e_c00194{bottom:371.880000px;}
.y19_c00194{bottom:373.980000px;}
.y3c_c00194{bottom:382.980000px;}
.y3d_c00194{bottom:389.130000px;}
.y18_c00194{bottom:391.830000px;}
.y17_c00194{bottom:409.380000px;}
.y16_c00194{bottom:427.380000px;}
.y3b_c00194{bottom:444.480000px;}
.y15_c00194{bottom:445.230000px;}
.y3a_c00194{bottom:462.480000px;}
.y14_c00194{bottom:463.380000px;}
.y39_c00194{bottom:480.630000px;}
.y13_c00194{bottom:481.380000px;}
.y38_c00194{bottom:498.780000px;}
.y12_c00194{bottom:498.930000px;}
.y11_c00194{bottom:516.780000px;}
.y37_c00194{bottom:534.330000px;}
.y10_c00194{bottom:534.630000px;}
.yf_c00194{bottom:552.180000px;}
.ye_c00194{bottom:570.330000px;}
.y36_c00194{bottom:570.780000px;}
.yd_c00194{bottom:588.330000px;}
.y35_c00194{bottom:589.230000px;}
.yc_c00194{bottom:605.880000px;}
.y34_c00194{bottom:607.530000px;}
.yb_c00194{bottom:624.030000px;}
.y33_c00194{bottom:625.380000px;}
.ya_c00194{bottom:641.880000px;}
.y32_c00194{bottom:642.930000px;}
.y9_c00194{bottom:659.880000px;}
.y31_c00194{bottom:660.930000px;}
.y8_c00194{bottom:677.730000px;}
.y30_c00194{bottom:678.780000px;}
.y7_c00194{bottom:695.880000px;}
.y2f_c00194{bottom:696.930000px;}
.y6_c00194{bottom:713.880000px;}
.y2e_c00194{bottom:714.480000px;}
.y5_c00194{bottom:731.430000px;}
.y2d_c00194{bottom:732.780000px;}
.y4_c00194{bottom:749.580000px;}
.y2c_c00194{bottom:751.230000px;}
.y3_c00194{bottom:767.580000px;}
.y2b_c00194{bottom:768.780000px;}
.y2_c00194{bottom:786.330000px;}
.y1_c00194{bottom:804.630000px;}
.h7_c00194{height:13.200074px;}
.h8_c00194{height:43.804688px;}
.h3_c00194{height:62.880000px;}
.h6_c00194{height:69.168000px;}
.h2_c00194{height:72.312000px;}
.h4_c00194{height:87.804000px;}
.h5_c00194{height:195.261000px;}
.h0_c00194{height:842.700000px;}
.h1_c00194{height:843.000000px;}
.w1_c00194{width:104.875500px;}
.w0_c00194{width:590.250000px;}
.x0_c00194{left:0.000000px;}
.x6_c00194{left:11.850000px;}
.x5_c00194{left:13.200000px;}
.x9_c00194{left:16.500000px;}
.xa_c00194{left:58.050000px;}
.x8_c00194{left:66.150000px;}
.x4_c00194{left:68.250000px;}
.x7_c00194{left:69.300000px;}
.x2_c00194{left:70.650000px;}
.x3_c00194{left:72.600000px;}
.x1_c00194{left:214.950000px;}
.x17_c00194{left:246.939240px;}
.x14_c00194{left:282.150000px;}
.x15_c00194{left:285.150000px;}
.xe_c00194{left:286.200000px;}
.xd_c00194{left:287.550000px;}
.xc_c00194{left:288.900000px;}
.xb_c00194{left:290.250000px;}
.x10_c00194{left:297.000000px;}
.x13_c00194{left:310.800000px;}
.x11_c00194{left:337.050000px;}
.xf_c00194{left:355.950000px;}
.x12_c00194{left:365.850000px;}
.x16_c00194{left:368.250000px;}
@media print{
.v0_c00194{vertical-align:0.000000pt;}
.v1_c00194{vertical-align:86.933333pt;}
.ls5_c00194{letter-spacing:0.000000pt;}
.ls0_c00194{letter-spacing:2.666667pt;}
.ls6_c00194{letter-spacing:5.333333pt;}
.ls3_c00194{letter-spacing:16.053333pt;}
.ls4_c00194{letter-spacing:22.293333pt;}
.ls1_c00194{letter-spacing:30.453333pt;}
.ls2_c00194{letter-spacing:41.120000pt;}
.ws4_c00194{word-spacing:-34.632000pt;}
.ws3_c00194{word-spacing:-16.053333pt;}
.ws2_c00194{word-spacing:-15.413333pt;}
.ws0_c00194{word-spacing:-15.253333pt;}
.ws1_c00194{word-spacing:-12.586667pt;}
.ws5_c00194{word-spacing:-0.162667pt;}
.ws6_c00194{word-spacing:0.000000pt;}
._24_c00194{margin-left:-20.640000pt;}
._28_c00194{margin-left:-11.941333pt;}
._1f_c00194{margin-left:-10.418667pt;}
._19_c00194{margin-left:-8.554667pt;}
._16_c00194{margin-left:-7.072000pt;}
._15_c00194{margin-left:-6.104000pt;}
._14_c00194{margin-left:-4.490667pt;}
._c_c00194{margin-left:-3.306667pt;}
._d_c00194{margin-left:-2.400000pt;}
._b_c00194{margin-left:-1.216000pt;}
._13_c00194{width:0.896000pt;}
._8_c00194{width:1.866667pt;}
._9_c00194{width:3.456000pt;}
._1_c00194{width:4.661333pt;}
._0_c00194{width:5.642667pt;}
._6_c00194{width:6.613333pt;}
._10_c00194{width:8.248000pt;}
._3_c00194{width:9.333333pt;}
._e_c00194{width:10.880000pt;}
._5_c00194{width:12.000000pt;}
._12_c00194{width:13.482667pt;}
._29_c00194{width:14.410667pt;}
._1b_c00194{width:16.992000pt;}
._1c_c00194{width:18.080000pt;}
._20_c00194{width:19.146667pt;}
._4_c00194{width:20.800000pt;}
._2_c00194{width:22.205333pt;}
._2c_c00194{width:23.264000pt;}
._f_c00194{width:24.384000pt;}
._1d_c00194{width:26.197333pt;}
._11_c00194{width:27.104000pt;}
._17_c00194{width:28.170667pt;}
._18_c00194{width:30.901333pt;}
._22_c00194{width:32.458667pt;}
._25_c00194{width:34.624000pt;}
._27_c00194{width:36.010667pt;}
._26_c00194{width:37.376000pt;}
._21_c00194{width:39.722667pt;}
._1e_c00194{width:40.768000pt;}
._2a_c00194{width:62.485333pt;}
._a_c00194{width:73.269333pt;}
._1a_c00194{width:95.168000pt;}
._2b_c00194{width:110.410667pt;}
._23_c00194{width:162.858667pt;}
._2d_c00194{width:205.706667pt;}
._7_c00194{width:379.680000pt;}
.fs5_c00194{font-size:42.666667pt;}
.fs1_c00194{font-size:53.333333pt;}
.fs4_c00194{font-size:58.666667pt;}
.fs0_c00194{font-size:61.333333pt;}
.fs2_c00194{font-size:72.000000pt;}
.fs3_c00194{font-size:162.666667pt;}
.y0_c00194{bottom:0.000000pt;}
.y52_c00194{bottom:2.760000pt;}
.y51_c00194{bottom:6.425206pt;}
.y50_c00194{bottom:43.760000pt;}
.y4f_c00194{bottom:59.493333pt;}
.y2a_c00194{bottom:60.693333pt;}
.y4e_c00194{bottom:75.360000pt;}
.y29_c00194{bottom:76.293333pt;}
.y4d_c00194{bottom:90.693333pt;}
.y28_c00194{bottom:92.426667pt;}
.y4c_c00194{bottom:107.493333pt;}
.y27_c00194{bottom:108.693333pt;}
.y4b_c00194{bottom:123.093333pt;}
.y26_c00194{bottom:123.626667pt;}
.y4a_c00194{bottom:139.493333pt;}
.y25_c00194{bottom:140.160000pt;}
.y49_c00194{bottom:154.560000pt;}
.y24_c00194{bottom:156.960000pt;}
.y48_c00194{bottom:171.093333pt;}
.y23_c00194{bottom:172.560000pt;}
.y47_c00194{bottom:186.960000pt;}
.y22_c00194{bottom:188.693333pt;}
.y46_c00194{bottom:203.093333pt;}
.y21_c00194{bottom:204.293333pt;}
.y45_c00194{bottom:218.693333pt;}
.y20_c00194{bottom:219.893333pt;}
.y44_c00194{bottom:233.360000pt;}
.y1f_c00194{bottom:236.160000pt;}
.y43_c00194{bottom:251.093333pt;}
.y1e_c00194{bottom:252.293333pt;}
.y42_c00194{bottom:266.426667pt;}
.y1d_c00194{bottom:268.293333pt;}
.y41_c00194{bottom:282.560000pt;}
.y1c_c00194{bottom:284.160000pt;}
.y40_c00194{bottom:298.560000pt;}
.y1b_c00194{bottom:300.293333pt;}
.y3f_c00194{bottom:314.426667pt;}
.y1a_c00194{bottom:316.160000pt;}
.y3e_c00194{bottom:330.560000pt;}
.y19_c00194{bottom:332.426667pt;}
.y3c_c00194{bottom:340.426667pt;}
.y3d_c00194{bottom:345.893333pt;}
.y18_c00194{bottom:348.293333pt;}
.y17_c00194{bottom:363.893333pt;}
.y16_c00194{bottom:379.893333pt;}
.y3b_c00194{bottom:395.093333pt;}
.y15_c00194{bottom:395.760000pt;}
.y3a_c00194{bottom:411.093333pt;}
.y14_c00194{bottom:411.893333pt;}
.y39_c00194{bottom:427.226667pt;}
.y13_c00194{bottom:427.893333pt;}
.y38_c00194{bottom:443.360000pt;}
.y12_c00194{bottom:443.493333pt;}
.y11_c00194{bottom:459.360000pt;}
.y37_c00194{bottom:474.960000pt;}
.y10_c00194{bottom:475.226667pt;}
.yf_c00194{bottom:490.826667pt;}
.ye_c00194{bottom:506.960000pt;}
.y36_c00194{bottom:507.360000pt;}
.yd_c00194{bottom:522.960000pt;}
.y35_c00194{bottom:523.760000pt;}
.yc_c00194{bottom:538.560000pt;}
.y34_c00194{bottom:540.026667pt;}
.yb_c00194{bottom:554.693333pt;}
.y33_c00194{bottom:555.893333pt;}
.ya_c00194{bottom:570.560000pt;}
.y32_c00194{bottom:571.493333pt;}
.y9_c00194{bottom:586.560000pt;}
.y31_c00194{bottom:587.493333pt;}
.y8_c00194{bottom:602.426667pt;}
.y30_c00194{bottom:603.360000pt;}
.y7_c00194{bottom:618.560000pt;}
.y2f_c00194{bottom:619.493333pt;}
.y6_c00194{bottom:634.560000pt;}
.y2e_c00194{bottom:635.093333pt;}
.y5_c00194{bottom:650.160000pt;}
.y2d_c00194{bottom:651.360000pt;}
.y4_c00194{bottom:666.293333pt;}
.y2c_c00194{bottom:667.760000pt;}
.y3_c00194{bottom:682.293333pt;}
.y2b_c00194{bottom:683.360000pt;}
.y2_c00194{bottom:698.960000pt;}
.y1_c00194{bottom:715.226667pt;}
.h7_c00194{height:11.733399pt;}
.h8_c00194{height:38.937500pt;}
.h3_c00194{height:55.893333pt;}
.h6_c00194{height:61.482667pt;}
.h2_c00194{height:64.277333pt;}
.h4_c00194{height:78.048000pt;}
.h5_c00194{height:173.565333pt;}
.h0_c00194{height:749.066667pt;}
.h1_c00194{height:749.333333pt;}
.w1_c00194{width:93.222667pt;}
.w0_c00194{width:524.666667pt;}
.x0_c00194{left:0.000000pt;}
.x6_c00194{left:10.533333pt;}
.x5_c00194{left:11.733333pt;}
.x9_c00194{left:14.666667pt;}
.xa_c00194{left:51.600000pt;}
.x8_c00194{left:58.800000pt;}
.x4_c00194{left:60.666667pt;}
.x7_c00194{left:61.600000pt;}
.x2_c00194{left:62.800000pt;}
.x3_c00194{left:64.533333pt;}
.x1_c00194{left:191.066667pt;}
.x17_c00194{left:219.501546pt;}
.x14_c00194{left:250.800000pt;}
.x15_c00194{left:253.466667pt;}
.xe_c00194{left:254.400000pt;}
.xd_c00194{left:255.600000pt;}
.xc_c00194{left:256.800000pt;}
.xb_c00194{left:258.000000pt;}
.x10_c00194{left:264.000000pt;}
.x13_c00194{left:276.266667pt;}
.x11_c00194{left:299.600000pt;}
.xf_c00194{left:316.400000pt;}
.x12_c00194{left:325.200000pt;}
.x16_c00194{left:327.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3b811dbeeac9d0d8fa892cee.woff2')format("woff");}.ff1_c00195{font-family:ff1_c00195;line-height:1.437000;font-style:normal;font-weight:normal;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_42a55a0320d3d5be7d6625b6.woff2')format("woff");}.ff2_c00195{font-family:ff2_c00195;line-height:1.437000;font-style:normal;font-weight:normal;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_b4d71248e4a388a6439817a4.woff2')format("woff");}.ff3_c00195{font-family:ff3_c00195;line-height:1.437000;font-style:normal;font-weight:normal;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_3303148b0f1d4fba193118df.woff2')format("woff");}.ff4_c00195{font-family:ff4_c00195;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00195;src:url('chunks/assets/font_971a50b02440aab9365a083d.woff2')format("woff");}.ff5_c00195{font-family:ff5_c00195;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00195;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff6_c00195{font-family:ff6_c00195;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00195{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00195{vertical-align:0.000000px;}
.ls7_c00195{letter-spacing:0.000000px;}
.ls2_c00195{letter-spacing:0.180000px;}
.ls0_c00195{letter-spacing:3.000000px;}
.ls1_c00195{letter-spacing:4.200000px;}
.ls4_c00195{letter-spacing:11.340000px;}
.ls3_c00195{letter-spacing:12.000000px;}
.ls5_c00195{letter-spacing:23.940000px;}
.ls6_c00195{letter-spacing:28.140000px;}
.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:-18.060000px;}
.ws2_c00195{word-spacing:-17.340000px;}
.ws1_c00195{word-spacing:-14.160000px;}
.ws3_c00195{word-spacing:-13.905000px;}
.ws4_c00195{word-spacing:0.000000px;}
._1f_c00195{margin-left:-19.260000px;}
._24_c00195{margin-left:-16.080000px;}
._1a_c00195{margin-left:-12.720000px;}
._16_c00195{margin-left:-11.160000px;}
._9_c00195{margin-left:-10.020000px;}
._28_c00195{margin-left:-8.640000px;}
._8_c00195{margin-left:-7.620000px;}
._7_c00195{margin-left:-6.180000px;}
._e_c00195{margin-left:-4.920000px;}
._6_c00195{margin-left:-2.940000px;}
._4_c00195{margin-left:-1.740000px;}
._1_c00195{width:1.320000px;}
._0_c00195{width:2.520000px;}
._18_c00195{width:3.540000px;}
._2_c00195{width:4.620000px;}
._3_c00195{width:6.540000px;}
._b_c00195{width:8.400000px;}
._15_c00195{width:9.420000px;}
._12_c00195{width:10.680000px;}
._10_c00195{width:12.120000px;}
._1d_c00195{width:13.140000px;}
._5_c00195{width:14.400000px;}
._17_c00195{width:15.780000px;}
._1c_c00195{width:17.040000px;}
._20_c00195{width:18.600000px;}
._c_c00195{width:19.800000px;}
._d_c00195{width:21.600000px;}
._27_c00195{width:22.740000px;}
._11_c00195{width:24.000000px;}
._f_c00195{width:25.860000px;}
._29_c00195{width:27.540000px;}
._23_c00195{width:28.980000px;}
._21_c00195{width:30.540000px;}
._22_c00195{width:31.740000px;}
._a_c00195{width:32.880000px;}
._14_c00195{width:35.820000px;}
._26_c00195{width:36.900000px;}
._13_c00195{width:39.420000px;}
._25_c00195{width:43.740000px;}
._1e_c00195{width:46.620000px;}
._2b_c00195{width:59.280000px;}
._19_c00195{width:84.840000px;}
._2a_c00195{width:122.820000px;}
._1b_c00195{width:212.940000px;}
.fc2_c00195{color:transparent;}
.fc1_c00195{color:rgb(128,128,128);}
.fc0_c00195{color:rgb(0,0,0);}
.fs1_c00195{font-size:45.000000px;}
.fs3_c00195{font-size:48.000000px;}
.fs0_c00195{font-size:60.000000px;}
.fs2_c00195{font-size:69.000000px;}
.y0_c00195{bottom:0.000000px;}
.y50_c00195{bottom:3.105000px;}
.y4f_c00195{bottom:7.228369px;}
.y4e_c00195{bottom:62.670000px;}
.y4d_c00195{bottom:82.320000px;}
.y28_c00195{bottom:84.720000px;}
.y4c_c00195{bottom:99.870000px;}
.y27_c00195{bottom:103.620000px;}
.y4b_c00195{bottom:118.770000px;}
.y26_c00195{bottom:120.870000px;}
.y4a_c00195{bottom:136.920000px;}
.y25_c00195{bottom:139.470000px;}
.y49_c00195{bottom:153.870000px;}
.y24_c00195{bottom:157.620000px;}
.y48_c00195{bottom:172.170000px;}
.y23_c00195{bottom:175.770000px;}
.y47_c00195{bottom:190.920000px;}
.y22_c00195{bottom:193.620000px;}
.y46_c00195{bottom:209.520000px;}
.y21_c00195{bottom:211.920000px;}
.y45_c00195{bottom:225.420000px;}
.y20_c00195{bottom:230.220000px;}
.y44_c00195{bottom:243.720000px;}
.y1f_c00195{bottom:248.070000px;}
.y43_c00195{bottom:263.520000px;}
.y1e_c00195{bottom:265.920000px;}
.y42_c00195{bottom:281.370000px;}
.y1d_c00195{bottom:284.070000px;}
.y41_c00195{bottom:298.020000px;}
.y1c_c00195{bottom:301.770000px;}
.y40_c00195{bottom:318.270000px;}
.y1b_c00195{bottom:319.620000px;}
.y3f_c00195{bottom:335.820000px;}
.y1a_c00195{bottom:337.770000px;}
.y3e_c00195{bottom:353.970000px;}
.y19_c00195{bottom:356.070000px;}
.y3d_c00195{bottom:370.470000px;}
.y18_c00195{bottom:373.920000px;}
.y3c_c00195{bottom:389.820000px;}
.y17_c00195{bottom:391.170000px;}
.y3b_c00195{bottom:408.270000px;}
.y16_c00195{bottom:409.620000px;}
.y3a_c00195{bottom:425.970000px;}
.y15_c00195{bottom:429.270000px;}
.y39_c00195{bottom:443.820000px;}
.y14_c00195{bottom:446.820000px;}
.y38_c00195{bottom:461.970000px;}
.y13_c00195{bottom:463.020000px;}
.y37_c00195{bottom:480.270000px;}
.y12_c00195{bottom:480.870000px;}
.y36_c00195{bottom:498.870000px;}
.y11_c00195{bottom:499.170000px;}
.y10_c00195{bottom:517.020000px;}
.y35_c00195{bottom:534.570000px;}
.yf_c00195{bottom:535.320000px;}
.y34_c00195{bottom:552.870000px;}
.ye_c00195{bottom:554.070000px;}
.y33_c00195{bottom:571.320000px;}
.yd_c00195{bottom:572.370000px;}
.y32_c00195{bottom:589.170000px;}
.yc_c00195{bottom:590.520000px;}
.y31_c00195{bottom:607.470000px;}
.yb_c00195{bottom:609.570000px;}
.y30_c00195{bottom:625.770000px;}
.ya_c00195{bottom:626.970000px;}
.y2f_c00195{bottom:643.920000px;}
.y9_c00195{bottom:644.520000px;}
.y8_c00195{bottom:662.220000px;}
.y2e_c00195{bottom:680.670000px;}
.y7_c00195{bottom:681.420000px;}
.y2d_c00195{bottom:697.620000px;}
.y6_c00195{bottom:699.870000px;}
.y2c_c00195{bottom:716.220000px;}
.y5_c00195{bottom:717.420000px;}
.y4_c00195{bottom:735.120000px;}
.y3_c00195{bottom:753.270000px;}
.y2b_c00195{bottom:770.070000px;}
.y2_c00195{bottom:771.570000px;}
.y1_c00195{bottom:789.420000px;}
.y2a_c00195{bottom:790.320000px;}
.y29_c00195{bottom:811.620000px;}
.h5_c00195{height:13.200073px;}
.h6_c00195{height:43.804688px;}
.h2_c00195{height:62.880000px;}
.h3_c00195{height:64.020000px;}
.h4_c00195{height:72.312000px;}
.h1_c00195{height:846.000000px;}
.h0_c00195{height:846.150000px;}
.w2_c00195{width:104.875500px;}
.w1_c00195{width:568.500000px;}
.w0_c00195{width:568.650000px;}
.x0_c00195{left:0.000000px;}
.x5_c00195{left:32.100000px;}
.x6_c00195{left:93.600000px;}
.x4_c00195{left:94.800000px;}
.x3_c00195{left:95.850000px;}
.x2_c00195{left:96.900000px;}
.x1_c00195{left:98.550000px;}
.xe_c00195{left:236.139267px;}
.x7_c00195{left:307.800000px;}
.xb_c00195{left:310.200000px;}
.xa_c00195{left:311.550000px;}
.x9_c00195{left:312.900000px;}
.x8_c00195{left:313.950000px;}
.xc_c00195{left:329.850000px;}
.xd_c00195{left:480.000000px;}
@media print{
.v0_c00195{vertical-align:0.000000pt;}
.ls7_c00195{letter-spacing:0.000000pt;}
.ls2_c00195{letter-spacing:0.160000pt;}
.ls0_c00195{letter-spacing:2.666667pt;}
.ls1_c00195{letter-spacing:3.733333pt;}
.ls4_c00195{letter-spacing:10.080000pt;}
.ls3_c00195{letter-spacing:10.666667pt;}
.ls5_c00195{letter-spacing:21.280000pt;}
.ls6_c00195{letter-spacing:25.013333pt;}
.ws0_c00195{word-spacing:-16.053333pt;}
.ws2_c00195{word-spacing:-15.413333pt;}
.ws1_c00195{word-spacing:-12.586667pt;}
.ws3_c00195{word-spacing:-12.360000pt;}
.ws4_c00195{word-spacing:0.000000pt;}
._1f_c00195{margin-left:-17.120000pt;}
._24_c00195{margin-left:-14.293333pt;}
._1a_c00195{margin-left:-11.306667pt;}
._16_c00195{margin-left:-9.920000pt;}
._9_c00195{margin-left:-8.906667pt;}
._28_c00195{margin-left:-7.680000pt;}
._8_c00195{margin-left:-6.773333pt;}
._7_c00195{margin-left:-5.493333pt;}
._e_c00195{margin-left:-4.373333pt;}
._6_c00195{margin-left:-2.613333pt;}
._4_c00195{margin-left:-1.546667pt;}
._1_c00195{width:1.173333pt;}
._0_c00195{width:2.240000pt;}
._18_c00195{width:3.146667pt;}
._2_c00195{width:4.106667pt;}
._3_c00195{width:5.813333pt;}
._b_c00195{width:7.466667pt;}
._15_c00195{width:8.373333pt;}
._12_c00195{width:9.493333pt;}
._10_c00195{width:10.773333pt;}
._1d_c00195{width:11.680000pt;}
._5_c00195{width:12.800000pt;}
._17_c00195{width:14.026667pt;}
._1c_c00195{width:15.146667pt;}
._20_c00195{width:16.533333pt;}
._c_c00195{width:17.600000pt;}
._d_c00195{width:19.200000pt;}
._27_c00195{width:20.213333pt;}
._11_c00195{width:21.333333pt;}
._f_c00195{width:22.986667pt;}
._29_c00195{width:24.480000pt;}
._23_c00195{width:25.760000pt;}
._21_c00195{width:27.146667pt;}
._22_c00195{width:28.213333pt;}
._a_c00195{width:29.226667pt;}
._14_c00195{width:31.840000pt;}
._26_c00195{width:32.800000pt;}
._13_c00195{width:35.040000pt;}
._25_c00195{width:38.880000pt;}
._1e_c00195{width:41.440000pt;}
._2b_c00195{width:52.693333pt;}
._19_c00195{width:75.413333pt;}
._2a_c00195{width:109.173333pt;}
._1b_c00195{width:189.280000pt;}
.fs1_c00195{font-size:40.000000pt;}
.fs3_c00195{font-size:42.666667pt;}
.fs0_c00195{font-size:53.333333pt;}
.fs2_c00195{font-size:61.333333pt;}
.y0_c00195{bottom:0.000000pt;}
.y50_c00195{bottom:2.760000pt;}
.y4f_c00195{bottom:6.425217pt;}
.y4e_c00195{bottom:55.706667pt;}
.y4d_c00195{bottom:73.173333pt;}
.y28_c00195{bottom:75.306667pt;}
.y4c_c00195{bottom:88.773333pt;}
.y27_c00195{bottom:92.106667pt;}
.y4b_c00195{bottom:105.573333pt;}
.y26_c00195{bottom:107.440000pt;}
.y4a_c00195{bottom:121.706667pt;}
.y25_c00195{bottom:123.973333pt;}
.y49_c00195{bottom:136.773333pt;}
.y24_c00195{bottom:140.106667pt;}
.y48_c00195{bottom:153.040000pt;}
.y23_c00195{bottom:156.240000pt;}
.y47_c00195{bottom:169.706667pt;}
.y22_c00195{bottom:172.106667pt;}
.y46_c00195{bottom:186.240000pt;}
.y21_c00195{bottom:188.373333pt;}
.y45_c00195{bottom:200.373333pt;}
.y20_c00195{bottom:204.640000pt;}
.y44_c00195{bottom:216.640000pt;}
.y1f_c00195{bottom:220.506667pt;}
.y43_c00195{bottom:234.240000pt;}
.y1e_c00195{bottom:236.373333pt;}
.y42_c00195{bottom:250.106667pt;}
.y1d_c00195{bottom:252.506667pt;}
.y41_c00195{bottom:264.906667pt;}
.y1c_c00195{bottom:268.240000pt;}
.y40_c00195{bottom:282.906667pt;}
.y1b_c00195{bottom:284.106667pt;}
.y3f_c00195{bottom:298.506667pt;}
.y1a_c00195{bottom:300.240000pt;}
.y3e_c00195{bottom:314.640000pt;}
.y19_c00195{bottom:316.506667pt;}
.y3d_c00195{bottom:329.306667pt;}
.y18_c00195{bottom:332.373333pt;}
.y3c_c00195{bottom:346.506667pt;}
.y17_c00195{bottom:347.706667pt;}
.y3b_c00195{bottom:362.906667pt;}
.y16_c00195{bottom:364.106667pt;}
.y3a_c00195{bottom:378.640000pt;}
.y15_c00195{bottom:381.573333pt;}
.y39_c00195{bottom:394.506667pt;}
.y14_c00195{bottom:397.173333pt;}
.y38_c00195{bottom:410.640000pt;}
.y13_c00195{bottom:411.573333pt;}
.y37_c00195{bottom:426.906667pt;}
.y12_c00195{bottom:427.440000pt;}
.y36_c00195{bottom:443.440000pt;}
.y11_c00195{bottom:443.706667pt;}
.y10_c00195{bottom:459.573333pt;}
.y35_c00195{bottom:475.173333pt;}
.yf_c00195{bottom:475.840000pt;}
.y34_c00195{bottom:491.440000pt;}
.ye_c00195{bottom:492.506667pt;}
.y33_c00195{bottom:507.840000pt;}
.yd_c00195{bottom:508.773333pt;}
.y32_c00195{bottom:523.706667pt;}
.yc_c00195{bottom:524.906667pt;}
.y31_c00195{bottom:539.973333pt;}
.yb_c00195{bottom:541.840000pt;}
.y30_c00195{bottom:556.240000pt;}
.ya_c00195{bottom:557.306667pt;}
.y2f_c00195{bottom:572.373333pt;}
.y9_c00195{bottom:572.906667pt;}
.y8_c00195{bottom:588.640000pt;}
.y2e_c00195{bottom:605.040000pt;}
.y7_c00195{bottom:605.706667pt;}
.y2d_c00195{bottom:620.106667pt;}
.y6_c00195{bottom:622.106667pt;}
.y2c_c00195{bottom:636.640000pt;}
.y5_c00195{bottom:637.706667pt;}
.y4_c00195{bottom:653.440000pt;}
.y3_c00195{bottom:669.573333pt;}
.y2b_c00195{bottom:684.506667pt;}
.y2_c00195{bottom:685.840000pt;}
.y1_c00195{bottom:701.706667pt;}
.y2a_c00195{bottom:702.506667pt;}
.y29_c00195{bottom:721.440000pt;}
.h5_c00195{height:11.733399pt;}
.h6_c00195{height:38.937500pt;}
.h2_c00195{height:55.893333pt;}
.h3_c00195{height:56.906667pt;}
.h4_c00195{height:64.277333pt;}
.h1_c00195{height:752.000000pt;}
.h0_c00195{height:752.133333pt;}
.w2_c00195{width:93.222667pt;}
.w1_c00195{width:505.333333pt;}
.w0_c00195{width:505.466667pt;}
.x0_c00195{left:0.000000pt;}
.x5_c00195{left:28.533333pt;}
.x6_c00195{left:83.200000pt;}
.x4_c00195{left:84.266667pt;}
.x3_c00195{left:85.200000pt;}
.x2_c00195{left:86.133333pt;}
.x1_c00195{left:87.600000pt;}
.xe_c00195{left:209.901571pt;}
.x7_c00195{left:273.600000pt;}
.xb_c00195{left:275.733333pt;}
.xa_c00195{left:276.933333pt;}
.x9_c00195{left:278.133333pt;}
.x8_c00195{left:279.066667pt;}
.xc_c00195{left:293.200000pt;}
.xd_c00195{left:426.666667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3d01fc583efe997748885aa0.woff2')format("woff");}.ff1_c00196{font-family:ff1_c00196;line-height:1.437000;font-style:normal;font-weight:normal;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_0ce391de997f24f9f9dd37f4.woff2')format("woff");}.ff2_c00196{font-family:ff2_c00196;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00196;src:url('chunks/assets/font_e8470c3eb7403d6685f0613c.woff2')format("woff");}.ff3_c00196{font-family:ff3_c00196;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00196;src:url('chunks/assets/font_d9d073f8326d60ecb603c7b5.woff2')format("woff");}.ff4_c00196{font-family:ff4_c00196;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00196;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff5_c00196{font-family:ff5_c00196;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00196{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00196{vertical-align:0.000000px;}
.ls6_c00196{letter-spacing:-3.000000px;}
.ls4_c00196{letter-spacing:0.000000px;}
.ls1_c00196{letter-spacing:0.405000px;}
.ls5_c00196{letter-spacing:3.000000px;}
.ls3_c00196{letter-spacing:3.480000px;}
.ls2_c00196{letter-spacing:4.800000px;}
.ls0_c00196{letter-spacing:17.340000px;}
.sc__c00196{text-shadow:none;}
.sc0_c00196{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00196{-webkit-text-stroke:0px transparent;}
.sc0_c00196{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00196{word-spacing:-14.160000px;}
.ws1_c00196{word-spacing:0.000000px;}
._1c_c00196{margin-left:-17.460000px;}
._1d_c00196{margin-left:-12.420000px;}
._1e_c00196{margin-left:-10.140000px;}
._19_c00196{margin-left:-8.520000px;}
._6_c00196{margin-left:-6.360000px;}
._18_c00196{margin-left:-5.280000px;}
._9_c00196{margin-left:-3.360000px;}
._0_c00196{margin-left:-1.980000px;}
._c_c00196{width:1.260000px;}
._5_c00196{width:2.460000px;}
._2_c00196{width:4.200000px;}
._1_c00196{width:5.580000px;}
._17_c00196{width:7.200000px;}
._b_c00196{width:8.460000px;}
._14_c00196{width:9.660000px;}
._13_c00196{width:10.680000px;}
._3_c00196{width:11.940000px;}
._12_c00196{width:13.260000px;}
._23_c00196{width:14.280000px;}
._7_c00196{width:15.660000px;}
._8_c00196{width:16.680000px;}
._d_c00196{width:19.740000px;}
._11_c00196{width:21.360000px;}
._16_c00196{width:22.980000px;}
._e_c00196{width:24.240000px;}
._4_c00196{width:26.040000px;}
._f_c00196{width:27.180000px;}
._15_c00196{width:29.040000px;}
._a_c00196{width:30.960000px;}
._22_c00196{width:31.980000px;}
._1f_c00196{width:33.300000px;}
._1a_c00196{width:34.440000px;}
._1b_c00196{width:35.700000px;}
._10_c00196{width:36.780000px;}
._25_c00196{width:37.920000px;}
._20_c00196{width:39.060000px;}
._24_c00196{width:40.200000px;}
._21_c00196{width:53.100000px;}
._26_c00196{width:301.680000px;}
.fc2_c00196{color:transparent;}
.fc1_c00196{color:rgb(128,128,128);}
.fc0_c00196{color:rgb(0,0,0);}
.fs1_c00196{font-size:45.000000px;}
.fs3_c00196{font-size:48.000000px;}
.fs0_c00196{font-size:60.000000px;}
.fs2_c00196{font-size:72.000000px;}
.y0_c00196{bottom:0.000000px;}
.y53_c00196{bottom:3.105000px;}
.y52_c00196{bottom:7.228357px;}
.y51_c00196{bottom:38.880000px;}
.y50_c00196{bottom:58.680000px;}
.y29_c00196{bottom:63.480000px;}
.y4f_c00196{bottom:77.730000px;}
.y28_c00196{bottom:81.330000px;}
.y4e_c00196{bottom:95.580000px;}
.y27_c00196{bottom:99.630000px;}
.y4d_c00196{bottom:114.180000px;}
.y26_c00196{bottom:117.780000px;}
.y4c_c00196{bottom:131.730000px;}
.y25_c00196{bottom:135.630000px;}
.y4b_c00196{bottom:149.580000px;}
.y24_c00196{bottom:152.580000px;}
.y4a_c00196{bottom:168.180000px;}
.y23_c00196{bottom:171.780000px;}
.y49_c00196{bottom:185.730000px;}
.y22_c00196{bottom:189.780000px;}
.y48_c00196{bottom:204.630000px;}
.y21_c00196{bottom:207.930000px;}
.y47_c00196{bottom:221.430000px;}
.y20_c00196{bottom:224.880000px;}
.y46_c00196{bottom:239.580000px;}
.y1f_c00196{bottom:243.330000px;}
.y45_c00196{bottom:258.480000px;}
.y1e_c00196{bottom:261.930000px;}
.y44_c00196{bottom:276.030000px;}
.y1d_c00196{bottom:280.080000px;}
.y43_c00196{bottom:294.930000px;}
.y1c_c00196{bottom:297.780000px;}
.y42_c00196{bottom:312.930000px;}
.y1b_c00196{bottom:315.630000px;}
.y41_c00196{bottom:331.530000px;}
.y1a_c00196{bottom:333.180000px;}
.y40_c00196{bottom:348.930000px;}
.y19_c00196{bottom:351.630000px;}
.y3f_c00196{bottom:366.630000px;}
.y18_c00196{bottom:369.330000px;}
.y3e_c00196{bottom:385.380000px;}
.y17_c00196{bottom:388.080000px;}
.y3d_c00196{bottom:403.680000px;}
.y16_c00196{bottom:406.080000px;}
.y3c_c00196{bottom:421.830000px;}
.y15_c00196{bottom:424.230000px;}
.y3b_c00196{bottom:438.480000px;}
.y14_c00196{bottom:441.780000px;}
.y3a_c00196{bottom:457.080000px;}
.y13_c00196{bottom:459.780000px;}
.y39_c00196{bottom:475.530000px;}
.y12_c00196{bottom:477.330000px;}
.y38_c00196{bottom:493.080000px;}
.y11_c00196{bottom:494.730000px;}
.y37_c00196{bottom:511.380000px;}
.y10_c00196{bottom:513.030000px;}
.y36_c00196{bottom:529.530000px;}
.yf_c00196{bottom:530.880000px;}
.y35_c00196{bottom:547.830000px;}
.ye_c00196{bottom:548.880000px;}
.y34_c00196{bottom:565.380000px;}
.yd_c00196{bottom:567.030000px;}
.y33_c00196{bottom:583.830000px;}
.yc_c00196{bottom:584.880000px;}
.y32_c00196{bottom:602.430000px;}
.yb_c00196{bottom:603.180000px;}
.y31_c00196{bottom:620.430000px;}
.ya_c00196{bottom:622.080000px;}
.y30_c00196{bottom:638.280000px;}
.y9_c00196{bottom:639.180000px;}
.y2f_c00196{bottom:656.730000px;}
.y8_c00196{bottom:657.480000px;}
.y2e_c00196{bottom:674.730000px;}
.y7_c00196{bottom:675.630000px;}
.y2d_c00196{bottom:692.580000px;}
.y6_c00196{bottom:693.330000px;}
.y5_c00196{bottom:711.180000px;}
.y2c_c00196{bottom:729.630000px;}
.y4_c00196{bottom:729.780000px;}
.y2b_c00196{bottom:747.180000px;}
.y3_c00196{bottom:747.330000px;}
.y2a_c00196{bottom:765.780000px;}
.y2_c00196{bottom:766.080000px;}
.y1_c00196{bottom:783.780000px;}
.h5_c00196{height:13.200074px;}
.h6_c00196{height:43.804688px;}
.h2_c00196{height:62.880000px;}
.h3_c00196{height:64.020000px;}
.h4_c00196{height:75.456000px;}
.h0_c00196{height:842.700000px;}
.h1_c00196{height:843.000000px;}
.w1_c00196{width:104.875500px;}
.w0_c00196{width:590.250000px;}
.x0_c00196{left:0.000000px;}
.x3_c00196{left:62.400000px;}
.x1_c00196{left:65.850000px;}
.x2_c00196{left:69.750000px;}
.x4_c00196{left:71.250000px;}
.x5_c00196{left:72.900000px;}
.x6_c00196{left:74.250000px;}
.x7_c00196{left:75.300000px;}
.x8_c00196{left:76.500000px;}
.xe_c00196{left:246.939240px;}
.x9_c00196{left:278.100000px;}
.xa_c00196{left:288.600000px;}
.xb_c00196{left:289.950000px;}
.xc_c00196{left:291.300000px;}
.xd_c00196{left:478.200000px;}
@media print{
.v0_c00196{vertical-align:0.000000pt;}
.ls6_c00196{letter-spacing:-2.666667pt;}
.ls4_c00196{letter-spacing:0.000000pt;}
.ls1_c00196{letter-spacing:0.360000pt;}
.ls5_c00196{letter-spacing:2.666667pt;}
.ls3_c00196{letter-spacing:3.093333pt;}
.ls2_c00196{letter-spacing:4.266667pt;}
.ls0_c00196{letter-spacing:15.413333pt;}
.ws0_c00196{word-spacing:-12.586667pt;}
.ws1_c00196{word-spacing:0.000000pt;}
._1c_c00196{margin-left:-15.520000pt;}
._1d_c00196{margin-left:-11.040000pt;}
._1e_c00196{margin-left:-9.013333pt;}
._19_c00196{margin-left:-7.573333pt;}
._6_c00196{margin-left:-5.653333pt;}
._18_c00196{margin-left:-4.693333pt;}
._9_c00196{margin-left:-2.986667pt;}
._0_c00196{margin-left:-1.760000pt;}
._c_c00196{width:1.120000pt;}
._5_c00196{width:2.186667pt;}
._2_c00196{width:3.733333pt;}
._1_c00196{width:4.960000pt;}
._17_c00196{width:6.400000pt;}
._b_c00196{width:7.520000pt;}
._14_c00196{width:8.586667pt;}
._13_c00196{width:9.493333pt;}
._3_c00196{width:10.613333pt;}
._12_c00196{width:11.786667pt;}
._23_c00196{width:12.693333pt;}
._7_c00196{width:13.920000pt;}
._8_c00196{width:14.826667pt;}
._d_c00196{width:17.546667pt;}
._11_c00196{width:18.986667pt;}
._16_c00196{width:20.426667pt;}
._e_c00196{width:21.546667pt;}
._4_c00196{width:23.146667pt;}
._f_c00196{width:24.160000pt;}
._15_c00196{width:25.813333pt;}
._a_c00196{width:27.520000pt;}
._22_c00196{width:28.426667pt;}
._1f_c00196{width:29.600000pt;}
._1a_c00196{width:30.613333pt;}
._1b_c00196{width:31.733333pt;}
._10_c00196{width:32.693333pt;}
._25_c00196{width:33.706667pt;}
._20_c00196{width:34.720000pt;}
._24_c00196{width:35.733333pt;}
._21_c00196{width:47.200000pt;}
._26_c00196{width:268.160000pt;}
.fs1_c00196{font-size:40.000000pt;}
.fs3_c00196{font-size:42.666667pt;}
.fs0_c00196{font-size:53.333333pt;}
.fs2_c00196{font-size:64.000000pt;}
.y0_c00196{bottom:0.000000pt;}
.y53_c00196{bottom:2.760000pt;}
.y52_c00196{bottom:6.425206pt;}
.y51_c00196{bottom:34.560000pt;}
.y50_c00196{bottom:52.160000pt;}
.y29_c00196{bottom:56.426667pt;}
.y4f_c00196{bottom:69.093333pt;}
.y28_c00196{bottom:72.293333pt;}
.y4e_c00196{bottom:84.960000pt;}
.y27_c00196{bottom:88.560000pt;}
.y4d_c00196{bottom:101.493333pt;}
.y26_c00196{bottom:104.693333pt;}
.y4c_c00196{bottom:117.093333pt;}
.y25_c00196{bottom:120.560000pt;}
.y4b_c00196{bottom:132.960000pt;}
.y24_c00196{bottom:135.626667pt;}
.y4a_c00196{bottom:149.493333pt;}
.y23_c00196{bottom:152.693333pt;}
.y49_c00196{bottom:165.093333pt;}
.y22_c00196{bottom:168.693333pt;}
.y48_c00196{bottom:181.893333pt;}
.y21_c00196{bottom:184.826667pt;}
.y47_c00196{bottom:196.826667pt;}
.y20_c00196{bottom:199.893333pt;}
.y46_c00196{bottom:212.960000pt;}
.y1f_c00196{bottom:216.293333pt;}
.y45_c00196{bottom:229.760000pt;}
.y1e_c00196{bottom:232.826667pt;}
.y44_c00196{bottom:245.360000pt;}
.y1d_c00196{bottom:248.960000pt;}
.y43_c00196{bottom:262.160000pt;}
.y1c_c00196{bottom:264.693333pt;}
.y42_c00196{bottom:278.160000pt;}
.y1b_c00196{bottom:280.560000pt;}
.y41_c00196{bottom:294.693333pt;}
.y1a_c00196{bottom:296.160000pt;}
.y40_c00196{bottom:310.160000pt;}
.y19_c00196{bottom:312.560000pt;}
.y3f_c00196{bottom:325.893333pt;}
.y18_c00196{bottom:328.293333pt;}
.y3e_c00196{bottom:342.560000pt;}
.y17_c00196{bottom:344.960000pt;}
.y3d_c00196{bottom:358.826667pt;}
.y16_c00196{bottom:360.960000pt;}
.y3c_c00196{bottom:374.960000pt;}
.y15_c00196{bottom:377.093333pt;}
.y3b_c00196{bottom:389.760000pt;}
.y14_c00196{bottom:392.693333pt;}
.y3a_c00196{bottom:406.293333pt;}
.y13_c00196{bottom:408.693333pt;}
.y39_c00196{bottom:422.693333pt;}
.y12_c00196{bottom:424.293333pt;}
.y38_c00196{bottom:438.293333pt;}
.y11_c00196{bottom:439.760000pt;}
.y37_c00196{bottom:454.560000pt;}
.y10_c00196{bottom:456.026667pt;}
.y36_c00196{bottom:470.693333pt;}
.yf_c00196{bottom:471.893333pt;}
.y35_c00196{bottom:486.960000pt;}
.ye_c00196{bottom:487.893333pt;}
.y34_c00196{bottom:502.560000pt;}
.yd_c00196{bottom:504.026667pt;}
.y33_c00196{bottom:518.960000pt;}
.yc_c00196{bottom:519.893333pt;}
.y32_c00196{bottom:535.493333pt;}
.yb_c00196{bottom:536.160000pt;}
.y31_c00196{bottom:551.493333pt;}
.ya_c00196{bottom:552.960000pt;}
.y30_c00196{bottom:567.360000pt;}
.y9_c00196{bottom:568.160000pt;}
.y2f_c00196{bottom:583.760000pt;}
.y8_c00196{bottom:584.426667pt;}
.y2e_c00196{bottom:599.760000pt;}
.y7_c00196{bottom:600.560000pt;}
.y2d_c00196{bottom:615.626667pt;}
.y6_c00196{bottom:616.293333pt;}
.y5_c00196{bottom:632.160000pt;}
.y2c_c00196{bottom:648.560000pt;}
.y4_c00196{bottom:648.693333pt;}
.y2b_c00196{bottom:664.160000pt;}
.y3_c00196{bottom:664.293333pt;}
.y2a_c00196{bottom:680.693333pt;}
.y2_c00196{bottom:680.960000pt;}
.y1_c00196{bottom:696.693333pt;}
.h5_c00196{height:11.733399pt;}
.h6_c00196{height:38.937500pt;}
.h2_c00196{height:55.893333pt;}
.h3_c00196{height:56.906667pt;}
.h4_c00196{height:67.072000pt;}
.h0_c00196{height:749.066667pt;}
.h1_c00196{height:749.333333pt;}
.w1_c00196{width:93.222667pt;}
.w0_c00196{width:524.666667pt;}
.x0_c00196{left:0.000000pt;}
.x3_c00196{left:55.466667pt;}
.x1_c00196{left:58.533333pt;}
.x2_c00196{left:62.000000pt;}
.x4_c00196{left:63.333333pt;}
.x5_c00196{left:64.800000pt;}
.x6_c00196{left:66.000000pt;}
.x7_c00196{left:66.933333pt;}
.x8_c00196{left:68.000000pt;}
.xe_c00196{left:219.501546pt;}
.x9_c00196{left:247.200000pt;}
.xa_c00196{left:256.533333pt;}
.xb_c00196{left:257.733333pt;}
.xc_c00196{left:258.933333pt;}
.xd_c00196{left:425.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_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_3d56ac504ea71f95bd30abe5.woff2')format("woff");}.ff1_c00197{font-family:ff1_c00197;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00197;src:url('chunks/assets/font_069039e1ab9eb7135400f150.woff2')format("woff");}.ff2_c00197{font-family:ff2_c00197;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00197;src:url('chunks/assets/font_737b3e24813659589197976f.woff2')format("woff");}.ff3_c00197{font-family:ff3_c00197;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00197;src:url('chunks/assets/font_0ce391de997f24f9f9dd37f4.woff2')format("woff");}.ff4_c00197{font-family:ff4_c00197;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00197;src:url('chunks/assets/font_daf623c526ad2523adfc0c22.woff2')format("woff");}.ff5_c00197{font-family:ff5_c00197;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_c00197;src:url('chunks/assets/font_3a338e0c037d7114d4dd29ad.woff2')format("woff");}.ff6_c00197{font-family:ff6_c00197;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00197;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff7_c00197{font-family:ff7_c00197;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00197{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00197{vertical-align:0.000000px;}
.v1_c00197{vertical-align:106.200000px;}
.ls8_c00197{letter-spacing:0.000000px;}
.ls2_c00197{letter-spacing:0.405000px;}
.ls3_c00197{letter-spacing:1.560000px;}
.ls0_c00197{letter-spacing:3.000000px;}
.ls6_c00197{letter-spacing:7.677600px;}
.ls7_c00197{letter-spacing:14.340000px;}
.ls9_c00197{letter-spacing:15.000000px;}
.ls5_c00197{letter-spacing:31.293000px;}
.ls1_c00197{letter-spacing:34.140000px;}
.ls4_c00197{letter-spacing:35.526000px;}
.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;}
}
.ws4_c00197{word-spacing:-40.854000px;}
.ws6_c00197{word-spacing:-28.215000px;}
.ws2_c00197{word-spacing:-18.060000px;}
.ws0_c00197{word-spacing:-17.340000px;}
.ws1_c00197{word-spacing:-14.160000px;}
.ws5_c00197{word-spacing:-13.452000px;}
.ws7_c00197{word-spacing:-3.747000px;}
.ws8_c00197{word-spacing:0.000000px;}
.ws3_c00197{word-spacing:3.120000px;}
._1a_c00197{margin-left:-12.369000px;}
._1b_c00197{margin-left:-10.854000px;}
._c_c00197{margin-left:-9.420000px;}
._13_c00197{margin-left:-8.280000px;}
._10_c00197{margin-left:-6.300000px;}
._8_c00197{margin-left:-5.100000px;}
._7_c00197{margin-left:-3.960000px;}
._12_c00197{margin-left:-2.940000px;}
._6_c00197{margin-left:-1.860000px;}
._b_c00197{width:1.140000px;}
._9_c00197{width:2.340000px;}
._a_c00197{width:3.480000px;}
._15_c00197{width:4.980000px;}
._0_c00197{width:6.000000px;}
._1_c00197{width:7.680000px;}
._4_c00197{width:9.180000px;}
._3_c00197{width:10.380000px;}
._14_c00197{width:12.480000px;}
._16_c00197{width:13.560000px;}
._5_c00197{width:15.240000px;}
._11_c00197{width:16.260000px;}
._17_c00197{width:18.900000px;}
._22_c00197{width:19.914000px;}
._f_c00197{width:21.840000px;}
._18_c00197{width:22.860000px;}
._23_c00197{width:25.500000px;}
._d_c00197{width:27.600000px;}
._e_c00197{width:31.140000px;}
._21_c00197{width:34.620000px;}
._19_c00197{width:39.360000px;}
._1e_c00197{width:45.951000px;}
._1c_c00197{width:47.940000px;}
._1d_c00197{width:49.740000px;}
._20_c00197{width:66.186000px;}
._1f_c00197{width:70.557000px;}
._2_c00197{width:326.700000px;}
.fc2_c00197{color:transparent;}
.fc1_c00197{color:rgb(128,128,128);}
.fc0_c00197{color:rgb(0,0,0);}
.fs1_c00197{font-size:45.000000px;}
.fs6_c00197{font-size:45.600000px;}
.fs7_c00197{font-size:48.000000px;}
.fs4_c00197{font-size:57.000000px;}
.fs0_c00197{font-size:60.000000px;}
.fs3_c00197{font-size:66.000000px;}
.fs2_c00197{font-size:93.000000px;}
.fs5_c00197{font-size:201.000000px;}
.y0_c00197{bottom:0.000000px;}
.y4d_c00197{bottom:3.105000px;}
.y4c_c00197{bottom:7.228357px;}
.y4b_c00197{bottom:49.980000px;}
.y4a_c00197{bottom:68.880000px;}
.y49_c00197{bottom:87.780000px;}
.y48_c00197{bottom:105.630000px;}
.y47_c00197{bottom:123.480000px;}
.y23_c00197{bottom:131.280000px;}
.y46_c00197{bottom:141.780000px;}
.y45_c00197{bottom:160.080000px;}
.y44_c00197{bottom:177.480000px;}
.y43_c00197{bottom:195.480000px;}
.y22_c00197{bottom:206.280000px;}
.y42_c00197{bottom:213.330000px;}
.y21_c00197{bottom:228.930000px;}
.y41_c00197{bottom:231.480000px;}
.y20_c00197{bottom:246.780000px;}
.y40_c00197{bottom:249.780000px;}
.y1f_c00197{bottom:264.930000px;}
.y3f_c00197{bottom:267.630000px;}
.y1e_c00197{bottom:283.230000px;}
.y3e_c00197{bottom:285.930000px;}
.y1d_c00197{bottom:301.380000px;}
.y3d_c00197{bottom:303.480000px;}
.y1c_c00197{bottom:319.380000px;}
.y3c_c00197{bottom:321.330000px;}
.y1b_c00197{bottom:337.830000px;}
.y3b_c00197{bottom:339.180000px;}
.y1a_c00197{bottom:355.380000px;}
.y3a_c00197{bottom:357.180000px;}
.y19_c00197{bottom:373.230000px;}
.y39_c00197{bottom:375.630000px;}
.y18_c00197{bottom:392.130000px;}
.y38_c00197{bottom:393.630000px;}
.y17_c00197{bottom:409.680000px;}
.y37_c00197{bottom:411.480000px;}
.y16_c00197{bottom:427.680000px;}
.y36_c00197{bottom:429.630000px;}
.y15_c00197{bottom:445.830000px;}
.y35_c00197{bottom:447.480000px;}
.y14_c00197{bottom:464.130000px;}
.y34_c00197{bottom:466.380000px;}
.y13_c00197{bottom:481.980000px;}
.y33_c00197{bottom:483.030000px;}
.y12_c00197{bottom:500.130000px;}
.y32_c00197{bottom:501.930000px;}
.y11_c00197{bottom:517.830000px;}
.y31_c00197{bottom:519.780000px;}
.y10_c00197{bottom:536.580000px;}
.y30_c00197{bottom:538.380000px;}
.yf_c00197{bottom:554.280000px;}
.y2f_c00197{bottom:555.930000px;}
.ye_c00197{bottom:572.430000px;}
.y2e_c00197{bottom:573.780000px;}
.yd_c00197{bottom:591.030000px;}
.y2d_c00197{bottom:591.630000px;}
.yc_c00197{bottom:608.130000px;}
.y2c_c00197{bottom:609.480000px;}
.y2a_c00197{bottom:619.380000px;}
.yb_c00197{bottom:626.430000px;}
.y2b_c00197{bottom:627.180000px;}
.ya_c00197{bottom:644.580000px;}
.y9_c00197{bottom:662.130000px;}
.y29_c00197{bottom:664.230000px;}
.y8_c00197{bottom:680.730000px;}
.y28_c00197{bottom:681.780000px;}
.y7_c00197{bottom:698.580000px;}
.y27_c00197{bottom:699.930000px;}
.y6_c00197{bottom:716.580000px;}
.y26_c00197{bottom:718.230000px;}
.y5_c00197{bottom:735.030000px;}
.y25_c00197{bottom:736.080000px;}
.y4_c00197{bottom:753.630000px;}
.y24_c00197{bottom:770.280000px;}
.y3_c00197{bottom:770.880000px;}
.y2_c00197{bottom:789.780000px;}
.y1_c00197{bottom:808.680000px;}
.h6_c00197{height:13.200074px;}
.h7_c00197{height:43.804688px;}
.h4_c00197{height:59.736000px;}
.h2_c00197{height:62.880000px;}
.h3_c00197{height:96.996094px;}
.h5_c00197{height:210.648000px;}
.h1_c00197{height:843.750000px;}
.h0_c00197{height:844.050000px;}
.w2_c00197{width:104.875500px;}
.w0_c00197{width:559.950000px;}
.w1_c00197{width:560.250000px;}
.x0_c00197{left:0.000000px;}
.x6_c00197{left:91.050000px;}
.x4_c00197{left:92.100000px;}
.x5_c00197{left:93.150000px;}
.x2_c00197{left:94.200000px;}
.x3_c00197{left:96.300000px;}
.x1_c00197{left:105.000000px;}
.x7_c00197{left:108.900000px;}
.x8_c00197{left:123.750000px;}
.x9_c00197{left:155.550000px;}
.xb_c00197{left:160.200000px;}
.xa_c00197{left:173.700000px;}
.x1a_c00197{left:231.789230px;}
.x16_c00197{left:305.400000px;}
.x18_c00197{left:306.450000px;}
.x17_c00197{left:307.500000px;}
.x15_c00197{left:309.450000px;}
.x12_c00197{left:310.500000px;}
.xe_c00197{left:312.150000px;}
.xd_c00197{left:313.200000px;}
.xf_c00197{left:331.650000px;}
.x14_c00197{left:353.250000px;}
.x13_c00197{left:356.700000px;}
.x10_c00197{left:360.450000px;}
.xc_c00197{left:379.350000px;}
.x11_c00197{left:396.900000px;}
.x19_c00197{left:461.250000px;}
@media print{
.v0_c00197{vertical-align:0.000000pt;}
.v1_c00197{vertical-align:94.400000pt;}
.ls8_c00197{letter-spacing:0.000000pt;}
.ls2_c00197{letter-spacing:0.360000pt;}
.ls3_c00197{letter-spacing:1.386667pt;}
.ls0_c00197{letter-spacing:2.666667pt;}
.ls6_c00197{letter-spacing:6.824533pt;}
.ls7_c00197{letter-spacing:12.746667pt;}
.ls9_c00197{letter-spacing:13.333333pt;}
.ls5_c00197{letter-spacing:27.816000pt;}
.ls1_c00197{letter-spacing:30.346667pt;}
.ls4_c00197{letter-spacing:31.578667pt;}
.ws4_c00197{word-spacing:-36.314667pt;}
.ws6_c00197{word-spacing:-25.080000pt;}
.ws2_c00197{word-spacing:-16.053333pt;}
.ws0_c00197{word-spacing:-15.413333pt;}
.ws1_c00197{word-spacing:-12.586667pt;}
.ws5_c00197{word-spacing:-11.957333pt;}
.ws7_c00197{word-spacing:-3.330667pt;}
.ws8_c00197{word-spacing:0.000000pt;}
.ws3_c00197{word-spacing:2.773333pt;}
._1a_c00197{margin-left:-10.994667pt;}
._1b_c00197{margin-left:-9.648000pt;}
._c_c00197{margin-left:-8.373333pt;}
._13_c00197{margin-left:-7.360000pt;}
._10_c00197{margin-left:-5.600000pt;}
._8_c00197{margin-left:-4.533333pt;}
._7_c00197{margin-left:-3.520000pt;}
._12_c00197{margin-left:-2.613333pt;}
._6_c00197{margin-left:-1.653333pt;}
._b_c00197{width:1.013333pt;}
._9_c00197{width:2.080000pt;}
._a_c00197{width:3.093333pt;}
._15_c00197{width:4.426667pt;}
._0_c00197{width:5.333333pt;}
._1_c00197{width:6.826667pt;}
._4_c00197{width:8.160000pt;}
._3_c00197{width:9.226667pt;}
._14_c00197{width:11.093333pt;}
._16_c00197{width:12.053333pt;}
._5_c00197{width:13.546667pt;}
._11_c00197{width:14.453333pt;}
._17_c00197{width:16.800000pt;}
._22_c00197{width:17.701333pt;}
._f_c00197{width:19.413333pt;}
._18_c00197{width:20.320000pt;}
._23_c00197{width:22.666667pt;}
._d_c00197{width:24.533333pt;}
._e_c00197{width:27.680000pt;}
._21_c00197{width:30.773333pt;}
._19_c00197{width:34.986667pt;}
._1e_c00197{width:40.845333pt;}
._1c_c00197{width:42.613333pt;}
._1d_c00197{width:44.213333pt;}
._20_c00197{width:58.832000pt;}
._1f_c00197{width:62.717333pt;}
._2_c00197{width:290.400000pt;}
.fs1_c00197{font-size:40.000000pt;}
.fs6_c00197{font-size:40.533333pt;}
.fs7_c00197{font-size:42.666667pt;}
.fs4_c00197{font-size:50.666667pt;}
.fs0_c00197{font-size:53.333333pt;}
.fs3_c00197{font-size:58.666667pt;}
.fs2_c00197{font-size:82.666667pt;}
.fs5_c00197{font-size:178.666667pt;}
.y0_c00197{bottom:0.000000pt;}
.y4d_c00197{bottom:2.760000pt;}
.y4c_c00197{bottom:6.425206pt;}
.y4b_c00197{bottom:44.426667pt;}
.y4a_c00197{bottom:61.226667pt;}
.y49_c00197{bottom:78.026667pt;}
.y48_c00197{bottom:93.893333pt;}
.y47_c00197{bottom:109.760000pt;}
.y23_c00197{bottom:116.693333pt;}
.y46_c00197{bottom:126.026667pt;}
.y45_c00197{bottom:142.293333pt;}
.y44_c00197{bottom:157.760000pt;}
.y43_c00197{bottom:173.760000pt;}
.y22_c00197{bottom:183.360000pt;}
.y42_c00197{bottom:189.626667pt;}
.y21_c00197{bottom:203.493333pt;}
.y41_c00197{bottom:205.760000pt;}
.y20_c00197{bottom:219.360000pt;}
.y40_c00197{bottom:222.026667pt;}
.y1f_c00197{bottom:235.493333pt;}
.y3f_c00197{bottom:237.893333pt;}
.y1e_c00197{bottom:251.760000pt;}
.y3e_c00197{bottom:254.160000pt;}
.y1d_c00197{bottom:267.893333pt;}
.y3d_c00197{bottom:269.760000pt;}
.y1c_c00197{bottom:283.893333pt;}
.y3c_c00197{bottom:285.626667pt;}
.y1b_c00197{bottom:300.293333pt;}
.y3b_c00197{bottom:301.493333pt;}
.y1a_c00197{bottom:315.893333pt;}
.y3a_c00197{bottom:317.493333pt;}
.y19_c00197{bottom:331.760000pt;}
.y39_c00197{bottom:333.893333pt;}
.y18_c00197{bottom:348.560000pt;}
.y38_c00197{bottom:349.893333pt;}
.y17_c00197{bottom:364.160000pt;}
.y37_c00197{bottom:365.760000pt;}
.y16_c00197{bottom:380.160000pt;}
.y36_c00197{bottom:381.893333pt;}
.y15_c00197{bottom:396.293333pt;}
.y35_c00197{bottom:397.760000pt;}
.y14_c00197{bottom:412.560000pt;}
.y34_c00197{bottom:414.560000pt;}
.y13_c00197{bottom:428.426667pt;}
.y33_c00197{bottom:429.360000pt;}
.y12_c00197{bottom:444.560000pt;}
.y32_c00197{bottom:446.160000pt;}
.y11_c00197{bottom:460.293333pt;}
.y31_c00197{bottom:462.026667pt;}
.y10_c00197{bottom:476.960000pt;}
.y30_c00197{bottom:478.560000pt;}
.yf_c00197{bottom:492.693333pt;}
.y2f_c00197{bottom:494.160000pt;}
.ye_c00197{bottom:508.826667pt;}
.y2e_c00197{bottom:510.026667pt;}
.yd_c00197{bottom:525.360000pt;}
.y2d_c00197{bottom:525.893333pt;}
.yc_c00197{bottom:540.560000pt;}
.y2c_c00197{bottom:541.760000pt;}
.y2a_c00197{bottom:550.560000pt;}
.yb_c00197{bottom:556.826667pt;}
.y2b_c00197{bottom:557.493333pt;}
.ya_c00197{bottom:572.960000pt;}
.y9_c00197{bottom:588.560000pt;}
.y29_c00197{bottom:590.426667pt;}
.y8_c00197{bottom:605.093333pt;}
.y28_c00197{bottom:606.026667pt;}
.y7_c00197{bottom:620.960000pt;}
.y27_c00197{bottom:622.160000pt;}
.y6_c00197{bottom:636.960000pt;}
.y26_c00197{bottom:638.426667pt;}
.y5_c00197{bottom:653.360000pt;}
.y25_c00197{bottom:654.293333pt;}
.y4_c00197{bottom:669.893333pt;}
.y24_c00197{bottom:684.693333pt;}
.y3_c00197{bottom:685.226667pt;}
.y2_c00197{bottom:702.026667pt;}
.y1_c00197{bottom:718.826667pt;}
.h6_c00197{height:11.733399pt;}
.h7_c00197{height:38.937500pt;}
.h4_c00197{height:53.098667pt;}
.h2_c00197{height:55.893333pt;}
.h3_c00197{height:86.218750pt;}
.h5_c00197{height:187.242667pt;}
.h1_c00197{height:750.000000pt;}
.h0_c00197{height:750.266667pt;}
.w2_c00197{width:93.222667pt;}
.w0_c00197{width:497.733333pt;}
.w1_c00197{width:498.000000pt;}
.x0_c00197{left:0.000000pt;}
.x6_c00197{left:80.933333pt;}
.x4_c00197{left:81.866667pt;}
.x5_c00197{left:82.800000pt;}
.x2_c00197{left:83.733333pt;}
.x3_c00197{left:85.600000pt;}
.x1_c00197{left:93.333333pt;}
.x7_c00197{left:96.800000pt;}
.x8_c00197{left:110.000000pt;}
.x9_c00197{left:138.266667pt;}
.xb_c00197{left:142.400000pt;}
.xa_c00197{left:154.400000pt;}
.x1a_c00197{left:206.034871pt;}
.x16_c00197{left:271.466667pt;}
.x18_c00197{left:272.400000pt;}
.x17_c00197{left:273.333333pt;}
.x15_c00197{left:275.066667pt;}
.x12_c00197{left:276.000000pt;}
.xe_c00197{left:277.466667pt;}
.xd_c00197{left:278.400000pt;}
.xf_c00197{left:294.800000pt;}
.x14_c00197{left:314.000000pt;}
.x13_c00197{left:317.066667pt;}
.x10_c00197{left:320.400000pt;}
.xc_c00197{left:337.200000pt;}
.x11_c00197{left:352.800000pt;}
.x19_c00197{left:410.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_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_a976dbbca29d123cb5e73434.woff2')format("woff");}.ff1_c00198{font-family:ff1_c00198;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00198;src:url('chunks/assets/font_1843e721b312b579101cd6fc.woff2')format("woff");}.ff2_c00198{font-family:ff2_c00198;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00198;src:url('chunks/assets/font_2e26bc80d184cdf80ee3e537.woff2')format("woff");}.ff3_c00198{font-family:ff3_c00198;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00198;src:url('chunks/assets/font_35e8fb8d8a9f61560340a317.woff2')format("woff");}.ff4_c00198{font-family:ff4_c00198;line-height:1.012793;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00198;src:url('chunks/assets/font_7164f7fc20c479aacf7b7c04.woff2')format("woff");}.ff5_c00198{font-family:ff5_c00198;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00198;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff6_c00198{font-family:ff6_c00198;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00198{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00198{vertical-align:0.000000px;}
.ls6_c00198{letter-spacing:0.000000px;}
.ls0_c00198{letter-spacing:3.000000px;}
.ls3_c00198{letter-spacing:6.000000px;}
.ls5_c00198{letter-spacing:6.180000px;}
.ls2_c00198{letter-spacing:14.460000px;}
.ls4_c00198{letter-spacing:51.660000px;}
.ls1_c00198{letter-spacing:145.260000px;}
.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;}
}
.ws3_c00198{word-spacing:-29.295000px;}
.ws2_c00198{word-spacing:-20.340000px;}
.ws4_c00198{word-spacing:-18.060000px;}
.ws1_c00198{word-spacing:-17.340000px;}
.ws0_c00198{word-spacing:-14.160000px;}
.ws5_c00198{word-spacing:0.000000px;}
._13_c00198{margin-left:-14.880000px;}
._10_c00198{margin-left:-10.020000px;}
._0_c00198{margin-left:-7.860000px;}
._8_c00198{margin-left:-6.720000px;}
._2_c00198{margin-left:-5.700000px;}
._3_c00198{margin-left:-3.840000px;}
._1_c00198{margin-left:-2.520000px;}
._4_c00198{margin-left:-1.260000px;}
._7_c00198{width:1.140000px;}
._6_c00198{width:2.640000px;}
._a_c00198{width:3.660000px;}
._d_c00198{width:4.980000px;}
._18_c00198{width:6.840000px;}
._19_c00198{width:7.860000px;}
._20_c00198{width:8.940000px;}
._11_c00198{width:10.020000px;}
._f_c00198{width:11.700000px;}
._9_c00198{width:13.020000px;}
._5_c00198{width:14.940000px;}
._1f_c00198{width:16.020000px;}
._17_c00198{width:17.520000px;}
._25_c00198{width:19.200000px;}
._1c_c00198{width:20.340000px;}
._b_c00198{width:23.820000px;}
._22_c00198{width:27.300000px;}
._12_c00198{width:30.060000px;}
._27_c00198{width:31.380000px;}
._24_c00198{width:32.580000px;}
._1b_c00198{width:33.840000px;}
._1d_c00198{width:35.760000px;}
._c_c00198{width:37.680000px;}
._1a_c00198{width:41.940000px;}
._21_c00198{width:44.640000px;}
._1e_c00198{width:46.200000px;}
._16_c00198{width:50.100000px;}
._15_c00198{width:55.920000px;}
._14_c00198{width:62.460000px;}
._e_c00198{width:65.580000px;}
._26_c00198{width:119.940000px;}
._23_c00198{width:177.900000px;}
.fc2_c00198{color:transparent;}
.fc1_c00198{color:rgb(128,128,128);}
.fc0_c00198{color:rgb(0,0,0);}
.fs2_c00198{font-size:45.000000px;}
.fs1_c00198{font-size:48.000000px;}
.fs0_c00198{font-size:60.000000px;}
.y0_c00198{bottom:0.000000px;}
.y55_c00198{bottom:3.105000px;}
.y54_c00198{bottom:7.228357px;}
.y53_c00198{bottom:40.830000px;}
.y52_c00198{bottom:60.480000px;}
.y29_c00198{bottom:63.780000px;}
.y51_c00198{bottom:78.630000px;}
.y28_c00198{bottom:82.980000px;}
.y50_c00198{bottom:96.480000px;}
.y27_c00198{bottom:100.530000px;}
.y4f_c00198{bottom:115.080000px;}
.y26_c00198{bottom:118.080000px;}
.y4e_c00198{bottom:132.930000px;}
.y25_c00198{bottom:136.680000px;}
.y4d_c00198{bottom:150.180000px;}
.y24_c00198{bottom:154.530000px;}
.y4c_c00198{bottom:168.480000px;}
.y23_c00198{bottom:172.230000px;}
.y4b_c00198{bottom:187.380000px;}
.y22_c00198{bottom:190.380000px;}
.y4a_c00198{bottom:205.080000px;}
.y21_c00198{bottom:208.230000px;}
.y49_c00198{bottom:222.180000px;}
.y20_c00198{bottom:226.230000px;}
.y48_c00198{bottom:239.280000px;}
.y1f_c00198{bottom:244.380000px;}
.y47_c00198{bottom:259.230000px;}
.y1e_c00198{bottom:261.630000px;}
.y46_c00198{bottom:277.380000px;}
.y1d_c00198{bottom:282.780000px;}
.y45_c00198{bottom:294.930000px;}
.y1c_c00198{bottom:298.380000px;}
.y44_c00198{bottom:312.930000px;}
.y1b_c00198{bottom:316.530000px;}
.y43_c00198{bottom:331.380000px;}
.y1a_c00198{bottom:333.180000px;}
.y42_c00198{bottom:348.930000px;}
.y19_c00198{bottom:352.080000px;}
.y41_c00198{bottom:367.230000px;}
.y18_c00198{bottom:370.230000px;}
.y40_c00198{bottom:385.080000px;}
.y17_c00198{bottom:388.080000px;}
.y3f_c00198{bottom:402.930000px;}
.y16_c00198{bottom:406.680000px;}
.y3e_c00198{bottom:421.230000px;}
.y15_c00198{bottom:424.980000px;}
.y3d_c00198{bottom:438.180000px;}
.y14_c00198{bottom:442.080000px;}
.y3c_c00198{bottom:457.080000px;}
.y13_c00198{bottom:460.080000px;}
.y3b_c00198{bottom:475.230000px;}
.y12_c00198{bottom:477.330000px;}
.y3a_c00198{bottom:492.480000px;}
.y11_c00198{bottom:495.180000px;}
.y39_c00198{bottom:510.630000px;}
.y10_c00198{bottom:513.030000px;}
.y38_c00198{bottom:528.630000px;}
.yf_c00198{bottom:530.580000px;}
.y37_c00198{bottom:545.730000px;}
.ye_c00198{bottom:548.730000px;}
.y36_c00198{bottom:563.730000px;}
.yd_c00198{bottom:566.730000px;}
.y35_c00198{bottom:582.480000px;}
.yc_c00198{bottom:583.980000px;}
.y34_c00198{bottom:600.180000px;}
.yb_c00198{bottom:601.830000px;}
.y33_c00198{bottom:618.330000px;}
.ya_c00198{bottom:619.680000px;}
.y32_c00198{bottom:636.180000px;}
.y9_c00198{bottom:637.980000px;}
.y31_c00198{bottom:654.180000px;}
.y8_c00198{bottom:655.830000px;}
.y30_c00198{bottom:671.730000px;}
.y7_c00198{bottom:672.930000px;}
.y2f_c00198{bottom:689.580000px;}
.y6_c00198{bottom:691.230000px;}
.y2e_c00198{bottom:708.030000px;}
.y5_c00198{bottom:709.080000px;}
.y2d_c00198{bottom:725.730000px;}
.y4_c00198{bottom:727.080000px;}
.y2c_c00198{bottom:743.580000px;}
.y3_c00198{bottom:744.930000px;}
.y2b_c00198{bottom:762.030000px;}
.y2_c00198{bottom:763.530000px;}
.y2a_c00198{bottom:779.730000px;}
.y1_c00198{bottom:781.080000px;}
.h3_c00198{height:13.200074px;}
.h4_c00198{height:43.804688px;}
.h2_c00198{height:62.880000px;}
.h0_c00198{height:842.700000px;}
.h1_c00198{height:843.000000px;}
.w1_c00198{width:104.875500px;}
.w0_c00198{width:590.250000px;}
.x0_c00198{left:0.000000px;}
.x5_c00198{left:18.900000px;}
.x2_c00198{left:55.650000px;}
.x1_c00198{left:77.550000px;}
.x3_c00198{left:78.900000px;}
.x4_c00198{left:79.950000px;}
.x6_c00198{left:81.450000px;}
.x7_c00198{left:82.650000px;}
.x8_c00198{left:96.150000px;}
.x11_c00198{left:246.939240px;}
.xb_c00198{left:292.950000px;}
.x9_c00198{left:294.000000px;}
.xa_c00198{left:295.050000px;}
.xc_c00198{left:296.400000px;}
.xd_c00198{left:297.600000px;}
.xe_c00198{left:298.650000px;}
.xf_c00198{left:300.300000px;}
.x10_c00198{left:475.500000px;}
@media print{
.v0_c00198{vertical-align:0.000000pt;}
.ls6_c00198{letter-spacing:0.000000pt;}
.ls0_c00198{letter-spacing:2.666667pt;}
.ls3_c00198{letter-spacing:5.333333pt;}
.ls5_c00198{letter-spacing:5.493333pt;}
.ls2_c00198{letter-spacing:12.853333pt;}
.ls4_c00198{letter-spacing:45.920000pt;}
.ls1_c00198{letter-spacing:129.120000pt;}
.ws3_c00198{word-spacing:-26.040000pt;}
.ws2_c00198{word-spacing:-18.080000pt;}
.ws4_c00198{word-spacing:-16.053333pt;}
.ws1_c00198{word-spacing:-15.413333pt;}
.ws0_c00198{word-spacing:-12.586667pt;}
.ws5_c00198{word-spacing:0.000000pt;}
._13_c00198{margin-left:-13.226667pt;}
._10_c00198{margin-left:-8.906667pt;}
._0_c00198{margin-left:-6.986667pt;}
._8_c00198{margin-left:-5.973333pt;}
._2_c00198{margin-left:-5.066667pt;}
._3_c00198{margin-left:-3.413333pt;}
._1_c00198{margin-left:-2.240000pt;}
._4_c00198{margin-left:-1.120000pt;}
._7_c00198{width:1.013333pt;}
._6_c00198{width:2.346667pt;}
._a_c00198{width:3.253333pt;}
._d_c00198{width:4.426667pt;}
._18_c00198{width:6.080000pt;}
._19_c00198{width:6.986667pt;}
._20_c00198{width:7.946667pt;}
._11_c00198{width:8.906667pt;}
._f_c00198{width:10.400000pt;}
._9_c00198{width:11.573333pt;}
._5_c00198{width:13.280000pt;}
._1f_c00198{width:14.240000pt;}
._17_c00198{width:15.573333pt;}
._25_c00198{width:17.066667pt;}
._1c_c00198{width:18.080000pt;}
._b_c00198{width:21.173333pt;}
._22_c00198{width:24.266667pt;}
._12_c00198{width:26.720000pt;}
._27_c00198{width:27.893333pt;}
._24_c00198{width:28.960000pt;}
._1b_c00198{width:30.080000pt;}
._1d_c00198{width:31.786667pt;}
._c_c00198{width:33.493333pt;}
._1a_c00198{width:37.280000pt;}
._21_c00198{width:39.680000pt;}
._1e_c00198{width:41.066667pt;}
._16_c00198{width:44.533333pt;}
._15_c00198{width:49.706667pt;}
._14_c00198{width:55.520000pt;}
._e_c00198{width:58.293333pt;}
._26_c00198{width:106.613333pt;}
._23_c00198{width:158.133333pt;}
.fs2_c00198{font-size:40.000000pt;}
.fs1_c00198{font-size:42.666667pt;}
.fs0_c00198{font-size:53.333333pt;}
.y0_c00198{bottom:0.000000pt;}
.y55_c00198{bottom:2.760000pt;}
.y54_c00198{bottom:6.425206pt;}
.y53_c00198{bottom:36.293333pt;}
.y52_c00198{bottom:53.760000pt;}
.y29_c00198{bottom:56.693333pt;}
.y51_c00198{bottom:69.893333pt;}
.y28_c00198{bottom:73.760000pt;}
.y50_c00198{bottom:85.760000pt;}
.y27_c00198{bottom:89.360000pt;}
.y4f_c00198{bottom:102.293333pt;}
.y26_c00198{bottom:104.960000pt;}
.y4e_c00198{bottom:118.160000pt;}
.y25_c00198{bottom:121.493333pt;}
.y4d_c00198{bottom:133.493333pt;}
.y24_c00198{bottom:137.360000pt;}
.y4c_c00198{bottom:149.760000pt;}
.y23_c00198{bottom:153.093333pt;}
.y4b_c00198{bottom:166.560000pt;}
.y22_c00198{bottom:169.226667pt;}
.y4a_c00198{bottom:182.293333pt;}
.y21_c00198{bottom:185.093333pt;}
.y49_c00198{bottom:197.493333pt;}
.y20_c00198{bottom:201.093333pt;}
.y48_c00198{bottom:212.693333pt;}
.y1f_c00198{bottom:217.226667pt;}
.y47_c00198{bottom:230.426667pt;}
.y1e_c00198{bottom:232.560000pt;}
.y46_c00198{bottom:246.560000pt;}
.y1d_c00198{bottom:251.360000pt;}
.y45_c00198{bottom:262.160000pt;}
.y1c_c00198{bottom:265.226667pt;}
.y44_c00198{bottom:278.160000pt;}
.y1b_c00198{bottom:281.360000pt;}
.y43_c00198{bottom:294.560000pt;}
.y1a_c00198{bottom:296.160000pt;}
.y42_c00198{bottom:310.160000pt;}
.y19_c00198{bottom:312.960000pt;}
.y41_c00198{bottom:326.426667pt;}
.y18_c00198{bottom:329.093333pt;}
.y40_c00198{bottom:342.293333pt;}
.y17_c00198{bottom:344.960000pt;}
.y3f_c00198{bottom:358.160000pt;}
.y16_c00198{bottom:361.493333pt;}
.y3e_c00198{bottom:374.426667pt;}
.y15_c00198{bottom:377.760000pt;}
.y3d_c00198{bottom:389.493333pt;}
.y14_c00198{bottom:392.960000pt;}
.y3c_c00198{bottom:406.293333pt;}
.y13_c00198{bottom:408.960000pt;}
.y3b_c00198{bottom:422.426667pt;}
.y12_c00198{bottom:424.293333pt;}
.y3a_c00198{bottom:437.760000pt;}
.y11_c00198{bottom:440.160000pt;}
.y39_c00198{bottom:453.893333pt;}
.y10_c00198{bottom:456.026667pt;}
.y38_c00198{bottom:469.893333pt;}
.yf_c00198{bottom:471.626667pt;}
.y37_c00198{bottom:485.093333pt;}
.ye_c00198{bottom:487.760000pt;}
.y36_c00198{bottom:501.093333pt;}
.yd_c00198{bottom:503.760000pt;}
.y35_c00198{bottom:517.760000pt;}
.yc_c00198{bottom:519.093333pt;}
.y34_c00198{bottom:533.493333pt;}
.yb_c00198{bottom:534.960000pt;}
.y33_c00198{bottom:549.626667pt;}
.ya_c00198{bottom:550.826667pt;}
.y32_c00198{bottom:565.493333pt;}
.y9_c00198{bottom:567.093333pt;}
.y31_c00198{bottom:581.493333pt;}
.y8_c00198{bottom:582.960000pt;}
.y30_c00198{bottom:597.093333pt;}
.y7_c00198{bottom:598.160000pt;}
.y2f_c00198{bottom:612.960000pt;}
.y6_c00198{bottom:614.426667pt;}
.y2e_c00198{bottom:629.360000pt;}
.y5_c00198{bottom:630.293333pt;}
.y2d_c00198{bottom:645.093333pt;}
.y4_c00198{bottom:646.293333pt;}
.y2c_c00198{bottom:660.960000pt;}
.y3_c00198{bottom:662.160000pt;}
.y2b_c00198{bottom:677.360000pt;}
.y2_c00198{bottom:678.693333pt;}
.y2a_c00198{bottom:693.093333pt;}
.y1_c00198{bottom:694.293333pt;}
.h3_c00198{height:11.733399pt;}
.h4_c00198{height:38.937500pt;}
.h2_c00198{height:55.893333pt;}
.h0_c00198{height:749.066667pt;}
.h1_c00198{height:749.333333pt;}
.w1_c00198{width:93.222667pt;}
.w0_c00198{width:524.666667pt;}
.x0_c00198{left:0.000000pt;}
.x5_c00198{left:16.800000pt;}
.x2_c00198{left:49.466667pt;}
.x1_c00198{left:68.933333pt;}
.x3_c00198{left:70.133333pt;}
.x4_c00198{left:71.066667pt;}
.x6_c00198{left:72.400000pt;}
.x7_c00198{left:73.466667pt;}
.x8_c00198{left:85.466667pt;}
.x11_c00198{left:219.501546pt;}
.xb_c00198{left:260.400000pt;}
.x9_c00198{left:261.333333pt;}
.xa_c00198{left:262.266667pt;}
.xc_c00198{left:263.466667pt;}
.xd_c00198{left:264.533333pt;}
.xe_c00198{left:265.466667pt;}
.xf_c00198{left:266.933333pt;}
.x10_c00198{left:422.666667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_09033530aa6cad077b044ec7.woff2')format("woff");}.ff1_c00199{font-family:ff1_c00199;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00199;src:url('chunks/assets/font_50ff38585670804f27c26e54.woff2')format("woff");}.ff2_c00199{font-family:ff2_c00199;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00199;src:url('chunks/assets/font_7b60e292a40ef798d3e3f49e.woff2')format("woff");}.ff3_c00199{font-family:ff3_c00199;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00199;src:url('chunks/assets/font_9ee28cf55f08f5a02f59d248.woff2')format("woff");}.ff4_c00199{font-family:ff4_c00199;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00199;src:url('chunks/assets/font_22d09952936baa47abd01293.woff2')format("woff");}.ff5_c00199{font-family:ff5_c00199;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00199;src:url('chunks/assets/font_a3444f9efd1096515b861095.woff2')format("woff");}.ff6_c00199{font-family:ff6_c00199;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00199;src:url('chunks/assets/font_8ff4f3c1d53a705317bdf029.woff2')format("woff");}.ff7_c00199{font-family:ff7_c00199;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00199;src:url('chunks/assets/font_2668b2172d31fc6d230f4e94.woff2')format("woff");}.ff8_c00199{font-family:ff8_c00199;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00199;src:url('chunks/assets/font_c0262fb98775155da8a66010.woff2')format("woff");}.ff9_c00199{font-family:ff9_c00199;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00199;src:url('chunks/assets/font_22ce8f46eae8a32272141921.woff2')format("woff");}.ffa_c00199{font-family:ffa_c00199;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00199;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ffb_c00199{font-family:ffb_c00199;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00199{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00199{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.v0_c00199{vertical-align:0.000000px;}
.ls7_c00199{letter-spacing:0.000000px;}
.ls3_c00199{letter-spacing:3.000000px;}
.ls4_c00199{letter-spacing:4.680000px;}
.ls0_c00199{letter-spacing:6.000000px;}
.ls6_c00199{letter-spacing:9.000000px;}
.ls2_c00199{letter-spacing:14.589000px;}
.ls8_c00199{letter-spacing:15.000000px;}
.ls1_c00199{letter-spacing:15.480000px;}
.ls5_c00199{letter-spacing:20.820000px;}
.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;}
}
.ws8_c00199{word-spacing:-45.258000px;}
.ws6_c00199{word-spacing:-42.744000px;}
.ws5_c00199{word-spacing:-29.295000px;}
.ws0_c00199{word-spacing:-22.623000px;}
.ws7_c00199{word-spacing:-21.300000px;}
.ws2_c00199{word-spacing:-20.340000px;}
.ws3_c00199{word-spacing:-18.060000px;}
.ws1_c00199{word-spacing:-14.160000px;}
.ws4_c00199{word-spacing:-0.120000px;}
.ws9_c00199{word-spacing:0.000000px;}
._2a_c00199{margin-left:-22.419000px;}
._c_c00199{margin-left:-21.099000px;}
._22_c00199{margin-left:-15.750000px;}
._24_c00199{margin-left:-14.190000px;}
._25_c00199{margin-left:-13.104000px;}
._d_c00199{margin-left:-11.460000px;}
._4_c00199{margin-left:-9.660000px;}
._a_c00199{margin-left:-8.220000px;}
._3_c00199{margin-left:-6.540000px;}
._6_c00199{margin-left:-4.980000px;}
._7_c00199{margin-left:-3.420000px;}
._1_c00199{margin-left:-2.100000px;}
._0_c00199{margin-left:-1.020000px;}
._14_c00199{width:1.260000px;}
._b_c00199{width:2.460000px;}
._12_c00199{width:4.380000px;}
._11_c00199{width:5.460000px;}
._13_c00199{width:6.660000px;}
._9_c00199{width:8.340000px;}
._8_c00199{width:9.660000px;}
._5_c00199{width:10.860000px;}
._2_c00199{width:12.840000px;}
._1a_c00199{width:16.164000px;}
._15_c00199{width:18.840000px;}
._26_c00199{width:19.980000px;}
._1d_c00199{width:21.540000px;}
._10_c00199{width:24.360000px;}
._29_c00199{width:25.620000px;}
._20_c00199{width:27.120000px;}
._1e_c00199{width:28.380000px;}
._18_c00199{width:30.360000px;}
._1f_c00199{width:34.956000px;}
._f_c00199{width:36.060000px;}
._e_c00199{width:39.720000px;}
._21_c00199{width:41.040000px;}
._16_c00199{width:43.260000px;}
._1c_c00199{width:54.120000px;}
._27_c00199{width:74.724000px;}
._28_c00199{width:102.060000px;}
._17_c00199{width:129.240000px;}
._23_c00199{width:168.597000px;}
._19_c00199{width:256.680000px;}
._1b_c00199{width:391.152000px;}
.fc2_c00199{color:transparent;}
.fc1_c00199{color:rgb(128,128,128);}
.fc0_c00199{color:rgb(0,0,0);}
.fs2_c00199{font-size:24.000000px;}
.fs4_c00199{font-size:45.000000px;}
.fs5_c00199{font-size:48.000000px;}
.fs3_c00199{font-size:51.000000px;}
.fs1_c00199{font-size:57.000000px;}
.fs0_c00199{font-size:60.000000px;}
.y0_c00199{bottom:0.000000px;}
.y55_c00199{bottom:3.105000px;}
.y54_c00199{bottom:7.228357px;}
.y53_c00199{bottom:45.930000px;}
.y52_c00199{bottom:62.730000px;}
.y28_c00199{bottom:80.280000px;}
.y4d_c00199{bottom:81.780000px;}
.y27_c00199{bottom:97.980000px;}
.y4c_c00199{bottom:99.630000px;}
.y26_c00199{bottom:115.830000px;}
.y4b_c00199{bottom:117.780000px;}
.y25_c00199{bottom:133.680000px;}
.y4a_c00199{bottom:135.330000px;}
.y51_c00199{bottom:137.130000px;}
.y24_c00199{bottom:152.580000px;}
.y49_c00199{bottom:153.630000px;}
.y50_c00199{bottom:154.530000px;}
.y23_c00199{bottom:169.830000px;}
.y48_c00199{bottom:171.480000px;}
.y4f_c00199{bottom:172.230000px;}
.y22_c00199{bottom:188.730000px;}
.y47_c00199{bottom:189.630000px;}
.y4e_c00199{bottom:190.680000px;}
.y21_c00199{bottom:206.580000px;}
.y20_c00199{bottom:223.530000px;}
.y46_c00199{bottom:224.880000px;}
.y1f_c00199{bottom:242.430000px;}
.y45_c00199{bottom:243.030000px;}
.y1e_c00199{bottom:259.980000px;}
.y44_c00199{bottom:260.880000px;}
.y1d_c00199{bottom:278.130000px;}
.y43_c00199{bottom:278.880000px;}
.y1c_c00199{bottom:295.980000px;}
.y42_c00199{bottom:296.730000px;}
.y1b_c00199{bottom:314.280000px;}
.y41_c00199{bottom:314.580000px;}
.y1a_c00199{bottom:332.430000px;}
.y40_c00199{bottom:332.880000px;}
.y19_c00199{bottom:350.430000px;}
.y3f_c00199{bottom:351.330000px;}
.y18_c00199{bottom:368.580000px;}
.y3e_c00199{bottom:369.180000px;}
.y17_c00199{bottom:386.430000px;}
.y3d_c00199{bottom:387.180000px;}
.y16_c00199{bottom:404.430000px;}
.y3c_c00199{bottom:406.080000px;}
.y15_c00199{bottom:422.580000px;}
.y3b_c00199{bottom:423.630000px;}
.y14_c00199{bottom:440.730000px;}
.y3a_c00199{bottom:441.480000px;}
.y39_c00199{bottom:458.730000px;}
.y13_c00199{bottom:459.330000px;}
.y12_c00199{bottom:476.580000px;}
.y38_c00199{bottom:477.630000px;}
.y11_c00199{bottom:494.880000px;}
.y37_c00199{bottom:495.780000px;}
.y10_c00199{bottom:512.730000px;}
.y36_c00199{bottom:513.330000px;}
.yf_c00199{bottom:529.530000px;}
.y35_c00199{bottom:531.330000px;}
.ye_c00199{bottom:547.530000px;}
.y34_c00199{bottom:549.780000px;}
.yd_c00199{bottom:565.680000px;}
.y33_c00199{bottom:567.630000px;}
.yc_c00199{bottom:583.530000px;}
.yb_c00199{bottom:601.830000px;}
.y32_c00199{bottom:603.780000px;}
.ya_c00199{bottom:619.680000px;}
.y31_c00199{bottom:621.630000px;}
.y9_c00199{bottom:637.530000px;}
.y30_c00199{bottom:640.530000px;}
.y8_c00199{bottom:656.430000px;}
.y2f_c00199{bottom:657.480000px;}
.y7_c00199{bottom:673.980000px;}
.y2e_c00199{bottom:692.280000px;}
.y6_c00199{bottom:692.580000px;}
.y5_c00199{bottom:710.130000px;}
.y2d_c00199{bottom:727.680000px;}
.y4_c00199{bottom:728.430000px;}
.y3_c00199{bottom:745.980000px;}
.y2c_c00199{bottom:746.580000px;}
.y2_c00199{bottom:763.830000px;}
.y2b_c00199{bottom:764.880000px;}
.y1_c00199{bottom:782.280000px;}
.y2a_c00199{bottom:783.030000px;}
.y29_c00199{bottom:801.630000px;}
.h5_c00199{height:13.200074px;}
.h6_c00199{height:43.804688px;}
.h3_c00199{height:59.736000px;}
.h2_c00199{height:62.880000px;}
.h4_c00199{height:65.040000px;}
.h1_c00199{height:843.750000px;}
.h0_c00199{height:844.050000px;}
.w2_c00199{width:104.875500px;}
.w0_c00199{width:559.950000px;}
.w1_c00199{width:560.250000px;}
.x0_c00199{left:0.000000px;}
.x3_c00199{left:28.800000px;}
.x4_c00199{left:30.000000px;}
.x5_c00199{left:31.800000px;}
.x9_c00199{left:80.100000px;}
.xa_c00199{left:82.650000px;}
.x8_c00199{left:85.350000px;}
.x7_c00199{left:86.400000px;}
.x6_c00199{left:87.750000px;}
.x2_c00199{left:90.750000px;}
.x1_c00199{left:92.100000px;}
.xb_c00199{left:221.100000px;}
.x1f_c00199{left:231.789230px;}
.x1b_c00199{left:301.800000px;}
.x1c_c00199{left:302.850000px;}
.x19_c00199{left:304.350000px;}
.x1a_c00199{left:305.550000px;}
.x18_c00199{left:306.750000px;}
.x17_c00199{left:308.250000px;}
.x13_c00199{left:309.600000px;}
.x14_c00199{left:310.950000px;}
.xe_c00199{left:312.300000px;}
.xc_c00199{left:313.650000px;}
.xd_c00199{left:315.000000px;}
.x15_c00199{left:319.950000px;}
.x10_c00199{left:331.200000px;}
.x16_c00199{left:337.200000px;}
.x11_c00199{left:371.550000px;}
.xf_c00199{left:373.050000px;}
.x12_c00199{left:390.900000px;}
.x1e_c00199{left:464.700000px;}
.x1d_c00199{left:507.600000px;}
@media print{
.v0_c00199{vertical-align:0.000000pt;}
.ls7_c00199{letter-spacing:0.000000pt;}
.ls3_c00199{letter-spacing:2.666667pt;}
.ls4_c00199{letter-spacing:4.160000pt;}
.ls0_c00199{letter-spacing:5.333333pt;}
.ls6_c00199{letter-spacing:8.000000pt;}
.ls2_c00199{letter-spacing:12.968000pt;}
.ls8_c00199{letter-spacing:13.333333pt;}
.ls1_c00199{letter-spacing:13.760000pt;}
.ls5_c00199{letter-spacing:18.506667pt;}
.ws8_c00199{word-spacing:-40.229333pt;}
.ws6_c00199{word-spacing:-37.994667pt;}
.ws5_c00199{word-spacing:-26.040000pt;}
.ws0_c00199{word-spacing:-20.109333pt;}
.ws7_c00199{word-spacing:-18.933333pt;}
.ws2_c00199{word-spacing:-18.080000pt;}
.ws3_c00199{word-spacing:-16.053333pt;}
.ws1_c00199{word-spacing:-12.586667pt;}
.ws4_c00199{word-spacing:-0.106667pt;}
.ws9_c00199{word-spacing:0.000000pt;}
._2a_c00199{margin-left:-19.928000pt;}
._c_c00199{margin-left:-18.754667pt;}
._22_c00199{margin-left:-14.000000pt;}
._24_c00199{margin-left:-12.613333pt;}
._25_c00199{margin-left:-11.648000pt;}
._d_c00199{margin-left:-10.186667pt;}
._4_c00199{margin-left:-8.586667pt;}
._a_c00199{margin-left:-7.306667pt;}
._3_c00199{margin-left:-5.813333pt;}
._6_c00199{margin-left:-4.426667pt;}
._7_c00199{margin-left:-3.040000pt;}
._1_c00199{margin-left:-1.866667pt;}
._0_c00199{margin-left:-0.906667pt;}
._14_c00199{width:1.120000pt;}
._b_c00199{width:2.186667pt;}
._12_c00199{width:3.893333pt;}
._11_c00199{width:4.853333pt;}
._13_c00199{width:5.920000pt;}
._9_c00199{width:7.413333pt;}
._8_c00199{width:8.586667pt;}
._5_c00199{width:9.653333pt;}
._2_c00199{width:11.413333pt;}
._1a_c00199{width:14.368000pt;}
._15_c00199{width:16.746667pt;}
._26_c00199{width:17.760000pt;}
._1d_c00199{width:19.146667pt;}
._10_c00199{width:21.653333pt;}
._29_c00199{width:22.773333pt;}
._20_c00199{width:24.106667pt;}
._1e_c00199{width:25.226667pt;}
._18_c00199{width:26.986667pt;}
._1f_c00199{width:31.072000pt;}
._f_c00199{width:32.053333pt;}
._e_c00199{width:35.306667pt;}
._21_c00199{width:36.480000pt;}
._16_c00199{width:38.453333pt;}
._1c_c00199{width:48.106667pt;}
._27_c00199{width:66.421333pt;}
._28_c00199{width:90.720000pt;}
._17_c00199{width:114.880000pt;}
._23_c00199{width:149.864000pt;}
._19_c00199{width:228.160000pt;}
._1b_c00199{width:347.690667pt;}
.fs2_c00199{font-size:21.333333pt;}
.fs4_c00199{font-size:40.000000pt;}
.fs5_c00199{font-size:42.666667pt;}
.fs3_c00199{font-size:45.333333pt;}
.fs1_c00199{font-size:50.666667pt;}
.fs0_c00199{font-size:53.333333pt;}
.y0_c00199{bottom:0.000000pt;}
.y55_c00199{bottom:2.760000pt;}
.y54_c00199{bottom:6.425206pt;}
.y53_c00199{bottom:40.826667pt;}
.y52_c00199{bottom:55.760000pt;}
.y28_c00199{bottom:71.360000pt;}
.y4d_c00199{bottom:72.693333pt;}
.y27_c00199{bottom:87.093333pt;}
.y4c_c00199{bottom:88.560000pt;}
.y26_c00199{bottom:102.960000pt;}
.y4b_c00199{bottom:104.693333pt;}
.y25_c00199{bottom:118.826667pt;}
.y4a_c00199{bottom:120.293333pt;}
.y51_c00199{bottom:121.893333pt;}
.y24_c00199{bottom:135.626667pt;}
.y49_c00199{bottom:136.560000pt;}
.y50_c00199{bottom:137.360000pt;}
.y23_c00199{bottom:150.960000pt;}
.y48_c00199{bottom:152.426667pt;}
.y4f_c00199{bottom:153.093333pt;}
.y22_c00199{bottom:167.760000pt;}
.y47_c00199{bottom:168.560000pt;}
.y4e_c00199{bottom:169.493333pt;}
.y21_c00199{bottom:183.626667pt;}
.y20_c00199{bottom:198.693333pt;}
.y46_c00199{bottom:199.893333pt;}
.y1f_c00199{bottom:215.493333pt;}
.y45_c00199{bottom:216.026667pt;}
.y1e_c00199{bottom:231.093333pt;}
.y44_c00199{bottom:231.893333pt;}
.y1d_c00199{bottom:247.226667pt;}
.y43_c00199{bottom:247.893333pt;}
.y1c_c00199{bottom:263.093333pt;}
.y42_c00199{bottom:263.760000pt;}
.y1b_c00199{bottom:279.360000pt;}
.y41_c00199{bottom:279.626667pt;}
.y1a_c00199{bottom:295.493333pt;}
.y40_c00199{bottom:295.893333pt;}
.y19_c00199{bottom:311.493333pt;}
.y3f_c00199{bottom:312.293333pt;}
.y18_c00199{bottom:327.626667pt;}
.y3e_c00199{bottom:328.160000pt;}
.y17_c00199{bottom:343.493333pt;}
.y3d_c00199{bottom:344.160000pt;}
.y16_c00199{bottom:359.493333pt;}
.y3c_c00199{bottom:360.960000pt;}
.y15_c00199{bottom:375.626667pt;}
.y3b_c00199{bottom:376.560000pt;}
.y14_c00199{bottom:391.760000pt;}
.y3a_c00199{bottom:392.426667pt;}
.y39_c00199{bottom:407.760000pt;}
.y13_c00199{bottom:408.293333pt;}
.y12_c00199{bottom:423.626667pt;}
.y38_c00199{bottom:424.560000pt;}
.y11_c00199{bottom:439.893333pt;}
.y37_c00199{bottom:440.693333pt;}
.y10_c00199{bottom:455.760000pt;}
.y36_c00199{bottom:456.293333pt;}
.yf_c00199{bottom:470.693333pt;}
.y35_c00199{bottom:472.293333pt;}
.ye_c00199{bottom:486.693333pt;}
.y34_c00199{bottom:488.693333pt;}
.yd_c00199{bottom:502.826667pt;}
.y33_c00199{bottom:504.560000pt;}
.yc_c00199{bottom:518.693333pt;}
.yb_c00199{bottom:534.960000pt;}
.y32_c00199{bottom:536.693333pt;}
.ya_c00199{bottom:550.826667pt;}
.y31_c00199{bottom:552.560000pt;}
.y9_c00199{bottom:566.693333pt;}
.y30_c00199{bottom:569.360000pt;}
.y8_c00199{bottom:583.493333pt;}
.y2f_c00199{bottom:584.426667pt;}
.y7_c00199{bottom:599.093333pt;}
.y2e_c00199{bottom:615.360000pt;}
.y6_c00199{bottom:615.626667pt;}
.y5_c00199{bottom:631.226667pt;}
.y2d_c00199{bottom:646.826667pt;}
.y4_c00199{bottom:647.493333pt;}
.y3_c00199{bottom:663.093333pt;}
.y2c_c00199{bottom:663.626667pt;}
.y2_c00199{bottom:678.960000pt;}
.y2b_c00199{bottom:679.893333pt;}
.y1_c00199{bottom:695.360000pt;}
.y2a_c00199{bottom:696.026667pt;}
.y29_c00199{bottom:712.560000pt;}
.h5_c00199{height:11.733399pt;}
.h6_c00199{height:38.937500pt;}
.h3_c00199{height:53.098667pt;}
.h2_c00199{height:55.893333pt;}
.h4_c00199{height:57.813333pt;}
.h1_c00199{height:750.000000pt;}
.h0_c00199{height:750.266667pt;}
.w2_c00199{width:93.222667pt;}
.w0_c00199{width:497.733333pt;}
.w1_c00199{width:498.000000pt;}
.x0_c00199{left:0.000000pt;}
.x3_c00199{left:25.600000pt;}
.x4_c00199{left:26.666667pt;}
.x5_c00199{left:28.266667pt;}
.x9_c00199{left:71.200000pt;}
.xa_c00199{left:73.466667pt;}
.x8_c00199{left:75.866667pt;}
.x7_c00199{left:76.800000pt;}
.x6_c00199{left:78.000000pt;}
.x2_c00199{left:80.666667pt;}
.x1_c00199{left:81.866667pt;}
.xb_c00199{left:196.533333pt;}
.x1f_c00199{left:206.034871pt;}
.x1b_c00199{left:268.266667pt;}
.x1c_c00199{left:269.200000pt;}
.x19_c00199{left:270.533333pt;}
.x1a_c00199{left:271.600000pt;}
.x18_c00199{left:272.666667pt;}
.x17_c00199{left:274.000000pt;}
.x13_c00199{left:275.200000pt;}
.x14_c00199{left:276.400000pt;}
.xe_c00199{left:277.600000pt;}
.xc_c00199{left:278.800000pt;}
.xd_c00199{left:280.000000pt;}
.x15_c00199{left:284.400000pt;}
.x10_c00199{left:294.400000pt;}
.x16_c00199{left:299.733333pt;}
.x11_c00199{left:330.266667pt;}
.xf_c00199{left:331.600000pt;}
.x12_c00199{left:347.466667pt;}
.x1e_c00199{left:413.066667pt;}
.x1d_c00199{left:451.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_134f0bb409aaa7efadd673bb.woff2')format("woff");}.ff1_c00200{font-family:ff1_c00200;line-height:1.437000;font-style:normal;font-weight:normal;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_14e6213f237255d010703a2c.woff2')format("woff");}.ff2_c00200{font-family:ff2_c00200;line-height:1.437000;font-style:normal;font-weight:normal;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_5d0b67a8da63e9cc70fbba61.woff2')format("woff");}.ff3_c00200{font-family:ff3_c00200;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00200;src:url('chunks/assets/font_6105c17c3228052140a0ebdf.woff2')format("woff");}.ff4_c00200{font-family:ff4_c00200;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00200;src:url('chunks/assets/font_d7c92a95d91aa1afae0d1acb.woff2')format("woff");}.ff5_c00200{font-family:ff5_c00200;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00200;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff6_c00200{font-family:ff6_c00200;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00200{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00200{vertical-align:0.000000px;}
.ls6_c00200{letter-spacing:0.000000px;}
.ls4_c00200{letter-spacing:1.605000px;}
.ls1_c00200{letter-spacing:3.000000px;}
.ls3_c00200{letter-spacing:4.005000px;}
.ls2_c00200{letter-spacing:6.600000px;}
.ls5_c00200{letter-spacing:8.340000px;}
.ls0_c00200{letter-spacing:12.480000px;}
.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:-29.295000px;}
.ws1_c00200{word-spacing:-17.340000px;}
.ws0_c00200{word-spacing:-14.160000px;}
.ws3_c00200{word-spacing:0.000000px;}
._16_c00200{margin-left:-20.940000px;}
._4_c00200{margin-left:-14.160000px;}
._24_c00200{margin-left:-13.095000px;}
._c_c00200{margin-left:-11.220000px;}
._33_c00200{margin-left:-9.120000px;}
._a_c00200{margin-left:-7.620000px;}
._b_c00200{margin-left:-6.540000px;}
._10_c00200{margin-left:-4.860000px;}
._1_c00200{margin-left:-3.300000px;}
._0_c00200{margin-left:-2.040000px;}
._1c_c00200{margin-left:-1.020000px;}
._3_c00200{width:1.080000px;}
._e_c00200{width:2.760000px;}
._6_c00200{width:4.140000px;}
._5_c00200{width:5.640000px;}
._22_c00200{width:6.645000px;}
._8_c00200{width:7.680000px;}
._23_c00200{width:8.880000px;}
._7_c00200{width:10.020000px;}
._21_c00200{width:11.100000px;}
._15_c00200{width:12.180000px;}
._13_c00200{width:13.500000px;}
._d_c00200{width:15.240000px;}
._f_c00200{width:16.800000px;}
._1d_c00200{width:18.420000px;}
._9_c00200{width:20.340000px;}
._20_c00200{width:21.660000px;}
._1e_c00200{width:22.740000px;}
._18_c00200{width:24.540000px;}
._17_c00200{width:25.800000px;}
._14_c00200{width:27.420000px;}
._2f_c00200{width:28.500000px;}
._1f_c00200{width:30.360000px;}
._25_c00200{width:31.380000px;}
._1a_c00200{width:32.820000px;}
._28_c00200{width:34.920000px;}
._2c_c00200{width:36.060000px;}
._1b_c00200{width:37.260000px;}
._11_c00200{width:39.480000px;}
._32_c00200{width:40.800000px;}
._19_c00200{width:41.880000px;}
._2d_c00200{width:42.960000px;}
._2e_c00200{width:44.820000px;}
._12_c00200{width:46.320000px;}
._31_c00200{width:49.620000px;}
._30_c00200{width:56.100000px;}
._2a_c00200{width:58.560000px;}
._2_c00200{width:61.020000px;}
._2b_c00200{width:66.600000px;}
._26_c00200{width:85.320000px;}
._29_c00200{width:146.880000px;}
._27_c00200{width:155.115000px;}
.fc2_c00200{color:transparent;}
.fc1_c00200{color:rgb(128,128,128);}
.fc0_c00200{color:rgb(0,0,0);}
.fs1_c00200{font-size:45.000000px;}
.fs2_c00200{font-size:48.000000px;}
.fs0_c00200{font-size:60.000000px;}
.y0_c00200{bottom:0.000000px;}
.y53_c00200{bottom:3.105000px;}
.y52_c00200{bottom:7.228371px;}
.y51_c00200{bottom:58.815000px;}
.y29_c00200{bottom:63.915000px;}
.y50_c00200{bottom:77.715000px;}
.y28_c00200{bottom:82.365000px;}
.y4f_c00200{bottom:95.565000px;}
.y27_c00200{bottom:99.915000px;}
.y4e_c00200{bottom:113.715000px;}
.y26_c00200{bottom:117.765000px;}
.y4d_c00200{bottom:132.015000px;}
.y25_c00200{bottom:135.765000px;}
.y4c_c00200{bottom:149.565000px;}
.y24_c00200{bottom:153.615000px;}
.y4b_c00200{bottom:167.865000px;}
.y23_c00200{bottom:171.465000px;}
.y4a_c00200{bottom:185.415000px;}
.y22_c00200{bottom:189.465000px;}
.y49_c00200{bottom:203.265000px;}
.y21_c00200{bottom:208.215000px;}
.y48_c00200{bottom:221.415000px;}
.y20_c00200{bottom:225.165000px;}
.y47_c00200{bottom:239.415000px;}
.y1f_c00200{bottom:243.015000px;}
.y46_c00200{bottom:257.565000px;}
.y1e_c00200{bottom:261.315000px;}
.y45_c00200{bottom:275.865000px;}
.y1d_c00200{bottom:279.165000px;}
.y44_c00200{bottom:293.715000px;}
.y1c_c00200{bottom:296.415000px;}
.y43_c00200{bottom:311.865000px;}
.y1b_c00200{bottom:314.715000px;}
.y42_c00200{bottom:329.715000px;}
.y1a_c00200{bottom:332.565000px;}
.y41_c00200{bottom:348.315000px;}
.y19_c00200{bottom:350.415000px;}
.y40_c00200{bottom:365.565000px;}
.y18_c00200{bottom:368.865000px;}
.y3f_c00200{bottom:384.165000px;}
.y17_c00200{bottom:386.565000px;}
.y3e_c00200{bottom:402.015000px;}
.y16_c00200{bottom:404.715000px;}
.y3d_c00200{bottom:419.865000px;}
.y15_c00200{bottom:422.265000px;}
.y3c_c00200{bottom:438.165000px;}
.y14_c00200{bottom:440.565000px;}
.y3b_c00200{bottom:455.715000px;}
.y13_c00200{bottom:459.015000px;}
.y3a_c00200{bottom:474.165000px;}
.y12_c00200{bottom:476.265000px;}
.y39_c00200{bottom:491.865000px;}
.y11_c00200{bottom:493.815000px;}
.y38_c00200{bottom:509.415000px;}
.y10_c00200{bottom:511.665000px;}
.y37_c00200{bottom:527.865000px;}
.yf_c00200{bottom:529.515000px;}
.y36_c00200{bottom:545.715000px;}
.ye_c00200{bottom:547.065000px;}
.y35_c00200{bottom:564.615000px;}
.yd_c00200{bottom:564.765000px;}
.y34_c00200{bottom:581.565000px;}
.yc_c00200{bottom:582.615000px;}
.y33_c00200{bottom:599.415000px;}
.yb_c00200{bottom:600.765000px;}
.y32_c00200{bottom:617.415000px;}
.ya_c00200{bottom:618.765000px;}
.y31_c00200{bottom:634.965000px;}
.y9_c00200{bottom:636.315000px;}
.y30_c00200{bottom:653.415000px;}
.y8_c00200{bottom:653.865000px;}
.y2f_c00200{bottom:671.415000px;}
.y7_c00200{bottom:672.165000px;}
.y2e_c00200{bottom:689.265000px;}
.y6_c00200{bottom:690.165000px;}
.y2d_c00200{bottom:707.715000px;}
.y5_c00200{bottom:708.165000px;}
.y2c_c00200{bottom:725.715000px;}
.y4_c00200{bottom:726.015000px;}
.y2b_c00200{bottom:743.865000px;}
.y3_c00200{bottom:744.165000px;}
.y2a_c00200{bottom:761.865000px;}
.y2_c00200{bottom:762.165000px;}
.y1_c00200{bottom:780.015000px;}
.h4_c00200{height:13.200074px;}
.h5_c00200{height:43.804688px;}
.h2_c00200{height:62.880000px;}
.h3_c00200{height:64.020000px;}
.h0_c00200{height:833.775000px;}
.h1_c00200{height:834.000000px;}
.w2_c00200{width:104.875500px;}
.w1_c00200{width:583.500000px;}
.w0_c00200{width:583.725000px;}
.x0_c00200{left:0.000000px;}
.xd_c00200{left:13.500000px;}
.xc_c00200{left:16.650000px;}
.xe_c00200{left:17.850000px;}
.x2_c00200{left:64.800000px;}
.x1_c00200{left:65.850000px;}
.x3_c00200{left:67.200000px;}
.x4_c00200{left:68.550000px;}
.x5_c00200{left:69.900000px;}
.x6_c00200{left:71.250000px;}
.x8_c00200{left:73.200000px;}
.x9_c00200{left:74.550000px;}
.xa_c00200{left:75.900000px;}
.xb_c00200{left:76.950000px;}
.xf_c00200{left:78.750000px;}
.x10_c00200{left:79.950000px;}
.x7_c00200{left:104.700000px;}
.x1c_c00200{left:243.676758px;}
.x11_c00200{left:284.250000px;}
.x12_c00200{left:285.300000px;}
.x13_c00200{left:286.650000px;}
.x14_c00200{left:287.850000px;}
.x16_c00200{left:289.200000px;}
.x17_c00200{left:290.250000px;}
.x18_c00200{left:291.300000px;}
.x1a_c00200{left:292.650000px;}
.x1b_c00200{left:293.850000px;}
.x15_c00200{left:306.450000px;}
.x19_c00200{left:317.250000px;}
@media print{
.v0_c00200{vertical-align:0.000000pt;}
.ls6_c00200{letter-spacing:0.000000pt;}
.ls4_c00200{letter-spacing:1.426667pt;}
.ls1_c00200{letter-spacing:2.666667pt;}
.ls3_c00200{letter-spacing:3.560000pt;}
.ls2_c00200{letter-spacing:5.866667pt;}
.ls5_c00200{letter-spacing:7.413333pt;}
.ls0_c00200{letter-spacing:11.093333pt;}
.ws2_c00200{word-spacing:-26.040000pt;}
.ws1_c00200{word-spacing:-15.413333pt;}
.ws0_c00200{word-spacing:-12.586667pt;}
.ws3_c00200{word-spacing:0.000000pt;}
._16_c00200{margin-left:-18.613333pt;}
._4_c00200{margin-left:-12.586667pt;}
._24_c00200{margin-left:-11.640000pt;}
._c_c00200{margin-left:-9.973333pt;}
._33_c00200{margin-left:-8.106667pt;}
._a_c00200{margin-left:-6.773333pt;}
._b_c00200{margin-left:-5.813333pt;}
._10_c00200{margin-left:-4.320000pt;}
._1_c00200{margin-left:-2.933333pt;}
._0_c00200{margin-left:-1.813333pt;}
._1c_c00200{margin-left:-0.906667pt;}
._3_c00200{width:0.960000pt;}
._e_c00200{width:2.453333pt;}
._6_c00200{width:3.680000pt;}
._5_c00200{width:5.013333pt;}
._22_c00200{width:5.906667pt;}
._8_c00200{width:6.826667pt;}
._23_c00200{width:7.893333pt;}
._7_c00200{width:8.906667pt;}
._21_c00200{width:9.866667pt;}
._15_c00200{width:10.826667pt;}
._13_c00200{width:12.000000pt;}
._d_c00200{width:13.546667pt;}
._f_c00200{width:14.933333pt;}
._1d_c00200{width:16.373333pt;}
._9_c00200{width:18.080000pt;}
._20_c00200{width:19.253333pt;}
._1e_c00200{width:20.213333pt;}
._18_c00200{width:21.813333pt;}
._17_c00200{width:22.933333pt;}
._14_c00200{width:24.373333pt;}
._2f_c00200{width:25.333333pt;}
._1f_c00200{width:26.986667pt;}
._25_c00200{width:27.893333pt;}
._1a_c00200{width:29.173333pt;}
._28_c00200{width:31.040000pt;}
._2c_c00200{width:32.053333pt;}
._1b_c00200{width:33.120000pt;}
._11_c00200{width:35.093333pt;}
._32_c00200{width:36.266667pt;}
._19_c00200{width:37.226667pt;}
._2d_c00200{width:38.186667pt;}
._2e_c00200{width:39.840000pt;}
._12_c00200{width:41.173333pt;}
._31_c00200{width:44.106667pt;}
._30_c00200{width:49.866667pt;}
._2a_c00200{width:52.053333pt;}
._2_c00200{width:54.240000pt;}
._2b_c00200{width:59.200000pt;}
._26_c00200{width:75.840000pt;}
._29_c00200{width:130.560000pt;}
._27_c00200{width:137.880000pt;}
.fs1_c00200{font-size:40.000000pt;}
.fs2_c00200{font-size:42.666667pt;}
.fs0_c00200{font-size:53.333333pt;}
.y0_c00200{bottom:0.000000pt;}
.y53_c00200{bottom:2.760000pt;}
.y52_c00200{bottom:6.425219pt;}
.y51_c00200{bottom:52.280000pt;}
.y29_c00200{bottom:56.813333pt;}
.y50_c00200{bottom:69.080000pt;}
.y28_c00200{bottom:73.213333pt;}
.y4f_c00200{bottom:84.946667pt;}
.y27_c00200{bottom:88.813333pt;}
.y4e_c00200{bottom:101.080000pt;}
.y26_c00200{bottom:104.680000pt;}
.y4d_c00200{bottom:117.346667pt;}
.y25_c00200{bottom:120.680000pt;}
.y4c_c00200{bottom:132.946667pt;}
.y24_c00200{bottom:136.546667pt;}
.y4b_c00200{bottom:149.213333pt;}
.y23_c00200{bottom:152.413333pt;}
.y4a_c00200{bottom:164.813333pt;}
.y22_c00200{bottom:168.413333pt;}
.y49_c00200{bottom:180.680000pt;}
.y21_c00200{bottom:185.080000pt;}
.y48_c00200{bottom:196.813333pt;}
.y20_c00200{bottom:200.146667pt;}
.y47_c00200{bottom:212.813333pt;}
.y1f_c00200{bottom:216.013333pt;}
.y46_c00200{bottom:228.946667pt;}
.y1e_c00200{bottom:232.280000pt;}
.y45_c00200{bottom:245.213333pt;}
.y1d_c00200{bottom:248.146667pt;}
.y44_c00200{bottom:261.080000pt;}
.y1c_c00200{bottom:263.480000pt;}
.y43_c00200{bottom:277.213333pt;}
.y1b_c00200{bottom:279.746667pt;}
.y42_c00200{bottom:293.080000pt;}
.y1a_c00200{bottom:295.613333pt;}
.y41_c00200{bottom:309.613333pt;}
.y19_c00200{bottom:311.480000pt;}
.y40_c00200{bottom:324.946667pt;}
.y18_c00200{bottom:327.880000pt;}
.y3f_c00200{bottom:341.480000pt;}
.y17_c00200{bottom:343.613333pt;}
.y3e_c00200{bottom:357.346667pt;}
.y16_c00200{bottom:359.746667pt;}
.y3d_c00200{bottom:373.213333pt;}
.y15_c00200{bottom:375.346667pt;}
.y3c_c00200{bottom:389.480000pt;}
.y14_c00200{bottom:391.613333pt;}
.y3b_c00200{bottom:405.080000pt;}
.y13_c00200{bottom:408.013333pt;}
.y3a_c00200{bottom:421.480000pt;}
.y12_c00200{bottom:423.346667pt;}
.y39_c00200{bottom:437.213333pt;}
.y11_c00200{bottom:438.946667pt;}
.y38_c00200{bottom:452.813333pt;}
.y10_c00200{bottom:454.813333pt;}
.y37_c00200{bottom:469.213333pt;}
.yf_c00200{bottom:470.680000pt;}
.y36_c00200{bottom:485.080000pt;}
.ye_c00200{bottom:486.280000pt;}
.y35_c00200{bottom:501.880000pt;}
.yd_c00200{bottom:502.013333pt;}
.y34_c00200{bottom:516.946667pt;}
.yc_c00200{bottom:517.880000pt;}
.y33_c00200{bottom:532.813333pt;}
.yb_c00200{bottom:534.013333pt;}
.y32_c00200{bottom:548.813333pt;}
.ya_c00200{bottom:550.013333pt;}
.y31_c00200{bottom:564.413333pt;}
.y9_c00200{bottom:565.613333pt;}
.y30_c00200{bottom:580.813333pt;}
.y8_c00200{bottom:581.213333pt;}
.y2f_c00200{bottom:596.813333pt;}
.y7_c00200{bottom:597.480000pt;}
.y2e_c00200{bottom:612.680000pt;}
.y6_c00200{bottom:613.480000pt;}
.y2d_c00200{bottom:629.080000pt;}
.y5_c00200{bottom:629.480000pt;}
.y2c_c00200{bottom:645.080000pt;}
.y4_c00200{bottom:645.346667pt;}
.y2b_c00200{bottom:661.213333pt;}
.y3_c00200{bottom:661.480000pt;}
.y2a_c00200{bottom:677.213333pt;}
.y2_c00200{bottom:677.480000pt;}
.y1_c00200{bottom:693.346667pt;}
.h4_c00200{height:11.733399pt;}
.h5_c00200{height:38.937500pt;}
.h2_c00200{height:55.893333pt;}
.h3_c00200{height:56.906667pt;}
.h0_c00200{height:741.133333pt;}
.h1_c00200{height:741.333333pt;}
.w2_c00200{width:93.222667pt;}
.w1_c00200{width:518.666667pt;}
.w0_c00200{width:518.866667pt;}
.x0_c00200{left:0.000000pt;}
.xd_c00200{left:12.000000pt;}
.xc_c00200{left:14.800000pt;}
.xe_c00200{left:15.866667pt;}
.x2_c00200{left:57.600000pt;}
.x1_c00200{left:58.533333pt;}
.x3_c00200{left:59.733333pt;}
.x4_c00200{left:60.933333pt;}
.x5_c00200{left:62.133333pt;}
.x6_c00200{left:63.333333pt;}
.x8_c00200{left:65.066667pt;}
.x9_c00200{left:66.266667pt;}
.xa_c00200{left:67.466667pt;}
.xb_c00200{left:68.400000pt;}
.xf_c00200{left:70.000000pt;}
.x10_c00200{left:71.066667pt;}
.x7_c00200{left:93.066667pt;}
.x1c_c00200{left:216.601563pt;}
.x11_c00200{left:252.666667pt;}
.x12_c00200{left:253.600000pt;}
.x13_c00200{left:254.800000pt;}
.x14_c00200{left:255.866667pt;}
.x16_c00200{left:257.066667pt;}
.x17_c00200{left:258.000000pt;}
.x18_c00200{left:258.933333pt;}
.x1a_c00200{left:260.133333pt;}
.x1b_c00200{left:261.200000pt;}
.x15_c00200{left:272.400000pt;}
.x19_c00200{left:282.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_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_9ea21a612b1d1b4e3629377a.woff2')format("woff");}.ff1_c00201{font-family:ff1_c00201;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00201;src:url('chunks/assets/font_10111bec93f5ecba9f28b761.woff2')format("woff");}.ff2_c00201{font-family:ff2_c00201;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00201;src:url('chunks/assets/font_f3790c11fa1b72b5ebd5d0f3.woff2')format("woff");}.ff3_c00201{font-family:ff3_c00201;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00201;src:url('chunks/assets/font_f5483ed6651ccca3428271e5.woff2')format("woff");}.ff4_c00201{font-family:ff4_c00201;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00201;src:url('chunks/assets/font_b9c11cb4e0e33f6de4daa1b3.woff2')format("woff");}.ff5_c00201{font-family:ff5_c00201;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00201;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff6_c00201{font-family:ff6_c00201;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00201{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00201{vertical-align:0.000000px;}
.v1_c00201{vertical-align:110.400000px;}
.ls4_c00201{letter-spacing:0.000000px;}
.ls3_c00201{letter-spacing:3.000000px;}
.ls0_c00201{letter-spacing:28.482000px;}
.ls1_c00201{letter-spacing:38.493000px;}
.ls2_c00201{letter-spacing:127.293000px;}
.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;}
}
.ws4_c00201{word-spacing:-40.200000px;}
.ws1_c00201{word-spacing:-29.295000px;}
.ws3_c00201{word-spacing:-17.340000px;}
.ws0_c00201{word-spacing:-14.160000px;}
.ws2_c00201{word-spacing:-13.452000px;}
.ws5_c00201{word-spacing:0.000000px;}
._8_c00201{margin-left:-17.880000px;}
._18_c00201{margin-left:-12.900000px;}
._23_c00201{margin-left:-10.800000px;}
._17_c00201{margin-left:-8.880000px;}
._2d_c00201{margin-left:-6.720000px;}
._4_c00201{margin-left:-5.040000px;}
._5_c00201{margin-left:-3.180000px;}
._7_c00201{margin-left:-1.560000px;}
._1_c00201{width:1.320000px;}
._0_c00201{width:2.700000px;}
._c_c00201{width:3.720000px;}
._9_c00201{width:4.800000px;}
._d_c00201{width:5.820000px;}
._b_c00201{width:6.960000px;}
._a_c00201{width:7.980000px;}
._e_c00201{width:9.420000px;}
._f_c00201{width:10.440000px;}
._15_c00201{width:11.700000px;}
._14_c00201{width:13.200000px;}
._1f_c00201{width:15.180000px;}
._3e_c00201{width:16.200000px;}
._19_c00201{width:17.220000px;}
._1e_c00201{width:19.200000px;}
._3_c00201{width:20.460000px;}
._2b_c00201{width:21.660000px;}
._20_c00201{width:22.800000px;}
._2_c00201{width:24.120000px;}
._6_c00201{width:26.340000px;}
._1b_c00201{width:27.960000px;}
._3f_c00201{width:29.580000px;}
._22_c00201{width:31.260000px;}
._30_c00201{width:32.460000px;}
._34_c00201{width:33.540000px;}
._12_c00201{width:34.680000px;}
._35_c00201{width:36.300000px;}
._26_c00201{width:39.420000px;}
._38_c00201{width:40.980000px;}
._13_c00201{width:42.300000px;}
._39_c00201{width:45.780000px;}
._32_c00201{width:48.300000px;}
._1a_c00201{width:76.740000px;}
._11_c00201{width:92.940000px;}
._16_c00201{width:95.040000px;}
._2c_c00201{width:96.480000px;}
._21_c00201{width:98.820000px;}
._27_c00201{width:99.960000px;}
._25_c00201{width:101.940000px;}
._29_c00201{width:103.380000px;}
._2a_c00201{width:105.360000px;}
._28_c00201{width:106.920000px;}
._1c_c00201{width:109.680000px;}
._31_c00201{width:111.480000px;}
._33_c00201{width:119.100000px;}
._40_c00201{width:122.940000px;}
._24_c00201{width:163.980000px;}
._3a_c00201{width:169.320000px;}
._10_c00201{width:171.720000px;}
._3d_c00201{width:190.146000px;}
._3b_c00201{width:243.120000px;}
._2f_c00201{width:262.800000px;}
._2e_c00201{width:286.320000px;}
._1d_c00201{width:315.420000px;}
._37_c00201{width:402.420000px;}
._3c_c00201{width:461.280000px;}
._36_c00201{width:725.040000px;}
.fc2_c00201{color:transparent;}
.fc1_c00201{color:rgb(128,128,128);}
.fc0_c00201{color:rgb(0,0,0);}
.fs1_c00201{font-size:45.000000px;}
.fs4_c00201{font-size:48.000000px;}
.fs3_c00201{font-size:57.000000px;}
.fs0_c00201{font-size:60.000000px;}
.fs2_c00201{font-size:207.000000px;}
.y0_c00201{bottom:0.000000px;}
.y2c_c00201{bottom:3.105000px;}
.y2b_c00201{bottom:7.228369px;}
.y2a_c00201{bottom:40.470000px;}
.y29_c00201{bottom:57.720000px;}
.y28_c00201{bottom:76.470000px;}
.y27_c00201{bottom:95.370000px;}
.y25_c00201{bottom:103.920000px;}
.y26_c00201{bottom:113.970000px;}
.y24_c00201{bottom:149.820000px;}
.y23_c00201{bottom:167.070000px;}
.y22_c00201{bottom:185.520000px;}
.y21_c00201{bottom:203.070000px;}
.y20_c00201{bottom:220.770000px;}
.y1f_c00201{bottom:239.520000px;}
.y1e_c00201{bottom:257.820000px;}
.y1d_c00201{bottom:275.670000px;}
.y1c_c00201{bottom:293.520000px;}
.y1b_c00201{bottom:311.070000px;}
.y1a_c00201{bottom:328.620000px;}
.y19_c00201{bottom:347.520000px;}
.y18_c00201{bottom:365.070000px;}
.y17_c00201{bottom:383.670000px;}
.y16_c00201{bottom:401.670000px;}
.y15_c00201{bottom:419.520000px;}
.y14_c00201{bottom:437.670000px;}
.y13_c00201{bottom:456.270000px;}
.y12_c00201{bottom:474.120000px;}
.y11_c00201{bottom:491.670000px;}
.y10_c00201{bottom:509.970000px;}
.yf_c00201{bottom:528.120000px;}
.ye_c00201{bottom:546.120000px;}
.yd_c00201{bottom:563.970000px;}
.yc_c00201{bottom:581.520000px;}
.yb_c00201{bottom:600.120000px;}
.ya_c00201{bottom:618.570000px;}
.y9_c00201{bottom:636.420000px;}
.y8_c00201{bottom:654.420000px;}
.y7_c00201{bottom:672.270000px;}
.y6_c00201{bottom:690.120000px;}
.y5_c00201{bottom:708.120000px;}
.y4_c00201{bottom:725.670000px;}
.y3_c00201{bottom:745.170000px;}
.y2_c00201{bottom:763.020000px;}
.y1_c00201{bottom:781.020000px;}
.h5_c00201{height:13.200073px;}
.h6_c00201{height:43.804688px;}
.h2_c00201{height:62.880000px;}
.h4_c00201{height:64.020000px;}
.h3_c00201{height:216.936000px;}
.h0_c00201{height:835.350000px;}
.h1_c00201{height:835.500000px;}
.w2_c00201{width:104.875500px;}
.w1_c00201{width:554.250000px;}
.w0_c00201{width:554.550000px;}
.x0_c00201{left:0.000000px;}
.x11_c00201{left:27.300000px;}
.x5_c00201{left:30.150000px;}
.x4_c00201{left:31.350000px;}
.x7_c00201{left:89.400000px;}
.x8_c00201{left:90.900000px;}
.x3_c00201{left:92.100000px;}
.x2_c00201{left:93.150000px;}
.x6_c00201{left:94.200000px;}
.xc_c00201{left:99.600000px;}
.x10_c00201{left:114.450000px;}
.x1_c00201{left:118.950000px;}
.xf_c00201{left:161.400000px;}
.xd_c00201{left:167.850000px;}
.xa_c00201{left:184.950000px;}
.x13_c00201{left:229.089249px;}
.xe_c00201{left:305.400000px;}
.xb_c00201{left:306.750000px;}
.x9_c00201{left:308.100000px;}
.x12_c00201{left:464.400000px;}
@media print{
.v0_c00201{vertical-align:0.000000pt;}
.v1_c00201{vertical-align:98.133333pt;}
.ls4_c00201{letter-spacing:0.000000pt;}
.ls3_c00201{letter-spacing:2.666667pt;}
.ls0_c00201{letter-spacing:25.317333pt;}
.ls1_c00201{letter-spacing:34.216000pt;}
.ls2_c00201{letter-spacing:113.149333pt;}
.ws4_c00201{word-spacing:-35.733333pt;}
.ws1_c00201{word-spacing:-26.040000pt;}
.ws3_c00201{word-spacing:-15.413333pt;}
.ws0_c00201{word-spacing:-12.586667pt;}
.ws2_c00201{word-spacing:-11.957333pt;}
.ws5_c00201{word-spacing:0.000000pt;}
._8_c00201{margin-left:-15.893333pt;}
._18_c00201{margin-left:-11.466667pt;}
._23_c00201{margin-left:-9.600000pt;}
._17_c00201{margin-left:-7.893333pt;}
._2d_c00201{margin-left:-5.973333pt;}
._4_c00201{margin-left:-4.480000pt;}
._5_c00201{margin-left:-2.826667pt;}
._7_c00201{margin-left:-1.386667pt;}
._1_c00201{width:1.173333pt;}
._0_c00201{width:2.400000pt;}
._c_c00201{width:3.306667pt;}
._9_c00201{width:4.266667pt;}
._d_c00201{width:5.173333pt;}
._b_c00201{width:6.186667pt;}
._a_c00201{width:7.093333pt;}
._e_c00201{width:8.373333pt;}
._f_c00201{width:9.280000pt;}
._15_c00201{width:10.400000pt;}
._14_c00201{width:11.733333pt;}
._1f_c00201{width:13.493333pt;}
._3e_c00201{width:14.400000pt;}
._19_c00201{width:15.306667pt;}
._1e_c00201{width:17.066667pt;}
._3_c00201{width:18.186667pt;}
._2b_c00201{width:19.253333pt;}
._20_c00201{width:20.266667pt;}
._2_c00201{width:21.440000pt;}
._6_c00201{width:23.413333pt;}
._1b_c00201{width:24.853333pt;}
._3f_c00201{width:26.293333pt;}
._22_c00201{width:27.786667pt;}
._30_c00201{width:28.853333pt;}
._34_c00201{width:29.813333pt;}
._12_c00201{width:30.826667pt;}
._35_c00201{width:32.266667pt;}
._26_c00201{width:35.040000pt;}
._38_c00201{width:36.426667pt;}
._13_c00201{width:37.600000pt;}
._39_c00201{width:40.693333pt;}
._32_c00201{width:42.933333pt;}
._1a_c00201{width:68.213333pt;}
._11_c00201{width:82.613333pt;}
._16_c00201{width:84.480000pt;}
._2c_c00201{width:85.760000pt;}
._21_c00201{width:87.840000pt;}
._27_c00201{width:88.853333pt;}
._25_c00201{width:90.613333pt;}
._29_c00201{width:91.893333pt;}
._2a_c00201{width:93.653333pt;}
._28_c00201{width:95.040000pt;}
._1c_c00201{width:97.493333pt;}
._31_c00201{width:99.093333pt;}
._33_c00201{width:105.866667pt;}
._40_c00201{width:109.280000pt;}
._24_c00201{width:145.760000pt;}
._3a_c00201{width:150.506667pt;}
._10_c00201{width:152.640000pt;}
._3d_c00201{width:169.018667pt;}
._3b_c00201{width:216.106667pt;}
._2f_c00201{width:233.600000pt;}
._2e_c00201{width:254.506667pt;}
._1d_c00201{width:280.373333pt;}
._37_c00201{width:357.706667pt;}
._3c_c00201{width:410.026667pt;}
._36_c00201{width:644.480000pt;}
.fs1_c00201{font-size:40.000000pt;}
.fs4_c00201{font-size:42.666667pt;}
.fs3_c00201{font-size:50.666667pt;}
.fs0_c00201{font-size:53.333333pt;}
.fs2_c00201{font-size:184.000000pt;}
.y0_c00201{bottom:0.000000pt;}
.y2c_c00201{bottom:2.760000pt;}
.y2b_c00201{bottom:6.425217pt;}
.y2a_c00201{bottom:35.973333pt;}
.y29_c00201{bottom:51.306667pt;}
.y28_c00201{bottom:67.973333pt;}
.y27_c00201{bottom:84.773333pt;}
.y25_c00201{bottom:92.373333pt;}
.y26_c00201{bottom:101.306667pt;}
.y24_c00201{bottom:133.173333pt;}
.y23_c00201{bottom:148.506667pt;}
.y22_c00201{bottom:164.906667pt;}
.y21_c00201{bottom:180.506667pt;}
.y20_c00201{bottom:196.240000pt;}
.y1f_c00201{bottom:212.906667pt;}
.y1e_c00201{bottom:229.173333pt;}
.y1d_c00201{bottom:245.040000pt;}
.y1c_c00201{bottom:260.906667pt;}
.y1b_c00201{bottom:276.506667pt;}
.y1a_c00201{bottom:292.106667pt;}
.y19_c00201{bottom:308.906667pt;}
.y18_c00201{bottom:324.506667pt;}
.y17_c00201{bottom:341.040000pt;}
.y16_c00201{bottom:357.040000pt;}
.y15_c00201{bottom:372.906667pt;}
.y14_c00201{bottom:389.040000pt;}
.y13_c00201{bottom:405.573333pt;}
.y12_c00201{bottom:421.440000pt;}
.y11_c00201{bottom:437.040000pt;}
.y10_c00201{bottom:453.306667pt;}
.yf_c00201{bottom:469.440000pt;}
.ye_c00201{bottom:485.440000pt;}
.yd_c00201{bottom:501.306667pt;}
.yc_c00201{bottom:516.906667pt;}
.yb_c00201{bottom:533.440000pt;}
.ya_c00201{bottom:549.840000pt;}
.y9_c00201{bottom:565.706667pt;}
.y8_c00201{bottom:581.706667pt;}
.y7_c00201{bottom:597.573333pt;}
.y6_c00201{bottom:613.440000pt;}
.y5_c00201{bottom:629.440000pt;}
.y4_c00201{bottom:645.040000pt;}
.y3_c00201{bottom:662.373333pt;}
.y2_c00201{bottom:678.240000pt;}
.y1_c00201{bottom:694.240000pt;}
.h5_c00201{height:11.733399pt;}
.h6_c00201{height:38.937500pt;}
.h2_c00201{height:55.893333pt;}
.h4_c00201{height:56.906667pt;}
.h3_c00201{height:192.832000pt;}
.h0_c00201{height:742.533333pt;}
.h1_c00201{height:742.666667pt;}
.w2_c00201{width:93.222667pt;}
.w1_c00201{width:492.666667pt;}
.w0_c00201{width:492.933333pt;}
.x0_c00201{left:0.000000pt;}
.x11_c00201{left:24.266667pt;}
.x5_c00201{left:26.800000pt;}
.x4_c00201{left:27.866667pt;}
.x7_c00201{left:79.466667pt;}
.x8_c00201{left:80.800000pt;}
.x3_c00201{left:81.866667pt;}
.x2_c00201{left:82.800000pt;}
.x6_c00201{left:83.733333pt;}
.xc_c00201{left:88.533333pt;}
.x10_c00201{left:101.733333pt;}
.x1_c00201{left:105.733333pt;}
.xf_c00201{left:143.466667pt;}
.xd_c00201{left:149.200000pt;}
.xa_c00201{left:164.400000pt;}
.x13_c00201{left:203.634888pt;}
.xe_c00201{left:271.466667pt;}
.xb_c00201{left:272.666667pt;}
.x9_c00201{left:273.866667pt;}
.x12_c00201{left:412.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_9a185db06b423a4ddab335b3.woff2')format("woff");}.ff1_c00202{font-family:ff1_c00202;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00202;src:url('chunks/assets/font_69494abd07a8188e67f09e7f.woff2')format("woff");}.ff2_c00202{font-family:ff2_c00202;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00202;src:url('chunks/assets/font_7cd9a40161891db03ab61d35.woff2')format("woff");}.ff3_c00202{font-family:ff3_c00202;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00202;src:url('chunks/assets/font_f646dd5d4f8f75990c67cf00.woff2')format("woff");}.ff4_c00202{font-family:ff4_c00202;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00202;src:url('chunks/assets/font_0ce391de997f24f9f9dd37f4.woff2')format("woff");}.ff5_c00202{font-family:ff5_c00202;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00202;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff6_c00202{font-family:ff6_c00202;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00202{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00202{vertical-align:0.000000px;}
.ls5_c00202{letter-spacing:0.000000px;}
.ls3_c00202{letter-spacing:1.200000px;}
.ls4_c00202{letter-spacing:1.605000px;}
.ls1_c00202{letter-spacing:3.000000px;}
.ls2_c00202{letter-spacing:7.740000px;}
.ls0_c00202{letter-spacing:14.280000px;}
.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;}
}
.ws2_c00202{word-spacing:-23.760000px;}
.ws0_c00202{word-spacing:-17.340000px;}
.ws3_c00202{word-spacing:-17.319000px;}
.ws1_c00202{word-spacing:-14.160000px;}
.ws4_c00202{word-spacing:0.000000px;}
._2d_c00202{margin-left:-20.160000px;}
._27_c00202{margin-left:-17.340000px;}
._3f_c00202{margin-left:-15.480000px;}
._2f_c00202{margin-left:-11.700000px;}
._28_c00202{margin-left:-10.080000px;}
._2b_c00202{margin-left:-9.000000px;}
._32_c00202{margin-left:-7.980000px;}
._f_c00202{margin-left:-6.900000px;}
._14_c00202{margin-left:-4.980000px;}
._10_c00202{margin-left:-3.360000px;}
._11_c00202{margin-left:-2.040000px;}
._e_c00202{margin-left:-1.020000px;}
._c_c00202{width:1.080000px;}
._9_c00202{width:2.520000px;}
._12_c00202{width:3.660000px;}
._13_c00202{width:5.040000px;}
._b_c00202{width:6.600000px;}
._7_c00202{width:8.040000px;}
._2e_c00202{width:9.480000px;}
._1_c00202{width:10.740000px;}
._1a_c00202{width:12.240000px;}
._0_c00202{width:13.740000px;}
._6_c00202{width:15.000000px;}
._16_c00202{width:16.200000px;}
._3_c00202{width:19.260000px;}
._4_c00202{width:21.360000px;}
._1f_c00202{width:22.860000px;}
._5_c00202{width:25.260000px;}
._8_c00202{width:26.340000px;}
._3b_c00202{width:27.900000px;}
._20_c00202{width:29.880000px;}
._29_c00202{width:32.520000px;}
._39_c00202{width:34.560000px;}
._26_c00202{width:36.300000px;}
._2_c00202{width:41.340000px;}
._2c_c00202{width:46.680000px;}
._19_c00202{width:72.060000px;}
._34_c00202{width:78.000000px;}
._37_c00202{width:80.520000px;}
._38_c00202{width:90.840000px;}
._3d_c00202{width:92.280000px;}
._3c_c00202{width:94.740000px;}
._36_c00202{width:96.780000px;}
._3a_c00202{width:100.320000px;}
._1c_c00202{width:102.300000px;}
._2a_c00202{width:104.460000px;}
._1e_c00202{width:105.660000px;}
._17_c00202{width:106.680000px;}
._1d_c00202{width:108.540000px;}
._21_c00202{width:110.100000px;}
._22_c00202{width:111.960000px;}
._24_c00202{width:113.220000px;}
._33_c00202{width:114.420000px;}
._15_c00202{width:115.620000px;}
._25_c00202{width:118.560000px;}
._30_c00202{width:121.680000px;}
._41_c00202{width:131.820000px;}
._3e_c00202{width:153.360000px;}
._18_c00202{width:175.320000px;}
._1b_c00202{width:203.880000px;}
._31_c00202{width:243.600000px;}
._35_c00202{width:269.940000px;}
._40_c00202{width:333.840000px;}
._a_c00202{width:404.340000px;}
._23_c00202{width:406.620000px;}
._d_c00202{width:552.960000px;}
.fc2_c00202{color:transparent;}
.fc1_c00202{color:rgb(128,128,128);}
.fc0_c00202{color:rgb(0,0,0);}
.fs3_c00202{font-size:45.000000px;}
.fs1_c00202{font-size:48.000000px;}
.fs0_c00202{font-size:60.000000px;}
.fs2_c00202{font-size:69.000000px;}
.y0_c00202{bottom:0.000000px;}
.y2d_c00202{bottom:3.105000px;}
.y2c_c00202{bottom:7.228363px;}
.y2b_c00202{bottom:39.150000px;}
.y2a_c00202{bottom:62.700000px;}
.y29_c00202{bottom:78.600000px;}
.y28_c00202{bottom:96.750000px;}
.y27_c00202{bottom:114.000000px;}
.y26_c00202{bottom:132.000000px;}
.y25_c00202{bottom:148.800000px;}
.y24_c00202{bottom:167.700000px;}
.y23_c00202{bottom:184.950000px;}
.y22_c00202{bottom:203.550000px;}
.y21_c00202{bottom:220.950000px;}
.y20_c00202{bottom:238.950000px;}
.y1f_c00202{bottom:257.100000px;}
.y1e_c00202{bottom:275.400000px;}
.y1d_c00202{bottom:293.550000px;}
.y1c_c00202{bottom:311.100000px;}
.y1b_c00202{bottom:329.400000px;}
.y1a_c00202{bottom:345.900000px;}
.y19_c00202{bottom:364.500000px;}
.y18_c00202{bottom:383.400000px;}
.y17_c00202{bottom:400.950000px;}
.y16_c00202{bottom:419.100000px;}
.y15_c00202{bottom:436.650000px;}
.y14_c00202{bottom:453.900000px;}
.y13_c00202{bottom:472.500000px;}
.y12_c00202{bottom:489.750000px;}
.y11_c00202{bottom:507.300000px;}
.y10_c00202{bottom:525.750000px;}
.yf_c00202{bottom:543.600000px;}
.ye_c00202{bottom:561.150000px;}
.yd_c00202{bottom:578.850000px;}
.yc_c00202{bottom:596.400000px;}
.yb_c00202{bottom:614.550000px;}
.ya_c00202{bottom:632.700000px;}
.y9_c00202{bottom:650.700000px;}
.y8_c00202{bottom:668.850000px;}
.y7_c00202{bottom:686.250000px;}
.y6_c00202{bottom:705.000000px;}
.y5_c00202{bottom:722.250000px;}
.y4_c00202{bottom:740.250000px;}
.y3_c00202{bottom:758.700000px;}
.y2_c00202{bottom:776.250000px;}
.y1_c00202{bottom:796.200000px;}
.h4_c00202{height:13.200074px;}
.h5_c00202{height:43.804688px;}
.h2_c00202{height:62.880000px;}
.h1_c00202{height:64.020000px;}
.h3_c00202{height:72.312000px;}
.h0_c00202{height:837.000000px;}
.w2_c00202{width:104.875500px;}
.w0_c00202{width:586.425000px;}
.w1_c00202{width:586.500000px;}
.x0_c00202{left:0.000000px;}
.x3_c00202{left:64.800000px;}
.x2_c00202{left:66.150000px;}
.x4_c00202{left:67.950000px;}
.x5_c00202{left:69.150000px;}
.x6_c00202{left:70.500000px;}
.x8_c00202{left:71.550000px;}
.xb_c00202{left:72.600000px;}
.x9_c00202{left:73.950000px;}
.x7_c00202{left:87.750000px;}
.xc_c00202{left:119.400000px;}
.xa_c00202{left:143.700000px;}
.x1_c00202{left:198.150000px;}
.xe_c00202{left:245.026749px;}
.xd_c00202{left:453.600000px;}
@media print{
.v0_c00202{vertical-align:0.000000pt;}
.ls5_c00202{letter-spacing:0.000000pt;}
.ls3_c00202{letter-spacing:1.066667pt;}
.ls4_c00202{letter-spacing:1.426667pt;}
.ls1_c00202{letter-spacing:2.666667pt;}
.ls2_c00202{letter-spacing:6.880000pt;}
.ls0_c00202{letter-spacing:12.693333pt;}
.ws2_c00202{word-spacing:-21.120000pt;}
.ws0_c00202{word-spacing:-15.413333pt;}
.ws3_c00202{word-spacing:-15.394667pt;}
.ws1_c00202{word-spacing:-12.586667pt;}
.ws4_c00202{word-spacing:0.000000pt;}
._2d_c00202{margin-left:-17.920000pt;}
._27_c00202{margin-left:-15.413333pt;}
._3f_c00202{margin-left:-13.760000pt;}
._2f_c00202{margin-left:-10.400000pt;}
._28_c00202{margin-left:-8.960000pt;}
._2b_c00202{margin-left:-8.000000pt;}
._32_c00202{margin-left:-7.093333pt;}
._f_c00202{margin-left:-6.133333pt;}
._14_c00202{margin-left:-4.426667pt;}
._10_c00202{margin-left:-2.986667pt;}
._11_c00202{margin-left:-1.813333pt;}
._e_c00202{margin-left:-0.906667pt;}
._c_c00202{width:0.960000pt;}
._9_c00202{width:2.240000pt;}
._12_c00202{width:3.253333pt;}
._13_c00202{width:4.480000pt;}
._b_c00202{width:5.866667pt;}
._7_c00202{width:7.146667pt;}
._2e_c00202{width:8.426667pt;}
._1_c00202{width:9.546667pt;}
._1a_c00202{width:10.880000pt;}
._0_c00202{width:12.213333pt;}
._6_c00202{width:13.333333pt;}
._16_c00202{width:14.400000pt;}
._3_c00202{width:17.120000pt;}
._4_c00202{width:18.986667pt;}
._1f_c00202{width:20.320000pt;}
._5_c00202{width:22.453333pt;}
._8_c00202{width:23.413333pt;}
._3b_c00202{width:24.800000pt;}
._20_c00202{width:26.560000pt;}
._29_c00202{width:28.906667pt;}
._39_c00202{width:30.720000pt;}
._26_c00202{width:32.266667pt;}
._2_c00202{width:36.746667pt;}
._2c_c00202{width:41.493333pt;}
._19_c00202{width:64.053333pt;}
._34_c00202{width:69.333333pt;}
._37_c00202{width:71.573333pt;}
._38_c00202{width:80.746667pt;}
._3d_c00202{width:82.026667pt;}
._3c_c00202{width:84.213333pt;}
._36_c00202{width:86.026667pt;}
._3a_c00202{width:89.173333pt;}
._1c_c00202{width:90.933333pt;}
._2a_c00202{width:92.853333pt;}
._1e_c00202{width:93.920000pt;}
._17_c00202{width:94.826667pt;}
._1d_c00202{width:96.480000pt;}
._21_c00202{width:97.866667pt;}
._22_c00202{width:99.520000pt;}
._24_c00202{width:100.640000pt;}
._33_c00202{width:101.706667pt;}
._15_c00202{width:102.773333pt;}
._25_c00202{width:105.386667pt;}
._30_c00202{width:108.160000pt;}
._41_c00202{width:117.173333pt;}
._3e_c00202{width:136.320000pt;}
._18_c00202{width:155.840000pt;}
._1b_c00202{width:181.226667pt;}
._31_c00202{width:216.533333pt;}
._35_c00202{width:239.946667pt;}
._40_c00202{width:296.746667pt;}
._a_c00202{width:359.413333pt;}
._23_c00202{width:361.440000pt;}
._d_c00202{width:491.520000pt;}
.fs3_c00202{font-size:40.000000pt;}
.fs1_c00202{font-size:42.666667pt;}
.fs0_c00202{font-size:53.333333pt;}
.fs2_c00202{font-size:61.333333pt;}
.y0_c00202{bottom:0.000000pt;}
.y2d_c00202{bottom:2.760000pt;}
.y2c_c00202{bottom:6.425212pt;}
.y2b_c00202{bottom:34.800000pt;}
.y2a_c00202{bottom:55.733333pt;}
.y29_c00202{bottom:69.866667pt;}
.y28_c00202{bottom:86.000000pt;}
.y27_c00202{bottom:101.333333pt;}
.y26_c00202{bottom:117.333333pt;}
.y25_c00202{bottom:132.266667pt;}
.y24_c00202{bottom:149.066667pt;}
.y23_c00202{bottom:164.400000pt;}
.y22_c00202{bottom:180.933333pt;}
.y21_c00202{bottom:196.400000pt;}
.y20_c00202{bottom:212.400000pt;}
.y1f_c00202{bottom:228.533333pt;}
.y1e_c00202{bottom:244.800000pt;}
.y1d_c00202{bottom:260.933333pt;}
.y1c_c00202{bottom:276.533333pt;}
.y1b_c00202{bottom:292.800000pt;}
.y1a_c00202{bottom:307.466667pt;}
.y19_c00202{bottom:324.000000pt;}
.y18_c00202{bottom:340.800000pt;}
.y17_c00202{bottom:356.400000pt;}
.y16_c00202{bottom:372.533333pt;}
.y15_c00202{bottom:388.133333pt;}
.y14_c00202{bottom:403.466667pt;}
.y13_c00202{bottom:420.000000pt;}
.y12_c00202{bottom:435.333333pt;}
.y11_c00202{bottom:450.933333pt;}
.y10_c00202{bottom:467.333333pt;}
.yf_c00202{bottom:483.200000pt;}
.ye_c00202{bottom:498.800000pt;}
.yd_c00202{bottom:514.533333pt;}
.yc_c00202{bottom:530.133333pt;}
.yb_c00202{bottom:546.266667pt;}
.ya_c00202{bottom:562.400000pt;}
.y9_c00202{bottom:578.400000pt;}
.y8_c00202{bottom:594.533333pt;}
.y7_c00202{bottom:610.000000pt;}
.y6_c00202{bottom:626.666667pt;}
.y5_c00202{bottom:642.000000pt;}
.y4_c00202{bottom:658.000000pt;}
.y3_c00202{bottom:674.400000pt;}
.y2_c00202{bottom:690.000000pt;}
.y1_c00202{bottom:707.733333pt;}
.h4_c00202{height:11.733399pt;}
.h5_c00202{height:38.937500pt;}
.h2_c00202{height:55.893333pt;}
.h1_c00202{height:56.906667pt;}
.h3_c00202{height:64.277333pt;}
.h0_c00202{height:744.000000pt;}
.w2_c00202{width:93.222667pt;}
.w0_c00202{width:521.266667pt;}
.w1_c00202{width:521.333333pt;}
.x0_c00202{left:0.000000pt;}
.x3_c00202{left:57.600000pt;}
.x2_c00202{left:58.800000pt;}
.x4_c00202{left:60.400000pt;}
.x5_c00202{left:61.466667pt;}
.x6_c00202{left:62.666667pt;}
.x8_c00202{left:63.600000pt;}
.xb_c00202{left:64.533333pt;}
.x9_c00202{left:65.733333pt;}
.x7_c00202{left:78.000000pt;}
.xc_c00202{left:106.133333pt;}
.xa_c00202{left:127.733333pt;}
.x1_c00202{left:176.133333pt;}
.xe_c00202{left:217.801554pt;}
.xd_c00202{left:403.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f40816fe99b215f661efc193.woff2')format("woff");}.ff1_c00203{font-family:ff1_c00203;line-height:1.575000;font-style:normal;font-weight:normal;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_e00cb5d449e81222a845d49b.woff2')format("woff");}.ff2_c00203{font-family:ff2_c00203;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00203;src:url('chunks/assets/font_ce88b04f8f4f1f7a6a5ec23c.woff2')format("woff");}.ff3_c00203{font-family:ff3_c00203;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00203;src:url('chunks/assets/font_0ce391de997f24f9f9dd37f4.woff2')format("woff");}.ff4_c00203{font-family:ff4_c00203;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00203;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff5_c00203{font-family:ff5_c00203;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00203{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00203{vertical-align:0.000000px;}
.ls4_c00203{letter-spacing:0.000000px;}
.ls0_c00203{letter-spacing:0.405000px;}
.ls3_c00203{letter-spacing:3.000000px;}
.ls1_c00203{letter-spacing:4.200000px;}
.ls2_c00203{letter-spacing:15.000000px;}
.sc__c00203{text-shadow:none;}
.sc0_c00203{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00203{-webkit-text-stroke:0px transparent;}
.sc0_c00203{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00203{word-spacing:-18.060000px;}
.ws0_c00203{word-spacing:-14.160000px;}
.ws2_c00203{word-spacing:0.000000px;}
._25_c00203{margin-left:-28.260000px;}
._28_c00203{margin-left:-17.160000px;}
._23_c00203{margin-left:-14.601000px;}
._0_c00203{margin-left:-11.730000px;}
._3f_c00203{margin-left:-9.099000px;}
._2a_c00203{margin-left:-8.055000px;}
._b_c00203{margin-left:-6.420000px;}
._13_c00203{margin-left:-4.389000px;}
._d_c00203{margin-left:-2.832000px;}
._a_c00203{margin-left:-1.578000px;}
._7_c00203{width:1.059000px;}
._2_c00203{width:2.208000px;}
._3_c00203{width:4.209000px;}
._5_c00203{width:5.385000px;}
._f_c00203{width:6.825000px;}
._6_c00203{width:8.178000px;}
._1b_c00203{width:9.231000px;}
._c_c00203{width:10.641000px;}
._8_c00203{width:12.261000px;}
._11_c00203{width:14.313000px;}
._10_c00203{width:15.603000px;}
._4_c00203{width:16.905000px;}
._15_c00203{width:19.341000px;}
._1e_c00203{width:21.276000px;}
._17_c00203{width:22.341000px;}
._24_c00203{width:23.940000px;}
._39_c00203{width:25.521000px;}
._27_c00203{width:26.997000px;}
._20_c00203{width:30.081000px;}
._18_c00203{width:33.720000px;}
._21_c00203{width:35.277000px;}
._3a_c00203{width:38.502000px;}
._22_c00203{width:40.962000px;}
._2c_c00203{width:44.028000px;}
._3b_c00203{width:49.395000px;}
._12_c00203{width:67.320000px;}
._9_c00203{width:70.944000px;}
._e_c00203{width:72.162000px;}
._16_c00203{width:73.605000px;}
._14_c00203{width:77.340000px;}
._1d_c00203{width:78.561000px;}
._19_c00203{width:80.415000px;}
._1c_c00203{width:83.838000px;}
._1f_c00203{width:87.177000px;}
._1a_c00203{width:88.476000px;}
._29_c00203{width:89.736000px;}
._2b_c00203{width:91.335000px;}
._31_c00203{width:92.760000px;}
._2f_c00203{width:97.779000px;}
._33_c00203{width:99.471000px;}
._34_c00203{width:103.218000px;}
._2d_c00203{width:104.760000px;}
._38_c00203{width:107.889000px;}
._36_c00203{width:111.477000px;}
._35_c00203{width:116.073000px;}
._3e_c00203{width:118.527000px;}
._3c_c00203{width:120.648000px;}
._3d_c00203{width:206.649000px;}
._32_c00203{width:213.054000px;}
._30_c00203{width:239.934000px;}
._26_c00203{width:242.340000px;}
._2e_c00203{width:266.250000px;}
._37_c00203{width:276.255000px;}
._1_c00203{width:342.240000px;}
.fc2_c00203{color:transparent;}
.fc1_c00203{color:rgb(128,128,128);}
.fc0_c00203{color:rgb(0,0,0);}
.fs2_c00203{font-size:45.000000px;}
.fs3_c00203{font-size:48.000000px;}
.fs1_c00203{font-size:60.000000px;}
.fs0_c00203{font-size:69.000000px;}
.y0_c00203{bottom:0.000000px;}
.y2d_c00203{bottom:3.105000px;}
.y2c_c00203{bottom:7.228369px;}
.y2b_c00203{bottom:42.570000px;}
.y2a_c00203{bottom:61.320000px;}
.y29_c00203{bottom:79.620000px;}
.y28_c00203{bottom:97.470000px;}
.y27_c00203{bottom:116.370000px;}
.y26_c00203{bottom:133.320000px;}
.y25_c00203{bottom:151.770000px;}
.y24_c00203{bottom:169.020000px;}
.y23_c00203{bottom:186.570000px;}
.y22_c00203{bottom:204.570000px;}
.y21_c00203{bottom:223.020000px;}
.y20_c00203{bottom:241.020000px;}
.y1f_c00203{bottom:258.870000px;}
.y1e_c00203{bottom:277.020000px;}
.y1d_c00203{bottom:295.020000px;}
.y1c_c00203{bottom:313.170000px;}
.y1b_c00203{bottom:330.420000px;}
.y1a_c00203{bottom:349.020000px;}
.y19_c00203{bottom:366.570000px;}
.y18_c00203{bottom:384.420000px;}
.y17_c00203{bottom:402.870000px;}
.y16_c00203{bottom:420.420000px;}
.y15_c00203{bottom:438.720000px;}
.y14_c00203{bottom:455.970000px;}
.y13_c00203{bottom:474.420000px;}
.y12_c00203{bottom:492.720000px;}
.y11_c00203{bottom:510.870000px;}
.y10_c00203{bottom:528.870000px;}
.yf_c00203{bottom:546.120000px;}
.ye_c00203{bottom:564.570000px;}
.yd_c00203{bottom:582.870000px;}
.yc_c00203{bottom:601.020000px;}
.yb_c00203{bottom:618.720000px;}
.ya_c00203{bottom:636.570000px;}
.y9_c00203{bottom:654.420000px;}
.y8_c00203{bottom:672.870000px;}
.y7_c00203{bottom:690.570000px;}
.y6_c00203{bottom:708.720000px;}
.y5_c00203{bottom:726.570000px;}
.y4_c00203{bottom:744.870000px;}
.y3_c00203{bottom:762.720000px;}
.y2_c00203{bottom:780.570000px;}
.y1_c00203{bottom:800.520000px;}
.h5_c00203{height:13.200073px;}
.h6_c00203{height:43.804688px;}
.h3_c00203{height:62.880000px;}
.h4_c00203{height:64.020000px;}
.h2_c00203{height:73.623000px;}
.h1_c00203{height:851.250000px;}
.h0_c00203{height:851.550000px;}
.w2_c00203{width:104.875500px;}
.w1_c00203{width:565.500000px;}
.w0_c00203{width:565.650000px;}
.x0_c00203{left:0.000000px;}
.xb_c00203{left:33.750000px;}
.xa_c00203{left:35.400000px;}
.xc_c00203{left:91.500000px;}
.x5_c00203{left:93.450000px;}
.x9_c00203{left:96.150000px;}
.x8_c00203{left:97.650000px;}
.x7_c00203{left:98.850000px;}
.x6_c00203{left:100.650000px;}
.x4_c00203{left:102.000000px;}
.x3_c00203{left:103.050000px;}
.x2_c00203{left:104.400000px;}
.x1_c00203{left:106.200000px;}
.xe_c00203{left:234.639267px;}
.xd_c00203{left:481.950000px;}
@media print{
.v0_c00203{vertical-align:0.000000pt;}
.ls4_c00203{letter-spacing:0.000000pt;}
.ls0_c00203{letter-spacing:0.360000pt;}
.ls3_c00203{letter-spacing:2.666667pt;}
.ls1_c00203{letter-spacing:3.733333pt;}
.ls2_c00203{letter-spacing:13.333333pt;}
.ws1_c00203{word-spacing:-16.053333pt;}
.ws0_c00203{word-spacing:-12.586667pt;}
.ws2_c00203{word-spacing:0.000000pt;}
._25_c00203{margin-left:-25.120000pt;}
._28_c00203{margin-left:-15.253333pt;}
._23_c00203{margin-left:-12.978667pt;}
._0_c00203{margin-left:-10.426667pt;}
._3f_c00203{margin-left:-8.088000pt;}
._2a_c00203{margin-left:-7.160000pt;}
._b_c00203{margin-left:-5.706667pt;}
._13_c00203{margin-left:-3.901333pt;}
._d_c00203{margin-left:-2.517333pt;}
._a_c00203{margin-left:-1.402667pt;}
._7_c00203{width:0.941333pt;}
._2_c00203{width:1.962667pt;}
._3_c00203{width:3.741333pt;}
._5_c00203{width:4.786667pt;}
._f_c00203{width:6.066667pt;}
._6_c00203{width:7.269333pt;}
._1b_c00203{width:8.205333pt;}
._c_c00203{width:9.458667pt;}
._8_c00203{width:10.898667pt;}
._11_c00203{width:12.722667pt;}
._10_c00203{width:13.869333pt;}
._4_c00203{width:15.026667pt;}
._15_c00203{width:17.192000pt;}
._1e_c00203{width:18.912000pt;}
._17_c00203{width:19.858667pt;}
._24_c00203{width:21.280000pt;}
._39_c00203{width:22.685333pt;}
._27_c00203{width:23.997333pt;}
._20_c00203{width:26.738667pt;}
._18_c00203{width:29.973333pt;}
._21_c00203{width:31.357333pt;}
._3a_c00203{width:34.224000pt;}
._22_c00203{width:36.410667pt;}
._2c_c00203{width:39.136000pt;}
._3b_c00203{width:43.906667pt;}
._12_c00203{width:59.840000pt;}
._9_c00203{width:63.061333pt;}
._e_c00203{width:64.144000pt;}
._16_c00203{width:65.426667pt;}
._14_c00203{width:68.746667pt;}
._1d_c00203{width:69.832000pt;}
._19_c00203{width:71.480000pt;}
._1c_c00203{width:74.522667pt;}
._1f_c00203{width:77.490667pt;}
._1a_c00203{width:78.645333pt;}
._29_c00203{width:79.765333pt;}
._2b_c00203{width:81.186667pt;}
._31_c00203{width:82.453333pt;}
._2f_c00203{width:86.914667pt;}
._33_c00203{width:88.418667pt;}
._34_c00203{width:91.749333pt;}
._2d_c00203{width:93.120000pt;}
._38_c00203{width:95.901333pt;}
._36_c00203{width:99.090667pt;}
._35_c00203{width:103.176000pt;}
._3e_c00203{width:105.357333pt;}
._3c_c00203{width:107.242667pt;}
._3d_c00203{width:183.688000pt;}
._32_c00203{width:189.381333pt;}
._30_c00203{width:213.274667pt;}
._26_c00203{width:215.413333pt;}
._2e_c00203{width:236.666667pt;}
._37_c00203{width:245.560000pt;}
._1_c00203{width:304.213333pt;}
.fs2_c00203{font-size:40.000000pt;}
.fs3_c00203{font-size:42.666667pt;}
.fs1_c00203{font-size:53.333333pt;}
.fs0_c00203{font-size:61.333333pt;}
.y0_c00203{bottom:0.000000pt;}
.y2d_c00203{bottom:2.760000pt;}
.y2c_c00203{bottom:6.425217pt;}
.y2b_c00203{bottom:37.840000pt;}
.y2a_c00203{bottom:54.506667pt;}
.y29_c00203{bottom:70.773333pt;}
.y28_c00203{bottom:86.640000pt;}
.y27_c00203{bottom:103.440000pt;}
.y26_c00203{bottom:118.506667pt;}
.y25_c00203{bottom:134.906667pt;}
.y24_c00203{bottom:150.240000pt;}
.y23_c00203{bottom:165.840000pt;}
.y22_c00203{bottom:181.840000pt;}
.y21_c00203{bottom:198.240000pt;}
.y20_c00203{bottom:214.240000pt;}
.y1f_c00203{bottom:230.106667pt;}
.y1e_c00203{bottom:246.240000pt;}
.y1d_c00203{bottom:262.240000pt;}
.y1c_c00203{bottom:278.373333pt;}
.y1b_c00203{bottom:293.706667pt;}
.y1a_c00203{bottom:310.240000pt;}
.y19_c00203{bottom:325.840000pt;}
.y18_c00203{bottom:341.706667pt;}
.y17_c00203{bottom:358.106667pt;}
.y16_c00203{bottom:373.706667pt;}
.y15_c00203{bottom:389.973333pt;}
.y14_c00203{bottom:405.306667pt;}
.y13_c00203{bottom:421.706667pt;}
.y12_c00203{bottom:437.973333pt;}
.y11_c00203{bottom:454.106667pt;}
.y10_c00203{bottom:470.106667pt;}
.yf_c00203{bottom:485.440000pt;}
.ye_c00203{bottom:501.840000pt;}
.yd_c00203{bottom:518.106667pt;}
.yc_c00203{bottom:534.240000pt;}
.yb_c00203{bottom:549.973333pt;}
.ya_c00203{bottom:565.840000pt;}
.y9_c00203{bottom:581.706667pt;}
.y8_c00203{bottom:598.106667pt;}
.y7_c00203{bottom:613.840000pt;}
.y6_c00203{bottom:629.973333pt;}
.y5_c00203{bottom:645.840000pt;}
.y4_c00203{bottom:662.106667pt;}
.y3_c00203{bottom:677.973333pt;}
.y2_c00203{bottom:693.840000pt;}
.y1_c00203{bottom:711.573333pt;}
.h5_c00203{height:11.733399pt;}
.h6_c00203{height:38.937500pt;}
.h3_c00203{height:55.893333pt;}
.h4_c00203{height:56.906667pt;}
.h2_c00203{height:65.442667pt;}
.h1_c00203{height:756.666667pt;}
.h0_c00203{height:756.933333pt;}
.w2_c00203{width:93.222667pt;}
.w1_c00203{width:502.666667pt;}
.w0_c00203{width:502.800000pt;}
.x0_c00203{left:0.000000pt;}
.xb_c00203{left:30.000000pt;}
.xa_c00203{left:31.466667pt;}
.xc_c00203{left:81.333333pt;}
.x5_c00203{left:83.066667pt;}
.x9_c00203{left:85.466667pt;}
.x8_c00203{left:86.800000pt;}
.x7_c00203{left:87.866667pt;}
.x6_c00203{left:89.466667pt;}
.x4_c00203{left:90.666667pt;}
.x3_c00203{left:91.600000pt;}
.x2_c00203{left:92.800000pt;}
.x1_c00203{left:94.400000pt;}
.xe_c00203{left:208.568237pt;}
.xd_c00203{left:428.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d129e596f9d15436e844a483.woff2')format("woff");}.ff1_c00204{font-family:ff1_c00204;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00204;src:url('chunks/assets/font_69940efcd55518c5760f5282.woff2')format("woff");}.ff2_c00204{font-family:ff2_c00204;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00204;src:url('chunks/assets/font_2512aa2a8e27e7ede3335228.woff2')format("woff");}.ff3_c00204{font-family:ff3_c00204;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00204;src:url('chunks/assets/font_f3790c11fa1b72b5ebd5d0f3.woff2')format("woff");}.ff4_c00204{font-family:ff4_c00204;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00204;src:url('chunks/assets/font_8dce42a142d4ef4d04408977.woff2')format("woff");}.ff5_c00204{font-family:ff5_c00204;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00204;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff6_c00204{font-family:ff6_c00204;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00204{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00204{vertical-align:0.000000px;}
.ls7_c00204{letter-spacing:0.000000px;}
.ls1_c00204{letter-spacing:0.405000px;}
.ls0_c00204{letter-spacing:1.200000px;}
.ls4_c00204{letter-spacing:3.000000px;}
.ls6_c00204{letter-spacing:4.800000px;}
.ls2_c00204{letter-spacing:5.160000px;}
.ls8_c00204{letter-spacing:6.000000px;}
.ls3_c00204{letter-spacing:8.493000px;}
.ls5_c00204{letter-spacing:49.293000px;}
.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:-29.295000px;}
.ws4_c00204{word-spacing:-14.160000px;}
.ws1_c00204{word-spacing:-13.452000px;}
.ws2_c00204{word-spacing:-10.761600px;}
.ws5_c00204{word-spacing:0.000000px;}
.ws3_c00204{word-spacing:6.600000px;}
._2c_c00204{margin-left:-1069.365000px;}
._10_c00204{margin-left:-12.960000px;}
._31_c00204{margin-left:-10.608000px;}
._1e_c00204{margin-left:-8.400000px;}
._1d_c00204{margin-left:-7.260000px;}
._1_c00204{margin-left:-6.180000px;}
._3_c00204{margin-left:-4.200000px;}
._4_c00204{margin-left:-2.454000px;}
._2_c00204{margin-left:-1.326000px;}
._0_c00204{width:1.680000px;}
._a_c00204{width:2.760000px;}
._6_c00204{width:3.840000px;}
._8_c00204{width:5.460000px;}
._9_c00204{width:7.320000px;}
._c_c00204{width:8.520000px;}
._1f_c00204{width:9.540000px;}
._7_c00204{width:11.400000px;}
._d_c00204{width:13.080000px;}
._19_c00204{width:15.060000px;}
._27_c00204{width:16.224000px;}
._29_c00204{width:17.670000px;}
._e_c00204{width:19.980000px;}
._13_c00204{width:21.240000px;}
._2a_c00204{width:22.347000px;}
._11_c00204{width:23.940000px;}
._12_c00204{width:25.446000px;}
._1a_c00204{width:26.580000px;}
._f_c00204{width:27.600000px;}
._32_c00204{width:28.617000px;}
._28_c00204{width:29.691000px;}
._25_c00204{width:31.560000px;}
._21_c00204{width:32.979000px;}
._34_c00204{width:34.200000px;}
._33_c00204{width:35.256000px;}
._2b_c00204{width:36.513600px;}
._2f_c00204{width:37.980000px;}
._1b_c00204{width:40.206000px;}
._16_c00204{width:41.820000px;}
._20_c00204{width:43.320000px;}
._2e_c00204{width:46.140000px;}
._15_c00204{width:48.240000px;}
._36_c00204{width:56.358000px;}
._17_c00204{width:60.240000px;}
._18_c00204{width:63.900000px;}
._14_c00204{width:65.040000px;}
._26_c00204{width:66.162000px;}
._b_c00204{width:69.120000px;}
._5_c00204{width:72.828000px;}
._30_c00204{width:74.403000px;}
._35_c00204{width:101.100000px;}
._37_c00204{width:126.276000px;}
._23_c00204{width:184.560000px;}
._2d_c00204{width:201.822000px;}
._1c_c00204{width:213.954000px;}
._24_c00204{width:362.520000px;}
._22_c00204{width:710.880000px;}
.fc2_c00204{color:transparent;}
.fc1_c00204{color:rgb(128,128,128);}
.fc0_c00204{color:rgb(0,0,0);}
.fs2_c00204{font-size:45.000000px;}
.fs4_c00204{font-size:45.600000px;}
.fs6_c00204{font-size:48.000000px;}
.fs3_c00204{font-size:57.000000px;}
.fs0_c00204{font-size:60.000000px;}
.fs5_c00204{font-size:63.000000px;}
.fs1_c00204{font-size:66.000000px;}
.y0_c00204{bottom:0.000000px;}
.y44_c00204{bottom:3.105000px;}
.y43_c00204{bottom:7.228357px;}
.y42_c00204{bottom:48.930000px;}
.y41_c00204{bottom:68.280000px;}
.y40_c00204{bottom:87.030000px;}
.y3f_c00204{bottom:105.030000px;}
.y3e_c00204{bottom:120.930000px;}
.y26_c00204{bottom:124.830000px;}
.y3d_c00204{bottom:139.680000px;}
.y25_c00204{bottom:142.530000px;}
.y3c_c00204{bottom:157.380000px;}
.y24_c00204{bottom:160.380000px;}
.y3b_c00204{bottom:175.530000px;}
.y23_c00204{bottom:177.930000px;}
.y3a_c00204{bottom:193.380000px;}
.y22_c00204{bottom:195.780000px;}
.y39_c00204{bottom:211.230000px;}
.y21_c00204{bottom:214.080000px;}
.y38_c00204{bottom:229.530000px;}
.y20_c00204{bottom:231.630000px;}
.y37_c00204{bottom:247.380000px;}
.y1f_c00204{bottom:250.080000px;}
.y36_c00204{bottom:264.330000px;}
.y1e_c00204{bottom:268.680000px;}
.y35_c00204{bottom:282.780000px;}
.y1d_c00204{bottom:285.480000px;}
.y34_c00204{bottom:301.080000px;}
.y1c_c00204{bottom:303.480000px;}
.y33_c00204{bottom:319.230000px;}
.y1b_c00204{bottom:321.630000px;}
.y32_c00204{bottom:336.780000px;}
.y1a_c00204{bottom:339.180000px;}
.y31_c00204{bottom:355.080000px;}
.y19_c00204{bottom:357.180000px;}
.y30_c00204{bottom:373.230000px;}
.y18_c00204{bottom:375.630000px;}
.y2f_c00204{bottom:391.230000px;}
.y17_c00204{bottom:393.480000px;}
.y2e_c00204{bottom:409.080000px;}
.y16_c00204{bottom:411.030000px;}
.y2d_c00204{bottom:427.380000px;}
.y15_c00204{bottom:428.730000px;}
.y14_c00204{bottom:443.130000px;}
.y2c_c00204{bottom:445.530000px;}
.y13_c00204{bottom:446.580000px;}
.y2b_c00204{bottom:462.780000px;}
.y12_c00204{bottom:463.830000px;}
.y2a_c00204{bottom:481.380000px;}
.y29_c00204{bottom:499.230000px;}
.y11_c00204{bottom:499.830000px;}
.y28_c00204{bottom:516.780000px;}
.y10_c00204{bottom:517.680000px;}
.y27_c00204{bottom:534.930000px;}
.yf_c00204{bottom:535.380000px;}
.ye_c00204{bottom:553.530000px;}
.yd_c00204{bottom:571.680000px;}
.yc_c00204{bottom:589.680000px;}
.yb_c00204{bottom:607.530000px;}
.ya_c00204{bottom:626.130000px;}
.y9_c00204{bottom:642.630000px;}
.y8_c00204{bottom:660.780000px;}
.y7_c00204{bottom:678.480000px;}
.y6_c00204{bottom:696.630000px;}
.y5_c00204{bottom:714.780000px;}
.y4_c00204{bottom:732.480000px;}
.y3_c00204{bottom:750.330000px;}
.y2_c00204{bottom:768.930000px;}
.y1_c00204{bottom:786.480000px;}
.h6_c00204{height:13.200074px;}
.h7_c00204{height:43.804688px;}
.h4_c00204{height:59.736000px;}
.h3_c00204{height:62.880000px;}
.h5_c00204{height:66.024000px;}
.h2_c00204{height:69.168000px;}
.h0_c00204{height:842.700000px;}
.h1_c00204{height:843.000000px;}
.w1_c00204{width:104.875500px;}
.w0_c00204{width:590.250000px;}
.x0_c00204{left:0.000000px;}
.xd_c00204{left:14.550000px;}
.xa_c00204{left:18.600000px;}
.xb_c00204{left:21.150000px;}
.x10_c00204{left:73.500000px;}
.xf_c00204{left:74.850000px;}
.xe_c00204{left:77.250000px;}
.xc_c00204{left:79.650000px;}
.x1_c00204{left:81.300000px;}
.x2_c00204{left:82.350000px;}
.x3_c00204{left:83.700000px;}
.x8_c00204{left:115.650000px;}
.x9_c00204{left:134.550000px;}
.x6_c00204{left:136.350000px;}
.x7_c00204{left:165.000000px;}
.x5_c00204{left:181.050000px;}
.x19_c00204{left:246.939240px;}
.x17_c00204{left:285.750000px;}
.x15_c00204{left:287.550000px;}
.x16_c00204{left:288.900000px;}
.x14_c00204{left:290.550000px;}
.x13_c00204{left:291.600000px;}
.x12_c00204{left:293.250000px;}
.x4_c00204{left:294.300000px;}
.x18_c00204{left:389.700000px;}
.x11_c00204{left:401.550000px;}
@media print{
.v0_c00204{vertical-align:0.000000pt;}
.ls7_c00204{letter-spacing:0.000000pt;}
.ls1_c00204{letter-spacing:0.360000pt;}
.ls0_c00204{letter-spacing:1.066667pt;}
.ls4_c00204{letter-spacing:2.666667pt;}
.ls6_c00204{letter-spacing:4.266667pt;}
.ls2_c00204{letter-spacing:4.586667pt;}
.ls8_c00204{letter-spacing:5.333333pt;}
.ls3_c00204{letter-spacing:7.549333pt;}
.ls5_c00204{letter-spacing:43.816000pt;}
.ws0_c00204{word-spacing:-26.040000pt;}
.ws4_c00204{word-spacing:-12.586667pt;}
.ws1_c00204{word-spacing:-11.957333pt;}
.ws2_c00204{word-spacing:-9.565867pt;}
.ws5_c00204{word-spacing:0.000000pt;}
.ws3_c00204{word-spacing:5.866667pt;}
._2c_c00204{margin-left:-950.546667pt;}
._10_c00204{margin-left:-11.520000pt;}
._31_c00204{margin-left:-9.429333pt;}
._1e_c00204{margin-left:-7.466667pt;}
._1d_c00204{margin-left:-6.453333pt;}
._1_c00204{margin-left:-5.493333pt;}
._3_c00204{margin-left:-3.733333pt;}
._4_c00204{margin-left:-2.181333pt;}
._2_c00204{margin-left:-1.178667pt;}
._0_c00204{width:1.493333pt;}
._a_c00204{width:2.453333pt;}
._6_c00204{width:3.413333pt;}
._8_c00204{width:4.853333pt;}
._9_c00204{width:6.506667pt;}
._c_c00204{width:7.573333pt;}
._1f_c00204{width:8.480000pt;}
._7_c00204{width:10.133333pt;}
._d_c00204{width:11.626667pt;}
._19_c00204{width:13.386667pt;}
._27_c00204{width:14.421333pt;}
._29_c00204{width:15.706667pt;}
._e_c00204{width:17.760000pt;}
._13_c00204{width:18.880000pt;}
._2a_c00204{width:19.864000pt;}
._11_c00204{width:21.280000pt;}
._12_c00204{width:22.618667pt;}
._1a_c00204{width:23.626667pt;}
._f_c00204{width:24.533333pt;}
._32_c00204{width:25.437333pt;}
._28_c00204{width:26.392000pt;}
._25_c00204{width:28.053333pt;}
._21_c00204{width:29.314667pt;}
._34_c00204{width:30.400000pt;}
._33_c00204{width:31.338667pt;}
._2b_c00204{width:32.456533pt;}
._2f_c00204{width:33.760000pt;}
._1b_c00204{width:35.738667pt;}
._16_c00204{width:37.173333pt;}
._20_c00204{width:38.506667pt;}
._2e_c00204{width:41.013333pt;}
._15_c00204{width:42.880000pt;}
._36_c00204{width:50.096000pt;}
._17_c00204{width:53.546667pt;}
._18_c00204{width:56.800000pt;}
._14_c00204{width:57.813333pt;}
._26_c00204{width:58.810667pt;}
._b_c00204{width:61.440000pt;}
._5_c00204{width:64.736000pt;}
._30_c00204{width:66.136000pt;}
._35_c00204{width:89.866667pt;}
._37_c00204{width:112.245333pt;}
._23_c00204{width:164.053333pt;}
._2d_c00204{width:179.397333pt;}
._1c_c00204{width:190.181333pt;}
._24_c00204{width:322.240000pt;}
._22_c00204{width:631.893333pt;}
.fs2_c00204{font-size:40.000000pt;}
.fs4_c00204{font-size:40.533333pt;}
.fs6_c00204{font-size:42.666667pt;}
.fs3_c00204{font-size:50.666667pt;}
.fs0_c00204{font-size:53.333333pt;}
.fs5_c00204{font-size:56.000000pt;}
.fs1_c00204{font-size:58.666667pt;}
.y0_c00204{bottom:0.000000pt;}
.y44_c00204{bottom:2.760000pt;}
.y43_c00204{bottom:6.425206pt;}
.y42_c00204{bottom:43.493333pt;}
.y41_c00204{bottom:60.693333pt;}
.y40_c00204{bottom:77.360000pt;}
.y3f_c00204{bottom:93.360000pt;}
.y3e_c00204{bottom:107.493333pt;}
.y26_c00204{bottom:110.960000pt;}
.y3d_c00204{bottom:124.160000pt;}
.y25_c00204{bottom:126.693333pt;}
.y3c_c00204{bottom:139.893333pt;}
.y24_c00204{bottom:142.560000pt;}
.y3b_c00204{bottom:156.026667pt;}
.y23_c00204{bottom:158.160000pt;}
.y3a_c00204{bottom:171.893333pt;}
.y22_c00204{bottom:174.026667pt;}
.y39_c00204{bottom:187.760000pt;}
.y21_c00204{bottom:190.293333pt;}
.y38_c00204{bottom:204.026667pt;}
.y20_c00204{bottom:205.893333pt;}
.y37_c00204{bottom:219.893333pt;}
.y1f_c00204{bottom:222.293333pt;}
.y36_c00204{bottom:234.960000pt;}
.y1e_c00204{bottom:238.826667pt;}
.y35_c00204{bottom:251.360000pt;}
.y1d_c00204{bottom:253.760000pt;}
.y34_c00204{bottom:267.626667pt;}
.y1c_c00204{bottom:269.760000pt;}
.y33_c00204{bottom:283.760000pt;}
.y1b_c00204{bottom:285.893333pt;}
.y32_c00204{bottom:299.360000pt;}
.y1a_c00204{bottom:301.493333pt;}
.y31_c00204{bottom:315.626667pt;}
.y19_c00204{bottom:317.493333pt;}
.y30_c00204{bottom:331.760000pt;}
.y18_c00204{bottom:333.893333pt;}
.y2f_c00204{bottom:347.760000pt;}
.y17_c00204{bottom:349.760000pt;}
.y2e_c00204{bottom:363.626667pt;}
.y16_c00204{bottom:365.360000pt;}
.y2d_c00204{bottom:379.893333pt;}
.y15_c00204{bottom:381.093333pt;}
.y14_c00204{bottom:393.893333pt;}
.y2c_c00204{bottom:396.026667pt;}
.y13_c00204{bottom:396.960000pt;}
.y2b_c00204{bottom:411.360000pt;}
.y12_c00204{bottom:412.293333pt;}
.y2a_c00204{bottom:427.893333pt;}
.y29_c00204{bottom:443.760000pt;}
.y11_c00204{bottom:444.293333pt;}
.y28_c00204{bottom:459.360000pt;}
.y10_c00204{bottom:460.160000pt;}
.y27_c00204{bottom:475.493333pt;}
.yf_c00204{bottom:475.893333pt;}
.ye_c00204{bottom:492.026667pt;}
.yd_c00204{bottom:508.160000pt;}
.yc_c00204{bottom:524.160000pt;}
.yb_c00204{bottom:540.026667pt;}
.ya_c00204{bottom:556.560000pt;}
.y9_c00204{bottom:571.226667pt;}
.y8_c00204{bottom:587.360000pt;}
.y7_c00204{bottom:603.093333pt;}
.y6_c00204{bottom:619.226667pt;}
.y5_c00204{bottom:635.360000pt;}
.y4_c00204{bottom:651.093333pt;}
.y3_c00204{bottom:666.960000pt;}
.y2_c00204{bottom:683.493333pt;}
.y1_c00204{bottom:699.093333pt;}
.h6_c00204{height:11.733399pt;}
.h7_c00204{height:38.937500pt;}
.h4_c00204{height:53.098667pt;}
.h3_c00204{height:55.893333pt;}
.h5_c00204{height:58.688000pt;}
.h2_c00204{height:61.482667pt;}
.h0_c00204{height:749.066667pt;}
.h1_c00204{height:749.333333pt;}
.w1_c00204{width:93.222667pt;}
.w0_c00204{width:524.666667pt;}
.x0_c00204{left:0.000000pt;}
.xd_c00204{left:12.933333pt;}
.xa_c00204{left:16.533333pt;}
.xb_c00204{left:18.800000pt;}
.x10_c00204{left:65.333333pt;}
.xf_c00204{left:66.533333pt;}
.xe_c00204{left:68.666667pt;}
.xc_c00204{left:70.800000pt;}
.x1_c00204{left:72.266667pt;}
.x2_c00204{left:73.200000pt;}
.x3_c00204{left:74.400000pt;}
.x8_c00204{left:102.800000pt;}
.x9_c00204{left:119.600000pt;}
.x6_c00204{left:121.200000pt;}
.x7_c00204{left:146.666667pt;}
.x5_c00204{left:160.933333pt;}
.x19_c00204{left:219.501546pt;}
.x17_c00204{left:254.000000pt;}
.x15_c00204{left:255.600000pt;}
.x16_c00204{left:256.800000pt;}
.x14_c00204{left:258.266667pt;}
.x13_c00204{left:259.200000pt;}
.x12_c00204{left:260.666667pt;}
.x4_c00204{left:261.600000pt;}
.x18_c00204{left:346.400000pt;}
.x11_c00204{left:356.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c93d15f4b3cab8e4256c0739.woff2')format("woff");}.ff1_c00205{font-family:ff1_c00205;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00205;src:url('chunks/assets/font_434b2f6aef395226e6db98ae.woff2')format("woff");}.ff2_c00205{font-family:ff2_c00205;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00205;src:url('chunks/assets/font_9c19e228e88fd1decc553a22.woff2')format("woff");}.ff3_c00205{font-family:ff3_c00205;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00205;src:url('chunks/assets/font_0bc2e43de546f088724fd2ec.woff2')format("woff");}.ff4_c00205{font-family:ff4_c00205;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00205;src:url('chunks/assets/font_6c37a5465b47b3c0ce1562b4.woff2')format("woff");}.ff5_c00205{font-family:ff5_c00205;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00205;src:url('chunks/assets/font_d36421142f5624e01d5b023a.woff2')format("woff");}.ff6_c00205{font-family:ff6_c00205;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00205;src:url('chunks/assets/font_53970840027122674b0aca81.woff2')format("woff");}.ff7_c00205{font-family:ff7_c00205;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00205;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff8_c00205{font-family:ff8_c00205;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00205{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00205{vertical-align:0.000000px;}
.v1_c00205{vertical-align:94.800000px;}
.ls9_c00205{letter-spacing:-3.000000px;}
.ls7_c00205{letter-spacing:0.000000px;}
.ls1_c00205{letter-spacing:3.000000px;}
.ls8_c00205{letter-spacing:6.000000px;}
.ls5_c00205{letter-spacing:19.230000px;}
.ls0_c00205{letter-spacing:19.260000px;}
.ls3_c00205{letter-spacing:20.820000px;}
.ls2_c00205{letter-spacing:22.050000px;}
.ls6_c00205{letter-spacing:23.805000px;}
.ls4_c00205{letter-spacing:31.650000px;}
.sc__c00205{text-shadow:none;}
.sc0_c00205{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00205{-webkit-text-stroke:0px transparent;}
.sc0_c00205{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00205{word-spacing:-40.920000px;}
.ws2_c00205{word-spacing:-18.060000px;}
.ws1_c00205{word-spacing:-15.750000px;}
.ws0_c00205{word-spacing:-14.160000px;}
.ws4_c00205{word-spacing:-11.160000px;}
.ws5_c00205{word-spacing:0.000000px;}
._e_c00205{margin-left:-20.700000px;}
._16_c00205{margin-left:-13.860000px;}
._1b_c00205{margin-left:-11.940000px;}
._24_c00205{margin-left:-8.526000px;}
._21_c00205{margin-left:-6.960000px;}
._10_c00205{margin-left:-4.740000px;}
._11_c00205{margin-left:-2.940000px;}
._d_c00205{margin-left:-1.860000px;}
._a_c00205{width:1.320000px;}
._9_c00205{width:2.400000px;}
._8_c00205{width:3.900000px;}
._0_c00205{width:5.520000px;}
._b_c00205{width:7.140000px;}
._1_c00205{width:8.640000px;}
._25_c00205{width:9.840000px;}
._14_c00205{width:10.920000px;}
._c_c00205{width:12.240000px;}
._13_c00205{width:13.500000px;}
._3_c00205{width:14.700000px;}
._1f_c00205{width:15.720000px;}
._4_c00205{width:16.740000px;}
._23_c00205{width:17.940000px;}
._18_c00205{width:19.140000px;}
._29_c00205{width:20.220000px;}
._15_c00205{width:21.462000px;}
._6_c00205{width:22.860000px;}
._1d_c00205{width:23.940000px;}
._5_c00205{width:25.080000px;}
._17_c00205{width:26.940000px;}
._7_c00205{width:28.800000px;}
._28_c00205{width:31.080000px;}
._1c_c00205{width:32.280000px;}
._12_c00205{width:34.620000px;}
._1a_c00205{width:36.480000px;}
._19_c00205{width:40.320000px;}
._26_c00205{width:42.480000px;}
._20_c00205{width:45.420000px;}
._27_c00205{width:51.240000px;}
._22_c00205{width:115.980000px;}
._f_c00205{width:138.240000px;}
._1e_c00205{width:214.920000px;}
._2_c00205{width:289.860000px;}
.fc2_c00205{color:transparent;}
.fc1_c00205{color:rgb(128,128,128);}
.fc0_c00205{color:rgb(0,0,0);}
.fs6_c00205{font-size:45.000000px;}
.fs7_c00205{font-size:48.000000px;}
.fs2_c00205{font-size:54.000000px;}
.fs0_c00205{font-size:60.000000px;}
.fs1_c00205{font-size:63.000000px;}
.fs3_c00205{font-size:66.000000px;}
.fs5_c00205{font-size:72.000000px;}
.fs4_c00205{font-size:207.000000px;}
.y0_c00205{bottom:0.000000px;}
.y56_c00205{bottom:3.105000px;}
.y55_c00205{bottom:7.228357px;}
.y54_c00205{bottom:42.930000px;}
.y53_c00205{bottom:60.480000px;}
.y2a_c00205{bottom:62.130000px;}
.y52_c00205{bottom:79.380000px;}
.y29_c00205{bottom:80.280000px;}
.y51_c00205{bottom:97.830000px;}
.y28_c00205{bottom:99.330000px;}
.y27_c00205{bottom:114.780000px;}
.y50_c00205{bottom:115.830000px;}
.y26_c00205{bottom:133.980000px;}
.y4f_c00205{bottom:134.430000px;}
.y25_c00205{bottom:151.830000px;}
.y4e_c00205{bottom:152.880000px;}
.y24_c00205{bottom:170.130000px;}
.y4d_c00205{bottom:170.880000px;}
.y4c_c00205{bottom:187.680000px;}
.y23_c00205{bottom:188.430000px;}
.y22_c00205{bottom:206.280000px;}
.y4b_c00205{bottom:207.180000px;}
.y21_c00205{bottom:223.530000px;}
.y4a_c00205{bottom:225.180000px;}
.y48_c00205{bottom:236.580000px;}
.y20_c00205{bottom:242.730000px;}
.y49_c00205{bottom:243.030000px;}
.y1f_c00205{bottom:260.280000px;}
.y1e_c00205{bottom:277.530000px;}
.y47_c00205{bottom:294.030000px;}
.y1d_c00205{bottom:296.730000px;}
.y1c_c00205{bottom:313.830000px;}
.y46_c00205{bottom:315.330000px;}
.y1b_c00205{bottom:332.430000px;}
.y45_c00205{bottom:334.080000px;}
.y1a_c00205{bottom:350.730000px;}
.y44_c00205{bottom:351.780000px;}
.y19_c00205{bottom:368.580000px;}
.y43_c00205{bottom:369.930000px;}
.y18_c00205{bottom:386.130000px;}
.y42_c00205{bottom:388.230000px;}
.y2c_c00205{bottom:390.180000px;}
.y17_c00205{bottom:404.430000px;}
.y2b_c00205{bottom:409.380000px;}
.y16_c00205{bottom:422.280000px;}
.y41_c00205{bottom:423.630000px;}
.y15_c00205{bottom:440.130000px;}
.y14_c00205{bottom:458.730000px;}
.y40_c00205{bottom:459.780000px;}
.y13_c00205{bottom:476.280000px;}
.y3f_c00205{bottom:477.180000px;}
.y12_c00205{bottom:493.830000px;}
.y3e_c00205{bottom:495.780000px;}
.y11_c00205{bottom:512.280000px;}
.y3d_c00205{bottom:513.630000px;}
.y10_c00205{bottom:529.980000px;}
.y3c_c00205{bottom:531.330000px;}
.yf_c00205{bottom:548.130000px;}
.y3b_c00205{bottom:549.480000px;}
.ye_c00205{bottom:566.730000px;}
.y3a_c00205{bottom:567.630000px;}
.yd_c00205{bottom:584.580000px;}
.y39_c00205{bottom:585.930000px;}
.yc_c00205{bottom:603.480000px;}
.y38_c00205{bottom:604.080000px;}
.yb_c00205{bottom:620.280000px;}
.y37_c00205{bottom:621.780000px;}
.ya_c00205{bottom:638.280000px;}
.y36_c00205{bottom:639.180000px;}
.y9_c00205{bottom:656.430000px;}
.y35_c00205{bottom:658.080000px;}
.y8_c00205{bottom:674.730000px;}
.y34_c00205{bottom:676.380000px;}
.y7_c00205{bottom:692.280000px;}
.y33_c00205{bottom:694.530000px;}
.y6_c00205{bottom:710.730000px;}
.y32_c00205{bottom:712.230000px;}
.y5_c00205{bottom:729.630000px;}
.y31_c00205{bottom:730.980000px;}
.y4_c00205{bottom:747.330000px;}
.y30_c00205{bottom:748.230000px;}
.y3_c00205{bottom:765.480000px;}
.y2f_c00205{bottom:766.530000px;}
.y2_c00205{bottom:783.780000px;}
.y2e_c00205{bottom:784.680000px;}
.y1_c00205{bottom:803.580000px;}
.y2d_c00205{bottom:804.930000px;}
.h6_c00205{height:13.200074px;}
.h7_c00205{height:43.804688px;}
.h2_c00205{height:62.880000px;}
.h3_c00205{height:68.292000px;}
.h4_c00205{height:69.168000px;}
.h5_c00205{height:220.869000px;}
.h0_c00205{height:841.350000px;}
.h1_c00205{height:841.500000px;}
.w2_c00205{width:104.875500px;}
.w0_c00205{width:558.375000px;}
.w1_c00205{width:558.750000px;}
.x0_c00205{left:0.000000px;}
.x7_c00205{left:33.450000px;}
.x9_c00205{left:35.550000px;}
.x4_c00205{left:46.950000px;}
.x2_c00205{left:68.550000px;}
.xa_c00205{left:78.300000px;}
.xb_c00205{left:91.800000px;}
.x6_c00205{left:95.850000px;}
.x3_c00205{left:96.900000px;}
.x8_c00205{left:98.550000px;}
.x1_c00205{left:101.550000px;}
.x5_c00205{left:123.900000px;}
.x19_c00205{left:231.001740px;}
.xd_c00205{left:309.900000px;}
.xe_c00205{left:311.250000px;}
.xf_c00205{left:312.300000px;}
.x17_c00205{left:313.950000px;}
.xc_c00205{left:319.650000px;}
.x11_c00205{left:322.650000px;}
.x12_c00205{left:343.650000px;}
.x16_c00205{left:358.200000px;}
.x13_c00205{left:360.750000px;}
.x14_c00205{left:380.700000px;}
.x15_c00205{left:393.600000px;}
.x10_c00205{left:408.000000px;}
.x18_c00205{left:486.750000px;}
@media print{
.v0_c00205{vertical-align:0.000000pt;}
.v1_c00205{vertical-align:84.266667pt;}
.ls9_c00205{letter-spacing:-2.666667pt;}
.ls7_c00205{letter-spacing:0.000000pt;}
.ls1_c00205{letter-spacing:2.666667pt;}
.ls8_c00205{letter-spacing:5.333333pt;}
.ls5_c00205{letter-spacing:17.093333pt;}
.ls0_c00205{letter-spacing:17.120000pt;}
.ls3_c00205{letter-spacing:18.506667pt;}
.ls2_c00205{letter-spacing:19.600000pt;}
.ls6_c00205{letter-spacing:21.160000pt;}
.ls4_c00205{letter-spacing:28.133333pt;}
.ws3_c00205{word-spacing:-36.373333pt;}
.ws2_c00205{word-spacing:-16.053333pt;}
.ws1_c00205{word-spacing:-14.000000pt;}
.ws0_c00205{word-spacing:-12.586667pt;}
.ws4_c00205{word-spacing:-9.920000pt;}
.ws5_c00205{word-spacing:0.000000pt;}
._e_c00205{margin-left:-18.400000pt;}
._16_c00205{margin-left:-12.320000pt;}
._1b_c00205{margin-left:-10.613333pt;}
._24_c00205{margin-left:-7.578667pt;}
._21_c00205{margin-left:-6.186667pt;}
._10_c00205{margin-left:-4.213333pt;}
._11_c00205{margin-left:-2.613333pt;}
._d_c00205{margin-left:-1.653333pt;}
._a_c00205{width:1.173333pt;}
._9_c00205{width:2.133333pt;}
._8_c00205{width:3.466667pt;}
._0_c00205{width:4.906667pt;}
._b_c00205{width:6.346667pt;}
._1_c00205{width:7.680000pt;}
._25_c00205{width:8.746667pt;}
._14_c00205{width:9.706667pt;}
._c_c00205{width:10.880000pt;}
._13_c00205{width:12.000000pt;}
._3_c00205{width:13.066667pt;}
._1f_c00205{width:13.973333pt;}
._4_c00205{width:14.880000pt;}
._23_c00205{width:15.946667pt;}
._18_c00205{width:17.013333pt;}
._29_c00205{width:17.973333pt;}
._15_c00205{width:19.077333pt;}
._6_c00205{width:20.320000pt;}
._1d_c00205{width:21.280000pt;}
._5_c00205{width:22.293333pt;}
._17_c00205{width:23.946667pt;}
._7_c00205{width:25.600000pt;}
._28_c00205{width:27.626667pt;}
._1c_c00205{width:28.693333pt;}
._12_c00205{width:30.773333pt;}
._1a_c00205{width:32.426667pt;}
._19_c00205{width:35.840000pt;}
._26_c00205{width:37.760000pt;}
._20_c00205{width:40.373333pt;}
._27_c00205{width:45.546667pt;}
._22_c00205{width:103.093333pt;}
._f_c00205{width:122.880000pt;}
._1e_c00205{width:191.040000pt;}
._2_c00205{width:257.653333pt;}
.fs6_c00205{font-size:40.000000pt;}
.fs7_c00205{font-size:42.666667pt;}
.fs2_c00205{font-size:48.000000pt;}
.fs0_c00205{font-size:53.333333pt;}
.fs1_c00205{font-size:56.000000pt;}
.fs3_c00205{font-size:58.666667pt;}
.fs5_c00205{font-size:64.000000pt;}
.fs4_c00205{font-size:184.000000pt;}
.y0_c00205{bottom:0.000000pt;}
.y56_c00205{bottom:2.760000pt;}
.y55_c00205{bottom:6.425206pt;}
.y54_c00205{bottom:38.160000pt;}
.y53_c00205{bottom:53.760000pt;}
.y2a_c00205{bottom:55.226667pt;}
.y52_c00205{bottom:70.560000pt;}
.y29_c00205{bottom:71.360000pt;}
.y51_c00205{bottom:86.960000pt;}
.y28_c00205{bottom:88.293333pt;}
.y27_c00205{bottom:102.026667pt;}
.y50_c00205{bottom:102.960000pt;}
.y26_c00205{bottom:119.093333pt;}
.y4f_c00205{bottom:119.493333pt;}
.y25_c00205{bottom:134.960000pt;}
.y4e_c00205{bottom:135.893333pt;}
.y24_c00205{bottom:151.226667pt;}
.y4d_c00205{bottom:151.893333pt;}
.y4c_c00205{bottom:166.826667pt;}
.y23_c00205{bottom:167.493333pt;}
.y22_c00205{bottom:183.360000pt;}
.y4b_c00205{bottom:184.160000pt;}
.y21_c00205{bottom:198.693333pt;}
.y4a_c00205{bottom:200.160000pt;}
.y48_c00205{bottom:210.293333pt;}
.y20_c00205{bottom:215.760000pt;}
.y49_c00205{bottom:216.026667pt;}
.y1f_c00205{bottom:231.360000pt;}
.y1e_c00205{bottom:246.693333pt;}
.y47_c00205{bottom:261.360000pt;}
.y1d_c00205{bottom:263.760000pt;}
.y1c_c00205{bottom:278.960000pt;}
.y46_c00205{bottom:280.293333pt;}
.y1b_c00205{bottom:295.493333pt;}
.y45_c00205{bottom:296.960000pt;}
.y1a_c00205{bottom:311.760000pt;}
.y44_c00205{bottom:312.693333pt;}
.y19_c00205{bottom:327.626667pt;}
.y43_c00205{bottom:328.826667pt;}
.y18_c00205{bottom:343.226667pt;}
.y42_c00205{bottom:345.093333pt;}
.y2c_c00205{bottom:346.826667pt;}
.y17_c00205{bottom:359.493333pt;}
.y2b_c00205{bottom:363.893333pt;}
.y16_c00205{bottom:375.360000pt;}
.y41_c00205{bottom:376.560000pt;}
.y15_c00205{bottom:391.226667pt;}
.y14_c00205{bottom:407.760000pt;}
.y40_c00205{bottom:408.693333pt;}
.y13_c00205{bottom:423.360000pt;}
.y3f_c00205{bottom:424.160000pt;}
.y12_c00205{bottom:438.960000pt;}
.y3e_c00205{bottom:440.693333pt;}
.y11_c00205{bottom:455.360000pt;}
.y3d_c00205{bottom:456.560000pt;}
.y10_c00205{bottom:471.093333pt;}
.y3c_c00205{bottom:472.293333pt;}
.yf_c00205{bottom:487.226667pt;}
.y3b_c00205{bottom:488.426667pt;}
.ye_c00205{bottom:503.760000pt;}
.y3a_c00205{bottom:504.560000pt;}
.yd_c00205{bottom:519.626667pt;}
.y39_c00205{bottom:520.826667pt;}
.yc_c00205{bottom:536.426667pt;}
.y38_c00205{bottom:536.960000pt;}
.yb_c00205{bottom:551.360000pt;}
.y37_c00205{bottom:552.693333pt;}
.ya_c00205{bottom:567.360000pt;}
.y36_c00205{bottom:568.160000pt;}
.y9_c00205{bottom:583.493333pt;}
.y35_c00205{bottom:584.960000pt;}
.y8_c00205{bottom:599.760000pt;}
.y34_c00205{bottom:601.226667pt;}
.y7_c00205{bottom:615.360000pt;}
.y33_c00205{bottom:617.360000pt;}
.y6_c00205{bottom:631.760000pt;}
.y32_c00205{bottom:633.093333pt;}
.y5_c00205{bottom:648.560000pt;}
.y31_c00205{bottom:649.760000pt;}
.y4_c00205{bottom:664.293333pt;}
.y30_c00205{bottom:665.093333pt;}
.y3_c00205{bottom:680.426667pt;}
.y2f_c00205{bottom:681.360000pt;}
.y2_c00205{bottom:696.693333pt;}
.y2e_c00205{bottom:697.493333pt;}
.y1_c00205{bottom:714.293333pt;}
.y2d_c00205{bottom:715.493333pt;}
.h6_c00205{height:11.733399pt;}
.h7_c00205{height:38.937500pt;}
.h2_c00205{height:55.893333pt;}
.h3_c00205{height:60.704000pt;}
.h4_c00205{height:61.482667pt;}
.h5_c00205{height:196.328000pt;}
.h0_c00205{height:747.866667pt;}
.h1_c00205{height:748.000000pt;}
.w2_c00205{width:93.222667pt;}
.w0_c00205{width:496.333333pt;}
.w1_c00205{width:496.666667pt;}
.x0_c00205{left:0.000000pt;}
.x7_c00205{left:29.733333pt;}
.x9_c00205{left:31.600000pt;}
.x4_c00205{left:41.733333pt;}
.x2_c00205{left:60.933333pt;}
.xa_c00205{left:69.600000pt;}
.xb_c00205{left:81.600000pt;}
.x6_c00205{left:85.200000pt;}
.x3_c00205{left:86.133333pt;}
.x8_c00205{left:87.600000pt;}
.x1_c00205{left:90.266667pt;}
.x5_c00205{left:110.133333pt;}
.x19_c00205{left:205.334880pt;}
.xd_c00205{left:275.466667pt;}
.xe_c00205{left:276.666667pt;}
.xf_c00205{left:277.600000pt;}
.x17_c00205{left:279.066667pt;}
.xc_c00205{left:284.133333pt;}
.x11_c00205{left:286.800000pt;}
.x12_c00205{left:305.466667pt;}
.x16_c00205{left:318.400000pt;}
.x13_c00205{left:320.666667pt;}
.x14_c00205{left:338.400000pt;}
.x15_c00205{left:349.866667pt;}
.x10_c00205{left:362.666667pt;}
.x18_c00205{left:432.666667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3b725b461e4d7cca389a1e64.woff2')format("woff");}.ff1_c00206{font-family:ff1_c00206;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00206;src:url('chunks/assets/font_46adac65f737426dde04fc00.woff2')format("woff");}.ff2_c00206{font-family:ff2_c00206;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00206;src:url('chunks/assets/font_996e91e0d912cd63df521442.woff2')format("woff");}.ff3_c00206{font-family:ff3_c00206;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00206;src:url('chunks/assets/font_7bd0dac52a8c3e69b916cdc1.woff2')format("woff");}.ff4_c00206{font-family:ff4_c00206;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00206;src:url('chunks/assets/font_8cc1536cdf399baca6aff026.woff2')format("woff");}.ff5_c00206{font-family:ff5_c00206;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00206;src:url('chunks/assets/font_0767a18f8dd744e11c094f39.woff2')format("woff");}.ff6_c00206{font-family:ff6_c00206;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00206;src:url('chunks/assets/font_2cd14d4e5f538ec5586bb17f.woff2')format("woff");}.ff7_c00206{font-family:ff7_c00206;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00206;src:url('chunks/assets/font_3981cc01421919c929a42b57.woff2')format("woff");}.ff8_c00206{font-family:ff8_c00206;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00206;src:url('chunks/assets/font_f1914cb1a5018abb5620fff0.woff2')format("woff");}.ff9_c00206{font-family:ff9_c00206;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00206;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ffa_c00206{font-family:ffa_c00206;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00206{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00206{vertical-align:0.000000px;}
.ls5_c00206{letter-spacing:0.000000px;}
.ls0_c00206{letter-spacing:3.000000px;}
.ls6_c00206{letter-spacing:9.000000px;}
.ls4_c00206{letter-spacing:15.000000px;}
.ls3_c00206{letter-spacing:22.740000px;}
.ls2_c00206{letter-spacing:37.893000px;}
.ls1_c00206{letter-spacing:38.493000px;}
.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;}
}
.ws2_c00206{word-spacing:-45.258000px;}
.ws0_c00206{word-spacing:-29.340000px;}
.ws5_c00206{word-spacing:-29.295000px;}
.ws6_c00206{word-spacing:-25.974000px;}
.ws4_c00206{word-spacing:-17.250000px;}
.ws3_c00206{word-spacing:-14.160000px;}
.ws1_c00206{word-spacing:-13.452000px;}
.ws7_c00206{word-spacing:0.000000px;}
._2c_c00206{margin-left:-16.740000px;}
._28_c00206{margin-left:-12.648000px;}
._26_c00206{margin-left:-10.560000px;}
._1e_c00206{margin-left:-8.952000px;}
._27_c00206{margin-left:-7.800000px;}
._6_c00206{margin-left:-6.240000px;}
._11_c00206{margin-left:-4.740000px;}
._f_c00206{margin-left:-3.420000px;}
._1_c00206{margin-left:-2.340000px;}
._0_c00206{margin-left:-1.080000px;}
._12_c00206{width:1.200000px;}
._7_c00206{width:2.460000px;}
._9_c00206{width:3.480000px;}
._8_c00206{width:4.560000px;}
._15_c00206{width:6.000000px;}
._5_c00206{width:7.680000px;}
._1f_c00206{width:9.360000px;}
._3_c00206{width:10.440000px;}
._22_c00206{width:11.490000px;}
._2_c00206{width:12.540000px;}
._10_c00206{width:13.680000px;}
._e_c00206{width:15.660000px;}
._16_c00206{width:16.980000px;}
._25_c00206{width:20.190000px;}
._c_c00206{width:21.300000px;}
._14_c00206{width:22.980000px;}
._2a_c00206{width:24.060000px;}
._18_c00206{width:25.197000px;}
._23_c00206{width:26.520000px;}
._24_c00206{width:27.816000px;}
._a_c00206{width:29.040000px;}
._b_c00206{width:30.300000px;}
._17_c00206{width:32.523000px;}
._20_c00206{width:34.620000px;}
._1b_c00206{width:36.639000px;}
._2e_c00206{width:37.920000px;}
._19_c00206{width:40.692000px;}
._1a_c00206{width:42.780000px;}
._1c_c00206{width:47.658000px;}
._21_c00206{width:54.180000px;}
._13_c00206{width:67.560000px;}
._d_c00206{width:72.840000px;}
._29_c00206{width:74.130000px;}
._4_c00206{width:79.860000px;}
._2d_c00206{width:95.700000px;}
._1d_c00206{width:128.580000px;}
._2b_c00206{width:218.940000px;}
.fc2_c00206{color:transparent;}
.fc1_c00206{color:rgb(128,128,128);}
.fc0_c00206{color:rgb(0,0,0);}
.fs5_c00206{font-size:45.000000px;}
.fs6_c00206{font-size:48.000000px;}
.fs2_c00206{font-size:51.000000px;}
.fs3_c00206{font-size:54.000000px;}
.fs1_c00206{font-size:57.000000px;}
.fs0_c00206{font-size:60.000000px;}
.fs4_c00206{font-size:69.000000px;}
.y0_c00206{bottom:0.000000px;}
.y4a_c00206{bottom:3.105000px;}
.y49_c00206{bottom:7.228357px;}
.y48_c00206{bottom:45.330000px;}
.y29_c00206{bottom:63.180000px;}
.y47_c00206{bottom:64.230000px;}
.y28_c00206{bottom:82.080000px;}
.y46_c00206{bottom:99.330000px;}
.y27_c00206{bottom:99.630000px;}
.y26_c00206{bottom:116.730000px;}
.y45_c00206{bottom:117.180000px;}
.y44_c00206{bottom:135.030000px;}
.y25_c00206{bottom:135.780000px;}
.y43_c00206{bottom:153.330000px;}
.y24_c00206{bottom:153.930000px;}
.y42_c00206{bottom:171.480000px;}
.y23_c00206{bottom:172.080000px;}
.y22_c00206{bottom:189.630000px;}
.y41_c00206{bottom:207.180000px;}
.y21_c00206{bottom:207.330000px;}
.y20_c00206{bottom:224.880000px;}
.y40_c00206{bottom:225.180000px;}
.y3f_c00206{bottom:243.330000px;}
.y1f_c00206{bottom:243.630000px;}
.y1e_c00206{bottom:261.630000px;}
.y1d_c00206{bottom:279.180000px;}
.y1c_c00206{bottom:297.030000px;}
.y3e_c00206{bottom:297.630000px;}
.y1b_c00206{bottom:315.630000px;}
.y1a_c00206{bottom:333.180000px;}
.y19_c00206{bottom:351.030000px;}
.y18_c00206{bottom:368.880000px;}
.y3d_c00206{bottom:369.630000px;}
.y17_c00206{bottom:386.430000px;}
.y3c_c00206{bottom:386.880000px;}
.y16_c00206{bottom:404.430000px;}
.y3b_c00206{bottom:405.780000px;}
.y15_c00206{bottom:422.280000px;}
.y3a_c00206{bottom:423.630000px;}
.y14_c00206{bottom:439.830000px;}
.y39_c00206{bottom:442.080000px;}
.y13_c00206{bottom:457.680000px;}
.y38_c00206{bottom:460.080000px;}
.y12_c00206{bottom:475.230000px;}
.y37_c00206{bottom:478.230000px;}
.y11_c00206{bottom:493.080000px;}
.y36_c00206{bottom:496.230000px;}
.y10_c00206{bottom:510.930000px;}
.y35_c00206{bottom:514.080000px;}
.yf_c00206{bottom:528.480000px;}
.y34_c00206{bottom:532.980000px;}
.ye_c00206{bottom:546.180000px;}
.y33_c00206{bottom:550.830000px;}
.yd_c00206{bottom:564.930000px;}
.y32_c00206{bottom:568.680000px;}
.yc_c00206{bottom:582.630000px;}
.y31_c00206{bottom:586.980000px;}
.yb_c00206{bottom:600.780000px;}
.y30_c00206{bottom:605.430000px;}
.ya_c00206{bottom:618.930000px;}
.y2f_c00206{bottom:624.030000px;}
.y9_c00206{bottom:636.180000px;}
.y2e_c00206{bottom:641.580000px;}
.y8_c00206{bottom:653.730000px;}
.y2d_c00206{bottom:658.830000px;}
.y7_c00206{bottom:671.730000px;}
.y2c_c00206{bottom:677.130000px;}
.y6_c00206{bottom:689.880000px;}
.y2b_c00206{bottom:695.880000px;}
.y5_c00206{bottom:707.130000px;}
.y2a_c00206{bottom:713.580000px;}
.y4_c00206{bottom:728.280000px;}
.y3_c00206{bottom:746.580000px;}
.y2_c00206{bottom:763.380000px;}
.y1_c00206{bottom:782.280000px;}
.h6_c00206{height:13.200074px;}
.h7_c00206{height:43.804688px;}
.h3_c00206{height:59.736000px;}
.h2_c00206{height:62.880000px;}
.h4_c00206{height:64.571777px;}
.h5_c00206{height:73.623000px;}
.h0_c00206{height:842.700000px;}
.h1_c00206{height:843.000000px;}
.w1_c00206{width:104.875500px;}
.w0_c00206{width:590.250000px;}
.x0_c00206{left:0.000000px;}
.x6_c00206{left:21.900000px;}
.x7_c00206{left:23.550000px;}
.x1_c00206{left:77.250000px;}
.x2_c00206{left:78.600000px;}
.x3_c00206{left:79.950000px;}
.x5_c00206{left:81.000000px;}
.x4_c00206{left:130.500000px;}
.xd_c00206{left:246.939240px;}
.xb_c00206{left:289.950000px;}
.x9_c00206{left:291.150000px;}
.x8_c00206{left:292.500000px;}
.xa_c00206{left:314.250000px;}
.xc_c00206{left:368.550000px;}
@media print{
.v0_c00206{vertical-align:0.000000pt;}
.ls5_c00206{letter-spacing:0.000000pt;}
.ls0_c00206{letter-spacing:2.666667pt;}
.ls6_c00206{letter-spacing:8.000000pt;}
.ls4_c00206{letter-spacing:13.333333pt;}
.ls3_c00206{letter-spacing:20.213333pt;}
.ls2_c00206{letter-spacing:33.682667pt;}
.ls1_c00206{letter-spacing:34.216000pt;}
.ws2_c00206{word-spacing:-40.229333pt;}
.ws0_c00206{word-spacing:-26.080000pt;}
.ws5_c00206{word-spacing:-26.040000pt;}
.ws6_c00206{word-spacing:-23.088000pt;}
.ws4_c00206{word-spacing:-15.333333pt;}
.ws3_c00206{word-spacing:-12.586667pt;}
.ws1_c00206{word-spacing:-11.957333pt;}
.ws7_c00206{word-spacing:0.000000pt;}
._2c_c00206{margin-left:-14.880000pt;}
._28_c00206{margin-left:-11.242667pt;}
._26_c00206{margin-left:-9.386667pt;}
._1e_c00206{margin-left:-7.957333pt;}
._27_c00206{margin-left:-6.933333pt;}
._6_c00206{margin-left:-5.546667pt;}
._11_c00206{margin-left:-4.213333pt;}
._f_c00206{margin-left:-3.040000pt;}
._1_c00206{margin-left:-2.080000pt;}
._0_c00206{margin-left:-0.960000pt;}
._12_c00206{width:1.066667pt;}
._7_c00206{width:2.186667pt;}
._9_c00206{width:3.093333pt;}
._8_c00206{width:4.053333pt;}
._15_c00206{width:5.333333pt;}
._5_c00206{width:6.826667pt;}
._1f_c00206{width:8.320000pt;}
._3_c00206{width:9.280000pt;}
._22_c00206{width:10.213333pt;}
._2_c00206{width:11.146667pt;}
._10_c00206{width:12.160000pt;}
._e_c00206{width:13.920000pt;}
._16_c00206{width:15.093333pt;}
._25_c00206{width:17.946667pt;}
._c_c00206{width:18.933333pt;}
._14_c00206{width:20.426667pt;}
._2a_c00206{width:21.386667pt;}
._18_c00206{width:22.397333pt;}
._23_c00206{width:23.573333pt;}
._24_c00206{width:24.725333pt;}
._a_c00206{width:25.813333pt;}
._b_c00206{width:26.933333pt;}
._17_c00206{width:28.909333pt;}
._20_c00206{width:30.773333pt;}
._1b_c00206{width:32.568000pt;}
._2e_c00206{width:33.706667pt;}
._19_c00206{width:36.170667pt;}
._1a_c00206{width:38.026667pt;}
._1c_c00206{width:42.362667pt;}
._21_c00206{width:48.160000pt;}
._13_c00206{width:60.053333pt;}
._d_c00206{width:64.746667pt;}
._29_c00206{width:65.893333pt;}
._4_c00206{width:70.986667pt;}
._2d_c00206{width:85.066667pt;}
._1d_c00206{width:114.293333pt;}
._2b_c00206{width:194.613333pt;}
.fs5_c00206{font-size:40.000000pt;}
.fs6_c00206{font-size:42.666667pt;}
.fs2_c00206{font-size:45.333333pt;}
.fs3_c00206{font-size:48.000000pt;}
.fs1_c00206{font-size:50.666667pt;}
.fs0_c00206{font-size:53.333333pt;}
.fs4_c00206{font-size:61.333333pt;}
.y0_c00206{bottom:0.000000pt;}
.y4a_c00206{bottom:2.760000pt;}
.y49_c00206{bottom:6.425206pt;}
.y48_c00206{bottom:40.293333pt;}
.y29_c00206{bottom:56.160000pt;}
.y47_c00206{bottom:57.093333pt;}
.y28_c00206{bottom:72.960000pt;}
.y46_c00206{bottom:88.293333pt;}
.y27_c00206{bottom:88.560000pt;}
.y26_c00206{bottom:103.760000pt;}
.y45_c00206{bottom:104.160000pt;}
.y44_c00206{bottom:120.026667pt;}
.y25_c00206{bottom:120.693333pt;}
.y43_c00206{bottom:136.293333pt;}
.y24_c00206{bottom:136.826667pt;}
.y42_c00206{bottom:152.426667pt;}
.y23_c00206{bottom:152.960000pt;}
.y22_c00206{bottom:168.560000pt;}
.y41_c00206{bottom:184.160000pt;}
.y21_c00206{bottom:184.293333pt;}
.y20_c00206{bottom:199.893333pt;}
.y40_c00206{bottom:200.160000pt;}
.y3f_c00206{bottom:216.293333pt;}
.y1f_c00206{bottom:216.560000pt;}
.y1e_c00206{bottom:232.560000pt;}
.y1d_c00206{bottom:248.160000pt;}
.y1c_c00206{bottom:264.026667pt;}
.y3e_c00206{bottom:264.560000pt;}
.y1b_c00206{bottom:280.560000pt;}
.y1a_c00206{bottom:296.160000pt;}
.y19_c00206{bottom:312.026667pt;}
.y18_c00206{bottom:327.893333pt;}
.y3d_c00206{bottom:328.560000pt;}
.y17_c00206{bottom:343.493333pt;}
.y3c_c00206{bottom:343.893333pt;}
.y16_c00206{bottom:359.493333pt;}
.y3b_c00206{bottom:360.693333pt;}
.y15_c00206{bottom:375.360000pt;}
.y3a_c00206{bottom:376.560000pt;}
.y14_c00206{bottom:390.960000pt;}
.y39_c00206{bottom:392.960000pt;}
.y13_c00206{bottom:406.826667pt;}
.y38_c00206{bottom:408.960000pt;}
.y12_c00206{bottom:422.426667pt;}
.y37_c00206{bottom:425.093333pt;}
.y11_c00206{bottom:438.293333pt;}
.y36_c00206{bottom:441.093333pt;}
.y10_c00206{bottom:454.160000pt;}
.y35_c00206{bottom:456.960000pt;}
.yf_c00206{bottom:469.760000pt;}
.y34_c00206{bottom:473.760000pt;}
.ye_c00206{bottom:485.493333pt;}
.y33_c00206{bottom:489.626667pt;}
.yd_c00206{bottom:502.160000pt;}
.y32_c00206{bottom:505.493333pt;}
.yc_c00206{bottom:517.893333pt;}
.y31_c00206{bottom:521.760000pt;}
.yb_c00206{bottom:534.026667pt;}
.y30_c00206{bottom:538.160000pt;}
.ya_c00206{bottom:550.160000pt;}
.y2f_c00206{bottom:554.693333pt;}
.y9_c00206{bottom:565.493333pt;}
.y2e_c00206{bottom:570.293333pt;}
.y8_c00206{bottom:581.093333pt;}
.y2d_c00206{bottom:585.626667pt;}
.y7_c00206{bottom:597.093333pt;}
.y2c_c00206{bottom:601.893333pt;}
.y6_c00206{bottom:613.226667pt;}
.y2b_c00206{bottom:618.560000pt;}
.y5_c00206{bottom:628.560000pt;}
.y2a_c00206{bottom:634.293333pt;}
.y4_c00206{bottom:647.360000pt;}
.y3_c00206{bottom:663.626667pt;}
.y2_c00206{bottom:678.560000pt;}
.y1_c00206{bottom:695.360000pt;}
.h6_c00206{height:11.733399pt;}
.h7_c00206{height:38.937500pt;}
.h3_c00206{height:53.098667pt;}
.h2_c00206{height:55.893333pt;}
.h4_c00206{height:57.397135pt;}
.h5_c00206{height:65.442667pt;}
.h0_c00206{height:749.066667pt;}
.h1_c00206{height:749.333333pt;}
.w1_c00206{width:93.222667pt;}
.w0_c00206{width:524.666667pt;}
.x0_c00206{left:0.000000pt;}
.x6_c00206{left:19.466667pt;}
.x7_c00206{left:20.933333pt;}
.x1_c00206{left:68.666667pt;}
.x2_c00206{left:69.866667pt;}
.x3_c00206{left:71.066667pt;}
.x5_c00206{left:72.000000pt;}
.x4_c00206{left:116.000000pt;}
.xd_c00206{left:219.501546pt;}
.xb_c00206{left:257.733333pt;}
.x9_c00206{left:258.800000pt;}
.x8_c00206{left:260.000000pt;}
.xa_c00206{left:279.333333pt;}
.xc_c00206{left:327.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ec9dae9988fdc1a720316a48.woff2')format("woff");}.ff1_c00207{font-family:ff1_c00207;line-height:1.437000;font-style:normal;font-weight:normal;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_efb706a44333b6613fc5b20c.woff2')format("woff");}.ff2_c00207{font-family:ff2_c00207;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00207;src:url('chunks/assets/font_c1a66d677c4623bb9f6fb996.woff2')format("woff");}.ff3_c00207{font-family:ff3_c00207;line-height:1.437000;font-style:normal;font-weight:normal;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_6419cad2a6d7ef7c399c31b0.woff2')format("woff");}.ff4_c00207{font-family:ff4_c00207;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00207;src:url('chunks/assets/font_8586d4c09cbbcfbd0b712e2d.woff2')format("woff");}.ff5_c00207{font-family:ff5_c00207;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00207;src:url('chunks/assets/font_968b051a07ffa35876599ca2.woff2')format("woff");}.ff6_c00207{font-family:ff6_c00207;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00207;src:url('chunks/assets/font_a3532db17fe88df640629b29.woff2')format("woff");}.ff7_c00207{font-family:ff7_c00207;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00207;src:url('chunks/assets/font_8401317055ab1eac3bd3bc3c.woff2')format("woff");}.ff8_c00207{font-family:ff8_c00207;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00207;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff9_c00207{font-family:ff9_c00207;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00207{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00207{vertical-align:0.000000px;}
.ls2_c00207{letter-spacing:0.000000px;}
.ls1_c00207{letter-spacing:2.160000px;}
.ls0_c00207{letter-spacing:3.000000px;}
.ls3_c00207{letter-spacing:9.000000px;}
.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;}
}
.ws8_c00207{word-spacing:-45.258000px;}
.ws0_c00207{word-spacing:-38.019000px;}
.wsa_c00207{word-spacing:-30.480000px;}
.ws6_c00207{word-spacing:-23.760000px;}
.ws7_c00207{word-spacing:-19.755000px;}
.ws1_c00207{word-spacing:-18.813000px;}
.ws3_c00207{word-spacing:-18.060000px;}
.ws2_c00207{word-spacing:-17.340000px;}
.ws5_c00207{word-spacing:-16.500000px;}
.ws4_c00207{word-spacing:-14.160000px;}
.ws9_c00207{word-spacing:-0.300000px;}
.wsb_c00207{word-spacing:0.000000px;}
._1c_c00207{margin-left:-20.019000px;}
._1e_c00207{margin-left:-12.120000px;}
._e_c00207{margin-left:-9.843000px;}
._14_c00207{margin-left:-7.833000px;}
._f_c00207{margin-left:-6.273000px;}
._a_c00207{margin-left:-4.800000px;}
._6_c00207{margin-left:-3.591000px;}
._b_c00207{margin-left:-1.926000px;}
._2_c00207{width:1.881000px;}
._0_c00207{width:3.564000px;}
._8_c00207{width:5.217000px;}
._c_c00207{width:6.240000px;}
._5_c00207{width:7.308000px;}
._3_c00207{width:8.757000px;}
._1_c00207{width:10.416000px;}
._11_c00207{width:11.463000px;}
._4_c00207{width:12.474000px;}
._20_c00207{width:13.695000px;}
._d_c00207{width:14.751000px;}
._12_c00207{width:15.900000px;}
._10_c00207{width:16.992000px;}
._7_c00207{width:19.434000px;}
._18_c00207{width:20.556000px;}
._9_c00207{width:21.654000px;}
._15_c00207{width:22.683000px;}
._21_c00207{width:24.432000px;}
._17_c00207{width:26.016000px;}
._13_c00207{width:27.081000px;}
._19_c00207{width:28.968000px;}
._16_c00207{width:30.441000px;}
._22_c00207{width:33.522000px;}
._1f_c00207{width:37.482000px;}
._1d_c00207{width:43.860000px;}
._25_c00207{width:45.501000px;}
._24_c00207{width:47.751000px;}
._26_c00207{width:49.314000px;}
._23_c00207{width:53.751000px;}
._1b_c00207{width:134.475000px;}
._1a_c00207{width:251.664000px;}
.fc2_c00207{color:transparent;}
.fc1_c00207{color:rgb(128,128,128);}
.fc0_c00207{color:rgb(0,0,0);}
.fs5_c00207{font-size:45.000000px;}
.fs4_c00207{font-size:48.000000px;}
.fs1_c00207{font-size:57.000000px;}
.fs3_c00207{font-size:60.000000px;}
.fs2_c00207{font-size:63.000000px;}
.fs0_c00207{font-size:66.000000px;}
.y0_c00207{bottom:0.000000px;}
.y55_c00207{bottom:3.105000px;}
.y54_c00207{bottom:7.228355px;}
.y4f_c00207{bottom:32.085000px;}
.y2c_c00207{bottom:48.885000px;}
.y4e_c00207{bottom:49.935000px;}
.y2b_c00207{bottom:67.485000px;}
.y4d_c00207{bottom:68.085000px;}
.y2a_c00207{bottom:85.935000px;}
.y4c_c00207{bottom:86.085000px;}
.y29_c00207{bottom:103.635000px;}
.y4b_c00207{bottom:104.235000px;}
.y28_c00207{bottom:121.785000px;}
.y4a_c00207{bottom:122.385000px;}
.y27_c00207{bottom:139.935000px;}
.y49_c00207{bottom:140.385000px;}
.y26_c00207{bottom:157.935000px;}
.y48_c00207{bottom:158.535000px;}
.y25_c00207{bottom:176.385000px;}
.y24_c00207{bottom:194.385000px;}
.y23_c00207{bottom:212.535000px;}
.y22_c00207{bottom:230.835000px;}
.y21_c00207{bottom:248.985000px;}
.y47_c00207{bottom:249.285000px;}
.y20_c00207{bottom:266.235000px;}
.y46_c00207{bottom:266.985000px;}
.y1f_c00207{bottom:284.535000px;}
.y45_c00207{bottom:285.135000px;}
.y1e_c00207{bottom:302.685000px;}
.y44_c00207{bottom:303.285000px;}
.y3_c00207{bottom:305.985000px;}
.y1d_c00207{bottom:320.985000px;}
.y43_c00207{bottom:321.585000px;}
.y2_c00207{bottom:324.585000px;}
.y53_c00207{bottom:325.335000px;}
.y1c_c00207{bottom:339.135000px;}
.y42_c00207{bottom:339.435000px;}
.y1_c00207{bottom:343.185000px;}
.y1b_c00207{bottom:356.985000px;}
.y41_c00207{bottom:357.435000px;}
.y52_c00207{bottom:361.035000px;}
.y1a_c00207{bottom:374.835000px;}
.y40_c00207{bottom:375.885000px;}
.y51_c00207{bottom:379.335000px;}
.y19_c00207{bottom:393.135000px;}
.y3f_c00207{bottom:393.435000px;}
.y3e_c00207{bottom:411.735000px;}
.y18_c00207{bottom:412.035000px;}
.y17_c00207{bottom:428.985000px;}
.y3d_c00207{bottom:429.885000px;}
.y16_c00207{bottom:447.735000px;}
.y3c_c00207{bottom:447.885000px;}
.y15_c00207{bottom:465.285000px;}
.y3b_c00207{bottom:465.735000px;}
.y14_c00207{bottom:483.285000px;}
.y3a_c00207{bottom:483.885000px;}
.y13_c00207{bottom:501.735000px;}
.y39_c00207{bottom:501.885000px;}
.y12_c00207{bottom:520.035000px;}
.y11_c00207{bottom:537.285000px;}
.y38_c00207{bottom:537.885000px;}
.y10_c00207{bottom:555.885000px;}
.yf_c00207{bottom:574.035000px;}
.y37_c00207{bottom:574.635000px;}
.ye_c00207{bottom:592.335000px;}
.y36_c00207{bottom:592.935000px;}
.yd_c00207{bottom:610.335000px;}
.y35_c00207{bottom:611.085000px;}
.yc_c00207{bottom:628.335000px;}
.y34_c00207{bottom:629.685000px;}
.yb_c00207{bottom:646.335000px;}
.y33_c00207{bottom:647.535000px;}
.ya_c00207{bottom:665.235000px;}
.y32_c00207{bottom:665.535000px;}
.y9_c00207{bottom:683.085000px;}
.y31_c00207{bottom:683.385000px;}
.y8_c00207{bottom:700.935000px;}
.y30_c00207{bottom:701.685000px;}
.y50_c00207{bottom:719.235000px;}
.y7_c00207{bottom:719.535000px;}
.y2f_c00207{bottom:719.835000px;}
.y6_c00207{bottom:737.985000px;}
.y2e_c00207{bottom:755.535000px;}
.y5_c00207{bottom:756.585000px;}
.y2d_c00207{bottom:773.535000px;}
.y4_c00207{bottom:774.135000px;}
.h7_c00207{height:13.200074px;}
.h8_c00207{height:43.804688px;}
.h6_c00207{height:59.736000px;}
.h5_c00207{height:62.880000px;}
.h4_c00207{height:64.020000px;}
.h3_c00207{height:66.024000px;}
.h2_c00207{height:69.168000px;}
.h0_c00207{height:837.525000px;}
.h1_c00207{height:837.750000px;}
.w2_c00207{width:104.875500px;}
.w0_c00207{width:555.675000px;}
.w1_c00207{width:555.750000px;}
.x0_c00207{left:0.000000px;}
.x1_c00207{left:27.300000px;}
.x2_c00207{left:29.250000px;}
.x7_c00207{left:83.400000px;}
.x5_c00207{left:88.800000px;}
.x4_c00207{left:90.000000px;}
.x3_c00207{left:91.800000px;}
.x6_c00207{left:107.550000px;}
.xf_c00207{left:229.651749px;}
.x9_c00207{left:304.350000px;}
.xa_c00207{left:305.700000px;}
.x8_c00207{left:306.750000px;}
.xb_c00207{left:307.800000px;}
.xc_c00207{left:484.950000px;}
.xd_c00207{left:508.950000px;}
.xe_c00207{left:511.350000px;}
@media print{
.v0_c00207{vertical-align:0.000000pt;}
.ls2_c00207{letter-spacing:0.000000pt;}
.ls1_c00207{letter-spacing:1.920000pt;}
.ls0_c00207{letter-spacing:2.666667pt;}
.ls3_c00207{letter-spacing:8.000000pt;}
.ws8_c00207{word-spacing:-40.229333pt;}
.ws0_c00207{word-spacing:-33.794667pt;}
.wsa_c00207{word-spacing:-27.093333pt;}
.ws6_c00207{word-spacing:-21.120000pt;}
.ws7_c00207{word-spacing:-17.560000pt;}
.ws1_c00207{word-spacing:-16.722667pt;}
.ws3_c00207{word-spacing:-16.053333pt;}
.ws2_c00207{word-spacing:-15.413333pt;}
.ws5_c00207{word-spacing:-14.666667pt;}
.ws4_c00207{word-spacing:-12.586667pt;}
.ws9_c00207{word-spacing:-0.266667pt;}
.wsb_c00207{word-spacing:0.000000pt;}
._1c_c00207{margin-left:-17.794667pt;}
._1e_c00207{margin-left:-10.773333pt;}
._e_c00207{margin-left:-8.749333pt;}
._14_c00207{margin-left:-6.962667pt;}
._f_c00207{margin-left:-5.576000pt;}
._a_c00207{margin-left:-4.266667pt;}
._6_c00207{margin-left:-3.192000pt;}
._b_c00207{margin-left:-1.712000pt;}
._2_c00207{width:1.672000pt;}
._0_c00207{width:3.168000pt;}
._8_c00207{width:4.637333pt;}
._c_c00207{width:5.546667pt;}
._5_c00207{width:6.496000pt;}
._3_c00207{width:7.784000pt;}
._1_c00207{width:9.258667pt;}
._11_c00207{width:10.189333pt;}
._4_c00207{width:11.088000pt;}
._20_c00207{width:12.173333pt;}
._d_c00207{width:13.112000pt;}
._12_c00207{width:14.133333pt;}
._10_c00207{width:15.104000pt;}
._7_c00207{width:17.274667pt;}
._18_c00207{width:18.272000pt;}
._9_c00207{width:19.248000pt;}
._15_c00207{width:20.162667pt;}
._21_c00207{width:21.717333pt;}
._17_c00207{width:23.125333pt;}
._13_c00207{width:24.072000pt;}
._19_c00207{width:25.749333pt;}
._16_c00207{width:27.058667pt;}
._22_c00207{width:29.797333pt;}
._1f_c00207{width:33.317333pt;}
._1d_c00207{width:38.986667pt;}
._25_c00207{width:40.445333pt;}
._24_c00207{width:42.445333pt;}
._26_c00207{width:43.834667pt;}
._23_c00207{width:47.778667pt;}
._1b_c00207{width:119.533333pt;}
._1a_c00207{width:223.701333pt;}
.fs5_c00207{font-size:40.000000pt;}
.fs4_c00207{font-size:42.666667pt;}
.fs1_c00207{font-size:50.666667pt;}
.fs3_c00207{font-size:53.333333pt;}
.fs2_c00207{font-size:56.000000pt;}
.fs0_c00207{font-size:58.666667pt;}
.y0_c00207{bottom:0.000000pt;}
.y55_c00207{bottom:2.760000pt;}
.y54_c00207{bottom:6.425204pt;}
.y4f_c00207{bottom:28.520000pt;}
.y2c_c00207{bottom:43.453333pt;}
.y4e_c00207{bottom:44.386667pt;}
.y2b_c00207{bottom:59.986667pt;}
.y4d_c00207{bottom:60.520000pt;}
.y2a_c00207{bottom:76.386667pt;}
.y4c_c00207{bottom:76.520000pt;}
.y29_c00207{bottom:92.120000pt;}
.y4b_c00207{bottom:92.653333pt;}
.y28_c00207{bottom:108.253333pt;}
.y4a_c00207{bottom:108.786667pt;}
.y27_c00207{bottom:124.386667pt;}
.y49_c00207{bottom:124.786667pt;}
.y26_c00207{bottom:140.386667pt;}
.y48_c00207{bottom:140.920000pt;}
.y25_c00207{bottom:156.786667pt;}
.y24_c00207{bottom:172.786667pt;}
.y23_c00207{bottom:188.920000pt;}
.y22_c00207{bottom:205.186667pt;}
.y21_c00207{bottom:221.320000pt;}
.y47_c00207{bottom:221.586667pt;}
.y20_c00207{bottom:236.653333pt;}
.y46_c00207{bottom:237.320000pt;}
.y1f_c00207{bottom:252.920000pt;}
.y45_c00207{bottom:253.453333pt;}
.y1e_c00207{bottom:269.053333pt;}
.y44_c00207{bottom:269.586667pt;}
.y3_c00207{bottom:271.986667pt;}
.y1d_c00207{bottom:285.320000pt;}
.y43_c00207{bottom:285.853333pt;}
.y2_c00207{bottom:288.520000pt;}
.y53_c00207{bottom:289.186667pt;}
.y1c_c00207{bottom:301.453333pt;}
.y42_c00207{bottom:301.720000pt;}
.y1_c00207{bottom:305.053333pt;}
.y1b_c00207{bottom:317.320000pt;}
.y41_c00207{bottom:317.720000pt;}
.y52_c00207{bottom:320.920000pt;}
.y1a_c00207{bottom:333.186667pt;}
.y40_c00207{bottom:334.120000pt;}
.y51_c00207{bottom:337.186667pt;}
.y19_c00207{bottom:349.453333pt;}
.y3f_c00207{bottom:349.720000pt;}
.y3e_c00207{bottom:365.986667pt;}
.y18_c00207{bottom:366.253333pt;}
.y17_c00207{bottom:381.320000pt;}
.y3d_c00207{bottom:382.120000pt;}
.y16_c00207{bottom:397.986667pt;}
.y3c_c00207{bottom:398.120000pt;}
.y15_c00207{bottom:413.586667pt;}
.y3b_c00207{bottom:413.986667pt;}
.y14_c00207{bottom:429.586667pt;}
.y3a_c00207{bottom:430.120000pt;}
.y13_c00207{bottom:445.986667pt;}
.y39_c00207{bottom:446.120000pt;}
.y12_c00207{bottom:462.253333pt;}
.y11_c00207{bottom:477.586667pt;}
.y38_c00207{bottom:478.120000pt;}
.y10_c00207{bottom:494.120000pt;}
.yf_c00207{bottom:510.253333pt;}
.y37_c00207{bottom:510.786667pt;}
.ye_c00207{bottom:526.520000pt;}
.y36_c00207{bottom:527.053333pt;}
.yd_c00207{bottom:542.520000pt;}
.y35_c00207{bottom:543.186667pt;}
.yc_c00207{bottom:558.520000pt;}
.y34_c00207{bottom:559.720000pt;}
.yb_c00207{bottom:574.520000pt;}
.y33_c00207{bottom:575.586667pt;}
.ya_c00207{bottom:591.320000pt;}
.y32_c00207{bottom:591.586667pt;}
.y9_c00207{bottom:607.186667pt;}
.y31_c00207{bottom:607.453333pt;}
.y8_c00207{bottom:623.053333pt;}
.y30_c00207{bottom:623.720000pt;}
.y50_c00207{bottom:639.320000pt;}
.y7_c00207{bottom:639.586667pt;}
.y2f_c00207{bottom:639.853333pt;}
.y6_c00207{bottom:655.986667pt;}
.y2e_c00207{bottom:671.586667pt;}
.y5_c00207{bottom:672.520000pt;}
.y2d_c00207{bottom:687.586667pt;}
.y4_c00207{bottom:688.120000pt;}
.h7_c00207{height:11.733399pt;}
.h8_c00207{height:38.937500pt;}
.h6_c00207{height:53.098667pt;}
.h5_c00207{height:55.893333pt;}
.h4_c00207{height:56.906667pt;}
.h3_c00207{height:58.688000pt;}
.h2_c00207{height:61.482667pt;}
.h0_c00207{height:744.466667pt;}
.h1_c00207{height:744.666667pt;}
.w2_c00207{width:93.222667pt;}
.w0_c00207{width:493.933333pt;}
.w1_c00207{width:494.000000pt;}
.x0_c00207{left:0.000000pt;}
.x1_c00207{left:24.266667pt;}
.x2_c00207{left:26.000000pt;}
.x7_c00207{left:74.133333pt;}
.x5_c00207{left:78.933333pt;}
.x4_c00207{left:80.000000pt;}
.x3_c00207{left:81.600000pt;}
.x6_c00207{left:95.600000pt;}
.xf_c00207{left:204.134888pt;}
.x9_c00207{left:270.533333pt;}
.xa_c00207{left:271.733333pt;}
.x8_c00207{left:272.666667pt;}
.xb_c00207{left:273.600000pt;}
.xc_c00207{left:431.066667pt;}
.xd_c00207{left:452.400000pt;}
.xe_c00207{left:454.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_6ee0dcb66cf1f6d05bd36d93.woff2')format("woff");}.ff1_c00208{font-family:ff1_c00208;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00208;src:url('chunks/assets/font_daca3e8e18187f3981f17b0f.woff2')format("woff");}.ff2_c00208{font-family:ff2_c00208;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00208;src:url('chunks/assets/font_7033f27459a14fa09d34cdf3.woff2')format("woff");}.ff3_c00208{font-family:ff3_c00208;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00208;src:url('chunks/assets/font_703f849e2890e88682709f8c.woff2')format("woff");}.ff4_c00208{font-family:ff4_c00208;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:ff5_c00208;src:url('chunks/assets/font_c6d63d15555d6ae7fad8643f.woff2')format("woff");}.ff5_c00208{font-family:ff5_c00208;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00208;src:url('chunks/assets/font_51749af946b79ac4f306d866.woff2')format("woff");}.ff6_c00208{font-family:ff6_c00208;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00208;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff7_c00208{font-family:ff7_c00208;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:ff8_c00208;src:url('chunks/assets/font_25bfa50277b1e88d141e95bb.woff2')format("woff");}.ff8_c00208{font-family:ff8_c00208;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00208;src:url('chunks/assets/font_931b34d9e819da5515a1c86a.woff2')format("woff");}.ff9_c00208{font-family:ff9_c00208;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00208;src:url('chunks/assets/font_896b2b9fcebdbece3d932a4a.woff2')format("woff");}.ffa_c00208{font-family:ffa_c00208;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00208;src:url('chunks/assets/font_c1fc6b7fb2f98f107a3fc9fc.woff2')format("woff");}.ffb_c00208{font-family:ffb_c00208;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc_c00208;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ffc_c00208{font-family:ffc_c00208;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00208{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00208{vertical-align:0.000000px;}
.ls5_c00208{letter-spacing:0.000000px;}
.ls4_c00208{letter-spacing:3.000000px;}
.ls1_c00208{letter-spacing:5.700000px;}
.ls3_c00208{letter-spacing:5.880000px;}
.ls0_c00208{letter-spacing:7.746000px;}
.ls6_c00208{letter-spacing:9.000000px;}
.ls2_c00208{letter-spacing:21.000000px;}
.sc__c00208{text-shadow:none;}
.sc0_c00208{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00208{-webkit-text-stroke:0px transparent;}
.sc0_c00208{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00208{word-spacing:-30.675000px;}
.ws5_c00208{word-spacing:-29.295000px;}
.ws0_c00208{word-spacing:-25.854000px;}
.ws3_c00208{word-spacing:-25.095000px;}
.ws7_c00208{word-spacing:-14.160000px;}
.ws1_c00208{word-spacing:-0.093000px;}
.ws2_c00208{word-spacing:-0.074400px;}
.ws8_c00208{word-spacing:0.000000px;}
.ws6_c00208{word-spacing:4.500000px;}
._34_c00208{margin-left:-37.395000px;}
._28_c00208{margin-left:-35.346000px;}
._35_c00208{margin-left:-33.480000px;}
._2c_c00208{margin-left:-31.448400px;}
._29_c00208{margin-left:-29.748600px;}
._f_c00208{margin-left:-27.093000px;}
._1c_c00208{margin-left:-25.200000px;}
._12_c00208{margin-left:-24.048000px;}
._26_c00208{margin-left:-22.932000px;}
._30_c00208{margin-left:-21.855000px;}
._9_c00208{margin-left:-20.592000px;}
._33_c00208{margin-left:-19.563000px;}
._16_c00208{margin-left:-18.522000px;}
._17_c00208{margin-left:-17.484000px;}
._c_c00208{margin-left:-16.368000px;}
._10_c00208{margin-left:-14.508000px;}
._2f_c00208{margin-left:-13.206000px;}
._e_c00208{margin-left:-11.718000px;}
._b_c00208{margin-left:-9.951000px;}
._d_c00208{margin-left:-8.742000px;}
._11_c00208{margin-left:-7.626000px;}
._14_c00208{margin-left:-6.414000px;}
._1d_c00208{margin-left:-5.184000px;}
._0_c00208{margin-left:-3.960000px;}
._1a_c00208{margin-left:-2.880000px;}
._1_c00208{margin-left:-1.512000px;}
._15_c00208{width:1.728000px;}
._19_c00208{width:3.024000px;}
._7_c00208{width:4.176000px;}
._3d_c00208{width:5.238000px;}
._4_c00208{width:6.336000px;}
._18_c00208{width:8.157000px;}
._6_c00208{width:9.504000px;}
._3_c00208{width:11.016000px;}
._2a_c00208{width:12.294000px;}
._5_c00208{width:13.680000px;}
._3e_c00208{width:14.688000px;}
._23_c00208{width:15.912000px;}
._24_c00208{width:17.712000px;}
._1e_c00208{width:18.864000px;}
._3c_c00208{width:20.196000px;}
._37_c00208{width:21.540000px;}
._40_c00208{width:22.971000px;}
._3b_c00208{width:27.207000px;}
._a_c00208{width:29.112000px;}
._3a_c00208{width:30.672000px;}
._2d_c00208{width:32.013000px;}
._2e_c00208{width:34.410000px;}
._3f_c00208{width:36.180000px;}
._2_c00208{width:41.544000px;}
._8_c00208{width:48.312000px;}
._36_c00208{width:55.182000px;}
._13_c00208{width:57.501000px;}
._1b_c00208{width:66.867000px;}
._1f_c00208{width:69.912000px;}
._20_c00208{width:74.457000px;}
._31_c00208{width:76.485000px;}
._2b_c00208{width:79.086000px;}
._32_c00208{width:103.884000px;}
._21_c00208{width:135.000000px;}
._39_c00208{width:172.440000px;}
._22_c00208{width:204.078000px;}
._38_c00208{width:206.220000px;}
._25_c00208{width:227.835000px;}
._27_c00208{width:402.456000px;}
._41_c00208{width:474.906000px;}
.fc2_c00208{color:transparent;}
.fc1_c00208{color:rgb(128,128,128);}
.fc0_c00208{color:rgb(0,0,0);}
.fs7_c00208{font-size:45.000000px;}
.fs6_c00208{font-size:48.000000px;}
.fs5_c00208{font-size:60.000000px;}
.fs0_c00208{font-size:72.000000px;}
.fs3_c00208{font-size:74.400000px;}
.fs2_c00208{font-size:75.000000px;}
.fs1_c00208{font-size:93.000000px;}
.fs4_c00208{font-size:105.000000px;}
.y0_c00208{bottom:0.000000px;}
.y26_c00208{bottom:3.105000px;}
.y25_c00208{bottom:7.228371px;}
.y24_c00208{bottom:43.215000px;}
.y23_c00208{bottom:61.515000px;}
.y22_c00208{bottom:80.115000px;}
.y21_c00208{bottom:98.265000px;}
.y20_c00208{bottom:116.415000px;}
.y1f_c00208{bottom:134.715000px;}
.y1e_c00208{bottom:152.865000px;}
.y1d_c00208{bottom:170.865000px;}
.y1c_c00208{bottom:189.015000px;}
.y1b_c00208{bottom:207.015000px;}
.y1a_c00208{bottom:224.865000px;}
.y19_c00208{bottom:241.365000px;}
.y18_c00208{bottom:260.265000px;}
.y17_c00208{bottom:279.465000px;}
.y16_c00208{bottom:297.015000px;}
.y15_c00208{bottom:314.265000px;}
.y14_c00208{bottom:332.865000px;}
.y13_c00208{bottom:351.765000px;}
.y12_c00208{bottom:369.015000px;}
.y11_c00208{bottom:387.165000px;}
.y10_c00208{bottom:405.465000px;}
.yf_c00208{bottom:437.865000px;}
.ye_c00208{bottom:456.615000px;}
.yd_c00208{bottom:474.165000px;}
.yc_c00208{bottom:512.415000px;}
.yb_c00208{bottom:543.015000px;}
.ya_c00208{bottom:573.465000px;}
.y9_c00208{bottom:653.865000px;}
.y8_c00208{bottom:673.065000px;}
.y7_c00208{bottom:691.065000px;}
.y6_c00208{bottom:709.065000px;}
.y5_c00208{bottom:727.065000px;}
.y4_c00208{bottom:744.915000px;}
.y3_c00208{bottom:763.065000px;}
.y2_c00208{bottom:781.665000px;}
.y1_c00208{bottom:800.865000px;}
.h6_c00208{height:13.200074px;}
.h7_c00208{height:43.804688px;}
.h5_c00208{height:62.880000px;}
.h3_c00208{height:70.664062px;}
.h2_c00208{height:96.996094px;}
.h4_c00208{height:110.040000px;}
.h1_c00208{height:831.000000px;}
.h0_c00208{height:831.075000px;}
.w2_c00208{width:104.875500px;}
.w1_c00208{width:582.000000px;}
.w0_c00208{width:582.150000px;}
.x0_c00208{left:0.000000px;}
.xe_c00208{left:77.250000px;}
.x3_c00208{left:78.600000px;}
.x4_c00208{left:79.650000px;}
.x2_c00208{left:80.700000px;}
.x8_c00208{left:96.750000px;}
.x5_c00208{left:98.550000px;}
.xc_c00208{left:125.850000px;}
.xd_c00208{left:135.300000px;}
.x6_c00208{left:169.800000px;}
.x9_c00208{left:189.450000px;}
.xa_c00208{left:193.800000px;}
.xb_c00208{left:195.750000px;}
.x7_c00208{left:216.750000px;}
.x10_c00208{left:242.889267px;}
.x1_c00208{left:291.150000px;}
.xf_c00208{left:312.150000px;}
@media print{
.v0_c00208{vertical-align:0.000000pt;}
.ls5_c00208{letter-spacing:0.000000pt;}
.ls4_c00208{letter-spacing:2.666667pt;}
.ls1_c00208{letter-spacing:5.066667pt;}
.ls3_c00208{letter-spacing:5.226667pt;}
.ls0_c00208{letter-spacing:6.885333pt;}
.ls6_c00208{letter-spacing:8.000000pt;}
.ls2_c00208{letter-spacing:18.666667pt;}
.ws4_c00208{word-spacing:-27.266667pt;}
.ws5_c00208{word-spacing:-26.040000pt;}
.ws0_c00208{word-spacing:-22.981333pt;}
.ws3_c00208{word-spacing:-22.306667pt;}
.ws7_c00208{word-spacing:-12.586667pt;}
.ws1_c00208{word-spacing:-0.082667pt;}
.ws2_c00208{word-spacing:-0.066133pt;}
.ws8_c00208{word-spacing:0.000000pt;}
.ws6_c00208{word-spacing:4.000000pt;}
._34_c00208{margin-left:-33.240000pt;}
._28_c00208{margin-left:-31.418667pt;}
._35_c00208{margin-left:-29.760000pt;}
._2c_c00208{margin-left:-27.954133pt;}
._29_c00208{margin-left:-26.443200pt;}
._f_c00208{margin-left:-24.082667pt;}
._1c_c00208{margin-left:-22.400000pt;}
._12_c00208{margin-left:-21.376000pt;}
._26_c00208{margin-left:-20.384000pt;}
._30_c00208{margin-left:-19.426667pt;}
._9_c00208{margin-left:-18.304000pt;}
._33_c00208{margin-left:-17.389333pt;}
._16_c00208{margin-left:-16.464000pt;}
._17_c00208{margin-left:-15.541333pt;}
._c_c00208{margin-left:-14.549333pt;}
._10_c00208{margin-left:-12.896000pt;}
._2f_c00208{margin-left:-11.738667pt;}
._e_c00208{margin-left:-10.416000pt;}
._b_c00208{margin-left:-8.845333pt;}
._d_c00208{margin-left:-7.770667pt;}
._11_c00208{margin-left:-6.778667pt;}
._14_c00208{margin-left:-5.701333pt;}
._1d_c00208{margin-left:-4.608000pt;}
._0_c00208{margin-left:-3.520000pt;}
._1a_c00208{margin-left:-2.560000pt;}
._1_c00208{margin-left:-1.344000pt;}
._15_c00208{width:1.536000pt;}
._19_c00208{width:2.688000pt;}
._7_c00208{width:3.712000pt;}
._3d_c00208{width:4.656000pt;}
._4_c00208{width:5.632000pt;}
._18_c00208{width:7.250667pt;}
._6_c00208{width:8.448000pt;}
._3_c00208{width:9.792000pt;}
._2a_c00208{width:10.928000pt;}
._5_c00208{width:12.160000pt;}
._3e_c00208{width:13.056000pt;}
._23_c00208{width:14.144000pt;}
._24_c00208{width:15.744000pt;}
._1e_c00208{width:16.768000pt;}
._3c_c00208{width:17.952000pt;}
._37_c00208{width:19.146667pt;}
._40_c00208{width:20.418667pt;}
._3b_c00208{width:24.184000pt;}
._a_c00208{width:25.877333pt;}
._3a_c00208{width:27.264000pt;}
._2d_c00208{width:28.456000pt;}
._2e_c00208{width:30.586667pt;}
._3f_c00208{width:32.160000pt;}
._2_c00208{width:36.928000pt;}
._8_c00208{width:42.944000pt;}
._36_c00208{width:49.050667pt;}
._13_c00208{width:51.112000pt;}
._1b_c00208{width:59.437333pt;}
._1f_c00208{width:62.144000pt;}
._20_c00208{width:66.184000pt;}
._31_c00208{width:67.986667pt;}
._2b_c00208{width:70.298667pt;}
._32_c00208{width:92.341333pt;}
._21_c00208{width:120.000000pt;}
._39_c00208{width:153.280000pt;}
._22_c00208{width:181.402667pt;}
._38_c00208{width:183.306667pt;}
._25_c00208{width:202.520000pt;}
._27_c00208{width:357.738667pt;}
._41_c00208{width:422.138667pt;}
.fs7_c00208{font-size:40.000000pt;}
.fs6_c00208{font-size:42.666667pt;}
.fs5_c00208{font-size:53.333333pt;}
.fs0_c00208{font-size:64.000000pt;}
.fs3_c00208{font-size:66.133333pt;}
.fs2_c00208{font-size:66.666667pt;}
.fs1_c00208{font-size:82.666667pt;}
.fs4_c00208{font-size:93.333333pt;}
.y0_c00208{bottom:0.000000pt;}
.y26_c00208{bottom:2.760000pt;}
.y25_c00208{bottom:6.425219pt;}
.y24_c00208{bottom:38.413333pt;}
.y23_c00208{bottom:54.680000pt;}
.y22_c00208{bottom:71.213333pt;}
.y21_c00208{bottom:87.346667pt;}
.y20_c00208{bottom:103.480000pt;}
.y1f_c00208{bottom:119.746667pt;}
.y1e_c00208{bottom:135.880000pt;}
.y1d_c00208{bottom:151.880000pt;}
.y1c_c00208{bottom:168.013333pt;}
.y1b_c00208{bottom:184.013333pt;}
.y1a_c00208{bottom:199.880000pt;}
.y19_c00208{bottom:214.546667pt;}
.y18_c00208{bottom:231.346667pt;}
.y17_c00208{bottom:248.413333pt;}
.y16_c00208{bottom:264.013333pt;}
.y15_c00208{bottom:279.346667pt;}
.y14_c00208{bottom:295.880000pt;}
.y13_c00208{bottom:312.680000pt;}
.y12_c00208{bottom:328.013333pt;}
.y11_c00208{bottom:344.146667pt;}
.y10_c00208{bottom:360.413333pt;}
.yf_c00208{bottom:389.213333pt;}
.ye_c00208{bottom:405.880000pt;}
.yd_c00208{bottom:421.480000pt;}
.yc_c00208{bottom:455.480000pt;}
.yb_c00208{bottom:482.680000pt;}
.ya_c00208{bottom:509.746667pt;}
.y9_c00208{bottom:581.213333pt;}
.y8_c00208{bottom:598.280000pt;}
.y7_c00208{bottom:614.280000pt;}
.y6_c00208{bottom:630.280000pt;}
.y5_c00208{bottom:646.280000pt;}
.y4_c00208{bottom:662.146667pt;}
.y3_c00208{bottom:678.280000pt;}
.y2_c00208{bottom:694.813333pt;}
.y1_c00208{bottom:711.880000pt;}
.h6_c00208{height:11.733399pt;}
.h7_c00208{height:38.937500pt;}
.h5_c00208{height:55.893333pt;}
.h3_c00208{height:62.812500pt;}
.h2_c00208{height:86.218750pt;}
.h4_c00208{height:97.813333pt;}
.h1_c00208{height:738.666667pt;}
.h0_c00208{height:738.733333pt;}
.w2_c00208{width:93.222667pt;}
.w1_c00208{width:517.333333pt;}
.w0_c00208{width:517.466667pt;}
.x0_c00208{left:0.000000pt;}
.xe_c00208{left:68.666667pt;}
.x3_c00208{left:69.866667pt;}
.x4_c00208{left:70.800000pt;}
.x2_c00208{left:71.733333pt;}
.x8_c00208{left:86.000000pt;}
.x5_c00208{left:87.600000pt;}
.xc_c00208{left:111.866667pt;}
.xd_c00208{left:120.266667pt;}
.x6_c00208{left:150.933333pt;}
.x9_c00208{left:168.400000pt;}
.xa_c00208{left:172.266667pt;}
.xb_c00208{left:174.000000pt;}
.x7_c00208{left:192.666667pt;}
.x10_c00208{left:215.901571pt;}
.x1_c00208{left:258.800000pt;}
.xf_c00208{left:277.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_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_254b24992f825633d7620c75.woff2')format("woff");}.ff1_c00209{font-family:ff1_c00209;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00209;src:url('chunks/assets/font_3f5bacb5a3a67ba4b6547ea8.woff2')format("woff");}.ff2_c00209{font-family:ff2_c00209;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00209;src:url('chunks/assets/font_25a6a0298bf0e8beadc3d468.woff2')format("woff");}.ff3_c00209{font-family:ff3_c00209;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00209;src:url('chunks/assets/font_f467ae0ee250730ab91af76d.woff2')format("woff");}.ff4_c00209{font-family:ff4_c00209;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00209;src:url('chunks/assets/font_43d0b0d7c7badc9973344f07.woff2')format("woff");}.ff5_c00209{font-family:ff5_c00209;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00209;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff6_c00209{font-family:ff6_c00209;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00209{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00209{vertical-align:0.000000px;}
.ls7_c00209{letter-spacing:-18.000000px;}
.ls6_c00209{letter-spacing:0.000000px;}
.ls0_c00209{letter-spacing:0.672000px;}
.ls2_c00209{letter-spacing:2.472000px;}
.ls4_c00209{letter-spacing:3.000000px;}
.ls1_c00209{letter-spacing:8.748000px;}
.ls5_c00209{letter-spacing:9.000000px;}
.ls3_c00209{letter-spacing:281.340000px;}
.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;}
}
.ws2_c00209{word-spacing:-18.060000px;}
.ws1_c00209{word-spacing:-17.340000px;}
.ws0_c00209{word-spacing:-14.160000px;}
.ws4_c00209{word-spacing:0.000000px;}
.ws3_c00209{word-spacing:52.932000px;}
._1b_c00209{margin-left:-17.640000px;}
._17_c00209{margin-left:-12.840000px;}
._18_c00209{margin-left:-11.460000px;}
._1a_c00209{margin-left:-9.840000px;}
._28_c00209{margin-left:-8.280000px;}
._16_c00209{margin-left:-6.780000px;}
._14_c00209{margin-left:-5.400000px;}
._15_c00209{margin-left:-3.540000px;}
._c_c00209{margin-left:-2.220000px;}
._d_c00209{margin-left:-1.200000px;}
._9_c00209{width:1.320000px;}
._a_c00209{width:2.340000px;}
._b_c00209{width:3.780000px;}
._e_c00209{width:5.580000px;}
._10_c00209{width:6.720000px;}
._f_c00209{width:9.000000px;}
._13_c00209{width:10.800000px;}
._11_c00209{width:11.880000px;}
._7_c00209{width:12.960000px;}
._0_c00209{width:15.000000px;}
._1_c00209{width:16.740000px;}
._1d_c00209{width:18.780000px;}
._6_c00209{width:20.100000px;}
._4_c00209{width:21.360000px;}
._3_c00209{width:22.860000px;}
._2_c00209{width:25.380000px;}
._25_c00209{width:26.700000px;}
._12_c00209{width:27.900000px;}
._5_c00209{width:29.340000px;}
._8_c00209{width:31.200000px;}
._23_c00209{width:32.460000px;}
._19_c00209{width:33.600000px;}
._1f_c00209{width:35.700000px;}
._27_c00209{width:38.220000px;}
._22_c00209{width:40.560000px;}
._24_c00209{width:42.060000px;}
._2b_c00209{width:43.320000px;}
._26_c00209{width:49.080000px;}
._2a_c00209{width:50.880000px;}
._1e_c00209{width:53.280000px;}
._21_c00209{width:54.600000px;}
._29_c00209{width:57.900000px;}
._1c_c00209{width:60.000000px;}
._20_c00209{width:79.980000px;}
.fc2_c00209{color:transparent;}
.fc1_c00209{color:rgb(128,128,128);}
.fc0_c00209{color:rgb(0,0,0);}
.fs0_c00209{font-size:48.000000px;}
.fs1_c00209{font-size:57.000000px;}
.fs2_c00209{font-size:60.000000px;}
.fs3_c00209{font-size:123.000000px;}
.y0_c00209{bottom:0.000000px;}
.y2c_c00209{bottom:3.105000px;}
.y2b_c00209{bottom:7.228369px;}
.y2a_c00209{bottom:43.470000px;}
.y29_c00209{bottom:62.820000px;}
.y28_c00209{bottom:81.570000px;}
.y27_c00209{bottom:99.570000px;}
.y26_c00209{bottom:118.470000px;}
.y25_c00209{bottom:136.320000px;}
.y24_c00209{bottom:153.870000px;}
.y23_c00209{bottom:172.170000px;}
.y22_c00209{bottom:191.070000px;}
.y21_c00209{bottom:208.920000px;}
.y20_c00209{bottom:227.070000px;}
.y1f_c00209{bottom:245.670000px;}
.y1e_c00209{bottom:263.220000px;}
.y1d_c00209{bottom:281.370000px;}
.y1c_c00209{bottom:300.420000px;}
.y1b_c00209{bottom:318.270000px;}
.y17_c00209{bottom:332.070000px;}
.y1a_c00209{bottom:336.120000px;}
.y19_c00209{bottom:354.270000px;}
.y18_c00209{bottom:389.820000px;}
.y16_c00209{bottom:426.870000px;}
.y15_c00209{bottom:444.870000px;}
.y14_c00209{bottom:463.620000px;}
.y13_c00209{bottom:481.170000px;}
.y12_c00209{bottom:499.470000px;}
.y11_c00209{bottom:517.770000px;}
.y10_c00209{bottom:535.620000px;}
.yf_c00209{bottom:552.720000px;}
.ye_c00209{bottom:571.770000px;}
.yd_c00209{bottom:590.520000px;}
.yc_c00209{bottom:608.220000px;}
.yb_c00209{bottom:626.370000px;}
.ya_c00209{bottom:644.520000px;}
.y9_c00209{bottom:662.220000px;}
.y8_c00209{bottom:680.670000px;}
.y7_c00209{bottom:699.870000px;}
.y6_c00209{bottom:717.420000px;}
.y5_c00209{bottom:735.420000px;}
.y4_c00209{bottom:753.570000px;}
.y3_c00209{bottom:771.870000px;}
.y2_c00209{bottom:789.420000px;}
.y1_c00209{bottom:809.370000px;}
.h5_c00209{height:13.200073px;}
.h6_c00209{height:43.804688px;}
.h2_c00209{height:62.880000px;}
.h3_c00209{height:64.020000px;}
.h4_c00209{height:128.904000px;}
.h1_c00209{height:846.000000px;}
.h0_c00209{height:846.150000px;}
.w2_c00209{width:104.875500px;}
.w0_c00209{width:561.600000px;}
.w1_c00209{width:561.750000px;}
.x0_c00209{left:0.000000px;}
.x3_c00209{left:86.850000px;}
.x2_c00209{left:88.200000px;}
.x1_c00209{left:89.700000px;}
.x4_c00209{left:91.200000px;}
.x7_c00209{left:103.500000px;}
.x6_c00209{left:118.200000px;}
.x5_c00209{left:141.750000px;}
.x9_c00209{left:232.614258px;}
.x8_c00209{left:477.900000px;}
@media print{
.v0_c00209{vertical-align:0.000000pt;}
.ls7_c00209{letter-spacing:-16.000000pt;}
.ls6_c00209{letter-spacing:0.000000pt;}
.ls0_c00209{letter-spacing:0.597333pt;}
.ls2_c00209{letter-spacing:2.197333pt;}
.ls4_c00209{letter-spacing:2.666667pt;}
.ls1_c00209{letter-spacing:7.776000pt;}
.ls5_c00209{letter-spacing:8.000000pt;}
.ls3_c00209{letter-spacing:250.080000pt;}
.ws2_c00209{word-spacing:-16.053333pt;}
.ws1_c00209{word-spacing:-15.413333pt;}
.ws0_c00209{word-spacing:-12.586667pt;}
.ws4_c00209{word-spacing:0.000000pt;}
.ws3_c00209{word-spacing:47.050667pt;}
._1b_c00209{margin-left:-15.680000pt;}
._17_c00209{margin-left:-11.413333pt;}
._18_c00209{margin-left:-10.186667pt;}
._1a_c00209{margin-left:-8.746667pt;}
._28_c00209{margin-left:-7.360000pt;}
._16_c00209{margin-left:-6.026667pt;}
._14_c00209{margin-left:-4.800000pt;}
._15_c00209{margin-left:-3.146667pt;}
._c_c00209{margin-left:-1.973333pt;}
._d_c00209{margin-left:-1.066667pt;}
._9_c00209{width:1.173333pt;}
._a_c00209{width:2.080000pt;}
._b_c00209{width:3.360000pt;}
._e_c00209{width:4.960000pt;}
._10_c00209{width:5.973333pt;}
._f_c00209{width:8.000000pt;}
._13_c00209{width:9.600000pt;}
._11_c00209{width:10.560000pt;}
._7_c00209{width:11.520000pt;}
._0_c00209{width:13.333333pt;}
._1_c00209{width:14.880000pt;}
._1d_c00209{width:16.693333pt;}
._6_c00209{width:17.866667pt;}
._4_c00209{width:18.986667pt;}
._3_c00209{width:20.320000pt;}
._2_c00209{width:22.560000pt;}
._25_c00209{width:23.733333pt;}
._12_c00209{width:24.800000pt;}
._5_c00209{width:26.080000pt;}
._8_c00209{width:27.733333pt;}
._23_c00209{width:28.853333pt;}
._19_c00209{width:29.866667pt;}
._1f_c00209{width:31.733333pt;}
._27_c00209{width:33.973333pt;}
._22_c00209{width:36.053333pt;}
._24_c00209{width:37.386667pt;}
._2b_c00209{width:38.506667pt;}
._26_c00209{width:43.626667pt;}
._2a_c00209{width:45.226667pt;}
._1e_c00209{width:47.360000pt;}
._21_c00209{width:48.533333pt;}
._29_c00209{width:51.466667pt;}
._1c_c00209{width:53.333333pt;}
._20_c00209{width:71.093333pt;}
.fs0_c00209{font-size:42.666667pt;}
.fs1_c00209{font-size:50.666667pt;}
.fs2_c00209{font-size:53.333333pt;}
.fs3_c00209{font-size:109.333333pt;}
.y0_c00209{bottom:0.000000pt;}
.y2c_c00209{bottom:2.760000pt;}
.y2b_c00209{bottom:6.425217pt;}
.y2a_c00209{bottom:38.640000pt;}
.y29_c00209{bottom:55.840000pt;}
.y28_c00209{bottom:72.506667pt;}
.y27_c00209{bottom:88.506667pt;}
.y26_c00209{bottom:105.306667pt;}
.y25_c00209{bottom:121.173333pt;}
.y24_c00209{bottom:136.773333pt;}
.y23_c00209{bottom:153.040000pt;}
.y22_c00209{bottom:169.840000pt;}
.y21_c00209{bottom:185.706667pt;}
.y20_c00209{bottom:201.840000pt;}
.y1f_c00209{bottom:218.373333pt;}
.y1e_c00209{bottom:233.973333pt;}
.y1d_c00209{bottom:250.106667pt;}
.y1c_c00209{bottom:267.040000pt;}
.y1b_c00209{bottom:282.906667pt;}
.y17_c00209{bottom:295.173333pt;}
.y1a_c00209{bottom:298.773333pt;}
.y19_c00209{bottom:314.906667pt;}
.y18_c00209{bottom:346.506667pt;}
.y16_c00209{bottom:379.440000pt;}
.y15_c00209{bottom:395.440000pt;}
.y14_c00209{bottom:412.106667pt;}
.y13_c00209{bottom:427.706667pt;}
.y12_c00209{bottom:443.973333pt;}
.y11_c00209{bottom:460.240000pt;}
.y10_c00209{bottom:476.106667pt;}
.yf_c00209{bottom:491.306667pt;}
.ye_c00209{bottom:508.240000pt;}
.yd_c00209{bottom:524.906667pt;}
.yc_c00209{bottom:540.640000pt;}
.yb_c00209{bottom:556.773333pt;}
.ya_c00209{bottom:572.906667pt;}
.y9_c00209{bottom:588.640000pt;}
.y8_c00209{bottom:605.040000pt;}
.y7_c00209{bottom:622.106667pt;}
.y6_c00209{bottom:637.706667pt;}
.y5_c00209{bottom:653.706667pt;}
.y4_c00209{bottom:669.840000pt;}
.y3_c00209{bottom:686.106667pt;}
.y2_c00209{bottom:701.706667pt;}
.y1_c00209{bottom:719.440000pt;}
.h5_c00209{height:11.733399pt;}
.h6_c00209{height:38.937500pt;}
.h2_c00209{height:55.893333pt;}
.h3_c00209{height:56.906667pt;}
.h4_c00209{height:114.581333pt;}
.h1_c00209{height:752.000000pt;}
.h0_c00209{height:752.133333pt;}
.w2_c00209{width:93.222667pt;}
.w0_c00209{width:499.200000pt;}
.w1_c00209{width:499.333333pt;}
.x0_c00209{left:0.000000pt;}
.x3_c00209{left:77.200000pt;}
.x2_c00209{left:78.400000pt;}
.x1_c00209{left:79.733333pt;}
.x4_c00209{left:81.066667pt;}
.x7_c00209{left:92.000000pt;}
.x6_c00209{left:105.066667pt;}
.x5_c00209{left:126.000000pt;}
.x9_c00209{left:206.768229pt;}
.x8_c00209{left:424.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_0a66b7fdaf0c678a75dc7431.woff2')format("woff");}.ff1_c00210{font-family:ff1_c00210;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00210;src:url('chunks/assets/font_339e2d8299812e7bf9b4d35b.woff2')format("woff");}.ff2_c00210{font-family:ff2_c00210;line-height:1.575000;font-style:normal;font-weight:normal;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_1a9d242508c736c0dfafb4ba.woff2')format("woff");}.ff3_c00210{font-family:ff3_c00210;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00210;src:url('chunks/assets/font_351d8ef2d063f21d36d18f03.woff2')format("woff");}.ff4_c00210{font-family:ff4_c00210;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00210;src:url('chunks/assets/font_5a8c8722d6bde2c2ecc3e37d.woff2')format("woff");}.ff5_c00210{font-family:ff5_c00210;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00210;src:url('chunks/assets/font_7164f7fc20c479aacf7b7c04.woff2')format("woff");}.ff6_c00210{font-family:ff6_c00210;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00210;src:url('chunks/assets/font_53f919d0f3f6df0819792ad8.woff2')format("woff");}.ff7_c00210{font-family:ff7_c00210;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00210;src:url('chunks/assets/font_26dbc67dc638344b27328884.woff2')format("woff");}.ff8_c00210{font-family:ff8_c00210;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00210;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff9_c00210{font-family:ff9_c00210;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00210{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00210{vertical-align:0.000000px;}
.v1_c00210{vertical-align:97.200000px;}
.ls7_c00210{letter-spacing:0.000000px;}
.ls2_c00210{letter-spacing:0.405000px;}
.ls5_c00210{letter-spacing:1.200000px;}
.ls0_c00210{letter-spacing:3.000000px;}
.ls4_c00210{letter-spacing:3.840000px;}
.ls1_c00210{letter-spacing:6.000000px;}
.ls6_c00210{letter-spacing:11.187000px;}
.ls3_c00210{letter-spacing:52.614000px;}
.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;}
}
.ws2_c00210{word-spacing:-19.500000px;}
.ws7_c00210{word-spacing:-18.060000px;}
.ws1_c00210{word-spacing:-17.340000px;}
.ws3_c00210{word-spacing:-15.000000px;}
.ws6_c00210{word-spacing:-14.427000px;}
.ws0_c00210{word-spacing:-14.160000px;}
.ws5_c00210{word-spacing:-13.452000px;}
.ws8_c00210{word-spacing:0.000000px;}
.ws4_c00210{word-spacing:2.880000px;}
._27_c00210{margin-left:-11.460000px;}
._2a_c00210{margin-left:-9.540000px;}
._26_c00210{margin-left:-7.980000px;}
._28_c00210{margin-left:-6.540000px;}
._1c_c00210{margin-left:-4.800000px;}
._e_c00210{margin-left:-3.660000px;}
._18_c00210{margin-left:-2.280000px;}
._9_c00210{margin-left:-1.260000px;}
._c_c00210{width:1.320000px;}
._d_c00210{width:2.460000px;}
._11_c00210{width:4.080000px;}
._b_c00210{width:5.100000px;}
._12_c00210{width:6.360000px;}
._1_c00210{width:8.340000px;}
._4_c00210{width:9.600000px;}
._0_c00210{width:10.740000px;}
._f_c00210{width:12.240000px;}
._5_c00210{width:14.460000px;}
._23_c00210{width:15.540000px;}
._13_c00210{width:16.740000px;}
._2b_c00210{width:18.840000px;}
._3_c00210{width:19.860000px;}
._1e_c00210{width:21.300000px;}
._2_c00210{width:23.040000px;}
._20_c00210{width:24.900000px;}
._1d_c00210{width:26.100000px;}
._2f_c00210{width:27.150000px;}
._16_c00210{width:28.260000px;}
._2d_c00210{width:29.988000px;}
._1a_c00210{width:31.020000px;}
._2e_c00210{width:33.117000px;}
._30_c00210{width:36.900000px;}
._25_c00210{width:38.640000px;}
._2c_c00210{width:48.660000px;}
._7_c00210{width:55.500000px;}
._15_c00210{width:57.660000px;}
._1f_c00210{width:59.520000px;}
._10_c00210{width:61.380000px;}
._6_c00210{width:64.140000px;}
._21_c00210{width:66.780000px;}
._1b_c00210{width:69.780000px;}
._19_c00210{width:71.940000px;}
._29_c00210{width:74.820000px;}
._17_c00210{width:76.320000px;}
._22_c00210{width:79.380000px;}
._32_c00210{width:82.680000px;}
._33_c00210{width:94.860000px;}
._a_c00210{width:102.840000px;}
._8_c00210{width:116.040000px;}
._14_c00210{width:137.820000px;}
._24_c00210{width:141.540000px;}
._31_c00210{width:171.780000px;}
.fc2_c00210{color:transparent;}
.fc1_c00210{color:rgb(128,128,128);}
.fc0_c00210{color:rgb(0,0,0);}
.fs8_c00210{font-size:24.000000px;}
.fs4_c00210{font-size:45.000000px;}
.fs1_c00210{font-size:48.000000px;}
.fs6_c00210{font-size:57.000000px;}
.fs0_c00210{font-size:60.000000px;}
.fs7_c00210{font-size:63.000000px;}
.fs2_c00210{font-size:66.000000px;}
.fs3_c00210{font-size:81.000000px;}
.fs5_c00210{font-size:189.000000px;}
.y0_c00210{bottom:0.000000px;}
.y46_c00210{bottom:3.105000px;}
.y45_c00210{bottom:7.228357px;}
.y44_c00210{bottom:39.780000px;}
.y43_c00210{bottom:60.480000px;}
.y2b_c00210{bottom:63.480000px;}
.y42_c00210{bottom:78.930000px;}
.y2a_c00210{bottom:81.780000px;}
.y41_c00210{bottom:96.630000px;}
.y29_c00210{bottom:99.930000px;}
.y40_c00210{bottom:114.480000px;}
.y28_c00210{bottom:117.780000px;}
.y3f_c00210{bottom:133.380000px;}
.y27_c00210{bottom:135.780000px;}
.y3e_c00210{bottom:151.230000px;}
.y26_c00210{bottom:154.230000px;}
.y3d_c00210{bottom:169.530000px;}
.y25_c00210{bottom:172.080000px;}
.y3c_c00210{bottom:187.680000px;}
.y24_c00210{bottom:190.380000px;}
.y3b_c00210{bottom:205.980000px;}
.y23_c00210{bottom:208.530000px;}
.y21_c00210{bottom:220.080000px;}
.y3a_c00210{bottom:223.530000px;}
.y22_c00210{bottom:226.530000px;}
.y39_c00210{bottom:242.280000px;}
.y38_c00210{bottom:259.230000px;}
.y37_c00210{bottom:277.530000px;}
.y20_c00210{bottom:281.580000px;}
.y36_c00210{bottom:295.980000px;}
.y1f_c00210{bottom:299.130000px;}
.y35_c00210{bottom:313.980000px;}
.y1e_c00210{bottom:316.980000px;}
.y34_c00210{bottom:332.730000px;}
.y1d_c00210{bottom:334.080000px;}
.y33_c00210{bottom:349.380000px;}
.y1c_c00210{bottom:352.680000px;}
.y32_c00210{bottom:369.330000px;}
.y1b_c00210{bottom:370.980000px;}
.y31_c00210{bottom:386.730000px;}
.y1a_c00210{bottom:405.780000px;}
.y30_c00210{bottom:406.980000px;}
.y2f_c00210{bottom:424.980000px;}
.y19_c00210{bottom:441.780000px;}
.y2e_c00210{bottom:442.530000px;}
.y18_c00210{bottom:460.080000px;}
.y2d_c00210{bottom:460.680000px;}
.y17_c00210{bottom:477.930000px;}
.y2c_c00210{bottom:479.580000px;}
.y16_c00210{bottom:495.780000px;}
.y12_c00210{bottom:498.480000px;}
.y15_c00210{bottom:513.330000px;}
.y11_c00210{bottom:514.980000px;}
.y14_c00210{bottom:531.180000px;}
.y10_c00210{bottom:532.980000px;}
.y13_c00210{bottom:549.780000px;}
.yf_c00210{bottom:551.130000px;}
.ye_c00210{bottom:569.130000px;}
.yd_c00210{bottom:586.680000px;}
.yc_c00210{bottom:604.530000px;}
.yb_c00210{bottom:623.130000px;}
.ya_c00210{bottom:641.280000px;}
.y9_c00210{bottom:659.580000px;}
.y8_c00210{bottom:677.130000px;}
.y7_c00210{bottom:694.680000px;}
.y6_c00210{bottom:713.430000px;}
.y5_c00210{bottom:730.980000px;}
.y4_c00210{bottom:749.580000px;}
.y3_c00210{bottom:768.780000px;}
.y2_c00210{bottom:786.330000px;}
.y1_c00210{bottom:804.330000px;}
.h9_c00210{height:13.200074px;}
.ha_c00210{height:43.804688px;}
.h7_c00210{height:59.736000px;}
.h3_c00210{height:62.880000px;}
.h2_c00210{height:64.020000px;}
.h8_c00210{height:66.024000px;}
.h4_c00210{height:70.422000px;}
.h5_c00210{height:86.427000px;}
.h6_c00210{height:198.072000px;}
.h0_c00210{height:842.700000px;}
.h1_c00210{height:843.000000px;}
.w1_c00210{width:104.875500px;}
.w0_c00210{width:590.250000px;}
.x0_c00210{left:0.000000px;}
.x4_c00210{left:72.300000px;}
.x8_c00210{left:73.350000px;}
.x7_c00210{left:74.700000px;}
.x3_c00210{left:76.050000px;}
.x2_c00210{left:77.700000px;}
.xa_c00210{left:85.500000px;}
.xb_c00210{left:111.150000px;}
.xe_c00210{left:119.550000px;}
.xc_c00210{left:127.200000px;}
.xd_c00210{left:144.750000px;}
.x9_c00210{left:148.800000px;}
.x1_c00210{left:218.100000px;}
.x12_c00210{left:246.939240px;}
.xf_c00210{left:288.600000px;}
.x10_c00210{left:290.250000px;}
.x5_c00210{left:291.600000px;}
.x6_c00210{left:293.250000px;}
.x11_c00210{left:380.400000px;}
@media print{
.v0_c00210{vertical-align:0.000000pt;}
.v1_c00210{vertical-align:86.400000pt;}
.ls7_c00210{letter-spacing:0.000000pt;}
.ls2_c00210{letter-spacing:0.360000pt;}
.ls5_c00210{letter-spacing:1.066667pt;}
.ls0_c00210{letter-spacing:2.666667pt;}
.ls4_c00210{letter-spacing:3.413333pt;}
.ls1_c00210{letter-spacing:5.333333pt;}
.ls6_c00210{letter-spacing:9.944000pt;}
.ls3_c00210{letter-spacing:46.768000pt;}
.ws2_c00210{word-spacing:-17.333333pt;}
.ws7_c00210{word-spacing:-16.053333pt;}
.ws1_c00210{word-spacing:-15.413333pt;}
.ws3_c00210{word-spacing:-13.333333pt;}
.ws6_c00210{word-spacing:-12.824000pt;}
.ws0_c00210{word-spacing:-12.586667pt;}
.ws5_c00210{word-spacing:-11.957333pt;}
.ws8_c00210{word-spacing:0.000000pt;}
.ws4_c00210{word-spacing:2.560000pt;}
._27_c00210{margin-left:-10.186667pt;}
._2a_c00210{margin-left:-8.480000pt;}
._26_c00210{margin-left:-7.093333pt;}
._28_c00210{margin-left:-5.813333pt;}
._1c_c00210{margin-left:-4.266667pt;}
._e_c00210{margin-left:-3.253333pt;}
._18_c00210{margin-left:-2.026667pt;}
._9_c00210{margin-left:-1.120000pt;}
._c_c00210{width:1.173333pt;}
._d_c00210{width:2.186667pt;}
._11_c00210{width:3.626667pt;}
._b_c00210{width:4.533333pt;}
._12_c00210{width:5.653333pt;}
._1_c00210{width:7.413333pt;}
._4_c00210{width:8.533333pt;}
._0_c00210{width:9.546667pt;}
._f_c00210{width:10.880000pt;}
._5_c00210{width:12.853333pt;}
._23_c00210{width:13.813333pt;}
._13_c00210{width:14.880000pt;}
._2b_c00210{width:16.746667pt;}
._3_c00210{width:17.653333pt;}
._1e_c00210{width:18.933333pt;}
._2_c00210{width:20.480000pt;}
._20_c00210{width:22.133333pt;}
._1d_c00210{width:23.200000pt;}
._2f_c00210{width:24.133333pt;}
._16_c00210{width:25.120000pt;}
._2d_c00210{width:26.656000pt;}
._1a_c00210{width:27.573333pt;}
._2e_c00210{width:29.437333pt;}
._30_c00210{width:32.800000pt;}
._25_c00210{width:34.346667pt;}
._2c_c00210{width:43.253333pt;}
._7_c00210{width:49.333333pt;}
._15_c00210{width:51.253333pt;}
._1f_c00210{width:52.906667pt;}
._10_c00210{width:54.560000pt;}
._6_c00210{width:57.013333pt;}
._21_c00210{width:59.360000pt;}
._1b_c00210{width:62.026667pt;}
._19_c00210{width:63.946667pt;}
._29_c00210{width:66.506667pt;}
._17_c00210{width:67.840000pt;}
._22_c00210{width:70.560000pt;}
._32_c00210{width:73.493333pt;}
._33_c00210{width:84.320000pt;}
._a_c00210{width:91.413333pt;}
._8_c00210{width:103.146667pt;}
._14_c00210{width:122.506667pt;}
._24_c00210{width:125.813333pt;}
._31_c00210{width:152.693333pt;}
.fs8_c00210{font-size:21.333333pt;}
.fs4_c00210{font-size:40.000000pt;}
.fs1_c00210{font-size:42.666667pt;}
.fs6_c00210{font-size:50.666667pt;}
.fs0_c00210{font-size:53.333333pt;}
.fs7_c00210{font-size:56.000000pt;}
.fs2_c00210{font-size:58.666667pt;}
.fs3_c00210{font-size:72.000000pt;}
.fs5_c00210{font-size:168.000000pt;}
.y0_c00210{bottom:0.000000pt;}
.y46_c00210{bottom:2.760000pt;}
.y45_c00210{bottom:6.425206pt;}
.y44_c00210{bottom:35.360000pt;}
.y43_c00210{bottom:53.760000pt;}
.y2b_c00210{bottom:56.426667pt;}
.y42_c00210{bottom:70.160000pt;}
.y2a_c00210{bottom:72.693333pt;}
.y41_c00210{bottom:85.893333pt;}
.y29_c00210{bottom:88.826667pt;}
.y40_c00210{bottom:101.760000pt;}
.y28_c00210{bottom:104.693333pt;}
.y3f_c00210{bottom:118.560000pt;}
.y27_c00210{bottom:120.693333pt;}
.y3e_c00210{bottom:134.426667pt;}
.y26_c00210{bottom:137.093333pt;}
.y3d_c00210{bottom:150.693333pt;}
.y25_c00210{bottom:152.960000pt;}
.y3c_c00210{bottom:166.826667pt;}
.y24_c00210{bottom:169.226667pt;}
.y3b_c00210{bottom:183.093333pt;}
.y23_c00210{bottom:185.360000pt;}
.y21_c00210{bottom:195.626667pt;}
.y3a_c00210{bottom:198.693333pt;}
.y22_c00210{bottom:201.360000pt;}
.y39_c00210{bottom:215.360000pt;}
.y38_c00210{bottom:230.426667pt;}
.y37_c00210{bottom:246.693333pt;}
.y20_c00210{bottom:250.293333pt;}
.y36_c00210{bottom:263.093333pt;}
.y1f_c00210{bottom:265.893333pt;}
.y35_c00210{bottom:279.093333pt;}
.y1e_c00210{bottom:281.760000pt;}
.y34_c00210{bottom:295.760000pt;}
.y1d_c00210{bottom:296.960000pt;}
.y33_c00210{bottom:310.560000pt;}
.y1c_c00210{bottom:313.493333pt;}
.y32_c00210{bottom:328.293333pt;}
.y1b_c00210{bottom:329.760000pt;}
.y31_c00210{bottom:343.760000pt;}
.y1a_c00210{bottom:360.693333pt;}
.y30_c00210{bottom:361.760000pt;}
.y2f_c00210{bottom:377.760000pt;}
.y19_c00210{bottom:392.693333pt;}
.y2e_c00210{bottom:393.360000pt;}
.y18_c00210{bottom:408.960000pt;}
.y2d_c00210{bottom:409.493333pt;}
.y17_c00210{bottom:424.826667pt;}
.y2c_c00210{bottom:426.293333pt;}
.y16_c00210{bottom:440.693333pt;}
.y12_c00210{bottom:443.093333pt;}
.y15_c00210{bottom:456.293333pt;}
.y11_c00210{bottom:457.760000pt;}
.y14_c00210{bottom:472.160000pt;}
.y10_c00210{bottom:473.760000pt;}
.y13_c00210{bottom:488.693333pt;}
.yf_c00210{bottom:489.893333pt;}
.ye_c00210{bottom:505.893333pt;}
.yd_c00210{bottom:521.493333pt;}
.yc_c00210{bottom:537.360000pt;}
.yb_c00210{bottom:553.893333pt;}
.ya_c00210{bottom:570.026667pt;}
.y9_c00210{bottom:586.293333pt;}
.y8_c00210{bottom:601.893333pt;}
.y7_c00210{bottom:617.493333pt;}
.y6_c00210{bottom:634.160000pt;}
.y5_c00210{bottom:649.760000pt;}
.y4_c00210{bottom:666.293333pt;}
.y3_c00210{bottom:683.360000pt;}
.y2_c00210{bottom:698.960000pt;}
.y1_c00210{bottom:714.960000pt;}
.h9_c00210{height:11.733399pt;}
.ha_c00210{height:38.937500pt;}
.h7_c00210{height:53.098667pt;}
.h3_c00210{height:55.893333pt;}
.h2_c00210{height:56.906667pt;}
.h8_c00210{height:58.688000pt;}
.h4_c00210{height:62.597333pt;}
.h5_c00210{height:76.824000pt;}
.h6_c00210{height:176.064000pt;}
.h0_c00210{height:749.066667pt;}
.h1_c00210{height:749.333333pt;}
.w1_c00210{width:93.222667pt;}
.w0_c00210{width:524.666667pt;}
.x0_c00210{left:0.000000pt;}
.x4_c00210{left:64.266667pt;}
.x8_c00210{left:65.200000pt;}
.x7_c00210{left:66.400000pt;}
.x3_c00210{left:67.600000pt;}
.x2_c00210{left:69.066667pt;}
.xa_c00210{left:76.000000pt;}
.xb_c00210{left:98.800000pt;}
.xe_c00210{left:106.266667pt;}
.xc_c00210{left:113.066667pt;}
.xd_c00210{left:128.666667pt;}
.x9_c00210{left:132.266667pt;}
.x1_c00210{left:193.866667pt;}
.x12_c00210{left:219.501546pt;}
.xf_c00210{left:256.533333pt;}
.x10_c00210{left:258.000000pt;}
.x5_c00210{left:259.200000pt;}
.x6_c00210{left:260.666667pt;}
.x11_c00210{left:338.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e10f2a9a1ce163ff7c871248.woff2')format("woff");}.ff1_c00211{font-family:ff1_c00211;line-height:1.437000;font-style:normal;font-weight:normal;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_8839f9df1b45c230cc0ad125.woff2')format("woff");}.ff2_c00211{font-family:ff2_c00211;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00211;src:url('chunks/assets/font_0d25e87a8269714c5623ffa3.woff2')format("woff");}.ff3_c00211{font-family:ff3_c00211;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00211;src:url('chunks/assets/font_99c7a60f4b04c1afd0655b11.woff2')format("woff");}.ff4_c00211{font-family:ff4_c00211;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00211;src:url('chunks/assets/font_7f7cb47ea694c15884134c85.woff2')format("woff");}.ff5_c00211{font-family:ff5_c00211;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00211;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff6_c00211{font-family:ff6_c00211;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00211{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00211{vertical-align:0.000000px;}
.ls5_c00211{letter-spacing:0.000000px;}
.ls2_c00211{letter-spacing:0.093000px;}
.ls0_c00211{letter-spacing:3.000000px;}
.ls1_c00211{letter-spacing:12.600000px;}
.ls3_c00211{letter-spacing:15.000000px;}
.ls4_c00211{letter-spacing:66.693000px;}
.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;}
}
.ws2_c00211{word-spacing:-31.746000px;}
.ws4_c00211{word-spacing:-29.340000px;}
.ws1_c00211{word-spacing:-17.340000px;}
.ws0_c00211{word-spacing:-14.160000px;}
.ws3_c00211{word-spacing:-13.452000px;}
.ws5_c00211{word-spacing:-0.228000px;}
.ws6_c00211{word-spacing:0.000000px;}
._0_c00211{margin-left:-13.620000px;}
._1a_c00211{margin-left:-11.400000px;}
._1b_c00211{margin-left:-10.320000px;}
._24_c00211{margin-left:-9.000000px;}
._1c_c00211{margin-left:-7.980000px;}
._b_c00211{margin-left:-6.180000px;}
._12_c00211{margin-left:-5.160000px;}
._d_c00211{margin-left:-3.840000px;}
._c_c00211{margin-left:-2.400000px;}
._a_c00211{margin-left:-1.380000px;}
._2_c00211{width:1.620000px;}
._4_c00211{width:3.240000px;}
._8_c00211{width:4.500000px;}
._17_c00211{width:5.820000px;}
._15_c00211{width:7.260000px;}
._13_c00211{width:8.640000px;}
._1e_c00211{width:10.440000px;}
._5_c00211{width:12.000000px;}
._6_c00211{width:13.980000px;}
._25_c00211{width:15.000000px;}
._f_c00211{width:16.020000px;}
._9_c00211{width:18.000000px;}
._18_c00211{width:20.040000px;}
._10_c00211{width:22.320000px;}
._11_c00211{width:23.460000px;}
._20_c00211{width:25.200000px;}
._1_c00211{width:26.340000px;}
._27_c00211{width:27.600000px;}
._30_c00211{width:28.800000px;}
._26_c00211{width:29.880000px;}
._34_c00211{width:32.160000px;}
._23_c00211{width:34.020000px;}
._35_c00211{width:38.220000px;}
._3_c00211{width:39.960000px;}
._2c_c00211{width:44.520000px;}
._33_c00211{width:50.643000px;}
._32_c00211{width:51.660000px;}
._2d_c00211{width:57.360000px;}
._7_c00211{width:59.820000px;}
._e_c00211{width:61.980000px;}
._19_c00211{width:63.900000px;}
._1d_c00211{width:65.100000px;}
._1f_c00211{width:66.840000px;}
._2a_c00211{width:68.400000px;}
._28_c00211{width:69.480000px;}
._21_c00211{width:71.280000px;}
._2f_c00211{width:72.840000px;}
._31_c00211{width:74.280000px;}
._2e_c00211{width:94.320000px;}
._2b_c00211{width:107.049000px;}
._29_c00211{width:137.400000px;}
._14_c00211{width:186.420000px;}
._22_c00211{width:311.700000px;}
._16_c00211{width:658.980000px;}
.fc2_c00211{color:transparent;}
.fc1_c00211{color:rgb(128,128,128);}
.fc0_c00211{color:rgb(0,0,0);}
.fs4_c00211{font-size:48.000000px;}
.fs2_c00211{font-size:51.000000px;}
.fs3_c00211{font-size:57.000000px;}
.fs0_c00211{font-size:60.000000px;}
.fs1_c00211{font-size:66.000000px;}
.y0_c00211{bottom:0.000000px;}
.y2c_c00211{bottom:3.105000px;}
.y2b_c00211{bottom:7.228357px;}
.y2a_c00211{bottom:39.480000px;}
.y29_c00211{bottom:58.680000px;}
.y28_c00211{bottom:77.580000px;}
.y27_c00211{bottom:95.280000px;}
.y26_c00211{bottom:113.730000px;}
.y25_c00211{bottom:132.030000px;}
.y24_c00211{bottom:149.280000px;}
.y23_c00211{bottom:168.030000px;}
.y22_c00211{bottom:185.580000px;}
.y21_c00211{bottom:204.180000px;}
.y20_c00211{bottom:222.180000px;}
.y1f_c00211{bottom:240.030000px;}
.y1e_c00211{bottom:259.230000px;}
.y1d_c00211{bottom:277.080000px;}
.y1c_c00211{bottom:295.380000px;}
.y1b_c00211{bottom:313.530000px;}
.y1a_c00211{bottom:330.780000px;}
.y19_c00211{bottom:350.730000px;}
.y18_c00211{bottom:367.980000px;}
.y17_c00211{bottom:386.430000px;}
.y16_c00211{bottom:403.980000px;}
.y15_c00211{bottom:423.180000px;}
.y14_c00211{bottom:441.480000px;}
.y13_c00211{bottom:459.330000px;}
.y12_c00211{bottom:478.230000px;}
.y11_c00211{bottom:496.530000px;}
.y10_c00211{bottom:514.080000px;}
.yf_c00211{bottom:531.630000px;}
.ye_c00211{bottom:550.230000px;}
.yd_c00211{bottom:568.980000px;}
.yc_c00211{bottom:587.280000px;}
.yb_c00211{bottom:604.230000px;}
.ya_c00211{bottom:622.380000px;}
.y9_c00211{bottom:642.030000px;}
.y8_c00211{bottom:659.880000px;}
.y7_c00211{bottom:677.430000px;}
.y6_c00211{bottom:696.030000px;}
.y5_c00211{bottom:714.180000px;}
.y4_c00211{bottom:732.480000px;}
.y3_c00211{bottom:750.930000px;}
.y2_c00211{bottom:769.230000px;}
.y1_c00211{bottom:787.080000px;}
.h4_c00211{height:13.200074px;}
.h5_c00211{height:43.804688px;}
.h2_c00211{height:62.880000px;}
.h3_c00211{height:71.544000px;}
.h0_c00211{height:841.350000px;}
.h1_c00211{height:841.500000px;}
.w2_c00211{width:104.875500px;}
.w0_c00211{width:558.375000px;}
.w1_c00211{width:558.750000px;}
.x0_c00211{left:0.000000px;}
.x7_c00211{left:33.000000px;}
.x4_c00211{left:34.050000px;}
.x9_c00211{left:35.100000px;}
.x1_c00211{left:57.000000px;}
.x8_c00211{left:74.250000px;}
.xa_c00211{left:94.050000px;}
.x6_c00211{left:96.900000px;}
.x5_c00211{left:98.100000px;}
.x2_c00211{left:99.600000px;}
.x3_c00211{left:126.150000px;}
.xc_c00211{left:231.001740px;}
.xb_c00211{left:488.400000px;}
@media print{
.v0_c00211{vertical-align:0.000000pt;}
.ls5_c00211{letter-spacing:0.000000pt;}
.ls2_c00211{letter-spacing:0.082667pt;}
.ls0_c00211{letter-spacing:2.666667pt;}
.ls1_c00211{letter-spacing:11.200000pt;}
.ls3_c00211{letter-spacing:13.333333pt;}
.ls4_c00211{letter-spacing:59.282667pt;}
.ws2_c00211{word-spacing:-28.218667pt;}
.ws4_c00211{word-spacing:-26.080000pt;}
.ws1_c00211{word-spacing:-15.413333pt;}
.ws0_c00211{word-spacing:-12.586667pt;}
.ws3_c00211{word-spacing:-11.957333pt;}
.ws5_c00211{word-spacing:-0.202667pt;}
.ws6_c00211{word-spacing:0.000000pt;}
._0_c00211{margin-left:-12.106667pt;}
._1a_c00211{margin-left:-10.133333pt;}
._1b_c00211{margin-left:-9.173333pt;}
._24_c00211{margin-left:-8.000000pt;}
._1c_c00211{margin-left:-7.093333pt;}
._b_c00211{margin-left:-5.493333pt;}
._12_c00211{margin-left:-4.586667pt;}
._d_c00211{margin-left:-3.413333pt;}
._c_c00211{margin-left:-2.133333pt;}
._a_c00211{margin-left:-1.226667pt;}
._2_c00211{width:1.440000pt;}
._4_c00211{width:2.880000pt;}
._8_c00211{width:4.000000pt;}
._17_c00211{width:5.173333pt;}
._15_c00211{width:6.453333pt;}
._13_c00211{width:7.680000pt;}
._1e_c00211{width:9.280000pt;}
._5_c00211{width:10.666667pt;}
._6_c00211{width:12.426667pt;}
._25_c00211{width:13.333333pt;}
._f_c00211{width:14.240000pt;}
._9_c00211{width:16.000000pt;}
._18_c00211{width:17.813333pt;}
._10_c00211{width:19.840000pt;}
._11_c00211{width:20.853333pt;}
._20_c00211{width:22.400000pt;}
._1_c00211{width:23.413333pt;}
._27_c00211{width:24.533333pt;}
._30_c00211{width:25.600000pt;}
._26_c00211{width:26.560000pt;}
._34_c00211{width:28.586667pt;}
._23_c00211{width:30.240000pt;}
._35_c00211{width:33.973333pt;}
._3_c00211{width:35.520000pt;}
._2c_c00211{width:39.573333pt;}
._33_c00211{width:45.016000pt;}
._32_c00211{width:45.920000pt;}
._2d_c00211{width:50.986667pt;}
._7_c00211{width:53.173333pt;}
._e_c00211{width:55.093333pt;}
._19_c00211{width:56.800000pt;}
._1d_c00211{width:57.866667pt;}
._1f_c00211{width:59.413333pt;}
._2a_c00211{width:60.800000pt;}
._28_c00211{width:61.760000pt;}
._21_c00211{width:63.360000pt;}
._2f_c00211{width:64.746667pt;}
._31_c00211{width:66.026667pt;}
._2e_c00211{width:83.840000pt;}
._2b_c00211{width:95.154667pt;}
._29_c00211{width:122.133333pt;}
._14_c00211{width:165.706667pt;}
._22_c00211{width:277.066667pt;}
._16_c00211{width:585.760000pt;}
.fs4_c00211{font-size:42.666667pt;}
.fs2_c00211{font-size:45.333333pt;}
.fs3_c00211{font-size:50.666667pt;}
.fs0_c00211{font-size:53.333333pt;}
.fs1_c00211{font-size:58.666667pt;}
.y0_c00211{bottom:0.000000pt;}
.y2c_c00211{bottom:2.760000pt;}
.y2b_c00211{bottom:6.425206pt;}
.y2a_c00211{bottom:35.093333pt;}
.y29_c00211{bottom:52.160000pt;}
.y28_c00211{bottom:68.960000pt;}
.y27_c00211{bottom:84.693333pt;}
.y26_c00211{bottom:101.093333pt;}
.y25_c00211{bottom:117.360000pt;}
.y24_c00211{bottom:132.693333pt;}
.y23_c00211{bottom:149.360000pt;}
.y22_c00211{bottom:164.960000pt;}
.y21_c00211{bottom:181.493333pt;}
.y20_c00211{bottom:197.493333pt;}
.y1f_c00211{bottom:213.360000pt;}
.y1e_c00211{bottom:230.426667pt;}
.y1d_c00211{bottom:246.293333pt;}
.y1c_c00211{bottom:262.560000pt;}
.y1b_c00211{bottom:278.693333pt;}
.y1a_c00211{bottom:294.026667pt;}
.y19_c00211{bottom:311.760000pt;}
.y18_c00211{bottom:327.093333pt;}
.y17_c00211{bottom:343.493333pt;}
.y16_c00211{bottom:359.093333pt;}
.y15_c00211{bottom:376.160000pt;}
.y14_c00211{bottom:392.426667pt;}
.y13_c00211{bottom:408.293333pt;}
.y12_c00211{bottom:425.093333pt;}
.y11_c00211{bottom:441.360000pt;}
.y10_c00211{bottom:456.960000pt;}
.yf_c00211{bottom:472.560000pt;}
.ye_c00211{bottom:489.093333pt;}
.yd_c00211{bottom:505.760000pt;}
.yc_c00211{bottom:522.026667pt;}
.yb_c00211{bottom:537.093333pt;}
.ya_c00211{bottom:553.226667pt;}
.y9_c00211{bottom:570.693333pt;}
.y8_c00211{bottom:586.560000pt;}
.y7_c00211{bottom:602.160000pt;}
.y6_c00211{bottom:618.693333pt;}
.y5_c00211{bottom:634.826667pt;}
.y4_c00211{bottom:651.093333pt;}
.y3_c00211{bottom:667.493333pt;}
.y2_c00211{bottom:683.760000pt;}
.y1_c00211{bottom:699.626667pt;}
.h4_c00211{height:11.733399pt;}
.h5_c00211{height:38.937500pt;}
.h2_c00211{height:55.893333pt;}
.h3_c00211{height:63.594667pt;}
.h0_c00211{height:747.866667pt;}
.h1_c00211{height:748.000000pt;}
.w2_c00211{width:93.222667pt;}
.w0_c00211{width:496.333333pt;}
.w1_c00211{width:496.666667pt;}
.x0_c00211{left:0.000000pt;}
.x7_c00211{left:29.333333pt;}
.x4_c00211{left:30.266667pt;}
.x9_c00211{left:31.200000pt;}
.x1_c00211{left:50.666667pt;}
.x8_c00211{left:66.000000pt;}
.xa_c00211{left:83.600000pt;}
.x6_c00211{left:86.133333pt;}
.x5_c00211{left:87.200000pt;}
.x2_c00211{left:88.533333pt;}
.x3_c00211{left:112.133333pt;}
.xc_c00211{left:205.334880pt;}
.xb_c00211{left:434.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_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_4de4dd4c91f28cf009cf8bf6.woff2')format("woff");}.ff1_c00212{font-family:ff1_c00212;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00212;src:url('chunks/assets/font_9636e0e34eee1fd9fd089332.woff2')format("woff");}.ff2_c00212{font-family:ff2_c00212;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00212;src:url('chunks/assets/font_d087691ce0334d65680cc680.woff2')format("woff");}.ff3_c00212{font-family:ff3_c00212;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00212;src:url('chunks/assets/font_e31b9733c4091fa49dc7b0a9.woff2')format("woff");}.ff4_c00212{font-family:ff4_c00212;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00212;src:url('chunks/assets/font_6e56ff4e987e7f90f174183e.woff2')format("woff");}.ff5_c00212{font-family:ff5_c00212;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00212;src:url('chunks/assets/font_3a7302fa8b7e747d78b17ffc.woff2')format("woff");}.ff6_c00212{font-family:ff6_c00212;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00212;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff7_c00212{font-family:ff7_c00212;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00212{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00212{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.v0_c00212{vertical-align:0.000000px;}
.ls2_c00212{letter-spacing:0.000000px;}
.ls1_c00212{letter-spacing:3.000000px;}
.ls0_c00212{letter-spacing:6.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;}
}
.ws0_c00212{word-spacing:-23.760000px;}
.ws3_c00212{word-spacing:-18.813000px;}
.ws2_c00212{word-spacing:-18.060000px;}
.ws1_c00212{word-spacing:-14.160000px;}
.ws4_c00212{word-spacing:0.000000px;}
._17_c00212{margin-left:-17.220000px;}
._16_c00212{margin-left:-14.700000px;}
._2a_c00212{margin-left:-13.380000px;}
._28_c00212{margin-left:-11.460000px;}
._2d_c00212{margin-left:-9.024000px;}
._13_c00212{margin-left:-7.848000px;}
._1a_c00212{margin-left:-6.096000px;}
._1f_c00212{margin-left:-4.917000px;}
._3_c00212{margin-left:-3.672000px;}
._0_c00212{margin-left:-2.592000px;}
._2_c00212{margin-left:-1.440000px;}
._6_c00212{width:1.311000px;}
._10_c00212{width:2.361000px;}
._a_c00212{width:3.864000px;}
._d_c00212{width:5.313000px;}
._8_c00212{width:6.477000px;}
._9_c00212{width:7.797000px;}
._e_c00212{width:9.738000px;}
._12_c00212{width:11.016000px;}
._f_c00212{width:12.696000px;}
._14_c00212{width:14.052000px;}
._b_c00212{width:15.663000px;}
._4_c00212{width:17.568000px;}
._25_c00212{width:18.870000px;}
._11_c00212{width:19.935000px;}
._18_c00212{width:21.042000px;}
._7_c00212{width:23.184000px;}
._1e_c00212{width:24.501000px;}
._5_c00212{width:26.208000px;}
._1b_c00212{width:27.432000px;}
._2b_c00212{width:29.145000px;}
._1_c00212{width:31.896000px;}
._1c_c00212{width:36.546000px;}
._21_c00212{width:37.644000px;}
._20_c00212{width:39.714000px;}
._30_c00212{width:41.943000px;}
._24_c00212{width:43.896000px;}
._2f_c00212{width:45.600000px;}
._2e_c00212{width:47.691000px;}
._26_c00212{width:49.335000px;}
._23_c00212{width:54.720000px;}
._27_c00212{width:61.920000px;}
._19_c00212{width:77.646000px;}
._22_c00212{width:92.904000px;}
._29_c00212{width:127.791000px;}
._1d_c00212{width:139.932000px;}
._2c_c00212{width:170.259000px;}
._15_c00212{width:207.429000px;}
._c_c00212{width:473.340000px;}
.fc2_c00212{color:transparent;}
.fc1_c00212{color:rgb(128,128,128);}
.fc0_c00212{color:rgb(0,0,0);}
.fs3_c00212{font-size:48.000000px;}
.fs2_c00212{font-size:60.000000px;}
.fs5_c00212{font-size:63.000000px;}
.fs1_c00212{font-size:69.000000px;}
.fs0_c00212{font-size:72.000000px;}
.fs4_c00212{font-size:195.000000px;}
.y0_c00212{bottom:0.000000px;}
.y46_c00212{bottom:3.105000px;}
.y45_c00212{bottom:7.228357px;}
.y44_c00212{bottom:30.330000px;}
.y43_c00212{bottom:49.980000px;}
.y42_c00212{bottom:68.580000px;}
.y41_c00212{bottom:86.130000px;}
.y40_c00212{bottom:104.580000px;}
.y3f_c00212{bottom:122.580000px;}
.y3e_c00212{bottom:139.680000px;}
.y3d_c00212{bottom:158.580000px;}
.y3c_c00212{bottom:176.130000px;}
.y3b_c00212{bottom:194.730000px;}
.y3a_c00212{bottom:212.730000px;}
.y20_c00212{bottom:216.780000px;}
.y39_c00212{bottom:230.880000px;}
.y1f_c00212{bottom:235.680000px;}
.y38_c00212{bottom:249.780000px;}
.y1e_c00212{bottom:252.180000px;}
.y37_c00212{bottom:268.380000px;}
.y1d_c00212{bottom:271.680000px;}
.y36_c00212{bottom:285.930000px;}
.y1c_c00212{bottom:289.680000px;}
.y35_c00212{bottom:304.830000px;}
.y1b_c00212{bottom:307.830000px;}
.y34_c00212{bottom:321.630000px;}
.y1a_c00212{bottom:325.680000px;}
.y33_c00212{bottom:340.980000px;}
.y19_c00212{bottom:343.680000px;}
.y32_c00212{bottom:358.380000px;}
.y18_c00212{bottom:361.830000px;}
.y31_c00212{bottom:376.680000px;}
.y17_c00212{bottom:380.130000px;}
.y30_c00212{bottom:395.880000px;}
.y16_c00212{bottom:397.980000px;}
.y2f_c00212{bottom:413.130000px;}
.y15_c00212{bottom:416.430000px;}
.y2e_c00212{bottom:432.030000px;}
.y14_c00212{bottom:434.430000px;}
.y2d_c00212{bottom:449.580000px;}
.y13_c00212{bottom:451.680000px;}
.y2c_c00212{bottom:467.880000px;}
.y12_c00212{bottom:470.130000px;}
.y2b_c00212{bottom:485.730000px;}
.y11_c00212{bottom:487.380000px;}
.y2a_c00212{bottom:504.330000px;}
.y10_c00212{bottom:504.930000px;}
.y29_c00212{bottom:521.730000px;}
.yf_c00212{bottom:523.080000px;}
.y28_c00212{bottom:539.730000px;}
.ye_c00212{bottom:541.080000px;}
.y27_c00212{bottom:558.180000px;}
.yd_c00212{bottom:559.080000px;}
.y21_c00212{bottom:571.680000px;}
.y26_c00212{bottom:575.730000px;}
.yc_c00212{bottom:577.080000px;}
.y25_c00212{bottom:594.030000px;}
.yb_c00212{bottom:595.080000px;}
.ya_c00212{bottom:613.530000px;}
.y24_c00212{bottom:630.780000px;}
.y9_c00212{bottom:631.530000px;}
.y23_c00212{bottom:649.680000px;}
.y8_c00212{bottom:649.980000px;}
.y7_c00212{bottom:667.230000px;}
.y22_c00212{bottom:667.680000px;}
.y6_c00212{bottom:685.230000px;}
.y5_c00212{bottom:703.380000px;}
.y4_c00212{bottom:721.230000px;}
.y3_c00212{bottom:739.830000px;}
.y2_c00212{bottom:757.980000px;}
.y1_c00212{bottom:775.680000px;}
.h7_c00212{height:13.200074px;}
.h8_c00212{height:43.804688px;}
.h4_c00212{height:62.880000px;}
.h6_c00212{height:66.024000px;}
.h2_c00212{height:70.664062px;}
.h3_c00212{height:72.312000px;}
.h5_c00212{height:208.065000px;}
.h0_c00212{height:842.700000px;}
.h1_c00212{height:843.000000px;}
.w1_c00212{width:104.875500px;}
.w0_c00212{width:590.250000px;}
.x0_c00212{left:0.000000px;}
.x1_c00212{left:70.950000px;}
.x2_c00212{left:72.450000px;}
.x3_c00212{left:74.700000px;}
.x4_c00212{left:75.900000px;}
.x5_c00212{left:76.950000px;}
.x6_c00212{left:92.250000px;}
.x7_c00212{left:118.500000px;}
.x8_c00212{left:149.250000px;}
.x14_c00212{left:246.939240px;}
.x11_c00212{left:284.400000px;}
.xf_c00212{left:290.250000px;}
.x10_c00212{left:291.600000px;}
.x9_c00212{left:293.250000px;}
.x12_c00212{left:294.900000px;}
.xe_c00212{left:326.850000px;}
.xa_c00212{left:330.450000px;}
.xd_c00212{left:341.550000px;}
.xb_c00212{left:357.450000px;}
.xc_c00212{left:368.550000px;}
.x13_c00212{left:463.050000px;}
@media print{
.v0_c00212{vertical-align:0.000000pt;}
.ls2_c00212{letter-spacing:0.000000pt;}
.ls1_c00212{letter-spacing:2.666667pt;}
.ls0_c00212{letter-spacing:5.333333pt;}
.ws0_c00212{word-spacing:-21.120000pt;}
.ws3_c00212{word-spacing:-16.722667pt;}
.ws2_c00212{word-spacing:-16.053333pt;}
.ws1_c00212{word-spacing:-12.586667pt;}
.ws4_c00212{word-spacing:0.000000pt;}
._17_c00212{margin-left:-15.306667pt;}
._16_c00212{margin-left:-13.066667pt;}
._2a_c00212{margin-left:-11.893333pt;}
._28_c00212{margin-left:-10.186667pt;}
._2d_c00212{margin-left:-8.021333pt;}
._13_c00212{margin-left:-6.976000pt;}
._1a_c00212{margin-left:-5.418667pt;}
._1f_c00212{margin-left:-4.370667pt;}
._3_c00212{margin-left:-3.264000pt;}
._0_c00212{margin-left:-2.304000pt;}
._2_c00212{margin-left:-1.280000pt;}
._6_c00212{width:1.165333pt;}
._10_c00212{width:2.098667pt;}
._a_c00212{width:3.434667pt;}
._d_c00212{width:4.722667pt;}
._8_c00212{width:5.757333pt;}
._9_c00212{width:6.930667pt;}
._e_c00212{width:8.656000pt;}
._12_c00212{width:9.792000pt;}
._f_c00212{width:11.285333pt;}
._14_c00212{width:12.490667pt;}
._b_c00212{width:13.922667pt;}
._4_c00212{width:15.616000pt;}
._25_c00212{width:16.773333pt;}
._11_c00212{width:17.720000pt;}
._18_c00212{width:18.704000pt;}
._7_c00212{width:20.608000pt;}
._1e_c00212{width:21.778667pt;}
._5_c00212{width:23.296000pt;}
._1b_c00212{width:24.384000pt;}
._2b_c00212{width:25.906667pt;}
._1_c00212{width:28.352000pt;}
._1c_c00212{width:32.485333pt;}
._21_c00212{width:33.461333pt;}
._20_c00212{width:35.301333pt;}
._30_c00212{width:37.282667pt;}
._24_c00212{width:39.018667pt;}
._2f_c00212{width:40.533333pt;}
._2e_c00212{width:42.392000pt;}
._26_c00212{width:43.853333pt;}
._23_c00212{width:48.640000pt;}
._27_c00212{width:55.040000pt;}
._19_c00212{width:69.018667pt;}
._22_c00212{width:82.581333pt;}
._29_c00212{width:113.592000pt;}
._1d_c00212{width:124.384000pt;}
._2c_c00212{width:151.341333pt;}
._15_c00212{width:184.381333pt;}
._c_c00212{width:420.746667pt;}
.fs3_c00212{font-size:42.666667pt;}
.fs2_c00212{font-size:53.333333pt;}
.fs5_c00212{font-size:56.000000pt;}
.fs1_c00212{font-size:61.333333pt;}
.fs0_c00212{font-size:64.000000pt;}
.fs4_c00212{font-size:173.333333pt;}
.y0_c00212{bottom:0.000000pt;}
.y46_c00212{bottom:2.760000pt;}
.y45_c00212{bottom:6.425206pt;}
.y44_c00212{bottom:26.960000pt;}
.y43_c00212{bottom:44.426667pt;}
.y42_c00212{bottom:60.960000pt;}
.y41_c00212{bottom:76.560000pt;}
.y40_c00212{bottom:92.960000pt;}
.y3f_c00212{bottom:108.960000pt;}
.y3e_c00212{bottom:124.160000pt;}
.y3d_c00212{bottom:140.960000pt;}
.y3c_c00212{bottom:156.560000pt;}
.y3b_c00212{bottom:173.093333pt;}
.y3a_c00212{bottom:189.093333pt;}
.y20_c00212{bottom:192.693333pt;}
.y39_c00212{bottom:205.226667pt;}
.y1f_c00212{bottom:209.493333pt;}
.y38_c00212{bottom:222.026667pt;}
.y1e_c00212{bottom:224.160000pt;}
.y37_c00212{bottom:238.560000pt;}
.y1d_c00212{bottom:241.493333pt;}
.y36_c00212{bottom:254.160000pt;}
.y1c_c00212{bottom:257.493333pt;}
.y35_c00212{bottom:270.960000pt;}
.y1b_c00212{bottom:273.626667pt;}
.y34_c00212{bottom:285.893333pt;}
.y1a_c00212{bottom:289.493333pt;}
.y33_c00212{bottom:303.093333pt;}
.y19_c00212{bottom:305.493333pt;}
.y32_c00212{bottom:318.560000pt;}
.y18_c00212{bottom:321.626667pt;}
.y31_c00212{bottom:334.826667pt;}
.y17_c00212{bottom:337.893333pt;}
.y30_c00212{bottom:351.893333pt;}
.y16_c00212{bottom:353.760000pt;}
.y2f_c00212{bottom:367.226667pt;}
.y15_c00212{bottom:370.160000pt;}
.y2e_c00212{bottom:384.026667pt;}
.y14_c00212{bottom:386.160000pt;}
.y2d_c00212{bottom:399.626667pt;}
.y13_c00212{bottom:401.493333pt;}
.y2c_c00212{bottom:415.893333pt;}
.y12_c00212{bottom:417.893333pt;}
.y2b_c00212{bottom:431.760000pt;}
.y11_c00212{bottom:433.226667pt;}
.y2a_c00212{bottom:448.293333pt;}
.y10_c00212{bottom:448.826667pt;}
.y29_c00212{bottom:463.760000pt;}
.yf_c00212{bottom:464.960000pt;}
.y28_c00212{bottom:479.760000pt;}
.ye_c00212{bottom:480.960000pt;}
.y27_c00212{bottom:496.160000pt;}
.yd_c00212{bottom:496.960000pt;}
.y21_c00212{bottom:508.160000pt;}
.y26_c00212{bottom:511.760000pt;}
.yc_c00212{bottom:512.960000pt;}
.y25_c00212{bottom:528.026667pt;}
.yb_c00212{bottom:528.960000pt;}
.ya_c00212{bottom:545.360000pt;}
.y24_c00212{bottom:560.693333pt;}
.y9_c00212{bottom:561.360000pt;}
.y23_c00212{bottom:577.493333pt;}
.y8_c00212{bottom:577.760000pt;}
.y7_c00212{bottom:593.093333pt;}
.y22_c00212{bottom:593.493333pt;}
.y6_c00212{bottom:609.093333pt;}
.y5_c00212{bottom:625.226667pt;}
.y4_c00212{bottom:641.093333pt;}
.y3_c00212{bottom:657.626667pt;}
.y2_c00212{bottom:673.760000pt;}
.y1_c00212{bottom:689.493333pt;}
.h7_c00212{height:11.733399pt;}
.h8_c00212{height:38.937500pt;}
.h4_c00212{height:55.893333pt;}
.h6_c00212{height:58.688000pt;}
.h2_c00212{height:62.812500pt;}
.h3_c00212{height:64.277333pt;}
.h5_c00212{height:184.946667pt;}
.h0_c00212{height:749.066667pt;}
.h1_c00212{height:749.333333pt;}
.w1_c00212{width:93.222667pt;}
.w0_c00212{width:524.666667pt;}
.x0_c00212{left:0.000000pt;}
.x1_c00212{left:63.066667pt;}
.x2_c00212{left:64.400000pt;}
.x3_c00212{left:66.400000pt;}
.x4_c00212{left:67.466667pt;}
.x5_c00212{left:68.400000pt;}
.x6_c00212{left:82.000000pt;}
.x7_c00212{left:105.333333pt;}
.x8_c00212{left:132.666667pt;}
.x14_c00212{left:219.501546pt;}
.x11_c00212{left:252.800000pt;}
.xf_c00212{left:258.000000pt;}
.x10_c00212{left:259.200000pt;}
.x9_c00212{left:260.666667pt;}
.x12_c00212{left:262.133333pt;}
.xe_c00212{left:290.533333pt;}
.xa_c00212{left:293.733333pt;}
.xd_c00212{left:303.600000pt;}
.xb_c00212{left:317.733333pt;}
.xc_c00212{left:327.600000pt;}
.x13_c00212{left:411.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_09aca36f5e07abd6af5569fb.woff2')format("woff");}.ff1_c00213{font-family:ff1_c00213;line-height:1.437000;font-style:normal;font-weight:normal;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_898684aa2f545f9ff5c8a7f8.woff2')format("woff");}.ff2_c00213{font-family:ff2_c00213;line-height:1.437000;font-style:normal;font-weight:normal;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_158e588c60b82d29c1f4d7d2.woff2')format("woff");}.ff3_c00213{font-family:ff3_c00213;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00213;src:url('chunks/assets/font_e5d137d531ed23253ee8b693.woff2')format("woff");}.ff4_c00213{font-family:ff4_c00213;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00213;src:url('chunks/assets/font_f04ec9300bba036dcd21ff1d.woff2')format("woff");}.ff5_c00213{font-family:ff5_c00213;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00213;src:url('chunks/assets/font_b9c21841617c78fdddb1915b.woff2')format("woff");}.ff6_c00213{font-family:ff6_c00213;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00213;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff7_c00213{font-family:ff7_c00213;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00213{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00213{vertical-align:-9.000000px;}
.v0_c00213{vertical-align:0.000000px;}
.lsd_c00213{letter-spacing:0.000000px;}
.lsb_c00213{letter-spacing:0.180000px;}
.ls4_c00213{letter-spacing:0.405000px;}
.lsa_c00213{letter-spacing:1.005000px;}
.ls5_c00213{letter-spacing:1.500000px;}
.lsc_c00213{letter-spacing:1.605000px;}
.ls9_c00213{letter-spacing:3.000000px;}
.ls7_c00213{letter-spacing:3.600000px;}
.ls3_c00213{letter-spacing:4.800000px;}
.lse_c00213{letter-spacing:6.000000px;}
.lsf_c00213{letter-spacing:9.000000px;}
.ls6_c00213{letter-spacing:11.940000px;}
.ls2_c00213{letter-spacing:12.000000px;}
.ls10_c00213{letter-spacing:15.000000px;}
.ls0_c00213{letter-spacing:15.780000px;}
.ls8_c00213{letter-spacing:17.730000px;}
.ls1_c00213{letter-spacing:32.205000px;}
.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;}
}
.ws8_c00213{word-spacing:-29.160000px;}
.wsb_c00213{word-spacing:-19.554000px;}
.ws3_c00213{word-spacing:-18.060000px;}
.wsa_c00213{word-spacing:-17.340000px;}
.ws5_c00213{word-spacing:-17.307000px;}
.ws4_c00213{word-spacing:-14.160000px;}
.ws7_c00213{word-spacing:-13.452000px;}
.ws0_c00213{word-spacing:-0.780000px;}
.wsc_c00213{word-spacing:0.000000px;}
.ws6_c00213{word-spacing:0.540000px;}
.ws9_c00213{word-spacing:0.720000px;}
.ws1_c00213{word-spacing:4.440000px;}
.ws2_c00213{word-spacing:7.980000px;}
._1c_c00213{margin-left:-17.640000px;}
._17_c00213{margin-left:-11.160000px;}
._1f_c00213{margin-left:-9.834000px;}
._16_c00213{margin-left:-7.992000px;}
._21_c00213{margin-left:-6.705000px;}
._5_c00213{margin-left:-5.640000px;}
._20_c00213{margin-left:-4.398000px;}
._8_c00213{margin-left:-3.240000px;}
._e_c00213{margin-left:-2.106000px;}
._f_c00213{margin-left:-1.080000px;}
._a_c00213{width:1.080000px;}
._12_c00213{width:2.214000px;}
._11_c00213{width:3.240000px;}
._15_c00213{width:4.311000px;}
._14_c00213{width:5.733000px;}
._10_c00213{width:6.798000px;}
._0_c00213{width:7.980000px;}
._3_c00213{width:9.480000px;}
._4_c00213{width:10.680000px;}
._c_c00213{width:11.760000px;}
._19_c00213{width:12.786000px;}
._1b_c00213{width:14.577000px;}
._18_c00213{width:15.762000px;}
._1_c00213{width:16.980000px;}
._1a_c00213{width:18.372000px;}
._22_c00213{width:19.821000px;}
._6_c00213{width:21.840000px;}
._b_c00213{width:23.820000px;}
._2b_c00213{width:25.215000px;}
._7_c00213{width:26.460000px;}
._1d_c00213{width:27.840000px;}
._d_c00213{width:29.700000px;}
._2d_c00213{width:31.362000px;}
._28_c00213{width:35.670000px;}
._25_c00213{width:39.132000px;}
._29_c00213{width:41.145000px;}
._2c_c00213{width:43.203000px;}
._2a_c00213{width:50.838000px;}
._9_c00213{width:52.020000px;}
._24_c00213{width:53.160000px;}
._23_c00213{width:58.758000px;}
._13_c00213{width:67.284000px;}
._1e_c00213{width:117.552000px;}
._27_c00213{width:123.702000px;}
._26_c00213{width:244.983000px;}
._2_c00213{width:360.660000px;}
.fc2_c00213{color:transparent;}
.fc1_c00213{color:rgb(128,128,128);}
.fc0_c00213{color:rgb(0,0,0);}
.fs5_c00213{font-size:36.000000px;}
.fs2_c00213{font-size:39.000000px;}
.fs8_c00213{font-size:42.000000px;}
.fs3_c00213{font-size:45.000000px;}
.fs6_c00213{font-size:48.000000px;}
.fs1_c00213{font-size:54.000000px;}
.fs7_c00213{font-size:57.000000px;}
.fs0_c00213{font-size:60.000000px;}
.fs4_c00213{font-size:66.000000px;}
.y0_c00213{bottom:0.000000px;}
.y54_c00213{bottom:3.105000px;}
.y53_c00213{bottom:7.228369px;}
.y52_c00213{bottom:45.870000px;}
.y2c_c00213{bottom:63.120000px;}
.y51_c00213{bottom:63.420000px;}
.y4_c00213{bottom:81.270000px;}
.y2b_c00213{bottom:82.020000px;}
.y50_c00213{bottom:82.620000px;}
.y3_c00213{bottom:99.870000px;}
.y2a_c00213{bottom:100.170000px;}
.y4f_c00213{bottom:100.470000px;}
.y29_c00213{bottom:118.170000px;}
.y4e_c00213{bottom:118.770000px;}
.y28_c00213{bottom:136.320000px;}
.y4d_c00213{bottom:137.070000px;}
.y27_c00213{bottom:154.920000px;}
.y4c_c00213{bottom:155.520000px;}
.y26_c00213{bottom:173.070000px;}
.y4b_c00213{bottom:173.520000px;}
.y25_c00213{bottom:191.820000px;}
.y4a_c00213{bottom:191.970000px;}
.y49_c00213{bottom:209.520000px;}
.y24_c00213{bottom:209.970000px;}
.y48_c00213{bottom:227.520000px;}
.y23_c00213{bottom:228.120000px;}
.y22_c00213{bottom:246.270000px;}
.y47_c00213{bottom:246.420000px;}
.y21_c00213{bottom:264.270000px;}
.y20_c00213{bottom:282.870000px;}
.y46_c00213{bottom:283.170000px;}
.y45_c00213{bottom:301.020000px;}
.y1f_c00213{bottom:301.320000px;}
.y44_c00213{bottom:319.320000px;}
.y1e_c00213{bottom:319.620000px;}
.y43_c00213{bottom:337.470000px;}
.y1d_c00213{bottom:338.220000px;}
.y42_c00213{bottom:355.770000px;}
.y1c_c00213{bottom:356.070000px;}
.y41_c00213{bottom:373.920000px;}
.y1b_c00213{bottom:374.970000px;}
.y40_c00213{bottom:392.520000px;}
.y1a_c00213{bottom:393.120000px;}
.y3f_c00213{bottom:410.670000px;}
.y19_c00213{bottom:411.120000px;}
.y18_c00213{bottom:428.970000px;}
.y3e_c00213{bottom:429.270000px;}
.y3d_c00213{bottom:447.420000px;}
.y17_c00213{bottom:447.870000px;}
.y16_c00213{bottom:465.720000px;}
.y3c_c00213{bottom:484.320000px;}
.y15_c00213{bottom:484.620000px;}
.y3b_c00213{bottom:501.870000px;}
.y14_c00213{bottom:502.470000px;}
.y3a_c00213{bottom:520.320000px;}
.y13_c00213{bottom:520.770000px;}
.y12_c00213{bottom:538.620000px;}
.y39_c00213{bottom:556.470000px;}
.y11_c00213{bottom:556.920000px;}
.y38_c00213{bottom:574.170000px;}
.y10_c00213{bottom:575.370000px;}
.y37_c00213{bottom:592.320000px;}
.yf_c00213{bottom:593.220000px;}
.y36_c00213{bottom:610.470000px;}
.ye_c00213{bottom:611.220000px;}
.y35_c00213{bottom:629.070000px;}
.yd_c00213{bottom:630.120000px;}
.yc_c00213{bottom:647.370000px;}
.y34_c00213{bottom:665.820000px;}
.yb_c00213{bottom:666.120000px;}
.y33_c00213{bottom:676.920000px;}
.y32_c00213{bottom:683.820000px;}
.ya_c00213{bottom:684.420000px;}
.y31_c00213{bottom:701.370000px;}
.y9_c00213{bottom:702.270000px;}
.y30_c00213{bottom:720.120000px;}
.y8_c00213{bottom:721.470000px;}
.y2f_c00213{bottom:738.120000px;}
.y7_c00213{bottom:739.020000px;}
.y2e_c00213{bottom:756.270000px;}
.y6_c00213{bottom:756.570000px;}
.y2d_c00213{bottom:774.570000px;}
.y5_c00213{bottom:774.870000px;}
.y2_c00213{bottom:792.420000px;}
.y1_c00213{bottom:812.070000px;}
.h8_c00213{height:13.200073px;}
.h9_c00213{height:43.804688px;}
.h7_c00213{height:44.016000px;}
.h5_c00213{height:50.304000px;}
.h3_c00213{height:56.592000px;}
.h6_c00213{height:59.736000px;}
.h2_c00213{height:62.880000px;}
.h4_c00213{height:64.020000px;}
.h1_c00213{height:851.250000px;}
.h0_c00213{height:851.550000px;}
.w2_c00213{width:104.875500px;}
.w1_c00213{width:565.500000px;}
.w0_c00213{width:565.650000px;}
.x0_c00213{left:0.000000px;}
.x3_c00213{left:30.150000px;}
.x6_c00213{left:90.900000px;}
.xe_c00213{left:93.600000px;}
.x5_c00213{left:95.100000px;}
.xd_c00213{left:96.900000px;}
.xc_c00213{left:98.250000px;}
.xb_c00213{left:99.600000px;}
.xa_c00213{left:101.250000px;}
.x9_c00213{left:102.300000px;}
.x8_c00213{left:103.950000px;}
.x4_c00213{left:105.000000px;}
.x2_c00213{left:106.950000px;}
.x1_c00213{left:110.400000px;}
.x7_c00213{left:124.500000px;}
.x1b_c00213{left:234.639267px;}
.x18_c00213{left:313.500000px;}
.x19_c00213{left:314.550000px;}
.x17_c00213{left:315.600000px;}
.x15_c00213{left:316.950000px;}
.x10_c00213{left:318.000000px;}
.x14_c00213{left:319.200000px;}
.x13_c00213{left:320.850000px;}
.x12_c00213{left:321.900000px;}
.xf_c00213{left:322.950000px;}
.x11_c00213{left:339.450000px;}
.x16_c00213{left:345.300000px;}
.x1a_c00213{left:486.000000px;}
@media print{
.v1_c00213{vertical-align:-8.000000pt;}
.v0_c00213{vertical-align:0.000000pt;}
.lsd_c00213{letter-spacing:0.000000pt;}
.lsb_c00213{letter-spacing:0.160000pt;}
.ls4_c00213{letter-spacing:0.360000pt;}
.lsa_c00213{letter-spacing:0.893333pt;}
.ls5_c00213{letter-spacing:1.333333pt;}
.lsc_c00213{letter-spacing:1.426667pt;}
.ls9_c00213{letter-spacing:2.666667pt;}
.ls7_c00213{letter-spacing:3.200000pt;}
.ls3_c00213{letter-spacing:4.266667pt;}
.lse_c00213{letter-spacing:5.333333pt;}
.lsf_c00213{letter-spacing:8.000000pt;}
.ls6_c00213{letter-spacing:10.613333pt;}
.ls2_c00213{letter-spacing:10.666667pt;}
.ls10_c00213{letter-spacing:13.333333pt;}
.ls0_c00213{letter-spacing:14.026667pt;}
.ls8_c00213{letter-spacing:15.760000pt;}
.ls1_c00213{letter-spacing:28.626667pt;}
.ws8_c00213{word-spacing:-25.920000pt;}
.wsb_c00213{word-spacing:-17.381333pt;}
.ws3_c00213{word-spacing:-16.053333pt;}
.wsa_c00213{word-spacing:-15.413333pt;}
.ws5_c00213{word-spacing:-15.384000pt;}
.ws4_c00213{word-spacing:-12.586667pt;}
.ws7_c00213{word-spacing:-11.957333pt;}
.ws0_c00213{word-spacing:-0.693333pt;}
.wsc_c00213{word-spacing:0.000000pt;}
.ws6_c00213{word-spacing:0.480000pt;}
.ws9_c00213{word-spacing:0.640000pt;}
.ws1_c00213{word-spacing:3.946667pt;}
.ws2_c00213{word-spacing:7.093333pt;}
._1c_c00213{margin-left:-15.680000pt;}
._17_c00213{margin-left:-9.920000pt;}
._1f_c00213{margin-left:-8.741333pt;}
._16_c00213{margin-left:-7.104000pt;}
._21_c00213{margin-left:-5.960000pt;}
._5_c00213{margin-left:-5.013333pt;}
._20_c00213{margin-left:-3.909333pt;}
._8_c00213{margin-left:-2.880000pt;}
._e_c00213{margin-left:-1.872000pt;}
._f_c00213{margin-left:-0.960000pt;}
._a_c00213{width:0.960000pt;}
._12_c00213{width:1.968000pt;}
._11_c00213{width:2.880000pt;}
._15_c00213{width:3.832000pt;}
._14_c00213{width:5.096000pt;}
._10_c00213{width:6.042667pt;}
._0_c00213{width:7.093333pt;}
._3_c00213{width:8.426667pt;}
._4_c00213{width:9.493333pt;}
._c_c00213{width:10.453333pt;}
._19_c00213{width:11.365333pt;}
._1b_c00213{width:12.957333pt;}
._18_c00213{width:14.010667pt;}
._1_c00213{width:15.093333pt;}
._1a_c00213{width:16.330667pt;}
._22_c00213{width:17.618667pt;}
._6_c00213{width:19.413333pt;}
._b_c00213{width:21.173333pt;}
._2b_c00213{width:22.413333pt;}
._7_c00213{width:23.520000pt;}
._1d_c00213{width:24.746667pt;}
._d_c00213{width:26.400000pt;}
._2d_c00213{width:27.877333pt;}
._28_c00213{width:31.706667pt;}
._25_c00213{width:34.784000pt;}
._29_c00213{width:36.573333pt;}
._2c_c00213{width:38.402667pt;}
._2a_c00213{width:45.189333pt;}
._9_c00213{width:46.240000pt;}
._24_c00213{width:47.253333pt;}
._23_c00213{width:52.229333pt;}
._13_c00213{width:59.808000pt;}
._1e_c00213{width:104.490667pt;}
._27_c00213{width:109.957333pt;}
._26_c00213{width:217.762667pt;}
._2_c00213{width:320.586667pt;}
.fs5_c00213{font-size:32.000000pt;}
.fs2_c00213{font-size:34.666667pt;}
.fs8_c00213{font-size:37.333333pt;}
.fs3_c00213{font-size:40.000000pt;}
.fs6_c00213{font-size:42.666667pt;}
.fs1_c00213{font-size:48.000000pt;}
.fs7_c00213{font-size:50.666667pt;}
.fs0_c00213{font-size:53.333333pt;}
.fs4_c00213{font-size:58.666667pt;}
.y0_c00213{bottom:0.000000pt;}
.y54_c00213{bottom:2.760000pt;}
.y53_c00213{bottom:6.425217pt;}
.y52_c00213{bottom:40.773333pt;}
.y2c_c00213{bottom:56.106667pt;}
.y51_c00213{bottom:56.373333pt;}
.y4_c00213{bottom:72.240000pt;}
.y2b_c00213{bottom:72.906667pt;}
.y50_c00213{bottom:73.440000pt;}
.y3_c00213{bottom:88.773333pt;}
.y2a_c00213{bottom:89.040000pt;}
.y4f_c00213{bottom:89.306667pt;}
.y29_c00213{bottom:105.040000pt;}
.y4e_c00213{bottom:105.573333pt;}
.y28_c00213{bottom:121.173333pt;}
.y4d_c00213{bottom:121.840000pt;}
.y27_c00213{bottom:137.706667pt;}
.y4c_c00213{bottom:138.240000pt;}
.y26_c00213{bottom:153.840000pt;}
.y4b_c00213{bottom:154.240000pt;}
.y25_c00213{bottom:170.506667pt;}
.y4a_c00213{bottom:170.640000pt;}
.y49_c00213{bottom:186.240000pt;}
.y24_c00213{bottom:186.640000pt;}
.y48_c00213{bottom:202.240000pt;}
.y23_c00213{bottom:202.773333pt;}
.y22_c00213{bottom:218.906667pt;}
.y47_c00213{bottom:219.040000pt;}
.y21_c00213{bottom:234.906667pt;}
.y20_c00213{bottom:251.440000pt;}
.y46_c00213{bottom:251.706667pt;}
.y45_c00213{bottom:267.573333pt;}
.y1f_c00213{bottom:267.840000pt;}
.y44_c00213{bottom:283.840000pt;}
.y1e_c00213{bottom:284.106667pt;}
.y43_c00213{bottom:299.973333pt;}
.y1d_c00213{bottom:300.640000pt;}
.y42_c00213{bottom:316.240000pt;}
.y1c_c00213{bottom:316.506667pt;}
.y41_c00213{bottom:332.373333pt;}
.y1b_c00213{bottom:333.306667pt;}
.y40_c00213{bottom:348.906667pt;}
.y1a_c00213{bottom:349.440000pt;}
.y3f_c00213{bottom:365.040000pt;}
.y19_c00213{bottom:365.440000pt;}
.y18_c00213{bottom:381.306667pt;}
.y3e_c00213{bottom:381.573333pt;}
.y3d_c00213{bottom:397.706667pt;}
.y17_c00213{bottom:398.106667pt;}
.y16_c00213{bottom:413.973333pt;}
.y3c_c00213{bottom:430.506667pt;}
.y15_c00213{bottom:430.773333pt;}
.y3b_c00213{bottom:446.106667pt;}
.y14_c00213{bottom:446.640000pt;}
.y3a_c00213{bottom:462.506667pt;}
.y13_c00213{bottom:462.906667pt;}
.y12_c00213{bottom:478.773333pt;}
.y39_c00213{bottom:494.640000pt;}
.y11_c00213{bottom:495.040000pt;}
.y38_c00213{bottom:510.373333pt;}
.y10_c00213{bottom:511.440000pt;}
.y37_c00213{bottom:526.506667pt;}
.yf_c00213{bottom:527.306667pt;}
.y36_c00213{bottom:542.640000pt;}
.ye_c00213{bottom:543.306667pt;}
.y35_c00213{bottom:559.173333pt;}
.yd_c00213{bottom:560.106667pt;}
.yc_c00213{bottom:575.440000pt;}
.y34_c00213{bottom:591.840000pt;}
.yb_c00213{bottom:592.106667pt;}
.y33_c00213{bottom:601.706667pt;}
.y32_c00213{bottom:607.840000pt;}
.ya_c00213{bottom:608.373333pt;}
.y31_c00213{bottom:623.440000pt;}
.y9_c00213{bottom:624.240000pt;}
.y30_c00213{bottom:640.106667pt;}
.y8_c00213{bottom:641.306667pt;}
.y2f_c00213{bottom:656.106667pt;}
.y7_c00213{bottom:656.906667pt;}
.y2e_c00213{bottom:672.240000pt;}
.y6_c00213{bottom:672.506667pt;}
.y2d_c00213{bottom:688.506667pt;}
.y5_c00213{bottom:688.773333pt;}
.y2_c00213{bottom:704.373333pt;}
.y1_c00213{bottom:721.840000pt;}
.h8_c00213{height:11.733399pt;}
.h9_c00213{height:38.937500pt;}
.h7_c00213{height:39.125333pt;}
.h5_c00213{height:44.714667pt;}
.h3_c00213{height:50.304000pt;}
.h6_c00213{height:53.098667pt;}
.h2_c00213{height:55.893333pt;}
.h4_c00213{height:56.906667pt;}
.h1_c00213{height:756.666667pt;}
.h0_c00213{height:756.933333pt;}
.w2_c00213{width:93.222667pt;}
.w1_c00213{width:502.666667pt;}
.w0_c00213{width:502.800000pt;}
.x0_c00213{left:0.000000pt;}
.x3_c00213{left:26.800000pt;}
.x6_c00213{left:80.800000pt;}
.xe_c00213{left:83.200000pt;}
.x5_c00213{left:84.533333pt;}
.xd_c00213{left:86.133333pt;}
.xc_c00213{left:87.333333pt;}
.xb_c00213{left:88.533333pt;}
.xa_c00213{left:90.000000pt;}
.x9_c00213{left:90.933333pt;}
.x8_c00213{left:92.400000pt;}
.x4_c00213{left:93.333333pt;}
.x2_c00213{left:95.066667pt;}
.x1_c00213{left:98.133333pt;}
.x7_c00213{left:110.666667pt;}
.x1b_c00213{left:208.568237pt;}
.x18_c00213{left:278.666667pt;}
.x19_c00213{left:279.600000pt;}
.x17_c00213{left:280.533333pt;}
.x15_c00213{left:281.733333pt;}
.x10_c00213{left:282.666667pt;}
.x14_c00213{left:283.733333pt;}
.x13_c00213{left:285.200000pt;}
.x12_c00213{left:286.133333pt;}
.xf_c00213{left:287.066667pt;}
.x11_c00213{left:301.733333pt;}
.x16_c00213{left:306.933333pt;}
.x1a_c00213{left:432.000000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_592d17aad21c20b00715f0c4.woff2')format("woff");}.ff1_c00214{font-family:ff1_c00214;line-height:1.437000;font-style:normal;font-weight:normal;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_4f866d1856b28c66f3a64cec.woff2')format("woff");}.ff2_c00214{font-family:ff2_c00214;line-height:1.437000;font-style:normal;font-weight:normal;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_aedb35999e8812dd78ee33bb.woff2')format("woff");}.ff3_c00214{font-family:ff3_c00214;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00214;src:url('chunks/assets/font_fcbedae03f64d87d7cb4f243.woff2')format("woff");}.ff4_c00214{font-family:ff4_c00214;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00214;src:url('chunks/assets/font_03fa7c977446c359fa2d8459.woff2')format("woff");}.ff5_c00214{font-family:ff5_c00214;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00214;src:url('chunks/assets/font_7c7b114d6d8510036cb24ad0.woff2')format("woff");}.ff6_c00214{font-family:ff6_c00214;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00214;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff7_c00214{font-family:ff7_c00214;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00214{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00214{vertical-align:0.000000px;}
.ls5_c00214{letter-spacing:0.000000px;}
.ls1_c00214{letter-spacing:0.600000px;}
.ls3_c00214{letter-spacing:2.340000px;}
.ls0_c00214{letter-spacing:3.000000px;}
.ls2_c00214{letter-spacing:4.800000px;}
.ls8_c00214{letter-spacing:6.000000px;}
.ls4_c00214{letter-spacing:8.493000px;}
.ls7_c00214{letter-spacing:45.000000px;}
.ls6_c00214{letter-spacing:54.000000px;}
.sc__c00214{text-shadow:none;}
.sc0_c00214{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00214{-webkit-text-stroke:0px transparent;}
.sc0_c00214{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00214{word-spacing:-58.452000px;}
.ws4_c00214{word-spacing:-29.295000px;}
.ws2_c00214{word-spacing:-18.060000px;}
.ws0_c00214{word-spacing:-16.623000px;}
.ws1_c00214{word-spacing:-14.160000px;}
.ws8_c00214{word-spacing:-13.452000px;}
.ws3_c00214{word-spacing:-0.060000px;}
.ws9_c00214{word-spacing:0.000000px;}
.ws6_c00214{word-spacing:2.580000px;}
.ws5_c00214{word-spacing:180.120000px;}
._24_c00214{margin-left:-56.724000px;}
._22_c00214{margin-left:-45.888000px;}
._27_c00214{margin-left:-44.874000px;}
._23_c00214{margin-left:-40.680000px;}
._29_c00214{margin-left:-22.560000px;}
._6_c00214{margin-left:-19.860000px;}
._16_c00214{margin-left:-18.231000px;}
._8_c00214{margin-left:-14.220000px;}
._5_c00214{margin-left:-12.780000px;}
._25_c00214{margin-left:-11.340000px;}
._13_c00214{margin-left:-9.198000px;}
._7_c00214{margin-left:-7.680000px;}
._11_c00214{margin-left:-6.039000px;}
._15_c00214{margin-left:-4.671000px;}
._10_c00214{margin-left:-3.609000px;}
._2_c00214{margin-left:-1.920000px;}
._0_c00214{width:1.860000px;}
._4_c00214{width:2.940000px;}
._d_c00214{width:4.620000px;}
._9_c00214{width:5.640000px;}
._a_c00214{width:7.440000px;}
._1b_c00214{width:8.559000px;}
._b_c00214{width:9.660000px;}
._1c_c00214{width:11.160000px;}
._3_c00214{width:13.140000px;}
._e_c00214{width:15.240000px;}
._18_c00214{width:16.980000px;}
._26_c00214{width:19.224000px;}
._17_c00214{width:20.898000px;}
._1a_c00214{width:22.680000px;}
._1_c00214{width:23.700000px;}
._19_c00214{width:26.040000px;}
._2a_c00214{width:27.759000px;}
._1e_c00214{width:30.540000px;}
._14_c00214{width:33.030000px;}
._2b_c00214{width:44.733000px;}
._2d_c00214{width:46.620000px;}
._2c_c00214{width:48.471000px;}
._c_c00214{width:57.840000px;}
._28_c00214{width:58.959000px;}
._1f_c00214{width:92.109000px;}
._12_c00214{width:128.442000px;}
._f_c00214{width:134.310000px;}
._1d_c00214{width:165.501000px;}
._21_c00214{width:262.500000px;}
._20_c00214{width:294.600000px;}
.fc2_c00214{color:transparent;}
.fc1_c00214{color:rgb(128,128,128);}
.fc0_c00214{color:rgb(0,0,0);}
.fs2_c00214{font-size:45.000000px;}
.fs4_c00214{font-size:48.000000px;}
.fs1_c00214{font-size:57.000000px;}
.fs0_c00214{font-size:60.000000px;}
.fs3_c00214{font-size:69.000000px;}
.y0_c00214{bottom:0.000000px;}
.y54_c00214{bottom:3.105000px;}
.y53_c00214{bottom:7.228355px;}
.y52_c00214{bottom:13.785000px;}
.y51_c00214{bottom:34.635000px;}
.y29_c00214{bottom:39.735000px;}
.y50_c00214{bottom:53.235000px;}
.y28_c00214{bottom:56.985000px;}
.y4f_c00214{bottom:70.785000px;}
.y27_c00214{bottom:75.885000px;}
.y4e_c00214{bottom:88.185000px;}
.y26_c00214{bottom:93.435000px;}
.y4d_c00214{bottom:106.635000px;}
.y25_c00214{bottom:111.585000px;}
.y4c_c00214{bottom:125.085000px;}
.y24_c00214{bottom:127.785000px;}
.y4b_c00214{bottom:142.335000px;}
.y23_c00214{bottom:146.685000px;}
.y4a_c00214{bottom:161.985000px;}
.y22_c00214{bottom:165.735000px;}
.y49_c00214{bottom:180.135000px;}
.y21_c00214{bottom:183.135000px;}
.y48_c00214{bottom:198.135000px;}
.y20_c00214{bottom:201.435000px;}
.y47_c00214{bottom:217.035000px;}
.y1f_c00214{bottom:219.585000px;}
.y46_c00214{bottom:234.585000px;}
.y1e_c00214{bottom:237.885000px;}
.y45_c00214{bottom:251.085000px;}
.y1d_c00214{bottom:256.035000px;}
.y44_c00214{bottom:270.885000px;}
.y1c_c00214{bottom:273.585000px;}
.y43_c00214{bottom:288.885000px;}
.y1b_c00214{bottom:292.635000px;}
.y42_c00214{bottom:307.035000px;}
.y1a_c00214{bottom:310.485000px;}
.y41_c00214{bottom:324.585000px;}
.y19_c00214{bottom:328.035000px;}
.y40_c00214{bottom:341.235000px;}
.y18_c00214{bottom:345.285000px;}
.y3f_c00214{bottom:360.135000px;}
.y17_c00214{bottom:364.185000px;}
.y3e_c00214{bottom:377.985000px;}
.y16_c00214{bottom:382.635000px;}
.y3d_c00214{bottom:397.785000px;}
.y15_c00214{bottom:399.135000px;}
.y3c_c00214{bottom:415.485000px;}
.y14_c00214{bottom:417.735000px;}
.y3b_c00214{bottom:433.035000px;}
.y13_c00214{bottom:436.335000px;}
.y3a_c00214{bottom:451.785000px;}
.y12_c00214{bottom:453.585000px;}
.y39_c00214{bottom:467.085000px;}
.y11_c00214{bottom:471.135000px;}
.y38_c00214{bottom:487.635000px;}
.y10_c00214{bottom:488.985000px;}
.y37_c00214{bottom:503.835000px;}
.yf_c00214{bottom:506.835000px;}
.y36_c00214{bottom:523.485000px;}
.ye_c00214{bottom:524.385000px;}
.y35_c00214{bottom:540.585000px;}
.yd_c00214{bottom:542.985000px;}
.y34_c00214{bottom:559.485000px;}
.yc_c00214{bottom:561.135000px;}
.y33_c00214{bottom:577.785000px;}
.yb_c00214{bottom:579.735000px;}
.y32_c00214{bottom:596.235000px;}
.ya_c00214{bottom:597.585000px;}
.y31_c00214{bottom:614.835000px;}
.y9_c00214{bottom:615.585000px;}
.y30_c00214{bottom:632.685000px;}
.y8_c00214{bottom:634.185000px;}
.y2f_c00214{bottom:650.985000px;}
.y7_c00214{bottom:651.585000px;}
.y2e_c00214{bottom:669.135000px;}
.y6_c00214{bottom:669.285000px;}
.y2d_c00214{bottom:686.385000px;}
.y5_c00214{bottom:687.435000px;}
.y2c_c00214{bottom:704.385000px;}
.y4_c00214{bottom:706.335000px;}
.y3_c00214{bottom:722.535000px;}
.y2b_c00214{bottom:741.135000px;}
.y2_c00214{bottom:741.435000px;}
.y1_c00214{bottom:758.685000px;}
.y2a_c00214{bottom:759.285000px;}
.h6_c00214{height:13.200074px;}
.h7_c00214{height:43.804688px;}
.h3_c00214{height:59.736000px;}
.h2_c00214{height:62.880000px;}
.h4_c00214{height:64.020000px;}
.h5_c00214{height:72.312000px;}
.h0_c00214{height:818.625000px;}
.h1_c00214{height:819.000000px;}
.w2_c00214{width:104.875500px;}
.w0_c00214{width:573.450000px;}
.w1_c00214{width:573.750000px;}
.x0_c00214{left:0.000000px;}
.x2_c00214{left:5.400000px;}
.xa_c00214{left:11.250000px;}
.xb_c00214{left:13.200000px;}
.xd_c00214{left:19.200000px;}
.x1_c00214{left:64.200000px;}
.x3_c00214{left:66.750000px;}
.x4_c00214{left:67.950000px;}
.x5_c00214{left:69.150000px;}
.x6_c00214{left:70.500000px;}
.x7_c00214{left:71.850000px;}
.x8_c00214{left:73.350000px;}
.x9_c00214{left:74.550000px;}
.xc_c00214{left:99.300000px;}
.x16_c00214{left:238.539230px;}
.xe_c00214{left:282.150000px;}
.xf_c00214{left:283.200000px;}
.x11_c00214{left:284.400000px;}
.x10_c00214{left:286.500000px;}
.x12_c00214{left:288.150000px;}
.x13_c00214{left:289.800000px;}
.x14_c00214{left:290.850000px;}
.x15_c00214{left:463.350000px;}
@media print{
.v0_c00214{vertical-align:0.000000pt;}
.ls5_c00214{letter-spacing:0.000000pt;}
.ls1_c00214{letter-spacing:0.533333pt;}
.ls3_c00214{letter-spacing:2.080000pt;}
.ls0_c00214{letter-spacing:2.666667pt;}
.ls2_c00214{letter-spacing:4.266667pt;}
.ls8_c00214{letter-spacing:5.333333pt;}
.ls4_c00214{letter-spacing:7.549333pt;}
.ls7_c00214{letter-spacing:40.000000pt;}
.ls6_c00214{letter-spacing:48.000000pt;}
.ws7_c00214{word-spacing:-51.957333pt;}
.ws4_c00214{word-spacing:-26.040000pt;}
.ws2_c00214{word-spacing:-16.053333pt;}
.ws0_c00214{word-spacing:-14.776000pt;}
.ws1_c00214{word-spacing:-12.586667pt;}
.ws8_c00214{word-spacing:-11.957333pt;}
.ws3_c00214{word-spacing:-0.053333pt;}
.ws9_c00214{word-spacing:0.000000pt;}
.ws6_c00214{word-spacing:2.293333pt;}
.ws5_c00214{word-spacing:160.106667pt;}
._24_c00214{margin-left:-50.421333pt;}
._22_c00214{margin-left:-40.789333pt;}
._27_c00214{margin-left:-39.888000pt;}
._23_c00214{margin-left:-36.160000pt;}
._29_c00214{margin-left:-20.053333pt;}
._6_c00214{margin-left:-17.653333pt;}
._16_c00214{margin-left:-16.205333pt;}
._8_c00214{margin-left:-12.640000pt;}
._5_c00214{margin-left:-11.360000pt;}
._25_c00214{margin-left:-10.080000pt;}
._13_c00214{margin-left:-8.176000pt;}
._7_c00214{margin-left:-6.826667pt;}
._11_c00214{margin-left:-5.368000pt;}
._15_c00214{margin-left:-4.152000pt;}
._10_c00214{margin-left:-3.208000pt;}
._2_c00214{margin-left:-1.706667pt;}
._0_c00214{width:1.653333pt;}
._4_c00214{width:2.613333pt;}
._d_c00214{width:4.106667pt;}
._9_c00214{width:5.013333pt;}
._a_c00214{width:6.613333pt;}
._1b_c00214{width:7.608000pt;}
._b_c00214{width:8.586667pt;}
._1c_c00214{width:9.920000pt;}
._3_c00214{width:11.680000pt;}
._e_c00214{width:13.546667pt;}
._18_c00214{width:15.093333pt;}
._26_c00214{width:17.088000pt;}
._17_c00214{width:18.576000pt;}
._1a_c00214{width:20.160000pt;}
._1_c00214{width:21.066667pt;}
._19_c00214{width:23.146667pt;}
._2a_c00214{width:24.674667pt;}
._1e_c00214{width:27.146667pt;}
._14_c00214{width:29.360000pt;}
._2b_c00214{width:39.762667pt;}
._2d_c00214{width:41.440000pt;}
._2c_c00214{width:43.085333pt;}
._c_c00214{width:51.413333pt;}
._28_c00214{width:52.408000pt;}
._1f_c00214{width:81.874667pt;}
._12_c00214{width:114.170667pt;}
._f_c00214{width:119.386667pt;}
._1d_c00214{width:147.112000pt;}
._21_c00214{width:233.333333pt;}
._20_c00214{width:261.866667pt;}
.fs2_c00214{font-size:40.000000pt;}
.fs4_c00214{font-size:42.666667pt;}
.fs1_c00214{font-size:50.666667pt;}
.fs0_c00214{font-size:53.333333pt;}
.fs3_c00214{font-size:61.333333pt;}
.y0_c00214{bottom:0.000000pt;}
.y54_c00214{bottom:2.760000pt;}
.y53_c00214{bottom:6.425204pt;}
.y52_c00214{bottom:12.253333pt;}
.y51_c00214{bottom:30.786667pt;}
.y29_c00214{bottom:35.320000pt;}
.y50_c00214{bottom:47.320000pt;}
.y28_c00214{bottom:50.653333pt;}
.y4f_c00214{bottom:62.920000pt;}
.y27_c00214{bottom:67.453333pt;}
.y4e_c00214{bottom:78.386667pt;}
.y26_c00214{bottom:83.053333pt;}
.y4d_c00214{bottom:94.786667pt;}
.y25_c00214{bottom:99.186667pt;}
.y4c_c00214{bottom:111.186667pt;}
.y24_c00214{bottom:113.586667pt;}
.y4b_c00214{bottom:126.520000pt;}
.y23_c00214{bottom:130.386667pt;}
.y4a_c00214{bottom:143.986667pt;}
.y22_c00214{bottom:147.320000pt;}
.y49_c00214{bottom:160.120000pt;}
.y21_c00214{bottom:162.786667pt;}
.y48_c00214{bottom:176.120000pt;}
.y20_c00214{bottom:179.053333pt;}
.y47_c00214{bottom:192.920000pt;}
.y1f_c00214{bottom:195.186667pt;}
.y46_c00214{bottom:208.520000pt;}
.y1e_c00214{bottom:211.453333pt;}
.y45_c00214{bottom:223.186667pt;}
.y1d_c00214{bottom:227.586667pt;}
.y44_c00214{bottom:240.786667pt;}
.y1c_c00214{bottom:243.186667pt;}
.y43_c00214{bottom:256.786667pt;}
.y1b_c00214{bottom:260.120000pt;}
.y42_c00214{bottom:272.920000pt;}
.y1a_c00214{bottom:275.986667pt;}
.y41_c00214{bottom:288.520000pt;}
.y19_c00214{bottom:291.586667pt;}
.y40_c00214{bottom:303.320000pt;}
.y18_c00214{bottom:306.920000pt;}
.y3f_c00214{bottom:320.120000pt;}
.y17_c00214{bottom:323.720000pt;}
.y3e_c00214{bottom:335.986667pt;}
.y16_c00214{bottom:340.120000pt;}
.y3d_c00214{bottom:353.586667pt;}
.y15_c00214{bottom:354.786667pt;}
.y3c_c00214{bottom:369.320000pt;}
.y14_c00214{bottom:371.320000pt;}
.y3b_c00214{bottom:384.920000pt;}
.y13_c00214{bottom:387.853333pt;}
.y3a_c00214{bottom:401.586667pt;}
.y12_c00214{bottom:403.186667pt;}
.y39_c00214{bottom:415.186667pt;}
.y11_c00214{bottom:418.786667pt;}
.y38_c00214{bottom:433.453333pt;}
.y10_c00214{bottom:434.653333pt;}
.y37_c00214{bottom:447.853333pt;}
.yf_c00214{bottom:450.520000pt;}
.y36_c00214{bottom:465.320000pt;}
.ye_c00214{bottom:466.120000pt;}
.y35_c00214{bottom:480.520000pt;}
.yd_c00214{bottom:482.653333pt;}
.y34_c00214{bottom:497.320000pt;}
.yc_c00214{bottom:498.786667pt;}
.y33_c00214{bottom:513.586667pt;}
.yb_c00214{bottom:515.320000pt;}
.y32_c00214{bottom:529.986667pt;}
.ya_c00214{bottom:531.186667pt;}
.y31_c00214{bottom:546.520000pt;}
.y9_c00214{bottom:547.186667pt;}
.y30_c00214{bottom:562.386667pt;}
.y8_c00214{bottom:563.720000pt;}
.y2f_c00214{bottom:578.653333pt;}
.y7_c00214{bottom:579.186667pt;}
.y2e_c00214{bottom:594.786667pt;}
.y6_c00214{bottom:594.920000pt;}
.y2d_c00214{bottom:610.120000pt;}
.y5_c00214{bottom:611.053333pt;}
.y2c_c00214{bottom:626.120000pt;}
.y4_c00214{bottom:627.853333pt;}
.y3_c00214{bottom:642.253333pt;}
.y2b_c00214{bottom:658.786667pt;}
.y2_c00214{bottom:659.053333pt;}
.y1_c00214{bottom:674.386667pt;}
.y2a_c00214{bottom:674.920000pt;}
.h6_c00214{height:11.733399pt;}
.h7_c00214{height:38.937500pt;}
.h3_c00214{height:53.098667pt;}
.h2_c00214{height:55.893333pt;}
.h4_c00214{height:56.906667pt;}
.h5_c00214{height:64.277333pt;}
.h0_c00214{height:727.666667pt;}
.h1_c00214{height:728.000000pt;}
.w2_c00214{width:93.222667pt;}
.w0_c00214{width:509.733333pt;}
.w1_c00214{width:510.000000pt;}
.x0_c00214{left:0.000000pt;}
.x2_c00214{left:4.800000pt;}
.xa_c00214{left:10.000000pt;}
.xb_c00214{left:11.733333pt;}
.xd_c00214{left:17.066667pt;}
.x1_c00214{left:57.066667pt;}
.x3_c00214{left:59.333333pt;}
.x4_c00214{left:60.400000pt;}
.x5_c00214{left:61.466667pt;}
.x6_c00214{left:62.666667pt;}
.x7_c00214{left:63.866667pt;}
.x8_c00214{left:65.200000pt;}
.x9_c00214{left:66.266667pt;}
.xc_c00214{left:88.266667pt;}
.x16_c00214{left:212.034871pt;}
.xe_c00214{left:250.800000pt;}
.xf_c00214{left:251.733333pt;}
.x11_c00214{left:252.800000pt;}
.x10_c00214{left:254.666667pt;}
.x12_c00214{left:256.133333pt;}
.x13_c00214{left:257.600000pt;}
.x14_c00214{left:258.533333pt;}
.x15_c00214{left:411.866667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_5e8a1b0608c2b1bcb4af41e8.woff2')format("woff");}.ff1_c00215{font-family:ff1_c00215;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00215;src:url('chunks/assets/font_579eb7f509853e962b3d79b4.woff2')format("woff");}.ff2_c00215{font-family:ff2_c00215;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00215;src:url('chunks/assets/font_e49c3b79b0d449a502522330.woff2')format("woff");}.ff3_c00215{font-family:ff3_c00215;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00215;src:url('chunks/assets/font_5c5a6318f1d0e68642b8e77b.woff2')format("woff");}.ff4_c00215{font-family:ff4_c00215;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00215;src:url('chunks/assets/font_0ce391de997f24f9f9dd37f4.woff2')format("woff");}.ff5_c00215{font-family:ff5_c00215;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00215;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff6_c00215{font-family:ff6_c00215;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00215{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00215{vertical-align:0.000000px;}
.lsc_c00215{letter-spacing:0.000000px;}
.ls1_c00215{letter-spacing:3.000000px;}
.ls0_c00215{letter-spacing:7.137000px;}
.ls3_c00215{letter-spacing:11.493000px;}
.ls2_c00215{letter-spacing:13.140000px;}
.lsb_c00215{letter-spacing:15.000000px;}
.ls4_c00215{letter-spacing:39.693000px;}
.ls5_c00215{letter-spacing:45.693000px;}
.ls7_c00215{letter-spacing:75.093000px;}
.ls8_c00215{letter-spacing:135.693000px;}
.ls6_c00215{letter-spacing:153.660000px;}
.ls9_c00215{letter-spacing:288.093000px;}
.lsa_c00215{letter-spacing:406.893000px;}
.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;}
}
.ws3_c00215{word-spacing:-29.295000px;}
.ws0_c00215{word-spacing:-24.456000px;}
.ws4_c00215{word-spacing:-15.000000px;}
.ws1_c00215{word-spacing:-14.160000px;}
.ws2_c00215{word-spacing:-13.452000px;}
.ws5_c00215{word-spacing:0.000000px;}
._29_c00215{margin-left:-24.225000px;}
._1d_c00215{margin-left:-19.236000px;}
._32_c00215{margin-left:-14.280000px;}
._1_c00215{margin-left:-11.799000px;}
._27_c00215{margin-left:-10.338000px;}
._2f_c00215{margin-left:-9.033000px;}
._a_c00215{margin-left:-7.500000px;}
._7_c00215{margin-left:-5.460000px;}
._8_c00215{margin-left:-3.900000px;}
._6_c00215{margin-left:-2.820000px;}
._b_c00215{margin-left:-1.743000px;}
._3_c00215{width:1.863000px;}
._5_c00215{width:3.243000px;}
._f_c00215{width:4.260000px;}
._10_c00215{width:6.120000px;}
._d_c00215{width:7.608000px;}
._13_c00215{width:9.591000px;}
._15_c00215{width:11.694000px;}
._18_c00215{width:12.879000px;}
._e_c00215{width:14.394000px;}
._9_c00215{width:15.837000px;}
._4_c00215{width:17.181000px;}
._1b_c00215{width:21.006000px;}
._19_c00215{width:22.632000px;}
._1c_c00215{width:24.345000px;}
._1f_c00215{width:25.902000px;}
._16_c00215{width:27.603000px;}
._21_c00215{width:29.262000px;}
._12_c00215{width:30.999000px;}
._11_c00215{width:32.157000px;}
._24_c00215{width:33.843000px;}
._14_c00215{width:35.391000px;}
._c_c00215{width:36.585000px;}
._17_c00215{width:38.355000px;}
._23_c00215{width:39.591000px;}
._1e_c00215{width:47.580000px;}
._28_c00215{width:49.359000px;}
._1a_c00215{width:52.590000px;}
._33_c00215{width:54.552000px;}
._31_c00215{width:70.080000px;}
._0_c00215{width:81.213000px;}
._30_c00215{width:82.962000px;}
._25_c00215{width:94.077000px;}
._22_c00215{width:125.394000px;}
._2_c00215{width:150.420000px;}
._2b_c00215{width:156.018000px;}
._2e_c00215{width:178.824000px;}
._2d_c00215{width:181.716000px;}
._20_c00215{width:184.062000px;}
._2a_c00215{width:197.925000px;}
._2c_c00215{width:215.463000px;}
._26_c00215{width:330.888000px;}
.fc2_c00215{color:transparent;}
.fc1_c00215{color:rgb(128,128,128);}
.fc0_c00215{color:rgb(0,0,0);}
.fs3_c00215{font-size:45.000000px;}
.fs5_c00215{font-size:48.000000px;}
.fs2_c00215{font-size:57.000000px;}
.fs1_c00215{font-size:60.000000px;}
.fs0_c00215{font-size:69.000000px;}
.fs4_c00215{font-size:132.000000px;}
.y0_c00215{bottom:0.000000px;}
.y2e_c00215{bottom:3.105000px;}
.y2d_c00215{bottom:7.228357px;}
.y2b_c00215{bottom:32.730000px;}
.y2c_c00215{bottom:42.180000px;}
.y2a_c00215{bottom:49.980000px;}
.y29_c00215{bottom:68.580000px;}
.y28_c00215{bottom:87.030000px;}
.y27_c00215{bottom:105.030000px;}
.y26_c00215{bottom:122.880000px;}
.y25_c00215{bottom:141.180000px;}
.y24_c00215{bottom:159.030000px;}
.y23_c00215{bottom:177.630000px;}
.y22_c00215{bottom:195.180000px;}
.y21_c00215{bottom:213.330000px;}
.y20_c00215{bottom:232.230000px;}
.y1f_c00215{bottom:250.380000px;}
.y1e_c00215{bottom:268.080000px;}
.y1d_c00215{bottom:286.230000px;}
.y1c_c00215{bottom:304.080000px;}
.y1b_c00215{bottom:321.930000px;}
.y1a_c00215{bottom:340.530000px;}
.y19_c00215{bottom:358.380000px;}
.y18_c00215{bottom:376.680000px;}
.y17_c00215{bottom:394.830000px;}
.y16_c00215{bottom:413.430000px;}
.y15_c00215{bottom:431.280000px;}
.y14_c00215{bottom:448.980000px;}
.y13_c00215{bottom:467.430000px;}
.y12_c00215{bottom:485.730000px;}
.y11_c00215{bottom:503.880000px;}
.y10_c00215{bottom:522.480000px;}
.yf_c00215{bottom:540.030000px;}
.ye_c00215{bottom:557.880000px;}
.yd_c00215{bottom:575.730000px;}
.yc_c00215{bottom:594.630000px;}
.yb_c00215{bottom:612.180000px;}
.ya_c00215{bottom:630.480000px;}
.y9_c00215{bottom:648.780000px;}
.y8_c00215{bottom:666.930000px;}
.y7_c00215{bottom:685.230000px;}
.y6_c00215{bottom:703.080000px;}
.y5_c00215{bottom:721.230000px;}
.y4_c00215{bottom:739.530000px;}
.y3_c00215{bottom:757.980000px;}
.y2_c00215{bottom:775.980000px;}
.y1_c00215{bottom:795.180000px;}
.h7_c00215{height:13.200074px;}
.h8_c00215{height:43.804688px;}
.h5_c00215{height:59.736000px;}
.h3_c00215{height:62.880000px;}
.h4_c00215{height:64.020000px;}
.h2_c00215{height:73.623000px;}
.h6_c00215{height:138.336000px;}
.h0_c00215{height:841.350000px;}
.h1_c00215{height:841.500000px;}
.w2_c00215{width:104.875500px;}
.w0_c00215{width:558.375000px;}
.w1_c00215{width:558.750000px;}
.x0_c00215{left:0.000000px;}
.x6_c00215{left:29.400000px;}
.x7_c00215{left:31.650000px;}
.xb_c00215{left:85.050000px;}
.x8_c00215{left:88.650000px;}
.x5_c00215{left:90.150000px;}
.x2_c00215{left:91.500000px;}
.x3_c00215{left:92.850000px;}
.x4_c00215{left:93.900000px;}
.x1_c00215{left:102.150000px;}
.xc_c00215{left:106.050000px;}
.x10_c00215{left:119.850000px;}
.x11_c00215{left:127.200000px;}
.xd_c00215{left:146.400000px;}
.xe_c00215{left:172.500000px;}
.xa_c00215{left:187.200000px;}
.x13_c00215{left:231.001740px;}
.xf_c00215{left:305.400000px;}
.x9_c00215{left:308.700000px;}
.x12_c00215{left:461.700000px;}
@media print{
.v0_c00215{vertical-align:0.000000pt;}
.lsc_c00215{letter-spacing:0.000000pt;}
.ls1_c00215{letter-spacing:2.666667pt;}
.ls0_c00215{letter-spacing:6.344000pt;}
.ls3_c00215{letter-spacing:10.216000pt;}
.ls2_c00215{letter-spacing:11.680000pt;}
.lsb_c00215{letter-spacing:13.333333pt;}
.ls4_c00215{letter-spacing:35.282667pt;}
.ls5_c00215{letter-spacing:40.616000pt;}
.ls7_c00215{letter-spacing:66.749333pt;}
.ls8_c00215{letter-spacing:120.616000pt;}
.ls6_c00215{letter-spacing:136.586667pt;}
.ls9_c00215{letter-spacing:256.082667pt;}
.lsa_c00215{letter-spacing:361.682667pt;}
.ws3_c00215{word-spacing:-26.040000pt;}
.ws0_c00215{word-spacing:-21.738667pt;}
.ws4_c00215{word-spacing:-13.333333pt;}
.ws1_c00215{word-spacing:-12.586667pt;}
.ws2_c00215{word-spacing:-11.957333pt;}
.ws5_c00215{word-spacing:0.000000pt;}
._29_c00215{margin-left:-21.533333pt;}
._1d_c00215{margin-left:-17.098667pt;}
._32_c00215{margin-left:-12.693333pt;}
._1_c00215{margin-left:-10.488000pt;}
._27_c00215{margin-left:-9.189333pt;}
._2f_c00215{margin-left:-8.029333pt;}
._a_c00215{margin-left:-6.666667pt;}
._7_c00215{margin-left:-4.853333pt;}
._8_c00215{margin-left:-3.466667pt;}
._6_c00215{margin-left:-2.506667pt;}
._b_c00215{margin-left:-1.549333pt;}
._3_c00215{width:1.656000pt;}
._5_c00215{width:2.882667pt;}
._f_c00215{width:3.786667pt;}
._10_c00215{width:5.440000pt;}
._d_c00215{width:6.762667pt;}
._13_c00215{width:8.525333pt;}
._15_c00215{width:10.394667pt;}
._18_c00215{width:11.448000pt;}
._e_c00215{width:12.794667pt;}
._9_c00215{width:14.077333pt;}
._4_c00215{width:15.272000pt;}
._1b_c00215{width:18.672000pt;}
._19_c00215{width:20.117333pt;}
._1c_c00215{width:21.640000pt;}
._1f_c00215{width:23.024000pt;}
._16_c00215{width:24.536000pt;}
._21_c00215{width:26.010667pt;}
._12_c00215{width:27.554667pt;}
._11_c00215{width:28.584000pt;}
._24_c00215{width:30.082667pt;}
._14_c00215{width:31.458667pt;}
._c_c00215{width:32.520000pt;}
._17_c00215{width:34.093333pt;}
._23_c00215{width:35.192000pt;}
._1e_c00215{width:42.293333pt;}
._28_c00215{width:43.874667pt;}
._1a_c00215{width:46.746667pt;}
._33_c00215{width:48.490667pt;}
._31_c00215{width:62.293333pt;}
._0_c00215{width:72.189333pt;}
._30_c00215{width:73.744000pt;}
._25_c00215{width:83.624000pt;}
._22_c00215{width:111.461333pt;}
._2_c00215{width:133.706667pt;}
._2b_c00215{width:138.682667pt;}
._2e_c00215{width:158.954667pt;}
._2d_c00215{width:161.525333pt;}
._20_c00215{width:163.610667pt;}
._2a_c00215{width:175.933333pt;}
._2c_c00215{width:191.522667pt;}
._26_c00215{width:294.122667pt;}
.fs3_c00215{font-size:40.000000pt;}
.fs5_c00215{font-size:42.666667pt;}
.fs2_c00215{font-size:50.666667pt;}
.fs1_c00215{font-size:53.333333pt;}
.fs0_c00215{font-size:61.333333pt;}
.fs4_c00215{font-size:117.333333pt;}
.y0_c00215{bottom:0.000000pt;}
.y2e_c00215{bottom:2.760000pt;}
.y2d_c00215{bottom:6.425206pt;}
.y2b_c00215{bottom:29.093333pt;}
.y2c_c00215{bottom:37.493333pt;}
.y2a_c00215{bottom:44.426667pt;}
.y29_c00215{bottom:60.960000pt;}
.y28_c00215{bottom:77.360000pt;}
.y27_c00215{bottom:93.360000pt;}
.y26_c00215{bottom:109.226667pt;}
.y25_c00215{bottom:125.493333pt;}
.y24_c00215{bottom:141.360000pt;}
.y23_c00215{bottom:157.893333pt;}
.y22_c00215{bottom:173.493333pt;}
.y21_c00215{bottom:189.626667pt;}
.y20_c00215{bottom:206.426667pt;}
.y1f_c00215{bottom:222.560000pt;}
.y1e_c00215{bottom:238.293333pt;}
.y1d_c00215{bottom:254.426667pt;}
.y1c_c00215{bottom:270.293333pt;}
.y1b_c00215{bottom:286.160000pt;}
.y1a_c00215{bottom:302.693333pt;}
.y19_c00215{bottom:318.560000pt;}
.y18_c00215{bottom:334.826667pt;}
.y17_c00215{bottom:350.960000pt;}
.y16_c00215{bottom:367.493333pt;}
.y15_c00215{bottom:383.360000pt;}
.y14_c00215{bottom:399.093333pt;}
.y13_c00215{bottom:415.493333pt;}
.y12_c00215{bottom:431.760000pt;}
.y11_c00215{bottom:447.893333pt;}
.y10_c00215{bottom:464.426667pt;}
.yf_c00215{bottom:480.026667pt;}
.ye_c00215{bottom:495.893333pt;}
.yd_c00215{bottom:511.760000pt;}
.yc_c00215{bottom:528.560000pt;}
.yb_c00215{bottom:544.160000pt;}
.ya_c00215{bottom:560.426667pt;}
.y9_c00215{bottom:576.693333pt;}
.y8_c00215{bottom:592.826667pt;}
.y7_c00215{bottom:609.093333pt;}
.y6_c00215{bottom:624.960000pt;}
.y5_c00215{bottom:641.093333pt;}
.y4_c00215{bottom:657.360000pt;}
.y3_c00215{bottom:673.760000pt;}
.y2_c00215{bottom:689.760000pt;}
.y1_c00215{bottom:706.826667pt;}
.h7_c00215{height:11.733399pt;}
.h8_c00215{height:38.937500pt;}
.h5_c00215{height:53.098667pt;}
.h3_c00215{height:55.893333pt;}
.h4_c00215{height:56.906667pt;}
.h2_c00215{height:65.442667pt;}
.h6_c00215{height:122.965333pt;}
.h0_c00215{height:747.866667pt;}
.h1_c00215{height:748.000000pt;}
.w2_c00215{width:93.222667pt;}
.w0_c00215{width:496.333333pt;}
.w1_c00215{width:496.666667pt;}
.x0_c00215{left:0.000000pt;}
.x6_c00215{left:26.133333pt;}
.x7_c00215{left:28.133333pt;}
.xb_c00215{left:75.600000pt;}
.x8_c00215{left:78.800000pt;}
.x5_c00215{left:80.133333pt;}
.x2_c00215{left:81.333333pt;}
.x3_c00215{left:82.533333pt;}
.x4_c00215{left:83.466667pt;}
.x1_c00215{left:90.800000pt;}
.xc_c00215{left:94.266667pt;}
.x10_c00215{left:106.533333pt;}
.x11_c00215{left:113.066667pt;}
.xd_c00215{left:130.133333pt;}
.xe_c00215{left:153.333333pt;}
.xa_c00215{left:166.400000pt;}
.x13_c00215{left:205.334880pt;}
.xf_c00215{left:271.466667pt;}
.x9_c00215{left:274.400000pt;}
.x12_c00215{left:410.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0f9caa52029c2d35835d849c.woff2')format("woff");}.ff1_c00216{font-family:ff1_c00216;line-height:1.437000;font-style:normal;font-weight:normal;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_c187b58f733eba84ed2d9783.woff2')format("woff");}.ff2_c00216{font-family:ff2_c00216;line-height:1.437000;font-style:normal;font-weight:normal;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_b3d0a7462020c0c9fd0bc13f.woff2')format("woff");}.ff3_c00216{font-family:ff3_c00216;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00216;src:url('chunks/assets/font_896b2b9fcebdbece3d932a4a.woff2')format("woff");}.ff4_c00216{font-family:ff4_c00216;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00216;src:url('chunks/assets/font_f1179085018938b3a6da8796.woff2')format("woff");}.ff5_c00216{font-family:ff5_c00216;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00216;src:url('chunks/assets/font_c7bd88c128c0ba09dd2d437f.woff2')format("woff");}.ff6_c00216{font-family:ff6_c00216;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00216;src:url('chunks/assets/font_5d568799ead5129fef756f3f.woff2')format("woff");}.ff7_c00216{font-family:ff7_c00216;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00216;src:url('chunks/assets/font_716e45ae6107d5f35545fce6.woff2')format("woff");}.ff8_c00216{font-family:ff8_c00216;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00216;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff9_c00216{font-family:ff9_c00216;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00216{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00216{vertical-align:0.000000px;}
.ls6_c00216{letter-spacing:0.000000px;}
.ls2_c00216{letter-spacing:1.200000px;}
.ls0_c00216{letter-spacing:3.000000px;}
.ls7_c00216{letter-spacing:6.000000px;}
.ls3_c00216{letter-spacing:11.940000px;}
.ls4_c00216{letter-spacing:14.940000px;}
.ls5_c00216{letter-spacing:19.140000px;}
.ls1_c00216{letter-spacing:25.893000px;}
.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;}
}
.ws2_c00216{word-spacing:-52.041000px;}
.ws7_c00216{word-spacing:-32.424000px;}
.ws3_c00216{word-spacing:-29.295000px;}
.ws6_c00216{word-spacing:-18.774000px;}
.ws5_c00216{word-spacing:-18.060000px;}
.ws4_c00216{word-spacing:-17.340000px;}
.ws0_c00216{word-spacing:-14.160000px;}
.ws1_c00216{word-spacing:-13.452000px;}
.ws8_c00216{word-spacing:0.000000px;}
._19_c00216{margin-left:-16.980000px;}
._25_c00216{margin-left:-11.160000px;}
._1c_c00216{margin-left:-9.030000px;}
._1a_c00216{margin-left:-7.740000px;}
._15_c00216{margin-left:-5.880000px;}
._14_c00216{margin-left:-3.915000px;}
._10_c00216{margin-left:-2.700000px;}
._11_c00216{margin-left:-1.680000px;}
._d_c00216{width:1.560000px;}
._c_c00216{width:2.940000px;}
._8_c00216{width:4.140000px;}
._a_c00216{width:5.880000px;}
._6_c00216{width:7.740000px;}
._28_c00216{width:8.820000px;}
._1_c00216{width:9.840000px;}
._b_c00216{width:10.920000px;}
._0_c00216{width:11.940000px;}
._f_c00216{width:13.260000px;}
._5_c00216{width:15.000000px;}
._9_c00216{width:16.500000px;}
._26_c00216{width:18.120000px;}
._1d_c00216{width:19.695000px;}
._3_c00216{width:20.760000px;}
._1e_c00216{width:21.960000px;}
._21_c00216{width:23.220000px;}
._4_c00216{width:24.360000px;}
._12_c00216{width:25.440000px;}
._13_c00216{width:27.720000px;}
._1b_c00216{width:29.100000px;}
._24_c00216{width:30.480000px;}
._18_c00216{width:31.920000px;}
._2_c00216{width:33.840000px;}
._1f_c00216{width:35.175000px;}
._23_c00216{width:37.755000px;}
._27_c00216{width:39.465000px;}
._29_c00216{width:58.095000px;}
._e_c00216{width:73.740000px;}
._20_c00216{width:117.840000px;}
._17_c00216{width:123.015000px;}
._16_c00216{width:155.640000px;}
._22_c00216{width:181.395000px;}
._7_c00216{width:430.140000px;}
.fc2_c00216{color:transparent;}
.fc1_c00216{color:rgb(128,128,128);}
.fc0_c00216{color:rgb(0,0,0);}
.fs4_c00216{font-size:24.000000px;}
.fs2_c00216{font-size:45.000000px;}
.fs6_c00216{font-size:48.000000px;}
.fs3_c00216{font-size:54.000000px;}
.fs1_c00216{font-size:57.000000px;}
.fs0_c00216{font-size:60.000000px;}
.fs5_c00216{font-size:66.000000px;}
.y0_c00216{bottom:0.000000px;}
.y58_c00216{bottom:3.105000px;}
.y57_c00216{bottom:7.228357px;}
.y56_c00216{bottom:36.180000px;}
.y55_c00216{bottom:55.080000px;}
.y2d_c00216{bottom:61.380000px;}
.y54_c00216{bottom:74.280000px;}
.y2c_c00216{bottom:80.430000px;}
.y53_c00216{bottom:91.830000px;}
.y2b_c00216{bottom:97.830000px;}
.y52_c00216{bottom:109.980000px;}
.y2a_c00216{bottom:115.380000px;}
.y51_c00216{bottom:127.980000px;}
.y29_c00216{bottom:131.730000px;}
.y50_c00216{bottom:145.530000px;}
.y28_c00216{bottom:151.530000px;}
.y4f_c00216{bottom:163.980000px;}
.y27_c00216{bottom:170.130000px;}
.y4e_c00216{bottom:181.680000px;}
.y26_c00216{bottom:187.080000px;}
.y4d_c00216{bottom:199.230000px;}
.y25_c00216{bottom:205.980000px;}
.y4c_c00216{bottom:216.630000px;}
.y24_c00216{bottom:223.380000px;}
.y4b_c00216{bottom:237.330000px;}
.y23_c00216{bottom:241.680000px;}
.y4a_c00216{bottom:254.580000px;}
.y22_c00216{bottom:260.280000px;}
.y49_c00216{bottom:272.730000px;}
.y21_c00216{bottom:277.830000px;}
.y48_c00216{bottom:291.330000px;}
.y20_c00216{bottom:296.430000px;}
.y47_c00216{bottom:309.480000px;}
.y1f_c00216{bottom:314.580000px;}
.y46_c00216{bottom:327.480000px;}
.y1e_c00216{bottom:331.380000px;}
.y45_c00216{bottom:345.630000px;}
.y1d_c00216{bottom:349.080000px;}
.y5_c00216{bottom:351.780000px;}
.y44_c00216{bottom:363.930000px;}
.y1c_c00216{bottom:366.930000px;}
.y4_c00216{bottom:368.880000px;}
.y43_c00216{bottom:381.780000px;}
.y1b_c00216{bottom:385.830000px;}
.y3_c00216{bottom:386.730000px;}
.y42_c00216{bottom:399.630000px;}
.y1a_c00216{bottom:402.630000px;}
.y41_c00216{bottom:416.880000px;}
.y19_c00216{bottom:420.930000px;}
.y40_c00216{bottom:435.330000px;}
.y18_c00216{bottom:438.480000px;}
.y3f_c00216{bottom:453.030000px;}
.y17_c00216{bottom:456.030000px;}
.y3e_c00216{bottom:470.580000px;}
.y16_c00216{bottom:474.180000px;}
.y3d_c00216{bottom:487.980000px;}
.y15_c00216{bottom:490.830000px;}
.y3c_c00216{bottom:505.530000px;}
.y14_c00216{bottom:508.980000px;}
.y3b_c00216{bottom:523.830000px;}
.y13_c00216{bottom:526.530000px;}
.y3a_c00216{bottom:541.080000px;}
.y12_c00216{bottom:544.830000px;}
.y39_c00216{bottom:559.980000px;}
.y11_c00216{bottom:563.280000px;}
.y38_c00216{bottom:577.830000px;}
.y10_c00216{bottom:581.130000px;}
.y37_c00216{bottom:594.780000px;}
.yf_c00216{bottom:598.830000px;}
.y36_c00216{bottom:614.280000px;}
.ye_c00216{bottom:616.680000px;}
.y35_c00216{bottom:630.180000px;}
.yd_c00216{bottom:634.830000px;}
.y34_c00216{bottom:648.630000px;}
.yc_c00216{bottom:652.830000px;}
.y33_c00216{bottom:667.680000px;}
.yb_c00216{bottom:669.930000px;}
.y32_c00216{bottom:685.530000px;}
.ya_c00216{bottom:688.830000px;}
.y31_c00216{bottom:703.080000px;}
.y9_c00216{bottom:706.680000px;}
.y30_c00216{bottom:720.630000px;}
.y8_c00216{bottom:724.680000px;}
.y2f_c00216{bottom:737.730000px;}
.y7_c00216{bottom:743.130000px;}
.y2e_c00216{bottom:757.380000px;}
.y6_c00216{bottom:761.130000px;}
.y2_c00216{bottom:777.030000px;}
.y1_c00216{bottom:798.180000px;}
.h7_c00216{height:13.200074px;}
.h8_c00216{height:43.804688px;}
.h3_c00216{height:59.736000px;}
.h2_c00216{height:62.880000px;}
.h5_c00216{height:64.020000px;}
.h4_c00216{height:66.713379px;}
.h6_c00216{height:69.168000px;}
.h0_c00216{height:842.700000px;}
.h1_c00216{height:843.000000px;}
.w1_c00216{width:104.875500px;}
.w0_c00216{width:590.250000px;}
.x0_c00216{left:0.000000px;}
.x3_c00216{left:24.750000px;}
.x5_c00216{left:80.700000px;}
.x7_c00216{left:82.350000px;}
.x4_c00216{left:84.000000px;}
.x2_c00216{left:85.050000px;}
.x6_c00216{left:86.100000px;}
.x8_c00216{left:113.400000px;}
.x1_c00216{left:210.900000px;}
.xf_c00216{left:246.939240px;}
.xb_c00216{left:298.650000px;}
.xd_c00216{left:300.000000px;}
.x9_c00216{left:301.350000px;}
.xa_c00216{left:302.400000px;}
.xc_c00216{left:326.250000px;}
.xe_c00216{left:468.450000px;}
@media print{
.v0_c00216{vertical-align:0.000000pt;}
.ls6_c00216{letter-spacing:0.000000pt;}
.ls2_c00216{letter-spacing:1.066667pt;}
.ls0_c00216{letter-spacing:2.666667pt;}
.ls7_c00216{letter-spacing:5.333333pt;}
.ls3_c00216{letter-spacing:10.613333pt;}
.ls4_c00216{letter-spacing:13.280000pt;}
.ls5_c00216{letter-spacing:17.013333pt;}
.ls1_c00216{letter-spacing:23.016000pt;}
.ws2_c00216{word-spacing:-46.258667pt;}
.ws7_c00216{word-spacing:-28.821333pt;}
.ws3_c00216{word-spacing:-26.040000pt;}
.ws6_c00216{word-spacing:-16.688000pt;}
.ws5_c00216{word-spacing:-16.053333pt;}
.ws4_c00216{word-spacing:-15.413333pt;}
.ws0_c00216{word-spacing:-12.586667pt;}
.ws1_c00216{word-spacing:-11.957333pt;}
.ws8_c00216{word-spacing:0.000000pt;}
._19_c00216{margin-left:-15.093333pt;}
._25_c00216{margin-left:-9.920000pt;}
._1c_c00216{margin-left:-8.026667pt;}
._1a_c00216{margin-left:-6.880000pt;}
._15_c00216{margin-left:-5.226667pt;}
._14_c00216{margin-left:-3.480000pt;}
._10_c00216{margin-left:-2.400000pt;}
._11_c00216{margin-left:-1.493333pt;}
._d_c00216{width:1.386667pt;}
._c_c00216{width:2.613333pt;}
._8_c00216{width:3.680000pt;}
._a_c00216{width:5.226667pt;}
._6_c00216{width:6.880000pt;}
._28_c00216{width:7.840000pt;}
._1_c00216{width:8.746667pt;}
._b_c00216{width:9.706667pt;}
._0_c00216{width:10.613333pt;}
._f_c00216{width:11.786667pt;}
._5_c00216{width:13.333333pt;}
._9_c00216{width:14.666667pt;}
._26_c00216{width:16.106667pt;}
._1d_c00216{width:17.506667pt;}
._3_c00216{width:18.453333pt;}
._1e_c00216{width:19.520000pt;}
._21_c00216{width:20.640000pt;}
._4_c00216{width:21.653333pt;}
._12_c00216{width:22.613333pt;}
._13_c00216{width:24.640000pt;}
._1b_c00216{width:25.866667pt;}
._24_c00216{width:27.093333pt;}
._18_c00216{width:28.373333pt;}
._2_c00216{width:30.080000pt;}
._1f_c00216{width:31.266667pt;}
._23_c00216{width:33.560000pt;}
._27_c00216{width:35.080000pt;}
._29_c00216{width:51.640000pt;}
._e_c00216{width:65.546667pt;}
._20_c00216{width:104.746667pt;}
._17_c00216{width:109.346667pt;}
._16_c00216{width:138.346667pt;}
._22_c00216{width:161.240000pt;}
._7_c00216{width:382.346667pt;}
.fs4_c00216{font-size:21.333333pt;}
.fs2_c00216{font-size:40.000000pt;}
.fs6_c00216{font-size:42.666667pt;}
.fs3_c00216{font-size:48.000000pt;}
.fs1_c00216{font-size:50.666667pt;}
.fs0_c00216{font-size:53.333333pt;}
.fs5_c00216{font-size:58.666667pt;}
.y0_c00216{bottom:0.000000pt;}
.y58_c00216{bottom:2.760000pt;}
.y57_c00216{bottom:6.425206pt;}
.y56_c00216{bottom:32.160000pt;}
.y55_c00216{bottom:48.960000pt;}
.y2d_c00216{bottom:54.560000pt;}
.y54_c00216{bottom:66.026667pt;}
.y2c_c00216{bottom:71.493333pt;}
.y53_c00216{bottom:81.626667pt;}
.y2b_c00216{bottom:86.960000pt;}
.y52_c00216{bottom:97.760000pt;}
.y2a_c00216{bottom:102.560000pt;}
.y51_c00216{bottom:113.760000pt;}
.y29_c00216{bottom:117.093333pt;}
.y50_c00216{bottom:129.360000pt;}
.y28_c00216{bottom:134.693333pt;}
.y4f_c00216{bottom:145.760000pt;}
.y27_c00216{bottom:151.226667pt;}
.y4e_c00216{bottom:161.493333pt;}
.y26_c00216{bottom:166.293333pt;}
.y4d_c00216{bottom:177.093333pt;}
.y25_c00216{bottom:183.093333pt;}
.y4c_c00216{bottom:192.560000pt;}
.y24_c00216{bottom:198.560000pt;}
.y4b_c00216{bottom:210.960000pt;}
.y23_c00216{bottom:214.826667pt;}
.y4a_c00216{bottom:226.293333pt;}
.y22_c00216{bottom:231.360000pt;}
.y49_c00216{bottom:242.426667pt;}
.y21_c00216{bottom:246.960000pt;}
.y48_c00216{bottom:258.960000pt;}
.y20_c00216{bottom:263.493333pt;}
.y47_c00216{bottom:275.093333pt;}
.y1f_c00216{bottom:279.626667pt;}
.y46_c00216{bottom:291.093333pt;}
.y1e_c00216{bottom:294.560000pt;}
.y45_c00216{bottom:307.226667pt;}
.y1d_c00216{bottom:310.293333pt;}
.y5_c00216{bottom:312.693333pt;}
.y44_c00216{bottom:323.493333pt;}
.y1c_c00216{bottom:326.160000pt;}
.y4_c00216{bottom:327.893333pt;}
.y43_c00216{bottom:339.360000pt;}
.y1b_c00216{bottom:342.960000pt;}
.y3_c00216{bottom:343.760000pt;}
.y42_c00216{bottom:355.226667pt;}
.y1a_c00216{bottom:357.893333pt;}
.y41_c00216{bottom:370.560000pt;}
.y19_c00216{bottom:374.160000pt;}
.y40_c00216{bottom:386.960000pt;}
.y18_c00216{bottom:389.760000pt;}
.y3f_c00216{bottom:402.693333pt;}
.y17_c00216{bottom:405.360000pt;}
.y3e_c00216{bottom:418.293333pt;}
.y16_c00216{bottom:421.493333pt;}
.y3d_c00216{bottom:433.760000pt;}
.y15_c00216{bottom:436.293333pt;}
.y3c_c00216{bottom:449.360000pt;}
.y14_c00216{bottom:452.426667pt;}
.y3b_c00216{bottom:465.626667pt;}
.y13_c00216{bottom:468.026667pt;}
.y3a_c00216{bottom:480.960000pt;}
.y12_c00216{bottom:484.293333pt;}
.y39_c00216{bottom:497.760000pt;}
.y11_c00216{bottom:500.693333pt;}
.y38_c00216{bottom:513.626667pt;}
.y10_c00216{bottom:516.560000pt;}
.y37_c00216{bottom:528.693333pt;}
.yf_c00216{bottom:532.293333pt;}
.y36_c00216{bottom:546.026667pt;}
.ye_c00216{bottom:548.160000pt;}
.y35_c00216{bottom:560.160000pt;}
.yd_c00216{bottom:564.293333pt;}
.y34_c00216{bottom:576.560000pt;}
.yc_c00216{bottom:580.293333pt;}
.y33_c00216{bottom:593.493333pt;}
.yb_c00216{bottom:595.493333pt;}
.y32_c00216{bottom:609.360000pt;}
.ya_c00216{bottom:612.293333pt;}
.y31_c00216{bottom:624.960000pt;}
.y9_c00216{bottom:628.160000pt;}
.y30_c00216{bottom:640.560000pt;}
.y8_c00216{bottom:644.160000pt;}
.y2f_c00216{bottom:655.760000pt;}
.y7_c00216{bottom:660.560000pt;}
.y2e_c00216{bottom:673.226667pt;}
.y6_c00216{bottom:676.560000pt;}
.y2_c00216{bottom:690.693333pt;}
.y1_c00216{bottom:709.493333pt;}
.h7_c00216{height:11.733399pt;}
.h8_c00216{height:38.937500pt;}
.h3_c00216{height:53.098667pt;}
.h2_c00216{height:55.893333pt;}
.h5_c00216{height:56.906667pt;}
.h4_c00216{height:59.300781pt;}
.h6_c00216{height:61.482667pt;}
.h0_c00216{height:749.066667pt;}
.h1_c00216{height:749.333333pt;}
.w1_c00216{width:93.222667pt;}
.w0_c00216{width:524.666667pt;}
.x0_c00216{left:0.000000pt;}
.x3_c00216{left:22.000000pt;}
.x5_c00216{left:71.733333pt;}
.x7_c00216{left:73.200000pt;}
.x4_c00216{left:74.666667pt;}
.x2_c00216{left:75.600000pt;}
.x6_c00216{left:76.533333pt;}
.x8_c00216{left:100.800000pt;}
.x1_c00216{left:187.466667pt;}
.xf_c00216{left:219.501546pt;}
.xb_c00216{left:265.466667pt;}
.xd_c00216{left:266.666667pt;}
.x9_c00216{left:267.866667pt;}
.xa_c00216{left:268.800000pt;}
.xc_c00216{left:290.000000pt;}
.xe_c00216{left:416.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_34d2c25d916f5ef8fe521405.woff2')format("woff");}.ff1_c00217{font-family:ff1_c00217;line-height:1.575000;font-style:normal;font-weight:normal;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_bb1c7a1f86175708ea3e08d9.woff2')format("woff");}.ff2_c00217{font-family:ff2_c00217;line-height:1.437000;font-style:normal;font-weight:normal;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_7edb44a69edbf565c970ef21.woff2')format("woff");}.ff3_c00217{font-family:ff3_c00217;line-height:1.437000;font-style:normal;font-weight:normal;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_f1b97a591e60c39052f69523.woff2')format("woff");}.ff4_c00217{font-family:ff4_c00217;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00217;src:url('chunks/assets/font_4daa3599a65ff72764f17622.woff2')format("woff");}.ff5_c00217{font-family:ff5_c00217;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00217;src:url('chunks/assets/font_437d6bc2d2b640e8a1371358.woff2')format("woff");}.ff6_c00217{font-family:ff6_c00217;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00217;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff7_c00217{font-family:ff7_c00217;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00217{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00217{vertical-align:0.000000px;}
.v1_c00217{vertical-align:82.200000px;}
.ls5_c00217{letter-spacing:0.000000px;}
.ls1_c00217{letter-spacing:3.000000px;}
.ls4_c00217{letter-spacing:15.000000px;}
.ls2_c00217{letter-spacing:15.387000px;}
.ls0_c00217{letter-spacing:16.800000px;}
.ls3_c00217{letter-spacing:113.340000px;}
.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;}
}
.ws5_c00217{word-spacing:-29.700000px;}
.ws4_c00217{word-spacing:-23.760000px;}
.ws0_c00217{word-spacing:-20.250000px;}
.ws7_c00217{word-spacing:-18.060000px;}
.ws6_c00217{word-spacing:-15.000000px;}
.ws8_c00217{word-spacing:-14.427000px;}
.ws3_c00217{word-spacing:-14.160000px;}
.ws2_c00217{word-spacing:-13.452000px;}
.ws1_c00217{word-spacing:-0.120000px;}
.ws9_c00217{word-spacing:0.000000px;}
._30_c00217{margin-left:-20.592000px;}
._26_c00217{margin-left:-15.765000px;}
._22_c00217{margin-left:-9.783000px;}
._14_c00217{margin-left:-7.971000px;}
._1c_c00217{margin-left:-6.777000px;}
._f_c00217{margin-left:-5.580000px;}
._10_c00217{margin-left:-4.560000px;}
._b_c00217{margin-left:-3.414000px;}
._0_c00217{margin-left:-1.932000px;}
._6_c00217{width:1.311000px;}
._7_c00217{width:3.312000px;}
._8_c00217{width:4.455000px;}
._2_c00217{width:5.520000px;}
._3_c00217{width:7.521000px;}
._4_c00217{width:8.832000px;}
._a_c00217{width:10.530000px;}
._18_c00217{width:11.538000px;}
._c_c00217{width:12.654000px;}
._17_c00217{width:14.202000px;}
._9_c00217{width:15.234000px;}
._1a_c00217{width:16.677000px;}
._29_c00217{width:18.675000px;}
._2d_c00217{width:20.166000px;}
._1f_c00217{width:21.774000px;}
._2a_c00217{width:22.956000px;}
._16_c00217{width:26.382000px;}
._12_c00217{width:28.323000px;}
._32_c00217{width:30.264000px;}
._20_c00217{width:33.930000px;}
._1d_c00217{width:35.109000px;}
._5_c00217{width:38.226000px;}
._24_c00217{width:39.624000px;}
._e_c00217{width:41.874000px;}
._31_c00217{width:43.233000px;}
._2e_c00217{width:64.020000px;}
._21_c00217{width:65.565000px;}
._2b_c00217{width:69.678000px;}
._1b_c00217{width:74.034000px;}
._1e_c00217{width:75.618000px;}
._13_c00217{width:77.922000px;}
._23_c00217{width:83.331000px;}
._11_c00217{width:85.851000px;}
._2f_c00217{width:87.108000px;}
._25_c00217{width:89.037000px;}
._28_c00217{width:93.306000px;}
._2c_c00217{width:121.974000px;}
._15_c00217{width:132.999000px;}
._19_c00217{width:164.607000px;}
._27_c00217{width:225.249000px;}
._1_c00217{width:340.893000px;}
._d_c00217{width:364.227000px;}
._34_c00217{width:409.896000px;}
._33_c00217{width:913.956000px;}
.fc2_c00217{color:transparent;}
.fc1_c00217{color:rgb(128,128,128);}
.fc0_c00217{color:rgb(0,0,0);}
.fs3_c00217{font-size:48.000000px;}
.fs2_c00217{font-size:57.000000px;}
.fs1_c00217{font-size:60.000000px;}
.fs4_c00217{font-size:63.000000px;}
.fs0_c00217{font-size:69.000000px;}
.y0_c00217{bottom:0.000000px;}
.y41_c00217{bottom:3.105000px;}
.y40_c00217{bottom:7.228369px;}
.y3f_c00217{bottom:48.570000px;}
.y3e_c00217{bottom:67.770000px;}
.y3d_c00217{bottom:85.770000px;}
.y3c_c00217{bottom:103.620000px;}
.y3b_c00217{bottom:121.470000px;}
.y34_c00217{bottom:138.720000px;}
.y3a_c00217{bottom:139.770000px;}
.y33_c00217{bottom:156.870000px;}
.y39_c00217{bottom:157.620000px;}
.y32_c00217{bottom:174.720000px;}
.y38_c00217{bottom:176.070000px;}
.y31_c00217{bottom:192.720000px;}
.y37_c00217{bottom:194.370000px;}
.y30_c00217{bottom:210.570000px;}
.y36_c00217{bottom:212.670000px;}
.y2f_c00217{bottom:228.420000px;}
.y35_c00217{bottom:230.070000px;}
.y2e_c00217{bottom:247.020000px;}
.y2c_c00217{bottom:265.320000px;}
.y28_c00217{bottom:266.220000px;}
.y2d_c00217{bottom:267.570000px;}
.y2b_c00217{bottom:282.870000px;}
.y27_c00217{bottom:284.520000px;}
.y2a_c00217{bottom:301.020000px;}
.y26_c00217{bottom:301.620000px;}
.y29_c00217{bottom:318.870000px;}
.y25_c00217{bottom:319.170000px;}
.y24_c00217{bottom:337.170000px;}
.y23_c00217{bottom:355.620000px;}
.y22_c00217{bottom:372.870000px;}
.y12_c00217{bottom:379.170000px;}
.y21_c00217{bottom:391.770000px;}
.y20_c00217{bottom:409.620000px;}
.y1f_c00217{bottom:427.620000px;}
.y1e_c00217{bottom:446.070000px;}
.y1d_c00217{bottom:463.620000px;}
.y1c_c00217{bottom:481.920000px;}
.y1b_c00217{bottom:499.170000px;}
.y1a_c00217{bottom:517.620000px;}
.y19_c00217{bottom:535.320000px;}
.yf_c00217{bottom:553.170000px;}
.y18_c00217{bottom:553.770000px;}
.ye_c00217{bottom:571.320000px;}
.y17_c00217{bottom:572.370000px;}
.yd_c00217{bottom:589.320000px;}
.y16_c00217{bottom:590.520000px;}
.y14_c00217{bottom:604.170000px;}
.yc_c00217{bottom:606.870000px;}
.y15_c00217{bottom:607.770000px;}
.yb_c00217{bottom:625.770000px;}
.y13_c00217{bottom:626.370000px;}
.ya_c00217{bottom:643.620000px;}
.y9_c00217{bottom:661.770000px;}
.y11_c00217{bottom:662.220000px;}
.y8_c00217{bottom:679.770000px;}
.y10_c00217{bottom:680.370000px;}
.y7_c00217{bottom:698.520000px;}
.y6_c00217{bottom:716.220000px;}
.y5_c00217{bottom:734.970000px;}
.y4_c00217{bottom:752.520000px;}
.y3_c00217{bottom:770.070000px;}
.y2_c00217{bottom:788.670000px;}
.y1_c00217{bottom:806.670000px;}
.h8_c00217{height:13.200073px;}
.h9_c00217{height:43.804688px;}
.h4_c00217{height:59.736000px;}
.h3_c00217{height:62.880000px;}
.h5_c00217{height:64.020000px;}
.h7_c00217{height:66.024000px;}
.h2_c00217{height:73.623000px;}
.h6_c00217{height:145.080000px;}
.h1_c00217{height:851.250000px;}
.h0_c00217{height:851.550000px;}
.w2_c00217{width:104.875500px;}
.w1_c00217{width:565.500000px;}
.w0_c00217{width:565.650000px;}
.x0_c00217{left:0.000000px;}
.xc_c00217{left:32.100000px;}
.xf_c00217{left:90.750000px;}
.xd_c00217{left:91.800000px;}
.xb_c00217{left:93.600000px;}
.x4_c00217{left:94.950000px;}
.x3_c00217{left:96.150000px;}
.x2_c00217{left:97.800000px;}
.x1_c00217{left:101.250000px;}
.x11_c00217{left:104.400000px;}
.x12_c00217{left:134.100000px;}
.x13_c00217{left:160.950000px;}
.x19_c00217{left:234.639267px;}
.x16_c00217{left:306.750000px;}
.x14_c00217{left:308.100000px;}
.x15_c00217{left:309.150000px;}
.xe_c00217{left:310.500000px;}
.xa_c00217{left:311.850000px;}
.x7_c00217{left:313.500000px;}
.x17_c00217{left:323.400000px;}
.x5_c00217{left:347.700000px;}
.x8_c00217{left:352.350000px;}
.x9_c00217{left:353.400000px;}
.x6_c00217{left:372.300000px;}
.x18_c00217{left:478.950000px;}
.x10_c00217{left:512.700000px;}
@media print{
.v0_c00217{vertical-align:0.000000pt;}
.v1_c00217{vertical-align:73.066667pt;}
.ls5_c00217{letter-spacing:0.000000pt;}
.ls1_c00217{letter-spacing:2.666667pt;}
.ls4_c00217{letter-spacing:13.333333pt;}
.ls2_c00217{letter-spacing:13.677333pt;}
.ls0_c00217{letter-spacing:14.933333pt;}
.ls3_c00217{letter-spacing:100.746667pt;}
.ws5_c00217{word-spacing:-26.400000pt;}
.ws4_c00217{word-spacing:-21.120000pt;}
.ws0_c00217{word-spacing:-18.000000pt;}
.ws7_c00217{word-spacing:-16.053333pt;}
.ws6_c00217{word-spacing:-13.333333pt;}
.ws8_c00217{word-spacing:-12.824000pt;}
.ws3_c00217{word-spacing:-12.586667pt;}
.ws2_c00217{word-spacing:-11.957333pt;}
.ws1_c00217{word-spacing:-0.106667pt;}
.ws9_c00217{word-spacing:0.000000pt;}
._30_c00217{margin-left:-18.304000pt;}
._26_c00217{margin-left:-14.013333pt;}
._22_c00217{margin-left:-8.696000pt;}
._14_c00217{margin-left:-7.085333pt;}
._1c_c00217{margin-left:-6.024000pt;}
._f_c00217{margin-left:-4.960000pt;}
._10_c00217{margin-left:-4.053333pt;}
._b_c00217{margin-left:-3.034667pt;}
._0_c00217{margin-left:-1.717333pt;}
._6_c00217{width:1.165333pt;}
._7_c00217{width:2.944000pt;}
._8_c00217{width:3.960000pt;}
._2_c00217{width:4.906667pt;}
._3_c00217{width:6.685333pt;}
._4_c00217{width:7.850667pt;}
._a_c00217{width:9.360000pt;}
._18_c00217{width:10.256000pt;}
._c_c00217{width:11.248000pt;}
._17_c00217{width:12.624000pt;}
._9_c00217{width:13.541333pt;}
._1a_c00217{width:14.824000pt;}
._29_c00217{width:16.600000pt;}
._2d_c00217{width:17.925333pt;}
._1f_c00217{width:19.354667pt;}
._2a_c00217{width:20.405333pt;}
._16_c00217{width:23.450667pt;}
._12_c00217{width:25.176000pt;}
._32_c00217{width:26.901333pt;}
._20_c00217{width:30.160000pt;}
._1d_c00217{width:31.208000pt;}
._5_c00217{width:33.978667pt;}
._24_c00217{width:35.221333pt;}
._e_c00217{width:37.221333pt;}
._31_c00217{width:38.429333pt;}
._2e_c00217{width:56.906667pt;}
._21_c00217{width:58.280000pt;}
._2b_c00217{width:61.936000pt;}
._1b_c00217{width:65.808000pt;}
._1e_c00217{width:67.216000pt;}
._13_c00217{width:69.264000pt;}
._23_c00217{width:74.072000pt;}
._11_c00217{width:76.312000pt;}
._2f_c00217{width:77.429333pt;}
._25_c00217{width:79.144000pt;}
._28_c00217{width:82.938667pt;}
._2c_c00217{width:108.421333pt;}
._15_c00217{width:118.221333pt;}
._19_c00217{width:146.317333pt;}
._27_c00217{width:200.221333pt;}
._1_c00217{width:303.016000pt;}
._d_c00217{width:323.757333pt;}
._34_c00217{width:364.352000pt;}
._33_c00217{width:812.405333pt;}
.fs3_c00217{font-size:42.666667pt;}
.fs2_c00217{font-size:50.666667pt;}
.fs1_c00217{font-size:53.333333pt;}
.fs4_c00217{font-size:56.000000pt;}
.fs0_c00217{font-size:61.333333pt;}
.y0_c00217{bottom:0.000000pt;}
.y41_c00217{bottom:2.760000pt;}
.y40_c00217{bottom:6.425217pt;}
.y3f_c00217{bottom:43.173333pt;}
.y3e_c00217{bottom:60.240000pt;}
.y3d_c00217{bottom:76.240000pt;}
.y3c_c00217{bottom:92.106667pt;}
.y3b_c00217{bottom:107.973333pt;}
.y34_c00217{bottom:123.306667pt;}
.y3a_c00217{bottom:124.240000pt;}
.y33_c00217{bottom:139.440000pt;}
.y39_c00217{bottom:140.106667pt;}
.y32_c00217{bottom:155.306667pt;}
.y38_c00217{bottom:156.506667pt;}
.y31_c00217{bottom:171.306667pt;}
.y37_c00217{bottom:172.773333pt;}
.y30_c00217{bottom:187.173333pt;}
.y36_c00217{bottom:189.040000pt;}
.y2f_c00217{bottom:203.040000pt;}
.y35_c00217{bottom:204.506667pt;}
.y2e_c00217{bottom:219.573333pt;}
.y2c_c00217{bottom:235.840000pt;}
.y28_c00217{bottom:236.640000pt;}
.y2d_c00217{bottom:237.840000pt;}
.y2b_c00217{bottom:251.440000pt;}
.y27_c00217{bottom:252.906667pt;}
.y2a_c00217{bottom:267.573333pt;}
.y26_c00217{bottom:268.106667pt;}
.y29_c00217{bottom:283.440000pt;}
.y25_c00217{bottom:283.706667pt;}
.y24_c00217{bottom:299.706667pt;}
.y23_c00217{bottom:316.106667pt;}
.y22_c00217{bottom:331.440000pt;}
.y12_c00217{bottom:337.040000pt;}
.y21_c00217{bottom:348.240000pt;}
.y20_c00217{bottom:364.106667pt;}
.y1f_c00217{bottom:380.106667pt;}
.y1e_c00217{bottom:396.506667pt;}
.y1d_c00217{bottom:412.106667pt;}
.y1c_c00217{bottom:428.373333pt;}
.y1b_c00217{bottom:443.706667pt;}
.y1a_c00217{bottom:460.106667pt;}
.y19_c00217{bottom:475.840000pt;}
.yf_c00217{bottom:491.706667pt;}
.y18_c00217{bottom:492.240000pt;}
.ye_c00217{bottom:507.840000pt;}
.y17_c00217{bottom:508.773333pt;}
.yd_c00217{bottom:523.840000pt;}
.y16_c00217{bottom:524.906667pt;}
.y14_c00217{bottom:537.040000pt;}
.yc_c00217{bottom:539.440000pt;}
.y15_c00217{bottom:540.240000pt;}
.yb_c00217{bottom:556.240000pt;}
.y13_c00217{bottom:556.773333pt;}
.ya_c00217{bottom:572.106667pt;}
.y9_c00217{bottom:588.240000pt;}
.y11_c00217{bottom:588.640000pt;}
.y8_c00217{bottom:604.240000pt;}
.y10_c00217{bottom:604.773333pt;}
.y7_c00217{bottom:620.906667pt;}
.y6_c00217{bottom:636.640000pt;}
.y5_c00217{bottom:653.306667pt;}
.y4_c00217{bottom:668.906667pt;}
.y3_c00217{bottom:684.506667pt;}
.y2_c00217{bottom:701.040000pt;}
.y1_c00217{bottom:717.040000pt;}
.h8_c00217{height:11.733399pt;}
.h9_c00217{height:38.937500pt;}
.h4_c00217{height:53.098667pt;}
.h3_c00217{height:55.893333pt;}
.h5_c00217{height:56.906667pt;}
.h7_c00217{height:58.688000pt;}
.h2_c00217{height:65.442667pt;}
.h6_c00217{height:128.960000pt;}
.h1_c00217{height:756.666667pt;}
.h0_c00217{height:756.933333pt;}
.w2_c00217{width:93.222667pt;}
.w1_c00217{width:502.666667pt;}
.w0_c00217{width:502.800000pt;}
.x0_c00217{left:0.000000pt;}
.xc_c00217{left:28.533333pt;}
.xf_c00217{left:80.666667pt;}
.xd_c00217{left:81.600000pt;}
.xb_c00217{left:83.200000pt;}
.x4_c00217{left:84.400000pt;}
.x3_c00217{left:85.466667pt;}
.x2_c00217{left:86.933333pt;}
.x1_c00217{left:90.000000pt;}
.x11_c00217{left:92.800000pt;}
.x12_c00217{left:119.200000pt;}
.x13_c00217{left:143.066667pt;}
.x19_c00217{left:208.568237pt;}
.x16_c00217{left:272.666667pt;}
.x14_c00217{left:273.866667pt;}
.x15_c00217{left:274.800000pt;}
.xe_c00217{left:276.000000pt;}
.xa_c00217{left:277.200000pt;}
.x7_c00217{left:278.666667pt;}
.x17_c00217{left:287.466667pt;}
.x5_c00217{left:309.066667pt;}
.x8_c00217{left:313.200000pt;}
.x9_c00217{left:314.133333pt;}
.x6_c00217{left:330.933333pt;}
.x18_c00217{left:425.733333pt;}
.x10_c00217{left:455.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_bde8450a62d1d2fcd95a020b.woff2')format("woff");}.ff1_c00218{font-family:ff1_c00218;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00218;src:url('chunks/assets/font_f97454d2cb7d7f8a40c2fbbb.woff2')format("woff");}.ff2_c00218{font-family:ff2_c00218;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00218;src:url('chunks/assets/font_1c84f987895ef1058dde3614.woff2')format("woff");}.ff3_c00218{font-family:ff3_c00218;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00218;src:url('chunks/assets/font_2ccf6e868d723a440d9d4e56.woff2')format("woff");}.ff4_c00218{font-family:ff4_c00218;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00218;src:url('chunks/assets/font_549b8ba76e74a57880fe9aea.woff2')format("woff");}.ff5_c00218{font-family:ff5_c00218;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00218;src:url('chunks/assets/font_5aef958725a43f7126cb88f5.woff2')format("woff");}.ff6_c00218{font-family:ff6_c00218;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:ff7_c00218;src:url('chunks/assets/font_be1ba380f7348a293212e960.woff2')format("woff");}.ff7_c00218{font-family:ff7_c00218;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00218;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff8_c00218{font-family:ff8_c00218;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00218{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00218{vertical-align:0.000000px;}
.ls6_c00218{letter-spacing:0.000000px;}
.ls2_c00218{letter-spacing:1.605000px;}
.ls0_c00218{letter-spacing:3.000000px;}
.ls3_c00218{letter-spacing:3.600000px;}
.ls1_c00218{letter-spacing:4.005000px;}
.ls4_c00218{letter-spacing:4.200000px;}
.ls7_c00218{letter-spacing:6.000000px;}
.ls9_c00218{letter-spacing:9.000000px;}
.ls8_c00218{letter-spacing:12.000000px;}
.ls5_c00218{letter-spacing:160.140000px;}
.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;}
}
.ws5_c00218{word-spacing:-30.675000px;}
.ws4_c00218{word-spacing:-30.072000px;}
.ws6_c00218{word-spacing:-29.295000px;}
.ws1_c00218{word-spacing:-25.854000px;}
.ws3_c00218{word-spacing:-21.000000px;}
.ws2_c00218{word-spacing:-18.060000px;}
.ws0_c00218{word-spacing:-14.160000px;}
.ws7_c00218{word-spacing:0.000000px;}
._28_c00218{margin-left:-38.745000px;}
._24_c00218{margin-left:-30.996000px;}
._2a_c00218{margin-left:-25.611000px;}
._2e_c00218{margin-left:-21.324000px;}
._2_c00218{margin-left:-17.280000px;}
._1e_c00218{margin-left:-16.260000px;}
._27_c00218{margin-left:-15.108000px;}
._23_c00218{margin-left:-13.314000px;}
._1f_c00218{margin-left:-12.000000px;}
._21_c00218{margin-left:-10.248000px;}
._18_c00218{margin-left:-8.448000px;}
._17_c00218{margin-left:-6.600000px;}
._12_c00218{margin-left:-5.472000px;}
._a_c00218{margin-left:-4.260000px;}
._b_c00218{margin-left:-2.820000px;}
._e_c00218{margin-left:-1.332000px;}
._7_c00218{width:1.260000px;}
._8_c00218{width:2.580000px;}
._4_c00218{width:3.816000px;}
._d_c00218{width:4.920000px;}
._13_c00218{width:5.928000px;}
._6_c00218{width:7.128000px;}
._f_c00218{width:9.204000px;}
._11_c00218{width:10.404000px;}
._c_c00218{width:11.472000px;}
._2d_c00218{width:12.672000px;}
._9_c00218{width:13.740000px;}
._1d_c00218{width:14.940000px;}
._0_c00218{width:16.920000px;}
._1c_c00218{width:18.540000px;}
._1b_c00218{width:20.316000px;}
._10_c00218{width:21.864000px;}
._1a_c00218{width:24.120000px;}
._2b_c00218{width:25.740000px;}
._16_c00218{width:29.304000px;}
._14_c00218{width:30.612000px;}
._5_c00218{width:33.480000px;}
._15_c00218{width:35.160000px;}
._22_c00218{width:36.972000px;}
._29_c00218{width:42.660000px;}
._20_c00218{width:45.360000px;}
._25_c00218{width:62.592000px;}
._19_c00218{width:96.456000px;}
._2c_c00218{width:120.312000px;}
._1_c00218{width:258.624000px;}
._3_c00218{width:277.200000px;}
._26_c00218{width:391.968000px;}
.fc2_c00218{color:transparent;}
.fc1_c00218{color:rgb(128,128,128);}
.fc0_c00218{color:rgb(0,0,0);}
.fs2_c00218{font-size:45.000000px;}
.fs6_c00218{font-size:48.000000px;}
.fs1_c00218{font-size:60.000000px;}
.fs5_c00218{font-size:69.000000px;}
.fs0_c00218{font-size:72.000000px;}
.fs4_c00218{font-size:75.000000px;}
.fs3_c00218{font-size:93.000000px;}
.y0_c00218{bottom:0.000000px;}
.y55_c00218{bottom:3.105000px;}
.y54_c00218{bottom:7.228363px;}
.y53_c00218{bottom:37.800000px;}
.y52_c00218{bottom:57.300000px;}
.y2a_c00218{bottom:63.000000px;}
.y51_c00218{bottom:76.500000px;}
.y29_c00218{bottom:81.000000px;}
.y50_c00218{bottom:94.050000px;}
.y28_c00218{bottom:97.500000px;}
.y4f_c00218{bottom:111.750000px;}
.y27_c00218{bottom:117.000000px;}
.y4e_c00218{bottom:129.600000px;}
.y26_c00218{bottom:135.000000px;}
.y4d_c00218{bottom:146.700000px;}
.y25_c00218{bottom:152.250000px;}
.y4c_c00218{bottom:165.750000px;}
.y24_c00218{bottom:170.700000px;}
.y4b_c00218{bottom:180.900000px;}
.y23_c00218{bottom:187.650000px;}
.y4a_c00218{bottom:201.750000px;}
.y22_c00218{bottom:208.800000px;}
.y49_c00218{bottom:220.050000px;}
.y21_c00218{bottom:223.800000px;}
.y48_c00218{bottom:237.600000px;}
.y20_c00218{bottom:241.650000px;}
.y47_c00218{bottom:255.750000px;}
.y1f_c00218{bottom:260.550000px;}
.y46_c00218{bottom:274.050000px;}
.y1e_c00218{bottom:277.800000px;}
.y45_c00218{bottom:291.150000px;}
.y1d_c00218{bottom:295.350000px;}
.y44_c00218{bottom:309.150000px;}
.y1c_c00218{bottom:313.200000px;}
.y43_c00218{bottom:327.750000px;}
.y1b_c00218{bottom:331.650000px;}
.y42_c00218{bottom:344.850000px;}
.y1a_c00218{bottom:349.650000px;}
.y41_c00218{bottom:362.850000px;}
.y19_c00218{bottom:365.850000px;}
.y40_c00218{bottom:381.000000px;}
.y18_c00218{bottom:385.350000px;}
.y3f_c00218{bottom:398.550000px;}
.y17_c00218{bottom:403.650000px;}
.y3e_c00218{bottom:416.700000px;}
.y16_c00218{bottom:421.200000px;}
.y3d_c00218{bottom:433.950000px;}
.y15_c00218{bottom:438.750000px;}
.y14_c00218{bottom:457.350000px;}
.y3c_c00218{bottom:470.700000px;}
.y13_c00218{bottom:474.450000px;}
.y3b_c00218{bottom:488.700000px;}
.y12_c00218{bottom:492.300000px;}
.y3a_c00218{bottom:505.950000px;}
.y11_c00218{bottom:509.550000px;}
.y39_c00218{bottom:523.350000px;}
.y10_c00218{bottom:527.850000px;}
.y38_c00218{bottom:542.700000px;}
.yf_c00218{bottom:545.700000px;}
.y37_c00218{bottom:559.800000px;}
.ye_c00218{bottom:563.250000px;}
.y36_c00218{bottom:578.100000px;}
.yd_c00218{bottom:581.550000px;}
.y35_c00218{bottom:595.950000px;}
.yc_c00218{bottom:599.100000px;}
.y34_c00218{bottom:613.800000px;}
.yb_c00218{bottom:617.250000px;}
.y33_c00218{bottom:631.500000px;}
.ya_c00218{bottom:635.100000px;}
.y32_c00218{bottom:649.950000px;}
.y9_c00218{bottom:652.650000px;}
.y31_c00218{bottom:667.950000px;}
.y8_c00218{bottom:670.650000px;}
.y30_c00218{bottom:685.800000px;}
.y7_c00218{bottom:688.050000px;}
.y2f_c00218{bottom:703.350000px;}
.y6_c00218{bottom:706.950000px;}
.y2e_c00218{bottom:721.800000px;}
.y5_c00218{bottom:724.650000px;}
.y2d_c00218{bottom:739.350000px;}
.y4_c00218{bottom:742.050000px;}
.y2c_c00218{bottom:757.950000px;}
.y3_c00218{bottom:760.650000px;}
.y2b_c00218{bottom:775.950000px;}
.y2_c00218{bottom:778.650000px;}
.y1_c00218{bottom:797.250000px;}
.h8_c00218{height:13.200074px;}
.h9_c00218{height:43.804688px;}
.h2_c00218{height:62.880000px;}
.h6_c00218{height:64.020000px;}
.h1_c00218{height:70.664062px;}
.h7_c00218{height:72.312000px;}
.h4_c00218{height:75.456000px;}
.h5_c00218{height:80.025000px;}
.h3_c00218{height:96.996094px;}
.h0_c00218{height:837.000000px;}
.w2_c00218{width:104.875500px;}
.w0_c00218{width:586.425000px;}
.w1_c00218{width:586.500000px;}
.x0_c00218{left:0.000000px;}
.x6_c00218{left:14.400000px;}
.x7_c00218{left:15.900000px;}
.x1_c00218{left:38.700000px;}
.x2_c00218{left:72.450000px;}
.x3_c00218{left:74.700000px;}
.x4_c00218{left:76.200000px;}
.x5_c00218{left:78.000000px;}
.x8_c00218{left:79.650000px;}
.x9_c00218{left:94.500000px;}
.xf_c00218{left:245.026749px;}
.xc_c00218{left:291.600000px;}
.xa_c00218{left:292.650000px;}
.xb_c00218{left:294.000000px;}
.xd_c00218{left:383.100000px;}
.xe_c00218{left:457.350000px;}
@media print{
.v0_c00218{vertical-align:0.000000pt;}
.ls6_c00218{letter-spacing:0.000000pt;}
.ls2_c00218{letter-spacing:1.426667pt;}
.ls0_c00218{letter-spacing:2.666667pt;}
.ls3_c00218{letter-spacing:3.200000pt;}
.ls1_c00218{letter-spacing:3.560000pt;}
.ls4_c00218{letter-spacing:3.733333pt;}
.ls7_c00218{letter-spacing:5.333333pt;}
.ls9_c00218{letter-spacing:8.000000pt;}
.ls8_c00218{letter-spacing:10.666667pt;}
.ls5_c00218{letter-spacing:142.346667pt;}
.ws5_c00218{word-spacing:-27.266667pt;}
.ws4_c00218{word-spacing:-26.730667pt;}
.ws6_c00218{word-spacing:-26.040000pt;}
.ws1_c00218{word-spacing:-22.981333pt;}
.ws3_c00218{word-spacing:-18.666667pt;}
.ws2_c00218{word-spacing:-16.053333pt;}
.ws0_c00218{word-spacing:-12.586667pt;}
.ws7_c00218{word-spacing:0.000000pt;}
._28_c00218{margin-left:-34.440000pt;}
._24_c00218{margin-left:-27.552000pt;}
._2a_c00218{margin-left:-22.765333pt;}
._2e_c00218{margin-left:-18.954667pt;}
._2_c00218{margin-left:-15.360000pt;}
._1e_c00218{margin-left:-14.453333pt;}
._27_c00218{margin-left:-13.429333pt;}
._23_c00218{margin-left:-11.834667pt;}
._1f_c00218{margin-left:-10.666667pt;}
._21_c00218{margin-left:-9.109333pt;}
._18_c00218{margin-left:-7.509333pt;}
._17_c00218{margin-left:-5.866667pt;}
._12_c00218{margin-left:-4.864000pt;}
._a_c00218{margin-left:-3.786667pt;}
._b_c00218{margin-left:-2.506667pt;}
._e_c00218{margin-left:-1.184000pt;}
._7_c00218{width:1.120000pt;}
._8_c00218{width:2.293333pt;}
._4_c00218{width:3.392000pt;}
._d_c00218{width:4.373333pt;}
._13_c00218{width:5.269333pt;}
._6_c00218{width:6.336000pt;}
._f_c00218{width:8.181333pt;}
._11_c00218{width:9.248000pt;}
._c_c00218{width:10.197333pt;}
._2d_c00218{width:11.264000pt;}
._9_c00218{width:12.213333pt;}
._1d_c00218{width:13.280000pt;}
._0_c00218{width:15.040000pt;}
._1c_c00218{width:16.480000pt;}
._1b_c00218{width:18.058667pt;}
._10_c00218{width:19.434667pt;}
._1a_c00218{width:21.440000pt;}
._2b_c00218{width:22.880000pt;}
._16_c00218{width:26.048000pt;}
._14_c00218{width:27.210667pt;}
._5_c00218{width:29.760000pt;}
._15_c00218{width:31.253333pt;}
._22_c00218{width:32.864000pt;}
._29_c00218{width:37.920000pt;}
._20_c00218{width:40.320000pt;}
._25_c00218{width:55.637333pt;}
._19_c00218{width:85.738667pt;}
._2c_c00218{width:106.944000pt;}
._1_c00218{width:229.888000pt;}
._3_c00218{width:246.400000pt;}
._26_c00218{width:348.416000pt;}
.fs2_c00218{font-size:40.000000pt;}
.fs6_c00218{font-size:42.666667pt;}
.fs1_c00218{font-size:53.333333pt;}
.fs5_c00218{font-size:61.333333pt;}
.fs0_c00218{font-size:64.000000pt;}
.fs4_c00218{font-size:66.666667pt;}
.fs3_c00218{font-size:82.666667pt;}
.y0_c00218{bottom:0.000000pt;}
.y55_c00218{bottom:2.760000pt;}
.y54_c00218{bottom:6.425212pt;}
.y53_c00218{bottom:33.600000pt;}
.y52_c00218{bottom:50.933333pt;}
.y2a_c00218{bottom:56.000000pt;}
.y51_c00218{bottom:68.000000pt;}
.y29_c00218{bottom:72.000000pt;}
.y50_c00218{bottom:83.600000pt;}
.y28_c00218{bottom:86.666667pt;}
.y4f_c00218{bottom:99.333333pt;}
.y27_c00218{bottom:104.000000pt;}
.y4e_c00218{bottom:115.200000pt;}
.y26_c00218{bottom:120.000000pt;}
.y4d_c00218{bottom:130.400000pt;}
.y25_c00218{bottom:135.333333pt;}
.y4c_c00218{bottom:147.333333pt;}
.y24_c00218{bottom:151.733333pt;}
.y4b_c00218{bottom:160.800000pt;}
.y23_c00218{bottom:166.800000pt;}
.y4a_c00218{bottom:179.333333pt;}
.y22_c00218{bottom:185.600000pt;}
.y49_c00218{bottom:195.600000pt;}
.y21_c00218{bottom:198.933333pt;}
.y48_c00218{bottom:211.200000pt;}
.y20_c00218{bottom:214.800000pt;}
.y47_c00218{bottom:227.333333pt;}
.y1f_c00218{bottom:231.600000pt;}
.y46_c00218{bottom:243.600000pt;}
.y1e_c00218{bottom:246.933333pt;}
.y45_c00218{bottom:258.800000pt;}
.y1d_c00218{bottom:262.533333pt;}
.y44_c00218{bottom:274.800000pt;}
.y1c_c00218{bottom:278.400000pt;}
.y43_c00218{bottom:291.333333pt;}
.y1b_c00218{bottom:294.800000pt;}
.y42_c00218{bottom:306.533333pt;}
.y1a_c00218{bottom:310.800000pt;}
.y41_c00218{bottom:322.533333pt;}
.y19_c00218{bottom:325.200000pt;}
.y40_c00218{bottom:338.666667pt;}
.y18_c00218{bottom:342.533333pt;}
.y3f_c00218{bottom:354.266667pt;}
.y17_c00218{bottom:358.800000pt;}
.y3e_c00218{bottom:370.400000pt;}
.y16_c00218{bottom:374.400000pt;}
.y3d_c00218{bottom:385.733333pt;}
.y15_c00218{bottom:390.000000pt;}
.y14_c00218{bottom:406.533333pt;}
.y3c_c00218{bottom:418.400000pt;}
.y13_c00218{bottom:421.733333pt;}
.y3b_c00218{bottom:434.400000pt;}
.y12_c00218{bottom:437.600000pt;}
.y3a_c00218{bottom:449.733333pt;}
.y11_c00218{bottom:452.933333pt;}
.y39_c00218{bottom:465.200000pt;}
.y10_c00218{bottom:469.200000pt;}
.y38_c00218{bottom:482.400000pt;}
.yf_c00218{bottom:485.066667pt;}
.y37_c00218{bottom:497.600000pt;}
.ye_c00218{bottom:500.666667pt;}
.y36_c00218{bottom:513.866667pt;}
.yd_c00218{bottom:516.933333pt;}
.y35_c00218{bottom:529.733333pt;}
.yc_c00218{bottom:532.533333pt;}
.y34_c00218{bottom:545.600000pt;}
.yb_c00218{bottom:548.666667pt;}
.y33_c00218{bottom:561.333333pt;}
.ya_c00218{bottom:564.533333pt;}
.y32_c00218{bottom:577.733333pt;}
.y9_c00218{bottom:580.133333pt;}
.y31_c00218{bottom:593.733333pt;}
.y8_c00218{bottom:596.133333pt;}
.y30_c00218{bottom:609.600000pt;}
.y7_c00218{bottom:611.600000pt;}
.y2f_c00218{bottom:625.200000pt;}
.y6_c00218{bottom:628.400000pt;}
.y2e_c00218{bottom:641.600000pt;}
.y5_c00218{bottom:644.133333pt;}
.y2d_c00218{bottom:657.200000pt;}
.y4_c00218{bottom:659.600000pt;}
.y2c_c00218{bottom:673.733333pt;}
.y3_c00218{bottom:676.133333pt;}
.y2b_c00218{bottom:689.733333pt;}
.y2_c00218{bottom:692.133333pt;}
.y1_c00218{bottom:708.666667pt;}
.h8_c00218{height:11.733399pt;}
.h9_c00218{height:38.937500pt;}
.h2_c00218{height:55.893333pt;}
.h6_c00218{height:56.906667pt;}
.h1_c00218{height:62.812500pt;}
.h7_c00218{height:64.277333pt;}
.h4_c00218{height:67.072000pt;}
.h5_c00218{height:71.133333pt;}
.h3_c00218{height:86.218750pt;}
.h0_c00218{height:744.000000pt;}
.w2_c00218{width:93.222667pt;}
.w0_c00218{width:521.266667pt;}
.w1_c00218{width:521.333333pt;}
.x0_c00218{left:0.000000pt;}
.x6_c00218{left:12.800000pt;}
.x7_c00218{left:14.133333pt;}
.x1_c00218{left:34.400000pt;}
.x2_c00218{left:64.400000pt;}
.x3_c00218{left:66.400000pt;}
.x4_c00218{left:67.733333pt;}
.x5_c00218{left:69.333333pt;}
.x8_c00218{left:70.800000pt;}
.x9_c00218{left:84.000000pt;}
.xf_c00218{left:217.801554pt;}
.xc_c00218{left:259.200000pt;}
.xa_c00218{left:260.133333pt;}
.xb_c00218{left:261.333333pt;}
.xd_c00218{left:340.533333pt;}
.xe_c00218{left:406.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_cbdd3e554d38a9e6ba394a20.woff2')format("woff");}.ff1_c00219{font-family:ff1_c00219;line-height:1.437000;font-style:normal;font-weight:normal;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_78112c49b1e63ae07488de1c.woff2')format("woff");}.ff2_c00219{font-family:ff2_c00219;line-height:1.437000;font-style:normal;font-weight:normal;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_bdf351ea028b6b7f19780a70.woff2')format("woff");}.ff3_c00219{font-family:ff3_c00219;line-height:1.437000;font-style:normal;font-weight:normal;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_412812a43e2262771fd1b43e.woff2')format("woff");}.ff4_c00219{font-family:ff4_c00219;line-height:1.575000;font-style:normal;font-weight:normal;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_0ce391de997f24f9f9dd37f4.woff2')format("woff");}.ff5_c00219{font-family:ff5_c00219;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00219;src:url('chunks/assets/font_3447c5dc5a3039929f9ccf1c.woff2')format("woff");}.ff6_c00219{font-family:ff6_c00219;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00219;src:url('chunks/assets/font_28397bdba4ed18df0e768f6a.woff2')format("woff");}.ff7_c00219{font-family:ff7_c00219;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00219;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff8_c00219{font-family:ff8_c00219;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00219{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00219{vertical-align:0.000000px;}
.v1_c00219{vertical-align:76.200000px;}
.ls6_c00219{letter-spacing:0.000000px;}
.ls0_c00219{letter-spacing:1.440000px;}
.ls1_c00219{letter-spacing:1.680000px;}
.ls3_c00219{letter-spacing:3.000000px;}
.ls4_c00219{letter-spacing:5.040000px;}
.ls7_c00219{letter-spacing:15.000000px;}
.ls5_c00219{letter-spacing:16.080000px;}
.ls2_c00219{letter-spacing:30.540000px;}
.sc__c00219{text-shadow:none;}
.sc0_c00219{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00219{-webkit-text-stroke:0px transparent;}
.sc0_c00219{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00219{word-spacing:-29.340000px;}
.ws3_c00219{word-spacing:-29.295000px;}
.ws4_c00219{word-spacing:-23.760000px;}
.ws5_c00219{word-spacing:-18.060000px;}
.ws1_c00219{word-spacing:-15.000000px;}
.ws0_c00219{word-spacing:-14.160000px;}
.ws6_c00219{word-spacing:0.000000px;}
._1f_c00219{margin-left:-26.340000px;}
._20_c00219{margin-left:-24.720000px;}
._13_c00219{margin-left:-19.080000px;}
._1a_c00219{margin-left:-14.520000px;}
._8_c00219{margin-left:-10.140000px;}
._1c_c00219{margin-left:-8.040000px;}
._e_c00219{margin-left:-6.420000px;}
._2_c00219{margin-left:-4.680000px;}
._3_c00219{margin-left:-3.120000px;}
._0_c00219{margin-left:-1.740000px;}
._1_c00219{width:1.680000px;}
._5_c00219{width:3.540000px;}
._29_c00219{width:4.560000px;}
._4_c00219{width:5.580000px;}
._f_c00219{width:6.960000px;}
._a_c00219{width:8.820000px;}
._6_c00219{width:10.620000px;}
._10_c00219{width:12.480000px;}
._11_c00219{width:13.560000px;}
._7_c00219{width:15.240000px;}
._23_c00219{width:16.920000px;}
._12_c00219{width:19.080000px;}
._17_c00219{width:20.280000px;}
._9_c00219{width:21.840000px;}
._22_c00219{width:23.040000px;}
._1d_c00219{width:24.420000px;}
._15_c00219{width:25.500000px;}
._d_c00219{width:28.860000px;}
._b_c00219{width:31.200000px;}
._24_c00219{width:33.060000px;}
._21_c00219{width:34.680000px;}
._16_c00219{width:36.120000px;}
._c_c00219{width:39.300000px;}
._1b_c00219{width:48.840000px;}
._26_c00219{width:51.000000px;}
._18_c00219{width:60.420000px;}
._19_c00219{width:68.460000px;}
._25_c00219{width:73.740000px;}
._1e_c00219{width:76.260000px;}
._28_c00219{width:176.904000px;}
._27_c00219{width:225.696000px;}
._14_c00219{width:234.840000px;}
.fc2_c00219{color:transparent;}
.fc1_c00219{color:rgb(128,128,128);}
.fc0_c00219{color:rgb(0,0,0);}
.fs1_c00219{font-size:45.000000px;}
.fs3_c00219{font-size:48.000000px;}
.fs4_c00219{font-size:54.000000px;}
.fs5_c00219{font-size:57.000000px;}
.fs0_c00219{font-size:60.000000px;}
.fs2_c00219{font-size:162.000000px;}
.y0_c00219{bottom:0.000000px;}
.y51_c00219{bottom:3.105000px;}
.y50_c00219{bottom:7.228355px;}
.y4f_c00219{bottom:47.835000px;}
.y29_c00219{bottom:61.635000px;}
.y4e_c00219{bottom:64.485000px;}
.y28_c00219{bottom:80.535000px;}
.y4d_c00219{bottom:83.685000px;}
.y27_c00219{bottom:98.535000px;}
.y4c_c00219{bottom:101.535000px;}
.y26_c00219{bottom:116.985000px;}
.y4b_c00219{bottom:119.085000px;}
.y25_c00219{bottom:134.535000px;}
.y4a_c00219{bottom:137.985000px;}
.y24_c00219{bottom:152.835000px;}
.y49_c00219{bottom:155.535000px;}
.y23_c00219{bottom:170.685000px;}
.y48_c00219{bottom:174.135000px;}
.y22_c00219{bottom:189.285000px;}
.y47_c00219{bottom:192.285000px;}
.y21_c00219{bottom:207.135000px;}
.y46_c00219{bottom:210.135000px;}
.y20_c00219{bottom:225.135000px;}
.y45_c00219{bottom:227.835000px;}
.y1f_c00219{bottom:242.985000px;}
.y44_c00219{bottom:245.685000px;}
.y1e_c00219{bottom:261.435000px;}
.y42_c00219{bottom:262.785000px;}
.y43_c00219{bottom:264.135000px;}
.y1d_c00219{bottom:279.435000px;}
.y1c_c00219{bottom:297.135000px;}
.y1b_c00219{bottom:315.135000px;}
.y1a_c00219{bottom:333.135000px;}
.y41_c00219{bottom:335.685000px;}
.y19_c00219{bottom:350.985000px;}
.y40_c00219{bottom:354.285000px;}
.y18_c00219{bottom:368.835000px;}
.y3f_c00219{bottom:386.985000px;}
.y17_c00219{bottom:387.135000px;}
.y16_c00219{bottom:405.285000px;}
.y15_c00219{bottom:423.135000px;}
.y3e_c00219{bottom:424.935000px;}
.y14_c00219{bottom:441.435000px;}
.y3d_c00219{bottom:443.385000px;}
.y13_c00219{bottom:459.585000px;}
.y3c_c00219{bottom:461.385000px;}
.y12_c00219{bottom:477.585000px;}
.y3b_c00219{bottom:479.535000px;}
.y11_c00219{bottom:494.985000px;}
.y3a_c00219{bottom:497.835000px;}
.y10_c00219{bottom:512.685000px;}
.y39_c00219{bottom:515.985000px;}
.yf_c00219{bottom:531.885000px;}
.y38_c00219{bottom:533.535000px;}
.ye_c00219{bottom:548.985000px;}
.y37_c00219{bottom:551.385000px;}
.yd_c00219{bottom:566.685000px;}
.y36_c00219{bottom:569.685000px;}
.yc_c00219{bottom:585.585000px;}
.y35_c00219{bottom:587.535000px;}
.yb_c00219{bottom:604.785000px;}
.y34_c00219{bottom:605.385000px;}
.ya_c00219{bottom:621.585000px;}
.y33_c00219{bottom:623.985000px;}
.y9_c00219{bottom:639.135000px;}
.y32_c00219{bottom:641.235000px;}
.y8_c00219{bottom:658.485000px;}
.y31_c00219{bottom:659.835000px;}
.y7_c00219{bottom:677.385000px;}
.y6_c00219{bottom:693.435000px;}
.y30_c00219{bottom:695.835000px;}
.y5_c00219{bottom:712.335000px;}
.y2f_c00219{bottom:713.385000px;}
.y4_c00219{bottom:729.285000px;}
.y2e_c00219{bottom:731.385000px;}
.y3_c00219{bottom:748.935000px;}
.y2d_c00219{bottom:749.835000px;}
.y2c_c00219{bottom:767.685000px;}
.y2_c00219{bottom:767.835000px;}
.y1_c00219{bottom:784.035000px;}
.y2b_c00219{bottom:785.985000px;}
.y2a_c00219{bottom:806.235000px;}
.h7_c00219{height:13.200074px;}
.h8_c00219{height:43.804688px;}
.h6_c00219{height:58.536000px;}
.h5_c00219{height:59.736000px;}
.h2_c00219{height:62.880000px;}
.h3_c00219{height:64.020000px;}
.h4_c00219{height:169.776000px;}
.h1_c00219{height:848.250000px;}
.h0_c00219{height:848.325000px;}
.w1_c00219{width:104.875500px;}
.w0_c00219{width:563.250000px;}
.x0_c00219{left:0.000000px;}
.x4_c00219{left:37.200000px;}
.x5_c00219{left:38.250000px;}
.x3_c00219{left:89.550000px;}
.x9_c00219{left:97.950000px;}
.x8_c00219{left:99.900000px;}
.x7_c00219{left:100.950000px;}
.x1_c00219{left:102.600000px;}
.x2_c00219{left:103.950000px;}
.x6_c00219{left:128.250000px;}
.x14_c00219{left:233.439240px;}
.xa_c00219{left:298.650000px;}
.xd_c00219{left:315.300000px;}
.x12_c00219{left:316.500000px;}
.xe_c00219{left:317.700000px;}
.xb_c00219{left:318.900000px;}
.xc_c00219{left:320.250000px;}
.x10_c00219{left:344.850000px;}
.x11_c00219{left:354.750000px;}
.xf_c00219{left:390.150000px;}
.x13_c00219{left:492.450000px;}
@media print{
.v0_c00219{vertical-align:0.000000pt;}
.v1_c00219{vertical-align:67.733333pt;}
.ls6_c00219{letter-spacing:0.000000pt;}
.ls0_c00219{letter-spacing:1.280000pt;}
.ls1_c00219{letter-spacing:1.493333pt;}
.ls3_c00219{letter-spacing:2.666667pt;}
.ls4_c00219{letter-spacing:4.480000pt;}
.ls7_c00219{letter-spacing:13.333333pt;}
.ls5_c00219{letter-spacing:14.293333pt;}
.ls2_c00219{letter-spacing:27.146667pt;}
.ws2_c00219{word-spacing:-26.080000pt;}
.ws3_c00219{word-spacing:-26.040000pt;}
.ws4_c00219{word-spacing:-21.120000pt;}
.ws5_c00219{word-spacing:-16.053333pt;}
.ws1_c00219{word-spacing:-13.333333pt;}
.ws0_c00219{word-spacing:-12.586667pt;}
.ws6_c00219{word-spacing:0.000000pt;}
._1f_c00219{margin-left:-23.413333pt;}
._20_c00219{margin-left:-21.973333pt;}
._13_c00219{margin-left:-16.960000pt;}
._1a_c00219{margin-left:-12.906667pt;}
._8_c00219{margin-left:-9.013333pt;}
._1c_c00219{margin-left:-7.146667pt;}
._e_c00219{margin-left:-5.706667pt;}
._2_c00219{margin-left:-4.160000pt;}
._3_c00219{margin-left:-2.773333pt;}
._0_c00219{margin-left:-1.546667pt;}
._1_c00219{width:1.493333pt;}
._5_c00219{width:3.146667pt;}
._29_c00219{width:4.053333pt;}
._4_c00219{width:4.960000pt;}
._f_c00219{width:6.186667pt;}
._a_c00219{width:7.840000pt;}
._6_c00219{width:9.440000pt;}
._10_c00219{width:11.093333pt;}
._11_c00219{width:12.053333pt;}
._7_c00219{width:13.546667pt;}
._23_c00219{width:15.040000pt;}
._12_c00219{width:16.960000pt;}
._17_c00219{width:18.026667pt;}
._9_c00219{width:19.413333pt;}
._22_c00219{width:20.480000pt;}
._1d_c00219{width:21.706667pt;}
._15_c00219{width:22.666667pt;}
._d_c00219{width:25.653333pt;}
._b_c00219{width:27.733333pt;}
._24_c00219{width:29.386667pt;}
._21_c00219{width:30.826667pt;}
._16_c00219{width:32.106667pt;}
._c_c00219{width:34.933333pt;}
._1b_c00219{width:43.413333pt;}
._26_c00219{width:45.333333pt;}
._18_c00219{width:53.706667pt;}
._19_c00219{width:60.853333pt;}
._25_c00219{width:65.546667pt;}
._1e_c00219{width:67.786667pt;}
._28_c00219{width:157.248000pt;}
._27_c00219{width:200.618667pt;}
._14_c00219{width:208.746667pt;}
.fs1_c00219{font-size:40.000000pt;}
.fs3_c00219{font-size:42.666667pt;}
.fs4_c00219{font-size:48.000000pt;}
.fs5_c00219{font-size:50.666667pt;}
.fs0_c00219{font-size:53.333333pt;}
.fs2_c00219{font-size:144.000000pt;}
.y0_c00219{bottom:0.000000pt;}
.y51_c00219{bottom:2.760000pt;}
.y50_c00219{bottom:6.425204pt;}
.y4f_c00219{bottom:42.520000pt;}
.y29_c00219{bottom:54.786667pt;}
.y4e_c00219{bottom:57.320000pt;}
.y28_c00219{bottom:71.586667pt;}
.y4d_c00219{bottom:74.386667pt;}
.y27_c00219{bottom:87.586667pt;}
.y4c_c00219{bottom:90.253333pt;}
.y26_c00219{bottom:103.986667pt;}
.y4b_c00219{bottom:105.853333pt;}
.y25_c00219{bottom:119.586667pt;}
.y4a_c00219{bottom:122.653333pt;}
.y24_c00219{bottom:135.853333pt;}
.y49_c00219{bottom:138.253333pt;}
.y23_c00219{bottom:151.720000pt;}
.y48_c00219{bottom:154.786667pt;}
.y22_c00219{bottom:168.253333pt;}
.y47_c00219{bottom:170.920000pt;}
.y21_c00219{bottom:184.120000pt;}
.y46_c00219{bottom:186.786667pt;}
.y20_c00219{bottom:200.120000pt;}
.y45_c00219{bottom:202.520000pt;}
.y1f_c00219{bottom:215.986667pt;}
.y44_c00219{bottom:218.386667pt;}
.y1e_c00219{bottom:232.386667pt;}
.y42_c00219{bottom:233.586667pt;}
.y43_c00219{bottom:234.786667pt;}
.y1d_c00219{bottom:248.386667pt;}
.y1c_c00219{bottom:264.120000pt;}
.y1b_c00219{bottom:280.120000pt;}
.y1a_c00219{bottom:296.120000pt;}
.y41_c00219{bottom:298.386667pt;}
.y19_c00219{bottom:311.986667pt;}
.y40_c00219{bottom:314.920000pt;}
.y18_c00219{bottom:327.853333pt;}
.y3f_c00219{bottom:343.986667pt;}
.y17_c00219{bottom:344.120000pt;}
.y16_c00219{bottom:360.253333pt;}
.y15_c00219{bottom:376.120000pt;}
.y3e_c00219{bottom:377.720000pt;}
.y14_c00219{bottom:392.386667pt;}
.y3d_c00219{bottom:394.120000pt;}
.y13_c00219{bottom:408.520000pt;}
.y3c_c00219{bottom:410.120000pt;}
.y12_c00219{bottom:424.520000pt;}
.y3b_c00219{bottom:426.253333pt;}
.y11_c00219{bottom:439.986667pt;}
.y3a_c00219{bottom:442.520000pt;}
.y10_c00219{bottom:455.720000pt;}
.y39_c00219{bottom:458.653333pt;}
.yf_c00219{bottom:472.786667pt;}
.y38_c00219{bottom:474.253333pt;}
.ye_c00219{bottom:487.986667pt;}
.y37_c00219{bottom:490.120000pt;}
.yd_c00219{bottom:503.720000pt;}
.y36_c00219{bottom:506.386667pt;}
.yc_c00219{bottom:520.520000pt;}
.y35_c00219{bottom:522.253333pt;}
.yb_c00219{bottom:537.586667pt;}
.y34_c00219{bottom:538.120000pt;}
.ya_c00219{bottom:552.520000pt;}
.y33_c00219{bottom:554.653333pt;}
.y9_c00219{bottom:568.120000pt;}
.y32_c00219{bottom:569.986667pt;}
.y8_c00219{bottom:585.320000pt;}
.y31_c00219{bottom:586.520000pt;}
.y7_c00219{bottom:602.120000pt;}
.y6_c00219{bottom:616.386667pt;}
.y30_c00219{bottom:618.520000pt;}
.y5_c00219{bottom:633.186667pt;}
.y2f_c00219{bottom:634.120000pt;}
.y4_c00219{bottom:648.253333pt;}
.y2e_c00219{bottom:650.120000pt;}
.y3_c00219{bottom:665.720000pt;}
.y2d_c00219{bottom:666.520000pt;}
.y2c_c00219{bottom:682.386667pt;}
.y2_c00219{bottom:682.520000pt;}
.y1_c00219{bottom:696.920000pt;}
.y2b_c00219{bottom:698.653333pt;}
.y2a_c00219{bottom:716.653333pt;}
.h7_c00219{height:11.733399pt;}
.h8_c00219{height:38.937500pt;}
.h6_c00219{height:52.032000pt;}
.h5_c00219{height:53.098667pt;}
.h2_c00219{height:55.893333pt;}
.h3_c00219{height:56.906667pt;}
.h4_c00219{height:150.912000pt;}
.h1_c00219{height:754.000000pt;}
.h0_c00219{height:754.066667pt;}
.w1_c00219{width:93.222667pt;}
.w0_c00219{width:500.666667pt;}
.x0_c00219{left:0.000000pt;}
.x4_c00219{left:33.066667pt;}
.x5_c00219{left:34.000000pt;}
.x3_c00219{left:79.600000pt;}
.x9_c00219{left:87.066667pt;}
.x8_c00219{left:88.800000pt;}
.x7_c00219{left:89.733333pt;}
.x1_c00219{left:91.200000pt;}
.x2_c00219{left:92.400000pt;}
.x6_c00219{left:114.000000pt;}
.x14_c00219{left:207.501546pt;}
.xa_c00219{left:265.466667pt;}
.xd_c00219{left:280.266667pt;}
.x12_c00219{left:281.333333pt;}
.xe_c00219{left:282.400000pt;}
.xb_c00219{left:283.466667pt;}
.xc_c00219{left:284.666667pt;}
.x10_c00219{left:306.533333pt;}
.x11_c00219{left:315.333333pt;}
.xf_c00219{left:346.800000pt;}
.x13_c00219{left:437.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_fcc72e3b890f5c1773e0751c.woff2')format("woff");}.ff1_c00220{font-family:ff1_c00220;line-height:1.437000;font-style:normal;font-weight:normal;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_7ffa9a79cc0171e65e787dc8.woff2')format("woff");}.ff2_c00220{font-family:ff2_c00220;line-height:1.437000;font-style:normal;font-weight:normal;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_98a91ce923318dcdeb98042a.woff2')format("woff");}.ff3_c00220{font-family:ff3_c00220;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00220;src:url('chunks/assets/font_3c698c72cca61044a4fb70be.woff2')format("woff");}.ff4_c00220{font-family:ff4_c00220;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00220;src:url('chunks/assets/font_5dfa23a9579b562e95210652.woff2')format("woff");}.ff5_c00220{font-family:ff5_c00220;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00220;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff6_c00220{font-family:ff6_c00220;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00220{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00220{vertical-align:0.000000px;}
.ls6_c00220{letter-spacing:0.000000px;}
.ls1_c00220{letter-spacing:0.405000px;}
.ls4_c00220{letter-spacing:2.205000px;}
.ls5_c00220{letter-spacing:3.000000px;}
.ls3_c00220{letter-spacing:7.080000px;}
.ls2_c00220{letter-spacing:10.005000px;}
.ls0_c00220{letter-spacing:30.405000px;}
.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;}
}
.ws2_c00220{word-spacing:-29.295000px;}
.ws1_c00220{word-spacing:-17.340000px;}
.ws0_c00220{word-spacing:-14.160000px;}
.ws3_c00220{word-spacing:0.000000px;}
._2d_c00220{margin-left:-10.800000px;}
._24_c00220{margin-left:-8.760000px;}
._14_c00220{margin-left:-5.160000px;}
._17_c00220{margin-left:-3.780000px;}
._13_c00220{margin-left:-2.520000px;}
._3_c00220{margin-left:-1.260000px;}
._0_c00220{width:1.800000px;}
._8_c00220{width:3.180000px;}
._6_c00220{width:4.800000px;}
._a_c00220{width:6.000000px;}
._7_c00220{width:7.020000px;}
._10_c00220{width:8.040000px;}
._9_c00220{width:9.060000px;}
._1_c00220{width:10.440000px;}
._d_c00220{width:11.580000px;}
._12_c00220{width:12.780000px;}
._2_c00220{width:14.220000px;}
._4_c00220{width:15.300000px;}
._21_c00220{width:18.780000px;}
._18_c00220{width:20.580000px;}
._11_c00220{width:21.840000px;}
._c_c00220{width:22.980000px;}
._b_c00220{width:25.200000px;}
._1e_c00220{width:26.940000px;}
._20_c00220{width:27.960000px;}
._1b_c00220{width:31.380000px;}
._23_c00220{width:33.660000px;}
._f_c00220{width:35.580000px;}
._27_c00220{width:37.440000px;}
._25_c00220{width:38.820000px;}
._28_c00220{width:40.560000px;}
._26_c00220{width:41.940000px;}
._1a_c00220{width:43.080000px;}
._2b_c00220{width:44.400000px;}
._2a_c00220{width:45.720000px;}
._19_c00220{width:48.900000px;}
._29_c00220{width:49.920000px;}
._e_c00220{width:53.640000px;}
._5_c00220{width:56.820000px;}
._22_c00220{width:70.380000px;}
._16_c00220{width:71.880000px;}
._1c_c00220{width:76.380000px;}
._1d_c00220{width:102.420000px;}
._2c_c00220{width:120.765000px;}
._1f_c00220{width:129.840000px;}
._2e_c00220{width:188.520000px;}
._15_c00220{width:301.260000px;}
.fc2_c00220{color:transparent;}
.fc1_c00220{color:rgb(128,128,128);}
.fc0_c00220{color:rgb(0,0,0);}
.fs1_c00220{font-size:45.000000px;}
.fs2_c00220{font-size:48.000000px;}
.fs0_c00220{font-size:60.000000px;}
.y0_c00220{bottom:0.000000px;}
.y2c_c00220{bottom:3.105000px;}
.y2b_c00220{bottom:7.228371px;}
.y2a_c00220{bottom:41.565000px;}
.y29_c00220{bottom:59.865000px;}
.y28_c00220{bottom:77.715000px;}
.y27_c00220{bottom:95.865000px;}
.y26_c00220{bottom:113.715000px;}
.y25_c00220{bottom:132.015000px;}
.y24_c00220{bottom:149.865000px;}
.y23_c00220{bottom:167.115000px;}
.y22_c00220{bottom:184.065000px;}
.y21_c00220{bottom:202.965000px;}
.y20_c00220{bottom:221.865000px;}
.y1f_c00220{bottom:238.965000px;}
.y1e_c00220{bottom:258.165000px;}
.y1d_c00220{bottom:276.765000px;}
.y1c_c00220{bottom:294.765000px;}
.y1b_c00220{bottom:312.915000px;}
.y1a_c00220{bottom:331.065000px;}
.y19_c00220{bottom:349.065000px;}
.y18_c00220{bottom:366.615000px;}
.y17_c00220{bottom:385.815000px;}
.y16_c00220{bottom:403.065000px;}
.y15_c00220{bottom:420.615000px;}
.y14_c00220{bottom:439.065000px;}
.y13_c00220{bottom:457.065000px;}
.y12_c00220{bottom:475.515000px;}
.y11_c00220{bottom:492.165000px;}
.y10_c00220{bottom:511.065000px;}
.yf_c00220{bottom:528.915000px;}
.ye_c00220{bottom:546.465000px;}
.yd_c00220{bottom:564.765000px;}
.yc_c00220{bottom:582.315000px;}
.yb_c00220{bottom:600.765000px;}
.ya_c00220{bottom:619.065000px;}
.y9_c00220{bottom:636.915000px;}
.y8_c00220{bottom:655.065000px;}
.y7_c00220{bottom:673.065000px;}
.y6_c00220{bottom:690.915000px;}
.y5_c00220{bottom:709.215000px;}
.y4_c00220{bottom:727.365000px;}
.y3_c00220{bottom:746.265000px;}
.y2_c00220{bottom:763.515000px;}
.y1_c00220{bottom:782.715000px;}
.h4_c00220{height:13.200074px;}
.h5_c00220{height:43.804688px;}
.h2_c00220{height:62.880000px;}
.h3_c00220{height:64.020000px;}
.h0_c00220{height:833.775000px;}
.h1_c00220{height:834.000000px;}
.w2_c00220{width:104.875500px;}
.w1_c00220{width:583.500000px;}
.w0_c00220{width:583.725000px;}
.x0_c00220{left:0.000000px;}
.x4_c00220{left:17.250000px;}
.xb_c00220{left:18.600000px;}
.xc_c00220{left:20.700000px;}
.xd_c00220{left:73.800000px;}
.xa_c00220{left:77.850000px;}
.x9_c00220{left:79.800000px;}
.x1_c00220{left:81.000000px;}
.x7_c00220{left:82.500000px;}
.x5_c00220{left:84.150000px;}
.x6_c00220{left:85.350000px;}
.x3_c00220{left:87.150000px;}
.x2_c00220{left:88.200000px;}
.x8_c00220{left:97.800000px;}
.xf_c00220{left:243.676758px;}
.xe_c00220{left:381.150000px;}
@media print{
.v0_c00220{vertical-align:0.000000pt;}
.ls6_c00220{letter-spacing:0.000000pt;}
.ls1_c00220{letter-spacing:0.360000pt;}
.ls4_c00220{letter-spacing:1.960000pt;}
.ls5_c00220{letter-spacing:2.666667pt;}
.ls3_c00220{letter-spacing:6.293333pt;}
.ls2_c00220{letter-spacing:8.893333pt;}
.ls0_c00220{letter-spacing:27.026667pt;}
.ws2_c00220{word-spacing:-26.040000pt;}
.ws1_c00220{word-spacing:-15.413333pt;}
.ws0_c00220{word-spacing:-12.586667pt;}
.ws3_c00220{word-spacing:0.000000pt;}
._2d_c00220{margin-left:-9.600000pt;}
._24_c00220{margin-left:-7.786667pt;}
._14_c00220{margin-left:-4.586667pt;}
._17_c00220{margin-left:-3.360000pt;}
._13_c00220{margin-left:-2.240000pt;}
._3_c00220{margin-left:-1.120000pt;}
._0_c00220{width:1.600000pt;}
._8_c00220{width:2.826667pt;}
._6_c00220{width:4.266667pt;}
._a_c00220{width:5.333333pt;}
._7_c00220{width:6.240000pt;}
._10_c00220{width:7.146667pt;}
._9_c00220{width:8.053333pt;}
._1_c00220{width:9.280000pt;}
._d_c00220{width:10.293333pt;}
._12_c00220{width:11.360000pt;}
._2_c00220{width:12.640000pt;}
._4_c00220{width:13.600000pt;}
._21_c00220{width:16.693333pt;}
._18_c00220{width:18.293333pt;}
._11_c00220{width:19.413333pt;}
._c_c00220{width:20.426667pt;}
._b_c00220{width:22.400000pt;}
._1e_c00220{width:23.946667pt;}
._20_c00220{width:24.853333pt;}
._1b_c00220{width:27.893333pt;}
._23_c00220{width:29.920000pt;}
._f_c00220{width:31.626667pt;}
._27_c00220{width:33.280000pt;}
._25_c00220{width:34.506667pt;}
._28_c00220{width:36.053333pt;}
._26_c00220{width:37.280000pt;}
._1a_c00220{width:38.293333pt;}
._2b_c00220{width:39.466667pt;}
._2a_c00220{width:40.640000pt;}
._19_c00220{width:43.466667pt;}
._29_c00220{width:44.373333pt;}
._e_c00220{width:47.680000pt;}
._5_c00220{width:50.506667pt;}
._22_c00220{width:62.560000pt;}
._16_c00220{width:63.893333pt;}
._1c_c00220{width:67.893333pt;}
._1d_c00220{width:91.040000pt;}
._2c_c00220{width:107.346667pt;}
._1f_c00220{width:115.413333pt;}
._2e_c00220{width:167.573333pt;}
._15_c00220{width:267.786667pt;}
.fs1_c00220{font-size:40.000000pt;}
.fs2_c00220{font-size:42.666667pt;}
.fs0_c00220{font-size:53.333333pt;}
.y0_c00220{bottom:0.000000pt;}
.y2c_c00220{bottom:2.760000pt;}
.y2b_c00220{bottom:6.425219pt;}
.y2a_c00220{bottom:36.946667pt;}
.y29_c00220{bottom:53.213333pt;}
.y28_c00220{bottom:69.080000pt;}
.y27_c00220{bottom:85.213333pt;}
.y26_c00220{bottom:101.080000pt;}
.y25_c00220{bottom:117.346667pt;}
.y24_c00220{bottom:133.213333pt;}
.y23_c00220{bottom:148.546667pt;}
.y22_c00220{bottom:163.613333pt;}
.y21_c00220{bottom:180.413333pt;}
.y20_c00220{bottom:197.213333pt;}
.y1f_c00220{bottom:212.413333pt;}
.y1e_c00220{bottom:229.480000pt;}
.y1d_c00220{bottom:246.013333pt;}
.y1c_c00220{bottom:262.013333pt;}
.y1b_c00220{bottom:278.146667pt;}
.y1a_c00220{bottom:294.280000pt;}
.y19_c00220{bottom:310.280000pt;}
.y18_c00220{bottom:325.880000pt;}
.y17_c00220{bottom:342.946667pt;}
.y16_c00220{bottom:358.280000pt;}
.y15_c00220{bottom:373.880000pt;}
.y14_c00220{bottom:390.280000pt;}
.y13_c00220{bottom:406.280000pt;}
.y12_c00220{bottom:422.680000pt;}
.y11_c00220{bottom:437.480000pt;}
.y10_c00220{bottom:454.280000pt;}
.yf_c00220{bottom:470.146667pt;}
.ye_c00220{bottom:485.746667pt;}
.yd_c00220{bottom:502.013333pt;}
.yc_c00220{bottom:517.613333pt;}
.yb_c00220{bottom:534.013333pt;}
.ya_c00220{bottom:550.280000pt;}
.y9_c00220{bottom:566.146667pt;}
.y8_c00220{bottom:582.280000pt;}
.y7_c00220{bottom:598.280000pt;}
.y6_c00220{bottom:614.146667pt;}
.y5_c00220{bottom:630.413333pt;}
.y4_c00220{bottom:646.546667pt;}
.y3_c00220{bottom:663.346667pt;}
.y2_c00220{bottom:678.680000pt;}
.y1_c00220{bottom:695.746667pt;}
.h4_c00220{height:11.733399pt;}
.h5_c00220{height:38.937500pt;}
.h2_c00220{height:55.893333pt;}
.h3_c00220{height:56.906667pt;}
.h0_c00220{height:741.133333pt;}
.h1_c00220{height:741.333333pt;}
.w2_c00220{width:93.222667pt;}
.w1_c00220{width:518.666667pt;}
.w0_c00220{width:518.866667pt;}
.x0_c00220{left:0.000000pt;}
.x4_c00220{left:15.333333pt;}
.xb_c00220{left:16.533333pt;}
.xc_c00220{left:18.400000pt;}
.xd_c00220{left:65.600000pt;}
.xa_c00220{left:69.200000pt;}
.x9_c00220{left:70.933333pt;}
.x1_c00220{left:72.000000pt;}
.x7_c00220{left:73.333333pt;}
.x5_c00220{left:74.800000pt;}
.x6_c00220{left:75.866667pt;}
.x3_c00220{left:77.466667pt;}
.x2_c00220{left:78.400000pt;}
.x8_c00220{left:86.933333pt;}
.xf_c00220{left:216.601563pt;}
.xe_c00220{left:338.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_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_0c788f52b2ccf0e88d481825.woff2')format("woff");}.ff1_c00221{font-family:ff1_c00221;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00221;src:url('chunks/assets/font_607a0899f26412763535d2f3.woff2')format("woff");}.ff2_c00221{font-family:ff2_c00221;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00221;src:url('chunks/assets/font_2951cc15b05e21e9b2385267.woff2')format("woff");}.ff3_c00221{font-family:ff3_c00221;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00221;src:url('chunks/assets/font_543c49b6195360e6c19b8bd2.woff2')format("woff");}.ff4_c00221{font-family:ff4_c00221;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00221;src:url('chunks/assets/font_12bb16a3980c05f0036d57aa.woff2')format("woff");}.ff5_c00221{font-family:ff5_c00221;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00221;src:url('chunks/assets/font_8d73811a18d140594e624059.woff2')format("woff");}.ff6_c00221{font-family:ff6_c00221;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00221;src:url('chunks/assets/font_a5b69db714f57c3ce441850d.woff2')format("woff");}.ff7_c00221{font-family:ff7_c00221;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:ff8_c00221;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff8_c00221{font-family:ff8_c00221;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:ff9_c00221;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff9_c00221{font-family:ff9_c00221;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00221{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00221{vertical-align:-9.600000px;}
.v0_c00221{vertical-align:0.000000px;}
.ls8_c00221{letter-spacing:0.000000px;}
.ls2_c00221{letter-spacing:3.000000px;}
.ls7_c00221{letter-spacing:9.000000px;}
.ls1_c00221{letter-spacing:12.000000px;}
.ls0_c00221{letter-spacing:14.100000px;}
.ls9_c00221{letter-spacing:15.000000px;}
.ls4_c00221{letter-spacing:16.260000px;}
.ls6_c00221{letter-spacing:20.400000px;}
.ls3_c00221{letter-spacing:54.600000px;}
.ls5_c00221{letter-spacing:88.260000px;}
.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;}
}
.ws4_c00221{word-spacing:-30.072000px;}
.ws2_c00221{word-spacing:-25.452000px;}
.ws3_c00221{word-spacing:-21.000000px;}
.ws0_c00221{word-spacing:-17.340000px;}
.ws1_c00221{word-spacing:-14.160000px;}
.ws5_c00221{word-spacing:0.000000px;}
._2c_c00221{margin-left:-34.956000px;}
._25_c00221{margin-left:-32.151000px;}
._29_c00221{margin-left:-30.531000px;}
._26_c00221{margin-left:-29.277000px;}
._2b_c00221{margin-left:-28.248000px;}
._21_c00221{margin-left:-26.874000px;}
._24_c00221{margin-left:-25.869000px;}
._2d_c00221{margin-left:-24.393000px;}
._27_c00221{margin-left:-23.250000px;}
._23_c00221{margin-left:-22.041000px;}
._22_c00221{margin-left:-20.181000px;}
._28_c00221{margin-left:-18.951000px;}
._a_c00221{margin-left:-17.520000px;}
._e_c00221{margin-left:-15.528000px;}
._2a_c00221{margin-left:-14.490000px;}
._1c_c00221{margin-left:-13.032000px;}
._2e_c00221{margin-left:-11.685000px;}
._f_c00221{margin-left:-10.680000px;}
._1b_c00221{margin-left:-9.624000px;}
._1e_c00221{margin-left:-7.944000px;}
._1a_c00221{margin-left:-6.096000px;}
._7_c00221{margin-left:-4.860000px;}
._b_c00221{margin-left:-3.660000px;}
._11_c00221{margin-left:-2.580000px;}
._c_c00221{margin-left:-1.380000px;}
._6_c00221{width:1.620000px;}
._8_c00221{width:2.640000px;}
._9_c00221{width:4.080000px;}
._0_c00221{width:5.100000px;}
._10_c00221{width:6.720000px;}
._19_c00221{width:8.040000px;}
._d_c00221{width:9.240000px;}
._15_c00221{width:10.296000px;}
._14_c00221{width:11.940000px;}
._13_c00221{width:13.020000px;}
._2_c00221{width:15.300000px;}
._3_c00221{width:16.740000px;}
._17_c00221{width:17.760000px;}
._16_c00221{width:19.140000px;}
._2f_c00221{width:21.840000px;}
._5_c00221{width:22.860000px;}
._1d_c00221{width:24.624000px;}
._4_c00221{width:25.680000px;}
._18_c00221{width:28.980000px;}
._30_c00221{width:31.440000px;}
._1f_c00221{width:35.880000px;}
._31_c00221{width:44.520000px;}
._20_c00221{width:120.660000px;}
._12_c00221{width:145.560000px;}
._1_c00221{width:295.740000px;}
._32_c00221{width:607.983000px;}
.fc2_c00221{color:transparent;}
.fc1_c00221{color:rgb(128,128,128);}
.fc0_c00221{color:rgb(0,0,0);}
.fs2_c00221{font-size:39.000000px;}
.fs6_c00221{font-size:48.000000px;}
.fs1_c00221{font-size:57.000000px;}
.fs0_c00221{font-size:60.000000px;}
.fs5_c00221{font-size:66.000000px;}
.fs3_c00221{font-size:72.000000px;}
.fs4_c00221{font-size:93.000000px;}
.y0_c00221{bottom:0.000000px;}
.y53_c00221{bottom:3.105000px;}
.y52_c00221{bottom:7.228369px;}
.y51_c00221{bottom:38.070000px;}
.y50_c00221{bottom:56.070000px;}
.y28_c00221{bottom:56.970000px;}
.y4f_c00221{bottom:74.520000px;}
.y27_c00221{bottom:75.270000px;}
.y4e_c00221{bottom:92.820000px;}
.y26_c00221{bottom:93.870000px;}
.y4d_c00221{bottom:111.420000px;}
.y25_c00221{bottom:112.620000px;}
.y4c_c00221{bottom:129.270000px;}
.y24_c00221{bottom:131.520000px;}
.y4b_c00221{bottom:147.720000px;}
.y23_c00221{bottom:150.570000px;}
.y4a_c00221{bottom:166.020000px;}
.y22_c00221{bottom:169.470000px;}
.y49_c00221{bottom:184.620000px;}
.y21_c00221{bottom:184.920000px;}
.y20_c00221{bottom:203.070000px;}
.y48_c00221{bottom:221.070000px;}
.y1f_c00221{bottom:223.170000px;}
.y47_c00221{bottom:239.220000px;}
.y1e_c00221{bottom:241.320000px;}
.y46_c00221{bottom:257.220000px;}
.y1d_c00221{bottom:259.470000px;}
.y45_c00221{bottom:276.420000px;}
.y1c_c00221{bottom:278.370000px;}
.y44_c00221{bottom:294.570000px;}
.y1b_c00221{bottom:296.670000px;}
.y43_c00221{bottom:312.570000px;}
.y1a_c00221{bottom:317.220000px;}
.y42_c00221{bottom:330.720000px;}
.y41_c00221{bottom:348.870000px;}
.y19_c00221{bottom:351.570000px;}
.y40_c00221{bottom:367.470000px;}
.y18_c00221{bottom:369.870000px;}
.y3f_c00221{bottom:385.320000px;}
.y17_c00221{bottom:388.770000px;}
.y3e_c00221{bottom:403.620000px;}
.y16_c00221{bottom:406.620000px;}
.y3d_c00221{bottom:422.220000px;}
.y15_c00221{bottom:424.470000px;}
.y3c_c00221{bottom:440.070000px;}
.y14_c00221{bottom:447.420000px;}
.y13_c00221{bottom:458.670000px;}
.y3b_c00221{bottom:475.920000px;}
.y3a_c00221{bottom:494.070000px;}
.y12_c00221{bottom:496.170000px;}
.y39_c00221{bottom:512.670000px;}
.y11_c00221{bottom:514.620000px;}
.y38_c00221{bottom:531.120000px;}
.y10_c00221{bottom:532.620000px;}
.y37_c00221{bottom:549.120000px;}
.yf_c00221{bottom:550.470000px;}
.y36_c00221{bottom:567.720000px;}
.ye_c00221{bottom:569.070000px;}
.y35_c00221{bottom:586.170000px;}
.yd_c00221{bottom:587.520000px;}
.y34_c00221{bottom:604.170000px;}
.yc_c00221{bottom:605.520000px;}
.y33_c00221{bottom:622.920000px;}
.yb_c00221{bottom:623.670000px;}
.y32_c00221{bottom:640.920000px;}
.ya_c00221{bottom:641.820000px;}
.y31_c00221{bottom:659.370000px;}
.y9_c00221{bottom:660.420000px;}
.y30_c00221{bottom:677.670000px;}
.y8_c00221{bottom:678.270000px;}
.y2f_c00221{bottom:695.520000px;}
.y7_c00221{bottom:696.570000px;}
.y2e_c00221{bottom:713.970000px;}
.y6_c00221{bottom:714.720000px;}
.y2d_c00221{bottom:732.420000px;}
.y5_c00221{bottom:733.770000px;}
.y2c_c00221{bottom:750.870000px;}
.y4_c00221{bottom:752.220000px;}
.y2b_c00221{bottom:768.870000px;}
.y3_c00221{bottom:770.070000px;}
.y2a_c00221{bottom:787.320000px;}
.y2_c00221{bottom:787.770000px;}
.y29_c00221{bottom:806.520000px;}
.y1_c00221{bottom:807.870000px;}
.h7_c00221{height:13.200073px;}
.h8_c00221{height:43.804688px;}
.h4_c00221{height:59.736000px;}
.h3_c00221{height:62.880000px;}
.h2_c00221{height:64.020000px;}
.h5_c00221{height:70.664062px;}
.h6_c00221{height:96.996094px;}
.h1_c00221{height:851.250000px;}
.h0_c00221{height:851.550000px;}
.w2_c00221{width:104.875500px;}
.w1_c00221{width:565.500000px;}
.w0_c00221{width:565.650000px;}
.x0_c00221{left:0.000000px;}
.xb_c00221{left:39.750000px;}
.x6_c00221{left:48.150000px;}
.x4_c00221{left:99.450000px;}
.x3_c00221{left:100.500000px;}
.x2_c00221{left:102.300000px;}
.x7_c00221{left:103.650000px;}
.xc_c00221{left:104.850000px;}
.x1_c00221{left:106.350000px;}
.xa_c00221{left:124.200000px;}
.xd_c00221{left:128.850000px;}
.x8_c00221{left:147.150000px;}
.x5_c00221{left:175.500000px;}
.x9_c00221{left:188.700000px;}
.x17_c00221{left:234.639267px;}
.x12_c00221{left:316.500000px;}
.x10_c00221{left:318.600000px;}
.xf_c00221{left:320.250000px;}
.x11_c00221{left:321.300000px;}
.x13_c00221{left:322.350000px;}
.x14_c00221{left:323.550000px;}
.x16_c00221{left:325.050000px;}
.xe_c00221{left:326.400000px;}
.x15_c00221{left:350.250000px;}
@media print{
.v1_c00221{vertical-align:-8.533333pt;}
.v0_c00221{vertical-align:0.000000pt;}
.ls8_c00221{letter-spacing:0.000000pt;}
.ls2_c00221{letter-spacing:2.666667pt;}
.ls7_c00221{letter-spacing:8.000000pt;}
.ls1_c00221{letter-spacing:10.666667pt;}
.ls0_c00221{letter-spacing:12.533333pt;}
.ls9_c00221{letter-spacing:13.333333pt;}
.ls4_c00221{letter-spacing:14.453333pt;}
.ls6_c00221{letter-spacing:18.133333pt;}
.ls3_c00221{letter-spacing:48.533333pt;}
.ls5_c00221{letter-spacing:78.453333pt;}
.ws4_c00221{word-spacing:-26.730667pt;}
.ws2_c00221{word-spacing:-22.624000pt;}
.ws3_c00221{word-spacing:-18.666667pt;}
.ws0_c00221{word-spacing:-15.413333pt;}
.ws1_c00221{word-spacing:-12.586667pt;}
.ws5_c00221{word-spacing:0.000000pt;}
._2c_c00221{margin-left:-31.072000pt;}
._25_c00221{margin-left:-28.578667pt;}
._29_c00221{margin-left:-27.138667pt;}
._26_c00221{margin-left:-26.024000pt;}
._2b_c00221{margin-left:-25.109333pt;}
._21_c00221{margin-left:-23.888000pt;}
._24_c00221{margin-left:-22.994667pt;}
._2d_c00221{margin-left:-21.682667pt;}
._27_c00221{margin-left:-20.666667pt;}
._23_c00221{margin-left:-19.592000pt;}
._22_c00221{margin-left:-17.938667pt;}
._28_c00221{margin-left:-16.845333pt;}
._a_c00221{margin-left:-15.573333pt;}
._e_c00221{margin-left:-13.802667pt;}
._2a_c00221{margin-left:-12.880000pt;}
._1c_c00221{margin-left:-11.584000pt;}
._2e_c00221{margin-left:-10.386667pt;}
._f_c00221{margin-left:-9.493333pt;}
._1b_c00221{margin-left:-8.554667pt;}
._1e_c00221{margin-left:-7.061333pt;}
._1a_c00221{margin-left:-5.418667pt;}
._7_c00221{margin-left:-4.320000pt;}
._b_c00221{margin-left:-3.253333pt;}
._11_c00221{margin-left:-2.293333pt;}
._c_c00221{margin-left:-1.226667pt;}
._6_c00221{width:1.440000pt;}
._8_c00221{width:2.346667pt;}
._9_c00221{width:3.626667pt;}
._0_c00221{width:4.533333pt;}
._10_c00221{width:5.973333pt;}
._19_c00221{width:7.146667pt;}
._d_c00221{width:8.213333pt;}
._15_c00221{width:9.152000pt;}
._14_c00221{width:10.613333pt;}
._13_c00221{width:11.573333pt;}
._2_c00221{width:13.600000pt;}
._3_c00221{width:14.880000pt;}
._17_c00221{width:15.786667pt;}
._16_c00221{width:17.013333pt;}
._2f_c00221{width:19.413333pt;}
._5_c00221{width:20.320000pt;}
._1d_c00221{width:21.888000pt;}
._4_c00221{width:22.826667pt;}
._18_c00221{width:25.760000pt;}
._30_c00221{width:27.946667pt;}
._1f_c00221{width:31.893333pt;}
._31_c00221{width:39.573333pt;}
._20_c00221{width:107.253333pt;}
._12_c00221{width:129.386667pt;}
._1_c00221{width:262.880000pt;}
._32_c00221{width:540.429333pt;}
.fs2_c00221{font-size:34.666667pt;}
.fs6_c00221{font-size:42.666667pt;}
.fs1_c00221{font-size:50.666667pt;}
.fs0_c00221{font-size:53.333333pt;}
.fs5_c00221{font-size:58.666667pt;}
.fs3_c00221{font-size:64.000000pt;}
.fs4_c00221{font-size:82.666667pt;}
.y0_c00221{bottom:0.000000pt;}
.y53_c00221{bottom:2.760000pt;}
.y52_c00221{bottom:6.425217pt;}
.y51_c00221{bottom:33.840000pt;}
.y50_c00221{bottom:49.840000pt;}
.y28_c00221{bottom:50.640000pt;}
.y4f_c00221{bottom:66.240000pt;}
.y27_c00221{bottom:66.906667pt;}
.y4e_c00221{bottom:82.506667pt;}
.y26_c00221{bottom:83.440000pt;}
.y4d_c00221{bottom:99.040000pt;}
.y25_c00221{bottom:100.106667pt;}
.y4c_c00221{bottom:114.906667pt;}
.y24_c00221{bottom:116.906667pt;}
.y4b_c00221{bottom:131.306667pt;}
.y23_c00221{bottom:133.840000pt;}
.y4a_c00221{bottom:147.573333pt;}
.y22_c00221{bottom:150.640000pt;}
.y49_c00221{bottom:164.106667pt;}
.y21_c00221{bottom:164.373333pt;}
.y20_c00221{bottom:180.506667pt;}
.y48_c00221{bottom:196.506667pt;}
.y1f_c00221{bottom:198.373333pt;}
.y47_c00221{bottom:212.640000pt;}
.y1e_c00221{bottom:214.506667pt;}
.y46_c00221{bottom:228.640000pt;}
.y1d_c00221{bottom:230.640000pt;}
.y45_c00221{bottom:245.706667pt;}
.y1c_c00221{bottom:247.440000pt;}
.y44_c00221{bottom:261.840000pt;}
.y1b_c00221{bottom:263.706667pt;}
.y43_c00221{bottom:277.840000pt;}
.y1a_c00221{bottom:281.973333pt;}
.y42_c00221{bottom:293.973333pt;}
.y41_c00221{bottom:310.106667pt;}
.y19_c00221{bottom:312.506667pt;}
.y40_c00221{bottom:326.640000pt;}
.y18_c00221{bottom:328.773333pt;}
.y3f_c00221{bottom:342.506667pt;}
.y17_c00221{bottom:345.573333pt;}
.y3e_c00221{bottom:358.773333pt;}
.y16_c00221{bottom:361.440000pt;}
.y3d_c00221{bottom:375.306667pt;}
.y15_c00221{bottom:377.306667pt;}
.y3c_c00221{bottom:391.173333pt;}
.y14_c00221{bottom:397.706667pt;}
.y13_c00221{bottom:407.706667pt;}
.y3b_c00221{bottom:423.040000pt;}
.y3a_c00221{bottom:439.173333pt;}
.y12_c00221{bottom:441.040000pt;}
.y39_c00221{bottom:455.706667pt;}
.y11_c00221{bottom:457.440000pt;}
.y38_c00221{bottom:472.106667pt;}
.y10_c00221{bottom:473.440000pt;}
.y37_c00221{bottom:488.106667pt;}
.yf_c00221{bottom:489.306667pt;}
.y36_c00221{bottom:504.640000pt;}
.ye_c00221{bottom:505.840000pt;}
.y35_c00221{bottom:521.040000pt;}
.yd_c00221{bottom:522.240000pt;}
.y34_c00221{bottom:537.040000pt;}
.yc_c00221{bottom:538.240000pt;}
.y33_c00221{bottom:553.706667pt;}
.yb_c00221{bottom:554.373333pt;}
.y32_c00221{bottom:569.706667pt;}
.ya_c00221{bottom:570.506667pt;}
.y31_c00221{bottom:586.106667pt;}
.y9_c00221{bottom:587.040000pt;}
.y30_c00221{bottom:602.373333pt;}
.y8_c00221{bottom:602.906667pt;}
.y2f_c00221{bottom:618.240000pt;}
.y7_c00221{bottom:619.173333pt;}
.y2e_c00221{bottom:634.640000pt;}
.y6_c00221{bottom:635.306667pt;}
.y2d_c00221{bottom:651.040000pt;}
.y5_c00221{bottom:652.240000pt;}
.y2c_c00221{bottom:667.440000pt;}
.y4_c00221{bottom:668.640000pt;}
.y2b_c00221{bottom:683.440000pt;}
.y3_c00221{bottom:684.506667pt;}
.y2a_c00221{bottom:699.840000pt;}
.y2_c00221{bottom:700.240000pt;}
.y29_c00221{bottom:716.906667pt;}
.y1_c00221{bottom:718.106667pt;}
.h7_c00221{height:11.733399pt;}
.h8_c00221{height:38.937500pt;}
.h4_c00221{height:53.098667pt;}
.h3_c00221{height:55.893333pt;}
.h2_c00221{height:56.906667pt;}
.h5_c00221{height:62.812500pt;}
.h6_c00221{height:86.218750pt;}
.h1_c00221{height:756.666667pt;}
.h0_c00221{height:756.933333pt;}
.w2_c00221{width:93.222667pt;}
.w1_c00221{width:502.666667pt;}
.w0_c00221{width:502.800000pt;}
.x0_c00221{left:0.000000pt;}
.xb_c00221{left:35.333333pt;}
.x6_c00221{left:42.800000pt;}
.x4_c00221{left:88.400000pt;}
.x3_c00221{left:89.333333pt;}
.x2_c00221{left:90.933333pt;}
.x7_c00221{left:92.133333pt;}
.xc_c00221{left:93.200000pt;}
.x1_c00221{left:94.533333pt;}
.xa_c00221{left:110.400000pt;}
.xd_c00221{left:114.533333pt;}
.x8_c00221{left:130.800000pt;}
.x5_c00221{left:156.000000pt;}
.x9_c00221{left:167.733333pt;}
.x17_c00221{left:208.568237pt;}
.x12_c00221{left:281.333333pt;}
.x10_c00221{left:283.200000pt;}
.xf_c00221{left:284.666667pt;}
.x11_c00221{left:285.600000pt;}
.x13_c00221{left:286.533333pt;}
.x14_c00221{left:287.600000pt;}
.x16_c00221{left:288.933333pt;}
.xe_c00221{left:290.133333pt;}
.x15_c00221{left:311.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_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_96dfee9547cef4dfbcef8a13.woff2')format("woff");}.ff1_c00222{font-family:ff1_c00222;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00222;src:url('chunks/assets/font_316becfb11b9179f16642527.woff2')format("woff");}.ff2_c00222{font-family:ff2_c00222;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00222;src:url('chunks/assets/font_5e43f1ca05c0b4c24a0d4d9c.woff2')format("woff");}.ff3_c00222{font-family:ff3_c00222;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00222;src:url('chunks/assets/font_e1fa70d35c235fe12c4950d9.woff2')format("woff");}.ff4_c00222{font-family:ff4_c00222;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00222;src:url('chunks/assets/font_baeab89203408f507ef28c98.woff2')format("woff");}.ff5_c00222{font-family:ff5_c00222;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00222;src:url('chunks/assets/font_141781517ec7c1e4313e61fb.woff2')format("woff");}.ff6_c00222{font-family:ff6_c00222;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00222;src:url('chunks/assets/font_55eb9db8683fc23c726f566e.woff2')format("woff");}.ff7_c00222{font-family:ff7_c00222;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00222;src:url('chunks/assets/font_f720c31f9d81830eba4f8a0f.woff2')format("woff");}.ff8_c00222{font-family:ff8_c00222;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00222;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff9_c00222{font-family:ff9_c00222;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00222{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00222{vertical-align:-80.400000px;}
.v0_c00222{vertical-align:0.000000px;}
.ls4_c00222{letter-spacing:0.000000px;}
.ls3_c00222{letter-spacing:2.640000px;}
.ls0_c00222{letter-spacing:3.000000px;}
.ls1_c00222{letter-spacing:5.280000px;}
.ls2_c00222{letter-spacing:7.005000px;}
.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:-40.200000px;}
.ws5_c00222{word-spacing:-29.700000px;}
.ws3_c00222{word-spacing:-25.644000px;}
.ws4_c00222{word-spacing:-23.760000px;}
.ws1_c00222{word-spacing:-17.340000px;}
.ws2_c00222{word-spacing:-14.160000px;}
.ws7_c00222{word-spacing:0.000000px;}
.ws6_c00222{word-spacing:8.940000px;}
._19_c00222{margin-left:-22.320000px;}
._1e_c00222{margin-left:-20.520000px;}
._1f_c00222{margin-left:-13.080000px;}
._1d_c00222{margin-left:-11.460000px;}
._21_c00222{margin-left:-10.440000px;}
._20_c00222{margin-left:-8.820000px;}
._17_c00222{margin-left:-7.620000px;}
._1c_c00222{margin-left:-6.600000px;}
._b_c00222{margin-left:-4.920000px;}
._7_c00222{margin-left:-3.780000px;}
._a_c00222{margin-left:-1.920000px;}
._5_c00222{width:1.500000px;}
._6_c00222{width:2.700000px;}
._e_c00222{width:3.780000px;}
._d_c00222{width:4.920000px;}
._1_c00222{width:6.240000px;}
._0_c00222{width:8.040000px;}
._9_c00222{width:9.960000px;}
._3_c00222{width:11.160000px;}
._4_c00222{width:12.540000px;}
._13_c00222{width:13.620000px;}
._f_c00222{width:15.060000px;}
._11_c00222{width:17.040000px;}
._1b_c00222{width:18.840000px;}
._16_c00222{width:20.520000px;}
._2_c00222{width:23.340000px;}
._8_c00222{width:25.860000px;}
._10_c00222{width:27.660000px;}
._22_c00222{width:29.220000px;}
._23_c00222{width:31.140000px;}
._14_c00222{width:35.460000px;}
._c_c00222{width:37.980000px;}
._15_c00222{width:48.840000px;}
._25_c00222{width:50.820000px;}
._12_c00222{width:65.940000px;}
._24_c00222{width:83.640000px;}
._1a_c00222{width:138.540000px;}
._18_c00222{width:257.820000px;}
.fc2_c00222{color:transparent;}
.fc1_c00222{color:rgb(128,128,128);}
.fc0_c00222{color:rgb(0,0,0);}
.fs3_c00222{font-size:45.000000px;}
.fs2_c00222{font-size:48.000000px;}
.fs1_c00222{font-size:51.000000px;}
.fs0_c00222{font-size:60.000000px;}
.fs4_c00222{font-size:69.000000px;}
.y0_c00222{bottom:0.000000px;}
.y55_c00222{bottom:3.105000px;}
.y54_c00222{bottom:7.228357px;}
.y53_c00222{bottom:40.230000px;}
.y52_c00222{bottom:58.380000px;}
.y2a_c00222{bottom:58.680000px;}
.y51_c00222{bottom:76.230000px;}
.y29_c00222{bottom:78.030000px;}
.y50_c00222{bottom:93.780000px;}
.y28_c00222{bottom:96.180000px;}
.y4f_c00222{bottom:112.380000px;}
.y27_c00222{bottom:114.180000px;}
.y4e_c00222{bottom:130.380000px;}
.y26_c00222{bottom:131.580000px;}
.y4d_c00222{bottom:148.830000px;}
.y25_c00222{bottom:149.880000px;}
.y4c_c00222{bottom:166.680000px;}
.y24_c00222{bottom:168.480000px;}
.y4b_c00222{bottom:185.280000px;}
.y23_c00222{bottom:186.780000px;}
.y4a_c00222{bottom:203.280000px;}
.y22_c00222{bottom:204.930000px;}
.y49_c00222{bottom:221.430000px;}
.y21_c00222{bottom:223.080000px;}
.y20_c00222{bottom:241.080000px;}
.y1f_c00222{bottom:259.530000px;}
.y48_c00222{bottom:259.830000px;}
.y47_c00222{bottom:274.830000px;}
.y1e_c00222{bottom:277.530000px;}
.y46_c00222{bottom:294.630000px;}
.y1d_c00222{bottom:295.980000px;}
.y45_c00222{bottom:312.480000px;}
.y1c_c00222{bottom:313.230000px;}
.y44_c00222{bottom:330.180000px;}
.y1b_c00222{bottom:330.480000px;}
.y43_c00222{bottom:348.930000px;}
.y1a_c00222{bottom:349.380000px;}
.y19_c00222{bottom:366.930000px;}
.y42_c00222{bottom:384.780000px;}
.y18_c00222{bottom:385.380000px;}
.y41_c00222{bottom:402.030000px;}
.y17_c00222{bottom:402.930000px;}
.y16_c00222{bottom:420.630000px;}
.y40_c00222{bottom:421.080000px;}
.y15_c00222{bottom:438.480000px;}
.y3f_c00222{bottom:439.380000px;}
.y14_c00222{bottom:456.330000px;}
.y3e_c00222{bottom:457.680000px;}
.y13_c00222{bottom:474.480000px;}
.y3d_c00222{bottom:475.830000px;}
.y12_c00222{bottom:492.030000px;}
.y3c_c00222{bottom:493.830000px;}
.y11_c00222{bottom:509.730000px;}
.y3b_c00222{bottom:511.980000px;}
.y10_c00222{bottom:527.280000px;}
.y3a_c00222{bottom:531.180000px;}
.yf_c00222{bottom:544.830000px;}
.y39_c00222{bottom:548.430000px;}
.ye_c00222{bottom:563.580000px;}
.y38_c00222{bottom:566.730000px;}
.yd_c00222{bottom:582.180000px;}
.y37_c00222{bottom:584.280000px;}
.yc_c00222{bottom:600.030000px;}
.y36_c00222{bottom:603.180000px;}
.yb_c00222{bottom:618.330000px;}
.y35_c00222{bottom:620.730000px;}
.ya_c00222{bottom:635.280000px;}
.y34_c00222{bottom:639.330000px;}
.y9_c00222{bottom:655.080000px;}
.y33_c00222{bottom:658.230000px;}
.y8_c00222{bottom:672.930000px;}
.y32_c00222{bottom:676.380000px;}
.y7_c00222{bottom:690.480000px;}
.y31_c00222{bottom:694.530000px;}
.y6_c00222{bottom:708.480000px;}
.y30_c00222{bottom:712.530000px;}
.y5_c00222{bottom:726.630000px;}
.y2f_c00222{bottom:730.980000px;}
.y4_c00222{bottom:744.630000px;}
.y2e_c00222{bottom:748.980000px;}
.y3_c00222{bottom:762.780000px;}
.y2d_c00222{bottom:767.430000px;}
.y2_c00222{bottom:780.630000px;}
.y2c_c00222{bottom:784.980000px;}
.y1_c00222{bottom:802.530000px;}
.y2b_c00222{bottom:803.580000px;}
.h5_c00222{height:13.200074px;}
.h6_c00222{height:43.804688px;}
.h2_c00222{height:62.880000px;}
.h3_c00222{height:64.020000px;}
.h4_c00222{height:73.623000px;}
.h0_c00222{height:841.350000px;}
.h1_c00222{height:841.500000px;}
.w1_c00222{width:104.875500px;}
.w0_c00222{width:590.250000px;}
.x0_c00222{left:0.000000px;}
.x7_c00222{left:23.850000px;}
.x3_c00222{left:82.350000px;}
.x2_c00222{left:83.400000px;}
.x5_c00222{left:85.050000px;}
.x6_c00222{left:86.400000px;}
.x4_c00222{left:100.950000px;}
.x1_c00222{left:227.100000px;}
.xf_c00222{left:246.939240px;}
.x8_c00222{left:297.000000px;}
.xd_c00222{left:298.950000px;}
.xc_c00222{left:300.600000px;}
.x9_c00222{left:301.650000px;}
.xb_c00222{left:302.700000px;}
.xa_c00222{left:303.750000px;}
.xe_c00222{left:376.650000px;}
@media print{
.v1_c00222{vertical-align:-71.466667pt;}
.v0_c00222{vertical-align:0.000000pt;}
.ls4_c00222{letter-spacing:0.000000pt;}
.ls3_c00222{letter-spacing:2.346667pt;}
.ls0_c00222{letter-spacing:2.666667pt;}
.ls1_c00222{letter-spacing:4.693333pt;}
.ls2_c00222{letter-spacing:6.226667pt;}
.ws0_c00222{word-spacing:-35.733333pt;}
.ws5_c00222{word-spacing:-26.400000pt;}
.ws3_c00222{word-spacing:-22.794667pt;}
.ws4_c00222{word-spacing:-21.120000pt;}
.ws1_c00222{word-spacing:-15.413333pt;}
.ws2_c00222{word-spacing:-12.586667pt;}
.ws7_c00222{word-spacing:0.000000pt;}
.ws6_c00222{word-spacing:7.946667pt;}
._19_c00222{margin-left:-19.840000pt;}
._1e_c00222{margin-left:-18.240000pt;}
._1f_c00222{margin-left:-11.626667pt;}
._1d_c00222{margin-left:-10.186667pt;}
._21_c00222{margin-left:-9.280000pt;}
._20_c00222{margin-left:-7.840000pt;}
._17_c00222{margin-left:-6.773333pt;}
._1c_c00222{margin-left:-5.866667pt;}
._b_c00222{margin-left:-4.373333pt;}
._7_c00222{margin-left:-3.360000pt;}
._a_c00222{margin-left:-1.706667pt;}
._5_c00222{width:1.333333pt;}
._6_c00222{width:2.400000pt;}
._e_c00222{width:3.360000pt;}
._d_c00222{width:4.373333pt;}
._1_c00222{width:5.546667pt;}
._0_c00222{width:7.146667pt;}
._9_c00222{width:8.853333pt;}
._3_c00222{width:9.920000pt;}
._4_c00222{width:11.146667pt;}
._13_c00222{width:12.106667pt;}
._f_c00222{width:13.386667pt;}
._11_c00222{width:15.146667pt;}
._1b_c00222{width:16.746667pt;}
._16_c00222{width:18.240000pt;}
._2_c00222{width:20.746667pt;}
._8_c00222{width:22.986667pt;}
._10_c00222{width:24.586667pt;}
._22_c00222{width:25.973333pt;}
._23_c00222{width:27.680000pt;}
._14_c00222{width:31.520000pt;}
._c_c00222{width:33.760000pt;}
._15_c00222{width:43.413333pt;}
._25_c00222{width:45.173333pt;}
._12_c00222{width:58.613333pt;}
._24_c00222{width:74.346667pt;}
._1a_c00222{width:123.146667pt;}
._18_c00222{width:229.173333pt;}
.fs3_c00222{font-size:40.000000pt;}
.fs2_c00222{font-size:42.666667pt;}
.fs1_c00222{font-size:45.333333pt;}
.fs0_c00222{font-size:53.333333pt;}
.fs4_c00222{font-size:61.333333pt;}
.y0_c00222{bottom:0.000000pt;}
.y55_c00222{bottom:2.760000pt;}
.y54_c00222{bottom:6.425206pt;}
.y53_c00222{bottom:35.760000pt;}
.y52_c00222{bottom:51.893333pt;}
.y2a_c00222{bottom:52.160000pt;}
.y51_c00222{bottom:67.760000pt;}
.y29_c00222{bottom:69.360000pt;}
.y50_c00222{bottom:83.360000pt;}
.y28_c00222{bottom:85.493333pt;}
.y4f_c00222{bottom:99.893333pt;}
.y27_c00222{bottom:101.493333pt;}
.y4e_c00222{bottom:115.893333pt;}
.y26_c00222{bottom:116.960000pt;}
.y4d_c00222{bottom:132.293333pt;}
.y25_c00222{bottom:133.226667pt;}
.y4c_c00222{bottom:148.160000pt;}
.y24_c00222{bottom:149.760000pt;}
.y4b_c00222{bottom:164.693333pt;}
.y23_c00222{bottom:166.026667pt;}
.y4a_c00222{bottom:180.693333pt;}
.y22_c00222{bottom:182.160000pt;}
.y49_c00222{bottom:196.826667pt;}
.y21_c00222{bottom:198.293333pt;}
.y20_c00222{bottom:214.293333pt;}
.y1f_c00222{bottom:230.693333pt;}
.y48_c00222{bottom:230.960000pt;}
.y47_c00222{bottom:244.293333pt;}
.y1e_c00222{bottom:246.693333pt;}
.y46_c00222{bottom:261.893333pt;}
.y1d_c00222{bottom:263.093333pt;}
.y45_c00222{bottom:277.760000pt;}
.y1c_c00222{bottom:278.426667pt;}
.y44_c00222{bottom:293.493333pt;}
.y1b_c00222{bottom:293.760000pt;}
.y43_c00222{bottom:310.160000pt;}
.y1a_c00222{bottom:310.560000pt;}
.y19_c00222{bottom:326.160000pt;}
.y42_c00222{bottom:342.026667pt;}
.y18_c00222{bottom:342.560000pt;}
.y41_c00222{bottom:357.360000pt;}
.y17_c00222{bottom:358.160000pt;}
.y16_c00222{bottom:373.893333pt;}
.y40_c00222{bottom:374.293333pt;}
.y15_c00222{bottom:389.760000pt;}
.y3f_c00222{bottom:390.560000pt;}
.y14_c00222{bottom:405.626667pt;}
.y3e_c00222{bottom:406.826667pt;}
.y13_c00222{bottom:421.760000pt;}
.y3d_c00222{bottom:422.960000pt;}
.y12_c00222{bottom:437.360000pt;}
.y3c_c00222{bottom:438.960000pt;}
.y11_c00222{bottom:453.093333pt;}
.y3b_c00222{bottom:455.093333pt;}
.y10_c00222{bottom:468.693333pt;}
.y3a_c00222{bottom:472.160000pt;}
.yf_c00222{bottom:484.293333pt;}
.y39_c00222{bottom:487.493333pt;}
.ye_c00222{bottom:500.960000pt;}
.y38_c00222{bottom:503.760000pt;}
.yd_c00222{bottom:517.493333pt;}
.y37_c00222{bottom:519.360000pt;}
.yc_c00222{bottom:533.360000pt;}
.y36_c00222{bottom:536.160000pt;}
.yb_c00222{bottom:549.626667pt;}
.y35_c00222{bottom:551.760000pt;}
.ya_c00222{bottom:564.693333pt;}
.y34_c00222{bottom:568.293333pt;}
.y9_c00222{bottom:582.293333pt;}
.y33_c00222{bottom:585.093333pt;}
.y8_c00222{bottom:598.160000pt;}
.y32_c00222{bottom:601.226667pt;}
.y7_c00222{bottom:613.760000pt;}
.y31_c00222{bottom:617.360000pt;}
.y6_c00222{bottom:629.760000pt;}
.y30_c00222{bottom:633.360000pt;}
.y5_c00222{bottom:645.893333pt;}
.y2f_c00222{bottom:649.760000pt;}
.y4_c00222{bottom:661.893333pt;}
.y2e_c00222{bottom:665.760000pt;}
.y3_c00222{bottom:678.026667pt;}
.y2d_c00222{bottom:682.160000pt;}
.y2_c00222{bottom:693.893333pt;}
.y2c_c00222{bottom:697.760000pt;}
.y1_c00222{bottom:713.360000pt;}
.y2b_c00222{bottom:714.293333pt;}
.h5_c00222{height:11.733399pt;}
.h6_c00222{height:38.937500pt;}
.h2_c00222{height:55.893333pt;}
.h3_c00222{height:56.906667pt;}
.h4_c00222{height:65.442667pt;}
.h0_c00222{height:747.866667pt;}
.h1_c00222{height:748.000000pt;}
.w1_c00222{width:93.222667pt;}
.w0_c00222{width:524.666667pt;}
.x0_c00222{left:0.000000pt;}
.x7_c00222{left:21.200000pt;}
.x3_c00222{left:73.200000pt;}
.x2_c00222{left:74.133333pt;}
.x5_c00222{left:75.600000pt;}
.x6_c00222{left:76.800000pt;}
.x4_c00222{left:89.733333pt;}
.x1_c00222{left:201.866667pt;}
.xf_c00222{left:219.501546pt;}
.x8_c00222{left:264.000000pt;}
.xd_c00222{left:265.733333pt;}
.xc_c00222{left:267.200000pt;}
.x9_c00222{left:268.133333pt;}
.xb_c00222{left:269.066667pt;}
.xa_c00222{left:270.000000pt;}
.xe_c00222{left:334.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4385a22212cac1b019dfc957.woff2')format("woff");}.ff1_c00223{font-family:ff1_c00223;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00223;src:url('chunks/assets/font_a3a97d2b4c0c9f0a1edb74e7.woff2')format("woff");}.ff2_c00223{font-family:ff2_c00223;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00223;src:url('chunks/assets/font_e0fdb0f41e73c19d42392cfc.woff2')format("woff");}.ff3_c00223{font-family:ff3_c00223;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00223;src:url('chunks/assets/font_0ce391de997f24f9f9dd37f4.woff2')format("woff");}.ff4_c00223{font-family:ff4_c00223;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00223;src:url('chunks/assets/font_eb5e52b0d7cc5b530d344d5e.woff2')format("woff");}.ff5_c00223{font-family:ff5_c00223;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00223;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff6_c00223{font-family:ff6_c00223;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00223{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00223{vertical-align:0.000000px;}
.ls3_c00223{letter-spacing:0.000000px;}
.ls2_c00223{letter-spacing:0.405000px;}
.ls1_c00223{letter-spacing:3.000000px;}
.ls0_c00223{letter-spacing:4.200000px;}
.ls4_c00223{letter-spacing:6.000000px;}
.ls5_c00223{letter-spacing:12.000000px;}
.ls6_c00223{letter-spacing:15.000000px;}
.sc__c00223{text-shadow:none;}
.sc0_c00223{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00223{-webkit-text-stroke:0px transparent;}
.sc0_c00223{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00223{word-spacing:-29.295000px;}
.ws6_c00223{word-spacing:-29.160000px;}
.ws3_c00223{word-spacing:-18.060000px;}
.ws4_c00223{word-spacing:-17.340000px;}
.ws0_c00223{word-spacing:-14.160000px;}
.ws1_c00223{word-spacing:-6.072000px;}
.ws7_c00223{word-spacing:0.000000px;}
.ws5_c00223{word-spacing:0.600000px;}
._1b_c00223{margin-left:-30.360000px;}
._35_c00223{margin-left:-18.858000px;}
._19_c00223{margin-left:-16.980000px;}
._32_c00223{margin-left:-13.020000px;}
._28_c00223{margin-left:-11.166000px;}
._33_c00223{margin-left:-10.080000px;}
._34_c00223{margin-left:-8.634000px;}
._2e_c00223{margin-left:-6.660000px;}
._e_c00223{margin-left:-5.160000px;}
._13_c00223{margin-left:-3.840000px;}
._11_c00223{margin-left:-2.400000px;}
._8_c00223{margin-left:-1.260000px;}
._4_c00223{width:1.320000px;}
._3_c00223{width:3.240000px;}
._d_c00223{width:4.260000px;}
._1_c00223{width:5.640000px;}
._0_c00223{width:6.780000px;}
._c_c00223{width:8.520000px;}
._38_c00223{width:9.600000px;}
._2_c00223{width:10.620000px;}
._7_c00223{width:11.700000px;}
._10_c00223{width:13.260000px;}
._b_c00223{width:14.760000px;}
._30_c00223{width:15.840000px;}
._a_c00223{width:17.040000px;}
._29_c00223{width:19.212000px;}
._1c_c00223{width:20.460000px;}
._9_c00223{width:21.840000px;}
._16_c00223{width:23.202000px;}
._2b_c00223{width:24.438000px;}
._20_c00223{width:25.440000px;}
._12_c00223{width:26.880000px;}
._1e_c00223{width:28.020000px;}
._21_c00223{width:30.060000px;}
._f_c00223{width:32.820000px;}
._5_c00223{width:35.340000px;}
._6_c00223{width:38.820000px;}
._27_c00223{width:41.640000px;}
._14_c00223{width:43.740000px;}
._15_c00223{width:45.000000px;}
._18_c00223{width:47.040000px;}
._17_c00223{width:49.500000px;}
._1d_c00223{width:50.760000px;}
._1a_c00223{width:52.320000px;}
._2a_c00223{width:53.640000px;}
._25_c00223{width:54.840000px;}
._22_c00223{width:56.220000px;}
._26_c00223{width:57.450000px;}
._24_c00223{width:58.620000px;}
._23_c00223{width:59.640000px;}
._2c_c00223{width:61.740000px;}
._3c_c00223{width:65.178000px;}
._2f_c00223{width:67.680000px;}
._36_c00223{width:69.780000px;}
._39_c00223{width:97.794000px;}
._3d_c00223{width:115.140000px;}
._31_c00223{width:116.280000px;}
._37_c00223{width:120.540000px;}
._3b_c00223{width:126.228000px;}
._3a_c00223{width:226.380000px;}
._2d_c00223{width:331.440000px;}
._1f_c00223{width:400.800000px;}
.fc2_c00223{color:transparent;}
.fc1_c00223{color:rgb(128,128,128);}
.fc0_c00223{color:rgb(0,0,0);}
.fs1_c00223{font-size:42.000000px;}
.fs3_c00223{font-size:45.000000px;}
.fs4_c00223{font-size:48.000000px;}
.fs2_c00223{font-size:57.000000px;}
.fs0_c00223{font-size:60.000000px;}
.y0_c00223{bottom:0.000000px;}
.y2c_c00223{bottom:3.105000px;}
.y2b_c00223{bottom:7.228357px;}
.y2a_c00223{bottom:38.880000px;}
.y29_c00223{bottom:59.730000px;}
.y28_c00223{bottom:78.030000px;}
.y27_c00223{bottom:97.230000px;}
.y26_c00223{bottom:115.380000px;}
.y25_c00223{bottom:133.380000px;}
.y24_c00223{bottom:151.980000px;}
.y23_c00223{bottom:170.730000px;}
.y22_c00223{bottom:188.430000px;}
.y21_c00223{bottom:207.180000px;}
.y20_c00223{bottom:226.080000px;}
.y1f_c00223{bottom:243.330000px;}
.y1e_c00223{bottom:261.930000px;}
.y1d_c00223{bottom:281.130000px;}
.y1c_c00223{bottom:299.730000px;}
.y1b_c00223{bottom:316.530000px;}
.y1a_c00223{bottom:335.430000px;}
.y19_c00223{bottom:353.130000px;}
.y18_c00223{bottom:371.880000px;}
.y17_c00223{bottom:389.880000px;}
.y16_c00223{bottom:408.330000px;}
.y15_c00223{bottom:427.230000px;}
.y14_c00223{bottom:445.530000px;}
.y13_c00223{bottom:463.080000px;}
.y12_c00223{bottom:482.280000px;}
.y11_c00223{bottom:500.880000px;}
.y10_c00223{bottom:518.130000px;}
.yf_c00223{bottom:537.630000px;}
.ye_c00223{bottom:555.180000px;}
.yd_c00223{bottom:573.180000px;}
.yc_c00223{bottom:591.630000px;}
.yb_c00223{bottom:610.230000px;}
.ya_c00223{bottom:628.380000px;}
.y9_c00223{bottom:647.280000px;}
.y8_c00223{bottom:664.830000px;}
.y7_c00223{bottom:683.430000px;}
.y6_c00223{bottom:701.730000px;}
.y5_c00223{bottom:720.630000px;}
.y4_c00223{bottom:738.480000px;}
.y3_c00223{bottom:757.080000px;}
.y2_c00223{bottom:774.930000px;}
.y1_c00223{bottom:793.230000px;}
.h4_c00223{height:13.200074px;}
.h5_c00223{height:43.804688px;}
.h2_c00223{height:62.880000px;}
.h3_c00223{height:64.020000px;}
.h1_c00223{height:843.750000px;}
.h0_c00223{height:844.050000px;}
.w2_c00223{width:104.875500px;}
.w0_c00223{width:559.950000px;}
.w1_c00223{width:560.250000px;}
.x0_c00223{left:0.000000px;}
.x7_c00223{left:20.550000px;}
.x6_c00223{left:23.250000px;}
.xb_c00223{left:82.650000px;}
.xd_c00223{left:84.150000px;}
.xc_c00223{left:85.350000px;}
.xa_c00223{left:86.400000px;}
.x5_c00223{left:88.950000px;}
.x4_c00223{left:90.000000px;}
.x3_c00223{left:91.650000px;}
.x2_c00223{left:92.850000px;}
.x1_c00223{left:94.200000px;}
.x9_c00223{left:104.700000px;}
.x8_c00223{left:129.750000px;}
.xf_c00223{left:231.789230px;}
.xe_c00223{left:457.050000px;}
@media print{
.v0_c00223{vertical-align:0.000000pt;}
.ls3_c00223{letter-spacing:0.000000pt;}
.ls2_c00223{letter-spacing:0.360000pt;}
.ls1_c00223{letter-spacing:2.666667pt;}
.ls0_c00223{letter-spacing:3.733333pt;}
.ls4_c00223{letter-spacing:5.333333pt;}
.ls5_c00223{letter-spacing:10.666667pt;}
.ls6_c00223{letter-spacing:13.333333pt;}
.ws2_c00223{word-spacing:-26.040000pt;}
.ws6_c00223{word-spacing:-25.920000pt;}
.ws3_c00223{word-spacing:-16.053333pt;}
.ws4_c00223{word-spacing:-15.413333pt;}
.ws0_c00223{word-spacing:-12.586667pt;}
.ws1_c00223{word-spacing:-5.397333pt;}
.ws7_c00223{word-spacing:0.000000pt;}
.ws5_c00223{word-spacing:0.533333pt;}
._1b_c00223{margin-left:-26.986667pt;}
._35_c00223{margin-left:-16.762667pt;}
._19_c00223{margin-left:-15.093333pt;}
._32_c00223{margin-left:-11.573333pt;}
._28_c00223{margin-left:-9.925333pt;}
._33_c00223{margin-left:-8.960000pt;}
._34_c00223{margin-left:-7.674667pt;}
._2e_c00223{margin-left:-5.920000pt;}
._e_c00223{margin-left:-4.586667pt;}
._13_c00223{margin-left:-3.413333pt;}
._11_c00223{margin-left:-2.133333pt;}
._8_c00223{margin-left:-1.120000pt;}
._4_c00223{width:1.173333pt;}
._3_c00223{width:2.880000pt;}
._d_c00223{width:3.786667pt;}
._1_c00223{width:5.013333pt;}
._0_c00223{width:6.026667pt;}
._c_c00223{width:7.573333pt;}
._38_c00223{width:8.533333pt;}
._2_c00223{width:9.440000pt;}
._7_c00223{width:10.400000pt;}
._10_c00223{width:11.786667pt;}
._b_c00223{width:13.120000pt;}
._30_c00223{width:14.080000pt;}
._a_c00223{width:15.146667pt;}
._29_c00223{width:17.077333pt;}
._1c_c00223{width:18.186667pt;}
._9_c00223{width:19.413333pt;}
._16_c00223{width:20.624000pt;}
._2b_c00223{width:21.722667pt;}
._20_c00223{width:22.613333pt;}
._12_c00223{width:23.893333pt;}
._1e_c00223{width:24.906667pt;}
._21_c00223{width:26.720000pt;}
._f_c00223{width:29.173333pt;}
._5_c00223{width:31.413333pt;}
._6_c00223{width:34.506667pt;}
._27_c00223{width:37.013333pt;}
._14_c00223{width:38.880000pt;}
._15_c00223{width:40.000000pt;}
._18_c00223{width:41.813333pt;}
._17_c00223{width:44.000000pt;}
._1d_c00223{width:45.120000pt;}
._1a_c00223{width:46.506667pt;}
._2a_c00223{width:47.680000pt;}
._25_c00223{width:48.746667pt;}
._22_c00223{width:49.973333pt;}
._26_c00223{width:51.066667pt;}
._24_c00223{width:52.106667pt;}
._23_c00223{width:53.013333pt;}
._2c_c00223{width:54.880000pt;}
._3c_c00223{width:57.936000pt;}
._2f_c00223{width:60.160000pt;}
._36_c00223{width:62.026667pt;}
._39_c00223{width:86.928000pt;}
._3d_c00223{width:102.346667pt;}
._31_c00223{width:103.360000pt;}
._37_c00223{width:107.146667pt;}
._3b_c00223{width:112.202667pt;}
._3a_c00223{width:201.226667pt;}
._2d_c00223{width:294.613333pt;}
._1f_c00223{width:356.266667pt;}
.fs1_c00223{font-size:37.333333pt;}
.fs3_c00223{font-size:40.000000pt;}
.fs4_c00223{font-size:42.666667pt;}
.fs2_c00223{font-size:50.666667pt;}
.fs0_c00223{font-size:53.333333pt;}
.y0_c00223{bottom:0.000000pt;}
.y2c_c00223{bottom:2.760000pt;}
.y2b_c00223{bottom:6.425206pt;}
.y2a_c00223{bottom:34.560000pt;}
.y29_c00223{bottom:53.093333pt;}
.y28_c00223{bottom:69.360000pt;}
.y27_c00223{bottom:86.426667pt;}
.y26_c00223{bottom:102.560000pt;}
.y25_c00223{bottom:118.560000pt;}
.y24_c00223{bottom:135.093333pt;}
.y23_c00223{bottom:151.760000pt;}
.y22_c00223{bottom:167.493333pt;}
.y21_c00223{bottom:184.160000pt;}
.y20_c00223{bottom:200.960000pt;}
.y1f_c00223{bottom:216.293333pt;}
.y1e_c00223{bottom:232.826667pt;}
.y1d_c00223{bottom:249.893333pt;}
.y1c_c00223{bottom:266.426667pt;}
.y1b_c00223{bottom:281.360000pt;}
.y1a_c00223{bottom:298.160000pt;}
.y19_c00223{bottom:313.893333pt;}
.y18_c00223{bottom:330.560000pt;}
.y17_c00223{bottom:346.560000pt;}
.y16_c00223{bottom:362.960000pt;}
.y15_c00223{bottom:379.760000pt;}
.y14_c00223{bottom:396.026667pt;}
.y13_c00223{bottom:411.626667pt;}
.y12_c00223{bottom:428.693333pt;}
.y11_c00223{bottom:445.226667pt;}
.y10_c00223{bottom:460.560000pt;}
.yf_c00223{bottom:477.893333pt;}
.ye_c00223{bottom:493.493333pt;}
.yd_c00223{bottom:509.493333pt;}
.yc_c00223{bottom:525.893333pt;}
.yb_c00223{bottom:542.426667pt;}
.ya_c00223{bottom:558.560000pt;}
.y9_c00223{bottom:575.360000pt;}
.y8_c00223{bottom:590.960000pt;}
.y7_c00223{bottom:607.493333pt;}
.y6_c00223{bottom:623.760000pt;}
.y5_c00223{bottom:640.560000pt;}
.y4_c00223{bottom:656.426667pt;}
.y3_c00223{bottom:672.960000pt;}
.y2_c00223{bottom:688.826667pt;}
.y1_c00223{bottom:705.093333pt;}
.h4_c00223{height:11.733399pt;}
.h5_c00223{height:38.937500pt;}
.h2_c00223{height:55.893333pt;}
.h3_c00223{height:56.906667pt;}
.h1_c00223{height:750.000000pt;}
.h0_c00223{height:750.266667pt;}
.w2_c00223{width:93.222667pt;}
.w0_c00223{width:497.733333pt;}
.w1_c00223{width:498.000000pt;}
.x0_c00223{left:0.000000pt;}
.x7_c00223{left:18.266667pt;}
.x6_c00223{left:20.666667pt;}
.xb_c00223{left:73.466667pt;}
.xd_c00223{left:74.800000pt;}
.xc_c00223{left:75.866667pt;}
.xa_c00223{left:76.800000pt;}
.x5_c00223{left:79.066667pt;}
.x4_c00223{left:80.000000pt;}
.x3_c00223{left:81.466667pt;}
.x2_c00223{left:82.533333pt;}
.x1_c00223{left:83.733333pt;}
.x9_c00223{left:93.066667pt;}
.x8_c00223{left:115.333333pt;}
.xf_c00223{left:206.034871pt;}
.xe_c00223{left:406.266667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_8e9af62a38d3470ced708d7e.woff2')format("woff");}.ff1_c00224{font-family:ff1_c00224;line-height:1.437000;font-style:normal;font-weight:normal;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_a0eebf0137b640957c5249e9.woff2')format("woff");}.ff2_c00224{font-family:ff2_c00224;line-height:1.437000;font-style:normal;font-weight:normal;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_dfb3bcb726d70832edb48303.woff2')format("woff");}.ff3_c00224{font-family:ff3_c00224;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00224;src:url('chunks/assets/font_9c7bb283953260bce272803d.woff2')format("woff");}.ff4_c00224{font-family:ff4_c00224;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00224;src:url('chunks/assets/font_7373b816bda36b0b508b862e.woff2')format("woff");}.ff5_c00224{font-family:ff5_c00224;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00224;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff6_c00224{font-family:ff6_c00224;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00224{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00224{vertical-align:0.000000px;}
.v1_c00224{vertical-align:75.600000px;}
.ls4_c00224{letter-spacing:0.000000px;}
.ls2_c00224{letter-spacing:2.400000px;}
.ls3_c00224{letter-spacing:3.000000px;}
.ls0_c00224{letter-spacing:8.202000px;}
.ls1_c00224{letter-spacing:9.120000px;}
.sc__c00224{text-shadow:none;}
.sc0_c00224{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00224{-webkit-text-stroke:0px transparent;}
.sc0_c00224{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00224{word-spacing:-29.295000px;}
.ws2_c00224{word-spacing:-24.180000px;}
.ws0_c00224{word-spacing:-18.060000px;}
.ws1_c00224{word-spacing:-14.160000px;}
.ws4_c00224{word-spacing:0.000000px;}
._19_c00224{margin-left:-16.860000px;}
._1a_c00224{margin-left:-14.340000px;}
._18_c00224{margin-left:-13.320000px;}
._20_c00224{margin-left:-12.000000px;}
._1d_c00224{margin-left:-10.800000px;}
._22_c00224{margin-left:-9.540000px;}
._c_c00224{margin-left:-8.400000px;}
._1c_c00224{margin-left:-6.060000px;}
._2_c00224{margin-left:-4.800000px;}
._1b_c00224{margin-left:-3.480000px;}
._4_c00224{margin-left:-2.460000px;}
._1_c00224{margin-left:-1.440000px;}
._0_c00224{width:1.740000px;}
._6_c00224{width:3.000000px;}
._7_c00224{width:4.140000px;}
._8_c00224{width:5.220000px;}
._5_c00224{width:6.840000px;}
._9_c00224{width:8.040000px;}
._3_c00224{width:9.840000px;}
._10_c00224{width:11.280000px;}
._14_c00224{width:12.720000px;}
._12_c00224{width:13.860000px;}
._f_c00224{width:15.840000px;}
._16_c00224{width:17.820000px;}
._a_c00224{width:19.620000px;}
._26_c00224{width:20.640000px;}
._13_c00224{width:21.720000px;}
._15_c00224{width:23.220000px;}
._11_c00224{width:24.360000px;}
._25_c00224{width:25.380000px;}
._d_c00224{width:27.060000px;}
._17_c00224{width:28.680000px;}
._23_c00224{width:31.980000px;}
._1f_c00224{width:34.020000px;}
._21_c00224{width:35.280000px;}
._e_c00224{width:37.860000px;}
._1e_c00224{width:59.040000px;}
._b_c00224{width:71.400000px;}
._24_c00224{width:93.660000px;}
._27_c00224{width:150.240000px;}
.fc2_c00224{color:transparent;}
.fc1_c00224{color:rgb(128,128,128);}
.fc0_c00224{color:rgb(0,0,0);}
.fs2_c00224{font-size:45.000000px;}
.fs3_c00224{font-size:48.000000px;}
.fs0_c00224{font-size:60.000000px;}
.fs1_c00224{font-size:159.000000px;}
.y0_c00224{bottom:0.000000px;}
.y52_c00224{bottom:3.105000px;}
.y51_c00224{bottom:7.228357px;}
.y50_c00224{bottom:44.280000px;}
.y4f_c00224{bottom:63.780000px;}
.y27_c00224{bottom:66.180000px;}
.y4e_c00224{bottom:80.730000px;}
.y26_c00224{bottom:85.380000px;}
.y4d_c00224{bottom:99.630000px;}
.y25_c00224{bottom:103.680000px;}
.y4c_c00224{bottom:117.330000px;}
.y24_c00224{bottom:122.280000px;}
.y4b_c00224{bottom:135.630000px;}
.y23_c00224{bottom:138.780000px;}
.y4a_c00224{bottom:153.930000px;}
.y22_c00224{bottom:156.030000px;}
.y49_c00224{bottom:171.180000px;}
.y21_c00224{bottom:174.780000px;}
.y48_c00224{bottom:190.080000px;}
.y20_c00224{bottom:192.480000px;}
.y47_c00224{bottom:207.930000px;}
.y1f_c00224{bottom:209.880000px;}
.y46_c00224{bottom:226.080000px;}
.y1e_c00224{bottom:228.180000px;}
.y45_c00224{bottom:243.780000px;}
.y1d_c00224{bottom:246.780000px;}
.y44_c00224{bottom:262.680000px;}
.y1c_c00224{bottom:264.930000px;}
.y43_c00224{bottom:280.230000px;}
.y1b_c00224{bottom:282.930000px;}
.y42_c00224{bottom:298.080000px;}
.y1a_c00224{bottom:300.780000px;}
.y41_c00224{bottom:316.680000px;}
.y19_c00224{bottom:318.330000px;}
.y40_c00224{bottom:334.830000px;}
.y18_c00224{bottom:336.180000px;}
.y17_c00224{bottom:352.980000px;}
.y3f_c00224{bottom:353.130000px;}
.y3e_c00224{bottom:370.980000px;}
.y16_c00224{bottom:372.630000px;}
.y3d_c00224{bottom:389.430000px;}
.y15_c00224{bottom:390.780000px;}
.y3c_c00224{bottom:406.680000px;}
.y14_c00224{bottom:408.180000px;}
.y3b_c00224{bottom:424.980000px;}
.y13_c00224{bottom:426.030000px;}
.y3a_c00224{bottom:442.530000px;}
.y12_c00224{bottom:443.880000px;}
.y39_c00224{bottom:458.730000px;}
.y11_c00224{bottom:461.130000px;}
.y38_c00224{bottom:478.230000px;}
.y10_c00224{bottom:478.680000px;}
.ye_c00224{bottom:495.480000px;}
.y37_c00224{bottom:496.080000px;}
.yf_c00224{bottom:496.830000px;}
.y36_c00224{bottom:514.080000px;}
.y35_c00224{bottom:532.230000px;}
.yd_c00224{bottom:550.080000px;}
.y34_c00224{bottom:550.530000px;}
.y33_c00224{bottom:567.630000px;}
.yc_c00224{bottom:567.780000px;}
.yb_c00224{bottom:585.930000px;}
.y32_c00224{bottom:586.530000px;}
.ya_c00224{bottom:603.780000px;}
.y9_c00224{bottom:621.030000px;}
.y31_c00224{bottom:622.080000px;}
.y30_c00224{bottom:640.680000px;}
.y8_c00224{bottom:656.130000px;}
.y2f_c00224{bottom:658.530000px;}
.y7_c00224{bottom:675.030000px;}
.y2e_c00224{bottom:676.380000px;}
.y6_c00224{bottom:693.180000px;}
.y2d_c00224{bottom:694.380000px;}
.y5_c00224{bottom:711.180000px;}
.y2c_c00224{bottom:712.530000px;}
.y4_c00224{bottom:729.330000px;}
.y2b_c00224{bottom:730.680000px;}
.y3_c00224{bottom:747.330000px;}
.y2a_c00224{bottom:748.530000px;}
.y2_c00224{bottom:765.180000px;}
.y29_c00224{bottom:766.830000px;}
.y1_c00224{bottom:782.430000px;}
.y28_c00224{bottom:784.680000px;}
.h6_c00224{height:13.200074px;}
.h7_c00224{height:43.804688px;}
.h2_c00224{height:62.880000px;}
.h4_c00224{height:63.480000px;}
.h5_c00224{height:64.020000px;}
.h3_c00224{height:160.242188px;}
.h0_c00224{height:841.350000px;}
.h1_c00224{height:841.500000px;}
.w1_c00224{width:104.875500px;}
.w0_c00224{width:590.250000px;}
.x0_c00224{left:0.000000px;}
.x8_c00224{left:19.650000px;}
.x9_c00224{left:20.850000px;}
.xa_c00224{left:80.550000px;}
.x3_c00224{left:81.750000px;}
.x2_c00224{left:82.800000px;}
.x1_c00224{left:84.450000px;}
.x6_c00224{left:104.850000px;}
.x5_c00224{left:118.050000px;}
.x7_c00224{left:160.200000px;}
.x4_c00224{left:175.500000px;}
.x15_c00224{left:246.939240px;}
.x13_c00224{left:294.600000px;}
.x12_c00224{left:296.250000px;}
.xf_c00224{left:297.300000px;}
.x11_c00224{left:299.400000px;}
.x10_c00224{left:300.600000px;}
.xe_c00224{left:301.950000px;}
.xd_c00224{left:303.150000px;}
.xc_c00224{left:304.350000px;}
.xb_c00224{left:305.400000px;}
.x14_c00224{left:389.100000px;}
@media print{
.v0_c00224{vertical-align:0.000000pt;}
.v1_c00224{vertical-align:67.200000pt;}
.ls4_c00224{letter-spacing:0.000000pt;}
.ls2_c00224{letter-spacing:2.133333pt;}
.ls3_c00224{letter-spacing:2.666667pt;}
.ls0_c00224{letter-spacing:7.290667pt;}
.ls1_c00224{letter-spacing:8.106667pt;}
.ws3_c00224{word-spacing:-26.040000pt;}
.ws2_c00224{word-spacing:-21.493333pt;}
.ws0_c00224{word-spacing:-16.053333pt;}
.ws1_c00224{word-spacing:-12.586667pt;}
.ws4_c00224{word-spacing:0.000000pt;}
._19_c00224{margin-left:-14.986667pt;}
._1a_c00224{margin-left:-12.746667pt;}
._18_c00224{margin-left:-11.840000pt;}
._20_c00224{margin-left:-10.666667pt;}
._1d_c00224{margin-left:-9.600000pt;}
._22_c00224{margin-left:-8.480000pt;}
._c_c00224{margin-left:-7.466667pt;}
._1c_c00224{margin-left:-5.386667pt;}
._2_c00224{margin-left:-4.266667pt;}
._1b_c00224{margin-left:-3.093333pt;}
._4_c00224{margin-left:-2.186667pt;}
._1_c00224{margin-left:-1.280000pt;}
._0_c00224{width:1.546667pt;}
._6_c00224{width:2.666667pt;}
._7_c00224{width:3.680000pt;}
._8_c00224{width:4.640000pt;}
._5_c00224{width:6.080000pt;}
._9_c00224{width:7.146667pt;}
._3_c00224{width:8.746667pt;}
._10_c00224{width:10.026667pt;}
._14_c00224{width:11.306667pt;}
._12_c00224{width:12.320000pt;}
._f_c00224{width:14.080000pt;}
._16_c00224{width:15.840000pt;}
._a_c00224{width:17.440000pt;}
._26_c00224{width:18.346667pt;}
._13_c00224{width:19.306667pt;}
._15_c00224{width:20.640000pt;}
._11_c00224{width:21.653333pt;}
._25_c00224{width:22.560000pt;}
._d_c00224{width:24.053333pt;}
._17_c00224{width:25.493333pt;}
._23_c00224{width:28.426667pt;}
._1f_c00224{width:30.240000pt;}
._21_c00224{width:31.360000pt;}
._e_c00224{width:33.653333pt;}
._1e_c00224{width:52.480000pt;}
._b_c00224{width:63.466667pt;}
._24_c00224{width:83.253333pt;}
._27_c00224{width:133.546667pt;}
.fs2_c00224{font-size:40.000000pt;}
.fs3_c00224{font-size:42.666667pt;}
.fs0_c00224{font-size:53.333333pt;}
.fs1_c00224{font-size:141.333333pt;}
.y0_c00224{bottom:0.000000pt;}
.y52_c00224{bottom:2.760000pt;}
.y51_c00224{bottom:6.425206pt;}
.y50_c00224{bottom:39.360000pt;}
.y4f_c00224{bottom:56.693333pt;}
.y27_c00224{bottom:58.826667pt;}
.y4e_c00224{bottom:71.760000pt;}
.y26_c00224{bottom:75.893333pt;}
.y4d_c00224{bottom:88.560000pt;}
.y25_c00224{bottom:92.160000pt;}
.y4c_c00224{bottom:104.293333pt;}
.y24_c00224{bottom:108.693333pt;}
.y4b_c00224{bottom:120.560000pt;}
.y23_c00224{bottom:123.360000pt;}
.y4a_c00224{bottom:136.826667pt;}
.y22_c00224{bottom:138.693333pt;}
.y49_c00224{bottom:152.160000pt;}
.y21_c00224{bottom:155.360000pt;}
.y48_c00224{bottom:168.960000pt;}
.y20_c00224{bottom:171.093333pt;}
.y47_c00224{bottom:184.826667pt;}
.y1f_c00224{bottom:186.560000pt;}
.y46_c00224{bottom:200.960000pt;}
.y1e_c00224{bottom:202.826667pt;}
.y45_c00224{bottom:216.693333pt;}
.y1d_c00224{bottom:219.360000pt;}
.y44_c00224{bottom:233.493333pt;}
.y1c_c00224{bottom:235.493333pt;}
.y43_c00224{bottom:249.093333pt;}
.y1b_c00224{bottom:251.493333pt;}
.y42_c00224{bottom:264.960000pt;}
.y1a_c00224{bottom:267.360000pt;}
.y41_c00224{bottom:281.493333pt;}
.y19_c00224{bottom:282.960000pt;}
.y40_c00224{bottom:297.626667pt;}
.y18_c00224{bottom:298.826667pt;}
.y17_c00224{bottom:313.760000pt;}
.y3f_c00224{bottom:313.893333pt;}
.y3e_c00224{bottom:329.760000pt;}
.y16_c00224{bottom:331.226667pt;}
.y3d_c00224{bottom:346.160000pt;}
.y15_c00224{bottom:347.360000pt;}
.y3c_c00224{bottom:361.493333pt;}
.y14_c00224{bottom:362.826667pt;}
.y3b_c00224{bottom:377.760000pt;}
.y13_c00224{bottom:378.693333pt;}
.y3a_c00224{bottom:393.360000pt;}
.y12_c00224{bottom:394.560000pt;}
.y39_c00224{bottom:407.760000pt;}
.y11_c00224{bottom:409.893333pt;}
.y38_c00224{bottom:425.093333pt;}
.y10_c00224{bottom:425.493333pt;}
.ye_c00224{bottom:440.426667pt;}
.y37_c00224{bottom:440.960000pt;}
.yf_c00224{bottom:441.626667pt;}
.y36_c00224{bottom:456.960000pt;}
.y35_c00224{bottom:473.093333pt;}
.yd_c00224{bottom:488.960000pt;}
.y34_c00224{bottom:489.360000pt;}
.y33_c00224{bottom:504.560000pt;}
.yc_c00224{bottom:504.693333pt;}
.yb_c00224{bottom:520.826667pt;}
.y32_c00224{bottom:521.360000pt;}
.ya_c00224{bottom:536.693333pt;}
.y9_c00224{bottom:552.026667pt;}
.y31_c00224{bottom:552.960000pt;}
.y30_c00224{bottom:569.493333pt;}
.y8_c00224{bottom:583.226667pt;}
.y2f_c00224{bottom:585.360000pt;}
.y7_c00224{bottom:600.026667pt;}
.y2e_c00224{bottom:601.226667pt;}
.y6_c00224{bottom:616.160000pt;}
.y2d_c00224{bottom:617.226667pt;}
.y5_c00224{bottom:632.160000pt;}
.y2c_c00224{bottom:633.360000pt;}
.y4_c00224{bottom:648.293333pt;}
.y2b_c00224{bottom:649.493333pt;}
.y3_c00224{bottom:664.293333pt;}
.y2a_c00224{bottom:665.360000pt;}
.y2_c00224{bottom:680.160000pt;}
.y29_c00224{bottom:681.626667pt;}
.y1_c00224{bottom:695.493333pt;}
.y28_c00224{bottom:697.493333pt;}
.h6_c00224{height:11.733399pt;}
.h7_c00224{height:38.937500pt;}
.h2_c00224{height:55.893333pt;}
.h4_c00224{height:56.426667pt;}
.h5_c00224{height:56.906667pt;}
.h3_c00224{height:142.437500pt;}
.h0_c00224{height:747.866667pt;}
.h1_c00224{height:748.000000pt;}
.w1_c00224{width:93.222667pt;}
.w0_c00224{width:524.666667pt;}
.x0_c00224{left:0.000000pt;}
.x8_c00224{left:17.466667pt;}
.x9_c00224{left:18.533333pt;}
.xa_c00224{left:71.600000pt;}
.x3_c00224{left:72.666667pt;}
.x2_c00224{left:73.600000pt;}
.x1_c00224{left:75.066667pt;}
.x6_c00224{left:93.200000pt;}
.x5_c00224{left:104.933333pt;}
.x7_c00224{left:142.400000pt;}
.x4_c00224{left:156.000000pt;}
.x15_c00224{left:219.501546pt;}
.x13_c00224{left:261.866667pt;}
.x12_c00224{left:263.333333pt;}
.xf_c00224{left:264.266667pt;}
.x11_c00224{left:266.133333pt;}
.x10_c00224{left:267.200000pt;}
.xe_c00224{left:268.400000pt;}
.xd_c00224{left:269.466667pt;}
.xc_c00224{left:270.533333pt;}
.xb_c00224{left:271.466667pt;}
.x14_c00224{left:345.866667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_7384d69a1c93f41e55961262.woff2')format("woff");}.ff1_c00225{font-family:ff1_c00225;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00225;src:url('chunks/assets/font_bf28cd02c4d77ecc7050f995.woff2')format("woff");}.ff2_c00225{font-family:ff2_c00225;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00225;src:url('chunks/assets/font_f4324f3a19e5f662a4da288c.woff2')format("woff");}.ff3_c00225{font-family:ff3_c00225;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00225;src:url('chunks/assets/font_92730ca4c47c8801508fab6b.woff2')format("woff");}.ff4_c00225{font-family:ff4_c00225;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00225;src:url('chunks/assets/font_0ac0844304323710019bbb0e.woff2')format("woff");}.ff5_c00225{font-family:ff5_c00225;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00225;src:url('chunks/assets/font_2d07c96214b3219e53b21536.woff2')format("woff");}.ff6_c00225{font-family:ff6_c00225;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00225;src:url('chunks/assets/font_0d104fe1381ced9a17bbee5e.woff2')format("woff");}.ff7_c00225{font-family:ff7_c00225;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:ff8_c00225;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff8_c00225{font-family:ff8_c00225;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:ff9_c00225;src:url('chunks/assets/font_f9efa8e1a80bf4cdd85cc9b2.woff2')format("woff");}.ff9_c00225{font-family:ff9_c00225;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00225;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ffa_c00225{font-family:ffa_c00225;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00225{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00225{vertical-align:0.000000px;}
.ls5_c00225{letter-spacing:0.000000px;}
.ls0_c00225{letter-spacing:3.000000px;}
.ls4_c00225{letter-spacing:4.605000px;}
.ls3_c00225{letter-spacing:8.805000px;}
.ls1_c00225{letter-spacing:11.400000px;}
.ls2_c00225{letter-spacing:15.000000px;}
.sc__c00225{text-shadow:none;}
.sc0_c00225{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00225{-webkit-text-stroke:0px transparent;}
.sc0_c00225{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00225{word-spacing:-33.000000px;}
.ws4_c00225{word-spacing:-18.060000px;}
.ws1_c00225{word-spacing:-17.250000px;}
.ws2_c00225{word-spacing:-16.500000px;}
.ws0_c00225{word-spacing:-14.160000px;}
.ws5_c00225{word-spacing:0.000000px;}
._21_c00225{margin-left:-33.483000px;}
._1e_c00225{margin-left:-29.172000px;}
._22_c00225{margin-left:-23.250000px;}
._24_c00225{margin-left:-21.111000px;}
._26_c00225{margin-left:-18.972000px;}
._20_c00225{margin-left:-16.728000px;}
._1f_c00225{margin-left:-15.624000px;}
._23_c00225{margin-left:-14.508000px;}
._27_c00225{margin-left:-11.811000px;}
._25_c00225{margin-left:-10.725000px;}
._1d_c00225{margin-left:-9.468000px;}
._19_c00225{margin-left:-8.040000px;}
._14_c00225{margin-left:-6.780000px;}
._d_c00225{margin-left:-5.160000px;}
._13_c00225{margin-left:-4.140000px;}
._8_c00225{margin-left:-2.640000px;}
._7_c00225{margin-left:-1.380000px;}
._a_c00225{width:1.200000px;}
._b_c00225{width:2.640000px;}
._c_c00225{width:3.960000px;}
._0_c00225{width:5.520000px;}
._f_c00225{width:7.500000px;}
._1_c00225{width:8.700000px;}
._12_c00225{width:10.200000px;}
._16_c00225{width:11.700000px;}
._10_c00225{width:13.080000px;}
._3_c00225{width:14.640000px;}
._4_c00225{width:15.840000px;}
._1c_c00225{width:17.280000px;}
._1a_c00225{width:18.420000px;}
._15_c00225{width:19.440000px;}
._e_c00225{width:20.640000px;}
._6_c00225{width:21.660000px;}
._5_c00225{width:23.700000px;}
._2b_c00225{width:24.900000px;}
._18_c00225{width:26.760000px;}
._11_c00225{width:31.800000px;}
._2a_c00225{width:33.240000px;}
._1b_c00225{width:36.240000px;}
._2c_c00225{width:41.760000px;}
._9_c00225{width:47.940000px;}
._2e_c00225{width:76.500000px;}
._28_c00225{width:90.780000px;}
._2d_c00225{width:103.140000px;}
._29_c00225{width:145.860000px;}
._17_c00225{width:196.380000px;}
._2_c00225{width:283.800000px;}
.fc2_c00225{color:transparent;}
.fc1_c00225{color:rgb(128,128,128);}
.fc0_c00225{color:rgb(0,0,0);}
.fs5_c00225{font-size:45.000000px;}
.fs6_c00225{font-size:48.000000px;}
.fs0_c00225{font-size:60.000000px;}
.fs1_c00225{font-size:66.000000px;}
.fs2_c00225{font-size:69.000000px;}
.fs3_c00225{font-size:72.000000px;}
.fs4_c00225{font-size:93.000000px;}
.y0_c00225{bottom:0.000000px;}
.y57_c00225{bottom:3.105000px;}
.y56_c00225{bottom:7.228369px;}
.y55_c00225{bottom:45.120000px;}
.y54_c00225{bottom:63.420000px;}
.y2a_c00225{bottom:65.070000px;}
.y53_c00225{bottom:81.570000px;}
.y29_c00225{bottom:83.070000px;}
.y52_c00225{bottom:99.570000px;}
.y28_c00225{bottom:101.970000px;}
.y51_c00225{bottom:117.720000px;}
.y27_c00225{bottom:119.520000px;}
.y50_c00225{bottom:136.020000px;}
.y26_c00225{bottom:136.620000px;}
.y4f_c00225{bottom:154.170000px;}
.y25_c00225{bottom:155.820000px;}
.y4e_c00225{bottom:172.170000px;}
.y24_c00225{bottom:173.070000px;}
.y4d_c00225{bottom:190.620000px;}
.y23_c00225{bottom:191.970000px;}
.y4c_c00225{bottom:208.770000px;}
.y22_c00225{bottom:209.970000px;}
.y4b_c00225{bottom:226.920000px;}
.y21_c00225{bottom:228.120000px;}
.y4a_c00225{bottom:245.070000px;}
.y20_c00225{bottom:246.720000px;}
.y49_c00225{bottom:263.220000px;}
.y1f_c00225{bottom:265.170000px;}
.y48_c00225{bottom:281.070000px;}
.y1e_c00225{bottom:282.720000px;}
.y47_c00225{bottom:299.970000px;}
.y1d_c00225{bottom:302.070000px;}
.y46_c00225{bottom:317.820000px;}
.y1c_c00225{bottom:319.920000px;}
.y45_c00225{bottom:335.970000px;}
.y1b_c00225{bottom:338.820000px;}
.y44_c00225{bottom:354.270000px;}
.y1a_c00225{bottom:356.970000px;}
.y43_c00225{bottom:372.570000px;}
.y19_c00225{bottom:374.670000px;}
.y42_c00225{bottom:391.170000px;}
.y18_c00225{bottom:393.120000px;}
.y41_c00225{bottom:409.020000px;}
.y17_c00225{bottom:410.370000px;}
.y40_c00225{bottom:426.870000px;}
.y16_c00225{bottom:429.270000px;}
.y3f_c00225{bottom:444.870000px;}
.y15_c00225{bottom:447.120000px;}
.y3e_c00225{bottom:463.020000px;}
.y14_c00225{bottom:465.420000px;}
.y3d_c00225{bottom:480.870000px;}
.y13_c00225{bottom:483.570000px;}
.y3c_c00225{bottom:498.120000px;}
.y12_c00225{bottom:501.870000px;}
.y3b_c00225{bottom:517.320000px;}
.y11_c00225{bottom:519.720000px;}
.y3a_c00225{bottom:535.320000px;}
.y10_c00225{bottom:538.320000px;}
.y39_c00225{bottom:554.220000px;}
.yf_c00225{bottom:555.870000px;}
.y38_c00225{bottom:572.220000px;}
.ye_c00225{bottom:574.320000px;}
.y37_c00225{bottom:590.520000px;}
.yd_c00225{bottom:592.620000px;}
.y36_c00225{bottom:608.820000px;}
.yc_c00225{bottom:611.220000px;}
.y35_c00225{bottom:627.120000px;}
.yb_c00225{bottom:629.070000px;}
.y34_c00225{bottom:645.270000px;}
.ya_c00225{bottom:647.220000px;}
.y33_c00225{bottom:663.420000px;}
.y9_c00225{bottom:665.520000px;}
.y32_c00225{bottom:681.120000px;}
.y8_c00225{bottom:683.670000px;}
.y31_c00225{bottom:699.870000px;}
.y7_c00225{bottom:701.220000px;}
.y30_c00225{bottom:717.120000px;}
.y6_c00225{bottom:720.120000px;}
.y2f_c00225{bottom:734.970000px;}
.y5_c00225{bottom:738.720000px;}
.y2e_c00225{bottom:754.620000px;}
.y4_c00225{bottom:756.570000px;}
.y2d_c00225{bottom:772.920000px;}
.y3_c00225{bottom:774.270000px;}
.y2c_c00225{bottom:791.070000px;}
.y2_c00225{bottom:792.420000px;}
.y2b_c00225{bottom:810.270000px;}
.y1_c00225{bottom:812.370000px;}
.h7_c00225{height:13.200073px;}
.h8_c00225{height:43.804688px;}
.h2_c00225{height:62.880000px;}
.h5_c00225{height:70.664062px;}
.h3_c00225{height:71.544000px;}
.h4_c00225{height:74.796000px;}
.h6_c00225{height:96.996094px;}
.h1_c00225{height:851.250000px;}
.h0_c00225{height:851.550000px;}
.w2_c00225{width:104.875500px;}
.w1_c00225{width:565.500000px;}
.w0_c00225{width:565.650000px;}
.x0_c00225{left:0.000000px;}
.x5_c00225{left:20.700000px;}
.x7_c00225{left:24.750000px;}
.x9_c00225{left:25.950000px;}
.x8_c00225{left:27.750000px;}
.x6_c00225{left:83.400000px;}
.x2_c00225{left:86.100000px;}
.x3_c00225{left:87.300000px;}
.x4_c00225{left:88.500000px;}
.x1_c00225{left:90.300000px;}
.x13_c00225{left:234.639267px;}
.xd_c00225{left:299.700000px;}
.xb_c00225{left:302.400000px;}
.xc_c00225{left:303.750000px;}
.xe_c00225{left:305.100000px;}
.xa_c00225{left:306.750000px;}
.x10_c00225{left:307.800000px;}
.x11_c00225{left:309.600000px;}
.xf_c00225{left:333.150000px;}
.x12_c00225{left:470.250000px;}
@media print{
.v0_c00225{vertical-align:0.000000pt;}
.ls5_c00225{letter-spacing:0.000000pt;}
.ls0_c00225{letter-spacing:2.666667pt;}
.ls4_c00225{letter-spacing:4.093333pt;}
.ls3_c00225{letter-spacing:7.826667pt;}
.ls1_c00225{letter-spacing:10.133333pt;}
.ls2_c00225{letter-spacing:13.333333pt;}
.ws3_c00225{word-spacing:-29.333333pt;}
.ws4_c00225{word-spacing:-16.053333pt;}
.ws1_c00225{word-spacing:-15.333333pt;}
.ws2_c00225{word-spacing:-14.666667pt;}
.ws0_c00225{word-spacing:-12.586667pt;}
.ws5_c00225{word-spacing:0.000000pt;}
._21_c00225{margin-left:-29.762667pt;}
._1e_c00225{margin-left:-25.930667pt;}
._22_c00225{margin-left:-20.666667pt;}
._24_c00225{margin-left:-18.765333pt;}
._26_c00225{margin-left:-16.864000pt;}
._20_c00225{margin-left:-14.869333pt;}
._1f_c00225{margin-left:-13.888000pt;}
._23_c00225{margin-left:-12.896000pt;}
._27_c00225{margin-left:-10.498667pt;}
._25_c00225{margin-left:-9.533333pt;}
._1d_c00225{margin-left:-8.416000pt;}
._19_c00225{margin-left:-7.146667pt;}
._14_c00225{margin-left:-6.026667pt;}
._d_c00225{margin-left:-4.586667pt;}
._13_c00225{margin-left:-3.680000pt;}
._8_c00225{margin-left:-2.346667pt;}
._7_c00225{margin-left:-1.226667pt;}
._a_c00225{width:1.066667pt;}
._b_c00225{width:2.346667pt;}
._c_c00225{width:3.520000pt;}
._0_c00225{width:4.906667pt;}
._f_c00225{width:6.666667pt;}
._1_c00225{width:7.733333pt;}
._12_c00225{width:9.066667pt;}
._16_c00225{width:10.400000pt;}
._10_c00225{width:11.626667pt;}
._3_c00225{width:13.013333pt;}
._4_c00225{width:14.080000pt;}
._1c_c00225{width:15.360000pt;}
._1a_c00225{width:16.373333pt;}
._15_c00225{width:17.280000pt;}
._e_c00225{width:18.346667pt;}
._6_c00225{width:19.253333pt;}
._5_c00225{width:21.066667pt;}
._2b_c00225{width:22.133333pt;}
._18_c00225{width:23.786667pt;}
._11_c00225{width:28.266667pt;}
._2a_c00225{width:29.546667pt;}
._1b_c00225{width:32.213333pt;}
._2c_c00225{width:37.120000pt;}
._9_c00225{width:42.613333pt;}
._2e_c00225{width:68.000000pt;}
._28_c00225{width:80.693333pt;}
._2d_c00225{width:91.680000pt;}
._29_c00225{width:129.653333pt;}
._17_c00225{width:174.560000pt;}
._2_c00225{width:252.266667pt;}
.fs5_c00225{font-size:40.000000pt;}
.fs6_c00225{font-size:42.666667pt;}
.fs0_c00225{font-size:53.333333pt;}
.fs1_c00225{font-size:58.666667pt;}
.fs2_c00225{font-size:61.333333pt;}
.fs3_c00225{font-size:64.000000pt;}
.fs4_c00225{font-size:82.666667pt;}
.y0_c00225{bottom:0.000000pt;}
.y57_c00225{bottom:2.760000pt;}
.y56_c00225{bottom:6.425217pt;}
.y55_c00225{bottom:40.106667pt;}
.y54_c00225{bottom:56.373333pt;}
.y2a_c00225{bottom:57.840000pt;}
.y53_c00225{bottom:72.506667pt;}
.y29_c00225{bottom:73.840000pt;}
.y52_c00225{bottom:88.506667pt;}
.y28_c00225{bottom:90.640000pt;}
.y51_c00225{bottom:104.640000pt;}
.y27_c00225{bottom:106.240000pt;}
.y50_c00225{bottom:120.906667pt;}
.y26_c00225{bottom:121.440000pt;}
.y4f_c00225{bottom:137.040000pt;}
.y25_c00225{bottom:138.506667pt;}
.y4e_c00225{bottom:153.040000pt;}
.y24_c00225{bottom:153.840000pt;}
.y4d_c00225{bottom:169.440000pt;}
.y23_c00225{bottom:170.640000pt;}
.y4c_c00225{bottom:185.573333pt;}
.y22_c00225{bottom:186.640000pt;}
.y4b_c00225{bottom:201.706667pt;}
.y21_c00225{bottom:202.773333pt;}
.y4a_c00225{bottom:217.840000pt;}
.y20_c00225{bottom:219.306667pt;}
.y49_c00225{bottom:233.973333pt;}
.y1f_c00225{bottom:235.706667pt;}
.y48_c00225{bottom:249.840000pt;}
.y1e_c00225{bottom:251.306667pt;}
.y47_c00225{bottom:266.640000pt;}
.y1d_c00225{bottom:268.506667pt;}
.y46_c00225{bottom:282.506667pt;}
.y1c_c00225{bottom:284.373333pt;}
.y45_c00225{bottom:298.640000pt;}
.y1b_c00225{bottom:301.173333pt;}
.y44_c00225{bottom:314.906667pt;}
.y1a_c00225{bottom:317.306667pt;}
.y43_c00225{bottom:331.173333pt;}
.y19_c00225{bottom:333.040000pt;}
.y42_c00225{bottom:347.706667pt;}
.y18_c00225{bottom:349.440000pt;}
.y41_c00225{bottom:363.573333pt;}
.y17_c00225{bottom:364.773333pt;}
.y40_c00225{bottom:379.440000pt;}
.y16_c00225{bottom:381.573333pt;}
.y3f_c00225{bottom:395.440000pt;}
.y15_c00225{bottom:397.440000pt;}
.y3e_c00225{bottom:411.573333pt;}
.y14_c00225{bottom:413.706667pt;}
.y3d_c00225{bottom:427.440000pt;}
.y13_c00225{bottom:429.840000pt;}
.y3c_c00225{bottom:442.773333pt;}
.y12_c00225{bottom:446.106667pt;}
.y3b_c00225{bottom:459.840000pt;}
.y11_c00225{bottom:461.973333pt;}
.y3a_c00225{bottom:475.840000pt;}
.y10_c00225{bottom:478.506667pt;}
.y39_c00225{bottom:492.640000pt;}
.yf_c00225{bottom:494.106667pt;}
.y38_c00225{bottom:508.640000pt;}
.ye_c00225{bottom:510.506667pt;}
.y37_c00225{bottom:524.906667pt;}
.yd_c00225{bottom:526.773333pt;}
.y36_c00225{bottom:541.173333pt;}
.yc_c00225{bottom:543.306667pt;}
.y35_c00225{bottom:557.440000pt;}
.yb_c00225{bottom:559.173333pt;}
.y34_c00225{bottom:573.573333pt;}
.ya_c00225{bottom:575.306667pt;}
.y33_c00225{bottom:589.706667pt;}
.y9_c00225{bottom:591.573333pt;}
.y32_c00225{bottom:605.440000pt;}
.y8_c00225{bottom:607.706667pt;}
.y31_c00225{bottom:622.106667pt;}
.y7_c00225{bottom:623.306667pt;}
.y30_c00225{bottom:637.440000pt;}
.y6_c00225{bottom:640.106667pt;}
.y2f_c00225{bottom:653.306667pt;}
.y5_c00225{bottom:656.640000pt;}
.y2e_c00225{bottom:670.773333pt;}
.y4_c00225{bottom:672.506667pt;}
.y2d_c00225{bottom:687.040000pt;}
.y3_c00225{bottom:688.240000pt;}
.y2c_c00225{bottom:703.173333pt;}
.y2_c00225{bottom:704.373333pt;}
.y2b_c00225{bottom:720.240000pt;}
.y1_c00225{bottom:722.106667pt;}
.h7_c00225{height:11.733399pt;}
.h8_c00225{height:38.937500pt;}
.h2_c00225{height:55.893333pt;}
.h5_c00225{height:62.812500pt;}
.h3_c00225{height:63.594667pt;}
.h4_c00225{height:66.485333pt;}
.h6_c00225{height:86.218750pt;}
.h1_c00225{height:756.666667pt;}
.h0_c00225{height:756.933333pt;}
.w2_c00225{width:93.222667pt;}
.w1_c00225{width:502.666667pt;}
.w0_c00225{width:502.800000pt;}
.x0_c00225{left:0.000000pt;}
.x5_c00225{left:18.400000pt;}
.x7_c00225{left:22.000000pt;}
.x9_c00225{left:23.066667pt;}
.x8_c00225{left:24.666667pt;}
.x6_c00225{left:74.133333pt;}
.x2_c00225{left:76.533333pt;}
.x3_c00225{left:77.600000pt;}
.x4_c00225{left:78.666667pt;}
.x1_c00225{left:80.266667pt;}
.x13_c00225{left:208.568237pt;}
.xd_c00225{left:266.400000pt;}
.xb_c00225{left:268.800000pt;}
.xc_c00225{left:270.000000pt;}
.xe_c00225{left:271.200000pt;}
.xa_c00225{left:272.666667pt;}
.x10_c00225{left:273.600000pt;}
.x11_c00225{left:275.200000pt;}
.xf_c00225{left:296.133333pt;}
.x12_c00225{left:418.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_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_97c5fb47158fcb7c37aab914.woff2')format("woff");}.ff1_c00226{font-family:ff1_c00226;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00226;src:url('chunks/assets/font_aeaed18f9a8066c2c944d626.woff2')format("woff");}.ff2_c00226{font-family:ff2_c00226;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00226;src:url('chunks/assets/font_45a69136ffbf7907f6aaa73d.woff2')format("woff");}.ff3_c00226{font-family:ff3_c00226;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00226;src:url('chunks/assets/font_12df661d0b8ea003fcb2316b.woff2')format("woff");}.ff4_c00226{font-family:ff4_c00226;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00226;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff5_c00226{font-family:ff5_c00226;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00226{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00226{vertical-align:0.000000px;}
.ls4_c00226{letter-spacing:0.000000px;}
.ls3_c00226{letter-spacing:1.800000px;}
.ls0_c00226{letter-spacing:3.000000px;}
.ls2_c00226{letter-spacing:5.493000px;}
.ls5_c00226{letter-spacing:15.000000px;}
.ls1_c00226{letter-spacing:15.693000px;}
.sc__c00226{text-shadow:none;}
.sc0_c00226{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00226{-webkit-text-stroke:0px transparent;}
.sc0_c00226{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00226{word-spacing:-29.295000px;}
.ws5_c00226{word-spacing:-29.160000px;}
.ws0_c00226{word-spacing:-18.060000px;}
.ws1_c00226{word-spacing:-17.340000px;}
.ws2_c00226{word-spacing:-14.160000px;}
.ws3_c00226{word-spacing:-13.452000px;}
.ws6_c00226{word-spacing:0.000000px;}
._12_c00226{margin-left:-24.960000px;}
._22_c00226{margin-left:-21.900000px;}
._26_c00226{margin-left:-16.620000px;}
._2c_c00226{margin-left:-15.315000px;}
._1a_c00226{margin-left:-13.740000px;}
._27_c00226{margin-left:-12.432000px;}
._19_c00226{margin-left:-10.884000px;}
._23_c00226{margin-left:-8.775000px;}
._15_c00226{margin-left:-7.467000px;}
._9_c00226{margin-left:-5.400000px;}
._d_c00226{margin-left:-4.080000px;}
._b_c00226{margin-left:-3.060000px;}
._c_c00226{margin-left:-1.080000px;}
._8_c00226{width:1.980000px;}
._14_c00226{width:3.000000px;}
._7_c00226{width:4.020000px;}
._e_c00226{width:5.340000px;}
._1_c00226{width:7.260000px;}
._28_c00226{width:8.292000px;}
._4_c00226{width:9.600000px;}
._0_c00226{width:10.740000px;}
._11_c00226{width:11.820000px;}
._5_c00226{width:12.960000px;}
._10_c00226{width:14.580000px;}
._13_c00226{width:16.440000px;}
._25_c00226{width:17.820000px;}
._3_c00226{width:19.260000px;}
._17_c00226{width:20.580000px;}
._1b_c00226{width:22.788000px;}
._2_c00226{width:23.940000px;}
._f_c00226{width:25.740000px;}
._18_c00226{width:27.258000px;}
._21_c00226{width:30.360000px;}
._1f_c00226{width:31.920000px;}
._1e_c00226{width:34.440000px;}
._24_c00226{width:36.372000px;}
._1d_c00226{width:38.880000px;}
._2b_c00226{width:40.800000px;}
._29_c00226{width:46.140000px;}
._2a_c00226{width:56.460000px;}
._2d_c00226{width:86.400000px;}
._20_c00226{width:101.220000px;}
._a_c00226{width:160.020000px;}
._16_c00226{width:165.000000px;}
._1c_c00226{width:361.152000px;}
._6_c00226{width:424.020000px;}
._2e_c00226{width:634.920000px;}
.fc2_c00226{color:transparent;}
.fc1_c00226{color:rgb(128,128,128);}
.fc0_c00226{color:rgb(0,0,0);}
.fs2_c00226{font-size:45.000000px;}
.fs4_c00226{font-size:48.000000px;}
.fs1_c00226{font-size:57.000000px;}
.fs0_c00226{font-size:60.000000px;}
.fs3_c00226{font-size:63.000000px;}
.y0_c00226{bottom:0.000000px;}
.y50_c00226{bottom:3.105000px;}
.y4f_c00226{bottom:7.228357px;}
.y4e_c00226{bottom:43.230000px;}
.y4d_c00226{bottom:62.430000px;}
.y4c_c00226{bottom:80.730000px;}
.y4b_c00226{bottom:99.630000px;}
.y4a_c00226{bottom:116.430000px;}
.y27_c00226{bottom:119.580000px;}
.y49_c00226{bottom:134.280000px;}
.y26_c00226{bottom:138.330000px;}
.y48_c00226{bottom:152.880000px;}
.y25_c00226{bottom:155.580000px;}
.y47_c00226{bottom:171.180000px;}
.y24_c00226{bottom:173.430000px;}
.y46_c00226{bottom:189.030000px;}
.y23_c00226{bottom:192.030000px;}
.y45_c00226{bottom:207.930000px;}
.y22_c00226{bottom:210.330000px;}
.y44_c00226{bottom:225.480000px;}
.y21_c00226{bottom:228.780000px;}
.y43_c00226{bottom:243.330000px;}
.y20_c00226{bottom:246.480000px;}
.y42_c00226{bottom:262.230000px;}
.y1f_c00226{bottom:264.930000px;}
.y41_c00226{bottom:280.230000px;}
.y1e_c00226{bottom:281.880000px;}
.y40_c00226{bottom:298.380000px;}
.y1d_c00226{bottom:300.780000px;}
.y3f_c00226{bottom:316.530000px;}
.y1c_c00226{bottom:318.330000px;}
.y3e_c00226{bottom:334.080000px;}
.y1b_c00226{bottom:336.780000px;}
.y3d_c00226{bottom:352.380000px;}
.y1a_c00226{bottom:354.480000px;}
.y3c_c00226{bottom:370.680000px;}
.y19_c00226{bottom:372.030000px;}
.y3b_c00226{bottom:388.830000px;}
.y18_c00226{bottom:390.180000px;}
.y3a_c00226{bottom:406.980000px;}
.y17_c00226{bottom:408.480000px;}
.y39_c00226{bottom:425.580000px;}
.y16_c00226{bottom:426.330000px;}
.y15_c00226{bottom:443.430000px;}
.y14_c00226{bottom:461.430000px;}
.y13_c00226{bottom:479.280000px;}
.y38_c00226{bottom:479.580000px;}
.y12_c00226{bottom:496.230000px;}
.y37_c00226{bottom:498.780000px;}
.y11_c00226{bottom:513.330000px;}
.y36_c00226{bottom:516.030000px;}
.y10_c00226{bottom:532.230000px;}
.y35_c00226{bottom:534.030000px;}
.yf_c00226{bottom:550.230000px;}
.y34_c00226{bottom:552.480000px;}
.ye_c00226{bottom:568.680000px;}
.y33_c00226{bottom:570.780000px;}
.yd_c00226{bottom:585.630000px;}
.y32_c00226{bottom:588.930000px;}
.yc_c00226{bottom:604.080000px;}
.y31_c00226{bottom:607.230000px;}
.yb_c00226{bottom:622.380000px;}
.y30_c00226{bottom:624.780000px;}
.ya_c00226{bottom:640.680000px;}
.y2f_c00226{bottom:642.930000px;}
.y9_c00226{bottom:657.180000px;}
.y2e_c00226{bottom:661.230000px;}
.y8_c00226{bottom:677.730000px;}
.y2d_c00226{bottom:679.380000px;}
.y7_c00226{bottom:693.630000px;}
.y2c_c00226{bottom:697.230000px;}
.y6_c00226{bottom:712.080000px;}
.y2b_c00226{bottom:714.930000px;}
.y5_c00226{bottom:731.430000px;}
.y2a_c00226{bottom:733.830000px;}
.y4_c00226{bottom:747.630000px;}
.y29_c00226{bottom:751.380000px;}
.y3_c00226{bottom:767.130000px;}
.y28_c00226{bottom:769.530000px;}
.y2_c00226{bottom:786.030000px;}
.y1_c00226{bottom:805.230000px;}
.h6_c00226{height:13.200074px;}
.h7_c00226{height:43.804688px;}
.h4_c00226{height:59.736000px;}
.h2_c00226{height:62.880000px;}
.h3_c00226{height:64.020000px;}
.h5_c00226{height:66.024000px;}
.h0_c00226{height:841.350000px;}
.h1_c00226{height:841.500000px;}
.w1_c00226{width:104.875500px;}
.w0_c00226{width:590.250000px;}
.x0_c00226{left:0.000000px;}
.x5_c00226{left:13.200000px;}
.x8_c00226{left:59.100000px;}
.x7_c00226{left:66.900000px;}
.xa_c00226{left:67.950000px;}
.x9_c00226{left:69.300000px;}
.x6_c00226{left:71.850000px;}
.x4_c00226{left:72.900000px;}
.x3_c00226{left:73.950000px;}
.x2_c00226{left:75.300000px;}
.x1_c00226{left:220.350000px;}
.x12_c00226{left:246.939240px;}
.x10_c00226{left:285.300000px;}
.xf_c00226{left:286.950000px;}
.xe_c00226{left:288.000000px;}
.xd_c00226{left:289.950000px;}
.xc_c00226{left:291.900000px;}
.xb_c00226{left:292.950000px;}
.x11_c00226{left:375.750000px;}
@media print{
.v0_c00226{vertical-align:0.000000pt;}
.ls4_c00226{letter-spacing:0.000000pt;}
.ls3_c00226{letter-spacing:1.600000pt;}
.ls0_c00226{letter-spacing:2.666667pt;}
.ls2_c00226{letter-spacing:4.882667pt;}
.ls5_c00226{letter-spacing:13.333333pt;}
.ls1_c00226{letter-spacing:13.949333pt;}
.ws4_c00226{word-spacing:-26.040000pt;}
.ws5_c00226{word-spacing:-25.920000pt;}
.ws0_c00226{word-spacing:-16.053333pt;}
.ws1_c00226{word-spacing:-15.413333pt;}
.ws2_c00226{word-spacing:-12.586667pt;}
.ws3_c00226{word-spacing:-11.957333pt;}
.ws6_c00226{word-spacing:0.000000pt;}
._12_c00226{margin-left:-22.186667pt;}
._22_c00226{margin-left:-19.466667pt;}
._26_c00226{margin-left:-14.773333pt;}
._2c_c00226{margin-left:-13.613333pt;}
._1a_c00226{margin-left:-12.213333pt;}
._27_c00226{margin-left:-11.050667pt;}
._19_c00226{margin-left:-9.674667pt;}
._23_c00226{margin-left:-7.800000pt;}
._15_c00226{margin-left:-6.637333pt;}
._9_c00226{margin-left:-4.800000pt;}
._d_c00226{margin-left:-3.626667pt;}
._b_c00226{margin-left:-2.720000pt;}
._c_c00226{margin-left:-0.960000pt;}
._8_c00226{width:1.760000pt;}
._14_c00226{width:2.666667pt;}
._7_c00226{width:3.573333pt;}
._e_c00226{width:4.746667pt;}
._1_c00226{width:6.453333pt;}
._28_c00226{width:7.370667pt;}
._4_c00226{width:8.533333pt;}
._0_c00226{width:9.546667pt;}
._11_c00226{width:10.506667pt;}
._5_c00226{width:11.520000pt;}
._10_c00226{width:12.960000pt;}
._13_c00226{width:14.613333pt;}
._25_c00226{width:15.840000pt;}
._3_c00226{width:17.120000pt;}
._17_c00226{width:18.293333pt;}
._1b_c00226{width:20.256000pt;}
._2_c00226{width:21.280000pt;}
._f_c00226{width:22.880000pt;}
._18_c00226{width:24.229333pt;}
._21_c00226{width:26.986667pt;}
._1f_c00226{width:28.373333pt;}
._1e_c00226{width:30.613333pt;}
._24_c00226{width:32.330667pt;}
._1d_c00226{width:34.560000pt;}
._2b_c00226{width:36.266667pt;}
._29_c00226{width:41.013333pt;}
._2a_c00226{width:50.186667pt;}
._2d_c00226{width:76.800000pt;}
._20_c00226{width:89.973333pt;}
._a_c00226{width:142.240000pt;}
._16_c00226{width:146.666667pt;}
._1c_c00226{width:321.024000pt;}
._6_c00226{width:376.906667pt;}
._2e_c00226{width:564.373333pt;}
.fs2_c00226{font-size:40.000000pt;}
.fs4_c00226{font-size:42.666667pt;}
.fs1_c00226{font-size:50.666667pt;}
.fs0_c00226{font-size:53.333333pt;}
.fs3_c00226{font-size:56.000000pt;}
.y0_c00226{bottom:0.000000pt;}
.y50_c00226{bottom:2.760000pt;}
.y4f_c00226{bottom:6.425206pt;}
.y4e_c00226{bottom:38.426667pt;}
.y4d_c00226{bottom:55.493333pt;}
.y4c_c00226{bottom:71.760000pt;}
.y4b_c00226{bottom:88.560000pt;}
.y4a_c00226{bottom:103.493333pt;}
.y27_c00226{bottom:106.293333pt;}
.y49_c00226{bottom:119.360000pt;}
.y26_c00226{bottom:122.960000pt;}
.y48_c00226{bottom:135.893333pt;}
.y25_c00226{bottom:138.293333pt;}
.y47_c00226{bottom:152.160000pt;}
.y24_c00226{bottom:154.160000pt;}
.y46_c00226{bottom:168.026667pt;}
.y23_c00226{bottom:170.693333pt;}
.y45_c00226{bottom:184.826667pt;}
.y22_c00226{bottom:186.960000pt;}
.y44_c00226{bottom:200.426667pt;}
.y21_c00226{bottom:203.360000pt;}
.y43_c00226{bottom:216.293333pt;}
.y20_c00226{bottom:219.093333pt;}
.y42_c00226{bottom:233.093333pt;}
.y1f_c00226{bottom:235.493333pt;}
.y41_c00226{bottom:249.093333pt;}
.y1e_c00226{bottom:250.560000pt;}
.y40_c00226{bottom:265.226667pt;}
.y1d_c00226{bottom:267.360000pt;}
.y3f_c00226{bottom:281.360000pt;}
.y1c_c00226{bottom:282.960000pt;}
.y3e_c00226{bottom:296.960000pt;}
.y1b_c00226{bottom:299.360000pt;}
.y3d_c00226{bottom:313.226667pt;}
.y1a_c00226{bottom:315.093333pt;}
.y3c_c00226{bottom:329.493333pt;}
.y19_c00226{bottom:330.693333pt;}
.y3b_c00226{bottom:345.626667pt;}
.y18_c00226{bottom:346.826667pt;}
.y3a_c00226{bottom:361.760000pt;}
.y17_c00226{bottom:363.093333pt;}
.y39_c00226{bottom:378.293333pt;}
.y16_c00226{bottom:378.960000pt;}
.y15_c00226{bottom:394.160000pt;}
.y14_c00226{bottom:410.160000pt;}
.y13_c00226{bottom:426.026667pt;}
.y38_c00226{bottom:426.293333pt;}
.y12_c00226{bottom:441.093333pt;}
.y37_c00226{bottom:443.360000pt;}
.y11_c00226{bottom:456.293333pt;}
.y36_c00226{bottom:458.693333pt;}
.y10_c00226{bottom:473.093333pt;}
.y35_c00226{bottom:474.693333pt;}
.yf_c00226{bottom:489.093333pt;}
.y34_c00226{bottom:491.093333pt;}
.ye_c00226{bottom:505.493333pt;}
.y33_c00226{bottom:507.360000pt;}
.yd_c00226{bottom:520.560000pt;}
.y32_c00226{bottom:523.493333pt;}
.yc_c00226{bottom:536.960000pt;}
.y31_c00226{bottom:539.760000pt;}
.yb_c00226{bottom:553.226667pt;}
.y30_c00226{bottom:555.360000pt;}
.ya_c00226{bottom:569.493333pt;}
.y2f_c00226{bottom:571.493333pt;}
.y9_c00226{bottom:584.160000pt;}
.y2e_c00226{bottom:587.760000pt;}
.y8_c00226{bottom:602.426667pt;}
.y2d_c00226{bottom:603.893333pt;}
.y7_c00226{bottom:616.560000pt;}
.y2c_c00226{bottom:619.760000pt;}
.y6_c00226{bottom:632.960000pt;}
.y2b_c00226{bottom:635.493333pt;}
.y5_c00226{bottom:650.160000pt;}
.y2a_c00226{bottom:652.293333pt;}
.y4_c00226{bottom:664.560000pt;}
.y29_c00226{bottom:667.893333pt;}
.y3_c00226{bottom:681.893333pt;}
.y28_c00226{bottom:684.026667pt;}
.y2_c00226{bottom:698.693333pt;}
.y1_c00226{bottom:715.760000pt;}
.h6_c00226{height:11.733399pt;}
.h7_c00226{height:38.937500pt;}
.h4_c00226{height:53.098667pt;}
.h2_c00226{height:55.893333pt;}
.h3_c00226{height:56.906667pt;}
.h5_c00226{height:58.688000pt;}
.h0_c00226{height:747.866667pt;}
.h1_c00226{height:748.000000pt;}
.w1_c00226{width:93.222667pt;}
.w0_c00226{width:524.666667pt;}
.x0_c00226{left:0.000000pt;}
.x5_c00226{left:11.733333pt;}
.x8_c00226{left:52.533333pt;}
.x7_c00226{left:59.466667pt;}
.xa_c00226{left:60.400000pt;}
.x9_c00226{left:61.600000pt;}
.x6_c00226{left:63.866667pt;}
.x4_c00226{left:64.800000pt;}
.x3_c00226{left:65.733333pt;}
.x2_c00226{left:66.933333pt;}
.x1_c00226{left:195.866667pt;}
.x12_c00226{left:219.501546pt;}
.x10_c00226{left:253.600000pt;}
.xf_c00226{left:255.066667pt;}
.xe_c00226{left:256.000000pt;}
.xd_c00226{left:257.733333pt;}
.xc_c00226{left:259.466667pt;}
.xb_c00226{left:260.400000pt;}
.x11_c00226{left:334.000000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_98ee361b098a18f12c3ab37d.woff2')format("woff");}.ff1_c00227{font-family:ff1_c00227;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00227;src:url('chunks/assets/font_88d99897d5c257e644171000.woff2')format("woff");}.ff2_c00227{font-family:ff2_c00227;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00227;src:url('chunks/assets/font_21e8d3c9f6daf3a38e8e156a.woff2')format("woff");}.ff3_c00227{font-family:ff3_c00227;line-height:1.575000;font-style:normal;font-weight:normal;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_9eda5a9dc3cfc70f69c20e1b.woff2')format("woff");}.ff4_c00227{font-family:ff4_c00227;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00227;src:url('chunks/assets/font_2bcdc5235b0be88fd853c535.woff2')format("woff");}.ff5_c00227{font-family:ff5_c00227;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00227;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff6_c00227{font-family:ff6_c00227;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00227{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00227{vertical-align:-73.800000px;}
.v0_c00227{vertical-align:0.000000px;}
.ls4_c00227{letter-spacing:0.000000px;}
.ls0_c00227{letter-spacing:3.000000px;}
.ls3_c00227{letter-spacing:6.000000px;}
.ls1_c00227{letter-spacing:8.400000px;}
.ls2_c00227{letter-spacing:91.740000px;}
.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;}
}
.ws5_c00227{word-spacing:-31.746000px;}
.ws3_c00227{word-spacing:-23.460000px;}
.ws1_c00227{word-spacing:-22.074000px;}
.ws0_c00227{word-spacing:-18.060000px;}
.ws4_c00227{word-spacing:-17.340000px;}
.ws2_c00227{word-spacing:-14.160000px;}
.ws6_c00227{word-spacing:0.000000px;}
._1e_c00227{margin-left:-18.000000px;}
._20_c00227{margin-left:-16.740000px;}
._1f_c00227{margin-left:-14.220000px;}
._18_c00227{margin-left:-11.940000px;}
._1d_c00227{margin-left:-10.440000px;}
._1b_c00227{margin-left:-8.760000px;}
._14_c00227{margin-left:-7.620000px;}
._19_c00227{margin-left:-6.540000px;}
._b_c00227{margin-left:-5.460000px;}
._8_c00227{margin-left:-4.380000px;}
._e_c00227{margin-left:-3.360000px;}
._c_c00227{margin-left:-2.280000px;}
._f_c00227{margin-left:-1.260000px;}
._9_c00227{width:1.680000px;}
._7_c00227{width:3.000000px;}
._d_c00227{width:4.200000px;}
._0_c00227{width:5.220000px;}
._10_c00227{width:6.480000px;}
._1_c00227{width:7.680000px;}
._11_c00227{width:9.060000px;}
._a_c00227{width:10.800000px;}
._15_c00227{width:12.060000px;}
._12_c00227{width:13.080000px;}
._3_c00227{width:14.700000px;}
._4_c00227{width:16.440000px;}
._22_c00227{width:17.640000px;}
._1a_c00227{width:18.720000px;}
._16_c00227{width:20.700000px;}
._6_c00227{width:22.560000px;}
._5_c00227{width:25.080000px;}
._13_c00227{width:28.260000px;}
._24_c00227{width:30.000000px;}
._23_c00227{width:32.220000px;}
._17_c00227{width:38.760000px;}
._21_c00227{width:54.480000px;}
._1c_c00227{width:94.860000px;}
._2_c00227{width:303.600000px;}
.fc2_c00227{color:transparent;}
.fc1_c00227{color:rgb(128,128,128);}
.fc0_c00227{color:rgb(0,0,0);}
.fs2_c00227{font-size:45.000000px;}
.fs3_c00227{font-size:48.000000px;}
.fs0_c00227{font-size:60.000000px;}
.fs1_c00227{font-size:66.000000px;}
.y0_c00227{bottom:0.000000px;}
.y53_c00227{bottom:3.105000px;}
.y52_c00227{bottom:7.228369px;}
.y4e_c00227{bottom:42.420000px;}
.y4d_c00227{bottom:60.120000px;}
.y2a_c00227{bottom:60.420000px;}
.y4c_c00227{bottom:79.020000px;}
.y29_c00227{bottom:79.620000px;}
.y28_c00227{bottom:97.170000px;}
.y4b_c00227{bottom:97.470000px;}
.y4a_c00227{bottom:115.320000px;}
.y27_c00227{bottom:116.070000px;}
.y49_c00227{bottom:132.270000px;}
.y26_c00227{bottom:134.220000px;}
.y25_c00227{bottom:151.920000px;}
.y48_c00227{bottom:169.770000px;}
.y24_c00227{bottom:170.070000px;}
.y47_c00227{bottom:188.220000px;}
.y23_c00227{bottom:188.370000px;}
.y46_c00227{bottom:206.820000px;}
.y22_c00227{bottom:207.120000px;}
.y45_c00227{bottom:224.370000px;}
.y21_c00227{bottom:224.820000px;}
.y20_c00227{bottom:243.270000px;}
.y44_c00227{bottom:243.570000px;}
.y43_c00227{bottom:260.520000px;}
.y1f_c00227{bottom:261.570000px;}
.y42_c00227{bottom:278.820000px;}
.y1e_c00227{bottom:279.720000px;}
.y1d_c00227{bottom:296.970000px;}
.y41_c00227{bottom:298.320000px;}
.y1c_c00227{bottom:315.870000px;}
.y40_c00227{bottom:334.470000px;}
.y1b_c00227{bottom:334.770000px;}
.y3f_c00227{bottom:352.620000px;}
.y1a_c00227{bottom:352.920000px;}
.y19_c00227{bottom:370.920000px;}
.y18_c00227{bottom:389.370000px;}
.y3e_c00227{bottom:390.120000px;}
.y17_c00227{bottom:407.370000px;}
.y3d_c00227{bottom:407.970000px;}
.y16_c00227{bottom:425.820000px;}
.y3c_c00227{bottom:426.570000px;}
.y51_c00227{bottom:432.570000px;}
.y15_c00227{bottom:443.820000px;}
.y3b_c00227{bottom:444.420000px;}
.y50_c00227{bottom:450.870000px;}
.y14_c00227{bottom:462.270000px;}
.y4f_c00227{bottom:469.170000px;}
.y13_c00227{bottom:479.970000px;}
.y3a_c00227{bottom:498.420000px;}
.y12_c00227{bottom:498.720000px;}
.y11_c00227{bottom:516.420000px;}
.y39_c00227{bottom:517.020000px;}
.y10_c00227{bottom:535.170000px;}
.y38_c00227{bottom:535.320000px;}
.yf_c00227{bottom:553.470000px;}
.y37_c00227{bottom:553.770000px;}
.ye_c00227{bottom:571.770000px;}
.y36_c00227{bottom:572.070000px;}
.yd_c00227{bottom:589.620000px;}
.y35_c00227{bottom:590.970000px;}
.yc_c00227{bottom:608.070000px;}
.y34_c00227{bottom:609.120000px;}
.yb_c00227{bottom:626.670000px;}
.y33_c00227{bottom:627.120000px;}
.ya_c00227{bottom:644.520000px;}
.y9_c00227{bottom:662.220000px;}
.y32_c00227{bottom:663.120000px;}
.y8_c00227{bottom:681.120000px;}
.y31_c00227{bottom:681.720000px;}
.y30_c00227{bottom:699.870000px;}
.y7_c00227{bottom:700.320000px;}
.y6_c00227{bottom:718.470000px;}
.y2f_c00227{bottom:736.770000px;}
.y5_c00227{bottom:739.020000px;}
.y4_c00227{bottom:753.870000px;}
.y2e_c00227{bottom:755.220000px;}
.y3_c00227{bottom:773.220000px;}
.y2d_c00227{bottom:773.520000px;}
.y2c_c00227{bottom:791.670000px;}
.y2_c00227{bottom:791.820000px;}
.y1_c00227{bottom:810.270000px;}
.y2b_c00227{bottom:811.320000px;}
.h5_c00227{height:13.200073px;}
.h6_c00227{height:43.804688px;}
.h2_c00227{height:62.880000px;}
.h4_c00227{height:64.020000px;}
.h3_c00227{height:70.422000px;}
.h1_c00227{height:851.250000px;}
.h0_c00227{height:851.550000px;}
.w2_c00227{width:104.875500px;}
.w1_c00227{width:565.500000px;}
.w0_c00227{width:565.650000px;}
.x0_c00227{left:0.000000px;}
.x4_c00227{left:91.200000px;}
.x3_c00227{left:92.550000px;}
.x2_c00227{left:94.050000px;}
.x1_c00227{left:95.550000px;}
.x12_c00227{left:234.639267px;}
.xc_c00227{left:309.150000px;}
.x7_c00227{left:310.200000px;}
.x6_c00227{left:311.250000px;}
.x8_c00227{left:312.300000px;}
.x5_c00227{left:313.650000px;}
.xd_c00227{left:339.900000px;}
.x9_c00227{left:345.300000px;}
.xb_c00227{left:352.650000px;}
.xa_c00227{left:390.450000px;}
.xe_c00227{left:494.400000px;}
.x11_c00227{left:513.000000px;}
.x10_c00227{left:517.050000px;}
.xf_c00227{left:518.100000px;}
@media print{
.v1_c00227{vertical-align:-65.600000pt;}
.v0_c00227{vertical-align:0.000000pt;}
.ls4_c00227{letter-spacing:0.000000pt;}
.ls0_c00227{letter-spacing:2.666667pt;}
.ls3_c00227{letter-spacing:5.333333pt;}
.ls1_c00227{letter-spacing:7.466667pt;}
.ls2_c00227{letter-spacing:81.546667pt;}
.ws5_c00227{word-spacing:-28.218667pt;}
.ws3_c00227{word-spacing:-20.853333pt;}
.ws1_c00227{word-spacing:-19.621333pt;}
.ws0_c00227{word-spacing:-16.053333pt;}
.ws4_c00227{word-spacing:-15.413333pt;}
.ws2_c00227{word-spacing:-12.586667pt;}
.ws6_c00227{word-spacing:0.000000pt;}
._1e_c00227{margin-left:-16.000000pt;}
._20_c00227{margin-left:-14.880000pt;}
._1f_c00227{margin-left:-12.640000pt;}
._18_c00227{margin-left:-10.613333pt;}
._1d_c00227{margin-left:-9.280000pt;}
._1b_c00227{margin-left:-7.786667pt;}
._14_c00227{margin-left:-6.773333pt;}
._19_c00227{margin-left:-5.813333pt;}
._b_c00227{margin-left:-4.853333pt;}
._8_c00227{margin-left:-3.893333pt;}
._e_c00227{margin-left:-2.986667pt;}
._c_c00227{margin-left:-2.026667pt;}
._f_c00227{margin-left:-1.120000pt;}
._9_c00227{width:1.493333pt;}
._7_c00227{width:2.666667pt;}
._d_c00227{width:3.733333pt;}
._0_c00227{width:4.640000pt;}
._10_c00227{width:5.760000pt;}
._1_c00227{width:6.826667pt;}
._11_c00227{width:8.053333pt;}
._a_c00227{width:9.600000pt;}
._15_c00227{width:10.720000pt;}
._12_c00227{width:11.626667pt;}
._3_c00227{width:13.066667pt;}
._4_c00227{width:14.613333pt;}
._22_c00227{width:15.680000pt;}
._1a_c00227{width:16.640000pt;}
._16_c00227{width:18.400000pt;}
._6_c00227{width:20.053333pt;}
._5_c00227{width:22.293333pt;}
._13_c00227{width:25.120000pt;}
._24_c00227{width:26.666667pt;}
._23_c00227{width:28.640000pt;}
._17_c00227{width:34.453333pt;}
._21_c00227{width:48.426667pt;}
._1c_c00227{width:84.320000pt;}
._2_c00227{width:269.866667pt;}
.fs2_c00227{font-size:40.000000pt;}
.fs3_c00227{font-size:42.666667pt;}
.fs0_c00227{font-size:53.333333pt;}
.fs1_c00227{font-size:58.666667pt;}
.y0_c00227{bottom:0.000000pt;}
.y53_c00227{bottom:2.760000pt;}
.y52_c00227{bottom:6.425217pt;}
.y4e_c00227{bottom:37.706667pt;}
.y4d_c00227{bottom:53.440000pt;}
.y2a_c00227{bottom:53.706667pt;}
.y4c_c00227{bottom:70.240000pt;}
.y29_c00227{bottom:70.773333pt;}
.y28_c00227{bottom:86.373333pt;}
.y4b_c00227{bottom:86.640000pt;}
.y4a_c00227{bottom:102.506667pt;}
.y27_c00227{bottom:103.173333pt;}
.y49_c00227{bottom:117.573333pt;}
.y26_c00227{bottom:119.306667pt;}
.y25_c00227{bottom:135.040000pt;}
.y48_c00227{bottom:150.906667pt;}
.y24_c00227{bottom:151.173333pt;}
.y47_c00227{bottom:167.306667pt;}
.y23_c00227{bottom:167.440000pt;}
.y46_c00227{bottom:183.840000pt;}
.y22_c00227{bottom:184.106667pt;}
.y45_c00227{bottom:199.440000pt;}
.y21_c00227{bottom:199.840000pt;}
.y20_c00227{bottom:216.240000pt;}
.y44_c00227{bottom:216.506667pt;}
.y43_c00227{bottom:231.573333pt;}
.y1f_c00227{bottom:232.506667pt;}
.y42_c00227{bottom:247.840000pt;}
.y1e_c00227{bottom:248.640000pt;}
.y1d_c00227{bottom:263.973333pt;}
.y41_c00227{bottom:265.173333pt;}
.y1c_c00227{bottom:280.773333pt;}
.y40_c00227{bottom:297.306667pt;}
.y1b_c00227{bottom:297.573333pt;}
.y3f_c00227{bottom:313.440000pt;}
.y1a_c00227{bottom:313.706667pt;}
.y19_c00227{bottom:329.706667pt;}
.y18_c00227{bottom:346.106667pt;}
.y3e_c00227{bottom:346.773333pt;}
.y17_c00227{bottom:362.106667pt;}
.y3d_c00227{bottom:362.640000pt;}
.y16_c00227{bottom:378.506667pt;}
.y3c_c00227{bottom:379.173333pt;}
.y51_c00227{bottom:384.506667pt;}
.y15_c00227{bottom:394.506667pt;}
.y3b_c00227{bottom:395.040000pt;}
.y50_c00227{bottom:400.773333pt;}
.y14_c00227{bottom:410.906667pt;}
.y4f_c00227{bottom:417.040000pt;}
.y13_c00227{bottom:426.640000pt;}
.y3a_c00227{bottom:443.040000pt;}
.y12_c00227{bottom:443.306667pt;}
.y11_c00227{bottom:459.040000pt;}
.y39_c00227{bottom:459.573333pt;}
.y10_c00227{bottom:475.706667pt;}
.y38_c00227{bottom:475.840000pt;}
.yf_c00227{bottom:491.973333pt;}
.y37_c00227{bottom:492.240000pt;}
.ye_c00227{bottom:508.240000pt;}
.y36_c00227{bottom:508.506667pt;}
.yd_c00227{bottom:524.106667pt;}
.y35_c00227{bottom:525.306667pt;}
.yc_c00227{bottom:540.506667pt;}
.y34_c00227{bottom:541.440000pt;}
.yb_c00227{bottom:557.040000pt;}
.y33_c00227{bottom:557.440000pt;}
.ya_c00227{bottom:572.906667pt;}
.y9_c00227{bottom:588.640000pt;}
.y32_c00227{bottom:589.440000pt;}
.y8_c00227{bottom:605.440000pt;}
.y31_c00227{bottom:605.973333pt;}
.y30_c00227{bottom:622.106667pt;}
.y7_c00227{bottom:622.506667pt;}
.y6_c00227{bottom:638.640000pt;}
.y2f_c00227{bottom:654.906667pt;}
.y5_c00227{bottom:656.906667pt;}
.y4_c00227{bottom:670.106667pt;}
.y2e_c00227{bottom:671.306667pt;}
.y3_c00227{bottom:687.306667pt;}
.y2d_c00227{bottom:687.573333pt;}
.y2c_c00227{bottom:703.706667pt;}
.y2_c00227{bottom:703.840000pt;}
.y1_c00227{bottom:720.240000pt;}
.y2b_c00227{bottom:721.173333pt;}
.h5_c00227{height:11.733399pt;}
.h6_c00227{height:38.937500pt;}
.h2_c00227{height:55.893333pt;}
.h4_c00227{height:56.906667pt;}
.h3_c00227{height:62.597333pt;}
.h1_c00227{height:756.666667pt;}
.h0_c00227{height:756.933333pt;}
.w2_c00227{width:93.222667pt;}
.w1_c00227{width:502.666667pt;}
.w0_c00227{width:502.800000pt;}
.x0_c00227{left:0.000000pt;}
.x4_c00227{left:81.066667pt;}
.x3_c00227{left:82.266667pt;}
.x2_c00227{left:83.600000pt;}
.x1_c00227{left:84.933333pt;}
.x12_c00227{left:208.568237pt;}
.xc_c00227{left:274.800000pt;}
.x7_c00227{left:275.733333pt;}
.x6_c00227{left:276.666667pt;}
.x8_c00227{left:277.600000pt;}
.x5_c00227{left:278.800000pt;}
.xd_c00227{left:302.133333pt;}
.x9_c00227{left:306.933333pt;}
.xb_c00227{left:313.466667pt;}
.xa_c00227{left:347.066667pt;}
.xe_c00227{left:439.466667pt;}
.x11_c00227{left:456.000000pt;}
.x10_c00227{left:459.600000pt;}
.xf_c00227{left:460.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_bef2e16e34e72efbf6526aef.woff2')format("woff");}.ff1_c00228{font-family:ff1_c00228;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00228;src:url('chunks/assets/font_79df1ca8c6525a3c49137423.woff2')format("woff");}.ff2_c00228{font-family:ff2_c00228;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00228;src:url('chunks/assets/font_f6638a8fa60e4e19c9f4dd3b.woff2')format("woff");}.ff3_c00228{font-family:ff3_c00228;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00228;src:url('chunks/assets/font_a826c26e1e5e3174a78cf0e7.woff2')format("woff");}.ff4_c00228{font-family:ff4_c00228;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00228;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff5_c00228{font-family:ff5_c00228;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00228{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00228{vertical-align:0.000000px;}
.ls4_c00228{letter-spacing:0.000000px;}
.ls3_c00228{letter-spacing:0.600000px;}
.ls2_c00228{letter-spacing:1.200000px;}
.ls1_c00228{letter-spacing:1.800000px;}
.ls0_c00228{letter-spacing:3.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;}
}
.ws1_c00228{word-spacing:-18.060000px;}
.ws0_c00228{word-spacing:-14.160000px;}
.ws2_c00228{word-spacing:0.000000px;}
._33_c00228{margin-left:-22.920000px;}
._1d_c00228{margin-left:-13.680000px;}
._27_c00228{margin-left:-12.240000px;}
._24_c00228{margin-left:-11.160000px;}
._18_c00228{margin-left:-9.660000px;}
._17_c00228{margin-left:-7.740000px;}
._a_c00228{margin-left:-6.720000px;}
._4_c00228{margin-left:-5.040000px;}
._3_c00228{margin-left:-4.020000px;}
._2_c00228{margin-left:-2.100000px;}
._6_c00228{margin-left:-1.020000px;}
._f_c00228{width:1.140000px;}
._1_c00228{width:2.160000px;}
._10_c00228{width:3.240000px;}
._14_c00228{width:4.380000px;}
._0_c00228{width:6.180000px;}
._1c_c00228{width:7.500000px;}
._11_c00228{width:9.420000px;}
._7_c00228{width:10.620000px;}
._c_c00228{width:12.660000px;}
._2c_c00228{width:13.680000px;}
._d_c00228{width:14.700000px;}
._b_c00228{width:15.960000px;}
._15_c00228{width:17.280000px;}
._16_c00228{width:19.380000px;}
._28_c00228{width:21.120000px;}
._2e_c00228{width:22.140000px;}
._21_c00228{width:24.000000px;}
._2d_c00228{width:25.380000px;}
._9_c00228{width:26.640000px;}
._23_c00228{width:27.840000px;}
._1e_c00228{width:29.040000px;}
._1a_c00228{width:30.180000px;}
._35_c00228{width:31.200000px;}
._22_c00228{width:33.360000px;}
._1f_c00228{width:34.920000px;}
._32_c00228{width:36.480000px;}
._2a_c00228{width:38.040000px;}
._31_c00228{width:39.120000px;}
._30_c00228{width:40.260000px;}
._2b_c00228{width:41.400000px;}
._29_c00228{width:44.280000px;}
._26_c00228{width:45.480000px;}
._5_c00228{width:46.560000px;}
._e_c00228{width:48.120000px;}
._20_c00228{width:49.380000px;}
._8_c00228{width:50.460000px;}
._1b_c00228{width:51.960000px;}
._12_c00228{width:54.000000px;}
._25_c00228{width:55.140000px;}
._36_c00228{width:57.408000px;}
._2f_c00228{width:80.700000px;}
._34_c00228{width:112.260000px;}
._19_c00228{width:140.820000px;}
._13_c00228{width:400.860000px;}
.fc2_c00228{color:transparent;}
.fc1_c00228{color:rgb(128,128,128);}
.fc0_c00228{color:rgb(0,0,0);}
.fs3_c00228{font-size:48.000000px;}
.fs0_c00228{font-size:60.000000px;}
.fs2_c00228{font-size:63.000000px;}
.fs1_c00228{font-size:66.000000px;}
.y0_c00228{bottom:0.000000px;}
.y2c_c00228{bottom:3.105000px;}
.y2b_c00228{bottom:7.228371px;}
.y2a_c00228{bottom:29.415000px;}
.y29_c00228{bottom:49.665000px;}
.y28_c00228{bottom:67.515000px;}
.y27_c00228{bottom:86.415000px;}
.y26_c00228{bottom:102.915000px;}
.y25_c00228{bottom:122.565000px;}
.y24_c00228{bottom:140.115000px;}
.y23_c00228{bottom:159.615000px;}
.y22_c00228{bottom:176.865000px;}
.y21_c00228{bottom:195.765000px;}
.y20_c00228{bottom:214.665000px;}
.y1f_c00228{bottom:232.665000px;}
.y1e_c00228{bottom:250.215000px;}
.y1d_c00228{bottom:269.115000px;}
.y1c_c00228{bottom:286.215000px;}
.y1b_c00228{bottom:304.515000px;}
.y1a_c00228{bottom:323.115000px;}
.y19_c00228{bottom:340.515000px;}
.y18_c00228{bottom:358.515000px;}
.y17_c00228{bottom:376.965000px;}
.y16_c00228{bottom:395.865000px;}
.y15_c00228{bottom:414.165000px;}
.y14_c00228{bottom:432.315000px;}
.y13_c00228{bottom:449.865000px;}
.y12_c00228{bottom:467.415000px;}
.y11_c00228{bottom:485.115000px;}
.y10_c00228{bottom:503.265000px;}
.yf_c00228{bottom:521.115000px;}
.ye_c00228{bottom:539.415000px;}
.yd_c00228{bottom:557.565000px;}
.yc_c00228{bottom:575.265000px;}
.yb_c00228{bottom:593.415000px;}
.ya_c00228{bottom:611.565000px;}
.y9_c00228{bottom:629.865000px;}
.y8_c00228{bottom:647.415000px;}
.y7_c00228{bottom:665.565000px;}
.y6_c00228{bottom:683.865000px;}
.y5_c00228{bottom:702.015000px;}
.y4_c00228{bottom:720.015000px;}
.y3_c00228{bottom:737.865000px;}
.y2_c00228{bottom:756.465000px;}
.y1_c00228{bottom:774.315000px;}
.h6_c00228{height:13.200074px;}
.h7_c00228{height:43.804688px;}
.h2_c00228{height:62.880000px;}
.h4_c00228{height:63.480000px;}
.h5_c00228{height:66.024000px;}
.h3_c00228{height:71.544000px;}
.h0_c00228{height:833.775000px;}
.h1_c00228{height:834.000000px;}
.w2_c00228{width:104.875500px;}
.w0_c00228{width:584.850000px;}
.w1_c00228{width:585.000000px;}
.x0_c00228{left:0.000000px;}
.x3_c00228{left:18.900000px;}
.xa_c00228{left:47.700000px;}
.x1_c00228{left:79.500000px;}
.x2_c00228{left:81.450000px;}
.x4_c00228{left:82.950000px;}
.x6_c00228{left:84.150000px;}
.x7_c00228{left:85.350000px;}
.x5_c00228{left:86.850000px;}
.x9_c00228{left:87.900000px;}
.x8_c00228{left:88.950000px;}
.xd_c00228{left:244.239258px;}
.xb_c00228{left:257.850000px;}
.xc_c00228{left:454.950000px;}
@media print{
.v0_c00228{vertical-align:0.000000pt;}
.ls4_c00228{letter-spacing:0.000000pt;}
.ls3_c00228{letter-spacing:0.533333pt;}
.ls2_c00228{letter-spacing:1.066667pt;}
.ls1_c00228{letter-spacing:1.600000pt;}
.ls0_c00228{letter-spacing:2.666667pt;}
.ws1_c00228{word-spacing:-16.053333pt;}
.ws0_c00228{word-spacing:-12.586667pt;}
.ws2_c00228{word-spacing:0.000000pt;}
._33_c00228{margin-left:-20.373333pt;}
._1d_c00228{margin-left:-12.160000pt;}
._27_c00228{margin-left:-10.880000pt;}
._24_c00228{margin-left:-9.920000pt;}
._18_c00228{margin-left:-8.586667pt;}
._17_c00228{margin-left:-6.880000pt;}
._a_c00228{margin-left:-5.973333pt;}
._4_c00228{margin-left:-4.480000pt;}
._3_c00228{margin-left:-3.573333pt;}
._2_c00228{margin-left:-1.866667pt;}
._6_c00228{margin-left:-0.906667pt;}
._f_c00228{width:1.013333pt;}
._1_c00228{width:1.920000pt;}
._10_c00228{width:2.880000pt;}
._14_c00228{width:3.893333pt;}
._0_c00228{width:5.493333pt;}
._1c_c00228{width:6.666667pt;}
._11_c00228{width:8.373333pt;}
._7_c00228{width:9.440000pt;}
._c_c00228{width:11.253333pt;}
._2c_c00228{width:12.160000pt;}
._d_c00228{width:13.066667pt;}
._b_c00228{width:14.186667pt;}
._15_c00228{width:15.360000pt;}
._16_c00228{width:17.226667pt;}
._28_c00228{width:18.773333pt;}
._2e_c00228{width:19.680000pt;}
._21_c00228{width:21.333333pt;}
._2d_c00228{width:22.560000pt;}
._9_c00228{width:23.680000pt;}
._23_c00228{width:24.746667pt;}
._1e_c00228{width:25.813333pt;}
._1a_c00228{width:26.826667pt;}
._35_c00228{width:27.733333pt;}
._22_c00228{width:29.653333pt;}
._1f_c00228{width:31.040000pt;}
._32_c00228{width:32.426667pt;}
._2a_c00228{width:33.813333pt;}
._31_c00228{width:34.773333pt;}
._30_c00228{width:35.786667pt;}
._2b_c00228{width:36.800000pt;}
._29_c00228{width:39.360000pt;}
._26_c00228{width:40.426667pt;}
._5_c00228{width:41.386667pt;}
._e_c00228{width:42.773333pt;}
._20_c00228{width:43.893333pt;}
._8_c00228{width:44.853333pt;}
._1b_c00228{width:46.186667pt;}
._12_c00228{width:48.000000pt;}
._25_c00228{width:49.013333pt;}
._36_c00228{width:51.029333pt;}
._2f_c00228{width:71.733333pt;}
._34_c00228{width:99.786667pt;}
._19_c00228{width:125.173333pt;}
._13_c00228{width:356.320000pt;}
.fs3_c00228{font-size:42.666667pt;}
.fs0_c00228{font-size:53.333333pt;}
.fs2_c00228{font-size:56.000000pt;}
.fs1_c00228{font-size:58.666667pt;}
.y0_c00228{bottom:0.000000pt;}
.y2c_c00228{bottom:2.760000pt;}
.y2b_c00228{bottom:6.425219pt;}
.y2a_c00228{bottom:26.146667pt;}
.y29_c00228{bottom:44.146667pt;}
.y28_c00228{bottom:60.013333pt;}
.y27_c00228{bottom:76.813333pt;}
.y26_c00228{bottom:91.480000pt;}
.y25_c00228{bottom:108.946667pt;}
.y24_c00228{bottom:124.546667pt;}
.y23_c00228{bottom:141.880000pt;}
.y22_c00228{bottom:157.213333pt;}
.y21_c00228{bottom:174.013333pt;}
.y20_c00228{bottom:190.813333pt;}
.y1f_c00228{bottom:206.813333pt;}
.y1e_c00228{bottom:222.413333pt;}
.y1d_c00228{bottom:239.213333pt;}
.y1c_c00228{bottom:254.413333pt;}
.y1b_c00228{bottom:270.680000pt;}
.y1a_c00228{bottom:287.213333pt;}
.y19_c00228{bottom:302.680000pt;}
.y18_c00228{bottom:318.680000pt;}
.y17_c00228{bottom:335.080000pt;}
.y16_c00228{bottom:351.880000pt;}
.y15_c00228{bottom:368.146667pt;}
.y14_c00228{bottom:384.280000pt;}
.y13_c00228{bottom:399.880000pt;}
.y12_c00228{bottom:415.480000pt;}
.y11_c00228{bottom:431.213333pt;}
.y10_c00228{bottom:447.346667pt;}
.yf_c00228{bottom:463.213333pt;}
.ye_c00228{bottom:479.480000pt;}
.yd_c00228{bottom:495.613333pt;}
.yc_c00228{bottom:511.346667pt;}
.yb_c00228{bottom:527.480000pt;}
.ya_c00228{bottom:543.613333pt;}
.y9_c00228{bottom:559.880000pt;}
.y8_c00228{bottom:575.480000pt;}
.y7_c00228{bottom:591.613333pt;}
.y6_c00228{bottom:607.880000pt;}
.y5_c00228{bottom:624.013333pt;}
.y4_c00228{bottom:640.013333pt;}
.y3_c00228{bottom:655.880000pt;}
.y2_c00228{bottom:672.413333pt;}
.y1_c00228{bottom:688.280000pt;}
.h6_c00228{height:11.733399pt;}
.h7_c00228{height:38.937500pt;}
.h2_c00228{height:55.893333pt;}
.h4_c00228{height:56.426667pt;}
.h5_c00228{height:58.688000pt;}
.h3_c00228{height:63.594667pt;}
.h0_c00228{height:741.133333pt;}
.h1_c00228{height:741.333333pt;}
.w2_c00228{width:93.222667pt;}
.w0_c00228{width:519.866667pt;}
.w1_c00228{width:520.000000pt;}
.x0_c00228{left:0.000000pt;}
.x3_c00228{left:16.800000pt;}
.xa_c00228{left:42.400000pt;}
.x1_c00228{left:70.666667pt;}
.x2_c00228{left:72.400000pt;}
.x4_c00228{left:73.733333pt;}
.x6_c00228{left:74.800000pt;}
.x7_c00228{left:75.866667pt;}
.x5_c00228{left:77.200000pt;}
.x9_c00228{left:78.133333pt;}
.x8_c00228{left:79.066667pt;}
.xd_c00228{left:217.101563pt;}
.xb_c00228{left:229.200000pt;}
.xc_c00228{left:404.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8238bc3ea37300fe0cd77aba.woff2')format("woff");}.ff1_c00229{font-family:ff1_c00229;line-height:1.437000;font-style:normal;font-weight:normal;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_f9d434c304c40f8d126029cb.woff2')format("woff");}.ff2_c00229{font-family:ff2_c00229;line-height:1.437000;font-style:normal;font-weight:normal;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_d37f38cb85dc8b92e635cd4a.woff2')format("woff");}.ff3_c00229{font-family:ff3_c00229;line-height:1.437000;font-style:normal;font-weight:normal;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_9959c80c0d7cdf170aa185f3.woff2')format("woff");}.ff4_c00229{font-family:ff4_c00229;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00229;src:url('chunks/assets/font_751d7656114fe4bb69621a01.woff2')format("woff");}.ff5_c00229{font-family:ff5_c00229;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00229;src:url('chunks/assets/font_67ae7e0fbcae882146aa0c83.woff2')format("woff");}.ff6_c00229{font-family:ff6_c00229;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00229;src:url('chunks/assets/font_53ba3437987578f7c9c79bb2.woff2')format("woff");}.ff7_c00229{font-family:ff7_c00229;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00229;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff8_c00229{font-family:ff8_c00229;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00229{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00229{vertical-align:0.000000px;}
.ls4_c00229{letter-spacing:0.000000px;}
.ls6_c00229{letter-spacing:3.000000px;}
.ls3_c00229{letter-spacing:6.000000px;}
.ls7_c00229{letter-spacing:12.000000px;}
.ls5_c00229{letter-spacing:15.000000px;}
.ls1_c00229{letter-spacing:17.940000px;}
.ls2_c00229{letter-spacing:25.050000px;}
.ls0_c00229{letter-spacing:304.860000px;}
.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;}
}
.ws4_c00229{word-spacing:-69.078000px;}
.ws5_c00229{word-spacing:-30.642000px;}
.ws1_c00229{word-spacing:-29.340000px;}
.ws6_c00229{word-spacing:-21.750000px;}
.ws2_c00229{word-spacing:-18.060000px;}
.ws3_c00229{word-spacing:-15.576000px;}
.ws0_c00229{word-spacing:-14.160000px;}
.ws7_c00229{word-spacing:0.000000px;}
._22_c00229{margin-left:-26.223000px;}
._23_c00229{margin-left:-19.287000px;}
._25_c00229{margin-left:-16.560000px;}
._20_c00229{margin-left:-15.081000px;}
._13_c00229{margin-left:-13.920000px;}
._1c_c00229{margin-left:-12.000000px;}
._1e_c00229{margin-left:-10.857000px;}
._16_c00229{margin-left:-9.060000px;}
._9_c00229{margin-left:-7.320000px;}
._8_c00229{margin-left:-6.000000px;}
._6_c00229{margin-left:-4.740000px;}
._a_c00229{margin-left:-3.720000px;}
._1_c00229{margin-left:-2.340000px;}
._0_c00229{margin-left:-1.080000px;}
._5_c00229{width:1.620000px;}
._2_c00229{width:2.940000px;}
._3_c00229{width:4.740000px;}
._d_c00229{width:6.240000px;}
._c_c00229{width:7.440000px;}
._e_c00229{width:8.700000px;}
._7_c00229{width:10.440000px;}
._4_c00229{width:12.240000px;}
._b_c00229{width:13.260000px;}
._12_c00229{width:14.520000px;}
._10_c00229{width:15.720000px;}
._11_c00229{width:16.740000px;}
._27_c00229{width:18.075000px;}
._18_c00229{width:19.260000px;}
._f_c00229{width:21.000000px;}
._15_c00229{width:22.020000px;}
._1b_c00229{width:23.580000px;}
._14_c00229{width:25.200000px;}
._17_c00229{width:27.660000px;}
._26_c00229{width:29.634000px;}
._21_c00229{width:30.957000px;}
._19_c00229{width:32.640000px;}
._1d_c00229{width:37.020000px;}
._24_c00229{width:61.230000px;}
._1a_c00229{width:140.460000px;}
._1f_c00229{width:142.263000px;}
.fc2_c00229{color:transparent;}
.fc1_c00229{color:rgb(128,128,128);}
.fc0_c00229{color:rgb(0,0,0);}
.fs5_c00229{font-size:48.000000px;}
.fs0_c00229{font-size:60.000000px;}
.fs1_c00229{font-size:63.000000px;}
.fs2_c00229{font-size:66.000000px;}
.fs4_c00229{font-size:78.000000px;}
.fs3_c00229{font-size:87.000000px;}
.y0_c00229{bottom:0.000000px;}
.y53_c00229{bottom:3.105000px;}
.y52_c00229{bottom:7.228369px;}
.y51_c00229{bottom:39.720000px;}
.y50_c00229{bottom:58.620000px;}
.y2a_c00229{bottom:59.970000px;}
.y4f_c00229{bottom:77.520000px;}
.y29_c00229{bottom:78.270000px;}
.y4e_c00229{bottom:94.770000px;}
.y28_c00229{bottom:96.870000px;}
.y4d_c00229{bottom:113.670000px;}
.y27_c00229{bottom:115.470000px;}
.y4c_c00229{bottom:131.670000px;}
.y26_c00229{bottom:133.020000px;}
.y4b_c00229{bottom:150.570000px;}
.y25_c00229{bottom:151.170000px;}
.y4a_c00229{bottom:168.720000px;}
.y24_c00229{bottom:169.470000px;}
.y49_c00229{bottom:186.870000px;}
.y23_c00229{bottom:187.620000px;}
.y48_c00229{bottom:204.570000px;}
.y22_c00229{bottom:205.470000px;}
.y21_c00229{bottom:223.020000px;}
.y47_c00229{bottom:240.870000px;}
.y20_c00229{bottom:241.020000px;}
.y46_c00229{bottom:257.820000px;}
.y1f_c00229{bottom:259.470000px;}
.y45_c00229{bottom:277.770000px;}
.y1e_c00229{bottom:278.370000px;}
.y44_c00229{bottom:295.320000px;}
.y1d_c00229{bottom:295.920000px;}
.y43_c00229{bottom:313.470000px;}
.y1c_c00229{bottom:313.920000px;}
.y42_c00229{bottom:332.370000px;}
.y1b_c00229{bottom:332.670000px;}
.y1a_c00229{bottom:350.370000px;}
.y19_c00229{bottom:368.520000px;}
.y41_c00229{bottom:368.820000px;}
.y40_c00229{bottom:386.820000px;}
.y18_c00229{bottom:387.120000px;}
.y17_c00229{bottom:404.670000px;}
.y3f_c00229{bottom:405.720000px;}
.y16_c00229{bottom:423.120000px;}
.y3e_c00229{bottom:423.270000px;}
.y15_c00229{bottom:441.720000px;}
.y3d_c00229{bottom:442.020000px;}
.y3c_c00229{bottom:459.570000px;}
.y14_c00229{bottom:459.720000px;}
.y13_c00229{bottom:477.870000px;}
.y3b_c00229{bottom:478.470000px;}
.y12_c00229{bottom:496.470000px;}
.y3a_c00229{bottom:497.070000px;}
.y11_c00229{bottom:514.320000px;}
.y39_c00229{bottom:514.920000px;}
.y38_c00229{bottom:532.620000px;}
.y10_c00229{bottom:532.920000px;}
.y37_c00229{bottom:550.470000px;}
.yf_c00229{bottom:551.070000px;}
.y36_c00229{bottom:569.070000px;}
.ye_c00229{bottom:569.220000px;}
.y35_c00229{bottom:587.220000px;}
.yd_c00229{bottom:587.370000px;}
.yc_c00229{bottom:605.520000px;}
.y34_c00229{bottom:605.820000px;}
.y33_c00229{bottom:623.370000px;}
.yb_c00229{bottom:623.670000px;}
.ya_c00229{bottom:641.970000px;}
.y9_c00229{bottom:660.720000px;}
.y32_c00229{bottom:660.870000px;}
.y31_c00229{bottom:677.970000px;}
.y8_c00229{bottom:678.420000px;}
.y30_c00229{bottom:696.870000px;}
.y7_c00229{bottom:697.170000px;}
.y2f_c00229{bottom:714.420000px;}
.y6_c00229{bottom:715.170000px;}
.y5_c00229{bottom:733.320000px;}
.y2e_c00229{bottom:733.620000px;}
.y2d_c00229{bottom:751.320000px;}
.y4_c00229{bottom:751.620000px;}
.y2c_c00229{bottom:768.870000px;}
.y3_c00229{bottom:770.520000px;}
.y2b_c00229{bottom:787.020000px;}
.y2_c00229{bottom:787.770000px;}
.y1_c00229{bottom:807.570000px;}
.h7_c00229{height:13.200073px;}
.h8_c00229{height:43.804688px;}
.h2_c00229{height:62.880000px;}
.h4_c00229{height:67.221000px;}
.h3_c00229{height:69.168000px;}
.h6_c00229{height:81.744000px;}
.h5_c00229{height:91.176000px;}
.h1_c00229{height:851.250000px;}
.h0_c00229{height:851.550000px;}
.w2_c00229{width:104.875500px;}
.w1_c00229{width:565.500000px;}
.w0_c00229{width:565.650000px;}
.x0_c00229{left:0.000000px;}
.x7_c00229{left:27.000000px;}
.x9_c00229{left:84.300000px;}
.xa_c00229{left:86.400000px;}
.x8_c00229{left:88.050000px;}
.x6_c00229{left:89.850000px;}
.x5_c00229{left:91.500000px;}
.x4_c00229{left:92.850000px;}
.x2_c00229{left:94.500000px;}
.x3_c00229{left:95.850000px;}
.x1_c00229{left:105.300000px;}
.x15_c00229{left:234.639267px;}
.x13_c00229{left:304.050000px;}
.x12_c00229{left:305.400000px;}
.x11_c00229{left:306.750000px;}
.x10_c00229{left:308.250000px;}
.xf_c00229{left:309.600000px;}
.xd_c00229{left:310.800000px;}
.xc_c00229{left:312.300000px;}
.xb_c00229{left:313.650000px;}
.xe_c00229{left:339.600000px;}
.x14_c00229{left:482.850000px;}
@media print{
.v0_c00229{vertical-align:0.000000pt;}
.ls4_c00229{letter-spacing:0.000000pt;}
.ls6_c00229{letter-spacing:2.666667pt;}
.ls3_c00229{letter-spacing:5.333333pt;}
.ls7_c00229{letter-spacing:10.666667pt;}
.ls5_c00229{letter-spacing:13.333333pt;}
.ls1_c00229{letter-spacing:15.946667pt;}
.ls2_c00229{letter-spacing:22.266667pt;}
.ls0_c00229{letter-spacing:270.986667pt;}
.ws4_c00229{word-spacing:-61.402667pt;}
.ws5_c00229{word-spacing:-27.237333pt;}
.ws1_c00229{word-spacing:-26.080000pt;}
.ws6_c00229{word-spacing:-19.333333pt;}
.ws2_c00229{word-spacing:-16.053333pt;}
.ws3_c00229{word-spacing:-13.845333pt;}
.ws0_c00229{word-spacing:-12.586667pt;}
.ws7_c00229{word-spacing:0.000000pt;}
._22_c00229{margin-left:-23.309333pt;}
._23_c00229{margin-left:-17.144000pt;}
._25_c00229{margin-left:-14.720000pt;}
._20_c00229{margin-left:-13.405333pt;}
._13_c00229{margin-left:-12.373333pt;}
._1c_c00229{margin-left:-10.666667pt;}
._1e_c00229{margin-left:-9.650667pt;}
._16_c00229{margin-left:-8.053333pt;}
._9_c00229{margin-left:-6.506667pt;}
._8_c00229{margin-left:-5.333333pt;}
._6_c00229{margin-left:-4.213333pt;}
._a_c00229{margin-left:-3.306667pt;}
._1_c00229{margin-left:-2.080000pt;}
._0_c00229{margin-left:-0.960000pt;}
._5_c00229{width:1.440000pt;}
._2_c00229{width:2.613333pt;}
._3_c00229{width:4.213333pt;}
._d_c00229{width:5.546667pt;}
._c_c00229{width:6.613333pt;}
._e_c00229{width:7.733333pt;}
._7_c00229{width:9.280000pt;}
._4_c00229{width:10.880000pt;}
._b_c00229{width:11.786667pt;}
._12_c00229{width:12.906667pt;}
._10_c00229{width:13.973333pt;}
._11_c00229{width:14.880000pt;}
._27_c00229{width:16.066667pt;}
._18_c00229{width:17.120000pt;}
._f_c00229{width:18.666667pt;}
._15_c00229{width:19.573333pt;}
._1b_c00229{width:20.960000pt;}
._14_c00229{width:22.400000pt;}
._17_c00229{width:24.586667pt;}
._26_c00229{width:26.341333pt;}
._21_c00229{width:27.517333pt;}
._19_c00229{width:29.013333pt;}
._1d_c00229{width:32.906667pt;}
._24_c00229{width:54.426667pt;}
._1a_c00229{width:124.853333pt;}
._1f_c00229{width:126.456000pt;}
.fs5_c00229{font-size:42.666667pt;}
.fs0_c00229{font-size:53.333333pt;}
.fs1_c00229{font-size:56.000000pt;}
.fs2_c00229{font-size:58.666667pt;}
.fs4_c00229{font-size:69.333333pt;}
.fs3_c00229{font-size:77.333333pt;}
.y0_c00229{bottom:0.000000pt;}
.y53_c00229{bottom:2.760000pt;}
.y52_c00229{bottom:6.425217pt;}
.y51_c00229{bottom:35.306667pt;}
.y50_c00229{bottom:52.106667pt;}
.y2a_c00229{bottom:53.306667pt;}
.y4f_c00229{bottom:68.906667pt;}
.y29_c00229{bottom:69.573333pt;}
.y4e_c00229{bottom:84.240000pt;}
.y28_c00229{bottom:86.106667pt;}
.y4d_c00229{bottom:101.040000pt;}
.y27_c00229{bottom:102.640000pt;}
.y4c_c00229{bottom:117.040000pt;}
.y26_c00229{bottom:118.240000pt;}
.y4b_c00229{bottom:133.840000pt;}
.y25_c00229{bottom:134.373333pt;}
.y4a_c00229{bottom:149.973333pt;}
.y24_c00229{bottom:150.640000pt;}
.y49_c00229{bottom:166.106667pt;}
.y23_c00229{bottom:166.773333pt;}
.y48_c00229{bottom:181.840000pt;}
.y22_c00229{bottom:182.640000pt;}
.y21_c00229{bottom:198.240000pt;}
.y47_c00229{bottom:214.106667pt;}
.y20_c00229{bottom:214.240000pt;}
.y46_c00229{bottom:229.173333pt;}
.y1f_c00229{bottom:230.640000pt;}
.y45_c00229{bottom:246.906667pt;}
.y1e_c00229{bottom:247.440000pt;}
.y44_c00229{bottom:262.506667pt;}
.y1d_c00229{bottom:263.040000pt;}
.y43_c00229{bottom:278.640000pt;}
.y1c_c00229{bottom:279.040000pt;}
.y42_c00229{bottom:295.440000pt;}
.y1b_c00229{bottom:295.706667pt;}
.y1a_c00229{bottom:311.440000pt;}
.y19_c00229{bottom:327.573333pt;}
.y41_c00229{bottom:327.840000pt;}
.y40_c00229{bottom:343.840000pt;}
.y18_c00229{bottom:344.106667pt;}
.y17_c00229{bottom:359.706667pt;}
.y3f_c00229{bottom:360.640000pt;}
.y16_c00229{bottom:376.106667pt;}
.y3e_c00229{bottom:376.240000pt;}
.y15_c00229{bottom:392.640000pt;}
.y3d_c00229{bottom:392.906667pt;}
.y3c_c00229{bottom:408.506667pt;}
.y14_c00229{bottom:408.640000pt;}
.y13_c00229{bottom:424.773333pt;}
.y3b_c00229{bottom:425.306667pt;}
.y12_c00229{bottom:441.306667pt;}
.y3a_c00229{bottom:441.840000pt;}
.y11_c00229{bottom:457.173333pt;}
.y39_c00229{bottom:457.706667pt;}
.y38_c00229{bottom:473.440000pt;}
.y10_c00229{bottom:473.706667pt;}
.y37_c00229{bottom:489.306667pt;}
.yf_c00229{bottom:489.840000pt;}
.y36_c00229{bottom:505.840000pt;}
.ye_c00229{bottom:505.973333pt;}
.y35_c00229{bottom:521.973333pt;}
.yd_c00229{bottom:522.106667pt;}
.yc_c00229{bottom:538.240000pt;}
.y34_c00229{bottom:538.506667pt;}
.y33_c00229{bottom:554.106667pt;}
.yb_c00229{bottom:554.373333pt;}
.ya_c00229{bottom:570.640000pt;}
.y9_c00229{bottom:587.306667pt;}
.y32_c00229{bottom:587.440000pt;}
.y31_c00229{bottom:602.640000pt;}
.y8_c00229{bottom:603.040000pt;}
.y30_c00229{bottom:619.440000pt;}
.y7_c00229{bottom:619.706667pt;}
.y2f_c00229{bottom:635.040000pt;}
.y6_c00229{bottom:635.706667pt;}
.y5_c00229{bottom:651.840000pt;}
.y2e_c00229{bottom:652.106667pt;}
.y2d_c00229{bottom:667.840000pt;}
.y4_c00229{bottom:668.106667pt;}
.y2c_c00229{bottom:683.440000pt;}
.y3_c00229{bottom:684.906667pt;}
.y2b_c00229{bottom:699.573333pt;}
.y2_c00229{bottom:700.240000pt;}
.y1_c00229{bottom:717.840000pt;}
.h7_c00229{height:11.733399pt;}
.h8_c00229{height:38.937500pt;}
.h2_c00229{height:55.893333pt;}
.h4_c00229{height:59.752000pt;}
.h3_c00229{height:61.482667pt;}
.h6_c00229{height:72.661333pt;}
.h5_c00229{height:81.045333pt;}
.h1_c00229{height:756.666667pt;}
.h0_c00229{height:756.933333pt;}
.w2_c00229{width:93.222667pt;}
.w1_c00229{width:502.666667pt;}
.w0_c00229{width:502.800000pt;}
.x0_c00229{left:0.000000pt;}
.x7_c00229{left:24.000000pt;}
.x9_c00229{left:74.933333pt;}
.xa_c00229{left:76.800000pt;}
.x8_c00229{left:78.266667pt;}
.x6_c00229{left:79.866667pt;}
.x5_c00229{left:81.333333pt;}
.x4_c00229{left:82.533333pt;}
.x2_c00229{left:84.000000pt;}
.x3_c00229{left:85.200000pt;}
.x1_c00229{left:93.600000pt;}
.x15_c00229{left:208.568237pt;}
.x13_c00229{left:270.266667pt;}
.x12_c00229{left:271.466667pt;}
.x11_c00229{left:272.666667pt;}
.x10_c00229{left:274.000000pt;}
.xf_c00229{left:275.200000pt;}
.xd_c00229{left:276.266667pt;}
.xc_c00229{left:277.600000pt;}
.xb_c00229{left:278.800000pt;}
.xe_c00229{left:301.866667pt;}
.x14_c00229{left:429.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_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_09ed45f71edd1dc0b7c1eb8b.woff2')format("woff");}.ff1_c00230{font-family:ff1_c00230;line-height:1.437000;font-style:normal;font-weight:normal;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_399fdfe339e824331a9aaa1b.woff2')format("woff");}.ff2_c00230{font-family:ff2_c00230;line-height:1.437000;font-style:normal;font-weight:normal;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_a473cf1e7eef4435b31e4f06.woff2')format("woff");}.ff3_c00230{font-family:ff3_c00230;line-height:1.437000;font-style:normal;font-weight:normal;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_25bacc8ce6521f5bd5248ff8.woff2')format("woff");}.ff4_c00230{font-family:ff4_c00230;line-height:1.437000;font-style:normal;font-weight:normal;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_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff5_c00230{font-family:ff5_c00230;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00230{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00230{vertical-align:0.000000px;}
.ls3_c00230{letter-spacing:0.000000px;}
.ls0_c00230{letter-spacing:3.000000px;}
.ls2_c00230{letter-spacing:3.387000px;}
.ls1_c00230{letter-spacing:6.000000px;}
.ls4_c00230{letter-spacing:15.000000px;}
.sc__c00230{text-shadow:none;}
.sc0_c00230{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00230{-webkit-text-stroke:0px transparent;}
.sc0_c00230{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00230{word-spacing:-29.160000px;}
.ws3_c00230{word-spacing:-18.060000px;}
.ws2_c00230{word-spacing:-14.427000px;}
.ws0_c00230{word-spacing:-14.160000px;}
.ws4_c00230{word-spacing:0.000000px;}
._1d_c00230{margin-left:-17.118000px;}
._21_c00230{margin-left:-15.420000px;}
._a_c00230{margin-left:-14.220000px;}
._1c_c00230{margin-left:-12.354000px;}
._6_c00230{margin-left:-11.001000px;}
._26_c00230{margin-left:-9.336000px;}
._25_c00230{margin-left:-8.136000px;}
._4_c00230{margin-left:-6.660000px;}
._1b_c00230{margin-left:-5.526000px;}
._3_c00230{margin-left:-4.140000px;}
._0_c00230{margin-left:-2.580000px;}
._8_c00230{margin-left:-1.362000px;}
._2_c00230{width:1.260000px;}
._1_c00230{width:3.060000px;}
._5_c00230{width:4.080000px;}
._9_c00230{width:5.514000px;}
._e_c00230{width:6.720000px;}
._10_c00230{width:8.700000px;}
._f_c00230{width:9.726000px;}
._d_c00230{width:11.202000px;}
._1e_c00230{width:12.366000px;}
._b_c00230{width:13.584000px;}
._20_c00230{width:14.880000px;}
._1a_c00230{width:16.206000px;}
._12_c00230{width:19.140000px;}
._1f_c00230{width:21.240000px;}
._13_c00230{width:22.998000px;}
._c_c00230{width:24.042000px;}
._18_c00230{width:26.100000px;}
._19_c00230{width:27.222000px;}
._24_c00230{width:29.034000px;}
._17_c00230{width:30.210000px;}
._14_c00230{width:32.100000px;}
._11_c00230{width:34.380000px;}
._15_c00230{width:37.920000px;}
._16_c00230{width:39.120000px;}
._23_c00230{width:47.928000px;}
._7_c00230{width:50.502000px;}
._22_c00230{width:81.240000px;}
.fc2_c00230{color:transparent;}
.fc1_c00230{color:rgb(128,128,128);}
.fc0_c00230{color:rgb(0,0,0);}
.fs2_c00230{font-size:45.000000px;}
.fs4_c00230{font-size:48.000000px;}
.fs1_c00230{font-size:57.000000px;}
.fs0_c00230{font-size:60.000000px;}
.fs3_c00230{font-size:63.000000px;}
.y0_c00230{bottom:0.000000px;}
.y55_c00230{bottom:3.105000px;}
.y54_c00230{bottom:7.228357px;}
.y53_c00230{bottom:23.580000px;}
.y52_c00230{bottom:42.930000px;}
.y29_c00230{bottom:47.880000px;}
.y51_c00230{bottom:60.780000px;}
.y28_c00230{bottom:66.780000px;}
.y50_c00230{bottom:79.080000px;}
.y27_c00230{bottom:84.780000px;}
.y4f_c00230{bottom:97.230000px;}
.y26_c00230{bottom:102.330000px;}
.y4e_c00230{bottom:115.530000px;}
.y25_c00230{bottom:118.230000px;}
.y4d_c00230{bottom:133.080000px;}
.y24_c00230{bottom:139.380000px;}
.y4c_c00230{bottom:150.930000px;}
.y23_c00230{bottom:157.380000px;}
.y4b_c00230{bottom:168.030000px;}
.y22_c00230{bottom:174.780000px;}
.y4a_c00230{bottom:188.430000px;}
.y21_c00230{bottom:193.080000px;}
.y49_c00230{bottom:205.980000px;}
.y20_c00230{bottom:210.330000px;}
.y48_c00230{bottom:224.430000px;}
.y1f_c00230{bottom:228.180000px;}
.y47_c00230{bottom:243.030000px;}
.y1e_c00230{bottom:246.780000px;}
.y46_c00230{bottom:260.880000px;}
.y1d_c00230{bottom:265.380000px;}
.y45_c00230{bottom:278.430000px;}
.y1c_c00230{bottom:283.230000px;}
.y44_c00230{bottom:296.430000px;}
.y1b_c00230{bottom:299.730000px;}
.y43_c00230{bottom:314.580000px;}
.y1a_c00230{bottom:319.230000px;}
.y42_c00230{bottom:332.730000px;}
.y19_c00230{bottom:336.180000px;}
.y41_c00230{bottom:351.030000px;}
.y18_c00230{bottom:353.130000px;}
.y40_c00230{bottom:367.980000px;}
.y17_c00230{bottom:373.230000px;}
.y3f_c00230{bottom:387.180000px;}
.y16_c00230{bottom:390.180000px;}
.y3e_c00230{bottom:403.380000px;}
.y15_c00230{bottom:408.480000px;}
.y3d_c00230{bottom:422.880000px;}
.y14_c00230{bottom:426.030000px;}
.y3c_c00230{bottom:442.530000px;}
.y13_c00230{bottom:444.930000px;}
.y3b_c00230{bottom:459.780000px;}
.y12_c00230{bottom:462.480000px;}
.y3a_c00230{bottom:476.880000px;}
.y11_c00230{bottom:480.030000px;}
.y39_c00230{bottom:494.880000px;}
.y10_c00230{bottom:497.580000px;}
.y38_c00230{bottom:512.730000px;}
.yf_c00230{bottom:515.430000px;}
.y37_c00230{bottom:531.180000px;}
.ye_c00230{bottom:532.680000px;}
.y36_c00230{bottom:548.880000px;}
.yd_c00230{bottom:550.530000px;}
.y35_c00230{bottom:567.030000px;}
.yc_c00230{bottom:568.980000px;}
.y34_c00230{bottom:584.280000px;}
.yb_c00230{bottom:586.680000px;}
.y33_c00230{bottom:603.480000px;}
.ya_c00230{bottom:604.530000px;}
.y32_c00230{bottom:621.030000px;}
.y9_c00230{bottom:622.980000px;}
.y31_c00230{bottom:639.630000px;}
.y8_c00230{bottom:640.680000px;}
.y30_c00230{bottom:656.880000px;}
.y7_c00230{bottom:659.130000px;}
.y2f_c00230{bottom:675.330000px;}
.y6_c00230{bottom:676.380000px;}
.y2e_c00230{bottom:694.230000px;}
.y5_c00230{bottom:694.980000px;}
.y2d_c00230{bottom:712.080000px;}
.y4_c00230{bottom:713.130000px;}
.y2c_c00230{bottom:730.380000px;}
.y3_c00230{bottom:731.730000px;}
.y2b_c00230{bottom:748.980000px;}
.y2_c00230{bottom:749.880000px;}
.y2a_c00230{bottom:766.530000px;}
.y1_c00230{bottom:766.830000px;}
.h4_c00230{height:13.200074px;}
.h5_c00230{height:43.804688px;}
.h2_c00230{height:62.880000px;}
.h3_c00230{height:66.024000px;}
.h0_c00230{height:827.850000px;}
.h1_c00230{height:828.000000px;}
.w1_c00230{width:104.875500px;}
.w0_c00230{width:580.500000px;}
.x0_c00230{left:0.000000px;}
.x8_c00230{left:5.400000px;}
.x9_c00230{left:9.750000px;}
.x7_c00230{left:10.800000px;}
.x2_c00230{left:48.000000px;}
.x1_c00230{left:65.850000px;}
.x3_c00230{left:67.200000px;}
.x4_c00230{left:68.550000px;}
.x5_c00230{left:69.900000px;}
.x6_c00230{left:71.850000px;}
.xc_c00230{left:73.200000px;}
.xa_c00230{left:74.250000px;}
.xb_c00230{left:75.300000px;}
.x14_c00230{left:242.064240px;}
.xd_c00230{left:285.150000px;}
.xe_c00230{left:286.200000px;}
.xf_c00230{left:287.850000px;}
.x10_c00230{left:289.200000px;}
.x11_c00230{left:290.700000px;}
.x12_c00230{left:291.900000px;}
.x13_c00230{left:453.900000px;}
@media print{
.v0_c00230{vertical-align:0.000000pt;}
.ls3_c00230{letter-spacing:0.000000pt;}
.ls0_c00230{letter-spacing:2.666667pt;}
.ls2_c00230{letter-spacing:3.010667pt;}
.ls1_c00230{letter-spacing:5.333333pt;}
.ls4_c00230{letter-spacing:13.333333pt;}
.ws1_c00230{word-spacing:-25.920000pt;}
.ws3_c00230{word-spacing:-16.053333pt;}
.ws2_c00230{word-spacing:-12.824000pt;}
.ws0_c00230{word-spacing:-12.586667pt;}
.ws4_c00230{word-spacing:0.000000pt;}
._1d_c00230{margin-left:-15.216000pt;}
._21_c00230{margin-left:-13.706667pt;}
._a_c00230{margin-left:-12.640000pt;}
._1c_c00230{margin-left:-10.981333pt;}
._6_c00230{margin-left:-9.778667pt;}
._26_c00230{margin-left:-8.298667pt;}
._25_c00230{margin-left:-7.232000pt;}
._4_c00230{margin-left:-5.920000pt;}
._1b_c00230{margin-left:-4.912000pt;}
._3_c00230{margin-left:-3.680000pt;}
._0_c00230{margin-left:-2.293333pt;}
._8_c00230{margin-left:-1.210667pt;}
._2_c00230{width:1.120000pt;}
._1_c00230{width:2.720000pt;}
._5_c00230{width:3.626667pt;}
._9_c00230{width:4.901333pt;}
._e_c00230{width:5.973333pt;}
._10_c00230{width:7.733333pt;}
._f_c00230{width:8.645333pt;}
._d_c00230{width:9.957333pt;}
._1e_c00230{width:10.992000pt;}
._b_c00230{width:12.074667pt;}
._20_c00230{width:13.226667pt;}
._1a_c00230{width:14.405333pt;}
._12_c00230{width:17.013333pt;}
._1f_c00230{width:18.880000pt;}
._13_c00230{width:20.442667pt;}
._c_c00230{width:21.370667pt;}
._18_c00230{width:23.200000pt;}
._19_c00230{width:24.197333pt;}
._24_c00230{width:25.808000pt;}
._17_c00230{width:26.853333pt;}
._14_c00230{width:28.533333pt;}
._11_c00230{width:30.560000pt;}
._15_c00230{width:33.706667pt;}
._16_c00230{width:34.773333pt;}
._23_c00230{width:42.602667pt;}
._7_c00230{width:44.890667pt;}
._22_c00230{width:72.213333pt;}
.fs2_c00230{font-size:40.000000pt;}
.fs4_c00230{font-size:42.666667pt;}
.fs1_c00230{font-size:50.666667pt;}
.fs0_c00230{font-size:53.333333pt;}
.fs3_c00230{font-size:56.000000pt;}
.y0_c00230{bottom:0.000000pt;}
.y55_c00230{bottom:2.760000pt;}
.y54_c00230{bottom:6.425206pt;}
.y53_c00230{bottom:20.960000pt;}
.y52_c00230{bottom:38.160000pt;}
.y29_c00230{bottom:42.560000pt;}
.y51_c00230{bottom:54.026667pt;}
.y28_c00230{bottom:59.360000pt;}
.y50_c00230{bottom:70.293333pt;}
.y27_c00230{bottom:75.360000pt;}
.y4f_c00230{bottom:86.426667pt;}
.y26_c00230{bottom:90.960000pt;}
.y4e_c00230{bottom:102.693333pt;}
.y25_c00230{bottom:105.093333pt;}
.y4d_c00230{bottom:118.293333pt;}
.y24_c00230{bottom:123.893333pt;}
.y4c_c00230{bottom:134.160000pt;}
.y23_c00230{bottom:139.893333pt;}
.y4b_c00230{bottom:149.360000pt;}
.y22_c00230{bottom:155.360000pt;}
.y4a_c00230{bottom:167.493333pt;}
.y21_c00230{bottom:171.626667pt;}
.y49_c00230{bottom:183.093333pt;}
.y20_c00230{bottom:186.960000pt;}
.y48_c00230{bottom:199.493333pt;}
.y1f_c00230{bottom:202.826667pt;}
.y47_c00230{bottom:216.026667pt;}
.y1e_c00230{bottom:219.360000pt;}
.y46_c00230{bottom:231.893333pt;}
.y1d_c00230{bottom:235.893333pt;}
.y45_c00230{bottom:247.493333pt;}
.y1c_c00230{bottom:251.760000pt;}
.y44_c00230{bottom:263.493333pt;}
.y1b_c00230{bottom:266.426667pt;}
.y43_c00230{bottom:279.626667pt;}
.y1a_c00230{bottom:283.760000pt;}
.y42_c00230{bottom:295.760000pt;}
.y19_c00230{bottom:298.826667pt;}
.y41_c00230{bottom:312.026667pt;}
.y18_c00230{bottom:313.893333pt;}
.y40_c00230{bottom:327.093333pt;}
.y17_c00230{bottom:331.760000pt;}
.y3f_c00230{bottom:344.160000pt;}
.y16_c00230{bottom:346.826667pt;}
.y3e_c00230{bottom:358.560000pt;}
.y15_c00230{bottom:363.093333pt;}
.y3d_c00230{bottom:375.893333pt;}
.y14_c00230{bottom:378.693333pt;}
.y3c_c00230{bottom:393.360000pt;}
.y13_c00230{bottom:395.493333pt;}
.y3b_c00230{bottom:408.693333pt;}
.y12_c00230{bottom:411.093333pt;}
.y3a_c00230{bottom:423.893333pt;}
.y11_c00230{bottom:426.693333pt;}
.y39_c00230{bottom:439.893333pt;}
.y10_c00230{bottom:442.293333pt;}
.y38_c00230{bottom:455.760000pt;}
.yf_c00230{bottom:458.160000pt;}
.y37_c00230{bottom:472.160000pt;}
.ye_c00230{bottom:473.493333pt;}
.y36_c00230{bottom:487.893333pt;}
.yd_c00230{bottom:489.360000pt;}
.y35_c00230{bottom:504.026667pt;}
.yc_c00230{bottom:505.760000pt;}
.y34_c00230{bottom:519.360000pt;}
.yb_c00230{bottom:521.493333pt;}
.y33_c00230{bottom:536.426667pt;}
.ya_c00230{bottom:537.360000pt;}
.y32_c00230{bottom:552.026667pt;}
.y9_c00230{bottom:553.760000pt;}
.y31_c00230{bottom:568.560000pt;}
.y8_c00230{bottom:569.493333pt;}
.y30_c00230{bottom:583.893333pt;}
.y7_c00230{bottom:585.893333pt;}
.y2f_c00230{bottom:600.293333pt;}
.y6_c00230{bottom:601.226667pt;}
.y2e_c00230{bottom:617.093333pt;}
.y5_c00230{bottom:617.760000pt;}
.y2d_c00230{bottom:632.960000pt;}
.y4_c00230{bottom:633.893333pt;}
.y2c_c00230{bottom:649.226667pt;}
.y3_c00230{bottom:650.426667pt;}
.y2b_c00230{bottom:665.760000pt;}
.y2_c00230{bottom:666.560000pt;}
.y2a_c00230{bottom:681.360000pt;}
.y1_c00230{bottom:681.626667pt;}
.h4_c00230{height:11.733399pt;}
.h5_c00230{height:38.937500pt;}
.h2_c00230{height:55.893333pt;}
.h3_c00230{height:58.688000pt;}
.h0_c00230{height:735.866667pt;}
.h1_c00230{height:736.000000pt;}
.w1_c00230{width:93.222667pt;}
.w0_c00230{width:516.000000pt;}
.x0_c00230{left:0.000000pt;}
.x8_c00230{left:4.800000pt;}
.x9_c00230{left:8.666667pt;}
.x7_c00230{left:9.600000pt;}
.x2_c00230{left:42.666667pt;}
.x1_c00230{left:58.533333pt;}
.x3_c00230{left:59.733333pt;}
.x4_c00230{left:60.933333pt;}
.x5_c00230{left:62.133333pt;}
.x6_c00230{left:63.866667pt;}
.xc_c00230{left:65.066667pt;}
.xa_c00230{left:66.000000pt;}
.xb_c00230{left:66.933333pt;}
.x14_c00230{left:215.168213pt;}
.xd_c00230{left:253.466667pt;}
.xe_c00230{left:254.400000pt;}
.xf_c00230{left:255.866667pt;}
.x10_c00230{left:257.066667pt;}
.x11_c00230{left:258.400000pt;}
.x12_c00230{left:259.466667pt;}
.x13_c00230{left:403.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_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_8b2dc14afb7414690152cbe1.woff2')format("woff");}.ff1_c00231{font-family:ff1_c00231;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00231;src:url('chunks/assets/font_5673160e011bbfe2d4791b15.woff2')format("woff");}.ff2_c00231{font-family:ff2_c00231;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00231;src:url('chunks/assets/font_980a6c7beb4bc64b60f1e815.woff2')format("woff");}.ff3_c00231{font-family:ff3_c00231;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00231;src:url('chunks/assets/font_da53d9e2fabc37af437a1e62.woff2')format("woff");}.ff4_c00231{font-family:ff4_c00231;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00231;src:url('chunks/assets/font_f8d63c5b0790bbd05d99340e.woff2')format("woff");}.ff5_c00231{font-family:ff5_c00231;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00231;src:url('chunks/assets/font_b2dc36f019fae769f615a32f.woff2')format("woff");}.ff6_c00231{font-family:ff6_c00231;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00231;src:url('chunks/assets/font_629b88f1fb19577d9d8ba01f.woff2')format("woff");}.ff7_c00231{font-family:ff7_c00231;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00231;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff8_c00231{font-family:ff8_c00231;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4_c00231{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m0_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);}
.m2_c00231{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m5_c00231{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m1_c00231{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m6_c00231{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m3_c00231{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.v0_c00231{vertical-align:0.000000px;}
.v1_c00231{vertical-align:105.600000px;}
.ls6_c00231{letter-spacing:-3.000000px;}
.ls5_c00231{letter-spacing:0.000000px;}
.ls0_c00231{letter-spacing:0.840000px;}
.ls4_c00231{letter-spacing:3.000000px;}
.ls3_c00231{letter-spacing:14.400000px;}
.ls2_c00231{letter-spacing:17.769000px;}
.ls1_c00231{letter-spacing:32.445000px;}
.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:-23.760000px;}
.ws2_c00231{word-spacing:-18.060000px;}
.ws1_c00231{word-spacing:-14.160000px;}
.ws3_c00231{word-spacing:0.000000px;}
._2c_c00231{margin-left:-17.820000px;}
._27_c00231{margin-left:-14.628000px;}
._2b_c00231{margin-left:-12.336000px;}
._2a_c00231{margin-left:-10.980000px;}
._15_c00231{margin-left:-9.672000px;}
._20_c00231{margin-left:-8.160000px;}
._16_c00231{margin-left:-6.540000px;}
._18_c00231{margin-left:-4.932000px;}
._17_c00231{margin-left:-3.480000px;}
._9_c00231{margin-left:-2.160000px;}
._1b_c00231{margin-left:-1.020000px;}
._6_c00231{width:1.200000px;}
._2_c00231{width:2.280000px;}
._1_c00231{width:3.720000px;}
._0_c00231{width:4.740000px;}
._4_c00231{width:5.880000px;}
._2e_c00231{width:6.900000px;}
._3_c00231{width:7.920000px;}
._13_c00231{width:9.552000px;}
._8_c00231{width:10.920000px;}
._10_c00231{width:12.228000px;}
._14_c00231{width:14.208000px;}
._b_c00231{width:15.240000px;}
._7_c00231{width:16.800000px;}
._24_c00231{width:18.060000px;}
._32_c00231{width:19.140000px;}
._1d_c00231{width:20.436000px;}
._1a_c00231{width:22.272000px;}
._c_c00231{width:23.460000px;}
._30_c00231{width:24.900000px;}
._a_c00231{width:26.040000px;}
._e_c00231{width:28.200000px;}
._1f_c00231{width:29.280000px;}
._2f_c00231{width:31.440000px;}
._2d_c00231{width:34.176000px;}
._33_c00231{width:37.320000px;}
._34_c00231{width:38.400000px;}
._31_c00231{width:46.860000px;}
._25_c00231{width:48.018000px;}
._26_c00231{width:69.588000px;}
._1c_c00231{width:73.068000px;}
._5_c00231{width:81.420000px;}
._19_c00231{width:82.500000px;}
._d_c00231{width:83.760000px;}
._12_c00231{width:86.820000px;}
._22_c00231{width:88.920000px;}
._f_c00231{width:93.120000px;}
._11_c00231{width:95.340000px;}
._29_c00231{width:121.320000px;}
._28_c00231{width:130.740000px;}
._23_c00231{width:187.440000px;}
._21_c00231{width:319.836000px;}
._1e_c00231{width:640.740000px;}
.fc2_c00231{color:transparent;}
.fc1_c00231{color:rgb(128,128,128);}
.fc0_c00231{color:rgb(0,0,0);}
.fs5_c00231{font-size:24.000000px;}
.fs3_c00231{font-size:45.000000px;}
.fs1_c00231{font-size:48.000000px;}
.fs2_c00231{font-size:54.000000px;}
.fs0_c00231{font-size:60.000000px;}
.fs4_c00231{font-size:201.000000px;}
.y0_c00231{bottom:0.000000px;}
.y45_c00231{bottom:3.105000px;}
.y44_c00231{bottom:7.228369px;}
.y43_c00231{bottom:45.270000px;}
.y37_c00231{bottom:62.670000px;}
.y42_c00231{bottom:64.020000px;}
.y36_c00231{bottom:81.570000px;}
.y35_c00231{bottom:99.120000px;}
.y41_c00231{bottom:100.170000px;}
.y34_c00231{bottom:117.420000px;}
.y40_c00231{bottom:118.170000px;}
.y33_c00231{bottom:135.270000px;}
.y3f_c00231{bottom:135.720000px;}
.y32_c00231{bottom:153.270000px;}
.y3e_c00231{bottom:155.220000px;}
.y31_c00231{bottom:171.120000px;}
.y3d_c00231{bottom:173.070000px;}
.y30_c00231{bottom:189.720000px;}
.y3c_c00231{bottom:191.370000px;}
.y2f_c00231{bottom:207.270000px;}
.y3b_c00231{bottom:208.920000px;}
.y2e_c00231{bottom:225.720000px;}
.y3a_c00231{bottom:227.370000px;}
.y2d_c00231{bottom:243.720000px;}
.y39_c00231{bottom:244.920000px;}
.y2c_c00231{bottom:261.570000px;}
.y38_c00231{bottom:263.520000px;}
.y25_c00231{bottom:270.570000px;}
.y24_c00231{bottom:281.070000px;}
.y23_c00231{bottom:297.720000px;}
.y2b_c00231{bottom:299.970000px;}
.y29_c00231{bottom:309.720000px;}
.y22_c00231{bottom:316.470000px;}
.y2a_c00231{bottom:317.820000px;}
.y21_c00231{bottom:334.470000px;}
.y20_c00231{bottom:352.620000px;}
.y1f_c00231{bottom:370.470000px;}
.y28_c00231{bottom:372.570000px;}
.y1e_c00231{bottom:389.520000px;}
.y27_c00231{bottom:391.170000px;}
.y1d_c00231{bottom:406.920000px;}
.y26_c00231{bottom:409.320000px;}
.y1c_c00231{bottom:426.270000px;}
.y1b_c00231{bottom:444.120000px;}
.y1a_c00231{bottom:461.370000px;}
.y19_c00231{bottom:479.820000px;}
.y18_c00231{bottom:497.820000px;}
.y17_c00231{bottom:516.720000px;}
.yf_c00231{bottom:535.170000px;}
.y16_c00231{bottom:536.220000px;}
.ye_c00231{bottom:552.720000px;}
.y15_c00231{bottom:554.820000px;}
.yd_c00231{bottom:571.320000px;}
.y14_c00231{bottom:572.370000px;}
.yc_c00231{bottom:589.920000px;}
.y13_c00231{bottom:591.270000px;}
.yb_c00231{bottom:608.070000px;}
.y12_c00231{bottom:609.420000px;}
.ya_c00231{bottom:627.120000px;}
.y11_c00231{bottom:627.720000px;}
.y9_c00231{bottom:644.520000px;}
.y10_c00231{bottom:645.570000px;}
.y8_c00231{bottom:663.420000px;}
.y7_c00231{bottom:681.720000px;}
.y6_c00231{bottom:700.020000px;}
.y5_c00231{bottom:717.870000px;}
.y4_c00231{bottom:736.020000px;}
.y3_c00231{bottom:754.020000px;}
.y2_c00231{bottom:772.470000px;}
.y1_c00231{bottom:791.070000px;}
.h5_c00231{height:13.200073px;}
.h6_c00231{height:43.804688px;}
.h2_c00231{height:62.880000px;}
.h4_c00231{height:64.020000px;}
.h3_c00231{height:210.648000px;}
.h1_c00231{height:851.250000px;}
.h0_c00231{height:851.550000px;}
.w2_c00231{width:104.875500px;}
.w1_c00231{width:565.500000px;}
.w0_c00231{width:565.650000px;}
.x0_c00231{left:0.000000px;}
.x17_c00231{left:29.700000px;}
.x19_c00231{left:91.500000px;}
.x5_c00231{left:92.550000px;}
.x18_c00231{left:94.050000px;}
.x16_c00231{left:95.550000px;}
.x6_c00231{left:96.600000px;}
.x1_c00231{left:97.950000px;}
.x2_c00231{left:99.900000px;}
.x3_c00231{left:100.950000px;}
.x7_c00231{left:201.150000px;}
.x20_c00231{left:234.639267px;}
.x8_c00231{left:238.200000px;}
.x1e_c00231{left:307.350000px;}
.x1d_c00231{left:308.850000px;}
.x1c_c00231{left:310.050000px;}
.x1b_c00231{left:311.100000px;}
.x1a_c00231{left:313.200000px;}
.x13_c00231{left:314.550000px;}
.x4_c00231{left:317.700000px;}
.x10_c00231{left:325.950000px;}
.x11_c00231{left:342.900000px;}
.x15_c00231{left:350.700000px;}
.x14_c00231{left:353.700000px;}
.x12_c00231{left:374.850000px;}
.x9_c00231{left:376.950000px;}
.xa_c00231{left:400.500000px;}
.xb_c00231{left:406.350000px;}
.xc_c00231{left:419.850000px;}
.xd_c00231{left:423.450000px;}
.xe_c00231{left:447.150000px;}
.x1f_c00231{left:461.700000px;}
.xf_c00231{left:479.250000px;}
@media print{
.v0_c00231{vertical-align:0.000000pt;}
.v1_c00231{vertical-align:93.866667pt;}
.ls6_c00231{letter-spacing:-2.666667pt;}
.ls5_c00231{letter-spacing:0.000000pt;}
.ls0_c00231{letter-spacing:0.746667pt;}
.ls4_c00231{letter-spacing:2.666667pt;}
.ls3_c00231{letter-spacing:12.800000pt;}
.ls2_c00231{letter-spacing:15.794667pt;}
.ls1_c00231{letter-spacing:28.840000pt;}
.ws0_c00231{word-spacing:-21.120000pt;}
.ws2_c00231{word-spacing:-16.053333pt;}
.ws1_c00231{word-spacing:-12.586667pt;}
.ws3_c00231{word-spacing:0.000000pt;}
._2c_c00231{margin-left:-15.840000pt;}
._27_c00231{margin-left:-13.002667pt;}
._2b_c00231{margin-left:-10.965333pt;}
._2a_c00231{margin-left:-9.760000pt;}
._15_c00231{margin-left:-8.597333pt;}
._20_c00231{margin-left:-7.253333pt;}
._16_c00231{margin-left:-5.813333pt;}
._18_c00231{margin-left:-4.384000pt;}
._17_c00231{margin-left:-3.093333pt;}
._9_c00231{margin-left:-1.920000pt;}
._1b_c00231{margin-left:-0.906667pt;}
._6_c00231{width:1.066667pt;}
._2_c00231{width:2.026667pt;}
._1_c00231{width:3.306667pt;}
._0_c00231{width:4.213333pt;}
._4_c00231{width:5.226667pt;}
._2e_c00231{width:6.133333pt;}
._3_c00231{width:7.040000pt;}
._13_c00231{width:8.490667pt;}
._8_c00231{width:9.706667pt;}
._10_c00231{width:10.869333pt;}
._14_c00231{width:12.629333pt;}
._b_c00231{width:13.546667pt;}
._7_c00231{width:14.933333pt;}
._24_c00231{width:16.053333pt;}
._32_c00231{width:17.013333pt;}
._1d_c00231{width:18.165333pt;}
._1a_c00231{width:19.797333pt;}
._c_c00231{width:20.853333pt;}
._30_c00231{width:22.133333pt;}
._a_c00231{width:23.146667pt;}
._e_c00231{width:25.066667pt;}
._1f_c00231{width:26.026667pt;}
._2f_c00231{width:27.946667pt;}
._2d_c00231{width:30.378667pt;}
._33_c00231{width:33.173333pt;}
._34_c00231{width:34.133333pt;}
._31_c00231{width:41.653333pt;}
._25_c00231{width:42.682667pt;}
._26_c00231{width:61.856000pt;}
._1c_c00231{width:64.949333pt;}
._5_c00231{width:72.373333pt;}
._19_c00231{width:73.333333pt;}
._d_c00231{width:74.453333pt;}
._12_c00231{width:77.173333pt;}
._22_c00231{width:79.040000pt;}
._f_c00231{width:82.773333pt;}
._11_c00231{width:84.746667pt;}
._29_c00231{width:107.840000pt;}
._28_c00231{width:116.213333pt;}
._23_c00231{width:166.613333pt;}
._21_c00231{width:284.298667pt;}
._1e_c00231{width:569.546667pt;}
.fs5_c00231{font-size:21.333333pt;}
.fs3_c00231{font-size:40.000000pt;}
.fs1_c00231{font-size:42.666667pt;}
.fs2_c00231{font-size:48.000000pt;}
.fs0_c00231{font-size:53.333333pt;}
.fs4_c00231{font-size:178.666667pt;}
.y0_c00231{bottom:0.000000pt;}
.y45_c00231{bottom:2.760000pt;}
.y44_c00231{bottom:6.425217pt;}
.y43_c00231{bottom:40.240000pt;}
.y37_c00231{bottom:55.706667pt;}
.y42_c00231{bottom:56.906667pt;}
.y36_c00231{bottom:72.506667pt;}
.y35_c00231{bottom:88.106667pt;}
.y41_c00231{bottom:89.040000pt;}
.y34_c00231{bottom:104.373333pt;}
.y40_c00231{bottom:105.040000pt;}
.y33_c00231{bottom:120.240000pt;}
.y3f_c00231{bottom:120.640000pt;}
.y32_c00231{bottom:136.240000pt;}
.y3e_c00231{bottom:137.973333pt;}
.y31_c00231{bottom:152.106667pt;}
.y3d_c00231{bottom:153.840000pt;}
.y30_c00231{bottom:168.640000pt;}
.y3c_c00231{bottom:170.106667pt;}
.y2f_c00231{bottom:184.240000pt;}
.y3b_c00231{bottom:185.706667pt;}
.y2e_c00231{bottom:200.640000pt;}
.y3a_c00231{bottom:202.106667pt;}
.y2d_c00231{bottom:216.640000pt;}
.y39_c00231{bottom:217.706667pt;}
.y2c_c00231{bottom:232.506667pt;}
.y38_c00231{bottom:234.240000pt;}
.y25_c00231{bottom:240.506667pt;}
.y24_c00231{bottom:249.840000pt;}
.y23_c00231{bottom:264.640000pt;}
.y2b_c00231{bottom:266.640000pt;}
.y29_c00231{bottom:275.306667pt;}
.y22_c00231{bottom:281.306667pt;}
.y2a_c00231{bottom:282.506667pt;}
.y21_c00231{bottom:297.306667pt;}
.y20_c00231{bottom:313.440000pt;}
.y1f_c00231{bottom:329.306667pt;}
.y28_c00231{bottom:331.173333pt;}
.y1e_c00231{bottom:346.240000pt;}
.y27_c00231{bottom:347.706667pt;}
.y1d_c00231{bottom:361.706667pt;}
.y26_c00231{bottom:363.840000pt;}
.y1c_c00231{bottom:378.906667pt;}
.y1b_c00231{bottom:394.773333pt;}
.y1a_c00231{bottom:410.106667pt;}
.y19_c00231{bottom:426.506667pt;}
.y18_c00231{bottom:442.506667pt;}
.y17_c00231{bottom:459.306667pt;}
.yf_c00231{bottom:475.706667pt;}
.y16_c00231{bottom:476.640000pt;}
.ye_c00231{bottom:491.306667pt;}
.y15_c00231{bottom:493.173333pt;}
.yd_c00231{bottom:507.840000pt;}
.y14_c00231{bottom:508.773333pt;}
.yc_c00231{bottom:524.373333pt;}
.y13_c00231{bottom:525.573333pt;}
.yb_c00231{bottom:540.506667pt;}
.y12_c00231{bottom:541.706667pt;}
.ya_c00231{bottom:557.440000pt;}
.y11_c00231{bottom:557.973333pt;}
.y9_c00231{bottom:572.906667pt;}
.y10_c00231{bottom:573.840000pt;}
.y8_c00231{bottom:589.706667pt;}
.y7_c00231{bottom:605.973333pt;}
.y6_c00231{bottom:622.240000pt;}
.y5_c00231{bottom:638.106667pt;}
.y4_c00231{bottom:654.240000pt;}
.y3_c00231{bottom:670.240000pt;}
.y2_c00231{bottom:686.640000pt;}
.y1_c00231{bottom:703.173333pt;}
.h5_c00231{height:11.733399pt;}
.h6_c00231{height:38.937500pt;}
.h2_c00231{height:55.893333pt;}
.h4_c00231{height:56.906667pt;}
.h3_c00231{height:187.242667pt;}
.h1_c00231{height:756.666667pt;}
.h0_c00231{height:756.933333pt;}
.w2_c00231{width:93.222667pt;}
.w1_c00231{width:502.666667pt;}
.w0_c00231{width:502.800000pt;}
.x0_c00231{left:0.000000pt;}
.x17_c00231{left:26.400000pt;}
.x19_c00231{left:81.333333pt;}
.x5_c00231{left:82.266667pt;}
.x18_c00231{left:83.600000pt;}
.x16_c00231{left:84.933333pt;}
.x6_c00231{left:85.866667pt;}
.x1_c00231{left:87.066667pt;}
.x2_c00231{left:88.800000pt;}
.x3_c00231{left:89.733333pt;}
.x7_c00231{left:178.800000pt;}
.x20_c00231{left:208.568237pt;}
.x8_c00231{left:211.733333pt;}
.x1e_c00231{left:273.200000pt;}
.x1d_c00231{left:274.533333pt;}
.x1c_c00231{left:275.600000pt;}
.x1b_c00231{left:276.533333pt;}
.x1a_c00231{left:278.400000pt;}
.x13_c00231{left:279.600000pt;}
.x4_c00231{left:282.400000pt;}
.x10_c00231{left:289.733333pt;}
.x11_c00231{left:304.800000pt;}
.x15_c00231{left:311.733333pt;}
.x14_c00231{left:314.400000pt;}
.x12_c00231{left:333.200000pt;}
.x9_c00231{left:335.066667pt;}
.xa_c00231{left:356.000000pt;}
.xb_c00231{left:361.200000pt;}
.xc_c00231{left:373.200000pt;}
.xd_c00231{left:376.400000pt;}
.xe_c00231{left:397.466667pt;}
.x1f_c00231{left:410.400000pt;}
.xf_c00231{left:426.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_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_a8d123a86035f299c590eb66.woff2')format("woff");}.ff1_c00232{font-family:ff1_c00232;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00232;src:url('chunks/assets/font_bb17ef0b845861e36714fe6b.woff2')format("woff");}.ff2_c00232{font-family:ff2_c00232;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00232;src:url('chunks/assets/font_6f0f5a7f0db8c6a05b624a11.woff2')format("woff");}.ff3_c00232{font-family:ff3_c00232;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00232;src:url('chunks/assets/font_b256d9dc25c4ce31920f180f.woff2')format("woff");}.ff4_c00232{font-family:ff4_c00232;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00232;src:url('chunks/assets/font_afb46fff64861a70566c32f7.woff2')format("woff");}.ff5_c00232{font-family:ff5_c00232;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00232;src:url('chunks/assets/font_e1e0a16111aa70de6d25f2ee.woff2')format("woff");}.ff6_c00232{font-family:ff6_c00232;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00232;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff7_c00232{font-family:ff7_c00232;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00232{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00232{vertical-align:0.000000px;}
.ls9_c00232{letter-spacing:0.000000px;}
.ls1_c00232{letter-spacing:2.805000px;}
.ls6_c00232{letter-spacing:3.000000px;}
.ls3_c00232{letter-spacing:5.400000px;}
.lsb_c00232{letter-spacing:6.000000px;}
.ls5_c00232{letter-spacing:7.800000px;}
.lsa_c00232{letter-spacing:12.000000px;}
.ls0_c00232{letter-spacing:15.000000px;}
.ls8_c00232{letter-spacing:21.645000px;}
.ls4_c00232{letter-spacing:22.005000px;}
.ls7_c00232{letter-spacing:24.045000px;}
.ls2_c00232{letter-spacing:25.140000px;}
.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;}
}
.ws5_c00232{word-spacing:-57.876000px;}
.ws4_c00232{word-spacing:-29.295000px;}
.ws2_c00232{word-spacing:-18.060000px;}
.ws3_c00232{word-spacing:-17.340000px;}
.ws1_c00232{word-spacing:-14.160000px;}
.ws0_c00232{word-spacing:-13.452000px;}
.ws6_c00232{word-spacing:0.000000px;}
._23_c00232{margin-left:-17.313000px;}
._25_c00232{margin-left:-12.012000px;}
._22_c00232{margin-left:-10.758000px;}
._26_c00232{margin-left:-9.282000px;}
._1c_c00232{margin-left:-7.560000px;}
._e_c00232{margin-left:-5.460000px;}
._7_c00232{margin-left:-4.320000px;}
._0_c00232{margin-left:-2.400000px;}
._6_c00232{margin-left:-1.380000px;}
._10_c00232{width:1.380000px;}
._2_c00232{width:2.460000px;}
._4_c00232{width:3.540000px;}
._3_c00232{width:4.800000px;}
._5_c00232{width:6.540000px;}
._1a_c00232{width:7.620000px;}
._8_c00232{width:8.778000px;}
._14_c00232{width:10.122000px;}
._12_c00232{width:11.520000px;}
._1b_c00232{width:12.720000px;}
._13_c00232{width:14.700000px;}
._17_c00232{width:15.900000px;}
._29_c00232{width:17.400000px;}
._b_c00232{width:18.471000px;}
._f_c00232{width:20.220000px;}
._19_c00232{width:21.540000px;}
._1_c00232{width:23.940000px;}
._9_c00232{width:25.059000px;}
._c_c00232{width:27.018000px;}
._16_c00232{width:28.560000px;}
._a_c00232{width:30.933000px;}
._21_c00232{width:33.420000px;}
._1d_c00232{width:34.920000px;}
._1e_c00232{width:36.180000px;}
._11_c00232{width:39.120000px;}
._28_c00232{width:42.219000px;}
._1f_c00232{width:45.480000px;}
._24_c00232{width:50.340000px;}
._d_c00232{width:64.620000px;}
._15_c00232{width:69.060000px;}
._20_c00232{width:97.920000px;}
._18_c00232{width:141.300000px;}
._27_c00232{width:436.746000px;}
.fc2_c00232{color:transparent;}
.fc1_c00232{color:rgb(128,128,128);}
.fc0_c00232{color:rgb(0,0,0);}
.fs2_c00232{font-size:45.000000px;}
.fs5_c00232{font-size:48.000000px;}
.fs4_c00232{font-size:54.000000px;}
.fs1_c00232{font-size:57.000000px;}
.fs0_c00232{font-size:60.000000px;}
.fs3_c00232{font-size:78.000000px;}
.y0_c00232{bottom:0.000000px;}
.y54_c00232{bottom:3.105000px;}
.y53_c00232{bottom:7.228369px;}
.y52_c00232{bottom:27.570000px;}
.y51_c00232{bottom:46.470000px;}
.y2a_c00232{bottom:50.220000px;}
.y50_c00232{bottom:66.120000px;}
.y29_c00232{bottom:68.670000px;}
.y4f_c00232{bottom:84.420000px;}
.y28_c00232{bottom:86.970000px;}
.y4e_c00232{bottom:101.820000px;}
.y27_c00232{bottom:105.270000px;}
.y4d_c00232{bottom:119.820000px;}
.y26_c00232{bottom:123.870000px;}
.y4c_c00232{bottom:138.420000px;}
.y25_c00232{bottom:141.720000px;}
.y4b_c00232{bottom:156.570000px;}
.y24_c00232{bottom:159.570000px;}
.y4a_c00232{bottom:175.170000px;}
.y23_c00232{bottom:178.170000px;}
.y49_c00232{bottom:193.620000px;}
.y22_c00232{bottom:196.320000px;}
.y48_c00232{bottom:210.870000px;}
.y21_c00232{bottom:213.270000px;}
.y47_c00232{bottom:230.070000px;}
.y20_c00232{bottom:232.770000px;}
.y46_c00232{bottom:247.770000px;}
.y1f_c00232{bottom:251.670000px;}
.y45_c00232{bottom:265.920000px;}
.y1e_c00232{bottom:269.370000px;}
.y44_c00232{bottom:284.070000px;}
.y1d_c00232{bottom:287.520000px;}
.y43_c00232{bottom:301.770000px;}
.y1c_c00232{bottom:305.670000px;}
.y42_c00232{bottom:319.620000px;}
.y1b_c00232{bottom:323.370000px;}
.y41_c00232{bottom:338.220000px;}
.y1a_c00232{bottom:341.220000px;}
.y40_c00232{bottom:356.370000px;}
.y19_c00232{bottom:359.370000px;}
.y3f_c00232{bottom:374.220000px;}
.y18_c00232{bottom:377.670000px;}
.y3e_c00232{bottom:392.070000px;}
.y17_c00232{bottom:395.220000px;}
.y3d_c00232{bottom:410.370000px;}
.y16_c00232{bottom:414.120000px;}
.y3c_c00232{bottom:428.970000px;}
.y15_c00232{bottom:431.970000px;}
.y3b_c00232{bottom:446.820000px;}
.y14_c00232{bottom:450.120000px;}
.y3a_c00232{bottom:464.970000px;}
.y13_c00232{bottom:467.370000px;}
.y39_c00232{bottom:482.670000px;}
.y12_c00232{bottom:484.620000px;}
.y38_c00232{bottom:501.120000px;}
.y11_c00232{bottom:502.770000px;}
.y37_c00232{bottom:519.120000px;}
.y10_c00232{bottom:520.470000px;}
.y36_c00232{bottom:537.870000px;}
.yf_c00232{bottom:538.620000px;}
.y35_c00232{bottom:555.570000px;}
.ye_c00232{bottom:556.920000px;}
.y34_c00232{bottom:574.020000px;}
.yd_c00232{bottom:575.820000px;}
.y33_c00232{bottom:592.320000px;}
.yc_c00232{bottom:593.370000px;}
.y32_c00232{bottom:610.470000px;}
.yb_c00232{bottom:611.820000px;}
.y31_c00232{bottom:628.020000px;}
.ya_c00232{bottom:629.370000px;}
.y30_c00232{bottom:647.220000px;}
.y9_c00232{bottom:648.270000px;}
.y2f_c00232{bottom:664.920000px;}
.y8_c00232{bottom:666.120000px;}
.y2e_c00232{bottom:683.670000px;}
.y7_c00232{bottom:683.820000px;}
.y2d_c00232{bottom:701.220000px;}
.y6_c00232{bottom:701.970000px;}
.y5_c00232{bottom:720.120000px;}
.y4_c00232{bottom:737.820000px;}
.y3_c00232{bottom:756.570000px;}
.y2_c00232{bottom:774.270000px;}
.y2c_c00232{bottom:774.870000px;}
.y2b_c00232{bottom:794.370000px;}
.y1_c00232{bottom:794.520000px;}
.h6_c00232{height:13.200073px;}
.h7_c00232{height:43.804688px;}
.h3_c00232{height:59.736000px;}
.h2_c00232{height:62.880000px;}
.h4_c00232{height:64.020000px;}
.h5_c00232{height:81.744000px;}
.h1_c00232{height:832.500000px;}
.h0_c00232{height:832.650000px;}
.w2_c00232{width:104.875500px;}
.w1_c00232{width:583.500000px;}
.w0_c00232{width:583.725000px;}
.x0_c00232{left:0.000000px;}
.x3_c00232{left:17.250000px;}
.x4_c00232{left:18.300000px;}
.x6_c00232{left:21.600000px;}
.xa_c00232{left:25.050000px;}
.x2_c00232{left:77.400000px;}
.x5_c00232{left:80.400000px;}
.x7_c00232{left:81.450000px;}
.x8_c00232{left:82.800000px;}
.x9_c00232{left:84.750000px;}
.xb_c00232{left:86.400000px;}
.x1_c00232{left:208.200000px;}
.x12_c00232{left:243.676758px;}
.xc_c00232{left:293.400000px;}
.xd_c00232{left:295.050000px;}
.xe_c00232{left:296.100000px;}
.xf_c00232{left:297.450000px;}
.x10_c00232{left:298.650000px;}
.x11_c00232{left:461.100000px;}
@media print{
.v0_c00232{vertical-align:0.000000pt;}
.ls9_c00232{letter-spacing:0.000000pt;}
.ls1_c00232{letter-spacing:2.493333pt;}
.ls6_c00232{letter-spacing:2.666667pt;}
.ls3_c00232{letter-spacing:4.800000pt;}
.lsb_c00232{letter-spacing:5.333333pt;}
.ls5_c00232{letter-spacing:6.933333pt;}
.lsa_c00232{letter-spacing:10.666667pt;}
.ls0_c00232{letter-spacing:13.333333pt;}
.ls8_c00232{letter-spacing:19.240000pt;}
.ls4_c00232{letter-spacing:19.560000pt;}
.ls7_c00232{letter-spacing:21.373333pt;}
.ls2_c00232{letter-spacing:22.346667pt;}
.ws5_c00232{word-spacing:-51.445333pt;}
.ws4_c00232{word-spacing:-26.040000pt;}
.ws2_c00232{word-spacing:-16.053333pt;}
.ws3_c00232{word-spacing:-15.413333pt;}
.ws1_c00232{word-spacing:-12.586667pt;}
.ws0_c00232{word-spacing:-11.957333pt;}
.ws6_c00232{word-spacing:0.000000pt;}
._23_c00232{margin-left:-15.389333pt;}
._25_c00232{margin-left:-10.677333pt;}
._22_c00232{margin-left:-9.562667pt;}
._26_c00232{margin-left:-8.250667pt;}
._1c_c00232{margin-left:-6.720000pt;}
._e_c00232{margin-left:-4.853333pt;}
._7_c00232{margin-left:-3.840000pt;}
._0_c00232{margin-left:-2.133333pt;}
._6_c00232{margin-left:-1.226667pt;}
._10_c00232{width:1.226667pt;}
._2_c00232{width:2.186667pt;}
._4_c00232{width:3.146667pt;}
._3_c00232{width:4.266667pt;}
._5_c00232{width:5.813333pt;}
._1a_c00232{width:6.773333pt;}
._8_c00232{width:7.802667pt;}
._14_c00232{width:8.997333pt;}
._12_c00232{width:10.240000pt;}
._1b_c00232{width:11.306667pt;}
._13_c00232{width:13.066667pt;}
._17_c00232{width:14.133333pt;}
._29_c00232{width:15.466667pt;}
._b_c00232{width:16.418667pt;}
._f_c00232{width:17.973333pt;}
._19_c00232{width:19.146667pt;}
._1_c00232{width:21.280000pt;}
._9_c00232{width:22.274667pt;}
._c_c00232{width:24.016000pt;}
._16_c00232{width:25.386667pt;}
._a_c00232{width:27.496000pt;}
._21_c00232{width:29.706667pt;}
._1d_c00232{width:31.040000pt;}
._1e_c00232{width:32.160000pt;}
._11_c00232{width:34.773333pt;}
._28_c00232{width:37.528000pt;}
._1f_c00232{width:40.426667pt;}
._24_c00232{width:44.746667pt;}
._d_c00232{width:57.440000pt;}
._15_c00232{width:61.386667pt;}
._20_c00232{width:87.040000pt;}
._18_c00232{width:125.600000pt;}
._27_c00232{width:388.218667pt;}
.fs2_c00232{font-size:40.000000pt;}
.fs5_c00232{font-size:42.666667pt;}
.fs4_c00232{font-size:48.000000pt;}
.fs1_c00232{font-size:50.666667pt;}
.fs0_c00232{font-size:53.333333pt;}
.fs3_c00232{font-size:69.333333pt;}
.y0_c00232{bottom:0.000000pt;}
.y54_c00232{bottom:2.760000pt;}
.y53_c00232{bottom:6.425217pt;}
.y52_c00232{bottom:24.506667pt;}
.y51_c00232{bottom:41.306667pt;}
.y2a_c00232{bottom:44.640000pt;}
.y50_c00232{bottom:58.773333pt;}
.y29_c00232{bottom:61.040000pt;}
.y4f_c00232{bottom:75.040000pt;}
.y28_c00232{bottom:77.306667pt;}
.y4e_c00232{bottom:90.506667pt;}
.y27_c00232{bottom:93.573333pt;}
.y4d_c00232{bottom:106.506667pt;}
.y26_c00232{bottom:110.106667pt;}
.y4c_c00232{bottom:123.040000pt;}
.y25_c00232{bottom:125.973333pt;}
.y4b_c00232{bottom:139.173333pt;}
.y24_c00232{bottom:141.840000pt;}
.y4a_c00232{bottom:155.706667pt;}
.y23_c00232{bottom:158.373333pt;}
.y49_c00232{bottom:172.106667pt;}
.y22_c00232{bottom:174.506667pt;}
.y48_c00232{bottom:187.440000pt;}
.y21_c00232{bottom:189.573333pt;}
.y47_c00232{bottom:204.506667pt;}
.y20_c00232{bottom:206.906667pt;}
.y46_c00232{bottom:220.240000pt;}
.y1f_c00232{bottom:223.706667pt;}
.y45_c00232{bottom:236.373333pt;}
.y1e_c00232{bottom:239.440000pt;}
.y44_c00232{bottom:252.506667pt;}
.y1d_c00232{bottom:255.573333pt;}
.y43_c00232{bottom:268.240000pt;}
.y1c_c00232{bottom:271.706667pt;}
.y42_c00232{bottom:284.106667pt;}
.y1b_c00232{bottom:287.440000pt;}
.y41_c00232{bottom:300.640000pt;}
.y1a_c00232{bottom:303.306667pt;}
.y40_c00232{bottom:316.773333pt;}
.y19_c00232{bottom:319.440000pt;}
.y3f_c00232{bottom:332.640000pt;}
.y18_c00232{bottom:335.706667pt;}
.y3e_c00232{bottom:348.506667pt;}
.y17_c00232{bottom:351.306667pt;}
.y3d_c00232{bottom:364.773333pt;}
.y16_c00232{bottom:368.106667pt;}
.y3c_c00232{bottom:381.306667pt;}
.y15_c00232{bottom:383.973333pt;}
.y3b_c00232{bottom:397.173333pt;}
.y14_c00232{bottom:400.106667pt;}
.y3a_c00232{bottom:413.306667pt;}
.y13_c00232{bottom:415.440000pt;}
.y39_c00232{bottom:429.040000pt;}
.y12_c00232{bottom:430.773333pt;}
.y38_c00232{bottom:445.440000pt;}
.y11_c00232{bottom:446.906667pt;}
.y37_c00232{bottom:461.440000pt;}
.y10_c00232{bottom:462.640000pt;}
.y36_c00232{bottom:478.106667pt;}
.yf_c00232{bottom:478.773333pt;}
.y35_c00232{bottom:493.840000pt;}
.ye_c00232{bottom:495.040000pt;}
.y34_c00232{bottom:510.240000pt;}
.yd_c00232{bottom:511.840000pt;}
.y33_c00232{bottom:526.506667pt;}
.yc_c00232{bottom:527.440000pt;}
.y32_c00232{bottom:542.640000pt;}
.yb_c00232{bottom:543.840000pt;}
.y31_c00232{bottom:558.240000pt;}
.ya_c00232{bottom:559.440000pt;}
.y30_c00232{bottom:575.306667pt;}
.y9_c00232{bottom:576.240000pt;}
.y2f_c00232{bottom:591.040000pt;}
.y8_c00232{bottom:592.106667pt;}
.y2e_c00232{bottom:607.706667pt;}
.y7_c00232{bottom:607.840000pt;}
.y2d_c00232{bottom:623.306667pt;}
.y6_c00232{bottom:623.973333pt;}
.y5_c00232{bottom:640.106667pt;}
.y4_c00232{bottom:655.840000pt;}
.y3_c00232{bottom:672.506667pt;}
.y2_c00232{bottom:688.240000pt;}
.y2c_c00232{bottom:688.773333pt;}
.y2b_c00232{bottom:706.106667pt;}
.y1_c00232{bottom:706.240000pt;}
.h6_c00232{height:11.733399pt;}
.h7_c00232{height:38.937500pt;}
.h3_c00232{height:53.098667pt;}
.h2_c00232{height:55.893333pt;}
.h4_c00232{height:56.906667pt;}
.h5_c00232{height:72.661333pt;}
.h1_c00232{height:740.000000pt;}
.h0_c00232{height:740.133333pt;}
.w2_c00232{width:93.222667pt;}
.w1_c00232{width:518.666667pt;}
.w0_c00232{width:518.866667pt;}
.x0_c00232{left:0.000000pt;}
.x3_c00232{left:15.333333pt;}
.x4_c00232{left:16.266667pt;}
.x6_c00232{left:19.200000pt;}
.xa_c00232{left:22.266667pt;}
.x2_c00232{left:68.800000pt;}
.x5_c00232{left:71.466667pt;}
.x7_c00232{left:72.400000pt;}
.x8_c00232{left:73.600000pt;}
.x9_c00232{left:75.333333pt;}
.xb_c00232{left:76.800000pt;}
.x1_c00232{left:185.066667pt;}
.x12_c00232{left:216.601563pt;}
.xc_c00232{left:260.800000pt;}
.xd_c00232{left:262.266667pt;}
.xe_c00232{left:263.200000pt;}
.xf_c00232{left:264.400000pt;}
.x10_c00232{left:265.466667pt;}
.x11_c00232{left:409.866667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_93424b8e904c427be393231d.woff2')format("woff");}.ff1_c00233{font-family:ff1_c00233;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00233;src:url('chunks/assets/font_162975a9c31947da2eff2fe2.woff2')format("woff");}.ff2_c00233{font-family:ff2_c00233;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00233;src:url('chunks/assets/font_7e1abc4054c3ff722db6994b.woff2')format("woff");}.ff3_c00233{font-family:ff3_c00233;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00233;src:url('chunks/assets/font_b3cdb20a6ad5e27166c82978.woff2')format("woff");}.ff4_c00233{font-family:ff4_c00233;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00233;src:url('chunks/assets/font_64eb2c772fd43ebbcf6f690f.woff2')format("woff");}.ff5_c00233{font-family:ff5_c00233;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00233;src:url('chunks/assets/font_d86e7d4798b297c73abe8aa4.woff2')format("woff");}.ff6_c00233{font-family:ff6_c00233;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00233;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff7_c00233{font-family:ff7_c00233;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00233{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00233{vertical-align:0.000000px;}
.ls3_c00233{letter-spacing:0.000000px;}
.ls0_c00233{letter-spacing:3.000000px;}
.ls1_c00233{letter-spacing:4.140000px;}
.ls2_c00233{letter-spacing:10.800000px;}
.ls4_c00233{letter-spacing:12.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;}
}
.ws2_c00233{word-spacing:-35.973000px;}
.ws4_c00233{word-spacing:-30.072000px;}
.ws0_c00233{word-spacing:-29.295000px;}
.ws3_c00233{word-spacing:-18.300000px;}
.ws1_c00233{word-spacing:-14.160000px;}
.ws5_c00233{word-spacing:0.000000px;}
._41_c00233{margin-left:-34.776000px;}
._3f_c00233{margin-left:-26.946000px;}
._2a_c00233{margin-left:-22.230000px;}
._22_c00233{margin-left:-17.400000px;}
._1e_c00233{margin-left:-13.410000px;}
._20_c00233{margin-left:-11.700000px;}
._1f_c00233{margin-left:-9.930000px;}
._b_c00233{margin-left:-8.580000px;}
._29_c00233{margin-left:-7.020000px;}
._15_c00233{margin-left:-5.400000px;}
._12_c00233{margin-left:-4.140000px;}
._f_c00233{margin-left:-2.700000px;}
._11_c00233{margin-left:-1.650000px;}
._1a_c00233{width:1.050000px;}
._d_c00233{width:2.070000px;}
._e_c00233{width:3.270000px;}
._0_c00233{width:4.590000px;}
._1d_c00233{width:6.120000px;}
._c_c00233{width:7.800000px;}
._16_c00233{width:9.030000px;}
._10_c00233{width:10.380000px;}
._9_c00233{width:11.700000px;}
._25_c00233{width:12.930000px;}
._18_c00233{width:13.980000px;}
._2_c00233{width:15.300000px;}
._3_c00233{width:17.040000px;}
._2f_c00233{width:19.080000px;}
._8_c00233{width:20.580000px;}
._6_c00233{width:21.660000px;}
._5_c00233{width:23.160000px;}
._13_c00233{width:24.660000px;}
._4_c00233{width:25.980000px;}
._a_c00233{width:28.200000px;}
._21_c00233{width:29.700000px;}
._37_c00233{width:32.550000px;}
._33_c00233{width:34.860000px;}
._30_c00233{width:36.210000px;}
._36_c00233{width:38.820000px;}
._7_c00233{width:47.940000px;}
._3c_c00233{width:51.510000px;}
._40_c00233{width:71.994000px;}
._38_c00233{width:87.780000px;}
._2e_c00233{width:90.660000px;}
._27_c00233{width:92.640000px;}
._2b_c00233{width:100.080000px;}
._2d_c00233{width:101.370000px;}
._2c_c00233{width:102.450000px;}
._35_c00233{width:103.890000px;}
._34_c00233{width:105.060000px;}
._28_c00233{width:106.380000px;}
._14_c00233{width:107.460000px;}
._1c_c00233{width:108.750000px;}
._39_c00233{width:109.920000px;}
._24_c00233{width:111.660000px;}
._32_c00233{width:112.902000px;}
._19_c00233{width:114.000000px;}
._17_c00233{width:116.520000px;}
._3b_c00233{width:119.010000px;}
._3d_c00233{width:122.340000px;}
._26_c00233{width:125.790000px;}
._3e_c00233{width:129.780000px;}
._3a_c00233{width:138.210000px;}
._23_c00233{width:192.990000px;}
._1_c00233{width:288.465000px;}
._1b_c00233{width:316.590000px;}
._31_c00233{width:563.460000px;}
._42_c00233{width:1362.600000px;}
.fc2_c00233{color:transparent;}
.fc1_c00233{color:rgb(128,128,128);}
.fc0_c00233{color:rgb(0,0,0);}
.fs0_c00233{font-size:45.000000px;}
.fs4_c00233{font-size:48.000000px;}
.fs1_c00233{font-size:60.000000px;}
.fs3_c00233{font-size:63.000000px;}
.fs2_c00233{font-size:72.000000px;}
.y0_c00233{bottom:0.000000px;}
.y2d_c00233{bottom:3.105000px;}
.y2c_c00233{bottom:7.228369px;}
.y2b_c00233{bottom:41.820000px;}
.y2a_c00233{bottom:58.770000px;}
.y29_c00233{bottom:76.920000px;}
.y28_c00233{bottom:95.520000px;}
.y27_c00233{bottom:113.370000px;}
.y26_c00233{bottom:131.970000px;}
.y25_c00233{bottom:149.820000px;}
.y24_c00233{bottom:167.970000px;}
.y23_c00233{bottom:186.270000px;}
.y22_c00233{bottom:204.870000px;}
.y21_c00233{bottom:223.320000px;}
.y20_c00233{bottom:241.920000px;}
.y1f_c00233{bottom:259.770000px;}
.y1e_c00233{bottom:277.770000px;}
.y1d_c00233{bottom:295.620000px;}
.y1c_c00233{bottom:313.920000px;}
.y1b_c00233{bottom:332.820000px;}
.y1a_c00233{bottom:350.670000px;}
.y19_c00233{bottom:369.270000px;}
.y18_c00233{bottom:387.120000px;}
.y17_c00233{bottom:405.570000px;}
.y16_c00233{bottom:423.270000px;}
.y15_c00233{bottom:442.470000px;}
.y14_c00233{bottom:461.370000px;}
.y13_c00233{bottom:478.620000px;}
.y12_c00233{bottom:497.370000px;}
.y11_c00233{bottom:515.670000px;}
.y10_c00233{bottom:533.820000px;}
.yf_c00233{bottom:552.120000px;}
.ye_c00233{bottom:570.720000px;}
.yd_c00233{bottom:588.870000px;}
.yc_c00233{bottom:606.870000px;}
.yb_c00233{bottom:625.770000px;}
.ya_c00233{bottom:644.220000px;}
.y9_c00233{bottom:662.070000px;}
.y8_c00233{bottom:680.370000px;}
.y7_c00233{bottom:699.270000px;}
.y6_c00233{bottom:717.570000px;}
.y5_c00233{bottom:736.770000px;}
.y4_c00233{bottom:753.570000px;}
.y3_c00233{bottom:771.570000px;}
.y2_c00233{bottom:790.320000px;}
.y1_c00233{bottom:809.970000px;}
.h6_c00233{height:13.200073px;}
.h7_c00233{height:43.804688px;}
.h2_c00233{height:62.880000px;}
.h4_c00233{height:67.221000px;}
.h3_c00233{height:70.664062px;}
.h5_c00233{height:75.456000px;}
.h1_c00233{height:851.250000px;}
.h0_c00233{height:851.550000px;}
.w2_c00233{width:104.875500px;}
.w1_c00233{width:565.500000px;}
.w0_c00233{width:565.650000px;}
.x0_c00233{left:0.000000px;}
.x2_c00233{left:77.250000px;}
.xa_c00233{left:81.450000px;}
.x9_c00233{left:82.650000px;}
.x8_c00233{left:83.700000px;}
.x7_c00233{left:84.750000px;}
.x6_c00233{left:86.100000px;}
.x4_c00233{left:87.150000px;}
.x3_c00233{left:88.200000px;}
.x1_c00233{left:90.750000px;}
.x5_c00233{left:102.300000px;}
.xb_c00233{left:234.639267px;}
@media print{
.v0_c00233{vertical-align:0.000000pt;}
.ls3_c00233{letter-spacing:0.000000pt;}
.ls0_c00233{letter-spacing:2.666667pt;}
.ls1_c00233{letter-spacing:3.680000pt;}
.ls2_c00233{letter-spacing:9.600000pt;}
.ls4_c00233{letter-spacing:10.666667pt;}
.ws2_c00233{word-spacing:-31.976000pt;}
.ws4_c00233{word-spacing:-26.730667pt;}
.ws0_c00233{word-spacing:-26.040000pt;}
.ws3_c00233{word-spacing:-16.266667pt;}
.ws1_c00233{word-spacing:-12.586667pt;}
.ws5_c00233{word-spacing:0.000000pt;}
._41_c00233{margin-left:-30.912000pt;}
._3f_c00233{margin-left:-23.952000pt;}
._2a_c00233{margin-left:-19.760000pt;}
._22_c00233{margin-left:-15.466667pt;}
._1e_c00233{margin-left:-11.920000pt;}
._20_c00233{margin-left:-10.400000pt;}
._1f_c00233{margin-left:-8.826667pt;}
._b_c00233{margin-left:-7.626667pt;}
._29_c00233{margin-left:-6.240000pt;}
._15_c00233{margin-left:-4.800000pt;}
._12_c00233{margin-left:-3.680000pt;}
._f_c00233{margin-left:-2.400000pt;}
._11_c00233{margin-left:-1.466667pt;}
._1a_c00233{width:0.933333pt;}
._d_c00233{width:1.840000pt;}
._e_c00233{width:2.906667pt;}
._0_c00233{width:4.080000pt;}
._1d_c00233{width:5.440000pt;}
._c_c00233{width:6.933333pt;}
._16_c00233{width:8.026667pt;}
._10_c00233{width:9.226667pt;}
._9_c00233{width:10.400000pt;}
._25_c00233{width:11.493333pt;}
._18_c00233{width:12.426667pt;}
._2_c00233{width:13.600000pt;}
._3_c00233{width:15.146667pt;}
._2f_c00233{width:16.960000pt;}
._8_c00233{width:18.293333pt;}
._6_c00233{width:19.253333pt;}
._5_c00233{width:20.586667pt;}
._13_c00233{width:21.920000pt;}
._4_c00233{width:23.093333pt;}
._a_c00233{width:25.066667pt;}
._21_c00233{width:26.400000pt;}
._37_c00233{width:28.933333pt;}
._33_c00233{width:30.986667pt;}
._30_c00233{width:32.186667pt;}
._36_c00233{width:34.506667pt;}
._7_c00233{width:42.613333pt;}
._3c_c00233{width:45.786667pt;}
._40_c00233{width:63.994667pt;}
._38_c00233{width:78.026667pt;}
._2e_c00233{width:80.586667pt;}
._27_c00233{width:82.346667pt;}
._2b_c00233{width:88.960000pt;}
._2d_c00233{width:90.106667pt;}
._2c_c00233{width:91.066667pt;}
._35_c00233{width:92.346667pt;}
._34_c00233{width:93.386667pt;}
._28_c00233{width:94.560000pt;}
._14_c00233{width:95.520000pt;}
._1c_c00233{width:96.666667pt;}
._39_c00233{width:97.706667pt;}
._24_c00233{width:99.253333pt;}
._32_c00233{width:100.357333pt;}
._19_c00233{width:101.333333pt;}
._17_c00233{width:103.573333pt;}
._3b_c00233{width:105.786667pt;}
._3d_c00233{width:108.746667pt;}
._26_c00233{width:111.813333pt;}
._3e_c00233{width:115.360000pt;}
._3a_c00233{width:122.853333pt;}
._23_c00233{width:171.546667pt;}
._1_c00233{width:256.413333pt;}
._1b_c00233{width:281.413333pt;}
._31_c00233{width:500.853333pt;}
._42_c00233{width:1211.200000pt;}
.fs0_c00233{font-size:40.000000pt;}
.fs4_c00233{font-size:42.666667pt;}
.fs1_c00233{font-size:53.333333pt;}
.fs3_c00233{font-size:56.000000pt;}
.fs2_c00233{font-size:64.000000pt;}
.y0_c00233{bottom:0.000000pt;}
.y2d_c00233{bottom:2.760000pt;}
.y2c_c00233{bottom:6.425217pt;}
.y2b_c00233{bottom:37.173333pt;}
.y2a_c00233{bottom:52.240000pt;}
.y29_c00233{bottom:68.373333pt;}
.y28_c00233{bottom:84.906667pt;}
.y27_c00233{bottom:100.773333pt;}
.y26_c00233{bottom:117.306667pt;}
.y25_c00233{bottom:133.173333pt;}
.y24_c00233{bottom:149.306667pt;}
.y23_c00233{bottom:165.573333pt;}
.y22_c00233{bottom:182.106667pt;}
.y21_c00233{bottom:198.506667pt;}
.y20_c00233{bottom:215.040000pt;}
.y1f_c00233{bottom:230.906667pt;}
.y1e_c00233{bottom:246.906667pt;}
.y1d_c00233{bottom:262.773333pt;}
.y1c_c00233{bottom:279.040000pt;}
.y1b_c00233{bottom:295.840000pt;}
.y1a_c00233{bottom:311.706667pt;}
.y19_c00233{bottom:328.240000pt;}
.y18_c00233{bottom:344.106667pt;}
.y17_c00233{bottom:360.506667pt;}
.y16_c00233{bottom:376.240000pt;}
.y15_c00233{bottom:393.306667pt;}
.y14_c00233{bottom:410.106667pt;}
.y13_c00233{bottom:425.440000pt;}
.y12_c00233{bottom:442.106667pt;}
.y11_c00233{bottom:458.373333pt;}
.y10_c00233{bottom:474.506667pt;}
.yf_c00233{bottom:490.773333pt;}
.ye_c00233{bottom:507.306667pt;}
.yd_c00233{bottom:523.440000pt;}
.yc_c00233{bottom:539.440000pt;}
.yb_c00233{bottom:556.240000pt;}
.ya_c00233{bottom:572.640000pt;}
.y9_c00233{bottom:588.506667pt;}
.y8_c00233{bottom:604.773333pt;}
.y7_c00233{bottom:621.573333pt;}
.y6_c00233{bottom:637.840000pt;}
.y5_c00233{bottom:654.906667pt;}
.y4_c00233{bottom:669.840000pt;}
.y3_c00233{bottom:685.840000pt;}
.y2_c00233{bottom:702.506667pt;}
.y1_c00233{bottom:719.973333pt;}
.h6_c00233{height:11.733399pt;}
.h7_c00233{height:38.937500pt;}
.h2_c00233{height:55.893333pt;}
.h4_c00233{height:59.752000pt;}
.h3_c00233{height:62.812500pt;}
.h5_c00233{height:67.072000pt;}
.h1_c00233{height:756.666667pt;}
.h0_c00233{height:756.933333pt;}
.w2_c00233{width:93.222667pt;}
.w1_c00233{width:502.666667pt;}
.w0_c00233{width:502.800000pt;}
.x0_c00233{left:0.000000pt;}
.x2_c00233{left:68.666667pt;}
.xa_c00233{left:72.400000pt;}
.x9_c00233{left:73.466667pt;}
.x8_c00233{left:74.400000pt;}
.x7_c00233{left:75.333333pt;}
.x6_c00233{left:76.533333pt;}
.x4_c00233{left:77.466667pt;}
.x3_c00233{left:78.400000pt;}
.x1_c00233{left:80.666667pt;}
.x5_c00233{left:90.933333pt;}
.xb_c00233{left:208.568237pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_929fa538769c955f3f5ea321.woff2')format("woff");}.ff1_c00234{font-family:ff1_c00234;line-height:1.437000;font-style:normal;font-weight:normal;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_4f51a73b227f72ea468a35ea.woff2')format("woff");}.ff2_c00234{font-family:ff2_c00234;line-height:1.437000;font-style:normal;font-weight:normal;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_f8e26cd23e7f315c2c2cec4d.woff2')format("woff");}.ff3_c00234{font-family:ff3_c00234;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00234;src:url('chunks/assets/font_dff8e632d87ee25e19c0c6df.woff2')format("woff");}.ff4_c00234{font-family:ff4_c00234;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00234;src:url('chunks/assets/font_c26cd8fb415ba6542e7633fb.woff2')format("woff");}.ff5_c00234{font-family:ff5_c00234;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00234;src:url('chunks/assets/font_0a2511c28d923dcc65e9d41d.woff2')format("woff");}.ff6_c00234{font-family:ff6_c00234;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00234;src:url('chunks/assets/font_ec8958901df410c93d3c700e.woff2')format("woff");}.ff7_c00234{font-family:ff7_c00234;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00234;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff8_c00234{font-family:ff8_c00234;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00234{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00234{vertical-align:0.000000px;}
.ls6_c00234{letter-spacing:-6.000000px;}
.ls5_c00234{letter-spacing:0.000000px;}
.ls2_c00234{letter-spacing:1.200000px;}
.ls1_c00234{letter-spacing:3.000000px;}
.ls3_c00234{letter-spacing:6.000000px;}
.ls0_c00234{letter-spacing:18.060000px;}
.ls4_c00234{letter-spacing:39.660000px;}
.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;}
}
.ws3_c00234{word-spacing:-23.088000px;}
.ws5_c00234{word-spacing:-20.340000px;}
.ws2_c00234{word-spacing:-18.060000px;}
.ws4_c00234{word-spacing:-16.623000px;}
.ws0_c00234{word-spacing:-14.160000px;}
.ws1_c00234{word-spacing:-11.679000px;}
.ws6_c00234{word-spacing:0.000000px;}
._1e_c00234{margin-left:-22.920000px;}
._21_c00234{margin-left:-16.800000px;}
._22_c00234{margin-left:-14.151000px;}
._23_c00234{margin-left:-11.580000px;}
._13_c00234{margin-left:-10.569000px;}
._1a_c00234{margin-left:-8.640000px;}
._15_c00234{margin-left:-7.260000px;}
._1b_c00234{margin-left:-6.000000px;}
._8_c00234{margin-left:-4.560000px;}
._2_c00234{margin-left:-2.700000px;}
._1_c00234{margin-left:-1.560000px;}
._4_c00234{width:1.020000px;}
._0_c00234{width:2.400000px;}
._6_c00234{width:4.140000px;}
._1c_c00234{width:5.415000px;}
._7_c00234{width:6.540000px;}
._b_c00234{width:7.560000px;}
._d_c00234{width:9.180000px;}
._12_c00234{width:10.485000px;}
._19_c00234{width:11.640000px;}
._3_c00234{width:12.720000px;}
._18_c00234{width:13.980000px;}
._9_c00234{width:16.020000px;}
._28_c00234{width:17.040000px;}
._20_c00234{width:19.065000px;}
._14_c00234{width:20.136000px;}
._29_c00234{width:21.240000px;}
._26_c00234{width:22.440000px;}
._16_c00234{width:23.880000px;}
._1d_c00234{width:24.960000px;}
._27_c00234{width:26.160000px;}
._1f_c00234{width:28.950000px;}
._e_c00234{width:30.780000px;}
._10_c00234{width:31.860000px;}
._25_c00234{width:33.360000px;}
._17_c00234{width:35.820000px;}
._24_c00234{width:40.260000px;}
._11_c00234{width:45.342000px;}
._c_c00234{width:46.440000px;}
._a_c00234{width:48.240000px;}
._f_c00234{width:138.600000px;}
._5_c00234{width:240.660000px;}
.fc2_c00234{color:transparent;}
.fc1_c00234{color:rgb(128,128,128);}
.fc0_c00234{color:rgb(0,0,0);}
.fs4_c00234{font-size:48.000000px;}
.fs1_c00234{font-size:51.000000px;}
.fs3_c00234{font-size:57.000000px;}
.fs0_c00234{font-size:60.000000px;}
.fs2_c00234{font-size:63.000000px;}
.y0_c00234{bottom:0.000000px;}
.y4d_c00234{bottom:3.105000px;}
.y4c_c00234{bottom:7.228371px;}
.y29_c00234{bottom:54.015000px;}
.y28_c00234{bottom:72.915000px;}
.y27_c00234{bottom:92.265000px;}
.y26_c00234{bottom:108.765000px;}
.y25_c00234{bottom:128.265000px;}
.y24_c00234{bottom:146.115000px;}
.y23_c00234{bottom:162.015000px;}
.y4b_c00234{bottom:178.965000px;}
.y22_c00234{bottom:182.715000px;}
.y4a_c00234{bottom:196.065000px;}
.y21_c00234{bottom:200.565000px;}
.y49_c00234{bottom:214.065000px;}
.y20_c00234{bottom:219.015000px;}
.y48_c00234{bottom:232.515000px;}
.y1f_c00234{bottom:236.565000px;}
.y47_c00234{bottom:250.815000px;}
.y1e_c00234{bottom:255.165000px;}
.y46_c00234{bottom:269.415000px;}
.y1d_c00234{bottom:271.815000px;}
.y45_c00234{bottom:287.565000px;}
.y1c_c00234{bottom:292.065000px;}
.y44_c00234{bottom:306.465000px;}
.y1b_c00234{bottom:307.815000px;}
.y43_c00234{bottom:325.065000px;}
.y1a_c00234{bottom:327.465000px;}
.y42_c00234{bottom:342.015000px;}
.y19_c00234{bottom:345.315000px;}
.y41_c00234{bottom:359.565000px;}
.y18_c00234{bottom:364.215000px;}
.y40_c00234{bottom:378.765000px;}
.y17_c00234{bottom:382.815000px;}
.y3f_c00234{bottom:396.915000px;}
.y16_c00234{bottom:400.815000px;}
.y3e_c00234{bottom:414.765000px;}
.y15_c00234{bottom:419.265000px;}
.y3d_c00234{bottom:433.665000px;}
.y14_c00234{bottom:437.715000px;}
.y3c_c00234{bottom:452.265000px;}
.y13_c00234{bottom:454.965000px;}
.y3b_c00234{bottom:470.865000px;}
.y12_c00234{bottom:472.515000px;}
.y3a_c00234{bottom:489.015000px;}
.y11_c00234{bottom:490.815000px;}
.y39_c00234{bottom:506.715000px;}
.y10_c00234{bottom:508.665000px;}
.y38_c00234{bottom:525.615000px;}
.yf_c00234{bottom:527.265000px;}
.y37_c00234{bottom:543.165000px;}
.ye_c00234{bottom:545.715000px;}
.y36_c00234{bottom:561.315000px;}
.yd_c00234{bottom:564.615000px;}
.y35_c00234{bottom:579.465000px;}
.yc_c00234{bottom:582.165000px;}
.y34_c00234{bottom:595.815000px;}
.yb_c00234{bottom:600.465000px;}
.y33_c00234{bottom:616.365000px;}
.ya_c00234{bottom:618.765000px;}
.y32_c00234{bottom:633.615000px;}
.y9_c00234{bottom:636.615000px;}
.y31_c00234{bottom:652.515000px;}
.y8_c00234{bottom:653.865000px;}
.y30_c00234{bottom:670.965000px;}
.y7_c00234{bottom:673.965000px;}
.y2f_c00234{bottom:688.815000px;}
.y6_c00234{bottom:690.165000px;}
.y2e_c00234{bottom:707.415000px;}
.y5_c00234{bottom:707.715000px;}
.y2d_c00234{bottom:725.415000px;}
.y4_c00234{bottom:726.615000px;}
.y2c_c00234{bottom:744.165000px;}
.y3_c00234{bottom:744.315000px;}
.y2b_c00234{bottom:761.415000px;}
.y2_c00234{bottom:762.765000px;}
.y2a_c00234{bottom:778.365000px;}
.y1_c00234{bottom:780.615000px;}
.h6_c00234{height:13.200074px;}
.h7_c00234{height:43.804688px;}
.h5_c00234{height:59.736000px;}
.h2_c00234{height:62.880000px;}
.h3_c00234{height:64.020000px;}
.h4_c00234{height:67.221000px;}
.h1_c00234{height:836.250000px;}
.h0_c00234{height:836.475000px;}
.w2_c00234{width:104.875500px;}
.w0_c00234{width:586.425000px;}
.w1_c00234{width:586.500000px;}
.x0_c00234{left:0.000000px;}
.x3_c00234{left:22.050000px;}
.x1_c00234{left:81.750000px;}
.x2_c00234{left:82.800000px;}
.x4_c00234{left:84.600000px;}
.x5_c00234{left:85.650000px;}
.x6_c00234{left:87.300000px;}
.x7_c00234{left:88.350000px;}
.x8_c00234{left:89.700000px;}
.x12_c00234{left:245.026749px;}
.x9_c00234{left:299.700000px;}
.xa_c00234{left:301.350000px;}
.xb_c00234{left:302.400000px;}
.xc_c00234{left:303.450000px;}
.xd_c00234{left:305.400000px;}
.xe_c00234{left:312.600000px;}
.xf_c00234{left:334.350000px;}
.x10_c00234{left:339.150000px;}
.x11_c00234{left:386.400000px;}
@media print{
.v0_c00234{vertical-align:0.000000pt;}
.ls6_c00234{letter-spacing:-5.333333pt;}
.ls5_c00234{letter-spacing:0.000000pt;}
.ls2_c00234{letter-spacing:1.066667pt;}
.ls1_c00234{letter-spacing:2.666667pt;}
.ls3_c00234{letter-spacing:5.333333pt;}
.ls0_c00234{letter-spacing:16.053333pt;}
.ls4_c00234{letter-spacing:35.253333pt;}
.ws3_c00234{word-spacing:-20.522667pt;}
.ws5_c00234{word-spacing:-18.080000pt;}
.ws2_c00234{word-spacing:-16.053333pt;}
.ws4_c00234{word-spacing:-14.776000pt;}
.ws0_c00234{word-spacing:-12.586667pt;}
.ws1_c00234{word-spacing:-10.381333pt;}
.ws6_c00234{word-spacing:0.000000pt;}
._1e_c00234{margin-left:-20.373333pt;}
._21_c00234{margin-left:-14.933333pt;}
._22_c00234{margin-left:-12.578667pt;}
._23_c00234{margin-left:-10.293333pt;}
._13_c00234{margin-left:-9.394667pt;}
._1a_c00234{margin-left:-7.680000pt;}
._15_c00234{margin-left:-6.453333pt;}
._1b_c00234{margin-left:-5.333333pt;}
._8_c00234{margin-left:-4.053333pt;}
._2_c00234{margin-left:-2.400000pt;}
._1_c00234{margin-left:-1.386667pt;}
._4_c00234{width:0.906667pt;}
._0_c00234{width:2.133333pt;}
._6_c00234{width:3.680000pt;}
._1c_c00234{width:4.813333pt;}
._7_c00234{width:5.813333pt;}
._b_c00234{width:6.720000pt;}
._d_c00234{width:8.160000pt;}
._12_c00234{width:9.320000pt;}
._19_c00234{width:10.346667pt;}
._3_c00234{width:11.306667pt;}
._18_c00234{width:12.426667pt;}
._9_c00234{width:14.240000pt;}
._28_c00234{width:15.146667pt;}
._20_c00234{width:16.946667pt;}
._14_c00234{width:17.898667pt;}
._29_c00234{width:18.880000pt;}
._26_c00234{width:19.946667pt;}
._16_c00234{width:21.226667pt;}
._1d_c00234{width:22.186667pt;}
._27_c00234{width:23.253333pt;}
._1f_c00234{width:25.733333pt;}
._e_c00234{width:27.360000pt;}
._10_c00234{width:28.320000pt;}
._25_c00234{width:29.653333pt;}
._17_c00234{width:31.840000pt;}
._24_c00234{width:35.786667pt;}
._11_c00234{width:40.304000pt;}
._c_c00234{width:41.280000pt;}
._a_c00234{width:42.880000pt;}
._f_c00234{width:123.200000pt;}
._5_c00234{width:213.920000pt;}
.fs4_c00234{font-size:42.666667pt;}
.fs1_c00234{font-size:45.333333pt;}
.fs3_c00234{font-size:50.666667pt;}
.fs0_c00234{font-size:53.333333pt;}
.fs2_c00234{font-size:56.000000pt;}
.y0_c00234{bottom:0.000000pt;}
.y4d_c00234{bottom:2.760000pt;}
.y4c_c00234{bottom:6.425219pt;}
.y29_c00234{bottom:48.013333pt;}
.y28_c00234{bottom:64.813333pt;}
.y27_c00234{bottom:82.013333pt;}
.y26_c00234{bottom:96.680000pt;}
.y25_c00234{bottom:114.013333pt;}
.y24_c00234{bottom:129.880000pt;}
.y23_c00234{bottom:144.013333pt;}
.y4b_c00234{bottom:159.080000pt;}
.y22_c00234{bottom:162.413333pt;}
.y4a_c00234{bottom:174.280000pt;}
.y21_c00234{bottom:178.280000pt;}
.y49_c00234{bottom:190.280000pt;}
.y20_c00234{bottom:194.680000pt;}
.y48_c00234{bottom:206.680000pt;}
.y1f_c00234{bottom:210.280000pt;}
.y47_c00234{bottom:222.946667pt;}
.y1e_c00234{bottom:226.813333pt;}
.y46_c00234{bottom:239.480000pt;}
.y1d_c00234{bottom:241.613333pt;}
.y45_c00234{bottom:255.613333pt;}
.y1c_c00234{bottom:259.613333pt;}
.y44_c00234{bottom:272.413333pt;}
.y1b_c00234{bottom:273.613333pt;}
.y43_c00234{bottom:288.946667pt;}
.y1a_c00234{bottom:291.080000pt;}
.y42_c00234{bottom:304.013333pt;}
.y19_c00234{bottom:306.946667pt;}
.y41_c00234{bottom:319.613333pt;}
.y18_c00234{bottom:323.746667pt;}
.y40_c00234{bottom:336.680000pt;}
.y17_c00234{bottom:340.280000pt;}
.y3f_c00234{bottom:352.813333pt;}
.y16_c00234{bottom:356.280000pt;}
.y3e_c00234{bottom:368.680000pt;}
.y15_c00234{bottom:372.680000pt;}
.y3d_c00234{bottom:385.480000pt;}
.y14_c00234{bottom:389.080000pt;}
.y3c_c00234{bottom:402.013333pt;}
.y13_c00234{bottom:404.413333pt;}
.y3b_c00234{bottom:418.546667pt;}
.y12_c00234{bottom:420.013333pt;}
.y3a_c00234{bottom:434.680000pt;}
.y11_c00234{bottom:436.280000pt;}
.y39_c00234{bottom:450.413333pt;}
.y10_c00234{bottom:452.146667pt;}
.y38_c00234{bottom:467.213333pt;}
.yf_c00234{bottom:468.680000pt;}
.y37_c00234{bottom:482.813333pt;}
.ye_c00234{bottom:485.080000pt;}
.y36_c00234{bottom:498.946667pt;}
.yd_c00234{bottom:501.880000pt;}
.y35_c00234{bottom:515.080000pt;}
.yc_c00234{bottom:517.480000pt;}
.y34_c00234{bottom:529.613333pt;}
.yb_c00234{bottom:533.746667pt;}
.y33_c00234{bottom:547.880000pt;}
.ya_c00234{bottom:550.013333pt;}
.y32_c00234{bottom:563.213333pt;}
.y9_c00234{bottom:565.880000pt;}
.y31_c00234{bottom:580.013333pt;}
.y8_c00234{bottom:581.213333pt;}
.y30_c00234{bottom:596.413333pt;}
.y7_c00234{bottom:599.080000pt;}
.y2f_c00234{bottom:612.280000pt;}
.y6_c00234{bottom:613.480000pt;}
.y2e_c00234{bottom:628.813333pt;}
.y5_c00234{bottom:629.080000pt;}
.y2d_c00234{bottom:644.813333pt;}
.y4_c00234{bottom:645.880000pt;}
.y2c_c00234{bottom:661.480000pt;}
.y3_c00234{bottom:661.613333pt;}
.y2b_c00234{bottom:676.813333pt;}
.y2_c00234{bottom:678.013333pt;}
.y2a_c00234{bottom:691.880000pt;}
.y1_c00234{bottom:693.880000pt;}
.h6_c00234{height:11.733399pt;}
.h7_c00234{height:38.937500pt;}
.h5_c00234{height:53.098667pt;}
.h2_c00234{height:55.893333pt;}
.h3_c00234{height:56.906667pt;}
.h4_c00234{height:59.752000pt;}
.h1_c00234{height:743.333333pt;}
.h0_c00234{height:743.533333pt;}
.w2_c00234{width:93.222667pt;}
.w0_c00234{width:521.266667pt;}
.w1_c00234{width:521.333333pt;}
.x0_c00234{left:0.000000pt;}
.x3_c00234{left:19.600000pt;}
.x1_c00234{left:72.666667pt;}
.x2_c00234{left:73.600000pt;}
.x4_c00234{left:75.200000pt;}
.x5_c00234{left:76.133333pt;}
.x6_c00234{left:77.600000pt;}
.x7_c00234{left:78.533333pt;}
.x8_c00234{left:79.733333pt;}
.x12_c00234{left:217.801554pt;}
.x9_c00234{left:266.400000pt;}
.xa_c00234{left:267.866667pt;}
.xb_c00234{left:268.800000pt;}
.xc_c00234{left:269.733333pt;}
.xd_c00234{left:271.466667pt;}
.xe_c00234{left:277.866667pt;}
.xf_c00234{left:297.200000pt;}
.x10_c00234{left:301.466667pt;}
.x11_c00234{left:343.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_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_daf623c526ad2523adfc0c22.woff2')format("woff");}.ff1_c00235{font-family:ff1_c00235;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:ff2_c00235;src:url('chunks/assets/font_65f55ef1bd7c153362ea056e.woff2')format("woff");}.ff2_c00235{font-family:ff2_c00235;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00235;src:url('chunks/assets/font_3e1499015b4a631b9e5535fc.woff2')format("woff");}.ff3_c00235{font-family:ff3_c00235;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00235;src:url('chunks/assets/font_d65755c373e2a3b1055641ee.woff2')format("woff");}.ff4_c00235{font-family:ff4_c00235;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00235;src:url('chunks/assets/font_8b64c4dccf3c2856bdb7b34f.woff2')format("woff");}.ff5_c00235{font-family:ff5_c00235;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00235;src:url('chunks/assets/font_7d648de750014d4659636ae5.woff2')format("woff");}.ff6_c00235{font-family:ff6_c00235;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00235;src:url('chunks/assets/font_7d3f9fcb9989e5aa115f1f18.woff2')format("woff");}.ff7_c00235{font-family:ff7_c00235;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00235;src:url('chunks/assets/font_16587259467c4b27956ff29f.woff2')format("woff");}.ff8_c00235{font-family:ff8_c00235;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00235;src:url('chunks/assets/font_c187767e5645bc23613d243f.woff2')format("woff");}.ff9_c00235{font-family:ff9_c00235;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00235;src:url('chunks/assets/font_5231d874cca4e4518c03e2da.woff2')format("woff");}.ffa_c00235{font-family:ffa_c00235;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00235;src:url('chunks/assets/font_aa9f165690fe15dae2d81a0a.woff2')format("woff");}.ffb_c00235{font-family:ffb_c00235;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc_c00235;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ffc_c00235{font-family:ffc_c00235;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00235{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00235{vertical-align:0.000000px;}
.lsb_c00235{letter-spacing:-6.000000px;}
.lsa_c00235{letter-spacing:0.000000px;}
.ls2_c00235{letter-spacing:1.710000px;}
.ls4_c00235{letter-spacing:2.460000px;}
.ls7_c00235{letter-spacing:2.640000px;}
.ls0_c00235{letter-spacing:3.000000px;}
.ls5_c00235{letter-spacing:6.000000px;}
.ls3_c00235{letter-spacing:6.450000px;}
.ls6_c00235{letter-spacing:12.660000px;}
.ls1_c00235{letter-spacing:15.288000px;}
.ls8_c00235{letter-spacing:21.420000px;}
.ls9_c00235{letter-spacing:31.260000px;}
.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;}
}
.wsc_c00235{word-spacing:-50.022000px;}
.ws7_c00235{word-spacing:-35.295000px;}
.wsa_c00235{word-spacing:-29.700000px;}
.ws0_c00235{word-spacing:-25.854000px;}
.ws9_c00235{word-spacing:-23.760000px;}
.ws4_c00235{word-spacing:-20.340000px;}
.ws8_c00235{word-spacing:-18.060000px;}
.ws2_c00235{word-spacing:-17.340000px;}
.ws5_c00235{word-spacing:-15.291000px;}
.ws1_c00235{word-spacing:-14.160000px;}
.wsb_c00235{word-spacing:-8.160000px;}
.ws3_c00235{word-spacing:-3.040800px;}
.ws6_c00235{word-spacing:-1.080000px;}
.wsd_c00235{word-spacing:0.000000px;}
._25_c00235{margin-left:-17.196000px;}
._1c_c00235{margin-left:-14.985000px;}
._11_c00235{margin-left:-13.680000px;}
._1b_c00235{margin-left:-11.670000px;}
._f_c00235{margin-left:-9.900000px;}
._10_c00235{margin-left:-8.172000px;}
._14_c00235{margin-left:-6.420000px;}
._20_c00235{margin-left:-4.920000px;}
._e_c00235{margin-left:-3.834000px;}
._18_c00235{margin-left:-2.742000px;}
._7_c00235{margin-left:-1.680000px;}
._9_c00235{width:1.200000px;}
._a_c00235{width:2.460000px;}
._0_c00235{width:3.534000px;}
._3_c00235{width:5.040000px;}
._4_c00235{width:6.300000px;}
._5_c00235{width:7.380000px;}
._21_c00235{width:8.466000px;}
._2_c00235{width:10.260000px;}
._6_c00235{width:12.120000px;}
._1e_c00235{width:13.842000px;}
._8_c00235{width:15.240000px;}
._22_c00235{width:16.428000px;}
._d_c00235{width:18.300000px;}
._c_c00235{width:19.980000px;}
._24_c00235{width:22.062000px;}
._23_c00235{width:23.328000px;}
._1d_c00235{width:24.417000px;}
._1_c00235{width:25.533000px;}
._b_c00235{width:27.840000px;}
._26_c00235{width:31.386000px;}
._16_c00235{width:34.560000px;}
._15_c00235{width:35.826000px;}
._12_c00235{width:37.380000px;}
._19_c00235{width:42.780000px;}
._17_c00235{width:44.160000px;}
._1f_c00235{width:76.668000px;}
._1a_c00235{width:105.594000px;}
._13_c00235{width:328.200000px;}
.fc2_c00235{color:transparent;}
.fc1_c00235{color:rgb(128,128,128);}
.fc0_c00235{color:rgb(0,0,0);}
.fs4_c00235{font-size:40.800000px;}
.fs5_c00235{font-size:45.000000px;}
.fs6_c00235{font-size:48.000000px;}
.fs3_c00235{font-size:51.000000px;}
.fs2_c00235{font-size:60.000000px;}
.fs7_c00235{font-size:63.000000px;}
.fs1_c00235{font-size:72.000000px;}
.fs0_c00235{font-size:93.000000px;}
.y0_c00235{bottom:0.000000px;}
.y55_c00235{bottom:3.105000px;}
.y54_c00235{bottom:7.228369px;}
.y51_c00235{bottom:38.070000px;}
.y28_c00235{bottom:52.020000px;}
.y50_c00235{bottom:56.670000px;}
.y27_c00235{bottom:70.920000px;}
.y4f_c00235{bottom:75.570000px;}
.y26_c00235{bottom:89.220000px;}
.y4e_c00235{bottom:93.420000px;}
.y25_c00235{bottom:107.220000px;}
.y4d_c00235{bottom:111.270000px;}
.y24_c00235{bottom:125.220000px;}
.y4c_c00235{bottom:129.570000px;}
.y23_c00235{bottom:143.670000px;}
.y4b_c00235{bottom:147.420000px;}
.y22_c00235{bottom:160.920000px;}
.y4a_c00235{bottom:165.720000px;}
.y21_c00235{bottom:179.820000px;}
.y49_c00235{bottom:184.170000px;}
.y20_c00235{bottom:197.370000px;}
.y48_c00235{bottom:202.470000px;}
.y1f_c00235{bottom:215.970000px;}
.y47_c00235{bottom:220.620000px;}
.y1e_c00235{bottom:234.270000px;}
.y46_c00235{bottom:238.620000px;}
.y1d_c00235{bottom:252.120000px;}
.y45_c00235{bottom:256.770000px;}
.y1c_c00235{bottom:269.670000px;}
.y44_c00235{bottom:274.620000px;}
.y1b_c00235{bottom:288.870000px;}
.y43_c00235{bottom:293.220000px;}
.y1a_c00235{bottom:307.170000px;}
.y42_c00235{bottom:311.220000px;}
.y19_c00235{bottom:325.020000px;}
.y41_c00235{bottom:329.070000px;}
.y18_c00235{bottom:343.470000px;}
.y40_c00235{bottom:347.520000px;}
.y17_c00235{bottom:361.170000px;}
.y3f_c00235{bottom:365.220000px;}
.y16_c00235{bottom:380.070000px;}
.y3e_c00235{bottom:383.970000px;}
.y15_c00235{bottom:398.970000px;}
.y3d_c00235{bottom:401.970000px;}
.y14_c00235{bottom:416.370000px;}
.y3c_c00235{bottom:420.570000px;}
.y13_c00235{bottom:434.070000px;}
.y3b_c00235{bottom:438.420000px;}
.y53_c00235{bottom:443.070000px;}
.y12_c00235{bottom:452.520000px;}
.y3a_c00235{bottom:456.870000px;}
.y52_c00235{bottom:462.420000px;}
.y11_c00235{bottom:470.820000px;}
.y39_c00235{bottom:473.520000px;}
.y10_c00235{bottom:489.420000px;}
.y38_c00235{bottom:492.120000px;}
.y3_c00235{bottom:494.820000px;}
.yf_c00235{bottom:508.620000px;}
.y37_c00235{bottom:511.020000px;}
.y2_c00235{bottom:513.570000px;}
.ye_c00235{bottom:526.770000px;}
.y36_c00235{bottom:529.470000px;}
.yd_c00235{bottom:544.620000px;}
.y35_c00235{bottom:547.470000px;}
.y34_c00235{bottom:565.920000px;}
.yc_c00235{bottom:567.570000px;}
.yb_c00235{bottom:582.570000px;}
.y33_c00235{bottom:584.520000px;}
.y32_c00235{bottom:602.070000px;}
.ya_c00235{bottom:603.120000px;}
.y31_c00235{bottom:620.970000px;}
.y9_c00235{bottom:621.570000px;}
.y30_c00235{bottom:639.270000px;}
.y2f_c00235{bottom:657.720000px;}
.y8_c00235{bottom:658.470000px;}
.y2e_c00235{bottom:675.570000px;}
.y7_c00235{bottom:676.920000px;}
.y2d_c00235{bottom:693.870000px;}
.y6_c00235{bottom:695.220000px;}
.y2c_c00235{bottom:712.020000px;}
.y5_c00235{bottom:713.520000px;}
.y2b_c00235{bottom:729.720000px;}
.y4_c00235{bottom:731.670000px;}
.y2a_c00235{bottom:748.920000px;}
.y1_c00235{bottom:766.770000px;}
.y29_c00235{bottom:785.370000px;}
.h7_c00235{height:13.200073px;}
.h8_c00235{height:43.804688px;}
.h4_c00235{height:59.690918px;}
.h3_c00235{height:62.880000px;}
.h5_c00235{height:64.020000px;}
.h6_c00235{height:66.024000px;}
.h2_c00235{height:96.996094px;}
.h1_c00235{height:851.250000px;}
.h0_c00235{height:851.550000px;}
.w2_c00235{width:104.875500px;}
.w1_c00235{width:565.500000px;}
.w0_c00235{width:565.650000px;}
.x0_c00235{left:0.000000px;}
.xf_c00235{left:24.000000px;}
.xe_c00235{left:25.350000px;}
.x2_c00235{left:26.400000px;}
.x3_c00235{left:27.750000px;}
.x13_c00235{left:64.800000px;}
.x14_c00235{left:82.800000px;}
.x12_c00235{left:84.450000px;}
.x11_c00235{left:86.100000px;}
.xd_c00235{left:87.150000px;}
.xc_c00235{left:88.200000px;}
.xb_c00235{left:89.550000px;}
.x8_c00235{left:91.500000px;}
.x4_c00235{left:93.600000px;}
.x10_c00235{left:106.950000px;}
.x5_c00235{left:108.000000px;}
.xa_c00235{left:123.150000px;}
.x6_c00235{left:133.050000px;}
.x9_c00235{left:137.400000px;}
.x1_c00235{left:162.450000px;}
.x7_c00235{left:169.500000px;}
.x20_c00235{left:234.639267px;}
.x1d_c00235{left:299.100000px;}
.x1a_c00235{left:300.450000px;}
.x1c_c00235{left:301.500000px;}
.x18_c00235{left:303.150000px;}
.x17_c00235{left:304.200000px;}
.x16_c00235{left:305.550000px;}
.x15_c00235{left:306.750000px;}
.x19_c00235{left:327.000000px;}
.x1b_c00235{left:328.050000px;}
.x1e_c00235{left:459.000000px;}
.x1f_c00235{left:510.300000px;}
@media print{
.v0_c00235{vertical-align:0.000000pt;}
.lsb_c00235{letter-spacing:-5.333333pt;}
.lsa_c00235{letter-spacing:0.000000pt;}
.ls2_c00235{letter-spacing:1.520000pt;}
.ls4_c00235{letter-spacing:2.186667pt;}
.ls7_c00235{letter-spacing:2.346667pt;}
.ls0_c00235{letter-spacing:2.666667pt;}
.ls5_c00235{letter-spacing:5.333333pt;}
.ls3_c00235{letter-spacing:5.733333pt;}
.ls6_c00235{letter-spacing:11.253333pt;}
.ls1_c00235{letter-spacing:13.589333pt;}
.ls8_c00235{letter-spacing:19.040000pt;}
.ls9_c00235{letter-spacing:27.786667pt;}
.wsc_c00235{word-spacing:-44.464000pt;}
.ws7_c00235{word-spacing:-31.373333pt;}
.wsa_c00235{word-spacing:-26.400000pt;}
.ws0_c00235{word-spacing:-22.981333pt;}
.ws9_c00235{word-spacing:-21.120000pt;}
.ws4_c00235{word-spacing:-18.080000pt;}
.ws8_c00235{word-spacing:-16.053333pt;}
.ws2_c00235{word-spacing:-15.413333pt;}
.ws5_c00235{word-spacing:-13.592000pt;}
.ws1_c00235{word-spacing:-12.586667pt;}
.wsb_c00235{word-spacing:-7.253333pt;}
.ws3_c00235{word-spacing:-2.702933pt;}
.ws6_c00235{word-spacing:-0.960000pt;}
.wsd_c00235{word-spacing:0.000000pt;}
._25_c00235{margin-left:-15.285333pt;}
._1c_c00235{margin-left:-13.320000pt;}
._11_c00235{margin-left:-12.160000pt;}
._1b_c00235{margin-left:-10.373333pt;}
._f_c00235{margin-left:-8.800000pt;}
._10_c00235{margin-left:-7.264000pt;}
._14_c00235{margin-left:-5.706667pt;}
._20_c00235{margin-left:-4.373333pt;}
._e_c00235{margin-left:-3.408000pt;}
._18_c00235{margin-left:-2.437333pt;}
._7_c00235{margin-left:-1.493333pt;}
._9_c00235{width:1.066667pt;}
._a_c00235{width:2.186667pt;}
._0_c00235{width:3.141333pt;}
._3_c00235{width:4.480000pt;}
._4_c00235{width:5.600000pt;}
._5_c00235{width:6.560000pt;}
._21_c00235{width:7.525333pt;}
._2_c00235{width:9.120000pt;}
._6_c00235{width:10.773333pt;}
._1e_c00235{width:12.304000pt;}
._8_c00235{width:13.546667pt;}
._22_c00235{width:14.602667pt;}
._d_c00235{width:16.266667pt;}
._c_c00235{width:17.760000pt;}
._24_c00235{width:19.610667pt;}
._23_c00235{width:20.736000pt;}
._1d_c00235{width:21.704000pt;}
._1_c00235{width:22.696000pt;}
._b_c00235{width:24.746667pt;}
._26_c00235{width:27.898667pt;}
._16_c00235{width:30.720000pt;}
._15_c00235{width:31.845333pt;}
._12_c00235{width:33.226667pt;}
._19_c00235{width:38.026667pt;}
._17_c00235{width:39.253333pt;}
._1f_c00235{width:68.149333pt;}
._1a_c00235{width:93.861333pt;}
._13_c00235{width:291.733333pt;}
.fs4_c00235{font-size:36.266667pt;}
.fs5_c00235{font-size:40.000000pt;}
.fs6_c00235{font-size:42.666667pt;}
.fs3_c00235{font-size:45.333333pt;}
.fs2_c00235{font-size:53.333333pt;}
.fs7_c00235{font-size:56.000000pt;}
.fs1_c00235{font-size:64.000000pt;}
.fs0_c00235{font-size:82.666667pt;}
.y0_c00235{bottom:0.000000pt;}
.y55_c00235{bottom:2.760000pt;}
.y54_c00235{bottom:6.425217pt;}
.y51_c00235{bottom:33.840000pt;}
.y28_c00235{bottom:46.240000pt;}
.y50_c00235{bottom:50.373333pt;}
.y27_c00235{bottom:63.040000pt;}
.y4f_c00235{bottom:67.173333pt;}
.y26_c00235{bottom:79.306667pt;}
.y4e_c00235{bottom:83.040000pt;}
.y25_c00235{bottom:95.306667pt;}
.y4d_c00235{bottom:98.906667pt;}
.y24_c00235{bottom:111.306667pt;}
.y4c_c00235{bottom:115.173333pt;}
.y23_c00235{bottom:127.706667pt;}
.y4b_c00235{bottom:131.040000pt;}
.y22_c00235{bottom:143.040000pt;}
.y4a_c00235{bottom:147.306667pt;}
.y21_c00235{bottom:159.840000pt;}
.y49_c00235{bottom:163.706667pt;}
.y20_c00235{bottom:175.440000pt;}
.y48_c00235{bottom:179.973333pt;}
.y1f_c00235{bottom:191.973333pt;}
.y47_c00235{bottom:196.106667pt;}
.y1e_c00235{bottom:208.240000pt;}
.y46_c00235{bottom:212.106667pt;}
.y1d_c00235{bottom:224.106667pt;}
.y45_c00235{bottom:228.240000pt;}
.y1c_c00235{bottom:239.706667pt;}
.y44_c00235{bottom:244.106667pt;}
.y1b_c00235{bottom:256.773333pt;}
.y43_c00235{bottom:260.640000pt;}
.y1a_c00235{bottom:273.040000pt;}
.y42_c00235{bottom:276.640000pt;}
.y19_c00235{bottom:288.906667pt;}
.y41_c00235{bottom:292.506667pt;}
.y18_c00235{bottom:305.306667pt;}
.y40_c00235{bottom:308.906667pt;}
.y17_c00235{bottom:321.040000pt;}
.y3f_c00235{bottom:324.640000pt;}
.y16_c00235{bottom:337.840000pt;}
.y3e_c00235{bottom:341.306667pt;}
.y15_c00235{bottom:354.640000pt;}
.y3d_c00235{bottom:357.306667pt;}
.y14_c00235{bottom:370.106667pt;}
.y3c_c00235{bottom:373.840000pt;}
.y13_c00235{bottom:385.840000pt;}
.y3b_c00235{bottom:389.706667pt;}
.y53_c00235{bottom:393.840000pt;}
.y12_c00235{bottom:402.240000pt;}
.y3a_c00235{bottom:406.106667pt;}
.y52_c00235{bottom:411.040000pt;}
.y11_c00235{bottom:418.506667pt;}
.y39_c00235{bottom:420.906667pt;}
.y10_c00235{bottom:435.040000pt;}
.y38_c00235{bottom:437.440000pt;}
.y3_c00235{bottom:439.840000pt;}
.yf_c00235{bottom:452.106667pt;}
.y37_c00235{bottom:454.240000pt;}
.y2_c00235{bottom:456.506667pt;}
.ye_c00235{bottom:468.240000pt;}
.y36_c00235{bottom:470.640000pt;}
.yd_c00235{bottom:484.106667pt;}
.y35_c00235{bottom:486.640000pt;}
.y34_c00235{bottom:503.040000pt;}
.yc_c00235{bottom:504.506667pt;}
.yb_c00235{bottom:517.840000pt;}
.y33_c00235{bottom:519.573333pt;}
.y32_c00235{bottom:535.173333pt;}
.ya_c00235{bottom:536.106667pt;}
.y31_c00235{bottom:551.973333pt;}
.y9_c00235{bottom:552.506667pt;}
.y30_c00235{bottom:568.240000pt;}
.y2f_c00235{bottom:584.640000pt;}
.y8_c00235{bottom:585.306667pt;}
.y2e_c00235{bottom:600.506667pt;}
.y7_c00235{bottom:601.706667pt;}
.y2d_c00235{bottom:616.773333pt;}
.y6_c00235{bottom:617.973333pt;}
.y2c_c00235{bottom:632.906667pt;}
.y5_c00235{bottom:634.240000pt;}
.y2b_c00235{bottom:648.640000pt;}
.y4_c00235{bottom:650.373333pt;}
.y2a_c00235{bottom:665.706667pt;}
.y1_c00235{bottom:681.573333pt;}
.y29_c00235{bottom:698.106667pt;}
.h7_c00235{height:11.733399pt;}
.h8_c00235{height:38.937500pt;}
.h4_c00235{height:53.058594pt;}
.h3_c00235{height:55.893333pt;}
.h5_c00235{height:56.906667pt;}
.h6_c00235{height:58.688000pt;}
.h2_c00235{height:86.218750pt;}
.h1_c00235{height:756.666667pt;}
.h0_c00235{height:756.933333pt;}
.w2_c00235{width:93.222667pt;}
.w1_c00235{width:502.666667pt;}
.w0_c00235{width:502.800000pt;}
.x0_c00235{left:0.000000pt;}
.xf_c00235{left:21.333333pt;}
.xe_c00235{left:22.533333pt;}
.x2_c00235{left:23.466667pt;}
.x3_c00235{left:24.666667pt;}
.x13_c00235{left:57.600000pt;}
.x14_c00235{left:73.600000pt;}
.x12_c00235{left:75.066667pt;}
.x11_c00235{left:76.533333pt;}
.xd_c00235{left:77.466667pt;}
.xc_c00235{left:78.400000pt;}
.xb_c00235{left:79.600000pt;}
.x8_c00235{left:81.333333pt;}
.x4_c00235{left:83.200000pt;}
.x10_c00235{left:95.066667pt;}
.x5_c00235{left:96.000000pt;}
.xa_c00235{left:109.466667pt;}
.x6_c00235{left:118.266667pt;}
.x9_c00235{left:122.133333pt;}
.x1_c00235{left:144.400000pt;}
.x7_c00235{left:150.666667pt;}
.x20_c00235{left:208.568237pt;}
.x1d_c00235{left:265.866667pt;}
.x1a_c00235{left:267.066667pt;}
.x1c_c00235{left:268.000000pt;}
.x18_c00235{left:269.466667pt;}
.x17_c00235{left:270.400000pt;}
.x16_c00235{left:271.600000pt;}
.x15_c00235{left:272.666667pt;}
.x19_c00235{left:290.666667pt;}
.x1b_c00235{left:291.600000pt;}
.x1e_c00235{left:408.000000pt;}
.x1f_c00235{left:453.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_42636360c8b87be8f85fec4e.woff2')format("woff");}.ff1_c00236{font-family:ff1_c00236;line-height:1.437000;font-style:normal;font-weight:normal;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_91e1970af935fdd8da8971a3.woff2')format("woff");}.ff2_c00236{font-family:ff2_c00236;line-height:1.437000;font-style:normal;font-weight:normal;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_748d0f3e64a73e3936facc63.woff2')format("woff");}.ff3_c00236{font-family:ff3_c00236;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00236;src:url('chunks/assets/font_c825735289702c4316ad5c84.woff2')format("woff");}.ff4_c00236{font-family:ff4_c00236;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00236;src:url('chunks/assets/font_a4d3c0ec218254e40a814737.woff2')format("woff");}.ff5_c00236{font-family:ff5_c00236;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00236;src:url('chunks/assets/font_f7fec140a016c7e40298d7f9.woff2')format("woff");}.ff6_c00236{font-family:ff6_c00236;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00236;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff7_c00236{font-family:ff7_c00236;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00236;src:url('chunks/assets/font_85af6b543a6a9865676181c3.woff2')format("woff");}.ff8_c00236{font-family:ff8_c00236;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00236;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff9_c00236{font-family:ff9_c00236;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00236{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00236{vertical-align:-76.800000px;}
.v0_c00236{vertical-align:0.000000px;}
.ls2_c00236{letter-spacing:0.000000px;}
.ls0_c00236{letter-spacing:3.000000px;}
.ls3_c00236{letter-spacing:6.000000px;}
.ls4_c00236{letter-spacing:12.000000px;}
.ls1_c00236{letter-spacing:16.200000px;}
.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;}
}
.ws4_c00236{word-spacing:-35.295000px;}
.ws5_c00236{word-spacing:-25.872000px;}
.ws0_c00236{word-spacing:-18.060000px;}
.ws1_c00236{word-spacing:-17.340000px;}
.ws3_c00236{word-spacing:-14.160000px;}
.ws6_c00236{word-spacing:0.000000px;}
.ws2_c00236{word-spacing:57.180000px;}
._2b_c00236{margin-left:-22.860000px;}
._14_c00236{margin-left:-18.180000px;}
._2a_c00236{margin-left:-16.935000px;}
._28_c00236{margin-left:-14.631000px;}
._23_c00236{margin-left:-13.020000px;}
._9_c00236{margin-left:-8.280000px;}
._21_c00236{margin-left:-7.020000px;}
._11_c00236{margin-left:-5.880000px;}
._c_c00236{margin-left:-3.900000px;}
._13_c00236{margin-left:-2.760000px;}
._f_c00236{margin-left:-1.740000px;}
._8_c00236{width:1.140000px;}
._a_c00236{width:2.520000px;}
._6_c00236{width:3.540000px;}
._10_c00236{width:4.620000px;}
._5_c00236{width:5.640000px;}
._1a_c00236{width:6.660000px;}
._1_c00236{width:7.740000px;}
._0_c00236{width:9.600000px;}
._18_c00236{width:10.860000px;}
._e_c00236{width:12.000000px;}
._3_c00236{width:13.260000px;}
._4_c00236{width:14.940000px;}
._29_c00236{width:16.020000px;}
._2d_c00236{width:17.880000px;}
._1e_c00236{width:19.938000px;}
._d_c00236{width:20.940000px;}
._7_c00236{width:22.140000px;}
._12_c00236{width:24.300000px;}
._19_c00236{width:26.580000px;}
._b_c00236{width:27.960000px;}
._2c_c00236{width:29.940000px;}
._25_c00236{width:31.440000px;}
._1b_c00236{width:33.480000px;}
._2_c00236{width:34.560000px;}
._16_c00236{width:36.240000px;}
._20_c00236{width:40.440000px;}
._26_c00236{width:41.940000px;}
._1f_c00236{width:45.900000px;}
._17_c00236{width:49.200000px;}
._22_c00236{width:53.340000px;}
._24_c00236{width:64.170000px;}
._1c_c00236{width:66.225000px;}
._15_c00236{width:100.740000px;}
._1d_c00236{width:125.940000px;}
._2e_c00236{width:163.620000px;}
._27_c00236{width:459.972000px;}
.fc2_c00236{color:transparent;}
.fc1_c00236{color:rgb(128,128,128);}
.fc0_c00236{color:rgb(0,0,0);}
.fs2_c00236{font-size:45.000000px;}
.fs4_c00236{font-size:48.000000px;}
.fs1_c00236{font-size:51.000000px;}
.fs0_c00236{font-size:60.000000px;}
.fs3_c00236{font-size:63.000000px;}
.y0_c00236{bottom:0.000000px;}
.y53_c00236{bottom:3.105000px;}
.y52_c00236{bottom:7.228369px;}
.y51_c00236{bottom:42.570000px;}
.y50_c00236{bottom:62.670000px;}
.y29_c00236{bottom:63.420000px;}
.y4f_c00236{bottom:80.670000px;}
.y28_c00236{bottom:84.270000px;}
.y4e_c00236{bottom:98.520000px;}
.y27_c00236{bottom:99.270000px;}
.y4d_c00236{bottom:116.820000px;}
.y26_c00236{bottom:117.720000px;}
.y4c_c00236{bottom:134.970000px;}
.y25_c00236{bottom:135.720000px;}
.y4b_c00236{bottom:153.270000px;}
.y24_c00236{bottom:153.870000px;}
.y4a_c00236{bottom:171.720000px;}
.y23_c00236{bottom:172.170000px;}
.y49_c00236{bottom:189.570000px;}
.y22_c00236{bottom:190.020000px;}
.y48_c00236{bottom:207.570000px;}
.y21_c00236{bottom:208.170000px;}
.y20_c00236{bottom:226.170000px;}
.y47_c00236{bottom:243.570000px;}
.y1f_c00236{bottom:245.070000px;}
.y46_c00236{bottom:261.270000px;}
.y1e_c00236{bottom:263.220000px;}
.y45_c00236{bottom:280.020000px;}
.y1d_c00236{bottom:280.170000px;}
.y44_c00236{bottom:297.720000px;}
.y1c_c00236{bottom:298.320000px;}
.y43_c00236{bottom:315.870000px;}
.y1b_c00236{bottom:316.170000px;}
.y1a_c00236{bottom:334.170000px;}
.y19_c00236{bottom:352.020000px;}
.y42_c00236{bottom:370.170000px;}
.y41_c00236{bottom:388.770000px;}
.y18_c00236{bottom:389.070000px;}
.y17_c00236{bottom:406.620000px;}
.y40_c00236{bottom:406.770000px;}
.y16_c00236{bottom:424.170000px;}
.y3f_c00236{bottom:424.620000px;}
.y3e_c00236{bottom:442.470000px;}
.y15_c00236{bottom:442.770000px;}
.y3d_c00236{bottom:460.920000px;}
.y14_c00236{bottom:461.070000px;}
.y13_c00236{bottom:478.470000px;}
.y3c_c00236{bottom:478.920000px;}
.y12_c00236{bottom:496.170000px;}
.y3b_c00236{bottom:497.520000px;}
.y11_c00236{bottom:514.020000px;}
.y3a_c00236{bottom:516.720000px;}
.y10_c00236{bottom:532.020000px;}
.y39_c00236{bottom:533.970000px;}
.yf_c00236{bottom:550.170000px;}
.y38_c00236{bottom:552.870000px;}
.ye_c00236{bottom:568.320000px;}
.y37_c00236{bottom:570.720000px;}
.yd_c00236{bottom:586.470000px;}
.y36_c00236{bottom:587.820000px;}
.yc_c00236{bottom:604.470000px;}
.y35_c00236{bottom:607.170000px;}
.yb_c00236{bottom:622.320000px;}
.y34_c00236{bottom:624.420000px;}
.ya_c00236{bottom:640.170000px;}
.y33_c00236{bottom:643.170000px;}
.y9_c00236{bottom:658.470000px;}
.y32_c00236{bottom:660.870000px;}
.y8_c00236{bottom:676.320000px;}
.y31_c00236{bottom:678.720000px;}
.y7_c00236{bottom:694.470000px;}
.y30_c00236{bottom:696.720000px;}
.y6_c00236{bottom:712.470000px;}
.y2f_c00236{bottom:714.870000px;}
.y5_c00236{bottom:730.470000px;}
.y2e_c00236{bottom:733.020000px;}
.y4_c00236{bottom:748.470000px;}
.y2d_c00236{bottom:751.620000px;}
.y3_c00236{bottom:766.470000px;}
.y2c_c00236{bottom:769.470000px;}
.y2_c00236{bottom:784.020000px;}
.y2b_c00236{bottom:787.620000px;}
.y1_c00236{bottom:804.270000px;}
.y2a_c00236{bottom:805.920000px;}
.h8_c00236{height:13.200073px;}
.h9_c00236{height:43.804688px;}
.h6_c00236{height:59.690918px;}
.h2_c00236{height:62.880000px;}
.h3_c00236{height:63.420000px;}
.h4_c00236{height:64.020000px;}
.h5_c00236{height:64.571777px;}
.h7_c00236{height:66.024000px;}
.h1_c00236{height:832.500000px;}
.h0_c00236{height:832.650000px;}
.w2_c00236{width:104.875500px;}
.w1_c00236{width:583.500000px;}
.w0_c00236{width:583.725000px;}
.x0_c00236{left:0.000000px;}
.xa_c00236{left:21.600000px;}
.x6_c00236{left:22.950000px;}
.x4_c00236{left:53.700000px;}
.x9_c00236{left:79.650000px;}
.x8_c00236{left:80.700000px;}
.x7_c00236{left:82.350000px;}
.x5_c00236{left:84.750000px;}
.x3_c00236{left:86.400000px;}
.x2_c00236{left:88.200000px;}
.x1_c00236{left:215.400000px;}
.x16_c00236{left:243.676758px;}
.xb_c00236{left:291.150000px;}
.x12_c00236{left:294.600000px;}
.x14_c00236{left:295.650000px;}
.x13_c00236{left:297.300000px;}
.x11_c00236{left:298.350000px;}
.x10_c00236{left:299.700000px;}
.xe_c00236{left:300.750000px;}
.xf_c00236{left:302.700000px;}
.xd_c00236{left:303.750000px;}
.xc_c00236{left:364.800000px;}
.x15_c00236{left:387.150000px;}
@media print{
.v1_c00236{vertical-align:-68.266667pt;}
.v0_c00236{vertical-align:0.000000pt;}
.ls2_c00236{letter-spacing:0.000000pt;}
.ls0_c00236{letter-spacing:2.666667pt;}
.ls3_c00236{letter-spacing:5.333333pt;}
.ls4_c00236{letter-spacing:10.666667pt;}
.ls1_c00236{letter-spacing:14.400000pt;}
.ws4_c00236{word-spacing:-31.373333pt;}
.ws5_c00236{word-spacing:-22.997333pt;}
.ws0_c00236{word-spacing:-16.053333pt;}
.ws1_c00236{word-spacing:-15.413333pt;}
.ws3_c00236{word-spacing:-12.586667pt;}
.ws6_c00236{word-spacing:0.000000pt;}
.ws2_c00236{word-spacing:50.826667pt;}
._2b_c00236{margin-left:-20.320000pt;}
._14_c00236{margin-left:-16.160000pt;}
._2a_c00236{margin-left:-15.053333pt;}
._28_c00236{margin-left:-13.005333pt;}
._23_c00236{margin-left:-11.573333pt;}
._9_c00236{margin-left:-7.360000pt;}
._21_c00236{margin-left:-6.240000pt;}
._11_c00236{margin-left:-5.226667pt;}
._c_c00236{margin-left:-3.466667pt;}
._13_c00236{margin-left:-2.453333pt;}
._f_c00236{margin-left:-1.546667pt;}
._8_c00236{width:1.013333pt;}
._a_c00236{width:2.240000pt;}
._6_c00236{width:3.146667pt;}
._10_c00236{width:4.106667pt;}
._5_c00236{width:5.013333pt;}
._1a_c00236{width:5.920000pt;}
._1_c00236{width:6.880000pt;}
._0_c00236{width:8.533333pt;}
._18_c00236{width:9.653333pt;}
._e_c00236{width:10.666667pt;}
._3_c00236{width:11.786667pt;}
._4_c00236{width:13.280000pt;}
._29_c00236{width:14.240000pt;}
._2d_c00236{width:15.893333pt;}
._1e_c00236{width:17.722667pt;}
._d_c00236{width:18.613333pt;}
._7_c00236{width:19.680000pt;}
._12_c00236{width:21.600000pt;}
._19_c00236{width:23.626667pt;}
._b_c00236{width:24.853333pt;}
._2c_c00236{width:26.613333pt;}
._25_c00236{width:27.946667pt;}
._1b_c00236{width:29.760000pt;}
._2_c00236{width:30.720000pt;}
._16_c00236{width:32.213333pt;}
._20_c00236{width:35.946667pt;}
._26_c00236{width:37.280000pt;}
._1f_c00236{width:40.800000pt;}
._17_c00236{width:43.733333pt;}
._22_c00236{width:47.413333pt;}
._24_c00236{width:57.040000pt;}
._1c_c00236{width:58.866667pt;}
._15_c00236{width:89.546667pt;}
._1d_c00236{width:111.946667pt;}
._2e_c00236{width:145.440000pt;}
._27_c00236{width:408.864000pt;}
.fs2_c00236{font-size:40.000000pt;}
.fs4_c00236{font-size:42.666667pt;}
.fs1_c00236{font-size:45.333333pt;}
.fs0_c00236{font-size:53.333333pt;}
.fs3_c00236{font-size:56.000000pt;}
.y0_c00236{bottom:0.000000pt;}
.y53_c00236{bottom:2.760000pt;}
.y52_c00236{bottom:6.425217pt;}
.y51_c00236{bottom:37.840000pt;}
.y50_c00236{bottom:55.706667pt;}
.y29_c00236{bottom:56.373333pt;}
.y4f_c00236{bottom:71.706667pt;}
.y28_c00236{bottom:74.906667pt;}
.y4e_c00236{bottom:87.573333pt;}
.y27_c00236{bottom:88.240000pt;}
.y4d_c00236{bottom:103.840000pt;}
.y26_c00236{bottom:104.640000pt;}
.y4c_c00236{bottom:119.973333pt;}
.y25_c00236{bottom:120.640000pt;}
.y4b_c00236{bottom:136.240000pt;}
.y24_c00236{bottom:136.773333pt;}
.y4a_c00236{bottom:152.640000pt;}
.y23_c00236{bottom:153.040000pt;}
.y49_c00236{bottom:168.506667pt;}
.y22_c00236{bottom:168.906667pt;}
.y48_c00236{bottom:184.506667pt;}
.y21_c00236{bottom:185.040000pt;}
.y20_c00236{bottom:201.040000pt;}
.y47_c00236{bottom:216.506667pt;}
.y1f_c00236{bottom:217.840000pt;}
.y46_c00236{bottom:232.240000pt;}
.y1e_c00236{bottom:233.973333pt;}
.y45_c00236{bottom:248.906667pt;}
.y1d_c00236{bottom:249.040000pt;}
.y44_c00236{bottom:264.640000pt;}
.y1c_c00236{bottom:265.173333pt;}
.y43_c00236{bottom:280.773333pt;}
.y1b_c00236{bottom:281.040000pt;}
.y1a_c00236{bottom:297.040000pt;}
.y19_c00236{bottom:312.906667pt;}
.y42_c00236{bottom:329.040000pt;}
.y41_c00236{bottom:345.573333pt;}
.y18_c00236{bottom:345.840000pt;}
.y17_c00236{bottom:361.440000pt;}
.y40_c00236{bottom:361.573333pt;}
.y16_c00236{bottom:377.040000pt;}
.y3f_c00236{bottom:377.440000pt;}
.y3e_c00236{bottom:393.306667pt;}
.y15_c00236{bottom:393.573333pt;}
.y3d_c00236{bottom:409.706667pt;}
.y14_c00236{bottom:409.840000pt;}
.y13_c00236{bottom:425.306667pt;}
.y3c_c00236{bottom:425.706667pt;}
.y12_c00236{bottom:441.040000pt;}
.y3b_c00236{bottom:442.240000pt;}
.y11_c00236{bottom:456.906667pt;}
.y3a_c00236{bottom:459.306667pt;}
.y10_c00236{bottom:472.906667pt;}
.y39_c00236{bottom:474.640000pt;}
.yf_c00236{bottom:489.040000pt;}
.y38_c00236{bottom:491.440000pt;}
.ye_c00236{bottom:505.173333pt;}
.y37_c00236{bottom:507.306667pt;}
.yd_c00236{bottom:521.306667pt;}
.y36_c00236{bottom:522.506667pt;}
.yc_c00236{bottom:537.306667pt;}
.y35_c00236{bottom:539.706667pt;}
.yb_c00236{bottom:553.173333pt;}
.y34_c00236{bottom:555.040000pt;}
.ya_c00236{bottom:569.040000pt;}
.y33_c00236{bottom:571.706667pt;}
.y9_c00236{bottom:585.306667pt;}
.y32_c00236{bottom:587.440000pt;}
.y8_c00236{bottom:601.173333pt;}
.y31_c00236{bottom:603.306667pt;}
.y7_c00236{bottom:617.306667pt;}
.y30_c00236{bottom:619.306667pt;}
.y6_c00236{bottom:633.306667pt;}
.y2f_c00236{bottom:635.440000pt;}
.y5_c00236{bottom:649.306667pt;}
.y2e_c00236{bottom:651.573333pt;}
.y4_c00236{bottom:665.306667pt;}
.y2d_c00236{bottom:668.106667pt;}
.y3_c00236{bottom:681.306667pt;}
.y2c_c00236{bottom:683.973333pt;}
.y2_c00236{bottom:696.906667pt;}
.y2b_c00236{bottom:700.106667pt;}
.y1_c00236{bottom:714.906667pt;}
.y2a_c00236{bottom:716.373333pt;}
.h8_c00236{height:11.733399pt;}
.h9_c00236{height:38.937500pt;}
.h6_c00236{height:53.058594pt;}
.h2_c00236{height:55.893333pt;}
.h3_c00236{height:56.373333pt;}
.h4_c00236{height:56.906667pt;}
.h5_c00236{height:57.397135pt;}
.h7_c00236{height:58.688000pt;}
.h1_c00236{height:740.000000pt;}
.h0_c00236{height:740.133333pt;}
.w2_c00236{width:93.222667pt;}
.w1_c00236{width:518.666667pt;}
.w0_c00236{width:518.866667pt;}
.x0_c00236{left:0.000000pt;}
.xa_c00236{left:19.200000pt;}
.x6_c00236{left:20.400000pt;}
.x4_c00236{left:47.733333pt;}
.x9_c00236{left:70.800000pt;}
.x8_c00236{left:71.733333pt;}
.x7_c00236{left:73.200000pt;}
.x5_c00236{left:75.333333pt;}
.x3_c00236{left:76.800000pt;}
.x2_c00236{left:78.400000pt;}
.x1_c00236{left:191.466667pt;}
.x16_c00236{left:216.601563pt;}
.xb_c00236{left:258.800000pt;}
.x12_c00236{left:261.866667pt;}
.x14_c00236{left:262.800000pt;}
.x13_c00236{left:264.266667pt;}
.x11_c00236{left:265.200000pt;}
.x10_c00236{left:266.400000pt;}
.xe_c00236{left:267.333333pt;}
.xf_c00236{left:269.066667pt;}
.xd_c00236{left:270.000000pt;}
.xc_c00236{left:324.266667pt;}
.x15_c00236{left:344.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3ef1aa8c97534b296de00296.woff2')format("woff");}.ff1_c00237{font-family:ff1_c00237;line-height:1.575000;font-style:normal;font-weight:normal;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_23514f8f8f6caf34747ca35c.woff2')format("woff");}.ff2_c00237{font-family:ff2_c00237;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00237;src:url('chunks/assets/font_db18af35a519e1cdc1d08c72.woff2')format("woff");}.ff3_c00237{font-family:ff3_c00237;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00237;src:url('chunks/assets/font_e1550a6d1ea87b2f91fdb1c4.woff2')format("woff");}.ff4_c00237{font-family:ff4_c00237;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00237;src:url('chunks/assets/font_5df0c959a98c4b3588c3b223.woff2')format("woff");}.ff5_c00237{font-family:ff5_c00237;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00237;src:url('chunks/assets/font_518959fc5ca00b443cc4e7d8.woff2')format("woff");}.ff6_c00237{font-family:ff6_c00237;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00237;src:url('chunks/assets/font_2ef682f6be52ef4b4fa989a5.woff2')format("woff");}.ff7_c00237{font-family:ff7_c00237;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:ff8_c00237;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff8_c00237{font-family:ff8_c00237;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00237{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00237{vertical-align:0.000000px;}
.ls7_c00237{letter-spacing:0.000000px;}
.ls3_c00237{letter-spacing:3.000000px;}
.ls2_c00237{letter-spacing:6.000000px;}
.ls5_c00237{letter-spacing:9.000000px;}
.ls4_c00237{letter-spacing:9.552000px;}
.ls6_c00237{letter-spacing:15.000000px;}
.ls1_c00237{letter-spacing:20.343000px;}
.ls0_c00237{letter-spacing:279.600000px;}
.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;}
}
.ws2_c00237{word-spacing:-48.876000px;}
.ws1_c00237{word-spacing:-33.000000px;}
.ws0_c00237{word-spacing:-27.750000px;}
.ws4_c00237{word-spacing:-25.854000px;}
.ws7_c00237{word-spacing:-25.095000px;}
.ws8_c00237{word-spacing:-21.000000px;}
.ws5_c00237{word-spacing:-20.250000px;}
.ws3_c00237{word-spacing:-16.755000px;}
.ws6_c00237{word-spacing:-14.160000px;}
.ws9_c00237{word-spacing:0.000000px;}
._1a_c00237{margin-left:-16.008000px;}
._19_c00237{margin-left:-14.658000px;}
._15_c00237{margin-left:-12.888000px;}
._13_c00237{margin-left:-9.876000px;}
._8_c00237{margin-left:-7.650000px;}
._c_c00237{margin-left:-6.336000px;}
._7_c00237{margin-left:-4.938000px;}
._b_c00237{margin-left:-3.888000px;}
._4_c00237{margin-left:-2.463000px;}
._1_c00237{margin-left:-1.137000px;}
._2_c00237{width:1.224000px;}
._0_c00237{width:3.075000px;}
._1c_c00237{width:4.134000px;}
._a_c00237{width:5.226000px;}
._18_c00237{width:6.885000px;}
._9_c00237{width:7.962000px;}
._1b_c00237{width:9.246000px;}
._e_c00237{width:10.296000px;}
._5_c00237{width:11.493000px;}
._6_c00237{width:13.851000px;}
._10_c00237{width:15.888000px;}
._3_c00237{width:17.610000px;}
._17_c00237{width:18.729000px;}
._12_c00237{width:19.839000px;}
._d_c00237{width:22.248000px;}
._11_c00237{width:29.736000px;}
._14_c00237{width:33.264000px;}
._f_c00237{width:34.431000px;}
._16_c00237{width:37.986000px;}
._1d_c00237{width:40.257000px;}
._1e_c00237{width:47.745000px;}
._1f_c00237{width:51.912000px;}
._20_c00237{width:200.406000px;}
._21_c00237{width:450.504000px;}
.fc2_c00237{color:transparent;}
.fc1_c00237{color:rgb(128,128,128);}
.fc0_c00237{color:rgb(0,0,0);}
.fs5_c00237{font-size:45.000000px;}
.fsa_c00237{font-size:48.000000px;}
.fs3_c00237{font-size:54.000000px;}
.fs2_c00237{font-size:60.000000px;}
.fs4_c00237{font-size:63.000000px;}
.fs7_c00237{font-size:69.000000px;}
.fs1_c00237{font-size:72.000000px;}
.fs0_c00237{font-size:75.000000px;}
.fs6_c00237{font-size:93.000000px;}
.fs9_c00237{font-size:105.000000px;}
.fs8_c00237{font-size:213.000000px;}
.y0_c00237{bottom:0.000000px;}
.y34_c00237{bottom:3.105000px;}
.y33_c00237{bottom:7.228369px;}
.y32_c00237{bottom:43.770000px;}
.y31_c00237{bottom:59.970000px;}
.y30_c00237{bottom:78.570000px;}
.y2f_c00237{bottom:96.870000px;}
.y2e_c00237{bottom:115.320000px;}
.y2d_c00237{bottom:133.920000px;}
.y2c_c00237{bottom:151.770000px;}
.y2b_c00237{bottom:170.070000px;}
.y2a_c00237{bottom:188.370000px;}
.y29_c00237{bottom:206.820000px;}
.y28_c00237{bottom:224.820000px;}
.y27_c00237{bottom:243.270000px;}
.y26_c00237{bottom:262.170000px;}
.y25_c00237{bottom:280.020000px;}
.y24_c00237{bottom:298.020000px;}
.y23_c00237{bottom:332.670000px;}
.y22_c00237{bottom:350.370000px;}
.y21_c00237{bottom:389.820000px;}
.y20_c00237{bottom:421.920000px;}
.y1f_c00237{bottom:459.720000px;}
.y1e_c00237{bottom:555.120000px;}
.yf_c00237{bottom:555.420000px;}
.y1d_c00237{bottom:573.420000px;}
.ye_c00237{bottom:574.320000px;}
.y1c_c00237{bottom:591.270000px;}
.yd_c00237{bottom:592.320000px;}
.y1b_c00237{bottom:609.870000px;}
.yc_c00237{bottom:610.920000px;}
.y1a_c00237{bottom:628.020000px;}
.yb_c00237{bottom:629.070000px;}
.y19_c00237{bottom:645.870000px;}
.ya_c00237{bottom:646.920000px;}
.y18_c00237{bottom:664.170000px;}
.y9_c00237{bottom:664.920000px;}
.y17_c00237{bottom:682.470000px;}
.y8_c00237{bottom:683.670000px;}
.y16_c00237{bottom:700.320000px;}
.y7_c00237{bottom:701.670000px;}
.y15_c00237{bottom:719.220000px;}
.y6_c00237{bottom:720.120000px;}
.y14_c00237{bottom:736.770000px;}
.y5_c00237{bottom:738.120000px;}
.y13_c00237{bottom:755.370000px;}
.y4_c00237{bottom:756.570000px;}
.y12_c00237{bottom:773.220000px;}
.y3_c00237{bottom:774.120000px;}
.y11_c00237{bottom:791.820000px;}
.y2_c00237{bottom:792.720000px;}
.y10_c00237{bottom:811.320000px;}
.y1_c00237{bottom:811.620000px;}
.ha_c00237{height:13.200073px;}
.hb_c00237{height:43.804688px;}
.h6_c00237{height:62.880000px;}
.h3_c00237{height:70.664062px;}
.h5_c00237{height:73.623000px;}
.h9_c00237{height:75.456000px;}
.h2_c00237{height:80.025000px;}
.h4_c00237{height:96.996094px;}
.h8_c00237{height:110.040000px;}
.h7_c00237{height:223.224000px;}
.h1_c00237{height:851.250000px;}
.h0_c00237{height:851.550000px;}
.w2_c00237{width:104.875500px;}
.w1_c00237{width:565.500000px;}
.w0_c00237{width:565.650000px;}
.x0_c00237{left:0.000000px;}
.x1_c00237{left:79.950000px;}
.x5_c00237{left:90.150000px;}
.xd_c00237{left:92.400000px;}
.x12_c00237{left:93.750000px;}
.x4_c00237{left:95.100000px;}
.x3_c00237{left:96.450000px;}
.x2_c00237{left:97.800000px;}
.xe_c00237{left:110.400000px;}
.xa_c00237{left:112.950000px;}
.xb_c00237{left:185.550000px;}
.x11_c00237{left:193.350000px;}
.xf_c00237{left:207.150000px;}
.x10_c00237{left:213.600000px;}
.xc_c00237{left:234.150000px;}
.x8_c00237{left:309.450000px;}
.x9_c00237{left:310.800000px;}
.x7_c00237{left:311.850000px;}
.x6_c00237{left:312.900000px;}
.x13_c00237{left:478.500000px;}
@media print{
.v0_c00237{vertical-align:0.000000pt;}
.ls7_c00237{letter-spacing:0.000000pt;}
.ls3_c00237{letter-spacing:2.666667pt;}
.ls2_c00237{letter-spacing:5.333333pt;}
.ls5_c00237{letter-spacing:8.000000pt;}
.ls4_c00237{letter-spacing:8.490667pt;}
.ls6_c00237{letter-spacing:13.333333pt;}
.ls1_c00237{letter-spacing:18.082667pt;}
.ls0_c00237{letter-spacing:248.533333pt;}
.ws2_c00237{word-spacing:-43.445333pt;}
.ws1_c00237{word-spacing:-29.333333pt;}
.ws0_c00237{word-spacing:-24.666667pt;}
.ws4_c00237{word-spacing:-22.981333pt;}
.ws7_c00237{word-spacing:-22.306667pt;}
.ws8_c00237{word-spacing:-18.666667pt;}
.ws5_c00237{word-spacing:-18.000000pt;}
.ws3_c00237{word-spacing:-14.893333pt;}
.ws6_c00237{word-spacing:-12.586667pt;}
.ws9_c00237{word-spacing:0.000000pt;}
._1a_c00237{margin-left:-14.229333pt;}
._19_c00237{margin-left:-13.029333pt;}
._15_c00237{margin-left:-11.456000pt;}
._13_c00237{margin-left:-8.778667pt;}
._8_c00237{margin-left:-6.800000pt;}
._c_c00237{margin-left:-5.632000pt;}
._7_c00237{margin-left:-4.389333pt;}
._b_c00237{margin-left:-3.456000pt;}
._4_c00237{margin-left:-2.189333pt;}
._1_c00237{margin-left:-1.010667pt;}
._2_c00237{width:1.088000pt;}
._0_c00237{width:2.733333pt;}
._1c_c00237{width:3.674667pt;}
._a_c00237{width:4.645333pt;}
._18_c00237{width:6.120000pt;}
._9_c00237{width:7.077333pt;}
._1b_c00237{width:8.218667pt;}
._e_c00237{width:9.152000pt;}
._5_c00237{width:10.216000pt;}
._6_c00237{width:12.312000pt;}
._10_c00237{width:14.122667pt;}
._3_c00237{width:15.653333pt;}
._17_c00237{width:16.648000pt;}
._12_c00237{width:17.634667pt;}
._d_c00237{width:19.776000pt;}
._11_c00237{width:26.432000pt;}
._14_c00237{width:29.568000pt;}
._f_c00237{width:30.605333pt;}
._16_c00237{width:33.765333pt;}
._1d_c00237{width:35.784000pt;}
._1e_c00237{width:42.440000pt;}
._1f_c00237{width:46.144000pt;}
._20_c00237{width:178.138667pt;}
._21_c00237{width:400.448000pt;}
.fs5_c00237{font-size:40.000000pt;}
.fsa_c00237{font-size:42.666667pt;}
.fs3_c00237{font-size:48.000000pt;}
.fs2_c00237{font-size:53.333333pt;}
.fs4_c00237{font-size:56.000000pt;}
.fs7_c00237{font-size:61.333333pt;}
.fs1_c00237{font-size:64.000000pt;}
.fs0_c00237{font-size:66.666667pt;}
.fs6_c00237{font-size:82.666667pt;}
.fs9_c00237{font-size:93.333333pt;}
.fs8_c00237{font-size:189.333333pt;}
.y0_c00237{bottom:0.000000pt;}
.y34_c00237{bottom:2.760000pt;}
.y33_c00237{bottom:6.425217pt;}
.y32_c00237{bottom:38.906667pt;}
.y31_c00237{bottom:53.306667pt;}
.y30_c00237{bottom:69.840000pt;}
.y2f_c00237{bottom:86.106667pt;}
.y2e_c00237{bottom:102.506667pt;}
.y2d_c00237{bottom:119.040000pt;}
.y2c_c00237{bottom:134.906667pt;}
.y2b_c00237{bottom:151.173333pt;}
.y2a_c00237{bottom:167.440000pt;}
.y29_c00237{bottom:183.840000pt;}
.y28_c00237{bottom:199.840000pt;}
.y27_c00237{bottom:216.240000pt;}
.y26_c00237{bottom:233.040000pt;}
.y25_c00237{bottom:248.906667pt;}
.y24_c00237{bottom:264.906667pt;}
.y23_c00237{bottom:295.706667pt;}
.y22_c00237{bottom:311.440000pt;}
.y21_c00237{bottom:346.506667pt;}
.y20_c00237{bottom:375.040000pt;}
.y1f_c00237{bottom:408.640000pt;}
.y1e_c00237{bottom:493.440000pt;}
.yf_c00237{bottom:493.706667pt;}
.y1d_c00237{bottom:509.706667pt;}
.ye_c00237{bottom:510.506667pt;}
.y1c_c00237{bottom:525.573333pt;}
.yd_c00237{bottom:526.506667pt;}
.y1b_c00237{bottom:542.106667pt;}
.yc_c00237{bottom:543.040000pt;}
.y1a_c00237{bottom:558.240000pt;}
.yb_c00237{bottom:559.173333pt;}
.y19_c00237{bottom:574.106667pt;}
.ya_c00237{bottom:575.040000pt;}
.y18_c00237{bottom:590.373333pt;}
.y9_c00237{bottom:591.040000pt;}
.y17_c00237{bottom:606.640000pt;}
.y8_c00237{bottom:607.706667pt;}
.y16_c00237{bottom:622.506667pt;}
.y7_c00237{bottom:623.706667pt;}
.y15_c00237{bottom:639.306667pt;}
.y6_c00237{bottom:640.106667pt;}
.y14_c00237{bottom:654.906667pt;}
.y5_c00237{bottom:656.106667pt;}
.y13_c00237{bottom:671.440000pt;}
.y4_c00237{bottom:672.506667pt;}
.y12_c00237{bottom:687.306667pt;}
.y3_c00237{bottom:688.106667pt;}
.y11_c00237{bottom:703.840000pt;}
.y2_c00237{bottom:704.640000pt;}
.y10_c00237{bottom:721.173333pt;}
.y1_c00237{bottom:721.440000pt;}
.ha_c00237{height:11.733399pt;}
.hb_c00237{height:38.937500pt;}
.h6_c00237{height:55.893333pt;}
.h3_c00237{height:62.812500pt;}
.h5_c00237{height:65.442667pt;}
.h9_c00237{height:67.072000pt;}
.h2_c00237{height:71.133333pt;}
.h4_c00237{height:86.218750pt;}
.h8_c00237{height:97.813333pt;}
.h7_c00237{height:198.421333pt;}
.h1_c00237{height:756.666667pt;}
.h0_c00237{height:756.933333pt;}
.w2_c00237{width:93.222667pt;}
.w1_c00237{width:502.666667pt;}
.w0_c00237{width:502.800000pt;}
.x0_c00237{left:0.000000pt;}
.x1_c00237{left:71.066667pt;}
.x5_c00237{left:80.133333pt;}
.xd_c00237{left:82.133333pt;}
.x12_c00237{left:83.333333pt;}
.x4_c00237{left:84.533333pt;}
.x3_c00237{left:85.733333pt;}
.x2_c00237{left:86.933333pt;}
.xe_c00237{left:98.133333pt;}
.xa_c00237{left:100.400000pt;}
.xb_c00237{left:164.933333pt;}
.x11_c00237{left:171.866667pt;}
.xf_c00237{left:184.133333pt;}
.x10_c00237{left:189.866667pt;}
.xc_c00237{left:208.133333pt;}
.x8_c00237{left:275.066667pt;}
.x9_c00237{left:276.266667pt;}
.x7_c00237{left:277.200000pt;}
.x6_c00237{left:278.133333pt;}
.x13_c00237{left:425.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4d4fde07fd7141124db18d5f.woff2')format("woff");}.ff1_c00238{font-family:ff1_c00238;line-height:1.437000;font-style:normal;font-weight:normal;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_e95ec3efda1a23dcad259e9b.woff2')format("woff");}.ff2_c00238{font-family:ff2_c00238;line-height:1.575000;font-style:normal;font-weight:normal;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_c6e29a949680d0cc6ccb55b8.woff2')format("woff");}.ff3_c00238{font-family:ff3_c00238;line-height:1.437000;font-style:normal;font-weight:normal;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_b256d9dc25c4ce31920f180f.woff2')format("woff");}.ff4_c00238{font-family:ff4_c00238;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00238;src:url('chunks/assets/font_11d8ea5a3b04916b2d042d6a.woff2')format("woff");}.ff5_c00238{font-family:ff5_c00238;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00238;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff6_c00238{font-family:ff6_c00238;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00238{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00238{vertical-align:0.000000px;}
.ls4_c00238{letter-spacing:0.000000px;}
.ls3_c00238{letter-spacing:3.000000px;}
.ls2_c00238{letter-spacing:5.448000px;}
.ls5_c00238{letter-spacing:6.000000px;}
.ls0_c00238{letter-spacing:16.605000px;}
.ls1_c00238{letter-spacing:30.660000px;}
.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;}
}
.ws2_c00238{word-spacing:-35.295000px;}
.ws0_c00238{word-spacing:-17.340000px;}
.ws3_c00238{word-spacing:-15.048000px;}
.ws1_c00238{word-spacing:-14.160000px;}
.ws4_c00238{word-spacing:0.000000px;}
._13_c00238{margin-left:-15.300000px;}
._25_c00238{margin-left:-11.595000px;}
._16_c00238{margin-left:-9.480000px;}
._d_c00238{margin-left:-5.940000px;}
._f_c00238{margin-left:-4.320000px;}
._c_c00238{margin-left:-3.300000px;}
._9_c00238{margin-left:-2.040000px;}
._12_c00238{margin-left:-1.020000px;}
._8_c00238{width:1.560000px;}
._a_c00238{width:2.760000px;}
._7_c00238{width:4.200000px;}
._e_c00238{width:5.280000px;}
._10_c00238{width:6.300000px;}
._1_c00238{width:7.740000px;}
._14_c00238{width:9.120000px;}
._0_c00238{width:10.140000px;}
._15_c00238{width:11.280000px;}
._11_c00238{width:12.600000px;}
._5_c00238{width:13.800000px;}
._b_c00238{width:15.840000px;}
._17_c00238{width:17.085000px;}
._3_c00238{width:19.860000px;}
._2_c00238{width:21.840000px;}
._4_c00238{width:23.160000px;}
._19_c00238{width:24.360000px;}
._1f_c00238{width:25.800000px;}
._20_c00238{width:27.300000px;}
._21_c00238{width:29.580000px;}
._1a_c00238{width:32.820000px;}
._1e_c00238{width:34.560000px;}
._23_c00238{width:35.700000px;}
._18_c00238{width:37.200000px;}
._22_c00238{width:39.780000px;}
._1b_c00238{width:50.820000px;}
._1c_c00238{width:60.480000px;}
._26_c00238{width:172.740000px;}
._24_c00238{width:208.200000px;}
._1d_c00238{width:268.920000px;}
._6_c00238{width:423.540000px;}
.fc2_c00238{color:transparent;}
.fc1_c00238{color:rgb(128,128,128);}
.fc0_c00238{color:rgb(0,0,0);}
.fs1_c00238{font-size:45.000000px;}
.fs2_c00238{font-size:48.000000px;}
.fs0_c00238{font-size:60.000000px;}
.y0_c00238{bottom:0.000000px;}
.y2b_c00238{bottom:3.105000px;}
.y2a_c00238{bottom:7.228369px;}
.y29_c00238{bottom:31.620000px;}
.y28_c00238{bottom:50.220000px;}
.y27_c00238{bottom:68.220000px;}
.y26_c00238{bottom:86.070000px;}
.y25_c00238{bottom:104.220000px;}
.y24_c00238{bottom:122.220000px;}
.y23_c00238{bottom:140.070000px;}
.y22_c00238{bottom:159.270000px;}
.y21_c00238{bottom:177.120000px;}
.y20_c00238{bottom:194.970000px;}
.y1f_c00238{bottom:212.970000px;}
.y1e_c00238{bottom:249.120000px;}
.y1d_c00238{bottom:286.470000px;}
.y1c_c00238{bottom:304.020000px;}
.y1b_c00238{bottom:322.320000px;}
.y1a_c00238{bottom:340.170000px;}
.y19_c00238{bottom:358.470000px;}
.y18_c00238{bottom:376.920000px;}
.y17_c00238{bottom:394.920000px;}
.y16_c00238{bottom:412.770000px;}
.y15_c00238{bottom:430.920000px;}
.y14_c00238{bottom:449.220000px;}
.y13_c00238{bottom:467.370000px;}
.y12_c00238{bottom:485.970000px;}
.y11_c00238{bottom:503.220000px;}
.y10_c00238{bottom:521.070000px;}
.yf_c00238{bottom:539.220000px;}
.ye_c00238{bottom:557.220000px;}
.yd_c00238{bottom:575.370000px;}
.yc_c00238{bottom:593.970000px;}
.yb_c00238{bottom:611.820000px;}
.ya_c00238{bottom:629.820000px;}
.y9_c00238{bottom:647.670000px;}
.y8_c00238{bottom:666.120000px;}
.y7_c00238{bottom:683.370000px;}
.y6_c00238{bottom:702.570000px;}
.y5_c00238{bottom:720.270000px;}
.y4_c00238{bottom:738.720000px;}
.y3_c00238{bottom:756.570000px;}
.y2_c00238{bottom:775.920000px;}
.y1_c00238{bottom:794.520000px;}
.h4_c00238{height:13.200073px;}
.h5_c00238{height:43.804688px;}
.h3_c00238{height:62.880000px;}
.h2_c00238{height:64.020000px;}
.h1_c00238{height:832.500000px;}
.h0_c00238{height:832.650000px;}
.w2_c00238{width:104.875500px;}
.w1_c00238{width:583.500000px;}
.w0_c00238{width:583.725000px;}
.x0_c00238{left:0.000000px;}
.x5_c00238{left:60.750000px;}
.x7_c00238{left:61.800000px;}
.x4_c00238{left:63.450000px;}
.x3_c00238{left:64.500000px;}
.x2_c00238{left:66.150000px;}
.x6_c00238{left:67.200000px;}
.x1_c00238{left:210.600000px;}
.x9_c00238{left:243.676758px;}
.x8_c00238{left:367.800000px;}
@media print{
.v0_c00238{vertical-align:0.000000pt;}
.ls4_c00238{letter-spacing:0.000000pt;}
.ls3_c00238{letter-spacing:2.666667pt;}
.ls2_c00238{letter-spacing:4.842667pt;}
.ls5_c00238{letter-spacing:5.333333pt;}
.ls0_c00238{letter-spacing:14.760000pt;}
.ls1_c00238{letter-spacing:27.253333pt;}
.ws2_c00238{word-spacing:-31.373333pt;}
.ws0_c00238{word-spacing:-15.413333pt;}
.ws3_c00238{word-spacing:-13.376000pt;}
.ws1_c00238{word-spacing:-12.586667pt;}
.ws4_c00238{word-spacing:0.000000pt;}
._13_c00238{margin-left:-13.600000pt;}
._25_c00238{margin-left:-10.306667pt;}
._16_c00238{margin-left:-8.426667pt;}
._d_c00238{margin-left:-5.280000pt;}
._f_c00238{margin-left:-3.840000pt;}
._c_c00238{margin-left:-2.933333pt;}
._9_c00238{margin-left:-1.813333pt;}
._12_c00238{margin-left:-0.906667pt;}
._8_c00238{width:1.386667pt;}
._a_c00238{width:2.453333pt;}
._7_c00238{width:3.733333pt;}
._e_c00238{width:4.693333pt;}
._10_c00238{width:5.600000pt;}
._1_c00238{width:6.880000pt;}
._14_c00238{width:8.106667pt;}
._0_c00238{width:9.013333pt;}
._15_c00238{width:10.026667pt;}
._11_c00238{width:11.200000pt;}
._5_c00238{width:12.266667pt;}
._b_c00238{width:14.080000pt;}
._17_c00238{width:15.186667pt;}
._3_c00238{width:17.653333pt;}
._2_c00238{width:19.413333pt;}
._4_c00238{width:20.586667pt;}
._19_c00238{width:21.653333pt;}
._1f_c00238{width:22.933333pt;}
._20_c00238{width:24.266667pt;}
._21_c00238{width:26.293333pt;}
._1a_c00238{width:29.173333pt;}
._1e_c00238{width:30.720000pt;}
._23_c00238{width:31.733333pt;}
._18_c00238{width:33.066667pt;}
._22_c00238{width:35.360000pt;}
._1b_c00238{width:45.173333pt;}
._1c_c00238{width:53.760000pt;}
._26_c00238{width:153.546667pt;}
._24_c00238{width:185.066667pt;}
._1d_c00238{width:239.040000pt;}
._6_c00238{width:376.480000pt;}
.fs1_c00238{font-size:40.000000pt;}
.fs2_c00238{font-size:42.666667pt;}
.fs0_c00238{font-size:53.333333pt;}
.y0_c00238{bottom:0.000000pt;}
.y2b_c00238{bottom:2.760000pt;}
.y2a_c00238{bottom:6.425217pt;}
.y29_c00238{bottom:28.106667pt;}
.y28_c00238{bottom:44.640000pt;}
.y27_c00238{bottom:60.640000pt;}
.y26_c00238{bottom:76.506667pt;}
.y25_c00238{bottom:92.640000pt;}
.y24_c00238{bottom:108.640000pt;}
.y23_c00238{bottom:124.506667pt;}
.y22_c00238{bottom:141.573333pt;}
.y21_c00238{bottom:157.440000pt;}
.y20_c00238{bottom:173.306667pt;}
.y1f_c00238{bottom:189.306667pt;}
.y1e_c00238{bottom:221.440000pt;}
.y1d_c00238{bottom:254.640000pt;}
.y1c_c00238{bottom:270.240000pt;}
.y1b_c00238{bottom:286.506667pt;}
.y1a_c00238{bottom:302.373333pt;}
.y19_c00238{bottom:318.640000pt;}
.y18_c00238{bottom:335.040000pt;}
.y17_c00238{bottom:351.040000pt;}
.y16_c00238{bottom:366.906667pt;}
.y15_c00238{bottom:383.040000pt;}
.y14_c00238{bottom:399.306667pt;}
.y13_c00238{bottom:415.440000pt;}
.y12_c00238{bottom:431.973333pt;}
.y11_c00238{bottom:447.306667pt;}
.y10_c00238{bottom:463.173333pt;}
.yf_c00238{bottom:479.306667pt;}
.ye_c00238{bottom:495.306667pt;}
.yd_c00238{bottom:511.440000pt;}
.yc_c00238{bottom:527.973333pt;}
.yb_c00238{bottom:543.840000pt;}
.ya_c00238{bottom:559.840000pt;}
.y9_c00238{bottom:575.706667pt;}
.y8_c00238{bottom:592.106667pt;}
.y7_c00238{bottom:607.440000pt;}
.y6_c00238{bottom:624.506667pt;}
.y5_c00238{bottom:640.240000pt;}
.y4_c00238{bottom:656.640000pt;}
.y3_c00238{bottom:672.506667pt;}
.y2_c00238{bottom:689.706667pt;}
.y1_c00238{bottom:706.240000pt;}
.h4_c00238{height:11.733399pt;}
.h5_c00238{height:38.937500pt;}
.h3_c00238{height:55.893333pt;}
.h2_c00238{height:56.906667pt;}
.h1_c00238{height:740.000000pt;}
.h0_c00238{height:740.133333pt;}
.w2_c00238{width:93.222667pt;}
.w1_c00238{width:518.666667pt;}
.w0_c00238{width:518.866667pt;}
.x0_c00238{left:0.000000pt;}
.x5_c00238{left:54.000000pt;}
.x7_c00238{left:54.933333pt;}
.x4_c00238{left:56.400000pt;}
.x3_c00238{left:57.333333pt;}
.x2_c00238{left:58.800000pt;}
.x6_c00238{left:59.733333pt;}
.x1_c00238{left:187.200000pt;}
.x9_c00238{left:216.601563pt;}
.x8_c00238{left:326.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_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_1a96cd6a42e3b7cf87d0e85d.woff2')format("woff");}.ff1_c00239{font-family:ff1_c00239;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00239;src:url('chunks/assets/font_636ecd1c0433e2a164a1271f.woff2')format("woff");}.ff2_c00239{font-family:ff2_c00239;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00239;src:url('chunks/assets/font_b20ac5408d287944cd9aeb4c.woff2')format("woff");}.ff3_c00239{font-family:ff3_c00239;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00239;src:url('chunks/assets/font_5d7bcad9f9e8c73107c482e7.woff2')format("woff");}.ff4_c00239{font-family:ff4_c00239;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00239;src:url('chunks/assets/font_2b93511bebece74b5e43469c.woff2')format("woff");}.ff5_c00239{font-family:ff5_c00239;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00239;src:url('chunks/assets/font_6f328080a7ba9400a2b9de54.woff2')format("woff");}.ff6_c00239{font-family:ff6_c00239;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00239;src:url('chunks/assets/font_79550703f9ddbb74c322f3ce.woff2')format("woff");}.ff7_c00239{font-family:ff7_c00239;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:ff8_c00239;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff8_c00239{font-family:ff8_c00239;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:ff9_c00239;src:url('chunks/assets/font_6105c17c3228052140a0ebdf.woff2')format("woff");}.ff9_c00239{font-family:ff9_c00239;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00239;src:url('chunks/assets/font_8e50ff30c1ac8246280205f7.woff2')format("woff");}.ffa_c00239{font-family:ffa_c00239;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00239;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ffb_c00239{font-family:ffb_c00239;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00239{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00239{vertical-align:-86.400000px;}
.v0_c00239{vertical-align:0.000000px;}
.v2_c00239{vertical-align:111.000000px;}
.ls7_c00239{letter-spacing:0.000000px;}
.ls2_c00239{letter-spacing:0.405000px;}
.ls3_c00239{letter-spacing:1.860000px;}
.ls1_c00239{letter-spacing:3.000000px;}
.ls4_c00239{letter-spacing:3.405000px;}
.ls0_c00239{letter-spacing:6.000000px;}
.ls8_c00239{letter-spacing:9.000000px;}
.ls5_c00239{letter-spacing:11.085000px;}
.ls6_c00239{letter-spacing:15.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:-33.000000px;}
.ws4_c00239{word-spacing:-30.675000px;}
.ws1_c00239{word-spacing:-29.700000px;}
.ws5_c00239{word-spacing:-25.854000px;}
.ws2_c00239{word-spacing:-23.760000px;}
.ws3_c00239{word-spacing:-21.000000px;}
.ws7_c00239{word-spacing:-18.060000px;}
.ws6_c00239{word-spacing:-16.755000px;}
.ws8_c00239{word-spacing:-14.160000px;}
.ws9_c00239{word-spacing:0.000000px;}
._b_c00239{margin-left:-38.088000px;}
._c_c00239{margin-left:-27.348000px;}
._19_c00239{margin-left:-22.140000px;}
._14_c00239{margin-left:-20.928000px;}
._24_c00239{margin-left:-18.324000px;}
._25_c00239{margin-left:-15.816000px;}
._10_c00239{margin-left:-14.208000px;}
._20_c00239{margin-left:-13.140000px;}
._26_c00239{margin-left:-12.048000px;}
._13_c00239{margin-left:-10.560000px;}
._f_c00239{margin-left:-8.856000px;}
._e_c00239{margin-left:-7.848000px;}
._16_c00239{margin-left:-6.672000px;}
._9_c00239{margin-left:-5.340000px;}
._3_c00239{margin-left:-3.336000px;}
._0_c00239{margin-left:-1.872000px;}
._2_c00239{width:1.860000px;}
._1_c00239{width:3.660000px;}
._7_c00239{width:4.740000px;}
._18_c00239{width:5.832000px;}
._15_c00239{width:7.200000px;}
._5_c00239{width:8.616000px;}
._1f_c00239{width:9.672000px;}
._4_c00239{width:10.716000px;}
._17_c00239{width:12.216000px;}
._a_c00239{width:14.004000px;}
._21_c00239{width:15.384000px;}
._8_c00239{width:16.440000px;}
._12_c00239{width:17.520000px;}
._11_c00239{width:19.512000px;}
._6_c00239{width:20.820000px;}
._28_c00239{width:22.128000px;}
._1d_c00239{width:23.400000px;}
._1c_c00239{width:25.083000px;}
._1e_c00239{width:29.184000px;}
._1a_c00239{width:30.408000px;}
._22_c00239{width:32.880000px;}
._1b_c00239{width:38.508000px;}
._23_c00239{width:42.600000px;}
._27_c00239{width:146.388000px;}
._d_c00239{width:187.488000px;}
.fc2_c00239{color:transparent;}
.fc1_c00239{color:rgb(128,128,128);}
.fc0_c00239{color:rgb(0,0,0);}
.fs3_c00239{font-size:45.000000px;}
.fs2_c00239{font-size:48.000000px;}
.fs1_c00239{font-size:60.000000px;}
.fs0_c00239{font-size:72.000000px;}
.fs4_c00239{font-size:75.000000px;}
.fs5_c00239{font-size:93.000000px;}
.fs6_c00239{font-size:201.000000px;}
.y0_c00239{bottom:0.000000px;}
.y53_c00239{bottom:3.105000px;}
.y52_c00239{bottom:7.228355px;}
.y51_c00239{bottom:38.835000px;}
.y50_c00239{bottom:56.685000px;}
.y4f_c00239{bottom:75.585000px;}
.y28_c00239{bottom:89.685000px;}
.y4e_c00239{bottom:93.135000px;}
.y27_c00239{bottom:111.285000px;}
.y4d_c00239{bottom:111.435000px;}
.y26_c00239{bottom:128.835000px;}
.y4c_c00239{bottom:129.585000px;}
.y25_c00239{bottom:147.435000px;}
.y4b_c00239{bottom:147.735000px;}
.y4a_c00239{bottom:165.735000px;}
.y24_c00239{bottom:166.035000px;}
.y23_c00239{bottom:183.285000px;}
.y49_c00239{bottom:184.185000px;}
.y22_c00239{bottom:201.435000px;}
.y48_c00239{bottom:202.485000px;}
.y21_c00239{bottom:220.335000px;}
.y47_c00239{bottom:220.935000px;}
.y20_c00239{bottom:238.485000px;}
.y46_c00239{bottom:239.535000px;}
.y1f_c00239{bottom:256.485000px;}
.y45_c00239{bottom:257.535000px;}
.y1e_c00239{bottom:275.085000px;}
.y44_c00239{bottom:276.285000px;}
.y1d_c00239{bottom:292.935000px;}
.y43_c00239{bottom:293.835000px;}
.y1c_c00239{bottom:311.535000px;}
.y42_c00239{bottom:311.985000px;}
.y1b_c00239{bottom:329.685000px;}
.y41_c00239{bottom:330.435000px;}
.y1a_c00239{bottom:347.985000px;}
.y40_c00239{bottom:348.885000px;}
.y19_c00239{bottom:366.435000px;}
.y3f_c00239{bottom:366.735000px;}
.y18_c00239{bottom:383.385000px;}
.y3e_c00239{bottom:385.035000px;}
.y17_c00239{bottom:402.885000px;}
.y3d_c00239{bottom:403.335000px;}
.y16_c00239{bottom:420.735000px;}
.y3c_c00239{bottom:422.085000px;}
.y15_c00239{bottom:439.035000px;}
.y3b_c00239{bottom:439.785000px;}
.y14_c00239{bottom:457.335000px;}
.y3a_c00239{bottom:457.935000px;}
.y13_c00239{bottom:475.485000px;}
.y39_c00239{bottom:476.235000px;}
.y12_c00239{bottom:493.635000px;}
.y38_c00239{bottom:494.685000px;}
.y11_c00239{bottom:511.335000px;}
.y37_c00239{bottom:513.285000px;}
.y10_c00239{bottom:529.785000px;}
.y36_c00239{bottom:531.135000px;}
.yf_c00239{bottom:547.785000px;}
.y35_c00239{bottom:549.135000px;}
.ye_c00239{bottom:565.935000px;}
.y34_c00239{bottom:566.985000px;}
.yd_c00239{bottom:584.085000px;}
.y33_c00239{bottom:585.585000px;}
.yc_c00239{bottom:602.385000px;}
.y32_c00239{bottom:603.735000px;}
.yb_c00239{bottom:620.235000px;}
.y31_c00239{bottom:621.885000px;}
.y2f_c00239{bottom:630.285000px;}
.ya_c00239{bottom:638.535000px;}
.y30_c00239{bottom:640.185000px;}
.y9_c00239{bottom:656.685000px;}
.y8_c00239{bottom:674.985000px;}
.y2e_c00239{bottom:676.035000px;}
.y7_c00239{bottom:693.585000px;}
.y2d_c00239{bottom:694.485000px;}
.y6_c00239{bottom:711.585000px;}
.y2c_c00239{bottom:712.485000px;}
.y5_c00239{bottom:729.885000px;}
.y2b_c00239{bottom:730.635000px;}
.y4_c00239{bottom:748.185000px;}
.y2a_c00239{bottom:748.935000px;}
.y3_c00239{bottom:766.485000px;}
.y2_c00239{bottom:784.635000px;}
.y1_c00239{bottom:803.835000px;}
.y29_c00239{bottom:805.185000px;}
.h8_c00239{height:13.200074px;}
.h9_c00239{height:43.804688px;}
.h3_c00239{height:62.880000px;}
.h7_c00239{height:63.480000px;}
.h2_c00239{height:70.664062px;}
.h4_c00239{height:80.025000px;}
.h5_c00239{height:96.996094px;}
.h6_c00239{height:254.488770px;}
.h1_c00239{height:848.250000px;}
.h0_c00239{height:848.325000px;}
.w1_c00239{width:104.875500px;}
.w0_c00239{width:563.250000px;}
.x0_c00239{left:0.000000px;}
.x3_c00239{left:65.400000px;}
.x7_c00239{left:67.800000px;}
.x5_c00239{left:71.850000px;}
.x2_c00239{left:81.000000px;}
.x4_c00239{left:82.050000px;}
.x6_c00239{left:83.400000px;}
.x8_c00239{left:84.450000px;}
.x9_c00239{left:101.550000px;}
.xa_c00239{left:115.050000px;}
.xb_c00239{left:134.250000px;}
.xc_c00239{left:169.800000px;}
.x1_c00239{left:194.700000px;}
.x18_c00239{left:233.439240px;}
.x16_c00239{left:297.600000px;}
.xf_c00239{left:299.400000px;}
.xe_c00239{left:300.750000px;}
.x15_c00239{left:301.950000px;}
.xd_c00239{left:304.350000px;}
.x10_c00239{left:313.200000px;}
.x11_c00239{left:337.050000px;}
.x14_c00239{left:338.100000px;}
.x13_c00239{left:340.500000px;}
.x12_c00239{left:381.750000px;}
.x17_c00239{left:459.900000px;}
@media print{
.v1_c00239{vertical-align:-76.800000pt;}
.v0_c00239{vertical-align:0.000000pt;}
.v2_c00239{vertical-align:98.666667pt;}
.ls7_c00239{letter-spacing:0.000000pt;}
.ls2_c00239{letter-spacing:0.360000pt;}
.ls3_c00239{letter-spacing:1.653333pt;}
.ls1_c00239{letter-spacing:2.666667pt;}
.ls4_c00239{letter-spacing:3.026667pt;}
.ls0_c00239{letter-spacing:5.333333pt;}
.ls8_c00239{letter-spacing:8.000000pt;}
.ls5_c00239{letter-spacing:9.853333pt;}
.ls6_c00239{letter-spacing:13.333333pt;}
.ws0_c00239{word-spacing:-29.333333pt;}
.ws4_c00239{word-spacing:-27.266667pt;}
.ws1_c00239{word-spacing:-26.400000pt;}
.ws5_c00239{word-spacing:-22.981333pt;}
.ws2_c00239{word-spacing:-21.120000pt;}
.ws3_c00239{word-spacing:-18.666667pt;}
.ws7_c00239{word-spacing:-16.053333pt;}
.ws6_c00239{word-spacing:-14.893333pt;}
.ws8_c00239{word-spacing:-12.586667pt;}
.ws9_c00239{word-spacing:0.000000pt;}
._b_c00239{margin-left:-33.856000pt;}
._c_c00239{margin-left:-24.309333pt;}
._19_c00239{margin-left:-19.680000pt;}
._14_c00239{margin-left:-18.602667pt;}
._24_c00239{margin-left:-16.288000pt;}
._25_c00239{margin-left:-14.058667pt;}
._10_c00239{margin-left:-12.629333pt;}
._20_c00239{margin-left:-11.680000pt;}
._26_c00239{margin-left:-10.709333pt;}
._13_c00239{margin-left:-9.386667pt;}
._f_c00239{margin-left:-7.872000pt;}
._e_c00239{margin-left:-6.976000pt;}
._16_c00239{margin-left:-5.930667pt;}
._9_c00239{margin-left:-4.746667pt;}
._3_c00239{margin-left:-2.965333pt;}
._0_c00239{margin-left:-1.664000pt;}
._2_c00239{width:1.653333pt;}
._1_c00239{width:3.253333pt;}
._7_c00239{width:4.213333pt;}
._18_c00239{width:5.184000pt;}
._15_c00239{width:6.400000pt;}
._5_c00239{width:7.658667pt;}
._1f_c00239{width:8.597333pt;}
._4_c00239{width:9.525333pt;}
._17_c00239{width:10.858667pt;}
._a_c00239{width:12.448000pt;}
._21_c00239{width:13.674667pt;}
._8_c00239{width:14.613333pt;}
._12_c00239{width:15.573333pt;}
._11_c00239{width:17.344000pt;}
._6_c00239{width:18.506667pt;}
._28_c00239{width:19.669333pt;}
._1d_c00239{width:20.800000pt;}
._1c_c00239{width:22.296000pt;}
._1e_c00239{width:25.941333pt;}
._1a_c00239{width:27.029333pt;}
._22_c00239{width:29.226667pt;}
._1b_c00239{width:34.229333pt;}
._23_c00239{width:37.866667pt;}
._27_c00239{width:130.122667pt;}
._d_c00239{width:166.656000pt;}
.fs3_c00239{font-size:40.000000pt;}
.fs2_c00239{font-size:42.666667pt;}
.fs1_c00239{font-size:53.333333pt;}
.fs0_c00239{font-size:64.000000pt;}
.fs4_c00239{font-size:66.666667pt;}
.fs5_c00239{font-size:82.666667pt;}
.fs6_c00239{font-size:178.666667pt;}
.y0_c00239{bottom:0.000000pt;}
.y53_c00239{bottom:2.760000pt;}
.y52_c00239{bottom:6.425204pt;}
.y51_c00239{bottom:34.520000pt;}
.y50_c00239{bottom:50.386667pt;}
.y4f_c00239{bottom:67.186667pt;}
.y28_c00239{bottom:79.720000pt;}
.y4e_c00239{bottom:82.786667pt;}
.y27_c00239{bottom:98.920000pt;}
.y4d_c00239{bottom:99.053333pt;}
.y26_c00239{bottom:114.520000pt;}
.y4c_c00239{bottom:115.186667pt;}
.y25_c00239{bottom:131.053333pt;}
.y4b_c00239{bottom:131.320000pt;}
.y4a_c00239{bottom:147.320000pt;}
.y24_c00239{bottom:147.586667pt;}
.y23_c00239{bottom:162.920000pt;}
.y49_c00239{bottom:163.720000pt;}
.y22_c00239{bottom:179.053333pt;}
.y48_c00239{bottom:179.986667pt;}
.y21_c00239{bottom:195.853333pt;}
.y47_c00239{bottom:196.386667pt;}
.y20_c00239{bottom:211.986667pt;}
.y46_c00239{bottom:212.920000pt;}
.y1f_c00239{bottom:227.986667pt;}
.y45_c00239{bottom:228.920000pt;}
.y1e_c00239{bottom:244.520000pt;}
.y44_c00239{bottom:245.586667pt;}
.y1d_c00239{bottom:260.386667pt;}
.y43_c00239{bottom:261.186667pt;}
.y1c_c00239{bottom:276.920000pt;}
.y42_c00239{bottom:277.320000pt;}
.y1b_c00239{bottom:293.053333pt;}
.y41_c00239{bottom:293.720000pt;}
.y1a_c00239{bottom:309.320000pt;}
.y40_c00239{bottom:310.120000pt;}
.y19_c00239{bottom:325.720000pt;}
.y3f_c00239{bottom:325.986667pt;}
.y18_c00239{bottom:340.786667pt;}
.y3e_c00239{bottom:342.253333pt;}
.y17_c00239{bottom:358.120000pt;}
.y3d_c00239{bottom:358.520000pt;}
.y16_c00239{bottom:373.986667pt;}
.y3c_c00239{bottom:375.186667pt;}
.y15_c00239{bottom:390.253333pt;}
.y3b_c00239{bottom:390.920000pt;}
.y14_c00239{bottom:406.520000pt;}
.y3a_c00239{bottom:407.053333pt;}
.y13_c00239{bottom:422.653333pt;}
.y39_c00239{bottom:423.320000pt;}
.y12_c00239{bottom:438.786667pt;}
.y38_c00239{bottom:439.720000pt;}
.y11_c00239{bottom:454.520000pt;}
.y37_c00239{bottom:456.253333pt;}
.y10_c00239{bottom:470.920000pt;}
.y36_c00239{bottom:472.120000pt;}
.yf_c00239{bottom:486.920000pt;}
.y35_c00239{bottom:488.120000pt;}
.ye_c00239{bottom:503.053333pt;}
.y34_c00239{bottom:503.986667pt;}
.yd_c00239{bottom:519.186667pt;}
.y33_c00239{bottom:520.520000pt;}
.yc_c00239{bottom:535.453333pt;}
.y32_c00239{bottom:536.653333pt;}
.yb_c00239{bottom:551.320000pt;}
.y31_c00239{bottom:552.786667pt;}
.y2f_c00239{bottom:560.253333pt;}
.ya_c00239{bottom:567.586667pt;}
.y30_c00239{bottom:569.053333pt;}
.y9_c00239{bottom:583.720000pt;}
.y8_c00239{bottom:599.986667pt;}
.y2e_c00239{bottom:600.920000pt;}
.y7_c00239{bottom:616.520000pt;}
.y2d_c00239{bottom:617.320000pt;}
.y6_c00239{bottom:632.520000pt;}
.y2c_c00239{bottom:633.320000pt;}
.y5_c00239{bottom:648.786667pt;}
.y2b_c00239{bottom:649.453333pt;}
.y4_c00239{bottom:665.053333pt;}
.y2a_c00239{bottom:665.720000pt;}
.y3_c00239{bottom:681.320000pt;}
.y2_c00239{bottom:697.453333pt;}
.y1_c00239{bottom:714.520000pt;}
.y29_c00239{bottom:715.720000pt;}
.h8_c00239{height:11.733399pt;}
.h9_c00239{height:38.937500pt;}
.h3_c00239{height:55.893333pt;}
.h7_c00239{height:56.426667pt;}
.h2_c00239{height:62.812500pt;}
.h4_c00239{height:71.133333pt;}
.h5_c00239{height:86.218750pt;}
.h6_c00239{height:226.212240pt;}
.h1_c00239{height:754.000000pt;}
.h0_c00239{height:754.066667pt;}
.w1_c00239{width:93.222667pt;}
.w0_c00239{width:500.666667pt;}
.x0_c00239{left:0.000000pt;}
.x3_c00239{left:58.133333pt;}
.x7_c00239{left:60.266667pt;}
.x5_c00239{left:63.866667pt;}
.x2_c00239{left:72.000000pt;}
.x4_c00239{left:72.933333pt;}
.x6_c00239{left:74.133333pt;}
.x8_c00239{left:75.066667pt;}
.x9_c00239{left:90.266667pt;}
.xa_c00239{left:102.266667pt;}
.xb_c00239{left:119.333333pt;}
.xc_c00239{left:150.933333pt;}
.x1_c00239{left:173.066667pt;}
.x18_c00239{left:207.501546pt;}
.x16_c00239{left:264.533333pt;}
.xf_c00239{left:266.133333pt;}
.xe_c00239{left:267.333333pt;}
.x15_c00239{left:268.400000pt;}
.xd_c00239{left:270.533333pt;}
.x10_c00239{left:278.400000pt;}
.x11_c00239{left:299.600000pt;}
.x14_c00239{left:300.533333pt;}
.x13_c00239{left:302.666667pt;}
.x12_c00239{left:339.333333pt;}
.x17_c00239{left:408.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_30184e44b0632979ec973f0b.woff2')format("woff");}.ff1_c00240{font-family:ff1_c00240;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00240;src:url('chunks/assets/font_b07fce996dfb981a23f06b45.woff2')format("woff");}.ff2_c00240{font-family:ff2_c00240;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00240;src:url('chunks/assets/font_a3f24b531359968e967c7f11.woff2')format("woff");}.ff3_c00240{font-family:ff3_c00240;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00240;src:url('chunks/assets/font_aa7e13edd1616a282fcfbb70.woff2')format("woff");}.ff4_c00240{font-family:ff4_c00240;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00240;src:url('chunks/assets/font_7164f7fc20c479aacf7b7c04.woff2')format("woff");}.ff5_c00240{font-family:ff5_c00240;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00240;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff6_c00240{font-family:ff6_c00240;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00240{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00240{vertical-align:0.000000px;}
.ls3_c00240{letter-spacing:0.000000px;}
.ls0_c00240{letter-spacing:1.020000px;}
.ls2_c00240{letter-spacing:3.000000px;}
.ls1_c00240{letter-spacing:5.160000px;}
.ls4_c00240{letter-spacing:6.000000px;}
.sc__c00240{text-shadow:none;}
.sc0_c00240{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00240{-webkit-text-stroke:0px transparent;}
.sc0_c00240{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00240{word-spacing:-35.295000px;}
.ws2_c00240{word-spacing:-32.424000px;}
.ws0_c00240{word-spacing:-19.320000px;}
.ws3_c00240{word-spacing:-18.060000px;}
.ws4_c00240{word-spacing:-17.340000px;}
.ws1_c00240{word-spacing:-14.160000px;}
.ws6_c00240{word-spacing:0.000000px;}
._39_c00240{margin-left:-19.920000px;}
._24_c00240{margin-left:-18.060000px;}
._15_c00240{margin-left:-16.800000px;}
._2f_c00240{margin-left:-14.580000px;}
._36_c00240{margin-left:-12.900000px;}
._37_c00240{margin-left:-11.820000px;}
._c_c00240{margin-left:-8.940000px;}
._b_c00240{margin-left:-7.500000px;}
._27_c00240{margin-left:-6.180000px;}
._9_c00240{margin-left:-5.100000px;}
._8_c00240{margin-left:-3.180000px;}
._0_c00240{margin-left:-1.560000px;}
._3_c00240{width:1.740000px;}
._4_c00240{width:3.600000px;}
._6_c00240{width:4.980000px;}
._5_c00240{width:6.720000px;}
._12_c00240{width:7.920000px;}
._2_c00240{width:8.940000px;}
._d_c00240{width:10.200000px;}
._13_c00240{width:11.520000px;}
._22_c00240{width:12.600000px;}
._1e_c00240{width:13.860000px;}
._10_c00240{width:15.120000px;}
._20_c00240{width:16.680000px;}
._26_c00240{width:17.880000px;}
._f_c00240{width:19.380000px;}
._1f_c00240{width:20.640000px;}
._2b_c00240{width:21.660000px;}
._19_c00240{width:23.640000px;}
._25_c00240{width:25.380000px;}
._2d_c00240{width:26.580000px;}
._18_c00240{width:28.980000px;}
._1b_c00240{width:31.560000px;}
._3b_c00240{width:32.940000px;}
._3a_c00240{width:36.780000px;}
._1c_c00240{width:39.360000px;}
._1_c00240{width:42.120000px;}
._23_c00240{width:43.740000px;}
._2e_c00240{width:47.760000px;}
._29_c00240{width:64.980000px;}
._e_c00240{width:69.840000px;}
._7_c00240{width:71.340000px;}
._2c_c00240{width:72.900000px;}
._14_c00240{width:76.260000px;}
._1d_c00240{width:78.360000px;}
._a_c00240{width:80.040000px;}
._1a_c00240{width:83.280000px;}
._21_c00240{width:85.260000px;}
._11_c00240{width:87.780000px;}
._2a_c00240{width:92.220000px;}
._3c_c00240{width:94.920000px;}
._34_c00240{width:96.540000px;}
._33_c00240{width:99.840000px;}
._32_c00240{width:101.100000px;}
._35_c00240{width:102.840000px;}
._38_c00240{width:104.700000px;}
._31_c00240{width:106.800000px;}
._17_c00240{width:109.800000px;}
._30_c00240{width:126.420000px;}
._16_c00240{width:196.200000px;}
._28_c00240{width:203.100000px;}
._3d_c00240{width:245.880000px;}
.fc2_c00240{color:transparent;}
.fc1_c00240{color:rgb(128,128,128);}
.fc0_c00240{color:rgb(0,0,0);}
.fs2_c00240{font-size:45.000000px;}
.fs1_c00240{font-size:48.000000px;}
.fs0_c00240{font-size:60.000000px;}
.y0_c00240{bottom:0.000000px;}
.y2c_c00240{bottom:3.105000px;}
.y2b_c00240{bottom:7.228371px;}
.y2a_c00240{bottom:18.315000px;}
.y29_c00240{bottom:38.265000px;}
.y28_c00240{bottom:57.165000px;}
.y27_c00240{bottom:75.015000px;}
.y26_c00240{bottom:93.465000px;}
.y25_c00240{bottom:111.015000px;}
.y24_c00240{bottom:129.615000px;}
.y23_c00240{bottom:147.465000px;}
.y22_c00240{bottom:165.765000px;}
.y21_c00240{bottom:184.065000px;}
.y20_c00240{bottom:201.915000px;}
.y1f_c00240{bottom:220.065000px;}
.y1e_c00240{bottom:236.565000px;}
.y1d_c00240{bottom:255.915000px;}
.y1c_c00240{bottom:273.015000px;}
.y1b_c00240{bottom:291.915000px;}
.y1a_c00240{bottom:309.615000px;}
.y19_c00240{bottom:327.015000px;}
.y18_c00240{bottom:344.715000px;}
.y17_c00240{bottom:363.615000px;}
.y16_c00240{bottom:381.465000px;}
.y15_c00240{bottom:399.615000px;}
.y14_c00240{bottom:417.165000px;}
.y13_c00240{bottom:435.165000px;}
.y12_c00240{bottom:451.965000px;}
.y11_c00240{bottom:470.565000px;}
.y10_c00240{bottom:487.665000px;}
.yf_c00240{bottom:505.965000px;}
.ye_c00240{bottom:523.815000px;}
.yd_c00240{bottom:541.815000px;}
.yc_c00240{bottom:559.665000px;}
.yb_c00240{bottom:577.815000px;}
.ya_c00240{bottom:595.815000px;}
.y9_c00240{bottom:613.965000px;}
.y8_c00240{bottom:631.215000px;}
.y7_c00240{bottom:649.665000px;}
.y6_c00240{bottom:667.665000px;}
.y5_c00240{bottom:685.515000px;}
.y4_c00240{bottom:703.365000px;}
.y3_c00240{bottom:721.665000px;}
.y2_c00240{bottom:739.515000px;}
.y1_c00240{bottom:756.765000px;}
.h4_c00240{height:13.200074px;}
.h5_c00240{height:43.804688px;}
.h2_c00240{height:62.880000px;}
.h3_c00240{height:64.020000px;}
.h0_c00240{height:825.675000px;}
.h1_c00240{height:825.750000px;}
.w2_c00240{width:104.875500px;}
.w0_c00240{width:578.850000px;}
.w1_c00240{width:579.000000px;}
.x0_c00240{left:0.000000px;}
.x8_c00240{left:22.500000px;}
.x7_c00240{left:24.000000px;}
.xb_c00240{left:71.250000px;}
.xa_c00240{left:77.550000px;}
.xd_c00240{left:78.600000px;}
.x9_c00240{left:79.950000px;}
.x3_c00240{left:81.300000px;}
.x2_c00240{left:82.800000px;}
.x1_c00240{left:84.300000px;}
.xc_c00240{left:87.750000px;}
.x6_c00240{left:92.550000px;}
.x5_c00240{left:103.650000px;}
.x4_c00240{left:106.200000px;}
.xf_c00240{left:241.239258px;}
.xe_c00240{left:380.400000px;}
@media print{
.v0_c00240{vertical-align:0.000000pt;}
.ls3_c00240{letter-spacing:0.000000pt;}
.ls0_c00240{letter-spacing:0.906667pt;}
.ls2_c00240{letter-spacing:2.666667pt;}
.ls1_c00240{letter-spacing:4.586667pt;}
.ls4_c00240{letter-spacing:5.333333pt;}
.ws5_c00240{word-spacing:-31.373333pt;}
.ws2_c00240{word-spacing:-28.821333pt;}
.ws0_c00240{word-spacing:-17.173333pt;}
.ws3_c00240{word-spacing:-16.053333pt;}
.ws4_c00240{word-spacing:-15.413333pt;}
.ws1_c00240{word-spacing:-12.586667pt;}
.ws6_c00240{word-spacing:0.000000pt;}
._39_c00240{margin-left:-17.706667pt;}
._24_c00240{margin-left:-16.053333pt;}
._15_c00240{margin-left:-14.933333pt;}
._2f_c00240{margin-left:-12.960000pt;}
._36_c00240{margin-left:-11.466667pt;}
._37_c00240{margin-left:-10.506667pt;}
._c_c00240{margin-left:-7.946667pt;}
._b_c00240{margin-left:-6.666667pt;}
._27_c00240{margin-left:-5.493333pt;}
._9_c00240{margin-left:-4.533333pt;}
._8_c00240{margin-left:-2.826667pt;}
._0_c00240{margin-left:-1.386667pt;}
._3_c00240{width:1.546667pt;}
._4_c00240{width:3.200000pt;}
._6_c00240{width:4.426667pt;}
._5_c00240{width:5.973333pt;}
._12_c00240{width:7.040000pt;}
._2_c00240{width:7.946667pt;}
._d_c00240{width:9.066667pt;}
._13_c00240{width:10.240000pt;}
._22_c00240{width:11.200000pt;}
._1e_c00240{width:12.320000pt;}
._10_c00240{width:13.440000pt;}
._20_c00240{width:14.826667pt;}
._26_c00240{width:15.893333pt;}
._f_c00240{width:17.226667pt;}
._1f_c00240{width:18.346667pt;}
._2b_c00240{width:19.253333pt;}
._19_c00240{width:21.013333pt;}
._25_c00240{width:22.560000pt;}
._2d_c00240{width:23.626667pt;}
._18_c00240{width:25.760000pt;}
._1b_c00240{width:28.053333pt;}
._3b_c00240{width:29.280000pt;}
._3a_c00240{width:32.693333pt;}
._1c_c00240{width:34.986667pt;}
._1_c00240{width:37.440000pt;}
._23_c00240{width:38.880000pt;}
._2e_c00240{width:42.453333pt;}
._29_c00240{width:57.760000pt;}
._e_c00240{width:62.080000pt;}
._7_c00240{width:63.413333pt;}
._2c_c00240{width:64.800000pt;}
._14_c00240{width:67.786667pt;}
._1d_c00240{width:69.653333pt;}
._a_c00240{width:71.146667pt;}
._1a_c00240{width:74.026667pt;}
._21_c00240{width:75.786667pt;}
._11_c00240{width:78.026667pt;}
._2a_c00240{width:81.973333pt;}
._3c_c00240{width:84.373333pt;}
._34_c00240{width:85.813333pt;}
._33_c00240{width:88.746667pt;}
._32_c00240{width:89.866667pt;}
._35_c00240{width:91.413333pt;}
._38_c00240{width:93.066667pt;}
._31_c00240{width:94.933333pt;}
._17_c00240{width:97.600000pt;}
._30_c00240{width:112.373333pt;}
._16_c00240{width:174.400000pt;}
._28_c00240{width:180.533333pt;}
._3d_c00240{width:218.560000pt;}
.fs2_c00240{font-size:40.000000pt;}
.fs1_c00240{font-size:42.666667pt;}
.fs0_c00240{font-size:53.333333pt;}
.y0_c00240{bottom:0.000000pt;}
.y2c_c00240{bottom:2.760000pt;}
.y2b_c00240{bottom:6.425219pt;}
.y2a_c00240{bottom:16.280000pt;}
.y29_c00240{bottom:34.013333pt;}
.y28_c00240{bottom:50.813333pt;}
.y27_c00240{bottom:66.680000pt;}
.y26_c00240{bottom:83.080000pt;}
.y25_c00240{bottom:98.680000pt;}
.y24_c00240{bottom:115.213333pt;}
.y23_c00240{bottom:131.080000pt;}
.y22_c00240{bottom:147.346667pt;}
.y21_c00240{bottom:163.613333pt;}
.y20_c00240{bottom:179.480000pt;}
.y1f_c00240{bottom:195.613333pt;}
.y1e_c00240{bottom:210.280000pt;}
.y1d_c00240{bottom:227.480000pt;}
.y1c_c00240{bottom:242.680000pt;}
.y1b_c00240{bottom:259.480000pt;}
.y1a_c00240{bottom:275.213333pt;}
.y19_c00240{bottom:290.680000pt;}
.y18_c00240{bottom:306.413333pt;}
.y17_c00240{bottom:323.213333pt;}
.y16_c00240{bottom:339.080000pt;}
.y15_c00240{bottom:355.213333pt;}
.y14_c00240{bottom:370.813333pt;}
.y13_c00240{bottom:386.813333pt;}
.y12_c00240{bottom:401.746667pt;}
.y11_c00240{bottom:418.280000pt;}
.y10_c00240{bottom:433.480000pt;}
.yf_c00240{bottom:449.746667pt;}
.ye_c00240{bottom:465.613333pt;}
.yd_c00240{bottom:481.613333pt;}
.yc_c00240{bottom:497.480000pt;}
.yb_c00240{bottom:513.613333pt;}
.ya_c00240{bottom:529.613333pt;}
.y9_c00240{bottom:545.746667pt;}
.y8_c00240{bottom:561.080000pt;}
.y7_c00240{bottom:577.480000pt;}
.y6_c00240{bottom:593.480000pt;}
.y5_c00240{bottom:609.346667pt;}
.y4_c00240{bottom:625.213333pt;}
.y3_c00240{bottom:641.480000pt;}
.y2_c00240{bottom:657.346667pt;}
.y1_c00240{bottom:672.680000pt;}
.h4_c00240{height:11.733399pt;}
.h5_c00240{height:38.937500pt;}
.h2_c00240{height:55.893333pt;}
.h3_c00240{height:56.906667pt;}
.h0_c00240{height:733.933333pt;}
.h1_c00240{height:734.000000pt;}
.w2_c00240{width:93.222667pt;}
.w0_c00240{width:514.533333pt;}
.w1_c00240{width:514.666667pt;}
.x0_c00240{left:0.000000pt;}
.x8_c00240{left:20.000000pt;}
.x7_c00240{left:21.333333pt;}
.xb_c00240{left:63.333333pt;}
.xa_c00240{left:68.933333pt;}
.xd_c00240{left:69.866667pt;}
.x9_c00240{left:71.066667pt;}
.x3_c00240{left:72.266667pt;}
.x2_c00240{left:73.600000pt;}
.x1_c00240{left:74.933333pt;}
.xc_c00240{left:78.000000pt;}
.x6_c00240{left:82.266667pt;}
.x5_c00240{left:92.133333pt;}
.x4_c00240{left:94.400000pt;}
.xf_c00240{left:214.434896pt;}
.xe_c00240{left:338.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f4c42b5091a574dd546d98ca.woff2')format("woff");}.ff1_c00241{font-family:ff1_c00241;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:ff2_c00241;src:url('chunks/assets/font_225188bd75b3723015c2335f.woff2')format("woff");}.ff2_c00241{font-family:ff2_c00241;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00241;src:url('chunks/assets/font_17b343f52a9d7443a0fa96d9.woff2')format("woff");}.ff3_c00241{font-family:ff3_c00241;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00241;src:url('chunks/assets/font_a2d85faaeae73bd44770cb45.woff2')format("woff");}.ff4_c00241{font-family:ff4_c00241;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00241;src:url('chunks/assets/font_9d92ca7479f1a72d57a5ecf3.woff2')format("woff");}.ff5_c00241{font-family:ff5_c00241;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00241;src:url('chunks/assets/font_e904d781a261abd2f4b86944.woff2')format("woff");}.ff6_c00241{font-family:ff6_c00241;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00241;src:url('chunks/assets/font_35310b5afa7b941a389b69a2.woff2')format("woff");}.ff7_c00241{font-family:ff7_c00241;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00241;src:url('chunks/assets/font_f16dc6106747fddd8db6c714.woff2')format("woff");}.ff8_c00241{font-family:ff8_c00241;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00241;src:url('chunks/assets/font_f3790c11fa1b72b5ebd5d0f3.woff2')format("woff");}.ff9_c00241{font-family:ff9_c00241;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00241;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ffa_c00241{font-family:ffa_c00241;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:ffb_c00241;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ffb_c00241{font-family:ffb_c00241;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00241{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00241{vertical-align:0.000000px;}
.ls6_c00241{letter-spacing:0.000000px;}
.ls0_c00241{letter-spacing:3.000000px;}
.ls4_c00241{letter-spacing:3.405000px;}
.ls9_c00241{letter-spacing:6.000000px;}
.lsa_c00241{letter-spacing:9.000000px;}
.ls8_c00241{letter-spacing:12.000000px;}
.ls7_c00241{letter-spacing:15.000000px;}
.ls1_c00241{letter-spacing:17.700000px;}
.ls3_c00241{letter-spacing:31.140000px;}
.ls5_c00241{letter-spacing:32.940000px;}
.ls2_c00241{letter-spacing:70.140000px;}
.sc__c00241{text-shadow:none;}
.sc0_c00241{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00241{-webkit-text-stroke:0px transparent;}
.sc0_c00241{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00241{word-spacing:-35.295000px;}
.ws4_c00241{word-spacing:-33.000000px;}
.ws2_c00241{word-spacing:-30.072000px;}
.ws6_c00241{word-spacing:-29.160000px;}
.ws0_c00241{word-spacing:-25.854000px;}
.ws1_c00241{word-spacing:-21.000000px;}
.ws7_c00241{word-spacing:-17.319000px;}
.ws3_c00241{word-spacing:-14.160000px;}
.ws8_c00241{word-spacing:0.000000px;}
._2c_c00241{margin-left:-37.386000px;}
._2a_c00241{margin-left:-29.667000px;}
._4_c00241{margin-left:-26.049000px;}
._29_c00241{margin-left:-23.646000px;}
._28_c00241{margin-left:-22.575000px;}
._15_c00241{margin-left:-21.330000px;}
._1c_c00241{margin-left:-19.623000px;}
._27_c00241{margin-left:-18.468000px;}
._25_c00241{margin-left:-16.704000px;}
._14_c00241{margin-left:-15.381000px;}
._b_c00241{margin-left:-13.500000px;}
._f_c00241{margin-left:-12.345000px;}
._23_c00241{margin-left:-11.016000px;}
._24_c00241{margin-left:-9.858000px;}
._e_c00241{margin-left:-8.784000px;}
._2_c00241{margin-left:-7.293000px;}
._6_c00241{margin-left:-5.904000px;}
._5_c00241{margin-left:-3.960000px;}
._3_c00241{margin-left:-2.913000px;}
._0_c00241{margin-left:-1.767000px;}
._d_c00241{width:1.296000px;}
._10_c00241{width:2.736000px;}
._7_c00241{width:4.320000px;}
._13_c00241{width:5.799000px;}
._8_c00241{width:6.840000px;}
._c_c00241{width:7.920000px;}
._a_c00241{width:9.132000px;}
._1e_c00241{width:10.452000px;}
._16_c00241{width:11.523000px;}
._17_c00241{width:13.326000px;}
._11_c00241{width:16.737000px;}
._9_c00241{width:18.078000px;}
._18_c00241{width:19.254000px;}
._20_c00241{width:20.559000px;}
._21_c00241{width:24.156000px;}
._2b_c00241{width:25.200000px;}
._1a_c00241{width:26.364000px;}
._19_c00241{width:27.402000px;}
._12_c00241{width:30.045000px;}
._1f_c00241{width:32.952000px;}
._1d_c00241{width:33.966000px;}
._22_c00241{width:41.601000px;}
._26_c00241{width:47.088000px;}
._1b_c00241{width:126.963000px;}
._1_c00241{width:284.964000px;}
.fc2_c00241{color:transparent;}
.fc1_c00241{color:rgb(128,128,128);}
.fc0_c00241{color:rgb(0,0,0);}
.fs5_c00241{font-size:24.000000px;}
.fs6_c00241{font-size:45.000000px;}
.fs8_c00241{font-size:48.000000px;}
.fs4_c00241{font-size:54.000000px;}
.fs2_c00241{font-size:60.000000px;}
.fs7_c00241{font-size:69.000000px;}
.fs1_c00241{font-size:72.000000px;}
.fs3_c00241{font-size:75.000000px;}
.fs0_c00241{font-size:93.000000px;}
.y0_c00241{bottom:0.000000px;}
.y4e_c00241{bottom:3.105000px;}
.y4d_c00241{bottom:7.228357px;}
.y2a_c00241{bottom:47.880000px;}
.y29_c00241{bottom:66.480000px;}
.y28_c00241{bottom:84.480000px;}
.y4c_c00241{bottom:99.930000px;}
.y27_c00241{bottom:102.330000px;}
.y4b_c00241{bottom:118.080000px;}
.y26_c00241{bottom:120.180000px;}
.y4a_c00241{bottom:136.380000px;}
.y25_c00241{bottom:138.780000px;}
.y49_c00241{bottom:154.680000px;}
.y24_c00241{bottom:156.330000px;}
.y48_c00241{bottom:172.830000px;}
.y23_c00241{bottom:174.180000px;}
.y47_c00241{bottom:190.980000px;}
.y22_c00241{bottom:191.130000px;}
.y46_c00241{bottom:209.280000px;}
.y21_c00241{bottom:210.630000px;}
.y45_c00241{bottom:227.580000px;}
.y20_c00241{bottom:228.480000px;}
.y44_c00241{bottom:244.680000px;}
.y1f_c00241{bottom:246.330000px;}
.y43_c00241{bottom:263.280000px;}
.y1e_c00241{bottom:264.630000px;}
.y42_c00241{bottom:281.880000px;}
.y1d_c00241{bottom:282.180000px;}
.y41_c00241{bottom:299.580000px;}
.y1c_c00241{bottom:300.480000px;}
.y40_c00241{bottom:317.580000px;}
.y1b_c00241{bottom:318.630000px;}
.y3f_c00241{bottom:335.580000px;}
.y1a_c00241{bottom:336.930000px;}
.y3e_c00241{bottom:354.030000px;}
.y19_c00241{bottom:354.330000px;}
.y3d_c00241{bottom:372.030000px;}
.y18_c00241{bottom:372.630000px;}
.y3c_c00241{bottom:389.880000px;}
.y17_c00241{bottom:390.930000px;}
.y3b_c00241{bottom:408.330000px;}
.y16_c00241{bottom:408.780000px;}
.y3a_c00241{bottom:426.030000px;}
.y15_c00241{bottom:426.330000px;}
.y14_c00241{bottom:443.880000px;}
.y39_c00241{bottom:444.480000px;}
.y38_c00241{bottom:462.030000px;}
.y13_c00241{bottom:462.330000px;}
.y37_c00241{bottom:480.330000px;}
.y12_c00241{bottom:480.630000px;}
.y36_c00241{bottom:497.430000px;}
.y11_c00241{bottom:498.780000px;}
.y10_c00241{bottom:516.330000px;}
.y35_c00241{bottom:534.330000px;}
.yf_c00241{bottom:534.630000px;}
.ye_c00241{bottom:552.480000px;}
.y34_c00241{bottom:570.030000px;}
.yd_c00241{bottom:570.330000px;}
.y33_c00241{bottom:588.030000px;}
.yc_c00241{bottom:588.630000px;}
.y32_c00241{bottom:605.580000px;}
.yb_c00241{bottom:606.480000px;}
.y31_c00241{bottom:624.480000px;}
.ya_c00241{bottom:624.780000px;}
.y30_c00241{bottom:642.330000px;}
.y9_c00241{bottom:642.630000px;}
.y8_c00241{bottom:660.480000px;}
.y7_c00241{bottom:678.330000px;}
.y2f_c00241{bottom:678.480000px;}
.y2e_c00241{bottom:696.930000px;}
.y6_c00241{bottom:697.230000px;}
.y5_c00241{bottom:714.780000px;}
.y2d_c00241{bottom:732.330000px;}
.y4_c00241{bottom:732.780000px;}
.y3_c00241{bottom:750.630000px;}
.y2c_c00241{bottom:768.930000px;}
.y2_c00241{bottom:769.230000px;}
.y2b_c00241{bottom:787.830000px;}
.y1_c00241{bottom:789.030000px;}
.h8_c00241{height:13.200074px;}
.h9_c00241{height:43.804688px;}
.h6_c00241{height:62.880000px;}
.h3_c00241{height:70.664062px;}
.h7_c00241{height:72.312000px;}
.h4_c00241{height:75.456000px;}
.h5_c00241{height:80.025000px;}
.h2_c00241{height:96.996094px;}
.h0_c00241{height:841.350000px;}
.h1_c00241{height:841.500000px;}
.w2_c00241{width:104.875500px;}
.w0_c00241{width:558.375000px;}
.w1_c00241{width:558.750000px;}
.x0_c00241{left:0.000000px;}
.x6_c00241{left:16.200000px;}
.x4_c00241{left:74.850000px;}
.x3_c00241{left:75.900000px;}
.x5_c00241{left:77.250000px;}
.x2_c00241{left:78.600000px;}
.x1_c00241{left:79.650000px;}
.x10_c00241{left:231.001740px;}
.xa_c00241{left:291.900000px;}
.x9_c00241{left:293.250000px;}
.x8_c00241{left:294.600000px;}
.xb_c00241{left:295.650000px;}
.xc_c00241{left:296.700000px;}
.x7_c00241{left:301.350000px;}
.xd_c00241{left:312.900000px;}
.xe_c00241{left:343.200000px;}
.xf_c00241{left:383.850000px;}
@media print{
.v0_c00241{vertical-align:0.000000pt;}
.ls6_c00241{letter-spacing:0.000000pt;}
.ls0_c00241{letter-spacing:2.666667pt;}
.ls4_c00241{letter-spacing:3.026667pt;}
.ls9_c00241{letter-spacing:5.333333pt;}
.lsa_c00241{letter-spacing:8.000000pt;}
.ls8_c00241{letter-spacing:10.666667pt;}
.ls7_c00241{letter-spacing:13.333333pt;}
.ls1_c00241{letter-spacing:15.733333pt;}
.ls3_c00241{letter-spacing:27.680000pt;}
.ls5_c00241{letter-spacing:29.280000pt;}
.ls2_c00241{letter-spacing:62.346667pt;}
.ws5_c00241{word-spacing:-31.373333pt;}
.ws4_c00241{word-spacing:-29.333333pt;}
.ws2_c00241{word-spacing:-26.730667pt;}
.ws6_c00241{word-spacing:-25.920000pt;}
.ws0_c00241{word-spacing:-22.981333pt;}
.ws1_c00241{word-spacing:-18.666667pt;}
.ws7_c00241{word-spacing:-15.394667pt;}
.ws3_c00241{word-spacing:-12.586667pt;}
.ws8_c00241{word-spacing:0.000000pt;}
._2c_c00241{margin-left:-33.232000pt;}
._2a_c00241{margin-left:-26.370667pt;}
._4_c00241{margin-left:-23.154667pt;}
._29_c00241{margin-left:-21.018667pt;}
._28_c00241{margin-left:-20.066667pt;}
._15_c00241{margin-left:-18.960000pt;}
._1c_c00241{margin-left:-17.442667pt;}
._27_c00241{margin-left:-16.416000pt;}
._25_c00241{margin-left:-14.848000pt;}
._14_c00241{margin-left:-13.672000pt;}
._b_c00241{margin-left:-12.000000pt;}
._f_c00241{margin-left:-10.973333pt;}
._23_c00241{margin-left:-9.792000pt;}
._24_c00241{margin-left:-8.762667pt;}
._e_c00241{margin-left:-7.808000pt;}
._2_c00241{margin-left:-6.482667pt;}
._6_c00241{margin-left:-5.248000pt;}
._5_c00241{margin-left:-3.520000pt;}
._3_c00241{margin-left:-2.589333pt;}
._0_c00241{margin-left:-1.570667pt;}
._d_c00241{width:1.152000pt;}
._10_c00241{width:2.432000pt;}
._7_c00241{width:3.840000pt;}
._13_c00241{width:5.154667pt;}
._8_c00241{width:6.080000pt;}
._c_c00241{width:7.040000pt;}
._a_c00241{width:8.117333pt;}
._1e_c00241{width:9.290667pt;}
._16_c00241{width:10.242667pt;}
._17_c00241{width:11.845333pt;}
._11_c00241{width:14.877333pt;}
._9_c00241{width:16.069333pt;}
._18_c00241{width:17.114667pt;}
._20_c00241{width:18.274667pt;}
._21_c00241{width:21.472000pt;}
._2b_c00241{width:22.400000pt;}
._1a_c00241{width:23.434667pt;}
._19_c00241{width:24.357333pt;}
._12_c00241{width:26.706667pt;}
._1f_c00241{width:29.290667pt;}
._1d_c00241{width:30.192000pt;}
._22_c00241{width:36.978667pt;}
._26_c00241{width:41.856000pt;}
._1b_c00241{width:112.856000pt;}
._1_c00241{width:253.301333pt;}
.fs5_c00241{font-size:21.333333pt;}
.fs6_c00241{font-size:40.000000pt;}
.fs8_c00241{font-size:42.666667pt;}
.fs4_c00241{font-size:48.000000pt;}
.fs2_c00241{font-size:53.333333pt;}
.fs7_c00241{font-size:61.333333pt;}
.fs1_c00241{font-size:64.000000pt;}
.fs3_c00241{font-size:66.666667pt;}
.fs0_c00241{font-size:82.666667pt;}
.y0_c00241{bottom:0.000000pt;}
.y4e_c00241{bottom:2.760000pt;}
.y4d_c00241{bottom:6.425206pt;}
.y2a_c00241{bottom:42.560000pt;}
.y29_c00241{bottom:59.093333pt;}
.y28_c00241{bottom:75.093333pt;}
.y4c_c00241{bottom:88.826667pt;}
.y27_c00241{bottom:90.960000pt;}
.y4b_c00241{bottom:104.960000pt;}
.y26_c00241{bottom:106.826667pt;}
.y4a_c00241{bottom:121.226667pt;}
.y25_c00241{bottom:123.360000pt;}
.y49_c00241{bottom:137.493333pt;}
.y24_c00241{bottom:138.960000pt;}
.y48_c00241{bottom:153.626667pt;}
.y23_c00241{bottom:154.826667pt;}
.y47_c00241{bottom:169.760000pt;}
.y22_c00241{bottom:169.893333pt;}
.y46_c00241{bottom:186.026667pt;}
.y21_c00241{bottom:187.226667pt;}
.y45_c00241{bottom:202.293333pt;}
.y20_c00241{bottom:203.093333pt;}
.y44_c00241{bottom:217.493333pt;}
.y1f_c00241{bottom:218.960000pt;}
.y43_c00241{bottom:234.026667pt;}
.y1e_c00241{bottom:235.226667pt;}
.y42_c00241{bottom:250.560000pt;}
.y1d_c00241{bottom:250.826667pt;}
.y41_c00241{bottom:266.293333pt;}
.y1c_c00241{bottom:267.093333pt;}
.y40_c00241{bottom:282.293333pt;}
.y1b_c00241{bottom:283.226667pt;}
.y3f_c00241{bottom:298.293333pt;}
.y1a_c00241{bottom:299.493333pt;}
.y3e_c00241{bottom:314.693333pt;}
.y19_c00241{bottom:314.960000pt;}
.y3d_c00241{bottom:330.693333pt;}
.y18_c00241{bottom:331.226667pt;}
.y3c_c00241{bottom:346.560000pt;}
.y17_c00241{bottom:347.493333pt;}
.y3b_c00241{bottom:362.960000pt;}
.y16_c00241{bottom:363.360000pt;}
.y3a_c00241{bottom:378.693333pt;}
.y15_c00241{bottom:378.960000pt;}
.y14_c00241{bottom:394.560000pt;}
.y39_c00241{bottom:395.093333pt;}
.y38_c00241{bottom:410.693333pt;}
.y13_c00241{bottom:410.960000pt;}
.y37_c00241{bottom:426.960000pt;}
.y12_c00241{bottom:427.226667pt;}
.y36_c00241{bottom:442.160000pt;}
.y11_c00241{bottom:443.360000pt;}
.y10_c00241{bottom:458.960000pt;}
.y35_c00241{bottom:474.960000pt;}
.yf_c00241{bottom:475.226667pt;}
.ye_c00241{bottom:491.093333pt;}
.y34_c00241{bottom:506.693333pt;}
.yd_c00241{bottom:506.960000pt;}
.y33_c00241{bottom:522.693333pt;}
.yc_c00241{bottom:523.226667pt;}
.y32_c00241{bottom:538.293333pt;}
.yb_c00241{bottom:539.093333pt;}
.y31_c00241{bottom:555.093333pt;}
.ya_c00241{bottom:555.360000pt;}
.y30_c00241{bottom:570.960000pt;}
.y9_c00241{bottom:571.226667pt;}
.y8_c00241{bottom:587.093333pt;}
.y7_c00241{bottom:602.960000pt;}
.y2f_c00241{bottom:603.093333pt;}
.y2e_c00241{bottom:619.493333pt;}
.y6_c00241{bottom:619.760000pt;}
.y5_c00241{bottom:635.360000pt;}
.y2d_c00241{bottom:650.960000pt;}
.y4_c00241{bottom:651.360000pt;}
.y3_c00241{bottom:667.226667pt;}
.y2c_c00241{bottom:683.493333pt;}
.y2_c00241{bottom:683.760000pt;}
.y2b_c00241{bottom:700.293333pt;}
.y1_c00241{bottom:701.360000pt;}
.h8_c00241{height:11.733399pt;}
.h9_c00241{height:38.937500pt;}
.h6_c00241{height:55.893333pt;}
.h3_c00241{height:62.812500pt;}
.h7_c00241{height:64.277333pt;}
.h4_c00241{height:67.072000pt;}
.h5_c00241{height:71.133333pt;}
.h2_c00241{height:86.218750pt;}
.h0_c00241{height:747.866667pt;}
.h1_c00241{height:748.000000pt;}
.w2_c00241{width:93.222667pt;}
.w0_c00241{width:496.333333pt;}
.w1_c00241{width:496.666667pt;}
.x0_c00241{left:0.000000pt;}
.x6_c00241{left:14.400000pt;}
.x4_c00241{left:66.533333pt;}
.x3_c00241{left:67.466667pt;}
.x5_c00241{left:68.666667pt;}
.x2_c00241{left:69.866667pt;}
.x1_c00241{left:70.800000pt;}
.x10_c00241{left:205.334880pt;}
.xa_c00241{left:259.466667pt;}
.x9_c00241{left:260.666667pt;}
.x8_c00241{left:261.866667pt;}
.xb_c00241{left:262.800000pt;}
.xc_c00241{left:263.733333pt;}
.x7_c00241{left:267.866667pt;}
.xd_c00241{left:278.133333pt;}
.xe_c00241{left:305.066667pt;}
.xf_c00241{left:341.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e05387fbd0d0ce15d8ad1bbf.woff2')format("woff");}.ff1_c00242{font-family:ff1_c00242;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00242;src:url('chunks/assets/font_f78b6612ee6af9efbf5ff540.woff2')format("woff");}.ff2_c00242{font-family:ff2_c00242;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00242;src:url('chunks/assets/font_6105c17c3228052140a0ebdf.woff2')format("woff");}.ff3_c00242{font-family:ff3_c00242;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00242;src:url('chunks/assets/font_b2da6ac9e970ab8d55623cea.woff2')format("woff");}.ff4_c00242{font-family:ff4_c00242;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00242;src:url('chunks/assets/font_2eb2549cbaf395d55b31a61a.woff2')format("woff");}.ff5_c00242{font-family:ff5_c00242;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00242;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff6_c00242{font-family:ff6_c00242;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00242{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00242{vertical-align:0.000000px;}
.v1_c00242{vertical-align:13.800000px;}
.ls5_c00242{letter-spacing:0.000000px;}
.ls1_c00242{letter-spacing:3.000000px;}
.ls6_c00242{letter-spacing:6.000000px;}
.ls3_c00242{letter-spacing:6.300000px;}
.ls2_c00242{letter-spacing:23.205000px;}
.ls4_c00242{letter-spacing:32.340000px;}
.ls0_c00242{letter-spacing:127.560000px;}
.sc__c00242{text-shadow:none;}
.sc0_c00242{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00242{-webkit-text-stroke:0px transparent;}
.sc0_c00242{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00242{word-spacing:-35.295000px;}
.ws2_c00242{word-spacing:-23.640000px;}
.ws4_c00242{word-spacing:-17.340000px;}
.ws0_c00242{word-spacing:-14.160000px;}
.ws5_c00242{word-spacing:0.000000px;}
.ws3_c00242{word-spacing:0.780000px;}
._1d_c00242{margin-left:-34.680000px;}
._19_c00242{margin-left:-13.635000px;}
._27_c00242{margin-left:-11.100000px;}
._13_c00242{margin-left:-9.300000px;}
._1a_c00242{margin-left:-8.280000px;}
._26_c00242{margin-left:-7.200000px;}
._c_c00242{margin-left:-6.120000px;}
._d_c00242{margin-left:-4.920000px;}
._b_c00242{margin-left:-3.300000px;}
._3_c00242{margin-left:-2.160000px;}
._2_c00242{margin-left:-1.140000px;}
._0_c00242{width:1.260000px;}
._1_c00242{width:2.460000px;}
._8_c00242{width:3.720000px;}
._4_c00242{width:5.640000px;}
._9_c00242{width:6.780000px;}
._5_c00242{width:8.520000px;}
._6_c00242{width:9.540000px;}
._f_c00242{width:10.980000px;}
._7_c00242{width:12.420000px;}
._e_c00242{width:13.500000px;}
._1b_c00242{width:15.240000px;}
._10_c00242{width:16.680000px;}
._23_c00242{width:17.820000px;}
._24_c00242{width:18.840000px;}
._15_c00242{width:20.040000px;}
._17_c00242{width:21.480000px;}
._14_c00242{width:23.280000px;}
._11_c00242{width:24.360000px;}
._1f_c00242{width:25.620000px;}
._1e_c00242{width:26.760000px;}
._a_c00242{width:27.840000px;}
._22_c00242{width:29.820000px;}
._25_c00242{width:31.800000px;}
._16_c00242{width:34.860000px;}
._1c_c00242{width:48.900000px;}
._12_c00242{width:54.540000px;}
._18_c00242{width:183.660000px;}
._28_c00242{width:211.860000px;}
._21_c00242{width:389.220000px;}
._20_c00242{width:428.460000px;}
.fc2_c00242{color:transparent;}
.fc1_c00242{color:rgb(128,128,128);}
.fc0_c00242{color:rgb(0,0,0);}
.fs1_c00242{font-size:45.000000px;}
.fs2_c00242{font-size:48.000000px;}
.fs0_c00242{font-size:60.000000px;}
.y0_c00242{bottom:0.000000px;}
.y52_c00242{bottom:3.105000px;}
.y51_c00242{bottom:7.228369px;}
.y50_c00242{bottom:32.070000px;}
.y4f_c00242{bottom:50.220000px;}
.y25_c00242{bottom:53.970000px;}
.y4e_c00242{bottom:69.120000px;}
.y24_c00242{bottom:71.820000px;}
.y4d_c00242{bottom:86.370000px;}
.y23_c00242{bottom:90.120000px;}
.y4c_c00242{bottom:104.520000px;}
.y22_c00242{bottom:108.570000px;}
.y4b_c00242{bottom:122.520000px;}
.y21_c00242{bottom:126.570000px;}
.y4a_c00242{bottom:140.970000px;}
.y20_c00242{bottom:144.720000px;}
.y49_c00242{bottom:158.970000px;}
.y1f_c00242{bottom:163.020000px;}
.y48_c00242{bottom:176.520000px;}
.y1e_c00242{bottom:180.870000px;}
.y47_c00242{bottom:194.070000px;}
.y1d_c00242{bottom:199.170000px;}
.y46_c00242{bottom:212.670000px;}
.y1c_c00242{bottom:217.020000px;}
.y45_c00242{bottom:230.220000px;}
.y1b_c00242{bottom:234.570000px;}
.y44_c00242{bottom:248.970000px;}
.y1a_c00242{bottom:252.420000px;}
.y43_c00242{bottom:266.970000px;}
.y19_c00242{bottom:270.270000px;}
.y42_c00242{bottom:285.120000px;}
.y18_c00242{bottom:288.570000px;}
.y41_c00242{bottom:303.120000px;}
.y17_c00242{bottom:305.820000px;}
.y40_c00242{bottom:320.970000px;}
.y16_c00242{bottom:323.970000px;}
.y3f_c00242{bottom:339.120000px;}
.y15_c00242{bottom:341.820000px;}
.y3e_c00242{bottom:357.120000px;}
.y14_c00242{bottom:360.120000px;}
.y3d_c00242{bottom:375.420000px;}
.y13_c00242{bottom:378.270000px;}
.y3c_c00242{bottom:393.420000px;}
.y12_c00242{bottom:396.120000px;}
.y3b_c00242{bottom:411.420000px;}
.y11_c00242{bottom:413.820000px;}
.y3a_c00242{bottom:429.270000px;}
.y10_c00242{bottom:431.670000px;}
.y39_c00242{bottom:447.870000px;}
.yf_c00242{bottom:449.520000px;}
.y38_c00242{bottom:465.720000px;}
.ye_c00242{bottom:467.370000px;}
.y37_c00242{bottom:483.870000px;}
.yd_c00242{bottom:485.220000px;}
.y36_c00242{bottom:501.420000px;}
.yc_c00242{bottom:502.470000px;}
.y35_c00242{bottom:520.020000px;}
.yb_c00242{bottom:520.770000px;}
.y34_c00242{bottom:538.020000px;}
.ya_c00242{bottom:539.370000px;}
.y33_c00242{bottom:556.620000px;}
.y9_c00242{bottom:556.770000px;}
.y8_c00242{bottom:574.320000px;}
.y32_c00242{bottom:574.770000px;}
.y7_c00242{bottom:589.920000px;}
.y31_c00242{bottom:592.920000px;}
.y30_c00242{bottom:611.220000px;}
.y6_c00242{bottom:628.470000px;}
.y2f_c00242{bottom:630.120000px;}
.y5_c00242{bottom:646.620000px;}
.y2e_c00242{bottom:648.720000px;}
.y4_c00242{bottom:664.470000px;}
.y2d_c00242{bottom:666.120000px;}
.y3_c00242{bottom:682.470000px;}
.y2c_c00242{bottom:683.820000px;}
.y2_c00242{bottom:700.320000px;}
.y2b_c00242{bottom:701.670000px;}
.y1_c00242{bottom:719.220000px;}
.y2a_c00242{bottom:720.870000px;}
.y29_c00242{bottom:738.720000px;}
.y28_c00242{bottom:755.970000px;}
.y27_c00242{bottom:774.570000px;}
.y26_c00242{bottom:792.420000px;}
.h5_c00242{height:13.200073px;}
.h6_c00242{height:43.804688px;}
.h2_c00242{height:62.880000px;}
.h4_c00242{height:64.020000px;}
.h3_c00242{height:76.680000px;}
.h1_c00242{height:832.500000px;}
.h0_c00242{height:832.650000px;}
.w2_c00242{width:104.875500px;}
.w1_c00242{width:583.500000px;}
.w0_c00242{width:583.725000px;}
.x0_c00242{left:0.000000px;}
.xa_c00242{left:24.000000px;}
.xc_c00242{left:79.350000px;}
.xb_c00242{left:81.000000px;}
.x7_c00242{left:82.950000px;}
.x9_c00242{left:84.150000px;}
.x2_c00242{left:85.350000px;}
.x1_c00242{left:86.700000px;}
.x3_c00242{left:96.300000px;}
.x4_c00242{left:110.700000px;}
.x8_c00242{left:127.950000px;}
.x5_c00242{left:140.100000px;}
.xf_c00242{left:157.200000px;}
.x6_c00242{left:159.900000px;}
.xd_c00242{left:227.250000px;}
.x17_c00242{left:243.676758px;}
.x15_c00242{left:295.350000px;}
.x14_c00242{left:296.550000px;}
.x13_c00242{left:298.050000px;}
.x12_c00242{left:299.250000px;}
.x11_c00242{left:300.300000px;}
.x10_c00242{left:301.950000px;}
.xe_c00242{left:304.650000px;}
.x16_c00242{left:385.800000px;}
@media print{
.v0_c00242{vertical-align:0.000000pt;}
.v1_c00242{vertical-align:12.266667pt;}
.ls5_c00242{letter-spacing:0.000000pt;}
.ls1_c00242{letter-spacing:2.666667pt;}
.ls6_c00242{letter-spacing:5.333333pt;}
.ls3_c00242{letter-spacing:5.600000pt;}
.ls2_c00242{letter-spacing:20.626667pt;}
.ls4_c00242{letter-spacing:28.746667pt;}
.ls0_c00242{letter-spacing:113.386667pt;}
.ws1_c00242{word-spacing:-31.373333pt;}
.ws2_c00242{word-spacing:-21.013333pt;}
.ws4_c00242{word-spacing:-15.413333pt;}
.ws0_c00242{word-spacing:-12.586667pt;}
.ws5_c00242{word-spacing:0.000000pt;}
.ws3_c00242{word-spacing:0.693333pt;}
._1d_c00242{margin-left:-30.826667pt;}
._19_c00242{margin-left:-12.120000pt;}
._27_c00242{margin-left:-9.866667pt;}
._13_c00242{margin-left:-8.266667pt;}
._1a_c00242{margin-left:-7.360000pt;}
._26_c00242{margin-left:-6.400000pt;}
._c_c00242{margin-left:-5.440000pt;}
._d_c00242{margin-left:-4.373333pt;}
._b_c00242{margin-left:-2.933333pt;}
._3_c00242{margin-left:-1.920000pt;}
._2_c00242{margin-left:-1.013333pt;}
._0_c00242{width:1.120000pt;}
._1_c00242{width:2.186667pt;}
._8_c00242{width:3.306667pt;}
._4_c00242{width:5.013333pt;}
._9_c00242{width:6.026667pt;}
._5_c00242{width:7.573333pt;}
._6_c00242{width:8.480000pt;}
._f_c00242{width:9.760000pt;}
._7_c00242{width:11.040000pt;}
._e_c00242{width:12.000000pt;}
._1b_c00242{width:13.546667pt;}
._10_c00242{width:14.826667pt;}
._23_c00242{width:15.840000pt;}
._24_c00242{width:16.746667pt;}
._15_c00242{width:17.813333pt;}
._17_c00242{width:19.093333pt;}
._14_c00242{width:20.693333pt;}
._11_c00242{width:21.653333pt;}
._1f_c00242{width:22.773333pt;}
._1e_c00242{width:23.786667pt;}
._a_c00242{width:24.746667pt;}
._22_c00242{width:26.506667pt;}
._25_c00242{width:28.266667pt;}
._16_c00242{width:30.986667pt;}
._1c_c00242{width:43.466667pt;}
._12_c00242{width:48.480000pt;}
._18_c00242{width:163.253333pt;}
._28_c00242{width:188.320000pt;}
._21_c00242{width:345.973333pt;}
._20_c00242{width:380.853333pt;}
.fs1_c00242{font-size:40.000000pt;}
.fs2_c00242{font-size:42.666667pt;}
.fs0_c00242{font-size:53.333333pt;}
.y0_c00242{bottom:0.000000pt;}
.y52_c00242{bottom:2.760000pt;}
.y51_c00242{bottom:6.425217pt;}
.y50_c00242{bottom:28.506667pt;}
.y4f_c00242{bottom:44.640000pt;}
.y25_c00242{bottom:47.973333pt;}
.y4e_c00242{bottom:61.440000pt;}
.y24_c00242{bottom:63.840000pt;}
.y4d_c00242{bottom:76.773333pt;}
.y23_c00242{bottom:80.106667pt;}
.y4c_c00242{bottom:92.906667pt;}
.y22_c00242{bottom:96.506667pt;}
.y4b_c00242{bottom:108.906667pt;}
.y21_c00242{bottom:112.506667pt;}
.y4a_c00242{bottom:125.306667pt;}
.y20_c00242{bottom:128.640000pt;}
.y49_c00242{bottom:141.306667pt;}
.y1f_c00242{bottom:144.906667pt;}
.y48_c00242{bottom:156.906667pt;}
.y1e_c00242{bottom:160.773333pt;}
.y47_c00242{bottom:172.506667pt;}
.y1d_c00242{bottom:177.040000pt;}
.y46_c00242{bottom:189.040000pt;}
.y1c_c00242{bottom:192.906667pt;}
.y45_c00242{bottom:204.640000pt;}
.y1b_c00242{bottom:208.506667pt;}
.y44_c00242{bottom:221.306667pt;}
.y1a_c00242{bottom:224.373333pt;}
.y43_c00242{bottom:237.306667pt;}
.y19_c00242{bottom:240.240000pt;}
.y42_c00242{bottom:253.440000pt;}
.y18_c00242{bottom:256.506667pt;}
.y41_c00242{bottom:269.440000pt;}
.y17_c00242{bottom:271.840000pt;}
.y40_c00242{bottom:285.306667pt;}
.y16_c00242{bottom:287.973333pt;}
.y3f_c00242{bottom:301.440000pt;}
.y15_c00242{bottom:303.840000pt;}
.y3e_c00242{bottom:317.440000pt;}
.y14_c00242{bottom:320.106667pt;}
.y3d_c00242{bottom:333.706667pt;}
.y13_c00242{bottom:336.240000pt;}
.y3c_c00242{bottom:349.706667pt;}
.y12_c00242{bottom:352.106667pt;}
.y3b_c00242{bottom:365.706667pt;}
.y11_c00242{bottom:367.840000pt;}
.y3a_c00242{bottom:381.573333pt;}
.y10_c00242{bottom:383.706667pt;}
.y39_c00242{bottom:398.106667pt;}
.yf_c00242{bottom:399.573333pt;}
.y38_c00242{bottom:413.973333pt;}
.ye_c00242{bottom:415.440000pt;}
.y37_c00242{bottom:430.106667pt;}
.yd_c00242{bottom:431.306667pt;}
.y36_c00242{bottom:445.706667pt;}
.yc_c00242{bottom:446.640000pt;}
.y35_c00242{bottom:462.240000pt;}
.yb_c00242{bottom:462.906667pt;}
.y34_c00242{bottom:478.240000pt;}
.ya_c00242{bottom:479.440000pt;}
.y33_c00242{bottom:494.773333pt;}
.y9_c00242{bottom:494.906667pt;}
.y8_c00242{bottom:510.506667pt;}
.y32_c00242{bottom:510.906667pt;}
.y7_c00242{bottom:524.373333pt;}
.y31_c00242{bottom:527.040000pt;}
.y30_c00242{bottom:543.306667pt;}
.y6_c00242{bottom:558.640000pt;}
.y2f_c00242{bottom:560.106667pt;}
.y5_c00242{bottom:574.773333pt;}
.y2e_c00242{bottom:576.640000pt;}
.y4_c00242{bottom:590.640000pt;}
.y2d_c00242{bottom:592.106667pt;}
.y3_c00242{bottom:606.640000pt;}
.y2c_c00242{bottom:607.840000pt;}
.y2_c00242{bottom:622.506667pt;}
.y2b_c00242{bottom:623.706667pt;}
.y1_c00242{bottom:639.306667pt;}
.y2a_c00242{bottom:640.773333pt;}
.y29_c00242{bottom:656.640000pt;}
.y28_c00242{bottom:671.973333pt;}
.y27_c00242{bottom:688.506667pt;}
.y26_c00242{bottom:704.373333pt;}
.h5_c00242{height:11.733399pt;}
.h6_c00242{height:38.937500pt;}
.h2_c00242{height:55.893333pt;}
.h4_c00242{height:56.906667pt;}
.h3_c00242{height:68.160000pt;}
.h1_c00242{height:740.000000pt;}
.h0_c00242{height:740.133333pt;}
.w2_c00242{width:93.222667pt;}
.w1_c00242{width:518.666667pt;}
.w0_c00242{width:518.866667pt;}
.x0_c00242{left:0.000000pt;}
.xa_c00242{left:21.333333pt;}
.xc_c00242{left:70.533333pt;}
.xb_c00242{left:72.000000pt;}
.x7_c00242{left:73.733333pt;}
.x9_c00242{left:74.800000pt;}
.x2_c00242{left:75.866667pt;}
.x1_c00242{left:77.066667pt;}
.x3_c00242{left:85.600000pt;}
.x4_c00242{left:98.400000pt;}
.x8_c00242{left:113.733333pt;}
.x5_c00242{left:124.533333pt;}
.xf_c00242{left:139.733333pt;}
.x6_c00242{left:142.133333pt;}
.xd_c00242{left:202.000000pt;}
.x17_c00242{left:216.601563pt;}
.x15_c00242{left:262.533333pt;}
.x14_c00242{left:263.600000pt;}
.x13_c00242{left:264.933333pt;}
.x12_c00242{left:266.000000pt;}
.x11_c00242{left:266.933333pt;}
.x10_c00242{left:268.400000pt;}
.xe_c00242{left:270.800000pt;}
.x16_c00242{left:342.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_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_1bba1023931c2699dcf72c2b.woff2')format("woff");}.ff1_c00243{font-family:ff1_c00243;line-height:1.575000;font-style:normal;font-weight:normal;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_29838164798fe15455b91cda.woff2')format("woff");}.ff2_c00243{font-family:ff2_c00243;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00243;src:url('chunks/assets/font_0d577a41883d92f6b4bd549d.woff2')format("woff");}.ff3_c00243{font-family:ff3_c00243;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00243;src:url('chunks/assets/font_e4fc6e6b3dc6066184bd5a67.woff2')format("woff");}.ff4_c00243{font-family:ff4_c00243;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00243;src:url('chunks/assets/font_0ce391de997f24f9f9dd37f4.woff2')format("woff");}.ff5_c00243{font-family:ff5_c00243;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00243;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff6_c00243{font-family:ff6_c00243;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00243{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00243{vertical-align:0.000000px;}
.v1_c00243{vertical-align:7.200000px;}
.ls4_c00243{letter-spacing:0.000000px;}
.ls3_c00243{letter-spacing:0.405000px;}
.ls2_c00243{letter-spacing:2.100000px;}
.ls5_c00243{letter-spacing:3.000000px;}
.ls1_c00243{letter-spacing:13.200000px;}
.ls0_c00243{letter-spacing:15.000000px;}
.sc__c00243{text-shadow:none;}
.sc0_c00243{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00243{-webkit-text-stroke:0px transparent;}
.sc0_c00243{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00243{word-spacing:-18.060000px;}
.ws2_c00243{word-spacing:-14.160000px;}
.ws3_c00243{word-spacing:0.000000px;}
.ws0_c00243{word-spacing:296.769000px;}
._6_c00243{margin-left:-14.058000px;}
._20_c00243{margin-left:-12.621000px;}
._21_c00243{margin-left:-10.593000px;}
._1e_c00243{margin-left:-8.721000px;}
._12_c00243{margin-left:-6.900000px;}
._8_c00243{margin-left:-4.848000px;}
._c_c00243{margin-left:-3.720000px;}
._4_c00243{margin-left:-2.400000px;}
._1_c00243{margin-left:-1.065000px;}
._5_c00243{width:1.746000px;}
._0_c00243{width:2.754000px;}
._3_c00243{width:4.209000px;}
._d_c00243{width:5.229000px;}
._7_c00243{width:6.288000px;}
._10_c00243{width:7.398000px;}
._a_c00243{width:8.508000px;}
._e_c00243{width:9.525000px;}
._b_c00243{width:10.971000px;}
._15_c00243{width:12.162000px;}
._17_c00243{width:13.254000px;}
._23_c00243{width:14.304000px;}
._9_c00243{width:15.642000px;}
._24_c00243{width:16.662000px;}
._2_c00243{width:18.129000px;}
._f_c00243{width:19.677000px;}
._1c_c00243{width:21.498000px;}
._11_c00243{width:23.586000px;}
._18_c00243{width:24.882000px;}
._1d_c00243{width:26.478000px;}
._1f_c00243{width:28.116000px;}
._16_c00243{width:29.139000px;}
._1b_c00243{width:30.516000px;}
._19_c00243{width:32.442000px;}
._25_c00243{width:36.270000px;}
._14_c00243{width:67.971000px;}
._22_c00243{width:159.327000px;}
._1a_c00243{width:171.588000px;}
._13_c00243{width:563.328000px;}
.fc2_c00243{color:transparent;}
.fc1_c00243{color:rgb(128,128,128);}
.fc0_c00243{color:rgb(0,0,0);}
.fs3_c00243{font-size:45.000000px;}
.fs4_c00243{font-size:48.000000px;}
.fs0_c00243{font-size:51.000000px;}
.fs2_c00243{font-size:60.000000px;}
.fs1_c00243{font-size:69.000000px;}
.y0_c00243{bottom:0.000000px;}
.y56_c00243{bottom:3.105000px;}
.y55_c00243{bottom:7.228369px;}
.y54_c00243{bottom:24.570000px;}
.y53_c00243{bottom:42.420000px;}
.y2a_c00243{bottom:44.820000px;}
.y52_c00243{bottom:60.720000px;}
.y29_c00243{bottom:64.020000px;}
.y51_c00243{bottom:78.870000px;}
.y28_c00243{bottom:82.020000px;}
.y50_c00243{bottom:96.570000px;}
.y27_c00243{bottom:99.570000px;}
.y4f_c00243{bottom:114.420000px;}
.y26_c00243{bottom:117.420000px;}
.y4e_c00243{bottom:132.870000px;}
.y25_c00243{bottom:135.270000px;}
.y4d_c00243{bottom:150.570000px;}
.y24_c00243{bottom:154.470000px;}
.y4c_c00243{bottom:168.720000px;}
.y23_c00243{bottom:172.470000px;}
.y4b_c00243{bottom:186.870000px;}
.y22_c00243{bottom:190.920000px;}
.y4a_c00243{bottom:204.870000px;}
.y21_c00243{bottom:209.220000px;}
.y49_c00243{bottom:222.720000px;}
.y20_c00243{bottom:227.370000px;}
.y48_c00243{bottom:241.320000px;}
.y1f_c00243{bottom:244.920000px;}
.y47_c00243{bottom:259.170000px;}
.y1e_c00243{bottom:263.220000px;}
.y46_c00243{bottom:277.770000px;}
.y1d_c00243{bottom:281.370000px;}
.y45_c00243{bottom:295.620000px;}
.y1c_c00243{bottom:299.070000px;}
.y44_c00243{bottom:313.920000px;}
.y1b_c00243{bottom:317.520000px;}
.y43_c00243{bottom:332.370000px;}
.y1a_c00243{bottom:336.120000px;}
.y42_c00243{bottom:350.670000px;}
.y19_c00243{bottom:353.370000px;}
.y41_c00243{bottom:368.520000px;}
.y18_c00243{bottom:371.520000px;}
.y40_c00243{bottom:387.120000px;}
.y17_c00243{bottom:389.070000px;}
.y3f_c00243{bottom:404.370000px;}
.y16_c00243{bottom:407.670000px;}
.y3e_c00243{bottom:423.270000px;}
.y15_c00243{bottom:425.220000px;}
.y3d_c00243{bottom:441.420000px;}
.y14_c00243{bottom:443.520000px;}
.y3c_c00243{bottom:459.270000px;}
.y13_c00243{bottom:461.370000px;}
.y3b_c00243{bottom:477.120000px;}
.y12_c00243{bottom:479.520000px;}
.y3a_c00243{bottom:495.720000px;}
.y11_c00243{bottom:498.120000px;}
.y39_c00243{bottom:513.720000px;}
.y10_c00243{bottom:517.620000px;}
.y38_c00243{bottom:531.570000px;}
.yf_c00243{bottom:533.220000px;}
.y37_c00243{bottom:550.170000px;}
.ye_c00243{bottom:551.370000px;}
.y36_c00243{bottom:568.020000px;}
.yd_c00243{bottom:569.670000px;}
.y35_c00243{bottom:585.870000px;}
.yc_c00243{bottom:587.220000px;}
.y34_c00243{bottom:603.720000px;}
.yb_c00243{bottom:606.420000px;}
.y33_c00243{bottom:622.620000px;}
.ya_c00243{bottom:623.670000px;}
.y32_c00243{bottom:640.920000px;}
.y9_c00243{bottom:641.970000px;}
.y31_c00243{bottom:659.370000px;}
.y8_c00243{bottom:659.970000px;}
.y30_c00243{bottom:677.070000px;}
.y7_c00243{bottom:677.970000px;}
.y2f_c00243{bottom:695.820000px;}
.y6_c00243{bottom:695.970000px;}
.y5_c00243{bottom:713.820000px;}
.y2e_c00243{bottom:714.420000px;}
.y2d_c00243{bottom:732.270000px;}
.y4_c00243{bottom:732.420000px;}
.y2c_c00243{bottom:750.270000px;}
.y3_c00243{bottom:750.570000px;}
.y2b_c00243{bottom:767.820000px;}
.y2_c00243{bottom:768.720000px;}
.y1_c00243{bottom:787.320000px;}
.h5_c00243{height:13.200073px;}
.h6_c00243{height:43.804688px;}
.h3_c00243{height:62.880000px;}
.h4_c00243{height:64.020000px;}
.h2_c00243{height:80.823000px;}
.h0_c00243{height:835.350000px;}
.h1_c00243{height:835.500000px;}
.w2_c00243{width:104.875500px;}
.w1_c00243{width:554.250000px;}
.w0_c00243{width:554.550000px;}
.x0_c00243{left:0.000000px;}
.x6_c00243{left:12.450000px;}
.x7_c00243{left:14.400000px;}
.x5_c00243{left:73.950000px;}
.x4_c00243{left:75.000000px;}
.x3_c00243{left:76.200000px;}
.x1_c00243{left:77.250000px;}
.x8_c00243{left:78.300000px;}
.x2_c00243{left:102.900000px;}
.xd_c00243{left:229.089249px;}
.xb_c00243{left:287.250000px;}
.xa_c00243{left:288.300000px;}
.x9_c00243{left:289.500000px;}
.xc_c00243{left:457.650000px;}
@media print{
.v0_c00243{vertical-align:0.000000pt;}
.v1_c00243{vertical-align:6.400000pt;}
.ls4_c00243{letter-spacing:0.000000pt;}
.ls3_c00243{letter-spacing:0.360000pt;}
.ls2_c00243{letter-spacing:1.866667pt;}
.ls5_c00243{letter-spacing:2.666667pt;}
.ls1_c00243{letter-spacing:11.733333pt;}
.ls0_c00243{letter-spacing:13.333333pt;}
.ws1_c00243{word-spacing:-16.053333pt;}
.ws2_c00243{word-spacing:-12.586667pt;}
.ws3_c00243{word-spacing:0.000000pt;}
.ws0_c00243{word-spacing:263.794667pt;}
._6_c00243{margin-left:-12.496000pt;}
._20_c00243{margin-left:-11.218667pt;}
._21_c00243{margin-left:-9.416000pt;}
._1e_c00243{margin-left:-7.752000pt;}
._12_c00243{margin-left:-6.133333pt;}
._8_c00243{margin-left:-4.309333pt;}
._c_c00243{margin-left:-3.306667pt;}
._4_c00243{margin-left:-2.133333pt;}
._1_c00243{margin-left:-0.946667pt;}
._5_c00243{width:1.552000pt;}
._0_c00243{width:2.448000pt;}
._3_c00243{width:3.741333pt;}
._d_c00243{width:4.648000pt;}
._7_c00243{width:5.589333pt;}
._10_c00243{width:6.576000pt;}
._a_c00243{width:7.562667pt;}
._e_c00243{width:8.466667pt;}
._b_c00243{width:9.752000pt;}
._15_c00243{width:10.810667pt;}
._17_c00243{width:11.781333pt;}
._23_c00243{width:12.714667pt;}
._9_c00243{width:13.904000pt;}
._24_c00243{width:14.810667pt;}
._2_c00243{width:16.114667pt;}
._f_c00243{width:17.490667pt;}
._1c_c00243{width:19.109333pt;}
._11_c00243{width:20.965333pt;}
._18_c00243{width:22.117333pt;}
._1d_c00243{width:23.536000pt;}
._1f_c00243{width:24.992000pt;}
._16_c00243{width:25.901333pt;}
._1b_c00243{width:27.125333pt;}
._19_c00243{width:28.837333pt;}
._25_c00243{width:32.240000pt;}
._14_c00243{width:60.418667pt;}
._22_c00243{width:141.624000pt;}
._1a_c00243{width:152.522667pt;}
._13_c00243{width:500.736000pt;}
.fs3_c00243{font-size:40.000000pt;}
.fs4_c00243{font-size:42.666667pt;}
.fs0_c00243{font-size:45.333333pt;}
.fs2_c00243{font-size:53.333333pt;}
.fs1_c00243{font-size:61.333333pt;}
.y0_c00243{bottom:0.000000pt;}
.y56_c00243{bottom:2.760000pt;}
.y55_c00243{bottom:6.425217pt;}
.y54_c00243{bottom:21.840000pt;}
.y53_c00243{bottom:37.706667pt;}
.y2a_c00243{bottom:39.840000pt;}
.y52_c00243{bottom:53.973333pt;}
.y29_c00243{bottom:56.906667pt;}
.y51_c00243{bottom:70.106667pt;}
.y28_c00243{bottom:72.906667pt;}
.y50_c00243{bottom:85.840000pt;}
.y27_c00243{bottom:88.506667pt;}
.y4f_c00243{bottom:101.706667pt;}
.y26_c00243{bottom:104.373333pt;}
.y4e_c00243{bottom:118.106667pt;}
.y25_c00243{bottom:120.240000pt;}
.y4d_c00243{bottom:133.840000pt;}
.y24_c00243{bottom:137.306667pt;}
.y4c_c00243{bottom:149.973333pt;}
.y23_c00243{bottom:153.306667pt;}
.y4b_c00243{bottom:166.106667pt;}
.y22_c00243{bottom:169.706667pt;}
.y4a_c00243{bottom:182.106667pt;}
.y21_c00243{bottom:185.973333pt;}
.y49_c00243{bottom:197.973333pt;}
.y20_c00243{bottom:202.106667pt;}
.y48_c00243{bottom:214.506667pt;}
.y1f_c00243{bottom:217.706667pt;}
.y47_c00243{bottom:230.373333pt;}
.y1e_c00243{bottom:233.973333pt;}
.y46_c00243{bottom:246.906667pt;}
.y1d_c00243{bottom:250.106667pt;}
.y45_c00243{bottom:262.773333pt;}
.y1c_c00243{bottom:265.840000pt;}
.y44_c00243{bottom:279.040000pt;}
.y1b_c00243{bottom:282.240000pt;}
.y43_c00243{bottom:295.440000pt;}
.y1a_c00243{bottom:298.773333pt;}
.y42_c00243{bottom:311.706667pt;}
.y19_c00243{bottom:314.106667pt;}
.y41_c00243{bottom:327.573333pt;}
.y18_c00243{bottom:330.240000pt;}
.y40_c00243{bottom:344.106667pt;}
.y17_c00243{bottom:345.840000pt;}
.y3f_c00243{bottom:359.440000pt;}
.y16_c00243{bottom:362.373333pt;}
.y3e_c00243{bottom:376.240000pt;}
.y15_c00243{bottom:377.973333pt;}
.y3d_c00243{bottom:392.373333pt;}
.y14_c00243{bottom:394.240000pt;}
.y3c_c00243{bottom:408.240000pt;}
.y13_c00243{bottom:410.106667pt;}
.y3b_c00243{bottom:424.106667pt;}
.y12_c00243{bottom:426.240000pt;}
.y3a_c00243{bottom:440.640000pt;}
.y11_c00243{bottom:442.773333pt;}
.y39_c00243{bottom:456.640000pt;}
.y10_c00243{bottom:460.106667pt;}
.y38_c00243{bottom:472.506667pt;}
.yf_c00243{bottom:473.973333pt;}
.y37_c00243{bottom:489.040000pt;}
.ye_c00243{bottom:490.106667pt;}
.y36_c00243{bottom:504.906667pt;}
.yd_c00243{bottom:506.373333pt;}
.y35_c00243{bottom:520.773333pt;}
.yc_c00243{bottom:521.973333pt;}
.y34_c00243{bottom:536.640000pt;}
.yb_c00243{bottom:539.040000pt;}
.y33_c00243{bottom:553.440000pt;}
.ya_c00243{bottom:554.373333pt;}
.y32_c00243{bottom:569.706667pt;}
.y9_c00243{bottom:570.640000pt;}
.y31_c00243{bottom:586.106667pt;}
.y8_c00243{bottom:586.640000pt;}
.y30_c00243{bottom:601.840000pt;}
.y7_c00243{bottom:602.640000pt;}
.y2f_c00243{bottom:618.506667pt;}
.y6_c00243{bottom:618.640000pt;}
.y5_c00243{bottom:634.506667pt;}
.y2e_c00243{bottom:635.040000pt;}
.y2d_c00243{bottom:650.906667pt;}
.y4_c00243{bottom:651.040000pt;}
.y2c_c00243{bottom:666.906667pt;}
.y3_c00243{bottom:667.173333pt;}
.y2b_c00243{bottom:682.506667pt;}
.y2_c00243{bottom:683.306667pt;}
.y1_c00243{bottom:699.840000pt;}
.h5_c00243{height:11.733399pt;}
.h6_c00243{height:38.937500pt;}
.h3_c00243{height:55.893333pt;}
.h4_c00243{height:56.906667pt;}
.h2_c00243{height:71.842667pt;}
.h0_c00243{height:742.533333pt;}
.h1_c00243{height:742.666667pt;}
.w2_c00243{width:93.222667pt;}
.w1_c00243{width:492.666667pt;}
.w0_c00243{width:492.933333pt;}
.x0_c00243{left:0.000000pt;}
.x6_c00243{left:11.066667pt;}
.x7_c00243{left:12.800000pt;}
.x5_c00243{left:65.733333pt;}
.x4_c00243{left:66.666667pt;}
.x3_c00243{left:67.733333pt;}
.x1_c00243{left:68.666667pt;}
.x8_c00243{left:69.600000pt;}
.x2_c00243{left:91.466667pt;}
.xd_c00243{left:203.634888pt;}
.xb_c00243{left:255.333333pt;}
.xa_c00243{left:256.266667pt;}
.x9_c00243{left:257.333333pt;}
.xc_c00243{left:406.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f5660107ca0aa27a0520622f.woff2')format("woff");}.ff1_c00244{font-family:ff1_c00244;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00244;src:url('chunks/assets/font_9773c964f63081108af1485b.woff2')format("woff");}.ff2_c00244{font-family:ff2_c00244;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00244;src:url('chunks/assets/font_ab920122de163949304a57a7.woff2')format("woff");}.ff3_c00244{font-family:ff3_c00244;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00244;src:url('chunks/assets/font_a6a0a7559f4f2ba323ccae2f.woff2')format("woff");}.ff4_c00244{font-family:ff4_c00244;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00244;src:url('chunks/assets/font_c63e87b9219599bd1cc96efa.woff2')format("woff");}.ff5_c00244{font-family:ff5_c00244;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00244;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff6_c00244{font-family:ff6_c00244;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00244{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00244{vertical-align:0.000000px;}
.v1_c00244{vertical-align:12.600000px;}
.ls6_c00244{letter-spacing:0.000000px;}
.ls4_c00244{letter-spacing:1.005000px;}
.ls1_c00244{letter-spacing:1.605000px;}
.ls2_c00244{letter-spacing:3.000000px;}
.ls5_c00244{letter-spacing:6.000000px;}
.ls7_c00244{letter-spacing:12.000000px;}
.ls3_c00244{letter-spacing:28.740000px;}
.ls0_c00244{letter-spacing:125.940000px;}
.sc__c00244{text-shadow:none;}
.sc0_c00244{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00244{-webkit-text-stroke:0px transparent;}
.sc0_c00244{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00244{word-spacing:-35.295000px;}
.ws6_c00244{word-spacing:-29.295000px;}
.ws4_c00244{word-spacing:-26.427000px;}
.ws0_c00244{word-spacing:-18.060000px;}
.ws5_c00244{word-spacing:-14.427000px;}
.ws1_c00244{word-spacing:-14.160000px;}
.ws3_c00244{word-spacing:-0.480000px;}
.ws7_c00244{word-spacing:0.000000px;}
._28_c00244{margin-left:-27.216000px;}
._20_c00244{margin-left:-22.620000px;}
._13_c00244{margin-left:-20.175000px;}
._1c_c00244{margin-left:-16.137000px;}
._d_c00244{margin-left:-13.923000px;}
._19_c00244{margin-left:-12.696000px;}
._17_c00244{margin-left:-10.665000px;}
._11_c00244{margin-left:-8.964000px;}
._12_c00244{margin-left:-7.560000px;}
._b_c00244{margin-left:-6.156000px;}
._6_c00244{margin-left:-4.380000px;}
._5_c00244{margin-left:-3.240000px;}
._7_c00244{margin-left:-1.980000px;}
._c_c00244{width:1.560000px;}
._f_c00244{width:2.760000px;}
._9_c00244{width:3.861000px;}
._a_c00244{width:4.959000px;}
._16_c00244{width:6.336000px;}
._1a_c00244{width:8.340000px;}
._4_c00244{width:9.600000px;}
._1_c00244{width:10.740000px;}
._18_c00244{width:12.540000px;}
._0_c00244{width:13.740000px;}
._15_c00244{width:15.360000px;}
._10_c00244{width:16.860000px;}
._1d_c00244{width:17.880000px;}
._3_c00244{width:19.560000px;}
._25_c00244{width:20.598000px;}
._29_c00244{width:21.819000px;}
._1e_c00244{width:23.007000px;}
._14_c00244{width:24.441000px;}
._26_c00244{width:25.980000px;}
._e_c00244{width:27.120000px;}
._21_c00244{width:32.100000px;}
._22_c00244{width:37.020000px;}
._1f_c00244{width:38.160000px;}
._2_c00244{width:44.340000px;}
._23_c00244{width:47.847000px;}
._1b_c00244{width:53.898000px;}
._24_c00244{width:72.258000px;}
._27_c00244{width:135.621000px;}
._8_c00244{width:185.040000px;}
.fc2_c00244{color:transparent;}
.fc1_c00244{color:rgb(128,128,128);}
.fc0_c00244{color:rgb(0,0,0);}
.fs2_c00244{font-size:45.000000px;}
.fs3_c00244{font-size:48.000000px;}
.fs0_c00244{font-size:60.000000px;}
.fs1_c00244{font-size:63.000000px;}
.y0_c00244{bottom:0.000000px;}
.y53_c00244{bottom:3.105000px;}
.y52_c00244{bottom:7.228371px;}
.y51_c00244{bottom:21.615000px;}
.y50_c00244{bottom:41.565000px;}
.y29_c00244{bottom:46.965000px;}
.y4f_c00244{bottom:59.865000px;}
.y28_c00244{bottom:65.865000px;}
.y4e_c00244{bottom:78.765000px;}
.y27_c00244{bottom:84.165000px;}
.y4d_c00244{bottom:96.165000px;}
.y26_c00244{bottom:101.715000px;}
.y4c_c00244{bottom:114.165000px;}
.y25_c00244{bottom:120.465000px;}
.y4b_c00244{bottom:133.065000px;}
.y24_c00244{bottom:138.165000px;}
.y4a_c00244{bottom:151.215000px;}
.y23_c00244{bottom:157.365000px;}
.y49_c00244{bottom:167.715000px;}
.y22_c00244{bottom:176.865000px;}
.y48_c00244{bottom:187.365000px;}
.y21_c00244{bottom:194.115000px;}
.y47_c00244{bottom:205.215000px;}
.y20_c00244{bottom:212.415000px;}
.y46_c00244{bottom:223.065000px;}
.y1f_c00244{bottom:231.165000px;}
.y45_c00244{bottom:241.065000px;}
.y1e_c00244{bottom:248.415000px;}
.y44_c00244{bottom:259.215000px;}
.y1d_c00244{bottom:265.665000px;}
.y43_c00244{bottom:277.065000px;}
.y1c_c00244{bottom:285.165000px;}
.y42_c00244{bottom:295.065000px;}
.y1b_c00244{bottom:302.715000px;}
.y41_c00244{bottom:313.515000px;}
.y1a_c00244{bottom:318.315000px;}
.y40_c00244{bottom:333.165000px;}
.y19_c00244{bottom:339.315000px;}
.y3f_c00244{bottom:350.715000px;}
.y18_c00244{bottom:357.465000px;}
.y3e_c00244{bottom:370.665000px;}
.y17_c00244{bottom:376.965000px;}
.y3d_c00244{bottom:388.515000px;}
.y16_c00244{bottom:394.665000px;}
.y3c_c00244{bottom:408.165000px;}
.y15_c00244{bottom:411.165000px;}
.y3b_c00244{bottom:426.615000px;}
.y14_c00244{bottom:429.015000px;}
.y3a_c00244{bottom:445.515000px;}
.y13_c00244{bottom:446.865000px;}
.y39_c00244{bottom:463.365000px;}
.y12_c00244{bottom:464.115000px;}
.y38_c00244{bottom:481.665000px;}
.y11_c00244{bottom:481.965000px;}
.y37_c00244{bottom:498.915000px;}
.y10_c00244{bottom:499.665000px;}
.yf_c00244{bottom:517.515000px;}
.ye_c00244{bottom:535.365000px;}
.yd_c00244{bottom:552.915000px;}
.y36_c00244{bottom:553.515000px;}
.yc_c00244{bottom:567.315000px;}
.y35_c00244{bottom:571.365000px;}
.yb_c00244{bottom:588.615000px;}
.y34_c00244{bottom:589.365000px;}
.ya_c00244{bottom:606.915000px;}
.y33_c00244{bottom:607.815000px;}
.y9_c00244{bottom:624.165000px;}
.y32_c00244{bottom:624.465000px;}
.y8_c00244{bottom:642.315000px;}
.y31_c00244{bottom:643.065000px;}
.y7_c00244{bottom:659.565000px;}
.y30_c00244{bottom:660.915000px;}
.y2f_c00244{bottom:679.065000px;}
.y6_c00244{bottom:696.015000px;}
.y2e_c00244{bottom:696.915000px;}
.y5_c00244{bottom:713.565000px;}
.y2d_c00244{bottom:714.615000px;}
.y4_c00244{bottom:730.665000px;}
.y2c_c00244{bottom:733.065000px;}
.y3_c00244{bottom:750.015000px;}
.y2b_c00244{bottom:751.965000px;}
.y2_c00244{bottom:767.265000px;}
.y2a_c00244{bottom:769.215000px;}
.y1_c00244{bottom:787.815000px;}
.h6_c00244{height:13.200074px;}
.h7_c00244{height:43.804688px;}
.h3_c00244{height:61.831055px;}
.h2_c00244{height:62.880000px;}
.h5_c00244{height:66.024000px;}
.h4_c00244{height:75.480000px;}
.h0_c00244{height:825.675000px;}
.h1_c00244{height:825.750000px;}
.w2_c00244{width:104.875500px;}
.w0_c00244{width:578.850000px;}
.w1_c00244{width:579.000000px;}
.x0_c00244{left:0.000000px;}
.xd_c00244{left:24.000000px;}
.x3_c00244{left:79.950000px;}
.x2_c00244{left:81.000000px;}
.x5_c00244{left:82.950000px;}
.xa_c00244{left:84.750000px;}
.xb_c00244{left:86.100000px;}
.xc_c00244{left:88.050000px;}
.x6_c00244{left:96.900000px;}
.x7_c00244{left:117.900000px;}
.x9_c00244{left:124.650000px;}
.x4_c00244{left:152.550000px;}
.x8_c00244{left:164.400000px;}
.x1_c00244{left:202.200000px;}
.x16_c00244{left:241.239258px;}
.x10_c00244{left:290.700000px;}
.xe_c00244{left:292.350000px;}
.xf_c00244{left:294.600000px;}
.x12_c00244{left:295.650000px;}
.x13_c00244{left:297.000000px;}
.x11_c00244{left:314.850000px;}
.x14_c00244{left:375.300000px;}
.x15_c00244{left:469.800000px;}
@media print{
.v0_c00244{vertical-align:0.000000pt;}
.v1_c00244{vertical-align:11.200000pt;}
.ls6_c00244{letter-spacing:0.000000pt;}
.ls4_c00244{letter-spacing:0.893333pt;}
.ls1_c00244{letter-spacing:1.426667pt;}
.ls2_c00244{letter-spacing:2.666667pt;}
.ls5_c00244{letter-spacing:5.333333pt;}
.ls7_c00244{letter-spacing:10.666667pt;}
.ls3_c00244{letter-spacing:25.546667pt;}
.ls0_c00244{letter-spacing:111.946667pt;}
.ws2_c00244{word-spacing:-31.373333pt;}
.ws6_c00244{word-spacing:-26.040000pt;}
.ws4_c00244{word-spacing:-23.490667pt;}
.ws0_c00244{word-spacing:-16.053333pt;}
.ws5_c00244{word-spacing:-12.824000pt;}
.ws1_c00244{word-spacing:-12.586667pt;}
.ws3_c00244{word-spacing:-0.426667pt;}
.ws7_c00244{word-spacing:0.000000pt;}
._28_c00244{margin-left:-24.192000pt;}
._20_c00244{margin-left:-20.106667pt;}
._13_c00244{margin-left:-17.933333pt;}
._1c_c00244{margin-left:-14.344000pt;}
._d_c00244{margin-left:-12.376000pt;}
._19_c00244{margin-left:-11.285333pt;}
._17_c00244{margin-left:-9.480000pt;}
._11_c00244{margin-left:-7.968000pt;}
._12_c00244{margin-left:-6.720000pt;}
._b_c00244{margin-left:-5.472000pt;}
._6_c00244{margin-left:-3.893333pt;}
._5_c00244{margin-left:-2.880000pt;}
._7_c00244{margin-left:-1.760000pt;}
._c_c00244{width:1.386667pt;}
._f_c00244{width:2.453333pt;}
._9_c00244{width:3.432000pt;}
._a_c00244{width:4.408000pt;}
._16_c00244{width:5.632000pt;}
._1a_c00244{width:7.413333pt;}
._4_c00244{width:8.533333pt;}
._1_c00244{width:9.546667pt;}
._18_c00244{width:11.146667pt;}
._0_c00244{width:12.213333pt;}
._15_c00244{width:13.653333pt;}
._10_c00244{width:14.986667pt;}
._1d_c00244{width:15.893333pt;}
._3_c00244{width:17.386667pt;}
._25_c00244{width:18.309333pt;}
._29_c00244{width:19.394667pt;}
._1e_c00244{width:20.450667pt;}
._14_c00244{width:21.725333pt;}
._26_c00244{width:23.093333pt;}
._e_c00244{width:24.106667pt;}
._21_c00244{width:28.533333pt;}
._22_c00244{width:32.906667pt;}
._1f_c00244{width:33.920000pt;}
._2_c00244{width:39.413333pt;}
._23_c00244{width:42.530667pt;}
._1b_c00244{width:47.909333pt;}
._24_c00244{width:64.229333pt;}
._27_c00244{width:120.552000pt;}
._8_c00244{width:164.480000pt;}
.fs2_c00244{font-size:40.000000pt;}
.fs3_c00244{font-size:42.666667pt;}
.fs0_c00244{font-size:53.333333pt;}
.fs1_c00244{font-size:56.000000pt;}
.y0_c00244{bottom:0.000000pt;}
.y53_c00244{bottom:2.760000pt;}
.y52_c00244{bottom:6.425219pt;}
.y51_c00244{bottom:19.213333pt;}
.y50_c00244{bottom:36.946667pt;}
.y29_c00244{bottom:41.746667pt;}
.y4f_c00244{bottom:53.213333pt;}
.y28_c00244{bottom:58.546667pt;}
.y4e_c00244{bottom:70.013333pt;}
.y27_c00244{bottom:74.813333pt;}
.y4d_c00244{bottom:85.480000pt;}
.y26_c00244{bottom:90.413333pt;}
.y4c_c00244{bottom:101.480000pt;}
.y25_c00244{bottom:107.080000pt;}
.y4b_c00244{bottom:118.280000pt;}
.y24_c00244{bottom:122.813333pt;}
.y4a_c00244{bottom:134.413333pt;}
.y23_c00244{bottom:139.880000pt;}
.y49_c00244{bottom:149.080000pt;}
.y22_c00244{bottom:157.213333pt;}
.y48_c00244{bottom:166.546667pt;}
.y21_c00244{bottom:172.546667pt;}
.y47_c00244{bottom:182.413333pt;}
.y20_c00244{bottom:188.813333pt;}
.y46_c00244{bottom:198.280000pt;}
.y1f_c00244{bottom:205.480000pt;}
.y45_c00244{bottom:214.280000pt;}
.y1e_c00244{bottom:220.813333pt;}
.y44_c00244{bottom:230.413333pt;}
.y1d_c00244{bottom:236.146667pt;}
.y43_c00244{bottom:246.280000pt;}
.y1c_c00244{bottom:253.480000pt;}
.y42_c00244{bottom:262.280000pt;}
.y1b_c00244{bottom:269.080000pt;}
.y41_c00244{bottom:278.680000pt;}
.y1a_c00244{bottom:282.946667pt;}
.y40_c00244{bottom:296.146667pt;}
.y19_c00244{bottom:301.613333pt;}
.y3f_c00244{bottom:311.746667pt;}
.y18_c00244{bottom:317.746667pt;}
.y3e_c00244{bottom:329.480000pt;}
.y17_c00244{bottom:335.080000pt;}
.y3d_c00244{bottom:345.346667pt;}
.y16_c00244{bottom:350.813333pt;}
.y3c_c00244{bottom:362.813333pt;}
.y15_c00244{bottom:365.480000pt;}
.y3b_c00244{bottom:379.213333pt;}
.y14_c00244{bottom:381.346667pt;}
.y3a_c00244{bottom:396.013333pt;}
.y13_c00244{bottom:397.213333pt;}
.y39_c00244{bottom:411.880000pt;}
.y12_c00244{bottom:412.546667pt;}
.y38_c00244{bottom:428.146667pt;}
.y11_c00244{bottom:428.413333pt;}
.y37_c00244{bottom:443.480000pt;}
.y10_c00244{bottom:444.146667pt;}
.yf_c00244{bottom:460.013333pt;}
.ye_c00244{bottom:475.880000pt;}
.yd_c00244{bottom:491.480000pt;}
.y36_c00244{bottom:492.013333pt;}
.yc_c00244{bottom:504.280000pt;}
.y35_c00244{bottom:507.880000pt;}
.yb_c00244{bottom:523.213333pt;}
.y34_c00244{bottom:523.880000pt;}
.ya_c00244{bottom:539.480000pt;}
.y33_c00244{bottom:540.280000pt;}
.y9_c00244{bottom:554.813333pt;}
.y32_c00244{bottom:555.080000pt;}
.y8_c00244{bottom:570.946667pt;}
.y31_c00244{bottom:571.613333pt;}
.y7_c00244{bottom:586.280000pt;}
.y30_c00244{bottom:587.480000pt;}
.y2f_c00244{bottom:603.613333pt;}
.y6_c00244{bottom:618.680000pt;}
.y2e_c00244{bottom:619.480000pt;}
.y5_c00244{bottom:634.280000pt;}
.y2d_c00244{bottom:635.213333pt;}
.y4_c00244{bottom:649.480000pt;}
.y2c_c00244{bottom:651.613333pt;}
.y3_c00244{bottom:666.680000pt;}
.y2b_c00244{bottom:668.413333pt;}
.y2_c00244{bottom:682.013333pt;}
.y2a_c00244{bottom:683.746667pt;}
.y1_c00244{bottom:700.280000pt;}
.h6_c00244{height:11.733399pt;}
.h7_c00244{height:38.937500pt;}
.h3_c00244{height:54.960938pt;}
.h2_c00244{height:55.893333pt;}
.h5_c00244{height:58.688000pt;}
.h4_c00244{height:67.093333pt;}
.h0_c00244{height:733.933333pt;}
.h1_c00244{height:734.000000pt;}
.w2_c00244{width:93.222667pt;}
.w0_c00244{width:514.533333pt;}
.w1_c00244{width:514.666667pt;}
.x0_c00244{left:0.000000pt;}
.xd_c00244{left:21.333333pt;}
.x3_c00244{left:71.066667pt;}
.x2_c00244{left:72.000000pt;}
.x5_c00244{left:73.733333pt;}
.xa_c00244{left:75.333333pt;}
.xb_c00244{left:76.533333pt;}
.xc_c00244{left:78.266667pt;}
.x6_c00244{left:86.133333pt;}
.x7_c00244{left:104.800000pt;}
.x9_c00244{left:110.800000pt;}
.x4_c00244{left:135.600000pt;}
.x8_c00244{left:146.133333pt;}
.x1_c00244{left:179.733333pt;}
.x16_c00244{left:214.434896pt;}
.x10_c00244{left:258.400000pt;}
.xe_c00244{left:259.866667pt;}
.xf_c00244{left:261.866667pt;}
.x12_c00244{left:262.800000pt;}
.x13_c00244{left:264.000000pt;}
.x11_c00244{left:279.866667pt;}
.x14_c00244{left:333.600000pt;}
.x15_c00244{left:417.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e6228d9a1605a216b4e1d79a.woff2')format("woff");}.ff1_c00245{font-family:ff1_c00245;line-height:1.437000;font-style:normal;font-weight:normal;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_e61df2d31f04d5ca42d5332f.woff2')format("woff");}.ff2_c00245{font-family:ff2_c00245;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00245;src:url('chunks/assets/font_48e8d6fd2708b6432321c560.woff2')format("woff");}.ff3_c00245{font-family:ff3_c00245;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00245;src:url('chunks/assets/font_b008bbf6c91da62e5ea652b5.woff2')format("woff");}.ff4_c00245{font-family:ff4_c00245;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00245;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff5_c00245{font-family:ff5_c00245;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00245{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00245{vertical-align:0.000000px;}
.ls5_c00245{letter-spacing:0.000000px;}
.ls0_c00245{letter-spacing:3.000000px;}
.ls4_c00245{letter-spacing:3.600000px;}
.ls6_c00245{letter-spacing:9.000000px;}
.ls2_c00245{letter-spacing:14.493000px;}
.ls3_c00245{letter-spacing:14.700000px;}
.ls1_c00245{letter-spacing:48.693000px;}
.sc__c00245{text-shadow:none;}
.sc0_c00245{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00245{-webkit-text-stroke:0px transparent;}
.sc0_c00245{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00245{word-spacing:-23.160000px;}
.ws1_c00245{word-spacing:-18.060000px;}
.ws2_c00245{word-spacing:-14.160000px;}
.ws3_c00245{word-spacing:-13.452000px;}
.ws5_c00245{word-spacing:0.000000px;}
.ws0_c00245{word-spacing:2.040000px;}
._23_c00245{margin-left:-20.100000px;}
._1d_c00245{margin-left:-12.177000px;}
._1f_c00245{margin-left:-10.605000px;}
._27_c00245{margin-left:-9.600000px;}
._24_c00245{margin-left:-8.304000px;}
._1e_c00245{margin-left:-6.987000px;}
._1_c00245{margin-left:-5.820000px;}
._0_c00245{margin-left:-4.620000px;}
._a_c00245{margin-left:-3.600000px;}
._16_c00245{margin-left:-2.280000px;}
._6_c00245{margin-left:-1.140000px;}
._3_c00245{width:1.080000px;}
._4_c00245{width:2.280000px;}
._b_c00245{width:3.540000px;}
._d_c00245{width:5.400000px;}
._8_c00245{width:6.600000px;}
._15_c00245{width:7.680000px;}
._9_c00245{width:8.880000px;}
._18_c00245{width:10.140000px;}
._c_c00245{width:11.160000px;}
._19_c00245{width:12.600000px;}
._f_c00245{width:13.680000px;}
._11_c00245{width:15.360000px;}
._28_c00245{width:16.440000px;}
._25_c00245{width:17.820000px;}
._e_c00245{width:19.740000px;}
._17_c00245{width:21.360000px;}
._1a_c00245{width:22.740000px;}
._10_c00245{width:24.660000px;}
._13_c00245{width:26.100000px;}
._1c_c00245{width:28.182000px;}
._5_c00245{width:29.880000px;}
._20_c00245{width:30.960000px;}
._7_c00245{width:33.360000px;}
._14_c00245{width:35.940000px;}
._2_c00245{width:37.140000px;}
._1b_c00245{width:42.840000px;}
._26_c00245{width:43.860000px;}
._12_c00245{width:66.300000px;}
._21_c00245{width:94.203000px;}
._22_c00245{width:124.662000px;}
.fc2_c00245{color:transparent;}
.fc1_c00245{color:rgb(128,128,128);}
.fc0_c00245{color:rgb(0,0,0);}
.fs2_c00245{font-size:39.000000px;}
.fs3_c00245{font-size:48.000000px;}
.fs1_c00245{font-size:57.000000px;}
.fs0_c00245{font-size:60.000000px;}
.y0_c00245{bottom:0.000000px;}
.y55_c00245{bottom:3.105000px;}
.y54_c00245{bottom:7.228369px;}
.y53_c00245{bottom:32.970000px;}
.y29_c00245{bottom:48.870000px;}
.y52_c00245{bottom:49.920000px;}
.y28_c00245{bottom:66.870000px;}
.y51_c00245{bottom:68.520000px;}
.y27_c00245{bottom:85.020000px;}
.y50_c00245{bottom:86.070000px;}
.y26_c00245{bottom:102.870000px;}
.y4f_c00245{bottom:104.220000px;}
.y25_c00245{bottom:120.420000px;}
.y4e_c00245{bottom:122.070000px;}
.y24_c00245{bottom:139.320000px;}
.y4d_c00245{bottom:139.770000px;}
.y23_c00245{bottom:156.270000px;}
.y4c_c00245{bottom:158.220000px;}
.y22_c00245{bottom:174.420000px;}
.y4b_c00245{bottom:175.770000px;}
.y21_c00245{bottom:191.970000px;}
.y4a_c00245{bottom:193.620000px;}
.y20_c00245{bottom:209.970000px;}
.y49_c00245{bottom:212.220000px;}
.y1f_c00245{bottom:227.520000px;}
.y48_c00245{bottom:229.770000px;}
.y1e_c00245{bottom:245.070000px;}
.y47_c00245{bottom:247.770000px;}
.y1d_c00245{bottom:263.220000px;}
.y46_c00245{bottom:265.920000px;}
.y1c_c00245{bottom:280.770000px;}
.y45_c00245{bottom:283.770000px;}
.y1b_c00245{bottom:299.670000px;}
.y44_c00245{bottom:301.770000px;}
.y1a_c00245{bottom:317.220000px;}
.y43_c00245{bottom:319.620000px;}
.y19_c00245{bottom:335.370000px;}
.y42_c00245{bottom:337.770000px;}
.y18_c00245{bottom:353.970000px;}
.y41_c00245{bottom:355.620000px;}
.y17_c00245{bottom:370.620000px;}
.y40_c00245{bottom:372.870000px;}
.y16_c00245{bottom:388.770000px;}
.y3f_c00245{bottom:392.070000px;}
.y15_c00245{bottom:406.320000px;}
.y3e_c00245{bottom:410.670000px;}
.y14_c00245{bottom:424.620000px;}
.y3d_c00245{bottom:427.920000px;}
.y13_c00245{bottom:442.770000px;}
.y3c_c00245{bottom:446.070000px;}
.y12_c00245{bottom:460.620000px;}
.y3b_c00245{bottom:463.770000px;}
.y11_c00245{bottom:478.620000px;}
.y3a_c00245{bottom:481.320000px;}
.y10_c00245{bottom:497.070000px;}
.y39_c00245{bottom:499.170000px;}
.yf_c00245{bottom:514.920000px;}
.y38_c00245{bottom:517.620000px;}
.ye_c00245{bottom:532.620000px;}
.y37_c00245{bottom:535.170000px;}
.yd_c00245{bottom:550.770000px;}
.y36_c00245{bottom:552.870000px;}
.yc_c00245{bottom:568.920000px;}
.y35_c00245{bottom:571.770000px;}
.yb_c00245{bottom:586.920000px;}
.y34_c00245{bottom:589.620000px;}
.ya_c00245{bottom:604.470000px;}
.y33_c00245{bottom:607.470000px;}
.y9_c00245{bottom:622.920000px;}
.y32_c00245{bottom:626.070000px;}
.y8_c00245{bottom:640.620000px;}
.y31_c00245{bottom:643.620000px;}
.y7_c00245{bottom:658.770000px;}
.y30_c00245{bottom:661.770000px;}
.y6_c00245{bottom:676.920000px;}
.y2f_c00245{bottom:679.770000px;}
.y5_c00245{bottom:695.520000px;}
.y2e_c00245{bottom:697.620000px;}
.y4_c00245{bottom:712.470000px;}
.y2d_c00245{bottom:715.770000px;}
.y3_c00245{bottom:731.370000px;}
.y2c_c00245{bottom:734.370000px;}
.y2_c00245{bottom:749.520000px;}
.y2b_c00245{bottom:751.620000px;}
.y1_c00245{bottom:767.520000px;}
.y2a_c00245{bottom:769.470000px;}
.h5_c00245{height:13.200073px;}
.h6_c00245{height:43.804688px;}
.h4_c00245{height:59.736000px;}
.h2_c00245{height:62.880000px;}
.h3_c00245{height:64.020000px;}
.h1_c00245{height:846.000000px;}
.h0_c00245{height:846.150000px;}
.w2_c00245{width:104.875500px;}
.w0_c00245{width:561.600000px;}
.w1_c00245{width:561.750000px;}
.x0_c00245{left:0.000000px;}
.x5_c00245{left:25.650000px;}
.x8_c00245{left:80.100000px;}
.x9_c00245{left:84.000000px;}
.x7_c00245{left:86.700000px;}
.x1_c00245{left:87.750000px;}
.x2_c00245{left:89.400000px;}
.x3_c00245{left:90.450000px;}
.x4_c00245{left:100.950000px;}
.x6_c00245{left:120.150000px;}
.xf_c00245{left:232.614258px;}
.xd_c00245{left:303.450000px;}
.xb_c00245{left:304.650000px;}
.xa_c00245{left:306.750000px;}
.xc_c00245{left:307.800000px;}
.xe_c00245{left:468.750000px;}
@media print{
.v0_c00245{vertical-align:0.000000pt;}
.ls5_c00245{letter-spacing:0.000000pt;}
.ls0_c00245{letter-spacing:2.666667pt;}
.ls4_c00245{letter-spacing:3.200000pt;}
.ls6_c00245{letter-spacing:8.000000pt;}
.ls2_c00245{letter-spacing:12.882667pt;}
.ls3_c00245{letter-spacing:13.066667pt;}
.ls1_c00245{letter-spacing:43.282667pt;}
.ws4_c00245{word-spacing:-20.586667pt;}
.ws1_c00245{word-spacing:-16.053333pt;}
.ws2_c00245{word-spacing:-12.586667pt;}
.ws3_c00245{word-spacing:-11.957333pt;}
.ws5_c00245{word-spacing:0.000000pt;}
.ws0_c00245{word-spacing:1.813333pt;}
._23_c00245{margin-left:-17.866667pt;}
._1d_c00245{margin-left:-10.824000pt;}
._1f_c00245{margin-left:-9.426667pt;}
._27_c00245{margin-left:-8.533333pt;}
._24_c00245{margin-left:-7.381333pt;}
._1e_c00245{margin-left:-6.210667pt;}
._1_c00245{margin-left:-5.173333pt;}
._0_c00245{margin-left:-4.106667pt;}
._a_c00245{margin-left:-3.200000pt;}
._16_c00245{margin-left:-2.026667pt;}
._6_c00245{margin-left:-1.013333pt;}
._3_c00245{width:0.960000pt;}
._4_c00245{width:2.026667pt;}
._b_c00245{width:3.146667pt;}
._d_c00245{width:4.800000pt;}
._8_c00245{width:5.866667pt;}
._15_c00245{width:6.826667pt;}
._9_c00245{width:7.893333pt;}
._18_c00245{width:9.013333pt;}
._c_c00245{width:9.920000pt;}
._19_c00245{width:11.200000pt;}
._f_c00245{width:12.160000pt;}
._11_c00245{width:13.653333pt;}
._28_c00245{width:14.613333pt;}
._25_c00245{width:15.840000pt;}
._e_c00245{width:17.546667pt;}
._17_c00245{width:18.986667pt;}
._1a_c00245{width:20.213333pt;}
._10_c00245{width:21.920000pt;}
._13_c00245{width:23.200000pt;}
._1c_c00245{width:25.050667pt;}
._5_c00245{width:26.560000pt;}
._20_c00245{width:27.520000pt;}
._7_c00245{width:29.653333pt;}
._14_c00245{width:31.946667pt;}
._2_c00245{width:33.013333pt;}
._1b_c00245{width:38.080000pt;}
._26_c00245{width:38.986667pt;}
._12_c00245{width:58.933333pt;}
._21_c00245{width:83.736000pt;}
._22_c00245{width:110.810667pt;}
.fs2_c00245{font-size:34.666667pt;}
.fs3_c00245{font-size:42.666667pt;}
.fs1_c00245{font-size:50.666667pt;}
.fs0_c00245{font-size:53.333333pt;}
.y0_c00245{bottom:0.000000pt;}
.y55_c00245{bottom:2.760000pt;}
.y54_c00245{bottom:6.425217pt;}
.y53_c00245{bottom:29.306667pt;}
.y29_c00245{bottom:43.440000pt;}
.y52_c00245{bottom:44.373333pt;}
.y28_c00245{bottom:59.440000pt;}
.y51_c00245{bottom:60.906667pt;}
.y27_c00245{bottom:75.573333pt;}
.y50_c00245{bottom:76.506667pt;}
.y26_c00245{bottom:91.440000pt;}
.y4f_c00245{bottom:92.640000pt;}
.y25_c00245{bottom:107.040000pt;}
.y4e_c00245{bottom:108.506667pt;}
.y24_c00245{bottom:123.840000pt;}
.y4d_c00245{bottom:124.240000pt;}
.y23_c00245{bottom:138.906667pt;}
.y4c_c00245{bottom:140.640000pt;}
.y22_c00245{bottom:155.040000pt;}
.y4b_c00245{bottom:156.240000pt;}
.y21_c00245{bottom:170.640000pt;}
.y4a_c00245{bottom:172.106667pt;}
.y20_c00245{bottom:186.640000pt;}
.y49_c00245{bottom:188.640000pt;}
.y1f_c00245{bottom:202.240000pt;}
.y48_c00245{bottom:204.240000pt;}
.y1e_c00245{bottom:217.840000pt;}
.y47_c00245{bottom:220.240000pt;}
.y1d_c00245{bottom:233.973333pt;}
.y46_c00245{bottom:236.373333pt;}
.y1c_c00245{bottom:249.573333pt;}
.y45_c00245{bottom:252.240000pt;}
.y1b_c00245{bottom:266.373333pt;}
.y44_c00245{bottom:268.240000pt;}
.y1a_c00245{bottom:281.973333pt;}
.y43_c00245{bottom:284.106667pt;}
.y19_c00245{bottom:298.106667pt;}
.y42_c00245{bottom:300.240000pt;}
.y18_c00245{bottom:314.640000pt;}
.y41_c00245{bottom:316.106667pt;}
.y17_c00245{bottom:329.440000pt;}
.y40_c00245{bottom:331.440000pt;}
.y16_c00245{bottom:345.573333pt;}
.y3f_c00245{bottom:348.506667pt;}
.y15_c00245{bottom:361.173333pt;}
.y3e_c00245{bottom:365.040000pt;}
.y14_c00245{bottom:377.440000pt;}
.y3d_c00245{bottom:380.373333pt;}
.y13_c00245{bottom:393.573333pt;}
.y3c_c00245{bottom:396.506667pt;}
.y12_c00245{bottom:409.440000pt;}
.y3b_c00245{bottom:412.240000pt;}
.y11_c00245{bottom:425.440000pt;}
.y3a_c00245{bottom:427.840000pt;}
.y10_c00245{bottom:441.840000pt;}
.y39_c00245{bottom:443.706667pt;}
.yf_c00245{bottom:457.706667pt;}
.y38_c00245{bottom:460.106667pt;}
.ye_c00245{bottom:473.440000pt;}
.y37_c00245{bottom:475.706667pt;}
.yd_c00245{bottom:489.573333pt;}
.y36_c00245{bottom:491.440000pt;}
.yc_c00245{bottom:505.706667pt;}
.y35_c00245{bottom:508.240000pt;}
.yb_c00245{bottom:521.706667pt;}
.y34_c00245{bottom:524.106667pt;}
.ya_c00245{bottom:537.306667pt;}
.y33_c00245{bottom:539.973333pt;}
.y9_c00245{bottom:553.706667pt;}
.y32_c00245{bottom:556.506667pt;}
.y8_c00245{bottom:569.440000pt;}
.y31_c00245{bottom:572.106667pt;}
.y7_c00245{bottom:585.573333pt;}
.y30_c00245{bottom:588.240000pt;}
.y6_c00245{bottom:601.706667pt;}
.y2f_c00245{bottom:604.240000pt;}
.y5_c00245{bottom:618.240000pt;}
.y2e_c00245{bottom:620.106667pt;}
.y4_c00245{bottom:633.306667pt;}
.y2d_c00245{bottom:636.240000pt;}
.y3_c00245{bottom:650.106667pt;}
.y2c_c00245{bottom:652.773333pt;}
.y2_c00245{bottom:666.240000pt;}
.y2b_c00245{bottom:668.106667pt;}
.y1_c00245{bottom:682.240000pt;}
.y2a_c00245{bottom:683.973333pt;}
.h5_c00245{height:11.733399pt;}
.h6_c00245{height:38.937500pt;}
.h4_c00245{height:53.098667pt;}
.h2_c00245{height:55.893333pt;}
.h3_c00245{height:56.906667pt;}
.h1_c00245{height:752.000000pt;}
.h0_c00245{height:752.133333pt;}
.w2_c00245{width:93.222667pt;}
.w0_c00245{width:499.200000pt;}
.w1_c00245{width:499.333333pt;}
.x0_c00245{left:0.000000pt;}
.x5_c00245{left:22.800000pt;}
.x8_c00245{left:71.200000pt;}
.x9_c00245{left:74.666667pt;}
.x7_c00245{left:77.066667pt;}
.x1_c00245{left:78.000000pt;}
.x2_c00245{left:79.466667pt;}
.x3_c00245{left:80.400000pt;}
.x4_c00245{left:89.733333pt;}
.x6_c00245{left:106.800000pt;}
.xf_c00245{left:206.768229pt;}
.xd_c00245{left:269.733333pt;}
.xb_c00245{left:270.800000pt;}
.xa_c00245{left:272.666667pt;}
.xc_c00245{left:273.600000pt;}
.xe_c00245{left:416.666667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3ef48b4d11cde9cdb93113b6.woff2')format("woff");}.ff1_c00246{font-family:ff1_c00246;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00246;src:url('chunks/assets/font_4b0c95815850df7aebb4c613.woff2')format("woff");}.ff2_c00246{font-family:ff2_c00246;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00246;src:url('chunks/assets/font_cfa60b043d2e54cfc10d9c35.woff2')format("woff");}.ff3_c00246{font-family:ff3_c00246;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00246;src:url('chunks/assets/font_d4409eb1e62472ad42d91ebc.woff2')format("woff");}.ff4_c00246{font-family:ff4_c00246;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:ff5_c00246;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00246{font-family:ff5_c00246;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_c00246;src:url('chunks/assets/font_6261f464c5a1bc022cc7c242.woff2')format("woff");}.ff6_c00246{font-family:ff6_c00246;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:ff7_c00246;src:url('chunks/assets/font_3e36e9ad64377989bf779244.woff2')format("woff");}.ff7_c00246{font-family:ff7_c00246;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00246;src:url('chunks/assets/font_5b1266eb7360fb022d42a1d7.woff2')format("woff");}.ff8_c00246{font-family:ff8_c00246;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00246;src:url('chunks/assets/font_f9efa8e1a80bf4cdd85cc9b2.woff2')format("woff");}.ff9_c00246{font-family:ff9_c00246;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00246;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ffa_c00246{font-family:ffa_c00246;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00246{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00246{vertical-align:0.000000px;}
.v1_c00246{vertical-align:97.800000px;}
.lsc_c00246{letter-spacing:-3.000000px;}
.ls9_c00246{letter-spacing:0.000000px;}
.ls3_c00246{letter-spacing:3.000000px;}
.ls4_c00246{letter-spacing:3.600000px;}
.ls1_c00246{letter-spacing:5.340000px;}
.ls6_c00246{letter-spacing:5.520000px;}
.ls8_c00246{letter-spacing:7.380000px;}
.lsb_c00246{letter-spacing:9.000000px;}
.ls5_c00246{letter-spacing:10.740000px;}
.lsa_c00246{letter-spacing:12.000000px;}
.ls7_c00246{letter-spacing:14.187000px;}
.lsd_c00246{letter-spacing:15.000000px;}
.ls0_c00246{letter-spacing:24.540000px;}
.ls2_c00246{letter-spacing:129.540000px;}
.sc__c00246{text-shadow:none;}
.sc0_c00246{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00246{-webkit-text-stroke:0px transparent;}
.sc0_c00246{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00246{word-spacing:-33.000000px;}
.ws0_c00246{word-spacing:-30.072000px;}
.wsa_c00246{word-spacing:-29.295000px;}
.ws7_c00246{word-spacing:-26.427000px;}
.ws1_c00246{word-spacing:-25.854000px;}
.ws8_c00246{word-spacing:-23.760000px;}
.ws3_c00246{word-spacing:-23.160000px;}
.ws9_c00246{word-spacing:-21.000000px;}
.ws4_c00246{word-spacing:-18.060000px;}
.ws2_c00246{word-spacing:-14.160000px;}
.ws5_c00246{word-spacing:-0.074400px;}
.wsb_c00246{word-spacing:0.000000px;}
._24_c00246{margin-left:-40.674000px;}
._2c_c00246{margin-left:-39.165000px;}
._2a_c00246{margin-left:-32.670000px;}
._23_c00246{margin-left:-30.504000px;}
._22_c00246{margin-left:-28.086000px;}
._2b_c00246{margin-left:-26.334000px;}
._21_c00246{margin-left:-24.579000px;}
._29_c00246{margin-left:-23.058000px;}
._28_c00246{margin-left:-21.984000px;}
._27_c00246{margin-left:-20.373000px;}
._f_c00246{margin-left:-18.018000px;}
._11_c00246{margin-left:-16.926000px;}
._12_c00246{margin-left:-14.508000px;}
._20_c00246{margin-left:-13.356000px;}
._a_c00246{margin-left:-11.352000px;}
._1f_c00246{margin-left:-10.200000px;}
._10_c00246{margin-left:-8.742000px;}
._6_c00246{margin-left:-7.416000px;}
._16_c00246{margin-left:-5.976000px;}
._5_c00246{margin-left:-4.968000px;}
._4_c00246{margin-left:-3.456000px;}
._14_c00246{margin-left:-2.376000px;}
._c_c00246{margin-left:-1.152000px;}
._1_c00246{width:1.728000px;}
._0_c00246{width:3.168000px;}
._e_c00246{width:4.236000px;}
._1c_c00246{width:5.256000px;}
._3_c00246{width:6.264000px;}
._2_c00246{width:8.064000px;}
._d_c00246{width:9.216000px;}
._7_c00246{width:11.016000px;}
._19_c00246{width:12.702000px;}
._2e_c00246{width:14.184000px;}
._1d_c00246{width:15.552000px;}
._1e_c00246{width:16.788000px;}
._17_c00246{width:18.360000px;}
._26_c00246{width:19.368000px;}
._2f_c00246{width:20.928000px;}
._1a_c00246{width:22.602000px;}
._15_c00246{width:23.976000px;}
._18_c00246{width:25.296000px;}
._1b_c00246{width:27.432000px;}
._25_c00246{width:32.400000px;}
._2d_c00246{width:43.128000px;}
._13_c00246{width:80.937000px;}
._8_c00246{width:86.820000px;}
._b_c00246{width:124.992000px;}
._9_c00246{width:224.712000px;}
._30_c00246{width:284.172000px;}
.fc2_c00246{color:transparent;}
.fc1_c00246{color:rgb(128,128,128);}
.fc0_c00246{color:rgb(0,0,0);}
.fs6_c00246{font-size:45.000000px;}
.fs5_c00246{font-size:48.000000px;}
.fs1_c00246{font-size:60.000000px;}
.fs4_c00246{font-size:63.000000px;}
.fs0_c00246{font-size:72.000000px;}
.fs3_c00246{font-size:74.400000px;}
.fs2_c00246{font-size:93.000000px;}
.fs7_c00246{font-size:204.000000px;}
.y0_c00246{bottom:0.000000px;}
.y51_c00246{bottom:3.105000px;}
.y50_c00246{bottom:7.228357px;}
.y4f_c00246{bottom:48.030000px;}
.y29_c00246{bottom:51.030000px;}
.y4e_c00246{bottom:66.480000px;}
.y28_c00246{bottom:70.230000px;}
.y4d_c00246{bottom:84.030000px;}
.y27_c00246{bottom:87.480000px;}
.y4c_c00246{bottom:101.580000px;}
.y26_c00246{bottom:105.330000px;}
.y4b_c00246{bottom:119.880000px;}
.y25_c00246{bottom:122.280000px;}
.y4a_c00246{bottom:137.430000px;}
.y24_c00246{bottom:141.780000px;}
.y49_c00246{bottom:155.280000px;}
.y23_c00246{bottom:159.630000px;}
.y48_c00246{bottom:173.130000px;}
.y22_c00246{bottom:177.630000px;}
.y47_c00246{bottom:191.130000px;}
.y21_c00246{bottom:195.780000px;}
.y46_c00246{bottom:209.580000px;}
.y20_c00246{bottom:214.680000px;}
.y45_c00246{bottom:227.430000px;}
.y1f_c00246{bottom:232.980000px;}
.y43_c00246{bottom:238.230000px;}
.y44_c00246{bottom:244.380000px;}
.y1e_c00246{bottom:250.830000px;}
.y1d_c00246{bottom:268.380000px;}
.y1c_c00246{bottom:286.830000px;}
.y42_c00246{bottom:299.730000px;}
.y1b_c00246{bottom:303.480000px;}
.y41_c00246{bottom:317.580000px;}
.y1a_c00246{bottom:321.780000px;}
.y40_c00246{bottom:335.580000px;}
.y19_c00246{bottom:339.630000px;}
.y3f_c00246{bottom:353.130000px;}
.y18_c00246{bottom:357.480000px;}
.y3e_c00246{bottom:371.280000px;}
.y17_c00246{bottom:375.030000px;}
.y16_c00246{bottom:393.480000px;}
.y3d_c00246{bottom:404.430000px;}
.y15_c00246{bottom:411.180000px;}
.y14_c00246{bottom:429.030000px;}
.y3c_c00246{bottom:443.430000px;}
.y13_c00246{bottom:446.880000px;}
.y3b_c00246{bottom:461.130000px;}
.y12_c00246{bottom:464.430000px;}
.y3a_c00246{bottom:479.280000px;}
.y11_c00246{bottom:482.280000px;}
.y39_c00246{bottom:497.580000px;}
.y10_c00246{bottom:499.830000px;}
.y38_c00246{bottom:515.130000px;}
.yf_c00246{bottom:517.680000px;}
.y37_c00246{bottom:532.680000px;}
.ye_c00246{bottom:534.930000px;}
.y36_c00246{bottom:550.530000px;}
.yd_c00246{bottom:552.930000px;}
.y35_c00246{bottom:567.780000px;}
.yc_c00246{bottom:571.080000px;}
.y34_c00246{bottom:586.230000px;}
.yb_c00246{bottom:588.930000px;}
.y33_c00246{bottom:604.230000px;}
.ya_c00246{bottom:606.780000px;}
.y32_c00246{bottom:622.080000px;}
.y9_c00246{bottom:624.480000px;}
.y31_c00246{bottom:639.630000px;}
.y8_c00246{bottom:642.330000px;}
.y30_c00246{bottom:657.780000px;}
.y7_c00246{bottom:660.480000px;}
.y2f_c00246{bottom:675.630000px;}
.y6_c00246{bottom:677.730000px;}
.y2e_c00246{bottom:693.180000px;}
.y5_c00246{bottom:695.280000px;}
.y2d_c00246{bottom:711.780000px;}
.y4_c00246{bottom:713.880000px;}
.y2c_c00246{bottom:729.780000px;}
.y3_c00246{bottom:731.430000px;}
.y2b_c00246{bottom:747.630000px;}
.y2_c00246{bottom:748.680000px;}
.y2a_c00246{bottom:765.780000px;}
.y1_c00246{bottom:767.430000px;}
.h9_c00246{height:13.200074px;}
.ha_c00246{height:43.804688px;}
.h3_c00246{height:62.880000px;}
.h7_c00246{height:66.024000px;}
.h2_c00246{height:70.664062px;}
.h6_c00246{height:75.456000px;}
.h5_c00246{height:77.596875px;}
.h4_c00246{height:96.996094px;}
.h8_c00246{height:213.792000px;}
.h0_c00246{height:841.350000px;}
.h1_c00246{height:841.500000px;}
.w1_c00246{width:104.875500px;}
.w0_c00246{width:590.250000px;}
.x0_c00246{left:0.000000px;}
.x2_c00246{left:14.250000px;}
.x1_c00246{left:72.450000px;}
.x3_c00246{left:73.800000px;}
.x4_c00246{left:75.300000px;}
.x5_c00246{left:76.500000px;}
.x6_c00246{left:77.550000px;}
.x7_c00246{left:79.200000px;}
.x8_c00246{left:80.700000px;}
.x17_c00246{left:246.939240px;}
.x9_c00246{left:288.450000px;}
.xa_c00246{left:289.500000px;}
.xb_c00246{left:291.150000px;}
.x10_c00246{left:292.200000px;}
.xc_c00246{left:293.250000px;}
.xd_c00246{left:294.300000px;}
.x11_c00246{left:311.850000px;}
.x16_c00246{left:331.800000px;}
.x15_c00246{left:340.500000px;}
.x14_c00246{left:341.550000px;}
.x12_c00246{left:344.850000px;}
.xf_c00246{left:360.450000px;}
.x13_c00246{left:380.700000px;}
.xe_c00246{left:395.550000px;}
@media print{
.v0_c00246{vertical-align:0.000000pt;}
.v1_c00246{vertical-align:86.933333pt;}
.lsc_c00246{letter-spacing:-2.666667pt;}
.ls9_c00246{letter-spacing:0.000000pt;}
.ls3_c00246{letter-spacing:2.666667pt;}
.ls4_c00246{letter-spacing:3.200000pt;}
.ls1_c00246{letter-spacing:4.746667pt;}
.ls6_c00246{letter-spacing:4.906667pt;}
.ls8_c00246{letter-spacing:6.560000pt;}
.lsb_c00246{letter-spacing:8.000000pt;}
.ls5_c00246{letter-spacing:9.546667pt;}
.lsa_c00246{letter-spacing:10.666667pt;}
.ls7_c00246{letter-spacing:12.610667pt;}
.lsd_c00246{letter-spacing:13.333333pt;}
.ls0_c00246{letter-spacing:21.813333pt;}
.ls2_c00246{letter-spacing:115.146667pt;}
.ws6_c00246{word-spacing:-29.333333pt;}
.ws0_c00246{word-spacing:-26.730667pt;}
.wsa_c00246{word-spacing:-26.040000pt;}
.ws7_c00246{word-spacing:-23.490667pt;}
.ws1_c00246{word-spacing:-22.981333pt;}
.ws8_c00246{word-spacing:-21.120000pt;}
.ws3_c00246{word-spacing:-20.586667pt;}
.ws9_c00246{word-spacing:-18.666667pt;}
.ws4_c00246{word-spacing:-16.053333pt;}
.ws2_c00246{word-spacing:-12.586667pt;}
.ws5_c00246{word-spacing:-0.066133pt;}
.wsb_c00246{word-spacing:0.000000pt;}
._24_c00246{margin-left:-36.154667pt;}
._2c_c00246{margin-left:-34.813333pt;}
._2a_c00246{margin-left:-29.040000pt;}
._23_c00246{margin-left:-27.114667pt;}
._22_c00246{margin-left:-24.965333pt;}
._2b_c00246{margin-left:-23.408000pt;}
._21_c00246{margin-left:-21.848000pt;}
._29_c00246{margin-left:-20.496000pt;}
._28_c00246{margin-left:-19.541333pt;}
._27_c00246{margin-left:-18.109333pt;}
._f_c00246{margin-left:-16.016000pt;}
._11_c00246{margin-left:-15.045333pt;}
._12_c00246{margin-left:-12.896000pt;}
._20_c00246{margin-left:-11.872000pt;}
._a_c00246{margin-left:-10.090667pt;}
._1f_c00246{margin-left:-9.066667pt;}
._10_c00246{margin-left:-7.770667pt;}
._6_c00246{margin-left:-6.592000pt;}
._16_c00246{margin-left:-5.312000pt;}
._5_c00246{margin-left:-4.416000pt;}
._4_c00246{margin-left:-3.072000pt;}
._14_c00246{margin-left:-2.112000pt;}
._c_c00246{margin-left:-1.024000pt;}
._1_c00246{width:1.536000pt;}
._0_c00246{width:2.816000pt;}
._e_c00246{width:3.765333pt;}
._1c_c00246{width:4.672000pt;}
._3_c00246{width:5.568000pt;}
._2_c00246{width:7.168000pt;}
._d_c00246{width:8.192000pt;}
._7_c00246{width:9.792000pt;}
._19_c00246{width:11.290667pt;}
._2e_c00246{width:12.608000pt;}
._1d_c00246{width:13.824000pt;}
._1e_c00246{width:14.922667pt;}
._17_c00246{width:16.320000pt;}
._26_c00246{width:17.216000pt;}
._2f_c00246{width:18.602667pt;}
._1a_c00246{width:20.090667pt;}
._15_c00246{width:21.312000pt;}
._18_c00246{width:22.485333pt;}
._1b_c00246{width:24.384000pt;}
._25_c00246{width:28.800000pt;}
._2d_c00246{width:38.336000pt;}
._13_c00246{width:71.944000pt;}
._8_c00246{width:77.173333pt;}
._b_c00246{width:111.104000pt;}
._9_c00246{width:199.744000pt;}
._30_c00246{width:252.597333pt;}
.fs6_c00246{font-size:40.000000pt;}
.fs5_c00246{font-size:42.666667pt;}
.fs1_c00246{font-size:53.333333pt;}
.fs4_c00246{font-size:56.000000pt;}
.fs0_c00246{font-size:64.000000pt;}
.fs3_c00246{font-size:66.133333pt;}
.fs2_c00246{font-size:82.666667pt;}
.fs7_c00246{font-size:181.333333pt;}
.y0_c00246{bottom:0.000000pt;}
.y51_c00246{bottom:2.760000pt;}
.y50_c00246{bottom:6.425206pt;}
.y4f_c00246{bottom:42.693333pt;}
.y29_c00246{bottom:45.360000pt;}
.y4e_c00246{bottom:59.093333pt;}
.y28_c00246{bottom:62.426667pt;}
.y4d_c00246{bottom:74.693333pt;}
.y27_c00246{bottom:77.760000pt;}
.y4c_c00246{bottom:90.293333pt;}
.y26_c00246{bottom:93.626667pt;}
.y4b_c00246{bottom:106.560000pt;}
.y25_c00246{bottom:108.693333pt;}
.y4a_c00246{bottom:122.160000pt;}
.y24_c00246{bottom:126.026667pt;}
.y49_c00246{bottom:138.026667pt;}
.y23_c00246{bottom:141.893333pt;}
.y48_c00246{bottom:153.893333pt;}
.y22_c00246{bottom:157.893333pt;}
.y47_c00246{bottom:169.893333pt;}
.y21_c00246{bottom:174.026667pt;}
.y46_c00246{bottom:186.293333pt;}
.y20_c00246{bottom:190.826667pt;}
.y45_c00246{bottom:202.160000pt;}
.y1f_c00246{bottom:207.093333pt;}
.y43_c00246{bottom:211.760000pt;}
.y44_c00246{bottom:217.226667pt;}
.y1e_c00246{bottom:222.960000pt;}
.y1d_c00246{bottom:238.560000pt;}
.y1c_c00246{bottom:254.960000pt;}
.y42_c00246{bottom:266.426667pt;}
.y1b_c00246{bottom:269.760000pt;}
.y41_c00246{bottom:282.293333pt;}
.y1a_c00246{bottom:286.026667pt;}
.y40_c00246{bottom:298.293333pt;}
.y19_c00246{bottom:301.893333pt;}
.y3f_c00246{bottom:313.893333pt;}
.y18_c00246{bottom:317.760000pt;}
.y3e_c00246{bottom:330.026667pt;}
.y17_c00246{bottom:333.360000pt;}
.y16_c00246{bottom:349.760000pt;}
.y3d_c00246{bottom:359.493333pt;}
.y15_c00246{bottom:365.493333pt;}
.y14_c00246{bottom:381.360000pt;}
.y3c_c00246{bottom:394.160000pt;}
.y13_c00246{bottom:397.226667pt;}
.y3b_c00246{bottom:409.893333pt;}
.y12_c00246{bottom:412.826667pt;}
.y3a_c00246{bottom:426.026667pt;}
.y11_c00246{bottom:428.693333pt;}
.y39_c00246{bottom:442.293333pt;}
.y10_c00246{bottom:444.293333pt;}
.y38_c00246{bottom:457.893333pt;}
.yf_c00246{bottom:460.160000pt;}
.y37_c00246{bottom:473.493333pt;}
.ye_c00246{bottom:475.493333pt;}
.y36_c00246{bottom:489.360000pt;}
.yd_c00246{bottom:491.493333pt;}
.y35_c00246{bottom:504.693333pt;}
.yc_c00246{bottom:507.626667pt;}
.y34_c00246{bottom:521.093333pt;}
.yb_c00246{bottom:523.493333pt;}
.y33_c00246{bottom:537.093333pt;}
.ya_c00246{bottom:539.360000pt;}
.y32_c00246{bottom:552.960000pt;}
.y9_c00246{bottom:555.093333pt;}
.y31_c00246{bottom:568.560000pt;}
.y8_c00246{bottom:570.960000pt;}
.y30_c00246{bottom:584.693333pt;}
.y7_c00246{bottom:587.093333pt;}
.y2f_c00246{bottom:600.560000pt;}
.y6_c00246{bottom:602.426667pt;}
.y2e_c00246{bottom:616.160000pt;}
.y5_c00246{bottom:618.026667pt;}
.y2d_c00246{bottom:632.693333pt;}
.y4_c00246{bottom:634.560000pt;}
.y2c_c00246{bottom:648.693333pt;}
.y3_c00246{bottom:650.160000pt;}
.y2b_c00246{bottom:664.560000pt;}
.y2_c00246{bottom:665.493333pt;}
.y2a_c00246{bottom:680.693333pt;}
.y1_c00246{bottom:682.160000pt;}
.h9_c00246{height:11.733399pt;}
.ha_c00246{height:38.937500pt;}
.h3_c00246{height:55.893333pt;}
.h7_c00246{height:58.688000pt;}
.h2_c00246{height:62.812500pt;}
.h6_c00246{height:67.072000pt;}
.h5_c00246{height:68.975000pt;}
.h4_c00246{height:86.218750pt;}
.h8_c00246{height:190.037333pt;}
.h0_c00246{height:747.866667pt;}
.h1_c00246{height:748.000000pt;}
.w1_c00246{width:93.222667pt;}
.w0_c00246{width:524.666667pt;}
.x0_c00246{left:0.000000pt;}
.x2_c00246{left:12.666667pt;}
.x1_c00246{left:64.400000pt;}
.x3_c00246{left:65.600000pt;}
.x4_c00246{left:66.933333pt;}
.x5_c00246{left:68.000000pt;}
.x6_c00246{left:68.933333pt;}
.x7_c00246{left:70.400000pt;}
.x8_c00246{left:71.733333pt;}
.x17_c00246{left:219.501546pt;}
.x9_c00246{left:256.400000pt;}
.xa_c00246{left:257.333333pt;}
.xb_c00246{left:258.800000pt;}
.x10_c00246{left:259.733333pt;}
.xc_c00246{left:260.666667pt;}
.xd_c00246{left:261.600000pt;}
.x11_c00246{left:277.200000pt;}
.x16_c00246{left:294.933333pt;}
.x15_c00246{left:302.666667pt;}
.x14_c00246{left:303.600000pt;}
.x12_c00246{left:306.533333pt;}
.xf_c00246{left:320.400000pt;}
.x13_c00246{left:338.400000pt;}
.xe_c00246{left:351.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_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_5e06f79a67d22d13a17afda2.woff2')format("woff");}.ff1_c00247{font-family:ff1_c00247;line-height:1.437000;font-style:normal;font-weight:normal;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_f83039f8b98ed41244f05135.woff2')format("woff");}.ff2_c00247{font-family:ff2_c00247;line-height:1.437000;font-style:normal;font-weight:normal;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_63265522f15450414982aca8.woff2')format("woff");}.ff3_c00247{font-family:ff3_c00247;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00247;src:url('chunks/assets/font_75ef6c9cd6c766e7a32a7ede.woff2')format("woff");}.ff4_c00247{font-family:ff4_c00247;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00247;src:url('chunks/assets/font_4c3e681a76cc0520581804de.woff2')format("woff");}.ff5_c00247{font-family:ff5_c00247;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00247;src:url('chunks/assets/font_628a95f381fe3225a119eacd.woff2')format("woff");}.ff6_c00247{font-family:ff6_c00247;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00247;src:url('chunks/assets/font_985bd0a4df41c36e839cb1bf.woff2')format("woff");}.ff7_c00247{font-family:ff7_c00247;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:ff8_c00247;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff8_c00247{font-family:ff8_c00247;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00247{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00247{vertical-align:0.000000px;}
.v1_c00247{vertical-align:4.200000px;}
.ls5_c00247{letter-spacing:0.000000px;}
.ls4_c00247{letter-spacing:0.480000px;}
.ls2_c00247{letter-spacing:3.000000px;}
.ls0_c00247{letter-spacing:6.480000px;}
.ls3_c00247{letter-spacing:15.000000px;}
.ls1_c00247{letter-spacing:16.020000px;}
.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;}
}
.ws3_c00247{word-spacing:-52.200000px;}
.ws0_c00247{word-spacing:-44.565000px;}
.ws4_c00247{word-spacing:-18.060000px;}
.ws1_c00247{word-spacing:-17.340000px;}
.ws2_c00247{word-spacing:-14.160000px;}
.ws5_c00247{word-spacing:0.000000px;}
._16_c00247{margin-left:-21.660000px;}
._28_c00247{margin-left:-17.955000px;}
._22_c00247{margin-left:-15.120000px;}
._14_c00247{margin-left:-13.401000px;}
._15_c00247{margin-left:-11.640000px;}
._27_c00247{margin-left:-10.614000px;}
._f_c00247{margin-left:-9.435000px;}
._10_c00247{margin-left:-8.364000px;}
._13_c00247{margin-left:-6.840000px;}
._c_c00247{margin-left:-5.406000px;}
._3_c00247{margin-left:-4.380000px;}
._2_c00247{margin-left:-3.060000px;}
._4_c00247{margin-left:-1.860000px;}
._5_c00247{width:1.260000px;}
._1_c00247{width:2.340000px;}
._6_c00247{width:3.600000px;}
._11_c00247{width:4.671000px;}
._0_c00247{width:5.760000px;}
._9_c00247{width:7.140000px;}
._8_c00247{width:9.120000px;}
._a_c00247{width:10.620000px;}
._7_c00247{width:12.000000px;}
._e_c00247{width:13.821000px;}
._12_c00247{width:14.877000px;}
._1a_c00247{width:16.128000px;}
._d_c00247{width:17.832000px;}
._26_c00247{width:19.740000px;}
._17_c00247{width:22.089000px;}
._18_c00247{width:24.000000px;}
._19_c00247{width:25.680000px;}
._1c_c00247{width:26.784000px;}
._1b_c00247{width:27.900000px;}
._1f_c00247{width:30.420000px;}
._25_c00247{width:31.467000px;}
._1d_c00247{width:36.240000px;}
._1e_c00247{width:37.800000px;}
._23_c00247{width:39.159000px;}
._21_c00247{width:44.880000px;}
._20_c00247{width:50.340000px;}
._24_c00247{width:56.760000px;}
._b_c00247{width:199.020000px;}
.fc2_c00247{color:transparent;}
.fc1_c00247{color:rgb(128,128,128);}
.fc0_c00247{color:rgb(0,0,0);}
.fs4_c00247{font-size:48.000000px;}
.fs1_c00247{font-size:51.000000px;}
.fs3_c00247{font-size:54.000000px;}
.fs2_c00247{font-size:57.000000px;}
.fs0_c00247{font-size:60.000000px;}
.y0_c00247{bottom:0.000000px;}
.y53_c00247{bottom:3.105000px;}
.y52_c00247{bottom:7.228357px;}
.y51_c00247{bottom:29.730000px;}
.y29_c00247{bottom:47.580000px;}
.y28_c00247{bottom:65.580000px;}
.y50_c00247{bottom:66.180000px;}
.y27_c00247{bottom:83.730000px;}
.y26_c00247{bottom:101.580000px;}
.y4f_c00247{bottom:102.030000px;}
.y25_c00247{bottom:119.580000px;}
.y4e_c00247{bottom:120.180000px;}
.y24_c00247{bottom:136.680000px;}
.y4d_c00247{bottom:137.730000px;}
.y23_c00247{bottom:154.980000px;}
.y4c_c00247{bottom:156.030000px;}
.y22_c00247{bottom:173.430000px;}
.y4b_c00247{bottom:173.580000px;}
.y21_c00247{bottom:191.130000px;}
.y4a_c00247{bottom:192.030000px;}
.y20_c00247{bottom:209.280000px;}
.y49_c00247{bottom:209.880000px;}
.y1f_c00247{bottom:227.430000px;}
.y48_c00247{bottom:227.880000px;}
.y1e_c00247{bottom:244.980000px;}
.y47_c00247{bottom:245.730000px;}
.y1d_c00247{bottom:263.280000px;}
.y46_c00247{bottom:264.030000px;}
.y1c_c00247{bottom:280.830000px;}
.y45_c00247{bottom:282.180000px;}
.y1b_c00247{bottom:298.680000px;}
.y44_c00247{bottom:300.030000px;}
.y1a_c00247{bottom:316.980000px;}
.y43_c00247{bottom:318.330000px;}
.y19_c00247{bottom:334.830000px;}
.y42_c00247{bottom:336.180000px;}
.y18_c00247{bottom:352.980000px;}
.y41_c00247{bottom:353.730000px;}
.y17_c00247{bottom:370.980000px;}
.y40_c00247{bottom:372.030000px;}
.y16_c00247{bottom:389.130000px;}
.y3f_c00247{bottom:389.880000px;}
.y15_c00247{bottom:406.980000px;}
.y3e_c00247{bottom:408.030000px;}
.y14_c00247{bottom:424.530000px;}
.y3d_c00247{bottom:426.330000px;}
.y13_c00247{bottom:442.830000px;}
.y3c_c00247{bottom:444.480000px;}
.y12_c00247{bottom:460.680000px;}
.y3b_c00247{bottom:462.030000px;}
.y11_c00247{bottom:479.580000px;}
.y3a_c00247{bottom:480.330000px;}
.y10_c00247{bottom:496.530000px;}
.y39_c00247{bottom:497.580000px;}
.yf_c00247{bottom:514.680000px;}
.y38_c00247{bottom:515.430000px;}
.ye_c00247{bottom:532.680000px;}
.y37_c00247{bottom:533.880000px;}
.yd_c00247{bottom:550.830000px;}
.y36_c00247{bottom:551.430000px;}
.yc_c00247{bottom:568.380000px;}
.y35_c00247{bottom:569.130000px;}
.yb_c00247{bottom:586.680000px;}
.y34_c00247{bottom:587.280000px;}
.y33_c00247{bottom:605.580000px;}
.ya_c00247{bottom:606.780000px;}
.y9_c00247{bottom:623.430000px;}
.y32_c00247{bottom:640.980000px;}
.y8_c00247{bottom:641.280000px;}
.y7_c00247{bottom:657.180000px;}
.y31_c00247{bottom:659.430000px;}
.y6_c00247{bottom:675.630000px;}
.y30_c00247{bottom:676.680000px;}
.y5_c00247{bottom:693.930000px;}
.y2f_c00247{bottom:694.680000px;}
.y4_c00247{bottom:712.530000px;}
.y2e_c00247{bottom:713.130000px;}
.y3_c00247{bottom:730.080000px;}
.y2d_c00247{bottom:730.680000px;}
.y2_c00247{bottom:748.530000px;}
.y2c_c00247{bottom:748.680000px;}
.y1_c00247{bottom:766.080000px;}
.y2b_c00247{bottom:766.530000px;}
.y2a_c00247{bottom:786.780000px;}
.h7_c00247{height:13.200074px;}
.h8_c00247{height:43.804688px;}
.h4_c00247{height:59.690918px;}
.h5_c00247{height:59.736000px;}
.h2_c00247{height:62.880000px;}
.h6_c00247{height:64.020000px;}
.h3_c00247{height:67.080000px;}
.h1_c00247{height:843.750000px;}
.h0_c00247{height:844.050000px;}
.w2_c00247{width:104.875500px;}
.w0_c00247{width:559.950000px;}
.w1_c00247{width:560.250000px;}
.x0_c00247{left:0.000000px;}
.x8_c00247{left:80.400000px;}
.x7_c00247{left:82.050000px;}
.x6_c00247{left:83.700000px;}
.x3_c00247{left:85.050000px;}
.x1_c00247{left:86.400000px;}
.x2_c00247{left:88.050000px;}
.x4_c00247{left:93.600000px;}
.x5_c00247{left:227.850000px;}
.xf_c00247{left:231.789230px;}
.xd_c00247{left:301.050000px;}
.xa_c00247{left:302.100000px;}
.xb_c00247{left:303.300000px;}
.xc_c00247{left:304.800000px;}
.x9_c00247{left:309.150000px;}
.xe_c00247{left:462.000000px;}
@media print{
.v0_c00247{vertical-align:0.000000pt;}
.v1_c00247{vertical-align:3.733333pt;}
.ls5_c00247{letter-spacing:0.000000pt;}
.ls4_c00247{letter-spacing:0.426667pt;}
.ls2_c00247{letter-spacing:2.666667pt;}
.ls0_c00247{letter-spacing:5.760000pt;}
.ls3_c00247{letter-spacing:13.333333pt;}
.ls1_c00247{letter-spacing:14.240000pt;}
.ws3_c00247{word-spacing:-46.400000pt;}
.ws0_c00247{word-spacing:-39.613333pt;}
.ws4_c00247{word-spacing:-16.053333pt;}
.ws1_c00247{word-spacing:-15.413333pt;}
.ws2_c00247{word-spacing:-12.586667pt;}
.ws5_c00247{word-spacing:0.000000pt;}
._16_c00247{margin-left:-19.253333pt;}
._28_c00247{margin-left:-15.960000pt;}
._22_c00247{margin-left:-13.440000pt;}
._14_c00247{margin-left:-11.912000pt;}
._15_c00247{margin-left:-10.346667pt;}
._27_c00247{margin-left:-9.434667pt;}
._f_c00247{margin-left:-8.386667pt;}
._10_c00247{margin-left:-7.434667pt;}
._13_c00247{margin-left:-6.080000pt;}
._c_c00247{margin-left:-4.805333pt;}
._3_c00247{margin-left:-3.893333pt;}
._2_c00247{margin-left:-2.720000pt;}
._4_c00247{margin-left:-1.653333pt;}
._5_c00247{width:1.120000pt;}
._1_c00247{width:2.080000pt;}
._6_c00247{width:3.200000pt;}
._11_c00247{width:4.152000pt;}
._0_c00247{width:5.120000pt;}
._9_c00247{width:6.346667pt;}
._8_c00247{width:8.106667pt;}
._a_c00247{width:9.440000pt;}
._7_c00247{width:10.666667pt;}
._e_c00247{width:12.285333pt;}
._12_c00247{width:13.224000pt;}
._1a_c00247{width:14.336000pt;}
._d_c00247{width:15.850667pt;}
._26_c00247{width:17.546667pt;}
._17_c00247{width:19.634667pt;}
._18_c00247{width:21.333333pt;}
._19_c00247{width:22.826667pt;}
._1c_c00247{width:23.808000pt;}
._1b_c00247{width:24.800000pt;}
._1f_c00247{width:27.040000pt;}
._25_c00247{width:27.970667pt;}
._1d_c00247{width:32.213333pt;}
._1e_c00247{width:33.600000pt;}
._23_c00247{width:34.808000pt;}
._21_c00247{width:39.893333pt;}
._20_c00247{width:44.746667pt;}
._24_c00247{width:50.453333pt;}
._b_c00247{width:176.906667pt;}
.fs4_c00247{font-size:42.666667pt;}
.fs1_c00247{font-size:45.333333pt;}
.fs3_c00247{font-size:48.000000pt;}
.fs2_c00247{font-size:50.666667pt;}
.fs0_c00247{font-size:53.333333pt;}
.y0_c00247{bottom:0.000000pt;}
.y53_c00247{bottom:2.760000pt;}
.y52_c00247{bottom:6.425206pt;}
.y51_c00247{bottom:26.426667pt;}
.y29_c00247{bottom:42.293333pt;}
.y28_c00247{bottom:58.293333pt;}
.y50_c00247{bottom:58.826667pt;}
.y27_c00247{bottom:74.426667pt;}
.y26_c00247{bottom:90.293333pt;}
.y4f_c00247{bottom:90.693333pt;}
.y25_c00247{bottom:106.293333pt;}
.y4e_c00247{bottom:106.826667pt;}
.y24_c00247{bottom:121.493333pt;}
.y4d_c00247{bottom:122.426667pt;}
.y23_c00247{bottom:137.760000pt;}
.y4c_c00247{bottom:138.693333pt;}
.y22_c00247{bottom:154.160000pt;}
.y4b_c00247{bottom:154.293333pt;}
.y21_c00247{bottom:169.893333pt;}
.y4a_c00247{bottom:170.693333pt;}
.y20_c00247{bottom:186.026667pt;}
.y49_c00247{bottom:186.560000pt;}
.y1f_c00247{bottom:202.160000pt;}
.y48_c00247{bottom:202.560000pt;}
.y1e_c00247{bottom:217.760000pt;}
.y47_c00247{bottom:218.426667pt;}
.y1d_c00247{bottom:234.026667pt;}
.y46_c00247{bottom:234.693333pt;}
.y1c_c00247{bottom:249.626667pt;}
.y45_c00247{bottom:250.826667pt;}
.y1b_c00247{bottom:265.493333pt;}
.y44_c00247{bottom:266.693333pt;}
.y1a_c00247{bottom:281.760000pt;}
.y43_c00247{bottom:282.960000pt;}
.y19_c00247{bottom:297.626667pt;}
.y42_c00247{bottom:298.826667pt;}
.y18_c00247{bottom:313.760000pt;}
.y41_c00247{bottom:314.426667pt;}
.y17_c00247{bottom:329.760000pt;}
.y40_c00247{bottom:330.693333pt;}
.y16_c00247{bottom:345.893333pt;}
.y3f_c00247{bottom:346.560000pt;}
.y15_c00247{bottom:361.760000pt;}
.y3e_c00247{bottom:362.693333pt;}
.y14_c00247{bottom:377.360000pt;}
.y3d_c00247{bottom:378.960000pt;}
.y13_c00247{bottom:393.626667pt;}
.y3c_c00247{bottom:395.093333pt;}
.y12_c00247{bottom:409.493333pt;}
.y3b_c00247{bottom:410.693333pt;}
.y11_c00247{bottom:426.293333pt;}
.y3a_c00247{bottom:426.960000pt;}
.y10_c00247{bottom:441.360000pt;}
.y39_c00247{bottom:442.293333pt;}
.yf_c00247{bottom:457.493333pt;}
.y38_c00247{bottom:458.160000pt;}
.ye_c00247{bottom:473.493333pt;}
.y37_c00247{bottom:474.560000pt;}
.yd_c00247{bottom:489.626667pt;}
.y36_c00247{bottom:490.160000pt;}
.yc_c00247{bottom:505.226667pt;}
.y35_c00247{bottom:505.893333pt;}
.yb_c00247{bottom:521.493333pt;}
.y34_c00247{bottom:522.026667pt;}
.y33_c00247{bottom:538.293333pt;}
.ya_c00247{bottom:539.360000pt;}
.y9_c00247{bottom:554.160000pt;}
.y32_c00247{bottom:569.760000pt;}
.y8_c00247{bottom:570.026667pt;}
.y7_c00247{bottom:584.160000pt;}
.y31_c00247{bottom:586.160000pt;}
.y6_c00247{bottom:600.560000pt;}
.y30_c00247{bottom:601.493333pt;}
.y5_c00247{bottom:616.826667pt;}
.y2f_c00247{bottom:617.493333pt;}
.y4_c00247{bottom:633.360000pt;}
.y2e_c00247{bottom:633.893333pt;}
.y3_c00247{bottom:648.960000pt;}
.y2d_c00247{bottom:649.493333pt;}
.y2_c00247{bottom:665.360000pt;}
.y2c_c00247{bottom:665.493333pt;}
.y1_c00247{bottom:680.960000pt;}
.y2b_c00247{bottom:681.360000pt;}
.y2a_c00247{bottom:699.360000pt;}
.h7_c00247{height:11.733399pt;}
.h8_c00247{height:38.937500pt;}
.h4_c00247{height:53.058594pt;}
.h5_c00247{height:53.098667pt;}
.h2_c00247{height:55.893333pt;}
.h6_c00247{height:56.906667pt;}
.h3_c00247{height:59.626667pt;}
.h1_c00247{height:750.000000pt;}
.h0_c00247{height:750.266667pt;}
.w2_c00247{width:93.222667pt;}
.w0_c00247{width:497.733333pt;}
.w1_c00247{width:498.000000pt;}
.x0_c00247{left:0.000000pt;}
.x8_c00247{left:71.466667pt;}
.x7_c00247{left:72.933333pt;}
.x6_c00247{left:74.400000pt;}
.x3_c00247{left:75.600000pt;}
.x1_c00247{left:76.800000pt;}
.x2_c00247{left:78.266667pt;}
.x4_c00247{left:83.200000pt;}
.x5_c00247{left:202.533333pt;}
.xf_c00247{left:206.034871pt;}
.xd_c00247{left:267.600000pt;}
.xa_c00247{left:268.533333pt;}
.xb_c00247{left:269.600000pt;}
.xc_c00247{left:270.933333pt;}
.x9_c00247{left:274.800000pt;}
.xe_c00247{left:410.666667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ebbe37e732ec4a8346efa57b.woff2')format("woff");}.ff1_c00248{font-family:ff1_c00248;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00248;src:url('chunks/assets/font_99e91b4b2ca1d0992e3c053d.woff2')format("woff");}.ff2_c00248{font-family:ff2_c00248;line-height:1.575000;font-style:normal;font-weight:normal;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_7a956a2ede77e1c4336c4154.woff2')format("woff");}.ff3_c00248{font-family:ff3_c00248;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00248;src:url('chunks/assets/font_4ecd8f7e6232db14f8cfd7d8.woff2')format("woff");}.ff4_c00248{font-family:ff4_c00248;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00248;src:url('chunks/assets/font_0ce391de997f24f9f9dd37f4.woff2')format("woff");}.ff5_c00248{font-family:ff5_c00248;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00248;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff6_c00248{font-family:ff6_c00248;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls8_c00248{letter-spacing:0.000000px;}
.ls3_c00248{letter-spacing:1.605000px;}
.ls0_c00248{letter-spacing:1.800000px;}
.ls4_c00248{letter-spacing:2.400000px;}
.ls7_c00248{letter-spacing:3.000000px;}
.ls5_c00248{letter-spacing:5.400000px;}
.ls1_c00248{letter-spacing:9.900000px;}
.ls6_c00248{letter-spacing:12.000000px;}
.ls2_c00248{letter-spacing:15.540000px;}
.ls9_c00248{letter-spacing:27.000000px;}
.sc__c00248{text-shadow:none;}
.sc0_c00248{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00248{-webkit-text-stroke:0px transparent;}
.sc0_c00248{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00248{word-spacing:-23.760000px;}
.ws6_c00248{word-spacing:-18.060000px;}
.ws3_c00248{word-spacing:-14.160000px;}
.ws5_c00248{word-spacing:-1.140000px;}
.ws4_c00248{word-spacing:-0.900000px;}
.ws1_c00248{word-spacing:-0.780000px;}
.ws7_c00248{word-spacing:0.000000px;}
.ws2_c00248{word-spacing:74.580000px;}
._17_c00248{margin-left:-33.180000px;}
._18_c00248{margin-left:-30.780000px;}
._26_c00248{margin-left:-22.020000px;}
._2d_c00248{margin-left:-17.451000px;}
._2a_c00248{margin-left:-14.913000px;}
._27_c00248{margin-left:-13.020000px;}
._2e_c00248{margin-left:-11.487000px;}
._10_c00248{margin-left:-10.371000px;}
._16_c00248{margin-left:-9.135000px;}
._24_c00248{margin-left:-7.827000px;}
._5_c00248{margin-left:-5.883000px;}
._6_c00248{margin-left:-4.494000px;}
._19_c00248{margin-left:-3.414000px;}
._0_c00248{margin-left:-2.346000px;}
._b_c00248{margin-left:-1.200000px;}
._2_c00248{width:1.449000px;}
._4_c00248{width:3.411000px;}
._e_c00248{width:4.449000px;}
._3_c00248{width:5.640000px;}
._d_c00248{width:6.780000px;}
._15_c00248{width:7.860000px;}
._14_c00248{width:9.336000px;}
._c_c00248{width:11.247000px;}
._11_c00248{width:12.690000px;}
._12_c00248{width:14.106000px;}
._1c_c00248{width:15.213000px;}
._7_c00248{width:16.251000px;}
._23_c00248{width:18.900000px;}
._1e_c00248{width:20.022000px;}
._a_c00248{width:21.120000px;}
._f_c00248{width:22.869000px;}
._29_c00248{width:24.780000px;}
._9_c00248{width:26.004000px;}
._1d_c00248{width:27.360000px;}
._1f_c00248{width:29.046000px;}
._2c_c00248{width:31.266000px;}
._1_c00248{width:33.189000px;}
._8_c00248{width:37.980000px;}
._1a_c00248{width:39.549000px;}
._13_c00248{width:41.820000px;}
._30_c00248{width:44.355000px;}
._2f_c00248{width:47.664000px;}
._31_c00248{width:52.131000px;}
._20_c00248{width:60.804000px;}
._21_c00248{width:94.806000px;}
._22_c00248{width:113.703000px;}
._28_c00248{width:128.094000px;}
._2b_c00248{width:142.917000px;}
._25_c00248{width:189.648000px;}
._1b_c00248{width:552.603000px;}
.fc2_c00248{color:transparent;}
.fc1_c00248{color:rgb(128,128,128);}
.fc0_c00248{color:rgb(0,0,0);}
.fs3_c00248{font-size:45.000000px;}
.fs2_c00248{font-size:48.000000px;}
.fs1_c00248{font-size:60.000000px;}
.fs0_c00248{font-size:69.000000px;}
.y0_c00248{bottom:0.000000px;}
.y55_c00248{bottom:3.105000px;}
.y54_c00248{bottom:7.228369px;}
.y53_c00248{bottom:28.020000px;}
.y52_c00248{bottom:46.620000px;}
.y2a_c00248{bottom:49.620000px;}
.y51_c00248{bottom:65.370000px;}
.y29_c00248{bottom:70.170000px;}
.y50_c00248{bottom:83.670000px;}
.y28_c00248{bottom:89.070000px;}
.y4f_c00248{bottom:101.820000px;}
.y27_c00248{bottom:104.670000px;}
.y4e_c00248{bottom:119.370000px;}
.y26_c00248{bottom:123.120000px;}
.y4d_c00248{bottom:137.370000px;}
.y25_c00248{bottom:140.970000px;}
.y4c_c00248{bottom:156.270000px;}
.y24_c00248{bottom:159.270000px;}
.y4b_c00248{bottom:173.520000px;}
.y23_c00248{bottom:177.420000px;}
.y4a_c00248{bottom:191.070000px;}
.y22_c00248{bottom:195.120000px;}
.y49_c00248{bottom:210.570000px;}
.y21_c00248{bottom:213.870000px;}
.y48_c00248{bottom:228.870000px;}
.y20_c00248{bottom:231.870000px;}
.y47_c00248{bottom:247.770000px;}
.y1f_c00248{bottom:250.470000px;}
.y46_c00248{bottom:265.170000px;}
.y1e_c00248{bottom:268.020000px;}
.y45_c00248{bottom:283.770000px;}
.y1d_c00248{bottom:286.470000px;}
.y44_c00248{bottom:301.020000px;}
.y1c_c00248{bottom:304.320000px;}
.y43_c00248{bottom:319.620000px;}
.y1b_c00248{bottom:322.020000px;}
.y42_c00248{bottom:337.620000px;}
.y1a_c00248{bottom:340.470000px;}
.y41_c00248{bottom:355.770000px;}
.y19_c00248{bottom:358.320000px;}
.y40_c00248{bottom:373.920000px;}
.y18_c00248{bottom:376.320000px;}
.y3f_c00248{bottom:392.220000px;}
.y17_c00248{bottom:394.770000px;}
.y3e_c00248{bottom:410.070000px;}
.y16_c00248{bottom:412.470000px;}
.y3d_c00248{bottom:428.520000px;}
.y15_c00248{bottom:430.620000px;}
.y3c_c00248{bottom:446.970000px;}
.y14_c00248{bottom:448.770000px;}
.y3b_c00248{bottom:464.970000px;}
.y13_c00248{bottom:465.720000px;}
.y3a_c00248{bottom:482.970000px;}
.y12_c00248{bottom:483.270000px;}
.y39_c00248{bottom:500.070000px;}
.y11_c00248{bottom:501.120000px;}
.y10_c00248{bottom:518.970000px;}
.y38_c00248{bottom:519.420000px;}
.yf_c00248{bottom:536.970000px;}
.y37_c00248{bottom:537.570000px;}
.ye_c00248{bottom:555.120000px;}
.y36_c00248{bottom:555.570000px;}
.yd_c00248{bottom:572.970000px;}
.y35_c00248{bottom:573.720000px;}
.yc_c00248{bottom:590.970000px;}
.y34_c00248{bottom:591.270000px;}
.yb_c00248{bottom:609.120000px;}
.y33_c00248{bottom:609.420000px;}
.ya_c00248{bottom:626.970000px;}
.y32_c00248{bottom:627.720000px;}
.y9_c00248{bottom:644.970000px;}
.y31_c00248{bottom:645.570000px;}
.y8_c00248{bottom:663.120000px;}
.y30_c00248{bottom:663.420000px;}
.y7_c00248{bottom:680.970000px;}
.y2f_c00248{bottom:681.420000px;}
.y6_c00248{bottom:698.670000px;}
.y2e_c00248{bottom:699.570000px;}
.y5_c00248{bottom:717.120000px;}
.y2d_c00248{bottom:717.870000px;}
.y4_c00248{bottom:734.970000px;}
.y2c_c00248{bottom:735.420000px;}
.y3_c00248{bottom:753.570000px;}
.y2_c00248{bottom:771.870000px;}
.y2b_c00248{bottom:772.170000px;}
.y1_c00248{bottom:791.670000px;}
.h5_c00248{height:13.200073px;}
.h6_c00248{height:43.804688px;}
.h4_c00248{height:62.880000px;}
.h3_c00248{height:64.020000px;}
.h2_c00248{height:72.312000px;}
.h0_c00248{height:829.950000px;}
.h1_c00248{height:830.250000px;}
.w2_c00248{width:104.875500px;}
.w1_c00248{width:582.000000px;}
.w0_c00248{width:582.150000px;}
.x0_c00248{left:0.000000px;}
.x6_c00248{left:23.250000px;}
.x9_c00248{left:24.300000px;}
.x7_c00248{left:27.000000px;}
.x2_c00248{left:84.300000px;}
.x3_c00248{left:85.350000px;}
.x4_c00248{left:86.700000px;}
.x8_c00248{left:88.050000px;}
.x5_c00248{left:114.450000px;}
.x1_c00248{left:209.850000px;}
.x11_c00248{left:242.889267px;}
.xb_c00248{left:292.050000px;}
.xe_c00248{left:295.650000px;}
.xf_c00248{left:298.800000px;}
.xa_c00248{left:300.450000px;}
.xc_c00248{left:302.100000px;}
.xd_c00248{left:303.150000px;}
.x10_c00248{left:466.800000px;}
@media print{
.v0_c00248{vertical-align:0.000000pt;}
.ls8_c00248{letter-spacing:0.000000pt;}
.ls3_c00248{letter-spacing:1.426667pt;}
.ls0_c00248{letter-spacing:1.600000pt;}
.ls4_c00248{letter-spacing:2.133333pt;}
.ls7_c00248{letter-spacing:2.666667pt;}
.ls5_c00248{letter-spacing:4.800000pt;}
.ls1_c00248{letter-spacing:8.800000pt;}
.ls6_c00248{letter-spacing:10.666667pt;}
.ls2_c00248{letter-spacing:13.813333pt;}
.ls9_c00248{letter-spacing:24.000000pt;}
.ws0_c00248{word-spacing:-21.120000pt;}
.ws6_c00248{word-spacing:-16.053333pt;}
.ws3_c00248{word-spacing:-12.586667pt;}
.ws5_c00248{word-spacing:-1.013333pt;}
.ws4_c00248{word-spacing:-0.800000pt;}
.ws1_c00248{word-spacing:-0.693333pt;}
.ws7_c00248{word-spacing:0.000000pt;}
.ws2_c00248{word-spacing:66.293333pt;}
._17_c00248{margin-left:-29.493333pt;}
._18_c00248{margin-left:-27.360000pt;}
._26_c00248{margin-left:-19.573333pt;}
._2d_c00248{margin-left:-15.512000pt;}
._2a_c00248{margin-left:-13.256000pt;}
._27_c00248{margin-left:-11.573333pt;}
._2e_c00248{margin-left:-10.210667pt;}
._10_c00248{margin-left:-9.218667pt;}
._16_c00248{margin-left:-8.120000pt;}
._24_c00248{margin-left:-6.957333pt;}
._5_c00248{margin-left:-5.229333pt;}
._6_c00248{margin-left:-3.994667pt;}
._19_c00248{margin-left:-3.034667pt;}
._0_c00248{margin-left:-2.085333pt;}
._b_c00248{margin-left:-1.066667pt;}
._2_c00248{width:1.288000pt;}
._4_c00248{width:3.032000pt;}
._e_c00248{width:3.954667pt;}
._3_c00248{width:5.013333pt;}
._d_c00248{width:6.026667pt;}
._15_c00248{width:6.986667pt;}
._14_c00248{width:8.298667pt;}
._c_c00248{width:9.997333pt;}
._11_c00248{width:11.280000pt;}
._12_c00248{width:12.538667pt;}
._1c_c00248{width:13.522667pt;}
._7_c00248{width:14.445333pt;}
._23_c00248{width:16.800000pt;}
._1e_c00248{width:17.797333pt;}
._a_c00248{width:18.773333pt;}
._f_c00248{width:20.328000pt;}
._29_c00248{width:22.026667pt;}
._9_c00248{width:23.114667pt;}
._1d_c00248{width:24.320000pt;}
._1f_c00248{width:25.818667pt;}
._2c_c00248{width:27.792000pt;}
._1_c00248{width:29.501333pt;}
._8_c00248{width:33.760000pt;}
._1a_c00248{width:35.154667pt;}
._13_c00248{width:37.173333pt;}
._30_c00248{width:39.426667pt;}
._2f_c00248{width:42.368000pt;}
._31_c00248{width:46.338667pt;}
._20_c00248{width:54.048000pt;}
._21_c00248{width:84.272000pt;}
._22_c00248{width:101.069333pt;}
._28_c00248{width:113.861333pt;}
._2b_c00248{width:127.037333pt;}
._25_c00248{width:168.576000pt;}
._1b_c00248{width:491.202667pt;}
.fs3_c00248{font-size:40.000000pt;}
.fs2_c00248{font-size:42.666667pt;}
.fs1_c00248{font-size:53.333333pt;}
.fs0_c00248{font-size:61.333333pt;}
.y0_c00248{bottom:0.000000pt;}
.y55_c00248{bottom:2.760000pt;}
.y54_c00248{bottom:6.425217pt;}
.y53_c00248{bottom:24.906667pt;}
.y52_c00248{bottom:41.440000pt;}
.y2a_c00248{bottom:44.106667pt;}
.y51_c00248{bottom:58.106667pt;}
.y29_c00248{bottom:62.373333pt;}
.y50_c00248{bottom:74.373333pt;}
.y28_c00248{bottom:79.173333pt;}
.y4f_c00248{bottom:90.506667pt;}
.y27_c00248{bottom:93.040000pt;}
.y4e_c00248{bottom:106.106667pt;}
.y26_c00248{bottom:109.440000pt;}
.y4d_c00248{bottom:122.106667pt;}
.y25_c00248{bottom:125.306667pt;}
.y4c_c00248{bottom:138.906667pt;}
.y24_c00248{bottom:141.573333pt;}
.y4b_c00248{bottom:154.240000pt;}
.y23_c00248{bottom:157.706667pt;}
.y4a_c00248{bottom:169.840000pt;}
.y22_c00248{bottom:173.440000pt;}
.y49_c00248{bottom:187.173333pt;}
.y21_c00248{bottom:190.106667pt;}
.y48_c00248{bottom:203.440000pt;}
.y20_c00248{bottom:206.106667pt;}
.y47_c00248{bottom:220.240000pt;}
.y1f_c00248{bottom:222.640000pt;}
.y46_c00248{bottom:235.706667pt;}
.y1e_c00248{bottom:238.240000pt;}
.y45_c00248{bottom:252.240000pt;}
.y1d_c00248{bottom:254.640000pt;}
.y44_c00248{bottom:267.573333pt;}
.y1c_c00248{bottom:270.506667pt;}
.y43_c00248{bottom:284.106667pt;}
.y1b_c00248{bottom:286.240000pt;}
.y42_c00248{bottom:300.106667pt;}
.y1a_c00248{bottom:302.640000pt;}
.y41_c00248{bottom:316.240000pt;}
.y19_c00248{bottom:318.506667pt;}
.y40_c00248{bottom:332.373333pt;}
.y18_c00248{bottom:334.506667pt;}
.y3f_c00248{bottom:348.640000pt;}
.y17_c00248{bottom:350.906667pt;}
.y3e_c00248{bottom:364.506667pt;}
.y16_c00248{bottom:366.640000pt;}
.y3d_c00248{bottom:380.906667pt;}
.y15_c00248{bottom:382.773333pt;}
.y3c_c00248{bottom:397.306667pt;}
.y14_c00248{bottom:398.906667pt;}
.y3b_c00248{bottom:413.306667pt;}
.y13_c00248{bottom:413.973333pt;}
.y3a_c00248{bottom:429.306667pt;}
.y12_c00248{bottom:429.573333pt;}
.y39_c00248{bottom:444.506667pt;}
.y11_c00248{bottom:445.440000pt;}
.y10_c00248{bottom:461.306667pt;}
.y38_c00248{bottom:461.706667pt;}
.yf_c00248{bottom:477.306667pt;}
.y37_c00248{bottom:477.840000pt;}
.ye_c00248{bottom:493.440000pt;}
.y36_c00248{bottom:493.840000pt;}
.yd_c00248{bottom:509.306667pt;}
.y35_c00248{bottom:509.973333pt;}
.yc_c00248{bottom:525.306667pt;}
.y34_c00248{bottom:525.573333pt;}
.yb_c00248{bottom:541.440000pt;}
.y33_c00248{bottom:541.706667pt;}
.ya_c00248{bottom:557.306667pt;}
.y32_c00248{bottom:557.973333pt;}
.y9_c00248{bottom:573.306667pt;}
.y31_c00248{bottom:573.840000pt;}
.y8_c00248{bottom:589.440000pt;}
.y30_c00248{bottom:589.706667pt;}
.y7_c00248{bottom:605.306667pt;}
.y2f_c00248{bottom:605.706667pt;}
.y6_c00248{bottom:621.040000pt;}
.y2e_c00248{bottom:621.840000pt;}
.y5_c00248{bottom:637.440000pt;}
.y2d_c00248{bottom:638.106667pt;}
.y4_c00248{bottom:653.306667pt;}
.y2c_c00248{bottom:653.706667pt;}
.y3_c00248{bottom:669.840000pt;}
.y2_c00248{bottom:686.106667pt;}
.y2b_c00248{bottom:686.373333pt;}
.y1_c00248{bottom:703.706667pt;}
.h5_c00248{height:11.733399pt;}
.h6_c00248{height:38.937500pt;}
.h4_c00248{height:55.893333pt;}
.h3_c00248{height:56.906667pt;}
.h2_c00248{height:64.277333pt;}
.h0_c00248{height:737.733333pt;}
.h1_c00248{height:738.000000pt;}
.w2_c00248{width:93.222667pt;}
.w1_c00248{width:517.333333pt;}
.w0_c00248{width:517.466667pt;}
.x0_c00248{left:0.000000pt;}
.x6_c00248{left:20.666667pt;}
.x9_c00248{left:21.600000pt;}
.x7_c00248{left:24.000000pt;}
.x2_c00248{left:74.933333pt;}
.x3_c00248{left:75.866667pt;}
.x4_c00248{left:77.066667pt;}
.x8_c00248{left:78.266667pt;}
.x5_c00248{left:101.733333pt;}
.x1_c00248{left:186.533333pt;}
.x11_c00248{left:215.901571pt;}
.xb_c00248{left:259.600000pt;}
.xe_c00248{left:262.800000pt;}
.xf_c00248{left:265.600000pt;}
.xa_c00248{left:267.066667pt;}
.xc_c00248{left:268.533333pt;}
.xd_c00248{left:269.466667pt;}
.x10_c00248{left:414.933333pt;}
}





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

.ir_c00249:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00249{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00249;src:url('chunks/assets/font_e8784c5cb18ef7d0720adcbc.woff2')format("woff");}.ff1_c00249{font-family:ff1_c00249;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00249;src:url('chunks/assets/font_54ac534f3ba0a1c36af6432f.woff2')format("woff");}.ff2_c00249{font-family:ff2_c00249;line-height:1.575000;font-style:normal;font-weight:normal;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_c77d3d9acf33c9d9ed6db413.woff2')format("woff");}.ff3_c00249{font-family:ff3_c00249;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00249;src:url('chunks/assets/font_f1d30454f6a501829fc7b71e.woff2')format("woff");}.ff4_c00249{font-family:ff4_c00249;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00249;src:url('chunks/assets/font_df51353b61f3b4bfddac0ce9.woff2')format("woff");}.ff5_c00249{font-family:ff5_c00249;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00249;src:url('chunks/assets/font_3cef2d5029bd738b6f2508d7.woff2')format("woff");}.ff6_c00249{font-family:ff6_c00249;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00249;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff7_c00249{font-family:ff7_c00249;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00249;src:url('chunks/assets/font_41acb28d7648a4354bf6f23d.woff2')format("woff");}.ff8_c00249{font-family:ff8_c00249;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00249;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff9_c00249{font-family:ff9_c00249;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00249{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00249{vertical-align:0.000000px;}
.v1_c00249{vertical-align:106.200000px;}
.ls9_c00249{letter-spacing:0.000000px;}
.ls1_c00249{letter-spacing:2.400000px;}
.ls4_c00249{letter-spacing:2.796000px;}
.ls3_c00249{letter-spacing:2.913000px;}
.ls5_c00249{letter-spacing:3.000000px;}
.ls7_c00249{letter-spacing:4.140000px;}
.ls2_c00249{letter-spacing:6.000000px;}
.ls0_c00249{letter-spacing:8.400000px;}
.lsa_c00249{letter-spacing:9.000000px;}
.ls8_c00249{letter-spacing:12.000000px;}
.ls6_c00249{letter-spacing:31.140000px;}
.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;}
}
.ws5_c00249{word-spacing:-50.022000px;}
.ws3_c00249{word-spacing:-42.189000px;}
.ws2_c00249{word-spacing:-20.340000px;}
.ws0_c00249{word-spacing:-18.060000px;}
.ws1_c00249{word-spacing:-14.160000px;}
.ws4_c00249{word-spacing:-12.291000px;}
.ws6_c00249{word-spacing:0.000000px;}
._1b_c00249{margin-left:-12.960000px;}
._d_c00249{margin-left:-10.401000px;}
._1d_c00249{margin-left:-9.138000px;}
._f_c00249{margin-left:-8.061000px;}
._1f_c00249{margin-left:-7.029000px;}
._c_c00249{margin-left:-5.259000px;}
._e_c00249{margin-left:-4.239000px;}
._0_c00249{margin-left:-2.961000px;}
._10_c00249{margin-left:-1.185000px;}
._8_c00249{width:1.260000px;}
._7_c00249{width:2.580000px;}
._18_c00249{width:3.600000px;}
._11_c00249{width:4.620000px;}
._2_c00249{width:6.552000px;}
._1a_c00249{width:7.770000px;}
._3_c00249{width:8.883000px;}
._4_c00249{width:10.521000px;}
._19_c00249{width:12.228000px;}
._16_c00249{width:13.368000px;}
._a_c00249{width:15.720000px;}
._17_c00249{width:16.800000px;}
._b_c00249{width:19.140000px;}
._1e_c00249{width:20.823000px;}
._21_c00249{width:22.302000px;}
._13_c00249{width:23.820000px;}
._22_c00249{width:29.802000px;}
._12_c00249{width:31.776000px;}
._14_c00249{width:36.510000px;}
._1c_c00249{width:46.521000px;}
._5_c00249{width:47.691000px;}
._20_c00249{width:49.740000px;}
._9_c00249{width:66.900000px;}
._15_c00249{width:73.395000px;}
._1_c00249{width:286.965000px;}
._6_c00249{width:395.760000px;}
.fc2_c00249{color:transparent;}
.fc1_c00249{color:rgb(128,128,128);}
.fc0_c00249{color:rgb(0,0,0);}
.fs5_c00249{font-size:48.000000px;}
.fs3_c00249{font-size:51.000000px;}
.fs1_c00249{font-size:60.000000px;}
.fs0_c00249{font-size:63.000000px;}
.fs2_c00249{font-size:69.000000px;}
.fs4_c00249{font-size:204.000000px;}
.y0_c00249{bottom:0.000000px;}
.y51_c00249{bottom:3.105000px;}
.y50_c00249{bottom:7.228369px;}
.y4f_c00249{bottom:56.670000px;}
.y2a_c00249{bottom:57.420000px;}
.y4e_c00249{bottom:74.970000px;}
.y29_c00249{bottom:76.620000px;}
.y4d_c00249{bottom:93.420000px;}
.y28_c00249{bottom:94.770000px;}
.y4c_c00249{bottom:111.270000px;}
.y27_c00249{bottom:112.620000px;}
.y4b_c00249{bottom:129.870000px;}
.y26_c00249{bottom:130.620000px;}
.y4a_c00249{bottom:147.720000px;}
.y25_c00249{bottom:149.070000px;}
.y49_c00249{bottom:165.720000px;}
.y24_c00249{bottom:166.620000px;}
.y48_c00249{bottom:184.170000px;}
.y23_c00249{bottom:185.220000px;}
.y47_c00249{bottom:202.170000px;}
.y22_c00249{bottom:203.820000px;}
.y46_c00249{bottom:220.620000px;}
.y21_c00249{bottom:221.670000px;}
.y45_c00249{bottom:238.920000px;}
.y20_c00249{bottom:239.670000px;}
.y44_c00249{bottom:256.920000px;}
.y1f_c00249{bottom:258.120000px;}
.y43_c00249{bottom:274.770000px;}
.y1e_c00249{bottom:276.120000px;}
.y42_c00249{bottom:292.620000px;}
.y1d_c00249{bottom:294.270000px;}
.y41_c00249{bottom:310.770000px;}
.y1c_c00249{bottom:312.570000px;}
.y40_c00249{bottom:329.070000px;}
.y1b_c00249{bottom:331.020000px;}
.y3f_c00249{bottom:347.670000px;}
.y1a_c00249{bottom:349.320000px;}
.y3e_c00249{bottom:365.520000px;}
.y19_c00249{bottom:366.870000px;}
.y3d_c00249{bottom:383.970000px;}
.y18_c00249{bottom:385.470000px;}
.y3c_c00249{bottom:401.970000px;}
.y17_c00249{bottom:403.920000px;}
.y3b_c00249{bottom:420.420000px;}
.y16_c00249{bottom:421.920000px;}
.y3a_c00249{bottom:438.420000px;}
.y15_c00249{bottom:440.070000px;}
.y39_c00249{bottom:457.020000px;}
.y14_c00249{bottom:458.670000px;}
.y38_c00249{bottom:475.470000px;}
.y13_c00249{bottom:476.820000px;}
.y37_c00249{bottom:493.020000px;}
.y12_c00249{bottom:494.370000px;}
.y35_c00249{bottom:502.920000px;}
.y36_c00249{bottom:511.020000px;}
.y11_c00249{bottom:512.970000px;}
.y10_c00249{bottom:531.270000px;}
.yf_c00249{bottom:549.120000px;}
.y34_c00249{bottom:565.620000px;}
.ye_c00249{bottom:567.570000px;}
.y33_c00249{bottom:584.520000px;}
.yd_c00249{bottom:585.870000px;}
.y32_c00249{bottom:602.820000px;}
.yc_c00249{bottom:604.170000px;}
.y31_c00249{bottom:620.370000px;}
.yb_c00249{bottom:622.020000px;}
.y30_c00249{bottom:638.220000px;}
.ya_c00249{bottom:640.170000px;}
.y2f_c00249{bottom:656.670000px;}
.y9_c00249{bottom:658.470000px;}
.y8_c00249{bottom:676.620000px;}
.y2e_c00249{bottom:691.470000px;}
.y7_c00249{bottom:694.470000px;}
.y6_c00249{bottom:713.070000px;}
.y2d_c00249{bottom:729.870000px;}
.y5_c00249{bottom:731.070000px;}
.y2c_c00249{bottom:748.170000px;}
.y4_c00249{bottom:749.520000px;}
.y2b_c00249{bottom:766.470000px;}
.y3_c00249{bottom:768.420000px;}
.y2_c00249{bottom:785.670000px;}
.y1_c00249{bottom:804.870000px;}
.ha_c00249{height:13.200073px;}
.hb_c00249{height:43.804688px;}
.h8_c00249{height:59.690918px;}
.h3_c00249{height:62.880000px;}
.h4_c00249{height:64.020000px;}
.h6_c00249{height:64.571777px;}
.h2_c00249{height:66.024000px;}
.h7_c00249{height:72.312000px;}
.h5_c00249{height:73.623000px;}
.h9_c00249{height:213.792000px;}
.h1_c00249{height:851.250000px;}
.h0_c00249{height:851.550000px;}
.w2_c00249{width:104.875500px;}
.w1_c00249{width:565.500000px;}
.w0_c00249{width:565.650000px;}
.x0_c00249{left:0.000000px;}
.x4_c00249{left:22.200000px;}
.xa_c00249{left:32.100000px;}
.xc_c00249{left:73.200000px;}
.xd_c00249{left:74.550000px;}
.xb_c00249{left:76.200000px;}
.x9_c00249{left:77.850000px;}
.x5_c00249{left:78.900000px;}
.x8_c00249{left:79.950000px;}
.x7_c00249{left:81.300000px;}
.x6_c00249{left:82.350000px;}
.x3_c00249{left:83.700000px;}
.x2_c00249{left:85.350000px;}
.x1_c00249{left:89.400000px;}
.x1a_c00249{left:234.639267px;}
.x18_c00249{left:292.950000px;}
.x19_c00249{left:294.600000px;}
.x17_c00249{left:295.950000px;}
.x12_c00249{left:297.300000px;}
.xf_c00249{left:299.250000px;}
.xe_c00249{left:300.600000px;}
.x15_c00249{left:302.100000px;}
.x13_c00249{left:311.400000px;}
.x11_c00249{left:334.500000px;}
.x16_c00249{left:341.550000px;}
.x10_c00249{left:375.000000px;}
.x14_c00249{left:379.350000px;}
@media print{
.v0_c00249{vertical-align:0.000000pt;}
.v1_c00249{vertical-align:94.400000pt;}
.ls9_c00249{letter-spacing:0.000000pt;}
.ls1_c00249{letter-spacing:2.133333pt;}
.ls4_c00249{letter-spacing:2.485333pt;}
.ls3_c00249{letter-spacing:2.589333pt;}
.ls5_c00249{letter-spacing:2.666667pt;}
.ls7_c00249{letter-spacing:3.680000pt;}
.ls2_c00249{letter-spacing:5.333333pt;}
.ls0_c00249{letter-spacing:7.466667pt;}
.lsa_c00249{letter-spacing:8.000000pt;}
.ls8_c00249{letter-spacing:10.666667pt;}
.ls6_c00249{letter-spacing:27.680000pt;}
.ws5_c00249{word-spacing:-44.464000pt;}
.ws3_c00249{word-spacing:-37.501333pt;}
.ws2_c00249{word-spacing:-18.080000pt;}
.ws0_c00249{word-spacing:-16.053333pt;}
.ws1_c00249{word-spacing:-12.586667pt;}
.ws4_c00249{word-spacing:-10.925333pt;}
.ws6_c00249{word-spacing:0.000000pt;}
._1b_c00249{margin-left:-11.520000pt;}
._d_c00249{margin-left:-9.245333pt;}
._1d_c00249{margin-left:-8.122667pt;}
._f_c00249{margin-left:-7.165333pt;}
._1f_c00249{margin-left:-6.248000pt;}
._c_c00249{margin-left:-4.674667pt;}
._e_c00249{margin-left:-3.768000pt;}
._0_c00249{margin-left:-2.632000pt;}
._10_c00249{margin-left:-1.053333pt;}
._8_c00249{width:1.120000pt;}
._7_c00249{width:2.293333pt;}
._18_c00249{width:3.200000pt;}
._11_c00249{width:4.106667pt;}
._2_c00249{width:5.824000pt;}
._1a_c00249{width:6.906667pt;}
._3_c00249{width:7.896000pt;}
._4_c00249{width:9.352000pt;}
._19_c00249{width:10.869333pt;}
._16_c00249{width:11.882667pt;}
._a_c00249{width:13.973333pt;}
._17_c00249{width:14.933333pt;}
._b_c00249{width:17.013333pt;}
._1e_c00249{width:18.509333pt;}
._21_c00249{width:19.824000pt;}
._13_c00249{width:21.173333pt;}
._22_c00249{width:26.490667pt;}
._12_c00249{width:28.245333pt;}
._14_c00249{width:32.453333pt;}
._1c_c00249{width:41.352000pt;}
._5_c00249{width:42.392000pt;}
._20_c00249{width:44.213333pt;}
._9_c00249{width:59.466667pt;}
._15_c00249{width:65.240000pt;}
._1_c00249{width:255.080000pt;}
._6_c00249{width:351.786667pt;}
.fs5_c00249{font-size:42.666667pt;}
.fs3_c00249{font-size:45.333333pt;}
.fs1_c00249{font-size:53.333333pt;}
.fs0_c00249{font-size:56.000000pt;}
.fs2_c00249{font-size:61.333333pt;}
.fs4_c00249{font-size:181.333333pt;}
.y0_c00249{bottom:0.000000pt;}
.y51_c00249{bottom:2.760000pt;}
.y50_c00249{bottom:6.425217pt;}
.y4f_c00249{bottom:50.373333pt;}
.y2a_c00249{bottom:51.040000pt;}
.y4e_c00249{bottom:66.640000pt;}
.y29_c00249{bottom:68.106667pt;}
.y4d_c00249{bottom:83.040000pt;}
.y28_c00249{bottom:84.240000pt;}
.y4c_c00249{bottom:98.906667pt;}
.y27_c00249{bottom:100.106667pt;}
.y4b_c00249{bottom:115.440000pt;}
.y26_c00249{bottom:116.106667pt;}
.y4a_c00249{bottom:131.306667pt;}
.y25_c00249{bottom:132.506667pt;}
.y49_c00249{bottom:147.306667pt;}
.y24_c00249{bottom:148.106667pt;}
.y48_c00249{bottom:163.706667pt;}
.y23_c00249{bottom:164.640000pt;}
.y47_c00249{bottom:179.706667pt;}
.y22_c00249{bottom:181.173333pt;}
.y46_c00249{bottom:196.106667pt;}
.y21_c00249{bottom:197.040000pt;}
.y45_c00249{bottom:212.373333pt;}
.y20_c00249{bottom:213.040000pt;}
.y44_c00249{bottom:228.373333pt;}
.y1f_c00249{bottom:229.440000pt;}
.y43_c00249{bottom:244.240000pt;}
.y1e_c00249{bottom:245.440000pt;}
.y42_c00249{bottom:260.106667pt;}
.y1d_c00249{bottom:261.573333pt;}
.y41_c00249{bottom:276.240000pt;}
.y1c_c00249{bottom:277.840000pt;}
.y40_c00249{bottom:292.506667pt;}
.y1b_c00249{bottom:294.240000pt;}
.y3f_c00249{bottom:309.040000pt;}
.y1a_c00249{bottom:310.506667pt;}
.y3e_c00249{bottom:324.906667pt;}
.y19_c00249{bottom:326.106667pt;}
.y3d_c00249{bottom:341.306667pt;}
.y18_c00249{bottom:342.640000pt;}
.y3c_c00249{bottom:357.306667pt;}
.y17_c00249{bottom:359.040000pt;}
.y3b_c00249{bottom:373.706667pt;}
.y16_c00249{bottom:375.040000pt;}
.y3a_c00249{bottom:389.706667pt;}
.y15_c00249{bottom:391.173333pt;}
.y39_c00249{bottom:406.240000pt;}
.y14_c00249{bottom:407.706667pt;}
.y38_c00249{bottom:422.640000pt;}
.y13_c00249{bottom:423.840000pt;}
.y37_c00249{bottom:438.240000pt;}
.y12_c00249{bottom:439.440000pt;}
.y35_c00249{bottom:447.040000pt;}
.y36_c00249{bottom:454.240000pt;}
.y11_c00249{bottom:455.973333pt;}
.y10_c00249{bottom:472.240000pt;}
.yf_c00249{bottom:488.106667pt;}
.y34_c00249{bottom:502.773333pt;}
.ye_c00249{bottom:504.506667pt;}
.y33_c00249{bottom:519.573333pt;}
.yd_c00249{bottom:520.773333pt;}
.y32_c00249{bottom:535.840000pt;}
.yc_c00249{bottom:537.040000pt;}
.y31_c00249{bottom:551.440000pt;}
.yb_c00249{bottom:552.906667pt;}
.y30_c00249{bottom:567.306667pt;}
.ya_c00249{bottom:569.040000pt;}
.y2f_c00249{bottom:583.706667pt;}
.y9_c00249{bottom:585.306667pt;}
.y8_c00249{bottom:601.440000pt;}
.y2e_c00249{bottom:614.640000pt;}
.y7_c00249{bottom:617.306667pt;}
.y6_c00249{bottom:633.840000pt;}
.y2d_c00249{bottom:648.773333pt;}
.y5_c00249{bottom:649.840000pt;}
.y2c_c00249{bottom:665.040000pt;}
.y4_c00249{bottom:666.240000pt;}
.y2b_c00249{bottom:681.306667pt;}
.y3_c00249{bottom:683.040000pt;}
.y2_c00249{bottom:698.373333pt;}
.y1_c00249{bottom:715.440000pt;}
.ha_c00249{height:11.733399pt;}
.hb_c00249{height:38.937500pt;}
.h8_c00249{height:53.058594pt;}
.h3_c00249{height:55.893333pt;}
.h4_c00249{height:56.906667pt;}
.h6_c00249{height:57.397135pt;}
.h2_c00249{height:58.688000pt;}
.h7_c00249{height:64.277333pt;}
.h5_c00249{height:65.442667pt;}
.h9_c00249{height:190.037333pt;}
.h1_c00249{height:756.666667pt;}
.h0_c00249{height:756.933333pt;}
.w2_c00249{width:93.222667pt;}
.w1_c00249{width:502.666667pt;}
.w0_c00249{width:502.800000pt;}
.x0_c00249{left:0.000000pt;}
.x4_c00249{left:19.733333pt;}
.xa_c00249{left:28.533333pt;}
.xc_c00249{left:65.066667pt;}
.xd_c00249{left:66.266667pt;}
.xb_c00249{left:67.733333pt;}
.x9_c00249{left:69.200000pt;}
.x5_c00249{left:70.133333pt;}
.x8_c00249{left:71.066667pt;}
.x7_c00249{left:72.266667pt;}
.x6_c00249{left:73.200000pt;}
.x3_c00249{left:74.400000pt;}
.x2_c00249{left:75.866667pt;}
.x1_c00249{left:79.466667pt;}
.x1a_c00249{left:208.568237pt;}
.x18_c00249{left:260.400000pt;}
.x19_c00249{left:261.866667pt;}
.x17_c00249{left:263.066667pt;}
.x12_c00249{left:264.266667pt;}
.xf_c00249{left:266.000000pt;}
.xe_c00249{left:267.200000pt;}
.x15_c00249{left:268.533333pt;}
.x13_c00249{left:276.800000pt;}
.x11_c00249{left:297.333333pt;}
.x16_c00249{left:303.600000pt;}
.x10_c00249{left:333.333333pt;}
.x14_c00249{left:337.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f5633a6e60af111bff59ced7.woff2')format("woff");}.ff1_c00250{font-family:ff1_c00250;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00250;src:url('chunks/assets/font_896b2b9fcebdbece3d932a4a.woff2')format("woff");}.ff2_c00250{font-family:ff2_c00250;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00250;src:url('chunks/assets/font_ca3adc7ea5ceb3a770fac505.woff2')format("woff");}.ff3_c00250{font-family:ff3_c00250;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00250;src:url('chunks/assets/font_35726fc46428e55b323aac84.woff2')format("woff");}.ff4_c00250{font-family:ff4_c00250;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00250;src:url('chunks/assets/font_92ca075ef189edc9c8491e79.woff2')format("woff");}.ff5_c00250{font-family:ff5_c00250;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00250;src:url('chunks/assets/font_f3edba928853db29efa18e26.woff2')format("woff");}.ff6_c00250{font-family:ff6_c00250;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00250;src:url('chunks/assets/font_f5eab470584c4dac6671437b.woff2')format("woff");}.ff7_c00250{font-family:ff7_c00250;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00250;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff8_c00250{font-family:ff8_c00250;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00250{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00250{vertical-align:0.000000px;}
.ls6_c00250{letter-spacing:0.000000px;}
.ls2_c00250{letter-spacing:2.628000px;}
.ls1_c00250{letter-spacing:3.000000px;}
.ls5_c00250{letter-spacing:3.846000px;}
.ls7_c00250{letter-spacing:6.000000px;}
.ls0_c00250{letter-spacing:14.943000px;}
.ls8_c00250{letter-spacing:15.000000px;}
.ls4_c00250{letter-spacing:36.792000px;}
.ls3_c00250{letter-spacing:40.143000px;}
.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:-35.295000px;}
.ws4_c00250{word-spacing:-30.057000px;}
.ws3_c00250{word-spacing:-18.060000px;}
.ws5_c00250{word-spacing:-18.057000px;}
.ws6_c00250{word-spacing:-15.744000px;}
.ws1_c00250{word-spacing:-12.366000px;}
.ws2_c00250{word-spacing:-0.198000px;}
.ws7_c00250{word-spacing:0.000000px;}
._2a_c00250{margin-left:-19.392000px;}
._21_c00250{margin-left:-15.783000px;}
._1c_c00250{margin-left:-13.737000px;}
._20_c00250{margin-left:-12.129000px;}
._11_c00250{margin-left:-10.584000px;}
._7_c00250{margin-left:-8.679000px;}
._1e_c00250{margin-left:-7.419000px;}
._14_c00250{margin-left:-6.048000px;}
._16_c00250{margin-left:-4.974000px;}
._e_c00250{margin-left:-3.786000px;}
._f_c00250{margin-left:-2.568000px;}
._10_c00250{margin-left:-1.506000px;}
._0_c00250{width:1.404000px;}
._2_c00250{width:2.592000px;}
._3_c00250{width:4.266000px;}
._18_c00250{width:5.460000px;}
._8_c00250{width:6.696000px;}
._17_c00250{width:7.698000px;}
._b_c00250{width:8.820000px;}
._13_c00250{width:10.503000px;}
._22_c00250{width:11.634000px;}
._d_c00250{width:12.660000px;}
._15_c00250{width:14.373000px;}
._1f_c00250{width:16.335000px;}
._27_c00250{width:17.928000px;}
._9_c00250{width:20.088000px;}
._1d_c00250{width:23.058000px;}
._19_c00250{width:24.090000px;}
._5_c00250{width:26.838000px;}
._4_c00250{width:28.620000px;}
._26_c00250{width:30.834000px;}
._2b_c00250{width:32.133000px;}
._1b_c00250{width:33.216000px;}
._12_c00250{width:34.938000px;}
._28_c00250{width:36.396000px;}
._29_c00250{width:39.135000px;}
._23_c00250{width:45.318000px;}
._1a_c00250{width:61.392000px;}
._c_c00250{width:65.976000px;}
._6_c00250{width:68.586000px;}
._1_c00250{width:83.808000px;}
._24_c00250{width:107.427000px;}
._25_c00250{width:151.485000px;}
._a_c00250{width:476.799000px;}
.fc2_c00250{color:transparent;}
.fc1_c00250{color:rgb(128,128,128);}
.fc0_c00250{color:rgb(0,0,0);}
.fs2_c00250{font-size:45.000000px;}
.fs4_c00250{font-size:48.000000px;}
.fs0_c00250{font-size:54.000000px;}
.fs1_c00250{font-size:60.000000px;}
.fs3_c00250{font-size:63.000000px;}
.y0_c00250{bottom:0.000000px;}
.y54_c00250{bottom:3.105000px;}
.y53_c00250{bottom:7.228369px;}
.y52_c00250{bottom:25.620000px;}
.y51_c00250{bottom:45.270000px;}
.y29_c00250{bottom:49.920000px;}
.y50_c00250{bottom:64.170000px;}
.y28_c00250{bottom:68.820000px;}
.y4f_c00250{bottom:82.320000px;}
.y27_c00250{bottom:86.970000px;}
.y4e_c00250{bottom:100.020000px;}
.y26_c00250{bottom:103.320000px;}
.y4d_c00250{bottom:118.470000px;}
.y25_c00250{bottom:122.820000px;}
.y4c_c00250{bottom:136.920000px;}
.y24_c00250{bottom:141.120000px;}
.y4b_c00250{bottom:155.220000px;}
.y23_c00250{bottom:159.570000px;}
.y4a_c00250{bottom:173.070000px;}
.y22_c00250{bottom:178.470000px;}
.y49_c00250{bottom:191.970000px;}
.y21_c00250{bottom:195.720000px;}
.y48_c00250{bottom:209.220000px;}
.y20_c00250{bottom:214.020000px;}
.y47_c00250{bottom:228.120000px;}
.y1f_c00250{bottom:232.920000px;}
.y46_c00250{bottom:246.270000px;}
.y1e_c00250{bottom:248.970000px;}
.y45_c00250{bottom:263.820000px;}
.y1d_c00250{bottom:268.620000px;}
.y44_c00250{bottom:282.420000px;}
.y1c_c00250{bottom:287.220000px;}
.y43_c00250{bottom:300.270000px;}
.y1b_c00250{bottom:304.770000px;}
.y42_c00250{bottom:317.520000px;}
.y1a_c00250{bottom:322.920000px;}
.y41_c00250{bottom:337.170000px;}
.y19_c00250{bottom:340.920000px;}
.y40_c00250{bottom:355.320000px;}
.y18_c00250{bottom:359.370000px;}
.y3f_c00250{bottom:373.170000px;}
.y17_c00250{bottom:376.920000px;}
.y3e_c00250{bottom:391.470000px;}
.y16_c00250{bottom:395.520000px;}
.y3d_c00250{bottom:409.620000px;}
.y15_c00250{bottom:413.670000px;}
.y3c_c00250{bottom:427.920000px;}
.y14_c00250{bottom:431.370000px;}
.y3b_c00250{bottom:446.520000px;}
.y13_c00250{bottom:449.820000px;}
.y3a_c00250{bottom:464.070000px;}
.y12_c00250{bottom:467.820000px;}
.y39_c00250{bottom:482.220000px;}
.y11_c00250{bottom:485.970000px;}
.y38_c00250{bottom:501.120000px;}
.y10_c00250{bottom:503.220000px;}
.y37_c00250{bottom:519.420000px;}
.yf_c00250{bottom:521.820000px;}
.y36_c00250{bottom:537.270000px;}
.ye_c00250{bottom:539.670000px;}
.y35_c00250{bottom:554.520000px;}
.yd_c00250{bottom:558.120000px;}
.y34_c00250{bottom:574.020000px;}
.yc_c00250{bottom:577.470000px;}
.y33_c00250{bottom:590.670000px;}
.yb_c00250{bottom:594.570000px;}
.y32_c00250{bottom:609.420000px;}
.ya_c00250{bottom:613.170000px;}
.y31_c00250{bottom:626.370000px;}
.y9_c00250{bottom:629.820000px;}
.y30_c00250{bottom:644.520000px;}
.y8_c00250{bottom:648.570000px;}
.y2f_c00250{bottom:663.420000px;}
.y7_c00250{bottom:666.120000px;}
.y2e_c00250{bottom:681.420000px;}
.y6_c00250{bottom:684.420000px;}
.y2d_c00250{bottom:698.520000px;}
.y5_c00250{bottom:702.570000px;}
.y2c_c00250{bottom:718.770000px;}
.y4_c00250{bottom:720.270000px;}
.y2b_c00250{bottom:737.070000px;}
.y3_c00250{bottom:737.370000px;}
.y2_c00250{bottom:755.670000px;}
.y2a_c00250{bottom:773.220000px;}
.y1_c00250{bottom:774.570000px;}
.h6_c00250{height:13.200073px;}
.h7_c00250{height:43.804688px;}
.h2_c00250{height:56.592000px;}
.h3_c00250{height:62.880000px;}
.h4_c00250{height:66.024000px;}
.h5_c00250{height:68.292000px;}
.h0_c00250{height:829.950000px;}
.h1_c00250{height:830.250000px;}
.w2_c00250{width:104.875500px;}
.w1_c00250{width:582.000000px;}
.w0_c00250{width:582.150000px;}
.x0_c00250{left:0.000000px;}
.x1_c00250{left:22.650000px;}
.x2_c00250{left:23.850000px;}
.x7_c00250{left:65.100000px;}
.x3_c00250{left:83.400000px;}
.x4_c00250{left:84.750000px;}
.x5_c00250{left:86.100000px;}
.x6_c00250{left:88.050000px;}
.x8_c00250{left:89.550000px;}
.x9_c00250{left:90.750000px;}
.xa_c00250{left:92.250000px;}
.x12_c00250{left:242.889267px;}
.xb_c00250{left:301.050000px;}
.xc_c00250{left:302.700000px;}
.xe_c00250{left:303.750000px;}
.xf_c00250{left:305.100000px;}
.x10_c00250{left:306.150000px;}
.xd_c00250{left:319.950000px;}
.x11_c00250{left:467.400000px;}
@media print{
.v0_c00250{vertical-align:0.000000pt;}
.ls6_c00250{letter-spacing:0.000000pt;}
.ls2_c00250{letter-spacing:2.336000pt;}
.ls1_c00250{letter-spacing:2.666667pt;}
.ls5_c00250{letter-spacing:3.418667pt;}
.ls7_c00250{letter-spacing:5.333333pt;}
.ls0_c00250{letter-spacing:13.282667pt;}
.ls8_c00250{letter-spacing:13.333333pt;}
.ls4_c00250{letter-spacing:32.704000pt;}
.ls3_c00250{letter-spacing:35.682667pt;}
.ws0_c00250{word-spacing:-31.373333pt;}
.ws4_c00250{word-spacing:-26.717333pt;}
.ws3_c00250{word-spacing:-16.053333pt;}
.ws5_c00250{word-spacing:-16.050667pt;}
.ws6_c00250{word-spacing:-13.994667pt;}
.ws1_c00250{word-spacing:-10.992000pt;}
.ws2_c00250{word-spacing:-0.176000pt;}
.ws7_c00250{word-spacing:0.000000pt;}
._2a_c00250{margin-left:-17.237333pt;}
._21_c00250{margin-left:-14.029333pt;}
._1c_c00250{margin-left:-12.210667pt;}
._20_c00250{margin-left:-10.781333pt;}
._11_c00250{margin-left:-9.408000pt;}
._7_c00250{margin-left:-7.714667pt;}
._1e_c00250{margin-left:-6.594667pt;}
._14_c00250{margin-left:-5.376000pt;}
._16_c00250{margin-left:-4.421333pt;}
._e_c00250{margin-left:-3.365333pt;}
._f_c00250{margin-left:-2.282667pt;}
._10_c00250{margin-left:-1.338667pt;}
._0_c00250{width:1.248000pt;}
._2_c00250{width:2.304000pt;}
._3_c00250{width:3.792000pt;}
._18_c00250{width:4.853333pt;}
._8_c00250{width:5.952000pt;}
._17_c00250{width:6.842667pt;}
._b_c00250{width:7.840000pt;}
._13_c00250{width:9.336000pt;}
._22_c00250{width:10.341333pt;}
._d_c00250{width:11.253333pt;}
._15_c00250{width:12.776000pt;}
._1f_c00250{width:14.520000pt;}
._27_c00250{width:15.936000pt;}
._9_c00250{width:17.856000pt;}
._1d_c00250{width:20.496000pt;}
._19_c00250{width:21.413333pt;}
._5_c00250{width:23.856000pt;}
._4_c00250{width:25.440000pt;}
._26_c00250{width:27.408000pt;}
._2b_c00250{width:28.562667pt;}
._1b_c00250{width:29.525333pt;}
._12_c00250{width:31.056000pt;}
._28_c00250{width:32.352000pt;}
._29_c00250{width:34.786667pt;}
._23_c00250{width:40.282667pt;}
._1a_c00250{width:54.570667pt;}
._c_c00250{width:58.645333pt;}
._6_c00250{width:60.965333pt;}
._1_c00250{width:74.496000pt;}
._24_c00250{width:95.490667pt;}
._25_c00250{width:134.653333pt;}
._a_c00250{width:423.821333pt;}
.fs2_c00250{font-size:40.000000pt;}
.fs4_c00250{font-size:42.666667pt;}
.fs0_c00250{font-size:48.000000pt;}
.fs1_c00250{font-size:53.333333pt;}
.fs3_c00250{font-size:56.000000pt;}
.y0_c00250{bottom:0.000000pt;}
.y54_c00250{bottom:2.760000pt;}
.y53_c00250{bottom:6.425217pt;}
.y52_c00250{bottom:22.773333pt;}
.y51_c00250{bottom:40.240000pt;}
.y29_c00250{bottom:44.373333pt;}
.y50_c00250{bottom:57.040000pt;}
.y28_c00250{bottom:61.173333pt;}
.y4f_c00250{bottom:73.173333pt;}
.y27_c00250{bottom:77.306667pt;}
.y4e_c00250{bottom:88.906667pt;}
.y26_c00250{bottom:91.840000pt;}
.y4d_c00250{bottom:105.306667pt;}
.y25_c00250{bottom:109.173333pt;}
.y4c_c00250{bottom:121.706667pt;}
.y24_c00250{bottom:125.440000pt;}
.y4b_c00250{bottom:137.973333pt;}
.y23_c00250{bottom:141.840000pt;}
.y4a_c00250{bottom:153.840000pt;}
.y22_c00250{bottom:158.640000pt;}
.y49_c00250{bottom:170.640000pt;}
.y21_c00250{bottom:173.973333pt;}
.y48_c00250{bottom:185.973333pt;}
.y20_c00250{bottom:190.240000pt;}
.y47_c00250{bottom:202.773333pt;}
.y1f_c00250{bottom:207.040000pt;}
.y46_c00250{bottom:218.906667pt;}
.y1e_c00250{bottom:221.306667pt;}
.y45_c00250{bottom:234.506667pt;}
.y1d_c00250{bottom:238.773333pt;}
.y44_c00250{bottom:251.040000pt;}
.y1c_c00250{bottom:255.306667pt;}
.y43_c00250{bottom:266.906667pt;}
.y1b_c00250{bottom:270.906667pt;}
.y42_c00250{bottom:282.240000pt;}
.y1a_c00250{bottom:287.040000pt;}
.y41_c00250{bottom:299.706667pt;}
.y19_c00250{bottom:303.040000pt;}
.y40_c00250{bottom:315.840000pt;}
.y18_c00250{bottom:319.440000pt;}
.y3f_c00250{bottom:331.706667pt;}
.y17_c00250{bottom:335.040000pt;}
.y3e_c00250{bottom:347.973333pt;}
.y16_c00250{bottom:351.573333pt;}
.y3d_c00250{bottom:364.106667pt;}
.y15_c00250{bottom:367.706667pt;}
.y3c_c00250{bottom:380.373333pt;}
.y14_c00250{bottom:383.440000pt;}
.y3b_c00250{bottom:396.906667pt;}
.y13_c00250{bottom:399.840000pt;}
.y3a_c00250{bottom:412.506667pt;}
.y12_c00250{bottom:415.840000pt;}
.y39_c00250{bottom:428.640000pt;}
.y11_c00250{bottom:431.973333pt;}
.y38_c00250{bottom:445.440000pt;}
.y10_c00250{bottom:447.306667pt;}
.y37_c00250{bottom:461.706667pt;}
.yf_c00250{bottom:463.840000pt;}
.y36_c00250{bottom:477.573333pt;}
.ye_c00250{bottom:479.706667pt;}
.y35_c00250{bottom:492.906667pt;}
.yd_c00250{bottom:496.106667pt;}
.y34_c00250{bottom:510.240000pt;}
.yc_c00250{bottom:513.306667pt;}
.y33_c00250{bottom:525.040000pt;}
.yb_c00250{bottom:528.506667pt;}
.y32_c00250{bottom:541.706667pt;}
.ya_c00250{bottom:545.040000pt;}
.y31_c00250{bottom:556.773333pt;}
.y9_c00250{bottom:559.840000pt;}
.y30_c00250{bottom:572.906667pt;}
.y8_c00250{bottom:576.506667pt;}
.y2f_c00250{bottom:589.706667pt;}
.y7_c00250{bottom:592.106667pt;}
.y2e_c00250{bottom:605.706667pt;}
.y6_c00250{bottom:608.373333pt;}
.y2d_c00250{bottom:620.906667pt;}
.y5_c00250{bottom:624.506667pt;}
.y2c_c00250{bottom:638.906667pt;}
.y4_c00250{bottom:640.240000pt;}
.y2b_c00250{bottom:655.173333pt;}
.y3_c00250{bottom:655.440000pt;}
.y2_c00250{bottom:671.706667pt;}
.y2a_c00250{bottom:687.306667pt;}
.y1_c00250{bottom:688.506667pt;}
.h6_c00250{height:11.733399pt;}
.h7_c00250{height:38.937500pt;}
.h2_c00250{height:50.304000pt;}
.h3_c00250{height:55.893333pt;}
.h4_c00250{height:58.688000pt;}
.h5_c00250{height:60.704000pt;}
.h0_c00250{height:737.733333pt;}
.h1_c00250{height:738.000000pt;}
.w2_c00250{width:93.222667pt;}
.w1_c00250{width:517.333333pt;}
.w0_c00250{width:517.466667pt;}
.x0_c00250{left:0.000000pt;}
.x1_c00250{left:20.133333pt;}
.x2_c00250{left:21.200000pt;}
.x7_c00250{left:57.866667pt;}
.x3_c00250{left:74.133333pt;}
.x4_c00250{left:75.333333pt;}
.x5_c00250{left:76.533333pt;}
.x6_c00250{left:78.266667pt;}
.x8_c00250{left:79.600000pt;}
.x9_c00250{left:80.666667pt;}
.xa_c00250{left:82.000000pt;}
.x12_c00250{left:215.901571pt;}
.xb_c00250{left:267.600000pt;}
.xc_c00250{left:269.066667pt;}
.xe_c00250{left:270.000000pt;}
.xf_c00250{left:271.200000pt;}
.x10_c00250{left:272.133333pt;}
.xd_c00250{left:284.400000pt;}
.x11_c00250{left:415.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_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_d8c5d8ef0ea52e7d1afd7715.woff2')format("woff");}.ff1_c00251{font-family:ff1_c00251;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00251;src:url('chunks/assets/font_20c97982c89b2b156a985cdc.woff2')format("woff");}.ff2_c00251{font-family:ff2_c00251;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00251;src:url('chunks/assets/font_5e3db639277c62e423a4ef11.woff2')format("woff");}.ff3_c00251{font-family:ff3_c00251;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00251;src:url('chunks/assets/font_d2674c8c24d9014322d50a4b.woff2')format("woff");}.ff4_c00251{font-family:ff4_c00251;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00251;src:url('chunks/assets/font_4c34b2487e295245467c91e3.woff2')format("woff");}.ff5_c00251{font-family:ff5_c00251;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00251;src:url('chunks/assets/font_67015b104b0fd2f7c45f27d6.woff2')format("woff");}.ff6_c00251{font-family:ff6_c00251;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00251;src:url('chunks/assets/font_53970840027122674b0aca81.woff2')format("woff");}.ff7_c00251{font-family:ff7_c00251;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00251;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff8_c00251{font-family:ff8_c00251;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00251{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00251{vertical-align:0.000000px;}
.ls5_c00251{letter-spacing:0.000000px;}
.ls3_c00251{letter-spacing:3.000000px;}
.ls6_c00251{letter-spacing:6.000000px;}
.ls0_c00251{letter-spacing:8.805000px;}
.ls4_c00251{letter-spacing:9.000000px;}
.ls2_c00251{letter-spacing:15.000000px;}
.ls1_c00251{letter-spacing:21.540000px;}
.sc__c00251{text-shadow:none;}
.sc0_c00251{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00251{-webkit-text-stroke:0px transparent;}
.sc0_c00251{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00251{word-spacing:-20.340000px;}
.ws0_c00251{word-spacing:-14.160000px;}
.ws2_c00251{word-spacing:0.000000px;}
._0_c00251{margin-left:-13.824000px;}
._2b_c00251{margin-left:-10.680000px;}
._22_c00251{margin-left:-7.968000px;}
._38_c00251{margin-left:-6.480000px;}
._12_c00251{margin-left:-5.160000px;}
._d_c00251{margin-left:-3.540000px;}
._4_c00251{margin-left:-2.100000px;}
._f_c00251{margin-left:-1.044000px;}
._9_c00251{width:1.380000px;}
._5_c00251{width:2.520000px;}
._3_c00251{width:4.392000px;}
._17_c00251{width:5.520000px;}
._7_c00251{width:6.888000px;}
._21_c00251{width:8.280000px;}
._b_c00251{width:9.300000px;}
._c_c00251{width:10.716000px;}
._a_c00251{width:12.900000px;}
._19_c00251{width:14.124000px;}
._6_c00251{width:15.720000px;}
._2_c00251{width:17.640000px;}
._28_c00251{width:19.020000px;}
._1b_c00251{width:20.040000px;}
._15_c00251{width:21.840000px;}
._14_c00251{width:22.980000px;}
._1c_c00251{width:24.600000px;}
._1f_c00251{width:26.580000px;}
._20_c00251{width:28.380000px;}
._30_c00251{width:34.068000px;}
._2a_c00251{width:35.112000px;}
._16_c00251{width:36.480000px;}
._31_c00251{width:41.580000px;}
._2e_c00251{width:49.440000px;}
._2f_c00251{width:56.328000px;}
._11_c00251{width:58.980000px;}
._8_c00251{width:60.840000px;}
._e_c00251{width:62.640000px;}
._24_c00251{width:67.476000px;}
._18_c00251{width:69.924000px;}
._1d_c00251{width:72.300000px;}
._1a_c00251{width:74.484000px;}
._1e_c00251{width:76.800000px;}
._2c_c00251{width:78.156000px;}
._25_c00251{width:79.344000px;}
._27_c00251{width:81.240000px;}
._29_c00251{width:83.052000px;}
._2d_c00251{width:84.072000px;}
._13_c00251{width:85.920000px;}
._34_c00251{width:87.420000px;}
._32_c00251{width:88.752000px;}
._35_c00251{width:90.264000px;}
._33_c00251{width:91.896000px;}
._37_c00251{width:94.488000px;}
._23_c00251{width:96.324000px;}
._3a_c00251{width:98.064000px;}
._39_c00251{width:99.864000px;}
._36_c00251{width:122.808000px;}
._26_c00251{width:161.568000px;}
._10_c00251{width:236.742000px;}
._1_c00251{width:292.896000px;}
.fc2_c00251{color:transparent;}
.fc1_c00251{color:rgb(128,128,128);}
.fc0_c00251{color:rgb(0,0,0);}
.fs2_c00251{font-size:39.000000px;}
.fs4_c00251{font-size:45.000000px;}
.fs5_c00251{font-size:48.000000px;}
.fs3_c00251{font-size:54.000000px;}
.fs1_c00251{font-size:60.000000px;}
.fs0_c00251{font-size:72.000000px;}
.y0_c00251{bottom:0.000000px;}
.y2c_c00251{bottom:3.105000px;}
.y2b_c00251{bottom:7.228357px;}
.y2a_c00251{bottom:60.180000px;}
.y29_c00251{bottom:78.030000px;}
.y28_c00251{bottom:96.180000px;}
.y27_c00251{bottom:114.180000px;}
.y26_c00251{bottom:132.630000px;}
.y25_c00251{bottom:150.630000px;}
.y24_c00251{bottom:168.480000px;}
.y23_c00251{bottom:187.080000px;}
.y22_c00251{bottom:205.230000px;}
.y21_c00251{bottom:223.080000px;}
.y20_c00251{bottom:241.080000px;}
.y1f_c00251{bottom:259.530000px;}
.y1e_c00251{bottom:277.380000px;}
.y1d_c00251{bottom:295.680000px;}
.y1c_c00251{bottom:313.230000px;}
.y1b_c00251{bottom:331.830000px;}
.y1a_c00251{bottom:349.980000px;}
.y19_c00251{bottom:368.280000px;}
.y18_c00251{bottom:386.130000px;}
.y17_c00251{bottom:403.680000px;}
.y16_c00251{bottom:421.830000px;}
.y15_c00251{bottom:440.880000px;}
.y14_c00251{bottom:458.280000px;}
.y13_c00251{bottom:476.580000px;}
.y12_c00251{bottom:494.430000px;}
.y11_c00251{bottom:511.380000px;}
.y10_c00251{bottom:531.180000px;}
.yf_c00251{bottom:549.180000px;}
.ye_c00251{bottom:567.330000px;}
.yd_c00251{bottom:585.930000px;}
.yc_c00251{bottom:603.780000px;}
.yb_c00251{bottom:621.330000px;}
.ya_c00251{bottom:640.230000px;}
.y9_c00251{bottom:658.080000px;}
.y8_c00251{bottom:675.630000px;}
.y7_c00251{bottom:694.230000px;}
.y6_c00251{bottom:713.580000px;}
.y5_c00251{bottom:730.680000px;}
.y4_c00251{bottom:749.280000px;}
.y3_c00251{bottom:766.230000px;}
.y2_c00251{bottom:784.980000px;}
.y1_c00251{bottom:803.580000px;}
.h5_c00251{height:13.200074px;}
.h6_c00251{height:43.804688px;}
.h3_c00251{height:62.880000px;}
.h4_c00251{height:64.020000px;}
.h2_c00251{height:70.664062px;}
.h0_c00251{height:841.350000px;}
.h1_c00251{height:841.500000px;}
.w2_c00251{width:104.875500px;}
.w0_c00251{width:558.375000px;}
.w1_c00251{width:558.750000px;}
.x0_c00251{left:0.000000px;}
.x4_c00251{left:19.800000px;}
.x5_c00251{left:23.550000px;}
.x7_c00251{left:80.700000px;}
.x8_c00251{left:82.650000px;}
.x6_c00251{left:84.150000px;}
.x2_c00251{left:85.350000px;}
.x1_c00251{left:86.700000px;}
.x3_c00251{left:87.750000px;}
.x9_c00251{left:231.001740px;}
@media print{
.v0_c00251{vertical-align:0.000000pt;}
.ls5_c00251{letter-spacing:0.000000pt;}
.ls3_c00251{letter-spacing:2.666667pt;}
.ls6_c00251{letter-spacing:5.333333pt;}
.ls0_c00251{letter-spacing:7.826667pt;}
.ls4_c00251{letter-spacing:8.000000pt;}
.ls2_c00251{letter-spacing:13.333333pt;}
.ls1_c00251{letter-spacing:19.146667pt;}
.ws1_c00251{word-spacing:-18.080000pt;}
.ws0_c00251{word-spacing:-12.586667pt;}
.ws2_c00251{word-spacing:0.000000pt;}
._0_c00251{margin-left:-12.288000pt;}
._2b_c00251{margin-left:-9.493333pt;}
._22_c00251{margin-left:-7.082667pt;}
._38_c00251{margin-left:-5.760000pt;}
._12_c00251{margin-left:-4.586667pt;}
._d_c00251{margin-left:-3.146667pt;}
._4_c00251{margin-left:-1.866667pt;}
._f_c00251{margin-left:-0.928000pt;}
._9_c00251{width:1.226667pt;}
._5_c00251{width:2.240000pt;}
._3_c00251{width:3.904000pt;}
._17_c00251{width:4.906667pt;}
._7_c00251{width:6.122667pt;}
._21_c00251{width:7.360000pt;}
._b_c00251{width:8.266667pt;}
._c_c00251{width:9.525333pt;}
._a_c00251{width:11.466667pt;}
._19_c00251{width:12.554667pt;}
._6_c00251{width:13.973333pt;}
._2_c00251{width:15.680000pt;}
._28_c00251{width:16.906667pt;}
._1b_c00251{width:17.813333pt;}
._15_c00251{width:19.413333pt;}
._14_c00251{width:20.426667pt;}
._1c_c00251{width:21.866667pt;}
._1f_c00251{width:23.626667pt;}
._20_c00251{width:25.226667pt;}
._30_c00251{width:30.282667pt;}
._2a_c00251{width:31.210667pt;}
._16_c00251{width:32.426667pt;}
._31_c00251{width:36.960000pt;}
._2e_c00251{width:43.946667pt;}
._2f_c00251{width:50.069333pt;}
._11_c00251{width:52.426667pt;}
._8_c00251{width:54.080000pt;}
._e_c00251{width:55.680000pt;}
._24_c00251{width:59.978667pt;}
._18_c00251{width:62.154667pt;}
._1d_c00251{width:64.266667pt;}
._1a_c00251{width:66.208000pt;}
._1e_c00251{width:68.266667pt;}
._2c_c00251{width:69.472000pt;}
._25_c00251{width:70.528000pt;}
._27_c00251{width:72.213333pt;}
._29_c00251{width:73.824000pt;}
._2d_c00251{width:74.730667pt;}
._13_c00251{width:76.373333pt;}
._34_c00251{width:77.706667pt;}
._32_c00251{width:78.890667pt;}
._35_c00251{width:80.234667pt;}
._33_c00251{width:81.685333pt;}
._37_c00251{width:83.989333pt;}
._23_c00251{width:85.621333pt;}
._3a_c00251{width:87.168000pt;}
._39_c00251{width:88.768000pt;}
._36_c00251{width:109.162667pt;}
._26_c00251{width:143.616000pt;}
._10_c00251{width:210.437333pt;}
._1_c00251{width:260.352000pt;}
.fs2_c00251{font-size:34.666667pt;}
.fs4_c00251{font-size:40.000000pt;}
.fs5_c00251{font-size:42.666667pt;}
.fs3_c00251{font-size:48.000000pt;}
.fs1_c00251{font-size:53.333333pt;}
.fs0_c00251{font-size:64.000000pt;}
.y0_c00251{bottom:0.000000pt;}
.y2c_c00251{bottom:2.760000pt;}
.y2b_c00251{bottom:6.425206pt;}
.y2a_c00251{bottom:53.493333pt;}
.y29_c00251{bottom:69.360000pt;}
.y28_c00251{bottom:85.493333pt;}
.y27_c00251{bottom:101.493333pt;}
.y26_c00251{bottom:117.893333pt;}
.y25_c00251{bottom:133.893333pt;}
.y24_c00251{bottom:149.760000pt;}
.y23_c00251{bottom:166.293333pt;}
.y22_c00251{bottom:182.426667pt;}
.y21_c00251{bottom:198.293333pt;}
.y20_c00251{bottom:214.293333pt;}
.y1f_c00251{bottom:230.693333pt;}
.y1e_c00251{bottom:246.560000pt;}
.y1d_c00251{bottom:262.826667pt;}
.y1c_c00251{bottom:278.426667pt;}
.y1b_c00251{bottom:294.960000pt;}
.y1a_c00251{bottom:311.093333pt;}
.y19_c00251{bottom:327.360000pt;}
.y18_c00251{bottom:343.226667pt;}
.y17_c00251{bottom:358.826667pt;}
.y16_c00251{bottom:374.960000pt;}
.y15_c00251{bottom:391.893333pt;}
.y14_c00251{bottom:407.360000pt;}
.y13_c00251{bottom:423.626667pt;}
.y12_c00251{bottom:439.493333pt;}
.y11_c00251{bottom:454.560000pt;}
.y10_c00251{bottom:472.160000pt;}
.yf_c00251{bottom:488.160000pt;}
.ye_c00251{bottom:504.293333pt;}
.yd_c00251{bottom:520.826667pt;}
.yc_c00251{bottom:536.693333pt;}
.yb_c00251{bottom:552.293333pt;}
.ya_c00251{bottom:569.093333pt;}
.y9_c00251{bottom:584.960000pt;}
.y8_c00251{bottom:600.560000pt;}
.y7_c00251{bottom:617.093333pt;}
.y6_c00251{bottom:634.293333pt;}
.y5_c00251{bottom:649.493333pt;}
.y4_c00251{bottom:666.026667pt;}
.y3_c00251{bottom:681.093333pt;}
.y2_c00251{bottom:697.760000pt;}
.y1_c00251{bottom:714.293333pt;}
.h5_c00251{height:11.733399pt;}
.h6_c00251{height:38.937500pt;}
.h3_c00251{height:55.893333pt;}
.h4_c00251{height:56.906667pt;}
.h2_c00251{height:62.812500pt;}
.h0_c00251{height:747.866667pt;}
.h1_c00251{height:748.000000pt;}
.w2_c00251{width:93.222667pt;}
.w0_c00251{width:496.333333pt;}
.w1_c00251{width:496.666667pt;}
.x0_c00251{left:0.000000pt;}
.x4_c00251{left:17.600000pt;}
.x5_c00251{left:20.933333pt;}
.x7_c00251{left:71.733333pt;}
.x8_c00251{left:73.466667pt;}
.x6_c00251{left:74.800000pt;}
.x2_c00251{left:75.866667pt;}
.x1_c00251{left:77.066667pt;}
.x3_c00251{left:78.000000pt;}
.x9_c00251{left:205.334880pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_8eaf85d054d187f9435b9e82.woff2')format("woff");}.ff1_c00252{font-family:ff1_c00252;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00252;src:url('chunks/assets/font_94a822f33aff95e21bd0508e.woff2')format("woff");}.ff2_c00252{font-family:ff2_c00252;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00252;src:url('chunks/assets/font_319f2668da5a6d9c83860737.woff2')format("woff");}.ff3_c00252{font-family:ff3_c00252;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00252;src:url('chunks/assets/font_338b6274b476aea69ecb7ca4.woff2')format("woff");}.ff4_c00252{font-family:ff4_c00252;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00252;src:url('chunks/assets/font_82505db5a21a09d69addbc37.woff2')format("woff");}.ff5_c00252{font-family:ff5_c00252;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00252;src:url('chunks/assets/font_5f66fdc0b1f0d3c642f2fa06.woff2')format("woff");}.ff6_c00252{font-family:ff6_c00252;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00252;src:url('chunks/assets/font_48d45926dc07d6fa4945d4db.woff2')format("woff");}.ff7_c00252{font-family:ff7_c00252;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00252;src:url('chunks/assets/font_7c7b114d6d8510036cb24ad0.woff2')format("woff");}.ff8_c00252{font-family:ff8_c00252;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00252;src:url('chunks/assets/font_6f75842652802d6f645f48a7.woff2')format("woff");}.ff9_c00252{font-family:ff9_c00252;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00252;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ffa_c00252{font-family:ffa_c00252;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00252;src:url('chunks/assets/font_f4c380ea53b988bd479a6bb8.woff2')format("woff");}.ffb_c00252{font-family:ffb_c00252;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc_c00252;src:url('chunks/assets/font_16bed02be4d2bca9efcec108.woff2')format("woff");}.ffc_c00252{font-family:ffc_c00252;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd_c00252;src:url('chunks/assets/font_a3dd564fec45418b8a7301bd.woff2')format("woff");}.ffd_c00252{font-family:ffd_c00252;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe_c00252;src:url('chunks/assets/font_6c6b215bbef2be02eec35991.woff2')format("woff");}.ffe_c00252{font-family:ffe_c00252;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff_c00252;src:url('chunks/assets/font_0ce391de997f24f9f9dd37f4.woff2')format("woff");}.fff_c00252{font-family:fff_c00252;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10_c00252;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff10_c00252{font-family:ff10_c00252;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00252{transform:matrix(0.107500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107500,0.000000,0.000000,0.250000,0,0);}
.m7_c00252{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m0_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);}
.m1_c00252{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m5_c00252{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m3_c00252{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m4_c00252{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m6_c00252{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.v1_c00252{vertical-align:-75.600000px;}
.v0_c00252{vertical-align:0.000000px;}
.ls18_c00252{letter-spacing:0.000000px;}
.ls2_c00252{letter-spacing:0.348000px;}
.ls1_c00252{letter-spacing:0.912000px;}
.lsf_c00252{letter-spacing:1.605000px;}
.ls12_c00252{letter-spacing:2.760000px;}
.ls15_c00252{letter-spacing:2.805000px;}
.ls0_c00252{letter-spacing:3.000000px;}
.ls13_c00252{letter-spacing:3.405000px;}
.ls7_c00252{letter-spacing:3.600000px;}
.ls6_c00252{letter-spacing:4.800000px;}
.lsa_c00252{letter-spacing:5.640000px;}
.ls1a_c00252{letter-spacing:6.000000px;}
.lsb_c00252{letter-spacing:6.540000px;}
.ls19_c00252{letter-spacing:9.000000px;}
.ls10_c00252{letter-spacing:10.845000px;}
.ls17_c00252{letter-spacing:12.000000px;}
.lse_c00252{letter-spacing:18.540000px;}
.ls5_c00252{letter-spacing:21.645000px;}
.lsc_c00252{letter-spacing:22.740000px;}
.ls3_c00252{letter-spacing:53.850000px;}
.lsd_c00252{letter-spacing:75.540000px;}
.ls14_c00252{letter-spacing:77.940000px;}
.ls16_c00252{letter-spacing:79.740000px;}
.ls11_c00252{letter-spacing:81.540000px;}
.ls9_c00252{letter-spacing:95.940000px;}
.ls8_c00252{letter-spacing:116.016000px;}
.ls4_c00252{letter-spacing:150.045000px;}
.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:-69.078000px;}
.wse_c00252{word-spacing:-35.295000px;}
.ws1_c00252{word-spacing:-18.813000px;}
.wsd_c00252{word-spacing:-18.750000px;}
.ws9_c00252{word-spacing:-18.000000px;}
.ws6_c00252{word-spacing:-17.250000px;}
.ws8_c00252{word-spacing:-16.755000px;}
.ws3_c00252{word-spacing:-16.452000px;}
.wsb_c00252{word-spacing:-15.000000px;}
.ws5_c00252{word-spacing:-14.160000px;}
.ws4_c00252{word-spacing:-13.761600px;}
.ws7_c00252{word-spacing:-12.291000px;}
.ws2_c00252{word-spacing:-3.228000px;}
.wsf_c00252{word-spacing:0.000000px;}
.wsa_c00252{word-spacing:3.300000px;}
.wsc_c00252{word-spacing:126.528000px;}
._20_c00252{margin-left:-18.230400px;}
._2e_c00252{margin-left:-15.574800px;}
._1f_c00252{margin-left:-14.556600px;}
._19_c00252{margin-left:-12.823200px;}
._10_c00252{margin-left:-11.376000px;}
._f_c00252{margin-left:-10.008000px;}
._7_c00252{margin-left:-7.656000px;}
._6_c00252{margin-left:-6.177000px;}
._a_c00252{margin-left:-4.761000px;}
._e_c00252{margin-left:-3.623400px;}
._b_c00252{margin-left:-2.487000px;}
._9_c00252{margin-left:-1.260000px;}
._0_c00252{width:1.260000px;}
._8_c00252{width:2.331000px;}
._11_c00252{width:3.344400px;}
._3_c00252{width:4.473000px;}
._2_c00252{width:6.111000px;}
._4_c00252{width:7.812000px;}
._1c_c00252{width:9.014400px;}
._d_c00252{width:10.048200px;}
._13_c00252{width:11.518200px;}
._1b_c00252{width:13.104600px;}
._31_c00252{width:14.218200px;}
._18_c00252{width:15.249600px;}
._1d_c00252{width:16.439400px;}
._29_c00252{width:18.196200px;}
._1a_c00252{width:19.236600px;}
._16_c00252{width:20.971800px;}
._1_c00252{width:22.932000px;}
._24_c00252{width:24.627000px;}
._25_c00252{width:27.421800px;}
._2a_c00252{width:30.180000px;}
._27_c00252{width:32.484000px;}
._21_c00252{width:34.708800px;}
._12_c00252{width:38.268000px;}
._23_c00252{width:41.454000px;}
._33_c00252{width:46.504800px;}
._17_c00252{width:50.118000px;}
._2b_c00252{width:56.953800px;}
._2c_c00252{width:59.112000px;}
._14_c00252{width:62.256000px;}
._22_c00252{width:68.481600px;}
._30_c00252{width:70.474800px;}
._c_c00252{width:72.918000px;}
._32_c00252{width:74.553600px;}
._1e_c00252{width:76.322400px;}
._26_c00252{width:78.000000px;}
._34_c00252{width:83.209200px;}
._28_c00252{width:132.162000px;}
._2f_c00252{width:171.540000px;}
._15_c00252{width:309.723600px;}
._5_c00252{width:418.098000px;}
._2d_c00252{width:434.523000px;}
.fc2_c00252{color:transparent;}
.fc1_c00252{color:rgb(128,128,128);}
.fc0_c00252{color:rgb(0,0,0);}
.fsa_c00252{font-size:24.000000px;}
.fs9_c00252{font-size:45.000000px;}
.fs2_c00252{font-size:45.600000px;}
.fs5_c00252{font-size:48.000000px;}
.fs8_c00252{font-size:51.000000px;}
.fs3_c00252{font-size:57.000000px;}
.fs6_c00252{font-size:60.000000px;}
.fs0_c00252{font-size:63.000000px;}
.fs7_c00252{font-size:69.000000px;}
.fs4_c00252{font-size:72.000000px;}
.fs1_c00252{font-size:87.000000px;}
.fsb_c00252{font-size:429.000000px;}
.y0_c00252{bottom:0.000000px;}
.y41_c00252{bottom:3.105000px;}
.y40_c00252{bottom:7.228371px;}
.y3f_c00252{bottom:39.165000px;}
.y3e_c00252{bottom:59.115000px;}
.y3d_c00252{bottom:76.965000px;}
.y3c_c00252{bottom:95.265000px;}
.y3b_c00252{bottom:114.165000px;}
.y3a_c00252{bottom:131.715000px;}
.y39_c00252{bottom:149.865000px;}
.y38_c00252{bottom:168.165000px;}
.y37_c00252{bottom:186.015000px;}
.y36_c00252{bottom:205.515000px;}
.y35_c00252{bottom:223.515000px;}
.y34_c00252{bottom:240.015000px;}
.y2c_c00252{bottom:254.865000px;}
.y33_c00252{bottom:258.315000px;}
.y32_c00252{bottom:276.165000px;}
.y2d_c00252{bottom:277.515000px;}
.y31_c00252{bottom:294.765000px;}
.y30_c00252{bottom:313.215000px;}
.y2b_c00252{bottom:313.965000px;}
.y2f_c00252{bottom:331.515000px;}
.y2a_c00252{bottom:332.115000px;}
.y2e_c00252{bottom:349.065000px;}
.y29_c00252{bottom:349.665000px;}
.y25_c00252{bottom:354.765000px;}
.y24_c00252{bottom:367.515000px;}
.y23_c00252{bottom:385.215000px;}
.y22_c00252{bottom:403.665000px;}
.y28_c00252{bottom:421.215000px;}
.y21_c00252{bottom:421.515000px;}
.y20_c00252{bottom:439.215000px;}
.y27_c00252{bottom:457.065000px;}
.y1f_c00252{bottom:457.365000px;}
.y26_c00252{bottom:474.615000px;}
.y1e_c00252{bottom:475.215000px;}
.y1d_c00252{bottom:492.465000px;}
.y1c_c00252{bottom:510.765000px;}
.y1b_c00252{bottom:528.615000px;}
.y1a_c00252{bottom:546.165000px;}
.y19_c00252{bottom:564.315000px;}
.yd_c00252{bottom:581.565000px;}
.y18_c00252{bottom:583.215000px;}
.yc_c00252{bottom:599.415000px;}
.y17_c00252{bottom:601.065000px;}
.yb_c00252{bottom:617.715000px;}
.y16_c00252{bottom:618.615000px;}
.ya_c00252{bottom:635.265000px;}
.y15_c00252{bottom:636.315000px;}
.y9_c00252{bottom:652.815000px;}
.y14_c00252{bottom:655.065000px;}
.y8_c00252{bottom:670.965000px;}
.y13_c00252{bottom:673.065000px;}
.y7_c00252{bottom:688.965000px;}
.y12_c00252{bottom:690.315000px;}
.y6_c00252{bottom:706.815000px;}
.y11_c00252{bottom:708.465000px;}
.y5_c00252{bottom:724.665000px;}
.y10_c00252{bottom:726.015000px;}
.y4_c00252{bottom:742.515000px;}
.yf_c00252{bottom:744.315000px;}
.y3_c00252{bottom:760.065000px;}
.ye_c00252{bottom:763.065000px;}
.y2_c00252{bottom:779.715000px;}
.y1_c00252{bottom:799.215000px;}
.he_c00252{height:13.200074px;}
.hf_c00252{height:43.804688px;}
.h9_c00252{height:47.160000px;}
.h4_c00252{height:51.216000px;}
.hb_c00252{height:59.690918px;}
.h5_c00252{height:62.880000px;}
.ha_c00252{height:64.020000px;}
.h7_c00252{height:64.571777px;}
.h8_c00252{height:66.024000px;}
.hd_c00252{height:67.221000px;}
.h6_c00252{height:73.623000px;}
.h3_c00252{height:78.048000px;}
.h2_c00252{height:91.176000px;}
.hc_c00252{height:457.743000px;}
.h0_c00252{height:833.775000px;}
.h1_c00252{height:834.000000px;}
.w2_c00252{width:104.875500px;}
.w0_c00252{width:584.850000px;}
.w1_c00252{width:585.000000px;}
.x0_c00252{left:0.000000px;}
.x3_c00252{left:14.400000px;}
.x1a_c00252{left:16.650000px;}
.x1b_c00252{left:70.500000px;}
.x2_c00252{left:71.850000px;}
.x5_c00252{left:73.350000px;}
.x11_c00252{left:75.000000px;}
.x13_c00252{left:76.650000px;}
.x15_c00252{left:77.700000px;}
.x16_c00252{left:91.800000px;}
.x14_c00252{left:92.850000px;}
.x19_c00252{left:94.800000px;}
.x4_c00252{left:107.250000px;}
.x17_c00252{left:119.250000px;}
.x9_c00252{left:125.850000px;}
.xa_c00252{left:128.250000px;}
.xb_c00252{left:150.600000px;}
.x18_c00252{left:153.000000px;}
.xc_c00252{left:159.900000px;}
.xd_c00252{left:206.850000px;}
.x1_c00252{left:208.950000px;}
.xe_c00252{left:217.650000px;}
.xf_c00252{left:241.200000px;}
.x1d_c00252{left:244.239258px;}
.x10_c00252{left:250.650000px;}
.x7_c00252{left:289.500000px;}
.x6_c00252{left:290.550000px;}
.x8_c00252{left:291.600000px;}
.x12_c00252{left:322.650000px;}
.x1c_c00252{left:394.500000px;}
@media print{
.v1_c00252{vertical-align:-67.200000pt;}
.v0_c00252{vertical-align:0.000000pt;}
.ls18_c00252{letter-spacing:0.000000pt;}
.ls2_c00252{letter-spacing:0.309333pt;}
.ls1_c00252{letter-spacing:0.810667pt;}
.lsf_c00252{letter-spacing:1.426667pt;}
.ls12_c00252{letter-spacing:2.453333pt;}
.ls15_c00252{letter-spacing:2.493333pt;}
.ls0_c00252{letter-spacing:2.666667pt;}
.ls13_c00252{letter-spacing:3.026667pt;}
.ls7_c00252{letter-spacing:3.200000pt;}
.ls6_c00252{letter-spacing:4.266667pt;}
.lsa_c00252{letter-spacing:5.013333pt;}
.ls1a_c00252{letter-spacing:5.333333pt;}
.lsb_c00252{letter-spacing:5.813333pt;}
.ls19_c00252{letter-spacing:8.000000pt;}
.ls10_c00252{letter-spacing:9.640000pt;}
.ls17_c00252{letter-spacing:10.666667pt;}
.lse_c00252{letter-spacing:16.480000pt;}
.ls5_c00252{letter-spacing:19.240000pt;}
.lsc_c00252{letter-spacing:20.213333pt;}
.ls3_c00252{letter-spacing:47.866667pt;}
.lsd_c00252{letter-spacing:67.146667pt;}
.ls14_c00252{letter-spacing:69.280000pt;}
.ls16_c00252{letter-spacing:70.880000pt;}
.ls11_c00252{letter-spacing:72.480000pt;}
.ls9_c00252{letter-spacing:85.280000pt;}
.ls8_c00252{letter-spacing:103.125333pt;}
.ls4_c00252{letter-spacing:133.373333pt;}
.ws0_c00252{word-spacing:-61.402667pt;}
.wse_c00252{word-spacing:-31.373333pt;}
.ws1_c00252{word-spacing:-16.722667pt;}
.wsd_c00252{word-spacing:-16.666667pt;}
.ws9_c00252{word-spacing:-16.000000pt;}
.ws6_c00252{word-spacing:-15.333333pt;}
.ws8_c00252{word-spacing:-14.893333pt;}
.ws3_c00252{word-spacing:-14.624000pt;}
.wsb_c00252{word-spacing:-13.333333pt;}
.ws5_c00252{word-spacing:-12.586667pt;}
.ws4_c00252{word-spacing:-12.232533pt;}
.ws7_c00252{word-spacing:-10.925333pt;}
.ws2_c00252{word-spacing:-2.869333pt;}
.wsf_c00252{word-spacing:0.000000pt;}
.wsa_c00252{word-spacing:2.933333pt;}
.wsc_c00252{word-spacing:112.469333pt;}
._20_c00252{margin-left:-16.204800pt;}
._2e_c00252{margin-left:-13.844267pt;}
._1f_c00252{margin-left:-12.939200pt;}
._19_c00252{margin-left:-11.398400pt;}
._10_c00252{margin-left:-10.112000pt;}
._f_c00252{margin-left:-8.896000pt;}
._7_c00252{margin-left:-6.805333pt;}
._6_c00252{margin-left:-5.490667pt;}
._a_c00252{margin-left:-4.232000pt;}
._e_c00252{margin-left:-3.220800pt;}
._b_c00252{margin-left:-2.210667pt;}
._9_c00252{margin-left:-1.120000pt;}
._0_c00252{width:1.120000pt;}
._8_c00252{width:2.072000pt;}
._11_c00252{width:2.972800pt;}
._3_c00252{width:3.976000pt;}
._2_c00252{width:5.432000pt;}
._4_c00252{width:6.944000pt;}
._1c_c00252{width:8.012800pt;}
._d_c00252{width:8.931733pt;}
._13_c00252{width:10.238400pt;}
._1b_c00252{width:11.648533pt;}
._31_c00252{width:12.638400pt;}
._18_c00252{width:13.555200pt;}
._1d_c00252{width:14.612800pt;}
._29_c00252{width:16.174400pt;}
._1a_c00252{width:17.099200pt;}
._16_c00252{width:18.641600pt;}
._1_c00252{width:20.384000pt;}
._24_c00252{width:21.890667pt;}
._25_c00252{width:24.374933pt;}
._2a_c00252{width:26.826667pt;}
._27_c00252{width:28.874667pt;}
._21_c00252{width:30.852267pt;}
._12_c00252{width:34.016000pt;}
._23_c00252{width:36.848000pt;}
._33_c00252{width:41.337600pt;}
._17_c00252{width:44.549333pt;}
._2b_c00252{width:50.625600pt;}
._2c_c00252{width:52.544000pt;}
._14_c00252{width:55.338667pt;}
._22_c00252{width:60.872533pt;}
._30_c00252{width:62.644267pt;}
._c_c00252{width:64.816000pt;}
._32_c00252{width:66.269867pt;}
._1e_c00252{width:67.842133pt;}
._26_c00252{width:69.333333pt;}
._34_c00252{width:73.963733pt;}
._28_c00252{width:117.477333pt;}
._2f_c00252{width:152.480000pt;}
._15_c00252{width:275.309867pt;}
._5_c00252{width:371.642667pt;}
._2d_c00252{width:386.242667pt;}
.fsa_c00252{font-size:21.333333pt;}
.fs9_c00252{font-size:40.000000pt;}
.fs2_c00252{font-size:40.533333pt;}
.fs5_c00252{font-size:42.666667pt;}
.fs8_c00252{font-size:45.333333pt;}
.fs3_c00252{font-size:50.666667pt;}
.fs6_c00252{font-size:53.333333pt;}
.fs0_c00252{font-size:56.000000pt;}
.fs7_c00252{font-size:61.333333pt;}
.fs4_c00252{font-size:64.000000pt;}
.fs1_c00252{font-size:77.333333pt;}
.fsb_c00252{font-size:381.333333pt;}
.y0_c00252{bottom:0.000000pt;}
.y41_c00252{bottom:2.760000pt;}
.y40_c00252{bottom:6.425219pt;}
.y3f_c00252{bottom:34.813333pt;}
.y3e_c00252{bottom:52.546667pt;}
.y3d_c00252{bottom:68.413333pt;}
.y3c_c00252{bottom:84.680000pt;}
.y3b_c00252{bottom:101.480000pt;}
.y3a_c00252{bottom:117.080000pt;}
.y39_c00252{bottom:133.213333pt;}
.y38_c00252{bottom:149.480000pt;}
.y37_c00252{bottom:165.346667pt;}
.y36_c00252{bottom:182.680000pt;}
.y35_c00252{bottom:198.680000pt;}
.y34_c00252{bottom:213.346667pt;}
.y2c_c00252{bottom:226.546667pt;}
.y33_c00252{bottom:229.613333pt;}
.y32_c00252{bottom:245.480000pt;}
.y2d_c00252{bottom:246.680000pt;}
.y31_c00252{bottom:262.013333pt;}
.y30_c00252{bottom:278.413333pt;}
.y2b_c00252{bottom:279.080000pt;}
.y2f_c00252{bottom:294.680000pt;}
.y2a_c00252{bottom:295.213333pt;}
.y2e_c00252{bottom:310.280000pt;}
.y29_c00252{bottom:310.813333pt;}
.y25_c00252{bottom:315.346667pt;}
.y24_c00252{bottom:326.680000pt;}
.y23_c00252{bottom:342.413333pt;}
.y22_c00252{bottom:358.813333pt;}
.y28_c00252{bottom:374.413333pt;}
.y21_c00252{bottom:374.680000pt;}
.y20_c00252{bottom:390.413333pt;}
.y27_c00252{bottom:406.280000pt;}
.y1f_c00252{bottom:406.546667pt;}
.y26_c00252{bottom:421.880000pt;}
.y1e_c00252{bottom:422.413333pt;}
.y1d_c00252{bottom:437.746667pt;}
.y1c_c00252{bottom:454.013333pt;}
.y1b_c00252{bottom:469.880000pt;}
.y1a_c00252{bottom:485.480000pt;}
.y19_c00252{bottom:501.613333pt;}
.yd_c00252{bottom:516.946667pt;}
.y18_c00252{bottom:518.413333pt;}
.yc_c00252{bottom:532.813333pt;}
.y17_c00252{bottom:534.280000pt;}
.yb_c00252{bottom:549.080000pt;}
.y16_c00252{bottom:549.880000pt;}
.ya_c00252{bottom:564.680000pt;}
.y15_c00252{bottom:565.613333pt;}
.y9_c00252{bottom:580.280000pt;}
.y14_c00252{bottom:582.280000pt;}
.y8_c00252{bottom:596.413333pt;}
.y13_c00252{bottom:598.280000pt;}
.y7_c00252{bottom:612.413333pt;}
.y12_c00252{bottom:613.613333pt;}
.y6_c00252{bottom:628.280000pt;}
.y11_c00252{bottom:629.746667pt;}
.y5_c00252{bottom:644.146667pt;}
.y10_c00252{bottom:645.346667pt;}
.y4_c00252{bottom:660.013333pt;}
.yf_c00252{bottom:661.613333pt;}
.y3_c00252{bottom:675.613333pt;}
.ye_c00252{bottom:678.280000pt;}
.y2_c00252{bottom:693.080000pt;}
.y1_c00252{bottom:710.413333pt;}
.he_c00252{height:11.733399pt;}
.hf_c00252{height:38.937500pt;}
.h9_c00252{height:41.920000pt;}
.h4_c00252{height:45.525333pt;}
.hb_c00252{height:53.058594pt;}
.h5_c00252{height:55.893333pt;}
.ha_c00252{height:56.906667pt;}
.h7_c00252{height:57.397135pt;}
.h8_c00252{height:58.688000pt;}
.hd_c00252{height:59.752000pt;}
.h6_c00252{height:65.442667pt;}
.h3_c00252{height:69.376000pt;}
.h2_c00252{height:81.045333pt;}
.hc_c00252{height:406.882667pt;}
.h0_c00252{height:741.133333pt;}
.h1_c00252{height:741.333333pt;}
.w2_c00252{width:93.222667pt;}
.w0_c00252{width:519.866667pt;}
.w1_c00252{width:520.000000pt;}
.x0_c00252{left:0.000000pt;}
.x3_c00252{left:12.800000pt;}
.x1a_c00252{left:14.800000pt;}
.x1b_c00252{left:62.666667pt;}
.x2_c00252{left:63.866667pt;}
.x5_c00252{left:65.200000pt;}
.x11_c00252{left:66.666667pt;}
.x13_c00252{left:68.133333pt;}
.x15_c00252{left:69.066667pt;}
.x16_c00252{left:81.600000pt;}
.x14_c00252{left:82.533333pt;}
.x19_c00252{left:84.266667pt;}
.x4_c00252{left:95.333333pt;}
.x17_c00252{left:106.000000pt;}
.x9_c00252{left:111.866667pt;}
.xa_c00252{left:114.000000pt;}
.xb_c00252{left:133.866667pt;}
.x18_c00252{left:136.000000pt;}
.xc_c00252{left:142.133333pt;}
.xd_c00252{left:183.866667pt;}
.x1_c00252{left:185.733333pt;}
.xe_c00252{left:193.466667pt;}
.xf_c00252{left:214.400000pt;}
.x1d_c00252{left:217.101563pt;}
.x10_c00252{left:222.800000pt;}
.x7_c00252{left:257.333333pt;}
.x6_c00252{left:258.266667pt;}
.x8_c00252{left:259.200000pt;}
.x12_c00252{left:286.800000pt;}
.x1c_c00252{left:350.666667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a8ef370c3eb58d465c5981d9.woff2')format("woff");}.ff1_c00253{font-family:ff1_c00253;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00253;src:url('chunks/assets/font_ba168925df777c93f39fc93b.woff2')format("woff");}.ff2_c00253{font-family:ff2_c00253;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00253;src:url('chunks/assets/font_e9437573e881c96693d33f28.woff2')format("woff");}.ff3_c00253{font-family:ff3_c00253;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00253;src:url('chunks/assets/font_b983946538bc36d954b27070.woff2')format("woff");}.ff4_c00253{font-family:ff4_c00253;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00253;src:url('chunks/assets/font_697dfc71fe3a119d74947d9e.woff2')format("woff");}.ff5_c00253{font-family:ff5_c00253;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00253;src:url('chunks/assets/font_f2c95ec88702689da5db6640.woff2')format("woff");}.ff6_c00253{font-family:ff6_c00253;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00253;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff7_c00253{font-family:ff7_c00253;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00253{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00253{vertical-align:0.000000px;}
.ls2_c00253{letter-spacing:0.000000px;}
.ls0_c00253{letter-spacing:3.000000px;}
.ls1_c00253{letter-spacing:11.400000px;}
.sc__c00253{text-shadow:none;}
.sc0_c00253{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00253{-webkit-text-stroke:0px transparent;}
.sc0_c00253{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00253{word-spacing:-48.258000px;}
.ws2_c00253{word-spacing:-29.700000px;}
.ws1_c00253{word-spacing:-23.760000px;}
.ws5_c00253{word-spacing:-18.060000px;}
.ws0_c00253{word-spacing:-14.160000px;}
.ws4_c00253{word-spacing:-0.480000px;}
.ws6_c00253{word-spacing:0.000000px;}
._0_c00253{margin-left:-18.120000px;}
._1b_c00253{margin-left:-15.420000px;}
._14_c00253{margin-left:-13.740000px;}
._20_c00253{margin-left:-11.340000px;}
._1e_c00253{margin-left:-10.080000px;}
._1c_c00253{margin-left:-8.820000px;}
._e_c00253{margin-left:-6.840000px;}
._b_c00253{margin-left:-5.160000px;}
._a_c00253{margin-left:-3.480000px;}
._6_c00253{margin-left:-2.160000px;}
._f_c00253{margin-left:-1.080000px;}
._8_c00253{width:1.080000px;}
._3_c00253{width:2.520000px;}
._2_c00253{width:4.080000px;}
._4_c00253{width:5.220000px;}
._d_c00253{width:6.300000px;}
._c_c00253{width:7.380000px;}
._12_c00253{width:8.820000px;}
._7_c00253{width:9.840000px;}
._5_c00253{width:11.400000px;}
._15_c00253{width:12.900000px;}
._11_c00253{width:14.640000px;}
._17_c00253{width:16.440000px;}
._9_c00253{width:19.860000px;}
._21_c00253{width:20.880000px;}
._1_c00253{width:22.140000px;}
._10_c00253{width:23.280000px;}
._18_c00253{width:26.100000px;}
._1f_c00253{width:27.600000px;}
._22_c00253{width:31.620000px;}
._1a_c00253{width:33.360000px;}
._1d_c00253{width:34.380000px;}
._19_c00253{width:38.940000px;}
._16_c00253{width:144.180000px;}
._13_c00253{width:348.660000px;}
.fc2_c00253{color:transparent;}
.fc1_c00253{color:rgb(128,128,128);}
.fc0_c00253{color:rgb(0,0,0);}
.fs1_c00253{font-size:48.000000px;}
.fs2_c00253{font-size:54.000000px;}
.fs3_c00253{font-size:57.000000px;}
.fs0_c00253{font-size:60.000000px;}
.y0_c00253{bottom:0.000000px;}
.y54_c00253{bottom:3.105000px;}
.y53_c00253{bottom:7.228363px;}
.y52_c00253{bottom:44.850000px;}
.y29_c00253{bottom:59.850000px;}
.y51_c00253{bottom:62.400000px;}
.y28_c00253{bottom:78.000000px;}
.y50_c00253{bottom:79.950000px;}
.y27_c00253{bottom:96.600000px;}
.y4f_c00253{bottom:97.950000px;}
.y26_c00253{bottom:114.150000px;}
.y4e_c00253{bottom:115.800000px;}
.y25_c00253{bottom:133.050000px;}
.y4d_c00253{bottom:134.100000px;}
.y24_c00253{bottom:151.200000px;}
.y4c_c00253{bottom:152.850000px;}
.y23_c00253{bottom:170.100000px;}
.y4b_c00253{bottom:170.400000px;}
.y22_c00253{bottom:186.600000px;}
.y4a_c00253{bottom:188.700000px;}
.y21_c00253{bottom:207.000000px;}
.y20_c00253{bottom:224.100000px;}
.y49_c00253{bottom:224.850000px;}
.y1f_c00253{bottom:241.950000px;}
.y48_c00253{bottom:243.450000px;}
.y1e_c00253{bottom:260.550000px;}
.y47_c00253{bottom:261.300000px;}
.y1d_c00253{bottom:277.800000px;}
.y46_c00253{bottom:279.450000px;}
.y1c_c00253{bottom:296.400000px;}
.y45_c00253{bottom:297.450000px;}
.y1b_c00253{bottom:313.650000px;}
.y44_c00253{bottom:315.300000px;}
.y1a_c00253{bottom:331.200000px;}
.y43_c00253{bottom:334.200000px;}
.y19_c00253{bottom:351.300000px;}
.y42_c00253{bottom:352.650000px;}
.y18_c00253{bottom:369.300000px;}
.y41_c00253{bottom:370.350000px;}
.y40_c00253{bottom:387.450000px;}
.y17_c00253{bottom:387.900000px;}
.y16_c00253{bottom:403.050000px;}
.y3f_c00253{bottom:406.800000px;}
.y15_c00253{bottom:421.500000px;}
.y3e_c00253{bottom:424.650000px;}
.y14_c00253{bottom:439.500000px;}
.y3d_c00253{bottom:443.100000px;}
.y13_c00253{bottom:458.250000px;}
.y3c_c00253{bottom:461.700000px;}
.y12_c00253{bottom:476.850000px;}
.y3b_c00253{bottom:480.000000px;}
.y11_c00253{bottom:495.150000px;}
.y3a_c00253{bottom:497.250000px;}
.y10_c00253{bottom:512.400000px;}
.y39_c00253{bottom:516.000000px;}
.yf_c00253{bottom:533.550000px;}
.y38_c00253{bottom:534.000000px;}
.ye_c00253{bottom:547.500000px;}
.y37_c00253{bottom:552.150000px;}
.yd_c00253{bottom:567.600000px;}
.y36_c00253{bottom:570.450000px;}
.yc_c00253{bottom:585.000000px;}
.y35_c00253{bottom:588.000000px;}
.yb_c00253{bottom:602.400000px;}
.y34_c00253{bottom:605.850000px;}
.ya_c00253{bottom:621.300000px;}
.y33_c00253{bottom:624.150000px;}
.y9_c00253{bottom:639.300000px;}
.y32_c00253{bottom:641.700000px;}
.y8_c00253{bottom:657.150000px;}
.y31_c00253{bottom:660.150000px;}
.y7_c00253{bottom:675.000000px;}
.y30_c00253{bottom:678.000000px;}
.y6_c00253{bottom:692.850000px;}
.y2f_c00253{bottom:696.300000px;}
.y5_c00253{bottom:711.900000px;}
.y2e_c00253{bottom:714.600000px;}
.y4_c00253{bottom:729.750000px;}
.y2d_c00253{bottom:732.150000px;}
.y3_c00253{bottom:747.600000px;}
.y2c_c00253{bottom:750.600000px;}
.y2_c00253{bottom:766.500000px;}
.y2b_c00253{bottom:768.450000px;}
.y1_c00253{bottom:785.250000px;}
.y2a_c00253{bottom:786.750000px;}
.h3_c00253{height:13.200074px;}
.h4_c00253{height:43.804688px;}
.h1_c00253{height:62.880000px;}
.h2_c00253{height:64.020000px;}
.h0_c00253{height:843.750000px;}
.w2_c00253{width:104.875500px;}
.w1_c00253{width:565.500000px;}
.w0_c00253{width:565.650000px;}
.x0_c00253{left:0.000000px;}
.x6_c00253{left:33.000000px;}
.x5_c00253{left:34.650000px;}
.x8_c00253{left:36.750000px;}
.x1_c00253{left:82.950000px;}
.x3_c00253{left:97.650000px;}
.x2_c00253{left:99.450000px;}
.x9_c00253{left:100.500000px;}
.xa_c00253{left:101.850000px;}
.x4_c00253{left:113.700000px;}
.x7_c00253{left:161.700000px;}
.x13_c00253{left:234.639267px;}
.xe_c00253{left:313.500000px;}
.xb_c00253{left:314.550000px;}
.xc_c00253{left:315.900000px;}
.xf_c00253{left:317.250000px;}
.xd_c00253{left:318.900000px;}
.x10_c00253{left:319.950000px;}
.x11_c00253{left:321.300000px;}
.x12_c00253{left:494.100000px;}
@media print{
.v0_c00253{vertical-align:0.000000pt;}
.ls2_c00253{letter-spacing:0.000000pt;}
.ls0_c00253{letter-spacing:2.666667pt;}
.ls1_c00253{letter-spacing:10.133333pt;}
.ws3_c00253{word-spacing:-42.896000pt;}
.ws2_c00253{word-spacing:-26.400000pt;}
.ws1_c00253{word-spacing:-21.120000pt;}
.ws5_c00253{word-spacing:-16.053333pt;}
.ws0_c00253{word-spacing:-12.586667pt;}
.ws4_c00253{word-spacing:-0.426667pt;}
.ws6_c00253{word-spacing:0.000000pt;}
._0_c00253{margin-left:-16.106667pt;}
._1b_c00253{margin-left:-13.706667pt;}
._14_c00253{margin-left:-12.213333pt;}
._20_c00253{margin-left:-10.080000pt;}
._1e_c00253{margin-left:-8.960000pt;}
._1c_c00253{margin-left:-7.840000pt;}
._e_c00253{margin-left:-6.080000pt;}
._b_c00253{margin-left:-4.586667pt;}
._a_c00253{margin-left:-3.093333pt;}
._6_c00253{margin-left:-1.920000pt;}
._f_c00253{margin-left:-0.960000pt;}
._8_c00253{width:0.960000pt;}
._3_c00253{width:2.240000pt;}
._2_c00253{width:3.626667pt;}
._4_c00253{width:4.640000pt;}
._d_c00253{width:5.600000pt;}
._c_c00253{width:6.560000pt;}
._12_c00253{width:7.840000pt;}
._7_c00253{width:8.746667pt;}
._5_c00253{width:10.133333pt;}
._15_c00253{width:11.466667pt;}
._11_c00253{width:13.013333pt;}
._17_c00253{width:14.613333pt;}
._9_c00253{width:17.653333pt;}
._21_c00253{width:18.560000pt;}
._1_c00253{width:19.680000pt;}
._10_c00253{width:20.693333pt;}
._18_c00253{width:23.200000pt;}
._1f_c00253{width:24.533333pt;}
._22_c00253{width:28.106667pt;}
._1a_c00253{width:29.653333pt;}
._1d_c00253{width:30.560000pt;}
._19_c00253{width:34.613333pt;}
._16_c00253{width:128.160000pt;}
._13_c00253{width:309.920000pt;}
.fs1_c00253{font-size:42.666667pt;}
.fs2_c00253{font-size:48.000000pt;}
.fs3_c00253{font-size:50.666667pt;}
.fs0_c00253{font-size:53.333333pt;}
.y0_c00253{bottom:0.000000pt;}
.y54_c00253{bottom:2.760000pt;}
.y53_c00253{bottom:6.425212pt;}
.y52_c00253{bottom:39.866667pt;}
.y29_c00253{bottom:53.200000pt;}
.y51_c00253{bottom:55.466667pt;}
.y28_c00253{bottom:69.333333pt;}
.y50_c00253{bottom:71.066667pt;}
.y27_c00253{bottom:85.866667pt;}
.y4f_c00253{bottom:87.066667pt;}
.y26_c00253{bottom:101.466667pt;}
.y4e_c00253{bottom:102.933333pt;}
.y25_c00253{bottom:118.266667pt;}
.y4d_c00253{bottom:119.200000pt;}
.y24_c00253{bottom:134.400000pt;}
.y4c_c00253{bottom:135.866667pt;}
.y23_c00253{bottom:151.200000pt;}
.y4b_c00253{bottom:151.466667pt;}
.y22_c00253{bottom:165.866667pt;}
.y4a_c00253{bottom:167.733333pt;}
.y21_c00253{bottom:184.000000pt;}
.y20_c00253{bottom:199.200000pt;}
.y49_c00253{bottom:199.866667pt;}
.y1f_c00253{bottom:215.066667pt;}
.y48_c00253{bottom:216.400000pt;}
.y1e_c00253{bottom:231.600000pt;}
.y47_c00253{bottom:232.266667pt;}
.y1d_c00253{bottom:246.933333pt;}
.y46_c00253{bottom:248.400000pt;}
.y1c_c00253{bottom:263.466667pt;}
.y45_c00253{bottom:264.400000pt;}
.y1b_c00253{bottom:278.800000pt;}
.y44_c00253{bottom:280.266667pt;}
.y1a_c00253{bottom:294.400000pt;}
.y43_c00253{bottom:297.066667pt;}
.y19_c00253{bottom:312.266667pt;}
.y42_c00253{bottom:313.466667pt;}
.y18_c00253{bottom:328.266667pt;}
.y41_c00253{bottom:329.200000pt;}
.y40_c00253{bottom:344.400000pt;}
.y17_c00253{bottom:344.800000pt;}
.y16_c00253{bottom:358.266667pt;}
.y3f_c00253{bottom:361.600000pt;}
.y15_c00253{bottom:374.666667pt;}
.y3e_c00253{bottom:377.466667pt;}
.y14_c00253{bottom:390.666667pt;}
.y3d_c00253{bottom:393.866667pt;}
.y13_c00253{bottom:407.333333pt;}
.y3c_c00253{bottom:410.400000pt;}
.y12_c00253{bottom:423.866667pt;}
.y3b_c00253{bottom:426.666667pt;}
.y11_c00253{bottom:440.133333pt;}
.y3a_c00253{bottom:442.000000pt;}
.y10_c00253{bottom:455.466667pt;}
.y39_c00253{bottom:458.666667pt;}
.yf_c00253{bottom:474.266667pt;}
.y38_c00253{bottom:474.666667pt;}
.ye_c00253{bottom:486.666667pt;}
.y37_c00253{bottom:490.800000pt;}
.yd_c00253{bottom:504.533333pt;}
.y36_c00253{bottom:507.066667pt;}
.yc_c00253{bottom:520.000000pt;}
.y35_c00253{bottom:522.666667pt;}
.yb_c00253{bottom:535.466667pt;}
.y34_c00253{bottom:538.533333pt;}
.ya_c00253{bottom:552.266667pt;}
.y33_c00253{bottom:554.800000pt;}
.y9_c00253{bottom:568.266667pt;}
.y32_c00253{bottom:570.400000pt;}
.y8_c00253{bottom:584.133333pt;}
.y31_c00253{bottom:586.800000pt;}
.y7_c00253{bottom:600.000000pt;}
.y30_c00253{bottom:602.666667pt;}
.y6_c00253{bottom:615.866667pt;}
.y2f_c00253{bottom:618.933333pt;}
.y5_c00253{bottom:632.800000pt;}
.y2e_c00253{bottom:635.200000pt;}
.y4_c00253{bottom:648.666667pt;}
.y2d_c00253{bottom:650.800000pt;}
.y3_c00253{bottom:664.533333pt;}
.y2c_c00253{bottom:667.200000pt;}
.y2_c00253{bottom:681.333333pt;}
.y2b_c00253{bottom:683.066667pt;}
.y1_c00253{bottom:698.000000pt;}
.y2a_c00253{bottom:699.333333pt;}
.h3_c00253{height:11.733399pt;}
.h4_c00253{height:38.937500pt;}
.h1_c00253{height:55.893333pt;}
.h2_c00253{height:56.906667pt;}
.h0_c00253{height:750.000000pt;}
.w2_c00253{width:93.222667pt;}
.w1_c00253{width:502.666667pt;}
.w0_c00253{width:502.800000pt;}
.x0_c00253{left:0.000000pt;}
.x6_c00253{left:29.333333pt;}
.x5_c00253{left:30.800000pt;}
.x8_c00253{left:32.666667pt;}
.x1_c00253{left:73.733333pt;}
.x3_c00253{left:86.800000pt;}
.x2_c00253{left:88.400000pt;}
.x9_c00253{left:89.333333pt;}
.xa_c00253{left:90.533333pt;}
.x4_c00253{left:101.066667pt;}
.x7_c00253{left:143.733333pt;}
.x13_c00253{left:208.568237pt;}
.xe_c00253{left:278.666667pt;}
.xb_c00253{left:279.600000pt;}
.xc_c00253{left:280.800000pt;}
.xf_c00253{left:282.000000pt;}
.xd_c00253{left:283.466667pt;}
.x10_c00253{left:284.400000pt;}
.x11_c00253{left:285.600000pt;}
.x12_c00253{left:439.200000pt;}
}





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

.ir_c00254:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00254{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00254;src:url('chunks/assets/font_f78bdc28c3a69c02585e405f.woff2')format("woff");}.ff1_c00254{font-family:ff1_c00254;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00254;src:url('chunks/assets/font_d7af4c4110c026daa39baeb6.woff2')format("woff");}.ff2_c00254{font-family:ff2_c00254;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00254;src:url('chunks/assets/font_f4aef922a59cafa55367cbbf.woff2')format("woff");}.ff3_c00254{font-family:ff3_c00254;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00254;src:url('chunks/assets/font_c17d81ab51d5fb1b4d49e06c.woff2')format("woff");}.ff4_c00254{font-family:ff4_c00254;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00254;src:url('chunks/assets/font_69df57ff0ece56cd96c22da9.woff2')format("woff");}.ff5_c00254{font-family:ff5_c00254;line-height:1.575000;font-style:normal;font-weight:normal;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_bdf68523b2f29f02afce2e07.woff2')format("woff");}.ff6_c00254{font-family:ff6_c00254;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00254;src:url('chunks/assets/font_7cbd5f95b417a54c27489853.woff2')format("woff");}.ff7_c00254{font-family:ff7_c00254;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00254;src:url('chunks/assets/font_842cf737f3e93a507eafdd9a.woff2')format("woff");}.ff8_c00254{font-family:ff8_c00254;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00254;src:url('chunks/assets/font_0ce391de997f24f9f9dd37f4.woff2')format("woff");}.ff9_c00254{font-family:ff9_c00254;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00254;src:url('chunks/assets/font_1ad3bd997c55b874400f643a.woff2')format("woff");}.ffa_c00254{font-family:ffa_c00254;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00254;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ffb_c00254{font-family:ffb_c00254;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00254{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00254{vertical-align:0.000000px;}
.lsb_c00254{letter-spacing:0.000000px;}
.ls1_c00254{letter-spacing:0.405000px;}
.ls9_c00254{letter-spacing:0.582000px;}
.ls2_c00254{letter-spacing:1.713600px;}
.ls0_c00254{letter-spacing:3.000000px;}
.ls3_c00254{letter-spacing:4.644000px;}
.lsd_c00254{letter-spacing:6.000000px;}
.ls8_c00254{letter-spacing:9.000000px;}
.ls6_c00254{letter-spacing:10.122000px;}
.lsa_c00254{letter-spacing:12.000000px;}
.ls7_c00254{letter-spacing:20.850000px;}
.ls4_c00254{letter-spacing:28.050000px;}
.lsc_c00254{letter-spacing:42.000000px;}
.ls5_c00254{letter-spacing:76.650000px;}
.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;}
}
.wsa_c00254{word-spacing:-57.060000px;}
.wsb_c00254{word-spacing:-35.295000px;}
.ws6_c00254{word-spacing:-20.340000px;}
.ws2_c00254{word-spacing:-18.813000px;}
.ws5_c00254{word-spacing:-18.060000px;}
.ws1_c00254{word-spacing:-17.868000px;}
.ws4_c00254{word-spacing:-17.340000px;}
.ws3_c00254{word-spacing:-14.160000px;}
.ws0_c00254{word-spacing:-1.800000px;}
.ws9_c00254{word-spacing:-1.754400px;}
.wsc_c00254{word-spacing:0.000000px;}
.ws7_c00254{word-spacing:5.376000px;}
.ws8_c00254{word-spacing:6.120000px;}
._19_c00254{margin-left:-13.950000px;}
._21_c00254{margin-left:-10.944000px;}
._10_c00254{margin-left:-7.842000px;}
._11_c00254{margin-left:-6.591000px;}
._1c_c00254{margin-left:-5.109000px;}
._b_c00254{margin-left:-4.089000px;}
._1b_c00254{margin-left:-3.012000px;}
._e_c00254{margin-left:-1.581000px;}
._13_c00254{width:1.242000px;}
._a_c00254{width:2.394000px;}
._c_c00254{width:3.717000px;}
._1a_c00254{width:5.040000px;}
._d_c00254{width:6.363000px;}
._23_c00254{width:7.635000px;}
._9_c00254{width:8.736000px;}
._12_c00254{width:10.473000px;}
._26_c00254{width:11.754000px;}
._18_c00254{width:12.888000px;}
._1e_c00254{width:13.920000px;}
._14_c00254{width:15.816000px;}
._15_c00254{width:16.824000px;}
._16_c00254{width:17.904000px;}
._17_c00254{width:19.392000px;}
._7_c00254{width:20.424000px;}
._20_c00254{width:21.648000px;}
._5_c00254{width:23.016000px;}
._1d_c00254{width:24.735000px;}
._1_c00254{width:26.328000px;}
._0_c00254{width:28.224000px;}
._31_c00254{width:29.226000px;}
._3_c00254{width:30.672000px;}
._4_c00254{width:32.616000px;}
._1f_c00254{width:34.644000px;}
._6_c00254{width:36.864000px;}
._2_c00254{width:38.328000px;}
._2d_c00254{width:41.340000px;}
._29_c00254{width:47.796000px;}
._2e_c00254{width:66.141000px;}
._2b_c00254{width:67.167000px;}
._f_c00254{width:73.521000px;}
._22_c00254{width:76.380000px;}
._27_c00254{width:78.090000px;}
._25_c00254{width:80.250000px;}
._24_c00254{width:82.572600px;}
._2a_c00254{width:86.916000px;}
._2f_c00254{width:89.022000px;}
._28_c00254{width:120.048000px;}
._30_c00254{width:154.911000px;}
._2c_c00254{width:204.426000px;}
._8_c00254{width:412.416000px;}
.fc2_c00254{color:transparent;}
.fc1_c00254{color:rgb(128,128,128);}
.fc0_c00254{color:rgb(0,0,0);}
.fs1_c00254{font-size:19.200000px;}
.fs0_c00254{font-size:24.000000px;}
.fs7_c00254{font-size:40.800000px;}
.fs5_c00254{font-size:45.000000px;}
.fs3_c00254{font-size:48.000000px;}
.fs6_c00254{font-size:51.000000px;}
.fs4_c00254{font-size:60.000000px;}
.fs2_c00254{font-size:63.000000px;}
.fs8_c00254{font-size:66.000000px;}
.y0_c00254{bottom:0.000000px;}
.y43_c00254{bottom:3.105000px;}
.y42_c00254{bottom:7.228357px;}
.y39_c00254{bottom:46.230000px;}
.y41_c00254{bottom:62.730000px;}
.y38_c00254{bottom:64.230000px;}
.y37_c00254{bottom:82.980000px;}
.y40_c00254{bottom:84.330000px;}
.y36_c00254{bottom:100.230000px;}
.y3f_c00254{bottom:100.530000px;}
.y35_c00254{bottom:118.680000px;}
.y3e_c00254{bottom:120.780000px;}
.y34_c00254{bottom:136.980000px;}
.y3d_c00254{bottom:138.780000px;}
.y33_c00254{bottom:155.280000px;}
.y3c_c00254{bottom:155.580000px;}
.y3b_c00254{bottom:172.530000px;}
.y32_c00254{bottom:173.580000px;}
.y31_c00254{bottom:190.380000px;}
.y3a_c00254{bottom:192.780000px;}
.y30_c00254{bottom:208.980000px;}
.y2f_c00254{bottom:226.830000px;}
.y2e_c00254{bottom:245.730000px;}
.y2d_c00254{bottom:263.880000px;}
.y2c_c00254{bottom:281.430000px;}
.y2b_c00254{bottom:298.380000px;}
.y2a_c00254{bottom:316.980000px;}
.y29_c00254{bottom:335.430000px;}
.y28_c00254{bottom:352.980000px;}
.y1b_c00254{bottom:355.080000px;}
.y27_c00254{bottom:371.280000px;}
.y1a_c00254{bottom:372.030000px;}
.y26_c00254{bottom:389.430000px;}
.y25_c00254{bottom:407.430000px;}
.y24_c00254{bottom:424.980000px;}
.y23_c00254{bottom:442.830000px;}
.y22_c00254{bottom:461.430000px;}
.y21_c00254{bottom:479.580000px;}
.y20_c00254{bottom:497.430000px;}
.y1f_c00254{bottom:515.130000px;}
.y19_c00254{bottom:532.530000px;}
.y1e_c00254{bottom:533.580000px;}
.y18_c00254{bottom:550.230000px;}
.y1d_c00254{bottom:552.780000px;}
.yc_c00254{bottom:568.380000px;}
.y1c_c00254{bottom:570.780000px;}
.yb_c00254{bottom:585.630000px;}
.y17_c00254{bottom:588.930000px;}
.ya_c00254{bottom:603.780000px;}
.y16_c00254{bottom:606.480000px;}
.y9_c00254{bottom:621.630000px;}
.y15_c00254{bottom:624.480000px;}
.y14_c00254{bottom:642.330000px;}
.y8_c00254{bottom:657.480000px;}
.y13_c00254{bottom:660.780000px;}
.y7_c00254{bottom:676.080000px;}
.y12_c00254{bottom:678.780000px;}
.y6_c00254{bottom:693.930000px;}
.y11_c00254{bottom:696.630000px;}
.y5_c00254{bottom:711.780000px;}
.y10_c00254{bottom:714.480000px;}
.y4_c00254{bottom:728.730000px;}
.yf_c00254{bottom:732.780000px;}
.ye_c00254{bottom:750.630000px;}
.y3_c00254{bottom:764.730000px;}
.yd_c00254{bottom:768.780000px;}
.y2_c00254{bottom:785.130000px;}
.y1_c00254{bottom:805.980000px;}
.h8_c00254{height:13.200074px;}
.h2_c00254{height:30.386719px;}
.h9_c00254{height:43.804688px;}
.h4_c00254{height:62.880000px;}
.h5_c00254{height:64.020000px;}
.h6_c00254{height:64.571777px;}
.h3_c00254{height:66.024000px;}
.h7_c00254{height:69.168000px;}
.h1_c00254{height:838.500000px;}
.h0_c00254{height:838.650000px;}
.w2_c00254{width:104.875500px;}
.w1_c00254{width:588.000000px;}
.w0_c00254{width:588.075000px;}
.x0_c00254{left:0.000000px;}
.xd_c00254{left:18.900000px;}
.xa_c00254{left:22.200000px;}
.x4_c00254{left:65.100000px;}
.xf_c00254{left:74.250000px;}
.x11_c00254{left:75.900000px;}
.x10_c00254{left:76.950000px;}
.x9_c00254{left:78.600000px;}
.x2_c00254{left:80.400000px;}
.x5_c00254{left:86.850000px;}
.x6_c00254{left:104.550000px;}
.x8_c00254{left:106.950000px;}
.x7_c00254{left:127.950000px;}
.x3_c00254{left:172.500000px;}
.x1_c00254{left:211.200000px;}
.x15_c00254{left:245.851730px;}
.x13_c00254{left:289.950000px;}
.x12_c00254{left:291.600000px;}
.xe_c00254{left:294.300000px;}
.xc_c00254{left:295.350000px;}
.xb_c00254{left:296.550000px;}
.x14_c00254{left:394.200000px;}
@media print{
.v0_c00254{vertical-align:0.000000pt;}
.lsb_c00254{letter-spacing:0.000000pt;}
.ls1_c00254{letter-spacing:0.360000pt;}
.ls9_c00254{letter-spacing:0.517333pt;}
.ls2_c00254{letter-spacing:1.523200pt;}
.ls0_c00254{letter-spacing:2.666667pt;}
.ls3_c00254{letter-spacing:4.128000pt;}
.lsd_c00254{letter-spacing:5.333333pt;}
.ls8_c00254{letter-spacing:8.000000pt;}
.ls6_c00254{letter-spacing:8.997333pt;}
.lsa_c00254{letter-spacing:10.666667pt;}
.ls7_c00254{letter-spacing:18.533333pt;}
.ls4_c00254{letter-spacing:24.933333pt;}
.lsc_c00254{letter-spacing:37.333333pt;}
.ls5_c00254{letter-spacing:68.133333pt;}
.wsa_c00254{word-spacing:-50.720000pt;}
.wsb_c00254{word-spacing:-31.373333pt;}
.ws6_c00254{word-spacing:-18.080000pt;}
.ws2_c00254{word-spacing:-16.722667pt;}
.ws5_c00254{word-spacing:-16.053333pt;}
.ws1_c00254{word-spacing:-15.882667pt;}
.ws4_c00254{word-spacing:-15.413333pt;}
.ws3_c00254{word-spacing:-12.586667pt;}
.ws0_c00254{word-spacing:-1.600000pt;}
.ws9_c00254{word-spacing:-1.559467pt;}
.wsc_c00254{word-spacing:0.000000pt;}
.ws7_c00254{word-spacing:4.778667pt;}
.ws8_c00254{word-spacing:5.440000pt;}
._19_c00254{margin-left:-12.400000pt;}
._21_c00254{margin-left:-9.728000pt;}
._10_c00254{margin-left:-6.970667pt;}
._11_c00254{margin-left:-5.858667pt;}
._1c_c00254{margin-left:-4.541333pt;}
._b_c00254{margin-left:-3.634667pt;}
._1b_c00254{margin-left:-2.677333pt;}
._e_c00254{margin-left:-1.405333pt;}
._13_c00254{width:1.104000pt;}
._a_c00254{width:2.128000pt;}
._c_c00254{width:3.304000pt;}
._1a_c00254{width:4.480000pt;}
._d_c00254{width:5.656000pt;}
._23_c00254{width:6.786667pt;}
._9_c00254{width:7.765333pt;}
._12_c00254{width:9.309333pt;}
._26_c00254{width:10.448000pt;}
._18_c00254{width:11.456000pt;}
._1e_c00254{width:12.373333pt;}
._14_c00254{width:14.058667pt;}
._15_c00254{width:14.954667pt;}
._16_c00254{width:15.914667pt;}
._17_c00254{width:17.237333pt;}
._7_c00254{width:18.154667pt;}
._20_c00254{width:19.242667pt;}
._5_c00254{width:20.458667pt;}
._1d_c00254{width:21.986667pt;}
._1_c00254{width:23.402667pt;}
._0_c00254{width:25.088000pt;}
._31_c00254{width:25.978667pt;}
._3_c00254{width:27.264000pt;}
._4_c00254{width:28.992000pt;}
._1f_c00254{width:30.794667pt;}
._6_c00254{width:32.768000pt;}
._2_c00254{width:34.069333pt;}
._2d_c00254{width:36.746667pt;}
._29_c00254{width:42.485333pt;}
._2e_c00254{width:58.792000pt;}
._2b_c00254{width:59.704000pt;}
._f_c00254{width:65.352000pt;}
._22_c00254{width:67.893333pt;}
._27_c00254{width:69.413333pt;}
._25_c00254{width:71.333333pt;}
._24_c00254{width:73.397867pt;}
._2a_c00254{width:77.258667pt;}
._2f_c00254{width:79.130667pt;}
._28_c00254{width:106.709333pt;}
._30_c00254{width:137.698667pt;}
._2c_c00254{width:181.712000pt;}
._8_c00254{width:366.592000pt;}
.fs1_c00254{font-size:17.066667pt;}
.fs0_c00254{font-size:21.333333pt;}
.fs7_c00254{font-size:36.266667pt;}
.fs5_c00254{font-size:40.000000pt;}
.fs3_c00254{font-size:42.666667pt;}
.fs6_c00254{font-size:45.333333pt;}
.fs4_c00254{font-size:53.333333pt;}
.fs2_c00254{font-size:56.000000pt;}
.fs8_c00254{font-size:58.666667pt;}
.y0_c00254{bottom:0.000000pt;}
.y43_c00254{bottom:2.760000pt;}
.y42_c00254{bottom:6.425206pt;}
.y39_c00254{bottom:41.093333pt;}
.y41_c00254{bottom:55.760000pt;}
.y38_c00254{bottom:57.093333pt;}
.y37_c00254{bottom:73.760000pt;}
.y40_c00254{bottom:74.960000pt;}
.y36_c00254{bottom:89.093333pt;}
.y3f_c00254{bottom:89.360000pt;}
.y35_c00254{bottom:105.493333pt;}
.y3e_c00254{bottom:107.360000pt;}
.y34_c00254{bottom:121.760000pt;}
.y3d_c00254{bottom:123.360000pt;}
.y33_c00254{bottom:138.026667pt;}
.y3c_c00254{bottom:138.293333pt;}
.y3b_c00254{bottom:153.360000pt;}
.y32_c00254{bottom:154.293333pt;}
.y31_c00254{bottom:169.226667pt;}
.y3a_c00254{bottom:171.360000pt;}
.y30_c00254{bottom:185.760000pt;}
.y2f_c00254{bottom:201.626667pt;}
.y2e_c00254{bottom:218.426667pt;}
.y2d_c00254{bottom:234.560000pt;}
.y2c_c00254{bottom:250.160000pt;}
.y2b_c00254{bottom:265.226667pt;}
.y2a_c00254{bottom:281.760000pt;}
.y29_c00254{bottom:298.160000pt;}
.y28_c00254{bottom:313.760000pt;}
.y1b_c00254{bottom:315.626667pt;}
.y27_c00254{bottom:330.026667pt;}
.y1a_c00254{bottom:330.693333pt;}
.y26_c00254{bottom:346.160000pt;}
.y25_c00254{bottom:362.160000pt;}
.y24_c00254{bottom:377.760000pt;}
.y23_c00254{bottom:393.626667pt;}
.y22_c00254{bottom:410.160000pt;}
.y21_c00254{bottom:426.293333pt;}
.y20_c00254{bottom:442.160000pt;}
.y1f_c00254{bottom:457.893333pt;}
.y19_c00254{bottom:473.360000pt;}
.y1e_c00254{bottom:474.293333pt;}
.y18_c00254{bottom:489.093333pt;}
.y1d_c00254{bottom:491.360000pt;}
.yc_c00254{bottom:505.226667pt;}
.y1c_c00254{bottom:507.360000pt;}
.yb_c00254{bottom:520.560000pt;}
.y17_c00254{bottom:523.493333pt;}
.ya_c00254{bottom:536.693333pt;}
.y16_c00254{bottom:539.093333pt;}
.y9_c00254{bottom:552.560000pt;}
.y15_c00254{bottom:555.093333pt;}
.y14_c00254{bottom:570.960000pt;}
.y8_c00254{bottom:584.426667pt;}
.y13_c00254{bottom:587.360000pt;}
.y7_c00254{bottom:600.960000pt;}
.y12_c00254{bottom:603.360000pt;}
.y6_c00254{bottom:616.826667pt;}
.y11_c00254{bottom:619.226667pt;}
.y5_c00254{bottom:632.693333pt;}
.y10_c00254{bottom:635.093333pt;}
.y4_c00254{bottom:647.760000pt;}
.yf_c00254{bottom:651.360000pt;}
.ye_c00254{bottom:667.226667pt;}
.y3_c00254{bottom:679.760000pt;}
.yd_c00254{bottom:683.360000pt;}
.y2_c00254{bottom:697.893333pt;}
.y1_c00254{bottom:716.426667pt;}
.h8_c00254{height:11.733399pt;}
.h2_c00254{height:27.010417pt;}
.h9_c00254{height:38.937500pt;}
.h4_c00254{height:55.893333pt;}
.h5_c00254{height:56.906667pt;}
.h6_c00254{height:57.397135pt;}
.h3_c00254{height:58.688000pt;}
.h7_c00254{height:61.482667pt;}
.h1_c00254{height:745.333333pt;}
.h0_c00254{height:745.466667pt;}
.w2_c00254{width:93.222667pt;}
.w1_c00254{width:522.666667pt;}
.w0_c00254{width:522.733333pt;}
.x0_c00254{left:0.000000pt;}
.xd_c00254{left:16.800000pt;}
.xa_c00254{left:19.733333pt;}
.x4_c00254{left:57.866667pt;}
.xf_c00254{left:66.000000pt;}
.x11_c00254{left:67.466667pt;}
.x10_c00254{left:68.400000pt;}
.x9_c00254{left:69.866667pt;}
.x2_c00254{left:71.466667pt;}
.x5_c00254{left:77.200000pt;}
.x6_c00254{left:92.933333pt;}
.x8_c00254{left:95.066667pt;}
.x7_c00254{left:113.733333pt;}
.x3_c00254{left:153.333333pt;}
.x1_c00254{left:187.733333pt;}
.x15_c00254{left:218.534871pt;}
.x13_c00254{left:257.733333pt;}
.x12_c00254{left:259.200000pt;}
.xe_c00254{left:261.600000pt;}
.xc_c00254{left:262.533333pt;}
.xb_c00254{left:263.600000pt;}
.x14_c00254{left:350.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7afd45f73a1dc81e14d81f61.woff2')format("woff");}.ff1_c00255{font-family:ff1_c00255;line-height:1.575000;font-style:normal;font-weight:normal;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_fc80f6f38afbb0a86838dd09.woff2')format("woff");}.ff2_c00255{font-family:ff2_c00255;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00255;src:url('chunks/assets/font_bd64042eb437d582375473f4.woff2')format("woff");}.ff3_c00255{font-family:ff3_c00255;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00255;src:url('chunks/assets/font_12a091d386328ccfc62b704a.woff2')format("woff");}.ff4_c00255{font-family:ff4_c00255;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00255;src:url('chunks/assets/font_0ce391de997f24f9f9dd37f4.woff2')format("woff");}.ff5_c00255{font-family:ff5_c00255;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00255;src:url('chunks/assets/font_b8447d5fab8fb7367cf68438.woff2')format("woff");}.ff6_c00255{font-family:ff6_c00255;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00255;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff7_c00255{font-family:ff7_c00255;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00255{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00255{vertical-align:0.000000px;}
.v1_c00255{vertical-align:103.200000px;}
.lsb_c00255{letter-spacing:0.000000px;}
.ls8_c00255{letter-spacing:0.405000px;}
.ls9_c00255{letter-spacing:1.500000px;}
.ls7_c00255{letter-spacing:1.605000px;}
.ls1_c00255{letter-spacing:3.000000px;}
.ls4_c00255{letter-spacing:5.805000px;}
.ls6_c00255{letter-spacing:9.240000px;}
.ls2_c00255{letter-spacing:12.600000px;}
.ls3_c00255{letter-spacing:13.587000px;}
.ls5_c00255{letter-spacing:13.740000px;}
.ls0_c00255{letter-spacing:17.400000px;}
.lsa_c00255{letter-spacing:22.548000px;}
.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;}
}
.ws5_c00255{word-spacing:-18.060000px;}
.ws4_c00255{word-spacing:-18.000000px;}
.ws0_c00255{word-spacing:-17.868000px;}
.ws2_c00255{word-spacing:-17.340000px;}
.ws3_c00255{word-spacing:-14.160000px;}
.ws1_c00255{word-spacing:-13.452000px;}
.ws6_c00255{word-spacing:0.000000px;}
._22_c00255{margin-left:-17.385000px;}
._1d_c00255{margin-left:-15.825000px;}
._1_c00255{margin-left:-11.880000px;}
._8_c00255{margin-left:-10.494000px;}
._7_c00255{margin-left:-8.340000px;}
._10_c00255{margin-left:-7.260000px;}
._9_c00255{margin-left:-5.808000px;}
._2_c00255{margin-left:-4.026000px;}
._0_c00255{margin-left:-2.046000px;}
._1e_c00255{margin-left:-1.008000px;}
._a_c00255{width:1.452000px;}
._5_c00255{width:2.826000px;}
._4_c00255{width:4.818000px;}
._3_c00255{width:6.270000px;}
._c_c00255{width:7.392000px;}
._16_c00255{width:8.439000px;}
._e_c00255{width:9.504000px;}
._11_c00255{width:11.400000px;}
._12_c00255{width:13.452000px;}
._17_c00255{width:14.652000px;}
._b_c00255{width:15.738000px;}
._15_c00255{width:17.961000px;}
._1a_c00255{width:19.608000px;}
._d_c00255{width:20.922000px;}
._f_c00255{width:22.176000px;}
._1b_c00255{width:23.946000px;}
._18_c00255{width:25.872000px;}
._13_c00255{width:27.096000px;}
._1f_c00255{width:28.200000px;}
._21_c00255{width:31.410000px;}
._24_c00255{width:33.756000px;}
._14_c00255{width:40.944000px;}
._25_c00255{width:42.636000px;}
._20_c00255{width:44.628000px;}
._19_c00255{width:48.840000px;}
._1c_c00255{width:89.046000px;}
._6_c00255{width:132.354000px;}
._23_c00255{width:143.850000px;}
.fc2_c00255{color:transparent;}
.fc1_c00255{color:rgb(128,128,128);}
.fc0_c00255{color:rgb(0,0,0);}
.fs6_c00255{font-size:24.000000px;}
.fs5_c00255{font-size:45.000000px;}
.fs8_c00255{font-size:48.000000px;}
.fs3_c00255{font-size:57.000000px;}
.fs1_c00255{font-size:60.000000px;}
.fs2_c00255{font-size:63.000000px;}
.fs0_c00255{font-size:66.000000px;}
.fs4_c00255{font-size:69.000000px;}
.fs7_c00255{font-size:198.000000px;}
.y0_c00255{bottom:0.000000px;}
.y52_c00255{bottom:3.105000px;}
.y51_c00255{bottom:7.228363px;}
.y50_c00255{bottom:37.500000px;}
.y4f_c00255{bottom:55.350000px;}
.y29_c00255{bottom:56.250000px;}
.y4e_c00255{bottom:73.500000px;}
.y28_c00255{bottom:74.700000px;}
.y4d_c00255{bottom:91.050000px;}
.y27_c00255{bottom:92.700000px;}
.y4c_c00255{bottom:110.250000px;}
.y26_c00255{bottom:111.000000px;}
.y4a_c00255{bottom:119.700000px;}
.y4b_c00255{bottom:127.500000px;}
.y25_c00255{bottom:128.850000px;}
.y24_c00255{bottom:147.150000px;}
.y23_c00255{bottom:165.300000px;}
.y49_c00255{bottom:183.150000px;}
.y22_c00255{bottom:183.900000px;}
.y48_c00255{bottom:201.150000px;}
.y21_c00255{bottom:201.450000px;}
.y47_c00255{bottom:218.700000px;}
.y20_c00255{bottom:219.750000px;}
.y1f_c00255{bottom:236.850000px;}
.y46_c00255{bottom:237.150000px;}
.y45_c00255{bottom:254.700000px;}
.y1e_c00255{bottom:256.200000px;}
.y1d_c00255{bottom:274.350000px;}
.y44_c00255{bottom:290.250000px;}
.y1c_c00255{bottom:291.900000px;}
.y43_c00255{bottom:308.400000px;}
.y1b_c00255{bottom:311.100000px;}
.y42_c00255{bottom:327.600000px;}
.y1a_c00255{bottom:329.100000px;}
.y41_c00255{bottom:345.150000px;}
.y19_c00255{bottom:347.250000px;}
.y40_c00255{bottom:363.750000px;}
.y18_c00255{bottom:364.500000px;}
.y3f_c00255{bottom:380.250000px;}
.y17_c00255{bottom:382.950000px;}
.y16_c00255{bottom:399.900000px;}
.y3e_c00255{bottom:418.050000px;}
.y15_c00255{bottom:418.800000px;}
.y3d_c00255{bottom:435.600000px;}
.y14_c00255{bottom:437.100000px;}
.y3c_c00255{bottom:454.500000px;}
.y13_c00255{bottom:455.400000px;}
.y3b_c00255{bottom:472.200000px;}
.y12_c00255{bottom:473.250000px;}
.y3a_c00255{bottom:489.300000px;}
.y11_c00255{bottom:491.700000px;}
.y39_c00255{bottom:508.950000px;}
.y10_c00255{bottom:510.000000px;}
.y38_c00255{bottom:526.050000px;}
.yf_c00255{bottom:528.750000px;}
.y37_c00255{bottom:545.100000px;}
.ye_c00255{bottom:546.150000px;}
.y36_c00255{bottom:561.900000px;}
.yd_c00255{bottom:564.300000px;}
.y35_c00255{bottom:581.550000px;}
.yc_c00255{bottom:582.750000px;}
.y34_c00255{bottom:599.700000px;}
.yb_c00255{bottom:600.750000px;}
.ya_c00255{bottom:618.000000px;}
.y33_c00255{bottom:618.300000px;}
.y32_c00255{bottom:635.550000px;}
.y9_c00255{bottom:636.900000px;}
.y31_c00255{bottom:654.450000px;}
.y8_c00255{bottom:654.750000px;}
.y7_c00255{bottom:672.300000px;}
.y30_c00255{bottom:672.600000px;}
.y2f_c00255{bottom:690.450000px;}
.y6_c00255{bottom:690.900000px;}
.y2e_c00255{bottom:708.450000px;}
.y5_c00255{bottom:709.200000px;}
.y2d_c00255{bottom:726.600000px;}
.y4_c00255{bottom:727.950000px;}
.y2c_c00255{bottom:745.200000px;}
.y3_c00255{bottom:745.950000px;}
.y2b_c00255{bottom:763.800000px;}
.y2_c00255{bottom:764.400000px;}
.y2a_c00255{bottom:781.950000px;}
.y1_c00255{bottom:783.300000px;}
.h8_c00255{height:13.200074px;}
.h9_c00255{height:43.804688px;}
.h3_c00255{height:59.736000px;}
.h4_c00255{height:62.880000px;}
.h7_c00255{height:64.020000px;}
.h2_c00255{height:66.024000px;}
.h1_c00255{height:70.422000px;}
.h5_c00255{height:73.623000px;}
.h6_c00255{height:207.504000px;}
.h0_c00255{height:843.750000px;}
.w2_c00255{width:104.875500px;}
.w1_c00255{width:565.500000px;}
.w0_c00255{width:565.650000px;}
.x0_c00255{left:0.000000px;}
.x5_c00255{left:57.000000px;}
.x2_c00255{left:96.150000px;}
.x1_c00255{left:99.150000px;}
.x4_c00255{left:100.200000px;}
.x3_c00255{left:101.250000px;}
.x6_c00255{left:102.600000px;}
.x7_c00255{left:103.950000px;}
.x8_c00255{left:105.600000px;}
.x9_c00255{left:106.950000px;}
.x18_c00255{left:234.639267px;}
.xa_c00255{left:315.150000px;}
.xb_c00255{left:316.800000px;}
.xc_c00255{left:317.850000px;}
.xd_c00255{left:319.200000px;}
.xf_c00255{left:320.550000px;}
.x16_c00255{left:322.650000px;}
.x13_c00255{left:323.700000px;}
.x10_c00255{left:333.450000px;}
.x11_c00255{left:354.000000px;}
.x15_c00255{left:362.700000px;}
.x14_c00255{left:366.150000px;}
.xe_c00255{left:368.850000px;}
.x12_c00255{left:387.150000px;}
.x17_c00255{left:489.000000px;}
@media print{
.v0_c00255{vertical-align:0.000000pt;}
.v1_c00255{vertical-align:91.733333pt;}
.lsb_c00255{letter-spacing:0.000000pt;}
.ls8_c00255{letter-spacing:0.360000pt;}
.ls9_c00255{letter-spacing:1.333333pt;}
.ls7_c00255{letter-spacing:1.426667pt;}
.ls1_c00255{letter-spacing:2.666667pt;}
.ls4_c00255{letter-spacing:5.160000pt;}
.ls6_c00255{letter-spacing:8.213333pt;}
.ls2_c00255{letter-spacing:11.200000pt;}
.ls3_c00255{letter-spacing:12.077333pt;}
.ls5_c00255{letter-spacing:12.213333pt;}
.ls0_c00255{letter-spacing:15.466667pt;}
.lsa_c00255{letter-spacing:20.042667pt;}
.ws5_c00255{word-spacing:-16.053333pt;}
.ws4_c00255{word-spacing:-16.000000pt;}
.ws0_c00255{word-spacing:-15.882667pt;}
.ws2_c00255{word-spacing:-15.413333pt;}
.ws3_c00255{word-spacing:-12.586667pt;}
.ws1_c00255{word-spacing:-11.957333pt;}
.ws6_c00255{word-spacing:0.000000pt;}
._22_c00255{margin-left:-15.453333pt;}
._1d_c00255{margin-left:-14.066667pt;}
._1_c00255{margin-left:-10.560000pt;}
._8_c00255{margin-left:-9.328000pt;}
._7_c00255{margin-left:-7.413333pt;}
._10_c00255{margin-left:-6.453333pt;}
._9_c00255{margin-left:-5.162667pt;}
._2_c00255{margin-left:-3.578667pt;}
._0_c00255{margin-left:-1.818667pt;}
._1e_c00255{margin-left:-0.896000pt;}
._a_c00255{width:1.290667pt;}
._5_c00255{width:2.512000pt;}
._4_c00255{width:4.282667pt;}
._3_c00255{width:5.573333pt;}
._c_c00255{width:6.570667pt;}
._16_c00255{width:7.501333pt;}
._e_c00255{width:8.448000pt;}
._11_c00255{width:10.133333pt;}
._12_c00255{width:11.957333pt;}
._17_c00255{width:13.024000pt;}
._b_c00255{width:13.989333pt;}
._15_c00255{width:15.965333pt;}
._1a_c00255{width:17.429333pt;}
._d_c00255{width:18.597333pt;}
._f_c00255{width:19.712000pt;}
._1b_c00255{width:21.285333pt;}
._18_c00255{width:22.997333pt;}
._13_c00255{width:24.085333pt;}
._1f_c00255{width:25.066667pt;}
._21_c00255{width:27.920000pt;}
._24_c00255{width:30.005333pt;}
._14_c00255{width:36.394667pt;}
._25_c00255{width:37.898667pt;}
._20_c00255{width:39.669333pt;}
._19_c00255{width:43.413333pt;}
._1c_c00255{width:79.152000pt;}
._6_c00255{width:117.648000pt;}
._23_c00255{width:127.866667pt;}
.fs6_c00255{font-size:21.333333pt;}
.fs5_c00255{font-size:40.000000pt;}
.fs8_c00255{font-size:42.666667pt;}
.fs3_c00255{font-size:50.666667pt;}
.fs1_c00255{font-size:53.333333pt;}
.fs2_c00255{font-size:56.000000pt;}
.fs0_c00255{font-size:58.666667pt;}
.fs4_c00255{font-size:61.333333pt;}
.fs7_c00255{font-size:176.000000pt;}
.y0_c00255{bottom:0.000000pt;}
.y52_c00255{bottom:2.760000pt;}
.y51_c00255{bottom:6.425212pt;}
.y50_c00255{bottom:33.333333pt;}
.y4f_c00255{bottom:49.200000pt;}
.y29_c00255{bottom:50.000000pt;}
.y4e_c00255{bottom:65.333333pt;}
.y28_c00255{bottom:66.400000pt;}
.y4d_c00255{bottom:80.933333pt;}
.y27_c00255{bottom:82.400000pt;}
.y4c_c00255{bottom:98.000000pt;}
.y26_c00255{bottom:98.666667pt;}
.y4a_c00255{bottom:106.400000pt;}
.y4b_c00255{bottom:113.333333pt;}
.y25_c00255{bottom:114.533333pt;}
.y24_c00255{bottom:130.800000pt;}
.y23_c00255{bottom:146.933333pt;}
.y49_c00255{bottom:162.800000pt;}
.y22_c00255{bottom:163.466667pt;}
.y48_c00255{bottom:178.800000pt;}
.y21_c00255{bottom:179.066667pt;}
.y47_c00255{bottom:194.400000pt;}
.y20_c00255{bottom:195.333333pt;}
.y1f_c00255{bottom:210.533333pt;}
.y46_c00255{bottom:210.800000pt;}
.y45_c00255{bottom:226.400000pt;}
.y1e_c00255{bottom:227.733333pt;}
.y1d_c00255{bottom:243.866667pt;}
.y44_c00255{bottom:258.000000pt;}
.y1c_c00255{bottom:259.466667pt;}
.y43_c00255{bottom:274.133333pt;}
.y1b_c00255{bottom:276.533333pt;}
.y42_c00255{bottom:291.200000pt;}
.y1a_c00255{bottom:292.533333pt;}
.y41_c00255{bottom:306.800000pt;}
.y19_c00255{bottom:308.666667pt;}
.y40_c00255{bottom:323.333333pt;}
.y18_c00255{bottom:324.000000pt;}
.y3f_c00255{bottom:338.000000pt;}
.y17_c00255{bottom:340.400000pt;}
.y16_c00255{bottom:355.466667pt;}
.y3e_c00255{bottom:371.600000pt;}
.y15_c00255{bottom:372.266667pt;}
.y3d_c00255{bottom:387.200000pt;}
.y14_c00255{bottom:388.533333pt;}
.y3c_c00255{bottom:404.000000pt;}
.y13_c00255{bottom:404.800000pt;}
.y3b_c00255{bottom:419.733333pt;}
.y12_c00255{bottom:420.666667pt;}
.y3a_c00255{bottom:434.933333pt;}
.y11_c00255{bottom:437.066667pt;}
.y39_c00255{bottom:452.400000pt;}
.y10_c00255{bottom:453.333333pt;}
.y38_c00255{bottom:467.600000pt;}
.yf_c00255{bottom:470.000000pt;}
.y37_c00255{bottom:484.533333pt;}
.ye_c00255{bottom:485.466667pt;}
.y36_c00255{bottom:499.466667pt;}
.yd_c00255{bottom:501.600000pt;}
.y35_c00255{bottom:516.933333pt;}
.yc_c00255{bottom:518.000000pt;}
.y34_c00255{bottom:533.066667pt;}
.yb_c00255{bottom:534.000000pt;}
.ya_c00255{bottom:549.333333pt;}
.y33_c00255{bottom:549.600000pt;}
.y32_c00255{bottom:564.933333pt;}
.y9_c00255{bottom:566.133333pt;}
.y31_c00255{bottom:581.733333pt;}
.y8_c00255{bottom:582.000000pt;}
.y7_c00255{bottom:597.600000pt;}
.y30_c00255{bottom:597.866667pt;}
.y2f_c00255{bottom:613.733333pt;}
.y6_c00255{bottom:614.133333pt;}
.y2e_c00255{bottom:629.733333pt;}
.y5_c00255{bottom:630.400000pt;}
.y2d_c00255{bottom:645.866667pt;}
.y4_c00255{bottom:647.066667pt;}
.y2c_c00255{bottom:662.400000pt;}
.y3_c00255{bottom:663.066667pt;}
.y2b_c00255{bottom:678.933333pt;}
.y2_c00255{bottom:679.466667pt;}
.y2a_c00255{bottom:695.066667pt;}
.y1_c00255{bottom:696.266667pt;}
.h8_c00255{height:11.733399pt;}
.h9_c00255{height:38.937500pt;}
.h3_c00255{height:53.098667pt;}
.h4_c00255{height:55.893333pt;}
.h7_c00255{height:56.906667pt;}
.h2_c00255{height:58.688000pt;}
.h1_c00255{height:62.597333pt;}
.h5_c00255{height:65.442667pt;}
.h6_c00255{height:184.448000pt;}
.h0_c00255{height:750.000000pt;}
.w2_c00255{width:93.222667pt;}
.w1_c00255{width:502.666667pt;}
.w0_c00255{width:502.800000pt;}
.x0_c00255{left:0.000000pt;}
.x5_c00255{left:50.666667pt;}
.x2_c00255{left:85.466667pt;}
.x1_c00255{left:88.133333pt;}
.x4_c00255{left:89.066667pt;}
.x3_c00255{left:90.000000pt;}
.x6_c00255{left:91.200000pt;}
.x7_c00255{left:92.400000pt;}
.x8_c00255{left:93.866667pt;}
.x9_c00255{left:95.066667pt;}
.x18_c00255{left:208.568237pt;}
.xa_c00255{left:280.133333pt;}
.xb_c00255{left:281.600000pt;}
.xc_c00255{left:282.533333pt;}
.xd_c00255{left:283.733333pt;}
.xf_c00255{left:284.933333pt;}
.x16_c00255{left:286.800000pt;}
.x13_c00255{left:287.733333pt;}
.x10_c00255{left:296.400000pt;}
.x11_c00255{left:314.666667pt;}
.x15_c00255{left:322.400000pt;}
.x14_c00255{left:325.466667pt;}
.xe_c00255{left:327.866667pt;}
.x12_c00255{left:344.133333pt;}
.x17_c00255{left:434.666667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_6335aa1b4a6902f5176aef2b.woff2')format("woff");}.ff1_c00256{font-family:ff1_c00256;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00256;src:url('chunks/assets/font_485f84d7d0b5dc7a2a9a897b.woff2')format("woff");}.ff2_c00256{font-family:ff2_c00256;line-height:1.575000;font-style:normal;font-weight:normal;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_d22badeba18375754d3dc423.woff2')format("woff");}.ff3_c00256{font-family:ff3_c00256;line-height:1.437000;font-style:normal;font-weight:normal;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_afcb5061eb9caa3215d2e2d5.woff2')format("woff");}.ff4_c00256{font-family:ff4_c00256;line-height:1.437000;font-style:normal;font-weight:normal;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_6f2e18f1b052da107ec56057.woff2')format("woff");}.ff5_c00256{font-family:ff5_c00256;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00256;src:url('chunks/assets/font_cb8f9761fb13912d46ce060e.woff2')format("woff");}.ff6_c00256{font-family:ff6_c00256;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00256;src:url('chunks/assets/font_4e0ebf2c3249671242d5e20f.woff2')format("woff");}.ff7_c00256{font-family:ff7_c00256;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00256;src:url('chunks/assets/font_7fb705f368ec44eaba052815.woff2')format("woff");}.ff8_c00256{font-family:ff8_c00256;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00256;src:url('chunks/assets/font_409be9f974102b4c0e58812d.woff2')format("woff");}.ff9_c00256{font-family:ff9_c00256;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00256;src:url('chunks/assets/font_26130d11cd3135600f3f1723.woff2')format("woff");}.ffa_c00256{font-family:ffa_c00256;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00256;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ffb_c00256{font-family:ffb_c00256;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00256{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00256{vertical-align:0.000000px;}
.ls8_c00256{letter-spacing:0.000000px;}
.ls6_c00256{letter-spacing:0.600000px;}
.ls0_c00256{letter-spacing:1.699200px;}
.ls1_c00256{letter-spacing:3.000000px;}
.ls4_c00256{letter-spacing:4.200000px;}
.ls9_c00256{letter-spacing:6.000000px;}
.ls7_c00256{letter-spacing:12.000000px;}
.ls5_c00256{letter-spacing:17.850000px;}
.ls2_c00256{letter-spacing:22.599000px;}
.ls3_c00256{letter-spacing:31.650000px;}
.sc__c00256{text-shadow:none;}
.sc0_c00256{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00256{-webkit-text-stroke:0px transparent;}
.sc0_c00256{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00256{word-spacing:-54.498000px;}
.ws7_c00256{word-spacing:-20.340000px;}
.ws6_c00256{word-spacing:-18.060000px;}
.ws2_c00256{word-spacing:-17.160000px;}
.ws4_c00256{word-spacing:-15.576000px;}
.ws3_c00256{word-spacing:-14.160000px;}
.ws5_c00256{word-spacing:-11.679000px;}
.ws1_c00256{word-spacing:-8.908800px;}
.ws8_c00256{word-spacing:0.000000px;}
._8_c00256{margin-left:-30.291000px;}
._2b_c00256{margin-left:-17.154000px;}
._6_c00256{margin-left:-13.317000px;}
._19_c00256{margin-left:-12.282000px;}
._23_c00256{margin-left:-10.469400px;}
._1b_c00256{margin-left:-8.760000px;}
._1a_c00256{margin-left:-6.777600px;}
._a_c00256{margin-left:-5.451000px;}
._b_c00256{margin-left:-3.933000px;}
._18_c00256{margin-left:-2.895000px;}
._1_c00256{margin-left:-1.725000px;}
._0_c00256{width:1.080000px;}
._e_c00256{width:2.940000px;}
._c_c00256{width:4.620000px;}
._d_c00256{width:6.540000px;}
._9_c00256{width:8.556000px;}
._3_c00256{width:10.267200px;}
._1e_c00256{width:11.310000px;}
._5_c00256{width:12.748800px;}
._16_c00256{width:14.112000px;}
._20_c00256{width:15.221400px;}
._f_c00256{width:16.336800px;}
._13_c00256{width:17.515200px;}
._17_c00256{width:18.672000px;}
._4_c00256{width:20.368800px;}
._14_c00256{width:21.600000px;}
._1c_c00256{width:22.800000px;}
._12_c00256{width:24.484800px;}
._26_c00256{width:25.510800px;}
._21_c00256{width:26.640000px;}
._2_c00256{width:28.023000px;}
._24_c00256{width:29.160000px;}
._28_c00256{width:30.195000px;}
._1d_c00256{width:32.391000px;}
._15_c00256{width:33.504000px;}
._22_c00256{width:35.130000px;}
._27_c00256{width:36.306000px;}
._2a_c00256{width:37.644000px;}
._25_c00256{width:39.480000px;}
._29_c00256{width:43.200000px;}
._2c_c00256{width:47.649000px;}
._10_c00256{width:76.958400px;}
._1f_c00256{width:131.643000px;}
._11_c00256{width:211.560000px;}
._7_c00256{width:371.220000px;}
.fc2_c00256{color:transparent;}
.fc1_c00256{color:rgb(128,128,128);}
.fc0_c00256{color:rgb(0,0,0);}
.fs4_c00256{font-size:24.000000px;}
.fs9_c00256{font-size:48.000000px;}
.fs7_c00256{font-size:51.000000px;}
.fs6_c00256{font-size:52.800000px;}
.fs0_c00256{font-size:54.000000px;}
.fs2_c00256{font-size:55.200000px;}
.fs3_c00256{font-size:60.000000px;}
.fs8_c00256{font-size:63.000000px;}
.fs5_c00256{font-size:66.000000px;}
.fs1_c00256{font-size:69.000000px;}
.y0_c00256{bottom:0.000000px;}
.y57_c00256{bottom:3.105000px;}
.y56_c00256{bottom:7.228357px;}
.y55_c00256{bottom:37.530000px;}
.y54_c00256{bottom:56.130000px;}
.y2c_c00256{bottom:58.080000px;}
.y53_c00256{bottom:74.280000px;}
.y2b_c00256{bottom:76.980000px;}
.y52_c00256{bottom:92.430000px;}
.y2a_c00256{bottom:95.130000px;}
.y51_c00256{bottom:110.430000px;}
.y29_c00256{bottom:113.130000px;}
.y50_c00256{bottom:128.580000px;}
.y28_c00256{bottom:131.730000px;}
.y4f_c00256{bottom:147.180000px;}
.y27_c00256{bottom:149.580000px;}
.y4e_c00256{bottom:164.730000px;}
.y26_c00256{bottom:167.430000px;}
.y4d_c00256{bottom:183.330000px;}
.y25_c00256{bottom:186.030000px;}
.y4c_c00256{bottom:201.180000px;}
.y24_c00256{bottom:204.930000px;}
.y4b_c00256{bottom:219.030000px;}
.y23_c00256{bottom:223.380000px;}
.y4a_c00256{bottom:237.030000px;}
.y22_c00256{bottom:241.380000px;}
.y49_c00256{bottom:255.180000px;}
.y21_c00256{bottom:258.930000px;}
.y48_c00256{bottom:273.480000px;}
.y20_c00256{bottom:277.080000px;}
.y47_c00256{bottom:291.930000px;}
.y1f_c00256{bottom:295.380000px;}
.y46_c00256{bottom:310.230000px;}
.y1e_c00256{bottom:313.230000px;}
.y45_c00256{bottom:327.780000px;}
.y1d_c00256{bottom:331.380000px;}
.y44_c00256{bottom:346.230000px;}
.y1c_c00256{bottom:349.680000px;}
.y43_c00256{bottom:363.180000px;}
.y1b_c00256{bottom:367.530000px;}
.y42_c00256{bottom:381.780000px;}
.y1a_c00256{bottom:385.530000px;}
.y41_c00256{bottom:400.380000px;}
.y19_c00256{bottom:403.680000px;}
.y40_c00256{bottom:418.530000px;}
.y18_c00256{bottom:421.830000px;}
.y3f_c00256{bottom:436.680000px;}
.y17_c00256{bottom:439.380000px;}
.y3e_c00256{bottom:455.580000px;}
.y16_c00256{bottom:457.980000px;}
.y3d_c00256{bottom:473.280000px;}
.y15_c00256{bottom:475.530000px;}
.y3c_c00256{bottom:491.130000px;}
.y14_c00256{bottom:493.380000px;}
.y3b_c00256{bottom:510.330000px;}
.y13_c00256{bottom:511.080000px;}
.y3a_c00256{bottom:529.230000px;}
.y12_c00256{bottom:529.830000px;}
.y39_c00256{bottom:547.830000px;}
.y5_c00256{bottom:548.130000px;}
.y11_c00256{bottom:565.380000px;}
.y4_c00256{bottom:565.980000px;}
.y38_c00256{bottom:566.280000px;}
.y10_c00256{bottom:582.930000px;}
.y37_c00256{bottom:584.580000px;}
.yf_c00256{bottom:601.080000px;}
.y36_c00256{bottom:602.880000px;}
.ye_c00256{bottom:618.930000px;}
.y35_c00256{bottom:619.680000px;}
.yd_c00256{bottom:636.930000px;}
.y34_c00256{bottom:637.980000px;}
.yc_c00256{bottom:654.780000px;}
.y33_c00256{bottom:655.830000px;}
.yb_c00256{bottom:672.630000px;}
.y32_c00256{bottom:674.280000px;}
.ya_c00256{bottom:690.480000px;}
.y31_c00256{bottom:691.980000px;}
.y9_c00256{bottom:708.780000px;}
.y30_c00256{bottom:710.430000px;}
.y8_c00256{bottom:726.630000px;}
.y2f_c00256{bottom:728.730000px;}
.y1_c00256{bottom:743.580000px;}
.y7_c00256{bottom:744.180000px;}
.y2e_c00256{bottom:746.280000px;}
.y6_c00256{bottom:762.480000px;}
.y2d_c00256{bottom:764.880000px;}
.y3_c00256{bottom:781.080000px;}
.y2_c00256{bottom:801.630000px;}
.h9_c00256{height:13.200074px;}
.ha_c00256{height:43.804688px;}
.h8_c00256{height:56.592000px;}
.h2_c00256{height:58.536000px;}
.h4_c00256{height:62.880000px;}
.h7_c00256{height:64.020000px;}
.h5_c00256{height:69.168000px;}
.h6_c00256{height:72.312000px;}
.h3_c00256{height:73.623000px;}
.h0_c00256{height:841.350000px;}
.h1_c00256{height:841.500000px;}
.w1_c00256{width:104.875500px;}
.w0_c00256{width:590.250000px;}
.x0_c00256{left:0.000000px;}
.x4_c00256{left:24.600000px;}
.x1_c00256{left:29.700000px;}
.xa_c00256{left:81.300000px;}
.x9_c00256{left:82.650000px;}
.x8_c00256{left:83.700000px;}
.x7_c00256{left:84.750000px;}
.x5_c00256{left:86.100000px;}
.x3_c00256{left:87.450000px;}
.x6_c00256{left:89.100000px;}
.x2_c00256{left:213.300000px;}
.x11_c00256{left:246.939240px;}
.xe_c00256{left:298.050000px;}
.xf_c00256{left:299.400000px;}
.xb_c00256{left:300.600000px;}
.xd_c00256{left:301.950000px;}
.xc_c00256{left:303.000000px;}
.x10_c00256{left:389.850000px;}
@media print{
.v0_c00256{vertical-align:0.000000pt;}
.ls8_c00256{letter-spacing:0.000000pt;}
.ls6_c00256{letter-spacing:0.533333pt;}
.ls0_c00256{letter-spacing:1.510400pt;}
.ls1_c00256{letter-spacing:2.666667pt;}
.ls4_c00256{letter-spacing:3.733333pt;}
.ls9_c00256{letter-spacing:5.333333pt;}
.ls7_c00256{letter-spacing:10.666667pt;}
.ls5_c00256{letter-spacing:15.866667pt;}
.ls2_c00256{letter-spacing:20.088000pt;}
.ls3_c00256{letter-spacing:28.133333pt;}
.ws0_c00256{word-spacing:-48.442667pt;}
.ws7_c00256{word-spacing:-18.080000pt;}
.ws6_c00256{word-spacing:-16.053333pt;}
.ws2_c00256{word-spacing:-15.253333pt;}
.ws4_c00256{word-spacing:-13.845333pt;}
.ws3_c00256{word-spacing:-12.586667pt;}
.ws5_c00256{word-spacing:-10.381333pt;}
.ws1_c00256{word-spacing:-7.918933pt;}
.ws8_c00256{word-spacing:0.000000pt;}
._8_c00256{margin-left:-26.925333pt;}
._2b_c00256{margin-left:-15.248000pt;}
._6_c00256{margin-left:-11.837333pt;}
._19_c00256{margin-left:-10.917333pt;}
._23_c00256{margin-left:-9.306133pt;}
._1b_c00256{margin-left:-7.786667pt;}
._1a_c00256{margin-left:-6.024533pt;}
._a_c00256{margin-left:-4.845333pt;}
._b_c00256{margin-left:-3.496000pt;}
._18_c00256{margin-left:-2.573333pt;}
._1_c00256{margin-left:-1.533333pt;}
._0_c00256{width:0.960000pt;}
._e_c00256{width:2.613333pt;}
._c_c00256{width:4.106667pt;}
._d_c00256{width:5.813333pt;}
._9_c00256{width:7.605333pt;}
._3_c00256{width:9.126400pt;}
._1e_c00256{width:10.053333pt;}
._5_c00256{width:11.332267pt;}
._16_c00256{width:12.544000pt;}
._20_c00256{width:13.530133pt;}
._f_c00256{width:14.521600pt;}
._13_c00256{width:15.569067pt;}
._17_c00256{width:16.597333pt;}
._4_c00256{width:18.105600pt;}
._14_c00256{width:19.200000pt;}
._1c_c00256{width:20.266667pt;}
._12_c00256{width:21.764267pt;}
._26_c00256{width:22.676267pt;}
._21_c00256{width:23.680000pt;}
._2_c00256{width:24.909333pt;}
._24_c00256{width:25.920000pt;}
._28_c00256{width:26.840000pt;}
._1d_c00256{width:28.792000pt;}
._15_c00256{width:29.781333pt;}
._22_c00256{width:31.226667pt;}
._27_c00256{width:32.272000pt;}
._2a_c00256{width:33.461333pt;}
._25_c00256{width:35.093333pt;}
._29_c00256{width:38.400000pt;}
._2c_c00256{width:42.354667pt;}
._10_c00256{width:68.407467pt;}
._1f_c00256{width:117.016000pt;}
._11_c00256{width:188.053333pt;}
._7_c00256{width:329.973333pt;}
.fs4_c00256{font-size:21.333333pt;}
.fs9_c00256{font-size:42.666667pt;}
.fs7_c00256{font-size:45.333333pt;}
.fs6_c00256{font-size:46.933333pt;}
.fs0_c00256{font-size:48.000000pt;}
.fs2_c00256{font-size:49.066667pt;}
.fs3_c00256{font-size:53.333333pt;}
.fs8_c00256{font-size:56.000000pt;}
.fs5_c00256{font-size:58.666667pt;}
.fs1_c00256{font-size:61.333333pt;}
.y0_c00256{bottom:0.000000pt;}
.y57_c00256{bottom:2.760000pt;}
.y56_c00256{bottom:6.425206pt;}
.y55_c00256{bottom:33.360000pt;}
.y54_c00256{bottom:49.893333pt;}
.y2c_c00256{bottom:51.626667pt;}
.y53_c00256{bottom:66.026667pt;}
.y2b_c00256{bottom:68.426667pt;}
.y52_c00256{bottom:82.160000pt;}
.y2a_c00256{bottom:84.560000pt;}
.y51_c00256{bottom:98.160000pt;}
.y29_c00256{bottom:100.560000pt;}
.y50_c00256{bottom:114.293333pt;}
.y28_c00256{bottom:117.093333pt;}
.y4f_c00256{bottom:130.826667pt;}
.y27_c00256{bottom:132.960000pt;}
.y4e_c00256{bottom:146.426667pt;}
.y26_c00256{bottom:148.826667pt;}
.y4d_c00256{bottom:162.960000pt;}
.y25_c00256{bottom:165.360000pt;}
.y4c_c00256{bottom:178.826667pt;}
.y24_c00256{bottom:182.160000pt;}
.y4b_c00256{bottom:194.693333pt;}
.y23_c00256{bottom:198.560000pt;}
.y4a_c00256{bottom:210.693333pt;}
.y22_c00256{bottom:214.560000pt;}
.y49_c00256{bottom:226.826667pt;}
.y21_c00256{bottom:230.160000pt;}
.y48_c00256{bottom:243.093333pt;}
.y20_c00256{bottom:246.293333pt;}
.y47_c00256{bottom:259.493333pt;}
.y1f_c00256{bottom:262.560000pt;}
.y46_c00256{bottom:275.760000pt;}
.y1e_c00256{bottom:278.426667pt;}
.y45_c00256{bottom:291.360000pt;}
.y1d_c00256{bottom:294.560000pt;}
.y44_c00256{bottom:307.760000pt;}
.y1c_c00256{bottom:310.826667pt;}
.y43_c00256{bottom:322.826667pt;}
.y1b_c00256{bottom:326.693333pt;}
.y42_c00256{bottom:339.360000pt;}
.y1a_c00256{bottom:342.693333pt;}
.y41_c00256{bottom:355.893333pt;}
.y19_c00256{bottom:358.826667pt;}
.y40_c00256{bottom:372.026667pt;}
.y18_c00256{bottom:374.960000pt;}
.y3f_c00256{bottom:388.160000pt;}
.y17_c00256{bottom:390.560000pt;}
.y3e_c00256{bottom:404.960000pt;}
.y16_c00256{bottom:407.093333pt;}
.y3d_c00256{bottom:420.693333pt;}
.y15_c00256{bottom:422.693333pt;}
.y3c_c00256{bottom:436.560000pt;}
.y14_c00256{bottom:438.560000pt;}
.y3b_c00256{bottom:453.626667pt;}
.y13_c00256{bottom:454.293333pt;}
.y3a_c00256{bottom:470.426667pt;}
.y12_c00256{bottom:470.960000pt;}
.y39_c00256{bottom:486.960000pt;}
.y5_c00256{bottom:487.226667pt;}
.y11_c00256{bottom:502.560000pt;}
.y4_c00256{bottom:503.093333pt;}
.y38_c00256{bottom:503.360000pt;}
.y10_c00256{bottom:518.160000pt;}
.y37_c00256{bottom:519.626667pt;}
.yf_c00256{bottom:534.293333pt;}
.y36_c00256{bottom:535.893333pt;}
.ye_c00256{bottom:550.160000pt;}
.y35_c00256{bottom:550.826667pt;}
.yd_c00256{bottom:566.160000pt;}
.y34_c00256{bottom:567.093333pt;}
.yc_c00256{bottom:582.026667pt;}
.y33_c00256{bottom:582.960000pt;}
.yb_c00256{bottom:597.893333pt;}
.y32_c00256{bottom:599.360000pt;}
.ya_c00256{bottom:613.760000pt;}
.y31_c00256{bottom:615.093333pt;}
.y9_c00256{bottom:630.026667pt;}
.y30_c00256{bottom:631.493333pt;}
.y8_c00256{bottom:645.893333pt;}
.y2f_c00256{bottom:647.760000pt;}
.y1_c00256{bottom:660.960000pt;}
.y7_c00256{bottom:661.493333pt;}
.y2e_c00256{bottom:663.360000pt;}
.y6_c00256{bottom:677.760000pt;}
.y2d_c00256{bottom:679.893333pt;}
.y3_c00256{bottom:694.293333pt;}
.y2_c00256{bottom:712.560000pt;}
.h9_c00256{height:11.733399pt;}
.ha_c00256{height:38.937500pt;}
.h8_c00256{height:50.304000pt;}
.h2_c00256{height:52.032000pt;}
.h4_c00256{height:55.893333pt;}
.h7_c00256{height:56.906667pt;}
.h5_c00256{height:61.482667pt;}
.h6_c00256{height:64.277333pt;}
.h3_c00256{height:65.442667pt;}
.h0_c00256{height:747.866667pt;}
.h1_c00256{height:748.000000pt;}
.w1_c00256{width:93.222667pt;}
.w0_c00256{width:524.666667pt;}
.x0_c00256{left:0.000000pt;}
.x4_c00256{left:21.866667pt;}
.x1_c00256{left:26.400000pt;}
.xa_c00256{left:72.266667pt;}
.x9_c00256{left:73.466667pt;}
.x8_c00256{left:74.400000pt;}
.x7_c00256{left:75.333333pt;}
.x5_c00256{left:76.533333pt;}
.x3_c00256{left:77.733333pt;}
.x6_c00256{left:79.200000pt;}
.x2_c00256{left:189.600000pt;}
.x11_c00256{left:219.501546pt;}
.xe_c00256{left:264.933333pt;}
.xf_c00256{left:266.133333pt;}
.xb_c00256{left:267.200000pt;}
.xd_c00256{left:268.400000pt;}
.xc_c00256{left:269.333333pt;}
.x10_c00256{left:346.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_6aa1b58294c515e6678f69ed.woff2')format("woff");}.ff1_c00257{font-family:ff1_c00257;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00257;src:url('chunks/assets/font_fd3e216d2b8c1ae13f38d85f.woff2')format("woff");}.ff2_c00257{font-family:ff2_c00257;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00257;src:url('chunks/assets/font_aaa7bb8690c3de708d0e499f.woff2')format("woff");}.ff3_c00257{font-family:ff3_c00257;line-height:1.575000;font-style:normal;font-weight:normal;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_7164f7fc20c479aacf7b7c04.woff2')format("woff");}.ff4_c00257{font-family:ff4_c00257;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00257;src:url('chunks/assets/font_32e32f9f9438022b7006f387.woff2')format("woff");}.ff5_c00257{font-family:ff5_c00257;line-height:1.575000;font-style:normal;font-weight:normal;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_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff6_c00257{font-family:ff6_c00257;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00257{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00257{vertical-align:0.000000px;}
.ls3_c00257{letter-spacing:0.000000px;}
.ls0_c00257{letter-spacing:3.000000px;}
.ls4_c00257{letter-spacing:6.000000px;}
.ls2_c00257{letter-spacing:25.740000px;}
.ls1_c00257{letter-spacing:29.340000px;}
.sc__c00257{text-shadow:none;}
.sc0_c00257{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00257{-webkit-text-stroke:0px transparent;}
.sc0_c00257{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00257{word-spacing:-39.399000px;}
.ws2_c00257{word-spacing:-35.295000px;}
.ws4_c00257{word-spacing:-18.060000px;}
.ws1_c00257{word-spacing:-18.000000px;}
.ws0_c00257{word-spacing:-14.160000px;}
.ws5_c00257{word-spacing:0.000000px;}
._1a_c00257{margin-left:-28.260000px;}
._1e_c00257{margin-left:-16.020000px;}
._1f_c00257{margin-left:-14.820000px;}
._21_c00257{margin-left:-11.340000px;}
._11_c00257{margin-left:-8.820000px;}
._1d_c00257{margin-left:-7.740000px;}
._15_c00257{margin-left:-5.880000px;}
._10_c00257{margin-left:-4.800000px;}
._e_c00257{margin-left:-3.780000px;}
._a_c00257{margin-left:-1.920000px;}
._5_c00257{width:1.500000px;}
._6_c00257{width:3.060000px;}
._9_c00257{width:4.200000px;}
._8_c00257{width:5.400000px;}
._d_c00257{width:6.480000px;}
._7_c00257{width:7.740000px;}
._b_c00257{width:9.780000px;}
._c_c00257{width:11.820000px;}
._f_c00257{width:13.140000px;}
._0_c00257{width:14.400000px;}
._1_c00257{width:16.140000px;}
._20_c00257{width:17.880000px;}
._17_c00257{width:19.380000px;}
._4_c00257{width:20.460000px;}
._3_c00257{width:21.960000px;}
._2_c00257{width:23.580000px;}
._12_c00257{width:24.840000px;}
._1c_c00257{width:26.160000px;}
._16_c00257{width:29.220000px;}
._23_c00257{width:30.600000px;}
._13_c00257{width:31.740000px;}
._14_c00257{width:33.360000px;}
._19_c00257{width:35.220000px;}
._18_c00257{width:36.960000px;}
._22_c00257{width:46.440000px;}
._1b_c00257{width:101.940000px;}
.fc2_c00257{color:transparent;}
.fc1_c00257{color:rgb(128,128,128);}
.fc0_c00257{color:rgb(0,0,0);}
.fs1_c00257{font-size:45.000000px;}
.fs3_c00257{font-size:48.000000px;}
.fs0_c00257{font-size:60.000000px;}
.fs2_c00257{font-size:69.000000px;}
.y0_c00257{bottom:0.000000px;}
.y55_c00257{bottom:3.105000px;}
.y54_c00257{bottom:7.228363px;}
.y53_c00257{bottom:39.750000px;}
.y52_c00257{bottom:58.950000px;}
.y2a_c00257{bottom:60.000000px;}
.y51_c00257{bottom:77.550000px;}
.y29_c00257{bottom:78.600000px;}
.y50_c00257{bottom:95.550000px;}
.y28_c00257{bottom:96.300000px;}
.y4f_c00257{bottom:114.300000px;}
.y27_c00257{bottom:115.800000px;}
.y4e_c00257{bottom:132.600000px;}
.y26_c00257{bottom:133.350000px;}
.y4d_c00257{bottom:149.850000px;}
.y25_c00257{bottom:151.950000px;}
.y4c_c00257{bottom:168.450000px;}
.y24_c00257{bottom:170.400000px;}
.y4b_c00257{bottom:187.200000px;}
.y23_c00257{bottom:188.250000px;}
.y4a_c00257{bottom:205.800000px;}
.y22_c00257{bottom:206.850000px;}
.y49_c00257{bottom:223.950000px;}
.y21_c00257{bottom:224.400000px;}
.y48_c00257{bottom:242.250000px;}
.y20_c00257{bottom:242.400000px;}
.y47_c00257{bottom:260.550000px;}
.y1f_c00257{bottom:261.000000px;}
.y46_c00257{bottom:278.700000px;}
.y1e_c00257{bottom:279.000000px;}
.y45_c00257{bottom:296.550000px;}
.y1d_c00257{bottom:297.300000px;}
.y1c_c00257{bottom:315.000000px;}
.y44_c00257{bottom:333.450000px;}
.y1b_c00257{bottom:333.750000px;}
.y1a_c00257{bottom:351.900000px;}
.y43_c00257{bottom:352.050000px;}
.y19_c00257{bottom:369.900000px;}
.y18_c00257{bottom:387.900000px;}
.y42_c00257{bottom:388.800000px;}
.y17_c00257{bottom:406.050000px;}
.y41_c00257{bottom:406.950000px;}
.y16_c00257{bottom:423.900000px;}
.y40_c00257{bottom:424.800000px;}
.y15_c00257{bottom:442.200000px;}
.y3f_c00257{bottom:442.800000px;}
.y14_c00257{bottom:460.350000px;}
.y3e_c00257{bottom:461.400000px;}
.y13_c00257{bottom:478.650000px;}
.y3d_c00257{bottom:479.550000px;}
.y12_c00257{bottom:496.500000px;}
.y3c_c00257{bottom:497.100000px;}
.y11_c00257{bottom:514.350000px;}
.y3b_c00257{bottom:515.400000px;}
.y10_c00257{bottom:531.900000px;}
.y3a_c00257{bottom:533.250000px;}
.yf_c00257{bottom:550.200000px;}
.y39_c00257{bottom:552.150000px;}
.ye_c00257{bottom:568.800000px;}
.y38_c00257{bottom:570.150000px;}
.yd_c00257{bottom:587.700000px;}
.y37_c00257{bottom:588.600000px;}
.yc_c00257{bottom:605.550000px;}
.y36_c00257{bottom:607.200000px;}
.yb_c00257{bottom:624.000000px;}
.y35_c00257{bottom:624.600000px;}
.ya_c00257{bottom:642.000000px;}
.y34_c00257{bottom:642.600000px;}
.y9_c00257{bottom:660.450000px;}
.y33_c00257{bottom:661.200000px;}
.y32_c00257{bottom:678.750000px;}
.y8_c00257{bottom:679.500000px;}
.y7_c00257{bottom:696.600000px;}
.y31_c00257{bottom:697.050000px;}
.y6_c00257{bottom:714.450000px;}
.y30_c00257{bottom:714.900000px;}
.y5_c00257{bottom:733.050000px;}
.y2f_c00257{bottom:733.500000px;}
.y4_c00257{bottom:751.350000px;}
.y2e_c00257{bottom:751.650000px;}
.y2d_c00257{bottom:769.050000px;}
.y3_c00257{bottom:769.800000px;}
.y2c_c00257{bottom:787.050000px;}
.y2_c00257{bottom:787.950000px;}
.y2b_c00257{bottom:807.600000px;}
.y1_c00257{bottom:808.200000px;}
.h4_c00257{height:13.200074px;}
.h5_c00257{height:43.804688px;}
.h1_c00257{height:62.880000px;}
.h2_c00257{height:64.020000px;}
.h3_c00257{height:73.623000px;}
.h0_c00257{height:843.750000px;}
.w2_c00257{width:104.875500px;}
.w1_c00257{width:565.500000px;}
.w0_c00257{width:565.650000px;}
.x0_c00257{left:0.000000px;}
.x5_c00257{left:87.750000px;}
.x4_c00257{left:90.150000px;}
.x3_c00257{left:91.500000px;}
.x2_c00257{left:92.700000px;}
.x1_c00257{left:197.100000px;}
.x9_c00257{left:234.639267px;}
.x6_c00257{left:307.500000px;}
.x7_c00257{left:309.450000px;}
.x8_c00257{left:476.250000px;}
@media print{
.v0_c00257{vertical-align:0.000000pt;}
.ls3_c00257{letter-spacing:0.000000pt;}
.ls0_c00257{letter-spacing:2.666667pt;}
.ls4_c00257{letter-spacing:5.333333pt;}
.ls2_c00257{letter-spacing:22.880000pt;}
.ls1_c00257{letter-spacing:26.080000pt;}
.ws3_c00257{word-spacing:-35.021333pt;}
.ws2_c00257{word-spacing:-31.373333pt;}
.ws4_c00257{word-spacing:-16.053333pt;}
.ws1_c00257{word-spacing:-16.000000pt;}
.ws0_c00257{word-spacing:-12.586667pt;}
.ws5_c00257{word-spacing:0.000000pt;}
._1a_c00257{margin-left:-25.120000pt;}
._1e_c00257{margin-left:-14.240000pt;}
._1f_c00257{margin-left:-13.173333pt;}
._21_c00257{margin-left:-10.080000pt;}
._11_c00257{margin-left:-7.840000pt;}
._1d_c00257{margin-left:-6.880000pt;}
._15_c00257{margin-left:-5.226667pt;}
._10_c00257{margin-left:-4.266667pt;}
._e_c00257{margin-left:-3.360000pt;}
._a_c00257{margin-left:-1.706667pt;}
._5_c00257{width:1.333333pt;}
._6_c00257{width:2.720000pt;}
._9_c00257{width:3.733333pt;}
._8_c00257{width:4.800000pt;}
._d_c00257{width:5.760000pt;}
._7_c00257{width:6.880000pt;}
._b_c00257{width:8.693333pt;}
._c_c00257{width:10.506667pt;}
._f_c00257{width:11.680000pt;}
._0_c00257{width:12.800000pt;}
._1_c00257{width:14.346667pt;}
._20_c00257{width:15.893333pt;}
._17_c00257{width:17.226667pt;}
._4_c00257{width:18.186667pt;}
._3_c00257{width:19.520000pt;}
._2_c00257{width:20.960000pt;}
._12_c00257{width:22.080000pt;}
._1c_c00257{width:23.253333pt;}
._16_c00257{width:25.973333pt;}
._23_c00257{width:27.200000pt;}
._13_c00257{width:28.213333pt;}
._14_c00257{width:29.653333pt;}
._19_c00257{width:31.306667pt;}
._18_c00257{width:32.853333pt;}
._22_c00257{width:41.280000pt;}
._1b_c00257{width:90.613333pt;}
.fs1_c00257{font-size:40.000000pt;}
.fs3_c00257{font-size:42.666667pt;}
.fs0_c00257{font-size:53.333333pt;}
.fs2_c00257{font-size:61.333333pt;}
.y0_c00257{bottom:0.000000pt;}
.y55_c00257{bottom:2.760000pt;}
.y54_c00257{bottom:6.425212pt;}
.y53_c00257{bottom:35.333333pt;}
.y52_c00257{bottom:52.400000pt;}
.y2a_c00257{bottom:53.333333pt;}
.y51_c00257{bottom:68.933333pt;}
.y29_c00257{bottom:69.866667pt;}
.y50_c00257{bottom:84.933333pt;}
.y28_c00257{bottom:85.600000pt;}
.y4f_c00257{bottom:101.600000pt;}
.y27_c00257{bottom:102.933333pt;}
.y4e_c00257{bottom:117.866667pt;}
.y26_c00257{bottom:118.533333pt;}
.y4d_c00257{bottom:133.200000pt;}
.y25_c00257{bottom:135.066667pt;}
.y4c_c00257{bottom:149.733333pt;}
.y24_c00257{bottom:151.466667pt;}
.y4b_c00257{bottom:166.400000pt;}
.y23_c00257{bottom:167.333333pt;}
.y4a_c00257{bottom:182.933333pt;}
.y22_c00257{bottom:183.866667pt;}
.y49_c00257{bottom:199.066667pt;}
.y21_c00257{bottom:199.466667pt;}
.y48_c00257{bottom:215.333333pt;}
.y20_c00257{bottom:215.466667pt;}
.y47_c00257{bottom:231.600000pt;}
.y1f_c00257{bottom:232.000000pt;}
.y46_c00257{bottom:247.733333pt;}
.y1e_c00257{bottom:248.000000pt;}
.y45_c00257{bottom:263.600000pt;}
.y1d_c00257{bottom:264.266667pt;}
.y1c_c00257{bottom:280.000000pt;}
.y44_c00257{bottom:296.400000pt;}
.y1b_c00257{bottom:296.666667pt;}
.y1a_c00257{bottom:312.800000pt;}
.y43_c00257{bottom:312.933333pt;}
.y19_c00257{bottom:328.800000pt;}
.y18_c00257{bottom:344.800000pt;}
.y42_c00257{bottom:345.600000pt;}
.y17_c00257{bottom:360.933333pt;}
.y41_c00257{bottom:361.733333pt;}
.y16_c00257{bottom:376.800000pt;}
.y40_c00257{bottom:377.600000pt;}
.y15_c00257{bottom:393.066667pt;}
.y3f_c00257{bottom:393.600000pt;}
.y14_c00257{bottom:409.200000pt;}
.y3e_c00257{bottom:410.133333pt;}
.y13_c00257{bottom:425.466667pt;}
.y3d_c00257{bottom:426.266667pt;}
.y12_c00257{bottom:441.333333pt;}
.y3c_c00257{bottom:441.866667pt;}
.y11_c00257{bottom:457.200000pt;}
.y3b_c00257{bottom:458.133333pt;}
.y10_c00257{bottom:472.800000pt;}
.y3a_c00257{bottom:474.000000pt;}
.yf_c00257{bottom:489.066667pt;}
.y39_c00257{bottom:490.800000pt;}
.ye_c00257{bottom:505.600000pt;}
.y38_c00257{bottom:506.800000pt;}
.yd_c00257{bottom:522.400000pt;}
.y37_c00257{bottom:523.200000pt;}
.yc_c00257{bottom:538.266667pt;}
.y36_c00257{bottom:539.733333pt;}
.yb_c00257{bottom:554.666667pt;}
.y35_c00257{bottom:555.200000pt;}
.ya_c00257{bottom:570.666667pt;}
.y34_c00257{bottom:571.200000pt;}
.y9_c00257{bottom:587.066667pt;}
.y33_c00257{bottom:587.733333pt;}
.y32_c00257{bottom:603.333333pt;}
.y8_c00257{bottom:604.000000pt;}
.y7_c00257{bottom:619.200000pt;}
.y31_c00257{bottom:619.600000pt;}
.y6_c00257{bottom:635.066667pt;}
.y30_c00257{bottom:635.466667pt;}
.y5_c00257{bottom:651.600000pt;}
.y2f_c00257{bottom:652.000000pt;}
.y4_c00257{bottom:667.866667pt;}
.y2e_c00257{bottom:668.133333pt;}
.y2d_c00257{bottom:683.600000pt;}
.y3_c00257{bottom:684.266667pt;}
.y2c_c00257{bottom:699.600000pt;}
.y2_c00257{bottom:700.400000pt;}
.y2b_c00257{bottom:717.866667pt;}
.y1_c00257{bottom:718.400000pt;}
.h4_c00257{height:11.733399pt;}
.h5_c00257{height:38.937500pt;}
.h1_c00257{height:55.893333pt;}
.h2_c00257{height:56.906667pt;}
.h3_c00257{height:65.442667pt;}
.h0_c00257{height:750.000000pt;}
.w2_c00257{width:93.222667pt;}
.w1_c00257{width:502.666667pt;}
.w0_c00257{width:502.800000pt;}
.x0_c00257{left:0.000000pt;}
.x5_c00257{left:78.000000pt;}
.x4_c00257{left:80.133333pt;}
.x3_c00257{left:81.333333pt;}
.x2_c00257{left:82.400000pt;}
.x1_c00257{left:175.200000pt;}
.x9_c00257{left:208.568237pt;}
.x6_c00257{left:273.333333pt;}
.x7_c00257{left:275.066667pt;}
.x8_c00257{left:423.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_c00258 {
    display:none;
  }
  .loading-indicator_c00258.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00258 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00258 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00258" -> "#page-container .classname_c00258")
 */
.pf_c00258 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00258 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00258.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00258 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00258 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00258 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00258 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00258 {overflow:visible;}
  }
}
.c_c00258 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00258 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00258:after { /* webkit #35443 */
  content: '';
}
.t_c00258:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00258 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00258 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00258 { /* info for Javascript */
  display:none;
}
.l_c00258 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00258 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00258 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00258:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00258{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00258;src:url('chunks/assets/font_2c5d31471171a1b87bab13f1.woff2')format("woff");}.ff1_c00258{font-family:ff1_c00258;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00258;src:url('chunks/assets/font_9ec2267d28ac496524c2d4f4.woff2')format("woff");}.ff2_c00258{font-family:ff2_c00258;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00258;src:url('chunks/assets/font_f3790c11fa1b72b5ebd5d0f3.woff2')format("woff");}.ff3_c00258{font-family:ff3_c00258;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00258;src:url('chunks/assets/font_7c7b114d6d8510036cb24ad0.woff2')format("woff");}.ff4_c00258{font-family:ff4_c00258;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00258;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff5_c00258{font-family:ff5_c00258;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00258{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00258{vertical-align:0.000000px;}
.ls5_c00258{letter-spacing:0.000000px;}
.ls0_c00258{letter-spacing:2.040000px;}
.ls1_c00258{letter-spacing:3.000000px;}
.ls3_c00258{letter-spacing:3.405000px;}
.ls2_c00258{letter-spacing:3.480000px;}
.ls4_c00258{letter-spacing:6.000000px;}
.sc__c00258{text-shadow:none;}
.sc0_c00258{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00258{-webkit-text-stroke:0px transparent;}
.sc0_c00258{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00258{word-spacing:-35.295000px;}
.ws0_c00258{word-spacing:-18.060000px;}
.ws1_c00258{word-spacing:-14.160000px;}
.ws3_c00258{word-spacing:0.000000px;}
._22_c00258{margin-left:-14.940000px;}
._1c_c00258{margin-left:-10.860000px;}
._1f_c00258{margin-left:-9.315000px;}
._21_c00258{margin-left:-7.620000px;}
._1b_c00258{margin-left:-6.120000px;}
._9_c00258{margin-left:-4.380000px;}
._d_c00258{margin-left:-3.360000px;}
._0_c00258{margin-left:-2.100000px;}
._5_c00258{margin-left:-1.080000px;}
._2_c00258{width:1.980000px;}
._3_c00258{width:3.060000px;}
._1_c00258{width:4.500000px;}
._6_c00258{width:5.580000px;}
._7_c00258{width:6.660000px;}
._15_c00258{width:7.740000px;}
._e_c00258{width:8.820000px;}
._14_c00258{width:10.080000px;}
._8_c00258{width:11.460000px;}
._10_c00258{width:13.080000px;}
._4_c00258{width:14.640000px;}
._13_c00258{width:15.900000px;}
._19_c00258{width:16.980000px;}
._b_c00258{width:19.500000px;}
._a_c00258{width:20.580000px;}
._1e_c00258{width:21.780000px;}
._c_c00258{width:23.520000px;}
._20_c00258{width:24.540000px;}
._16_c00258{width:25.680000px;}
._11_c00258{width:27.540000px;}
._23_c00258{width:29.640000px;}
._17_c00258{width:31.200000px;}
._f_c00258{width:32.580000px;}
._12_c00258{width:35.100000px;}
._18_c00258{width:40.020000px;}
._1d_c00258{width:41.340000px;}
._24_c00258{width:182.880000px;}
._1a_c00258{width:426.600000px;}
.fc2_c00258{color:transparent;}
.fc1_c00258{color:rgb(128,128,128);}
.fc0_c00258{color:rgb(0,0,0);}
.fs1_c00258{font-size:45.000000px;}
.fs2_c00258{font-size:48.000000px;}
.fs0_c00258{font-size:60.000000px;}
.y0_c00258{bottom:0.000000px;}
.y52_c00258{bottom:3.105000px;}
.y51_c00258{bottom:7.228357px;}
.y50_c00258{bottom:29.730000px;}
.y4f_c00258{bottom:51.030000px;}
.y29_c00258{bottom:51.930000px;}
.y4e_c00258{bottom:69.930000px;}
.y28_c00258{bottom:70.830000px;}
.y27_c00258{bottom:87.180000px;}
.y4d_c00258{bottom:87.480000px;}
.y4c_c00258{bottom:105.930000px;}
.y26_c00258{bottom:106.980000px;}
.y4b_c00258{bottom:123.930000px;}
.y25_c00258{bottom:124.980000px;}
.y4a_c00258{bottom:141.180000px;}
.y24_c00258{bottom:142.380000px;}
.y23_c00258{bottom:159.330000px;}
.y49_c00258{bottom:160.080000px;}
.y48_c00258{bottom:177.930000px;}
.y22_c00258{bottom:179.280000px;}
.y47_c00258{bottom:195.780000px;}
.y21_c00258{bottom:197.130000px;}
.y46_c00258{bottom:214.080000px;}
.y20_c00258{bottom:215.730000px;}
.y45_c00258{bottom:231.480000px;}
.y1f_c00258{bottom:233.580000px;}
.y44_c00258{bottom:250.380000px;}
.y1e_c00258{bottom:251.430000px;}
.y1d_c00258{bottom:269.730000px;}
.y43_c00258{bottom:287.280000px;}
.y1c_c00258{bottom:288.180000px;}
.y1b_c00258{bottom:305.430000px;}
.y42_c00258{bottom:322.680000px;}
.y1a_c00258{bottom:324.030000px;}
.y41_c00258{bottom:341.880000px;}
.y19_c00258{bottom:342.180000px;}
.y40_c00258{bottom:359.130000px;}
.y18_c00258{bottom:360.180000px;}
.y17_c00258{bottom:377.730000px;}
.y3f_c00258{bottom:395.280000px;}
.y16_c00258{bottom:396.330000px;}
.y15_c00258{bottom:414.180000px;}
.y3e_c00258{bottom:430.680000px;}
.y14_c00258{bottom:432.030000px;}
.y3d_c00258{bottom:449.280000px;}
.y13_c00258{bottom:450.630000px;}
.y12_c00258{bottom:467.880000px;}
.y3c_c00258{bottom:468.180000px;}
.y11_c00258{bottom:486.030000px;}
.y3b_c00258{bottom:486.630000px;}
.y10_c00258{bottom:503.880000px;}
.y3a_c00258{bottom:505.230000px;}
.yf_c00258{bottom:521.880000px;}
.y39_c00258{bottom:522.180000px;}
.ye_c00258{bottom:540.030000px;}
.y38_c00258{bottom:541.380000px;}
.yd_c00258{bottom:557.880000px;}
.y37_c00258{bottom:559.230000px;}
.yc_c00258{bottom:575.580000px;}
.y36_c00258{bottom:577.530000px;}
.yb_c00258{bottom:593.730000px;}
.y35_c00258{bottom:595.680000px;}
.ya_c00258{bottom:611.880000px;}
.y34_c00258{bottom:613.680000px;}
.y9_c00258{bottom:629.730000px;}
.y33_c00258{bottom:631.830000px;}
.y8_c00258{bottom:647.430000px;}
.y32_c00258{bottom:649.380000px;}
.y7_c00258{bottom:665.280000px;}
.y31_c00258{bottom:667.980000px;}
.y6_c00258{bottom:683.880000px;}
.y30_c00258{bottom:686.130000px;}
.y5_c00258{bottom:701.730000px;}
.y2f_c00258{bottom:704.730000px;}
.y4_c00258{bottom:719.580000px;}
.y2e_c00258{bottom:722.580000px;}
.y3_c00258{bottom:737.730000px;}
.y2d_c00258{bottom:740.580000px;}
.y2_c00258{bottom:756.030000px;}
.y2c_c00258{bottom:759.330000px;}
.y1_c00258{bottom:774.180000px;}
.y2b_c00258{bottom:777.630000px;}
.y2a_c00258{bottom:795.480000px;}
.h3_c00258{height:13.200074px;}
.h4_c00258{height:43.804688px;}
.h2_c00258{height:62.880000px;}
.h0_c00258{height:841.350000px;}
.h1_c00258{height:841.500000px;}
.w1_c00258{width:104.875500px;}
.w0_c00258{width:590.250000px;}
.x0_c00258{left:0.000000px;}
.x3_c00258{left:74.250000px;}
.x2_c00258{left:75.600000px;}
.x4_c00258{left:76.650000px;}
.x5_c00258{left:78.600000px;}
.x1_c00258{left:101.550000px;}
.x12_c00258{left:246.939240px;}
.x6_c00258{left:284.850000px;}
.xb_c00258{left:288.450000px;}
.xa_c00258{left:289.650000px;}
.x8_c00258{left:291.150000px;}
.x9_c00258{left:292.500000px;}
.x7_c00258{left:293.850000px;}
.x11_c00258{left:295.950000px;}
.xd_c00258{left:323.700000px;}
.xf_c00258{left:343.800000px;}
.x10_c00258{left:371.850000px;}
.xe_c00258{left:381.000000px;}
.xc_c00258{left:387.450000px;}
@media print{
.v0_c00258{vertical-align:0.000000pt;}
.ls5_c00258{letter-spacing:0.000000pt;}
.ls0_c00258{letter-spacing:1.813333pt;}
.ls1_c00258{letter-spacing:2.666667pt;}
.ls3_c00258{letter-spacing:3.026667pt;}
.ls2_c00258{letter-spacing:3.093333pt;}
.ls4_c00258{letter-spacing:5.333333pt;}
.ws2_c00258{word-spacing:-31.373333pt;}
.ws0_c00258{word-spacing:-16.053333pt;}
.ws1_c00258{word-spacing:-12.586667pt;}
.ws3_c00258{word-spacing:0.000000pt;}
._22_c00258{margin-left:-13.280000pt;}
._1c_c00258{margin-left:-9.653333pt;}
._1f_c00258{margin-left:-8.280000pt;}
._21_c00258{margin-left:-6.773333pt;}
._1b_c00258{margin-left:-5.440000pt;}
._9_c00258{margin-left:-3.893333pt;}
._d_c00258{margin-left:-2.986667pt;}
._0_c00258{margin-left:-1.866667pt;}
._5_c00258{margin-left:-0.960000pt;}
._2_c00258{width:1.760000pt;}
._3_c00258{width:2.720000pt;}
._1_c00258{width:4.000000pt;}
._6_c00258{width:4.960000pt;}
._7_c00258{width:5.920000pt;}
._15_c00258{width:6.880000pt;}
._e_c00258{width:7.840000pt;}
._14_c00258{width:8.960000pt;}
._8_c00258{width:10.186667pt;}
._10_c00258{width:11.626667pt;}
._4_c00258{width:13.013333pt;}
._13_c00258{width:14.133333pt;}
._19_c00258{width:15.093333pt;}
._b_c00258{width:17.333333pt;}
._a_c00258{width:18.293333pt;}
._1e_c00258{width:19.360000pt;}
._c_c00258{width:20.906667pt;}
._20_c00258{width:21.813333pt;}
._16_c00258{width:22.826667pt;}
._11_c00258{width:24.480000pt;}
._23_c00258{width:26.346667pt;}
._17_c00258{width:27.733333pt;}
._f_c00258{width:28.960000pt;}
._12_c00258{width:31.200000pt;}
._18_c00258{width:35.573333pt;}
._1d_c00258{width:36.746667pt;}
._24_c00258{width:162.560000pt;}
._1a_c00258{width:379.200000pt;}
.fs1_c00258{font-size:40.000000pt;}
.fs2_c00258{font-size:42.666667pt;}
.fs0_c00258{font-size:53.333333pt;}
.y0_c00258{bottom:0.000000pt;}
.y52_c00258{bottom:2.760000pt;}
.y51_c00258{bottom:6.425206pt;}
.y50_c00258{bottom:26.426667pt;}
.y4f_c00258{bottom:45.360000pt;}
.y29_c00258{bottom:46.160000pt;}
.y4e_c00258{bottom:62.160000pt;}
.y28_c00258{bottom:62.960000pt;}
.y27_c00258{bottom:77.493333pt;}
.y4d_c00258{bottom:77.760000pt;}
.y4c_c00258{bottom:94.160000pt;}
.y26_c00258{bottom:95.093333pt;}
.y4b_c00258{bottom:110.160000pt;}
.y25_c00258{bottom:111.093333pt;}
.y4a_c00258{bottom:125.493333pt;}
.y24_c00258{bottom:126.560000pt;}
.y23_c00258{bottom:141.626667pt;}
.y49_c00258{bottom:142.293333pt;}
.y48_c00258{bottom:158.160000pt;}
.y22_c00258{bottom:159.360000pt;}
.y47_c00258{bottom:174.026667pt;}
.y21_c00258{bottom:175.226667pt;}
.y46_c00258{bottom:190.293333pt;}
.y20_c00258{bottom:191.760000pt;}
.y45_c00258{bottom:205.760000pt;}
.y1f_c00258{bottom:207.626667pt;}
.y44_c00258{bottom:222.560000pt;}
.y1e_c00258{bottom:223.493333pt;}
.y1d_c00258{bottom:239.760000pt;}
.y43_c00258{bottom:255.360000pt;}
.y1c_c00258{bottom:256.160000pt;}
.y1b_c00258{bottom:271.493333pt;}
.y42_c00258{bottom:286.826667pt;}
.y1a_c00258{bottom:288.026667pt;}
.y41_c00258{bottom:303.893333pt;}
.y19_c00258{bottom:304.160000pt;}
.y40_c00258{bottom:319.226667pt;}
.y18_c00258{bottom:320.160000pt;}
.y17_c00258{bottom:335.760000pt;}
.y3f_c00258{bottom:351.360000pt;}
.y16_c00258{bottom:352.293333pt;}
.y15_c00258{bottom:368.160000pt;}
.y3e_c00258{bottom:382.826667pt;}
.y14_c00258{bottom:384.026667pt;}
.y3d_c00258{bottom:399.360000pt;}
.y13_c00258{bottom:400.560000pt;}
.y12_c00258{bottom:415.893333pt;}
.y3c_c00258{bottom:416.160000pt;}
.y11_c00258{bottom:432.026667pt;}
.y3b_c00258{bottom:432.560000pt;}
.y10_c00258{bottom:447.893333pt;}
.y3a_c00258{bottom:449.093333pt;}
.yf_c00258{bottom:463.893333pt;}
.y39_c00258{bottom:464.160000pt;}
.ye_c00258{bottom:480.026667pt;}
.y38_c00258{bottom:481.226667pt;}
.yd_c00258{bottom:495.893333pt;}
.y37_c00258{bottom:497.093333pt;}
.yc_c00258{bottom:511.626667pt;}
.y36_c00258{bottom:513.360000pt;}
.yb_c00258{bottom:527.760000pt;}
.y35_c00258{bottom:529.493333pt;}
.ya_c00258{bottom:543.893333pt;}
.y34_c00258{bottom:545.493333pt;}
.y9_c00258{bottom:559.760000pt;}
.y33_c00258{bottom:561.626667pt;}
.y8_c00258{bottom:575.493333pt;}
.y32_c00258{bottom:577.226667pt;}
.y7_c00258{bottom:591.360000pt;}
.y31_c00258{bottom:593.760000pt;}
.y6_c00258{bottom:607.893333pt;}
.y30_c00258{bottom:609.893333pt;}
.y5_c00258{bottom:623.760000pt;}
.y2f_c00258{bottom:626.426667pt;}
.y4_c00258{bottom:639.626667pt;}
.y2e_c00258{bottom:642.293333pt;}
.y3_c00258{bottom:655.760000pt;}
.y2d_c00258{bottom:658.293333pt;}
.y2_c00258{bottom:672.026667pt;}
.y2c_c00258{bottom:674.960000pt;}
.y1_c00258{bottom:688.160000pt;}
.y2b_c00258{bottom:691.226667pt;}
.y2a_c00258{bottom:707.093333pt;}
.h3_c00258{height:11.733399pt;}
.h4_c00258{height:38.937500pt;}
.h2_c00258{height:55.893333pt;}
.h0_c00258{height:747.866667pt;}
.h1_c00258{height:748.000000pt;}
.w1_c00258{width:93.222667pt;}
.w0_c00258{width:524.666667pt;}
.x0_c00258{left:0.000000pt;}
.x3_c00258{left:66.000000pt;}
.x2_c00258{left:67.200000pt;}
.x4_c00258{left:68.133333pt;}
.x5_c00258{left:69.866667pt;}
.x1_c00258{left:90.266667pt;}
.x12_c00258{left:219.501546pt;}
.x6_c00258{left:253.200000pt;}
.xb_c00258{left:256.400000pt;}
.xa_c00258{left:257.466667pt;}
.x8_c00258{left:258.800000pt;}
.x9_c00258{left:260.000000pt;}
.x7_c00258{left:261.200000pt;}
.x11_c00258{left:263.066667pt;}
.xd_c00258{left:287.733333pt;}
.xf_c00258{left:305.600000pt;}
.x10_c00258{left:330.533333pt;}
.xe_c00258{left:338.666667pt;}
.xc_c00258{left:344.400000pt;}
}





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

.ir_c00259:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00259{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00259;src:url('chunks/assets/font_c08c41df0079ed4c937e6e15.woff2')format("woff");}.ff1_c00259{font-family:ff1_c00259;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00259;src:url('chunks/assets/font_afdb45a6595413a902a4a558.woff2')format("woff");}.ff2_c00259{font-family:ff2_c00259;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00259;src:url('chunks/assets/font_a2b9ae88097fe3754908b170.woff2')format("woff");}.ff3_c00259{font-family:ff3_c00259;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00259;src:url('chunks/assets/font_8bccb46250765f20a71a34d7.woff2')format("woff");}.ff4_c00259{font-family:ff4_c00259;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00259;src:url('chunks/assets/font_f89fc6244541f391fc7fe659.woff2')format("woff");}.ff5_c00259{font-family:ff5_c00259;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00259;src:url('chunks/assets/font_665a46db2664b83929d167f7.woff2')format("woff");}.ff6_c00259{font-family:ff6_c00259;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00259;src:url('chunks/assets/font_089510d0d6d8c3460deb1b9c.woff2')format("woff");}.ff7_c00259{font-family:ff7_c00259;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00259;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff8_c00259{font-family:ff8_c00259;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00259{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00259{vertical-align:0.000000px;}
.ls4_c00259{letter-spacing:0.000000px;}
.ls1_c00259{letter-spacing:1.920000px;}
.ls0_c00259{letter-spacing:3.000000px;}
.ls5_c00259{letter-spacing:9.000000px;}
.ls2_c00259{letter-spacing:10.743000px;}
.ls3_c00259{letter-spacing:15.000000px;}
.sc__c00259{text-shadow:none;}
.sc0_c00259{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00259{-webkit-text-stroke:0px transparent;}
.sc0_c00259{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00259{word-spacing:-30.057000px;}
.ws3_c00259{word-spacing:-18.057000px;}
.ws0_c00259{word-spacing:-15.300000px;}
.ws1_c00259{word-spacing:-12.366000px;}
.ws4_c00259{word-spacing:0.000000px;}
._22_c00259{margin-left:-21.105000px;}
._17_c00259{margin-left:-15.885000px;}
._c_c00259{margin-left:-14.859000px;}
._24_c00259{margin-left:-13.527000px;}
._1f_c00259{margin-left:-11.142000px;}
._d_c00259{margin-left:-10.017000px;}
._b_c00259{margin-left:-8.253000px;}
._7_c00259{margin-left:-6.489000px;}
._6_c00259{margin-left:-4.536000px;}
._8_c00259{margin-left:-3.150000px;}
._9_c00259{margin-left:-1.197000px;}
._f_c00259{width:1.638000px;}
._e_c00259{width:2.646000px;}
._11_c00259{width:3.654000px;}
._1a_c00259{width:4.770000px;}
._a_c00259{width:5.985000px;}
._12_c00259{width:7.020000px;}
._1_c00259{width:8.820000px;}
._16_c00259{width:9.963000px;}
._10_c00259{width:11.502000px;}
._0_c00259{width:12.600000px;}
._1e_c00259{width:14.202000px;}
._3_c00259{width:15.660000px;}
._1b_c00259{width:16.743000px;}
._18_c00259{width:19.155000px;}
._5_c00259{width:20.160000px;}
._23_c00259{width:21.510000px;}
._4_c00259{width:22.560000px;}
._13_c00259{width:23.919000px;}
._1d_c00259{width:25.074000px;}
._21_c00259{width:26.367000px;}
._14_c00259{width:27.378000px;}
._1c_c00259{width:29.025000px;}
._15_c00259{width:31.698000px;}
._20_c00259{width:41.328000px;}
._19_c00259{width:133.740000px;}
._2_c00259{width:304.560000px;}
.fc2_c00259{color:transparent;}
.fc1_c00259{color:rgb(128,128,128);}
.fc0_c00259{color:rgb(0,0,0);}
.fs3_c00259{font-size:36.000000px;}
.fs5_c00259{font-size:48.000000px;}
.fs4_c00259{font-size:51.000000px;}
.fs2_c00259{font-size:54.000000px;}
.fs0_c00259{font-size:60.000000px;}
.fs1_c00259{font-size:63.000000px;}
.y0_c00259{bottom:0.000000px;}
.y57_c00259{bottom:3.105000px;}
.y56_c00259{bottom:7.228369px;}
.y55_c00259{bottom:23.670000px;}
.y54_c00259{bottom:41.220000px;}
.y2a_c00259{bottom:43.470000px;}
.y53_c00259{bottom:60.120000px;}
.y29_c00259{bottom:62.670000px;}
.y52_c00259{bottom:77.970000px;}
.y28_c00259{bottom:80.970000px;}
.y51_c00259{bottom:95.820000px;}
.y27_c00259{bottom:98.820000px;}
.y50_c00259{bottom:114.420000px;}
.y26_c00259{bottom:117.420000px;}
.y4f_c00259{bottom:132.870000px;}
.y25_c00259{bottom:136.320000px;}
.y4e_c00259{bottom:150.870000px;}
.y24_c00259{bottom:154.170000px;}
.y4d_c00259{bottom:169.320000px;}
.y23_c00259{bottom:172.770000px;}
.y4c_c00259{bottom:187.620000px;}
.y22_c00259{bottom:191.070000px;}
.y4b_c00259{bottom:205.770000px;}
.y21_c00259{bottom:208.470000px;}
.y4a_c00259{bottom:224.070000px;}
.y20_c00259{bottom:227.520000px;}
.y49_c00259{bottom:243.270000px;}
.y1f_c00259{bottom:245.670000px;}
.y48_c00259{bottom:260.220000px;}
.y1e_c00259{bottom:263.970000px;}
.y47_c00259{bottom:278.070000px;}
.y1d_c00259{bottom:282.420000px;}
.y46_c00259{bottom:296.670000px;}
.y1c_c00259{bottom:300.420000px;}
.y45_c00259{bottom:315.270000px;}
.y1b_c00259{bottom:317.970000px;}
.y44_c00259{bottom:333.720000px;}
.y1a_c00259{bottom:336.870000px;}
.y43_c00259{bottom:352.020000px;}
.y19_c00259{bottom:355.020000px;}
.y42_c00259{bottom:370.170000px;}
.y18_c00259{bottom:373.320000px;}
.y41_c00259{bottom:388.770000px;}
.y17_c00259{bottom:391.170000px;}
.y40_c00259{bottom:407.070000px;}
.y16_c00259{bottom:409.020000px;}
.y3f_c00259{bottom:425.520000px;}
.y15_c00259{bottom:427.320000px;}
.y3e_c00259{bottom:443.370000px;}
.y14_c00259{bottom:444.870000px;}
.y3d_c00259{bottom:461.670000px;}
.y13_c00259{bottom:463.320000px;}
.y3c_c00259{bottom:479.820000px;}
.y12_c00259{bottom:481.170000px;}
.y3b_c00259{bottom:498.420000px;}
.y11_c00259{bottom:498.870000px;}
.y3a_c00259{bottom:515.970000px;}
.y10_c00259{bottom:517.620000px;}
.y39_c00259{bottom:534.570000px;}
.yf_c00259{bottom:535.920000px;}
.y38_c00259{bottom:552.870000px;}
.ye_c00259{bottom:554.520000px;}
.y37_c00259{bottom:570.720000px;}
.yd_c00259{bottom:571.320000px;}
.y36_c00259{bottom:589.320000px;}
.yc_c00259{bottom:590.220000px;}
.y35_c00259{bottom:608.070000px;}
.yb_c00259{bottom:609.120000px;}
.y34_c00259{bottom:626.070000px;}
.ya_c00259{bottom:627.420000px;}
.y33_c00259{bottom:643.620000px;}
.y9_c00259{bottom:645.570000px;}
.y32_c00259{bottom:662.070000px;}
.y8_c00259{bottom:663.420000px;}
.y31_c00259{bottom:680.370000px;}
.y7_c00259{bottom:682.470000px;}
.y30_c00259{bottom:698.520000px;}
.y6_c00259{bottom:700.320000px;}
.y2f_c00259{bottom:717.120000px;}
.y5_c00259{bottom:717.570000px;}
.y2e_c00259{bottom:734.670000px;}
.y4_c00259{bottom:736.320000px;}
.y2d_c00259{bottom:752.220000px;}
.y3_c00259{bottom:754.320000px;}
.y2c_c00259{bottom:770.520000px;}
.y2_c00259{bottom:772.770000px;}
.y1_c00259{bottom:791.670000px;}
.y2b_c00259{bottom:792.720000px;}
.h5_c00259{height:13.200073px;}
.h6_c00259{height:43.804688px;}
.h4_c00259{height:56.592000px;}
.h2_c00259{height:62.880000px;}
.h3_c00259{height:66.024000px;}
.h1_c00259{height:837.750000px;}
.h0_c00259{height:838.050000px;}
.w2_c00259{width:104.875500px;}
.w0_c00259{width:561.600000px;}
.w1_c00259{width:561.750000px;}
.x0_c00259{left:0.000000px;}
.x8_c00259{left:33.150000px;}
.x3_c00259{left:35.100000px;}
.x4_c00259{left:36.900000px;}
.x9_c00259{left:96.450000px;}
.x7_c00259{left:97.650000px;}
.x5_c00259{left:98.850000px;}
.x2_c00259{left:99.900000px;}
.x1_c00259{left:102.300000px;}
.x6_c00259{left:159.750000px;}
.x11_c00259{left:232.614258px;}
.xb_c00259{left:313.500000px;}
.xc_c00259{left:314.850000px;}
.xd_c00259{left:315.900000px;}
.xe_c00259{left:317.250000px;}
.xf_c00259{left:318.300000px;}
.xa_c00259{left:320.550000px;}
.x10_c00259{left:476.100000px;}
@media print{
.v0_c00259{vertical-align:0.000000pt;}
.ls4_c00259{letter-spacing:0.000000pt;}
.ls1_c00259{letter-spacing:1.706667pt;}
.ls0_c00259{letter-spacing:2.666667pt;}
.ls5_c00259{letter-spacing:8.000000pt;}
.ls2_c00259{letter-spacing:9.549333pt;}
.ls3_c00259{letter-spacing:13.333333pt;}
.ws2_c00259{word-spacing:-26.717333pt;}
.ws3_c00259{word-spacing:-16.050667pt;}
.ws0_c00259{word-spacing:-13.600000pt;}
.ws1_c00259{word-spacing:-10.992000pt;}
.ws4_c00259{word-spacing:0.000000pt;}
._22_c00259{margin-left:-18.760000pt;}
._17_c00259{margin-left:-14.120000pt;}
._c_c00259{margin-left:-13.208000pt;}
._24_c00259{margin-left:-12.024000pt;}
._1f_c00259{margin-left:-9.904000pt;}
._d_c00259{margin-left:-8.904000pt;}
._b_c00259{margin-left:-7.336000pt;}
._7_c00259{margin-left:-5.768000pt;}
._6_c00259{margin-left:-4.032000pt;}
._8_c00259{margin-left:-2.800000pt;}
._9_c00259{margin-left:-1.064000pt;}
._f_c00259{width:1.456000pt;}
._e_c00259{width:2.352000pt;}
._11_c00259{width:3.248000pt;}
._1a_c00259{width:4.240000pt;}
._a_c00259{width:5.320000pt;}
._12_c00259{width:6.240000pt;}
._1_c00259{width:7.840000pt;}
._16_c00259{width:8.856000pt;}
._10_c00259{width:10.224000pt;}
._0_c00259{width:11.200000pt;}
._1e_c00259{width:12.624000pt;}
._3_c00259{width:13.920000pt;}
._1b_c00259{width:14.882667pt;}
._18_c00259{width:17.026667pt;}
._5_c00259{width:17.920000pt;}
._23_c00259{width:19.120000pt;}
._4_c00259{width:20.053333pt;}
._13_c00259{width:21.261333pt;}
._1d_c00259{width:22.288000pt;}
._21_c00259{width:23.437333pt;}
._14_c00259{width:24.336000pt;}
._1c_c00259{width:25.800000pt;}
._15_c00259{width:28.176000pt;}
._20_c00259{width:36.736000pt;}
._19_c00259{width:118.880000pt;}
._2_c00259{width:270.720000pt;}
.fs3_c00259{font-size:32.000000pt;}
.fs5_c00259{font-size:42.666667pt;}
.fs4_c00259{font-size:45.333333pt;}
.fs2_c00259{font-size:48.000000pt;}
.fs0_c00259{font-size:53.333333pt;}
.fs1_c00259{font-size:56.000000pt;}
.y0_c00259{bottom:0.000000pt;}
.y57_c00259{bottom:2.760000pt;}
.y56_c00259{bottom:6.425217pt;}
.y55_c00259{bottom:21.040000pt;}
.y54_c00259{bottom:36.640000pt;}
.y2a_c00259{bottom:38.640000pt;}
.y53_c00259{bottom:53.440000pt;}
.y29_c00259{bottom:55.706667pt;}
.y52_c00259{bottom:69.306667pt;}
.y28_c00259{bottom:71.973333pt;}
.y51_c00259{bottom:85.173333pt;}
.y27_c00259{bottom:87.840000pt;}
.y50_c00259{bottom:101.706667pt;}
.y26_c00259{bottom:104.373333pt;}
.y4f_c00259{bottom:118.106667pt;}
.y25_c00259{bottom:121.173333pt;}
.y4e_c00259{bottom:134.106667pt;}
.y24_c00259{bottom:137.040000pt;}
.y4d_c00259{bottom:150.506667pt;}
.y23_c00259{bottom:153.573333pt;}
.y4c_c00259{bottom:166.773333pt;}
.y22_c00259{bottom:169.840000pt;}
.y4b_c00259{bottom:182.906667pt;}
.y21_c00259{bottom:185.306667pt;}
.y4a_c00259{bottom:199.173333pt;}
.y20_c00259{bottom:202.240000pt;}
.y49_c00259{bottom:216.240000pt;}
.y1f_c00259{bottom:218.373333pt;}
.y48_c00259{bottom:231.306667pt;}
.y1e_c00259{bottom:234.640000pt;}
.y47_c00259{bottom:247.173333pt;}
.y1d_c00259{bottom:251.040000pt;}
.y46_c00259{bottom:263.706667pt;}
.y1c_c00259{bottom:267.040000pt;}
.y45_c00259{bottom:280.240000pt;}
.y1b_c00259{bottom:282.640000pt;}
.y44_c00259{bottom:296.640000pt;}
.y1a_c00259{bottom:299.440000pt;}
.y43_c00259{bottom:312.906667pt;}
.y19_c00259{bottom:315.573333pt;}
.y42_c00259{bottom:329.040000pt;}
.y18_c00259{bottom:331.840000pt;}
.y41_c00259{bottom:345.573333pt;}
.y17_c00259{bottom:347.706667pt;}
.y40_c00259{bottom:361.840000pt;}
.y16_c00259{bottom:363.573333pt;}
.y3f_c00259{bottom:378.240000pt;}
.y15_c00259{bottom:379.840000pt;}
.y3e_c00259{bottom:394.106667pt;}
.y14_c00259{bottom:395.440000pt;}
.y3d_c00259{bottom:410.373333pt;}
.y13_c00259{bottom:411.840000pt;}
.y3c_c00259{bottom:426.506667pt;}
.y12_c00259{bottom:427.706667pt;}
.y3b_c00259{bottom:443.040000pt;}
.y11_c00259{bottom:443.440000pt;}
.y3a_c00259{bottom:458.640000pt;}
.y10_c00259{bottom:460.106667pt;}
.y39_c00259{bottom:475.173333pt;}
.yf_c00259{bottom:476.373333pt;}
.y38_c00259{bottom:491.440000pt;}
.ye_c00259{bottom:492.906667pt;}
.y37_c00259{bottom:507.306667pt;}
.yd_c00259{bottom:507.840000pt;}
.y36_c00259{bottom:523.840000pt;}
.yc_c00259{bottom:524.640000pt;}
.y35_c00259{bottom:540.506667pt;}
.yb_c00259{bottom:541.440000pt;}
.y34_c00259{bottom:556.506667pt;}
.ya_c00259{bottom:557.706667pt;}
.y33_c00259{bottom:572.106667pt;}
.y9_c00259{bottom:573.840000pt;}
.y32_c00259{bottom:588.506667pt;}
.y8_c00259{bottom:589.706667pt;}
.y31_c00259{bottom:604.773333pt;}
.y7_c00259{bottom:606.640000pt;}
.y30_c00259{bottom:620.906667pt;}
.y6_c00259{bottom:622.506667pt;}
.y2f_c00259{bottom:637.440000pt;}
.y5_c00259{bottom:637.840000pt;}
.y2e_c00259{bottom:653.040000pt;}
.y4_c00259{bottom:654.506667pt;}
.y2d_c00259{bottom:668.640000pt;}
.y3_c00259{bottom:670.506667pt;}
.y2c_c00259{bottom:684.906667pt;}
.y2_c00259{bottom:686.906667pt;}
.y1_c00259{bottom:703.706667pt;}
.y2b_c00259{bottom:704.640000pt;}
.h5_c00259{height:11.733399pt;}
.h6_c00259{height:38.937500pt;}
.h4_c00259{height:50.304000pt;}
.h2_c00259{height:55.893333pt;}
.h3_c00259{height:58.688000pt;}
.h1_c00259{height:744.666667pt;}
.h0_c00259{height:744.933333pt;}
.w2_c00259{width:93.222667pt;}
.w0_c00259{width:499.200000pt;}
.w1_c00259{width:499.333333pt;}
.x0_c00259{left:0.000000pt;}
.x8_c00259{left:29.466667pt;}
.x3_c00259{left:31.200000pt;}
.x4_c00259{left:32.800000pt;}
.x9_c00259{left:85.733333pt;}
.x7_c00259{left:86.800000pt;}
.x5_c00259{left:87.866667pt;}
.x2_c00259{left:88.800000pt;}
.x1_c00259{left:90.933333pt;}
.x6_c00259{left:142.000000pt;}
.x11_c00259{left:206.768229pt;}
.xb_c00259{left:278.666667pt;}
.xc_c00259{left:279.866667pt;}
.xd_c00259{left:280.800000pt;}
.xe_c00259{left:282.000000pt;}
.xf_c00259{left:282.933333pt;}
.xa_c00259{left:284.933333pt;}
.x10_c00259{left:423.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_c00260 {
    display:none;
  }
  .loading-indicator_c00260.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00260 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00260 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00260" -> "#page-container .classname_c00260")
 */
.pf_c00260 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00260 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00260.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00260 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00260 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00260 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00260 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00260 {overflow:visible;}
  }
}
.c_c00260 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00260 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00260:after { /* webkit #35443 */
  content: '';
}
.t_c00260:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00260 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00260 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00260 { /* info for Javascript */
  display:none;
}
.l_c00260 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00260 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00260 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00260:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00260{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00260;src:url('chunks/assets/font_14ea6e2e767d91effd61f829.woff2')format("woff");}.ff1_c00260{font-family:ff1_c00260;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00260;src:url('chunks/assets/font_726a9f1db2aebf2f46f849c0.woff2')format("woff");}.ff2_c00260{font-family:ff2_c00260;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00260;src:url('chunks/assets/font_26dd08f54a1c55022261b9e1.woff2')format("woff");}.ff3_c00260{font-family:ff3_c00260;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00260;src:url('chunks/assets/font_d4f9ee84c7efb662ac5eea7c.woff2')format("woff");}.ff4_c00260{font-family:ff4_c00260;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00260;src:url('chunks/assets/font_ac211c7efa09157ed437c95b.woff2')format("woff");}.ff5_c00260{font-family:ff5_c00260;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00260;src:url('chunks/assets/font_53e97250e36078c2b7c8f156.woff2')format("woff");}.ff6_c00260{font-family:ff6_c00260;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00260;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff7_c00260{font-family:ff7_c00260;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00260;src:url('chunks/assets/font_b58f4b370be5a750a608eb85.woff2')format("woff");}.ff8_c00260{font-family:ff8_c00260;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00260;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff9_c00260{font-family:ff9_c00260;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00260{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00260{vertical-align:0.000000px;}
.ls5_c00260{letter-spacing:0.000000px;}
.ls4_c00260{letter-spacing:1.800000px;}
.ls6_c00260{letter-spacing:3.000000px;}
.ls0_c00260{letter-spacing:6.000000px;}
.ls3_c00260{letter-spacing:7.650000px;}
.ls1_c00260{letter-spacing:9.000000px;}
.ls2_c00260{letter-spacing:11.850000px;}
.sc__c00260{text-shadow:none;}
.sc0_c00260{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00260{-webkit-text-stroke:0px transparent;}
.sc0_c00260{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00260{word-spacing:-35.295000px;}
.ws3_c00260{word-spacing:-22.452000px;}
.ws1_c00260{word-spacing:-21.750000px;}
.ws5_c00260{word-spacing:-21.291000px;}
.ws2_c00260{word-spacing:-20.340000px;}
.ws6_c00260{word-spacing:-18.060000px;}
.ws0_c00260{word-spacing:-15.576000px;}
.ws4_c00260{word-spacing:-14.160000px;}
.ws9_c00260{word-spacing:0.000000px;}
.ws8_c00260{word-spacing:1.920000px;}
._24_c00260{margin-left:-26.640000px;}
._5_c00260{margin-left:-19.152000px;}
._10_c00260{margin-left:-13.356000px;}
._6_c00260{margin-left:-11.655000px;}
._7_c00260{margin-left:-9.576000px;}
._9_c00260{margin-left:-8.190000px;}
._8_c00260{margin-left:-6.993000px;}
._1_c00260{margin-left:-5.544000px;}
._2_c00260{margin-left:-3.969000px;}
._4_c00260{margin-left:-2.142000px;}
._c_c00260{margin-left:-1.071000px;}
._0_c00260{width:1.008000px;}
._b_c00260{width:2.079000px;}
._3_c00260{width:3.150000px;}
._11_c00260{width:4.158000px;}
._a_c00260{width:5.607000px;}
._1b_c00260{width:6.837000px;}
._d_c00260{width:8.379000px;}
._17_c00260{width:9.804000px;}
._e_c00260{width:11.529000px;}
._1e_c00260{width:12.702000px;}
._1d_c00260{width:14.481000px;}
._1c_c00260{width:15.894000px;}
._22_c00260{width:18.171000px;}
._21_c00260{width:20.631000px;}
._13_c00260{width:23.151000px;}
._12_c00260{width:24.900000px;}
._27_c00260{width:26.724000px;}
._20_c00260{width:27.975000px;}
._1f_c00260{width:30.342000px;}
._14_c00260{width:32.196000px;}
._26_c00260{width:33.378000px;}
._1a_c00260{width:39.255000px;}
._23_c00260{width:45.780000px;}
._f_c00260{width:85.113000px;}
._16_c00260{width:99.852000px;}
._18_c00260{width:104.064000px;}
._19_c00260{width:134.820000px;}
._15_c00260{width:176.115000px;}
._28_c00260{width:183.351000px;}
._25_c00260{width:259.485000px;}
.fc2_c00260{color:transparent;}
.fc1_c00260{color:rgb(128,128,128);}
.fc0_c00260{color:rgb(0,0,0);}
.fs3_c00260{font-size:45.000000px;}
.fs6_c00260{font-size:48.000000px;}
.fs5_c00260{font-size:51.000000px;}
.fs4_c00260{font-size:57.000000px;}
.fs2_c00260{font-size:60.000000px;}
.fs0_c00260{font-size:63.000000px;}
.fs1_c00260{font-size:66.000000px;}
.y0_c00260{bottom:0.000000px;}
.y51_c00260{bottom:3.105000px;}
.y50_c00260{bottom:7.228357px;}
.y4f_c00260{bottom:31.080000px;}
.y4e_c00260{bottom:50.730000px;}
.y29_c00260{bottom:52.980000px;}
.y4d_c00260{bottom:69.630000px;}
.y28_c00260{bottom:70.830000px;}
.y4c_c00260{bottom:88.380000px;}
.y27_c00260{bottom:88.830000px;}
.y4b_c00260{bottom:106.680000px;}
.y26_c00260{bottom:108.780000px;}
.y4a_c00260{bottom:124.530000px;}
.y25_c00260{bottom:126.930000px;}
.y49_c00260{bottom:142.830000px;}
.y24_c00260{bottom:144.180000px;}
.y48_c00260{bottom:160.980000px;}
.y23_c00260{bottom:163.680000px;}
.y47_c00260{bottom:178.530000px;}
.y22_c00260{bottom:181.230000px;}
.y46_c00260{bottom:197.130000px;}
.y21_c00260{bottom:200.130000px;}
.y45_c00260{bottom:214.980000px;}
.y20_c00260{bottom:218.730000px;}
.y44_c00260{bottom:233.580000px;}
.y1f_c00260{bottom:236.580000px;}
.y43_c00260{bottom:251.730000px;}
.y1e_c00260{bottom:254.880000px;}
.y42_c00260{bottom:269.430000px;}
.y1d_c00260{bottom:272.730000px;}
.y41_c00260{bottom:288.180000px;}
.y1c_c00260{bottom:291.030000px;}
.y40_c00260{bottom:305.880000px;}
.y1b_c00260{bottom:308.880000px;}
.y3f_c00260{bottom:324.630000px;}
.y1a_c00260{bottom:327.330000px;}
.y3e_c00260{bottom:342.330000px;}
.y19_c00260{bottom:345.330000px;}
.y3d_c00260{bottom:360.780000px;}
.y18_c00260{bottom:363.930000px;}
.y3c_c00260{bottom:378.630000px;}
.y17_c00260{bottom:381.480000px;}
.y3b_c00260{bottom:397.530000px;}
.y16_c00260{bottom:399.930000px;}
.y3a_c00260{bottom:415.230000px;}
.y15_c00260{bottom:417.780000px;}
.y39_c00260{bottom:433.380000px;}
.y14_c00260{bottom:436.080000px;}
.y38_c00260{bottom:451.980000px;}
.y13_c00260{bottom:453.330000px;}
.y37_c00260{bottom:468.780000px;}
.y12_c00260{bottom:470.880000px;}
.y36_c00260{bottom:487.980000px;}
.y11_c00260{bottom:488.730000px;}
.y10_c00260{bottom:506.280000px;}
.yf_c00260{bottom:524.430000px;}
.y35_c00260{bottom:525.180000px;}
.y34_c00260{bottom:542.430000px;}
.ye_c00260{bottom:542.730000px;}
.yd_c00260{bottom:560.580000px;}
.y33_c00260{bottom:560.880000px;}
.yc_c00260{bottom:578.580000px;}
.y32_c00260{bottom:578.880000px;}
.yb_c00260{bottom:596.430000px;}
.y31_c00260{bottom:614.580000px;}
.ya_c00260{bottom:614.880000px;}
.y9_c00260{bottom:632.880000px;}
.y30_c00260{bottom:633.180000px;}
.y8_c00260{bottom:650.430000px;}
.y2f_c00260{bottom:650.730000px;}
.y7_c00260{bottom:668.280000px;}
.y2e_c00260{bottom:669.030000px;}
.y6_c00260{bottom:686.580000px;}
.y2d_c00260{bottom:686.880000px;}
.y5_c00260{bottom:704.130000px;}
.y2c_c00260{bottom:704.730000px;}
.y4_c00260{bottom:722.880000px;}
.y3_c00260{bottom:740.430000px;}
.y2b_c00260{bottom:740.880000px;}
.y2_c00260{bottom:758.730000px;}
.y1_c00260{bottom:776.580000px;}
.y2a_c00260{bottom:776.880000px;}
.h8_c00260{height:13.200074px;}
.h9_c00260{height:43.804688px;}
.h6_c00260{height:59.736000px;}
.h2_c00260{height:61.831055px;}
.h4_c00260{height:62.880000px;}
.h5_c00260{height:64.020000px;}
.h7_c00260{height:64.571777px;}
.h3_c00260{height:69.168000px;}
.h0_c00260{height:841.350000px;}
.h1_c00260{height:841.500000px;}
.w1_c00260{width:104.875500px;}
.w0_c00260{width:590.250000px;}
.x0_c00260{left:0.000000px;}
.x7_c00260{left:22.950000px;}
.x2_c00260{left:76.050000px;}
.x1_c00260{left:77.700000px;}
.x3_c00260{left:79.200000px;}
.x5_c00260{left:80.400000px;}
.x6_c00260{left:81.450000px;}
.x8_c00260{left:83.400000px;}
.x9_c00260{left:85.350000px;}
.x4_c00260{left:107.100000px;}
.x12_c00260{left:246.939240px;}
.xb_c00260{left:294.000000px;}
.xa_c00260{left:295.200000px;}
.xc_c00260{left:296.550000px;}
.xd_c00260{left:297.900000px;}
.xe_c00260{left:299.400000px;}
.x10_c00260{left:301.050000px;}
.xf_c00260{left:302.100000px;}
.x11_c00260{left:470.400000px;}
@media print{
.v0_c00260{vertical-align:0.000000pt;}
.ls5_c00260{letter-spacing:0.000000pt;}
.ls4_c00260{letter-spacing:1.600000pt;}
.ls6_c00260{letter-spacing:2.666667pt;}
.ls0_c00260{letter-spacing:5.333333pt;}
.ls3_c00260{letter-spacing:6.800000pt;}
.ls1_c00260{letter-spacing:8.000000pt;}
.ls2_c00260{letter-spacing:10.533333pt;}
.ws7_c00260{word-spacing:-31.373333pt;}
.ws3_c00260{word-spacing:-19.957333pt;}
.ws1_c00260{word-spacing:-19.333333pt;}
.ws5_c00260{word-spacing:-18.925333pt;}
.ws2_c00260{word-spacing:-18.080000pt;}
.ws6_c00260{word-spacing:-16.053333pt;}
.ws0_c00260{word-spacing:-13.845333pt;}
.ws4_c00260{word-spacing:-12.586667pt;}
.ws9_c00260{word-spacing:0.000000pt;}
.ws8_c00260{word-spacing:1.706667pt;}
._24_c00260{margin-left:-23.680000pt;}
._5_c00260{margin-left:-17.024000pt;}
._10_c00260{margin-left:-11.872000pt;}
._6_c00260{margin-left:-10.360000pt;}
._7_c00260{margin-left:-8.512000pt;}
._9_c00260{margin-left:-7.280000pt;}
._8_c00260{margin-left:-6.216000pt;}
._1_c00260{margin-left:-4.928000pt;}
._2_c00260{margin-left:-3.528000pt;}
._4_c00260{margin-left:-1.904000pt;}
._c_c00260{margin-left:-0.952000pt;}
._0_c00260{width:0.896000pt;}
._b_c00260{width:1.848000pt;}
._3_c00260{width:2.800000pt;}
._11_c00260{width:3.696000pt;}
._a_c00260{width:4.984000pt;}
._1b_c00260{width:6.077333pt;}
._d_c00260{width:7.448000pt;}
._17_c00260{width:8.714667pt;}
._e_c00260{width:10.248000pt;}
._1e_c00260{width:11.290667pt;}
._1d_c00260{width:12.872000pt;}
._1c_c00260{width:14.128000pt;}
._22_c00260{width:16.152000pt;}
._21_c00260{width:18.338667pt;}
._13_c00260{width:20.578667pt;}
._12_c00260{width:22.133333pt;}
._27_c00260{width:23.754667pt;}
._20_c00260{width:24.866667pt;}
._1f_c00260{width:26.970667pt;}
._14_c00260{width:28.618667pt;}
._26_c00260{width:29.669333pt;}
._1a_c00260{width:34.893333pt;}
._23_c00260{width:40.693333pt;}
._f_c00260{width:75.656000pt;}
._16_c00260{width:88.757333pt;}
._18_c00260{width:92.501333pt;}
._19_c00260{width:119.840000pt;}
._15_c00260{width:156.546667pt;}
._28_c00260{width:162.978667pt;}
._25_c00260{width:230.653333pt;}
.fs3_c00260{font-size:40.000000pt;}
.fs6_c00260{font-size:42.666667pt;}
.fs5_c00260{font-size:45.333333pt;}
.fs4_c00260{font-size:50.666667pt;}
.fs2_c00260{font-size:53.333333pt;}
.fs0_c00260{font-size:56.000000pt;}
.fs1_c00260{font-size:58.666667pt;}
.y0_c00260{bottom:0.000000pt;}
.y51_c00260{bottom:2.760000pt;}
.y50_c00260{bottom:6.425206pt;}
.y4f_c00260{bottom:27.626667pt;}
.y4e_c00260{bottom:45.093333pt;}
.y29_c00260{bottom:47.093333pt;}
.y4d_c00260{bottom:61.893333pt;}
.y28_c00260{bottom:62.960000pt;}
.y4c_c00260{bottom:78.560000pt;}
.y27_c00260{bottom:78.960000pt;}
.y4b_c00260{bottom:94.826667pt;}
.y26_c00260{bottom:96.693333pt;}
.y4a_c00260{bottom:110.693333pt;}
.y25_c00260{bottom:112.826667pt;}
.y49_c00260{bottom:126.960000pt;}
.y24_c00260{bottom:128.160000pt;}
.y48_c00260{bottom:143.093333pt;}
.y23_c00260{bottom:145.493333pt;}
.y47_c00260{bottom:158.693333pt;}
.y22_c00260{bottom:161.093333pt;}
.y46_c00260{bottom:175.226667pt;}
.y21_c00260{bottom:177.893333pt;}
.y45_c00260{bottom:191.093333pt;}
.y20_c00260{bottom:194.426667pt;}
.y44_c00260{bottom:207.626667pt;}
.y1f_c00260{bottom:210.293333pt;}
.y43_c00260{bottom:223.760000pt;}
.y1e_c00260{bottom:226.560000pt;}
.y42_c00260{bottom:239.493333pt;}
.y1d_c00260{bottom:242.426667pt;}
.y41_c00260{bottom:256.160000pt;}
.y1c_c00260{bottom:258.693333pt;}
.y40_c00260{bottom:271.893333pt;}
.y1b_c00260{bottom:274.560000pt;}
.y3f_c00260{bottom:288.560000pt;}
.y1a_c00260{bottom:290.960000pt;}
.y3e_c00260{bottom:304.293333pt;}
.y19_c00260{bottom:306.960000pt;}
.y3d_c00260{bottom:320.693333pt;}
.y18_c00260{bottom:323.493333pt;}
.y3c_c00260{bottom:336.560000pt;}
.y17_c00260{bottom:339.093333pt;}
.y3b_c00260{bottom:353.360000pt;}
.y16_c00260{bottom:355.493333pt;}
.y3a_c00260{bottom:369.093333pt;}
.y15_c00260{bottom:371.360000pt;}
.y39_c00260{bottom:385.226667pt;}
.y14_c00260{bottom:387.626667pt;}
.y38_c00260{bottom:401.760000pt;}
.y13_c00260{bottom:402.960000pt;}
.y37_c00260{bottom:416.693333pt;}
.y12_c00260{bottom:418.560000pt;}
.y36_c00260{bottom:433.760000pt;}
.y11_c00260{bottom:434.426667pt;}
.y10_c00260{bottom:450.026667pt;}
.yf_c00260{bottom:466.160000pt;}
.y35_c00260{bottom:466.826667pt;}
.y34_c00260{bottom:482.160000pt;}
.ye_c00260{bottom:482.426667pt;}
.yd_c00260{bottom:498.293333pt;}
.y33_c00260{bottom:498.560000pt;}
.yc_c00260{bottom:514.293333pt;}
.y32_c00260{bottom:514.560000pt;}
.yb_c00260{bottom:530.160000pt;}
.y31_c00260{bottom:546.293333pt;}
.ya_c00260{bottom:546.560000pt;}
.y9_c00260{bottom:562.560000pt;}
.y30_c00260{bottom:562.826667pt;}
.y8_c00260{bottom:578.160000pt;}
.y2f_c00260{bottom:578.426667pt;}
.y7_c00260{bottom:594.026667pt;}
.y2e_c00260{bottom:594.693333pt;}
.y6_c00260{bottom:610.293333pt;}
.y2d_c00260{bottom:610.560000pt;}
.y5_c00260{bottom:625.893333pt;}
.y2c_c00260{bottom:626.426667pt;}
.y4_c00260{bottom:642.560000pt;}
.y3_c00260{bottom:658.160000pt;}
.y2b_c00260{bottom:658.560000pt;}
.y2_c00260{bottom:674.426667pt;}
.y1_c00260{bottom:690.293333pt;}
.y2a_c00260{bottom:690.560000pt;}
.h8_c00260{height:11.733399pt;}
.h9_c00260{height:38.937500pt;}
.h6_c00260{height:53.098667pt;}
.h2_c00260{height:54.960938pt;}
.h4_c00260{height:55.893333pt;}
.h5_c00260{height:56.906667pt;}
.h7_c00260{height:57.397135pt;}
.h3_c00260{height:61.482667pt;}
.h0_c00260{height:747.866667pt;}
.h1_c00260{height:748.000000pt;}
.w1_c00260{width:93.222667pt;}
.w0_c00260{width:524.666667pt;}
.x0_c00260{left:0.000000pt;}
.x7_c00260{left:20.400000pt;}
.x2_c00260{left:67.600000pt;}
.x1_c00260{left:69.066667pt;}
.x3_c00260{left:70.400000pt;}
.x5_c00260{left:71.466667pt;}
.x6_c00260{left:72.400000pt;}
.x8_c00260{left:74.133333pt;}
.x9_c00260{left:75.866667pt;}
.x4_c00260{left:95.200000pt;}
.x12_c00260{left:219.501546pt;}
.xb_c00260{left:261.333333pt;}
.xa_c00260{left:262.400000pt;}
.xc_c00260{left:263.600000pt;}
.xd_c00260{left:264.800000pt;}
.xe_c00260{left:266.133333pt;}
.x10_c00260{left:267.600000pt;}
.xf_c00260{left:268.533333pt;}
.x11_c00260{left:418.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_c00261 {
    display:none;
  }
  .loading-indicator_c00261.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00261 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00261 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00261" -> "#page-container .classname_c00261")
 */
.pf_c00261 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00261 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00261.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00261 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00261 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00261 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00261 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00261 {overflow:visible;}
  }
}
.c_c00261 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00261 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00261:after { /* webkit #35443 */
  content: '';
}
.t_c00261:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00261 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00261 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00261 { /* info for Javascript */
  display:none;
}
.l_c00261 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00261 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00261 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00261:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00261{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00261;src:url('chunks/assets/font_0392761d02d917de7693c9fc.woff2')format("woff");}.ff1_c00261{font-family:ff1_c00261;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00261;src:url('chunks/assets/font_457be603cc55c22cb637c290.woff2')format("woff");}.ff2_c00261{font-family:ff2_c00261;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00261;src:url('chunks/assets/font_5ff8f474b627c618ca3f25f5.woff2')format("woff");}.ff3_c00261{font-family:ff3_c00261;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00261;src:url('chunks/assets/font_b1f7b5c1793d0d1d1f311fb5.woff2')format("woff");}.ff4_c00261{font-family:ff4_c00261;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00261;src:url('chunks/assets/font_c0aafc4eb265a93dad3eb485.woff2')format("woff");}.ff5_c00261{font-family:ff5_c00261;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00261;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff6_c00261{font-family:ff6_c00261;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00261{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00261{vertical-align:0.000000px;}
.ls5_c00261{letter-spacing:0.000000px;}
.ls1_c00261{letter-spacing:0.600000px;}
.ls4_c00261{letter-spacing:3.000000px;}
.ls0_c00261{letter-spacing:5.400000px;}
.ls6_c00261{letter-spacing:6.000000px;}
.ls3_c00261{letter-spacing:7.800000px;}
.ls2_c00261{letter-spacing:13.200000px;}
.sc__c00261{text-shadow:none;}
.sc0_c00261{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00261{-webkit-text-stroke:0px transparent;}
.sc0_c00261{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00261{word-spacing:-23.760000px;}
.ws3_c00261{word-spacing:-21.774000px;}
.ws2_c00261{word-spacing:-20.340000px;}
.ws0_c00261{word-spacing:-14.160000px;}
.ws4_c00261{word-spacing:0.000000px;}
._30_c00261{margin-left:-13.560000px;}
._1d_c00261{margin-left:-12.000000px;}
._1e_c00261{margin-left:-10.380000px;}
._1a_c00261{margin-left:-8.100000px;}
._23_c00261{margin-left:-6.720000px;}
._11_c00261{margin-left:-5.700000px;}
._1b_c00261{margin-left:-4.440000px;}
._12_c00261{margin-left:-3.360000px;}
._10_c00261{margin-left:-2.040000px;}
._17_c00261{margin-left:-1.020000px;}
._d_c00261{width:1.080000px;}
._c_c00261{width:2.880000px;}
._f_c00261{width:4.080000px;}
._1_c00261{width:5.100000px;}
._0_c00261{width:6.900000px;}
._9_c00261{width:8.940000px;}
._14_c00261{width:10.680000px;}
._3_c00261{width:11.880000px;}
._19_c00261{width:12.960000px;}
._4_c00261{width:14.280000px;}
._5_c00261{width:16.200000px;}
._7_c00261{width:18.960000px;}
._6_c00261{width:21.000000px;}
._1c_c00261{width:22.440000px;}
._b_c00261{width:24.660000px;}
._33_c00261{width:25.920000px;}
._8_c00261{width:27.960000px;}
._2d_c00261{width:31.560000px;}
._2e_c00261{width:32.940000px;}
._27_c00261{width:34.020000px;}
._16_c00261{width:36.420000px;}
._25_c00261{width:39.660000px;}
._26_c00261{width:43.800000px;}
._a_c00261{width:56.160000px;}
._15_c00261{width:78.120000px;}
._13_c00261{width:80.040000px;}
._22_c00261{width:81.300000px;}
._18_c00261{width:82.380000px;}
._20_c00261{width:85.020000px;}
._1f_c00261{width:86.280000px;}
._21_c00261{width:88.500000px;}
._28_c00261{width:91.140000px;}
._29_c00261{width:92.520000px;}
._24_c00261{width:94.020000px;}
._2f_c00261{width:95.340000px;}
._2b_c00261{width:100.740000px;}
._31_c00261{width:102.360000px;}
._32_c00261{width:107.340000px;}
._34_c00261{width:109.080000px;}
._2a_c00261{width:111.180000px;}
._2c_c00261{width:121.140000px;}
._e_c00261{width:227.520000px;}
._2_c00261{width:299.460000px;}
.fc2_c00261{color:transparent;}
.fc1_c00261{color:rgb(128,128,128);}
.fc0_c00261{color:rgb(0,0,0);}
.fs1_c00261{font-size:48.000000px;}
.fs0_c00261{font-size:60.000000px;}
.fs2_c00261{font-size:66.000000px;}
.y0_c00261{bottom:0.000000px;}
.y2d_c00261{bottom:3.105000px;}
.y2c_c00261{bottom:7.228363px;}
.y2b_c00261{bottom:33.300000px;}
.y2a_c00261{bottom:50.700000px;}
.y29_c00261{bottom:69.750000px;}
.y28_c00261{bottom:87.450000px;}
.y27_c00261{bottom:105.300000px;}
.y26_c00261{bottom:123.150000px;}
.y25_c00261{bottom:141.150000px;}
.y24_c00261{bottom:159.750000px;}
.y23_c00261{bottom:177.900000px;}
.y22_c00261{bottom:196.050000px;}
.y21_c00261{bottom:213.600000px;}
.y20_c00261{bottom:232.500000px;}
.y1f_c00261{bottom:250.500000px;}
.y1e_c00261{bottom:268.650000px;}
.y1d_c00261{bottom:286.200000px;}
.y1c_c00261{bottom:304.800000px;}
.y1b_c00261{bottom:322.650000px;}
.y1a_c00261{bottom:340.500000px;}
.y19_c00261{bottom:358.500000px;}
.y18_c00261{bottom:376.950000px;}
.y17_c00261{bottom:394.650000px;}
.y16_c00261{bottom:412.800000px;}
.y15_c00261{bottom:431.400000px;}
.y14_c00261{bottom:449.550000px;}
.y13_c00261{bottom:467.400000px;}
.y12_c00261{bottom:485.700000px;}
.y11_c00261{bottom:504.600000px;}
.y10_c00261{bottom:522.450000px;}
.yf_c00261{bottom:540.300000px;}
.ye_c00261{bottom:558.000000px;}
.yd_c00261{bottom:576.150000px;}
.yc_c00261{bottom:594.300000px;}
.yb_c00261{bottom:612.450000px;}
.ya_c00261{bottom:630.450000px;}
.y9_c00261{bottom:648.450000px;}
.y8_c00261{bottom:666.900000px;}
.y7_c00261{bottom:685.200000px;}
.y6_c00261{bottom:703.650000px;}
.y5_c00261{bottom:721.950000px;}
.y4_c00261{bottom:740.250000px;}
.y3_c00261{bottom:758.100000px;}
.y2_c00261{bottom:776.550000px;}
.y1_c00261{bottom:796.500000px;}
.h5_c00261{height:13.200074px;}
.h6_c00261{height:43.804688px;}
.h1_c00261{height:62.880000px;}
.h3_c00261{height:64.020000px;}
.h2_c00261{height:64.620000px;}
.h4_c00261{height:69.168000px;}
.h0_c00261{height:843.750000px;}
.w2_c00261{width:104.875500px;}
.w1_c00261{width:565.500000px;}
.w0_c00261{width:565.650000px;}
.x0_c00261{left:0.000000px;}
.x7_c00261{left:93.600000px;}
.x6_c00261{left:94.800000px;}
.x5_c00261{left:96.300000px;}
.x4_c00261{left:97.650000px;}
.x3_c00261{left:99.600000px;}
.x2_c00261{left:100.950000px;}
.x1_c00261{left:105.300000px;}
.x9_c00261{left:234.639267px;}
.x8_c00261{left:486.300000px;}
@media print{
.v0_c00261{vertical-align:0.000000pt;}
.ls5_c00261{letter-spacing:0.000000pt;}
.ls1_c00261{letter-spacing:0.533333pt;}
.ls4_c00261{letter-spacing:2.666667pt;}
.ls0_c00261{letter-spacing:4.800000pt;}
.ls6_c00261{letter-spacing:5.333333pt;}
.ls3_c00261{letter-spacing:6.933333pt;}
.ls2_c00261{letter-spacing:11.733333pt;}
.ws1_c00261{word-spacing:-21.120000pt;}
.ws3_c00261{word-spacing:-19.354667pt;}
.ws2_c00261{word-spacing:-18.080000pt;}
.ws0_c00261{word-spacing:-12.586667pt;}
.ws4_c00261{word-spacing:0.000000pt;}
._30_c00261{margin-left:-12.053333pt;}
._1d_c00261{margin-left:-10.666667pt;}
._1e_c00261{margin-left:-9.226667pt;}
._1a_c00261{margin-left:-7.200000pt;}
._23_c00261{margin-left:-5.973333pt;}
._11_c00261{margin-left:-5.066667pt;}
._1b_c00261{margin-left:-3.946667pt;}
._12_c00261{margin-left:-2.986667pt;}
._10_c00261{margin-left:-1.813333pt;}
._17_c00261{margin-left:-0.906667pt;}
._d_c00261{width:0.960000pt;}
._c_c00261{width:2.560000pt;}
._f_c00261{width:3.626667pt;}
._1_c00261{width:4.533333pt;}
._0_c00261{width:6.133333pt;}
._9_c00261{width:7.946667pt;}
._14_c00261{width:9.493333pt;}
._3_c00261{width:10.560000pt;}
._19_c00261{width:11.520000pt;}
._4_c00261{width:12.693333pt;}
._5_c00261{width:14.400000pt;}
._7_c00261{width:16.853333pt;}
._6_c00261{width:18.666667pt;}
._1c_c00261{width:19.946667pt;}
._b_c00261{width:21.920000pt;}
._33_c00261{width:23.040000pt;}
._8_c00261{width:24.853333pt;}
._2d_c00261{width:28.053333pt;}
._2e_c00261{width:29.280000pt;}
._27_c00261{width:30.240000pt;}
._16_c00261{width:32.373333pt;}
._25_c00261{width:35.253333pt;}
._26_c00261{width:38.933333pt;}
._a_c00261{width:49.920000pt;}
._15_c00261{width:69.440000pt;}
._13_c00261{width:71.146667pt;}
._22_c00261{width:72.266667pt;}
._18_c00261{width:73.226667pt;}
._20_c00261{width:75.573333pt;}
._1f_c00261{width:76.693333pt;}
._21_c00261{width:78.666667pt;}
._28_c00261{width:81.013333pt;}
._29_c00261{width:82.240000pt;}
._24_c00261{width:83.573333pt;}
._2f_c00261{width:84.746667pt;}
._2b_c00261{width:89.546667pt;}
._31_c00261{width:90.986667pt;}
._32_c00261{width:95.413333pt;}
._34_c00261{width:96.960000pt;}
._2a_c00261{width:98.826667pt;}
._2c_c00261{width:107.680000pt;}
._e_c00261{width:202.240000pt;}
._2_c00261{width:266.186667pt;}
.fs1_c00261{font-size:42.666667pt;}
.fs0_c00261{font-size:53.333333pt;}
.fs2_c00261{font-size:58.666667pt;}
.y0_c00261{bottom:0.000000pt;}
.y2d_c00261{bottom:2.760000pt;}
.y2c_c00261{bottom:6.425212pt;}
.y2b_c00261{bottom:29.600000pt;}
.y2a_c00261{bottom:45.066667pt;}
.y29_c00261{bottom:62.000000pt;}
.y28_c00261{bottom:77.733333pt;}
.y27_c00261{bottom:93.600000pt;}
.y26_c00261{bottom:109.466667pt;}
.y25_c00261{bottom:125.466667pt;}
.y24_c00261{bottom:142.000000pt;}
.y23_c00261{bottom:158.133333pt;}
.y22_c00261{bottom:174.266667pt;}
.y21_c00261{bottom:189.866667pt;}
.y20_c00261{bottom:206.666667pt;}
.y1f_c00261{bottom:222.666667pt;}
.y1e_c00261{bottom:238.800000pt;}
.y1d_c00261{bottom:254.400000pt;}
.y1c_c00261{bottom:270.933333pt;}
.y1b_c00261{bottom:286.800000pt;}
.y1a_c00261{bottom:302.666667pt;}
.y19_c00261{bottom:318.666667pt;}
.y18_c00261{bottom:335.066667pt;}
.y17_c00261{bottom:350.800000pt;}
.y16_c00261{bottom:366.933333pt;}
.y15_c00261{bottom:383.466667pt;}
.y14_c00261{bottom:399.600000pt;}
.y13_c00261{bottom:415.466667pt;}
.y12_c00261{bottom:431.733333pt;}
.y11_c00261{bottom:448.533333pt;}
.y10_c00261{bottom:464.400000pt;}
.yf_c00261{bottom:480.266667pt;}
.ye_c00261{bottom:496.000000pt;}
.yd_c00261{bottom:512.133333pt;}
.yc_c00261{bottom:528.266667pt;}
.yb_c00261{bottom:544.400000pt;}
.ya_c00261{bottom:560.400000pt;}
.y9_c00261{bottom:576.400000pt;}
.y8_c00261{bottom:592.800000pt;}
.y7_c00261{bottom:609.066667pt;}
.y6_c00261{bottom:625.466667pt;}
.y5_c00261{bottom:641.733333pt;}
.y4_c00261{bottom:658.000000pt;}
.y3_c00261{bottom:673.866667pt;}
.y2_c00261{bottom:690.266667pt;}
.y1_c00261{bottom:708.000000pt;}
.h5_c00261{height:11.733399pt;}
.h6_c00261{height:38.937500pt;}
.h1_c00261{height:55.893333pt;}
.h3_c00261{height:56.906667pt;}
.h2_c00261{height:57.440000pt;}
.h4_c00261{height:61.482667pt;}
.h0_c00261{height:750.000000pt;}
.w2_c00261{width:93.222667pt;}
.w1_c00261{width:502.666667pt;}
.w0_c00261{width:502.800000pt;}
.x0_c00261{left:0.000000pt;}
.x7_c00261{left:83.200000pt;}
.x6_c00261{left:84.266667pt;}
.x5_c00261{left:85.600000pt;}
.x4_c00261{left:86.800000pt;}
.x3_c00261{left:88.533333pt;}
.x2_c00261{left:89.733333pt;}
.x1_c00261{left:93.600000pt;}
.x9_c00261{left:208.568237pt;}
.x8_c00261{left:432.266667pt;}
}





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

.ir_c00262:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00262{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00262;src:url('chunks/assets/font_79ad3ba193c46892cf63cc99.woff2')format("woff");}.ff1_c00262{font-family:ff1_c00262;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00262;src:url('chunks/assets/font_800484bd17abf79ef1c38142.woff2')format("woff");}.ff2_c00262{font-family:ff2_c00262;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00262;src:url('chunks/assets/font_72f75d29cae0342c7655e65f.woff2')format("woff");}.ff3_c00262{font-family:ff3_c00262;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00262;src:url('chunks/assets/font_cac0185ae49db3d78a93d0eb.woff2')format("woff");}.ff4_c00262{font-family:ff4_c00262;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00262;src:url('chunks/assets/font_50f17387911a52b36b8b2098.woff2')format("woff");}.ff5_c00262{font-family:ff5_c00262;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00262;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff6_c00262{font-family:ff6_c00262;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00262{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m0_c00262{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2_c00262{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.v0_c00262{vertical-align:0.000000px;}
.v1_c00262{vertical-align:64.800000px;}
.v2_c00262{vertical-align:105.600000px;}
.ls5_c00262{letter-spacing:0.000000px;}
.ls1_c00262{letter-spacing:0.780000px;}
.ls0_c00262{letter-spacing:3.000000px;}
.ls3_c00262{letter-spacing:5.280000px;}
.ls2_c00262{letter-spacing:7.095000px;}
.ls4_c00262{letter-spacing:10.200000px;}
.sc__c00262{text-shadow:none;}
.sc0_c00262{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00262{-webkit-text-stroke:0px transparent;}
.sc0_c00262{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00262{word-spacing:-39.780000px;}
.ws5_c00262{word-spacing:-32.424000px;}
.ws3_c00262{word-spacing:-18.060000px;}
.ws1_c00262{word-spacing:-17.340000px;}
.ws2_c00262{word-spacing:-14.940000px;}
.ws0_c00262{word-spacing:-14.160000px;}
.ws6_c00262{word-spacing:0.000000px;}
._24_c00262{margin-left:-16.980000px;}
._1f_c00262{margin-left:-14.040000px;}
._25_c00262{margin-left:-11.400000px;}
._12_c00262{margin-left:-9.720000px;}
._6_c00262{margin-left:-7.740000px;}
._11_c00262{margin-left:-5.940000px;}
._3_c00262{margin-left:-4.560000px;}
._4_c00262{margin-left:-2.940000px;}
._5_c00262{margin-left:-1.680000px;}
._0_c00262{width:1.980000px;}
._1_c00262{width:3.120000px;}
._f_c00262{width:4.260000px;}
._9_c00262{width:5.280000px;}
._b_c00262{width:7.200000px;}
._a_c00262{width:8.940000px;}
._7_c00262{width:10.560000px;}
._2_c00262{width:12.060000px;}
._14_c00262{width:14.160000px;}
._31_c00262{width:15.540000px;}
._19_c00262{width:16.860000px;}
._1a_c00262{width:17.940000px;}
._16_c00262{width:19.440000px;}
._1c_c00262{width:20.700000px;}
._d_c00262{width:21.900000px;}
._1b_c00262{width:23.940000px;}
._e_c00262{width:25.680000px;}
._33_c00262{width:29.280000px;}
._29_c00262{width:30.840000px;}
._1d_c00262{width:31.860000px;}
._32_c00262{width:32.880000px;}
._1e_c00262{width:34.980000px;}
._2a_c00262{width:39.300000px;}
._2b_c00262{width:40.320000px;}
._34_c00262{width:45.060000px;}
._35_c00262{width:47.340000px;}
._2f_c00262{width:49.020000px;}
._2e_c00262{width:51.060000px;}
._30_c00262{width:52.440000px;}
._2d_c00262{width:53.580000px;}
._23_c00262{width:56.940000px;}
._21_c00262{width:67.140000px;}
._20_c00262{width:69.240000px;}
._22_c00262{width:72.600000px;}
._18_c00262{width:74.040000px;}
._10_c00262{width:77.955000px;}
._27_c00262{width:78.960000px;}
._c_c00262{width:81.480000px;}
._13_c00262{width:83.160000px;}
._8_c00262{width:177.000000px;}
._15_c00262{width:205.980000px;}
._28_c00262{width:229.260000px;}
._26_c00262{width:353.640000px;}
._2c_c00262{width:376.020000px;}
._17_c00262{width:380.400000px;}
._36_c00262{width:435.420000px;}
.fc2_c00262{color:transparent;}
.fc1_c00262{color:rgb(128,128,128);}
.fc0_c00262{color:rgb(0,0,0);}
.fs3_c00262{font-size:48.000000px;}
.fs1_c00262{font-size:57.000000px;}
.fs0_c00262{font-size:60.000000px;}
.fs2_c00262{font-size:201.000000px;}
.y0_c00262{bottom:0.000000px;}
.y32_c00262{bottom:3.105000px;}
.y31_c00262{bottom:7.228371px;}
.y30_c00262{bottom:29.715000px;}
.y2f_c00262{bottom:49.665000px;}
.y2e_c00262{bottom:67.515000px;}
.y2d_c00262{bottom:85.815000px;}
.y2c_c00262{bottom:103.665000px;}
.y2b_c00262{bottom:123.165000px;}
.y2a_c00262{bottom:140.115000px;}
.y29_c00262{bottom:157.965000px;}
.y28_c00262{bottom:178.215000px;}
.y27_c00262{bottom:195.765000px;}
.y26_c00262{bottom:214.965000px;}
.y25_c00262{bottom:230.265000px;}
.y24_c00262{bottom:250.065000px;}
.y23_c00262{bottom:268.365000px;}
.y22_c00262{bottom:287.265000px;}
.y21_c00262{bottom:305.415000px;}
.y20_c00262{bottom:323.115000px;}
.y1f_c00262{bottom:341.265000px;}
.y1e_c00262{bottom:358.815000px;}
.y1d_c00262{bottom:376.065000px;}
.y1c_c00262{bottom:393.165000px;}
.y1b_c00262{bottom:414.465000px;}
.y1a_c00262{bottom:431.715000px;}
.y19_c00262{bottom:449.865000px;}
.y11_c00262{bottom:461.715000px;}
.y18_c00262{bottom:465.465000px;}
.y12_c00262{bottom:470.265000px;}
.y17_c00262{bottom:484.065000px;}
.y16_c00262{bottom:502.515000px;}
.y15_c00262{bottom:519.765000px;}
.y10_c00262{bottom:524.115000px;}
.y14_c00262{bottom:538.065000px;}
.yf_c00262{bottom:542.715000px;}
.y13_c00262{bottom:555.915000px;}
.ye_c00262{bottom:561.315000px;}
.yd_c00262{bottom:577.515000px;}
.yc_c00262{bottom:595.815000px;}
.yb_c00262{bottom:611.865000px;}
.ya_c00262{bottom:630.165000px;}
.y9_c00262{bottom:648.465000px;}
.y8_c00262{bottom:666.315000px;}
.y7_c00262{bottom:668.715000px;}
.y6_c00262{bottom:686.565000px;}
.y5_c00262{bottom:704.415000px;}
.y4_c00262{bottom:722.565000px;}
.y3_c00262{bottom:740.565000px;}
.y2_c00262{bottom:758.415000px;}
.y1_c00262{bottom:777.015000px;}
.h6_c00262{height:13.200074px;}
.h7_c00262{height:43.804688px;}
.h2_c00262{height:62.880000px;}
.h5_c00262{height:64.020000px;}
.h3_c00262{height:127.680000px;}
.h4_c00262{height:210.648000px;}
.h1_c00262{height:836.250000px;}
.h0_c00262{height:836.475000px;}
.w2_c00262{width:104.875500px;}
.w0_c00262{width:586.425000px;}
.w1_c00262{width:586.500000px;}
.x0_c00262{left:0.000000px;}
.x13_c00262{left:19.200000px;}
.x3_c00262{left:69.150000px;}
.x2_c00262{left:71.550000px;}
.x1_c00262{left:73.800000px;}
.x15_c00262{left:75.900000px;}
.xa_c00262{left:79.650000px;}
.x12_c00262{left:80.700000px;}
.x14_c00262{left:82.050000px;}
.x7_c00262{left:90.450000px;}
.x19_c00262{left:95.100000px;}
.x18_c00262{left:99.900000px;}
.x8_c00262{left:102.000000px;}
.x6_c00262{left:105.300000px;}
.xb_c00262{left:126.900000px;}
.xe_c00262{left:135.750000px;}
.x9_c00262{left:138.000000px;}
.x17_c00262{left:150.900000px;}
.x5_c00262{left:170.850000px;}
.xf_c00262{left:194.850000px;}
.x10_c00262{left:199.650000px;}
.x16_c00262{left:221.400000px;}
.x1b_c00262{left:245.026749px;}
.x11_c00262{left:246.150000px;}
.x4_c00262{left:288.900000px;}
.xc_c00262{left:289.950000px;}
.xd_c00262{left:291.300000px;}
.x1a_c00262{left:463.050000px;}
@media print{
.v0_c00262{vertical-align:0.000000pt;}
.v1_c00262{vertical-align:57.600000pt;}
.v2_c00262{vertical-align:93.866667pt;}
.ls5_c00262{letter-spacing:0.000000pt;}
.ls1_c00262{letter-spacing:0.693333pt;}
.ls0_c00262{letter-spacing:2.666667pt;}
.ls3_c00262{letter-spacing:4.693333pt;}
.ls2_c00262{letter-spacing:6.306667pt;}
.ls4_c00262{letter-spacing:9.066667pt;}
.ws4_c00262{word-spacing:-35.360000pt;}
.ws5_c00262{word-spacing:-28.821333pt;}
.ws3_c00262{word-spacing:-16.053333pt;}
.ws1_c00262{word-spacing:-15.413333pt;}
.ws2_c00262{word-spacing:-13.280000pt;}
.ws0_c00262{word-spacing:-12.586667pt;}
.ws6_c00262{word-spacing:0.000000pt;}
._24_c00262{margin-left:-15.093333pt;}
._1f_c00262{margin-left:-12.480000pt;}
._25_c00262{margin-left:-10.133333pt;}
._12_c00262{margin-left:-8.640000pt;}
._6_c00262{margin-left:-6.880000pt;}
._11_c00262{margin-left:-5.280000pt;}
._3_c00262{margin-left:-4.053333pt;}
._4_c00262{margin-left:-2.613333pt;}
._5_c00262{margin-left:-1.493333pt;}
._0_c00262{width:1.760000pt;}
._1_c00262{width:2.773333pt;}
._f_c00262{width:3.786667pt;}
._9_c00262{width:4.693333pt;}
._b_c00262{width:6.400000pt;}
._a_c00262{width:7.946667pt;}
._7_c00262{width:9.386667pt;}
._2_c00262{width:10.720000pt;}
._14_c00262{width:12.586667pt;}
._31_c00262{width:13.813333pt;}
._19_c00262{width:14.986667pt;}
._1a_c00262{width:15.946667pt;}
._16_c00262{width:17.280000pt;}
._1c_c00262{width:18.400000pt;}
._d_c00262{width:19.466667pt;}
._1b_c00262{width:21.280000pt;}
._e_c00262{width:22.826667pt;}
._33_c00262{width:26.026667pt;}
._29_c00262{width:27.413333pt;}
._1d_c00262{width:28.320000pt;}
._32_c00262{width:29.226667pt;}
._1e_c00262{width:31.093333pt;}
._2a_c00262{width:34.933333pt;}
._2b_c00262{width:35.840000pt;}
._34_c00262{width:40.053333pt;}
._35_c00262{width:42.080000pt;}
._2f_c00262{width:43.573333pt;}
._2e_c00262{width:45.386667pt;}
._30_c00262{width:46.613333pt;}
._2d_c00262{width:47.626667pt;}
._23_c00262{width:50.613333pt;}
._21_c00262{width:59.680000pt;}
._20_c00262{width:61.546667pt;}
._22_c00262{width:64.533333pt;}
._18_c00262{width:65.813333pt;}
._10_c00262{width:69.293333pt;}
._27_c00262{width:70.186667pt;}
._c_c00262{width:72.426667pt;}
._13_c00262{width:73.920000pt;}
._8_c00262{width:157.333333pt;}
._15_c00262{width:183.093333pt;}
._28_c00262{width:203.786667pt;}
._26_c00262{width:314.346667pt;}
._2c_c00262{width:334.240000pt;}
._17_c00262{width:338.133333pt;}
._36_c00262{width:387.040000pt;}
.fs3_c00262{font-size:42.666667pt;}
.fs1_c00262{font-size:50.666667pt;}
.fs0_c00262{font-size:53.333333pt;}
.fs2_c00262{font-size:178.666667pt;}
.y0_c00262{bottom:0.000000pt;}
.y32_c00262{bottom:2.760000pt;}
.y31_c00262{bottom:6.425219pt;}
.y30_c00262{bottom:26.413333pt;}
.y2f_c00262{bottom:44.146667pt;}
.y2e_c00262{bottom:60.013333pt;}
.y2d_c00262{bottom:76.280000pt;}
.y2c_c00262{bottom:92.146667pt;}
.y2b_c00262{bottom:109.480000pt;}
.y2a_c00262{bottom:124.546667pt;}
.y29_c00262{bottom:140.413333pt;}
.y28_c00262{bottom:158.413333pt;}
.y27_c00262{bottom:174.013333pt;}
.y26_c00262{bottom:191.080000pt;}
.y25_c00262{bottom:204.680000pt;}
.y24_c00262{bottom:222.280000pt;}
.y23_c00262{bottom:238.546667pt;}
.y22_c00262{bottom:255.346667pt;}
.y21_c00262{bottom:271.480000pt;}
.y20_c00262{bottom:287.213333pt;}
.y1f_c00262{bottom:303.346667pt;}
.y1e_c00262{bottom:318.946667pt;}
.y1d_c00262{bottom:334.280000pt;}
.y1c_c00262{bottom:349.480000pt;}
.y1b_c00262{bottom:368.413333pt;}
.y1a_c00262{bottom:383.746667pt;}
.y19_c00262{bottom:399.880000pt;}
.y11_c00262{bottom:410.413333pt;}
.y18_c00262{bottom:413.746667pt;}
.y12_c00262{bottom:418.013333pt;}
.y17_c00262{bottom:430.280000pt;}
.y16_c00262{bottom:446.680000pt;}
.y15_c00262{bottom:462.013333pt;}
.y10_c00262{bottom:465.880000pt;}
.y14_c00262{bottom:478.280000pt;}
.yf_c00262{bottom:482.413333pt;}
.y13_c00262{bottom:494.146667pt;}
.ye_c00262{bottom:498.946667pt;}
.yd_c00262{bottom:513.346667pt;}
.yc_c00262{bottom:529.613333pt;}
.yb_c00262{bottom:543.880000pt;}
.ya_c00262{bottom:560.146667pt;}
.y9_c00262{bottom:576.413333pt;}
.y8_c00262{bottom:592.280000pt;}
.y7_c00262{bottom:594.413333pt;}
.y6_c00262{bottom:610.280000pt;}
.y5_c00262{bottom:626.146667pt;}
.y4_c00262{bottom:642.280000pt;}
.y3_c00262{bottom:658.280000pt;}
.y2_c00262{bottom:674.146667pt;}
.y1_c00262{bottom:690.680000pt;}
.h6_c00262{height:11.733399pt;}
.h7_c00262{height:38.937500pt;}
.h2_c00262{height:55.893333pt;}
.h5_c00262{height:56.906667pt;}
.h3_c00262{height:113.493333pt;}
.h4_c00262{height:187.242667pt;}
.h1_c00262{height:743.333333pt;}
.h0_c00262{height:743.533333pt;}
.w2_c00262{width:93.222667pt;}
.w0_c00262{width:521.266667pt;}
.w1_c00262{width:521.333333pt;}
.x0_c00262{left:0.000000pt;}
.x13_c00262{left:17.066667pt;}
.x3_c00262{left:61.466667pt;}
.x2_c00262{left:63.600000pt;}
.x1_c00262{left:65.600000pt;}
.x15_c00262{left:67.466667pt;}
.xa_c00262{left:70.800000pt;}
.x12_c00262{left:71.733333pt;}
.x14_c00262{left:72.933333pt;}
.x7_c00262{left:80.400000pt;}
.x19_c00262{left:84.533333pt;}
.x18_c00262{left:88.800000pt;}
.x8_c00262{left:90.666667pt;}
.x6_c00262{left:93.600000pt;}
.xb_c00262{left:112.800000pt;}
.xe_c00262{left:120.666667pt;}
.x9_c00262{left:122.666667pt;}
.x17_c00262{left:134.133333pt;}
.x5_c00262{left:151.866667pt;}
.xf_c00262{left:173.200000pt;}
.x10_c00262{left:177.466667pt;}
.x16_c00262{left:196.800000pt;}
.x1b_c00262{left:217.801554pt;}
.x11_c00262{left:218.800000pt;}
.x4_c00262{left:256.800000pt;}
.xc_c00262{left:257.733333pt;}
.xd_c00262{left:258.933333pt;}
.x1a_c00262{left:411.600000pt;}
}





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

.ir_c00263:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00263{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00263;src:url('chunks/assets/font_6bafb4222ae23daa13062306.woff2')format("woff");}.ff1_c00263{font-family:ff1_c00263;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00263;src:url('chunks/assets/font_13bdebffd2f4894c51eb72e6.woff2')format("woff");}.ff2_c00263{font-family:ff2_c00263;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00263;src:url('chunks/assets/font_03734f5fbb0ab40759fb9ebb.woff2')format("woff");}.ff3_c00263{font-family:ff3_c00263;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00263;src:url('chunks/assets/font_91127d4f4a2313a9d542db74.woff2')format("woff");}.ff4_c00263{font-family:ff4_c00263;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00263;src:url('chunks/assets/font_086d301e723398c43996cd57.woff2')format("woff");}.ff5_c00263{font-family:ff5_c00263;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_c00263;src:url('chunks/assets/font_f5755d5bc889b584a4465d43.woff2')format("woff");}.ff6_c00263{font-family:ff6_c00263;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00263;src:url('chunks/assets/font_205916b5782ad52f749d0e68.woff2')format("woff");}.ff7_c00263{font-family:ff7_c00263;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00263;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff8_c00263{font-family:ff8_c00263;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00263{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00263{vertical-align:0.000000px;}
.lsc_c00263{letter-spacing:0.000000px;}
.ls7_c00263{letter-spacing:2.400000px;}
.ls4_c00263{letter-spacing:2.844000px;}
.ls1_c00263{letter-spacing:3.000000px;}
.lsb_c00263{letter-spacing:4.800000px;}
.lsd_c00263{letter-spacing:6.000000px;}
.lsa_c00263{letter-spacing:6.720000px;}
.ls2_c00263{letter-spacing:7.989000px;}
.ls3_c00263{letter-spacing:8.244000px;}
.ls8_c00263{letter-spacing:16.140000px;}
.ls9_c00263{letter-spacing:22.140000px;}
.ls6_c00263{letter-spacing:25.200000px;}
.ls0_c00263{letter-spacing:80.046000px;}
.ls5_c00263{letter-spacing:80.646000px;}
.sc__c00263{text-shadow:none;}
.sc0_c00263{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00263{-webkit-text-stroke:0px transparent;}
.sc0_c00263{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00263{word-spacing:-23.760000px;}
.ws8_c00263{word-spacing:-22.491000px;}
.ws2_c00263{word-spacing:-19.554000px;}
.ws5_c00263{word-spacing:-18.060000px;}
.ws6_c00263{word-spacing:-18.000000px;}
.ws1_c00263{word-spacing:-17.340000px;}
.ws3_c00263{word-spacing:-15.291000px;}
.ws0_c00263{word-spacing:-14.160000px;}
.ws4_c00263{word-spacing:-13.452000px;}
.ws9_c00263{word-spacing:0.000000px;}
._12_c00263{margin-left:-20.160000px;}
._24_c00263{margin-left:-18.462000px;}
._2d_c00263{margin-left:-16.014000px;}
._c_c00263{margin-left:-12.594000px;}
._27_c00263{margin-left:-10.839000px;}
._23_c00263{margin-left:-9.759000px;}
._5_c00263{margin-left:-7.968000px;}
._21_c00263{margin-left:-6.873000px;}
._1a_c00263{margin-left:-5.391000px;}
._6_c00263{margin-left:-4.128000px;}
._3_c00263{margin-left:-2.460000px;}
._4_c00263{margin-left:-1.440000px;}
._7_c00263{width:1.812000px;}
._d_c00263{width:2.898000px;}
._1_c00263{width:3.900000px;}
._2_c00263{width:4.980000px;}
._10_c00263{width:6.108000px;}
._1e_c00263{width:7.317000px;}
._0_c00263{width:8.700000px;}
._19_c00263{width:10.737000px;}
._26_c00263{width:11.775000px;}
._9_c00263{width:13.344000px;}
._8_c00263{width:15.402000px;}
._11_c00263{width:16.683000px;}
._a_c00263{width:17.736000px;}
._20_c00263{width:19.581000px;}
._14_c00263{width:20.760000px;}
._f_c00263{width:21.900000px;}
._1f_c00263{width:24.360000px;}
._1d_c00263{width:26.460000px;}
._15_c00263{width:27.528000px;}
._28_c00263{width:28.854000px;}
._1c_c00263{width:29.904000px;}
._2a_c00263{width:31.569000px;}
._17_c00263{width:32.988000px;}
._16_c00263{width:35.160000px;}
._18_c00263{width:36.540000px;}
._29_c00263{width:47.460000px;}
._1b_c00263{width:49.884000px;}
._13_c00263{width:72.180000px;}
._25_c00263{width:76.440000px;}
._2c_c00263{width:84.834000px;}
._2f_c00263{width:86.457000px;}
._2e_c00263{width:88.059000px;}
._22_c00263{width:107.460000px;}
._b_c00263{width:116.820000px;}
._32_c00263{width:197.886000px;}
._2b_c00263{width:363.366000px;}
._30_c00263{width:449.868000px;}
._31_c00263{width:453.633000px;}
._e_c00263{width:599.220000px;}
.fc2_c00263{color:transparent;}
.fc1_c00263{color:rgb(128,128,128);}
.fc0_c00263{color:rgb(0,0,0);}
.fs1_c00263{font-size:48.000000px;}
.fs3_c00263{font-size:51.000000px;}
.fs2_c00263{font-size:54.000000px;}
.fs4_c00263{font-size:57.000000px;}
.fs0_c00263{font-size:60.000000px;}
.fs5_c00263{font-size:69.000000px;}
.y0_c00263{bottom:0.000000px;}
.y49_c00263{bottom:3.105000px;}
.y48_c00263{bottom:7.228369px;}
.y47_c00263{bottom:34.470000px;}
.y46_c00263{bottom:51.870000px;}
.y45_c00263{bottom:70.470000px;}
.y44_c00263{bottom:87.420000px;}
.y43_c00263{bottom:107.220000px;}
.y5_c00263{bottom:122.070000px;}
.y42_c00263{bottom:125.820000px;}
.y4_c00263{bottom:140.970000px;}
.y41_c00263{bottom:143.370000px;}
.y3_c00263{bottom:158.670000px;}
.y40_c00263{bottom:161.670000px;}
.y3f_c00263{bottom:179.820000px;}
.y3e_c00263{bottom:198.120000px;}
.y3d_c00263{bottom:215.670000px;}
.y29_c00263{bottom:232.770000px;}
.y3c_c00263{bottom:235.170000px;}
.y28_c00263{bottom:251.070000px;}
.y3b_c00263{bottom:253.470000px;}
.y27_c00263{bottom:268.920000px;}
.y3a_c00263{bottom:271.620000px;}
.y26_c00263{bottom:287.520000px;}
.y39_c00263{bottom:289.620000px;}
.y25_c00263{bottom:305.370000px;}
.y38_c00263{bottom:307.770000px;}
.y24_c00263{bottom:323.670000px;}
.y37_c00263{bottom:325.920000px;}
.y23_c00263{bottom:341.220000px;}
.y36_c00263{bottom:343.920000px;}
.y22_c00263{bottom:360.120000px;}
.y35_c00263{bottom:362.370000px;}
.y21_c00263{bottom:378.270000px;}
.y34_c00263{bottom:380.370000px;}
.y20_c00263{bottom:396.270000px;}
.y33_c00263{bottom:398.520000px;}
.y1f_c00263{bottom:414.120000px;}
.y32_c00263{bottom:417.120000px;}
.y1e_c00263{bottom:433.020000px;}
.y31_c00263{bottom:435.420000px;}
.y1d_c00263{bottom:450.570000px;}
.y30_c00263{bottom:453.270000px;}
.y1c_c00263{bottom:469.020000px;}
.y2f_c00263{bottom:471.720000px;}
.y1b_c00263{bottom:487.620000px;}
.y2e_c00263{bottom:489.720000px;}
.y1a_c00263{bottom:505.620000px;}
.y2d_c00263{bottom:507.870000px;}
.y19_c00263{bottom:524.070000px;}
.y2c_c00263{bottom:526.470000px;}
.y18_c00263{bottom:541.620000px;}
.y2b_c00263{bottom:544.020000px;}
.y17_c00263{bottom:560.520000px;}
.y2a_c00263{bottom:562.170000px;}
.y16_c00263{bottom:579.720000px;}
.y15_c00263{bottom:597.270000px;}
.yf_c00263{bottom:614.970000px;}
.y14_c00263{bottom:616.170000px;}
.ye_c00263{bottom:632.520000px;}
.y13_c00263{bottom:634.470000px;}
.yd_c00263{bottom:650.370000px;}
.y12_c00263{bottom:652.620000px;}
.yc_c00263{bottom:668.970000px;}
.y11_c00263{bottom:671.970000px;}
.yb_c00263{bottom:687.120000px;}
.y10_c00263{bottom:688.770000px;}
.ya_c00263{bottom:706.620000px;}
.y9_c00263{bottom:724.920000px;}
.y2_c00263{bottom:738.420000px;}
.y8_c00263{bottom:742.470000px;}
.y1_c00263{bottom:757.320000px;}
.y7_c00263{bottom:761.670000px;}
.y6_c00263{bottom:778.620000px;}
.h7_c00263{height:13.200073px;}
.h8_c00263{height:43.804688px;}
.h3_c00263{height:50.304000px;}
.h4_c00263{height:59.736000px;}
.h2_c00263{height:62.880000px;}
.h5_c00263{height:64.020000px;}
.h6_c00263{height:72.312000px;}
.h1_c00263{height:837.750000px;}
.h0_c00263{height:838.050000px;}
.w2_c00263{width:104.875500px;}
.w0_c00263{width:561.600000px;}
.w1_c00263{width:561.750000px;}
.x0_c00263{left:0.000000px;}
.x3_c00263{left:13.800000px;}
.x2_c00263{left:15.450000px;}
.x1_c00263{left:27.300000px;}
.x13_c00263{left:74.550000px;}
.x12_c00263{left:76.650000px;}
.x11_c00263{left:78.000000px;}
.xd_c00263{left:79.350000px;}
.x6_c00263{left:81.000000px;}
.xc_c00263{left:83.100000px;}
.xb_c00263{left:84.150000px;}
.x7_c00263{left:86.100000px;}
.x4_c00263{left:87.450000px;}
.x15_c00263{left:232.614258px;}
.x5_c00263{left:264.600000px;}
.xf_c00263{left:296.700000px;}
.x10_c00263{left:297.750000px;}
.xe_c00263{left:299.100000px;}
.x9_c00263{left:300.150000px;}
.xa_c00263{left:301.800000px;}
.x8_c00263{left:303.450000px;}
.x14_c00263{left:456.750000px;}
@media print{
.v0_c00263{vertical-align:0.000000pt;}
.lsc_c00263{letter-spacing:0.000000pt;}
.ls7_c00263{letter-spacing:2.133333pt;}
.ls4_c00263{letter-spacing:2.528000pt;}
.ls1_c00263{letter-spacing:2.666667pt;}
.lsb_c00263{letter-spacing:4.266667pt;}
.lsd_c00263{letter-spacing:5.333333pt;}
.lsa_c00263{letter-spacing:5.973333pt;}
.ls2_c00263{letter-spacing:7.101333pt;}
.ls3_c00263{letter-spacing:7.328000pt;}
.ls8_c00263{letter-spacing:14.346667pt;}
.ls9_c00263{letter-spacing:19.680000pt;}
.ls6_c00263{letter-spacing:22.400000pt;}
.ls0_c00263{letter-spacing:71.152000pt;}
.ls5_c00263{letter-spacing:71.685333pt;}
.ws7_c00263{word-spacing:-21.120000pt;}
.ws8_c00263{word-spacing:-19.992000pt;}
.ws2_c00263{word-spacing:-17.381333pt;}
.ws5_c00263{word-spacing:-16.053333pt;}
.ws6_c00263{word-spacing:-16.000000pt;}
.ws1_c00263{word-spacing:-15.413333pt;}
.ws3_c00263{word-spacing:-13.592000pt;}
.ws0_c00263{word-spacing:-12.586667pt;}
.ws4_c00263{word-spacing:-11.957333pt;}
.ws9_c00263{word-spacing:0.000000pt;}
._12_c00263{margin-left:-17.920000pt;}
._24_c00263{margin-left:-16.410667pt;}
._2d_c00263{margin-left:-14.234667pt;}
._c_c00263{margin-left:-11.194667pt;}
._27_c00263{margin-left:-9.634667pt;}
._23_c00263{margin-left:-8.674667pt;}
._5_c00263{margin-left:-7.082667pt;}
._21_c00263{margin-left:-6.109333pt;}
._1a_c00263{margin-left:-4.792000pt;}
._6_c00263{margin-left:-3.669333pt;}
._3_c00263{margin-left:-2.186667pt;}
._4_c00263{margin-left:-1.280000pt;}
._7_c00263{width:1.610667pt;}
._d_c00263{width:2.576000pt;}
._1_c00263{width:3.466667pt;}
._2_c00263{width:4.426667pt;}
._10_c00263{width:5.429333pt;}
._1e_c00263{width:6.504000pt;}
._0_c00263{width:7.733333pt;}
._19_c00263{width:9.544000pt;}
._26_c00263{width:10.466667pt;}
._9_c00263{width:11.861333pt;}
._8_c00263{width:13.690667pt;}
._11_c00263{width:14.829333pt;}
._a_c00263{width:15.765333pt;}
._20_c00263{width:17.405333pt;}
._14_c00263{width:18.453333pt;}
._f_c00263{width:19.466667pt;}
._1f_c00263{width:21.653333pt;}
._1d_c00263{width:23.520000pt;}
._15_c00263{width:24.469333pt;}
._28_c00263{width:25.648000pt;}
._1c_c00263{width:26.581333pt;}
._2a_c00263{width:28.061333pt;}
._17_c00263{width:29.322667pt;}
._16_c00263{width:31.253333pt;}
._18_c00263{width:32.480000pt;}
._29_c00263{width:42.186667pt;}
._1b_c00263{width:44.341333pt;}
._13_c00263{width:64.160000pt;}
._25_c00263{width:67.946667pt;}
._2c_c00263{width:75.408000pt;}
._2f_c00263{width:76.850667pt;}
._2e_c00263{width:78.274667pt;}
._22_c00263{width:95.520000pt;}
._b_c00263{width:103.840000pt;}
._32_c00263{width:175.898667pt;}
._2b_c00263{width:322.992000pt;}
._30_c00263{width:399.882667pt;}
._31_c00263{width:403.229333pt;}
._e_c00263{width:532.640000pt;}
.fs1_c00263{font-size:42.666667pt;}
.fs3_c00263{font-size:45.333333pt;}
.fs2_c00263{font-size:48.000000pt;}
.fs4_c00263{font-size:50.666667pt;}
.fs0_c00263{font-size:53.333333pt;}
.fs5_c00263{font-size:61.333333pt;}
.y0_c00263{bottom:0.000000pt;}
.y49_c00263{bottom:2.760000pt;}
.y48_c00263{bottom:6.425217pt;}
.y47_c00263{bottom:30.640000pt;}
.y46_c00263{bottom:46.106667pt;}
.y45_c00263{bottom:62.640000pt;}
.y44_c00263{bottom:77.706667pt;}
.y43_c00263{bottom:95.306667pt;}
.y5_c00263{bottom:108.506667pt;}
.y42_c00263{bottom:111.840000pt;}
.y4_c00263{bottom:125.306667pt;}
.y41_c00263{bottom:127.440000pt;}
.y3_c00263{bottom:141.040000pt;}
.y40_c00263{bottom:143.706667pt;}
.y3f_c00263{bottom:159.840000pt;}
.y3e_c00263{bottom:176.106667pt;}
.y3d_c00263{bottom:191.706667pt;}
.y29_c00263{bottom:206.906667pt;}
.y3c_c00263{bottom:209.040000pt;}
.y28_c00263{bottom:223.173333pt;}
.y3b_c00263{bottom:225.306667pt;}
.y27_c00263{bottom:239.040000pt;}
.y3a_c00263{bottom:241.440000pt;}
.y26_c00263{bottom:255.573333pt;}
.y39_c00263{bottom:257.440000pt;}
.y25_c00263{bottom:271.440000pt;}
.y38_c00263{bottom:273.573333pt;}
.y24_c00263{bottom:287.706667pt;}
.y37_c00263{bottom:289.706667pt;}
.y23_c00263{bottom:303.306667pt;}
.y36_c00263{bottom:305.706667pt;}
.y22_c00263{bottom:320.106667pt;}
.y35_c00263{bottom:322.106667pt;}
.y21_c00263{bottom:336.240000pt;}
.y34_c00263{bottom:338.106667pt;}
.y20_c00263{bottom:352.240000pt;}
.y33_c00263{bottom:354.240000pt;}
.y1f_c00263{bottom:368.106667pt;}
.y32_c00263{bottom:370.773333pt;}
.y1e_c00263{bottom:384.906667pt;}
.y31_c00263{bottom:387.040000pt;}
.y1d_c00263{bottom:400.506667pt;}
.y30_c00263{bottom:402.906667pt;}
.y1c_c00263{bottom:416.906667pt;}
.y2f_c00263{bottom:419.306667pt;}
.y1b_c00263{bottom:433.440000pt;}
.y2e_c00263{bottom:435.306667pt;}
.y1a_c00263{bottom:449.440000pt;}
.y2d_c00263{bottom:451.440000pt;}
.y19_c00263{bottom:465.840000pt;}
.y2c_c00263{bottom:467.973333pt;}
.y18_c00263{bottom:481.440000pt;}
.y2b_c00263{bottom:483.573333pt;}
.y17_c00263{bottom:498.240000pt;}
.y2a_c00263{bottom:499.706667pt;}
.y16_c00263{bottom:515.306667pt;}
.y15_c00263{bottom:530.906667pt;}
.yf_c00263{bottom:546.640000pt;}
.y14_c00263{bottom:547.706667pt;}
.ye_c00263{bottom:562.240000pt;}
.y13_c00263{bottom:563.973333pt;}
.yd_c00263{bottom:578.106667pt;}
.y12_c00263{bottom:580.106667pt;}
.yc_c00263{bottom:594.640000pt;}
.y11_c00263{bottom:597.306667pt;}
.yb_c00263{bottom:610.773333pt;}
.y10_c00263{bottom:612.240000pt;}
.ya_c00263{bottom:628.106667pt;}
.y9_c00263{bottom:644.373333pt;}
.y2_c00263{bottom:656.373333pt;}
.y8_c00263{bottom:659.973333pt;}
.y1_c00263{bottom:673.173333pt;}
.y7_c00263{bottom:677.040000pt;}
.y6_c00263{bottom:692.106667pt;}
.h7_c00263{height:11.733399pt;}
.h8_c00263{height:38.937500pt;}
.h3_c00263{height:44.714667pt;}
.h4_c00263{height:53.098667pt;}
.h2_c00263{height:55.893333pt;}
.h5_c00263{height:56.906667pt;}
.h6_c00263{height:64.277333pt;}
.h1_c00263{height:744.666667pt;}
.h0_c00263{height:744.933333pt;}
.w2_c00263{width:93.222667pt;}
.w0_c00263{width:499.200000pt;}
.w1_c00263{width:499.333333pt;}
.x0_c00263{left:0.000000pt;}
.x3_c00263{left:12.266667pt;}
.x2_c00263{left:13.733333pt;}
.x1_c00263{left:24.266667pt;}
.x13_c00263{left:66.266667pt;}
.x12_c00263{left:68.133333pt;}
.x11_c00263{left:69.333333pt;}
.xd_c00263{left:70.533333pt;}
.x6_c00263{left:72.000000pt;}
.xc_c00263{left:73.866667pt;}
.xb_c00263{left:74.800000pt;}
.x7_c00263{left:76.533333pt;}
.x4_c00263{left:77.733333pt;}
.x15_c00263{left:206.768229pt;}
.x5_c00263{left:235.200000pt;}
.xf_c00263{left:263.733333pt;}
.x10_c00263{left:264.666667pt;}
.xe_c00263{left:265.866667pt;}
.x9_c00263{left:266.800000pt;}
.xa_c00263{left:268.266667pt;}
.x8_c00263{left:269.733333pt;}
.x14_c00263{left:406.000000pt;}
}





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

.ir_c00264:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00264{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00264;src:url('chunks/assets/font_d03ae5e1addbc3399e5cedbd.woff2')format("woff");}.ff1_c00264{font-family:ff1_c00264;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00264;src:url('chunks/assets/font_421629ba80b16e59885e4830.woff2')format("woff");}.ff2_c00264{font-family:ff2_c00264;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00264;src:url('chunks/assets/font_7c7b114d6d8510036cb24ad0.woff2')format("woff");}.ff3_c00264{font-family:ff3_c00264;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00264;src:url('chunks/assets/font_67b2d08750fc44f5c52fd915.woff2')format("woff");}.ff4_c00264{font-family:ff4_c00264;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00264;src:url('chunks/assets/font_8721cbb0632690ddf6d7d515.woff2')format("woff");}.ff5_c00264{font-family:ff5_c00264;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00264;src:url('chunks/assets/font_88a8571285bf1385a11d8229.woff2')format("woff");}.ff6_c00264{font-family:ff6_c00264;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00264;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff7_c00264{font-family:ff7_c00264;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00264{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00264{vertical-align:0.000000px;}
.ls5_c00264{letter-spacing:-3.000000px;}
.ls4_c00264{letter-spacing:0.000000px;}
.ls3_c00264{letter-spacing:1.605000px;}
.ls1_c00264{letter-spacing:3.000000px;}
.ls2_c00264{letter-spacing:4.080000px;}
.ls0_c00264{letter-spacing:6.000000px;}
.sc__c00264{text-shadow:none;}
.sc0_c00264{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00264{-webkit-text-stroke:0px transparent;}
.sc0_c00264{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00264{word-spacing:-35.295000px;}
.ws2_c00264{word-spacing:-20.340000px;}
.ws1_c00264{word-spacing:-14.160000px;}
.ws3_c00264{word-spacing:0.000000px;}
._2d_c00264{margin-left:-22.800000px;}
._26_c00264{margin-left:-14.520000px;}
._19_c00264{margin-left:-13.260000px;}
._1b_c00264{margin-left:-9.555000px;}
._9_c00264{margin-left:-7.695000px;}
._36_c00264{margin-left:-6.525000px;}
._a_c00264{margin-left:-4.860000px;}
._e_c00264{margin-left:-3.420000px;}
._14_c00264{margin-left:-2.400000px;}
._1d_c00264{margin-left:-1.260000px;}
._b_c00264{width:1.800000px;}
._f_c00264{width:2.820000px;}
._c_c00264{width:4.620000px;}
._d_c00264{width:6.120000px;}
._15_c00264{width:7.200000px;}
._7_c00264{width:8.340000px;}
._1e_c00264{width:9.420000px;}
._1_c00264{width:11.040000px;}
._11_c00264{width:12.780000px;}
._0_c00264{width:14.040000px;}
._6_c00264{width:15.600000px;}
._3_c00264{width:19.560000px;}
._1c_c00264{width:20.580000px;}
._4_c00264{width:21.660000px;}
._20_c00264{width:23.100000px;}
._18_c00264{width:24.360000px;}
._5_c00264{width:25.560000px;}
._1a_c00264{width:27.540000px;}
._2f_c00264{width:28.620000px;}
._23_c00264{width:30.120000px;}
._29_c00264{width:32.280000px;}
._28_c00264{width:33.480000px;}
._24_c00264{width:36.480000px;}
._22_c00264{width:39.660000px;}
._1f_c00264{width:43.140000px;}
._31_c00264{width:44.400000px;}
._16_c00264{width:46.080000px;}
._2_c00264{width:47.940000px;}
._17_c00264{width:51.360000px;}
._10_c00264{width:53.100000px;}
._25_c00264{width:57.360000px;}
._34_c00264{width:58.500000px;}
._2c_c00264{width:61.080000px;}
._2b_c00264{width:62.520000px;}
._2a_c00264{width:64.020000px;}
._32_c00264{width:69.000000px;}
._30_c00264{width:72.000000px;}
._27_c00264{width:85.440000px;}
._2e_c00264{width:90.840000px;}
._33_c00264{width:97.200000px;}
._35_c00264{width:105.420000px;}
._37_c00264{width:137.940000px;}
._38_c00264{width:256.200000px;}
._13_c00264{width:319.080000px;}
._21_c00264{width:362.400000px;}
._12_c00264{width:376.500000px;}
._8_c00264{width:434.340000px;}
._39_c00264{width:1634.682000px;}
.fc2_c00264{color:transparent;}
.fc1_c00264{color:rgb(128,128,128);}
.fc0_c00264{color:rgb(0,0,0);}
.fs1_c00264{font-size:45.000000px;}
.fs3_c00264{font-size:48.000000px;}
.fs0_c00264{font-size:60.000000px;}
.fs2_c00264{font-size:78.000000px;}
.y0_c00264{bottom:0.000000px;}
.y2d_c00264{bottom:3.105000px;}
.y2c_c00264{bottom:7.228371px;}
.y2b_c00264{bottom:36.765000px;}
.y2a_c00264{bottom:59.715000px;}
.y29_c00264{bottom:77.415000px;}
.y28_c00264{bottom:96.315000px;}
.y27_c00264{bottom:112.515000px;}
.y26_c00264{bottom:130.065000px;}
.y25_c00264{bottom:148.215000px;}
.y24_c00264{bottom:165.765000px;}
.y23_c00264{bottom:185.265000px;}
.y22_c00264{bottom:203.565000px;}
.y21_c00264{bottom:220.515000px;}
.y20_c00264{bottom:237.615000px;}
.y1f_c00264{bottom:258.165000px;}
.y1e_c00264{bottom:274.365000px;}
.y1d_c00264{bottom:293.265000px;}
.y1c_c00264{bottom:311.565000px;}
.y1b_c00264{bottom:328.515000px;}
.y1a_c00264{bottom:348.315000px;}
.y19_c00264{bottom:365.565000px;}
.y18_c00264{bottom:383.715000px;}
.y17_c00264{bottom:402.765000px;}
.y16_c00264{bottom:419.865000px;}
.y15_c00264{bottom:439.215000px;}
.y14_c00264{bottom:456.765000px;}
.y13_c00264{bottom:473.565000px;}
.y12_c00264{bottom:492.465000px;}
.y11_c00264{bottom:510.015000px;}
.y10_c00264{bottom:528.315000px;}
.yf_c00264{bottom:546.765000px;}
.ye_c00264{bottom:564.765000px;}
.yd_c00264{bottom:581.865000px;}
.yc_c00264{bottom:600.165000px;}
.yb_c00264{bottom:618.315000px;}
.ya_c00264{bottom:635.865000px;}
.y9_c00264{bottom:654.165000px;}
.y8_c00264{bottom:672.315000px;}
.y7_c00264{bottom:689.265000px;}
.y6_c00264{bottom:707.715000px;}
.y5_c00264{bottom:725.715000px;}
.y4_c00264{bottom:743.865000px;}
.y3_c00264{bottom:761.865000px;}
.y2_c00264{bottom:780.015000px;}
.y1_c00264{bottom:802.215000px;}
.h5_c00264{height:13.200074px;}
.h6_c00264{height:43.804688px;}
.h2_c00264{height:62.880000px;}
.h3_c00264{height:64.020000px;}
.h4_c00264{height:81.744000px;}
.h1_c00264{height:836.250000px;}
.h0_c00264{height:836.475000px;}
.w2_c00264{width:104.875500px;}
.w0_c00264{width:586.425000px;}
.w1_c00264{width:586.500000px;}
.x0_c00264{left:0.000000px;}
.x2_c00264{left:15.750000px;}
.x8_c00264{left:18.600000px;}
.x7_c00264{left:19.950000px;}
.x11_c00264{left:28.350000px;}
.x14_c00264{left:35.400000px;}
.xf_c00264{left:54.300000px;}
.x3_c00264{left:78.000000px;}
.x4_c00264{left:79.200000px;}
.x5_c00264{left:80.250000px;}
.x6_c00264{left:81.300000px;}
.xb_c00264{left:83.250000px;}
.xc_c00264{left:84.300000px;}
.xd_c00264{left:85.350000px;}
.x10_c00264{left:86.700000px;}
.xe_c00264{left:87.750000px;}
.x12_c00264{left:88.800000px;}
.xa_c00264{left:90.450000px;}
.x13_c00264{left:143.100000px;}
.x9_c00264{left:199.350000px;}
.x1_c00264{left:201.450000px;}
.x15_c00264{left:245.026749px;}
@media print{
.v0_c00264{vertical-align:0.000000pt;}
.ls5_c00264{letter-spacing:-2.666667pt;}
.ls4_c00264{letter-spacing:0.000000pt;}
.ls3_c00264{letter-spacing:1.426667pt;}
.ls1_c00264{letter-spacing:2.666667pt;}
.ls2_c00264{letter-spacing:3.626667pt;}
.ls0_c00264{letter-spacing:5.333333pt;}
.ws0_c00264{word-spacing:-31.373333pt;}
.ws2_c00264{word-spacing:-18.080000pt;}
.ws1_c00264{word-spacing:-12.586667pt;}
.ws3_c00264{word-spacing:0.000000pt;}
._2d_c00264{margin-left:-20.266667pt;}
._26_c00264{margin-left:-12.906667pt;}
._19_c00264{margin-left:-11.786667pt;}
._1b_c00264{margin-left:-8.493333pt;}
._9_c00264{margin-left:-6.840000pt;}
._36_c00264{margin-left:-5.800000pt;}
._a_c00264{margin-left:-4.320000pt;}
._e_c00264{margin-left:-3.040000pt;}
._14_c00264{margin-left:-2.133333pt;}
._1d_c00264{margin-left:-1.120000pt;}
._b_c00264{width:1.600000pt;}
._f_c00264{width:2.506667pt;}
._c_c00264{width:4.106667pt;}
._d_c00264{width:5.440000pt;}
._15_c00264{width:6.400000pt;}
._7_c00264{width:7.413333pt;}
._1e_c00264{width:8.373333pt;}
._1_c00264{width:9.813333pt;}
._11_c00264{width:11.360000pt;}
._0_c00264{width:12.480000pt;}
._6_c00264{width:13.866667pt;}
._3_c00264{width:17.386667pt;}
._1c_c00264{width:18.293333pt;}
._4_c00264{width:19.253333pt;}
._20_c00264{width:20.533333pt;}
._18_c00264{width:21.653333pt;}
._5_c00264{width:22.720000pt;}
._1a_c00264{width:24.480000pt;}
._2f_c00264{width:25.440000pt;}
._23_c00264{width:26.773333pt;}
._29_c00264{width:28.693333pt;}
._28_c00264{width:29.760000pt;}
._24_c00264{width:32.426667pt;}
._22_c00264{width:35.253333pt;}
._1f_c00264{width:38.346667pt;}
._31_c00264{width:39.466667pt;}
._16_c00264{width:40.960000pt;}
._2_c00264{width:42.613333pt;}
._17_c00264{width:45.653333pt;}
._10_c00264{width:47.200000pt;}
._25_c00264{width:50.986667pt;}
._34_c00264{width:52.000000pt;}
._2c_c00264{width:54.293333pt;}
._2b_c00264{width:55.573333pt;}
._2a_c00264{width:56.906667pt;}
._32_c00264{width:61.333333pt;}
._30_c00264{width:64.000000pt;}
._27_c00264{width:75.946667pt;}
._2e_c00264{width:80.746667pt;}
._33_c00264{width:86.400000pt;}
._35_c00264{width:93.706667pt;}
._37_c00264{width:122.613333pt;}
._38_c00264{width:227.733333pt;}
._13_c00264{width:283.626667pt;}
._21_c00264{width:322.133333pt;}
._12_c00264{width:334.666667pt;}
._8_c00264{width:386.080000pt;}
._39_c00264{width:1453.050667pt;}
.fs1_c00264{font-size:40.000000pt;}
.fs3_c00264{font-size:42.666667pt;}
.fs0_c00264{font-size:53.333333pt;}
.fs2_c00264{font-size:69.333333pt;}
.y0_c00264{bottom:0.000000pt;}
.y2d_c00264{bottom:2.760000pt;}
.y2c_c00264{bottom:6.425219pt;}
.y2b_c00264{bottom:32.680000pt;}
.y2a_c00264{bottom:53.080000pt;}
.y29_c00264{bottom:68.813333pt;}
.y28_c00264{bottom:85.613333pt;}
.y27_c00264{bottom:100.013333pt;}
.y26_c00264{bottom:115.613333pt;}
.y25_c00264{bottom:131.746667pt;}
.y24_c00264{bottom:147.346667pt;}
.y23_c00264{bottom:164.680000pt;}
.y22_c00264{bottom:180.946667pt;}
.y21_c00264{bottom:196.013333pt;}
.y20_c00264{bottom:211.213333pt;}
.y1f_c00264{bottom:229.480000pt;}
.y1e_c00264{bottom:243.880000pt;}
.y1d_c00264{bottom:260.680000pt;}
.y1c_c00264{bottom:276.946667pt;}
.y1b_c00264{bottom:292.013333pt;}
.y1a_c00264{bottom:309.613333pt;}
.y19_c00264{bottom:324.946667pt;}
.y18_c00264{bottom:341.080000pt;}
.y17_c00264{bottom:358.013333pt;}
.y16_c00264{bottom:373.213333pt;}
.y15_c00264{bottom:390.413333pt;}
.y14_c00264{bottom:406.013333pt;}
.y13_c00264{bottom:420.946667pt;}
.y12_c00264{bottom:437.746667pt;}
.y11_c00264{bottom:453.346667pt;}
.y10_c00264{bottom:469.613333pt;}
.yf_c00264{bottom:486.013333pt;}
.ye_c00264{bottom:502.013333pt;}
.yd_c00264{bottom:517.213333pt;}
.yc_c00264{bottom:533.480000pt;}
.yb_c00264{bottom:549.613333pt;}
.ya_c00264{bottom:565.213333pt;}
.y9_c00264{bottom:581.480000pt;}
.y8_c00264{bottom:597.613333pt;}
.y7_c00264{bottom:612.680000pt;}
.y6_c00264{bottom:629.080000pt;}
.y5_c00264{bottom:645.080000pt;}
.y4_c00264{bottom:661.213333pt;}
.y3_c00264{bottom:677.213333pt;}
.y2_c00264{bottom:693.346667pt;}
.y1_c00264{bottom:713.080000pt;}
.h5_c00264{height:11.733399pt;}
.h6_c00264{height:38.937500pt;}
.h2_c00264{height:55.893333pt;}
.h3_c00264{height:56.906667pt;}
.h4_c00264{height:72.661333pt;}
.h1_c00264{height:743.333333pt;}
.h0_c00264{height:743.533333pt;}
.w2_c00264{width:93.222667pt;}
.w0_c00264{width:521.266667pt;}
.w1_c00264{width:521.333333pt;}
.x0_c00264{left:0.000000pt;}
.x2_c00264{left:14.000000pt;}
.x8_c00264{left:16.533333pt;}
.x7_c00264{left:17.733333pt;}
.x11_c00264{left:25.200000pt;}
.x14_c00264{left:31.466667pt;}
.xf_c00264{left:48.266667pt;}
.x3_c00264{left:69.333333pt;}
.x4_c00264{left:70.400000pt;}
.x5_c00264{left:71.333333pt;}
.x6_c00264{left:72.266667pt;}
.xb_c00264{left:74.000000pt;}
.xc_c00264{left:74.933333pt;}
.xd_c00264{left:75.866667pt;}
.x10_c00264{left:77.066667pt;}
.xe_c00264{left:78.000000pt;}
.x12_c00264{left:78.933333pt;}
.xa_c00264{left:80.400000pt;}
.x13_c00264{left:127.200000pt;}
.x9_c00264{left:177.200000pt;}
.x1_c00264{left:179.066667pt;}
.x15_c00264{left:217.801554pt;}
}





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

.ir_c00265:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00265{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00265;src:url('chunks/assets/font_de0259d3cf0a3ebc5e7f6eb6.woff2')format("woff");}.ff1_c00265{font-family:ff1_c00265;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00265;src:url('chunks/assets/font_e9ac413e9ca63166aee529ea.woff2')format("woff");}.ff2_c00265{font-family:ff2_c00265;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00265;src:url('chunks/assets/font_4206b1805fb0255ac9177873.woff2')format("woff");}.ff3_c00265{font-family:ff3_c00265;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00265;src:url('chunks/assets/font_cea4e53003e8e43c6ac00381.woff2')format("woff");}.ff4_c00265{font-family:ff4_c00265;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00265;src:url('chunks/assets/font_55eb9db8683fc23c726f566e.woff2')format("woff");}.ff5_c00265{font-family:ff5_c00265;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00265;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff6_c00265{font-family:ff6_c00265;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00265{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00265{vertical-align:0.000000px;}
.ls4_c00265{letter-spacing:0.000000px;}
.ls1_c00265{letter-spacing:2.805000px;}
.ls3_c00265{letter-spacing:3.000000px;}
.ls0_c00265{letter-spacing:4.500000px;}
.ls2_c00265{letter-spacing:12.000000px;}
.sc__c00265{text-shadow:none;}
.sc0_c00265{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00265{-webkit-text-stroke:0px transparent;}
.sc0_c00265{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00265{word-spacing:-40.575000px;}
.ws3_c00265{word-spacing:-18.000000px;}
.ws1_c00265{word-spacing:-15.000000px;}
.ws2_c00265{word-spacing:-14.160000px;}
.ws4_c00265{word-spacing:0.000000px;}
._18_c00265{margin-left:-19.200000px;}
._1f_c00265{margin-left:-10.920000px;}
._15_c00265{margin-left:-9.780000px;}
._1a_c00265{margin-left:-8.283000px;}
._11_c00265{margin-left:-5.778000px;}
._13_c00265{margin-left:-4.479000px;}
._1d_c00265{margin-left:-2.904000px;}
._12_c00265{margin-left:-1.899000px;}
._0_c00265{width:1.278000px;}
._1_c00265{width:2.343000px;}
._10_c00265{width:3.408000px;}
._f_c00265{width:4.707000px;}
._8_c00265{width:6.540000px;}
._14_c00265{width:7.620000px;}
._6_c00265{width:8.940000px;}
._3_c00265{width:10.140000px;}
._1c_c00265{width:11.178000px;}
._4_c00265{width:12.360000px;}
._e_c00265{width:14.598000px;}
._d_c00265{width:16.440000px;}
._b_c00265{width:19.662000px;}
._c_c00265{width:21.720000px;}
._a_c00265{width:24.060000px;}
._7_c00265{width:26.898000px;}
._2_c00265{width:28.542000px;}
._1b_c00265{width:36.930000px;}
._1e_c00265{width:38.739000px;}
._9_c00265{width:43.440000px;}
._5_c00265{width:56.640000px;}
._16_c00265{width:210.921000px;}
._17_c00265{width:217.485000px;}
._19_c00265{width:513.240000px;}
.fc2_c00265{color:transparent;}
.fc1_c00265{color:rgb(128,128,128);}
.fc0_c00265{color:rgb(0,0,0);}
.fs3_c00265{font-size:45.000000px;}
.fs4_c00265{font-size:48.000000px;}
.fs1_c00265{font-size:60.000000px;}
.fs2_c00265{font-size:75.000000px;}
.fs0_c00265{font-size:213.000000px;}
.y0_c00265{bottom:0.000000px;}
.y27_c00265{bottom:3.105000px;}
.y26_c00265{bottom:7.228363px;}
.y25_c00265{bottom:62.400000px;}
.y24_c00265{bottom:81.000000px;}
.y23_c00265{bottom:98.250000px;}
.y22_c00265{bottom:116.850000px;}
.y21_c00265{bottom:134.400000px;}
.y20_c00265{bottom:152.850000px;}
.y1f_c00265{bottom:170.550000px;}
.y1e_c00265{bottom:188.700000px;}
.y1d_c00265{bottom:206.850000px;}
.y1c_c00265{bottom:224.550000px;}
.y1b_c00265{bottom:243.000000px;}
.y1a_c00265{bottom:261.000000px;}
.y19_c00265{bottom:278.400000px;}
.y18_c00265{bottom:297.000000px;}
.y17_c00265{bottom:314.850000px;}
.y16_c00265{bottom:332.850000px;}
.y15_c00265{bottom:351.300000px;}
.y14_c00265{bottom:369.000000px;}
.y13_c00265{bottom:387.150000px;}
.y12_c00265{bottom:405.300000px;}
.y11_c00265{bottom:423.000000px;}
.y10_c00265{bottom:441.450000px;}
.yf_c00265{bottom:459.300000px;}
.ye_c00265{bottom:477.000000px;}
.yd_c00265{bottom:494.400000px;}
.yc_c00265{bottom:513.600000px;}
.yb_c00265{bottom:531.600000px;}
.ya_c00265{bottom:549.150000px;}
.y9_c00265{bottom:567.600000px;}
.y8_c00265{bottom:604.350000px;}
.y7_c00265{bottom:622.350000px;}
.y6_c00265{bottom:642.900000px;}
.y5_c00265{bottom:657.750000px;}
.y4_c00265{bottom:676.350000px;}
.y3_c00265{bottom:694.650000px;}
.y2_c00265{bottom:712.200000px;}
.y1_c00265{bottom:744.900000px;}
.h5_c00265{height:13.200074px;}
.h6_c00265{height:43.804688px;}
.h2_c00265{height:62.880000px;}
.h4_c00265{height:64.020000px;}
.h3_c00265{height:81.300000px;}
.h1_c00265{height:223.224000px;}
.h0_c00265{height:843.750000px;}
.w2_c00265{width:104.875500px;}
.w1_c00265{width:565.500000px;}
.w0_c00265{width:565.650000px;}
.x0_c00265{left:0.000000px;}
.x11_c00265{left:93.900000px;}
.x10_c00265{left:94.950000px;}
.xf_c00265{left:96.900000px;}
.xe_c00265{left:98.550000px;}
.xd_c00265{left:99.900000px;}
.x6_c00265{left:102.900000px;}
.x2_c00265{left:107.100000px;}
.x7_c00265{left:118.500000px;}
.x3_c00265{left:133.950000px;}
.x1_c00265{left:146.400000px;}
.x4_c00265{left:178.200000px;}
.x8_c00265{left:205.200000px;}
.xa_c00265{left:216.000000px;}
.xc_c00265{left:221.100000px;}
.xb_c00265{left:225.450000px;}
.x9_c00265{left:227.100000px;}
.x12_c00265{left:234.639267px;}
.x5_c00265{left:252.000000px;}
@media print{
.v0_c00265{vertical-align:0.000000pt;}
.ls4_c00265{letter-spacing:0.000000pt;}
.ls1_c00265{letter-spacing:2.493333pt;}
.ls3_c00265{letter-spacing:2.666667pt;}
.ls0_c00265{letter-spacing:4.000000pt;}
.ls2_c00265{letter-spacing:10.666667pt;}
.ws0_c00265{word-spacing:-36.066667pt;}
.ws3_c00265{word-spacing:-16.000000pt;}
.ws1_c00265{word-spacing:-13.333333pt;}
.ws2_c00265{word-spacing:-12.586667pt;}
.ws4_c00265{word-spacing:0.000000pt;}
._18_c00265{margin-left:-17.066667pt;}
._1f_c00265{margin-left:-9.706667pt;}
._15_c00265{margin-left:-8.693333pt;}
._1a_c00265{margin-left:-7.362667pt;}
._11_c00265{margin-left:-5.136000pt;}
._13_c00265{margin-left:-3.981333pt;}
._1d_c00265{margin-left:-2.581333pt;}
._12_c00265{margin-left:-1.688000pt;}
._0_c00265{width:1.136000pt;}
._1_c00265{width:2.082667pt;}
._10_c00265{width:3.029333pt;}
._f_c00265{width:4.184000pt;}
._8_c00265{width:5.813333pt;}
._14_c00265{width:6.773333pt;}
._6_c00265{width:7.946667pt;}
._3_c00265{width:9.013333pt;}
._1c_c00265{width:9.936000pt;}
._4_c00265{width:10.986667pt;}
._e_c00265{width:12.976000pt;}
._d_c00265{width:14.613333pt;}
._b_c00265{width:17.477333pt;}
._c_c00265{width:19.306667pt;}
._a_c00265{width:21.386667pt;}
._7_c00265{width:23.909333pt;}
._2_c00265{width:25.370667pt;}
._1b_c00265{width:32.826667pt;}
._1e_c00265{width:34.434667pt;}
._9_c00265{width:38.613333pt;}
._5_c00265{width:50.346667pt;}
._16_c00265{width:187.485333pt;}
._17_c00265{width:193.320000pt;}
._19_c00265{width:456.213333pt;}
.fs3_c00265{font-size:40.000000pt;}
.fs4_c00265{font-size:42.666667pt;}
.fs1_c00265{font-size:53.333333pt;}
.fs2_c00265{font-size:66.666667pt;}
.fs0_c00265{font-size:189.333333pt;}
.y0_c00265{bottom:0.000000pt;}
.y27_c00265{bottom:2.760000pt;}
.y26_c00265{bottom:6.425212pt;}
.y25_c00265{bottom:55.466667pt;}
.y24_c00265{bottom:72.000000pt;}
.y23_c00265{bottom:87.333333pt;}
.y22_c00265{bottom:103.866667pt;}
.y21_c00265{bottom:119.466667pt;}
.y20_c00265{bottom:135.866667pt;}
.y1f_c00265{bottom:151.600000pt;}
.y1e_c00265{bottom:167.733333pt;}
.y1d_c00265{bottom:183.866667pt;}
.y1c_c00265{bottom:199.600000pt;}
.y1b_c00265{bottom:216.000000pt;}
.y1a_c00265{bottom:232.000000pt;}
.y19_c00265{bottom:247.466667pt;}
.y18_c00265{bottom:264.000000pt;}
.y17_c00265{bottom:279.866667pt;}
.y16_c00265{bottom:295.866667pt;}
.y15_c00265{bottom:312.266667pt;}
.y14_c00265{bottom:328.000000pt;}
.y13_c00265{bottom:344.133333pt;}
.y12_c00265{bottom:360.266667pt;}
.y11_c00265{bottom:376.000000pt;}
.y10_c00265{bottom:392.400000pt;}
.yf_c00265{bottom:408.266667pt;}
.ye_c00265{bottom:424.000000pt;}
.yd_c00265{bottom:439.466667pt;}
.yc_c00265{bottom:456.533333pt;}
.yb_c00265{bottom:472.533333pt;}
.ya_c00265{bottom:488.133333pt;}
.y9_c00265{bottom:504.533333pt;}
.y8_c00265{bottom:537.200000pt;}
.y7_c00265{bottom:553.200000pt;}
.y6_c00265{bottom:571.466667pt;}
.y5_c00265{bottom:584.666667pt;}
.y4_c00265{bottom:601.200000pt;}
.y3_c00265{bottom:617.466667pt;}
.y2_c00265{bottom:633.066667pt;}
.y1_c00265{bottom:662.133333pt;}
.h5_c00265{height:11.733399pt;}
.h6_c00265{height:38.937500pt;}
.h2_c00265{height:55.893333pt;}
.h4_c00265{height:56.906667pt;}
.h3_c00265{height:72.266667pt;}
.h1_c00265{height:198.421333pt;}
.h0_c00265{height:750.000000pt;}
.w2_c00265{width:93.222667pt;}
.w1_c00265{width:502.666667pt;}
.w0_c00265{width:502.800000pt;}
.x0_c00265{left:0.000000pt;}
.x11_c00265{left:83.466667pt;}
.x10_c00265{left:84.400000pt;}
.xf_c00265{left:86.133333pt;}
.xe_c00265{left:87.600000pt;}
.xd_c00265{left:88.800000pt;}
.x6_c00265{left:91.466667pt;}
.x2_c00265{left:95.200000pt;}
.x7_c00265{left:105.333333pt;}
.x3_c00265{left:119.066667pt;}
.x1_c00265{left:130.133333pt;}
.x4_c00265{left:158.400000pt;}
.x8_c00265{left:182.400000pt;}
.xa_c00265{left:192.000000pt;}
.xc_c00265{left:196.533333pt;}
.xb_c00265{left:200.400000pt;}
.x9_c00265{left:201.866667pt;}
.x12_c00265{left:208.568237pt;}
.x5_c00265{left:224.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;}
@font-face{font-family:ff1_c00266;src:url('chunks/assets/font_b88113b3e43e012ef1cb4014.woff2')format("woff");}.ff1_c00266{font-family:ff1_c00266;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00266;src:url('chunks/assets/font_e2e550a44f1f2d089049c211.woff2')format("woff");}.ff2_c00266{font-family:ff2_c00266;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00266;src:url('chunks/assets/font_ee0293c3fafe6ed31bca0aac.woff2')format("woff");}.ff3_c00266{font-family:ff3_c00266;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00266;src:url('chunks/assets/font_56b0f8d228ea537d5f3db32f.woff2')format("woff");}.ff4_c00266{font-family:ff4_c00266;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00266;src:url('chunks/assets/font_88c69a2162c82af05577941a.woff2')format("woff");}.ff5_c00266{font-family:ff5_c00266;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00266;src:url('chunks/assets/font_3e5c42ef6c7003de56b81944.woff2')format("woff");}.ff6_c00266{font-family:ff6_c00266;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00266;src:url('chunks/assets/font_0c8e112f366a560d31c8ca38.woff2')format("woff");}.ff7_c00266{font-family:ff7_c00266;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00266;src:url('chunks/assets/font_ca43cb924eda17bee88da94c.woff2')format("woff");}.ff8_c00266{font-family:ff8_c00266;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00266;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff9_c00266{font-family:ff9_c00266;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00266{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00266{vertical-align:0.000000px;}
.ls9_c00266{letter-spacing:0.000000px;}
.ls0_c00266{letter-spacing:0.405000px;}
.ls3_c00266{letter-spacing:3.000000px;}
.ls1_c00266{letter-spacing:6.000000px;}
.ls8_c00266{letter-spacing:9.000000px;}
.ls7_c00266{letter-spacing:12.000000px;}
.ls6_c00266{letter-spacing:19.140000px;}
.ls5_c00266{letter-spacing:25.140000px;}
.ls2_c00266{letter-spacing:28.650000px;}
.ls4_c00266{letter-spacing:44.340000px;}
.sc__c00266{text-shadow:none;}
.sc0_c00266{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00266{-webkit-text-stroke:0px transparent;}
.sc0_c00266{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00266{word-spacing:-35.295000px;}
.ws0_c00266{word-spacing:-24.060000px;}
.ws2_c00266{word-spacing:-18.060000px;}
.ws1_c00266{word-spacing:-14.160000px;}
.ws4_c00266{word-spacing:0.000000px;}
._20_c00266{margin-left:-20.058000px;}
._1a_c00266{margin-left:-11.976000px;}
._18_c00266{margin-left:-9.834000px;}
._14_c00266{margin-left:-7.878000px;}
._12_c00266{margin-left:-6.048000px;}
._d_c00266{margin-left:-4.488000px;}
._8_c00266{margin-left:-3.036000px;}
._6_c00266{margin-left:-1.980000px;}
._11_c00266{width:1.110000px;}
._7_c00266{width:2.574000px;}
._e_c00266{width:3.762000px;}
._b_c00266{width:5.478000px;}
._a_c00266{width:6.600000px;}
._1e_c00266{width:7.758000px;}
._9_c00266{width:8.778000px;}
._13_c00266{width:10.560000px;}
._17_c00266{width:11.928000px;}
._f_c00266{width:13.002000px;}
._19_c00266{width:14.604000px;}
._15_c00266{width:15.780000px;}
._21_c00266{width:17.088000px;}
._10_c00266{width:19.008000px;}
._2_c00266{width:20.976000px;}
._1c_c00266{width:22.320000px;}
._16_c00266{width:24.798000px;}
._4_c00266{width:25.824000px;}
._3_c00266{width:27.936000px;}
._1_c00266{width:30.360000px;}
._0_c00266{width:35.424000px;}
._1f_c00266{width:142.206000px;}
._1d_c00266{width:154.908000px;}
._22_c00266{width:163.434000px;}
._23_c00266{width:189.918000px;}
._1b_c00266{width:207.228000px;}
._c_c00266{width:219.912000px;}
._5_c00266{width:429.864000px;}
.fc2_c00266{color:transparent;}
.fc1_c00266{color:rgb(128,128,128);}
.fc0_c00266{color:rgb(0,0,0);}
.fs0_c00266{font-size:24.000000px;}
.fs3_c00266{font-size:45.000000px;}
.fs6_c00266{font-size:48.000000px;}
.fs1_c00266{font-size:60.000000px;}
.fs4_c00266{font-size:63.000000px;}
.fs2_c00266{font-size:66.000000px;}
.fs5_c00266{font-size:213.000000px;}
.y0_c00266{bottom:0.000000px;}
.y46_c00266{bottom:3.105000px;}
.y45_c00266{bottom:7.228357px;}
.y44_c00266{bottom:34.530000px;}
.y43_c00266{bottom:53.730000px;}
.y2a_c00266{bottom:56.130000px;}
.y42_c00266{bottom:71.580000px;}
.y29_c00266{bottom:75.930000px;}
.y41_c00266{bottom:89.430000px;}
.y28_c00266{bottom:94.530000px;}
.y40_c00266{bottom:108.630000px;}
.y27_c00266{bottom:112.380000px;}
.y3f_c00266{bottom:126.330000px;}
.y26_c00266{bottom:130.380000px;}
.y3e_c00266{bottom:143.430000px;}
.y25_c00266{bottom:149.130000px;}
.y3d_c00266{bottom:163.380000px;}
.y24_c00266{bottom:168.030000px;}
.y3c_c00266{bottom:179.880000px;}
.y23_c00266{bottom:185.280000px;}
.y3b_c00266{bottom:199.080000px;}
.y22_c00266{bottom:202.530000px;}
.y3a_c00266{bottom:217.680000px;}
.y21_c00266{bottom:221.130000px;}
.y39_c00266{bottom:235.530000px;}
.y20_c00266{bottom:238.680000px;}
.y38_c00266{bottom:253.080000px;}
.y1f_c00266{bottom:256.830000px;}
.y37_c00266{bottom:270.780000px;}
.y1e_c00266{bottom:275.430000px;}
.y36_c00266{bottom:288.930000px;}
.y1d_c00266{bottom:291.930000px;}
.y35_c00266{bottom:306.780000px;}
.y1c_c00266{bottom:310.830000px;}
.y34_c00266{bottom:324.330000px;}
.y1b_c00266{bottom:327.030000px;}
.y33_c00266{bottom:342.630000px;}
.y1a_c00266{bottom:345.630000px;}
.y32_c00266{bottom:360.180000px;}
.y19_c00266{bottom:364.530000px;}
.y31_c00266{bottom:378.330000px;}
.y18_c00266{bottom:382.830000px;}
.y30_c00266{bottom:396.630000px;}
.y17_c00266{bottom:400.380000px;}
.y2f_c00266{bottom:414.780000px;}
.y16_c00266{bottom:418.830000px;}
.y2e_c00266{bottom:432.780000px;}
.y15_c00266{bottom:436.080000px;}
.y2d_c00266{bottom:450.180000px;}
.y14_c00266{bottom:454.230000px;}
.y11_c00266{bottom:455.730000px;}
.y2c_c00266{bottom:467.730000px;}
.y10_c00266{bottom:469.230000px;}
.y13_c00266{bottom:471.780000px;}
.y2b_c00266{bottom:486.630000px;}
.y12_c00266{bottom:489.330000px;}
.yf_c00266{bottom:523.080000px;}
.ye_c00266{bottom:559.530000px;}
.yd_c00266{bottom:577.230000px;}
.yc_c00266{bottom:595.380000px;}
.yb_c00266{bottom:613.230000px;}
.ya_c00266{bottom:631.080000px;}
.y9_c00266{bottom:648.780000px;}
.y8_c00266{bottom:666.930000px;}
.y7_c00266{bottom:684.780000px;}
.y6_c00266{bottom:702.780000px;}
.y5_c00266{bottom:720.630000px;}
.y4_c00266{bottom:738.780000px;}
.y3_c00266{bottom:757.080000px;}
.y2_c00266{bottom:774.930000px;}
.y1_c00266{bottom:794.580000px;}
.h6_c00266{height:13.200074px;}
.h7_c00266{height:43.804688px;}
.h2_c00266{height:62.880000px;}
.h5_c00266{height:67.221000px;}
.h3_c00266{height:71.544000px;}
.h4_c00266{height:223.224000px;}
.h0_c00266{height:841.350000px;}
.h1_c00266{height:841.500000px;}
.w1_c00266{width:104.875500px;}
.w0_c00266{width:590.250000px;}
.x0_c00266{left:0.000000px;}
.xb_c00266{left:17.850000px;}
.xe_c00266{left:19.800000px;}
.xf_c00266{left:20.850000px;}
.x10_c00266{left:21.900000px;}
.xd_c00266{left:31.800000px;}
.x2_c00266{left:70.500000px;}
.x3_c00266{left:71.550000px;}
.x4_c00266{left:73.200000px;}
.x5_c00266{left:74.850000px;}
.x6_c00266{left:76.500000px;}
.xa_c00266{left:77.850000px;}
.xc_c00266{left:78.900000px;}
.x9_c00266{left:101.550000px;}
.x8_c00266{left:115.050000px;}
.x7_c00266{left:118.050000px;}
.x1_c00266{left:206.850000px;}
.x17_c00266{left:246.939240px;}
.x12_c00266{left:287.250000px;}
.x14_c00266{left:288.450000px;}
.x13_c00266{left:289.800000px;}
.x11_c00266{left:290.850000px;}
.x15_c00266{left:291.900000px;}
.x16_c00266{left:469.800000px;}
@media print{
.v0_c00266{vertical-align:0.000000pt;}
.ls9_c00266{letter-spacing:0.000000pt;}
.ls0_c00266{letter-spacing:0.360000pt;}
.ls3_c00266{letter-spacing:2.666667pt;}
.ls1_c00266{letter-spacing:5.333333pt;}
.ls8_c00266{letter-spacing:8.000000pt;}
.ls7_c00266{letter-spacing:10.666667pt;}
.ls6_c00266{letter-spacing:17.013333pt;}
.ls5_c00266{letter-spacing:22.346667pt;}
.ls2_c00266{letter-spacing:25.466667pt;}
.ls4_c00266{letter-spacing:39.413333pt;}
.ws3_c00266{word-spacing:-31.373333pt;}
.ws0_c00266{word-spacing:-21.386667pt;}
.ws2_c00266{word-spacing:-16.053333pt;}
.ws1_c00266{word-spacing:-12.586667pt;}
.ws4_c00266{word-spacing:0.000000pt;}
._20_c00266{margin-left:-17.829333pt;}
._1a_c00266{margin-left:-10.645333pt;}
._18_c00266{margin-left:-8.741333pt;}
._14_c00266{margin-left:-7.002667pt;}
._12_c00266{margin-left:-5.376000pt;}
._d_c00266{margin-left:-3.989333pt;}
._8_c00266{margin-left:-2.698667pt;}
._6_c00266{margin-left:-1.760000pt;}
._11_c00266{width:0.986667pt;}
._7_c00266{width:2.288000pt;}
._e_c00266{width:3.344000pt;}
._b_c00266{width:4.869333pt;}
._a_c00266{width:5.866667pt;}
._1e_c00266{width:6.896000pt;}
._9_c00266{width:7.802667pt;}
._13_c00266{width:9.386667pt;}
._17_c00266{width:10.602667pt;}
._f_c00266{width:11.557333pt;}
._19_c00266{width:12.981333pt;}
._15_c00266{width:14.026667pt;}
._21_c00266{width:15.189333pt;}
._10_c00266{width:16.896000pt;}
._2_c00266{width:18.645333pt;}
._1c_c00266{width:19.840000pt;}
._16_c00266{width:22.042667pt;}
._4_c00266{width:22.954667pt;}
._3_c00266{width:24.832000pt;}
._1_c00266{width:26.986667pt;}
._0_c00266{width:31.488000pt;}
._1f_c00266{width:126.405333pt;}
._1d_c00266{width:137.696000pt;}
._22_c00266{width:145.274667pt;}
._23_c00266{width:168.816000pt;}
._1b_c00266{width:184.202667pt;}
._c_c00266{width:195.477333pt;}
._5_c00266{width:382.101333pt;}
.fs0_c00266{font-size:21.333333pt;}
.fs3_c00266{font-size:40.000000pt;}
.fs6_c00266{font-size:42.666667pt;}
.fs1_c00266{font-size:53.333333pt;}
.fs4_c00266{font-size:56.000000pt;}
.fs2_c00266{font-size:58.666667pt;}
.fs5_c00266{font-size:189.333333pt;}
.y0_c00266{bottom:0.000000pt;}
.y46_c00266{bottom:2.760000pt;}
.y45_c00266{bottom:6.425206pt;}
.y44_c00266{bottom:30.693333pt;}
.y43_c00266{bottom:47.760000pt;}
.y2a_c00266{bottom:49.893333pt;}
.y42_c00266{bottom:63.626667pt;}
.y29_c00266{bottom:67.493333pt;}
.y41_c00266{bottom:79.493333pt;}
.y28_c00266{bottom:84.026667pt;}
.y40_c00266{bottom:96.560000pt;}
.y27_c00266{bottom:99.893333pt;}
.y3f_c00266{bottom:112.293333pt;}
.y26_c00266{bottom:115.893333pt;}
.y3e_c00266{bottom:127.493333pt;}
.y25_c00266{bottom:132.560000pt;}
.y3d_c00266{bottom:145.226667pt;}
.y24_c00266{bottom:149.360000pt;}
.y3c_c00266{bottom:159.893333pt;}
.y23_c00266{bottom:164.693333pt;}
.y3b_c00266{bottom:176.960000pt;}
.y22_c00266{bottom:180.026667pt;}
.y3a_c00266{bottom:193.493333pt;}
.y21_c00266{bottom:196.560000pt;}
.y39_c00266{bottom:209.360000pt;}
.y20_c00266{bottom:212.160000pt;}
.y38_c00266{bottom:224.960000pt;}
.y1f_c00266{bottom:228.293333pt;}
.y37_c00266{bottom:240.693333pt;}
.y1e_c00266{bottom:244.826667pt;}
.y36_c00266{bottom:256.826667pt;}
.y1d_c00266{bottom:259.493333pt;}
.y35_c00266{bottom:272.693333pt;}
.y1c_c00266{bottom:276.293333pt;}
.y34_c00266{bottom:288.293333pt;}
.y1b_c00266{bottom:290.693333pt;}
.y33_c00266{bottom:304.560000pt;}
.y1a_c00266{bottom:307.226667pt;}
.y32_c00266{bottom:320.160000pt;}
.y19_c00266{bottom:324.026667pt;}
.y31_c00266{bottom:336.293333pt;}
.y18_c00266{bottom:340.293333pt;}
.y30_c00266{bottom:352.560000pt;}
.y17_c00266{bottom:355.893333pt;}
.y2f_c00266{bottom:368.693333pt;}
.y16_c00266{bottom:372.293333pt;}
.y2e_c00266{bottom:384.693333pt;}
.y15_c00266{bottom:387.626667pt;}
.y2d_c00266{bottom:400.160000pt;}
.y14_c00266{bottom:403.760000pt;}
.y11_c00266{bottom:405.093333pt;}
.y2c_c00266{bottom:415.760000pt;}
.y10_c00266{bottom:417.093333pt;}
.y13_c00266{bottom:419.360000pt;}
.y2b_c00266{bottom:432.560000pt;}
.y12_c00266{bottom:434.960000pt;}
.yf_c00266{bottom:464.960000pt;}
.ye_c00266{bottom:497.360000pt;}
.yd_c00266{bottom:513.093333pt;}
.yc_c00266{bottom:529.226667pt;}
.yb_c00266{bottom:545.093333pt;}
.ya_c00266{bottom:560.960000pt;}
.y9_c00266{bottom:576.693333pt;}
.y8_c00266{bottom:592.826667pt;}
.y7_c00266{bottom:608.693333pt;}
.y6_c00266{bottom:624.693333pt;}
.y5_c00266{bottom:640.560000pt;}
.y4_c00266{bottom:656.693333pt;}
.y3_c00266{bottom:672.960000pt;}
.y2_c00266{bottom:688.826667pt;}
.y1_c00266{bottom:706.293333pt;}
.h6_c00266{height:11.733399pt;}
.h7_c00266{height:38.937500pt;}
.h2_c00266{height:55.893333pt;}
.h5_c00266{height:59.752000pt;}
.h3_c00266{height:63.594667pt;}
.h4_c00266{height:198.421333pt;}
.h0_c00266{height:747.866667pt;}
.h1_c00266{height:748.000000pt;}
.w1_c00266{width:93.222667pt;}
.w0_c00266{width:524.666667pt;}
.x0_c00266{left:0.000000pt;}
.xb_c00266{left:15.866667pt;}
.xe_c00266{left:17.600000pt;}
.xf_c00266{left:18.533333pt;}
.x10_c00266{left:19.466667pt;}
.xd_c00266{left:28.266667pt;}
.x2_c00266{left:62.666667pt;}
.x3_c00266{left:63.600000pt;}
.x4_c00266{left:65.066667pt;}
.x5_c00266{left:66.533333pt;}
.x6_c00266{left:68.000000pt;}
.xa_c00266{left:69.200000pt;}
.xc_c00266{left:70.133333pt;}
.x9_c00266{left:90.266667pt;}
.x8_c00266{left:102.266667pt;}
.x7_c00266{left:104.933333pt;}
.x1_c00266{left:183.866667pt;}
.x17_c00266{left:219.501546pt;}
.x12_c00266{left:255.333333pt;}
.x14_c00266{left:256.400000pt;}
.x13_c00266{left:257.600000pt;}
.x11_c00266{left:258.533333pt;}
.x15_c00266{left:259.466667pt;}
.x16_c00266{left:417.600000pt;}
}





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

.ir_c00267:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00267{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00267;src:url('chunks/assets/font_9bc8f8c712d38fe28ed7a336.woff2')format("woff");}.ff1_c00267{font-family:ff1_c00267;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00267;src:url('chunks/assets/font_d0c178639891ad3823d17f0b.woff2')format("woff");}.ff2_c00267{font-family:ff2_c00267;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00267;src:url('chunks/assets/font_ae5c63573494bb57d7175026.woff2')format("woff");}.ff3_c00267{font-family:ff3_c00267;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00267;src:url('chunks/assets/font_6105c17c3228052140a0ebdf.woff2')format("woff");}.ff4_c00267{font-family:ff4_c00267;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00267;src:url('chunks/assets/font_52a2a2ac9e54f2ad54e5ad52.woff2')format("woff");}.ff5_c00267{font-family:ff5_c00267;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00267;src:url('chunks/assets/font_60b27f5d82f5ebeb6a13006f.woff2')format("woff");}.ff6_c00267{font-family:ff6_c00267;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00267;src:url('chunks/assets/font_0c685d31e25e46b7178667fb.woff2')format("woff");}.ff7_c00267{font-family:ff7_c00267;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00267;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff8_c00267{font-family:ff8_c00267;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00267{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00267{vertical-align:0.000000px;}
.v1_c00267{vertical-align:110.400000px;}
.lsb_c00267{letter-spacing:0.000000px;}
.ls3_c00267{letter-spacing:2.400000px;}
.ls6_c00267{letter-spacing:2.805000px;}
.ls0_c00267{letter-spacing:3.000000px;}
.lsa_c00267{letter-spacing:3.240000px;}
.ls9_c00267{letter-spacing:4.680000px;}
.lsd_c00267{letter-spacing:6.000000px;}
.ls8_c00267{letter-spacing:9.465000px;}
.lsc_c00267{letter-spacing:15.000000px;}
.ls7_c00267{letter-spacing:17.340000px;}
.ls4_c00267{letter-spacing:26.328000px;}
.ls1_c00267{letter-spacing:26.805000px;}
.ls5_c00267{letter-spacing:78.060000px;}
.ls2_c00267{letter-spacing:222.060000px;}
.sc__c00267{text-shadow:none;}
.sc0_c00267{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00267{-webkit-text-stroke:0px transparent;}
.sc0_c00267{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00267{word-spacing:-18.813000px;}
.ws2_c00267{word-spacing:-18.060000px;}
.ws0_c00267{word-spacing:-18.000000px;}
.ws5_c00267{word-spacing:-17.868000px;}
.ws6_c00267{word-spacing:-17.340000px;}
.ws3_c00267{word-spacing:-15.204000px;}
.ws1_c00267{word-spacing:-14.160000px;}
.ws8_c00267{word-spacing:0.000000px;}
.ws4_c00267{word-spacing:30.180000px;}
._15_c00267{margin-left:-21.420000px;}
._2c_c00267{margin-left:-15.180000px;}
._19_c00267{margin-left:-13.980000px;}
._21_c00267{margin-left:-12.240000px;}
._26_c00267{margin-left:-10.680000px;}
._1f_c00267{margin-left:-8.928000px;}
._33_c00267{margin-left:-7.815000px;}
._35_c00267{margin-left:-6.660000px;}
._c_c00267{margin-left:-5.640000px;}
._4_c00267{margin-left:-3.960000px;}
._13_c00267{margin-left:-2.760000px;}
._5_c00267{margin-left:-1.260000px;}
._1_c00267{width:1.440000px;}
._7_c00267{width:3.060000px;}
._3_c00267{width:4.464000px;}
._6_c00267{width:5.580000px;}
._d_c00267{width:7.200000px;}
._b_c00267{width:9.000000px;}
._25_c00267{width:10.020000px;}
._9_c00267{width:11.520000px;}
._a_c00267{width:12.600000px;}
._16_c00267{width:14.340000px;}
._12_c00267{width:16.440000px;}
._28_c00267{width:19.176000px;}
._17_c00267{width:20.880000px;}
._2_c00267{width:24.120000px;}
._22_c00267{width:25.560000px;}
._36_c00267{width:26.916000px;}
._23_c00267{width:28.836000px;}
._2d_c00267{width:30.540000px;}
._10_c00267{width:32.412000px;}
._32_c00267{width:33.873000px;}
._31_c00267{width:37.080000px;}
._e_c00267{width:43.680000px;}
._2f_c00267{width:53.040000px;}
._8_c00267{width:55.440000px;}
._34_c00267{width:57.060000px;}
._27_c00267{width:60.720000px;}
._1c_c00267{width:62.400000px;}
._1a_c00267{width:63.780000px;}
._1b_c00267{width:66.216000px;}
._18_c00267{width:68.760000px;}
._f_c00267{width:70.080000px;}
._11_c00267{width:71.088000px;}
._1d_c00267{width:72.540000px;}
._30_c00267{width:92.940000px;}
._2e_c00267{width:95.280000px;}
._29_c00267{width:114.840000px;}
._24_c00267{width:122.400000px;}
._20_c00267{width:128.352000px;}
._37_c00267{width:135.420000px;}
._2a_c00267{width:147.420000px;}
._1e_c00267{width:177.327000px;}
._14_c00267{width:182.160000px;}
._2b_c00267{width:209.580000px;}
._0_c00267{width:344.064000px;}
.fc2_c00267{color:transparent;}
.fc1_c00267{color:rgb(128,128,128);}
.fc0_c00267{color:rgb(0,0,0);}
.fs3_c00267{font-size:36.000000px;}
.fs2_c00267{font-size:45.000000px;}
.fs4_c00267{font-size:48.000000px;}
.fs1_c00267{font-size:60.000000px;}
.fs5_c00267{font-size:63.000000px;}
.fs0_c00267{font-size:72.000000px;}
.fs6_c00267{font-size:207.000000px;}
.y0_c00267{bottom:0.000000px;}
.y3f_c00267{bottom:3.105000px;}
.y3e_c00267{bottom:7.228363px;}
.y3d_c00267{bottom:40.200000px;}
.y2b_c00267{bottom:56.100000px;}
.y3c_c00267{bottom:56.700000px;}
.y2a_c00267{bottom:75.000000px;}
.y3b_c00267{bottom:75.300000px;}
.y29_c00267{bottom:93.450000px;}
.y28_c00267{bottom:111.000000px;}
.y3a_c00267{bottom:111.750000px;}
.y27_c00267{bottom:129.900000px;}
.y39_c00267{bottom:147.750000px;}
.y26_c00267{bottom:147.900000px;}
.y25_c00267{bottom:166.050000px;}
.y24_c00267{bottom:184.350000px;}
.y38_c00267{bottom:184.650000px;}
.y13_c00267{bottom:202.200000px;}
.y23_c00267{bottom:202.500000px;}
.y22_c00267{bottom:220.350000px;}
.y21_c00267{bottom:238.050000px;}
.y37_c00267{bottom:238.200000px;}
.y20_c00267{bottom:256.800000px;}
.y1f_c00267{bottom:274.050000px;}
.y36_c00267{bottom:274.500000px;}
.y35_c00267{bottom:292.500000px;}
.y1e_c00267{bottom:292.650000px;}
.y1d_c00267{bottom:310.500000px;}
.y34_c00267{bottom:328.500000px;}
.y1c_c00267{bottom:328.800000px;}
.y33_c00267{bottom:346.650000px;}
.y1b_c00267{bottom:346.950000px;}
.y19_c00267{bottom:355.500000px;}
.y32_c00267{bottom:364.500000px;}
.y1a_c00267{bottom:365.250000px;}
.y31_c00267{bottom:382.500000px;}
.y18_c00267{bottom:399.000000px;}
.y30_c00267{bottom:400.650000px;}
.y2f_c00267{bottom:418.800000px;}
.y17_c00267{bottom:419.550000px;}
.y2e_c00267{bottom:437.400000px;}
.y16_c00267{bottom:437.700000px;}
.y2d_c00267{bottom:454.950000px;}
.y15_c00267{bottom:455.700000px;}
.y2c_c00267{bottom:473.250000px;}
.y14_c00267{bottom:473.850000px;}
.y12_c00267{bottom:491.400000px;}
.y11_c00267{bottom:509.400000px;}
.y10_c00267{bottom:527.250000px;}
.yf_c00267{bottom:545.400000px;}
.ye_c00267{bottom:562.950000px;}
.yd_c00267{bottom:580.500000px;}
.yc_c00267{bottom:598.800000px;}
.yb_c00267{bottom:617.250000px;}
.ya_c00267{bottom:634.950000px;}
.y9_c00267{bottom:652.800000px;}
.y8_c00267{bottom:672.000000px;}
.y7_c00267{bottom:689.250000px;}
.y6_c00267{bottom:707.400000px;}
.y5_c00267{bottom:725.700000px;}
.y4_c00267{bottom:743.550000px;}
.y3_c00267{bottom:761.400000px;}
.y2_c00267{bottom:780.000000px;}
.y1_c00267{bottom:798.450000px;}
.h6_c00267{height:13.200074px;}
.h7_c00267{height:43.804688px;}
.h2_c00267{height:62.880000px;}
.h3_c00267{height:64.020000px;}
.h4_c00267{height:66.024000px;}
.h1_c00267{height:70.664062px;}
.h5_c00267{height:216.936000px;}
.h0_c00267{height:843.750000px;}
.w2_c00267{width:104.875500px;}
.w1_c00267{width:565.500000px;}
.w0_c00267{width:565.650000px;}
.x0_c00267{left:0.000000px;}
.x9_c00267{left:26.700000px;}
.x11_c00267{left:85.650000px;}
.x10_c00267{left:87.750000px;}
.xf_c00267{left:89.100000px;}
.x8_c00267{left:90.750000px;}
.x4_c00267{left:92.400000px;}
.x3_c00267{left:93.750000px;}
.x2_c00267{left:95.100000px;}
.x1_c00267{left:96.150000px;}
.xa_c00267{left:108.900000px;}
.x7_c00267{left:127.950000px;}
.xe_c00267{left:139.650000px;}
.xb_c00267{left:142.350000px;}
.xc_c00267{left:163.050000px;}
.x6_c00267{left:170.400000px;}
.x15_c00267{left:234.639267px;}
.xd_c00267{left:278.700000px;}
.x13_c00267{left:306.450000px;}
.x5_c00267{left:307.500000px;}
.x12_c00267{left:308.850000px;}
.x14_c00267{left:475.500000px;}
@media print{
.v0_c00267{vertical-align:0.000000pt;}
.v1_c00267{vertical-align:98.133333pt;}
.lsb_c00267{letter-spacing:0.000000pt;}
.ls3_c00267{letter-spacing:2.133333pt;}
.ls6_c00267{letter-spacing:2.493333pt;}
.ls0_c00267{letter-spacing:2.666667pt;}
.lsa_c00267{letter-spacing:2.880000pt;}
.ls9_c00267{letter-spacing:4.160000pt;}
.lsd_c00267{letter-spacing:5.333333pt;}
.ls8_c00267{letter-spacing:8.413333pt;}
.lsc_c00267{letter-spacing:13.333333pt;}
.ls7_c00267{letter-spacing:15.413333pt;}
.ls4_c00267{letter-spacing:23.402667pt;}
.ls1_c00267{letter-spacing:23.826667pt;}
.ls5_c00267{letter-spacing:69.386667pt;}
.ls2_c00267{letter-spacing:197.386667pt;}
.ws7_c00267{word-spacing:-16.722667pt;}
.ws2_c00267{word-spacing:-16.053333pt;}
.ws0_c00267{word-spacing:-16.000000pt;}
.ws5_c00267{word-spacing:-15.882667pt;}
.ws6_c00267{word-spacing:-15.413333pt;}
.ws3_c00267{word-spacing:-13.514667pt;}
.ws1_c00267{word-spacing:-12.586667pt;}
.ws8_c00267{word-spacing:0.000000pt;}
.ws4_c00267{word-spacing:26.826667pt;}
._15_c00267{margin-left:-19.040000pt;}
._2c_c00267{margin-left:-13.493333pt;}
._19_c00267{margin-left:-12.426667pt;}
._21_c00267{margin-left:-10.880000pt;}
._26_c00267{margin-left:-9.493333pt;}
._1f_c00267{margin-left:-7.936000pt;}
._33_c00267{margin-left:-6.946667pt;}
._35_c00267{margin-left:-5.920000pt;}
._c_c00267{margin-left:-5.013333pt;}
._4_c00267{margin-left:-3.520000pt;}
._13_c00267{margin-left:-2.453333pt;}
._5_c00267{margin-left:-1.120000pt;}
._1_c00267{width:1.280000pt;}
._7_c00267{width:2.720000pt;}
._3_c00267{width:3.968000pt;}
._6_c00267{width:4.960000pt;}
._d_c00267{width:6.400000pt;}
._b_c00267{width:8.000000pt;}
._25_c00267{width:8.906667pt;}
._9_c00267{width:10.240000pt;}
._a_c00267{width:11.200000pt;}
._16_c00267{width:12.746667pt;}
._12_c00267{width:14.613333pt;}
._28_c00267{width:17.045333pt;}
._17_c00267{width:18.560000pt;}
._2_c00267{width:21.440000pt;}
._22_c00267{width:22.720000pt;}
._36_c00267{width:23.925333pt;}
._23_c00267{width:25.632000pt;}
._2d_c00267{width:27.146667pt;}
._10_c00267{width:28.810667pt;}
._32_c00267{width:30.109333pt;}
._31_c00267{width:32.960000pt;}
._e_c00267{width:38.826667pt;}
._2f_c00267{width:47.146667pt;}
._8_c00267{width:49.280000pt;}
._34_c00267{width:50.720000pt;}
._27_c00267{width:53.973333pt;}
._1c_c00267{width:55.466667pt;}
._1a_c00267{width:56.693333pt;}
._1b_c00267{width:58.858667pt;}
._18_c00267{width:61.120000pt;}
._f_c00267{width:62.293333pt;}
._11_c00267{width:63.189333pt;}
._1d_c00267{width:64.480000pt;}
._30_c00267{width:82.613333pt;}
._2e_c00267{width:84.693333pt;}
._29_c00267{width:102.080000pt;}
._24_c00267{width:108.800000pt;}
._20_c00267{width:114.090667pt;}
._37_c00267{width:120.373333pt;}
._2a_c00267{width:131.040000pt;}
._1e_c00267{width:157.624000pt;}
._14_c00267{width:161.920000pt;}
._2b_c00267{width:186.293333pt;}
._0_c00267{width:305.834667pt;}
.fs3_c00267{font-size:32.000000pt;}
.fs2_c00267{font-size:40.000000pt;}
.fs4_c00267{font-size:42.666667pt;}
.fs1_c00267{font-size:53.333333pt;}
.fs5_c00267{font-size:56.000000pt;}
.fs0_c00267{font-size:64.000000pt;}
.fs6_c00267{font-size:184.000000pt;}
.y0_c00267{bottom:0.000000pt;}
.y3f_c00267{bottom:2.760000pt;}
.y3e_c00267{bottom:6.425212pt;}
.y3d_c00267{bottom:35.733333pt;}
.y2b_c00267{bottom:49.866667pt;}
.y3c_c00267{bottom:50.400000pt;}
.y2a_c00267{bottom:66.666667pt;}
.y3b_c00267{bottom:66.933333pt;}
.y29_c00267{bottom:83.066667pt;}
.y28_c00267{bottom:98.666667pt;}
.y3a_c00267{bottom:99.333333pt;}
.y27_c00267{bottom:115.466667pt;}
.y39_c00267{bottom:131.333333pt;}
.y26_c00267{bottom:131.466667pt;}
.y25_c00267{bottom:147.600000pt;}
.y24_c00267{bottom:163.866667pt;}
.y38_c00267{bottom:164.133333pt;}
.y13_c00267{bottom:179.733333pt;}
.y23_c00267{bottom:180.000000pt;}
.y22_c00267{bottom:195.866667pt;}
.y21_c00267{bottom:211.600000pt;}
.y37_c00267{bottom:211.733333pt;}
.y20_c00267{bottom:228.266667pt;}
.y1f_c00267{bottom:243.600000pt;}
.y36_c00267{bottom:244.000000pt;}
.y35_c00267{bottom:260.000000pt;}
.y1e_c00267{bottom:260.133333pt;}
.y1d_c00267{bottom:276.000000pt;}
.y34_c00267{bottom:292.000000pt;}
.y1c_c00267{bottom:292.266667pt;}
.y33_c00267{bottom:308.133333pt;}
.y1b_c00267{bottom:308.400000pt;}
.y19_c00267{bottom:316.000000pt;}
.y32_c00267{bottom:324.000000pt;}
.y1a_c00267{bottom:324.666667pt;}
.y31_c00267{bottom:340.000000pt;}
.y18_c00267{bottom:354.666667pt;}
.y30_c00267{bottom:356.133333pt;}
.y2f_c00267{bottom:372.266667pt;}
.y17_c00267{bottom:372.933333pt;}
.y2e_c00267{bottom:388.800000pt;}
.y16_c00267{bottom:389.066667pt;}
.y2d_c00267{bottom:404.400000pt;}
.y15_c00267{bottom:405.066667pt;}
.y2c_c00267{bottom:420.666667pt;}
.y14_c00267{bottom:421.200000pt;}
.y12_c00267{bottom:436.800000pt;}
.y11_c00267{bottom:452.800000pt;}
.y10_c00267{bottom:468.666667pt;}
.yf_c00267{bottom:484.800000pt;}
.ye_c00267{bottom:500.400000pt;}
.yd_c00267{bottom:516.000000pt;}
.yc_c00267{bottom:532.266667pt;}
.yb_c00267{bottom:548.666667pt;}
.ya_c00267{bottom:564.400000pt;}
.y9_c00267{bottom:580.266667pt;}
.y8_c00267{bottom:597.333333pt;}
.y7_c00267{bottom:612.666667pt;}
.y6_c00267{bottom:628.800000pt;}
.y5_c00267{bottom:645.066667pt;}
.y4_c00267{bottom:660.933333pt;}
.y3_c00267{bottom:676.800000pt;}
.y2_c00267{bottom:693.333333pt;}
.y1_c00267{bottom:709.733333pt;}
.h6_c00267{height:11.733399pt;}
.h7_c00267{height:38.937500pt;}
.h2_c00267{height:55.893333pt;}
.h3_c00267{height:56.906667pt;}
.h4_c00267{height:58.688000pt;}
.h1_c00267{height:62.812500pt;}
.h5_c00267{height:192.832000pt;}
.h0_c00267{height:750.000000pt;}
.w2_c00267{width:93.222667pt;}
.w1_c00267{width:502.666667pt;}
.w0_c00267{width:502.800000pt;}
.x0_c00267{left:0.000000pt;}
.x9_c00267{left:23.733333pt;}
.x11_c00267{left:76.133333pt;}
.x10_c00267{left:78.000000pt;}
.xf_c00267{left:79.200000pt;}
.x8_c00267{left:80.666667pt;}
.x4_c00267{left:82.133333pt;}
.x3_c00267{left:83.333333pt;}
.x2_c00267{left:84.533333pt;}
.x1_c00267{left:85.466667pt;}
.xa_c00267{left:96.800000pt;}
.x7_c00267{left:113.733333pt;}
.xe_c00267{left:124.133333pt;}
.xb_c00267{left:126.533333pt;}
.xc_c00267{left:144.933333pt;}
.x6_c00267{left:151.466667pt;}
.x15_c00267{left:208.568237pt;}
.xd_c00267{left:247.733333pt;}
.x13_c00267{left:272.400000pt;}
.x5_c00267{left:273.333333pt;}
.x12_c00267{left:274.533333pt;}
.x14_c00267{left:422.666667pt;}
}





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

.ir_c00268:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00268{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00268;src:url('chunks/assets/font_c3f08ca60e413194061b0672.woff2')format("woff");}.ff1_c00268{font-family:ff1_c00268;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00268;src:url('chunks/assets/font_b117a1d61916bedd468962c1.woff2')format("woff");}.ff2_c00268{font-family:ff2_c00268;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00268;src:url('chunks/assets/font_72759c56f72a2163ff20510e.woff2')format("woff");}.ff3_c00268{font-family:ff3_c00268;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00268;src:url('chunks/assets/font_6474d277e3146325e397a671.woff2')format("woff");}.ff4_c00268{font-family:ff4_c00268;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00268;src:url('chunks/assets/font_7c7b114d6d8510036cb24ad0.woff2')format("woff");}.ff5_c00268{font-family:ff5_c00268;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00268;src:url('chunks/assets/font_4879ecd7ba133712703a39a8.woff2')format("woff");}.ff6_c00268{font-family:ff6_c00268;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00268;src:url('chunks/assets/font_e33e7dbe27647dcc5ec6208f.woff2')format("woff");}.ff7_c00268{font-family:ff7_c00268;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00268;src:url('chunks/assets/font_fb1639c49ff41d7ba5f83665.woff2')format("woff");}.ff8_c00268{font-family:ff8_c00268;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00268;src:url('chunks/assets/font_41f209625f57e4293d79be45.woff2')format("woff");}.ff9_c00268{font-family:ff9_c00268;line-height:1.338867;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00268;src:url('chunks/assets/font_7bf0a9c57c157123d820ddb6.woff2')format("woff");}.ffa_c00268{font-family:ffa_c00268;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00268;src:url('chunks/assets/font_c91b90aaf0db6fea11bcba12.woff2')format("woff");}.ffb_c00268{font-family:ffb_c00268;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc_c00268;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ffc_c00268{font-family:ffc_c00268;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00268{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00268{vertical-align:0.000000px;}
.ls7_c00268{letter-spacing:0.000000px;}
.ls6_c00268{letter-spacing:1.005000px;}
.ls3_c00268{letter-spacing:1.680000px;}
.ls0_c00268{letter-spacing:3.000000px;}
.ls4_c00268{letter-spacing:5.808000px;}
.ls1_c00268{letter-spacing:6.000000px;}
.ls8_c00268{letter-spacing:15.000000px;}
.ls5_c00268{letter-spacing:18.900000px;}
.ls2_c00268{letter-spacing:99.093000px;}
.sc__c00268{text-shadow:none;}
.sc0_c00268{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00268{-webkit-text-stroke:0px transparent;}
.sc0_c00268{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8_c00268{word-spacing:-35.295000px;}
.ws6_c00268{word-spacing:-18.060000px;}
.ws7_c00268{word-spacing:-18.000000px;}
.ws5_c00268{word-spacing:-17.160000px;}
.ws4_c00268{word-spacing:-15.840000px;}
.ws3_c00268{word-spacing:-14.868000px;}
.ws0_c00268{word-spacing:-14.160000px;}
.ws2_c00268{word-spacing:-13.452000px;}
.ws1_c00268{word-spacing:-12.744000px;}
.ws9_c00268{word-spacing:-0.540000px;}
.wsa_c00268{word-spacing:0.000000px;}
._41_c00268{margin-left:-28.872000px;}
._42_c00268{margin-left:-25.071000px;}
._3e_c00268{margin-left:-20.604000px;}
._3a_c00268{margin-left:-18.672000px;}
._13_c00268{margin-left:-17.505000px;}
._0_c00268{margin-left:-16.320000px;}
._1d_c00268{margin-left:-14.820000px;}
._22_c00268{margin-left:-13.818000px;}
._31_c00268{margin-left:-12.324000px;}
._1f_c00268{margin-left:-10.944000px;}
._1b_c00268{margin-left:-9.936000px;}
._36_c00268{margin-left:-8.916000px;}
._1_c00268{margin-left:-7.680000px;}
._3b_c00268{margin-left:-6.654000px;}
._12_c00268{margin-left:-5.628000px;}
._11_c00268{margin-left:-4.305000px;}
._1a_c00268{margin-left:-2.790000px;}
._b_c00268{margin-left:-1.680000px;}
._d_c00268{width:1.380000px;}
._e_c00268{width:2.700000px;}
._a_c00268{width:3.840000px;}
._8_c00268{width:5.280000px;}
._9_c00268{width:6.360000px;}
._6_c00268{width:7.740000px;}
._2_c00268{width:9.000000px;}
._16_c00268{width:10.395000px;}
._14_c00268{width:11.682000px;}
._f_c00268{width:12.780000px;}
._5_c00268{width:13.800000px;}
._3_c00268{width:16.020000px;}
._17_c00268{width:17.175000px;}
._7_c00268{width:18.900000px;}
._10_c00268{width:20.760000px;}
._35_c00268{width:22.002000px;}
._18_c00268{width:23.370000px;}
._1e_c00268{width:25.383000px;}
._21_c00268{width:27.030000px;}
._2e_c00268{width:28.308000px;}
._2d_c00268{width:29.472000px;}
._27_c00268{width:30.900000px;}
._20_c00268{width:32.241000px;}
._34_c00268{width:33.480000px;}
._3c_c00268{width:34.893000px;}
._2f_c00268{width:36.789000px;}
._40_c00268{width:39.246000px;}
._39_c00268{width:41.019000px;}
._15_c00268{width:43.701000px;}
._23_c00268{width:45.435000px;}
._2c_c00268{width:49.407000px;}
._2b_c00268{width:51.366000px;}
._4_c00268{width:60.000000px;}
._3d_c00268{width:62.190000px;}
._38_c00268{width:68.556000px;}
._c_c00268{width:72.780000px;}
._32_c00268{width:74.700000px;}
._44_c00268{width:75.780000px;}
._30_c00268{width:79.614000px;}
._3f_c00268{width:81.204000px;}
._26_c00268{width:88.761000px;}
._29_c00268{width:109.962000px;}
._33_c00268{width:111.420000px;}
._28_c00268{width:116.592000px;}
._19_c00268{width:139.578000px;}
._2a_c00268{width:166.278000px;}
._45_c00268{width:191.280000px;}
._43_c00268{width:210.960000px;}
._25_c00268{width:292.524000px;}
._24_c00268{width:333.540000px;}
._1c_c00268{width:355.530000px;}
._37_c00268{width:506.508000px;}
.fc2_c00268{color:transparent;}
.fc1_c00268{color:rgb(128,128,128);}
.fc0_c00268{color:rgb(0,0,0);}
.fs6_c00268{font-size:24.000000px;}
.fs5_c00268{font-size:42.000000px;}
.fs1_c00268{font-size:45.000000px;}
.fs7_c00268{font-size:48.000000px;}
.fs2_c00268{font-size:54.000000px;}
.fs3_c00268{font-size:57.000000px;}
.fs0_c00268{font-size:60.000000px;}
.fs4_c00268{font-size:63.000000px;}
.y0_c00268{bottom:0.000000px;}
.y51_c00268{bottom:3.105000px;}
.y50_c00268{bottom:7.228369px;}
.y4f_c00268{bottom:14.520000px;}
.y4e_c00268{bottom:39.420000px;}
.y3b_c00268{bottom:42.420000px;}
.y4d_c00268{bottom:58.320000px;}
.y3a_c00268{bottom:61.320000px;}
.y4c_c00268{bottom:76.920000px;}
.y39_c00268{bottom:79.920000px;}
.y4b_c00268{bottom:95.070000px;}
.y38_c00268{bottom:96.420000px;}
.y4a_c00268{bottom:113.370000px;}
.y37_c00268{bottom:115.770000px;}
.y49_c00268{bottom:131.220000px;}
.y36_c00268{bottom:134.370000px;}
.y48_c00268{bottom:150.120000px;}
.y35_c00268{bottom:152.220000px;}
.y47_c00268{bottom:168.120000px;}
.y34_c00268{bottom:170.370000px;}
.y46_c00268{bottom:185.970000px;}
.y33_c00268{bottom:188.370000px;}
.y45_c00268{bottom:205.170000px;}
.y32_c00268{bottom:206.520000px;}
.y44_c00268{bottom:222.120000px;}
.y31_c00268{bottom:225.720000px;}
.y43_c00268{bottom:240.570000px;}
.y30_c00268{bottom:242.370000px;}
.y42_c00268{bottom:258.420000px;}
.y2f_c00268{bottom:260.820000px;}
.y41_c00268{bottom:276.570000px;}
.y2e_c00268{bottom:278.370000px;}
.y40_c00268{bottom:295.020000px;}
.y2d_c00268{bottom:296.970000px;}
.y3f_c00268{bottom:313.470000px;}
.y2c_c00268{bottom:314.520000px;}
.y3e_c00268{bottom:331.470000px;}
.y2b_c00268{bottom:332.370000px;}
.y3d_c00268{bottom:349.020000px;}
.y2a_c00268{bottom:350.970000px;}
.y3c_c00268{bottom:367.920000px;}
.y29_c00268{bottom:369.120000px;}
.y28_c00268{bottom:386.370000px;}
.y27_c00268{bottom:404.220000px;}
.y26_c00268{bottom:422.820000px;}
.y25_c00268{bottom:440.670000px;}
.y13_c00268{bottom:458.970000px;}
.y24_c00268{bottom:459.270000px;}
.y12_c00268{bottom:476.820000px;}
.y23_c00268{bottom:477.570000px;}
.y11_c00268{bottom:494.670000px;}
.y22_c00268{bottom:495.420000px;}
.y10_c00268{bottom:512.220000px;}
.y21_c00268{bottom:513.570000px;}
.yf_c00268{bottom:530.520000px;}
.y20_c00268{bottom:533.220000px;}
.ye_c00268{bottom:548.670000px;}
.y1f_c00268{bottom:550.470000px;}
.yd_c00268{bottom:566.670000px;}
.y1e_c00268{bottom:568.320000px;}
.yc_c00268{bottom:584.520000px;}
.y1d_c00268{bottom:587.820000px;}
.yb_c00268{bottom:602.370000px;}
.y1c_c00268{bottom:605.070000px;}
.ya_c00268{bottom:620.970000px;}
.y1b_c00268{bottom:623.970000px;}
.y9_c00268{bottom:638.520000px;}
.y1a_c00268{bottom:641.820000px;}
.y8_c00268{bottom:656.370000px;}
.y19_c00268{bottom:658.170000px;}
.y7_c00268{bottom:674.370000px;}
.y18_c00268{bottom:678.270000px;}
.y6_c00268{bottom:692.520000px;}
.y17_c00268{bottom:696.270000px;}
.y5_c00268{bottom:710.820000px;}
.y16_c00268{bottom:714.420000px;}
.y4_c00268{bottom:728.370000px;}
.y15_c00268{bottom:730.020000px;}
.y3_c00268{bottom:746.820000px;}
.y14_c00268{bottom:750.570000px;}
.y2_c00268{bottom:765.420000px;}
.y1_c00268{bottom:787.020000px;}
.h8_c00268{height:13.200073px;}
.h9_c00268{height:43.804688px;}
.h3_c00268{height:48.015000px;}
.h4_c00268{height:57.618000px;}
.h6_c00268{height:59.736000px;}
.h2_c00268{height:62.880000px;}
.h5_c00268{height:64.020000px;}
.h7_c00268{height:66.024000px;}
.h1_c00268{height:824.250000px;}
.h0_c00268{height:824.550000px;}
.w2_c00268{width:104.875500px;}
.w1_c00268{width:578.250000px;}
.w0_c00268{width:578.325000px;}
.x0_c00268{left:0.000000px;}
.x3_c00268{left:68.100000px;}
.x9_c00268{left:69.150000px;}
.x5_c00268{left:70.200000px;}
.x2_c00268{left:72.000000px;}
.x4_c00268{left:73.500000px;}
.x1_c00268{left:176.400000px;}
.xc_c00268{left:240.976730px;}
.xa_c00268{left:285.300000px;}
.x8_c00268{left:286.650000px;}
.x7_c00268{left:288.150000px;}
.x6_c00268{left:289.500000px;}
.xb_c00268{left:365.850000px;}
@media print{
.v0_c00268{vertical-align:0.000000pt;}
.ls7_c00268{letter-spacing:0.000000pt;}
.ls6_c00268{letter-spacing:0.893333pt;}
.ls3_c00268{letter-spacing:1.493333pt;}
.ls0_c00268{letter-spacing:2.666667pt;}
.ls4_c00268{letter-spacing:5.162667pt;}
.ls1_c00268{letter-spacing:5.333333pt;}
.ls8_c00268{letter-spacing:13.333333pt;}
.ls5_c00268{letter-spacing:16.800000pt;}
.ls2_c00268{letter-spacing:88.082667pt;}
.ws8_c00268{word-spacing:-31.373333pt;}
.ws6_c00268{word-spacing:-16.053333pt;}
.ws7_c00268{word-spacing:-16.000000pt;}
.ws5_c00268{word-spacing:-15.253333pt;}
.ws4_c00268{word-spacing:-14.080000pt;}
.ws3_c00268{word-spacing:-13.216000pt;}
.ws0_c00268{word-spacing:-12.586667pt;}
.ws2_c00268{word-spacing:-11.957333pt;}
.ws1_c00268{word-spacing:-11.328000pt;}
.ws9_c00268{word-spacing:-0.480000pt;}
.wsa_c00268{word-spacing:0.000000pt;}
._41_c00268{margin-left:-25.664000pt;}
._42_c00268{margin-left:-22.285333pt;}
._3e_c00268{margin-left:-18.314667pt;}
._3a_c00268{margin-left:-16.597333pt;}
._13_c00268{margin-left:-15.560000pt;}
._0_c00268{margin-left:-14.506667pt;}
._1d_c00268{margin-left:-13.173333pt;}
._22_c00268{margin-left:-12.282667pt;}
._31_c00268{margin-left:-10.954667pt;}
._1f_c00268{margin-left:-9.728000pt;}
._1b_c00268{margin-left:-8.832000pt;}
._36_c00268{margin-left:-7.925333pt;}
._1_c00268{margin-left:-6.826667pt;}
._3b_c00268{margin-left:-5.914667pt;}
._12_c00268{margin-left:-5.002667pt;}
._11_c00268{margin-left:-3.826667pt;}
._1a_c00268{margin-left:-2.480000pt;}
._b_c00268{margin-left:-1.493333pt;}
._d_c00268{width:1.226667pt;}
._e_c00268{width:2.400000pt;}
._a_c00268{width:3.413333pt;}
._8_c00268{width:4.693333pt;}
._9_c00268{width:5.653333pt;}
._6_c00268{width:6.880000pt;}
._2_c00268{width:8.000000pt;}
._16_c00268{width:9.240000pt;}
._14_c00268{width:10.384000pt;}
._f_c00268{width:11.360000pt;}
._5_c00268{width:12.266667pt;}
._3_c00268{width:14.240000pt;}
._17_c00268{width:15.266667pt;}
._7_c00268{width:16.800000pt;}
._10_c00268{width:18.453333pt;}
._35_c00268{width:19.557333pt;}
._18_c00268{width:20.773333pt;}
._1e_c00268{width:22.562667pt;}
._21_c00268{width:24.026667pt;}
._2e_c00268{width:25.162667pt;}
._2d_c00268{width:26.197333pt;}
._27_c00268{width:27.466667pt;}
._20_c00268{width:28.658667pt;}
._34_c00268{width:29.760000pt;}
._3c_c00268{width:31.016000pt;}
._2f_c00268{width:32.701333pt;}
._40_c00268{width:34.885333pt;}
._39_c00268{width:36.461333pt;}
._15_c00268{width:38.845333pt;}
._23_c00268{width:40.386667pt;}
._2c_c00268{width:43.917333pt;}
._2b_c00268{width:45.658667pt;}
._4_c00268{width:53.333333pt;}
._3d_c00268{width:55.280000pt;}
._38_c00268{width:60.938667pt;}
._c_c00268{width:64.693333pt;}
._32_c00268{width:66.400000pt;}
._44_c00268{width:67.360000pt;}
._30_c00268{width:70.768000pt;}
._3f_c00268{width:72.181333pt;}
._26_c00268{width:78.898667pt;}
._29_c00268{width:97.744000pt;}
._33_c00268{width:99.040000pt;}
._28_c00268{width:103.637333pt;}
._19_c00268{width:124.069333pt;}
._2a_c00268{width:147.802667pt;}
._45_c00268{width:170.026667pt;}
._43_c00268{width:187.520000pt;}
._25_c00268{width:260.021333pt;}
._24_c00268{width:296.480000pt;}
._1c_c00268{width:316.026667pt;}
._37_c00268{width:450.229333pt;}
.fs6_c00268{font-size:21.333333pt;}
.fs5_c00268{font-size:37.333333pt;}
.fs1_c00268{font-size:40.000000pt;}
.fs7_c00268{font-size:42.666667pt;}
.fs2_c00268{font-size:48.000000pt;}
.fs3_c00268{font-size:50.666667pt;}
.fs0_c00268{font-size:53.333333pt;}
.fs4_c00268{font-size:56.000000pt;}
.y0_c00268{bottom:0.000000pt;}
.y51_c00268{bottom:2.760000pt;}
.y50_c00268{bottom:6.425217pt;}
.y4f_c00268{bottom:12.906667pt;}
.y4e_c00268{bottom:35.040000pt;}
.y3b_c00268{bottom:37.706667pt;}
.y4d_c00268{bottom:51.840000pt;}
.y3a_c00268{bottom:54.506667pt;}
.y4c_c00268{bottom:68.373333pt;}
.y39_c00268{bottom:71.040000pt;}
.y4b_c00268{bottom:84.506667pt;}
.y38_c00268{bottom:85.706667pt;}
.y4a_c00268{bottom:100.773333pt;}
.y37_c00268{bottom:102.906667pt;}
.y49_c00268{bottom:116.640000pt;}
.y36_c00268{bottom:119.440000pt;}
.y48_c00268{bottom:133.440000pt;}
.y35_c00268{bottom:135.306667pt;}
.y47_c00268{bottom:149.440000pt;}
.y34_c00268{bottom:151.440000pt;}
.y46_c00268{bottom:165.306667pt;}
.y33_c00268{bottom:167.440000pt;}
.y45_c00268{bottom:182.373333pt;}
.y32_c00268{bottom:183.573333pt;}
.y44_c00268{bottom:197.440000pt;}
.y31_c00268{bottom:200.640000pt;}
.y43_c00268{bottom:213.840000pt;}
.y30_c00268{bottom:215.440000pt;}
.y42_c00268{bottom:229.706667pt;}
.y2f_c00268{bottom:231.840000pt;}
.y41_c00268{bottom:245.840000pt;}
.y2e_c00268{bottom:247.440000pt;}
.y40_c00268{bottom:262.240000pt;}
.y2d_c00268{bottom:263.973333pt;}
.y3f_c00268{bottom:278.640000pt;}
.y2c_c00268{bottom:279.573333pt;}
.y3e_c00268{bottom:294.640000pt;}
.y2b_c00268{bottom:295.440000pt;}
.y3d_c00268{bottom:310.240000pt;}
.y2a_c00268{bottom:311.973333pt;}
.y3c_c00268{bottom:327.040000pt;}
.y29_c00268{bottom:328.106667pt;}
.y28_c00268{bottom:343.440000pt;}
.y27_c00268{bottom:359.306667pt;}
.y26_c00268{bottom:375.840000pt;}
.y25_c00268{bottom:391.706667pt;}
.y13_c00268{bottom:407.973333pt;}
.y24_c00268{bottom:408.240000pt;}
.y12_c00268{bottom:423.840000pt;}
.y23_c00268{bottom:424.506667pt;}
.y11_c00268{bottom:439.706667pt;}
.y22_c00268{bottom:440.373333pt;}
.y10_c00268{bottom:455.306667pt;}
.y21_c00268{bottom:456.506667pt;}
.yf_c00268{bottom:471.573333pt;}
.y20_c00268{bottom:473.973333pt;}
.ye_c00268{bottom:487.706667pt;}
.y1f_c00268{bottom:489.306667pt;}
.yd_c00268{bottom:503.706667pt;}
.y1e_c00268{bottom:505.173333pt;}
.yc_c00268{bottom:519.573333pt;}
.y1d_c00268{bottom:522.506667pt;}
.yb_c00268{bottom:535.440000pt;}
.y1c_c00268{bottom:537.840000pt;}
.ya_c00268{bottom:551.973333pt;}
.y1b_c00268{bottom:554.640000pt;}
.y9_c00268{bottom:567.573333pt;}
.y1a_c00268{bottom:570.506667pt;}
.y8_c00268{bottom:583.440000pt;}
.y19_c00268{bottom:585.040000pt;}
.y7_c00268{bottom:599.440000pt;}
.y18_c00268{bottom:602.906667pt;}
.y6_c00268{bottom:615.573333pt;}
.y17_c00268{bottom:618.906667pt;}
.y5_c00268{bottom:631.840000pt;}
.y16_c00268{bottom:635.040000pt;}
.y4_c00268{bottom:647.440000pt;}
.y15_c00268{bottom:648.906667pt;}
.y3_c00268{bottom:663.840000pt;}
.y14_c00268{bottom:667.173333pt;}
.y2_c00268{bottom:680.373333pt;}
.y1_c00268{bottom:699.573333pt;}
.h8_c00268{height:11.733399pt;}
.h9_c00268{height:38.937500pt;}
.h3_c00268{height:42.680000pt;}
.h4_c00268{height:51.216000pt;}
.h6_c00268{height:53.098667pt;}
.h2_c00268{height:55.893333pt;}
.h5_c00268{height:56.906667pt;}
.h7_c00268{height:58.688000pt;}
.h1_c00268{height:732.666667pt;}
.h0_c00268{height:732.933333pt;}
.w2_c00268{width:93.222667pt;}
.w1_c00268{width:514.000000pt;}
.w0_c00268{width:514.066667pt;}
.x0_c00268{left:0.000000pt;}
.x3_c00268{left:60.533333pt;}
.x9_c00268{left:61.466667pt;}
.x5_c00268{left:62.400000pt;}
.x2_c00268{left:64.000000pt;}
.x4_c00268{left:65.333333pt;}
.x1_c00268{left:156.800000pt;}
.xc_c00268{left:214.201538pt;}
.xa_c00268{left:253.600000pt;}
.x8_c00268{left:254.800000pt;}
.x7_c00268{left:256.133333pt;}
.x6_c00268{left:257.333333pt;}
.xb_c00268{left:325.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_c00269 {
    display:none;
  }
  .loading-indicator_c00269.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00269 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00269 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00269" -> "#page-container .classname_c00269")
 */
.pf_c00269 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00269 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00269.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00269 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00269 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00269 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00269 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00269 {overflow:visible;}
  }
}
.c_c00269 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00269 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00269:after { /* webkit #35443 */
  content: '';
}
.t_c00269:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00269 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00269 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00269 { /* info for Javascript */
  display:none;
}
.l_c00269 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00269 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00269 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00269:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00269{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00269;src:url('chunks/assets/font_763700b8095249679e1c9321.woff2')format("woff");}.ff1_c00269{font-family:ff1_c00269;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00269;src:url('chunks/assets/font_771e9fd3f3f80f01f4569565.woff2')format("woff");}.ff2_c00269{font-family:ff2_c00269;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00269;src:url('chunks/assets/font_823a5d6105334ddf2f230ea3.woff2')format("woff");}.ff3_c00269{font-family:ff3_c00269;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00269;src:url('chunks/assets/font_fcb18be4fc1a24df079df68c.woff2')format("woff");}.ff4_c00269{font-family:ff4_c00269;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00269;src:url('chunks/assets/font_29ad4bb6b9629df1e0aab017.woff2')format("woff");}.ff5_c00269{font-family:ff5_c00269;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00269;src:url('chunks/assets/font_c1ff1ab43f0191ce0d005571.woff2')format("woff");}.ff6_c00269{font-family:ff6_c00269;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00269;src:url('chunks/assets/font_d88c9cbaf4d5df621b649729.woff2')format("woff");}.ff7_c00269{font-family:ff7_c00269;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:ff8_c00269;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff8_c00269{font-family:ff8_c00269;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:ff9_c00269;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff9_c00269{font-family:ff9_c00269;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00269{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00269{vertical-align:0.000000px;}
.ls9_c00269{letter-spacing:-12.000000px;}
.ls7_c00269{letter-spacing:0.000000px;}
.ls3_c00269{letter-spacing:1.200000px;}
.ls1_c00269{letter-spacing:2.280000px;}
.ls4_c00269{letter-spacing:3.000000px;}
.ls8_c00269{letter-spacing:6.000000px;}
.ls0_c00269{letter-spacing:6.600000px;}
.ls2_c00269{letter-spacing:8.160000px;}
.ls6_c00269{letter-spacing:14.340000px;}
.lsa_c00269{letter-spacing:15.000000px;}
.ls5_c00269{letter-spacing:20.940000px;}
.sc__c00269{text-shadow:none;}
.sc0_c00269{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00269{-webkit-text-stroke:0px transparent;}
.sc0_c00269{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00269{word-spacing:-25.854000px;}
.ws5_c00269{word-spacing:-18.813000px;}
.ws4_c00269{word-spacing:-18.060000px;}
.ws1_c00269{word-spacing:-16.500000px;}
.ws0_c00269{word-spacing:-14.160000px;}
.ws6_c00269{word-spacing:0.000000px;}
.ws2_c00269{word-spacing:11.736000px;}
._2b_c00269{margin-left:-27.546000px;}
._2c_c00269{margin-left:-25.743000px;}
._2a_c00269{margin-left:-20.856000px;}
._2d_c00269{margin-left:-18.990000px;}
._24_c00269{margin-left:-15.393000px;}
._1a_c00269{margin-left:-14.160000px;}
._14_c00269{margin-left:-12.960000px;}
._2f_c00269{margin-left:-11.928000px;}
._13_c00269{margin-left:-10.560000px;}
._3_c00269{margin-left:-9.480000px;}
._2_c00269{margin-left:-7.860000px;}
._b_c00269{margin-left:-6.540000px;}
._19_c00269{margin-left:-4.920000px;}
._9_c00269{margin-left:-3.780000px;}
._10_c00269{margin-left:-2.760000px;}
._8_c00269{margin-left:-1.680000px;}
._0_c00269{width:1.620000px;}
._6_c00269{width:3.420000px;}
._5_c00269{width:4.500000px;}
._7_c00269{width:5.520000px;}
._4_c00269{width:6.540000px;}
._f_c00269{width:8.340000px;}
._11_c00269{width:9.900000px;}
._16_c00269{width:11.640000px;}
._c_c00269{width:13.440000px;}
._1e_c00269{width:14.538000px;}
._1_c00269{width:15.540000px;}
._e_c00269{width:16.920000px;}
._28_c00269{width:18.336000px;}
._17_c00269{width:19.500000px;}
._20_c00269{width:20.715000px;}
._d_c00269{width:21.960000px;}
._15_c00269{width:23.040000px;}
._1b_c00269{width:24.120000px;}
._1c_c00269{width:25.320000px;}
._2e_c00269{width:26.388000px;}
._22_c00269{width:28.833000px;}
._12_c00269{width:30.180000px;}
._a_c00269{width:32.040000px;}
._27_c00269{width:34.266000px;}
._1d_c00269{width:35.826000px;}
._23_c00269{width:39.303000px;}
._26_c00269{width:44.457000px;}
._21_c00269{width:46.284000px;}
._25_c00269{width:48.030000px;}
._29_c00269{width:97.608000px;}
._1f_c00269{width:132.147000px;}
._18_c00269{width:167.760000px;}
.fc2_c00269{color:transparent;}
.fc1_c00269{color:rgb(128,128,128);}
.fc0_c00269{color:rgb(0,0,0);}
.fs6_c00269{font-size:48.000000px;}
.fs1_c00269{font-size:54.000000px;}
.fs0_c00269{font-size:60.000000px;}
.fs2_c00269{font-size:63.000000px;}
.fs3_c00269{font-size:66.000000px;}
.fs4_c00269{font-size:72.000000px;}
.fs5_c00269{font-size:93.000000px;}
.y0_c00269{bottom:0.000000px;}
.y55_c00269{bottom:3.105000px;}
.y54_c00269{bottom:7.228363px;}
.y53_c00269{bottom:44.100000px;}
.y52_c00269{bottom:62.100000px;}
.y29_c00269{bottom:65.100000px;}
.y51_c00269{bottom:80.700000px;}
.y28_c00269{bottom:84.150000px;}
.y50_c00269{bottom:98.850000px;}
.y27_c00269{bottom:102.300000px;}
.y4f_c00269{bottom:116.700000px;}
.y26_c00269{bottom:120.450000px;}
.y4e_c00269{bottom:135.000000px;}
.y25_c00269{bottom:139.350000px;}
.y4d_c00269{bottom:153.600000px;}
.y24_c00269{bottom:157.200000px;}
.y4c_c00269{bottom:171.450000px;}
.y23_c00269{bottom:175.800000px;}
.y4b_c00269{bottom:189.900000px;}
.y22_c00269{bottom:193.350000px;}
.y4a_c00269{bottom:208.200000px;}
.y21_c00269{bottom:211.650000px;}
.y49_c00269{bottom:226.800000px;}
.y20_c00269{bottom:230.100000px;}
.y48_c00269{bottom:244.950000px;}
.y1f_c00269{bottom:249.000000px;}
.y47_c00269{bottom:263.250000px;}
.y1e_c00269{bottom:267.000000px;}
.y46_c00269{bottom:281.100000px;}
.y1d_c00269{bottom:285.750000px;}
.y45_c00269{bottom:300.300000px;}
.y1c_c00269{bottom:303.450000px;}
.y44_c00269{bottom:318.300000px;}
.y1b_c00269{bottom:320.850000px;}
.y43_c00269{bottom:335.850000px;}
.y1a_c00269{bottom:339.900000px;}
.y42_c00269{bottom:354.300000px;}
.y19_c00269{bottom:358.650000px;}
.y41_c00269{bottom:372.300000px;}
.y18_c00269{bottom:376.200000px;}
.y40_c00269{bottom:390.450000px;}
.y17_c00269{bottom:394.200000px;}
.y3f_c00269{bottom:409.350000px;}
.y16_c00269{bottom:411.750000px;}
.y3e_c00269{bottom:427.650000px;}
.y15_c00269{bottom:430.800000px;}
.y3d_c00269{bottom:446.100000px;}
.y14_c00269{bottom:448.800000px;}
.y3c_c00269{bottom:463.950000px;}
.y13_c00269{bottom:466.800000px;}
.y3b_c00269{bottom:482.250000px;}
.y12_c00269{bottom:485.100000px;}
.y3a_c00269{bottom:501.000000px;}
.y11_c00269{bottom:503.250000px;}
.y39_c00269{bottom:519.000000px;}
.y10_c00269{bottom:521.400000px;}
.y38_c00269{bottom:537.000000px;}
.yf_c00269{bottom:539.700000px;}
.y37_c00269{bottom:555.900000px;}
.ye_c00269{bottom:557.550000px;}
.y36_c00269{bottom:574.050000px;}
.yd_c00269{bottom:575.850000px;}
.y35_c00269{bottom:592.950000px;}
.yc_c00269{bottom:593.100000px;}
.y34_c00269{bottom:610.800000px;}
.yb_c00269{bottom:612.000000px;}
.y33_c00269{bottom:629.100000px;}
.ya_c00269{bottom:629.850000px;}
.y32_c00269{bottom:647.700000px;}
.y9_c00269{bottom:648.300000px;}
.y8_c00269{bottom:666.000000px;}
.y31_c00269{bottom:666.150000px;}
.y30_c00269{bottom:684.000000px;}
.y7_c00269{bottom:684.900000px;}
.y2f_c00269{bottom:702.600000px;}
.y6_c00269{bottom:702.750000px;}
.y2e_c00269{bottom:720.450000px;}
.y5_c00269{bottom:721.200000px;}
.y2d_c00269{bottom:737.400000px;}
.y4_c00269{bottom:739.050000px;}
.y2c_c00269{bottom:756.600000px;}
.y3_c00269{bottom:757.050000px;}
.y2b_c00269{bottom:774.900000px;}
.y2_c00269{bottom:775.200000px;}
.y2a_c00269{bottom:792.450000px;}
.y1_c00269{bottom:793.050000px;}
.h8_c00269{height:13.200074px;}
.h9_c00269{height:43.804688px;}
.h1_c00269{height:62.880000px;}
.h2_c00269{height:64.020000px;}
.h7_c00269{height:66.024000px;}
.h3_c00269{height:67.221000px;}
.h4_c00269{height:70.422000px;}
.h5_c00269{height:70.664062px;}
.h6_c00269{height:96.996094px;}
.h0_c00269{height:843.750000px;}
.w2_c00269{width:104.875500px;}
.w1_c00269{width:565.500000px;}
.w0_c00269{width:565.650000px;}
.x0_c00269{left:0.000000px;}
.x1_c00269{left:96.450000px;}
.x2_c00269{left:98.100000px;}
.x3_c00269{left:99.150000px;}
.x4_c00269{left:100.500000px;}
.xb_c00269{left:234.639267px;}
.x9_c00269{left:313.950000px;}
.x7_c00269{left:315.150000px;}
.x5_c00269{left:316.200000px;}
.x8_c00269{left:317.250000px;}
.x6_c00269{left:318.300000px;}
.xa_c00269{left:485.400000px;}
@media print{
.v0_c00269{vertical-align:0.000000pt;}
.ls9_c00269{letter-spacing:-10.666667pt;}
.ls7_c00269{letter-spacing:0.000000pt;}
.ls3_c00269{letter-spacing:1.066667pt;}
.ls1_c00269{letter-spacing:2.026667pt;}
.ls4_c00269{letter-spacing:2.666667pt;}
.ls8_c00269{letter-spacing:5.333333pt;}
.ls0_c00269{letter-spacing:5.866667pt;}
.ls2_c00269{letter-spacing:7.253333pt;}
.ls6_c00269{letter-spacing:12.746667pt;}
.lsa_c00269{letter-spacing:13.333333pt;}
.ls5_c00269{letter-spacing:18.613333pt;}
.ws3_c00269{word-spacing:-22.981333pt;}
.ws5_c00269{word-spacing:-16.722667pt;}
.ws4_c00269{word-spacing:-16.053333pt;}
.ws1_c00269{word-spacing:-14.666667pt;}
.ws0_c00269{word-spacing:-12.586667pt;}
.ws6_c00269{word-spacing:0.000000pt;}
.ws2_c00269{word-spacing:10.432000pt;}
._2b_c00269{margin-left:-24.485333pt;}
._2c_c00269{margin-left:-22.882667pt;}
._2a_c00269{margin-left:-18.538667pt;}
._2d_c00269{margin-left:-16.880000pt;}
._24_c00269{margin-left:-13.682667pt;}
._1a_c00269{margin-left:-12.586667pt;}
._14_c00269{margin-left:-11.520000pt;}
._2f_c00269{margin-left:-10.602667pt;}
._13_c00269{margin-left:-9.386667pt;}
._3_c00269{margin-left:-8.426667pt;}
._2_c00269{margin-left:-6.986667pt;}
._b_c00269{margin-left:-5.813333pt;}
._19_c00269{margin-left:-4.373333pt;}
._9_c00269{margin-left:-3.360000pt;}
._10_c00269{margin-left:-2.453333pt;}
._8_c00269{margin-left:-1.493333pt;}
._0_c00269{width:1.440000pt;}
._6_c00269{width:3.040000pt;}
._5_c00269{width:4.000000pt;}
._7_c00269{width:4.906667pt;}
._4_c00269{width:5.813333pt;}
._f_c00269{width:7.413333pt;}
._11_c00269{width:8.800000pt;}
._16_c00269{width:10.346667pt;}
._c_c00269{width:11.946667pt;}
._1e_c00269{width:12.922667pt;}
._1_c00269{width:13.813333pt;}
._e_c00269{width:15.040000pt;}
._28_c00269{width:16.298667pt;}
._17_c00269{width:17.333333pt;}
._20_c00269{width:18.413333pt;}
._d_c00269{width:19.520000pt;}
._15_c00269{width:20.480000pt;}
._1b_c00269{width:21.440000pt;}
._1c_c00269{width:22.506667pt;}
._2e_c00269{width:23.456000pt;}
._22_c00269{width:25.629333pt;}
._12_c00269{width:26.826667pt;}
._a_c00269{width:28.480000pt;}
._27_c00269{width:30.458667pt;}
._1d_c00269{width:31.845333pt;}
._23_c00269{width:34.936000pt;}
._26_c00269{width:39.517333pt;}
._21_c00269{width:41.141333pt;}
._25_c00269{width:42.693333pt;}
._29_c00269{width:86.762667pt;}
._1f_c00269{width:117.464000pt;}
._18_c00269{width:149.120000pt;}
.fs6_c00269{font-size:42.666667pt;}
.fs1_c00269{font-size:48.000000pt;}
.fs0_c00269{font-size:53.333333pt;}
.fs2_c00269{font-size:56.000000pt;}
.fs3_c00269{font-size:58.666667pt;}
.fs4_c00269{font-size:64.000000pt;}
.fs5_c00269{font-size:82.666667pt;}
.y0_c00269{bottom:0.000000pt;}
.y55_c00269{bottom:2.760000pt;}
.y54_c00269{bottom:6.425212pt;}
.y53_c00269{bottom:39.200000pt;}
.y52_c00269{bottom:55.200000pt;}
.y29_c00269{bottom:57.866667pt;}
.y51_c00269{bottom:71.733333pt;}
.y28_c00269{bottom:74.800000pt;}
.y50_c00269{bottom:87.866667pt;}
.y27_c00269{bottom:90.933333pt;}
.y4f_c00269{bottom:103.733333pt;}
.y26_c00269{bottom:107.066667pt;}
.y4e_c00269{bottom:120.000000pt;}
.y25_c00269{bottom:123.866667pt;}
.y4d_c00269{bottom:136.533333pt;}
.y24_c00269{bottom:139.733333pt;}
.y4c_c00269{bottom:152.400000pt;}
.y23_c00269{bottom:156.266667pt;}
.y4b_c00269{bottom:168.800000pt;}
.y22_c00269{bottom:171.866667pt;}
.y4a_c00269{bottom:185.066667pt;}
.y21_c00269{bottom:188.133333pt;}
.y49_c00269{bottom:201.600000pt;}
.y20_c00269{bottom:204.533333pt;}
.y48_c00269{bottom:217.733333pt;}
.y1f_c00269{bottom:221.333333pt;}
.y47_c00269{bottom:234.000000pt;}
.y1e_c00269{bottom:237.333333pt;}
.y46_c00269{bottom:249.866667pt;}
.y1d_c00269{bottom:254.000000pt;}
.y45_c00269{bottom:266.933333pt;}
.y1c_c00269{bottom:269.733333pt;}
.y44_c00269{bottom:282.933333pt;}
.y1b_c00269{bottom:285.200000pt;}
.y43_c00269{bottom:298.533333pt;}
.y1a_c00269{bottom:302.133333pt;}
.y42_c00269{bottom:314.933333pt;}
.y19_c00269{bottom:318.800000pt;}
.y41_c00269{bottom:330.933333pt;}
.y18_c00269{bottom:334.400000pt;}
.y40_c00269{bottom:347.066667pt;}
.y17_c00269{bottom:350.400000pt;}
.y3f_c00269{bottom:363.866667pt;}
.y16_c00269{bottom:366.000000pt;}
.y3e_c00269{bottom:380.133333pt;}
.y15_c00269{bottom:382.933333pt;}
.y3d_c00269{bottom:396.533333pt;}
.y14_c00269{bottom:398.933333pt;}
.y3c_c00269{bottom:412.400000pt;}
.y13_c00269{bottom:414.933333pt;}
.y3b_c00269{bottom:428.666667pt;}
.y12_c00269{bottom:431.200000pt;}
.y3a_c00269{bottom:445.333333pt;}
.y11_c00269{bottom:447.333333pt;}
.y39_c00269{bottom:461.333333pt;}
.y10_c00269{bottom:463.466667pt;}
.y38_c00269{bottom:477.333333pt;}
.yf_c00269{bottom:479.733333pt;}
.y37_c00269{bottom:494.133333pt;}
.ye_c00269{bottom:495.600000pt;}
.y36_c00269{bottom:510.266667pt;}
.yd_c00269{bottom:511.866667pt;}
.y35_c00269{bottom:527.066667pt;}
.yc_c00269{bottom:527.200000pt;}
.y34_c00269{bottom:542.933333pt;}
.yb_c00269{bottom:544.000000pt;}
.y33_c00269{bottom:559.200000pt;}
.ya_c00269{bottom:559.866667pt;}
.y32_c00269{bottom:575.733333pt;}
.y9_c00269{bottom:576.266667pt;}
.y8_c00269{bottom:592.000000pt;}
.y31_c00269{bottom:592.133333pt;}
.y30_c00269{bottom:608.000000pt;}
.y7_c00269{bottom:608.800000pt;}
.y2f_c00269{bottom:624.533333pt;}
.y6_c00269{bottom:624.666667pt;}
.y2e_c00269{bottom:640.400000pt;}
.y5_c00269{bottom:641.066667pt;}
.y2d_c00269{bottom:655.466667pt;}
.y4_c00269{bottom:656.933333pt;}
.y2c_c00269{bottom:672.533333pt;}
.y3_c00269{bottom:672.933333pt;}
.y2b_c00269{bottom:688.800000pt;}
.y2_c00269{bottom:689.066667pt;}
.y2a_c00269{bottom:704.400000pt;}
.y1_c00269{bottom:704.933333pt;}
.h8_c00269{height:11.733399pt;}
.h9_c00269{height:38.937500pt;}
.h1_c00269{height:55.893333pt;}
.h2_c00269{height:56.906667pt;}
.h7_c00269{height:58.688000pt;}
.h3_c00269{height:59.752000pt;}
.h4_c00269{height:62.597333pt;}
.h5_c00269{height:62.812500pt;}
.h6_c00269{height:86.218750pt;}
.h0_c00269{height:750.000000pt;}
.w2_c00269{width:93.222667pt;}
.w1_c00269{width:502.666667pt;}
.w0_c00269{width:502.800000pt;}
.x0_c00269{left:0.000000pt;}
.x1_c00269{left:85.733333pt;}
.x2_c00269{left:87.200000pt;}
.x3_c00269{left:88.133333pt;}
.x4_c00269{left:89.333333pt;}
.xb_c00269{left:208.568237pt;}
.x9_c00269{left:279.066667pt;}
.x7_c00269{left:280.133333pt;}
.x5_c00269{left:281.066667pt;}
.x8_c00269{left:282.000000pt;}
.x6_c00269{left:282.933333pt;}
.xa_c00269{left:431.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_51074ace6e34fda1c1288c51.woff2')format("woff");}.ff1_c00270{font-family:ff1_c00270;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00270;src:url('chunks/assets/font_6044216e9bcf099d8a7cc768.woff2')format("woff");}.ff2_c00270{font-family:ff2_c00270;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00270;src:url('chunks/assets/font_79e1d3bf3768c578a046ad00.woff2')format("woff");}.ff3_c00270{font-family:ff3_c00270;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00270;src:url('chunks/assets/font_11da83b479fa630a7e182222.woff2')format("woff");}.ff4_c00270{font-family:ff4_c00270;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00270;src:url('chunks/assets/font_5ceaf7665a321b46b9b0f4de.woff2')format("woff");}.ff5_c00270{font-family:ff5_c00270;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00270;src:url('chunks/assets/font_0ce391de997f24f9f9dd37f4.woff2')format("woff");}.ff6_c00270{font-family:ff6_c00270;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00270;src:url('chunks/assets/font_7bd6ee330f1d33c06ec76a7b.woff2')format("woff");}.ff7_c00270{font-family:ff7_c00270;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00270;src:url('chunks/assets/font_96d5e27e3471c49fa39ee5ab.woff2')format("woff");}.ff8_c00270{font-family:ff8_c00270;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00270;src:url('chunks/assets/font_abde25d96b00d325cc44b882.woff2')format("woff");}.ff9_c00270{font-family:ff9_c00270;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00270;src:url('chunks/assets/font_373acdc9adc7f7aa98419b70.woff2')format("woff");}.ffa_c00270{font-family:ffa_c00270;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00270;src:url('chunks/assets/font_629f15e88fdfa113d042c48e.woff2')format("woff");}.ffb_c00270{font-family:ffb_c00270;line-height:1.012793;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc_c00270;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ffc_c00270{font-family:ffc_c00270;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00270{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00270{vertical-align:-75.600000px;}
.v0_c00270{vertical-align:0.000000px;}
.v1_c00270{vertical-align:88.200000px;}
.ls6_c00270{letter-spacing:0.000000px;}
.ls0_c00270{letter-spacing:3.000000px;}
.ls5_c00270{letter-spacing:6.000000px;}
.ls4_c00270{letter-spacing:9.000000px;}
.ls3_c00270{letter-spacing:14.940000px;}
.ls2_c00270{letter-spacing:21.384000px;}
.ls1_c00270{letter-spacing:67.395000px;}
.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:-48.780000px;}
.ws8_c00270{word-spacing:-39.780000px;}
.ws5_c00270{word-spacing:-35.295000px;}
.ws9_c00270{word-spacing:-32.424000px;}
.ws7_c00270{word-spacing:-23.895000px;}
.ws6_c00270{word-spacing:-20.340000px;}
.wsa_c00270{word-spacing:-18.060000px;}
.ws3_c00270{word-spacing:-18.000000px;}
.ws4_c00270{word-spacing:-14.160000px;}
.ws1_c00270{word-spacing:-0.072000px;}
.ws2_c00270{word-spacing:-0.057600px;}
.wsb_c00270{word-spacing:0.000000px;}
._18_c00270{margin-left:-21.384000px;}
._2d_c00270{margin-left:-19.497000px;}
._3_c00270{margin-left:-15.438000px;}
._0_c00270{margin-left:-12.834000px;}
._1_c00270{margin-left:-11.253000px;}
._28_c00270{margin-left:-9.324000px;}
._26_c00270{margin-left:-7.794000px;}
._2_c00270{margin-left:-6.696000px;}
._14_c00270{margin-left:-5.370000px;}
._4_c00270{margin-left:-4.278000px;}
._13_c00270{margin-left:-2.826000px;}
._f_c00270{margin-left:-1.500000px;}
._12_c00270{width:1.080000px;}
._7_c00270{width:2.100000px;}
._9_c00270{width:3.240000px;}
._b_c00270{width:4.752000px;}
._8_c00270{width:5.940000px;}
._6_c00270{width:7.428000px;}
._e_c00270{width:8.880000px;}
._10_c00270{width:10.500000px;}
._11_c00270{width:11.868000px;}
._a_c00270{width:13.680000px;}
._d_c00270{width:14.820000px;}
._2a_c00270{width:16.896000px;}
._27_c00270{width:18.576000px;}
._19_c00270{width:20.004000px;}
._17_c00270{width:21.636000px;}
._16_c00270{width:23.280000px;}
._29_c00270{width:24.720000px;}
._1a_c00270{width:25.764000px;}
._20_c00270{width:27.420000px;}
._2b_c00270{width:29.208000px;}
._15_c00270{width:30.780000px;}
._1e_c00270{width:32.508000px;}
._24_c00270{width:33.756000px;}
._1f_c00270{width:34.980000px;}
._1b_c00270{width:37.758000px;}
._1d_c00270{width:38.901000px;}
._22_c00270{width:42.240000px;}
._1c_c00270{width:48.516000px;}
._25_c00270{width:54.606000px;}
._c_c00270{width:70.236000px;}
._2c_c00270{width:116.604000px;}
._21_c00270{width:124.206000px;}
._2e_c00270{width:126.252000px;}
._23_c00270{width:307.440000px;}
._5_c00270{width:400.923000px;}
.fc2_c00270{color:transparent;}
.fc1_c00270{color:rgb(128,128,128);}
.fc0_c00270{color:rgb(0,0,0);}
.fs7_c00270{font-size:45.000000px;}
.fs8_c00270{font-size:48.000000px;}
.fs5_c00270{font-size:54.000000px;}
.fs4_c00270{font-size:57.600000px;}
.fs2_c00270{font-size:60.000000px;}
.fs1_c00270{font-size:69.000000px;}
.fs3_c00270{font-size:72.000000px;}
.fs0_c00270{font-size:93.000000px;}
.fs6_c00270{font-size:123.000000px;}
.y0_c00270{bottom:0.000000px;}
.y51_c00270{bottom:3.105000px;}
.y50_c00270{bottom:7.228371px;}
.y4f_c00270{bottom:51.615000px;}
.y27_c00270{bottom:52.365000px;}
.y4e_c00270{bottom:70.215000px;}
.y26_c00270{bottom:71.565000px;}
.y4d_c00270{bottom:88.215000px;}
.y25_c00270{bottom:89.415000px;}
.y4c_c00270{bottom:106.965000px;}
.y24_c00270{bottom:108.015000px;}
.y4b_c00270{bottom:124.665000px;}
.y23_c00270{bottom:126.315000px;}
.y4a_c00270{bottom:142.215000px;}
.y22_c00270{bottom:144.165000px;}
.y49_c00270{bottom:160.965000px;}
.y21_c00270{bottom:162.315000px;}
.y48_c00270{bottom:179.265000px;}
.y20_c00270{bottom:180.615000px;}
.y47_c00270{bottom:197.415000px;}
.y1f_c00270{bottom:198.465000px;}
.y46_c00270{bottom:215.415000px;}
.y1e_c00270{bottom:216.465000px;}
.y45_c00270{bottom:233.265000px;}
.y1d_c00270{bottom:233.565000px;}
.y44_c00270{bottom:251.565000px;}
.y1c_c00270{bottom:252.465000px;}
.y1a_c00270{bottom:266.265000px;}
.y43_c00270{bottom:269.715000px;}
.y1b_c00270{bottom:270.015000px;}
.y42_c00270{bottom:287.565000px;}
.y41_c00270{bottom:305.565000px;}
.y19_c00270{bottom:323.715000px;}
.y40_c00270{bottom:324.015000px;}
.y18_c00270{bottom:342.015000px;}
.y3f_c00270{bottom:342.315000px;}
.y3e_c00270{bottom:360.465000px;}
.y17_c00270{bottom:360.765000px;}
.y16_c00270{bottom:378.465000px;}
.y3d_c00270{bottom:379.065000px;}
.y3c_c00270{bottom:396.915000px;}
.y15_c00270{bottom:410.715000px;}
.y3b_c00270{bottom:414.465000px;}
.y3a_c00270{bottom:433.365000px;}
.y14_c00270{bottom:446.865000px;}
.y39_c00270{bottom:451.365000px;}
.y13_c00270{bottom:467.415000px;}
.y38_c00270{bottom:469.815000px;}
.y12_c00270{bottom:485.415000px;}
.y37_c00270{bottom:487.365000px;}
.y11_c00270{bottom:503.865000px;}
.y36_c00270{bottom:505.665000px;}
.y10_c00270{bottom:521.415000px;}
.y35_c00270{bottom:524.115000px;}
.yf_c00270{bottom:539.415000px;}
.y34_c00270{bottom:542.415000px;}
.ye_c00270{bottom:557.265000px;}
.y33_c00270{bottom:560.265000px;}
.yd_c00270{bottom:574.815000px;}
.y32_c00270{bottom:578.265000px;}
.yc_c00270{bottom:593.415000px;}
.y31_c00270{bottom:595.065000px;}
.yb_c00270{bottom:611.265000px;}
.y30_c00270{bottom:614.565000px;}
.ya_c00270{bottom:629.415000px;}
.y2f_c00270{bottom:631.815000px;}
.y9_c00270{bottom:647.115000px;}
.y2e_c00270{bottom:650.715000px;}
.y8_c00270{bottom:665.565000px;}
.y2d_c00270{bottom:668.715000px;}
.y7_c00270{bottom:683.415000px;}
.y2c_c00270{bottom:686.115000px;}
.y6_c00270{bottom:701.715000px;}
.y2b_c00270{bottom:704.715000px;}
.y5_c00270{bottom:719.565000px;}
.y2a_c00270{bottom:722.265000px;}
.y4_c00270{bottom:737.115000px;}
.y29_c00270{bottom:740.265000px;}
.y3_c00270{bottom:755.115000px;}
.y28_c00270{bottom:759.015000px;}
.y2_c00270{bottom:774.915000px;}
.y1_c00270{bottom:796.815000px;}
.h8_c00270{height:13.200074px;}
.h9_c00270{height:43.804688px;}
.h5_c00270{height:56.592000px;}
.h3_c00270{height:62.880000px;}
.h7_c00270{height:64.020000px;}
.h4_c00270{height:70.664062px;}
.h2_c00270{height:91.274414px;}
.h6_c00270{height:151.080000px;}
.h1_c00270{height:836.250000px;}
.h0_c00270{height:836.475000px;}
.w2_c00270{width:104.875500px;}
.w0_c00270{width:586.425000px;}
.w1_c00270{width:586.500000px;}
.x0_c00270{left:0.000000px;}
.xd_c00270{left:18.000000px;}
.xe_c00270{left:75.300000px;}
.x2_c00270{left:76.500000px;}
.x4_c00270{left:77.700000px;}
.x3_c00270{left:78.750000px;}
.x6_c00270{left:79.950000px;}
.x7_c00270{left:81.000000px;}
.xa_c00270{left:105.750000px;}
.xc_c00270{left:126.300000px;}
.x5_c00270{left:127.950000px;}
.x8_c00270{left:150.600000px;}
.xb_c00270{left:158.700000px;}
.x9_c00270{left:187.950000px;}
.x1_c00270{left:220.350000px;}
.x14_c00270{left:245.026749px;}
.x13_c00270{left:289.950000px;}
.x12_c00270{left:291.300000px;}
.x10_c00270{left:292.350000px;}
.x11_c00270{left:294.300000px;}
.xf_c00270{left:295.350000px;}
@media print{
.v2_c00270{vertical-align:-67.200000pt;}
.v0_c00270{vertical-align:0.000000pt;}
.v1_c00270{vertical-align:78.400000pt;}
.ls6_c00270{letter-spacing:0.000000pt;}
.ls0_c00270{letter-spacing:2.666667pt;}
.ls5_c00270{letter-spacing:5.333333pt;}
.ls4_c00270{letter-spacing:8.000000pt;}
.ls3_c00270{letter-spacing:13.280000pt;}
.ls2_c00270{letter-spacing:19.008000pt;}
.ls1_c00270{letter-spacing:59.906667pt;}
.ws0_c00270{word-spacing:-43.360000pt;}
.ws8_c00270{word-spacing:-35.360000pt;}
.ws5_c00270{word-spacing:-31.373333pt;}
.ws9_c00270{word-spacing:-28.821333pt;}
.ws7_c00270{word-spacing:-21.240000pt;}
.ws6_c00270{word-spacing:-18.080000pt;}
.wsa_c00270{word-spacing:-16.053333pt;}
.ws3_c00270{word-spacing:-16.000000pt;}
.ws4_c00270{word-spacing:-12.586667pt;}
.ws1_c00270{word-spacing:-0.064000pt;}
.ws2_c00270{word-spacing:-0.051200pt;}
.wsb_c00270{word-spacing:0.000000pt;}
._18_c00270{margin-left:-19.008000pt;}
._2d_c00270{margin-left:-17.330667pt;}
._3_c00270{margin-left:-13.722667pt;}
._0_c00270{margin-left:-11.408000pt;}
._1_c00270{margin-left:-10.002667pt;}
._28_c00270{margin-left:-8.288000pt;}
._26_c00270{margin-left:-6.928000pt;}
._2_c00270{margin-left:-5.952000pt;}
._14_c00270{margin-left:-4.773333pt;}
._4_c00270{margin-left:-3.802667pt;}
._13_c00270{margin-left:-2.512000pt;}
._f_c00270{margin-left:-1.333333pt;}
._12_c00270{width:0.960000pt;}
._7_c00270{width:1.866667pt;}
._9_c00270{width:2.880000pt;}
._b_c00270{width:4.224000pt;}
._8_c00270{width:5.280000pt;}
._6_c00270{width:6.602667pt;}
._e_c00270{width:7.893333pt;}
._10_c00270{width:9.333333pt;}
._11_c00270{width:10.549333pt;}
._a_c00270{width:12.160000pt;}
._d_c00270{width:13.173333pt;}
._2a_c00270{width:15.018667pt;}
._27_c00270{width:16.512000pt;}
._19_c00270{width:17.781333pt;}
._17_c00270{width:19.232000pt;}
._16_c00270{width:20.693333pt;}
._29_c00270{width:21.973333pt;}
._1a_c00270{width:22.901333pt;}
._20_c00270{width:24.373333pt;}
._2b_c00270{width:25.962667pt;}
._15_c00270{width:27.360000pt;}
._1e_c00270{width:28.896000pt;}
._24_c00270{width:30.005333pt;}
._1f_c00270{width:31.093333pt;}
._1b_c00270{width:33.562667pt;}
._1d_c00270{width:34.578667pt;}
._22_c00270{width:37.546667pt;}
._1c_c00270{width:43.125333pt;}
._25_c00270{width:48.538667pt;}
._c_c00270{width:62.432000pt;}
._2c_c00270{width:103.648000pt;}
._21_c00270{width:110.405333pt;}
._2e_c00270{width:112.224000pt;}
._23_c00270{width:273.280000pt;}
._5_c00270{width:356.376000pt;}
.fs7_c00270{font-size:40.000000pt;}
.fs8_c00270{font-size:42.666667pt;}
.fs5_c00270{font-size:48.000000pt;}
.fs4_c00270{font-size:51.200000pt;}
.fs2_c00270{font-size:53.333333pt;}
.fs1_c00270{font-size:61.333333pt;}
.fs3_c00270{font-size:64.000000pt;}
.fs0_c00270{font-size:82.666667pt;}
.fs6_c00270{font-size:109.333333pt;}
.y0_c00270{bottom:0.000000pt;}
.y51_c00270{bottom:2.760000pt;}
.y50_c00270{bottom:6.425219pt;}
.y4f_c00270{bottom:45.880000pt;}
.y27_c00270{bottom:46.546667pt;}
.y4e_c00270{bottom:62.413333pt;}
.y26_c00270{bottom:63.613333pt;}
.y4d_c00270{bottom:78.413333pt;}
.y25_c00270{bottom:79.480000pt;}
.y4c_c00270{bottom:95.080000pt;}
.y24_c00270{bottom:96.013333pt;}
.y4b_c00270{bottom:110.813333pt;}
.y23_c00270{bottom:112.280000pt;}
.y4a_c00270{bottom:126.413333pt;}
.y22_c00270{bottom:128.146667pt;}
.y49_c00270{bottom:143.080000pt;}
.y21_c00270{bottom:144.280000pt;}
.y48_c00270{bottom:159.346667pt;}
.y20_c00270{bottom:160.546667pt;}
.y47_c00270{bottom:175.480000pt;}
.y1f_c00270{bottom:176.413333pt;}
.y46_c00270{bottom:191.480000pt;}
.y1e_c00270{bottom:192.413333pt;}
.y45_c00270{bottom:207.346667pt;}
.y1d_c00270{bottom:207.613333pt;}
.y44_c00270{bottom:223.613333pt;}
.y1c_c00270{bottom:224.413333pt;}
.y1a_c00270{bottom:236.680000pt;}
.y43_c00270{bottom:239.746667pt;}
.y1b_c00270{bottom:240.013333pt;}
.y42_c00270{bottom:255.613333pt;}
.y41_c00270{bottom:271.613333pt;}
.y19_c00270{bottom:287.746667pt;}
.y40_c00270{bottom:288.013333pt;}
.y18_c00270{bottom:304.013333pt;}
.y3f_c00270{bottom:304.280000pt;}
.y3e_c00270{bottom:320.413333pt;}
.y17_c00270{bottom:320.680000pt;}
.y16_c00270{bottom:336.413333pt;}
.y3d_c00270{bottom:336.946667pt;}
.y3c_c00270{bottom:352.813333pt;}
.y15_c00270{bottom:365.080000pt;}
.y3b_c00270{bottom:368.413333pt;}
.y3a_c00270{bottom:385.213333pt;}
.y14_c00270{bottom:397.213333pt;}
.y39_c00270{bottom:401.213333pt;}
.y13_c00270{bottom:415.480000pt;}
.y38_c00270{bottom:417.613333pt;}
.y12_c00270{bottom:431.480000pt;}
.y37_c00270{bottom:433.213333pt;}
.y11_c00270{bottom:447.880000pt;}
.y36_c00270{bottom:449.480000pt;}
.y10_c00270{bottom:463.480000pt;}
.y35_c00270{bottom:465.880000pt;}
.yf_c00270{bottom:479.480000pt;}
.y34_c00270{bottom:482.146667pt;}
.ye_c00270{bottom:495.346667pt;}
.y33_c00270{bottom:498.013333pt;}
.yd_c00270{bottom:510.946667pt;}
.y32_c00270{bottom:514.013333pt;}
.yc_c00270{bottom:527.480000pt;}
.y31_c00270{bottom:528.946667pt;}
.yb_c00270{bottom:543.346667pt;}
.y30_c00270{bottom:546.280000pt;}
.ya_c00270{bottom:559.480000pt;}
.y2f_c00270{bottom:561.613333pt;}
.y9_c00270{bottom:575.213333pt;}
.y2e_c00270{bottom:578.413333pt;}
.y8_c00270{bottom:591.613333pt;}
.y2d_c00270{bottom:594.413333pt;}
.y7_c00270{bottom:607.480000pt;}
.y2c_c00270{bottom:609.880000pt;}
.y6_c00270{bottom:623.746667pt;}
.y2b_c00270{bottom:626.413333pt;}
.y5_c00270{bottom:639.613333pt;}
.y2a_c00270{bottom:642.013333pt;}
.y4_c00270{bottom:655.213333pt;}
.y29_c00270{bottom:658.013333pt;}
.y3_c00270{bottom:671.213333pt;}
.y28_c00270{bottom:674.680000pt;}
.y2_c00270{bottom:688.813333pt;}
.y1_c00270{bottom:708.280000pt;}
.h8_c00270{height:11.733399pt;}
.h9_c00270{height:38.937500pt;}
.h5_c00270{height:50.304000pt;}
.h3_c00270{height:55.893333pt;}
.h7_c00270{height:56.906667pt;}
.h4_c00270{height:62.812500pt;}
.h2_c00270{height:81.132812pt;}
.h6_c00270{height:134.293333pt;}
.h1_c00270{height:743.333333pt;}
.h0_c00270{height:743.533333pt;}
.w2_c00270{width:93.222667pt;}
.w0_c00270{width:521.266667pt;}
.w1_c00270{width:521.333333pt;}
.x0_c00270{left:0.000000pt;}
.xd_c00270{left:16.000000pt;}
.xe_c00270{left:66.933333pt;}
.x2_c00270{left:68.000000pt;}
.x4_c00270{left:69.066667pt;}
.x3_c00270{left:70.000000pt;}
.x6_c00270{left:71.066667pt;}
.x7_c00270{left:72.000000pt;}
.xa_c00270{left:94.000000pt;}
.xc_c00270{left:112.266667pt;}
.x5_c00270{left:113.733333pt;}
.x8_c00270{left:133.866667pt;}
.xb_c00270{left:141.066667pt;}
.x9_c00270{left:167.066667pt;}
.x1_c00270{left:195.866667pt;}
.x14_c00270{left:217.801554pt;}
.x13_c00270{left:257.733333pt;}
.x12_c00270{left:258.933333pt;}
.x10_c00270{left:259.866667pt;}
.x11_c00270{left:261.600000pt;}
.xf_c00270{left:262.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_983fa4fb3eb865b33af903d5.woff2')format("woff");}.ff1_c00271{font-family:ff1_c00271;line-height:1.437000;font-style:normal;font-weight:normal;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_6903eda1dc1fe8c0881de7ee.woff2')format("woff");}.ff2_c00271{font-family:ff2_c00271;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00271;src:url('chunks/assets/font_5c356a7d81f13f6f3c808b06.woff2')format("woff");}.ff3_c00271{font-family:ff3_c00271;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00271;src:url('chunks/assets/font_37624a2f9fcc170b5b725886.woff2')format("woff");}.ff4_c00271{font-family:ff4_c00271;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00271;src:url('chunks/assets/font_4bdeb1fed3773112b28b6adf.woff2')format("woff");}.ff5_c00271{font-family:ff5_c00271;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00271;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff6_c00271{font-family:ff6_c00271;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00271{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00271{vertical-align:0.000000px;}
.lsc_c00271{letter-spacing:0.000000px;}
.ls0_c00271{letter-spacing:3.000000px;}
.ls8_c00271{letter-spacing:4.800000px;}
.ls5_c00271{letter-spacing:6.300000px;}
.lsb_c00271{letter-spacing:6.600000px;}
.ls7_c00271{letter-spacing:7.800000px;}
.ls4_c00271{letter-spacing:8.493000px;}
.ls1_c00271{letter-spacing:9.000000px;}
.ls3_c00271{letter-spacing:12.900000px;}
.ls6_c00271{letter-spacing:19.500000px;}
.ls2_c00271{letter-spacing:20.400000px;}
.lsa_c00271{letter-spacing:22.800000px;}
.ls9_c00271{letter-spacing:27.840000px;}
.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;}
}
.ws3_c00271{word-spacing:-18.060000px;}
.ws4_c00271{word-spacing:-18.000000px;}
.ws5_c00271{word-spacing:-17.340000px;}
.ws2_c00271{word-spacing:-14.868000px;}
.ws0_c00271{word-spacing:-14.160000px;}
.ws1_c00271{word-spacing:-13.452000px;}
.ws6_c00271{word-spacing:0.000000px;}
._d_c00271{margin-left:-29.322000px;}
._36_c00271{margin-left:-21.180000px;}
._33_c00271{margin-left:-19.833000px;}
._34_c00271{margin-left:-17.640000px;}
._14_c00271{margin-left:-16.296000px;}
._c_c00271{margin-left:-15.150000px;}
._38_c00271{margin-left:-14.112000px;}
._17_c00271{margin-left:-12.600000px;}
._13_c00271{margin-left:-10.980000px;}
._b_c00271{margin-left:-9.960000px;}
._2_c00271{margin-left:-8.700000px;}
._15_c00271{margin-left:-7.680000px;}
._11_c00271{margin-left:-6.417000px;}
._3_c00271{margin-left:-4.620000px;}
._6_c00271{margin-left:-3.360000px;}
._4_c00271{margin-left:-2.280000px;}
._12_c00271{margin-left:-1.221000px;}
._0_c00271{width:1.260000px;}
._1_c00271{width:2.340000px;}
._1c_c00271{width:3.357000px;}
._8_c00271{width:4.380000px;}
._7_c00271{width:5.400000px;}
._1f_c00271{width:6.441000px;}
._10_c00271{width:7.482000px;}
._24_c00271{width:8.832000px;}
._9_c00271{width:9.840000px;}
._a_c00271{width:11.700000px;}
._f_c00271{width:13.041000px;}
._22_c00271{width:14.988000px;}
._5_c00271{width:16.740000px;}
._1d_c00271{width:18.801000px;}
._e_c00271{width:20.562000px;}
._19_c00271{width:21.660000px;}
._18_c00271{width:23.301000px;}
._2c_c00271{width:24.720000px;}
._25_c00271{width:25.776000px;}
._1b_c00271{width:28.458000px;}
._28_c00271{width:30.375000px;}
._2b_c00271{width:31.497000px;}
._23_c00271{width:33.039000px;}
._30_c00271{width:34.185000px;}
._1e_c00271{width:35.409000px;}
._29_c00271{width:37.380000px;}
._2a_c00271{width:39.120000px;}
._20_c00271{width:40.548000px;}
._32_c00271{width:43.983000px;}
._21_c00271{width:45.189000px;}
._35_c00271{width:46.740000px;}
._2f_c00271{width:48.249000px;}
._39_c00271{width:49.614000px;}
._2e_c00271{width:52.512000px;}
._1a_c00271{width:63.105000px;}
._37_c00271{width:80.940000px;}
._26_c00271{width:85.812000px;}
._16_c00271{width:91.782000px;}
._27_c00271{width:113.220000px;}
._2d_c00271{width:141.951000px;}
._31_c00271{width:385.038000px;}
.fc2_c00271{color:transparent;}
.fc1_c00271{color:rgb(128,128,128);}
.fc0_c00271{color:rgb(0,0,0);}
.fs4_c00271{font-size:39.000000px;}
.fs5_c00271{font-size:48.000000px;}
.fs2_c00271{font-size:57.000000px;}
.fs0_c00271{font-size:60.000000px;}
.fs3_c00271{font-size:63.000000px;}
.fs1_c00271{font-size:69.000000px;}
.y0_c00271{bottom:0.000000px;}
.y59_c00271{bottom:3.105000px;}
.y58_c00271{bottom:7.228363px;}
.y2a_c00271{bottom:43.500000px;}
.y53_c00271{bottom:62.100000px;}
.y29_c00271{bottom:67.200000px;}
.y52_c00271{bottom:81.000000px;}
.y28_c00271{bottom:85.950000px;}
.y51_c00271{bottom:99.000000px;}
.y27_c00271{bottom:102.900000px;}
.y50_c00271{bottom:116.850000px;}
.y26_c00271{bottom:122.550000px;}
.y4f_c00271{bottom:135.450000px;}
.y25_c00271{bottom:141.000000px;}
.y4e_c00271{bottom:153.600000px;}
.y24_c00271{bottom:159.000000px;}
.y4d_c00271{bottom:171.450000px;}
.y23_c00271{bottom:177.150000px;}
.y4c_c00271{bottom:190.050000px;}
.y22_c00271{bottom:195.450000px;}
.y4b_c00271{bottom:208.650000px;}
.y21_c00271{bottom:213.900000px;}
.y4a_c00271{bottom:226.500000px;}
.y20_c00271{bottom:231.150000px;}
.y49_c00271{bottom:244.650000px;}
.y1f_c00271{bottom:250.050000px;}
.y48_c00271{bottom:262.950000px;}
.y1e_c00271{bottom:267.600000px;}
.y47_c00271{bottom:281.250000px;}
.y1d_c00271{bottom:286.200000px;}
.y46_c00271{bottom:299.100000px;}
.y1c_c00271{bottom:303.450000px;}
.y45_c00271{bottom:317.550000px;}
.y1b_c00271{bottom:321.900000px;}
.y44_c00271{bottom:335.850000px;}
.y1a_c00271{bottom:339.450000px;}
.y43_c00271{bottom:354.000000px;}
.y19_c00271{bottom:358.350000px;}
.y42_c00271{bottom:371.700000px;}
.y18_c00271{bottom:377.550000px;}
.y41_c00271{bottom:390.600000px;}
.y17_c00271{bottom:393.750000px;}
.y40_c00271{bottom:408.450000px;}
.y57_c00271{bottom:412.200000px;}
.y16_c00271{bottom:412.650000px;}
.y3f_c00271{bottom:426.900000px;}
.y15_c00271{bottom:430.350000px;}
.y56_c00271{bottom:431.100000px;}
.y3e_c00271{bottom:445.500000px;}
.y14_c00271{bottom:449.100000px;}
.y3d_c00271{bottom:464.400000px;}
.y13_c00271{bottom:467.700000px;}
.y3c_c00271{bottom:482.250000px;}
.y12_c00271{bottom:485.250000px;}
.y3b_c00271{bottom:500.550000px;}
.y11_c00271{bottom:504.150000px;}
.y3a_c00271{bottom:519.150000px;}
.y10_c00271{bottom:522.150000px;}
.y55_c00271{bottom:536.400000px;}
.y39_c00271{bottom:538.050000px;}
.yf_c00271{bottom:540.300000px;}
.y54_c00271{bottom:556.650000px;}
.y38_c00271{bottom:556.950000px;}
.ye_c00271{bottom:558.600000px;}
.y37_c00271{bottom:575.100000px;}
.yd_c00271{bottom:576.750000px;}
.y36_c00271{bottom:593.100000px;}
.yc_c00271{bottom:595.350000px;}
.y35_c00271{bottom:610.950000px;}
.yb_c00271{bottom:613.500000px;}
.y34_c00271{bottom:629.550000px;}
.ya_c00271{bottom:631.800000px;}
.y33_c00271{bottom:648.000000px;}
.y9_c00271{bottom:649.350000px;}
.y32_c00271{bottom:665.850000px;}
.y8_c00271{bottom:667.650000px;}
.y31_c00271{bottom:684.450000px;}
.y7_c00271{bottom:685.800000px;}
.y30_c00271{bottom:702.300000px;}
.y6_c00271{bottom:704.700000px;}
.y5_c00271{bottom:720.300000px;}
.y2f_c00271{bottom:720.450000px;}
.y2e_c00271{bottom:738.450000px;}
.y4_c00271{bottom:739.200000px;}
.y2d_c00271{bottom:757.050000px;}
.y3_c00271{bottom:757.350000px;}
.y2c_c00271{bottom:774.900000px;}
.y2_c00271{bottom:775.800000px;}
.y2b_c00271{bottom:793.050000px;}
.y1_c00271{bottom:794.700000px;}
.h7_c00271{height:13.200074px;}
.h8_c00271{height:43.804688px;}
.h4_c00271{height:59.736000px;}
.h1_c00271{height:62.880000px;}
.h6_c00271{height:63.480000px;}
.h2_c00271{height:64.020000px;}
.h5_c00271{height:66.024000px;}
.h3_c00271{height:73.623000px;}
.h0_c00271{height:843.750000px;}
.w2_c00271{width:104.875500px;}
.w1_c00271{width:565.500000px;}
.w0_c00271{width:565.650000px;}
.x0_c00271{left:0.000000px;}
.x5_c00271{left:30.750000px;}
.x6_c00271{left:31.950000px;}
.x3_c00271{left:35.700000px;}
.xa_c00271{left:90.750000px;}
.x7_c00271{left:93.450000px;}
.x2_c00271{left:94.500000px;}
.x4_c00271{left:96.150000px;}
.x8_c00271{left:97.800000px;}
.x9_c00271{left:99.600000px;}
.xb_c00271{left:100.950000px;}
.xc_c00271{left:102.600000px;}
.x1_c00271{left:112.950000px;}
.xd_c00271{left:210.300000px;}
.x1b_c00271{left:234.639267px;}
.x12_c00271{left:309.600000px;}
.xe_c00271{left:311.850000px;}
.xf_c00271{left:312.900000px;}
.x10_c00271{left:315.600000px;}
.x11_c00271{left:316.950000px;}
.x13_c00271{left:318.000000px;}
.x14_c00271{left:319.350000px;}
.x16_c00271{left:320.400000px;}
.x15_c00271{left:321.600000px;}
.x17_c00271{left:483.750000px;}
.x18_c00271{left:519.750000px;}
.x1a_c00271{left:521.100000px;}
.x19_c00271{left:522.150000px;}
@media print{
.v0_c00271{vertical-align:0.000000pt;}
.lsc_c00271{letter-spacing:0.000000pt;}
.ls0_c00271{letter-spacing:2.666667pt;}
.ls8_c00271{letter-spacing:4.266667pt;}
.ls5_c00271{letter-spacing:5.600000pt;}
.lsb_c00271{letter-spacing:5.866667pt;}
.ls7_c00271{letter-spacing:6.933333pt;}
.ls4_c00271{letter-spacing:7.549333pt;}
.ls1_c00271{letter-spacing:8.000000pt;}
.ls3_c00271{letter-spacing:11.466667pt;}
.ls6_c00271{letter-spacing:17.333333pt;}
.ls2_c00271{letter-spacing:18.133333pt;}
.lsa_c00271{letter-spacing:20.266667pt;}
.ls9_c00271{letter-spacing:24.746667pt;}
.ws3_c00271{word-spacing:-16.053333pt;}
.ws4_c00271{word-spacing:-16.000000pt;}
.ws5_c00271{word-spacing:-15.413333pt;}
.ws2_c00271{word-spacing:-13.216000pt;}
.ws0_c00271{word-spacing:-12.586667pt;}
.ws1_c00271{word-spacing:-11.957333pt;}
.ws6_c00271{word-spacing:0.000000pt;}
._d_c00271{margin-left:-26.064000pt;}
._36_c00271{margin-left:-18.826667pt;}
._33_c00271{margin-left:-17.629333pt;}
._34_c00271{margin-left:-15.680000pt;}
._14_c00271{margin-left:-14.485333pt;}
._c_c00271{margin-left:-13.466667pt;}
._38_c00271{margin-left:-12.544000pt;}
._17_c00271{margin-left:-11.200000pt;}
._13_c00271{margin-left:-9.760000pt;}
._b_c00271{margin-left:-8.853333pt;}
._2_c00271{margin-left:-7.733333pt;}
._15_c00271{margin-left:-6.826667pt;}
._11_c00271{margin-left:-5.704000pt;}
._3_c00271{margin-left:-4.106667pt;}
._6_c00271{margin-left:-2.986667pt;}
._4_c00271{margin-left:-2.026667pt;}
._12_c00271{margin-left:-1.085333pt;}
._0_c00271{width:1.120000pt;}
._1_c00271{width:2.080000pt;}
._1c_c00271{width:2.984000pt;}
._8_c00271{width:3.893333pt;}
._7_c00271{width:4.800000pt;}
._1f_c00271{width:5.725333pt;}
._10_c00271{width:6.650667pt;}
._24_c00271{width:7.850667pt;}
._9_c00271{width:8.746667pt;}
._a_c00271{width:10.400000pt;}
._f_c00271{width:11.592000pt;}
._22_c00271{width:13.322667pt;}
._5_c00271{width:14.880000pt;}
._1d_c00271{width:16.712000pt;}
._e_c00271{width:18.277333pt;}
._19_c00271{width:19.253333pt;}
._18_c00271{width:20.712000pt;}
._2c_c00271{width:21.973333pt;}
._25_c00271{width:22.912000pt;}
._1b_c00271{width:25.296000pt;}
._28_c00271{width:27.000000pt;}
._2b_c00271{width:27.997333pt;}
._23_c00271{width:29.368000pt;}
._30_c00271{width:30.386667pt;}
._1e_c00271{width:31.474667pt;}
._29_c00271{width:33.226667pt;}
._2a_c00271{width:34.773333pt;}
._20_c00271{width:36.042667pt;}
._32_c00271{width:39.096000pt;}
._21_c00271{width:40.168000pt;}
._35_c00271{width:41.546667pt;}
._2f_c00271{width:42.888000pt;}
._39_c00271{width:44.101333pt;}
._2e_c00271{width:46.677333pt;}
._1a_c00271{width:56.093333pt;}
._37_c00271{width:71.946667pt;}
._26_c00271{width:76.277333pt;}
._16_c00271{width:81.584000pt;}
._27_c00271{width:100.640000pt;}
._2d_c00271{width:126.178667pt;}
._31_c00271{width:342.256000pt;}
.fs4_c00271{font-size:34.666667pt;}
.fs5_c00271{font-size:42.666667pt;}
.fs2_c00271{font-size:50.666667pt;}
.fs0_c00271{font-size:53.333333pt;}
.fs3_c00271{font-size:56.000000pt;}
.fs1_c00271{font-size:61.333333pt;}
.y0_c00271{bottom:0.000000pt;}
.y59_c00271{bottom:2.760000pt;}
.y58_c00271{bottom:6.425212pt;}
.y2a_c00271{bottom:38.666667pt;}
.y53_c00271{bottom:55.200000pt;}
.y29_c00271{bottom:59.733333pt;}
.y52_c00271{bottom:72.000000pt;}
.y28_c00271{bottom:76.400000pt;}
.y51_c00271{bottom:88.000000pt;}
.y27_c00271{bottom:91.466667pt;}
.y50_c00271{bottom:103.866667pt;}
.y26_c00271{bottom:108.933333pt;}
.y4f_c00271{bottom:120.400000pt;}
.y25_c00271{bottom:125.333333pt;}
.y4e_c00271{bottom:136.533333pt;}
.y24_c00271{bottom:141.333333pt;}
.y4d_c00271{bottom:152.400000pt;}
.y23_c00271{bottom:157.466667pt;}
.y4c_c00271{bottom:168.933333pt;}
.y22_c00271{bottom:173.733333pt;}
.y4b_c00271{bottom:185.466667pt;}
.y21_c00271{bottom:190.133333pt;}
.y4a_c00271{bottom:201.333333pt;}
.y20_c00271{bottom:205.466667pt;}
.y49_c00271{bottom:217.466667pt;}
.y1f_c00271{bottom:222.266667pt;}
.y48_c00271{bottom:233.733333pt;}
.y1e_c00271{bottom:237.866667pt;}
.y47_c00271{bottom:250.000000pt;}
.y1d_c00271{bottom:254.400000pt;}
.y46_c00271{bottom:265.866667pt;}
.y1c_c00271{bottom:269.733333pt;}
.y45_c00271{bottom:282.266667pt;}
.y1b_c00271{bottom:286.133333pt;}
.y44_c00271{bottom:298.533333pt;}
.y1a_c00271{bottom:301.733333pt;}
.y43_c00271{bottom:314.666667pt;}
.y19_c00271{bottom:318.533333pt;}
.y42_c00271{bottom:330.400000pt;}
.y18_c00271{bottom:335.600000pt;}
.y41_c00271{bottom:347.200000pt;}
.y17_c00271{bottom:350.000000pt;}
.y40_c00271{bottom:363.066667pt;}
.y57_c00271{bottom:366.400000pt;}
.y16_c00271{bottom:366.800000pt;}
.y3f_c00271{bottom:379.466667pt;}
.y15_c00271{bottom:382.533333pt;}
.y56_c00271{bottom:383.200000pt;}
.y3e_c00271{bottom:396.000000pt;}
.y14_c00271{bottom:399.200000pt;}
.y3d_c00271{bottom:412.800000pt;}
.y13_c00271{bottom:415.733333pt;}
.y3c_c00271{bottom:428.666667pt;}
.y12_c00271{bottom:431.333333pt;}
.y3b_c00271{bottom:444.933333pt;}
.y11_c00271{bottom:448.133333pt;}
.y3a_c00271{bottom:461.466667pt;}
.y10_c00271{bottom:464.133333pt;}
.y55_c00271{bottom:476.800000pt;}
.y39_c00271{bottom:478.266667pt;}
.yf_c00271{bottom:480.266667pt;}
.y54_c00271{bottom:494.800000pt;}
.y38_c00271{bottom:495.066667pt;}
.ye_c00271{bottom:496.533333pt;}
.y37_c00271{bottom:511.200000pt;}
.yd_c00271{bottom:512.666667pt;}
.y36_c00271{bottom:527.200000pt;}
.yc_c00271{bottom:529.200000pt;}
.y35_c00271{bottom:543.066667pt;}
.yb_c00271{bottom:545.333333pt;}
.y34_c00271{bottom:559.600000pt;}
.ya_c00271{bottom:561.600000pt;}
.y33_c00271{bottom:576.000000pt;}
.y9_c00271{bottom:577.200000pt;}
.y32_c00271{bottom:591.866667pt;}
.y8_c00271{bottom:593.466667pt;}
.y31_c00271{bottom:608.400000pt;}
.y7_c00271{bottom:609.600000pt;}
.y30_c00271{bottom:624.266667pt;}
.y6_c00271{bottom:626.400000pt;}
.y5_c00271{bottom:640.266667pt;}
.y2f_c00271{bottom:640.400000pt;}
.y2e_c00271{bottom:656.400000pt;}
.y4_c00271{bottom:657.066667pt;}
.y2d_c00271{bottom:672.933333pt;}
.y3_c00271{bottom:673.200000pt;}
.y2c_c00271{bottom:688.800000pt;}
.y2_c00271{bottom:689.600000pt;}
.y2b_c00271{bottom:704.933333pt;}
.y1_c00271{bottom:706.400000pt;}
.h7_c00271{height:11.733399pt;}
.h8_c00271{height:38.937500pt;}
.h4_c00271{height:53.098667pt;}
.h1_c00271{height:55.893333pt;}
.h6_c00271{height:56.426667pt;}
.h2_c00271{height:56.906667pt;}
.h5_c00271{height:58.688000pt;}
.h3_c00271{height:65.442667pt;}
.h0_c00271{height:750.000000pt;}
.w2_c00271{width:93.222667pt;}
.w1_c00271{width:502.666667pt;}
.w0_c00271{width:502.800000pt;}
.x0_c00271{left:0.000000pt;}
.x5_c00271{left:27.333333pt;}
.x6_c00271{left:28.400000pt;}
.x3_c00271{left:31.733333pt;}
.xa_c00271{left:80.666667pt;}
.x7_c00271{left:83.066667pt;}
.x2_c00271{left:84.000000pt;}
.x4_c00271{left:85.466667pt;}
.x8_c00271{left:86.933333pt;}
.x9_c00271{left:88.533333pt;}
.xb_c00271{left:89.733333pt;}
.xc_c00271{left:91.200000pt;}
.x1_c00271{left:100.400000pt;}
.xd_c00271{left:186.933333pt;}
.x1b_c00271{left:208.568237pt;}
.x12_c00271{left:275.200000pt;}
.xe_c00271{left:277.200000pt;}
.xf_c00271{left:278.133333pt;}
.x10_c00271{left:280.533333pt;}
.x11_c00271{left:281.733333pt;}
.x13_c00271{left:282.666667pt;}
.x14_c00271{left:283.866667pt;}
.x16_c00271{left:284.800000pt;}
.x15_c00271{left:285.866667pt;}
.x17_c00271{left:430.000000pt;}
.x18_c00271{left:462.000000pt;}
.x1a_c00271{left:463.200000pt;}
.x19_c00271{left:464.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_0ef30976125583a4ea0e3032.woff2')format("woff");}.ff1_c00272{font-family:ff1_c00272;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00272;src:url('chunks/assets/font_49adb6093b43bad08f94a1d6.woff2')format("woff");}.ff2_c00272{font-family:ff2_c00272;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00272;src:url('chunks/assets/font_1d56d01c2c89eb6d260f07a7.woff2')format("woff");}.ff3_c00272{font-family:ff3_c00272;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00272;src:url('chunks/assets/font_9ebd802f5ff8b9ccf6150473.woff2')format("woff");}.ff4_c00272{font-family:ff4_c00272;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00272;src:url('chunks/assets/font_6da3d81be1605815f7e6cea4.woff2')format("woff");}.ff5_c00272{font-family:ff5_c00272;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00272;src:url('chunks/assets/font_9c33108648e5f5045862b838.woff2')format("woff");}.ff6_c00272{font-family:ff6_c00272;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00272;src:url('chunks/assets/font_75dcb6f0fe072987fdf632ee.woff2')format("woff");}.ff7_c00272{font-family:ff7_c00272;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00272;src:url('chunks/assets/font_09a896e1b17be397ae1faa5b.woff2')format("woff");}.ff8_c00272{font-family:ff8_c00272;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00272;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff9_c00272{font-family:ff9_c00272;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00272{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00272{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_c00272{vertical-align:0.000000px;}
.v1_c00272{vertical-align:86.400000px;}
.ls12_c00272{letter-spacing:0.000000px;}
.lsc_c00272{letter-spacing:0.060000px;}
.ls8_c00272{letter-spacing:3.000000px;}
.lsb_c00272{letter-spacing:4.680000px;}
.lsa_c00272{letter-spacing:4.800000px;}
.ls10_c00272{letter-spacing:4.920000px;}
.ls4_c00272{letter-spacing:5.400000px;}
.ls9_c00272{letter-spacing:6.000000px;}
.lse_c00272{letter-spacing:7.500000px;}
.lsf_c00272{letter-spacing:9.405000px;}
.ls1_c00272{letter-spacing:11.205000px;}
.ls6_c00272{letter-spacing:11.805000px;}
.ls11_c00272{letter-spacing:12.000000px;}
.lsd_c00272{letter-spacing:13.200000px;}
.ls5_c00272{letter-spacing:17.205000px;}
.ls3_c00272{letter-spacing:17.340000px;}
.ls7_c00272{letter-spacing:19.638000px;}
.ls2_c00272{letter-spacing:23.205000px;}
.ls0_c00272{letter-spacing:440.787000px;}
.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;}
}
.ws8_c00272{word-spacing:-35.295000px;}
.ws1_c00272{word-spacing:-33.417000px;}
.ws9_c00272{word-spacing:-32.424000px;}
.ws0_c00272{word-spacing:-27.813000px;}
.ws3_c00272{word-spacing:-20.340000px;}
.ws6_c00272{word-spacing:-19.623000px;}
.ws4_c00272{word-spacing:-18.813000px;}
.wsa_c00272{word-spacing:-18.060000px;}
.ws5_c00272{word-spacing:-17.340000px;}
.ws2_c00272{word-spacing:-14.160000px;}
.ws7_c00272{word-spacing:-1.200000px;}
.wsb_c00272{word-spacing:0.000000px;}
._2e_c00272{margin-left:-21.627000px;}
._f_c00272{margin-left:-18.600000px;}
._26_c00272{margin-left:-15.336000px;}
._9_c00272{margin-left:-13.080000px;}
._21_c00272{margin-left:-11.829000px;}
._19_c00272{margin-left:-9.513000px;}
._e_c00272{margin-left:-7.380000px;}
._1d_c00272{margin-left:-6.054000px;}
._12_c00272{margin-left:-4.437000px;}
._15_c00272{margin-left:-2.652000px;}
._b_c00272{margin-left:-1.449000px;}
._10_c00272{width:1.446000px;}
._7_c00272{width:2.634000px;}
._4_c00272{width:3.843000px;}
._6_c00272{width:5.100000px;}
._3_c00272{width:7.056000px;}
._5_c00272{width:8.064000px;}
._1_c00272{width:9.891000px;}
._1a_c00272{width:11.088000px;}
._0_c00272{width:12.411000px;}
._16_c00272{width:13.785000px;}
._17_c00272{width:15.468000px;}
._18_c00272{width:16.608000px;}
._1e_c00272{width:19.791000px;}
._23_c00272{width:20.916000px;}
._1f_c00272{width:22.005000px;}
._22_c00272{width:24.330000px;}
._24_c00272{width:25.836000px;}
._2d_c00272{width:27.114000px;}
._27_c00272{width:30.186000px;}
._2_c00272{width:31.569000px;}
._29_c00272{width:33.951000px;}
._25_c00272{width:36.195000px;}
._d_c00272{width:37.356000px;}
._14_c00272{width:39.402000px;}
._28_c00272{width:50.913000px;}
._1b_c00272{width:53.781000px;}
._1c_c00272{width:55.986000px;}
._2c_c00272{width:59.700000px;}
._2a_c00272{width:66.756000px;}
._2b_c00272{width:71.109000px;}
._a_c00272{width:73.740000px;}
._13_c00272{width:85.584000px;}
._20_c00272{width:166.500000px;}
._8_c00272{width:271.638000px;}
._c_c00272{width:358.407000px;}
._11_c00272{width:835.215000px;}
.fc2_c00272{color:transparent;}
.fc1_c00272{color:rgb(128,128,128);}
.fc0_c00272{color:rgb(0,0,0);}
.fs3_c00272{font-size:45.000000px;}
.fs6_c00272{font-size:48.000000px;}
.fs1_c00272{font-size:57.000000px;}
.fs2_c00272{font-size:60.000000px;}
.fs0_c00272{font-size:63.000000px;}
.fs5_c00272{font-size:69.000000px;}
.fs4_c00272{font-size:213.000000px;}
.y0_c00272{bottom:0.000000px;}
.y45_c00272{bottom:3.105000px;}
.y44_c00272{bottom:7.228357px;}
.y43_c00272{bottom:61.380000px;}
.y42_c00272{bottom:79.080000px;}
.y41_c00272{bottom:97.830000px;}
.y40_c00272{bottom:114.780000px;}
.y38_c00272{bottom:119.130000px;}
.y3f_c00272{bottom:133.980000px;}
.y37_c00272{bottom:136.980000px;}
.y3e_c00272{bottom:151.530000px;}
.y36_c00272{bottom:155.280000px;}
.y3d_c00272{bottom:170.130000px;}
.y35_c00272{bottom:172.530000px;}
.y3c_c00272{bottom:188.280000px;}
.y34_c00272{bottom:191.130000px;}
.y3b_c00272{bottom:205.980000px;}
.y33_c00272{bottom:209.280000px;}
.y3a_c00272{bottom:224.430000px;}
.y32_c00272{bottom:228.180000px;}
.y39_c00272{bottom:242.280000px;}
.y31_c00272{bottom:245.130000px;}
.y30_c00272{bottom:261.330000px;}
.y2f_c00272{bottom:278.730000px;}
.y23_c00272{bottom:281.880000px;}
.y2e_c00272{bottom:296.730000px;}
.y22_c00272{bottom:299.130000px;}
.y2d_c00272{bottom:315.330000px;}
.y21_c00272{bottom:317.280000px;}
.y2c_c00272{bottom:332.880000px;}
.y20_c00272{bottom:335.880000px;}
.y2b_c00272{bottom:350.280000px;}
.y1f_c00272{bottom:353.430000px;}
.y2a_c00272{bottom:369.330000px;}
.y1e_c00272{bottom:371.880000px;}
.y29_c00272{bottom:387.180000px;}
.y1d_c00272{bottom:389.880000px;}
.y28_c00272{bottom:405.780000px;}
.y1c_c00272{bottom:407.430000px;}
.y27_c00272{bottom:423.930000px;}
.y1b_c00272{bottom:424.980000px;}
.y26_c00272{bottom:442.530000px;}
.y1a_c00272{bottom:443.130000px;}
.y25_c00272{bottom:460.080000px;}
.y19_c00272{bottom:462.330000px;}
.y24_c00272{bottom:478.230000px;}
.y18_c00272{bottom:479.580000px;}
.y17_c00272{bottom:497.430000px;}
.y16_c00272{bottom:514.980000px;}
.y15_c00272{bottom:531.930000px;}
.y14_c00272{bottom:551.130000px;}
.y13_c00272{bottom:568.680000px;}
.y12_c00272{bottom:587.280000px;}
.y10_c00272{bottom:601.530000px;}
.y11_c00272{bottom:604.530000px;}
.yc_c00272{bottom:604.830000px;}
.yb_c00272{bottom:622.980000px;}
.ya_c00272{bottom:640.530000px;}
.y9_c00272{bottom:658.530000px;}
.y8_c00272{bottom:676.380000px;}
.yf_c00272{bottom:677.430000px;}
.y7_c00272{bottom:694.680000px;}
.ye_c00272{bottom:695.280000px;}
.y6_c00272{bottom:713.430000px;}
.yd_c00272{bottom:713.580000px;}
.y5_c00272{bottom:730.680000px;}
.y4_c00272{bottom:749.280000px;}
.y3_c00272{bottom:767.880000px;}
.y2_c00272{bottom:785.730000px;}
.y1_c00272{bottom:804.930000px;}
.h7_c00272{height:13.200074px;}
.h8_c00272{height:43.804688px;}
.h3_c00272{height:62.880000px;}
.h4_c00272{height:64.020000px;}
.h2_c00272{height:66.024000px;}
.h6_c00272{height:72.312000px;}
.h5_c00272{height:223.224000px;}
.h0_c00272{height:841.350000px;}
.h1_c00272{height:841.500000px;}
.w1_c00272{width:104.875500px;}
.w0_c00272{width:590.250000px;}
.x0_c00272{left:0.000000px;}
.x2_c00272{left:20.700000px;}
.xa_c00272{left:71.100000px;}
.x12_c00272{left:73.950000px;}
.x11_c00272{left:75.000000px;}
.xc_c00272{left:76.650000px;}
.xb_c00272{left:78.600000px;}
.x5_c00272{left:80.100000px;}
.x4_c00272{left:81.450000px;}
.x3_c00272{left:82.800000px;}
.x13_c00272{left:85.800000px;}
.x14_c00272{left:124.500000px;}
.x15_c00272{left:156.300000px;}
.x1_c00272{left:216.900000px;}
.x1a_c00272{left:246.939240px;}
.x17_c00272{left:289.350000px;}
.x16_c00272{left:291.300000px;}
.x10_c00272{left:292.350000px;}
.xf_c00272{left:293.700000px;}
.xe_c00272{left:294.750000px;}
.xd_c00272{left:295.950000px;}
.x6_c00272{left:298.050000px;}
.x7_c00272{left:313.800000px;}
.x18_c00272{left:319.950000px;}
.x8_c00272{left:329.700000px;}
.x9_c00272{left:341.850000px;}
.x19_c00272{left:349.350000px;}
@media print{
.v0_c00272{vertical-align:0.000000pt;}
.v1_c00272{vertical-align:76.800000pt;}
.ls12_c00272{letter-spacing:0.000000pt;}
.lsc_c00272{letter-spacing:0.053333pt;}
.ls8_c00272{letter-spacing:2.666667pt;}
.lsb_c00272{letter-spacing:4.160000pt;}
.lsa_c00272{letter-spacing:4.266667pt;}
.ls10_c00272{letter-spacing:4.373333pt;}
.ls4_c00272{letter-spacing:4.800000pt;}
.ls9_c00272{letter-spacing:5.333333pt;}
.lse_c00272{letter-spacing:6.666667pt;}
.lsf_c00272{letter-spacing:8.360000pt;}
.ls1_c00272{letter-spacing:9.960000pt;}
.ls6_c00272{letter-spacing:10.493333pt;}
.ls11_c00272{letter-spacing:10.666667pt;}
.lsd_c00272{letter-spacing:11.733333pt;}
.ls5_c00272{letter-spacing:15.293333pt;}
.ls3_c00272{letter-spacing:15.413333pt;}
.ls7_c00272{letter-spacing:17.456000pt;}
.ls2_c00272{letter-spacing:20.626667pt;}
.ls0_c00272{letter-spacing:391.810667pt;}
.ws8_c00272{word-spacing:-31.373333pt;}
.ws1_c00272{word-spacing:-29.704000pt;}
.ws9_c00272{word-spacing:-28.821333pt;}
.ws0_c00272{word-spacing:-24.722667pt;}
.ws3_c00272{word-spacing:-18.080000pt;}
.ws6_c00272{word-spacing:-17.442667pt;}
.ws4_c00272{word-spacing:-16.722667pt;}
.wsa_c00272{word-spacing:-16.053333pt;}
.ws5_c00272{word-spacing:-15.413333pt;}
.ws2_c00272{word-spacing:-12.586667pt;}
.ws7_c00272{word-spacing:-1.066667pt;}
.wsb_c00272{word-spacing:0.000000pt;}
._2e_c00272{margin-left:-19.224000pt;}
._f_c00272{margin-left:-16.533333pt;}
._26_c00272{margin-left:-13.632000pt;}
._9_c00272{margin-left:-11.626667pt;}
._21_c00272{margin-left:-10.514667pt;}
._19_c00272{margin-left:-8.456000pt;}
._e_c00272{margin-left:-6.560000pt;}
._1d_c00272{margin-left:-5.381333pt;}
._12_c00272{margin-left:-3.944000pt;}
._15_c00272{margin-left:-2.357333pt;}
._b_c00272{margin-left:-1.288000pt;}
._10_c00272{width:1.285333pt;}
._7_c00272{width:2.341333pt;}
._4_c00272{width:3.416000pt;}
._6_c00272{width:4.533333pt;}
._3_c00272{width:6.272000pt;}
._5_c00272{width:7.168000pt;}
._1_c00272{width:8.792000pt;}
._1a_c00272{width:9.856000pt;}
._0_c00272{width:11.032000pt;}
._16_c00272{width:12.253333pt;}
._17_c00272{width:13.749333pt;}
._18_c00272{width:14.762667pt;}
._1e_c00272{width:17.592000pt;}
._23_c00272{width:18.592000pt;}
._1f_c00272{width:19.560000pt;}
._22_c00272{width:21.626667pt;}
._24_c00272{width:22.965333pt;}
._2d_c00272{width:24.101333pt;}
._27_c00272{width:26.832000pt;}
._2_c00272{width:28.061333pt;}
._29_c00272{width:30.178667pt;}
._25_c00272{width:32.173333pt;}
._d_c00272{width:33.205333pt;}
._14_c00272{width:35.024000pt;}
._28_c00272{width:45.256000pt;}
._1b_c00272{width:47.805333pt;}
._1c_c00272{width:49.765333pt;}
._2c_c00272{width:53.066667pt;}
._2a_c00272{width:59.338667pt;}
._2b_c00272{width:63.208000pt;}
._a_c00272{width:65.546667pt;}
._13_c00272{width:76.074667pt;}
._20_c00272{width:148.000000pt;}
._8_c00272{width:241.456000pt;}
._c_c00272{width:318.584000pt;}
._11_c00272{width:742.413333pt;}
.fs3_c00272{font-size:40.000000pt;}
.fs6_c00272{font-size:42.666667pt;}
.fs1_c00272{font-size:50.666667pt;}
.fs2_c00272{font-size:53.333333pt;}
.fs0_c00272{font-size:56.000000pt;}
.fs5_c00272{font-size:61.333333pt;}
.fs4_c00272{font-size:189.333333pt;}
.y0_c00272{bottom:0.000000pt;}
.y45_c00272{bottom:2.760000pt;}
.y44_c00272{bottom:6.425206pt;}
.y43_c00272{bottom:54.560000pt;}
.y42_c00272{bottom:70.293333pt;}
.y41_c00272{bottom:86.960000pt;}
.y40_c00272{bottom:102.026667pt;}
.y38_c00272{bottom:105.893333pt;}
.y3f_c00272{bottom:119.093333pt;}
.y37_c00272{bottom:121.760000pt;}
.y3e_c00272{bottom:134.693333pt;}
.y36_c00272{bottom:138.026667pt;}
.y3d_c00272{bottom:151.226667pt;}
.y35_c00272{bottom:153.360000pt;}
.y3c_c00272{bottom:167.360000pt;}
.y34_c00272{bottom:169.893333pt;}
.y3b_c00272{bottom:183.093333pt;}
.y33_c00272{bottom:186.026667pt;}
.y3a_c00272{bottom:199.493333pt;}
.y32_c00272{bottom:202.826667pt;}
.y39_c00272{bottom:215.360000pt;}
.y31_c00272{bottom:217.893333pt;}
.y30_c00272{bottom:232.293333pt;}
.y2f_c00272{bottom:247.760000pt;}
.y23_c00272{bottom:250.560000pt;}
.y2e_c00272{bottom:263.760000pt;}
.y22_c00272{bottom:265.893333pt;}
.y2d_c00272{bottom:280.293333pt;}
.y21_c00272{bottom:282.026667pt;}
.y2c_c00272{bottom:295.893333pt;}
.y20_c00272{bottom:298.560000pt;}
.y2b_c00272{bottom:311.360000pt;}
.y1f_c00272{bottom:314.160000pt;}
.y2a_c00272{bottom:328.293333pt;}
.y1e_c00272{bottom:330.560000pt;}
.y29_c00272{bottom:344.160000pt;}
.y1d_c00272{bottom:346.560000pt;}
.y28_c00272{bottom:360.693333pt;}
.y1c_c00272{bottom:362.160000pt;}
.y27_c00272{bottom:376.826667pt;}
.y1b_c00272{bottom:377.760000pt;}
.y26_c00272{bottom:393.360000pt;}
.y1a_c00272{bottom:393.893333pt;}
.y25_c00272{bottom:408.960000pt;}
.y19_c00272{bottom:410.960000pt;}
.y24_c00272{bottom:425.093333pt;}
.y18_c00272{bottom:426.293333pt;}
.y17_c00272{bottom:442.160000pt;}
.y16_c00272{bottom:457.760000pt;}
.y15_c00272{bottom:472.826667pt;}
.y14_c00272{bottom:489.893333pt;}
.y13_c00272{bottom:505.493333pt;}
.y12_c00272{bottom:522.026667pt;}
.y10_c00272{bottom:534.693333pt;}
.y11_c00272{bottom:537.360000pt;}
.yc_c00272{bottom:537.626667pt;}
.yb_c00272{bottom:553.760000pt;}
.ya_c00272{bottom:569.360000pt;}
.y9_c00272{bottom:585.360000pt;}
.y8_c00272{bottom:601.226667pt;}
.yf_c00272{bottom:602.160000pt;}
.y7_c00272{bottom:617.493333pt;}
.ye_c00272{bottom:618.026667pt;}
.y6_c00272{bottom:634.160000pt;}
.yd_c00272{bottom:634.293333pt;}
.y5_c00272{bottom:649.493333pt;}
.y4_c00272{bottom:666.026667pt;}
.y3_c00272{bottom:682.560000pt;}
.y2_c00272{bottom:698.426667pt;}
.y1_c00272{bottom:715.493333pt;}
.h7_c00272{height:11.733399pt;}
.h8_c00272{height:38.937500pt;}
.h3_c00272{height:55.893333pt;}
.h4_c00272{height:56.906667pt;}
.h2_c00272{height:58.688000pt;}
.h6_c00272{height:64.277333pt;}
.h5_c00272{height:198.421333pt;}
.h0_c00272{height:747.866667pt;}
.h1_c00272{height:748.000000pt;}
.w1_c00272{width:93.222667pt;}
.w0_c00272{width:524.666667pt;}
.x0_c00272{left:0.000000pt;}
.x2_c00272{left:18.400000pt;}
.xa_c00272{left:63.200000pt;}
.x12_c00272{left:65.733333pt;}
.x11_c00272{left:66.666667pt;}
.xc_c00272{left:68.133333pt;}
.xb_c00272{left:69.866667pt;}
.x5_c00272{left:71.200000pt;}
.x4_c00272{left:72.400000pt;}
.x3_c00272{left:73.600000pt;}
.x13_c00272{left:76.266667pt;}
.x14_c00272{left:110.666667pt;}
.x15_c00272{left:138.933333pt;}
.x1_c00272{left:192.800000pt;}
.x1a_c00272{left:219.501546pt;}
.x17_c00272{left:257.200000pt;}
.x16_c00272{left:258.933333pt;}
.x10_c00272{left:259.866667pt;}
.xf_c00272{left:261.066667pt;}
.xe_c00272{left:262.000000pt;}
.xd_c00272{left:263.066667pt;}
.x6_c00272{left:264.933333pt;}
.x7_c00272{left:278.933333pt;}
.x18_c00272{left:284.400000pt;}
.x8_c00272{left:293.066667pt;}
.x9_c00272{left:303.866667pt;}
.x19_c00272{left:310.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_5981e07066217e5ccc7e4169.woff2')format("woff");}.ff1_c00273{font-family:ff1_c00273;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00273;src:url('chunks/assets/font_a3ee37d79b38163763e75540.woff2')format("woff");}.ff2_c00273{font-family:ff2_c00273;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00273;src:url('chunks/assets/font_1a91c62b746ccc0fe7852131.woff2')format("woff");}.ff3_c00273{font-family:ff3_c00273;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00273;src:url('chunks/assets/font_ddba9a718901fc09a399a51e.woff2')format("woff");}.ff4_c00273{font-family:ff4_c00273;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00273;src:url('chunks/assets/font_27898b4b8a5a9797ff3ce489.woff2')format("woff");}.ff5_c00273{font-family:ff5_c00273;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00273;src:url('chunks/assets/font_46564422625491d77409f68d.woff2')format("woff");}.ff6_c00273{font-family:ff6_c00273;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00273;src:url('chunks/assets/font_dedf50fdf7ce7ca1d7eaba02.woff2')format("woff");}.ff7_c00273{font-family:ff7_c00273;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:ff8_c00273;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff8_c00273{font-family:ff8_c00273;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00273{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00273{vertical-align:0.000000px;}
.ls7_c00273{letter-spacing:0.000000px;}
.ls4_c00273{letter-spacing:1.080000px;}
.ls0_c00273{letter-spacing:2.220000px;}
.ls1_c00273{letter-spacing:2.400000px;}
.ls6_c00273{letter-spacing:3.000000px;}
.ls2_c00273{letter-spacing:7.800000px;}
.ls3_c00273{letter-spacing:31.050000px;}
.ls5_c00273{letter-spacing:34.650000px;}
.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;}
}
.ws4_c00273{word-spacing:-25.854000px;}
.ws2_c00273{word-spacing:-18.060000px;}
.ws1_c00273{word-spacing:-16.380000px;}
.ws5_c00273{word-spacing:-15.420000px;}
.ws3_c00273{word-spacing:-14.160000px;}
.ws6_c00273{word-spacing:0.000000px;}
.ws0_c00273{word-spacing:2.580000px;}
._41_c00273{margin-left:-21.888000px;}
._21_c00273{margin-left:-17.940000px;}
._22_c00273{margin-left:-13.980000px;}
._2b_c00273{margin-left:-11.820000px;}
._28_c00273{margin-left:-10.500000px;}
._1a_c00273{margin-left:-8.760000px;}
._2a_c00273{margin-left:-7.380000px;}
._1d_c00273{margin-left:-6.060000px;}
._11_c00273{margin-left:-5.040000px;}
._19_c00273{margin-left:-4.020000px;}
._8_c00273{margin-left:-2.820000px;}
._15_c00273{margin-left:-1.740000px;}
._a_c00273{width:1.200000px;}
._b_c00273{width:2.640000px;}
._d_c00273{width:3.840000px;}
._c_c00273{width:5.460000px;}
._9_c00273{width:7.320000px;}
._13_c00273{width:8.460000px;}
._0_c00273{width:9.480000px;}
._3e_c00273{width:10.512000px;}
._e_c00273{width:11.520000px;}
._3_c00273{width:13.080000px;}
._4_c00273{width:15.180000px;}
._16_c00273{width:16.980000px;}
._1_c00273{width:18.120000px;}
._6_c00273{width:20.460000px;}
._10_c00273{width:21.600000px;}
._5_c00273{width:22.860000px;}
._35_c00273{width:24.612000px;}
._20_c00273{width:26.160000px;}
._25_c00273{width:27.840000px;}
._26_c00273{width:30.120000px;}
._34_c00273{width:31.140000px;}
._2f_c00273{width:32.694000px;}
._3b_c00273{width:33.864000px;}
._3a_c00273{width:37.920000px;}
._7_c00273{width:40.380000px;}
._37_c00273{width:49.032000px;}
._3c_c00273{width:51.252000px;}
._39_c00273{width:52.731000px;}
._3d_c00273{width:62.664000px;}
._29_c00273{width:71.460000px;}
._17_c00273{width:74.640000px;}
._36_c00273{width:84.726000px;}
._38_c00273{width:86.904000px;}
._12_c00273{width:89.220000px;}
._33_c00273{width:90.420000px;}
._31_c00273{width:92.160000px;}
._18_c00273{width:93.780000px;}
._1f_c00273{width:96.000000px;}
._30_c00273{width:97.080000px;}
._14_c00273{width:98.100000px;}
._2c_c00273{width:99.960000px;}
._f_c00273{width:101.580000px;}
._23_c00273{width:103.020000px;}
._2e_c00273{width:105.360000px;}
._2d_c00273{width:125.040000px;}
._24_c00273{width:147.000000px;}
._32_c00273{width:157.587000px;}
._40_c00273{width:172.200000px;}
._1c_c00273{width:178.440000px;}
._1e_c00273{width:180.720000px;}
._27_c00273{width:202.473000px;}
._1b_c00273{width:207.540000px;}
._3f_c00273{width:228.924000px;}
._2_c00273{width:355.260000px;}
._42_c00273{width:948.600000px;}
.fc2_c00273{color:transparent;}
.fc1_c00273{color:rgb(128,128,128);}
.fc0_c00273{color:rgb(0,0,0);}
.fs4_c00273{font-size:48.000000px;}
.fs1_c00273{font-size:51.000000px;}
.fs0_c00273{font-size:60.000000px;}
.fs2_c00273{font-size:72.000000px;}
.fs3_c00273{font-size:93.000000px;}
.y0_c00273{bottom:0.000000px;}
.y2d_c00273{bottom:3.105000px;}
.y2c_c00273{bottom:7.228363px;}
.y2b_c00273{bottom:43.200000px;}
.y2a_c00273{bottom:63.000000px;}
.y29_c00273{bottom:81.900000px;}
.y28_c00273{bottom:99.900000px;}
.y27_c00273{bottom:119.700000px;}
.y26_c00273{bottom:137.250000px;}
.y25_c00273{bottom:154.950000px;}
.y24_c00273{bottom:173.400000px;}
.y23_c00273{bottom:192.600000px;}
.y22_c00273{bottom:209.250000px;}
.y21_c00273{bottom:229.050000px;}
.y20_c00273{bottom:247.500000px;}
.y1f_c00273{bottom:265.500000px;}
.y1e_c00273{bottom:283.500000px;}
.y1d_c00273{bottom:301.050000px;}
.y1c_c00273{bottom:319.950000px;}
.y1b_c00273{bottom:338.100000px;}
.y1a_c00273{bottom:355.500000px;}
.y19_c00273{bottom:374.400000px;}
.y18_c00273{bottom:393.300000px;}
.y17_c00273{bottom:411.450000px;}
.y16_c00273{bottom:429.600000px;}
.y15_c00273{bottom:447.600000px;}
.y14_c00273{bottom:466.050000px;}
.y13_c00273{bottom:484.350000px;}
.y12_c00273{bottom:502.200000px;}
.y11_c00273{bottom:520.200000px;}
.y10_c00273{bottom:538.350000px;}
.yf_c00273{bottom:556.200000px;}
.ye_c00273{bottom:574.050000px;}
.yd_c00273{bottom:592.950000px;}
.yc_c00273{bottom:610.650000px;}
.yb_c00273{bottom:629.400000px;}
.ya_c00273{bottom:646.950000px;}
.y9_c00273{bottom:664.950000px;}
.y8_c00273{bottom:683.550000px;}
.y7_c00273{bottom:702.000000px;}
.y6_c00273{bottom:720.000000px;}
.y5_c00273{bottom:738.450000px;}
.y4_c00273{bottom:756.300000px;}
.y3_c00273{bottom:774.150000px;}
.y2_c00273{bottom:792.150000px;}
.y1_c00273{bottom:811.650000px;}
.h5_c00273{height:13.200074px;}
.h6_c00273{height:43.804688px;}
.h1_c00273{height:62.880000px;}
.h2_c00273{height:64.020000px;}
.h3_c00273{height:70.664062px;}
.h4_c00273{height:96.996094px;}
.h0_c00273{height:843.750000px;}
.w2_c00273{width:104.875500px;}
.w1_c00273{width:565.500000px;}
.w0_c00273{width:565.650000px;}
.x0_c00273{left:0.000000px;}
.x5_c00273{left:19.200000px;}
.x6_c00273{left:25.200000px;}
.x2_c00273{left:70.800000px;}
.x9_c00273{left:81.000000px;}
.xc_c00273{left:82.650000px;}
.xb_c00273{left:83.700000px;}
.x4_c00273{left:85.050000px;}
.x3_c00273{left:86.100000px;}
.x1_c00273{left:87.300000px;}
.xd_c00273{left:90.300000px;}
.xe_c00273{left:96.150000px;}
.x8_c00273{left:100.050000px;}
.x7_c00273{left:107.850000px;}
.xa_c00273{left:183.300000px;}
.xf_c00273{left:234.639267px;}
@media print{
.v0_c00273{vertical-align:0.000000pt;}
.ls7_c00273{letter-spacing:0.000000pt;}
.ls4_c00273{letter-spacing:0.960000pt;}
.ls0_c00273{letter-spacing:1.973333pt;}
.ls1_c00273{letter-spacing:2.133333pt;}
.ls6_c00273{letter-spacing:2.666667pt;}
.ls2_c00273{letter-spacing:6.933333pt;}
.ls3_c00273{letter-spacing:27.600000pt;}
.ls5_c00273{letter-spacing:30.800000pt;}
.ws4_c00273{word-spacing:-22.981333pt;}
.ws2_c00273{word-spacing:-16.053333pt;}
.ws1_c00273{word-spacing:-14.560000pt;}
.ws5_c00273{word-spacing:-13.706667pt;}
.ws3_c00273{word-spacing:-12.586667pt;}
.ws6_c00273{word-spacing:0.000000pt;}
.ws0_c00273{word-spacing:2.293333pt;}
._41_c00273{margin-left:-19.456000pt;}
._21_c00273{margin-left:-15.946667pt;}
._22_c00273{margin-left:-12.426667pt;}
._2b_c00273{margin-left:-10.506667pt;}
._28_c00273{margin-left:-9.333333pt;}
._1a_c00273{margin-left:-7.786667pt;}
._2a_c00273{margin-left:-6.560000pt;}
._1d_c00273{margin-left:-5.386667pt;}
._11_c00273{margin-left:-4.480000pt;}
._19_c00273{margin-left:-3.573333pt;}
._8_c00273{margin-left:-2.506667pt;}
._15_c00273{margin-left:-1.546667pt;}
._a_c00273{width:1.066667pt;}
._b_c00273{width:2.346667pt;}
._d_c00273{width:3.413333pt;}
._c_c00273{width:4.853333pt;}
._9_c00273{width:6.506667pt;}
._13_c00273{width:7.520000pt;}
._0_c00273{width:8.426667pt;}
._3e_c00273{width:9.344000pt;}
._e_c00273{width:10.240000pt;}
._3_c00273{width:11.626667pt;}
._4_c00273{width:13.493333pt;}
._16_c00273{width:15.093333pt;}
._1_c00273{width:16.106667pt;}
._6_c00273{width:18.186667pt;}
._10_c00273{width:19.200000pt;}
._5_c00273{width:20.320000pt;}
._35_c00273{width:21.877333pt;}
._20_c00273{width:23.253333pt;}
._25_c00273{width:24.746667pt;}
._26_c00273{width:26.773333pt;}
._34_c00273{width:27.680000pt;}
._2f_c00273{width:29.061333pt;}
._3b_c00273{width:30.101333pt;}
._3a_c00273{width:33.706667pt;}
._7_c00273{width:35.893333pt;}
._37_c00273{width:43.584000pt;}
._3c_c00273{width:45.557333pt;}
._39_c00273{width:46.872000pt;}
._3d_c00273{width:55.701333pt;}
._29_c00273{width:63.520000pt;}
._17_c00273{width:66.346667pt;}
._36_c00273{width:75.312000pt;}
._38_c00273{width:77.248000pt;}
._12_c00273{width:79.306667pt;}
._33_c00273{width:80.373333pt;}
._31_c00273{width:81.920000pt;}
._18_c00273{width:83.360000pt;}
._1f_c00273{width:85.333333pt;}
._30_c00273{width:86.293333pt;}
._14_c00273{width:87.200000pt;}
._2c_c00273{width:88.853333pt;}
._f_c00273{width:90.293333pt;}
._23_c00273{width:91.573333pt;}
._2e_c00273{width:93.653333pt;}
._2d_c00273{width:111.146667pt;}
._24_c00273{width:130.666667pt;}
._32_c00273{width:140.077333pt;}
._40_c00273{width:153.066667pt;}
._1c_c00273{width:158.613333pt;}
._1e_c00273{width:160.640000pt;}
._27_c00273{width:179.976000pt;}
._1b_c00273{width:184.480000pt;}
._3f_c00273{width:203.488000pt;}
._2_c00273{width:315.786667pt;}
._42_c00273{width:843.200000pt;}
.fs4_c00273{font-size:42.666667pt;}
.fs1_c00273{font-size:45.333333pt;}
.fs0_c00273{font-size:53.333333pt;}
.fs2_c00273{font-size:64.000000pt;}
.fs3_c00273{font-size:82.666667pt;}
.y0_c00273{bottom:0.000000pt;}
.y2d_c00273{bottom:2.760000pt;}
.y2c_c00273{bottom:6.425212pt;}
.y2b_c00273{bottom:38.400000pt;}
.y2a_c00273{bottom:56.000000pt;}
.y29_c00273{bottom:72.800000pt;}
.y28_c00273{bottom:88.800000pt;}
.y27_c00273{bottom:106.400000pt;}
.y26_c00273{bottom:122.000000pt;}
.y25_c00273{bottom:137.733333pt;}
.y24_c00273{bottom:154.133333pt;}
.y23_c00273{bottom:171.200000pt;}
.y22_c00273{bottom:186.000000pt;}
.y21_c00273{bottom:203.600000pt;}
.y20_c00273{bottom:220.000000pt;}
.y1f_c00273{bottom:236.000000pt;}
.y1e_c00273{bottom:252.000000pt;}
.y1d_c00273{bottom:267.600000pt;}
.y1c_c00273{bottom:284.400000pt;}
.y1b_c00273{bottom:300.533333pt;}
.y1a_c00273{bottom:316.000000pt;}
.y19_c00273{bottom:332.800000pt;}
.y18_c00273{bottom:349.600000pt;}
.y17_c00273{bottom:365.733333pt;}
.y16_c00273{bottom:381.866667pt;}
.y15_c00273{bottom:397.866667pt;}
.y14_c00273{bottom:414.266667pt;}
.y13_c00273{bottom:430.533333pt;}
.y12_c00273{bottom:446.400000pt;}
.y11_c00273{bottom:462.400000pt;}
.y10_c00273{bottom:478.533333pt;}
.yf_c00273{bottom:494.400000pt;}
.ye_c00273{bottom:510.266667pt;}
.yd_c00273{bottom:527.066667pt;}
.yc_c00273{bottom:542.800000pt;}
.yb_c00273{bottom:559.466667pt;}
.ya_c00273{bottom:575.066667pt;}
.y9_c00273{bottom:591.066667pt;}
.y8_c00273{bottom:607.600000pt;}
.y7_c00273{bottom:624.000000pt;}
.y6_c00273{bottom:640.000000pt;}
.y5_c00273{bottom:656.400000pt;}
.y4_c00273{bottom:672.266667pt;}
.y3_c00273{bottom:688.133333pt;}
.y2_c00273{bottom:704.133333pt;}
.y1_c00273{bottom:721.466667pt;}
.h5_c00273{height:11.733399pt;}
.h6_c00273{height:38.937500pt;}
.h1_c00273{height:55.893333pt;}
.h2_c00273{height:56.906667pt;}
.h3_c00273{height:62.812500pt;}
.h4_c00273{height:86.218750pt;}
.h0_c00273{height:750.000000pt;}
.w2_c00273{width:93.222667pt;}
.w1_c00273{width:502.666667pt;}
.w0_c00273{width:502.800000pt;}
.x0_c00273{left:0.000000pt;}
.x5_c00273{left:17.066667pt;}
.x6_c00273{left:22.400000pt;}
.x2_c00273{left:62.933333pt;}
.x9_c00273{left:72.000000pt;}
.xc_c00273{left:73.466667pt;}
.xb_c00273{left:74.400000pt;}
.x4_c00273{left:75.600000pt;}
.x3_c00273{left:76.533333pt;}
.x1_c00273{left:77.600000pt;}
.xd_c00273{left:80.266667pt;}
.xe_c00273{left:85.466667pt;}
.x8_c00273{left:88.933333pt;}
.x7_c00273{left:95.866667pt;}
.xa_c00273{left:162.933333pt;}
.xf_c00273{left:208.568237pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_851134d502cc279894874705.woff2')format("woff");}.ff1_c00274{font-family:ff1_c00274;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00274;src:url('chunks/assets/font_2365f97fce6bffd48d7ef26c.woff2')format("woff");}.ff2_c00274{font-family:ff2_c00274;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00274;src:url('chunks/assets/font_73c6b0bcabe7f0e5c83a0bef.woff2')format("woff");}.ff3_c00274{font-family:ff3_c00274;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00274;src:url('chunks/assets/font_04faa90bc76208d444b99ec1.woff2')format("woff");}.ff4_c00274{font-family:ff4_c00274;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00274;src:url('chunks/assets/font_eb1e816333b062dac1114673.woff2')format("woff");}.ff5_c00274{font-family:ff5_c00274;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00274;src:url('chunks/assets/font_bbbe2b75a2e510dc0de8fe3e.woff2')format("woff");}.ff6_c00274{font-family:ff6_c00274;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00274;src:url('chunks/assets/font_3b546290435a1c120c4c4b5d.woff2')format("woff");}.ff7_c00274{font-family:ff7_c00274;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00274;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff8_c00274{font-family:ff8_c00274;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls5_c00274{letter-spacing:0.000000px;}
.ls0_c00274{letter-spacing:3.000000px;}
.ls2_c00274{letter-spacing:6.000000px;}
.ls1_c00274{letter-spacing:6.600000px;}
.ls7_c00274{letter-spacing:9.000000px;}
.ls4_c00274{letter-spacing:9.840000px;}
.ls3_c00274{letter-spacing:13.650000px;}
.ls6_c00274{letter-spacing:15.000000px;}
.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;}
}
.ws5_c00274{word-spacing:-24.750000px;}
.ws3_c00274{word-spacing:-18.000000px;}
.ws1_c00274{word-spacing:-17.340000px;}
.ws4_c00274{word-spacing:-15.750000px;}
.ws0_c00274{word-spacing:-14.160000px;}
.ws6_c00274{word-spacing:0.000000px;}
.ws2_c00274{word-spacing:5.760000px;}
._26_c00274{margin-left:-29.640000px;}
._25_c00274{margin-left:-20.808000px;}
._2b_c00274{margin-left:-16.200000px;}
._16_c00274{margin-left:-14.769000px;}
._2d_c00274{margin-left:-11.253000px;}
._17_c00274{margin-left:-8.316000px;}
._12_c00274{margin-left:-6.858000px;}
._e_c00274{margin-left:-5.352000px;}
._4_c00274{margin-left:-4.248000px;}
._3_c00274{margin-left:-3.096000px;}
._5_c00274{margin-left:-1.944000px;}
._7_c00274{width:1.800000px;}
._b_c00274{width:3.789000px;}
._c_c00274{width:5.775000px;}
._1_c00274{width:6.984000px;}
._0_c00274{width:8.352000px;}
._d_c00274{width:10.242000px;}
._11_c00274{width:11.592000px;}
._13_c00274{width:13.032000px;}
._f_c00274{width:14.430000px;}
._29_c00274{width:15.948000px;}
._1a_c00274{width:17.010000px;}
._15_c00274{width:19.491000px;}
._14_c00274{width:20.622000px;}
._10_c00274{width:22.044000px;}
._1b_c00274{width:24.156000px;}
._21_c00274{width:25.584000px;}
._20_c00274{width:26.976000px;}
._8_c00274{width:28.386000px;}
._1d_c00274{width:29.982000px;}
._9_c00274{width:31.296000px;}
._27_c00274{width:36.252000px;}
._2_c00274{width:39.288000px;}
._1c_c00274{width:42.348000px;}
._2c_c00274{width:43.980000px;}
._22_c00274{width:46.632000px;}
._28_c00274{width:52.140000px;}
._2a_c00274{width:65.187000px;}
._a_c00274{width:72.300000px;}
._18_c00274{width:104.412000px;}
._23_c00274{width:106.056000px;}
._1e_c00274{width:116.412000px;}
._1f_c00274{width:132.261000px;}
._2e_c00274{width:152.700000px;}
._24_c00274{width:184.809000px;}
._19_c00274{width:241.140000px;}
._6_c00274{width:371.664000px;}
.fc2_c00274{color:transparent;}
.fc1_c00274{color:rgb(128,128,128);}
.fc0_c00274{color:rgb(0,0,0);}
.fs3_c00274{font-size:45.000000px;}
.fs5_c00274{font-size:48.000000px;}
.fs2_c00274{font-size:60.000000px;}
.fs4_c00274{font-size:63.000000px;}
.fs1_c00274{font-size:69.000000px;}
.fs0_c00274{font-size:72.000000px;}
.y0_c00274{bottom:0.000000px;}
.y55_c00274{bottom:3.105000px;}
.y54_c00274{bottom:7.228357px;}
.y53_c00274{bottom:42.180000px;}
.y52_c00274{bottom:60.480000px;}
.y2a_c00274{bottom:61.530000px;}
.y51_c00274{bottom:78.930000px;}
.y29_c00274{bottom:80.730000px;}
.y50_c00274{bottom:96.930000px;}
.y28_c00274{bottom:98.580000px;}
.y4f_c00274{bottom:114.780000px;}
.y27_c00274{bottom:117.180000px;}
.y4e_c00274{bottom:133.380000px;}
.y26_c00274{bottom:134.730000px;}
.y4d_c00274{bottom:151.080000px;}
.y25_c00274{bottom:153.630000px;}
.y4c_c00274{bottom:169.380000px;}
.y24_c00274{bottom:171.480000px;}
.y4b_c00274{bottom:187.680000px;}
.y23_c00274{bottom:189.030000px;}
.y4a_c00274{bottom:205.530000px;}
.y22_c00274{bottom:207.330000px;}
.y49_c00274{bottom:223.830000px;}
.y21_c00274{bottom:225.030000px;}
.y48_c00274{bottom:241.380000px;}
.y20_c00274{bottom:242.430000px;}
.y1f_c00274{bottom:259.830000px;}
.y47_c00274{bottom:259.980000px;}
.y46_c00274{bottom:277.830000px;}
.y1e_c00274{bottom:279.480000px;}
.y45_c00274{bottom:296.430000px;}
.y1d_c00274{bottom:297.330000px;}
.y44_c00274{bottom:314.280000px;}
.y1c_c00274{bottom:315.930000px;}
.y43_c00274{bottom:332.730000px;}
.y1b_c00274{bottom:334.230000px;}
.y42_c00274{bottom:350.430000px;}
.y1a_c00274{bottom:352.080000px;}
.y41_c00274{bottom:368.580000px;}
.y19_c00274{bottom:368.880000px;}
.y40_c00274{bottom:386.880000px;}
.y18_c00274{bottom:387.780000px;}
.y3f_c00274{bottom:405.030000px;}
.y17_c00274{bottom:405.780000px;}
.y16_c00274{bottom:422.880000px;}
.y3e_c00274{bottom:423.630000px;}
.y3d_c00274{bottom:441.180000px;}
.y15_c00274{bottom:441.480000px;}
.y14_c00274{bottom:459.330000px;}
.y3c_c00274{bottom:459.780000px;}
.y3b_c00274{bottom:476.880000px;}
.y13_c00274{bottom:477.180000px;}
.y12_c00274{bottom:494.730000px;}
.y3a_c00274{bottom:496.080000px;}
.y11_c00274{bottom:512.430000px;}
.y39_c00274{bottom:514.080000px;}
.y10_c00274{bottom:530.580000px;}
.y38_c00274{bottom:530.880000px;}
.yf_c00274{bottom:548.430000px;}
.y37_c00274{bottom:550.830000px;}
.ye_c00274{bottom:566.730000px;}
.y36_c00274{bottom:568.680000px;}
.yd_c00274{bottom:585.180000px;}
.y35_c00274{bottom:586.980000px;}
.yc_c00274{bottom:602.880000px;}
.y34_c00274{bottom:605.430000px;}
.yb_c00274{bottom:620.730000px;}
.y33_c00274{bottom:623.730000px;}
.ya_c00274{bottom:639.330000px;}
.y32_c00274{bottom:642.030000px;}
.y9_c00274{bottom:656.730000px;}
.y31_c00274{bottom:659.880000px;}
.y8_c00274{bottom:674.280000px;}
.y30_c00274{bottom:677.730000px;}
.y7_c00274{bottom:693.330000px;}
.y2f_c00274{bottom:696.630000px;}
.y6_c00274{bottom:710.730000px;}
.y2e_c00274{bottom:714.180000px;}
.y5_c00274{bottom:728.730000px;}
.y2d_c00274{bottom:732.480000px;}
.y4_c00274{bottom:746.880000px;}
.y2c_c00274{bottom:750.630000px;}
.y3_c00274{bottom:764.880000px;}
.y2b_c00274{bottom:767.580000px;}
.y2_c00274{bottom:785.130000px;}
.y1_c00274{bottom:804.630000px;}
.h8_c00274{height:13.200074px;}
.h9_c00274{height:43.804688px;}
.h6_c00274{height:47.160000px;}
.h4_c00274{height:62.880000px;}
.h5_c00274{height:64.020000px;}
.h7_c00274{height:67.221000px;}
.h2_c00274{height:70.664062px;}
.h3_c00274{height:73.623000px;}
.h0_c00274{height:841.350000px;}
.h1_c00274{height:841.500000px;}
.w1_c00274{width:104.875500px;}
.w0_c00274{width:590.250000px;}
.x0_c00274{left:0.000000px;}
.x5_c00274{left:24.300000px;}
.x6_c00274{left:25.950000px;}
.x7_c00274{left:27.000000px;}
.xa_c00274{left:28.650000px;}
.xd_c00274{left:80.700000px;}
.xc_c00274{left:81.750000px;}
.x9_c00274{left:83.100000px;}
.x8_c00274{left:84.750000px;}
.x3_c00274{left:87.150000px;}
.x2_c00274{left:88.200000px;}
.xb_c00274{left:108.300000px;}
.x4_c00274{left:114.150000px;}
.x1_c00274{left:221.850000px;}
.x17_c00274{left:246.939240px;}
.x15_c00274{left:297.300000px;}
.x14_c00274{left:298.350000px;}
.x13_c00274{left:299.400000px;}
.x10_c00274{left:301.350000px;}
.x12_c00274{left:302.850000px;}
.x11_c00274{left:304.800000px;}
.xe_c00274{left:306.450000px;}
.xf_c00274{left:307.800000px;}
.x16_c00274{left:378.750000px;}
@media print{
.v0_c00274{vertical-align:0.000000pt;}
.ls5_c00274{letter-spacing:0.000000pt;}
.ls0_c00274{letter-spacing:2.666667pt;}
.ls2_c00274{letter-spacing:5.333333pt;}
.ls1_c00274{letter-spacing:5.866667pt;}
.ls7_c00274{letter-spacing:8.000000pt;}
.ls4_c00274{letter-spacing:8.746667pt;}
.ls3_c00274{letter-spacing:12.133333pt;}
.ls6_c00274{letter-spacing:13.333333pt;}
.ws5_c00274{word-spacing:-22.000000pt;}
.ws3_c00274{word-spacing:-16.000000pt;}
.ws1_c00274{word-spacing:-15.413333pt;}
.ws4_c00274{word-spacing:-14.000000pt;}
.ws0_c00274{word-spacing:-12.586667pt;}
.ws6_c00274{word-spacing:0.000000pt;}
.ws2_c00274{word-spacing:5.120000pt;}
._26_c00274{margin-left:-26.346667pt;}
._25_c00274{margin-left:-18.496000pt;}
._2b_c00274{margin-left:-14.400000pt;}
._16_c00274{margin-left:-13.128000pt;}
._2d_c00274{margin-left:-10.002667pt;}
._17_c00274{margin-left:-7.392000pt;}
._12_c00274{margin-left:-6.096000pt;}
._e_c00274{margin-left:-4.757333pt;}
._4_c00274{margin-left:-3.776000pt;}
._3_c00274{margin-left:-2.752000pt;}
._5_c00274{margin-left:-1.728000pt;}
._7_c00274{width:1.600000pt;}
._b_c00274{width:3.368000pt;}
._c_c00274{width:5.133333pt;}
._1_c00274{width:6.208000pt;}
._0_c00274{width:7.424000pt;}
._d_c00274{width:9.104000pt;}
._11_c00274{width:10.304000pt;}
._13_c00274{width:11.584000pt;}
._f_c00274{width:12.826667pt;}
._29_c00274{width:14.176000pt;}
._1a_c00274{width:15.120000pt;}
._15_c00274{width:17.325333pt;}
._14_c00274{width:18.330667pt;}
._10_c00274{width:19.594667pt;}
._1b_c00274{width:21.472000pt;}
._21_c00274{width:22.741333pt;}
._20_c00274{width:23.978667pt;}
._8_c00274{width:25.232000pt;}
._1d_c00274{width:26.650667pt;}
._9_c00274{width:27.818667pt;}
._27_c00274{width:32.224000pt;}
._2_c00274{width:34.922667pt;}
._1c_c00274{width:37.642667pt;}
._2c_c00274{width:39.093333pt;}
._22_c00274{width:41.450667pt;}
._28_c00274{width:46.346667pt;}
._2a_c00274{width:57.944000pt;}
._a_c00274{width:64.266667pt;}
._18_c00274{width:92.810667pt;}
._23_c00274{width:94.272000pt;}
._1e_c00274{width:103.477333pt;}
._1f_c00274{width:117.565333pt;}
._2e_c00274{width:135.733333pt;}
._24_c00274{width:164.274667pt;}
._19_c00274{width:214.346667pt;}
._6_c00274{width:330.368000pt;}
.fs3_c00274{font-size:40.000000pt;}
.fs5_c00274{font-size:42.666667pt;}
.fs2_c00274{font-size:53.333333pt;}
.fs4_c00274{font-size:56.000000pt;}
.fs1_c00274{font-size:61.333333pt;}
.fs0_c00274{font-size:64.000000pt;}
.y0_c00274{bottom:0.000000pt;}
.y55_c00274{bottom:2.760000pt;}
.y54_c00274{bottom:6.425206pt;}
.y53_c00274{bottom:37.493333pt;}
.y52_c00274{bottom:53.760000pt;}
.y2a_c00274{bottom:54.693333pt;}
.y51_c00274{bottom:70.160000pt;}
.y29_c00274{bottom:71.760000pt;}
.y50_c00274{bottom:86.160000pt;}
.y28_c00274{bottom:87.626667pt;}
.y4f_c00274{bottom:102.026667pt;}
.y27_c00274{bottom:104.160000pt;}
.y4e_c00274{bottom:118.560000pt;}
.y26_c00274{bottom:119.760000pt;}
.y4d_c00274{bottom:134.293333pt;}
.y25_c00274{bottom:136.560000pt;}
.y4c_c00274{bottom:150.560000pt;}
.y24_c00274{bottom:152.426667pt;}
.y4b_c00274{bottom:166.826667pt;}
.y23_c00274{bottom:168.026667pt;}
.y4a_c00274{bottom:182.693333pt;}
.y22_c00274{bottom:184.293333pt;}
.y49_c00274{bottom:198.960000pt;}
.y21_c00274{bottom:200.026667pt;}
.y48_c00274{bottom:214.560000pt;}
.y20_c00274{bottom:215.493333pt;}
.y1f_c00274{bottom:230.960000pt;}
.y47_c00274{bottom:231.093333pt;}
.y46_c00274{bottom:246.960000pt;}
.y1e_c00274{bottom:248.426667pt;}
.y45_c00274{bottom:263.493333pt;}
.y1d_c00274{bottom:264.293333pt;}
.y44_c00274{bottom:279.360000pt;}
.y1c_c00274{bottom:280.826667pt;}
.y43_c00274{bottom:295.760000pt;}
.y1b_c00274{bottom:297.093333pt;}
.y42_c00274{bottom:311.493333pt;}
.y1a_c00274{bottom:312.960000pt;}
.y41_c00274{bottom:327.626667pt;}
.y19_c00274{bottom:327.893333pt;}
.y40_c00274{bottom:343.893333pt;}
.y18_c00274{bottom:344.693333pt;}
.y3f_c00274{bottom:360.026667pt;}
.y17_c00274{bottom:360.693333pt;}
.y16_c00274{bottom:375.893333pt;}
.y3e_c00274{bottom:376.560000pt;}
.y3d_c00274{bottom:392.160000pt;}
.y15_c00274{bottom:392.426667pt;}
.y14_c00274{bottom:408.293333pt;}
.y3c_c00274{bottom:408.693333pt;}
.y3b_c00274{bottom:423.893333pt;}
.y13_c00274{bottom:424.160000pt;}
.y12_c00274{bottom:439.760000pt;}
.y3a_c00274{bottom:440.960000pt;}
.y11_c00274{bottom:455.493333pt;}
.y39_c00274{bottom:456.960000pt;}
.y10_c00274{bottom:471.626667pt;}
.y38_c00274{bottom:471.893333pt;}
.yf_c00274{bottom:487.493333pt;}
.y37_c00274{bottom:489.626667pt;}
.ye_c00274{bottom:503.760000pt;}
.y36_c00274{bottom:505.493333pt;}
.yd_c00274{bottom:520.160000pt;}
.y35_c00274{bottom:521.760000pt;}
.yc_c00274{bottom:535.893333pt;}
.y34_c00274{bottom:538.160000pt;}
.yb_c00274{bottom:551.760000pt;}
.y33_c00274{bottom:554.426667pt;}
.ya_c00274{bottom:568.293333pt;}
.y32_c00274{bottom:570.693333pt;}
.y9_c00274{bottom:583.760000pt;}
.y31_c00274{bottom:586.560000pt;}
.y8_c00274{bottom:599.360000pt;}
.y30_c00274{bottom:602.426667pt;}
.y7_c00274{bottom:616.293333pt;}
.y2f_c00274{bottom:619.226667pt;}
.y6_c00274{bottom:631.760000pt;}
.y2e_c00274{bottom:634.826667pt;}
.y5_c00274{bottom:647.760000pt;}
.y2d_c00274{bottom:651.093333pt;}
.y4_c00274{bottom:663.893333pt;}
.y2c_c00274{bottom:667.226667pt;}
.y3_c00274{bottom:679.893333pt;}
.y2b_c00274{bottom:682.293333pt;}
.y2_c00274{bottom:697.893333pt;}
.y1_c00274{bottom:715.226667pt;}
.h8_c00274{height:11.733399pt;}
.h9_c00274{height:38.937500pt;}
.h6_c00274{height:41.920000pt;}
.h4_c00274{height:55.893333pt;}
.h5_c00274{height:56.906667pt;}
.h7_c00274{height:59.752000pt;}
.h2_c00274{height:62.812500pt;}
.h3_c00274{height:65.442667pt;}
.h0_c00274{height:747.866667pt;}
.h1_c00274{height:748.000000pt;}
.w1_c00274{width:93.222667pt;}
.w0_c00274{width:524.666667pt;}
.x0_c00274{left:0.000000pt;}
.x5_c00274{left:21.600000pt;}
.x6_c00274{left:23.066667pt;}
.x7_c00274{left:24.000000pt;}
.xa_c00274{left:25.466667pt;}
.xd_c00274{left:71.733333pt;}
.xc_c00274{left:72.666667pt;}
.x9_c00274{left:73.866667pt;}
.x8_c00274{left:75.333333pt;}
.x3_c00274{left:77.466667pt;}
.x2_c00274{left:78.400000pt;}
.xb_c00274{left:96.266667pt;}
.x4_c00274{left:101.466667pt;}
.x1_c00274{left:197.200000pt;}
.x17_c00274{left:219.501546pt;}
.x15_c00274{left:264.266667pt;}
.x14_c00274{left:265.200000pt;}
.x13_c00274{left:266.133333pt;}
.x10_c00274{left:267.866667pt;}
.x12_c00274{left:269.200000pt;}
.x11_c00274{left:270.933333pt;}
.xe_c00274{left:272.400000pt;}
.xf_c00274{left:273.600000pt;}
.x16_c00274{left:336.666667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_cb28afd14696841cc1e0f103.woff2')format("woff");}.ff1_c00275{font-family:ff1_c00275;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00275;src:url('chunks/assets/font_586e8dcf9e1bffbc00c1260d.woff2')format("woff");}.ff2_c00275{font-family:ff2_c00275;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00275;src:url('chunks/assets/font_f3790c11fa1b72b5ebd5d0f3.woff2')format("woff");}.ff3_c00275{font-family:ff3_c00275;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00275;src:url('chunks/assets/font_afccd673c121ee5cfd1795d1.woff2')format("woff");}.ff4_c00275{font-family:ff4_c00275;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00275;src:url('chunks/assets/font_5e494971304ee28eb2aeb43d.woff2')format("woff");}.ff5_c00275{font-family:ff5_c00275;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_c00275;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff6_c00275{font-family:ff6_c00275;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:ff7_c00275;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff7_c00275{font-family:ff7_c00275;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00275{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00275{vertical-align:0.000000px;}
.v1_c00275{vertical-align:110.400000px;}
.ls7_c00275{letter-spacing:0.000000px;}
.ls5_c00275{letter-spacing:1.005000px;}
.ls0_c00275{letter-spacing:3.000000px;}
.ls6_c00275{letter-spacing:3.672000px;}
.ls1_c00275{letter-spacing:5.805000px;}
.ls2_c00275{letter-spacing:5.808000px;}
.ls8_c00275{letter-spacing:6.000000px;}
.ls4_c00275{letter-spacing:15.180000px;}
.ls3_c00275{letter-spacing:38.550000px;}
.sc__c00275{text-shadow:none;}
.sc0_c00275{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00275{-webkit-text-stroke:0px transparent;}
.sc0_c00275{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00275{word-spacing:-35.295000px;}
.ws6_c00275{word-spacing:-25.854000px;}
.ws4_c00275{word-spacing:-22.572000px;}
.ws3_c00275{word-spacing:-18.060000px;}
.ws0_c00275{word-spacing:-14.160000px;}
.ws5_c00275{word-spacing:-13.452000px;}
.ws1_c00275{word-spacing:-0.960000px;}
.ws7_c00275{word-spacing:0.000000px;}
._2d_c00275{margin-left:-32.511000px;}
._2b_c00275{margin-left:-31.116000px;}
._2c_c00275{margin-left:-22.644000px;}
._31_c00275{margin-left:-21.264000px;}
._6_c00275{margin-left:-20.220000px;}
._2f_c00275{margin-left:-17.484000px;}
._30_c00275{margin-left:-16.122000px;}
._27_c00275{margin-left:-15.000000px;}
._2e_c00275{margin-left:-13.980000px;}
._16_c00275{margin-left:-12.660000px;}
._2_c00275{margin-left:-10.980000px;}
._2a_c00275{margin-left:-9.912000px;}
._3_c00275{margin-left:-8.640000px;}
._24_c00275{margin-left:-7.545000px;}
._10_c00275{margin-left:-6.000000px;}
._f_c00275{margin-left:-4.740000px;}
._e_c00275{margin-left:-2.760000px;}
._b_c00275{margin-left:-1.680000px;}
._0_c00275{width:1.440000px;}
._5_c00275{width:2.640000px;}
._9_c00275{width:3.660000px;}
._11_c00275{width:5.220000px;}
._8_c00275{width:6.240000px;}
._15_c00275{width:7.500000px;}
._12_c00275{width:8.640000px;}
._c_c00275{width:10.380000px;}
._a_c00275{width:11.460000px;}
._13_c00275{width:13.020000px;}
._1a_c00275{width:14.040000px;}
._d_c00275{width:15.600000px;}
._1d_c00275{width:16.800000px;}
._1f_c00275{width:19.080000px;}
._1b_c00275{width:20.340000px;}
._14_c00275{width:21.840000px;}
._4_c00275{width:23.040000px;}
._23_c00275{width:25.455000px;}
._18_c00275{width:30.405000px;}
._1c_c00275{width:32.760000px;}
._29_c00275{width:34.680000px;}
._1e_c00275{width:35.700000px;}
._21_c00275{width:36.840000px;}
._17_c00275{width:38.220000px;}
._19_c00275{width:39.840000px;}
._25_c00275{width:44.520000px;}
._22_c00275{width:48.900000px;}
._20_c00275{width:51.600000px;}
._1_c00275{width:190.800000px;}
._28_c00275{width:200.340000px;}
._26_c00275{width:202.560000px;}
._7_c00275{width:212.040000px;}
.fc2_c00275{color:transparent;}
.fc1_c00275{color:rgb(128,128,128);}
.fc0_c00275{color:rgb(0,0,0);}
.fs1_c00275{font-size:45.000000px;}
.fs3_c00275{font-size:45.600000px;}
.fs6_c00275{font-size:48.000000px;}
.fs2_c00275{font-size:57.000000px;}
.fs0_c00275{font-size:60.000000px;}
.fs5_c00275{font-size:93.000000px;}
.fs4_c00275{font-size:207.000000px;}
.y0_c00275{bottom:0.000000px;}
.y51_c00275{bottom:3.105000px;}
.y50_c00275{bottom:7.228363px;}
.y4f_c00275{bottom:30.600000px;}
.y4e_c00275{bottom:50.250000px;}
.y29_c00275{bottom:52.350000px;}
.y4d_c00275{bottom:68.850000px;}
.y28_c00275{bottom:70.650000px;}
.y4c_c00275{bottom:87.450000px;}
.y27_c00275{bottom:89.550000px;}
.y4b_c00275{bottom:105.600000px;}
.y26_c00275{bottom:106.050000px;}
.y4a_c00275{bottom:123.150000px;}
.y25_c00275{bottom:125.550000px;}
.y49_c00275{bottom:143.400000px;}
.y24_c00275{bottom:144.150000px;}
.y48_c00275{bottom:160.350000px;}
.y23_c00275{bottom:162.450000px;}
.y47_c00275{bottom:178.500000px;}
.y22_c00275{bottom:180.000000px;}
.y46_c00275{bottom:196.800000px;}
.y21_c00275{bottom:198.750000px;}
.y45_c00275{bottom:214.650000px;}
.y20_c00275{bottom:215.400000px;}
.y44_c00275{bottom:232.950000px;}
.y1f_c00275{bottom:234.900000px;}
.y43_c00275{bottom:251.400000px;}
.y1e_c00275{bottom:252.900000px;}
.y42_c00275{bottom:268.950000px;}
.y1d_c00275{bottom:271.050000px;}
.y41_c00275{bottom:287.550000px;}
.y1c_c00275{bottom:289.200000px;}
.y40_c00275{bottom:304.200000px;}
.y1b_c00275{bottom:307.200000px;}
.y3f_c00275{bottom:324.450000px;}
.y1a_c00275{bottom:325.650000px;}
.y3e_c00275{bottom:342.900000px;}
.y19_c00275{bottom:343.650000px;}
.y3d_c00275{bottom:359.100000px;}
.y18_c00275{bottom:362.250000px;}
.y3c_c00275{bottom:377.400000px;}
.y17_c00275{bottom:380.100000px;}
.y3b_c00275{bottom:397.800000px;}
.y16_c00275{bottom:398.700000px;}
.y3a_c00275{bottom:415.200000px;}
.y15_c00275{bottom:416.850000px;}
.y39_c00275{bottom:433.350000px;}
.y14_c00275{bottom:434.700000px;}
.y38_c00275{bottom:452.250000px;}
.y13_c00275{bottom:452.700000px;}
.y37_c00275{bottom:469.200000px;}
.y12_c00275{bottom:471.150000px;}
.y36_c00275{bottom:488.400000px;}
.y11_c00275{bottom:489.000000px;}
.y35_c00275{bottom:506.550000px;}
.y10_c00275{bottom:507.150000px;}
.y34_c00275{bottom:524.550000px;}
.yf_c00275{bottom:524.850000px;}
.ye_c00275{bottom:543.000000px;}
.y33_c00275{bottom:559.950000px;}
.yd_c00275{bottom:561.150000px;}
.y32_c00275{bottom:578.100000px;}
.yc_c00275{bottom:578.850000px;}
.y31_c00275{bottom:597.300000px;}
.yb_c00275{bottom:597.600000px;}
.y2f_c00275{bottom:606.150000px;}
.y30_c00275{bottom:613.500000px;}
.ya_c00275{bottom:615.300000px;}
.y9_c00275{bottom:632.100000px;}
.y8_c00275{bottom:650.400000px;}
.y7_c00275{bottom:669.300000px;}
.y2e_c00275{bottom:671.850000px;}
.y6_c00275{bottom:688.500000px;}
.y2d_c00275{bottom:690.150000px;}
.y5_c00275{bottom:705.750000px;}
.y2c_c00275{bottom:707.700000px;}
.y2b_c00275{bottom:725.250000px;}
.y4_c00275{bottom:725.400000px;}
.y3_c00275{bottom:743.250000px;}
.y2a_c00275{bottom:760.800000px;}
.y2_c00275{bottom:762.150000px;}
.y1_c00275{bottom:779.550000px;}
.h6_c00275{height:13.200074px;}
.h7_c00275{height:43.804688px;}
.h3_c00275{height:59.736000px;}
.h2_c00275{height:62.880000px;}
.h5_c00275{height:96.996094px;}
.h4_c00275{height:216.936000px;}
.h1_c00275{height:834.000000px;}
.h0_c00275{height:834.300000px;}
.w2_c00275{width:104.875500px;}
.w1_c00275{width:558.750000px;}
.w0_c00275{width:558.900000px;}
.x0_c00275{left:0.000000px;}
.x2_c00275{left:23.850000px;}
.x9_c00275{left:76.200000px;}
.x7_c00275{left:81.750000px;}
.x4_c00275{left:83.250000px;}
.x6_c00275{left:84.750000px;}
.x8_c00275{left:85.950000px;}
.x5_c00275{left:87.000000px;}
.x3_c00275{left:88.350000px;}
.x1_c00275{left:89.700000px;}
.xa_c00275{left:112.650000px;}
.xb_c00275{left:138.750000px;}
.x18_c00275{left:231.264267px;}
.x12_c00275{left:298.050000px;}
.x15_c00275{left:302.400000px;}
.x16_c00275{left:303.450000px;}
.x14_c00275{left:305.700000px;}
.xe_c00275{left:306.750000px;}
.xd_c00275{left:308.550000px;}
.xf_c00275{left:312.900000px;}
.x10_c00275{left:346.950000px;}
.x13_c00275{left:350.250000px;}
.xc_c00275{left:372.900000px;}
.x11_c00275{left:385.650000px;}
.x17_c00275{left:472.800000px;}
@media print{
.v0_c00275{vertical-align:0.000000pt;}
.v1_c00275{vertical-align:98.133333pt;}
.ls7_c00275{letter-spacing:0.000000pt;}
.ls5_c00275{letter-spacing:0.893333pt;}
.ls0_c00275{letter-spacing:2.666667pt;}
.ls6_c00275{letter-spacing:3.264000pt;}
.ls1_c00275{letter-spacing:5.160000pt;}
.ls2_c00275{letter-spacing:5.162667pt;}
.ls8_c00275{letter-spacing:5.333333pt;}
.ls4_c00275{letter-spacing:13.493333pt;}
.ls3_c00275{letter-spacing:34.266667pt;}
.ws2_c00275{word-spacing:-31.373333pt;}
.ws6_c00275{word-spacing:-22.981333pt;}
.ws4_c00275{word-spacing:-20.064000pt;}
.ws3_c00275{word-spacing:-16.053333pt;}
.ws0_c00275{word-spacing:-12.586667pt;}
.ws5_c00275{word-spacing:-11.957333pt;}
.ws1_c00275{word-spacing:-0.853333pt;}
.ws7_c00275{word-spacing:0.000000pt;}
._2d_c00275{margin-left:-28.898667pt;}
._2b_c00275{margin-left:-27.658667pt;}
._2c_c00275{margin-left:-20.128000pt;}
._31_c00275{margin-left:-18.901333pt;}
._6_c00275{margin-left:-17.973333pt;}
._2f_c00275{margin-left:-15.541333pt;}
._30_c00275{margin-left:-14.330667pt;}
._27_c00275{margin-left:-13.333333pt;}
._2e_c00275{margin-left:-12.426667pt;}
._16_c00275{margin-left:-11.253333pt;}
._2_c00275{margin-left:-9.760000pt;}
._2a_c00275{margin-left:-8.810667pt;}
._3_c00275{margin-left:-7.680000pt;}
._24_c00275{margin-left:-6.706667pt;}
._10_c00275{margin-left:-5.333333pt;}
._f_c00275{margin-left:-4.213333pt;}
._e_c00275{margin-left:-2.453333pt;}
._b_c00275{margin-left:-1.493333pt;}
._0_c00275{width:1.280000pt;}
._5_c00275{width:2.346667pt;}
._9_c00275{width:3.253333pt;}
._11_c00275{width:4.640000pt;}
._8_c00275{width:5.546667pt;}
._15_c00275{width:6.666667pt;}
._12_c00275{width:7.680000pt;}
._c_c00275{width:9.226667pt;}
._a_c00275{width:10.186667pt;}
._13_c00275{width:11.573333pt;}
._1a_c00275{width:12.480000pt;}
._d_c00275{width:13.866667pt;}
._1d_c00275{width:14.933333pt;}
._1f_c00275{width:16.960000pt;}
._1b_c00275{width:18.080000pt;}
._14_c00275{width:19.413333pt;}
._4_c00275{width:20.480000pt;}
._23_c00275{width:22.626667pt;}
._18_c00275{width:27.026667pt;}
._1c_c00275{width:29.120000pt;}
._29_c00275{width:30.826667pt;}
._1e_c00275{width:31.733333pt;}
._21_c00275{width:32.746667pt;}
._17_c00275{width:33.973333pt;}
._19_c00275{width:35.413333pt;}
._25_c00275{width:39.573333pt;}
._22_c00275{width:43.466667pt;}
._20_c00275{width:45.866667pt;}
._1_c00275{width:169.600000pt;}
._28_c00275{width:178.080000pt;}
._26_c00275{width:180.053333pt;}
._7_c00275{width:188.480000pt;}
.fs1_c00275{font-size:40.000000pt;}
.fs3_c00275{font-size:40.533333pt;}
.fs6_c00275{font-size:42.666667pt;}
.fs2_c00275{font-size:50.666667pt;}
.fs0_c00275{font-size:53.333333pt;}
.fs5_c00275{font-size:82.666667pt;}
.fs4_c00275{font-size:184.000000pt;}
.y0_c00275{bottom:0.000000pt;}
.y51_c00275{bottom:2.760000pt;}
.y50_c00275{bottom:6.425212pt;}
.y4f_c00275{bottom:27.200000pt;}
.y4e_c00275{bottom:44.666667pt;}
.y29_c00275{bottom:46.533333pt;}
.y4d_c00275{bottom:61.200000pt;}
.y28_c00275{bottom:62.800000pt;}
.y4c_c00275{bottom:77.733333pt;}
.y27_c00275{bottom:79.600000pt;}
.y4b_c00275{bottom:93.866667pt;}
.y26_c00275{bottom:94.266667pt;}
.y4a_c00275{bottom:109.466667pt;}
.y25_c00275{bottom:111.600000pt;}
.y49_c00275{bottom:127.466667pt;}
.y24_c00275{bottom:128.133333pt;}
.y48_c00275{bottom:142.533333pt;}
.y23_c00275{bottom:144.400000pt;}
.y47_c00275{bottom:158.666667pt;}
.y22_c00275{bottom:160.000000pt;}
.y46_c00275{bottom:174.933333pt;}
.y21_c00275{bottom:176.666667pt;}
.y45_c00275{bottom:190.800000pt;}
.y20_c00275{bottom:191.466667pt;}
.y44_c00275{bottom:207.066667pt;}
.y1f_c00275{bottom:208.800000pt;}
.y43_c00275{bottom:223.466667pt;}
.y1e_c00275{bottom:224.800000pt;}
.y42_c00275{bottom:239.066667pt;}
.y1d_c00275{bottom:240.933333pt;}
.y41_c00275{bottom:255.600000pt;}
.y1c_c00275{bottom:257.066667pt;}
.y40_c00275{bottom:270.400000pt;}
.y1b_c00275{bottom:273.066667pt;}
.y3f_c00275{bottom:288.400000pt;}
.y1a_c00275{bottom:289.466667pt;}
.y3e_c00275{bottom:304.800000pt;}
.y19_c00275{bottom:305.466667pt;}
.y3d_c00275{bottom:319.200000pt;}
.y18_c00275{bottom:322.000000pt;}
.y3c_c00275{bottom:335.466667pt;}
.y17_c00275{bottom:337.866667pt;}
.y3b_c00275{bottom:353.600000pt;}
.y16_c00275{bottom:354.400000pt;}
.y3a_c00275{bottom:369.066667pt;}
.y15_c00275{bottom:370.533333pt;}
.y39_c00275{bottom:385.200000pt;}
.y14_c00275{bottom:386.400000pt;}
.y38_c00275{bottom:402.000000pt;}
.y13_c00275{bottom:402.400000pt;}
.y37_c00275{bottom:417.066667pt;}
.y12_c00275{bottom:418.800000pt;}
.y36_c00275{bottom:434.133333pt;}
.y11_c00275{bottom:434.666667pt;}
.y35_c00275{bottom:450.266667pt;}
.y10_c00275{bottom:450.800000pt;}
.y34_c00275{bottom:466.266667pt;}
.yf_c00275{bottom:466.533333pt;}
.ye_c00275{bottom:482.666667pt;}
.y33_c00275{bottom:497.733333pt;}
.yd_c00275{bottom:498.800000pt;}
.y32_c00275{bottom:513.866667pt;}
.yc_c00275{bottom:514.533333pt;}
.y31_c00275{bottom:530.933333pt;}
.yb_c00275{bottom:531.200000pt;}
.y2f_c00275{bottom:538.800000pt;}
.y30_c00275{bottom:545.333333pt;}
.ya_c00275{bottom:546.933333pt;}
.y9_c00275{bottom:561.866667pt;}
.y8_c00275{bottom:578.133333pt;}
.y7_c00275{bottom:594.933333pt;}
.y2e_c00275{bottom:597.200000pt;}
.y6_c00275{bottom:612.000000pt;}
.y2d_c00275{bottom:613.466667pt;}
.y5_c00275{bottom:627.333333pt;}
.y2c_c00275{bottom:629.066667pt;}
.y2b_c00275{bottom:644.666667pt;}
.y4_c00275{bottom:644.800000pt;}
.y3_c00275{bottom:660.666667pt;}
.y2a_c00275{bottom:676.266667pt;}
.y2_c00275{bottom:677.466667pt;}
.y1_c00275{bottom:692.933333pt;}
.h6_c00275{height:11.733399pt;}
.h7_c00275{height:38.937500pt;}
.h3_c00275{height:53.098667pt;}
.h2_c00275{height:55.893333pt;}
.h5_c00275{height:86.218750pt;}
.h4_c00275{height:192.832000pt;}
.h1_c00275{height:741.333333pt;}
.h0_c00275{height:741.600000pt;}
.w2_c00275{width:93.222667pt;}
.w1_c00275{width:496.666667pt;}
.w0_c00275{width:496.800000pt;}
.x0_c00275{left:0.000000pt;}
.x2_c00275{left:21.200000pt;}
.x9_c00275{left:67.733333pt;}
.x7_c00275{left:72.666667pt;}
.x4_c00275{left:74.000000pt;}
.x6_c00275{left:75.333333pt;}
.x8_c00275{left:76.400000pt;}
.x5_c00275{left:77.333333pt;}
.x3_c00275{left:78.533333pt;}
.x1_c00275{left:79.733333pt;}
.xa_c00275{left:100.133333pt;}
.xb_c00275{left:123.333333pt;}
.x18_c00275{left:205.568237pt;}
.x12_c00275{left:264.933333pt;}
.x15_c00275{left:268.800000pt;}
.x16_c00275{left:269.733333pt;}
.x14_c00275{left:271.733333pt;}
.xe_c00275{left:272.666667pt;}
.xd_c00275{left:274.266667pt;}
.xf_c00275{left:278.133333pt;}
.x10_c00275{left:308.400000pt;}
.x13_c00275{left:311.333333pt;}
.xc_c00275{left:331.466667pt;}
.x11_c00275{left:342.800000pt;}
.x17_c00275{left:420.266667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a4b086d7141689e467711053.woff2')format("woff");}.ff1_c00276{font-family:ff1_c00276;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00276;src:url('chunks/assets/font_5d27a39d3bde5252536fffbe.woff2')format("woff");}.ff2_c00276{font-family:ff2_c00276;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00276;src:url('chunks/assets/font_1b335bbcbe6ecc441139e608.woff2')format("woff");}.ff3_c00276{font-family:ff3_c00276;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00276;src:url('chunks/assets/font_2b398e234c2ea062eb842017.woff2')format("woff");}.ff4_c00276{font-family:ff4_c00276;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00276;src:url('chunks/assets/font_3466cb2ba5c684d777317d2e.woff2')format("woff");}.ff5_c00276{font-family:ff5_c00276;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00276;src:url('chunks/assets/font_9e9dea1a7c85632923a1c659.woff2')format("woff");}.ff6_c00276{font-family:ff6_c00276;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00276;src:url('chunks/assets/font_4d13fe40e3639961efad5187.woff2')format("woff");}.ff7_c00276{font-family:ff7_c00276;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:ff8_c00276;src:url('chunks/assets/font_23df85d92f0cd717501ff5ab.woff2')format("woff");}.ff8_c00276{font-family:ff8_c00276;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00276;src:url('chunks/assets/font_cecabe2beedba5f378fafb1a.woff2')format("woff");}.ff9_c00276{font-family:ff9_c00276;line-height:1.575000;font-style:normal;font-weight: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_c00276;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ffa_c00276{font-family:ffa_c00276;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00276{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00276{vertical-align:0.000000px;}
.lsb_c00276{letter-spacing:-12.000000px;}
.ls9_c00276{letter-spacing:0.000000px;}
.ls7_c00276{letter-spacing:0.318000px;}
.ls0_c00276{letter-spacing:1.605000px;}
.ls1_c00276{letter-spacing:3.000000px;}
.ls3_c00276{letter-spacing:4.800000px;}
.ls4_c00276{letter-spacing:9.405000px;}
.ls6_c00276{letter-spacing:12.405000px;}
.lsa_c00276{letter-spacing:15.000000px;}
.ls2_c00276{letter-spacing:16.800000px;}
.ls5_c00276{letter-spacing:23.940000px;}
.ls8_c00276{letter-spacing:53.784000px;}
.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;}
}
.ws7_c00276{word-spacing:-35.415000px;}
.ws1_c00276{word-spacing:-33.000000px;}
.ws5_c00276{word-spacing:-25.854000px;}
.ws0_c00276{word-spacing:-21.675000px;}
.ws3_c00276{word-spacing:-20.340000px;}
.ws4_c00276{word-spacing:-18.060000px;}
.ws6_c00276{word-spacing:-18.000000px;}
.ws2_c00276{word-spacing:-14.160000px;}
.ws8_c00276{word-spacing:-13.854000px;}
.ws9_c00276{word-spacing:0.000000px;}
._3_c00276{margin-left:-36.000000px;}
._14_c00276{margin-left:-24.984000px;}
._39_c00276{margin-left:-23.523000px;}
._1_c00276{margin-left:-19.296000px;}
._12_c00276{margin-left:-15.624000px;}
._2e_c00276{margin-left:-14.412000px;}
._1b_c00276{margin-left:-13.236000px;}
._c_c00276{margin-left:-11.100000px;}
._1f_c00276{margin-left:-9.972000px;}
._f_c00276{margin-left:-8.640000px;}
._d_c00276{margin-left:-7.632000px;}
._0_c00276{margin-left:-6.264000px;}
._19_c00276{margin-left:-5.184000px;}
._5_c00276{margin-left:-3.816000px;}
._6_c00276{margin-left:-2.304000px;}
._10_c00276{margin-left:-1.296000px;}
._a_c00276{width:1.152000px;}
._e_c00276{width:2.664000px;}
._16_c00276{width:3.744000px;}
._11_c00276{width:5.328000px;}
._9_c00276{width:6.480000px;}
._17_c00276{width:7.992000px;}
._8_c00276{width:9.216000px;}
._23_c00276{width:10.296000px;}
._7_c00276{width:11.448000px;}
._1d_c00276{width:13.212000px;}
._20_c00276{width:14.532000px;}
._2_c00276{width:15.552000px;}
._31_c00276{width:17.040000px;}
._2c_c00276{width:18.552000px;}
._13_c00276{width:19.800000px;}
._3a_c00276{width:21.531000px;}
._21_c00276{width:23.160000px;}
._27_c00276{width:25.236000px;}
._2a_c00276{width:27.240000px;}
._35_c00276{width:28.584000px;}
._2d_c00276{width:31.992000px;}
._22_c00276{width:34.776000px;}
._2b_c00276{width:37.068000px;}
._29_c00276{width:38.244000px;}
._25_c00276{width:39.900000px;}
._24_c00276{width:41.484000px;}
._26_c00276{width:42.492000px;}
._1c_c00276{width:43.884000px;}
._2f_c00276{width:46.392000px;}
._1e_c00276{width:47.964000px;}
._1a_c00276{width:49.596000px;}
._3b_c00276{width:51.084000px;}
._33_c00276{width:53.352000px;}
._18_c00276{width:55.368000px;}
._b_c00276{width:58.704000px;}
._36_c00276{width:71.712000px;}
._38_c00276{width:77.688000px;}
._34_c00276{width:85.701000px;}
._28_c00276{width:87.048000px;}
._4_c00276{width:95.400000px;}
._15_c00276{width:146.448000px;}
._37_c00276{width:201.024000px;}
._32_c00276{width:632.820000px;}
._30_c00276{width:877.398000px;}
.fc2_c00276{color:transparent;}
.fc1_c00276{color:rgb(128,128,128);}
.fc0_c00276{color:rgb(0,0,0);}
.fs3_c00276{font-size:45.000000px;}
.fs5_c00276{font-size:48.000000px;}
.fs2_c00276{font-size:60.000000px;}
.fs0_c00276{font-size:72.000000px;}
.fs1_c00276{font-size:75.000000px;}
.fs4_c00276{font-size:93.000000px;}
.y0_c00276{bottom:0.000000px;}
.y2c_c00276{bottom:3.105000px;}
.y2b_c00276{bottom:7.228357px;}
.y2a_c00276{bottom:29.130000px;}
.y29_c00276{bottom:52.980000px;}
.y28_c00276{bottom:71.880000px;}
.y27_c00276{bottom:89.730000px;}
.y26_c00276{bottom:108.630000px;}
.y25_c00276{bottom:126.180000px;}
.y24_c00276{bottom:141.180000px;}
.y23_c00276{bottom:157.680000px;}
.y22_c00276{bottom:175.530000px;}
.y21_c00276{bottom:196.830000px;}
.y20_c00276{bottom:216.780000px;}
.y1f_c00276{bottom:234.930000px;}
.y1e_c00276{bottom:252.180000px;}
.y1d_c00276{bottom:271.980000px;}
.y1c_c00276{bottom:289.980000px;}
.y1b_c00276{bottom:306.480000px;}
.y1a_c00276{bottom:325.080000px;}
.y19_c00276{bottom:344.880000px;}
.y18_c00276{bottom:361.830000px;}
.y17_c00276{bottom:380.430000px;}
.y16_c00276{bottom:398.880000px;}
.y15_c00276{bottom:416.880000px;}
.y14_c00276{bottom:435.330000px;}
.y13_c00276{bottom:453.030000px;}
.y12_c00276{bottom:471.180000px;}
.y11_c00276{bottom:488.130000px;}
.y10_c00276{bottom:505.530000px;}
.yf_c00276{bottom:523.830000px;}
.ye_c00276{bottom:542.130000px;}
.yd_c00276{bottom:560.880000px;}
.yc_c00276{bottom:579.180000px;}
.yb_c00276{bottom:596.730000px;}
.ya_c00276{bottom:614.580000px;}
.y9_c00276{bottom:633.180000px;}
.y8_c00276{bottom:650.730000px;}
.y7_c00276{bottom:669.030000px;}
.y6_c00276{bottom:687.180000px;}
.y5_c00276{bottom:705.030000px;}
.y4_c00276{bottom:723.630000px;}
.y3_c00276{bottom:741.180000px;}
.y2_c00276{bottom:759.480000px;}
.y1_c00276{bottom:777.930000px;}
.h7_c00276{height:13.200074px;}
.h8_c00276{height:43.804688px;}
.h4_c00276{height:62.880000px;}
.h5_c00276{height:64.020000px;}
.h3_c00276{height:70.664062px;}
.h2_c00276{height:80.025000px;}
.h6_c00276{height:96.996094px;}
.h0_c00276{height:841.350000px;}
.h1_c00276{height:841.500000px;}
.w1_c00276{width:104.875500px;}
.w0_c00276{width:590.250000px;}
.x0_c00276{left:0.000000px;}
.x2_c00276{left:5.400000px;}
.x9_c00276{left:10.500000px;}
.x1_c00276{left:22.350000px;}
.xa_c00276{left:49.350000px;}
.x3_c00276{left:76.500000px;}
.x4_c00276{left:77.700000px;}
.x6_c00276{left:78.750000px;}
.x5_c00276{left:79.950000px;}
.x7_c00276{left:81.300000px;}
.x8_c00276{left:213.000000px;}
.xc_c00276{left:246.939240px;}
.xb_c00276{left:453.000000px;}
@media print{
.v0_c00276{vertical-align:0.000000pt;}
.lsb_c00276{letter-spacing:-10.666667pt;}
.ls9_c00276{letter-spacing:0.000000pt;}
.ls7_c00276{letter-spacing:0.282667pt;}
.ls0_c00276{letter-spacing:1.426667pt;}
.ls1_c00276{letter-spacing:2.666667pt;}
.ls3_c00276{letter-spacing:4.266667pt;}
.ls4_c00276{letter-spacing:8.360000pt;}
.ls6_c00276{letter-spacing:11.026667pt;}
.lsa_c00276{letter-spacing:13.333333pt;}
.ls2_c00276{letter-spacing:14.933333pt;}
.ls5_c00276{letter-spacing:21.280000pt;}
.ls8_c00276{letter-spacing:47.808000pt;}
.ws7_c00276{word-spacing:-31.480000pt;}
.ws1_c00276{word-spacing:-29.333333pt;}
.ws5_c00276{word-spacing:-22.981333pt;}
.ws0_c00276{word-spacing:-19.266667pt;}
.ws3_c00276{word-spacing:-18.080000pt;}
.ws4_c00276{word-spacing:-16.053333pt;}
.ws6_c00276{word-spacing:-16.000000pt;}
.ws2_c00276{word-spacing:-12.586667pt;}
.ws8_c00276{word-spacing:-12.314667pt;}
.ws9_c00276{word-spacing:0.000000pt;}
._3_c00276{margin-left:-32.000000pt;}
._14_c00276{margin-left:-22.208000pt;}
._39_c00276{margin-left:-20.909333pt;}
._1_c00276{margin-left:-17.152000pt;}
._12_c00276{margin-left:-13.888000pt;}
._2e_c00276{margin-left:-12.810667pt;}
._1b_c00276{margin-left:-11.765333pt;}
._c_c00276{margin-left:-9.866667pt;}
._1f_c00276{margin-left:-8.864000pt;}
._f_c00276{margin-left:-7.680000pt;}
._d_c00276{margin-left:-6.784000pt;}
._0_c00276{margin-left:-5.568000pt;}
._19_c00276{margin-left:-4.608000pt;}
._5_c00276{margin-left:-3.392000pt;}
._6_c00276{margin-left:-2.048000pt;}
._10_c00276{margin-left:-1.152000pt;}
._a_c00276{width:1.024000pt;}
._e_c00276{width:2.368000pt;}
._16_c00276{width:3.328000pt;}
._11_c00276{width:4.736000pt;}
._9_c00276{width:5.760000pt;}
._17_c00276{width:7.104000pt;}
._8_c00276{width:8.192000pt;}
._23_c00276{width:9.152000pt;}
._7_c00276{width:10.176000pt;}
._1d_c00276{width:11.744000pt;}
._20_c00276{width:12.917333pt;}
._2_c00276{width:13.824000pt;}
._31_c00276{width:15.146667pt;}
._2c_c00276{width:16.490667pt;}
._13_c00276{width:17.600000pt;}
._3a_c00276{width:19.138667pt;}
._21_c00276{width:20.586667pt;}
._27_c00276{width:22.432000pt;}
._2a_c00276{width:24.213333pt;}
._35_c00276{width:25.408000pt;}
._2d_c00276{width:28.437333pt;}
._22_c00276{width:30.912000pt;}
._2b_c00276{width:32.949333pt;}
._29_c00276{width:33.994667pt;}
._25_c00276{width:35.466667pt;}
._24_c00276{width:36.874667pt;}
._26_c00276{width:37.770667pt;}
._1c_c00276{width:39.008000pt;}
._2f_c00276{width:41.237333pt;}
._1e_c00276{width:42.634667pt;}
._1a_c00276{width:44.085333pt;}
._3b_c00276{width:45.408000pt;}
._33_c00276{width:47.424000pt;}
._18_c00276{width:49.216000pt;}
._b_c00276{width:52.181333pt;}
._36_c00276{width:63.744000pt;}
._38_c00276{width:69.056000pt;}
._34_c00276{width:76.178667pt;}
._28_c00276{width:77.376000pt;}
._4_c00276{width:84.800000pt;}
._15_c00276{width:130.176000pt;}
._37_c00276{width:178.688000pt;}
._32_c00276{width:562.506667pt;}
._30_c00276{width:779.909333pt;}
.fs3_c00276{font-size:40.000000pt;}
.fs5_c00276{font-size:42.666667pt;}
.fs2_c00276{font-size:53.333333pt;}
.fs0_c00276{font-size:64.000000pt;}
.fs1_c00276{font-size:66.666667pt;}
.fs4_c00276{font-size:82.666667pt;}
.y0_c00276{bottom:0.000000pt;}
.y2c_c00276{bottom:2.760000pt;}
.y2b_c00276{bottom:6.425206pt;}
.y2a_c00276{bottom:25.893333pt;}
.y29_c00276{bottom:47.093333pt;}
.y28_c00276{bottom:63.893333pt;}
.y27_c00276{bottom:79.760000pt;}
.y26_c00276{bottom:96.560000pt;}
.y25_c00276{bottom:112.160000pt;}
.y24_c00276{bottom:125.493333pt;}
.y23_c00276{bottom:140.160000pt;}
.y22_c00276{bottom:156.026667pt;}
.y21_c00276{bottom:174.960000pt;}
.y20_c00276{bottom:192.693333pt;}
.y1f_c00276{bottom:208.826667pt;}
.y1e_c00276{bottom:224.160000pt;}
.y1d_c00276{bottom:241.760000pt;}
.y1c_c00276{bottom:257.760000pt;}
.y1b_c00276{bottom:272.426667pt;}
.y1a_c00276{bottom:288.960000pt;}
.y19_c00276{bottom:306.560000pt;}
.y18_c00276{bottom:321.626667pt;}
.y17_c00276{bottom:338.160000pt;}
.y16_c00276{bottom:354.560000pt;}
.y15_c00276{bottom:370.560000pt;}
.y14_c00276{bottom:386.960000pt;}
.y13_c00276{bottom:402.693333pt;}
.y12_c00276{bottom:418.826667pt;}
.y11_c00276{bottom:433.893333pt;}
.y10_c00276{bottom:449.360000pt;}
.yf_c00276{bottom:465.626667pt;}
.ye_c00276{bottom:481.893333pt;}
.yd_c00276{bottom:498.560000pt;}
.yc_c00276{bottom:514.826667pt;}
.yb_c00276{bottom:530.426667pt;}
.ya_c00276{bottom:546.293333pt;}
.y9_c00276{bottom:562.826667pt;}
.y8_c00276{bottom:578.426667pt;}
.y7_c00276{bottom:594.693333pt;}
.y6_c00276{bottom:610.826667pt;}
.y5_c00276{bottom:626.693333pt;}
.y4_c00276{bottom:643.226667pt;}
.y3_c00276{bottom:658.826667pt;}
.y2_c00276{bottom:675.093333pt;}
.y1_c00276{bottom:691.493333pt;}
.h7_c00276{height:11.733399pt;}
.h8_c00276{height:38.937500pt;}
.h4_c00276{height:55.893333pt;}
.h5_c00276{height:56.906667pt;}
.h3_c00276{height:62.812500pt;}
.h2_c00276{height:71.133333pt;}
.h6_c00276{height:86.218750pt;}
.h0_c00276{height:747.866667pt;}
.h1_c00276{height:748.000000pt;}
.w1_c00276{width:93.222667pt;}
.w0_c00276{width:524.666667pt;}
.x0_c00276{left:0.000000pt;}
.x2_c00276{left:4.800000pt;}
.x9_c00276{left:9.333333pt;}
.x1_c00276{left:19.866667pt;}
.xa_c00276{left:43.866667pt;}
.x3_c00276{left:68.000000pt;}
.x4_c00276{left:69.066667pt;}
.x6_c00276{left:70.000000pt;}
.x5_c00276{left:71.066667pt;}
.x7_c00276{left:72.266667pt;}
.x8_c00276{left:189.333333pt;}
.xc_c00276{left:219.501546pt;}
.xb_c00276{left:402.666667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_0c3da9f5dae1deedef2e73b4.woff2')format("woff");}.ff1_c00277{font-family:ff1_c00277;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00277;src:url('chunks/assets/font_6709d3a801c6e12d066ac8d7.woff2')format("woff");}.ff2_c00277{font-family:ff2_c00277;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00277;src:url('chunks/assets/font_7164f7fc20c479aacf7b7c04.woff2')format("woff");}.ff3_c00277{font-family:ff3_c00277;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00277;src:url('chunks/assets/font_98e7e635526e458a72f6dfb3.woff2')format("woff");}.ff4_c00277{font-family:ff4_c00277;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00277;src:url('chunks/assets/font_0adc52f3d6b4c3dd0be0469d.woff2')format("woff");}.ff5_c00277{font-family:ff5_c00277;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00277;src:url('chunks/assets/font_5c82d74edec864415215fb9e.woff2')format("woff");}.ff6_c00277{font-family:ff6_c00277;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00277;src:url('chunks/assets/font_4ff25af35ef664cc29c2a124.woff2')format("woff");}.ff7_c00277{font-family:ff7_c00277;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00277;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff8_c00277{font-family:ff8_c00277;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00277{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00277{vertical-align:0.000000px;}
.ls6_c00277{letter-spacing:0.000000px;}
.ls3_c00277{letter-spacing:0.600000px;}
.ls5_c00277{letter-spacing:1.800000px;}
.ls1_c00277{letter-spacing:2.280000px;}
.ls2_c00277{letter-spacing:3.000000px;}
.ls4_c00277{letter-spacing:3.600000px;}
.ls0_c00277{letter-spacing:6.000000px;}
.sc__c00277{text-shadow:none;}
.sc0_c00277{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00277{-webkit-text-stroke:0px transparent;}
.sc0_c00277{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00277{word-spacing:-35.769600px;}
.ws1_c00277{word-spacing:-35.295000px;}
.ws3_c00277{word-spacing:-20.340000px;}
.ws4_c00277{word-spacing:-18.060000px;}
.ws0_c00277{word-spacing:-14.160000px;}
.ws5_c00277{word-spacing:0.000000px;}
._25_c00277{margin-left:-19.920000px;}
._d_c00277{margin-left:-13.620000px;}
._20_c00277{margin-left:-12.600000px;}
._12_c00277{margin-left:-11.550000px;}
._1a_c00277{margin-left:-10.200000px;}
._c_c00277{margin-left:-8.955000px;}
._1b_c00277{margin-left:-7.920000px;}
._f_c00277{margin-left:-6.240000px;}
._e_c00277{margin-left:-4.500000px;}
._5_c00277{margin-left:-2.640000px;}
._7_c00277{margin-left:-1.380000px;}
._3_c00277{width:1.800000px;}
._2_c00277{width:2.940000px;}
._1_c00277{width:4.440000px;}
._0_c00277{width:5.640000px;}
._b_c00277{width:7.080000px;}
._9_c00277{width:8.760000px;}
._22_c00277{width:9.840000px;}
._14_c00277{width:10.860000px;}
._6_c00277{width:12.240000px;}
._16_c00277{width:13.440000px;}
._4_c00277{width:14.640000px;}
._15_c00277{width:15.780000px;}
._8_c00277{width:16.980000px;}
._11_c00277{width:18.420000px;}
._18_c00277{width:20.880000px;}
._21_c00277{width:22.860000px;}
._17_c00277{width:24.060000px;}
._23_c00277{width:26.355000px;}
._19_c00277{width:27.615000px;}
._27_c00277{width:31.680000px;}
._1d_c00277{width:36.225000px;}
._1e_c00277{width:45.660000px;}
._a_c00277{width:49.380000px;}
._1c_c00277{width:52.020000px;}
._10_c00277{width:104.760000px;}
._24_c00277{width:138.750000px;}
._26_c00277{width:174.495000px;}
._1f_c00277{width:206.520000px;}
._13_c00277{width:255.975000px;}
.fc2_c00277{color:transparent;}
.fc1_c00277{color:rgb(128,128,128);}
.fc0_c00277{color:rgb(0,0,0);}
.fs2_c00277{font-size:43.200000px;}
.fs1_c00277{font-size:45.000000px;}
.fs5_c00277{font-size:48.000000px;}
.fs3_c00277{font-size:54.000000px;}
.fs0_c00277{font-size:60.000000px;}
.fs4_c00277{font-size:66.000000px;}
.y0_c00277{bottom:0.000000px;}
.y54_c00277{bottom:3.105000px;}
.y53_c00277{bottom:7.228363px;}
.y52_c00277{bottom:30.300000px;}
.y29_c00277{bottom:44.850000px;}
.y51_c00277{bottom:46.800000px;}
.y28_c00277{bottom:63.000000px;}
.y50_c00277{bottom:66.150000px;}
.y27_c00277{bottom:81.600000px;}
.y4f_c00277{bottom:84.000000px;}
.y26_c00277{bottom:98.850000px;}
.y4e_c00277{bottom:101.550000px;}
.y25_c00277{bottom:116.700000px;}
.y4d_c00277{bottom:121.050000px;}
.y24_c00277{bottom:136.050000px;}
.y4c_c00277{bottom:139.050000px;}
.y23_c00277{bottom:154.200000px;}
.y4b_c00277{bottom:156.150000px;}
.y22_c00277{bottom:172.500000px;}
.y4a_c00277{bottom:176.100000px;}
.y21_c00277{bottom:190.950000px;}
.y49_c00277{bottom:193.050000px;}
.y20_c00277{bottom:208.800000px;}
.y48_c00277{bottom:210.900000px;}
.y1f_c00277{bottom:227.100000px;}
.y47_c00277{bottom:228.750000px;}
.y1e_c00277{bottom:245.250000px;}
.y46_c00277{bottom:247.050000px;}
.y1d_c00277{bottom:263.250000px;}
.y45_c00277{bottom:265.500000px;}
.y1c_c00277{bottom:281.700000px;}
.y44_c00277{bottom:283.200000px;}
.y1b_c00277{bottom:299.400000px;}
.y43_c00277{bottom:301.650000px;}
.y1a_c00277{bottom:317.550000px;}
.y42_c00277{bottom:319.500000px;}
.y19_c00277{bottom:336.150000px;}
.y41_c00277{bottom:338.400000px;}
.y18_c00277{bottom:354.300000px;}
.y40_c00277{bottom:356.100000px;}
.y17_c00277{bottom:372.300000px;}
.y3f_c00277{bottom:374.550000px;}
.y16_c00277{bottom:390.150000px;}
.y3e_c00277{bottom:393.150000px;}
.y15_c00277{bottom:408.750000px;}
.y3d_c00277{bottom:410.700000px;}
.y14_c00277{bottom:426.600000px;}
.y3c_c00277{bottom:429.000000px;}
.y13_c00277{bottom:445.050000px;}
.y3b_c00277{bottom:447.750000px;}
.y12_c00277{bottom:463.350000px;}
.y3a_c00277{bottom:465.750000px;}
.y11_c00277{bottom:481.500000px;}
.y39_c00277{bottom:483.600000px;}
.y10_c00277{bottom:499.500000px;}
.y38_c00277{bottom:502.200000px;}
.yf_c00277{bottom:517.950000px;}
.y37_c00277{bottom:520.800000px;}
.ye_c00277{bottom:536.250000px;}
.y36_c00277{bottom:538.350000px;}
.yd_c00277{bottom:554.550000px;}
.y35_c00277{bottom:556.200000px;}
.yc_c00277{bottom:573.300000px;}
.y34_c00277{bottom:574.350000px;}
.yb_c00277{bottom:591.000000px;}
.y33_c00277{bottom:592.350000px;}
.ya_c00277{bottom:609.150000px;}
.y32_c00277{bottom:611.250000px;}
.y9_c00277{bottom:627.450000px;}
.y31_c00277{bottom:629.400000px;}
.y8_c00277{bottom:645.600000px;}
.y30_c00277{bottom:647.550000px;}
.y7_c00277{bottom:663.900000px;}
.y2f_c00277{bottom:666.600000px;}
.y6_c00277{bottom:682.350000px;}
.y2e_c00277{bottom:684.000000px;}
.y5_c00277{bottom:701.250000px;}
.y2d_c00277{bottom:702.600000px;}
.y4_c00277{bottom:718.500000px;}
.y2c_c00277{bottom:719.850000px;}
.y3_c00277{bottom:737.100000px;}
.y2b_c00277{bottom:738.450000px;}
.y2_c00277{bottom:756.000000px;}
.y1_c00277{bottom:773.550000px;}
.y2a_c00277{bottom:773.850000px;}
.h5_c00277{height:13.200074px;}
.h6_c00277{height:43.804688px;}
.h2_c00277{height:62.880000px;}
.h3_c00277{height:64.020000px;}
.h4_c00277{height:70.422000px;}
.h0_c00277{height:831.600000px;}
.h1_c00277{height:831.750000px;}
.w1_c00277{width:104.875500px;}
.w0_c00277{width:557.250000px;}
.x0_c00277{left:0.000000px;}
.x3_c00277{left:27.000000px;}
.xb_c00277{left:78.300000px;}
.xa_c00277{left:79.650000px;}
.x7_c00277{left:80.700000px;}
.x8_c00277{left:82.050000px;}
.x6_c00277{left:83.250000px;}
.x5_c00277{left:84.600000px;}
.x4_c00277{left:85.650000px;}
.x9_c00277{left:111.750000px;}
.x1_c00277{left:113.400000px;}
.x2_c00277{left:123.900000px;}
.x16_c00277{left:230.439240px;}
.x14_c00277{left:296.550000px;}
.x13_c00277{left:298.350000px;}
.x12_c00277{left:299.400000px;}
.xf_c00277{left:300.600000px;}
.xd_c00277{left:302.100000px;}
.x10_c00277{left:303.450000px;}
.xc_c00277{left:305.100000px;}
.xe_c00277{left:306.450000px;}
.x11_c00277{left:315.450000px;}
.x15_c00277{left:472.800000px;}
@media print{
.v0_c00277{vertical-align:0.000000pt;}
.ls6_c00277{letter-spacing:0.000000pt;}
.ls3_c00277{letter-spacing:0.533333pt;}
.ls5_c00277{letter-spacing:1.600000pt;}
.ls1_c00277{letter-spacing:2.026667pt;}
.ls2_c00277{letter-spacing:2.666667pt;}
.ls4_c00277{letter-spacing:3.200000pt;}
.ls0_c00277{letter-spacing:5.333333pt;}
.ws2_c00277{word-spacing:-31.795200pt;}
.ws1_c00277{word-spacing:-31.373333pt;}
.ws3_c00277{word-spacing:-18.080000pt;}
.ws4_c00277{word-spacing:-16.053333pt;}
.ws0_c00277{word-spacing:-12.586667pt;}
.ws5_c00277{word-spacing:0.000000pt;}
._25_c00277{margin-left:-17.706667pt;}
._d_c00277{margin-left:-12.106667pt;}
._20_c00277{margin-left:-11.200000pt;}
._12_c00277{margin-left:-10.266667pt;}
._1a_c00277{margin-left:-9.066667pt;}
._c_c00277{margin-left:-7.960000pt;}
._1b_c00277{margin-left:-7.040000pt;}
._f_c00277{margin-left:-5.546667pt;}
._e_c00277{margin-left:-4.000000pt;}
._5_c00277{margin-left:-2.346667pt;}
._7_c00277{margin-left:-1.226667pt;}
._3_c00277{width:1.600000pt;}
._2_c00277{width:2.613333pt;}
._1_c00277{width:3.946667pt;}
._0_c00277{width:5.013333pt;}
._b_c00277{width:6.293333pt;}
._9_c00277{width:7.786667pt;}
._22_c00277{width:8.746667pt;}
._14_c00277{width:9.653333pt;}
._6_c00277{width:10.880000pt;}
._16_c00277{width:11.946667pt;}
._4_c00277{width:13.013333pt;}
._15_c00277{width:14.026667pt;}
._8_c00277{width:15.093333pt;}
._11_c00277{width:16.373333pt;}
._18_c00277{width:18.560000pt;}
._21_c00277{width:20.320000pt;}
._17_c00277{width:21.386667pt;}
._23_c00277{width:23.426667pt;}
._19_c00277{width:24.546667pt;}
._27_c00277{width:28.160000pt;}
._1d_c00277{width:32.200000pt;}
._1e_c00277{width:40.586667pt;}
._a_c00277{width:43.893333pt;}
._1c_c00277{width:46.240000pt;}
._10_c00277{width:93.120000pt;}
._24_c00277{width:123.333333pt;}
._26_c00277{width:155.106667pt;}
._1f_c00277{width:183.573333pt;}
._13_c00277{width:227.533333pt;}
.fs2_c00277{font-size:38.400000pt;}
.fs1_c00277{font-size:40.000000pt;}
.fs5_c00277{font-size:42.666667pt;}
.fs3_c00277{font-size:48.000000pt;}
.fs0_c00277{font-size:53.333333pt;}
.fs4_c00277{font-size:58.666667pt;}
.y0_c00277{bottom:0.000000pt;}
.y54_c00277{bottom:2.760000pt;}
.y53_c00277{bottom:6.425212pt;}
.y52_c00277{bottom:26.933333pt;}
.y29_c00277{bottom:39.866667pt;}
.y51_c00277{bottom:41.600000pt;}
.y28_c00277{bottom:56.000000pt;}
.y50_c00277{bottom:58.800000pt;}
.y27_c00277{bottom:72.533333pt;}
.y4f_c00277{bottom:74.666667pt;}
.y26_c00277{bottom:87.866667pt;}
.y4e_c00277{bottom:90.266667pt;}
.y25_c00277{bottom:103.733333pt;}
.y4d_c00277{bottom:107.600000pt;}
.y24_c00277{bottom:120.933333pt;}
.y4c_c00277{bottom:123.600000pt;}
.y23_c00277{bottom:137.066667pt;}
.y4b_c00277{bottom:138.800000pt;}
.y22_c00277{bottom:153.333333pt;}
.y4a_c00277{bottom:156.533333pt;}
.y21_c00277{bottom:169.733333pt;}
.y49_c00277{bottom:171.600000pt;}
.y20_c00277{bottom:185.600000pt;}
.y48_c00277{bottom:187.466667pt;}
.y1f_c00277{bottom:201.866667pt;}
.y47_c00277{bottom:203.333333pt;}
.y1e_c00277{bottom:218.000000pt;}
.y46_c00277{bottom:219.600000pt;}
.y1d_c00277{bottom:234.000000pt;}
.y45_c00277{bottom:236.000000pt;}
.y1c_c00277{bottom:250.400000pt;}
.y44_c00277{bottom:251.733333pt;}
.y1b_c00277{bottom:266.133333pt;}
.y43_c00277{bottom:268.133333pt;}
.y1a_c00277{bottom:282.266667pt;}
.y42_c00277{bottom:284.000000pt;}
.y19_c00277{bottom:298.800000pt;}
.y41_c00277{bottom:300.800000pt;}
.y18_c00277{bottom:314.933333pt;}
.y40_c00277{bottom:316.533333pt;}
.y17_c00277{bottom:330.933333pt;}
.y3f_c00277{bottom:332.933333pt;}
.y16_c00277{bottom:346.800000pt;}
.y3e_c00277{bottom:349.466667pt;}
.y15_c00277{bottom:363.333333pt;}
.y3d_c00277{bottom:365.066667pt;}
.y14_c00277{bottom:379.200000pt;}
.y3c_c00277{bottom:381.333333pt;}
.y13_c00277{bottom:395.600000pt;}
.y3b_c00277{bottom:398.000000pt;}
.y12_c00277{bottom:411.866667pt;}
.y3a_c00277{bottom:414.000000pt;}
.y11_c00277{bottom:428.000000pt;}
.y39_c00277{bottom:429.866667pt;}
.y10_c00277{bottom:444.000000pt;}
.y38_c00277{bottom:446.400000pt;}
.yf_c00277{bottom:460.400000pt;}
.y37_c00277{bottom:462.933333pt;}
.ye_c00277{bottom:476.666667pt;}
.y36_c00277{bottom:478.533333pt;}
.yd_c00277{bottom:492.933333pt;}
.y35_c00277{bottom:494.400000pt;}
.yc_c00277{bottom:509.600000pt;}
.y34_c00277{bottom:510.533333pt;}
.yb_c00277{bottom:525.333333pt;}
.y33_c00277{bottom:526.533333pt;}
.ya_c00277{bottom:541.466667pt;}
.y32_c00277{bottom:543.333333pt;}
.y9_c00277{bottom:557.733333pt;}
.y31_c00277{bottom:559.466667pt;}
.y8_c00277{bottom:573.866667pt;}
.y30_c00277{bottom:575.600000pt;}
.y7_c00277{bottom:590.133333pt;}
.y2f_c00277{bottom:592.533333pt;}
.y6_c00277{bottom:606.533333pt;}
.y2e_c00277{bottom:608.000000pt;}
.y5_c00277{bottom:623.333333pt;}
.y2d_c00277{bottom:624.533333pt;}
.y4_c00277{bottom:638.666667pt;}
.y2c_c00277{bottom:639.866667pt;}
.y3_c00277{bottom:655.200000pt;}
.y2b_c00277{bottom:656.400000pt;}
.y2_c00277{bottom:672.000000pt;}
.y1_c00277{bottom:687.600000pt;}
.y2a_c00277{bottom:687.866667pt;}
.h5_c00277{height:11.733399pt;}
.h6_c00277{height:38.937500pt;}
.h2_c00277{height:55.893333pt;}
.h3_c00277{height:56.906667pt;}
.h4_c00277{height:62.597333pt;}
.h0_c00277{height:739.200000pt;}
.h1_c00277{height:739.333333pt;}
.w1_c00277{width:93.222667pt;}
.w0_c00277{width:495.333333pt;}
.x0_c00277{left:0.000000pt;}
.x3_c00277{left:24.000000pt;}
.xb_c00277{left:69.600000pt;}
.xa_c00277{left:70.800000pt;}
.x7_c00277{left:71.733333pt;}
.x8_c00277{left:72.933333pt;}
.x6_c00277{left:74.000000pt;}
.x5_c00277{left:75.200000pt;}
.x4_c00277{left:76.133333pt;}
.x9_c00277{left:99.333333pt;}
.x1_c00277{left:100.800000pt;}
.x2_c00277{left:110.133333pt;}
.x16_c00277{left:204.834880pt;}
.x14_c00277{left:263.600000pt;}
.x13_c00277{left:265.200000pt;}
.x12_c00277{left:266.133333pt;}
.xf_c00277{left:267.200000pt;}
.xd_c00277{left:268.533333pt;}
.x10_c00277{left:269.733333pt;}
.xc_c00277{left:271.200000pt;}
.xe_c00277{left:272.400000pt;}
.x11_c00277{left:280.400000pt;}
.x15_c00277{left:420.266667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b46b6b69103259065dc55ca9.woff2')format("woff");}.ff1_c00278{font-family:ff1_c00278;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00278;src:url('chunks/assets/font_c6bb0b0c422f1c86211126cc.woff2')format("woff");}.ff2_c00278{font-family:ff2_c00278;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00278;src:url('chunks/assets/font_251fdd7a2af8b11f3dfb2cd1.woff2')format("woff");}.ff3_c00278{font-family:ff3_c00278;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00278;src:url('chunks/assets/font_4ca855aceb6853c308318656.woff2')format("woff");}.ff4_c00278{font-family:ff4_c00278;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00278;src:url('chunks/assets/font_5518eddf1763cd5db2138fcb.woff2')format("woff");}.ff5_c00278{font-family:ff5_c00278;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00278;src:url('chunks/assets/font_461863f2d8f0c0cea2ba7392.woff2')format("woff");}.ff6_c00278{font-family:ff6_c00278;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00278;src:url('chunks/assets/font_cd8ce790fdea6dce1faf2b77.woff2')format("woff");}.ff7_c00278{font-family:ff7_c00278;line-height:1.338867;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00278;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff8_c00278{font-family:ff8_c00278;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00278{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00278{vertical-align:0.000000px;}
.lsc_c00278{letter-spacing:0.000000px;}
.ls4_c00278{letter-spacing:0.405000px;}
.ls0_c00278{letter-spacing:1.005000px;}
.lsb_c00278{letter-spacing:1.320000px;}
.ls8_c00278{letter-spacing:3.000000px;}
.ls7_c00278{letter-spacing:4.800000px;}
.ls3_c00278{letter-spacing:5.280000px;}
.lsd_c00278{letter-spacing:6.000000px;}
.ls1_c00278{letter-spacing:6.540000px;}
.ls5_c00278{letter-spacing:7.140000px;}
.lsa_c00278{letter-spacing:7.800000px;}
.ls2_c00278{letter-spacing:8.940000px;}
.ls6_c00278{letter-spacing:9.540000px;}
.ls9_c00278{letter-spacing:17.880000px;}
.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:-21.390000px;}
.ws5_c00278{word-spacing:-18.060000px;}
.ws4_c00278{word-spacing:-18.000000px;}
.ws2_c00278{word-spacing:-17.340000px;}
.ws8_c00278{word-spacing:-15.057000px;}
.ws6_c00278{word-spacing:-14.250000px;}
.ws1_c00278{word-spacing:-14.160000px;}
.wsa_c00278{word-spacing:-4.620000px;}
.ws7_c00278{word-spacing:-0.042000px;}
.wsb_c00278{word-spacing:0.000000px;}
.ws9_c00278{word-spacing:0.300000px;}
.ws0_c00278{word-spacing:2.400000px;}
._25_c00278{margin-left:-26.445000px;}
._20_c00278{margin-left:-20.760000px;}
._22_c00278{margin-left:-18.060000px;}
._6_c00278{margin-left:-15.420000px;}
._26_c00278{margin-left:-13.020000px;}
._2f_c00278{margin-left:-12.000000px;}
._8_c00278{margin-left:-10.920000px;}
._9_c00278{margin-left:-9.180000px;}
._1b_c00278{margin-left:-7.995000px;}
._13_c00278{margin-left:-6.240000px;}
._d_c00278{margin-left:-5.040000px;}
._4_c00278{margin-left:-3.720000px;}
._3_c00278{margin-left:-2.700000px;}
._c_c00278{margin-left:-1.140000px;}
._a_c00278{width:1.920000px;}
._2_c00278{width:3.360000px;}
._17_c00278{width:4.500000px;}
._16_c00278{width:5.700000px;}
._0_c00278{width:6.720000px;}
._18_c00278{width:8.460000px;}
._1_c00278{width:9.960000px;}
._7_c00278{width:11.040000px;}
._30_c00278{width:12.120000px;}
._5_c00278{width:13.200000px;}
._23_c00278{width:14.640000px;}
._11_c00278{width:16.020000px;}
._2c_c00278{width:17.460000px;}
._1a_c00278{width:20.040000px;}
._24_c00278{width:21.780000px;}
._f_c00278{width:23.580000px;}
._e_c00278{width:24.660000px;}
._27_c00278{width:26.820000px;}
._2d_c00278{width:30.120000px;}
._31_c00278{width:31.260000px;}
._28_c00278{width:33.480000px;}
._14_c00278{width:36.660000px;}
._29_c00278{width:38.580000px;}
._1d_c00278{width:43.380000px;}
._2b_c00278{width:45.300000px;}
._2e_c00278{width:52.740000px;}
._1c_c00278{width:56.865000px;}
._19_c00278{width:60.600000px;}
._15_c00278{width:63.480000px;}
._10_c00278{width:66.540000px;}
._b_c00278{width:69.300000px;}
._21_c00278{width:173.040000px;}
._1f_c00278{width:191.580000px;}
._12_c00278{width:202.620000px;}
._1e_c00278{width:361.080000px;}
._2a_c00278{width:421.140000px;}
.fc2_c00278{color:transparent;}
.fc1_c00278{color:rgb(128,128,128);}
.fc0_c00278{color:rgb(0,0,0);}
.fs3_c00278{font-size:39.000000px;}
.fs4_c00278{font-size:42.000000px;}
.fs1_c00278{font-size:45.000000px;}
.fs6_c00278{font-size:48.000000px;}
.fs2_c00278{font-size:57.000000px;}
.fs0_c00278{font-size:60.000000px;}
.fs5_c00278{font-size:63.000000px;}
.y0_c00278{bottom:0.000000px;}
.y4e_c00278{bottom:3.105000px;}
.y4d_c00278{bottom:7.228357px;}
.y4c_c00278{bottom:30.480000px;}
.y4b_c00278{bottom:50.280000px;}
.y29_c00278{bottom:55.080000px;}
.y4a_c00278{bottom:69.630000px;}
.y28_c00278{bottom:75.330000px;}
.y49_c00278{bottom:87.180000px;}
.y27_c00278{bottom:91.230000px;}
.y48_c00278{bottom:105.330000px;}
.y26_c00278{bottom:109.680000px;}
.y47_c00278{bottom:123.630000px;}
.y25_c00278{bottom:129.030000px;}
.y46_c00278{bottom:142.080000px;}
.y24_c00278{bottom:146.880000px;}
.y45_c00278{bottom:160.380000px;}
.y23_c00278{bottom:165.780000px;}
.y44_c00278{bottom:176.280000px;}
.y22_c00278{bottom:183.330000px;}
.y43_c00278{bottom:196.530000px;}
.y21_c00278{bottom:201.930000px;}
.y42_c00278{bottom:214.980000px;}
.y20_c00278{bottom:221.430000px;}
.y41_c00278{bottom:232.980000px;}
.y1f_c00278{bottom:238.380000px;}
.y40_c00278{bottom:250.530000px;}
.y1e_c00278{bottom:256.530000px;}
.y3f_c00278{bottom:269.430000px;}
.y1d_c00278{bottom:274.080000px;}
.y3e_c00278{bottom:287.580000px;}
.y1c_c00278{bottom:292.380000px;}
.y3d_c00278{bottom:305.430000px;}
.y1b_c00278{bottom:312.480000px;}
.y3c_c00278{bottom:324.330000px;}
.y1a_c00278{bottom:329.130000px;}
.y3b_c00278{bottom:342.180000px;}
.y19_c00278{bottom:346.980000px;}
.y3a_c00278{bottom:359.880000px;}
.y18_c00278{bottom:364.530000px;}
.y39_c00278{bottom:377.430000px;}
.y17_c00278{bottom:382.830000px;}
.y38_c00278{bottom:397.230000px;}
.y16_c00278{bottom:400.980000px;}
.y37_c00278{bottom:414.780000px;}
.y15_c00278{bottom:419.280000px;}
.y36_c00278{bottom:433.080000px;}
.y14_c00278{bottom:437.430000px;}
.y35_c00278{bottom:450.930000px;}
.y13_c00278{bottom:455.580000px;}
.y34_c00278{bottom:468.480000px;}
.y12_c00278{bottom:472.830000px;}
.y33_c00278{bottom:486.630000px;}
.y11_c00278{bottom:490.830000px;}
.y32_c00278{bottom:504.930000px;}
.y10_c00278{bottom:508.680000px;}
.y31_c00278{bottom:523.080000px;}
.yf_c00278{bottom:525.780000px;}
.y30_c00278{bottom:541.680000px;}
.ye_c00278{bottom:543.780000px;}
.y2f_c00278{bottom:559.980000px;}
.yd_c00278{bottom:562.680000px;}
.y2e_c00278{bottom:578.880000px;}
.yc_c00278{bottom:580.230000px;}
.y2d_c00278{bottom:596.280000px;}
.yb_c00278{bottom:598.380000px;}
.y2c_c00278{bottom:615.030000px;}
.ya_c00278{bottom:616.380000px;}
.y2b_c00278{bottom:633.780000px;}
.y9_c00278{bottom:634.830000px;}
.y2a_c00278{bottom:652.380000px;}
.y8_c00278{bottom:652.680000px;}
.y7_c00278{bottom:669.630000px;}
.y6_c00278{bottom:688.230000px;}
.y5_c00278{bottom:706.080000px;}
.y4_c00278{bottom:724.380000px;}
.y3_c00278{bottom:742.530000px;}
.y2_c00278{bottom:760.080000px;}
.y1_c00278{bottom:778.680000px;}
.h6_c00278{height:13.200074px;}
.h7_c00278{height:43.804688px;}
.h2_c00278{height:62.880000px;}
.h5_c00278{height:63.420000px;}
.h3_c00278{height:64.020000px;}
.h4_c00278{height:66.024000px;}
.h0_c00278{height:841.350000px;}
.h1_c00278{height:841.500000px;}
.w1_c00278{width:104.875500px;}
.w0_c00278{width:590.250000px;}
.x0_c00278{left:0.000000px;}
.x6_c00278{left:13.950000px;}
.x7_c00278{left:15.150000px;}
.xb_c00278{left:20.250000px;}
.xd_c00278{left:21.600000px;}
.xc_c00278{left:32.850000px;}
.x8_c00278{left:59.850000px;}
.x1_c00278{left:73.350000px;}
.x2_c00278{left:74.550000px;}
.x3_c00278{left:76.050000px;}
.x9_c00278{left:77.250000px;}
.xa_c00278{left:78.300000px;}
.x4_c00278{left:79.500000px;}
.x5_c00278{left:80.700000px;}
.x12_c00278{left:246.939240px;}
.xe_c00278{left:294.300000px;}
.xf_c00278{left:295.350000px;}
.x10_c00278{left:296.700000px;}
.x11_c00278{left:465.150000px;}
@media print{
.v0_c00278{vertical-align:0.000000pt;}
.lsc_c00278{letter-spacing:0.000000pt;}
.ls4_c00278{letter-spacing:0.360000pt;}
.ls0_c00278{letter-spacing:0.893333pt;}
.lsb_c00278{letter-spacing:1.173333pt;}
.ls8_c00278{letter-spacing:2.666667pt;}
.ls7_c00278{letter-spacing:4.266667pt;}
.ls3_c00278{letter-spacing:4.693333pt;}
.lsd_c00278{letter-spacing:5.333333pt;}
.ls1_c00278{letter-spacing:5.813333pt;}
.ls5_c00278{letter-spacing:6.346667pt;}
.lsa_c00278{letter-spacing:6.933333pt;}
.ls2_c00278{letter-spacing:7.946667pt;}
.ls6_c00278{letter-spacing:8.480000pt;}
.ls9_c00278{letter-spacing:15.893333pt;}
.ws3_c00278{word-spacing:-19.013333pt;}
.ws5_c00278{word-spacing:-16.053333pt;}
.ws4_c00278{word-spacing:-16.000000pt;}
.ws2_c00278{word-spacing:-15.413333pt;}
.ws8_c00278{word-spacing:-13.384000pt;}
.ws6_c00278{word-spacing:-12.666667pt;}
.ws1_c00278{word-spacing:-12.586667pt;}
.wsa_c00278{word-spacing:-4.106667pt;}
.ws7_c00278{word-spacing:-0.037333pt;}
.wsb_c00278{word-spacing:0.000000pt;}
.ws9_c00278{word-spacing:0.266667pt;}
.ws0_c00278{word-spacing:2.133333pt;}
._25_c00278{margin-left:-23.506667pt;}
._20_c00278{margin-left:-18.453333pt;}
._22_c00278{margin-left:-16.053333pt;}
._6_c00278{margin-left:-13.706667pt;}
._26_c00278{margin-left:-11.573333pt;}
._2f_c00278{margin-left:-10.666667pt;}
._8_c00278{margin-left:-9.706667pt;}
._9_c00278{margin-left:-8.160000pt;}
._1b_c00278{margin-left:-7.106667pt;}
._13_c00278{margin-left:-5.546667pt;}
._d_c00278{margin-left:-4.480000pt;}
._4_c00278{margin-left:-3.306667pt;}
._3_c00278{margin-left:-2.400000pt;}
._c_c00278{margin-left:-1.013333pt;}
._a_c00278{width:1.706667pt;}
._2_c00278{width:2.986667pt;}
._17_c00278{width:4.000000pt;}
._16_c00278{width:5.066667pt;}
._0_c00278{width:5.973333pt;}
._18_c00278{width:7.520000pt;}
._1_c00278{width:8.853333pt;}
._7_c00278{width:9.813333pt;}
._30_c00278{width:10.773333pt;}
._5_c00278{width:11.733333pt;}
._23_c00278{width:13.013333pt;}
._11_c00278{width:14.240000pt;}
._2c_c00278{width:15.520000pt;}
._1a_c00278{width:17.813333pt;}
._24_c00278{width:19.360000pt;}
._f_c00278{width:20.960000pt;}
._e_c00278{width:21.920000pt;}
._27_c00278{width:23.840000pt;}
._2d_c00278{width:26.773333pt;}
._31_c00278{width:27.786667pt;}
._28_c00278{width:29.760000pt;}
._14_c00278{width:32.586667pt;}
._29_c00278{width:34.293333pt;}
._1d_c00278{width:38.560000pt;}
._2b_c00278{width:40.266667pt;}
._2e_c00278{width:46.880000pt;}
._1c_c00278{width:50.546667pt;}
._19_c00278{width:53.866667pt;}
._15_c00278{width:56.426667pt;}
._10_c00278{width:59.146667pt;}
._b_c00278{width:61.600000pt;}
._21_c00278{width:153.813333pt;}
._1f_c00278{width:170.293333pt;}
._12_c00278{width:180.106667pt;}
._1e_c00278{width:320.960000pt;}
._2a_c00278{width:374.346667pt;}
.fs3_c00278{font-size:34.666667pt;}
.fs4_c00278{font-size:37.333333pt;}
.fs1_c00278{font-size:40.000000pt;}
.fs6_c00278{font-size:42.666667pt;}
.fs2_c00278{font-size:50.666667pt;}
.fs0_c00278{font-size:53.333333pt;}
.fs5_c00278{font-size:56.000000pt;}
.y0_c00278{bottom:0.000000pt;}
.y4e_c00278{bottom:2.760000pt;}
.y4d_c00278{bottom:6.425206pt;}
.y4c_c00278{bottom:27.093333pt;}
.y4b_c00278{bottom:44.693333pt;}
.y29_c00278{bottom:48.960000pt;}
.y4a_c00278{bottom:61.893333pt;}
.y28_c00278{bottom:66.960000pt;}
.y49_c00278{bottom:77.493333pt;}
.y27_c00278{bottom:81.093333pt;}
.y48_c00278{bottom:93.626667pt;}
.y26_c00278{bottom:97.493333pt;}
.y47_c00278{bottom:109.893333pt;}
.y25_c00278{bottom:114.693333pt;}
.y46_c00278{bottom:126.293333pt;}
.y24_c00278{bottom:130.560000pt;}
.y45_c00278{bottom:142.560000pt;}
.y23_c00278{bottom:147.360000pt;}
.y44_c00278{bottom:156.693333pt;}
.y22_c00278{bottom:162.960000pt;}
.y43_c00278{bottom:174.693333pt;}
.y21_c00278{bottom:179.493333pt;}
.y42_c00278{bottom:191.093333pt;}
.y20_c00278{bottom:196.826667pt;}
.y41_c00278{bottom:207.093333pt;}
.y1f_c00278{bottom:211.893333pt;}
.y40_c00278{bottom:222.693333pt;}
.y1e_c00278{bottom:228.026667pt;}
.y3f_c00278{bottom:239.493333pt;}
.y1d_c00278{bottom:243.626667pt;}
.y3e_c00278{bottom:255.626667pt;}
.y1c_c00278{bottom:259.893333pt;}
.y3d_c00278{bottom:271.493333pt;}
.y1b_c00278{bottom:277.760000pt;}
.y3c_c00278{bottom:288.293333pt;}
.y1a_c00278{bottom:292.560000pt;}
.y3b_c00278{bottom:304.160000pt;}
.y19_c00278{bottom:308.426667pt;}
.y3a_c00278{bottom:319.893333pt;}
.y18_c00278{bottom:324.026667pt;}
.y39_c00278{bottom:335.493333pt;}
.y17_c00278{bottom:340.293333pt;}
.y38_c00278{bottom:353.093333pt;}
.y16_c00278{bottom:356.426667pt;}
.y37_c00278{bottom:368.693333pt;}
.y15_c00278{bottom:372.693333pt;}
.y36_c00278{bottom:384.960000pt;}
.y14_c00278{bottom:388.826667pt;}
.y35_c00278{bottom:400.826667pt;}
.y13_c00278{bottom:404.960000pt;}
.y34_c00278{bottom:416.426667pt;}
.y12_c00278{bottom:420.293333pt;}
.y33_c00278{bottom:432.560000pt;}
.y11_c00278{bottom:436.293333pt;}
.y32_c00278{bottom:448.826667pt;}
.y10_c00278{bottom:452.160000pt;}
.y31_c00278{bottom:464.960000pt;}
.yf_c00278{bottom:467.360000pt;}
.y30_c00278{bottom:481.493333pt;}
.ye_c00278{bottom:483.360000pt;}
.y2f_c00278{bottom:497.760000pt;}
.yd_c00278{bottom:500.160000pt;}
.y2e_c00278{bottom:514.560000pt;}
.yc_c00278{bottom:515.760000pt;}
.y2d_c00278{bottom:530.026667pt;}
.yb_c00278{bottom:531.893333pt;}
.y2c_c00278{bottom:546.693333pt;}
.ya_c00278{bottom:547.893333pt;}
.y2b_c00278{bottom:563.360000pt;}
.y9_c00278{bottom:564.293333pt;}
.y2a_c00278{bottom:579.893333pt;}
.y8_c00278{bottom:580.160000pt;}
.y7_c00278{bottom:595.226667pt;}
.y6_c00278{bottom:611.760000pt;}
.y5_c00278{bottom:627.626667pt;}
.y4_c00278{bottom:643.893333pt;}
.y3_c00278{bottom:660.026667pt;}
.y2_c00278{bottom:675.626667pt;}
.y1_c00278{bottom:692.160000pt;}
.h6_c00278{height:11.733399pt;}
.h7_c00278{height:38.937500pt;}
.h2_c00278{height:55.893333pt;}
.h5_c00278{height:56.373333pt;}
.h3_c00278{height:56.906667pt;}
.h4_c00278{height:58.688000pt;}
.h0_c00278{height:747.866667pt;}
.h1_c00278{height:748.000000pt;}
.w1_c00278{width:93.222667pt;}
.w0_c00278{width:524.666667pt;}
.x0_c00278{left:0.000000pt;}
.x6_c00278{left:12.400000pt;}
.x7_c00278{left:13.466667pt;}
.xb_c00278{left:18.000000pt;}
.xd_c00278{left:19.200000pt;}
.xc_c00278{left:29.200000pt;}
.x8_c00278{left:53.200000pt;}
.x1_c00278{left:65.200000pt;}
.x2_c00278{left:66.266667pt;}
.x3_c00278{left:67.600000pt;}
.x9_c00278{left:68.666667pt;}
.xa_c00278{left:69.600000pt;}
.x4_c00278{left:70.666667pt;}
.x5_c00278{left:71.733333pt;}
.x12_c00278{left:219.501546pt;}
.xe_c00278{left:261.600000pt;}
.xf_c00278{left:262.533333pt;}
.x10_c00278{left:263.733333pt;}
.x11_c00278{left:413.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_99f0c0fe1ca18a1b005c8992.woff2')format("woff");}.ff1_c00279{font-family:ff1_c00279;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00279;src:url('chunks/assets/font_e0cc3135d625473df8088cbc.woff2')format("woff");}.ff2_c00279{font-family:ff2_c00279;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00279;src:url('chunks/assets/font_ea694a89facdd2c64e358999.woff2')format("woff");}.ff3_c00279{font-family:ff3_c00279;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00279;src:url('chunks/assets/font_fd53e352b9bd6cc45c2637d8.woff2')format("woff");}.ff4_c00279{font-family:ff4_c00279;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00279;src:url('chunks/assets/font_ff9e5b64b2f83f3db5d27fbf.woff2')format("woff");}.ff5_c00279{font-family:ff5_c00279;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00279;src:url('chunks/assets/font_7164f7fc20c479aacf7b7c04.woff2')format("woff");}.ff6_c00279{font-family:ff6_c00279;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00279;src:url('chunks/assets/font_cf5f2c3d2f1e27404bf72720.woff2')format("woff");}.ff7_c00279{font-family:ff7_c00279;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00279;src:url('chunks/assets/font_ea321df25745648af33152c8.woff2')format("woff");}.ff8_c00279{font-family:ff8_c00279;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00279;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff9_c00279{font-family:ff9_c00279;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00279{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00279{vertical-align:0.000000px;}
.v1_c00279{vertical-align:127.800000px;}
.ls9_c00279{letter-spacing:-12.000000px;}
.ls6_c00279{letter-spacing:0.000000px;}
.ls3_c00279{letter-spacing:1.920000px;}
.ls5_c00279{letter-spacing:2.400000px;}
.ls1_c00279{letter-spacing:3.000000px;}
.ls8_c00279{letter-spacing:6.000000px;}
.ls4_c00279{letter-spacing:9.000000px;}
.ls0_c00279{letter-spacing:9.300000px;}
.ls2_c00279{letter-spacing:11.520000px;}
.ls7_c00279{letter-spacing:15.000000px;}
.sc__c00279{text-shadow:none;}
.sc0_c00279{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00279{-webkit-text-stroke:0px transparent;}
.sc0_c00279{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8_c00279{word-spacing:-60.993000px;}
.ws3_c00279{word-spacing:-35.295000px;}
.ws0_c00279{word-spacing:-25.854000px;}
.ws6_c00279{word-spacing:-23.760000px;}
.wsa_c00279{word-spacing:-20.340000px;}
.ws9_c00279{word-spacing:-18.060000px;}
.ws7_c00279{word-spacing:-18.000000px;}
.ws2_c00279{word-spacing:-14.160000px;}
.ws4_c00279{word-spacing:-13.854000px;}
.ws5_c00279{word-spacing:-12.624000px;}
.ws1_c00279{word-spacing:-11.976000px;}
.wsb_c00279{word-spacing:0.000000px;}
._52_c00279{margin-left:-37.500000px;}
._2f_c00279{margin-left:-30.297000px;}
._39_c00279{margin-left:-28.668000px;}
._37_c00279{margin-left:-27.618000px;}
._29_c00279{margin-left:-26.208000px;}
._1_c00279{margin-left:-24.873000px;}
._33_c00279{margin-left:-23.442000px;}
._30_c00279{margin-left:-21.483000px;}
._2e_c00279{margin-left:-19.203000px;}
._3a_c00279{margin-left:-17.952000px;}
._3b_c00279{margin-left:-16.503000px;}
._32_c00279{margin-left:-15.255000px;}
._31_c00279{margin-left:-13.812000px;}
._0_c00279{margin-left:-12.648000px;}
._1a_c00279{margin-left:-11.559000px;}
._14_c00279{margin-left:-10.320000px;}
._18_c00279{margin-left:-8.856000px;}
._1e_c00279{margin-left:-7.740000px;}
._e_c00279{margin-left:-6.600000px;}
._f_c00279{margin-left:-5.160000px;}
._16_c00279{margin-left:-4.068000px;}
._13_c00279{margin-left:-3.000000px;}
._b_c00279{margin-left:-1.872000px;}
._10_c00279{width:1.560000px;}
._5_c00279{width:2.736000px;}
._15_c00279{width:3.840000px;}
._3_c00279{width:4.968000px;}
._4_c00279{width:6.480000px;}
._6_c00279{width:7.776000px;}
._d_c00279{width:9.408000px;}
._9_c00279{width:11.160000px;}
._8_c00279{width:12.660000px;}
._1b_c00279{width:14.178000px;}
._a_c00279{width:15.684000px;}
._11_c00279{width:17.220000px;}
._35_c00279{width:19.443000px;}
._20_c00279{width:20.556000px;}
._48_c00279{width:21.840000px;}
._36_c00279{width:23.184000px;}
._21_c00279{width:24.852000px;}
._2b_c00279{width:27.264000px;}
._4e_c00279{width:29.112000px;}
._3c_c00279{width:32.022000px;}
._56_c00279{width:35.862000px;}
._41_c00279{width:36.972000px;}
._12_c00279{width:38.244000px;}
._7_c00279{width:41.736000px;}
._3d_c00279{width:43.716000px;}
._4f_c00279{width:45.768000px;}
._38_c00279{width:49.269000px;}
._47_c00279{width:58.182000px;}
._34_c00279{width:60.624000px;}
._51_c00279{width:64.476000px;}
._c_c00279{width:70.752000px;}
._24_c00279{width:74.400000px;}
._57_c00279{width:77.952000px;}
._1c_c00279{width:81.984000px;}
._17_c00279{width:90.060000px;}
._2a_c00279{width:94.176000px;}
._50_c00279{width:97.008000px;}
._1f_c00279{width:105.240000px;}
._23_c00279{width:107.136000px;}
._22_c00279{width:111.000000px;}
._26_c00279{width:114.528000px;}
._2c_c00279{width:121.260000px;}
._3f_c00279{width:133.848000px;}
._25_c00279{width:150.768000px;}
._28_c00279{width:170.280000px;}
._42_c00279{width:172.422000px;}
._55_c00279{width:181.506000px;}
._1d_c00279{width:207.024000px;}
._4b_c00279{width:217.017000px;}
._45_c00279{width:222.540000px;}
._46_c00279{width:232.056000px;}
._3e_c00279{width:249.216000px;}
._19_c00279{width:294.744000px;}
._2d_c00279{width:297.696000px;}
._4c_c00279{width:299.424000px;}
._40_c00279{width:334.860000px;}
._2_c00279{width:343.512000px;}
._54_c00279{width:361.050000px;}
._44_c00279{width:410.664000px;}
._43_c00279{width:466.800000px;}
._4a_c00279{width:468.219000px;}
._53_c00279{width:785.640000px;}
._49_c00279{width:827.856000px;}
._4d_c00279{width:854.760000px;}
._58_c00279{width:856.224000px;}
._27_c00279{width:1496.544000px;}
.fc2_c00279{color:transparent;}
.fc1_c00279{color:rgb(128,128,128);}
.fc0_c00279{color:rgb(0,0,0);}
.fs4_c00279{font-size:45.000000px;}
.fs5_c00279{font-size:48.000000px;}
.fs3_c00279{font-size:60.000000px;}
.fs2_c00279{font-size:72.000000px;}
.fs0_c00279{font-size:75.000000px;}
.fs1_c00279{font-size:93.000000px;}
.fs6_c00279{font-size:243.000000px;}
.y0_c00279{bottom:0.000000px;}
.y2d_c00279{bottom:3.105000px;}
.y2c_c00279{bottom:7.228363px;}
.y2b_c00279{bottom:31.800000px;}
.y2a_c00279{bottom:47.400000px;}
.y29_c00279{bottom:68.250000px;}
.y28_c00279{bottom:84.450000px;}
.y27_c00279{bottom:102.750000px;}
.y26_c00279{bottom:120.900000px;}
.y25_c00279{bottom:138.450000px;}
.y24_c00279{bottom:156.600000px;}
.y23_c00279{bottom:175.650000px;}
.y22_c00279{bottom:193.200000px;}
.y21_c00279{bottom:211.950000px;}
.y20_c00279{bottom:229.650000px;}
.y1f_c00279{bottom:248.550000px;}
.y1e_c00279{bottom:266.100000px;}
.y1d_c00279{bottom:283.500000px;}
.y1c_c00279{bottom:296.400000px;}
.y1b_c00279{bottom:321.300000px;}
.y1a_c00279{bottom:339.600000px;}
.y19_c00279{bottom:357.150000px;}
.y18_c00279{bottom:376.350000px;}
.y17_c00279{bottom:392.250000px;}
.y16_c00279{bottom:412.200000px;}
.y15_c00279{bottom:430.350000px;}
.y13_c00279{bottom:435.150000px;}
.y14_c00279{bottom:448.950000px;}
.y12_c00279{bottom:486.750000px;}
.y11_c00279{bottom:505.200000px;}
.y10_c00279{bottom:521.550000px;}
.yf_c00279{bottom:540.900000px;}
.ye_c00279{bottom:558.600000px;}
.yd_c00279{bottom:576.900000px;}
.yc_c00279{bottom:595.050000px;}
.yb_c00279{bottom:613.500000px;}
.ya_c00279{bottom:631.350000px;}
.y9_c00279{bottom:650.250000px;}
.y8_c00279{bottom:667.650000px;}
.y7_c00279{bottom:686.250000px;}
.y6_c00279{bottom:704.400000px;}
.y5_c00279{bottom:722.850000px;}
.y4_c00279{bottom:740.850000px;}
.y3_c00279{bottom:758.400000px;}
.y2_c00279{bottom:776.250000px;}
.y1_c00279{bottom:793.800000px;}
.h8_c00279{height:13.200074px;}
.h9_c00279{height:43.804688px;}
.h3_c00279{height:62.880000px;}
.h5_c00279{height:64.020000px;}
.h7_c00279{height:64.620000px;}
.h4_c00279{height:70.664062px;}
.h2_c00279{height:96.996094px;}
.h6_c00279{height:254.664000px;}
.h1_c00279{height:834.000000px;}
.h0_c00279{height:834.300000px;}
.w2_c00279{width:104.875500px;}
.w1_c00279{width:558.750000px;}
.w0_c00279{width:558.900000px;}
.x0_c00279{left:0.000000px;}
.xe_c00279{left:81.750000px;}
.xd_c00279{left:82.800000px;}
.x3_c00279{left:84.150000px;}
.x1_c00279{left:85.500000px;}
.x7_c00279{left:87.300000px;}
.xb_c00279{left:93.600000px;}
.x8_c00279{left:106.650000px;}
.x9_c00279{left:120.750000px;}
.xc_c00279{left:124.500000px;}
.x2_c00279{left:149.850000px;}
.xa_c00279{left:165.000000px;}
.x5_c00279{left:182.850000px;}
.x11_c00279{left:231.264267px;}
.x6_c00279{left:253.800000px;}
.xf_c00279{left:295.950000px;}
.x4_c00279{left:299.250000px;}
.x10_c00279{left:469.800000px;}
@media print{
.v0_c00279{vertical-align:0.000000pt;}
.v1_c00279{vertical-align:113.600000pt;}
.ls9_c00279{letter-spacing:-10.666667pt;}
.ls6_c00279{letter-spacing:0.000000pt;}
.ls3_c00279{letter-spacing:1.706667pt;}
.ls5_c00279{letter-spacing:2.133333pt;}
.ls1_c00279{letter-spacing:2.666667pt;}
.ls8_c00279{letter-spacing:5.333333pt;}
.ls4_c00279{letter-spacing:8.000000pt;}
.ls0_c00279{letter-spacing:8.266667pt;}
.ls2_c00279{letter-spacing:10.240000pt;}
.ls7_c00279{letter-spacing:13.333333pt;}
.ws8_c00279{word-spacing:-54.216000pt;}
.ws3_c00279{word-spacing:-31.373333pt;}
.ws0_c00279{word-spacing:-22.981333pt;}
.ws6_c00279{word-spacing:-21.120000pt;}
.wsa_c00279{word-spacing:-18.080000pt;}
.ws9_c00279{word-spacing:-16.053333pt;}
.ws7_c00279{word-spacing:-16.000000pt;}
.ws2_c00279{word-spacing:-12.586667pt;}
.ws4_c00279{word-spacing:-12.314667pt;}
.ws5_c00279{word-spacing:-11.221333pt;}
.ws1_c00279{word-spacing:-10.645333pt;}
.wsb_c00279{word-spacing:0.000000pt;}
._52_c00279{margin-left:-33.333333pt;}
._2f_c00279{margin-left:-26.930667pt;}
._39_c00279{margin-left:-25.482667pt;}
._37_c00279{margin-left:-24.549333pt;}
._29_c00279{margin-left:-23.296000pt;}
._1_c00279{margin-left:-22.109333pt;}
._33_c00279{margin-left:-20.837333pt;}
._30_c00279{margin-left:-19.096000pt;}
._2e_c00279{margin-left:-17.069333pt;}
._3a_c00279{margin-left:-15.957333pt;}
._3b_c00279{margin-left:-14.669333pt;}
._32_c00279{margin-left:-13.560000pt;}
._31_c00279{margin-left:-12.277333pt;}
._0_c00279{margin-left:-11.242667pt;}
._1a_c00279{margin-left:-10.274667pt;}
._14_c00279{margin-left:-9.173333pt;}
._18_c00279{margin-left:-7.872000pt;}
._1e_c00279{margin-left:-6.880000pt;}
._e_c00279{margin-left:-5.866667pt;}
._f_c00279{margin-left:-4.586667pt;}
._16_c00279{margin-left:-3.616000pt;}
._13_c00279{margin-left:-2.666667pt;}
._b_c00279{margin-left:-1.664000pt;}
._10_c00279{width:1.386667pt;}
._5_c00279{width:2.432000pt;}
._15_c00279{width:3.413333pt;}
._3_c00279{width:4.416000pt;}
._4_c00279{width:5.760000pt;}
._6_c00279{width:6.912000pt;}
._d_c00279{width:8.362667pt;}
._9_c00279{width:9.920000pt;}
._8_c00279{width:11.253333pt;}
._1b_c00279{width:12.602667pt;}
._a_c00279{width:13.941333pt;}
._11_c00279{width:15.306667pt;}
._35_c00279{width:17.282667pt;}
._20_c00279{width:18.272000pt;}
._48_c00279{width:19.413333pt;}
._36_c00279{width:20.608000pt;}
._21_c00279{width:22.090667pt;}
._2b_c00279{width:24.234667pt;}
._4e_c00279{width:25.877333pt;}
._3c_c00279{width:28.464000pt;}
._56_c00279{width:31.877333pt;}
._41_c00279{width:32.864000pt;}
._12_c00279{width:33.994667pt;}
._7_c00279{width:37.098667pt;}
._3d_c00279{width:38.858667pt;}
._4f_c00279{width:40.682667pt;}
._38_c00279{width:43.794667pt;}
._47_c00279{width:51.717333pt;}
._34_c00279{width:53.888000pt;}
._51_c00279{width:57.312000pt;}
._c_c00279{width:62.890667pt;}
._24_c00279{width:66.133333pt;}
._57_c00279{width:69.290667pt;}
._1c_c00279{width:72.874667pt;}
._17_c00279{width:80.053333pt;}
._2a_c00279{width:83.712000pt;}
._50_c00279{width:86.229333pt;}
._1f_c00279{width:93.546667pt;}
._23_c00279{width:95.232000pt;}
._22_c00279{width:98.666667pt;}
._26_c00279{width:101.802667pt;}
._2c_c00279{width:107.786667pt;}
._3f_c00279{width:118.976000pt;}
._25_c00279{width:134.016000pt;}
._28_c00279{width:151.360000pt;}
._42_c00279{width:153.264000pt;}
._55_c00279{width:161.338667pt;}
._1d_c00279{width:184.021333pt;}
._4b_c00279{width:192.904000pt;}
._45_c00279{width:197.813333pt;}
._46_c00279{width:206.272000pt;}
._3e_c00279{width:221.525333pt;}
._19_c00279{width:261.994667pt;}
._2d_c00279{width:264.618667pt;}
._4c_c00279{width:266.154667pt;}
._40_c00279{width:297.653333pt;}
._2_c00279{width:305.344000pt;}
._54_c00279{width:320.933333pt;}
._44_c00279{width:365.034667pt;}
._43_c00279{width:414.933333pt;}
._4a_c00279{width:416.194667pt;}
._53_c00279{width:698.346667pt;}
._49_c00279{width:735.872000pt;}
._4d_c00279{width:759.786667pt;}
._58_c00279{width:761.088000pt;}
._27_c00279{width:1330.261333pt;}
.fs4_c00279{font-size:40.000000pt;}
.fs5_c00279{font-size:42.666667pt;}
.fs3_c00279{font-size:53.333333pt;}
.fs2_c00279{font-size:64.000000pt;}
.fs0_c00279{font-size:66.666667pt;}
.fs1_c00279{font-size:82.666667pt;}
.fs6_c00279{font-size:216.000000pt;}
.y0_c00279{bottom:0.000000pt;}
.y2d_c00279{bottom:2.760000pt;}
.y2c_c00279{bottom:6.425212pt;}
.y2b_c00279{bottom:28.266667pt;}
.y2a_c00279{bottom:42.133333pt;}
.y29_c00279{bottom:60.666667pt;}
.y28_c00279{bottom:75.066667pt;}
.y27_c00279{bottom:91.333333pt;}
.y26_c00279{bottom:107.466667pt;}
.y25_c00279{bottom:123.066667pt;}
.y24_c00279{bottom:139.200000pt;}
.y23_c00279{bottom:156.133333pt;}
.y22_c00279{bottom:171.733333pt;}
.y21_c00279{bottom:188.400000pt;}
.y20_c00279{bottom:204.133333pt;}
.y1f_c00279{bottom:220.933333pt;}
.y1e_c00279{bottom:236.533333pt;}
.y1d_c00279{bottom:252.000000pt;}
.y1c_c00279{bottom:263.466667pt;}
.y1b_c00279{bottom:285.600000pt;}
.y1a_c00279{bottom:301.866667pt;}
.y19_c00279{bottom:317.466667pt;}
.y18_c00279{bottom:334.533333pt;}
.y17_c00279{bottom:348.666667pt;}
.y16_c00279{bottom:366.400000pt;}
.y15_c00279{bottom:382.533333pt;}
.y13_c00279{bottom:386.800000pt;}
.y14_c00279{bottom:399.066667pt;}
.y12_c00279{bottom:432.666667pt;}
.y11_c00279{bottom:449.066667pt;}
.y10_c00279{bottom:463.600000pt;}
.yf_c00279{bottom:480.800000pt;}
.ye_c00279{bottom:496.533333pt;}
.yd_c00279{bottom:512.800000pt;}
.yc_c00279{bottom:528.933333pt;}
.yb_c00279{bottom:545.333333pt;}
.ya_c00279{bottom:561.200000pt;}
.y9_c00279{bottom:578.000000pt;}
.y8_c00279{bottom:593.466667pt;}
.y7_c00279{bottom:610.000000pt;}
.y6_c00279{bottom:626.133333pt;}
.y5_c00279{bottom:642.533333pt;}
.y4_c00279{bottom:658.533333pt;}
.y3_c00279{bottom:674.133333pt;}
.y2_c00279{bottom:690.000000pt;}
.y1_c00279{bottom:705.600000pt;}
.h8_c00279{height:11.733399pt;}
.h9_c00279{height:38.937500pt;}
.h3_c00279{height:55.893333pt;}
.h5_c00279{height:56.906667pt;}
.h7_c00279{height:57.440000pt;}
.h4_c00279{height:62.812500pt;}
.h2_c00279{height:86.218750pt;}
.h6_c00279{height:226.368000pt;}
.h1_c00279{height:741.333333pt;}
.h0_c00279{height:741.600000pt;}
.w2_c00279{width:93.222667pt;}
.w1_c00279{width:496.666667pt;}
.w0_c00279{width:496.800000pt;}
.x0_c00279{left:0.000000pt;}
.xe_c00279{left:72.666667pt;}
.xd_c00279{left:73.600000pt;}
.x3_c00279{left:74.800000pt;}
.x1_c00279{left:76.000000pt;}
.x7_c00279{left:77.600000pt;}
.xb_c00279{left:83.200000pt;}
.x8_c00279{left:94.800000pt;}
.x9_c00279{left:107.333333pt;}
.xc_c00279{left:110.666667pt;}
.x2_c00279{left:133.200000pt;}
.xa_c00279{left:146.666667pt;}
.x5_c00279{left:162.533333pt;}
.x11_c00279{left:205.568237pt;}
.x6_c00279{left:225.600000pt;}
.xf_c00279{left:263.066667pt;}
.x4_c00279{left:266.000000pt;}
.x10_c00279{left:417.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_1aeff148d71c7ff46f3b6926.woff2')format("woff");}.ff1_c00280{font-family:ff1_c00280;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00280;src:url('chunks/assets/font_af0d9fe0aeef449ab45d64b9.woff2')format("woff");}.ff2_c00280{font-family:ff2_c00280;line-height:1.012793;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00280;src:url('chunks/assets/font_3d4a39adebe1a43b15a2b404.woff2')format("woff");}.ff3_c00280{font-family:ff3_c00280;line-height:1.012793;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00280;src:url('chunks/assets/font_151162aa8a76f6c84737a114.woff2')format("woff");}.ff4_c00280{font-family:ff4_c00280;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00280;src:url('chunks/assets/font_3629bd73a900ead3dc088ae6.woff2')format("woff");}.ff5_c00280{font-family:ff5_c00280;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00280;src:url('chunks/assets/font_5d4c78b36f9a6ab86bc5a3c7.woff2')format("woff");}.ff6_c00280{font-family:ff6_c00280;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00280;src:url('chunks/assets/font_3967c0ac99171a5f91377cd2.woff2')format("woff");}.ff7_c00280{font-family:ff7_c00280;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00280;src:url('chunks/assets/font_739a1604bdbe542c750b9924.woff2')format("woff");}.ff8_c00280{font-family:ff8_c00280;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00280;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff9_c00280{font-family:ff9_c00280;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00280{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00280{vertical-align:0.000000px;}
.lsb_c00280{letter-spacing:0.000000px;}
.ls0_c00280{letter-spacing:3.000000px;}
.ls5_c00280{letter-spacing:3.981000px;}
.ls2_c00280{letter-spacing:4.020000px;}
.ls9_c00280{letter-spacing:6.000000px;}
.lsc_c00280{letter-spacing:9.000000px;}
.ls3_c00280{letter-spacing:10.200000px;}
.ls8_c00280{letter-spacing:13.200000px;}
.ls7_c00280{letter-spacing:15.000000px;}
.ls4_c00280{letter-spacing:15.420000px;}
.ls1_c00280{letter-spacing:19.200000px;}
.lsa_c00280{letter-spacing:19.680000px;}
.ls6_c00280{letter-spacing:28.377000px;}
.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;}
}
.ws6_c00280{word-spacing:-32.088000px;}
.wsa_c00280{word-spacing:-31.746000px;}
.wsc_c00280{word-spacing:-29.250000px;}
.ws7_c00280{word-spacing:-28.452000px;}
.wsb_c00280{word-spacing:-22.500000px;}
.wsd_c00280{word-spacing:-18.060000px;}
.ws5_c00280{word-spacing:-17.340000px;}
.ws8_c00280{word-spacing:-16.452000px;}
.ws3_c00280{word-spacing:-14.160000px;}
.ws2_c00280{word-spacing:-0.960000px;}
.ws0_c00280{word-spacing:-0.048000px;}
.ws1_c00280{word-spacing:-0.038400px;}
.wse_c00280{word-spacing:0.000000px;}
.ws9_c00280{word-spacing:0.180000px;}
.ws4_c00280{word-spacing:9.480000px;}
._35_c00280{margin-left:-30.771000px;}
._36_c00280{margin-left:-24.687000px;}
._28_c00280{margin-left:-23.046000px;}
._20_c00280{margin-left:-21.381000px;}
._38_c00280{margin-left:-19.896000px;}
._33_c00280{margin-left:-18.486000px;}
._26_c00280{margin-left:-17.124000px;}
._17_c00280{margin-left:-15.690000px;}
._37_c00280{margin-left:-14.655000px;}
._1c_c00280{margin-left:-13.440000px;}
._b_c00280{margin-left:-12.000000px;}
._d_c00280{margin-left:-10.560000px;}
._c_c00280{margin-left:-9.288000px;}
._10_c00280{margin-left:-7.824000px;}
._f_c00280{margin-left:-6.528000px;}
._e_c00280{margin-left:-5.499000px;}
._3_c00280{margin-left:-4.440000px;}
._2_c00280{margin-left:-3.240000px;}
._0_c00280{margin-left:-1.560000px;}
._1_c00280{width:1.080000px;}
._21_c00280{width:2.160000px;}
._7_c00280{width:3.264000px;}
._8_c00280{width:4.296000px;}
._1f_c00280{width:5.451000px;}
._6_c00280{width:6.456000px;}
._16_c00280{width:8.352000px;}
._11_c00280{width:9.993000px;}
._14_c00280{width:11.340000px;}
._1e_c00280{width:12.600000px;}
._27_c00280{width:13.680000px;}
._15_c00280{width:14.688000px;}
._2d_c00280{width:15.816000px;}
._5_c00280{width:17.496000px;}
._12_c00280{width:18.720000px;}
._1d_c00280{width:20.118000px;}
._9_c00280{width:21.192000px;}
._18_c00280{width:22.404000px;}
._22_c00280{width:24.540000px;}
._29_c00280{width:25.608000px;}
._1a_c00280{width:27.420000px;}
._2b_c00280{width:29.451000px;}
._25_c00280{width:32.040000px;}
._31_c00280{width:35.724000px;}
._32_c00280{width:37.440000px;}
._2f_c00280{width:41.442000px;}
._30_c00280{width:44.820000px;}
._23_c00280{width:50.004000px;}
._34_c00280{width:67.041000px;}
._2e_c00280{width:68.478000px;}
._a_c00280{width:72.456000px;}
._2c_c00280{width:73.881000px;}
._2a_c00280{width:104.250000px;}
._1b_c00280{width:134.340000px;}
._13_c00280{width:245.943000px;}
._19_c00280{width:289.080000px;}
._24_c00280{width:336.627000px;}
._4_c00280{width:897.420000px;}
.fc2_c00280{color:transparent;}
.fc1_c00280{color:rgb(128,128,128);}
.fc0_c00280{color:rgb(0,0,0);}
.fs3_c00280{font-size:38.400000px;}
.fs1_c00280{font-size:48.000000px;}
.fs2_c00280{font-size:51.000000px;}
.fs6_c00280{font-size:54.000000px;}
.fs5_c00280{font-size:57.000000px;}
.fs0_c00280{font-size:60.000000px;}
.fs4_c00280{font-size:66.000000px;}
.fs7_c00280{font-size:117.000000px;}
.y0_c00280{bottom:0.000000px;}
.y53_c00280{bottom:3.105000px;}
.y52_c00280{bottom:7.228371px;}
.y51_c00280{bottom:26.715000px;}
.y50_c00280{bottom:47.715000px;}
.y48_c00280{bottom:52.965000px;}
.y4f_c00280{bottom:66.615000px;}
.y47_c00280{bottom:72.615000px;}
.y4e_c00280{bottom:85.065000px;}
.y46_c00280{bottom:90.765000px;}
.y4d_c00280{bottom:104.415000px;}
.y45_c00280{bottom:109.065000px;}
.y4c_c00280{bottom:120.465000px;}
.y44_c00280{bottom:127.215000px;}
.y4b_c00280{bottom:140.865000px;}
.y4a_c00280{bottom:156.015000px;}
.y43_c00280{bottom:165.015000px;}
.y49_c00280{bottom:175.965000px;}
.y42_c00280{bottom:183.615000px;}
.y41_c00280{bottom:200.265000px;}
.y24_c00280{bottom:205.665000px;}
.y40_c00280{bottom:216.765000px;}
.y23_c00280{bottom:225.165000px;}
.y3f_c00280{bottom:232.665000px;}
.y1f_c00280{bottom:237.615000px;}
.y22_c00280{bottom:243.765000px;}
.y3e_c00280{bottom:250.215000px;}
.y1e_c00280{bottom:256.215000px;}
.y3d_c00280{bottom:268.965000px;}
.y1d_c00280{bottom:274.515000px;}
.y3c_c00280{bottom:287.565000px;}
.y1c_c00280{bottom:291.615000px;}
.y3b_c00280{bottom:305.865000px;}
.y1b_c00280{bottom:310.515000px;}
.y3a_c00280{bottom:324.315000px;}
.y1a_c00280{bottom:328.815000px;}
.y21_c00280{bottom:332.115000px;}
.y39_c00280{bottom:342.015000px;}
.y19_c00280{bottom:346.965000px;}
.y20_c00280{bottom:350.415000px;}
.y38_c00280{bottom:360.165000px;}
.y18_c00280{bottom:364.515000px;}
.y37_c00280{bottom:378.465000px;}
.y17_c00280{bottom:382.815000px;}
.y36_c00280{bottom:397.365000px;}
.y16_c00280{bottom:400.365000px;}
.y35_c00280{bottom:416.115000px;}
.y15_c00280{bottom:418.965000px;}
.y34_c00280{bottom:433.815000px;}
.y14_c00280{bottom:436.815000px;}
.y33_c00280{bottom:452.265000px;}
.y13_c00280{bottom:454.665000px;}
.y32_c00280{bottom:470.265000px;}
.y12_c00280{bottom:472.515000px;}
.y31_c00280{bottom:487.665000px;}
.y11_c00280{bottom:490.365000px;}
.y30_c00280{bottom:506.565000px;}
.y10_c00280{bottom:508.965000px;}
.y2f_c00280{bottom:524.265000px;}
.yf_c00280{bottom:526.215000px;}
.y2e_c00280{bottom:542.415000px;}
.ye_c00280{bottom:543.465000px;}
.y2d_c00280{bottom:560.715000px;}
.yd_c00280{bottom:561.615000px;}
.y2c_c00280{bottom:579.165000px;}
.yc_c00280{bottom:579.615000px;}
.y2b_c00280{bottom:597.165000px;}
.yb_c00280{bottom:597.465000px;}
.ya_c00280{bottom:615.315000px;}
.y2a_c00280{bottom:633.465000px;}
.y9_c00280{bottom:633.615000px;}
.y8_c00280{bottom:651.765000px;}
.y29_c00280{bottom:652.065000px;}
.y7_c00280{bottom:670.065000px;}
.y28_c00280{bottom:670.365000px;}
.y6_c00280{bottom:687.615000px;}
.y5_c00280{bottom:706.365000px;}
.y27_c00280{bottom:707.865000px;}
.y4_c00280{bottom:724.365000px;}
.y26_c00280{bottom:726.315000px;}
.y3_c00280{bottom:742.215000px;}
.y25_c00280{bottom:744.165000px;}
.y2_c00280{bottom:761.865000px;}
.y1_c00280{bottom:779.265000px;}
.h9_c00280{height:13.200074px;}
.ha_c00280{height:43.804688px;}
.h3_c00280{height:53.448000px;}
.h6_c00280{height:59.736000px;}
.h2_c00280{height:62.880000px;}
.h5_c00280{height:64.020000px;}
.h7_c00280{height:70.422000px;}
.h4_c00280{height:71.544000px;}
.h8_c00280{height:124.839000px;}
.h1_c00280{height:836.250000px;}
.h0_c00280{height:836.475000px;}
.w2_c00280{width:104.875500px;}
.w0_c00280{width:586.425000px;}
.w1_c00280{width:586.500000px;}
.x0_c00280{left:0.000000px;}
.x7_c00280{left:24.000000px;}
.xc_c00280{left:30.000000px;}
.xd_c00280{left:31.350000px;}
.xe_c00280{left:33.300000px;}
.x1_c00280{left:78.600000px;}
.x2_c00280{left:79.650000px;}
.x3_c00280{left:80.700000px;}
.x4_c00280{left:82.050000px;}
.x6_c00280{left:83.700000px;}
.x9_c00280{left:85.650000px;}
.xb_c00280{left:87.300000px;}
.x8_c00280{left:90.150000px;}
.xa_c00280{left:91.350000px;}
.x5_c00280{left:93.750000px;}
.x19_c00280{left:95.100000px;}
.x1a_c00280{left:96.150000px;}
.x1f_c00280{left:245.026749px;}
.xf_c00280{left:296.250000px;}
.x15_c00280{left:299.700000px;}
.x12_c00280{left:301.350000px;}
.x13_c00280{left:302.400000px;}
.x14_c00280{left:303.450000px;}
.x16_c00280{left:305.700000px;}
.x17_c00280{left:307.050000px;}
.x18_c00280{left:308.100000px;}
.x1c_c00280{left:309.150000px;}
.x1b_c00280{left:310.200000px;}
.x1d_c00280{left:312.450000px;}
.x10_c00280{left:322.200000px;}
.x11_c00280{left:335.700000px;}
.x1e_c00280{left:482.850000px;}
@media print{
.v0_c00280{vertical-align:0.000000pt;}
.lsb_c00280{letter-spacing:0.000000pt;}
.ls0_c00280{letter-spacing:2.666667pt;}
.ls5_c00280{letter-spacing:3.538667pt;}
.ls2_c00280{letter-spacing:3.573333pt;}
.ls9_c00280{letter-spacing:5.333333pt;}
.lsc_c00280{letter-spacing:8.000000pt;}
.ls3_c00280{letter-spacing:9.066667pt;}
.ls8_c00280{letter-spacing:11.733333pt;}
.ls7_c00280{letter-spacing:13.333333pt;}
.ls4_c00280{letter-spacing:13.706667pt;}
.ls1_c00280{letter-spacing:17.066667pt;}
.lsa_c00280{letter-spacing:17.493333pt;}
.ls6_c00280{letter-spacing:25.224000pt;}
.ws6_c00280{word-spacing:-28.522667pt;}
.wsa_c00280{word-spacing:-28.218667pt;}
.wsc_c00280{word-spacing:-26.000000pt;}
.ws7_c00280{word-spacing:-25.290667pt;}
.wsb_c00280{word-spacing:-20.000000pt;}
.wsd_c00280{word-spacing:-16.053333pt;}
.ws5_c00280{word-spacing:-15.413333pt;}
.ws8_c00280{word-spacing:-14.624000pt;}
.ws3_c00280{word-spacing:-12.586667pt;}
.ws2_c00280{word-spacing:-0.853333pt;}
.ws0_c00280{word-spacing:-0.042667pt;}
.ws1_c00280{word-spacing:-0.034133pt;}
.wse_c00280{word-spacing:0.000000pt;}
.ws9_c00280{word-spacing:0.160000pt;}
.ws4_c00280{word-spacing:8.426667pt;}
._35_c00280{margin-left:-27.352000pt;}
._36_c00280{margin-left:-21.944000pt;}
._28_c00280{margin-left:-20.485333pt;}
._20_c00280{margin-left:-19.005333pt;}
._38_c00280{margin-left:-17.685333pt;}
._33_c00280{margin-left:-16.432000pt;}
._26_c00280{margin-left:-15.221333pt;}
._17_c00280{margin-left:-13.946667pt;}
._37_c00280{margin-left:-13.026667pt;}
._1c_c00280{margin-left:-11.946667pt;}
._b_c00280{margin-left:-10.666667pt;}
._d_c00280{margin-left:-9.386667pt;}
._c_c00280{margin-left:-8.256000pt;}
._10_c00280{margin-left:-6.954667pt;}
._f_c00280{margin-left:-5.802667pt;}
._e_c00280{margin-left:-4.888000pt;}
._3_c00280{margin-left:-3.946667pt;}
._2_c00280{margin-left:-2.880000pt;}
._0_c00280{margin-left:-1.386667pt;}
._1_c00280{width:0.960000pt;}
._21_c00280{width:1.920000pt;}
._7_c00280{width:2.901333pt;}
._8_c00280{width:3.818667pt;}
._1f_c00280{width:4.845333pt;}
._6_c00280{width:5.738667pt;}
._16_c00280{width:7.424000pt;}
._11_c00280{width:8.882667pt;}
._14_c00280{width:10.080000pt;}
._1e_c00280{width:11.200000pt;}
._27_c00280{width:12.160000pt;}
._15_c00280{width:13.056000pt;}
._2d_c00280{width:14.058667pt;}
._5_c00280{width:15.552000pt;}
._12_c00280{width:16.640000pt;}
._1d_c00280{width:17.882667pt;}
._9_c00280{width:18.837333pt;}
._18_c00280{width:19.914667pt;}
._22_c00280{width:21.813333pt;}
._29_c00280{width:22.762667pt;}
._1a_c00280{width:24.373333pt;}
._2b_c00280{width:26.178667pt;}
._25_c00280{width:28.480000pt;}
._31_c00280{width:31.754667pt;}
._32_c00280{width:33.280000pt;}
._2f_c00280{width:36.837333pt;}
._30_c00280{width:39.840000pt;}
._23_c00280{width:44.448000pt;}
._34_c00280{width:59.592000pt;}
._2e_c00280{width:60.869333pt;}
._a_c00280{width:64.405333pt;}
._2c_c00280{width:65.672000pt;}
._2a_c00280{width:92.666667pt;}
._1b_c00280{width:119.413333pt;}
._13_c00280{width:218.616000pt;}
._19_c00280{width:256.960000pt;}
._24_c00280{width:299.224000pt;}
._4_c00280{width:797.706667pt;}
.fs3_c00280{font-size:34.133333pt;}
.fs1_c00280{font-size:42.666667pt;}
.fs2_c00280{font-size:45.333333pt;}
.fs6_c00280{font-size:48.000000pt;}
.fs5_c00280{font-size:50.666667pt;}
.fs0_c00280{font-size:53.333333pt;}
.fs4_c00280{font-size:58.666667pt;}
.fs7_c00280{font-size:104.000000pt;}
.y0_c00280{bottom:0.000000pt;}
.y53_c00280{bottom:2.760000pt;}
.y52_c00280{bottom:6.425219pt;}
.y51_c00280{bottom:23.746667pt;}
.y50_c00280{bottom:42.413333pt;}
.y48_c00280{bottom:47.080000pt;}
.y4f_c00280{bottom:59.213333pt;}
.y47_c00280{bottom:64.546667pt;}
.y4e_c00280{bottom:75.613333pt;}
.y46_c00280{bottom:80.680000pt;}
.y4d_c00280{bottom:92.813333pt;}
.y45_c00280{bottom:96.946667pt;}
.y4c_c00280{bottom:107.080000pt;}
.y44_c00280{bottom:113.080000pt;}
.y4b_c00280{bottom:125.213333pt;}
.y4a_c00280{bottom:138.680000pt;}
.y43_c00280{bottom:146.680000pt;}
.y49_c00280{bottom:156.413333pt;}
.y42_c00280{bottom:163.213333pt;}
.y41_c00280{bottom:178.013333pt;}
.y24_c00280{bottom:182.813333pt;}
.y40_c00280{bottom:192.680000pt;}
.y23_c00280{bottom:200.146667pt;}
.y3f_c00280{bottom:206.813333pt;}
.y1f_c00280{bottom:211.213333pt;}
.y22_c00280{bottom:216.680000pt;}
.y3e_c00280{bottom:222.413333pt;}
.y1e_c00280{bottom:227.746667pt;}
.y3d_c00280{bottom:239.080000pt;}
.y1d_c00280{bottom:244.013333pt;}
.y3c_c00280{bottom:255.613333pt;}
.y1c_c00280{bottom:259.213333pt;}
.y3b_c00280{bottom:271.880000pt;}
.y1b_c00280{bottom:276.013333pt;}
.y3a_c00280{bottom:288.280000pt;}
.y1a_c00280{bottom:292.280000pt;}
.y21_c00280{bottom:295.213333pt;}
.y39_c00280{bottom:304.013333pt;}
.y19_c00280{bottom:308.413333pt;}
.y20_c00280{bottom:311.480000pt;}
.y38_c00280{bottom:320.146667pt;}
.y18_c00280{bottom:324.013333pt;}
.y37_c00280{bottom:336.413333pt;}
.y17_c00280{bottom:340.280000pt;}
.y36_c00280{bottom:353.213333pt;}
.y16_c00280{bottom:355.880000pt;}
.y35_c00280{bottom:369.880000pt;}
.y15_c00280{bottom:372.413333pt;}
.y34_c00280{bottom:385.613333pt;}
.y14_c00280{bottom:388.280000pt;}
.y33_c00280{bottom:402.013333pt;}
.y13_c00280{bottom:404.146667pt;}
.y32_c00280{bottom:418.013333pt;}
.y12_c00280{bottom:420.013333pt;}
.y31_c00280{bottom:433.480000pt;}
.y11_c00280{bottom:435.880000pt;}
.y30_c00280{bottom:450.280000pt;}
.y10_c00280{bottom:452.413333pt;}
.y2f_c00280{bottom:466.013333pt;}
.yf_c00280{bottom:467.746667pt;}
.y2e_c00280{bottom:482.146667pt;}
.ye_c00280{bottom:483.080000pt;}
.y2d_c00280{bottom:498.413333pt;}
.yd_c00280{bottom:499.213333pt;}
.y2c_c00280{bottom:514.813333pt;}
.yc_c00280{bottom:515.213333pt;}
.y2b_c00280{bottom:530.813333pt;}
.yb_c00280{bottom:531.080000pt;}
.ya_c00280{bottom:546.946667pt;}
.y2a_c00280{bottom:563.080000pt;}
.y9_c00280{bottom:563.213333pt;}
.y8_c00280{bottom:579.346667pt;}
.y29_c00280{bottom:579.613333pt;}
.y7_c00280{bottom:595.613333pt;}
.y28_c00280{bottom:595.880000pt;}
.y6_c00280{bottom:611.213333pt;}
.y5_c00280{bottom:627.880000pt;}
.y27_c00280{bottom:629.213333pt;}
.y4_c00280{bottom:643.880000pt;}
.y26_c00280{bottom:645.613333pt;}
.y3_c00280{bottom:659.746667pt;}
.y25_c00280{bottom:661.480000pt;}
.y2_c00280{bottom:677.213333pt;}
.y1_c00280{bottom:692.680000pt;}
.h9_c00280{height:11.733399pt;}
.ha_c00280{height:38.937500pt;}
.h3_c00280{height:47.509333pt;}
.h6_c00280{height:53.098667pt;}
.h2_c00280{height:55.893333pt;}
.h5_c00280{height:56.906667pt;}
.h7_c00280{height:62.597333pt;}
.h4_c00280{height:63.594667pt;}
.h8_c00280{height:110.968000pt;}
.h1_c00280{height:743.333333pt;}
.h0_c00280{height:743.533333pt;}
.w2_c00280{width:93.222667pt;}
.w0_c00280{width:521.266667pt;}
.w1_c00280{width:521.333333pt;}
.x0_c00280{left:0.000000pt;}
.x7_c00280{left:21.333333pt;}
.xc_c00280{left:26.666667pt;}
.xd_c00280{left:27.866667pt;}
.xe_c00280{left:29.600000pt;}
.x1_c00280{left:69.866667pt;}
.x2_c00280{left:70.800000pt;}
.x3_c00280{left:71.733333pt;}
.x4_c00280{left:72.933333pt;}
.x6_c00280{left:74.400000pt;}
.x9_c00280{left:76.133333pt;}
.xb_c00280{left:77.600000pt;}
.x8_c00280{left:80.133333pt;}
.xa_c00280{left:81.200000pt;}
.x5_c00280{left:83.333333pt;}
.x19_c00280{left:84.533333pt;}
.x1a_c00280{left:85.466667pt;}
.x1f_c00280{left:217.801554pt;}
.xf_c00280{left:263.333333pt;}
.x15_c00280{left:266.400000pt;}
.x12_c00280{left:267.866667pt;}
.x13_c00280{left:268.800000pt;}
.x14_c00280{left:269.733333pt;}
.x16_c00280{left:271.733333pt;}
.x17_c00280{left:272.933333pt;}
.x18_c00280{left:273.866667pt;}
.x1c_c00280{left:274.800000pt;}
.x1b_c00280{left:275.733333pt;}
.x1d_c00280{left:277.733333pt;}
.x10_c00280{left:286.400000pt;}
.x11_c00280{left:298.400000pt;}
.x1e_c00280{left:429.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_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_4787ea9131d7320b75c5ce52.woff2')format("woff");}.ff1_c00281{font-family:ff1_c00281;line-height:1.437000;font-style:normal;font-weight:normal;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_75795c01bd0c1fc99e81f6ed.woff2')format("woff");}.ff2_c00281{font-family:ff2_c00281;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00281;src:url('chunks/assets/font_f1ef5083333ff49d60a63de3.woff2')format("woff");}.ff3_c00281{font-family:ff3_c00281;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00281;src:url('chunks/assets/font_384595665176d51ff0008078.woff2')format("woff");}.ff4_c00281{font-family:ff4_c00281;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00281;src:url('chunks/assets/font_47db6781a4313036ced13f96.woff2')format("woff");}.ff5_c00281{font-family:ff5_c00281;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00281;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff6_c00281{font-family:ff6_c00281;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00281{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00281{vertical-align:0.000000px;}
.ls9_c00281{letter-spacing:0.000000px;}
.ls3_c00281{letter-spacing:1.800000px;}
.ls6_c00281{letter-spacing:3.000000px;}
.ls1_c00281{letter-spacing:5.400000px;}
.lsa_c00281{letter-spacing:6.000000px;}
.ls0_c00281{letter-spacing:6.060000px;}
.ls2_c00281{letter-spacing:8.880000px;}
.ls7_c00281{letter-spacing:10.140000px;}
.ls8_c00281{letter-spacing:10.740000px;}
.ls4_c00281{letter-spacing:40.200000px;}
.ls5_c00281{letter-spacing:99.540000px;}
.sc__c00281{text-shadow:none;}
.sc0_c00281{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00281{-webkit-text-stroke:0px transparent;}
.sc0_c00281{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00281{word-spacing:-42.744000px;}
.ws6_c00281{word-spacing:-18.072000px;}
.ws1_c00281{word-spacing:-18.060000px;}
.ws5_c00281{word-spacing:-17.340000px;}
.ws0_c00281{word-spacing:-14.160000px;}
.ws2_c00281{word-spacing:-0.660000px;}
.ws4_c00281{word-spacing:-0.600000px;}
.ws7_c00281{word-spacing:0.000000px;}
._25_c00281{margin-left:-25.320000px;}
._8_c00281{margin-left:-19.920000px;}
._6_c00281{margin-left:-13.860000px;}
._7_c00281{margin-left:-12.120000px;}
._16_c00281{margin-left:-10.920000px;}
._29_c00281{margin-left:-9.060000px;}
._15_c00281{margin-left:-7.440000px;}
._a_c00281{margin-left:-5.460000px;}
._39_c00281{margin-left:-4.440000px;}
._b_c00281{margin-left:-3.420000px;}
._9_c00281{margin-left:-1.620000px;}
._d_c00281{width:1.980000px;}
._3_c00281{width:3.180000px;}
._2_c00281{width:4.200000px;}
._1_c00281{width:6.060000px;}
._21_c00281{width:7.080000px;}
._4_c00281{width:8.574000px;}
._0_c00281{width:10.380000px;}
._37_c00281{width:11.460000px;}
._5_c00281{width:12.720000px;}
._3a_c00281{width:13.800000px;}
._10_c00281{width:14.940000px;}
._34_c00281{width:16.200000px;}
._2a_c00281{width:17.220000px;}
._f_c00281{width:18.780000px;}
._14_c00281{width:19.860000px;}
._c_c00281{width:21.000000px;}
._27_c00281{width:22.200000px;}
._1d_c00281{width:23.460000px;}
._11_c00281{width:24.600000px;}
._20_c00281{width:25.620000px;}
._19_c00281{width:27.606000px;}
._2b_c00281{width:28.800000px;}
._33_c00281{width:30.960000px;}
._12_c00281{width:32.400000px;}
._2e_c00281{width:34.440000px;}
._13_c00281{width:35.880000px;}
._3b_c00281{width:40.440000px;}
._23_c00281{width:58.926000px;}
._22_c00281{width:64.860000px;}
._2c_c00281{width:66.120000px;}
._2d_c00281{width:70.320000px;}
._26_c00281{width:73.614000px;}
._28_c00281{width:75.060000px;}
._32_c00281{width:79.680000px;}
._18_c00281{width:85.800000px;}
._17_c00281{width:87.240000px;}
._1e_c00281{width:93.594000px;}
._1f_c00281{width:95.160000px;}
._1a_c00281{width:96.486000px;}
._1b_c00281{width:99.546000px;}
._1c_c00281{width:101.160000px;}
._38_c00281{width:104.280000px;}
._31_c00281{width:106.020000px;}
._30_c00281{width:107.160000px;}
._2f_c00281{width:109.560000px;}
._35_c00281{width:116.172000px;}
._24_c00281{width:352.320000px;}
._36_c00281{width:355.686000px;}
._e_c00281{width:362.886000px;}
.fc2_c00281{color:transparent;}
.fc1_c00281{color:rgb(128,128,128);}
.fc0_c00281{color:rgb(0,0,0);}
.fs3_c00281{font-size:48.000000px;}
.fs1_c00281{font-size:54.000000px;}
.fs0_c00281{font-size:60.000000px;}
.fs2_c00281{font-size:66.000000px;}
.fs4_c00281{font-size:72.000000px;}
.y0_c00281{bottom:0.000000px;}
.y3e_c00281{bottom:3.105000px;}
.y3d_c00281{bottom:7.228363px;}
.y3c_c00281{bottom:37.500000px;}
.y33_c00281{bottom:50.250000px;}
.y3b_c00281{bottom:54.900000px;}
.y32_c00281{bottom:69.450000px;}
.y3a_c00281{bottom:72.600000px;}
.y31_c00281{bottom:87.300000px;}
.y39_c00281{bottom:91.050000px;}
.y30_c00281{bottom:106.650000px;}
.y38_c00281{bottom:109.350000px;}
.y2f_c00281{bottom:123.900000px;}
.y37_c00281{bottom:127.200000px;}
.y2e_c00281{bottom:142.050000px;}
.y36_c00281{bottom:145.350000px;}
.y2d_c00281{bottom:160.350000px;}
.y35_c00281{bottom:163.650000px;}
.y2c_c00281{bottom:178.200000px;}
.y34_c00281{bottom:181.950000px;}
.y2b_c00281{bottom:197.700000px;}
.y2a_c00281{bottom:216.600000px;}
.y29_c00281{bottom:234.450000px;}
.y28_c00281{bottom:252.150000px;}
.y27_c00281{bottom:271.050000px;}
.y26_c00281{bottom:288.600000px;}
.y9_c00281{bottom:303.000000px;}
.y25_c00281{bottom:307.350000px;}
.y8_c00281{bottom:321.600000px;}
.y24_c00281{bottom:325.050000px;}
.y23_c00281{bottom:343.500000px;}
.y22_c00281{bottom:361.500000px;}
.y21_c00281{bottom:379.950000px;}
.y20_c00281{bottom:398.250000px;}
.y1f_c00281{bottom:416.700000px;}
.y7_c00281{bottom:430.350000px;}
.y1e_c00281{bottom:435.000000px;}
.y6_c00281{bottom:448.650000px;}
.y1d_c00281{bottom:453.300000px;}
.y1c_c00281{bottom:470.850000px;}
.y1b_c00281{bottom:489.000000px;}
.y1a_c00281{bottom:508.050000px;}
.y5_c00281{bottom:522.150000px;}
.y19_c00281{bottom:525.600000px;}
.y4_c00281{bottom:540.600000px;}
.y18_c00281{bottom:544.350000px;}
.y17_c00281{bottom:562.350000px;}
.y16_c00281{bottom:580.200000px;}
.y15_c00281{bottom:598.800000px;}
.y14_c00281{bottom:617.250000px;}
.y13_c00281{bottom:635.100000px;}
.y12_c00281{bottom:653.100000px;}
.y11_c00281{bottom:672.000000px;}
.y10_c00281{bottom:689.850000px;}
.yf_c00281{bottom:708.450000px;}
.ye_c00281{bottom:727.350000px;}
.y3_c00281{bottom:737.100000px;}
.yd_c00281{bottom:745.200000px;}
.y2_c00281{bottom:756.750000px;}
.yc_c00281{bottom:764.400000px;}
.y1_c00281{bottom:777.300000px;}
.yb_c00281{bottom:780.600000px;}
.ya_c00281{bottom:801.900000px;}
.h6_c00281{height:13.200074px;}
.h7_c00281{height:43.804688px;}
.h2_c00281{height:56.592000px;}
.h1_c00281{height:62.880000px;}
.h3_c00281{height:64.020000px;}
.h4_c00281{height:70.422000px;}
.h5_c00281{height:75.456000px;}
.h0_c00281{height:843.750000px;}
.w2_c00281{width:104.875500px;}
.w1_c00281{width:565.500000px;}
.w0_c00281{width:565.650000px;}
.x0_c00281{left:0.000000px;}
.x1_c00281{left:30.150000px;}
.x2_c00281{left:31.950000px;}
.x7_c00281{left:87.450000px;}
.x9_c00281{left:88.500000px;}
.xa_c00281{left:89.550000px;}
.x6_c00281{left:90.750000px;}
.x8_c00281{left:93.450000px;}
.x4_c00281{left:94.500000px;}
.x3_c00281{left:96.150000px;}
.x5_c00281{left:143.550000px;}
.xf_c00281{left:234.639267px;}
.xc_c00281{left:308.850000px;}
.xb_c00281{left:310.950000px;}
.xd_c00281{left:313.500000px;}
.xe_c00281{left:486.750000px;}
@media print{
.v0_c00281{vertical-align:0.000000pt;}
.ls9_c00281{letter-spacing:0.000000pt;}
.ls3_c00281{letter-spacing:1.600000pt;}
.ls6_c00281{letter-spacing:2.666667pt;}
.ls1_c00281{letter-spacing:4.800000pt;}
.lsa_c00281{letter-spacing:5.333333pt;}
.ls0_c00281{letter-spacing:5.386667pt;}
.ls2_c00281{letter-spacing:7.893333pt;}
.ls7_c00281{letter-spacing:9.013333pt;}
.ls8_c00281{letter-spacing:9.546667pt;}
.ls4_c00281{letter-spacing:35.733333pt;}
.ls5_c00281{letter-spacing:88.480000pt;}
.ws3_c00281{word-spacing:-37.994667pt;}
.ws6_c00281{word-spacing:-16.064000pt;}
.ws1_c00281{word-spacing:-16.053333pt;}
.ws5_c00281{word-spacing:-15.413333pt;}
.ws0_c00281{word-spacing:-12.586667pt;}
.ws2_c00281{word-spacing:-0.586667pt;}
.ws4_c00281{word-spacing:-0.533333pt;}
.ws7_c00281{word-spacing:0.000000pt;}
._25_c00281{margin-left:-22.506667pt;}
._8_c00281{margin-left:-17.706667pt;}
._6_c00281{margin-left:-12.320000pt;}
._7_c00281{margin-left:-10.773333pt;}
._16_c00281{margin-left:-9.706667pt;}
._29_c00281{margin-left:-8.053333pt;}
._15_c00281{margin-left:-6.613333pt;}
._a_c00281{margin-left:-4.853333pt;}
._39_c00281{margin-left:-3.946667pt;}
._b_c00281{margin-left:-3.040000pt;}
._9_c00281{margin-left:-1.440000pt;}
._d_c00281{width:1.760000pt;}
._3_c00281{width:2.826667pt;}
._2_c00281{width:3.733333pt;}
._1_c00281{width:5.386667pt;}
._21_c00281{width:6.293333pt;}
._4_c00281{width:7.621333pt;}
._0_c00281{width:9.226667pt;}
._37_c00281{width:10.186667pt;}
._5_c00281{width:11.306667pt;}
._3a_c00281{width:12.266667pt;}
._10_c00281{width:13.280000pt;}
._34_c00281{width:14.400000pt;}
._2a_c00281{width:15.306667pt;}
._f_c00281{width:16.693333pt;}
._14_c00281{width:17.653333pt;}
._c_c00281{width:18.666667pt;}
._27_c00281{width:19.733333pt;}
._1d_c00281{width:20.853333pt;}
._11_c00281{width:21.866667pt;}
._20_c00281{width:22.773333pt;}
._19_c00281{width:24.538667pt;}
._2b_c00281{width:25.600000pt;}
._33_c00281{width:27.520000pt;}
._12_c00281{width:28.800000pt;}
._2e_c00281{width:30.613333pt;}
._13_c00281{width:31.893333pt;}
._3b_c00281{width:35.946667pt;}
._23_c00281{width:52.378667pt;}
._22_c00281{width:57.653333pt;}
._2c_c00281{width:58.773333pt;}
._2d_c00281{width:62.506667pt;}
._26_c00281{width:65.434667pt;}
._28_c00281{width:66.720000pt;}
._32_c00281{width:70.826667pt;}
._18_c00281{width:76.266667pt;}
._17_c00281{width:77.546667pt;}
._1e_c00281{width:83.194667pt;}
._1f_c00281{width:84.586667pt;}
._1a_c00281{width:85.765333pt;}
._1b_c00281{width:88.485333pt;}
._1c_c00281{width:89.920000pt;}
._38_c00281{width:92.693333pt;}
._31_c00281{width:94.240000pt;}
._30_c00281{width:95.253333pt;}
._2f_c00281{width:97.386667pt;}
._35_c00281{width:103.264000pt;}
._24_c00281{width:313.173333pt;}
._36_c00281{width:316.165333pt;}
._e_c00281{width:322.565333pt;}
.fs3_c00281{font-size:42.666667pt;}
.fs1_c00281{font-size:48.000000pt;}
.fs0_c00281{font-size:53.333333pt;}
.fs2_c00281{font-size:58.666667pt;}
.fs4_c00281{font-size:64.000000pt;}
.y0_c00281{bottom:0.000000pt;}
.y3e_c00281{bottom:2.760000pt;}
.y3d_c00281{bottom:6.425212pt;}
.y3c_c00281{bottom:33.333333pt;}
.y33_c00281{bottom:44.666667pt;}
.y3b_c00281{bottom:48.800000pt;}
.y32_c00281{bottom:61.733333pt;}
.y3a_c00281{bottom:64.533333pt;}
.y31_c00281{bottom:77.600000pt;}
.y39_c00281{bottom:80.933333pt;}
.y30_c00281{bottom:94.800000pt;}
.y38_c00281{bottom:97.200000pt;}
.y2f_c00281{bottom:110.133333pt;}
.y37_c00281{bottom:113.066667pt;}
.y2e_c00281{bottom:126.266667pt;}
.y36_c00281{bottom:129.200000pt;}
.y2d_c00281{bottom:142.533333pt;}
.y35_c00281{bottom:145.466667pt;}
.y2c_c00281{bottom:158.400000pt;}
.y34_c00281{bottom:161.733333pt;}
.y2b_c00281{bottom:175.733333pt;}
.y2a_c00281{bottom:192.533333pt;}
.y29_c00281{bottom:208.400000pt;}
.y28_c00281{bottom:224.133333pt;}
.y27_c00281{bottom:240.933333pt;}
.y26_c00281{bottom:256.533333pt;}
.y9_c00281{bottom:269.333333pt;}
.y25_c00281{bottom:273.200000pt;}
.y8_c00281{bottom:285.866667pt;}
.y24_c00281{bottom:288.933333pt;}
.y23_c00281{bottom:305.333333pt;}
.y22_c00281{bottom:321.333333pt;}
.y21_c00281{bottom:337.733333pt;}
.y20_c00281{bottom:354.000000pt;}
.y1f_c00281{bottom:370.400000pt;}
.y7_c00281{bottom:382.533333pt;}
.y1e_c00281{bottom:386.666667pt;}
.y6_c00281{bottom:398.800000pt;}
.y1d_c00281{bottom:402.933333pt;}
.y1c_c00281{bottom:418.533333pt;}
.y1b_c00281{bottom:434.666667pt;}
.y1a_c00281{bottom:451.600000pt;}
.y5_c00281{bottom:464.133333pt;}
.y19_c00281{bottom:467.200000pt;}
.y4_c00281{bottom:480.533333pt;}
.y18_c00281{bottom:483.866667pt;}
.y17_c00281{bottom:499.866667pt;}
.y16_c00281{bottom:515.733333pt;}
.y15_c00281{bottom:532.266667pt;}
.y14_c00281{bottom:548.666667pt;}
.y13_c00281{bottom:564.533333pt;}
.y12_c00281{bottom:580.533333pt;}
.y11_c00281{bottom:597.333333pt;}
.y10_c00281{bottom:613.200000pt;}
.yf_c00281{bottom:629.733333pt;}
.ye_c00281{bottom:646.533333pt;}
.y3_c00281{bottom:655.200000pt;}
.yd_c00281{bottom:662.400000pt;}
.y2_c00281{bottom:672.666667pt;}
.yc_c00281{bottom:679.466667pt;}
.y1_c00281{bottom:690.933333pt;}
.yb_c00281{bottom:693.866667pt;}
.ya_c00281{bottom:712.800000pt;}
.h6_c00281{height:11.733399pt;}
.h7_c00281{height:38.937500pt;}
.h2_c00281{height:50.304000pt;}
.h1_c00281{height:55.893333pt;}
.h3_c00281{height:56.906667pt;}
.h4_c00281{height:62.597333pt;}
.h5_c00281{height:67.072000pt;}
.h0_c00281{height:750.000000pt;}
.w2_c00281{width:93.222667pt;}
.w1_c00281{width:502.666667pt;}
.w0_c00281{width:502.800000pt;}
.x0_c00281{left:0.000000pt;}
.x1_c00281{left:26.800000pt;}
.x2_c00281{left:28.400000pt;}
.x7_c00281{left:77.733333pt;}
.x9_c00281{left:78.666667pt;}
.xa_c00281{left:79.600000pt;}
.x6_c00281{left:80.666667pt;}
.x8_c00281{left:83.066667pt;}
.x4_c00281{left:84.000000pt;}
.x3_c00281{left:85.466667pt;}
.x5_c00281{left:127.600000pt;}
.xf_c00281{left:208.568237pt;}
.xc_c00281{left:274.533333pt;}
.xb_c00281{left:276.400000pt;}
.xd_c00281{left:278.666667pt;}
.xe_c00281{left:432.666667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_2b420980859762f3ab20276a.woff2')format("woff");}.ff1_c00282{font-family:ff1_c00282;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00282;src:url('chunks/assets/font_f2d66cbe80861cc2518c1cb5.woff2')format("woff");}.ff2_c00282{font-family:ff2_c00282;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00282;src:url('chunks/assets/font_8ad176d01bc80070b30904f9.woff2')format("woff");}.ff3_c00282{font-family:ff3_c00282;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00282;src:url('chunks/assets/font_b482c581c4e1b96123c5b944.woff2')format("woff");}.ff4_c00282{font-family:ff4_c00282;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00282;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff5_c00282{font-family:ff5_c00282;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00282{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00282{vertical-align:0.000000px;}
.ls5_c00282{letter-spacing:0.000000px;}
.ls1_c00282{letter-spacing:2.220000px;}
.ls0_c00282{letter-spacing:3.000000px;}
.ls4_c00282{letter-spacing:17.340000px;}
.ls3_c00282{letter-spacing:30.540000px;}
.ls2_c00282{letter-spacing:97.740000px;}
.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;}
}
.ws6_c00282{word-spacing:-20.340000px;}
.ws5_c00282{word-spacing:-18.060000px;}
.ws2_c00282{word-spacing:-17.340000px;}
.ws1_c00282{word-spacing:-16.560000px;}
.ws0_c00282{word-spacing:-14.160000px;}
.ws3_c00282{word-spacing:-0.960000px;}
.ws7_c00282{word-spacing:0.000000px;}
.ws4_c00282{word-spacing:0.900000px;}
._8_c00282{margin-left:-15.060000px;}
._f_c00282{margin-left:-13.500000px;}
._11_c00282{margin-left:-12.360000px;}
._10_c00282{margin-left:-10.020000px;}
._1e_c00282{margin-left:-8.700000px;}
._13_c00282{margin-left:-7.440000px;}
._4_c00282{margin-left:-6.360000px;}
._14_c00282{margin-left:-5.220000px;}
._3_c00282{margin-left:-4.140000px;}
._5_c00282{margin-left:-2.280000px;}
._b_c00282{margin-left:-1.200000px;}
._6_c00282{width:1.440000px;}
._a_c00282{width:2.460000px;}
._d_c00282{width:3.540000px;}
._7_c00282{width:4.800000px;}
._19_c00282{width:6.360000px;}
._1_c00282{width:7.500000px;}
._15_c00282{width:9.180000px;}
._0_c00282{width:10.260000px;}
._1d_c00282{width:11.460000px;}
._2_c00282{width:12.660000px;}
._18_c00282{width:13.860000px;}
._9_c00282{width:14.880000px;}
._1a_c00282{width:16.200000px;}
._24_c00282{width:17.460000px;}
._16_c00282{width:18.540000px;}
._e_c00282{width:20.100000px;}
._12_c00282{width:21.780000px;}
._17_c00282{width:23.700000px;}
._c_c00282{width:25.920000px;}
._1b_c00282{width:26.940000px;}
._22_c00282{width:28.020000px;}
._27_c00282{width:29.700000px;}
._1c_c00282{width:31.260000px;}
._26_c00282{width:34.440000px;}
._25_c00282{width:38.880000px;}
._21_c00282{width:49.260000px;}
._20_c00282{width:115.560000px;}
._1f_c00282{width:247.500000px;}
._23_c00282{width:277.680000px;}
.fc2_c00282{color:transparent;}
.fc1_c00282{color:rgb(128,128,128);}
.fc0_c00282{color:rgb(0,0,0);}
.fs1_c00282{font-size:48.000000px;}
.fs0_c00282{font-size:60.000000px;}
.y0_c00282{bottom:0.000000px;}
.y4f_c00282{bottom:3.105000px;}
.y4e_c00282{bottom:7.228357px;}
.y4d_c00282{bottom:32.130000px;}
.y4c_c00282{bottom:51.930000px;}
.y29_c00282{bottom:57.330000px;}
.y4b_c00282{bottom:70.830000px;}
.y28_c00282{bottom:75.630000px;}
.y4a_c00282{bottom:88.530000px;}
.y27_c00282{bottom:93.930000px;}
.y49_c00282{bottom:107.280000px;}
.y26_c00282{bottom:111.780000px;}
.y48_c00282{bottom:124.530000px;}
.y25_c00282{bottom:130.230000px;}
.y47_c00282{bottom:143.430000px;}
.y24_c00282{bottom:146.880000px;}
.y46_c00282{bottom:160.380000px;}
.y23_c00282{bottom:166.680000px;}
.y45_c00282{bottom:179.880000px;}
.y22_c00282{bottom:184.230000px;}
.y44_c00282{bottom:198.780000px;}
.y21_c00282{bottom:202.830000px;}
.y43_c00282{bottom:216.030000px;}
.y20_c00282{bottom:220.830000px;}
.y42_c00282{bottom:234.930000px;}
.y1f_c00282{bottom:239.280000px;}
.y41_c00282{bottom:253.830000px;}
.y1e_c00282{bottom:257.880000px;}
.y40_c00282{bottom:272.730000px;}
.y1d_c00282{bottom:274.380000px;}
.y3f_c00282{bottom:290.580000px;}
.y1c_c00282{bottom:292.980000px;}
.y3e_c00282{bottom:308.130000px;}
.y1b_c00282{bottom:311.280000px;}
.y3d_c00282{bottom:327.030000px;}
.y1a_c00282{bottom:330.030000px;}
.y3c_c00282{bottom:344.580000px;}
.y19_c00282{bottom:347.730000px;}
.y3b_c00282{bottom:362.880000px;}
.y18_c00282{bottom:365.580000px;}
.y3a_c00282{bottom:381.780000px;}
.y17_c00282{bottom:384.480000px;}
.y39_c00282{bottom:399.330000px;}
.y16_c00282{bottom:402.630000px;}
.y38_c00282{bottom:417.180000px;}
.y15_c00282{bottom:420.480000px;}
.y37_c00282{bottom:436.680000px;}
.y14_c00282{bottom:438.480000px;}
.y36_c00282{bottom:453.330000px;}
.y13_c00282{bottom:456.330000px;}
.y35_c00282{bottom:472.230000px;}
.y12_c00282{bottom:474.480000px;}
.y34_c00282{bottom:490.080000px;}
.y11_c00282{bottom:491.580000px;}
.y33_c00282{bottom:508.230000px;}
.y10_c00282{bottom:509.730000px;}
.y32_c00282{bottom:524.430000px;}
.yf_c00282{bottom:527.880000px;}
.y31_c00282{bottom:544.830000px;}
.ye_c00282{bottom:546.030000px;}
.y30_c00282{bottom:561.630000px;}
.yd_c00282{bottom:564.030000px;}
.y2f_c00282{bottom:580.530000px;}
.yc_c00282{bottom:582.630000px;}
.y2e_c00282{bottom:598.080000px;}
.yb_c00282{bottom:600.180000px;}
.y2d_c00282{bottom:616.680000px;}
.ya_c00282{bottom:618.630000px;}
.y9_c00282{bottom:636.480000px;}
.y2c_c00282{bottom:653.730000px;}
.y8_c00282{bottom:654.030000px;}
.y7_c00282{bottom:672.030000px;}
.y6_c00282{bottom:690.630000px;}
.y2b_c00282{bottom:708.180000px;}
.y5_c00282{bottom:708.780000px;}
.y4_c00282{bottom:726.630000px;}
.y2a_c00282{bottom:743.580000px;}
.y3_c00282{bottom:744.930000px;}
.y2_c00282{bottom:763.380000px;}
.y1_c00282{bottom:780.930000px;}
.h5_c00282{height:13.200074px;}
.h6_c00282{height:43.804688px;}
.h2_c00282{height:62.880000px;}
.h3_c00282{height:63.480000px;}
.h4_c00282{height:64.020000px;}
.h0_c00282{height:841.350000px;}
.h1_c00282{height:841.500000px;}
.w1_c00282{width:104.875500px;}
.w0_c00282{width:590.250000px;}
.x0_c00282{left:0.000000px;}
.x3_c00282{left:70.800000px;}
.x2_c00282{left:78.600000px;}
.x1_c00282{left:80.250000px;}
.x4_c00282{left:81.300000px;}
.x5_c00282{left:82.350000px;}
.x13_c00282{left:246.939240px;}
.x6_c00282{left:295.050000px;}
.x10_c00282{left:297.300000px;}
.xd_c00282{left:299.400000px;}
.xc_c00282{left:301.350000px;}
.xf_c00282{left:302.400000px;}
.x9_c00282{left:315.900000px;}
.xe_c00282{left:322.950000px;}
.x11_c00282{left:327.750000px;}
.x8_c00282{left:330.150000px;}
.xa_c00282{left:334.500000px;}
.x7_c00282{left:357.450000px;}
.xb_c00282{left:373.050000px;}
.x12_c00282{left:453.000000px;}
@media print{
.v0_c00282{vertical-align:0.000000pt;}
.ls5_c00282{letter-spacing:0.000000pt;}
.ls1_c00282{letter-spacing:1.973333pt;}
.ls0_c00282{letter-spacing:2.666667pt;}
.ls4_c00282{letter-spacing:15.413333pt;}
.ls3_c00282{letter-spacing:27.146667pt;}
.ls2_c00282{letter-spacing:86.880000pt;}
.ws6_c00282{word-spacing:-18.080000pt;}
.ws5_c00282{word-spacing:-16.053333pt;}
.ws2_c00282{word-spacing:-15.413333pt;}
.ws1_c00282{word-spacing:-14.720000pt;}
.ws0_c00282{word-spacing:-12.586667pt;}
.ws3_c00282{word-spacing:-0.853333pt;}
.ws7_c00282{word-spacing:0.000000pt;}
.ws4_c00282{word-spacing:0.800000pt;}
._8_c00282{margin-left:-13.386667pt;}
._f_c00282{margin-left:-12.000000pt;}
._11_c00282{margin-left:-10.986667pt;}
._10_c00282{margin-left:-8.906667pt;}
._1e_c00282{margin-left:-7.733333pt;}
._13_c00282{margin-left:-6.613333pt;}
._4_c00282{margin-left:-5.653333pt;}
._14_c00282{margin-left:-4.640000pt;}
._3_c00282{margin-left:-3.680000pt;}
._5_c00282{margin-left:-2.026667pt;}
._b_c00282{margin-left:-1.066667pt;}
._6_c00282{width:1.280000pt;}
._a_c00282{width:2.186667pt;}
._d_c00282{width:3.146667pt;}
._7_c00282{width:4.266667pt;}
._19_c00282{width:5.653333pt;}
._1_c00282{width:6.666667pt;}
._15_c00282{width:8.160000pt;}
._0_c00282{width:9.120000pt;}
._1d_c00282{width:10.186667pt;}
._2_c00282{width:11.253333pt;}
._18_c00282{width:12.320000pt;}
._9_c00282{width:13.226667pt;}
._1a_c00282{width:14.400000pt;}
._24_c00282{width:15.520000pt;}
._16_c00282{width:16.480000pt;}
._e_c00282{width:17.866667pt;}
._12_c00282{width:19.360000pt;}
._17_c00282{width:21.066667pt;}
._c_c00282{width:23.040000pt;}
._1b_c00282{width:23.946667pt;}
._22_c00282{width:24.906667pt;}
._27_c00282{width:26.400000pt;}
._1c_c00282{width:27.786667pt;}
._26_c00282{width:30.613333pt;}
._25_c00282{width:34.560000pt;}
._21_c00282{width:43.786667pt;}
._20_c00282{width:102.720000pt;}
._1f_c00282{width:220.000000pt;}
._23_c00282{width:246.826667pt;}
.fs1_c00282{font-size:42.666667pt;}
.fs0_c00282{font-size:53.333333pt;}
.y0_c00282{bottom:0.000000pt;}
.y4f_c00282{bottom:2.760000pt;}
.y4e_c00282{bottom:6.425206pt;}
.y4d_c00282{bottom:28.560000pt;}
.y4c_c00282{bottom:46.160000pt;}
.y29_c00282{bottom:50.960000pt;}
.y4b_c00282{bottom:62.960000pt;}
.y28_c00282{bottom:67.226667pt;}
.y4a_c00282{bottom:78.693333pt;}
.y27_c00282{bottom:83.493333pt;}
.y49_c00282{bottom:95.360000pt;}
.y26_c00282{bottom:99.360000pt;}
.y48_c00282{bottom:110.693333pt;}
.y25_c00282{bottom:115.760000pt;}
.y47_c00282{bottom:127.493333pt;}
.y24_c00282{bottom:130.560000pt;}
.y46_c00282{bottom:142.560000pt;}
.y23_c00282{bottom:148.160000pt;}
.y45_c00282{bottom:159.893333pt;}
.y22_c00282{bottom:163.760000pt;}
.y44_c00282{bottom:176.693333pt;}
.y21_c00282{bottom:180.293333pt;}
.y43_c00282{bottom:192.026667pt;}
.y20_c00282{bottom:196.293333pt;}
.y42_c00282{bottom:208.826667pt;}
.y1f_c00282{bottom:212.693333pt;}
.y41_c00282{bottom:225.626667pt;}
.y1e_c00282{bottom:229.226667pt;}
.y40_c00282{bottom:242.426667pt;}
.y1d_c00282{bottom:243.893333pt;}
.y3f_c00282{bottom:258.293333pt;}
.y1c_c00282{bottom:260.426667pt;}
.y3e_c00282{bottom:273.893333pt;}
.y1b_c00282{bottom:276.693333pt;}
.y3d_c00282{bottom:290.693333pt;}
.y1a_c00282{bottom:293.360000pt;}
.y3c_c00282{bottom:306.293333pt;}
.y19_c00282{bottom:309.093333pt;}
.y3b_c00282{bottom:322.560000pt;}
.y18_c00282{bottom:324.960000pt;}
.y3a_c00282{bottom:339.360000pt;}
.y17_c00282{bottom:341.760000pt;}
.y39_c00282{bottom:354.960000pt;}
.y16_c00282{bottom:357.893333pt;}
.y38_c00282{bottom:370.826667pt;}
.y15_c00282{bottom:373.760000pt;}
.y37_c00282{bottom:388.160000pt;}
.y14_c00282{bottom:389.760000pt;}
.y36_c00282{bottom:402.960000pt;}
.y13_c00282{bottom:405.626667pt;}
.y35_c00282{bottom:419.760000pt;}
.y12_c00282{bottom:421.760000pt;}
.y34_c00282{bottom:435.626667pt;}
.y11_c00282{bottom:436.960000pt;}
.y33_c00282{bottom:451.760000pt;}
.y10_c00282{bottom:453.093333pt;}
.y32_c00282{bottom:466.160000pt;}
.yf_c00282{bottom:469.226667pt;}
.y31_c00282{bottom:484.293333pt;}
.ye_c00282{bottom:485.360000pt;}
.y30_c00282{bottom:499.226667pt;}
.yd_c00282{bottom:501.360000pt;}
.y2f_c00282{bottom:516.026667pt;}
.yc_c00282{bottom:517.893333pt;}
.y2e_c00282{bottom:531.626667pt;}
.yb_c00282{bottom:533.493333pt;}
.y2d_c00282{bottom:548.160000pt;}
.ya_c00282{bottom:549.893333pt;}
.y9_c00282{bottom:565.760000pt;}
.y2c_c00282{bottom:581.093333pt;}
.y8_c00282{bottom:581.360000pt;}
.y7_c00282{bottom:597.360000pt;}
.y6_c00282{bottom:613.893333pt;}
.y2b_c00282{bottom:629.493333pt;}
.y5_c00282{bottom:630.026667pt;}
.y4_c00282{bottom:645.893333pt;}
.y2a_c00282{bottom:660.960000pt;}
.y3_c00282{bottom:662.160000pt;}
.y2_c00282{bottom:678.560000pt;}
.y1_c00282{bottom:694.160000pt;}
.h5_c00282{height:11.733399pt;}
.h6_c00282{height:38.937500pt;}
.h2_c00282{height:55.893333pt;}
.h3_c00282{height:56.426667pt;}
.h4_c00282{height:56.906667pt;}
.h0_c00282{height:747.866667pt;}
.h1_c00282{height:748.000000pt;}
.w1_c00282{width:93.222667pt;}
.w0_c00282{width:524.666667pt;}
.x0_c00282{left:0.000000pt;}
.x3_c00282{left:62.933333pt;}
.x2_c00282{left:69.866667pt;}
.x1_c00282{left:71.333333pt;}
.x4_c00282{left:72.266667pt;}
.x5_c00282{left:73.200000pt;}
.x13_c00282{left:219.501546pt;}
.x6_c00282{left:262.266667pt;}
.x10_c00282{left:264.266667pt;}
.xd_c00282{left:266.133333pt;}
.xc_c00282{left:267.866667pt;}
.xf_c00282{left:268.800000pt;}
.x9_c00282{left:280.800000pt;}
.xe_c00282{left:287.066667pt;}
.x11_c00282{left:291.333333pt;}
.x8_c00282{left:293.466667pt;}
.xa_c00282{left:297.333333pt;}
.x7_c00282{left:317.733333pt;}
.xb_c00282{left:331.600000pt;}
.x12_c00282{left:402.666667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_dfd69662a4d9952b7d2b5e6b.woff2')format("woff");}.ff1_c00283{font-family:ff1_c00283;line-height:1.437000;font-style:normal;font-weight:normal;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_855066f4a067e0c2b5a95829.woff2')format("woff");}.ff2_c00283{font-family:ff2_c00283;line-height:1.437000;font-style:normal;font-weight:normal;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_6f019f6800e41f007bfa7336.woff2')format("woff");}.ff3_c00283{font-family:ff3_c00283;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00283;src:url('chunks/assets/font_6c74ccd34389a7227b551f55.woff2')format("woff");}.ff4_c00283{font-family:ff4_c00283;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00283;src:url('chunks/assets/font_cecc2a6f74cc618e37f46a7c.woff2')format("woff");}.ff5_c00283{font-family:ff5_c00283;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00283;src:url('chunks/assets/font_cd2418cd165f1aa90467d579.woff2')format("woff");}.ff6_c00283{font-family:ff6_c00283;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00283;src:url('chunks/assets/font_f3790c11fa1b72b5ebd5d0f3.woff2')format("woff");}.ff7_c00283{font-family:ff7_c00283;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00283;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff8_c00283{font-family:ff8_c00283;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00283{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00283{vertical-align:0.000000px;}
.ls12_c00283{letter-spacing:-6.000000px;}
.ls11_c00283{letter-spacing:0.000000px;}
.lsf_c00283{letter-spacing:0.405000px;}
.lsc_c00283{letter-spacing:1.080000px;}
.lse_c00283{letter-spacing:1.605000px;}
.ls0_c00283{letter-spacing:3.000000px;}
.ls9_c00283{letter-spacing:3.300000px;}
.lsb_c00283{letter-spacing:3.600000px;}
.lsa_c00283{letter-spacing:4.020000px;}
.ls5_c00283{letter-spacing:4.800000px;}
.ls6_c00283{letter-spacing:5.088000px;}
.ls3_c00283{letter-spacing:6.000000px;}
.lsd_c00283{letter-spacing:7.680000px;}
.ls10_c00283{letter-spacing:7.800000px;}
.ls2_c00283{letter-spacing:9.000000px;}
.ls7_c00283{letter-spacing:13.680000px;}
.ls1_c00283{letter-spacing:20.400000px;}
.ls8_c00283{letter-spacing:39.000000px;}
.ls13_c00283{letter-spacing:81.000000px;}
.ls4_c00283{letter-spacing:220.440000px;}
.sc__c00283{text-shadow:none;}
.sc0_c00283{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00283{-webkit-text-stroke:0px transparent;}
.sc0_c00283{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8_c00283{word-spacing:-95.160000px;}
.ws7_c00283{word-spacing:-53.160000px;}
.wsb_c00283{word-spacing:-35.295000px;}
.wsa_c00283{word-spacing:-20.340000px;}
.ws0_c00283{word-spacing:-18.060000px;}
.ws9_c00283{word-spacing:-17.460000px;}
.ws3_c00283{word-spacing:-17.340000px;}
.ws4_c00283{word-spacing:-16.755000px;}
.ws2_c00283{word-spacing:-14.160000px;}
.ws5_c00283{word-spacing:-11.328000px;}
.ws1_c00283{word-spacing:-8.160000px;}
.wsc_c00283{word-spacing:0.000000px;}
.ws6_c00283{word-spacing:10.320000px;}
._2b_c00283{margin-left:-25.365000px;}
._2e_c00283{margin-left:-21.825000px;}
._1c_c00283{margin-left:-18.180000px;}
._24_c00283{margin-left:-15.540000px;}
._1a_c00283{margin-left:-14.400000px;}
._1b_c00283{margin-left:-12.465000px;}
._20_c00283{margin-left:-11.235000px;}
._9_c00283{margin-left:-10.140000px;}
._18_c00283{margin-left:-8.970000px;}
._16_c00283{margin-left:-7.530000px;}
._4_c00283{margin-left:-6.240000px;}
._8_c00283{margin-left:-4.800000px;}
._c_c00283{margin-left:-3.660000px;}
._b_c00283{margin-left:-2.640000px;}
._1_c00283{margin-left:-1.140000px;}
._2_c00283{width:1.080000px;}
._f_c00283{width:2.160000px;}
._0_c00283{width:3.180000px;}
._11_c00283{width:4.320000px;}
._3_c00283{width:5.400000px;}
._14_c00283{width:6.780000px;}
._d_c00283{width:8.100000px;}
._21_c00283{width:9.495000px;}
._10_c00283{width:10.920000px;}
._7_c00283{width:12.060000px;}
._28_c00283{width:13.275000px;}
._22_c00283{width:14.910000px;}
._25_c00283{width:16.140000px;}
._19_c00283{width:18.060000px;}
._6_c00283{width:20.280000px;}
._17_c00283{width:21.525000px;}
._30_c00283{width:22.575000px;}
._12_c00283{width:23.700000px;}
._13_c00283{width:25.560000px;}
._26_c00283{width:27.045000px;}
._31_c00283{width:28.515000px;}
._33_c00283{width:30.480000px;}
._5_c00283{width:31.560000px;}
._1e_c00283{width:34.650000px;}
._1d_c00283{width:36.360000px;}
._1f_c00283{width:38.100000px;}
._2a_c00283{width:39.960000px;}
._2c_c00283{width:48.825000px;}
._23_c00283{width:53.280000px;}
._29_c00283{width:60.375000px;}
._e_c00283{width:70.500000px;}
._a_c00283{width:76.800000px;}
._32_c00283{width:81.240000px;}
._2f_c00283{width:121.500000px;}
._27_c00283{width:186.630000px;}
._2d_c00283{width:293.670000px;}
._15_c00283{width:354.960000px;}
.fc2_c00283{color:transparent;}
.fc1_c00283{color:rgb(128,128,128);}
.fc0_c00283{color:rgb(0,0,0);}
.fs1_c00283{font-size:45.000000px;}
.fs2_c00283{font-size:48.000000px;}
.fs0_c00283{font-size:60.000000px;}
.fs3_c00283{font-size:63.000000px;}
.y0_c00283{bottom:0.000000px;}
.y56_c00283{bottom:3.105000px;}
.y55_c00283{bottom:7.228355px;}
.y54_c00283{bottom:30.285000px;}
.y2e_c00283{bottom:47.235000px;}
.y53_c00283{bottom:47.835000px;}
.y52_c00283{bottom:65.685000px;}
.y2d_c00283{bottom:65.835000px;}
.y2c_c00283{bottom:83.385000px;}
.y51_c00283{bottom:83.985000px;}
.y50_c00283{bottom:101.835000px;}
.y2b_c00283{bottom:103.635000px;}
.y4f_c00283{bottom:119.835000px;}
.y2a_c00283{bottom:121.785000px;}
.y4e_c00283{bottom:138.285000px;}
.y29_c00283{bottom:139.335000px;}
.y30_c00283{bottom:155.235000px;}
.y4d_c00283{bottom:156.885000px;}
.y28_c00283{bottom:157.935000px;}
.y2f_c00283{bottom:173.835000px;}
.y4c_c00283{bottom:174.735000px;}
.y27_c00283{bottom:175.185000px;}
.y4b_c00283{bottom:192.285000px;}
.y26_c00283{bottom:193.635000px;}
.y25_c00283{bottom:210.285000px;}
.y4a_c00283{bottom:211.185000px;}
.y24_c00283{bottom:229.185000px;}
.y49_c00283{bottom:247.935000px;}
.y23_c00283{bottom:248.085000px;}
.y48_c00283{bottom:265.635000px;}
.y22_c00283{bottom:266.235000px;}
.y47_c00283{bottom:284.085000px;}
.y21_c00283{bottom:285.135000px;}
.y46_c00283{bottom:301.635000px;}
.y20_c00283{bottom:302.685000px;}
.y1f_c00283{bottom:319.935000px;}
.y45_c00283{bottom:320.235000px;}
.y44_c00283{bottom:338.385000px;}
.y1e_c00283{bottom:339.135000px;}
.y1d_c00283{bottom:356.385000px;}
.y43_c00283{bottom:374.985000px;}
.y1c_c00283{bottom:375.585000px;}
.y42_c00283{bottom:393.135000px;}
.y1b_c00283{bottom:393.435000px;}
.y41_c00283{bottom:411.285000px;}
.y1a_c00283{bottom:412.035000px;}
.y40_c00283{bottom:429.285000px;}
.y19_c00283{bottom:430.185000px;}
.y3f_c00283{bottom:447.735000px;}
.y18_c00283{bottom:448.785000px;}
.y3e_c00283{bottom:466.035000px;}
.y17_c00283{bottom:466.785000px;}
.y3d_c00283{bottom:483.735000px;}
.y16_c00283{bottom:484.635000px;}
.y3c_c00283{bottom:502.185000px;}
.y15_c00283{bottom:502.785000px;}
.y14_c00283{bottom:520.635000px;}
.y6_c00283{bottom:536.835000px;}
.y3b_c00283{bottom:538.635000px;}
.y13_c00283{bottom:539.235000px;}
.y12_c00283{bottom:557.235000px;}
.y5_c00283{bottom:562.635000px;}
.y3a_c00283{bottom:574.785000px;}
.y11_c00283{bottom:575.385000px;}
.y39_c00283{bottom:593.235000px;}
.y10_c00283{bottom:593.985000px;}
.y38_c00283{bottom:611.085000px;}
.yf_c00283{bottom:611.835000px;}
.y37_c00283{bottom:629.985000px;}
.ye_c00283{bottom:630.435000px;}
.y36_c00283{bottom:647.685000px;}
.yd_c00283{bottom:648.885000px;}
.y35_c00283{bottom:666.885000px;}
.yc_c00283{bottom:667.485000px;}
.y34_c00283{bottom:684.735000px;}
.yb_c00283{bottom:685.335000px;}
.y4_c00283{bottom:699.285000px;}
.ya_c00283{bottom:702.585000px;}
.y3_c00283{bottom:716.835000px;}
.y33_c00283{bottom:720.135000px;}
.y9_c00283{bottom:721.185000px;}
.y32_c00283{bottom:738.435000px;}
.y8_c00283{bottom:740.385000px;}
.y31_c00283{bottom:756.285000px;}
.y7_c00283{bottom:757.035000px;}
.y2_c00283{bottom:775.485000px;}
.y1_c00283{bottom:796.035000px;}
.h6_c00283{height:13.200074px;}
.h7_c00283{height:43.804688px;}
.h4_c00283{height:47.160000px;}
.h2_c00283{height:62.880000px;}
.h3_c00283{height:64.020000px;}
.h5_c00283{height:67.221000px;}
.h0_c00283{height:829.425000px;}
.h1_c00283{height:829.500000px;}
.w2_c00283{width:104.875500px;}
.w0_c00283{width:555.675000px;}
.w1_c00283{width:555.750000px;}
.x0_c00283{left:0.000000px;}
.x4_c00283{left:9.750000px;}
.x11_c00283{left:21.900000px;}
.x8_c00283{left:23.400000px;}
.x3_c00283{left:25.950000px;}
.x5_c00283{left:30.150000px;}
.xb_c00283{left:74.250000px;}
.xe_c00283{left:76.950000px;}
.x10_c00283{left:79.950000px;}
.xd_c00283{left:81.000000px;}
.xf_c00283{left:82.050000px;}
.xc_c00283{left:83.100000px;}
.xa_c00283{left:84.450000px;}
.x9_c00283{left:86.850000px;}
.x2_c00283{left:88.350000px;}
.x6_c00283{left:89.850000px;}
.x7_c00283{left:111.750000px;}
.x1_c00283{left:210.300000px;}
.x1d_c00283{left:229.651749px;}
.x1b_c00283{left:297.300000px;}
.x1a_c00283{left:298.350000px;}
.x19_c00283{left:299.400000px;}
.x18_c00283{left:300.750000px;}
.x17_c00283{left:302.700000px;}
.x16_c00283{left:304.350000px;}
.x15_c00283{left:305.400000px;}
.x13_c00283{left:307.050000px;}
.x12_c00283{left:357.000000px;}
.x14_c00283{left:372.150000px;}
.x1c_c00283{left:473.400000px;}
@media print{
.v0_c00283{vertical-align:0.000000pt;}
.ls12_c00283{letter-spacing:-5.333333pt;}
.ls11_c00283{letter-spacing:0.000000pt;}
.lsf_c00283{letter-spacing:0.360000pt;}
.lsc_c00283{letter-spacing:0.960000pt;}
.lse_c00283{letter-spacing:1.426667pt;}
.ls0_c00283{letter-spacing:2.666667pt;}
.ls9_c00283{letter-spacing:2.933333pt;}
.lsb_c00283{letter-spacing:3.200000pt;}
.lsa_c00283{letter-spacing:3.573333pt;}
.ls5_c00283{letter-spacing:4.266667pt;}
.ls6_c00283{letter-spacing:4.522667pt;}
.ls3_c00283{letter-spacing:5.333333pt;}
.lsd_c00283{letter-spacing:6.826667pt;}
.ls10_c00283{letter-spacing:6.933333pt;}
.ls2_c00283{letter-spacing:8.000000pt;}
.ls7_c00283{letter-spacing:12.160000pt;}
.ls1_c00283{letter-spacing:18.133333pt;}
.ls8_c00283{letter-spacing:34.666667pt;}
.ls13_c00283{letter-spacing:72.000000pt;}
.ls4_c00283{letter-spacing:195.946667pt;}
.ws8_c00283{word-spacing:-84.586667pt;}
.ws7_c00283{word-spacing:-47.253333pt;}
.wsb_c00283{word-spacing:-31.373333pt;}
.wsa_c00283{word-spacing:-18.080000pt;}
.ws0_c00283{word-spacing:-16.053333pt;}
.ws9_c00283{word-spacing:-15.520000pt;}
.ws3_c00283{word-spacing:-15.413333pt;}
.ws4_c00283{word-spacing:-14.893333pt;}
.ws2_c00283{word-spacing:-12.586667pt;}
.ws5_c00283{word-spacing:-10.069333pt;}
.ws1_c00283{word-spacing:-7.253333pt;}
.wsc_c00283{word-spacing:0.000000pt;}
.ws6_c00283{word-spacing:9.173333pt;}
._2b_c00283{margin-left:-22.546667pt;}
._2e_c00283{margin-left:-19.400000pt;}
._1c_c00283{margin-left:-16.160000pt;}
._24_c00283{margin-left:-13.813333pt;}
._1a_c00283{margin-left:-12.800000pt;}
._1b_c00283{margin-left:-11.080000pt;}
._20_c00283{margin-left:-9.986667pt;}
._9_c00283{margin-left:-9.013333pt;}
._18_c00283{margin-left:-7.973333pt;}
._16_c00283{margin-left:-6.693333pt;}
._4_c00283{margin-left:-5.546667pt;}
._8_c00283{margin-left:-4.266667pt;}
._c_c00283{margin-left:-3.253333pt;}
._b_c00283{margin-left:-2.346667pt;}
._1_c00283{margin-left:-1.013333pt;}
._2_c00283{width:0.960000pt;}
._f_c00283{width:1.920000pt;}
._0_c00283{width:2.826667pt;}
._11_c00283{width:3.840000pt;}
._3_c00283{width:4.800000pt;}
._14_c00283{width:6.026667pt;}
._d_c00283{width:7.200000pt;}
._21_c00283{width:8.440000pt;}
._10_c00283{width:9.706667pt;}
._7_c00283{width:10.720000pt;}
._28_c00283{width:11.800000pt;}
._22_c00283{width:13.253333pt;}
._25_c00283{width:14.346667pt;}
._19_c00283{width:16.053333pt;}
._6_c00283{width:18.026667pt;}
._17_c00283{width:19.133333pt;}
._30_c00283{width:20.066667pt;}
._12_c00283{width:21.066667pt;}
._13_c00283{width:22.720000pt;}
._26_c00283{width:24.040000pt;}
._31_c00283{width:25.346667pt;}
._33_c00283{width:27.093333pt;}
._5_c00283{width:28.053333pt;}
._1e_c00283{width:30.800000pt;}
._1d_c00283{width:32.320000pt;}
._1f_c00283{width:33.866667pt;}
._2a_c00283{width:35.520000pt;}
._2c_c00283{width:43.400000pt;}
._23_c00283{width:47.360000pt;}
._29_c00283{width:53.666667pt;}
._e_c00283{width:62.666667pt;}
._a_c00283{width:68.266667pt;}
._32_c00283{width:72.213333pt;}
._2f_c00283{width:108.000000pt;}
._27_c00283{width:165.893333pt;}
._2d_c00283{width:261.040000pt;}
._15_c00283{width:315.520000pt;}
.fs1_c00283{font-size:40.000000pt;}
.fs2_c00283{font-size:42.666667pt;}
.fs0_c00283{font-size:53.333333pt;}
.fs3_c00283{font-size:56.000000pt;}
.y0_c00283{bottom:0.000000pt;}
.y56_c00283{bottom:2.760000pt;}
.y55_c00283{bottom:6.425204pt;}
.y54_c00283{bottom:26.920000pt;}
.y2e_c00283{bottom:41.986667pt;}
.y53_c00283{bottom:42.520000pt;}
.y52_c00283{bottom:58.386667pt;}
.y2d_c00283{bottom:58.520000pt;}
.y2c_c00283{bottom:74.120000pt;}
.y51_c00283{bottom:74.653333pt;}
.y50_c00283{bottom:90.520000pt;}
.y2b_c00283{bottom:92.120000pt;}
.y4f_c00283{bottom:106.520000pt;}
.y2a_c00283{bottom:108.253333pt;}
.y4e_c00283{bottom:122.920000pt;}
.y29_c00283{bottom:123.853333pt;}
.y30_c00283{bottom:137.986667pt;}
.y4d_c00283{bottom:139.453333pt;}
.y28_c00283{bottom:140.386667pt;}
.y2f_c00283{bottom:154.520000pt;}
.y4c_c00283{bottom:155.320000pt;}
.y27_c00283{bottom:155.720000pt;}
.y4b_c00283{bottom:170.920000pt;}
.y26_c00283{bottom:172.120000pt;}
.y25_c00283{bottom:186.920000pt;}
.y4a_c00283{bottom:187.720000pt;}
.y24_c00283{bottom:203.720000pt;}
.y49_c00283{bottom:220.386667pt;}
.y23_c00283{bottom:220.520000pt;}
.y48_c00283{bottom:236.120000pt;}
.y22_c00283{bottom:236.653333pt;}
.y47_c00283{bottom:252.520000pt;}
.y21_c00283{bottom:253.453333pt;}
.y46_c00283{bottom:268.120000pt;}
.y20_c00283{bottom:269.053333pt;}
.y1f_c00283{bottom:284.386667pt;}
.y45_c00283{bottom:284.653333pt;}
.y44_c00283{bottom:300.786667pt;}
.y1e_c00283{bottom:301.453333pt;}
.y1d_c00283{bottom:316.786667pt;}
.y43_c00283{bottom:333.320000pt;}
.y1c_c00283{bottom:333.853333pt;}
.y42_c00283{bottom:349.453333pt;}
.y1b_c00283{bottom:349.720000pt;}
.y41_c00283{bottom:365.586667pt;}
.y1a_c00283{bottom:366.253333pt;}
.y40_c00283{bottom:381.586667pt;}
.y19_c00283{bottom:382.386667pt;}
.y3f_c00283{bottom:397.986667pt;}
.y18_c00283{bottom:398.920000pt;}
.y3e_c00283{bottom:414.253333pt;}
.y17_c00283{bottom:414.920000pt;}
.y3d_c00283{bottom:429.986667pt;}
.y16_c00283{bottom:430.786667pt;}
.y3c_c00283{bottom:446.386667pt;}
.y15_c00283{bottom:446.920000pt;}
.y14_c00283{bottom:462.786667pt;}
.y6_c00283{bottom:477.186667pt;}
.y3b_c00283{bottom:478.786667pt;}
.y13_c00283{bottom:479.320000pt;}
.y12_c00283{bottom:495.320000pt;}
.y5_c00283{bottom:500.120000pt;}
.y3a_c00283{bottom:510.920000pt;}
.y11_c00283{bottom:511.453333pt;}
.y39_c00283{bottom:527.320000pt;}
.y10_c00283{bottom:527.986667pt;}
.y38_c00283{bottom:543.186667pt;}
.yf_c00283{bottom:543.853333pt;}
.y37_c00283{bottom:559.986667pt;}
.ye_c00283{bottom:560.386667pt;}
.y36_c00283{bottom:575.720000pt;}
.yd_c00283{bottom:576.786667pt;}
.y35_c00283{bottom:592.786667pt;}
.yc_c00283{bottom:593.320000pt;}
.y34_c00283{bottom:608.653333pt;}
.yb_c00283{bottom:609.186667pt;}
.y4_c00283{bottom:621.586667pt;}
.ya_c00283{bottom:624.520000pt;}
.y3_c00283{bottom:637.186667pt;}
.y33_c00283{bottom:640.120000pt;}
.y9_c00283{bottom:641.053333pt;}
.y32_c00283{bottom:656.386667pt;}
.y8_c00283{bottom:658.120000pt;}
.y31_c00283{bottom:672.253333pt;}
.y7_c00283{bottom:672.920000pt;}
.y2_c00283{bottom:689.320000pt;}
.y1_c00283{bottom:707.586667pt;}
.h6_c00283{height:11.733399pt;}
.h7_c00283{height:38.937500pt;}
.h4_c00283{height:41.920000pt;}
.h2_c00283{height:55.893333pt;}
.h3_c00283{height:56.906667pt;}
.h5_c00283{height:59.752000pt;}
.h0_c00283{height:737.266667pt;}
.h1_c00283{height:737.333333pt;}
.w2_c00283{width:93.222667pt;}
.w0_c00283{width:493.933333pt;}
.w1_c00283{width:494.000000pt;}
.x0_c00283{left:0.000000pt;}
.x4_c00283{left:8.666667pt;}
.x11_c00283{left:19.466667pt;}
.x8_c00283{left:20.800000pt;}
.x3_c00283{left:23.066667pt;}
.x5_c00283{left:26.800000pt;}
.xb_c00283{left:66.000000pt;}
.xe_c00283{left:68.400000pt;}
.x10_c00283{left:71.066667pt;}
.xd_c00283{left:72.000000pt;}
.xf_c00283{left:72.933333pt;}
.xc_c00283{left:73.866667pt;}
.xa_c00283{left:75.066667pt;}
.x9_c00283{left:77.200000pt;}
.x2_c00283{left:78.533333pt;}
.x6_c00283{left:79.866667pt;}
.x7_c00283{left:99.333333pt;}
.x1_c00283{left:186.933333pt;}
.x1d_c00283{left:204.134888pt;}
.x1b_c00283{left:264.266667pt;}
.x1a_c00283{left:265.200000pt;}
.x19_c00283{left:266.133333pt;}
.x18_c00283{left:267.333333pt;}
.x17_c00283{left:269.066667pt;}
.x16_c00283{left:270.533333pt;}
.x15_c00283{left:271.466667pt;}
.x13_c00283{left:272.933333pt;}
.x12_c00283{left:317.333333pt;}
.x14_c00283{left:330.800000pt;}
.x1c_c00283{left:420.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_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_b08f6f284f1bc367a2226058.woff2')format("woff");}.ff1_c00284{font-family:ff1_c00284;line-height:1.437000;font-style:normal;font-weight:normal;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_28a1c2c93da2f88406847052.woff2')format("woff");}.ff2_c00284{font-family:ff2_c00284;line-height:1.437000;font-style:normal;font-weight:normal;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_c365d0314e8bde4dce7dddaf.woff2')format("woff");}.ff3_c00284{font-family:ff3_c00284;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00284;src:url('chunks/assets/font_bbe406af950c4f329e1c4ab1.woff2')format("woff");}.ff4_c00284{font-family:ff4_c00284;line-height:1.575000;font-style:normal;font-weight:normal;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_9651891fda49e38fd78b3436.woff2')format("woff");}.ff5_c00284{font-family:ff5_c00284;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00284;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff6_c00284{font-family:ff6_c00284;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00284{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00284{vertical-align:0.000000px;}
.ls4_c00284{letter-spacing:0.000000px;}
.ls1_c00284{letter-spacing:0.840000px;}
.ls3_c00284{letter-spacing:3.000000px;}
.ls5_c00284{letter-spacing:6.000000px;}
.ls0_c00284{letter-spacing:13.605000px;}
.ls2_c00284{letter-spacing:125.940000px;}
.sc__c00284{text-shadow:none;}
.sc0_c00284{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00284{-webkit-text-stroke:0px transparent;}
.sc0_c00284{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00284{word-spacing:-35.295000px;}
.ws0_c00284{word-spacing:-14.160000px;}
.ws2_c00284{word-spacing:0.000000px;}
._19_c00284{margin-left:-25.140000px;}
._26_c00284{margin-left:-18.360000px;}
._14_c00284{margin-left:-17.220000px;}
._2c_c00284{margin-left:-12.960000px;}
._37_c00284{margin-left:-11.940000px;}
._f_c00284{margin-left:-10.560000px;}
._b_c00284{margin-left:-9.240000px;}
._a_c00284{margin-left:-7.740000px;}
._15_c00284{margin-left:-6.420000px;}
._e_c00284{margin-left:-4.620000px;}
._1b_c00284{margin-left:-3.420000px;}
._13_c00284{margin-left:-2.400000px;}
._12_c00284{margin-left:-1.260000px;}
._d_c00284{width:1.500000px;}
._11_c00284{width:3.000000px;}
._9_c00284{width:4.500000px;}
._8_c00284{width:6.360000px;}
._6_c00284{width:8.100000px;}
._4_c00284{width:9.900000px;}
._1_c00284{width:11.640000px;}
._16_c00284{width:13.620000px;}
._0_c00284{width:14.640000px;}
._1f_c00284{width:16.740000px;}
._18_c00284{width:18.360000px;}
._23_c00284{width:19.620000px;}
._c_c00284{width:20.640000px;}
._3_c00284{width:21.660000px;}
._39_c00284{width:23.460000px;}
._5_c00284{width:24.600000px;}
._17_c00284{width:25.620000px;}
._3c_c00284{width:26.880000px;}
._1d_c00284{width:28.260000px;}
._32_c00284{width:31.260000px;}
._2_c00284{width:33.840000px;}
._21_c00284{width:39.120000px;}
._3a_c00284{width:44.640000px;}
._30_c00284{width:68.580000px;}
._10_c00284{width:82.080000px;}
._29_c00284{width:90.900000px;}
._1a_c00284{width:93.360000px;}
._24_c00284{width:96.600000px;}
._2a_c00284{width:99.000000px;}
._22_c00284{width:101.400000px;}
._1c_c00284{width:102.540000px;}
._25_c00284{width:104.400000px;}
._2b_c00284{width:105.900000px;}
._2d_c00284{width:109.860000px;}
._2f_c00284{width:113.820000px;}
._31_c00284{width:117.540000px;}
._34_c00284{width:118.980000px;}
._38_c00284{width:121.020000px;}
._3d_c00284{width:122.220000px;}
._3b_c00284{width:123.540000px;}
._35_c00284{width:125.220000px;}
._33_c00284{width:127.140000px;}
._36_c00284{width:130.140000px;}
._3e_c00284{width:137.220000px;}
._28_c00284{width:146.340000px;}
._27_c00284{width:176.820000px;}
._1e_c00284{width:261.360000px;}
._20_c00284{width:267.120000px;}
._2e_c00284{width:415.140000px;}
._7_c00284{width:454.740000px;}
.fc2_c00284{color:transparent;}
.fc1_c00284{color:rgb(128,128,128);}
.fc0_c00284{color:rgb(0,0,0);}
.fs1_c00284{font-size:45.000000px;}
.fs2_c00284{font-size:48.000000px;}
.fs0_c00284{font-size:60.000000px;}
.y0_c00284{bottom:0.000000px;}
.y2d_c00284{bottom:3.105000px;}
.y2c_c00284{bottom:7.228371px;}
.y2b_c00284{bottom:33.765000px;}
.y2a_c00284{bottom:56.715000px;}
.y29_c00284{bottom:75.015000px;}
.y28_c00284{bottom:92.865000px;}
.y27_c00284{bottom:112.365000px;}
.y26_c00284{bottom:130.065000px;}
.y25_c00284{bottom:148.815000px;}
.y24_c00284{bottom:166.815000px;}
.y23_c00284{bottom:184.665000px;}
.y22_c00284{bottom:203.265000px;}
.y21_c00284{bottom:220.515000px;}
.y20_c00284{bottom:239.265000px;}
.y1f_c00284{bottom:256.965000px;}
.y1e_c00284{bottom:275.715000px;}
.y1d_c00284{bottom:293.715000px;}
.y1c_c00284{bottom:310.815000px;}
.y1b_c00284{bottom:329.865000px;}
.y1a_c00284{bottom:347.715000px;}
.y19_c00284{bottom:365.265000px;}
.y18_c00284{bottom:384.165000px;}
.y17_c00284{bottom:401.715000px;}
.y16_c00284{bottom:420.315000px;}
.y15_c00284{bottom:437.865000px;}
.y14_c00284{bottom:456.015000px;}
.y13_c00284{bottom:473.565000px;}
.y12_c00284{bottom:491.115000px;}
.y11_c00284{bottom:509.715000px;}
.y10_c00284{bottom:527.865000px;}
.yf_c00284{bottom:545.415000px;}
.ye_c00284{bottom:564.315000px;}
.yd_c00284{bottom:581.865000px;}
.yc_c00284{bottom:600.465000px;}
.yb_c00284{bottom:617.715000px;}
.ya_c00284{bottom:635.865000px;}
.y9_c00284{bottom:653.865000px;}
.y8_c00284{bottom:671.715000px;}
.y7_c00284{bottom:690.615000px;}
.y6_c00284{bottom:708.465000px;}
.y5_c00284{bottom:727.065000px;}
.y4_c00284{bottom:744.315000px;}
.y3_c00284{bottom:763.065000px;}
.y2_c00284{bottom:780.765000px;}
.y1_c00284{bottom:799.965000px;}
.h4_c00284{height:13.200074px;}
.h5_c00284{height:43.804688px;}
.h2_c00284{height:62.880000px;}
.h3_c00284{height:64.020000px;}
.h1_c00284{height:836.250000px;}
.h0_c00284{height:836.475000px;}
.w2_c00284{width:104.875500px;}
.w0_c00284{width:586.425000px;}
.w1_c00284{width:586.500000px;}
.x0_c00284{left:0.000000px;}
.xd_c00284{left:14.550000px;}
.x9_c00284{left:17.250000px;}
.x10_c00284{left:72.450000px;}
.xf_c00284{left:73.500000px;}
.xe_c00284{left:75.150000px;}
.xc_c00284{left:76.200000px;}
.xb_c00284{left:77.250000px;}
.x8_c00284{left:78.600000px;}
.xa_c00284{left:79.650000px;}
.x7_c00284{left:81.750000px;}
.x5_c00284{left:83.100000px;}
.x4_c00284{left:84.150000px;}
.x2_c00284{left:85.350000px;}
.x6_c00284{left:100.350000px;}
.x3_c00284{left:125.850000px;}
.x1_c00284{left:218.700000px;}
.x12_c00284{left:245.026749px;}
.x11_c00284{left:398.250000px;}
@media print{
.v0_c00284{vertical-align:0.000000pt;}
.ls4_c00284{letter-spacing:0.000000pt;}
.ls1_c00284{letter-spacing:0.746667pt;}
.ls3_c00284{letter-spacing:2.666667pt;}
.ls5_c00284{letter-spacing:5.333333pt;}
.ls0_c00284{letter-spacing:12.093333pt;}
.ls2_c00284{letter-spacing:111.946667pt;}
.ws1_c00284{word-spacing:-31.373333pt;}
.ws0_c00284{word-spacing:-12.586667pt;}
.ws2_c00284{word-spacing:0.000000pt;}
._19_c00284{margin-left:-22.346667pt;}
._26_c00284{margin-left:-16.320000pt;}
._14_c00284{margin-left:-15.306667pt;}
._2c_c00284{margin-left:-11.520000pt;}
._37_c00284{margin-left:-10.613333pt;}
._f_c00284{margin-left:-9.386667pt;}
._b_c00284{margin-left:-8.213333pt;}
._a_c00284{margin-left:-6.880000pt;}
._15_c00284{margin-left:-5.706667pt;}
._e_c00284{margin-left:-4.106667pt;}
._1b_c00284{margin-left:-3.040000pt;}
._13_c00284{margin-left:-2.133333pt;}
._12_c00284{margin-left:-1.120000pt;}
._d_c00284{width:1.333333pt;}
._11_c00284{width:2.666667pt;}
._9_c00284{width:4.000000pt;}
._8_c00284{width:5.653333pt;}
._6_c00284{width:7.200000pt;}
._4_c00284{width:8.800000pt;}
._1_c00284{width:10.346667pt;}
._16_c00284{width:12.106667pt;}
._0_c00284{width:13.013333pt;}
._1f_c00284{width:14.880000pt;}
._18_c00284{width:16.320000pt;}
._23_c00284{width:17.440000pt;}
._c_c00284{width:18.346667pt;}
._3_c00284{width:19.253333pt;}
._39_c00284{width:20.853333pt;}
._5_c00284{width:21.866667pt;}
._17_c00284{width:22.773333pt;}
._3c_c00284{width:23.893333pt;}
._1d_c00284{width:25.120000pt;}
._32_c00284{width:27.786667pt;}
._2_c00284{width:30.080000pt;}
._21_c00284{width:34.773333pt;}
._3a_c00284{width:39.680000pt;}
._30_c00284{width:60.960000pt;}
._10_c00284{width:72.960000pt;}
._29_c00284{width:80.800000pt;}
._1a_c00284{width:82.986667pt;}
._24_c00284{width:85.866667pt;}
._2a_c00284{width:88.000000pt;}
._22_c00284{width:90.133333pt;}
._1c_c00284{width:91.146667pt;}
._25_c00284{width:92.800000pt;}
._2b_c00284{width:94.133333pt;}
._2d_c00284{width:97.653333pt;}
._2f_c00284{width:101.173333pt;}
._31_c00284{width:104.480000pt;}
._34_c00284{width:105.760000pt;}
._38_c00284{width:107.573333pt;}
._3d_c00284{width:108.640000pt;}
._3b_c00284{width:109.813333pt;}
._35_c00284{width:111.306667pt;}
._33_c00284{width:113.013333pt;}
._36_c00284{width:115.680000pt;}
._3e_c00284{width:121.973333pt;}
._28_c00284{width:130.080000pt;}
._27_c00284{width:157.173333pt;}
._1e_c00284{width:232.320000pt;}
._20_c00284{width:237.440000pt;}
._2e_c00284{width:369.013333pt;}
._7_c00284{width:404.213333pt;}
.fs1_c00284{font-size:40.000000pt;}
.fs2_c00284{font-size:42.666667pt;}
.fs0_c00284{font-size:53.333333pt;}
.y0_c00284{bottom:0.000000pt;}
.y2d_c00284{bottom:2.760000pt;}
.y2c_c00284{bottom:6.425219pt;}
.y2b_c00284{bottom:30.013333pt;}
.y2a_c00284{bottom:50.413333pt;}
.y29_c00284{bottom:66.680000pt;}
.y28_c00284{bottom:82.546667pt;}
.y27_c00284{bottom:99.880000pt;}
.y26_c00284{bottom:115.613333pt;}
.y25_c00284{bottom:132.280000pt;}
.y24_c00284{bottom:148.280000pt;}
.y23_c00284{bottom:164.146667pt;}
.y22_c00284{bottom:180.680000pt;}
.y21_c00284{bottom:196.013333pt;}
.y20_c00284{bottom:212.680000pt;}
.y1f_c00284{bottom:228.413333pt;}
.y1e_c00284{bottom:245.080000pt;}
.y1d_c00284{bottom:261.080000pt;}
.y1c_c00284{bottom:276.280000pt;}
.y1b_c00284{bottom:293.213333pt;}
.y1a_c00284{bottom:309.080000pt;}
.y19_c00284{bottom:324.680000pt;}
.y18_c00284{bottom:341.480000pt;}
.y17_c00284{bottom:357.080000pt;}
.y16_c00284{bottom:373.613333pt;}
.y15_c00284{bottom:389.213333pt;}
.y14_c00284{bottom:405.346667pt;}
.y13_c00284{bottom:420.946667pt;}
.y12_c00284{bottom:436.546667pt;}
.y11_c00284{bottom:453.080000pt;}
.y10_c00284{bottom:469.213333pt;}
.yf_c00284{bottom:484.813333pt;}
.ye_c00284{bottom:501.613333pt;}
.yd_c00284{bottom:517.213333pt;}
.yc_c00284{bottom:533.746667pt;}
.yb_c00284{bottom:549.080000pt;}
.ya_c00284{bottom:565.213333pt;}
.y9_c00284{bottom:581.213333pt;}
.y8_c00284{bottom:597.080000pt;}
.y7_c00284{bottom:613.880000pt;}
.y6_c00284{bottom:629.746667pt;}
.y5_c00284{bottom:646.280000pt;}
.y4_c00284{bottom:661.613333pt;}
.y3_c00284{bottom:678.280000pt;}
.y2_c00284{bottom:694.013333pt;}
.y1_c00284{bottom:711.080000pt;}
.h4_c00284{height:11.733399pt;}
.h5_c00284{height:38.937500pt;}
.h2_c00284{height:55.893333pt;}
.h3_c00284{height:56.906667pt;}
.h1_c00284{height:743.333333pt;}
.h0_c00284{height:743.533333pt;}
.w2_c00284{width:93.222667pt;}
.w0_c00284{width:521.266667pt;}
.w1_c00284{width:521.333333pt;}
.x0_c00284{left:0.000000pt;}
.xd_c00284{left:12.933333pt;}
.x9_c00284{left:15.333333pt;}
.x10_c00284{left:64.400000pt;}
.xf_c00284{left:65.333333pt;}
.xe_c00284{left:66.800000pt;}
.xc_c00284{left:67.733333pt;}
.xb_c00284{left:68.666667pt;}
.x8_c00284{left:69.866667pt;}
.xa_c00284{left:70.800000pt;}
.x7_c00284{left:72.666667pt;}
.x5_c00284{left:73.866667pt;}
.x4_c00284{left:74.800000pt;}
.x2_c00284{left:75.866667pt;}
.x6_c00284{left:89.200000pt;}
.x3_c00284{left:111.866667pt;}
.x1_c00284{left:194.400000pt;}
.x12_c00284{left:217.801554pt;}
.x11_c00284{left:354.000000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_8256e2a6065181ed543f59cc.woff2')format("woff");}.ff1_c00285{font-family:ff1_c00285;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00285;src:url('chunks/assets/font_bb658022b4b4027ff01c6ba6.woff2')format("woff");}.ff2_c00285{font-family:ff2_c00285;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00285;src:url('chunks/assets/font_0ce391de997f24f9f9dd37f4.woff2')format("woff");}.ff3_c00285{font-family:ff3_c00285;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00285;src:url('chunks/assets/font_1bc202346edca00111e05635.woff2')format("woff");}.ff4_c00285{font-family:ff4_c00285;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00285;src:url('chunks/assets/font_f5f7c3cdb8002fc93e30cc31.woff2')format("woff");}.ff5_c00285{font-family:ff5_c00285;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00285;src:url('chunks/assets/font_405c921f8951801c0136284c.woff2')format("woff");}.ff6_c00285{font-family:ff6_c00285;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00285;src:url('chunks/assets/font_f467e1769e923eee2418da83.woff2')format("woff");}.ff7_c00285{font-family:ff7_c00285;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00285;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff8_c00285{font-family:ff8_c00285;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00285{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00285{vertical-align:0.000000px;}
.v1_c00285{vertical-align:90.000000px;}
.ls9_c00285{letter-spacing:0.000000px;}
.ls8_c00285{letter-spacing:0.450000px;}
.ls1_c00285{letter-spacing:2.805000px;}
.ls6_c00285{letter-spacing:3.000000px;}
.ls0_c00285{letter-spacing:4.605000px;}
.ls4_c00285{letter-spacing:6.000000px;}
.ls2_c00285{letter-spacing:8.400000px;}
.ls5_c00285{letter-spacing:9.480000px;}
.ls3_c00285{letter-spacing:34.200000px;}
.ls7_c00285{letter-spacing:35.850000px;}
.sc__c00285{text-shadow:none;}
.sc0_c00285{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00285{-webkit-text-stroke:0px transparent;}
.sc0_c00285{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00285{word-spacing:-18.060000px;}
.ws5_c00285{word-spacing:-18.000000px;}
.ws4_c00285{word-spacing:-17.340000px;}
.ws1_c00285{word-spacing:-16.500000px;}
.ws0_c00285{word-spacing:-14.160000px;}
.ws3_c00285{word-spacing:-0.120000px;}
.ws7_c00285{word-spacing:0.000000px;}
.ws6_c00285{word-spacing:1.740000px;}
._13_c00285{margin-left:-18.660000px;}
._21_c00285{margin-left:-13.788000px;}
._1e_c00285{margin-left:-12.600000px;}
._1f_c00285{margin-left:-11.052000px;}
._18_c00285{margin-left:-8.064000px;}
._e_c00285{margin-left:-6.060000px;}
._b_c00285{margin-left:-4.020000px;}
._3_c00285{margin-left:-2.340000px;}
._a_c00285{margin-left:-1.260000px;}
._0_c00285{width:1.320000px;}
._1_c00285{width:2.520000px;}
._4_c00285{width:4.140000px;}
._6_c00285{width:5.820000px;}
._f_c00285{width:7.260000px;}
._8_c00285{width:8.400000px;}
._19_c00285{width:9.882000px;}
._9_c00285{width:10.920000px;}
._7_c00285{width:12.420000px;}
._14_c00285{width:13.680000px;}
._12_c00285{width:14.820000px;}
._1c_c00285{width:16.740000px;}
._1b_c00285{width:19.080000px;}
._c_c00285{width:20.460000px;}
._1a_c00285{width:21.660000px;}
._d_c00285{width:23.580000px;}
._10_c00285{width:25.260000px;}
._2_c00285{width:27.960000px;}
._15_c00285{width:29.100000px;}
._20_c00285{width:32.106000px;}
._5_c00285{width:34.500000px;}
._11_c00285{width:35.520000px;}
._16_c00285{width:37.812000px;}
._17_c00285{width:46.080000px;}
._1d_c00285{width:50.460000px;}
.fc2_c00285{color:transparent;}
.fc1_c00285{color:rgb(128,128,128);}
.fc0_c00285{color:rgb(0,0,0);}
.fs1_c00285{font-size:45.000000px;}
.fs5_c00285{font-size:48.000000px;}
.fs0_c00285{font-size:60.000000px;}
.fs3_c00285{font-size:63.000000px;}
.fs2_c00285{font-size:66.000000px;}
.fs4_c00285{font-size:180.000000px;}
.y0_c00285{bottom:0.000000px;}
.y53_c00285{bottom:3.105000px;}
.y52_c00285{bottom:7.228363px;}
.y4d_c00285{bottom:38.100000px;}
.y4c_c00285{bottom:57.000000px;}
.y4b_c00285{bottom:75.150000px;}
.y4a_c00285{bottom:93.450000px;}
.y49_c00285{bottom:111.600000px;}
.y26_c00285{bottom:113.400000px;}
.y48_c00285{bottom:130.200000px;}
.y25_c00285{bottom:131.700000px;}
.y47_c00285{bottom:148.200000px;}
.y24_c00285{bottom:149.250000px;}
.y46_c00285{bottom:166.650000px;}
.y23_c00285{bottom:167.400000px;}
.y45_c00285{bottom:184.500000px;}
.y22_c00285{bottom:185.250000px;}
.y44_c00285{bottom:203.100000px;}
.y21_c00285{bottom:204.150000px;}
.y43_c00285{bottom:220.650000px;}
.y20_c00285{bottom:222.450000px;}
.y42_c00285{bottom:238.950000px;}
.y1f_c00285{bottom:240.000000px;}
.y1e_c00285{bottom:257.250000px;}
.y41_c00285{bottom:257.850000px;}
.y40_c00285{bottom:276.000000px;}
.y1d_c00285{bottom:276.750000px;}
.y3f_c00285{bottom:294.000000px;}
.y1c_c00285{bottom:294.750000px;}
.y3e_c00285{bottom:312.750000px;}
.y1b_c00285{bottom:312.900000px;}
.y3d_c00285{bottom:330.750000px;}
.y1a_c00285{bottom:331.200000px;}
.y3c_c00285{bottom:348.300000px;}
.y19_c00285{bottom:349.950000px;}
.y3b_c00285{bottom:366.900000px;}
.y18_c00285{bottom:367.650000px;}
.y3a_c00285{bottom:385.350000px;}
.y17_c00285{bottom:385.500000px;}
.y51_c00285{bottom:400.950000px;}
.y39_c00285{bottom:403.650000px;}
.y16_c00285{bottom:403.950000px;}
.y50_c00285{bottom:419.850000px;}
.y38_c00285{bottom:421.800000px;}
.y15_c00285{bottom:421.950000px;}
.y37_c00285{bottom:439.650000px;}
.y14_c00285{bottom:439.800000px;}
.y13_c00285{bottom:458.100000px;}
.y36_c00285{bottom:458.250000px;}
.y35_c00285{bottom:476.250000px;}
.y12_c00285{bottom:476.550000px;}
.y34_c00285{bottom:494.100000px;}
.y11_c00285{bottom:494.400000px;}
.y33_c00285{bottom:512.250000px;}
.y10_c00285{bottom:513.000000px;}
.y4f_c00285{bottom:528.450000px;}
.y32_c00285{bottom:530.100000px;}
.yf_c00285{bottom:531.150000px;}
.y4e_c00285{bottom:548.400000px;}
.ye_c00285{bottom:549.150000px;}
.y31_c00285{bottom:566.700000px;}
.yd_c00285{bottom:567.450000px;}
.yc_c00285{bottom:585.300000px;}
.y30_c00285{bottom:585.450000px;}
.y2f_c00285{bottom:603.450000px;}
.yb_c00285{bottom:603.750000px;}
.y2e_c00285{bottom:621.000000px;}
.ya_c00285{bottom:621.600000px;}
.y2c_c00285{bottom:634.950000px;}
.y2d_c00285{bottom:639.300000px;}
.y9_c00285{bottom:639.450000px;}
.y8_c00285{bottom:657.450000px;}
.y7_c00285{bottom:676.050000px;}
.y2b_c00285{bottom:693.300000px;}
.y6_c00285{bottom:693.900000px;}
.y5_c00285{bottom:711.450000px;}
.y2a_c00285{bottom:712.200000px;}
.y29_c00285{bottom:729.000000px;}
.y4_c00285{bottom:729.600000px;}
.y3_c00285{bottom:747.600000px;}
.y28_c00285{bottom:747.900000px;}
.y27_c00285{bottom:765.150000px;}
.y2_c00285{bottom:765.750000px;}
.y1_c00285{bottom:783.750000px;}
.h6_c00285{height:13.200074px;}
.h7_c00285{height:43.804688px;}
.h2_c00285{height:62.880000px;}
.h3_c00285{height:64.020000px;}
.h4_c00285{height:70.422000px;}
.h5_c00285{height:188.640000px;}
.h1_c00285{height:834.000000px;}
.h0_c00285{height:834.300000px;}
.w2_c00285{width:104.875500px;}
.w1_c00285{width:558.750000px;}
.w0_c00285{width:558.900000px;}
.x0_c00285{left:0.000000px;}
.x7_c00285{left:88.050000px;}
.x6_c00285{left:89.100000px;}
.x5_c00285{left:90.900000px;}
.x4_c00285{left:92.100000px;}
.x3_c00285{left:93.450000px;}
.x2_c00285{left:94.800000px;}
.x1_c00285{left:96.450000px;}
.x8_c00285{left:123.300000px;}
.x9_c00285{left:166.800000px;}
.x17_c00285{left:231.264267px;}
.x13_c00285{left:301.350000px;}
.x14_c00285{left:302.400000px;}
.x12_c00285{left:303.750000px;}
.x11_c00285{left:304.800000px;}
.x10_c00285{left:306.150000px;}
.xb_c00285{left:310.200000px;}
.xc_c00285{left:317.550000px;}
.xd_c00285{left:349.950000px;}
.xf_c00285{left:351.750000px;}
.xa_c00285{left:371.700000px;}
.xe_c00285{left:379.800000px;}
.x15_c00285{left:468.750000px;}
.x16_c00285{left:507.600000px;}
@media print{
.v0_c00285{vertical-align:0.000000pt;}
.v1_c00285{vertical-align:80.000000pt;}
.ls9_c00285{letter-spacing:0.000000pt;}
.ls8_c00285{letter-spacing:0.400000pt;}
.ls1_c00285{letter-spacing:2.493333pt;}
.ls6_c00285{letter-spacing:2.666667pt;}
.ls0_c00285{letter-spacing:4.093333pt;}
.ls4_c00285{letter-spacing:5.333333pt;}
.ls2_c00285{letter-spacing:7.466667pt;}
.ls5_c00285{letter-spacing:8.426667pt;}
.ls3_c00285{letter-spacing:30.400000pt;}
.ls7_c00285{letter-spacing:31.866667pt;}
.ws2_c00285{word-spacing:-16.053333pt;}
.ws5_c00285{word-spacing:-16.000000pt;}
.ws4_c00285{word-spacing:-15.413333pt;}
.ws1_c00285{word-spacing:-14.666667pt;}
.ws0_c00285{word-spacing:-12.586667pt;}
.ws3_c00285{word-spacing:-0.106667pt;}
.ws7_c00285{word-spacing:0.000000pt;}
.ws6_c00285{word-spacing:1.546667pt;}
._13_c00285{margin-left:-16.586667pt;}
._21_c00285{margin-left:-12.256000pt;}
._1e_c00285{margin-left:-11.200000pt;}
._1f_c00285{margin-left:-9.824000pt;}
._18_c00285{margin-left:-7.168000pt;}
._e_c00285{margin-left:-5.386667pt;}
._b_c00285{margin-left:-3.573333pt;}
._3_c00285{margin-left:-2.080000pt;}
._a_c00285{margin-left:-1.120000pt;}
._0_c00285{width:1.173333pt;}
._1_c00285{width:2.240000pt;}
._4_c00285{width:3.680000pt;}
._6_c00285{width:5.173333pt;}
._f_c00285{width:6.453333pt;}
._8_c00285{width:7.466667pt;}
._19_c00285{width:8.784000pt;}
._9_c00285{width:9.706667pt;}
._7_c00285{width:11.040000pt;}
._14_c00285{width:12.160000pt;}
._12_c00285{width:13.173333pt;}
._1c_c00285{width:14.880000pt;}
._1b_c00285{width:16.960000pt;}
._c_c00285{width:18.186667pt;}
._1a_c00285{width:19.253333pt;}
._d_c00285{width:20.960000pt;}
._10_c00285{width:22.453333pt;}
._2_c00285{width:24.853333pt;}
._15_c00285{width:25.866667pt;}
._20_c00285{width:28.538667pt;}
._5_c00285{width:30.666667pt;}
._11_c00285{width:31.573333pt;}
._16_c00285{width:33.610667pt;}
._17_c00285{width:40.960000pt;}
._1d_c00285{width:44.853333pt;}
.fs1_c00285{font-size:40.000000pt;}
.fs5_c00285{font-size:42.666667pt;}
.fs0_c00285{font-size:53.333333pt;}
.fs3_c00285{font-size:56.000000pt;}
.fs2_c00285{font-size:58.666667pt;}
.fs4_c00285{font-size:160.000000pt;}
.y0_c00285{bottom:0.000000pt;}
.y53_c00285{bottom:2.760000pt;}
.y52_c00285{bottom:6.425212pt;}
.y4d_c00285{bottom:33.866667pt;}
.y4c_c00285{bottom:50.666667pt;}
.y4b_c00285{bottom:66.800000pt;}
.y4a_c00285{bottom:83.066667pt;}
.y49_c00285{bottom:99.200000pt;}
.y26_c00285{bottom:100.800000pt;}
.y48_c00285{bottom:115.733333pt;}
.y25_c00285{bottom:117.066667pt;}
.y47_c00285{bottom:131.733333pt;}
.y24_c00285{bottom:132.666667pt;}
.y46_c00285{bottom:148.133333pt;}
.y23_c00285{bottom:148.800000pt;}
.y45_c00285{bottom:164.000000pt;}
.y22_c00285{bottom:164.666667pt;}
.y44_c00285{bottom:180.533333pt;}
.y21_c00285{bottom:181.466667pt;}
.y43_c00285{bottom:196.133333pt;}
.y20_c00285{bottom:197.733333pt;}
.y42_c00285{bottom:212.400000pt;}
.y1f_c00285{bottom:213.333333pt;}
.y1e_c00285{bottom:228.666667pt;}
.y41_c00285{bottom:229.200000pt;}
.y40_c00285{bottom:245.333333pt;}
.y1d_c00285{bottom:246.000000pt;}
.y3f_c00285{bottom:261.333333pt;}
.y1c_c00285{bottom:262.000000pt;}
.y3e_c00285{bottom:278.000000pt;}
.y1b_c00285{bottom:278.133333pt;}
.y3d_c00285{bottom:294.000000pt;}
.y1a_c00285{bottom:294.400000pt;}
.y3c_c00285{bottom:309.600000pt;}
.y19_c00285{bottom:311.066667pt;}
.y3b_c00285{bottom:326.133333pt;}
.y18_c00285{bottom:326.800000pt;}
.y3a_c00285{bottom:342.533333pt;}
.y17_c00285{bottom:342.666667pt;}
.y51_c00285{bottom:356.400000pt;}
.y39_c00285{bottom:358.800000pt;}
.y16_c00285{bottom:359.066667pt;}
.y50_c00285{bottom:373.200000pt;}
.y38_c00285{bottom:374.933333pt;}
.y15_c00285{bottom:375.066667pt;}
.y37_c00285{bottom:390.800000pt;}
.y14_c00285{bottom:390.933333pt;}
.y13_c00285{bottom:407.200000pt;}
.y36_c00285{bottom:407.333333pt;}
.y35_c00285{bottom:423.333333pt;}
.y12_c00285{bottom:423.600000pt;}
.y34_c00285{bottom:439.200000pt;}
.y11_c00285{bottom:439.466667pt;}
.y33_c00285{bottom:455.333333pt;}
.y10_c00285{bottom:456.000000pt;}
.y4f_c00285{bottom:469.733333pt;}
.y32_c00285{bottom:471.200000pt;}
.yf_c00285{bottom:472.133333pt;}
.y4e_c00285{bottom:487.466667pt;}
.ye_c00285{bottom:488.133333pt;}
.y31_c00285{bottom:503.733333pt;}
.yd_c00285{bottom:504.400000pt;}
.yc_c00285{bottom:520.266667pt;}
.y30_c00285{bottom:520.400000pt;}
.y2f_c00285{bottom:536.400000pt;}
.yb_c00285{bottom:536.666667pt;}
.y2e_c00285{bottom:552.000000pt;}
.ya_c00285{bottom:552.533333pt;}
.y2c_c00285{bottom:564.400000pt;}
.y2d_c00285{bottom:568.266667pt;}
.y9_c00285{bottom:568.400000pt;}
.y8_c00285{bottom:584.400000pt;}
.y7_c00285{bottom:600.933333pt;}
.y2b_c00285{bottom:616.266667pt;}
.y6_c00285{bottom:616.800000pt;}
.y5_c00285{bottom:632.400000pt;}
.y2a_c00285{bottom:633.066667pt;}
.y29_c00285{bottom:648.000000pt;}
.y4_c00285{bottom:648.533333pt;}
.y3_c00285{bottom:664.533333pt;}
.y28_c00285{bottom:664.800000pt;}
.y27_c00285{bottom:680.133333pt;}
.y2_c00285{bottom:680.666667pt;}
.y1_c00285{bottom:696.666667pt;}
.h6_c00285{height:11.733399pt;}
.h7_c00285{height:38.937500pt;}
.h2_c00285{height:55.893333pt;}
.h3_c00285{height:56.906667pt;}
.h4_c00285{height:62.597333pt;}
.h5_c00285{height:167.680000pt;}
.h1_c00285{height:741.333333pt;}
.h0_c00285{height:741.600000pt;}
.w2_c00285{width:93.222667pt;}
.w1_c00285{width:496.666667pt;}
.w0_c00285{width:496.800000pt;}
.x0_c00285{left:0.000000pt;}
.x7_c00285{left:78.266667pt;}
.x6_c00285{left:79.200000pt;}
.x5_c00285{left:80.800000pt;}
.x4_c00285{left:81.866667pt;}
.x3_c00285{left:83.066667pt;}
.x2_c00285{left:84.266667pt;}
.x1_c00285{left:85.733333pt;}
.x8_c00285{left:109.600000pt;}
.x9_c00285{left:148.266667pt;}
.x17_c00285{left:205.568237pt;}
.x13_c00285{left:267.866667pt;}
.x14_c00285{left:268.800000pt;}
.x12_c00285{left:270.000000pt;}
.x11_c00285{left:270.933333pt;}
.x10_c00285{left:272.133333pt;}
.xb_c00285{left:275.733333pt;}
.xc_c00285{left:282.266667pt;}
.xd_c00285{left:311.066667pt;}
.xf_c00285{left:312.666667pt;}
.xa_c00285{left:330.400000pt;}
.xe_c00285{left:337.600000pt;}
.x15_c00285{left:416.666667pt;}
.x16_c00285{left:451.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_59546430a0b4742e4998ebb8.woff2')format("woff");}.ff1_c00286{font-family:ff1_c00286;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00286;src:url('chunks/assets/font_0b44a1f7ac2375626a8ceebf.woff2')format("woff");}.ff2_c00286{font-family:ff2_c00286;line-height:1.437000;font-style:normal;font-weight:normal;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_c955de81f16945c89b3a178b.woff2')format("woff");}.ff3_c00286{font-family:ff3_c00286;line-height:1.437000;font-style:normal;font-weight:normal;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_65f00369e5cafda8580f7192.woff2')format("woff");}.ff4_c00286{font-family:ff4_c00286;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00286;src:url('chunks/assets/font_57b31ca4eccbaeb64a5de96a.woff2')format("woff");}.ff5_c00286{font-family:ff5_c00286;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00286;src:url('chunks/assets/font_c605eca790679e9e80bf7cc0.woff2')format("woff");}.ff6_c00286{font-family:ff6_c00286;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00286;src:url('chunks/assets/font_4f92a7768b6f9ad078860579.woff2')format("woff");}.ff7_c00286{font-family:ff7_c00286;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00286;src:url('chunks/assets/font_d8e3a3ca1740f1213b3e287e.woff2')format("woff");}.ff8_c00286{font-family:ff8_c00286;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00286;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff9_c00286{font-family:ff9_c00286;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00286{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00286{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m3_c00286{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m2_c00286{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.v0_c00286{vertical-align:0.000000px;}
.ls7_c00286{letter-spacing:0.000000px;}
.ls0_c00286{letter-spacing:3.000000px;}
.ls2_c00286{letter-spacing:6.000000px;}
.ls3_c00286{letter-spacing:8.205000px;}
.ls4_c00286{letter-spacing:8.805000px;}
.ls6_c00286{letter-spacing:9.000000px;}
.ls1_c00286{letter-spacing:14.340000px;}
.ls5_c00286{letter-spacing:15.000000px;}
.sc__c00286{text-shadow:none;}
.sc0_c00286{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00286{-webkit-text-stroke:0px transparent;}
.sc0_c00286{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00286{word-spacing:-35.295000px;}
.ws2_c00286{word-spacing:-32.424000px;}
.ws1_c00286{word-spacing:-32.250000px;}
.ws7_c00286{word-spacing:-25.038000px;}
.ws0_c00286{word-spacing:-22.491000px;}
.ws8_c00286{word-spacing:-18.060000px;}
.ws4_c00286{word-spacing:-17.340000px;}
.ws3_c00286{word-spacing:-14.160000px;}
.ws9_c00286{word-spacing:0.000000px;}
.ws5_c00286{word-spacing:3.540000px;}
._26_c00286{margin-left:-32.088000px;}
._23_c00286{margin-left:-24.318000px;}
._25_c00286{margin-left:-17.892000px;}
._24_c00286{margin-left:-16.464000px;}
._27_c00286{margin-left:-14.700000px;}
._7_c00286{margin-left:-13.383000px;}
._15_c00286{margin-left:-10.047000px;}
._1d_c00286{margin-left:-8.289000px;}
._0_c00286{margin-left:-7.161000px;}
._3_c00286{margin-left:-5.208000px;}
._1_c00286{margin-left:-3.999000px;}
._4_c00286{margin-left:-2.511000px;}
._6_c00286{margin-left:-1.380000px;}
._b_c00286{width:1.740000px;}
._8_c00286{width:3.000000px;}
._9_c00286{width:4.500000px;}
._10_c00286{width:5.640000px;}
._e_c00286{width:6.900000px;}
._2_c00286{width:8.928000px;}
._d_c00286{width:10.140000px;}
._12_c00286{width:11.232000px;}
._11_c00286{width:13.380000px;}
._18_c00286{width:15.366000px;}
._f_c00286{width:17.163000px;}
._17_c00286{width:19.851000px;}
._14_c00286{width:21.072000px;}
._1c_c00286{width:22.773000px;}
._1a_c00286{width:24.000000px;}
._19_c00286{width:25.575000px;}
._21_c00286{width:26.940000px;}
._1b_c00286{width:28.920000px;}
._c_c00286{width:34.320000px;}
._1f_c00286{width:35.823000px;}
._29_c00286{width:43.683000px;}
._16_c00286{width:55.581000px;}
._13_c00286{width:64.320000px;}
._a_c00286{width:69.222000px;}
._1e_c00286{width:75.093000px;}
._28_c00286{width:76.866000px;}
._22_c00286{width:78.579000px;}
._20_c00286{width:110.940000px;}
._5_c00286{width:408.009000px;}
.fc2_c00286{color:transparent;}
.fc1_c00286{color:rgb(128,128,128);}
.fc0_c00286{color:rgb(0,0,0);}
.fs7_c00286{font-size:42.000000px;}
.fs6_c00286{font-size:45.000000px;}
.fs3_c00286{font-size:48.000000px;}
.fs4_c00286{font-size:51.000000px;}
.fs2_c00286{font-size:60.000000px;}
.fs5_c00286{font-size:63.000000px;}
.fs1_c00286{font-size:69.000000px;}
.fs0_c00286{font-size:93.000000px;}
.y0_c00286{bottom:0.000000px;}
.y51_c00286{bottom:3.105000px;}
.y50_c00286{bottom:7.228357px;}
.y4f_c00286{bottom:31.080000px;}
.y4e_c00286{bottom:52.080000px;}
.y48_c00286{bottom:68.880000px;}
.y4d_c00286{bottom:73.230000px;}
.y47_c00286{bottom:87.780000px;}
.y4c_c00286{bottom:90.780000px;}
.y46_c00286{bottom:106.080000px;}
.y4b_c00286{bottom:108.780000px;}
.y45_c00286{bottom:123.930000px;}
.y4a_c00286{bottom:127.980000px;}
.y44_c00286{bottom:141.780000px;}
.y49_c00286{bottom:145.830000px;}
.y43_c00286{bottom:162.030000px;}
.y42_c00286{bottom:179.880000px;}
.y41_c00286{bottom:197.880000px;}
.y3e_c00286{bottom:214.380000px;}
.y21_c00286{bottom:218.130000px;}
.y3d_c00286{bottom:233.880000px;}
.y20_c00286{bottom:236.280000px;}
.y3c_c00286{bottom:251.880000px;}
.y1f_c00286{bottom:253.230000px;}
.y3b_c00286{bottom:268.380000px;}
.y1e_c00286{bottom:271.680000px;}
.y3a_c00286{bottom:288.630000px;}
.y1d_c00286{bottom:290.580000px;}
.y39_c00286{bottom:306.480000px;}
.y1c_c00286{bottom:307.530000px;}
.y38_c00286{bottom:324.330000px;}
.y1b_c00286{bottom:326.430000px;}
.y37_c00286{bottom:342.180000px;}
.y1a_c00286{bottom:344.580000px;}
.y36_c00286{bottom:360.780000px;}
.y19_c00286{bottom:361.830000px;}
.y35_c00286{bottom:379.980000px;}
.y18_c00286{bottom:380.430000px;}
.y34_c00286{bottom:397.680000px;}
.y17_c00286{bottom:398.580000px;}
.y16_c00286{bottom:415.830000px;}
.y33_c00286{bottom:434.130000px;}
.y15_c00286{bottom:434.430000px;}
.y32_c00286{bottom:451.980000px;}
.y14_c00286{bottom:452.280000px;}
.y13_c00286{bottom:470.430000px;}
.y12_c00286{bottom:488.130000px;}
.y31_c00286{bottom:488.430000px;}
.y40_c00286{bottom:501.930000px;}
.y11_c00286{bottom:505.680000px;}
.y30_c00286{bottom:507.030000px;}
.y3f_c00286{bottom:520.080000px;}
.y10_c00286{bottom:523.830000px;}
.y2f_c00286{bottom:524.880000px;}
.yf_c00286{bottom:541.980000px;}
.y2e_c00286{bottom:543.030000px;}
.ye_c00286{bottom:559.980000px;}
.y2d_c00286{bottom:561.930000px;}
.yd_c00286{bottom:578.130000px;}
.y2c_c00286{bottom:580.230000px;}
.yc_c00286{bottom:596.130000px;}
.y2b_c00286{bottom:598.680000px;}
.yb_c00286{bottom:613.530000px;}
.y2a_c00286{bottom:616.380000px;}
.ya_c00286{bottom:631.830000px;}
.y29_c00286{bottom:634.830000px;}
.y9_c00286{bottom:650.130000px;}
.y28_c00286{bottom:652.830000px;}
.y8_c00286{bottom:668.880000px;}
.y27_c00286{bottom:671.580000px;}
.y7_c00286{bottom:686.130000px;}
.y26_c00286{bottom:690.180000px;}
.y6_c00286{bottom:704.130000px;}
.y25_c00286{bottom:708.180000px;}
.y5_c00286{bottom:721.980000px;}
.y24_c00286{bottom:726.330000px;}
.y4_c00286{bottom:739.830000px;}
.y23_c00286{bottom:744.930000px;}
.y3_c00286{bottom:758.130000px;}
.y22_c00286{bottom:762.780000px;}
.y2_c00286{bottom:778.680000px;}
.y1_c00286{bottom:798.630000px;}
.h7_c00286{height:13.200074px;}
.h8_c00286{height:43.804688px;}
.h6_c00286{height:44.016000px;}
.h3_c00286{height:62.880000px;}
.h4_c00286{height:64.571777px;}
.h5_c00286{height:67.221000px;}
.h2_c00286{height:91.274414px;}
.h0_c00286{height:841.350000px;}
.h1_c00286{height:841.500000px;}
.w1_c00286{width:104.875500px;}
.w0_c00286{width:590.250000px;}
.x0_c00286{left:0.000000px;}
.x5_c00286{left:19.350000px;}
.x6_c00286{left:59.700000px;}
.x17_c00286{left:75.600000px;}
.x8_c00286{left:78.000000px;}
.x7_c00286{left:79.050000px;}
.x4_c00286{left:80.100000px;}
.x3_c00286{left:81.750000px;}
.x2_c00286{left:83.100000px;}
.x12_c00286{left:109.350000px;}
.x13_c00286{left:121.800000px;}
.x14_c00286{left:136.950000px;}
.x15_c00286{left:143.850000px;}
.x16_c00286{left:160.650000px;}
.x1_c00286{left:222.150000px;}
.x19_c00286{left:246.939240px;}
.xf_c00286{left:287.250000px;}
.x11_c00286{left:291.300000px;}
.xe_c00286{left:293.250000px;}
.xd_c00286{left:294.600000px;}
.xb_c00286{left:295.950000px;}
.xa_c00286{left:297.300000px;}
.x9_c00286{left:298.350000px;}
.xc_c00286{left:311.850000px;}
.x18_c00286{left:445.800000px;}
.x10_c00286{left:497.250000px;}
@media print{
.v0_c00286{vertical-align:0.000000pt;}
.ls7_c00286{letter-spacing:0.000000pt;}
.ls0_c00286{letter-spacing:2.666667pt;}
.ls2_c00286{letter-spacing:5.333333pt;}
.ls3_c00286{letter-spacing:7.293333pt;}
.ls4_c00286{letter-spacing:7.826667pt;}
.ls6_c00286{letter-spacing:8.000000pt;}
.ls1_c00286{letter-spacing:12.746667pt;}
.ls5_c00286{letter-spacing:13.333333pt;}
.ws6_c00286{word-spacing:-31.373333pt;}
.ws2_c00286{word-spacing:-28.821333pt;}
.ws1_c00286{word-spacing:-28.666667pt;}
.ws7_c00286{word-spacing:-22.256000pt;}
.ws0_c00286{word-spacing:-19.992000pt;}
.ws8_c00286{word-spacing:-16.053333pt;}
.ws4_c00286{word-spacing:-15.413333pt;}
.ws3_c00286{word-spacing:-12.586667pt;}
.ws9_c00286{word-spacing:0.000000pt;}
.ws5_c00286{word-spacing:3.146667pt;}
._26_c00286{margin-left:-28.522667pt;}
._23_c00286{margin-left:-21.616000pt;}
._25_c00286{margin-left:-15.904000pt;}
._24_c00286{margin-left:-14.634667pt;}
._27_c00286{margin-left:-13.066667pt;}
._7_c00286{margin-left:-11.896000pt;}
._15_c00286{margin-left:-8.930667pt;}
._1d_c00286{margin-left:-7.368000pt;}
._0_c00286{margin-left:-6.365333pt;}
._3_c00286{margin-left:-4.629333pt;}
._1_c00286{margin-left:-3.554667pt;}
._4_c00286{margin-left:-2.232000pt;}
._6_c00286{margin-left:-1.226667pt;}
._b_c00286{width:1.546667pt;}
._8_c00286{width:2.666667pt;}
._9_c00286{width:4.000000pt;}
._10_c00286{width:5.013333pt;}
._e_c00286{width:6.133333pt;}
._2_c00286{width:7.936000pt;}
._d_c00286{width:9.013333pt;}
._12_c00286{width:9.984000pt;}
._11_c00286{width:11.893333pt;}
._18_c00286{width:13.658667pt;}
._f_c00286{width:15.256000pt;}
._17_c00286{width:17.645333pt;}
._14_c00286{width:18.730667pt;}
._1c_c00286{width:20.242667pt;}
._1a_c00286{width:21.333333pt;}
._19_c00286{width:22.733333pt;}
._21_c00286{width:23.946667pt;}
._1b_c00286{width:25.706667pt;}
._c_c00286{width:30.506667pt;}
._1f_c00286{width:31.842667pt;}
._29_c00286{width:38.829333pt;}
._16_c00286{width:49.405333pt;}
._13_c00286{width:57.173333pt;}
._a_c00286{width:61.530667pt;}
._1e_c00286{width:66.749333pt;}
._28_c00286{width:68.325333pt;}
._22_c00286{width:69.848000pt;}
._20_c00286{width:98.613333pt;}
._5_c00286{width:362.674667pt;}
.fs7_c00286{font-size:37.333333pt;}
.fs6_c00286{font-size:40.000000pt;}
.fs3_c00286{font-size:42.666667pt;}
.fs4_c00286{font-size:45.333333pt;}
.fs2_c00286{font-size:53.333333pt;}
.fs5_c00286{font-size:56.000000pt;}
.fs1_c00286{font-size:61.333333pt;}
.fs0_c00286{font-size:82.666667pt;}
.y0_c00286{bottom:0.000000pt;}
.y51_c00286{bottom:2.760000pt;}
.y50_c00286{bottom:6.425206pt;}
.y4f_c00286{bottom:27.626667pt;}
.y4e_c00286{bottom:46.293333pt;}
.y48_c00286{bottom:61.226667pt;}
.y4d_c00286{bottom:65.093333pt;}
.y47_c00286{bottom:78.026667pt;}
.y4c_c00286{bottom:80.693333pt;}
.y46_c00286{bottom:94.293333pt;}
.y4b_c00286{bottom:96.693333pt;}
.y45_c00286{bottom:110.160000pt;}
.y4a_c00286{bottom:113.760000pt;}
.y44_c00286{bottom:126.026667pt;}
.y49_c00286{bottom:129.626667pt;}
.y43_c00286{bottom:144.026667pt;}
.y42_c00286{bottom:159.893333pt;}
.y41_c00286{bottom:175.893333pt;}
.y3e_c00286{bottom:190.560000pt;}
.y21_c00286{bottom:193.893333pt;}
.y3d_c00286{bottom:207.893333pt;}
.y20_c00286{bottom:210.026667pt;}
.y3c_c00286{bottom:223.893333pt;}
.y1f_c00286{bottom:225.093333pt;}
.y3b_c00286{bottom:238.560000pt;}
.y1e_c00286{bottom:241.493333pt;}
.y3a_c00286{bottom:256.560000pt;}
.y1d_c00286{bottom:258.293333pt;}
.y39_c00286{bottom:272.426667pt;}
.y1c_c00286{bottom:273.360000pt;}
.y38_c00286{bottom:288.293333pt;}
.y1b_c00286{bottom:290.160000pt;}
.y37_c00286{bottom:304.160000pt;}
.y1a_c00286{bottom:306.293333pt;}
.y36_c00286{bottom:320.693333pt;}
.y19_c00286{bottom:321.626667pt;}
.y35_c00286{bottom:337.760000pt;}
.y18_c00286{bottom:338.160000pt;}
.y34_c00286{bottom:353.493333pt;}
.y17_c00286{bottom:354.293333pt;}
.y16_c00286{bottom:369.626667pt;}
.y33_c00286{bottom:385.893333pt;}
.y15_c00286{bottom:386.160000pt;}
.y32_c00286{bottom:401.760000pt;}
.y14_c00286{bottom:402.026667pt;}
.y13_c00286{bottom:418.160000pt;}
.y12_c00286{bottom:433.893333pt;}
.y31_c00286{bottom:434.160000pt;}
.y40_c00286{bottom:446.160000pt;}
.y11_c00286{bottom:449.493333pt;}
.y30_c00286{bottom:450.693333pt;}
.y3f_c00286{bottom:462.293333pt;}
.y10_c00286{bottom:465.626667pt;}
.y2f_c00286{bottom:466.560000pt;}
.yf_c00286{bottom:481.760000pt;}
.y2e_c00286{bottom:482.693333pt;}
.ye_c00286{bottom:497.760000pt;}
.y2d_c00286{bottom:499.493333pt;}
.yd_c00286{bottom:513.893333pt;}
.y2c_c00286{bottom:515.760000pt;}
.yc_c00286{bottom:529.893333pt;}
.y2b_c00286{bottom:532.160000pt;}
.yb_c00286{bottom:545.360000pt;}
.y2a_c00286{bottom:547.893333pt;}
.ya_c00286{bottom:561.626667pt;}
.y29_c00286{bottom:564.293333pt;}
.y9_c00286{bottom:577.893333pt;}
.y28_c00286{bottom:580.293333pt;}
.y8_c00286{bottom:594.560000pt;}
.y27_c00286{bottom:596.960000pt;}
.y7_c00286{bottom:609.893333pt;}
.y26_c00286{bottom:613.493333pt;}
.y6_c00286{bottom:625.893333pt;}
.y25_c00286{bottom:629.493333pt;}
.y5_c00286{bottom:641.760000pt;}
.y24_c00286{bottom:645.626667pt;}
.y4_c00286{bottom:657.626667pt;}
.y23_c00286{bottom:662.160000pt;}
.y3_c00286{bottom:673.893333pt;}
.y22_c00286{bottom:678.026667pt;}
.y2_c00286{bottom:692.160000pt;}
.y1_c00286{bottom:709.893333pt;}
.h7_c00286{height:11.733399pt;}
.h8_c00286{height:38.937500pt;}
.h6_c00286{height:39.125333pt;}
.h3_c00286{height:55.893333pt;}
.h4_c00286{height:57.397135pt;}
.h5_c00286{height:59.752000pt;}
.h2_c00286{height:81.132812pt;}
.h0_c00286{height:747.866667pt;}
.h1_c00286{height:748.000000pt;}
.w1_c00286{width:93.222667pt;}
.w0_c00286{width:524.666667pt;}
.x0_c00286{left:0.000000pt;}
.x5_c00286{left:17.200000pt;}
.x6_c00286{left:53.066667pt;}
.x17_c00286{left:67.200000pt;}
.x8_c00286{left:69.333333pt;}
.x7_c00286{left:70.266667pt;}
.x4_c00286{left:71.200000pt;}
.x3_c00286{left:72.666667pt;}
.x2_c00286{left:73.866667pt;}
.x12_c00286{left:97.200000pt;}
.x13_c00286{left:108.266667pt;}
.x14_c00286{left:121.733333pt;}
.x15_c00286{left:127.866667pt;}
.x16_c00286{left:142.800000pt;}
.x1_c00286{left:197.466667pt;}
.x19_c00286{left:219.501546pt;}
.xf_c00286{left:255.333333pt;}
.x11_c00286{left:258.933333pt;}
.xe_c00286{left:260.666667pt;}
.xd_c00286{left:261.866667pt;}
.xb_c00286{left:263.066667pt;}
.xa_c00286{left:264.266667pt;}
.x9_c00286{left:265.200000pt;}
.xc_c00286{left:277.200000pt;}
.x18_c00286{left:396.266667pt;}
.x10_c00286{left:442.000000pt;}
}





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

.ir_c00287:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00287{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00287;src:url('chunks/assets/font_2f4f274bc62a214a4353ce5d.woff2')format("woff");}.ff1_c00287{font-family:ff1_c00287;line-height:1.575000;font-style:normal;font-weight:normal;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_296000eceb299ac292e94ae4.woff2')format("woff");}.ff2_c00287{font-family:ff2_c00287;line-height:1.437000;font-style:normal;font-weight:normal;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_80961d396e6afe22089d5d59.woff2')format("woff");}.ff3_c00287{font-family:ff3_c00287;line-height:1.437000;font-style:normal;font-weight:normal;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_ee86595be51c0b87e6f5c49d.woff2')format("woff");}.ff4_c00287{font-family:ff4_c00287;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00287;src:url('chunks/assets/font_505a34c871c79fef2b31ba3e.woff2')format("woff");}.ff5_c00287{font-family:ff5_c00287;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00287;src:url('chunks/assets/font_7c7b114d6d8510036cb24ad0.woff2')format("woff");}.ff6_c00287{font-family:ff6_c00287;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00287;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff7_c00287{font-family:ff7_c00287;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00287{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00287{vertical-align:0.000000px;}
.v1_c00287{vertical-align:11.400000px;}
.lsa_c00287{letter-spacing:0.000000px;}
.ls9_c00287{letter-spacing:0.600000px;}
.ls2_c00287{letter-spacing:2.400000px;}
.ls5_c00287{letter-spacing:3.000000px;}
.ls1_c00287{letter-spacing:3.600000px;}
.ls0_c00287{letter-spacing:6.000000px;}
.ls3_c00287{letter-spacing:6.600000px;}
.ls6_c00287{letter-spacing:17.400000px;}
.ls8_c00287{letter-spacing:24.405000px;}
.ls4_c00287{letter-spacing:25.800000px;}
.ls7_c00287{letter-spacing:123.360000px;}
.sc__c00287{text-shadow:none;}
.sc0_c00287{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00287{-webkit-text-stroke:0px transparent;}
.sc0_c00287{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00287{word-spacing:-35.295000px;}
.ws0_c00287{word-spacing:-25.074000px;}
.ws3_c00287{word-spacing:-18.060000px;}
.ws2_c00287{word-spacing:-14.160000px;}
.ws6_c00287{word-spacing:0.000000px;}
.ws4_c00287{word-spacing:0.300000px;}
.ws1_c00287{word-spacing:4.680000px;}
._24_c00287{margin-left:-21.915000px;}
._8_c00287{margin-left:-17.520000px;}
._1c_c00287{margin-left:-16.440000px;}
._12_c00287{margin-left:-10.260000px;}
._1a_c00287{margin-left:-8.040000px;}
._17_c00287{margin-left:-6.240000px;}
._18_c00287{margin-left:-5.220000px;}
._15_c00287{margin-left:-4.140000px;}
._13_c00287{margin-left:-3.060000px;}
._7_c00287{margin-left:-1.800000px;}
._d_c00287{width:1.020000px;}
._f_c00287{width:2.220000px;}
._e_c00287{width:3.360000px;}
._9_c00287{width:4.440000px;}
._a_c00287{width:5.820000px;}
._b_c00287{width:6.900000px;}
._11_c00287{width:8.040000px;}
._16_c00287{width:9.120000px;}
._14_c00287{width:10.140000px;}
._10_c00287{width:11.520000px;}
._1_c00287{width:13.680000px;}
._2_c00287{width:15.480000px;}
._19_c00287{width:16.500000px;}
._5_c00287{width:18.840000px;}
._4_c00287{width:20.760000px;}
._1d_c00287{width:22.320000px;}
._3_c00287{width:23.460000px;}
._1b_c00287{width:25.320000px;}
._21_c00287{width:27.120000px;}
._22_c00287{width:29.820000px;}
._20_c00287{width:35.940000px;}
._23_c00287{width:37.740000px;}
._6_c00287{width:42.060000px;}
._1f_c00287{width:47.520000px;}
._1e_c00287{width:49.260000px;}
._c_c00287{width:67.260000px;}
._25_c00287{width:175.980000px;}
._0_c00287{width:366.360000px;}
._26_c00287{width:580.380000px;}
.fc2_c00287{color:transparent;}
.fc1_c00287{color:rgb(128,128,128);}
.fc0_c00287{color:rgb(0,0,0);}
.fs2_c00287{font-size:45.000000px;}
.fs4_c00287{font-size:48.000000px;}
.fs1_c00287{font-size:60.000000px;}
.fs0_c00287{font-size:66.000000px;}
.fs3_c00287{font-size:69.000000px;}
.y0_c00287{bottom:0.000000px;}
.y54_c00287{bottom:3.105000px;}
.y53_c00287{bottom:7.228363px;}
.y52_c00287{bottom:32.100000px;}
.y51_c00287{bottom:51.600000px;}
.y2c_c00287{bottom:52.050000px;}
.y50_c00287{bottom:70.950000px;}
.y2b_c00287{bottom:71.550000px;}
.y4f_c00287{bottom:89.400000px;}
.y2a_c00287{bottom:89.850000px;}
.y4e_c00287{bottom:107.700000px;}
.y29_c00287{bottom:108.450000px;}
.y4d_c00287{bottom:124.650000px;}
.y28_c00287{bottom:126.600000px;}
.y4c_c00287{bottom:142.350000px;}
.y27_c00287{bottom:144.450000px;}
.y4b_c00287{bottom:160.350000px;}
.y26_c00287{bottom:162.750000px;}
.y4a_c00287{bottom:180.900000px;}
.y25_c00287{bottom:181.200000px;}
.y49_c00287{bottom:198.450000px;}
.y24_c00287{bottom:199.200000px;}
.y48_c00287{bottom:215.550000px;}
.y23_c00287{bottom:217.050000px;}
.y47_c00287{bottom:234.450000px;}
.y22_c00287{bottom:235.200000px;}
.y46_c00287{bottom:252.150000px;}
.y21_c00287{bottom:252.900000px;}
.y45_c00287{bottom:270.300000px;}
.y20_c00287{bottom:271.800000px;}
.y44_c00287{bottom:288.900000px;}
.y1f_c00287{bottom:289.350000px;}
.y1e_c00287{bottom:307.500000px;}
.y43_c00287{bottom:308.400000px;}
.y1d_c00287{bottom:325.800000px;}
.y42_c00287{bottom:327.000000px;}
.y41_c00287{bottom:343.200000px;}
.y1c_c00287{bottom:344.250000px;}
.y40_c00287{bottom:361.350000px;}
.y1b_c00287{bottom:362.850000px;}
.y3f_c00287{bottom:380.700000px;}
.y1a_c00287{bottom:381.000000px;}
.y3e_c00287{bottom:399.450000px;}
.y19_c00287{bottom:399.900000px;}
.y18_c00287{bottom:417.450000px;}
.y3d_c00287{bottom:418.050000px;}
.y17_c00287{bottom:434.400000px;}
.y3c_c00287{bottom:436.650000px;}
.y16_c00287{bottom:453.300000px;}
.y3b_c00287{bottom:453.900000px;}
.y15_c00287{bottom:471.600000px;}
.y3a_c00287{bottom:472.500000px;}
.y14_c00287{bottom:490.050000px;}
.y39_c00287{bottom:490.350000px;}
.y13_c00287{bottom:507.900000px;}
.y38_c00287{bottom:509.250000px;}
.y37_c00287{bottom:523.950000px;}
.y12_c00287{bottom:526.500000px;}
.y11_c00287{bottom:544.500000px;}
.y36_c00287{bottom:545.400000px;}
.y10_c00287{bottom:562.350000px;}
.y35_c00287{bottom:564.000000px;}
.yf_c00287{bottom:581.250000px;}
.y34_c00287{bottom:581.550000px;}
.ye_c00287{bottom:599.400000px;}
.yd_c00287{bottom:616.950000px;}
.y33_c00287{bottom:617.550000px;}
.yc_c00287{bottom:635.850000px;}
.y4_c00287{bottom:640.650000px;}
.yb_c00287{bottom:654.150000px;}
.y32_c00287{bottom:654.450000px;}
.y3_c00287{bottom:657.900000px;}
.ya_c00287{bottom:672.000000px;}
.y31_c00287{bottom:672.600000px;}
.y9_c00287{bottom:690.600000px;}
.y30_c00287{bottom:691.200000px;}
.y8_c00287{bottom:709.050000px;}
.y2f_c00287{bottom:709.800000px;}
.y7_c00287{bottom:726.600000px;}
.y6_c00287{bottom:745.500000px;}
.y2e_c00287{bottom:745.650000px;}
.y5_c00287{bottom:763.200000px;}
.y2d_c00287{bottom:763.500000px;}
.y2_c00287{bottom:781.350000px;}
.y1_c00287{bottom:801.600000px;}
.h6_c00287{height:13.200074px;}
.h7_c00287{height:43.804688px;}
.h3_c00287{height:62.880000px;}
.h2_c00287{height:64.020000px;}
.h1_c00287{height:70.422000px;}
.h5_c00287{height:72.312000px;}
.h4_c00287{height:74.280000px;}
.h0_c00287{height:843.750000px;}
.w2_c00287{width:104.875500px;}
.w1_c00287{width:565.500000px;}
.w0_c00287{width:565.650000px;}
.x0_c00287{left:0.000000px;}
.x3_c00287{left:26.250000px;}
.x4_c00287{left:28.650000px;}
.x6_c00287{left:89.850000px;}
.x2_c00287{left:91.050000px;}
.x1_c00287{left:94.050000px;}
.x7_c00287{left:124.650000px;}
.x8_c00287{left:128.250000px;}
.x5_c00287{left:138.000000px;}
.x11_c00287{left:234.639267px;}
.x9_c00287{left:306.900000px;}
.xb_c00287{left:308.550000px;}
.xc_c00287{left:319.350000px;}
.x10_c00287{left:332.850000px;}
.xd_c00287{left:348.300000px;}
.xf_c00287{left:351.000000px;}
.xa_c00287{left:371.250000px;}
.xe_c00287{left:379.650000px;}
@media print{
.v0_c00287{vertical-align:0.000000pt;}
.v1_c00287{vertical-align:10.133333pt;}
.lsa_c00287{letter-spacing:0.000000pt;}
.ls9_c00287{letter-spacing:0.533333pt;}
.ls2_c00287{letter-spacing:2.133333pt;}
.ls5_c00287{letter-spacing:2.666667pt;}
.ls1_c00287{letter-spacing:3.200000pt;}
.ls0_c00287{letter-spacing:5.333333pt;}
.ls3_c00287{letter-spacing:5.866667pt;}
.ls6_c00287{letter-spacing:15.466667pt;}
.ls8_c00287{letter-spacing:21.693333pt;}
.ls4_c00287{letter-spacing:22.933333pt;}
.ls7_c00287{letter-spacing:109.653333pt;}
.ws5_c00287{word-spacing:-31.373333pt;}
.ws0_c00287{word-spacing:-22.288000pt;}
.ws3_c00287{word-spacing:-16.053333pt;}
.ws2_c00287{word-spacing:-12.586667pt;}
.ws6_c00287{word-spacing:0.000000pt;}
.ws4_c00287{word-spacing:0.266667pt;}
.ws1_c00287{word-spacing:4.160000pt;}
._24_c00287{margin-left:-19.480000pt;}
._8_c00287{margin-left:-15.573333pt;}
._1c_c00287{margin-left:-14.613333pt;}
._12_c00287{margin-left:-9.120000pt;}
._1a_c00287{margin-left:-7.146667pt;}
._17_c00287{margin-left:-5.546667pt;}
._18_c00287{margin-left:-4.640000pt;}
._15_c00287{margin-left:-3.680000pt;}
._13_c00287{margin-left:-2.720000pt;}
._7_c00287{margin-left:-1.600000pt;}
._d_c00287{width:0.906667pt;}
._f_c00287{width:1.973333pt;}
._e_c00287{width:2.986667pt;}
._9_c00287{width:3.946667pt;}
._a_c00287{width:5.173333pt;}
._b_c00287{width:6.133333pt;}
._11_c00287{width:7.146667pt;}
._16_c00287{width:8.106667pt;}
._14_c00287{width:9.013333pt;}
._10_c00287{width:10.240000pt;}
._1_c00287{width:12.160000pt;}
._2_c00287{width:13.760000pt;}
._19_c00287{width:14.666667pt;}
._5_c00287{width:16.746667pt;}
._4_c00287{width:18.453333pt;}
._1d_c00287{width:19.840000pt;}
._3_c00287{width:20.853333pt;}
._1b_c00287{width:22.506667pt;}
._21_c00287{width:24.106667pt;}
._22_c00287{width:26.506667pt;}
._20_c00287{width:31.946667pt;}
._23_c00287{width:33.546667pt;}
._6_c00287{width:37.386667pt;}
._1f_c00287{width:42.240000pt;}
._1e_c00287{width:43.786667pt;}
._c_c00287{width:59.786667pt;}
._25_c00287{width:156.426667pt;}
._0_c00287{width:325.653333pt;}
._26_c00287{width:515.893333pt;}
.fs2_c00287{font-size:40.000000pt;}
.fs4_c00287{font-size:42.666667pt;}
.fs1_c00287{font-size:53.333333pt;}
.fs0_c00287{font-size:58.666667pt;}
.fs3_c00287{font-size:61.333333pt;}
.y0_c00287{bottom:0.000000pt;}
.y54_c00287{bottom:2.760000pt;}
.y53_c00287{bottom:6.425212pt;}
.y52_c00287{bottom:28.533333pt;}
.y51_c00287{bottom:45.866667pt;}
.y2c_c00287{bottom:46.266667pt;}
.y50_c00287{bottom:63.066667pt;}
.y2b_c00287{bottom:63.600000pt;}
.y4f_c00287{bottom:79.466667pt;}
.y2a_c00287{bottom:79.866667pt;}
.y4e_c00287{bottom:95.733333pt;}
.y29_c00287{bottom:96.400000pt;}
.y4d_c00287{bottom:110.800000pt;}
.y28_c00287{bottom:112.533333pt;}
.y4c_c00287{bottom:126.533333pt;}
.y27_c00287{bottom:128.400000pt;}
.y4b_c00287{bottom:142.533333pt;}
.y26_c00287{bottom:144.666667pt;}
.y4a_c00287{bottom:160.800000pt;}
.y25_c00287{bottom:161.066667pt;}
.y49_c00287{bottom:176.400000pt;}
.y24_c00287{bottom:177.066667pt;}
.y48_c00287{bottom:191.600000pt;}
.y23_c00287{bottom:192.933333pt;}
.y47_c00287{bottom:208.400000pt;}
.y22_c00287{bottom:209.066667pt;}
.y46_c00287{bottom:224.133333pt;}
.y21_c00287{bottom:224.800000pt;}
.y45_c00287{bottom:240.266667pt;}
.y20_c00287{bottom:241.600000pt;}
.y44_c00287{bottom:256.800000pt;}
.y1f_c00287{bottom:257.200000pt;}
.y1e_c00287{bottom:273.333333pt;}
.y43_c00287{bottom:274.133333pt;}
.y1d_c00287{bottom:289.600000pt;}
.y42_c00287{bottom:290.666667pt;}
.y41_c00287{bottom:305.066667pt;}
.y1c_c00287{bottom:306.000000pt;}
.y40_c00287{bottom:321.200000pt;}
.y1b_c00287{bottom:322.533333pt;}
.y3f_c00287{bottom:338.400000pt;}
.y1a_c00287{bottom:338.666667pt;}
.y3e_c00287{bottom:355.066667pt;}
.y19_c00287{bottom:355.466667pt;}
.y18_c00287{bottom:371.066667pt;}
.y3d_c00287{bottom:371.600000pt;}
.y17_c00287{bottom:386.133333pt;}
.y3c_c00287{bottom:388.133333pt;}
.y16_c00287{bottom:402.933333pt;}
.y3b_c00287{bottom:403.466667pt;}
.y15_c00287{bottom:419.200000pt;}
.y3a_c00287{bottom:420.000000pt;}
.y14_c00287{bottom:435.600000pt;}
.y39_c00287{bottom:435.866667pt;}
.y13_c00287{bottom:451.466667pt;}
.y38_c00287{bottom:452.666667pt;}
.y37_c00287{bottom:465.733333pt;}
.y12_c00287{bottom:468.000000pt;}
.y11_c00287{bottom:484.000000pt;}
.y36_c00287{bottom:484.800000pt;}
.y10_c00287{bottom:499.866667pt;}
.y35_c00287{bottom:501.333333pt;}
.yf_c00287{bottom:516.666667pt;}
.y34_c00287{bottom:516.933333pt;}
.ye_c00287{bottom:532.800000pt;}
.yd_c00287{bottom:548.400000pt;}
.y33_c00287{bottom:548.933333pt;}
.yc_c00287{bottom:565.200000pt;}
.y4_c00287{bottom:569.466667pt;}
.yb_c00287{bottom:581.466667pt;}
.y32_c00287{bottom:581.733333pt;}
.y3_c00287{bottom:584.800000pt;}
.ya_c00287{bottom:597.333333pt;}
.y31_c00287{bottom:597.866667pt;}
.y9_c00287{bottom:613.866667pt;}
.y30_c00287{bottom:614.400000pt;}
.y8_c00287{bottom:630.266667pt;}
.y2f_c00287{bottom:630.933333pt;}
.y7_c00287{bottom:645.866667pt;}
.y6_c00287{bottom:662.666667pt;}
.y2e_c00287{bottom:662.800000pt;}
.y5_c00287{bottom:678.400000pt;}
.y2d_c00287{bottom:678.666667pt;}
.y2_c00287{bottom:694.533333pt;}
.y1_c00287{bottom:712.533333pt;}
.h6_c00287{height:11.733399pt;}
.h7_c00287{height:38.937500pt;}
.h3_c00287{height:55.893333pt;}
.h2_c00287{height:56.906667pt;}
.h1_c00287{height:62.597333pt;}
.h5_c00287{height:64.277333pt;}
.h4_c00287{height:66.026667pt;}
.h0_c00287{height:750.000000pt;}
.w2_c00287{width:93.222667pt;}
.w1_c00287{width:502.666667pt;}
.w0_c00287{width:502.800000pt;}
.x0_c00287{left:0.000000pt;}
.x3_c00287{left:23.333333pt;}
.x4_c00287{left:25.466667pt;}
.x6_c00287{left:79.866667pt;}
.x2_c00287{left:80.933333pt;}
.x1_c00287{left:83.600000pt;}
.x7_c00287{left:110.800000pt;}
.x8_c00287{left:114.000000pt;}
.x5_c00287{left:122.666667pt;}
.x11_c00287{left:208.568237pt;}
.x9_c00287{left:272.800000pt;}
.xb_c00287{left:274.266667pt;}
.xc_c00287{left:283.866667pt;}
.x10_c00287{left:295.866667pt;}
.xd_c00287{left:309.600000pt;}
.xf_c00287{left:312.000000pt;}
.xa_c00287{left:330.000000pt;}
.xe_c00287{left:337.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_daf34854a7065c0d532408b3.woff2')format("woff");}.ff1_c00288{font-family:ff1_c00288;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00288;src:url('chunks/assets/font_0b2f18b278f92f2cd6c62203.woff2')format("woff");}.ff2_c00288{font-family:ff2_c00288;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00288;src:url('chunks/assets/font_87df8c5e15f8afaf53df4361.woff2')format("woff");}.ff3_c00288{font-family:ff3_c00288;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00288;src:url('chunks/assets/font_24883fb72bc82db6718b0825.woff2')format("woff");}.ff4_c00288{font-family:ff4_c00288;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00288;src:url('chunks/assets/font_49eb36106e1ed46b27923f48.woff2')format("woff");}.ff5_c00288{font-family:ff5_c00288;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00288;src:url('chunks/assets/font_4109c2a7e153348f8bd4c365.woff2')format("woff");}.ff6_c00288{font-family:ff6_c00288;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00288;src:url('chunks/assets/font_d8ad93f062384a478194a72b.woff2')format("woff");}.ff7_c00288{font-family:ff7_c00288;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00288;src:url('chunks/assets/font_177a2c3ee94c465c26f8ccfc.woff2')format("woff");}.ff8_c00288{font-family:ff8_c00288;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00288;src:url('chunks/assets/font_e5a86c59cd37949d2295630b.woff2')format("woff");}.ff9_c00288{font-family:ff9_c00288;line-height:1.012793;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00288;src:url('chunks/assets/font_b3136b81218c5ff4ad7ec0e5.woff2')format("woff");}.ffa_c00288{font-family:ffa_c00288;line-height:1.575000;font-style:normal;font-weight: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_c00288;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ffb_c00288{font-family:ffb_c00288;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00288{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00288{vertical-align:0.000000px;}
.lsf_c00288{letter-spacing:-3.000000px;}
.lsd_c00288{letter-spacing:0.000000px;}
.ls9_c00288{letter-spacing:2.400000px;}
.ls2_c00288{letter-spacing:3.000000px;}
.ls6_c00288{letter-spacing:6.000000px;}
.ls3_c00288{letter-spacing:7.800000px;}
.ls1_c00288{letter-spacing:8.493000px;}
.lsc_c00288{letter-spacing:9.000000px;}
.lsa_c00288{letter-spacing:9.045000px;}
.ls8_c00288{letter-spacing:12.645000px;}
.lse_c00288{letter-spacing:15.000000px;}
.ls5_c00288{letter-spacing:15.300000px;}
.lsb_c00288{letter-spacing:19.845000px;}
.ls7_c00288{letter-spacing:22.845000px;}
.ls4_c00288{letter-spacing:26.460000px;}
.ls0_c00288{letter-spacing:69.060000px;}
.sc__c00288{text-shadow:none;}
.sc0_c00288{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00288{-webkit-text-stroke:0px transparent;}
.sc0_c00288{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00288{word-spacing:-59.550000px;}
.ws0_c00288{word-spacing:-33.000000px;}
.ws8_c00288{word-spacing:-18.813000px;}
.ws6_c00288{word-spacing:-18.060000px;}
.ws5_c00288{word-spacing:-17.307000px;}
.ws7_c00288{word-spacing:-15.000000px;}
.ws2_c00288{word-spacing:-14.340000px;}
.ws1_c00288{word-spacing:-14.160000px;}
.ws3_c00288{word-spacing:-13.452000px;}
.ws9_c00288{word-spacing:0.000000px;}
._29_c00288{margin-left:-21.660000px;}
._28_c00288{margin-left:-19.968000px;}
._21_c00288{margin-left:-18.888000px;}
._24_c00288{margin-left:-15.201000px;}
._a_c00288{margin-left:-12.180000px;}
._17_c00288{margin-left:-10.224000px;}
._b_c00288{margin-left:-9.180000px;}
._16_c00288{margin-left:-8.049000px;}
._14_c00288{margin-left:-6.546000px;}
._25_c00288{margin-left:-5.520000px;}
._13_c00288{margin-left:-4.464000px;}
._3_c00288{margin-left:-2.808000px;}
._4_c00288{margin-left:-1.728000px;}
._5_c00288{width:1.404000px;}
._e_c00288{width:2.460000px;}
._8_c00288{width:3.840000px;}
._12_c00288{width:4.896000px;}
._1_c00288{width:6.120000px;}
._0_c00288{width:7.128000px;}
._6_c00288{width:8.796000px;}
._19_c00288{width:10.788000px;}
._d_c00288{width:12.264000px;}
._18_c00288{width:13.512000px;}
._f_c00288{width:15.180000px;}
._26_c00288{width:16.734000px;}
._10_c00288{width:18.432000px;}
._c_c00288{width:21.540000px;}
._2e_c00288{width:23.484000px;}
._27_c00288{width:24.540000px;}
._1b_c00288{width:26.028000px;}
._1a_c00288{width:27.264000px;}
._2_c00288{width:31.776000px;}
._1d_c00288{width:33.516000px;}
._1c_c00288{width:37.368000px;}
._1f_c00288{width:41.262000px;}
._2a_c00288{width:57.792000px;}
._7_c00288{width:65.160000px;}
._2b_c00288{width:83.754000px;}
._1e_c00288{width:86.262000px;}
._2d_c00288{width:87.396000px;}
._2c_c00288{width:90.912000px;}
._11_c00288{width:147.840000px;}
._15_c00288{width:160.437000px;}
._20_c00288{width:171.360000px;}
._23_c00288{width:185.040000px;}
._9_c00288{width:191.820000px;}
._22_c00288{width:204.084000px;}
.fc2_c00288{color:transparent;}
.fc1_c00288{color:rgb(128,128,128);}
.fc0_c00288{color:rgb(0,0,0);}
.fs4_c00288{font-size:24.000000px;}
.fs5_c00288{font-size:39.000000px;}
.fs6_c00288{font-size:45.000000px;}
.fs7_c00288{font-size:48.000000px;}
.fs2_c00288{font-size:57.000000px;}
.fs1_c00288{font-size:60.000000px;}
.fs8_c00288{font-size:63.000000px;}
.fs9_c00288{font-size:69.000000px;}
.fs0_c00288{font-size:72.000000px;}
.fs3_c00288{font-size:75.000000px;}
.y0_c00288{bottom:0.000000px;}
.y4f_c00288{bottom:3.105000px;}
.y4e_c00288{bottom:7.228369px;}
.y4d_c00288{bottom:33.420000px;}
.y4c_c00288{bottom:55.020000px;}
.y4b_c00288{bottom:74.520000px;}
.y4a_c00288{bottom:93.120000px;}
.y49_c00288{bottom:109.920000px;}
.y48_c00288{bottom:127.620000px;}
.y26_c00288{bottom:130.170000px;}
.y47_c00288{bottom:146.370000px;}
.y25_c00288{bottom:147.420000px;}
.y46_c00288{bottom:164.070000px;}
.y24_c00288{bottom:166.020000px;}
.y45_c00288{bottom:181.920000px;}
.y23_c00288{bottom:184.920000px;}
.y44_c00288{bottom:200.370000px;}
.y22_c00288{bottom:203.820000px;}
.y43_c00288{bottom:218.370000px;}
.y21_c00288{bottom:219.720000px;}
.y42_c00288{bottom:236.820000px;}
.y20_c00288{bottom:238.920000px;}
.y41_c00288{bottom:255.120000px;}
.y1f_c00288{bottom:256.770000px;}
.y40_c00288{bottom:271.920000px;}
.y1e_c00288{bottom:274.320000px;}
.y3f_c00288{bottom:290.820000px;}
.y1d_c00288{bottom:292.320000px;}
.y3e_c00288{bottom:309.420000px;}
.y1c_c00288{bottom:310.170000px;}
.y3d_c00288{bottom:326.370000px;}
.y1b_c00288{bottom:328.620000px;}
.y3c_c00288{bottom:344.820000px;}
.y1a_c00288{bottom:346.620000px;}
.y3b_c00288{bottom:363.420000px;}
.y19_c00288{bottom:364.170000px;}
.y3a_c00288{bottom:381.720000px;}
.y18_c00288{bottom:382.020000px;}
.y39_c00288{bottom:399.270000px;}
.y17_c00288{bottom:399.870000px;}
.y38_c00288{bottom:418.170000px;}
.y16_c00288{bottom:419.070000px;}
.y37_c00288{bottom:436.020000px;}
.y15_c00288{bottom:436.620000px;}
.y14_c00288{bottom:454.320000px;}
.y13_c00288{bottom:472.170000px;}
.y36_c00288{bottom:472.470000px;}
.y12_c00288{bottom:490.320000px;}
.y11_c00288{bottom:507.870000px;}
.y35_c00288{bottom:508.320000px;}
.y10_c00288{bottom:525.720000px;}
.y34_c00288{bottom:526.770000px;}
.yf_c00288{bottom:544.020000px;}
.y33_c00288{bottom:544.770000px;}
.y32_c00288{bottom:561.570000px;}
.ye_c00288{bottom:561.870000px;}
.yd_c00288{bottom:579.720000px;}
.y31_c00288{bottom:580.470000px;}
.yc_c00288{bottom:597.420000px;}
.y30_c00288{bottom:598.770000px;}
.yb_c00288{bottom:615.870000px;}
.y2f_c00288{bottom:616.620000px;}
.ya_c00288{bottom:633.720000px;}
.y2e_c00288{bottom:635.220000px;}
.y9_c00288{bottom:651.720000px;}
.y2d_c00288{bottom:653.070000px;}
.y8_c00288{bottom:669.870000px;}
.y2c_c00288{bottom:671.520000px;}
.y7_c00288{bottom:687.720000px;}
.y2b_c00288{bottom:689.520000px;}
.y6_c00288{bottom:705.270000px;}
.y2a_c00288{bottom:707.070000px;}
.y5_c00288{bottom:723.870000px;}
.y29_c00288{bottom:725.670000px;}
.y4_c00288{bottom:740.820000px;}
.y28_c00288{bottom:743.820000px;}
.y3_c00288{bottom:758.370000px;}
.y27_c00288{bottom:761.970000px;}
.y2_c00288{bottom:778.320000px;}
.y1_c00288{bottom:797.820000px;}
.h9_c00288{height:13.200073px;}
.ha_c00288{height:43.804688px;}
.h5_c00288{height:59.736000px;}
.h3_c00288{height:62.880000px;}
.h4_c00288{height:64.020000px;}
.h7_c00288{height:66.024000px;}
.h2_c00288{height:70.664062px;}
.h8_c00288{height:73.623000px;}
.h6_c00288{height:78.600000px;}
.h1_c00288{height:832.500000px;}
.h0_c00288{height:832.650000px;}
.w2_c00288{width:104.875500px;}
.w1_c00288{width:583.500000px;}
.w0_c00288{width:583.725000px;}
.x0_c00288{left:0.000000px;}
.x8_c00288{left:17.250000px;}
.x7_c00288{left:18.300000px;}
.x3_c00288{left:19.950000px;}
.xc_c00288{left:21.900000px;}
.xe_c00288{left:70.950000px;}
.xd_c00288{left:74.250000px;}
.xf_c00288{left:75.600000px;}
.xb_c00288{left:77.550000px;}
.x9_c00288{left:78.900000px;}
.x6_c00288{left:80.700000px;}
.x4_c00288{left:81.750000px;}
.x2_c00288{left:82.950000px;}
.x5_c00288{left:84.300000px;}
.xa_c00288{left:112.500000px;}
.x1_c00288{left:214.350000px;}
.x17_c00288{left:243.676758px;}
.x12_c00288{left:292.650000px;}
.x15_c00288{left:294.000000px;}
.x14_c00288{left:295.050000px;}
.x10_c00288{left:296.700000px;}
.x11_c00288{left:325.050000px;}
.x13_c00288{left:345.900000px;}
.x16_c00288{left:390.150000px;}
@media print{
.v0_c00288{vertical-align:0.000000pt;}
.lsf_c00288{letter-spacing:-2.666667pt;}
.lsd_c00288{letter-spacing:0.000000pt;}
.ls9_c00288{letter-spacing:2.133333pt;}
.ls2_c00288{letter-spacing:2.666667pt;}
.ls6_c00288{letter-spacing:5.333333pt;}
.ls3_c00288{letter-spacing:6.933333pt;}
.ls1_c00288{letter-spacing:7.549333pt;}
.lsc_c00288{letter-spacing:8.000000pt;}
.lsa_c00288{letter-spacing:8.040000pt;}
.ls8_c00288{letter-spacing:11.240000pt;}
.lse_c00288{letter-spacing:13.333333pt;}
.ls5_c00288{letter-spacing:13.600000pt;}
.lsb_c00288{letter-spacing:17.640000pt;}
.ls7_c00288{letter-spacing:20.306667pt;}
.ls4_c00288{letter-spacing:23.520000pt;}
.ls0_c00288{letter-spacing:61.386667pt;}
.ws4_c00288{word-spacing:-52.933333pt;}
.ws0_c00288{word-spacing:-29.333333pt;}
.ws8_c00288{word-spacing:-16.722667pt;}
.ws6_c00288{word-spacing:-16.053333pt;}
.ws5_c00288{word-spacing:-15.384000pt;}
.ws7_c00288{word-spacing:-13.333333pt;}
.ws2_c00288{word-spacing:-12.746667pt;}
.ws1_c00288{word-spacing:-12.586667pt;}
.ws3_c00288{word-spacing:-11.957333pt;}
.ws9_c00288{word-spacing:0.000000pt;}
._29_c00288{margin-left:-19.253333pt;}
._28_c00288{margin-left:-17.749333pt;}
._21_c00288{margin-left:-16.789333pt;}
._24_c00288{margin-left:-13.512000pt;}
._a_c00288{margin-left:-10.826667pt;}
._17_c00288{margin-left:-9.088000pt;}
._b_c00288{margin-left:-8.160000pt;}
._16_c00288{margin-left:-7.154667pt;}
._14_c00288{margin-left:-5.818667pt;}
._25_c00288{margin-left:-4.906667pt;}
._13_c00288{margin-left:-3.968000pt;}
._3_c00288{margin-left:-2.496000pt;}
._4_c00288{margin-left:-1.536000pt;}
._5_c00288{width:1.248000pt;}
._e_c00288{width:2.186667pt;}
._8_c00288{width:3.413333pt;}
._12_c00288{width:4.352000pt;}
._1_c00288{width:5.440000pt;}
._0_c00288{width:6.336000pt;}
._6_c00288{width:7.818667pt;}
._19_c00288{width:9.589333pt;}
._d_c00288{width:10.901333pt;}
._18_c00288{width:12.010667pt;}
._f_c00288{width:13.493333pt;}
._26_c00288{width:14.874667pt;}
._10_c00288{width:16.384000pt;}
._c_c00288{width:19.146667pt;}
._2e_c00288{width:20.874667pt;}
._27_c00288{width:21.813333pt;}
._1b_c00288{width:23.136000pt;}
._1a_c00288{width:24.234667pt;}
._2_c00288{width:28.245333pt;}
._1d_c00288{width:29.792000pt;}
._1c_c00288{width:33.216000pt;}
._1f_c00288{width:36.677333pt;}
._2a_c00288{width:51.370667pt;}
._7_c00288{width:57.920000pt;}
._2b_c00288{width:74.448000pt;}
._1e_c00288{width:76.677333pt;}
._2d_c00288{width:77.685333pt;}
._2c_c00288{width:80.810667pt;}
._11_c00288{width:131.413333pt;}
._15_c00288{width:142.610667pt;}
._20_c00288{width:152.320000pt;}
._23_c00288{width:164.480000pt;}
._9_c00288{width:170.506667pt;}
._22_c00288{width:181.408000pt;}
.fs4_c00288{font-size:21.333333pt;}
.fs5_c00288{font-size:34.666667pt;}
.fs6_c00288{font-size:40.000000pt;}
.fs7_c00288{font-size:42.666667pt;}
.fs2_c00288{font-size:50.666667pt;}
.fs1_c00288{font-size:53.333333pt;}
.fs8_c00288{font-size:56.000000pt;}
.fs9_c00288{font-size:61.333333pt;}
.fs0_c00288{font-size:64.000000pt;}
.fs3_c00288{font-size:66.666667pt;}
.y0_c00288{bottom:0.000000pt;}
.y4f_c00288{bottom:2.760000pt;}
.y4e_c00288{bottom:6.425217pt;}
.y4d_c00288{bottom:29.706667pt;}
.y4c_c00288{bottom:48.906667pt;}
.y4b_c00288{bottom:66.240000pt;}
.y4a_c00288{bottom:82.773333pt;}
.y49_c00288{bottom:97.706667pt;}
.y48_c00288{bottom:113.440000pt;}
.y26_c00288{bottom:115.706667pt;}
.y47_c00288{bottom:130.106667pt;}
.y25_c00288{bottom:131.040000pt;}
.y46_c00288{bottom:145.840000pt;}
.y24_c00288{bottom:147.573333pt;}
.y45_c00288{bottom:161.706667pt;}
.y23_c00288{bottom:164.373333pt;}
.y44_c00288{bottom:178.106667pt;}
.y22_c00288{bottom:181.173333pt;}
.y43_c00288{bottom:194.106667pt;}
.y21_c00288{bottom:195.306667pt;}
.y42_c00288{bottom:210.506667pt;}
.y20_c00288{bottom:212.373333pt;}
.y41_c00288{bottom:226.773333pt;}
.y1f_c00288{bottom:228.240000pt;}
.y40_c00288{bottom:241.706667pt;}
.y1e_c00288{bottom:243.840000pt;}
.y3f_c00288{bottom:258.506667pt;}
.y1d_c00288{bottom:259.840000pt;}
.y3e_c00288{bottom:275.040000pt;}
.y1c_c00288{bottom:275.706667pt;}
.y3d_c00288{bottom:290.106667pt;}
.y1b_c00288{bottom:292.106667pt;}
.y3c_c00288{bottom:306.506667pt;}
.y1a_c00288{bottom:308.106667pt;}
.y3b_c00288{bottom:323.040000pt;}
.y19_c00288{bottom:323.706667pt;}
.y3a_c00288{bottom:339.306667pt;}
.y18_c00288{bottom:339.573333pt;}
.y39_c00288{bottom:354.906667pt;}
.y17_c00288{bottom:355.440000pt;}
.y38_c00288{bottom:371.706667pt;}
.y16_c00288{bottom:372.506667pt;}
.y37_c00288{bottom:387.573333pt;}
.y15_c00288{bottom:388.106667pt;}
.y14_c00288{bottom:403.840000pt;}
.y13_c00288{bottom:419.706667pt;}
.y36_c00288{bottom:419.973333pt;}
.y12_c00288{bottom:435.840000pt;}
.y11_c00288{bottom:451.440000pt;}
.y35_c00288{bottom:451.840000pt;}
.y10_c00288{bottom:467.306667pt;}
.y34_c00288{bottom:468.240000pt;}
.yf_c00288{bottom:483.573333pt;}
.y33_c00288{bottom:484.240000pt;}
.y32_c00288{bottom:499.173333pt;}
.ye_c00288{bottom:499.440000pt;}
.yd_c00288{bottom:515.306667pt;}
.y31_c00288{bottom:515.973333pt;}
.yc_c00288{bottom:531.040000pt;}
.y30_c00288{bottom:532.240000pt;}
.yb_c00288{bottom:547.440000pt;}
.y2f_c00288{bottom:548.106667pt;}
.ya_c00288{bottom:563.306667pt;}
.y2e_c00288{bottom:564.640000pt;}
.y9_c00288{bottom:579.306667pt;}
.y2d_c00288{bottom:580.506667pt;}
.y8_c00288{bottom:595.440000pt;}
.y2c_c00288{bottom:596.906667pt;}
.y7_c00288{bottom:611.306667pt;}
.y2b_c00288{bottom:612.906667pt;}
.y6_c00288{bottom:626.906667pt;}
.y2a_c00288{bottom:628.506667pt;}
.y5_c00288{bottom:643.440000pt;}
.y29_c00288{bottom:645.040000pt;}
.y4_c00288{bottom:658.506667pt;}
.y28_c00288{bottom:661.173333pt;}
.y3_c00288{bottom:674.106667pt;}
.y27_c00288{bottom:677.306667pt;}
.y2_c00288{bottom:691.840000pt;}
.y1_c00288{bottom:709.173333pt;}
.h9_c00288{height:11.733399pt;}
.ha_c00288{height:38.937500pt;}
.h5_c00288{height:53.098667pt;}
.h3_c00288{height:55.893333pt;}
.h4_c00288{height:56.906667pt;}
.h7_c00288{height:58.688000pt;}
.h2_c00288{height:62.812500pt;}
.h8_c00288{height:65.442667pt;}
.h6_c00288{height:69.866667pt;}
.h1_c00288{height:740.000000pt;}
.h0_c00288{height:740.133333pt;}
.w2_c00288{width:93.222667pt;}
.w1_c00288{width:518.666667pt;}
.w0_c00288{width:518.866667pt;}
.x0_c00288{left:0.000000pt;}
.x8_c00288{left:15.333333pt;}
.x7_c00288{left:16.266667pt;}
.x3_c00288{left:17.733333pt;}
.xc_c00288{left:19.466667pt;}
.xe_c00288{left:63.066667pt;}
.xd_c00288{left:66.000000pt;}
.xf_c00288{left:67.200000pt;}
.xb_c00288{left:68.933333pt;}
.x9_c00288{left:70.133333pt;}
.x6_c00288{left:71.733333pt;}
.x4_c00288{left:72.666667pt;}
.x2_c00288{left:73.733333pt;}
.x5_c00288{left:74.933333pt;}
.xa_c00288{left:100.000000pt;}
.x1_c00288{left:190.533333pt;}
.x17_c00288{left:216.601563pt;}
.x12_c00288{left:260.133333pt;}
.x15_c00288{left:261.333333pt;}
.x14_c00288{left:262.266667pt;}
.x10_c00288{left:263.733333pt;}
.x11_c00288{left:288.933333pt;}
.x13_c00288{left:307.466667pt;}
.x16_c00288{left:346.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_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_fb70bd423395b5400c6a7889.woff2')format("woff");}.ff1_c00289{font-family:ff1_c00289;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00289;src:url('chunks/assets/font_9feb8cb7a0f0a40a9b352ddf.woff2')format("woff");}.ff2_c00289{font-family:ff2_c00289;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00289;src:url('chunks/assets/font_d571561c587152c9302deff9.woff2')format("woff");}.ff3_c00289{font-family:ff3_c00289;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00289;src:url('chunks/assets/font_0c990d06c57f344464d922a1.woff2')format("woff");}.ff4_c00289{font-family:ff4_c00289;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00289;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff5_c00289{font-family:ff5_c00289;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00289{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00289{vertical-align:0.000000px;}
.ls7_c00289{letter-spacing:0.000000px;}
.ls4_c00289{letter-spacing:0.600000px;}
.ls8_c00289{letter-spacing:3.000000px;}
.ls1_c00289{letter-spacing:3.600000px;}
.ls3_c00289{letter-spacing:3.840000px;}
.ls6_c00289{letter-spacing:5.400000px;}
.ls2_c00289{letter-spacing:10.200000px;}
.ls0_c00289{letter-spacing:10.740000px;}
.ls5_c00289{letter-spacing:18.000000px;}
.sc__c00289{text-shadow:none;}
.sc0_c00289{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00289{-webkit-text-stroke:0px transparent;}
.sc0_c00289{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00289{word-spacing:-18.060000px;}
.ws2_c00289{word-spacing:-18.000000px;}
.ws0_c00289{word-spacing:-14.250000px;}
.ws3_c00289{word-spacing:-14.160000px;}
.ws4_c00289{word-spacing:0.000000px;}
._8_c00289{margin-left:-24.060000px;}
._24_c00289{margin-left:-14.097000px;}
._1f_c00289{margin-left:-11.538000px;}
._12_c00289{margin-left:-9.252000px;}
._d_c00289{margin-left:-7.287000px;}
._23_c00289{margin-left:-6.270000px;}
._10_c00289{margin-left:-5.256000px;}
._6_c00289{margin-left:-3.522000px;}
._4_c00289{margin-left:-1.932000px;}
._3_c00289{width:1.311000px;}
._1_c00289{width:2.451000px;}
._0_c00289{width:3.876000px;}
._e_c00289{width:5.139000px;}
._9_c00289{width:6.180000px;}
._5_c00289{width:7.245000px;}
._15_c00289{width:8.340000px;}
._7_c00289{width:9.924000px;}
._c_c00289{width:11.052000px;}
._a_c00289{width:12.504000px;}
._f_c00289{width:14.475000px;}
._b_c00289{width:15.606000px;}
._1e_c00289{width:17.352000px;}
._22_c00289{width:18.375000px;}
._25_c00289{width:20.106000px;}
._17_c00289{width:21.312000px;}
._21_c00289{width:22.620000px;}
._19_c00289{width:23.664000px;}
._14_c00289{width:24.996000px;}
._20_c00289{width:26.943000px;}
._13_c00289{width:28.779000px;}
._16_c00289{width:30.075000px;}
._27_c00289{width:34.335000px;}
._18_c00289{width:38.079000px;}
._26_c00289{width:47.634000px;}
._1b_c00289{width:55.683000px;}
._1a_c00289{width:59.103000px;}
._1c_c00289{width:105.264000px;}
._1d_c00289{width:169.467000px;}
._11_c00289{width:208.593000px;}
._2_c00289{width:381.174000px;}
.fc2_c00289{color:transparent;}
.fc1_c00289{color:rgb(128,128,128);}
.fc0_c00289{color:rgb(0,0,0);}
.fs3_c00289{font-size:24.000000px;}
.fs4_c00289{font-size:48.000000px;}
.fs0_c00289{font-size:57.000000px;}
.fs2_c00289{font-size:60.000000px;}
.fs1_c00289{font-size:69.000000px;}
.y0_c00289{bottom:0.000000px;}
.y56_c00289{bottom:3.105000px;}
.y55_c00289{bottom:7.228363px;}
.y54_c00289{bottom:35.400000px;}
.y53_c00289{bottom:54.300000px;}
.y2a_c00289{bottom:57.450000px;}
.y52_c00289{bottom:73.800000px;}
.y29_c00289{bottom:76.050000px;}
.y51_c00289{bottom:91.500000px;}
.y28_c00289{bottom:94.500000px;}
.y50_c00289{bottom:109.950000px;}
.y27_c00289{bottom:112.800000px;}
.y4f_c00289{bottom:127.950000px;}
.y26_c00289{bottom:130.350000px;}
.y4e_c00289{bottom:146.400000px;}
.y25_c00289{bottom:149.250000px;}
.y4d_c00289{bottom:163.650000px;}
.y24_c00289{bottom:167.400000px;}
.y4c_c00289{bottom:182.550000px;}
.y23_c00289{bottom:185.250000px;}
.y4b_c00289{bottom:200.850000px;}
.y22_c00289{bottom:203.250000px;}
.y4a_c00289{bottom:218.400000px;}
.y21_c00289{bottom:222.450000px;}
.y49_c00289{bottom:237.600000px;}
.y20_c00289{bottom:240.300000px;}
.y48_c00289{bottom:256.050000px;}
.y1f_c00289{bottom:258.600000px;}
.y47_c00289{bottom:273.750000px;}
.y1e_c00289{bottom:277.050000px;}
.y46_c00289{bottom:292.200000px;}
.y1d_c00289{bottom:295.050000px;}
.y45_c00289{bottom:310.050000px;}
.y1c_c00289{bottom:312.900000px;}
.y44_c00289{bottom:328.650000px;}
.y1b_c00289{bottom:331.200000px;}
.y43_c00289{bottom:347.550000px;}
.y1a_c00289{bottom:350.700000px;}
.y42_c00289{bottom:365.100000px;}
.y19_c00289{bottom:368.550000px;}
.y41_c00289{bottom:383.400000px;}
.y18_c00289{bottom:386.550000px;}
.y40_c00289{bottom:402.000000px;}
.y17_c00289{bottom:405.000000px;}
.y3f_c00289{bottom:420.450000px;}
.y16_c00289{bottom:423.450000px;}
.y3e_c00289{bottom:438.450000px;}
.y15_c00289{bottom:442.050000px;}
.y3d_c00289{bottom:456.000000px;}
.y14_c00289{bottom:460.650000px;}
.y3c_c00289{bottom:474.750000px;}
.y13_c00289{bottom:478.200000px;}
.y3b_c00289{bottom:492.750000px;}
.y12_c00289{bottom:495.450000px;}
.y3a_c00289{bottom:510.900000px;}
.y11_c00289{bottom:513.000000px;}
.y39_c00289{bottom:529.200000px;}
.y10_c00289{bottom:531.450000px;}
.y38_c00289{bottom:546.750000px;}
.yf_c00289{bottom:549.450000px;}
.y37_c00289{bottom:565.950000px;}
.ye_c00289{bottom:568.050000px;}
.y36_c00289{bottom:584.250000px;}
.yd_c00289{bottom:585.900000px;}
.y35_c00289{bottom:602.550000px;}
.yc_c00289{bottom:604.350000px;}
.y34_c00289{bottom:620.700000px;}
.yb_c00289{bottom:622.350000px;}
.y33_c00289{bottom:639.300000px;}
.ya_c00289{bottom:640.500000px;}
.y32_c00289{bottom:657.150000px;}
.y9_c00289{bottom:658.800000px;}
.y31_c00289{bottom:675.000000px;}
.y8_c00289{bottom:676.950000px;}
.y30_c00289{bottom:693.900000px;}
.y7_c00289{bottom:694.800000px;}
.y2f_c00289{bottom:712.200000px;}
.y6_c00289{bottom:712.800000px;}
.y2e_c00289{bottom:729.450000px;}
.y5_c00289{bottom:730.350000px;}
.y2d_c00289{bottom:747.300000px;}
.y4_c00289{bottom:749.250000px;}
.y2c_c00289{bottom:765.450000px;}
.y3_c00289{bottom:767.250000px;}
.y2b_c00289{bottom:783.300000px;}
.y2_c00289{bottom:785.700000px;}
.y1_c00289{bottom:805.200000px;}
.h5_c00289{height:13.200074px;}
.h6_c00289{height:43.804688px;}
.h3_c00289{height:62.880000px;}
.h4_c00289{height:64.020000px;}
.h2_c00289{height:73.623000px;}
.h1_c00289{height:834.000000px;}
.h0_c00289{height:834.300000px;}
.w2_c00289{width:104.875500px;}
.w1_c00289{width:558.750000px;}
.w0_c00289{width:558.900000px;}
.x0_c00289{left:0.000000px;}
.x9_c00289{left:30.750000px;}
.x8_c00289{left:32.700000px;}
.xc_c00289{left:92.100000px;}
.xb_c00289{left:93.600000px;}
.xa_c00289{left:94.800000px;}
.x7_c00289{left:95.850000px;}
.x6_c00289{left:97.500000px;}
.x5_c00289{left:98.550000px;}
.x4_c00289{left:100.200000px;}
.x3_c00289{left:101.250000px;}
.x2_c00289{left:102.300000px;}
.x1_c00289{left:105.300000px;}
.x16_c00289{left:231.264267px;}
.xe_c00289{left:302.100000px;}
.x14_c00289{left:309.450000px;}
.x13_c00289{left:310.800000px;}
.x12_c00289{left:311.850000px;}
.xd_c00289{left:313.500000px;}
.x10_c00289{left:314.550000px;}
.xf_c00289{left:315.600000px;}
.x11_c00289{left:366.300000px;}
.x15_c00289{left:477.900000px;}
@media print{
.v0_c00289{vertical-align:0.000000pt;}
.ls7_c00289{letter-spacing:0.000000pt;}
.ls4_c00289{letter-spacing:0.533333pt;}
.ls8_c00289{letter-spacing:2.666667pt;}
.ls1_c00289{letter-spacing:3.200000pt;}
.ls3_c00289{letter-spacing:3.413333pt;}
.ls6_c00289{letter-spacing:4.800000pt;}
.ls2_c00289{letter-spacing:9.066667pt;}
.ls0_c00289{letter-spacing:9.546667pt;}
.ls5_c00289{letter-spacing:16.000000pt;}
.ws1_c00289{word-spacing:-16.053333pt;}
.ws2_c00289{word-spacing:-16.000000pt;}
.ws0_c00289{word-spacing:-12.666667pt;}
.ws3_c00289{word-spacing:-12.586667pt;}
.ws4_c00289{word-spacing:0.000000pt;}
._8_c00289{margin-left:-21.386667pt;}
._24_c00289{margin-left:-12.530667pt;}
._1f_c00289{margin-left:-10.256000pt;}
._12_c00289{margin-left:-8.224000pt;}
._d_c00289{margin-left:-6.477333pt;}
._23_c00289{margin-left:-5.573333pt;}
._10_c00289{margin-left:-4.672000pt;}
._6_c00289{margin-left:-3.130667pt;}
._4_c00289{margin-left:-1.717333pt;}
._3_c00289{width:1.165333pt;}
._1_c00289{width:2.178667pt;}
._0_c00289{width:3.445333pt;}
._e_c00289{width:4.568000pt;}
._9_c00289{width:5.493333pt;}
._5_c00289{width:6.440000pt;}
._15_c00289{width:7.413333pt;}
._7_c00289{width:8.821333pt;}
._c_c00289{width:9.824000pt;}
._a_c00289{width:11.114667pt;}
._f_c00289{width:12.866667pt;}
._b_c00289{width:13.872000pt;}
._1e_c00289{width:15.424000pt;}
._22_c00289{width:16.333333pt;}
._25_c00289{width:17.872000pt;}
._17_c00289{width:18.944000pt;}
._21_c00289{width:20.106667pt;}
._19_c00289{width:21.034667pt;}
._14_c00289{width:22.218667pt;}
._20_c00289{width:23.949333pt;}
._13_c00289{width:25.581333pt;}
._16_c00289{width:26.733333pt;}
._27_c00289{width:30.520000pt;}
._18_c00289{width:33.848000pt;}
._26_c00289{width:42.341333pt;}
._1b_c00289{width:49.496000pt;}
._1a_c00289{width:52.536000pt;}
._1c_c00289{width:93.568000pt;}
._1d_c00289{width:150.637333pt;}
._11_c00289{width:185.416000pt;}
._2_c00289{width:338.821333pt;}
.fs3_c00289{font-size:21.333333pt;}
.fs4_c00289{font-size:42.666667pt;}
.fs0_c00289{font-size:50.666667pt;}
.fs2_c00289{font-size:53.333333pt;}
.fs1_c00289{font-size:61.333333pt;}
.y0_c00289{bottom:0.000000pt;}
.y56_c00289{bottom:2.760000pt;}
.y55_c00289{bottom:6.425212pt;}
.y54_c00289{bottom:31.466667pt;}
.y53_c00289{bottom:48.266667pt;}
.y2a_c00289{bottom:51.066667pt;}
.y52_c00289{bottom:65.600000pt;}
.y29_c00289{bottom:67.600000pt;}
.y51_c00289{bottom:81.333333pt;}
.y28_c00289{bottom:84.000000pt;}
.y50_c00289{bottom:97.733333pt;}
.y27_c00289{bottom:100.266667pt;}
.y4f_c00289{bottom:113.733333pt;}
.y26_c00289{bottom:115.866667pt;}
.y4e_c00289{bottom:130.133333pt;}
.y25_c00289{bottom:132.666667pt;}
.y4d_c00289{bottom:145.466667pt;}
.y24_c00289{bottom:148.800000pt;}
.y4c_c00289{bottom:162.266667pt;}
.y23_c00289{bottom:164.666667pt;}
.y4b_c00289{bottom:178.533333pt;}
.y22_c00289{bottom:180.666667pt;}
.y4a_c00289{bottom:194.133333pt;}
.y21_c00289{bottom:197.733333pt;}
.y49_c00289{bottom:211.200000pt;}
.y20_c00289{bottom:213.600000pt;}
.y48_c00289{bottom:227.600000pt;}
.y1f_c00289{bottom:229.866667pt;}
.y47_c00289{bottom:243.333333pt;}
.y1e_c00289{bottom:246.266667pt;}
.y46_c00289{bottom:259.733333pt;}
.y1d_c00289{bottom:262.266667pt;}
.y45_c00289{bottom:275.600000pt;}
.y1c_c00289{bottom:278.133333pt;}
.y44_c00289{bottom:292.133333pt;}
.y1b_c00289{bottom:294.400000pt;}
.y43_c00289{bottom:308.933333pt;}
.y1a_c00289{bottom:311.733333pt;}
.y42_c00289{bottom:324.533333pt;}
.y19_c00289{bottom:327.600000pt;}
.y41_c00289{bottom:340.800000pt;}
.y18_c00289{bottom:343.600000pt;}
.y40_c00289{bottom:357.333333pt;}
.y17_c00289{bottom:360.000000pt;}
.y3f_c00289{bottom:373.733333pt;}
.y16_c00289{bottom:376.400000pt;}
.y3e_c00289{bottom:389.733333pt;}
.y15_c00289{bottom:392.933333pt;}
.y3d_c00289{bottom:405.333333pt;}
.y14_c00289{bottom:409.466667pt;}
.y3c_c00289{bottom:422.000000pt;}
.y13_c00289{bottom:425.066667pt;}
.y3b_c00289{bottom:438.000000pt;}
.y12_c00289{bottom:440.400000pt;}
.y3a_c00289{bottom:454.133333pt;}
.y11_c00289{bottom:456.000000pt;}
.y39_c00289{bottom:470.400000pt;}
.y10_c00289{bottom:472.400000pt;}
.y38_c00289{bottom:486.000000pt;}
.yf_c00289{bottom:488.400000pt;}
.y37_c00289{bottom:503.066667pt;}
.ye_c00289{bottom:504.933333pt;}
.y36_c00289{bottom:519.333333pt;}
.yd_c00289{bottom:520.800000pt;}
.y35_c00289{bottom:535.600000pt;}
.yc_c00289{bottom:537.200000pt;}
.y34_c00289{bottom:551.733333pt;}
.yb_c00289{bottom:553.200000pt;}
.y33_c00289{bottom:568.266667pt;}
.ya_c00289{bottom:569.333333pt;}
.y32_c00289{bottom:584.133333pt;}
.y9_c00289{bottom:585.600000pt;}
.y31_c00289{bottom:600.000000pt;}
.y8_c00289{bottom:601.733333pt;}
.y30_c00289{bottom:616.800000pt;}
.y7_c00289{bottom:617.600000pt;}
.y2f_c00289{bottom:633.066667pt;}
.y6_c00289{bottom:633.600000pt;}
.y2e_c00289{bottom:648.400000pt;}
.y5_c00289{bottom:649.200000pt;}
.y2d_c00289{bottom:664.266667pt;}
.y4_c00289{bottom:666.000000pt;}
.y2c_c00289{bottom:680.400000pt;}
.y3_c00289{bottom:682.000000pt;}
.y2b_c00289{bottom:696.266667pt;}
.y2_c00289{bottom:698.400000pt;}
.y1_c00289{bottom:715.733333pt;}
.h5_c00289{height:11.733399pt;}
.h6_c00289{height:38.937500pt;}
.h3_c00289{height:55.893333pt;}
.h4_c00289{height:56.906667pt;}
.h2_c00289{height:65.442667pt;}
.h1_c00289{height:741.333333pt;}
.h0_c00289{height:741.600000pt;}
.w2_c00289{width:93.222667pt;}
.w1_c00289{width:496.666667pt;}
.w0_c00289{width:496.800000pt;}
.x0_c00289{left:0.000000pt;}
.x9_c00289{left:27.333333pt;}
.x8_c00289{left:29.066667pt;}
.xc_c00289{left:81.866667pt;}
.xb_c00289{left:83.200000pt;}
.xa_c00289{left:84.266667pt;}
.x7_c00289{left:85.200000pt;}
.x6_c00289{left:86.666667pt;}
.x5_c00289{left:87.600000pt;}
.x4_c00289{left:89.066667pt;}
.x3_c00289{left:90.000000pt;}
.x2_c00289{left:90.933333pt;}
.x1_c00289{left:93.600000pt;}
.x16_c00289{left:205.568237pt;}
.xe_c00289{left:268.533333pt;}
.x14_c00289{left:275.066667pt;}
.x13_c00289{left:276.266667pt;}
.x12_c00289{left:277.200000pt;}
.xd_c00289{left:278.666667pt;}
.x10_c00289{left:279.600000pt;}
.xf_c00289{left:280.533333pt;}
.x11_c00289{left:325.600000pt;}
.x15_c00289{left:424.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_cb06ba494fe51f8eaa6cca86.woff2')format("woff");}.ff1_c00290{font-family:ff1_c00290;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00290;src:url('chunks/assets/font_f9c5d82cf3700ddceb2e7a14.woff2')format("woff");}.ff2_c00290{font-family:ff2_c00290;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00290;src:url('chunks/assets/font_eb266562233390f5ba9e9d93.woff2')format("woff");}.ff3_c00290{font-family:ff3_c00290;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00290;src:url('chunks/assets/font_8dd5af6fcd7258b56c228300.woff2')format("woff");}.ff4_c00290{font-family:ff4_c00290;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00290;src:url('chunks/assets/font_05cd92f46c9af117d8b1cd23.woff2')format("woff");}.ff5_c00290{font-family:ff5_c00290;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00290;src:url('chunks/assets/font_48c6310d16555ec26a1b5125.woff2')format("woff");}.ff6_c00290{font-family:ff6_c00290;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00290;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff7_c00290{font-family:ff7_c00290;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00290{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00290{vertical-align:0.000000px;}
.ls5_c00290{letter-spacing:0.000000px;}
.ls0_c00290{letter-spacing:1.200000px;}
.ls6_c00290{letter-spacing:3.000000px;}
.ls4_c00290{letter-spacing:6.000000px;}
.ls3_c00290{letter-spacing:9.000000px;}
.ls2_c00290{letter-spacing:12.000000px;}
.ls1_c00290{letter-spacing:45.540000px;}
.sc__c00290{text-shadow:none;}
.sc0_c00290{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00290{-webkit-text-stroke:0px transparent;}
.sc0_c00290{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00290{word-spacing:-22.491000px;}
.ws1_c00290{word-spacing:-18.060000px;}
.ws2_c00290{word-spacing:-14.160000px;}
.ws3_c00290{word-spacing:0.000000px;}
._25_c00290{margin-left:-26.943000px;}
._0_c00290{margin-left:-20.367000px;}
._1_c00290{margin-left:-17.205000px;}
._5_c00290{margin-left:-14.601000px;}
._3_c00290{margin-left:-12.276000px;}
._6_c00290{margin-left:-9.393000px;}
._1e_c00290{margin-left:-7.914000px;}
._4_c00290{margin-left:-6.045000px;}
._7_c00290{margin-left:-4.929000px;}
._16_c00290{margin-left:-3.891000px;}
._9_c00290{margin-left:-2.553000px;}
._12_c00290{margin-left:-1.242000px;}
._11_c00290{width:1.038000px;}
._f_c00290{width:2.040000px;}
._c_c00290{width:3.780000px;}
._b_c00290{width:4.800000px;}
._13_c00290{width:6.060000px;}
._e_c00290{width:7.500000px;}
._14_c00290{width:8.700000px;}
._a_c00290{width:10.560000px;}
._2_c00290{width:12.183000px;}
._15_c00290{width:14.013000px;}
._d_c00290{width:15.600000px;}
._24_c00290{width:17.520000px;}
._18_c00290{width:19.266000px;}
._19_c00290{width:20.682000px;}
._17_c00290{width:22.182000px;}
._1a_c00290{width:23.628000px;}
._1c_c00290{width:24.756000px;}
._20_c00290{width:27.168000px;}
._23_c00290{width:29.040000px;}
._1b_c00290{width:31.806000px;}
._1d_c00290{width:33.078000px;}
._27_c00290{width:35.448000px;}
._29_c00290{width:44.580000px;}
._26_c00290{width:45.888000px;}
._1f_c00290{width:51.894000px;}
._10_c00290{width:70.860000px;}
._22_c00290{width:119.616000px;}
._21_c00290{width:122.442000px;}
._28_c00290{width:224.985000px;}
._8_c00290{width:401.874000px;}
.fc2_c00290{color:transparent;}
.fc1_c00290{color:rgb(128,128,128);}
.fc0_c00290{color:rgb(0,0,0);}
.fs3_c00290{font-size:48.000000px;}
.fs2_c00290{font-size:60.000000px;}
.fs1_c00290{font-size:69.000000px;}
.fs0_c00290{font-size:93.000000px;}
.y0_c00290{bottom:0.000000px;}
.y51_c00290{bottom:3.105000px;}
.y50_c00290{bottom:7.228357px;}
.y4f_c00290{bottom:43.830000px;}
.y4e_c00290{bottom:62.430000px;}
.y27_c00290{bottom:63.480000px;}
.y4d_c00290{bottom:79.980000px;}
.y26_c00290{bottom:82.980000px;}
.y4c_c00290{bottom:98.280000px;}
.y25_c00290{bottom:100.980000px;}
.y4b_c00290{bottom:116.430000px;}
.y24_c00290{bottom:118.530000px;}
.y4a_c00290{bottom:134.730000px;}
.y23_c00290{bottom:136.680000px;}
.y49_c00290{bottom:153.180000px;}
.y22_c00290{bottom:154.680000px;}
.y48_c00290{bottom:171.480000px;}
.y21_c00290{bottom:173.130000px;}
.y47_c00290{bottom:188.730000px;}
.y20_c00290{bottom:191.130000px;}
.y46_c00290{bottom:207.330000px;}
.y1f_c00290{bottom:208.230000px;}
.y45_c00290{bottom:224.730000px;}
.y1e_c00290{bottom:227.880000px;}
.y44_c00290{bottom:243.630000px;}
.y1d_c00290{bottom:245.430000px;}
.y43_c00290{bottom:261.930000px;}
.y1c_c00290{bottom:262.680000px;}
.y42_c00290{bottom:279.780000px;}
.y1b_c00290{bottom:280.830000px;}
.y41_c00290{bottom:297.630000px;}
.y1a_c00290{bottom:298.680000px;}
.y40_c00290{bottom:316.680000px;}
.y3f_c00290{bottom:334.230000px;}
.y19_c00290{bottom:334.830000px;}
.y3e_c00290{bottom:352.680000px;}
.y18_c00290{bottom:353.130000px;}
.y17_c00290{bottom:370.980000px;}
.y16_c00290{bottom:388.530000px;}
.y3d_c00290{bottom:389.130000px;}
.y15_c00290{bottom:406.080000px;}
.y3c_c00290{bottom:406.680000px;}
.y14_c00290{bottom:424.230000px;}
.y3b_c00290{bottom:425.280000px;}
.y3a_c00290{bottom:443.430000px;}
.y13_c00290{bottom:459.330000px;}
.y39_c00290{bottom:461.130000px;}
.y38_c00290{bottom:478.980000px;}
.y12_c00290{bottom:494.430000px;}
.y37_c00290{bottom:497.580000px;}
.y11_c00290{bottom:513.030000px;}
.y36_c00290{bottom:515.430000px;}
.y10_c00290{bottom:530.580000px;}
.y35_c00290{bottom:533.580000px;}
.yf_c00290{bottom:548.130000px;}
.y34_c00290{bottom:551.880000px;}
.ye_c00290{bottom:566.730000px;}
.y33_c00290{bottom:570.330000px;}
.yd_c00290{bottom:584.280000px;}
.y32_c00290{bottom:587.880000px;}
.yc_c00290{bottom:602.880000px;}
.y31_c00290{bottom:605.880000px;}
.yb_c00290{bottom:620.430000px;}
.y30_c00290{bottom:623.430000px;}
.ya_c00290{bottom:637.980000px;}
.y2f_c00290{bottom:641.880000px;}
.y9_c00290{bottom:656.430000px;}
.y2e_c00290{bottom:659.880000px;}
.y8_c00290{bottom:674.430000px;}
.y2d_c00290{bottom:677.730000px;}
.y7_c00290{bottom:693.630000px;}
.y2c_c00290{bottom:695.880000px;}
.y6_c00290{bottom:710.880000px;}
.y2b_c00290{bottom:713.580000px;}
.y5_c00290{bottom:728.280000px;}
.y2a_c00290{bottom:732.030000px;}
.y4_c00290{bottom:746.580000px;}
.y29_c00290{bottom:749.580000px;}
.y3_c00290{bottom:764.880000px;}
.y28_c00290{bottom:768.180000px;}
.y2_c00290{bottom:784.080000px;}
.y1_c00290{bottom:804.930000px;}
.h6_c00290{height:13.200074px;}
.h7_c00290{height:43.804688px;}
.h4_c00290{height:62.880000px;}
.h5_c00290{height:64.020000px;}
.h3_c00290{height:73.623000px;}
.h2_c00290{height:91.274414px;}
.h0_c00290{height:841.350000px;}
.h1_c00290{height:841.500000px;}
.w1_c00290{width:104.875500px;}
.w0_c00290{width:590.250000px;}
.x0_c00290{left:0.000000px;}
.x10_c00290{left:17.850000px;}
.x11_c00290{left:19.950000px;}
.x12_c00290{left:75.600000px;}
.xf_c00290{left:76.950000px;}
.x6_c00290{left:81.900000px;}
.x5_c00290{left:82.950000px;}
.x4_c00290{left:84.000000px;}
.x3_c00290{left:85.500000px;}
.x2_c00290{left:87.750000px;}
.x9_c00290{left:96.150000px;}
.xe_c00290{left:100.350000px;}
.xa_c00290{left:111.000000px;}
.xd_c00290{left:113.400000px;}
.x8_c00290{left:115.650000px;}
.xb_c00290{left:127.200000px;}
.xc_c00290{left:143.400000px;}
.x7_c00290{left:152.550000px;}
.x1_c00290{left:231.150000px;}
.x1d_c00290{left:246.939240px;}
.x1a_c00290{left:295.050000px;}
.x17_c00290{left:296.400000px;}
.x19_c00290{left:297.750000px;}
.x18_c00290{left:299.100000px;}
.x16_c00290{left:300.150000px;}
.x15_c00290{left:301.500000px;}
.x13_c00290{left:303.750000px;}
.x14_c00290{left:304.800000px;}
.x1b_c00290{left:345.000000px;}
.x1c_c00290{left:468.150000px;}
@media print{
.v0_c00290{vertical-align:0.000000pt;}
.ls5_c00290{letter-spacing:0.000000pt;}
.ls0_c00290{letter-spacing:1.066667pt;}
.ls6_c00290{letter-spacing:2.666667pt;}
.ls4_c00290{letter-spacing:5.333333pt;}
.ls3_c00290{letter-spacing:8.000000pt;}
.ls2_c00290{letter-spacing:10.666667pt;}
.ls1_c00290{letter-spacing:40.480000pt;}
.ws0_c00290{word-spacing:-19.992000pt;}
.ws1_c00290{word-spacing:-16.053333pt;}
.ws2_c00290{word-spacing:-12.586667pt;}
.ws3_c00290{word-spacing:0.000000pt;}
._25_c00290{margin-left:-23.949333pt;}
._0_c00290{margin-left:-18.104000pt;}
._1_c00290{margin-left:-15.293333pt;}
._5_c00290{margin-left:-12.978667pt;}
._3_c00290{margin-left:-10.912000pt;}
._6_c00290{margin-left:-8.349333pt;}
._1e_c00290{margin-left:-7.034667pt;}
._4_c00290{margin-left:-5.373333pt;}
._7_c00290{margin-left:-4.381333pt;}
._16_c00290{margin-left:-3.458667pt;}
._9_c00290{margin-left:-2.269333pt;}
._12_c00290{margin-left:-1.104000pt;}
._11_c00290{width:0.922667pt;}
._f_c00290{width:1.813333pt;}
._c_c00290{width:3.360000pt;}
._b_c00290{width:4.266667pt;}
._13_c00290{width:5.386667pt;}
._e_c00290{width:6.666667pt;}
._14_c00290{width:7.733333pt;}
._a_c00290{width:9.386667pt;}
._2_c00290{width:10.829333pt;}
._15_c00290{width:12.456000pt;}
._d_c00290{width:13.866667pt;}
._24_c00290{width:15.573333pt;}
._18_c00290{width:17.125333pt;}
._19_c00290{width:18.384000pt;}
._17_c00290{width:19.717333pt;}
._1a_c00290{width:21.002667pt;}
._1c_c00290{width:22.005333pt;}
._20_c00290{width:24.149333pt;}
._23_c00290{width:25.813333pt;}
._1b_c00290{width:28.272000pt;}
._1d_c00290{width:29.402667pt;}
._27_c00290{width:31.509333pt;}
._29_c00290{width:39.626667pt;}
._26_c00290{width:40.789333pt;}
._1f_c00290{width:46.128000pt;}
._10_c00290{width:62.986667pt;}
._22_c00290{width:106.325333pt;}
._21_c00290{width:108.837333pt;}
._28_c00290{width:199.986667pt;}
._8_c00290{width:357.221333pt;}
.fs3_c00290{font-size:42.666667pt;}
.fs2_c00290{font-size:53.333333pt;}
.fs1_c00290{font-size:61.333333pt;}
.fs0_c00290{font-size:82.666667pt;}
.y0_c00290{bottom:0.000000pt;}
.y51_c00290{bottom:2.760000pt;}
.y50_c00290{bottom:6.425206pt;}
.y4f_c00290{bottom:38.960000pt;}
.y4e_c00290{bottom:55.493333pt;}
.y27_c00290{bottom:56.426667pt;}
.y4d_c00290{bottom:71.093333pt;}
.y26_c00290{bottom:73.760000pt;}
.y4c_c00290{bottom:87.360000pt;}
.y25_c00290{bottom:89.760000pt;}
.y4b_c00290{bottom:103.493333pt;}
.y24_c00290{bottom:105.360000pt;}
.y4a_c00290{bottom:119.760000pt;}
.y23_c00290{bottom:121.493333pt;}
.y49_c00290{bottom:136.160000pt;}
.y22_c00290{bottom:137.493333pt;}
.y48_c00290{bottom:152.426667pt;}
.y21_c00290{bottom:153.893333pt;}
.y47_c00290{bottom:167.760000pt;}
.y20_c00290{bottom:169.893333pt;}
.y46_c00290{bottom:184.293333pt;}
.y1f_c00290{bottom:185.093333pt;}
.y45_c00290{bottom:199.760000pt;}
.y1e_c00290{bottom:202.560000pt;}
.y44_c00290{bottom:216.560000pt;}
.y1d_c00290{bottom:218.160000pt;}
.y43_c00290{bottom:232.826667pt;}
.y1c_c00290{bottom:233.493333pt;}
.y42_c00290{bottom:248.693333pt;}
.y1b_c00290{bottom:249.626667pt;}
.y41_c00290{bottom:264.560000pt;}
.y1a_c00290{bottom:265.493333pt;}
.y40_c00290{bottom:281.493333pt;}
.y3f_c00290{bottom:297.093333pt;}
.y19_c00290{bottom:297.626667pt;}
.y3e_c00290{bottom:313.493333pt;}
.y18_c00290{bottom:313.893333pt;}
.y17_c00290{bottom:329.760000pt;}
.y16_c00290{bottom:345.360000pt;}
.y3d_c00290{bottom:345.893333pt;}
.y15_c00290{bottom:360.960000pt;}
.y3c_c00290{bottom:361.493333pt;}
.y14_c00290{bottom:377.093333pt;}
.y3b_c00290{bottom:378.026667pt;}
.y3a_c00290{bottom:394.160000pt;}
.y13_c00290{bottom:408.293333pt;}
.y39_c00290{bottom:409.893333pt;}
.y38_c00290{bottom:425.760000pt;}
.y12_c00290{bottom:439.493333pt;}
.y37_c00290{bottom:442.293333pt;}
.y11_c00290{bottom:456.026667pt;}
.y36_c00290{bottom:458.160000pt;}
.y10_c00290{bottom:471.626667pt;}
.y35_c00290{bottom:474.293333pt;}
.yf_c00290{bottom:487.226667pt;}
.y34_c00290{bottom:490.560000pt;}
.ye_c00290{bottom:503.760000pt;}
.y33_c00290{bottom:506.960000pt;}
.yd_c00290{bottom:519.360000pt;}
.y32_c00290{bottom:522.560000pt;}
.yc_c00290{bottom:535.893333pt;}
.y31_c00290{bottom:538.560000pt;}
.yb_c00290{bottom:551.493333pt;}
.y30_c00290{bottom:554.160000pt;}
.ya_c00290{bottom:567.093333pt;}
.y2f_c00290{bottom:570.560000pt;}
.y9_c00290{bottom:583.493333pt;}
.y2e_c00290{bottom:586.560000pt;}
.y8_c00290{bottom:599.493333pt;}
.y2d_c00290{bottom:602.426667pt;}
.y7_c00290{bottom:616.560000pt;}
.y2c_c00290{bottom:618.560000pt;}
.y6_c00290{bottom:631.893333pt;}
.y2b_c00290{bottom:634.293333pt;}
.y5_c00290{bottom:647.360000pt;}
.y2a_c00290{bottom:650.693333pt;}
.y4_c00290{bottom:663.626667pt;}
.y29_c00290{bottom:666.293333pt;}
.y3_c00290{bottom:679.893333pt;}
.y28_c00290{bottom:682.826667pt;}
.y2_c00290{bottom:696.960000pt;}
.y1_c00290{bottom:715.493333pt;}
.h6_c00290{height:11.733399pt;}
.h7_c00290{height:38.937500pt;}
.h4_c00290{height:55.893333pt;}
.h5_c00290{height:56.906667pt;}
.h3_c00290{height:65.442667pt;}
.h2_c00290{height:81.132812pt;}
.h0_c00290{height:747.866667pt;}
.h1_c00290{height:748.000000pt;}
.w1_c00290{width:93.222667pt;}
.w0_c00290{width:524.666667pt;}
.x0_c00290{left:0.000000pt;}
.x10_c00290{left:15.866667pt;}
.x11_c00290{left:17.733333pt;}
.x12_c00290{left:67.200000pt;}
.xf_c00290{left:68.400000pt;}
.x6_c00290{left:72.800000pt;}
.x5_c00290{left:73.733333pt;}
.x4_c00290{left:74.666667pt;}
.x3_c00290{left:76.000000pt;}
.x2_c00290{left:78.000000pt;}
.x9_c00290{left:85.466667pt;}
.xe_c00290{left:89.200000pt;}
.xa_c00290{left:98.666667pt;}
.xd_c00290{left:100.800000pt;}
.x8_c00290{left:102.800000pt;}
.xb_c00290{left:113.066667pt;}
.xc_c00290{left:127.466667pt;}
.x7_c00290{left:135.600000pt;}
.x1_c00290{left:205.466667pt;}
.x1d_c00290{left:219.501546pt;}
.x1a_c00290{left:262.266667pt;}
.x17_c00290{left:263.466667pt;}
.x19_c00290{left:264.666667pt;}
.x18_c00290{left:265.866667pt;}
.x16_c00290{left:266.800000pt;}
.x15_c00290{left:268.000000pt;}
.x13_c00290{left:270.000000pt;}
.x14_c00290{left:270.933333pt;}
.x1b_c00290{left:306.666667pt;}
.x1c_c00290{left:416.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4dcfe5d6d514291eab1e875e.woff2')format("woff");}.ff1_c00291{font-family:ff1_c00291;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00291;src:url('chunks/assets/font_1abf7ac2837eff96bb794804.woff2')format("woff");}.ff2_c00291{font-family:ff2_c00291;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00291;src:url('chunks/assets/font_f2ece7a341ff74bd835b21c0.woff2')format("woff");}.ff3_c00291{font-family:ff3_c00291;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00291;src:url('chunks/assets/font_61c7f13efd9486416b8c694a.woff2')format("woff");}.ff4_c00291{font-family:ff4_c00291;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00291;src:url('chunks/assets/font_f6e2691369276e9bcb1ad93a.woff2')format("woff");}.ff5_c00291{font-family:ff5_c00291;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00291;src:url('chunks/assets/font_0a0d8b73f1fde46bbe319c1d.woff2')format("woff");}.ff6_c00291{font-family:ff6_c00291;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00291;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff7_c00291{font-family:ff7_c00291;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00291{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00291{vertical-align:0.000000px;}
.lsb_c00291{letter-spacing:0.000000px;}
.ls3_c00291{letter-spacing:0.600000px;}
.ls7_c00291{letter-spacing:1.140000px;}
.ls6_c00291{letter-spacing:2.580000px;}
.ls9_c00291{letter-spacing:3.000000px;}
.ls5_c00291{letter-spacing:5.805000px;}
.lsc_c00291{letter-spacing:6.000000px;}
.ls1_c00291{letter-spacing:6.600000px;}
.ls4_c00291{letter-spacing:10.800000px;}
.ls8_c00291{letter-spacing:12.600000px;}
.ls2_c00291{letter-spacing:19.800000px;}
.lsa_c00291{letter-spacing:20.340000px;}
.ls0_c00291{letter-spacing:46.140000px;}
.sc__c00291{text-shadow:none;}
.sc0_c00291{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00291{-webkit-text-stroke:0px transparent;}
.sc0_c00291{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00291{word-spacing:-35.295000px;}
.ws6_c00291{word-spacing:-29.295000px;}
.ws1_c00291{word-spacing:-20.340000px;}
.ws4_c00291{word-spacing:-18.060000px;}
.ws7_c00291{word-spacing:-17.340000px;}
.ws0_c00291{word-spacing:-14.160000px;}
.ws3_c00291{word-spacing:-13.500000px;}
.ws2_c00291{word-spacing:-12.801000px;}
.ws8_c00291{word-spacing:0.000000px;}
._1b_c00291{margin-left:-27.234000px;}
._19_c00291{margin-left:-15.576000px;}
._d_c00291{margin-left:-13.158000px;}
._c_c00291{margin-left:-12.078000px;}
._16_c00291{margin-left:-10.971000px;}
._11_c00291{margin-left:-9.141000px;}
._10_c00291{margin-left:-7.179000px;}
._6_c00291{margin-left:-5.520000px;}
._18_c00291{margin-left:-4.284000px;}
._b_c00291{margin-left:-2.970000px;}
._9_c00291{margin-left:-1.860000px;}
._4_c00291{width:1.560000px;}
._0_c00291{width:3.480000px;}
._1_c00291{width:4.620000px;}
._2_c00291{width:5.700000px;}
._a_c00291{width:7.599000px;}
._5_c00291{width:8.640000px;}
._7_c00291{width:10.260000px;}
._17_c00291{width:11.664000px;}
._1d_c00291{width:12.921000px;}
._14_c00291{width:14.220000px;}
._15_c00291{width:16.350000px;}
._22_c00291{width:18.660000px;}
._8_c00291{width:20.100000px;}
._e_c00291{width:21.918000px;}
._f_c00291{width:23.931000px;}
._12_c00291{width:24.990000px;}
._25_c00291{width:27.501000px;}
._1e_c00291{width:28.917000px;}
._13_c00291{width:31.467000px;}
._21_c00291{width:35.100000px;}
._20_c00291{width:39.180000px;}
._1a_c00291{width:44.400000px;}
._26_c00291{width:58.533000px;}
._23_c00291{width:67.599000px;}
._1c_c00291{width:71.637000px;}
._24_c00291{width:94.260000px;}
._1f_c00291{width:112.578000px;}
._27_c00291{width:122.901000px;}
._3_c00291{width:157.140000px;}
.fc2_c00291{color:transparent;}
.fc1_c00291{color:rgb(128,128,128);}
.fc0_c00291{color:rgb(0,0,0);}
.fs3_c00291{font-size:45.000000px;}
.fs4_c00291{font-size:48.000000px;}
.fs1_c00291{font-size:51.000000px;}
.fs2_c00291{font-size:54.000000px;}
.fs0_c00291{font-size:60.000000px;}
.y0_c00291{bottom:0.000000px;}
.y53_c00291{bottom:3.105000px;}
.y52_c00291{bottom:7.228369px;}
.y51_c00291{bottom:43.170000px;}
.y2a_c00291{bottom:60.720000px;}
.y29_c00291{bottom:78.870000px;}
.y50_c00291{bottom:79.620000px;}
.y4f_c00291{bottom:97.470000px;}
.y28_c00291{bottom:98.520000px;}
.y4e_c00291{bottom:115.470000px;}
.y27_c00291{bottom:116.370000px;}
.y4d_c00291{bottom:134.370000px;}
.y26_c00291{bottom:134.970000px;}
.y4c_c00291{bottom:152.220000px;}
.y25_c00291{bottom:153.120000px;}
.y4b_c00291{bottom:170.820000px;}
.y24_c00291{bottom:171.120000px;}
.y23_c00291{bottom:188.970000px;}
.y22_c00291{bottom:206.520000px;}
.y4a_c00291{bottom:207.270000px;}
.y21_c00291{bottom:225.720000px;}
.y49_c00291{bottom:244.020000px;}
.y20_c00291{bottom:244.320000px;}
.y1f_c00291{bottom:261.570000px;}
.y48_c00291{bottom:262.470000px;}
.y47_c00291{bottom:280.020000px;}
.y1e_c00291{bottom:280.770000px;}
.y1d_c00291{bottom:298.320000px;}
.y1_c00291{bottom:311.520000px;}
.y1c_c00291{bottom:316.170000px;}
.y46_c00291{bottom:316.470000px;}
.y45_c00291{bottom:334.770000px;}
.y1b_c00291{bottom:335.820000px;}
.y44_c00291{bottom:353.070000px;}
.y1a_c00291{bottom:354.270000px;}
.y43_c00291{bottom:371.520000px;}
.y19_c00291{bottom:372.870000px;}
.y42_c00291{bottom:389.820000px;}
.y18_c00291{bottom:390.120000px;}
.y41_c00291{bottom:407.370000px;}
.y17_c00291{bottom:407.970000px;}
.y40_c00291{bottom:425.970000px;}
.y16_c00291{bottom:427.170000px;}
.y3f_c00291{bottom:444.420000px;}
.y15_c00291{bottom:445.170000px;}
.y3e_c00291{bottom:462.270000px;}
.y14_c00291{bottom:462.720000px;}
.y3d_c00291{bottom:480.570000px;}
.y13_c00291{bottom:481.320000px;}
.y3c_c00291{bottom:498.720000px;}
.y12_c00291{bottom:499.470000px;}
.y3b_c00291{bottom:517.620000px;}
.y11_c00291{bottom:517.770000px;}
.y3a_c00291{bottom:535.920000px;}
.y10_c00291{bottom:537.870000px;}
.y39_c00291{bottom:552.870000px;}
.yf_c00291{bottom:555.120000px;}
.y38_c00291{bottom:572.370000px;}
.ye_c00291{bottom:573.420000px;}
.y37_c00291{bottom:590.520000px;}
.yd_c00291{bottom:591.570000px;}
.y36_c00291{bottom:608.220000px;}
.yc_c00291{bottom:609.570000px;}
.y35_c00291{bottom:626.670000px;}
.yb_c00291{bottom:628.020000px;}
.y34_c00291{bottom:644.670000px;}
.ya_c00291{bottom:645.870000px;}
.y33_c00291{bottom:663.120000px;}
.y9_c00291{bottom:664.470000px;}
.y32_c00291{bottom:681.420000px;}
.y8_c00291{bottom:682.770000px;}
.y31_c00291{bottom:699.870000px;}
.y7_c00291{bottom:700.320000px;}
.y30_c00291{bottom:717.420000px;}
.y6_c00291{bottom:718.920000px;}
.y2f_c00291{bottom:735.720000px;}
.y5_c00291{bottom:736.770000px;}
.y2e_c00291{bottom:754.020000px;}
.y4_c00291{bottom:754.920000px;}
.y2d_c00291{bottom:772.170000px;}
.y3_c00291{bottom:773.520000px;}
.y2c_c00291{bottom:789.720000px;}
.y2_c00291{bottom:791.070000px;}
.y2b_c00291{bottom:810.570000px;}
.h6_c00291{height:13.200073px;}
.h7_c00291{height:43.804688px;}
.h5_c00291{height:53.448000px;}
.h4_c00291{height:57.618000px;}
.h2_c00291{height:62.880000px;}
.h3_c00291{height:64.020000px;}
.h1_c00291{height:837.750000px;}
.h0_c00291{height:838.050000px;}
.w2_c00291{width:104.875500px;}
.w0_c00291{width:561.600000px;}
.w1_c00291{width:561.750000px;}
.x0_c00291{left:0.000000px;}
.x8_c00291{left:22.350000px;}
.x9_c00291{left:23.700000px;}
.xd_c00291{left:28.800000px;}
.x4_c00291{left:76.050000px;}
.x1_c00291{left:80.250000px;}
.x2_c00291{left:81.300000px;}
.x3_c00291{left:82.800000px;}
.x5_c00291{left:84.300000px;}
.x6_c00291{left:85.500000px;}
.xa_c00291{left:87.450000px;}
.xb_c00291{left:89.100000px;}
.xc_c00291{left:90.150000px;}
.xe_c00291{left:91.500000px;}
.xf_c00291{left:92.850000px;}
.x7_c00291{left:105.000000px;}
.x1c_c00291{left:232.614258px;}
.x11_c00291{left:301.050000px;}
.x12_c00291{left:302.400000px;}
.x14_c00291{left:303.750000px;}
.x15_c00291{left:304.800000px;}
.x16_c00291{left:306.000000px;}
.x17_c00291{left:307.350000px;}
.x18_c00291{left:308.400000px;}
.x19_c00291{left:309.600000px;}
.x1a_c00291{left:311.550000px;}
.x10_c00291{left:325.350000px;}
.x13_c00291{left:327.750000px;}
.x1b_c00291{left:477.450000px;}
@media print{
.v0_c00291{vertical-align:0.000000pt;}
.lsb_c00291{letter-spacing:0.000000pt;}
.ls3_c00291{letter-spacing:0.533333pt;}
.ls7_c00291{letter-spacing:1.013333pt;}
.ls6_c00291{letter-spacing:2.293333pt;}
.ls9_c00291{letter-spacing:2.666667pt;}
.ls5_c00291{letter-spacing:5.160000pt;}
.lsc_c00291{letter-spacing:5.333333pt;}
.ls1_c00291{letter-spacing:5.866667pt;}
.ls4_c00291{letter-spacing:9.600000pt;}
.ls8_c00291{letter-spacing:11.200000pt;}
.ls2_c00291{letter-spacing:17.600000pt;}
.lsa_c00291{letter-spacing:18.080000pt;}
.ls0_c00291{letter-spacing:41.013333pt;}
.ws5_c00291{word-spacing:-31.373333pt;}
.ws6_c00291{word-spacing:-26.040000pt;}
.ws1_c00291{word-spacing:-18.080000pt;}
.ws4_c00291{word-spacing:-16.053333pt;}
.ws7_c00291{word-spacing:-15.413333pt;}
.ws0_c00291{word-spacing:-12.586667pt;}
.ws3_c00291{word-spacing:-12.000000pt;}
.ws2_c00291{word-spacing:-11.378667pt;}
.ws8_c00291{word-spacing:0.000000pt;}
._1b_c00291{margin-left:-24.208000pt;}
._19_c00291{margin-left:-13.845333pt;}
._d_c00291{margin-left:-11.696000pt;}
._c_c00291{margin-left:-10.736000pt;}
._16_c00291{margin-left:-9.752000pt;}
._11_c00291{margin-left:-8.125333pt;}
._10_c00291{margin-left:-6.381333pt;}
._6_c00291{margin-left:-4.906667pt;}
._18_c00291{margin-left:-3.808000pt;}
._b_c00291{margin-left:-2.640000pt;}
._9_c00291{margin-left:-1.653333pt;}
._4_c00291{width:1.386667pt;}
._0_c00291{width:3.093333pt;}
._1_c00291{width:4.106667pt;}
._2_c00291{width:5.066667pt;}
._a_c00291{width:6.754667pt;}
._5_c00291{width:7.680000pt;}
._7_c00291{width:9.120000pt;}
._17_c00291{width:10.368000pt;}
._1d_c00291{width:11.485333pt;}
._14_c00291{width:12.640000pt;}
._15_c00291{width:14.533333pt;}
._22_c00291{width:16.586667pt;}
._8_c00291{width:17.866667pt;}
._e_c00291{width:19.482667pt;}
._f_c00291{width:21.272000pt;}
._12_c00291{width:22.213333pt;}
._25_c00291{width:24.445333pt;}
._1e_c00291{width:25.704000pt;}
._13_c00291{width:27.970667pt;}
._21_c00291{width:31.200000pt;}
._20_c00291{width:34.826667pt;}
._1a_c00291{width:39.466667pt;}
._26_c00291{width:52.029333pt;}
._23_c00291{width:60.088000pt;}
._1c_c00291{width:63.677333pt;}
._24_c00291{width:83.786667pt;}
._1f_c00291{width:100.069333pt;}
._27_c00291{width:109.245333pt;}
._3_c00291{width:139.680000pt;}
.fs3_c00291{font-size:40.000000pt;}
.fs4_c00291{font-size:42.666667pt;}
.fs1_c00291{font-size:45.333333pt;}
.fs2_c00291{font-size:48.000000pt;}
.fs0_c00291{font-size:53.333333pt;}
.y0_c00291{bottom:0.000000pt;}
.y53_c00291{bottom:2.760000pt;}
.y52_c00291{bottom:6.425217pt;}
.y51_c00291{bottom:38.373333pt;}
.y2a_c00291{bottom:53.973333pt;}
.y29_c00291{bottom:70.106667pt;}
.y50_c00291{bottom:70.773333pt;}
.y4f_c00291{bottom:86.640000pt;}
.y28_c00291{bottom:87.573333pt;}
.y4e_c00291{bottom:102.640000pt;}
.y27_c00291{bottom:103.440000pt;}
.y4d_c00291{bottom:119.440000pt;}
.y26_c00291{bottom:119.973333pt;}
.y4c_c00291{bottom:135.306667pt;}
.y25_c00291{bottom:136.106667pt;}
.y4b_c00291{bottom:151.840000pt;}
.y24_c00291{bottom:152.106667pt;}
.y23_c00291{bottom:167.973333pt;}
.y22_c00291{bottom:183.573333pt;}
.y4a_c00291{bottom:184.240000pt;}
.y21_c00291{bottom:200.640000pt;}
.y49_c00291{bottom:216.906667pt;}
.y20_c00291{bottom:217.173333pt;}
.y1f_c00291{bottom:232.506667pt;}
.y48_c00291{bottom:233.306667pt;}
.y47_c00291{bottom:248.906667pt;}
.y1e_c00291{bottom:249.573333pt;}
.y1d_c00291{bottom:265.173333pt;}
.y1_c00291{bottom:276.906667pt;}
.y1c_c00291{bottom:281.040000pt;}
.y46_c00291{bottom:281.306667pt;}
.y45_c00291{bottom:297.573333pt;}
.y1b_c00291{bottom:298.506667pt;}
.y44_c00291{bottom:313.840000pt;}
.y1a_c00291{bottom:314.906667pt;}
.y43_c00291{bottom:330.240000pt;}
.y19_c00291{bottom:331.440000pt;}
.y42_c00291{bottom:346.506667pt;}
.y18_c00291{bottom:346.773333pt;}
.y41_c00291{bottom:362.106667pt;}
.y17_c00291{bottom:362.640000pt;}
.y40_c00291{bottom:378.640000pt;}
.y16_c00291{bottom:379.706667pt;}
.y3f_c00291{bottom:395.040000pt;}
.y15_c00291{bottom:395.706667pt;}
.y3e_c00291{bottom:410.906667pt;}
.y14_c00291{bottom:411.306667pt;}
.y3d_c00291{bottom:427.173333pt;}
.y13_c00291{bottom:427.840000pt;}
.y3c_c00291{bottom:443.306667pt;}
.y12_c00291{bottom:443.973333pt;}
.y3b_c00291{bottom:460.106667pt;}
.y11_c00291{bottom:460.240000pt;}
.y3a_c00291{bottom:476.373333pt;}
.y10_c00291{bottom:478.106667pt;}
.y39_c00291{bottom:491.440000pt;}
.yf_c00291{bottom:493.440000pt;}
.y38_c00291{bottom:508.773333pt;}
.ye_c00291{bottom:509.706667pt;}
.y37_c00291{bottom:524.906667pt;}
.yd_c00291{bottom:525.840000pt;}
.y36_c00291{bottom:540.640000pt;}
.yc_c00291{bottom:541.840000pt;}
.y35_c00291{bottom:557.040000pt;}
.yb_c00291{bottom:558.240000pt;}
.y34_c00291{bottom:573.040000pt;}
.ya_c00291{bottom:574.106667pt;}
.y33_c00291{bottom:589.440000pt;}
.y9_c00291{bottom:590.640000pt;}
.y32_c00291{bottom:605.706667pt;}
.y8_c00291{bottom:606.906667pt;}
.y31_c00291{bottom:622.106667pt;}
.y7_c00291{bottom:622.506667pt;}
.y30_c00291{bottom:637.706667pt;}
.y6_c00291{bottom:639.040000pt;}
.y2f_c00291{bottom:653.973333pt;}
.y5_c00291{bottom:654.906667pt;}
.y2e_c00291{bottom:670.240000pt;}
.y4_c00291{bottom:671.040000pt;}
.y2d_c00291{bottom:686.373333pt;}
.y3_c00291{bottom:687.573333pt;}
.y2c_c00291{bottom:701.973333pt;}
.y2_c00291{bottom:703.173333pt;}
.y2b_c00291{bottom:720.506667pt;}
.h6_c00291{height:11.733399pt;}
.h7_c00291{height:38.937500pt;}
.h5_c00291{height:47.509333pt;}
.h4_c00291{height:51.216000pt;}
.h2_c00291{height:55.893333pt;}
.h3_c00291{height:56.906667pt;}
.h1_c00291{height:744.666667pt;}
.h0_c00291{height:744.933333pt;}
.w2_c00291{width:93.222667pt;}
.w0_c00291{width:499.200000pt;}
.w1_c00291{width:499.333333pt;}
.x0_c00291{left:0.000000pt;}
.x8_c00291{left:19.866667pt;}
.x9_c00291{left:21.066667pt;}
.xd_c00291{left:25.600000pt;}
.x4_c00291{left:67.600000pt;}
.x1_c00291{left:71.333333pt;}
.x2_c00291{left:72.266667pt;}
.x3_c00291{left:73.600000pt;}
.x5_c00291{left:74.933333pt;}
.x6_c00291{left:76.000000pt;}
.xa_c00291{left:77.733333pt;}
.xb_c00291{left:79.200000pt;}
.xc_c00291{left:80.133333pt;}
.xe_c00291{left:81.333333pt;}
.xf_c00291{left:82.533333pt;}
.x7_c00291{left:93.333333pt;}
.x1c_c00291{left:206.768229pt;}
.x11_c00291{left:267.600000pt;}
.x12_c00291{left:268.800000pt;}
.x14_c00291{left:270.000000pt;}
.x15_c00291{left:270.933333pt;}
.x16_c00291{left:272.000000pt;}
.x17_c00291{left:273.200000pt;}
.x18_c00291{left:274.133333pt;}
.x19_c00291{left:275.200000pt;}
.x1a_c00291{left:276.933333pt;}
.x10_c00291{left:289.200000pt;}
.x13_c00291{left:291.333333pt;}
.x1b_c00291{left:424.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7291275b3d69830ea8348178.woff2')format("woff");}.ff1_c00292{font-family:ff1_c00292;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00292;src:url('chunks/assets/font_b45df383b5248bbcd278e9e1.woff2')format("woff");}.ff2_c00292{font-family:ff2_c00292;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00292;src:url('chunks/assets/font_603d9d0185909851a73f8ac6.woff2')format("woff");}.ff3_c00292{font-family:ff3_c00292;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00292;src:url('chunks/assets/font_8eead029fae85d56a1610be0.woff2')format("woff");}.ff4_c00292{font-family:ff4_c00292;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00292;src:url('chunks/assets/font_7c7b114d6d8510036cb24ad0.woff2')format("woff");}.ff5_c00292{font-family:ff5_c00292;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00292;src:url('chunks/assets/font_5bb6c8625b7a8d33eea6889d.woff2')format("woff");}.ff6_c00292{font-family:ff6_c00292;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00292;src:url('chunks/assets/font_b206242578b6c2e67daac532.woff2')format("woff");}.ff7_c00292{font-family:ff7_c00292;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00292;src:url('chunks/assets/font_0ce391de997f24f9f9dd37f4.woff2')format("woff");}.ff8_c00292{font-family:ff8_c00292;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00292;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff9_c00292{font-family:ff9_c00292;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00292{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00292{vertical-align:0.000000px;}
.v1_c00292{vertical-align:17.400000px;}
.ls7_c00292{letter-spacing:0.000000px;}
.ls0_c00292{letter-spacing:0.840000px;}
.ls5_c00292{letter-spacing:1.980000px;}
.ls1_c00292{letter-spacing:3.000000px;}
.ls4_c00292{letter-spacing:7.305000px;}
.ls6_c00292{letter-spacing:8.364000px;}
.ls2_c00292{letter-spacing:10.800000px;}
.ls3_c00292{letter-spacing:125.940000px;}
.sc__c00292{text-shadow:none;}
.sc0_c00292{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00292{-webkit-text-stroke:0px transparent;}
.sc0_c00292{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00292{word-spacing:-59.550000px;}
.ws6_c00292{word-spacing:-29.295000px;}
.ws1_c00292{word-spacing:-20.340000px;}
.ws0_c00292{word-spacing:-18.060000px;}
.ws7_c00292{word-spacing:-17.340000px;}
.ws8_c00292{word-spacing:-16.320000px;}
.ws2_c00292{word-spacing:-15.060000px;}
.ws3_c00292{word-spacing:-14.160000px;}
.ws9_c00292{word-spacing:-13.623000px;}
.ws4_c00292{word-spacing:-2.700000px;}
.wsa_c00292{word-spacing:0.000000px;}
._22_c00292{margin-left:-23.280000px;}
._25_c00292{margin-left:-19.005000px;}
._10_c00292{margin-left:-15.840000px;}
._24_c00292{margin-left:-14.100000px;}
._26_c00292{margin-left:-12.060000px;}
._21_c00292{margin-left:-10.875000px;}
._1d_c00292{margin-left:-9.060000px;}
._11_c00292{margin-left:-7.440000px;}
._1b_c00292{margin-left:-6.240000px;}
._d_c00292{margin-left:-4.380000px;}
._9_c00292{margin-left:-3.000000px;}
._b_c00292{margin-left:-1.080000px;}
._e_c00292{width:1.020000px;}
._7_c00292{width:2.220000px;}
._6_c00292{width:3.540000px;}
._a_c00292{width:4.920000px;}
._12_c00292{width:5.940000px;}
._14_c00292{width:7.560000px;}
._c_c00292{width:9.240000px;}
._5_c00292{width:10.500000px;}
._1_c00292{width:12.540000px;}
._15_c00292{width:14.340000px;}
._0_c00292{width:15.840000px;}
._23_c00292{width:16.905000px;}
._8_c00292{width:18.000000px;}
._3_c00292{width:19.560000px;}
._4_c00292{width:21.660000px;}
._18_c00292{width:23.460000px;}
._13_c00292{width:25.080000px;}
._19_c00292{width:27.240000px;}
._f_c00292{width:28.740000px;}
._1e_c00292{width:32.100000px;}
._17_c00292{width:34.140000px;}
._1a_c00292{width:36.360000px;}
._16_c00292{width:38.940000px;}
._2_c00292{width:45.540000px;}
._1c_c00292{width:93.000000px;}
._27_c00292{width:112.260000px;}
._20_c00292{width:150.540000px;}
._28_c00292{width:254.340000px;}
._1f_c00292{width:465.060000px;}
.fc2_c00292{color:transparent;}
.fc1_c00292{color:rgb(128,128,128);}
.fc0_c00292{color:rgb(0,0,0);}
.fs1_c00292{font-size:36.000000px;}
.fs4_c00292{font-size:45.000000px;}
.fs6_c00292{font-size:48.000000px;}
.fs5_c00292{font-size:57.000000px;}
.fs0_c00292{font-size:60.000000px;}
.fs2_c00292{font-size:63.000000px;}
.fs3_c00292{font-size:75.000000px;}
.y0_c00292{bottom:0.000000px;}
.y51_c00292{bottom:3.105000px;}
.y50_c00292{bottom:7.228357px;}
.y4f_c00292{bottom:59.730000px;}
.y2a_c00292{bottom:61.530000px;}
.y4e_c00292{bottom:78.630000px;}
.y29_c00292{bottom:79.980000px;}
.y4d_c00292{bottom:96.480000px;}
.y28_c00292{bottom:98.280000px;}
.y4c_c00292{bottom:114.180000px;}
.y27_c00292{bottom:117.180000px;}
.y4b_c00292{bottom:132.930000px;}
.y26_c00292{bottom:135.030000px;}
.y4a_c00292{bottom:151.230000px;}
.y25_c00292{bottom:153.330000px;}
.y49_c00292{bottom:169.380000px;}
.y24_c00292{bottom:170.880000px;}
.y48_c00292{bottom:186.930000px;}
.y23_c00292{bottom:188.730000px;}
.y47_c00292{bottom:204.630000px;}
.y22_c00292{bottom:207.630000px;}
.y46_c00292{bottom:223.380000px;}
.y21_c00292{bottom:225.180000px;}
.y45_c00292{bottom:241.980000px;}
.y20_c00292{bottom:243.780000px;}
.y44_c00292{bottom:259.530000px;}
.y1f_c00292{bottom:261.630000px;}
.y43_c00292{bottom:278.430000px;}
.y1e_c00292{bottom:280.530000px;}
.y42_c00292{bottom:296.280000px;}
.y1d_c00292{bottom:297.780000px;}
.y41_c00292{bottom:314.880000px;}
.y1c_c00292{bottom:315.630000px;}
.y40_c00292{bottom:332.730000px;}
.y1b_c00292{bottom:333.780000px;}
.y3f_c00292{bottom:350.280000px;}
.y1a_c00292{bottom:351.630000px;}
.y3e_c00292{bottom:368.580000px;}
.y19_c00292{bottom:369.330000px;}
.y3d_c00292{bottom:385.830000px;}
.y18_c00292{bottom:387.180000px;}
.y3c_c00292{bottom:404.730000px;}
.y17_c00292{bottom:405.330000px;}
.y16_c00292{bottom:422.580000px;}
.y15_c00292{bottom:440.880000px;}
.y3b_c00292{bottom:458.730000px;}
.y14_c00292{bottom:459.630000px;}
.y3a_c00292{bottom:476.580000px;}
.y13_c00292{bottom:477.180000px;}
.y12_c00292{bottom:494.730000px;}
.y39_c00292{bottom:495.180000px;}
.y11_c00292{bottom:512.430000px;}
.y38_c00292{bottom:513.330000px;}
.y10_c00292{bottom:529.980000px;}
.y37_c00292{bottom:531.630000px;}
.yf_c00292{bottom:548.430000px;}
.y36_c00292{bottom:549.180000px;}
.ye_c00292{bottom:566.280000px;}
.y35_c00292{bottom:568.080000px;}
.y34_c00292{bottom:580.530000px;}
.yd_c00292{bottom:584.280000px;}
.yc_c00292{bottom:602.430000px;}
.yb_c00292{bottom:619.980000px;}
.y33_c00292{bottom:621.330000px;}
.ya_c00292{bottom:638.280000px;}
.y9_c00292{bottom:656.130000px;}
.y32_c00292{bottom:658.830000px;}
.y8_c00292{bottom:673.980000px;}
.y31_c00292{bottom:675.030000px;}
.y7_c00292{bottom:692.580000px;}
.y30_c00292{bottom:693.180000px;}
.y6_c00292{bottom:710.130000px;}
.y2f_c00292{bottom:711.480000px;}
.y5_c00292{bottom:728.430000px;}
.y2e_c00292{bottom:729.780000px;}
.y4_c00292{bottom:745.980000px;}
.y3_c00292{bottom:764.430000px;}
.y2d_c00292{bottom:764.730000px;}
.y2_c00292{bottom:781.980000px;}
.y2c_c00292{bottom:783.630000px;}
.y1_c00292{bottom:802.680000px;}
.y2b_c00292{bottom:802.980000px;}
.h7_c00292{height:13.200074px;}
.h4_c00292{height:39.024000px;}
.h8_c00292{height:43.804688px;}
.h2_c00292{height:62.880000px;}
.h3_c00292{height:64.020000px;}
.h6_c00292{height:78.600000px;}
.h5_c00292{height:83.424000px;}
.h0_c00292{height:841.350000px;}
.h1_c00292{height:841.500000px;}
.w1_c00292{width:104.875500px;}
.w0_c00292{width:590.250000px;}
.x0_c00292{left:0.000000px;}
.x3_c00292{left:63.000000px;}
.x2_c00292{left:65.100000px;}
.x4_c00292{left:66.150000px;}
.x5_c00292{left:67.500000px;}
.x6_c00292{left:68.850000px;}
.x7_c00292{left:70.200000px;}
.x8_c00292{left:71.850000px;}
.x9_c00292{left:73.200000px;}
.x1_c00292{left:184.200000px;}
.x1b_c00292{left:246.939240px;}
.xa_c00292{left:275.100000px;}
.xe_c00292{left:279.000000px;}
.xb_c00292{left:281.400000px;}
.xc_c00292{left:283.050000px;}
.x11_c00292{left:284.850000px;}
.x13_c00292{left:285.900000px;}
.x14_c00292{left:287.850000px;}
.x15_c00292{left:288.900000px;}
.x16_c00292{left:290.250000px;}
.x17_c00292{left:291.300000px;}
.x18_c00292{left:292.650000px;}
.x19_c00292{left:293.850000px;}
.x1a_c00292{left:294.900000px;}
.xf_c00292{left:309.600000px;}
.xd_c00292{left:313.500000px;}
.x12_c00292{left:325.800000px;}
.x10_c00292{left:363.900000px;}
@media print{
.v0_c00292{vertical-align:0.000000pt;}
.v1_c00292{vertical-align:15.466667pt;}
.ls7_c00292{letter-spacing:0.000000pt;}
.ls0_c00292{letter-spacing:0.746667pt;}
.ls5_c00292{letter-spacing:1.760000pt;}
.ls1_c00292{letter-spacing:2.666667pt;}
.ls4_c00292{letter-spacing:6.493333pt;}
.ls6_c00292{letter-spacing:7.434667pt;}
.ls2_c00292{letter-spacing:9.600000pt;}
.ls3_c00292{letter-spacing:111.946667pt;}
.ws5_c00292{word-spacing:-52.933333pt;}
.ws6_c00292{word-spacing:-26.040000pt;}
.ws1_c00292{word-spacing:-18.080000pt;}
.ws0_c00292{word-spacing:-16.053333pt;}
.ws7_c00292{word-spacing:-15.413333pt;}
.ws8_c00292{word-spacing:-14.506667pt;}
.ws2_c00292{word-spacing:-13.386667pt;}
.ws3_c00292{word-spacing:-12.586667pt;}
.ws9_c00292{word-spacing:-12.109333pt;}
.ws4_c00292{word-spacing:-2.400000pt;}
.wsa_c00292{word-spacing:0.000000pt;}
._22_c00292{margin-left:-20.693333pt;}
._25_c00292{margin-left:-16.893333pt;}
._10_c00292{margin-left:-14.080000pt;}
._24_c00292{margin-left:-12.533333pt;}
._26_c00292{margin-left:-10.720000pt;}
._21_c00292{margin-left:-9.666667pt;}
._1d_c00292{margin-left:-8.053333pt;}
._11_c00292{margin-left:-6.613333pt;}
._1b_c00292{margin-left:-5.546667pt;}
._d_c00292{margin-left:-3.893333pt;}
._9_c00292{margin-left:-2.666667pt;}
._b_c00292{margin-left:-0.960000pt;}
._e_c00292{width:0.906667pt;}
._7_c00292{width:1.973333pt;}
._6_c00292{width:3.146667pt;}
._a_c00292{width:4.373333pt;}
._12_c00292{width:5.280000pt;}
._14_c00292{width:6.720000pt;}
._c_c00292{width:8.213333pt;}
._5_c00292{width:9.333333pt;}
._1_c00292{width:11.146667pt;}
._15_c00292{width:12.746667pt;}
._0_c00292{width:14.080000pt;}
._23_c00292{width:15.026667pt;}
._8_c00292{width:16.000000pt;}
._3_c00292{width:17.386667pt;}
._4_c00292{width:19.253333pt;}
._18_c00292{width:20.853333pt;}
._13_c00292{width:22.293333pt;}
._19_c00292{width:24.213333pt;}
._f_c00292{width:25.546667pt;}
._1e_c00292{width:28.533333pt;}
._17_c00292{width:30.346667pt;}
._1a_c00292{width:32.320000pt;}
._16_c00292{width:34.613333pt;}
._2_c00292{width:40.480000pt;}
._1c_c00292{width:82.666667pt;}
._27_c00292{width:99.786667pt;}
._20_c00292{width:133.813333pt;}
._28_c00292{width:226.080000pt;}
._1f_c00292{width:413.386667pt;}
.fs1_c00292{font-size:32.000000pt;}
.fs4_c00292{font-size:40.000000pt;}
.fs6_c00292{font-size:42.666667pt;}
.fs5_c00292{font-size:50.666667pt;}
.fs0_c00292{font-size:53.333333pt;}
.fs2_c00292{font-size:56.000000pt;}
.fs3_c00292{font-size:66.666667pt;}
.y0_c00292{bottom:0.000000pt;}
.y51_c00292{bottom:2.760000pt;}
.y50_c00292{bottom:6.425206pt;}
.y4f_c00292{bottom:53.093333pt;}
.y2a_c00292{bottom:54.693333pt;}
.y4e_c00292{bottom:69.893333pt;}
.y29_c00292{bottom:71.093333pt;}
.y4d_c00292{bottom:85.760000pt;}
.y28_c00292{bottom:87.360000pt;}
.y4c_c00292{bottom:101.493333pt;}
.y27_c00292{bottom:104.160000pt;}
.y4b_c00292{bottom:118.160000pt;}
.y26_c00292{bottom:120.026667pt;}
.y4a_c00292{bottom:134.426667pt;}
.y25_c00292{bottom:136.293333pt;}
.y49_c00292{bottom:150.560000pt;}
.y24_c00292{bottom:151.893333pt;}
.y48_c00292{bottom:166.160000pt;}
.y23_c00292{bottom:167.760000pt;}
.y47_c00292{bottom:181.893333pt;}
.y22_c00292{bottom:184.560000pt;}
.y46_c00292{bottom:198.560000pt;}
.y21_c00292{bottom:200.160000pt;}
.y45_c00292{bottom:215.093333pt;}
.y20_c00292{bottom:216.693333pt;}
.y44_c00292{bottom:230.693333pt;}
.y1f_c00292{bottom:232.560000pt;}
.y43_c00292{bottom:247.493333pt;}
.y1e_c00292{bottom:249.360000pt;}
.y42_c00292{bottom:263.360000pt;}
.y1d_c00292{bottom:264.693333pt;}
.y41_c00292{bottom:279.893333pt;}
.y1c_c00292{bottom:280.560000pt;}
.y40_c00292{bottom:295.760000pt;}
.y1b_c00292{bottom:296.693333pt;}
.y3f_c00292{bottom:311.360000pt;}
.y1a_c00292{bottom:312.560000pt;}
.y3e_c00292{bottom:327.626667pt;}
.y19_c00292{bottom:328.293333pt;}
.y3d_c00292{bottom:342.960000pt;}
.y18_c00292{bottom:344.160000pt;}
.y3c_c00292{bottom:359.760000pt;}
.y17_c00292{bottom:360.293333pt;}
.y16_c00292{bottom:375.626667pt;}
.y15_c00292{bottom:391.893333pt;}
.y3b_c00292{bottom:407.760000pt;}
.y14_c00292{bottom:408.560000pt;}
.y3a_c00292{bottom:423.626667pt;}
.y13_c00292{bottom:424.160000pt;}
.y12_c00292{bottom:439.760000pt;}
.y39_c00292{bottom:440.160000pt;}
.y11_c00292{bottom:455.493333pt;}
.y38_c00292{bottom:456.293333pt;}
.y10_c00292{bottom:471.093333pt;}
.y37_c00292{bottom:472.560000pt;}
.yf_c00292{bottom:487.493333pt;}
.y36_c00292{bottom:488.160000pt;}
.ye_c00292{bottom:503.360000pt;}
.y35_c00292{bottom:504.960000pt;}
.y34_c00292{bottom:516.026667pt;}
.yd_c00292{bottom:519.360000pt;}
.yc_c00292{bottom:535.493333pt;}
.yb_c00292{bottom:551.093333pt;}
.y33_c00292{bottom:552.293333pt;}
.ya_c00292{bottom:567.360000pt;}
.y9_c00292{bottom:583.226667pt;}
.y32_c00292{bottom:585.626667pt;}
.y8_c00292{bottom:599.093333pt;}
.y31_c00292{bottom:600.026667pt;}
.y7_c00292{bottom:615.626667pt;}
.y30_c00292{bottom:616.160000pt;}
.y6_c00292{bottom:631.226667pt;}
.y2f_c00292{bottom:632.426667pt;}
.y5_c00292{bottom:647.493333pt;}
.y2e_c00292{bottom:648.693333pt;}
.y4_c00292{bottom:663.093333pt;}
.y3_c00292{bottom:679.493333pt;}
.y2d_c00292{bottom:679.760000pt;}
.y2_c00292{bottom:695.093333pt;}
.y2c_c00292{bottom:696.560000pt;}
.y1_c00292{bottom:713.493333pt;}
.y2b_c00292{bottom:713.760000pt;}
.h7_c00292{height:11.733399pt;}
.h4_c00292{height:34.688000pt;}
.h8_c00292{height:38.937500pt;}
.h2_c00292{height:55.893333pt;}
.h3_c00292{height:56.906667pt;}
.h6_c00292{height:69.866667pt;}
.h5_c00292{height:74.154667pt;}
.h0_c00292{height:747.866667pt;}
.h1_c00292{height:748.000000pt;}
.w1_c00292{width:93.222667pt;}
.w0_c00292{width:524.666667pt;}
.x0_c00292{left:0.000000pt;}
.x3_c00292{left:56.000000pt;}
.x2_c00292{left:57.866667pt;}
.x4_c00292{left:58.800000pt;}
.x5_c00292{left:60.000000pt;}
.x6_c00292{left:61.200000pt;}
.x7_c00292{left:62.400000pt;}
.x8_c00292{left:63.866667pt;}
.x9_c00292{left:65.066667pt;}
.x1_c00292{left:163.733333pt;}
.x1b_c00292{left:219.501546pt;}
.xa_c00292{left:244.533333pt;}
.xe_c00292{left:248.000000pt;}
.xb_c00292{left:250.133333pt;}
.xc_c00292{left:251.600000pt;}
.x11_c00292{left:253.200000pt;}
.x13_c00292{left:254.133333pt;}
.x14_c00292{left:255.866667pt;}
.x15_c00292{left:256.800000pt;}
.x16_c00292{left:258.000000pt;}
.x17_c00292{left:258.933333pt;}
.x18_c00292{left:260.133333pt;}
.x19_c00292{left:261.200000pt;}
.x1a_c00292{left:262.133333pt;}
.xf_c00292{left:275.200000pt;}
.xd_c00292{left:278.666667pt;}
.x12_c00292{left:289.600000pt;}
.x10_c00292{left:323.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_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_d7c17de9b19e8e6067ac917a.woff2')format("woff");}.ff1_c00293{font-family:ff1_c00293;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00293;src:url('chunks/assets/font_a0a34be05e01884fbf5fbde8.woff2')format("woff");}.ff2_c00293{font-family:ff2_c00293;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00293;src:url('chunks/assets/font_c4b72bf164b06c50744dbd54.woff2')format("woff");}.ff3_c00293{font-family:ff3_c00293;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00293;src:url('chunks/assets/font_84a463c6716a3105182edbc5.woff2')format("woff");}.ff4_c00293{font-family:ff4_c00293;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00293;src:url('chunks/assets/font_d01a10f806008ff715abcb52.woff2')format("woff");}.ff5_c00293{font-family:ff5_c00293;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00293;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff6_c00293{font-family:ff6_c00293;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00293;src:url('chunks/assets/font_d6858792691d7efa8a386c11.woff2')format("woff");}.ff7_c00293{font-family:ff7_c00293;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00293;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff8_c00293{font-family:ff8_c00293;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00293{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00293{vertical-align:0.000000px;}
.lsc_c00293{letter-spacing:0.000000px;}
.ls4_c00293{letter-spacing:3.000000px;}
.ls0_c00293{letter-spacing:6.000000px;}
.ls9_c00293{letter-spacing:6.300000px;}
.ls5_c00293{letter-spacing:8.046000px;}
.ls3_c00293{letter-spacing:9.591000px;}
.ls2_c00293{letter-spacing:14.046000px;}
.lsa_c00293{letter-spacing:15.000000px;}
.ls8_c00293{letter-spacing:18.540000px;}
.lsb_c00293{letter-spacing:24.000000px;}
.ls7_c00293{letter-spacing:29.340000px;}
.ls1_c00293{letter-spacing:51.246000px;}
.ls6_c00293{letter-spacing:85.260000px;}
.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;}
}
.ws2_c00293{word-spacing:-25.341000px;}
.ws6_c00293{word-spacing:-19.554000px;}
.ws1_c00293{word-spacing:-15.774000px;}
.ws0_c00293{word-spacing:-15.291000px;}
.ws3_c00293{word-spacing:-14.160000px;}
.ws5_c00293{word-spacing:-13.452000px;}
.ws4_c00293{word-spacing:-12.291000px;}
.ws7_c00293{word-spacing:0.000000px;}
._19_c00293{margin-left:-20.580000px;}
._14_c00293{margin-left:-11.592000px;}
._13_c00293{margin-left:-8.946000px;}
._9_c00293{margin-left:-7.623000px;}
._b_c00293{margin-left:-5.796000px;}
._a_c00293{margin-left:-3.969000px;}
._8_c00293{margin-left:-2.835000px;}
._7_c00293{margin-left:-1.827000px;}
._f_c00293{width:1.071000px;}
._0_c00293{width:2.079000px;}
._6_c00293{width:3.213000px;}
._5_c00293{width:4.284000px;}
._2_c00293{width:5.481000px;}
._10_c00293{width:6.615000px;}
._3_c00293{width:8.190000px;}
._15_c00293{width:9.681000px;}
._1a_c00293{width:11.361000px;}
._18_c00293{width:13.482000px;}
._33_c00293{width:14.559000px;}
._24_c00293{width:15.702000px;}
._11_c00293{width:17.058000px;}
._1b_c00293{width:19.530000px;}
._25_c00293{width:21.495000px;}
._27_c00293{width:22.863000px;}
._28_c00293{width:24.036000px;}
._22_c00293{width:25.425000px;}
._2c_c00293{width:27.009000px;}
._20_c00293{width:29.769000px;}
._23_c00293{width:31.695000px;}
._1c_c00293{width:34.146000px;}
._29_c00293{width:35.307000px;}
._4_c00293{width:38.625000px;}
._1d_c00293{width:41.499000px;}
._12_c00293{width:42.714000px;}
._17_c00293{width:43.722000px;}
._1f_c00293{width:45.171000px;}
._16_c00293{width:46.449000px;}
._d_c00293{width:47.565000px;}
._1e_c00293{width:50.394000px;}
._e_c00293{width:52.353000px;}
._c_c00293{width:53.424000px;}
._31_c00293{width:54.480000px;}
._30_c00293{width:57.780000px;}
._2e_c00293{width:70.866000px;}
._2b_c00293{width:73.605000px;}
._2a_c00293{width:77.082000px;}
._2d_c00293{width:78.621000px;}
._2f_c00293{width:101.874000px;}
._26_c00293{width:112.221000px;}
._32_c00293{width:123.852000px;}
._21_c00293{width:154.563000px;}
._1_c00293{width:348.513000px;}
.fc2_c00293{color:transparent;}
.fc1_c00293{color:rgb(128,128,128);}
.fc0_c00293{color:rgb(0,0,0);}
.fs6_c00293{font-size:45.000000px;}
.fs7_c00293{font-size:48.000000px;}
.fs3_c00293{font-size:51.000000px;}
.fs4_c00293{font-size:54.000000px;}
.fs1_c00293{font-size:57.000000px;}
.fs2_c00293{font-size:60.000000px;}
.fs0_c00293{font-size:63.000000px;}
.fs5_c00293{font-size:66.000000px;}
.y0_c00293{bottom:0.000000px;}
.y3e_c00293{bottom:3.105000px;}
.y3d_c00293{bottom:7.228363px;}
.y33_c00293{bottom:40.950000px;}
.y32_c00293{bottom:58.050000px;}
.y3c_c00293{bottom:76.350000px;}
.y31_c00293{bottom:76.650000px;}
.y30_c00293{bottom:95.250000px;}
.y2f_c00293{bottom:112.500000px;}
.y3b_c00293{bottom:112.800000px;}
.y2e_c00293{bottom:130.350000px;}
.y3a_c00293{bottom:130.950000px;}
.y2d_c00293{bottom:148.500000px;}
.y39_c00293{bottom:148.800000px;}
.y2c_c00293{bottom:166.800000px;}
.y38_c00293{bottom:167.700000px;}
.y2b_c00293{bottom:185.400000px;}
.y37_c00293{bottom:203.250000px;}
.y2a_c00293{bottom:203.550000px;}
.y29_c00293{bottom:220.800000px;}
.y36_c00293{bottom:221.400000px;}
.y35_c00293{bottom:238.950000px;}
.y28_c00293{bottom:239.250000px;}
.y27_c00293{bottom:257.250000px;}
.y34_c00293{bottom:257.550000px;}
.y26_c00293{bottom:275.700000px;}
.y25_c00293{bottom:294.000000px;}
.y24_c00293{bottom:311.550000px;}
.y23_c00293{bottom:330.150000px;}
.y22_c00293{bottom:348.300000px;}
.y21_c00293{bottom:365.850000px;}
.y19_c00293{bottom:366.900000px;}
.y20_c00293{bottom:383.850000px;}
.y18_c00293{bottom:385.050000px;}
.y1f_c00293{bottom:402.300000px;}
.y17_c00293{bottom:402.750000px;}
.y1e_c00293{bottom:420.300000px;}
.y16_c00293{bottom:421.200000px;}
.y15_c00293{bottom:438.150000px;}
.y1d_c00293{bottom:438.750000px;}
.y1c_c00293{bottom:456.300000px;}
.y14_c00293{bottom:456.750000px;}
.y13_c00293{bottom:475.200000px;}
.y1b_c00293{bottom:475.500000px;}
.y1a_c00293{bottom:492.450000px;}
.y12_c00293{bottom:494.550000px;}
.y11_c00293{bottom:510.750000px;}
.y10_c00293{bottom:528.900000px;}
.yf_c00293{bottom:548.100000px;}
.ye_c00293{bottom:565.950000px;}
.yd_c00293{bottom:584.100000px;}
.yc_c00293{bottom:602.100000px;}
.yb_c00293{bottom:621.000000px;}
.ya_c00293{bottom:638.850000px;}
.y9_c00293{bottom:656.700000px;}
.y8_c00293{bottom:674.700000px;}
.y7_c00293{bottom:693.600000px;}
.y6_c00293{bottom:711.150000px;}
.y5_c00293{bottom:729.000000px;}
.y4_c00293{bottom:747.900000px;}
.y3_c00293{bottom:765.900000px;}
.y2_c00293{bottom:784.050000px;}
.y1_c00293{bottom:803.700000px;}
.ha_c00293{height:13.200074px;}
.hb_c00293{height:43.804688px;}
.h7_c00293{height:47.160000px;}
.h5_c00293{height:56.592000px;}
.h9_c00293{height:59.690918px;}
.h6_c00293{height:59.736000px;}
.h1_c00293{height:61.831055px;}
.h2_c00293{height:62.880000px;}
.h4_c00293{height:64.571777px;}
.h8_c00293{height:67.221000px;}
.h3_c00293{height:69.168000px;}
.h0_c00293{height:843.750000px;}
.w2_c00293{width:104.875500px;}
.w1_c00293{width:565.500000px;}
.w0_c00293{width:565.650000px;}
.x0_c00293{left:0.000000px;}
.xc_c00293{left:23.850000px;}
.xd_c00293{left:25.200000px;}
.x10_c00293{left:82.650000px;}
.xf_c00293{left:84.000000px;}
.xe_c00293{left:85.650000px;}
.xb_c00293{left:86.700000px;}
.xa_c00293{left:88.050000px;}
.x3_c00293{left:89.400000px;}
.x8_c00293{left:90.750000px;}
.x4_c00293{left:91.800000px;}
.x2_c00293{left:92.850000px;}
.x1_c00293{left:95.850000px;}
.x9_c00293{left:110.250000px;}
.x18_c00293{left:234.639267px;}
.x17_c00293{left:297.600000px;}
.x16_c00293{left:299.700000px;}
.x15_c00293{left:301.050000px;}
.x14_c00293{left:302.100000px;}
.x13_c00293{left:303.450000px;}
.x12_c00293{left:304.650000px;}
.x7_c00293{left:307.050000px;}
.x5_c00293{left:308.400000px;}
.x6_c00293{left:435.300000px;}
.x11_c00293{left:460.050000px;}
@media print{
.v0_c00293{vertical-align:0.000000pt;}
.lsc_c00293{letter-spacing:0.000000pt;}
.ls4_c00293{letter-spacing:2.666667pt;}
.ls0_c00293{letter-spacing:5.333333pt;}
.ls9_c00293{letter-spacing:5.600000pt;}
.ls5_c00293{letter-spacing:7.152000pt;}
.ls3_c00293{letter-spacing:8.525333pt;}
.ls2_c00293{letter-spacing:12.485333pt;}
.lsa_c00293{letter-spacing:13.333333pt;}
.ls8_c00293{letter-spacing:16.480000pt;}
.lsb_c00293{letter-spacing:21.333333pt;}
.ls7_c00293{letter-spacing:26.080000pt;}
.ls1_c00293{letter-spacing:45.552000pt;}
.ls6_c00293{letter-spacing:75.786667pt;}
.ws2_c00293{word-spacing:-22.525333pt;}
.ws6_c00293{word-spacing:-17.381333pt;}
.ws1_c00293{word-spacing:-14.021333pt;}
.ws0_c00293{word-spacing:-13.592000pt;}
.ws3_c00293{word-spacing:-12.586667pt;}
.ws5_c00293{word-spacing:-11.957333pt;}
.ws4_c00293{word-spacing:-10.925333pt;}
.ws7_c00293{word-spacing:0.000000pt;}
._19_c00293{margin-left:-18.293333pt;}
._14_c00293{margin-left:-10.304000pt;}
._13_c00293{margin-left:-7.952000pt;}
._9_c00293{margin-left:-6.776000pt;}
._b_c00293{margin-left:-5.152000pt;}
._a_c00293{margin-left:-3.528000pt;}
._8_c00293{margin-left:-2.520000pt;}
._7_c00293{margin-left:-1.624000pt;}
._f_c00293{width:0.952000pt;}
._0_c00293{width:1.848000pt;}
._6_c00293{width:2.856000pt;}
._5_c00293{width:3.808000pt;}
._2_c00293{width:4.872000pt;}
._10_c00293{width:5.880000pt;}
._3_c00293{width:7.280000pt;}
._15_c00293{width:8.605333pt;}
._1a_c00293{width:10.098667pt;}
._18_c00293{width:11.984000pt;}
._33_c00293{width:12.941333pt;}
._24_c00293{width:13.957333pt;}
._11_c00293{width:15.162667pt;}
._1b_c00293{width:17.360000pt;}
._25_c00293{width:19.106667pt;}
._27_c00293{width:20.322667pt;}
._28_c00293{width:21.365333pt;}
._22_c00293{width:22.600000pt;}
._2c_c00293{width:24.008000pt;}
._20_c00293{width:26.461333pt;}
._23_c00293{width:28.173333pt;}
._1c_c00293{width:30.352000pt;}
._29_c00293{width:31.384000pt;}
._4_c00293{width:34.333333pt;}
._1d_c00293{width:36.888000pt;}
._12_c00293{width:37.968000pt;}
._17_c00293{width:38.864000pt;}
._1f_c00293{width:40.152000pt;}
._16_c00293{width:41.288000pt;}
._d_c00293{width:42.280000pt;}
._1e_c00293{width:44.794667pt;}
._e_c00293{width:46.536000pt;}
._c_c00293{width:47.488000pt;}
._31_c00293{width:48.426667pt;}
._30_c00293{width:51.360000pt;}
._2e_c00293{width:62.992000pt;}
._2b_c00293{width:65.426667pt;}
._2a_c00293{width:68.517333pt;}
._2d_c00293{width:69.885333pt;}
._2f_c00293{width:90.554667pt;}
._26_c00293{width:99.752000pt;}
._32_c00293{width:110.090667pt;}
._21_c00293{width:137.389333pt;}
._1_c00293{width:309.789333pt;}
.fs6_c00293{font-size:40.000000pt;}
.fs7_c00293{font-size:42.666667pt;}
.fs3_c00293{font-size:45.333333pt;}
.fs4_c00293{font-size:48.000000pt;}
.fs1_c00293{font-size:50.666667pt;}
.fs2_c00293{font-size:53.333333pt;}
.fs0_c00293{font-size:56.000000pt;}
.fs5_c00293{font-size:58.666667pt;}
.y0_c00293{bottom:0.000000pt;}
.y3e_c00293{bottom:2.760000pt;}
.y3d_c00293{bottom:6.425212pt;}
.y33_c00293{bottom:36.400000pt;}
.y32_c00293{bottom:51.600000pt;}
.y3c_c00293{bottom:67.866667pt;}
.y31_c00293{bottom:68.133333pt;}
.y30_c00293{bottom:84.666667pt;}
.y2f_c00293{bottom:100.000000pt;}
.y3b_c00293{bottom:100.266667pt;}
.y2e_c00293{bottom:115.866667pt;}
.y3a_c00293{bottom:116.400000pt;}
.y2d_c00293{bottom:132.000000pt;}
.y39_c00293{bottom:132.266667pt;}
.y2c_c00293{bottom:148.266667pt;}
.y38_c00293{bottom:149.066667pt;}
.y2b_c00293{bottom:164.800000pt;}
.y37_c00293{bottom:180.666667pt;}
.y2a_c00293{bottom:180.933333pt;}
.y29_c00293{bottom:196.266667pt;}
.y36_c00293{bottom:196.800000pt;}
.y35_c00293{bottom:212.400000pt;}
.y28_c00293{bottom:212.666667pt;}
.y27_c00293{bottom:228.666667pt;}
.y34_c00293{bottom:228.933333pt;}
.y26_c00293{bottom:245.066667pt;}
.y25_c00293{bottom:261.333333pt;}
.y24_c00293{bottom:276.933333pt;}
.y23_c00293{bottom:293.466667pt;}
.y22_c00293{bottom:309.600000pt;}
.y21_c00293{bottom:325.200000pt;}
.y19_c00293{bottom:326.133333pt;}
.y20_c00293{bottom:341.200000pt;}
.y18_c00293{bottom:342.266667pt;}
.y1f_c00293{bottom:357.600000pt;}
.y17_c00293{bottom:358.000000pt;}
.y1e_c00293{bottom:373.600000pt;}
.y16_c00293{bottom:374.400000pt;}
.y15_c00293{bottom:389.466667pt;}
.y1d_c00293{bottom:390.000000pt;}
.y1c_c00293{bottom:405.600000pt;}
.y14_c00293{bottom:406.000000pt;}
.y13_c00293{bottom:422.400000pt;}
.y1b_c00293{bottom:422.666667pt;}
.y1a_c00293{bottom:437.733333pt;}
.y12_c00293{bottom:439.600000pt;}
.y11_c00293{bottom:454.000000pt;}
.y10_c00293{bottom:470.133333pt;}
.yf_c00293{bottom:487.200000pt;}
.ye_c00293{bottom:503.066667pt;}
.yd_c00293{bottom:519.200000pt;}
.yc_c00293{bottom:535.200000pt;}
.yb_c00293{bottom:552.000000pt;}
.ya_c00293{bottom:567.866667pt;}
.y9_c00293{bottom:583.733333pt;}
.y8_c00293{bottom:599.733333pt;}
.y7_c00293{bottom:616.533333pt;}
.y6_c00293{bottom:632.133333pt;}
.y5_c00293{bottom:648.000000pt;}
.y4_c00293{bottom:664.800000pt;}
.y3_c00293{bottom:680.800000pt;}
.y2_c00293{bottom:696.933333pt;}
.y1_c00293{bottom:714.400000pt;}
.ha_c00293{height:11.733399pt;}
.hb_c00293{height:38.937500pt;}
.h7_c00293{height:41.920000pt;}
.h5_c00293{height:50.304000pt;}
.h9_c00293{height:53.058594pt;}
.h6_c00293{height:53.098667pt;}
.h1_c00293{height:54.960938pt;}
.h2_c00293{height:55.893333pt;}
.h4_c00293{height:57.397135pt;}
.h8_c00293{height:59.752000pt;}
.h3_c00293{height:61.482667pt;}
.h0_c00293{height:750.000000pt;}
.w2_c00293{width:93.222667pt;}
.w1_c00293{width:502.666667pt;}
.w0_c00293{width:502.800000pt;}
.x0_c00293{left:0.000000pt;}
.xc_c00293{left:21.200000pt;}
.xd_c00293{left:22.400000pt;}
.x10_c00293{left:73.466667pt;}
.xf_c00293{left:74.666667pt;}
.xe_c00293{left:76.133333pt;}
.xb_c00293{left:77.066667pt;}
.xa_c00293{left:78.266667pt;}
.x3_c00293{left:79.466667pt;}
.x8_c00293{left:80.666667pt;}
.x4_c00293{left:81.600000pt;}
.x2_c00293{left:82.533333pt;}
.x1_c00293{left:85.200000pt;}
.x9_c00293{left:98.000000pt;}
.x18_c00293{left:208.568237pt;}
.x17_c00293{left:264.533333pt;}
.x16_c00293{left:266.400000pt;}
.x15_c00293{left:267.600000pt;}
.x14_c00293{left:268.533333pt;}
.x13_c00293{left:269.733333pt;}
.x12_c00293{left:270.800000pt;}
.x7_c00293{left:272.933333pt;}
.x5_c00293{left:274.133333pt;}
.x6_c00293{left:386.933333pt;}
.x11_c00293{left:408.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3566dc17bda86d5a36d8c5f0.woff2')format("woff");}.ff1_c00294{font-family:ff1_c00294;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00294;src:url('chunks/assets/font_314612962d6ecfbe7ee7435d.woff2')format("woff");}.ff2_c00294{font-family:ff2_c00294;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00294;src:url('chunks/assets/font_46f2ecaad60758c01b28247a.woff2')format("woff");}.ff3_c00294{font-family:ff3_c00294;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00294;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff4_c00294{font-family:ff4_c00294;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls5_c00294{letter-spacing:0.000000px;}
.ls4_c00294{letter-spacing:3.000000px;}
.ls6_c00294{letter-spacing:12.000000px;}
.ls3_c00294{letter-spacing:18.000000px;}
.ls2_c00294{letter-spacing:20.880000px;}
.ls1_c00294{letter-spacing:37.860000px;}
.ls0_c00294{letter-spacing:49.620000px;}
.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:-35.220000px;}
.ws1_c00294{word-spacing:-18.060000px;}
.ws2_c00294{word-spacing:0.000000px;}
._1c_c00294{margin-left:-40.431000px;}
._1d_c00294{margin-left:-17.253000px;}
._16_c00294{margin-left:-10.380000px;}
._b_c00294{margin-left:-8.040000px;}
._27_c00294{margin-left:-6.600000px;}
._6_c00294{margin-left:-5.460000px;}
._15_c00294{margin-left:-4.260000px;}
._1a_c00294{margin-left:-3.240000px;}
._9_c00294{margin-left:-1.860000px;}
._3_c00294{width:1.020000px;}
._1_c00294{width:2.460000px;}
._0_c00294{width:4.320000px;}
._e_c00294{width:6.300000px;}
._22_c00294{width:7.320000px;}
._f_c00294{width:8.760000px;}
._18_c00294{width:10.320000px;}
._5_c00294{width:12.000000px;}
._10_c00294{width:13.860000px;}
._14_c00294{width:14.880000px;}
._4_c00294{width:15.900000px;}
._23_c00294{width:17.100000px;}
._28_c00294{width:18.420000px;}
._1f_c00294{width:19.440000px;}
._c_c00294{width:20.940000px;}
._d_c00294{width:22.740000px;}
._12_c00294{width:24.660000px;}
._13_c00294{width:28.560000px;}
._8_c00294{width:30.300000px;}
._26_c00294{width:31.320000px;}
._20_c00294{width:35.760000px;}
._21_c00294{width:44.400000px;}
._29_c00294{width:69.000000px;}
._11_c00294{width:72.120000px;}
._7_c00294{width:74.700000px;}
._2_c00294{width:95.880000px;}
._17_c00294{width:111.540000px;}
._a_c00294{width:161.520000px;}
._19_c00294{width:175.260000px;}
._1e_c00294{width:183.819000px;}
._24_c00294{width:188.580000px;}
._1b_c00294{width:301.860000px;}
._25_c00294{width:373.380000px;}
.fc2_c00294{color:transparent;}
.fc1_c00294{color:rgb(128,128,128);}
.fc0_c00294{color:rgb(0,0,0);}
.fs2_c00294{font-size:48.000000px;}
.fs0_c00294{font-size:60.000000px;}
.fs1_c00294{font-size:213.000000px;}
.y0_c00294{bottom:0.000000px;}
.y26_c00294{bottom:3.105000px;}
.y25_c00294{bottom:7.228357px;}
.y24_c00294{bottom:33.030000px;}
.y23_c00294{bottom:55.080000px;}
.y22_c00294{bottom:74.280000px;}
.y21_c00294{bottom:92.580000px;}
.y20_c00294{bottom:109.380000px;}
.y1f_c00294{bottom:126.330000px;}
.y1e_c00294{bottom:147.480000px;}
.y1d_c00294{bottom:164.130000px;}
.y1c_c00294{bottom:183.330000px;}
.y1b_c00294{bottom:200.580000px;}
.y1a_c00294{bottom:219.330000px;}
.y19_c00294{bottom:237.630000px;}
.y18_c00294{bottom:256.230000px;}
.y17_c00294{bottom:274.080000px;}
.y16_c00294{bottom:291.330000px;}
.y15_c00294{bottom:309.780000px;}
.y14_c00294{bottom:328.380000px;}
.y13_c00294{bottom:345.930000px;}
.y12_c00294{bottom:363.780000px;}
.y11_c00294{bottom:381.780000px;}
.y10_c00294{bottom:399.630000px;}
.yf_c00294{bottom:416.580000px;}
.ye_c00294{bottom:455.580000px;}
.yd_c00294{bottom:473.130000px;}
.yc_c00294{bottom:508.680000px;}
.yb_c00294{bottom:527.280000px;}
.ya_c00294{bottom:545.430000px;}
.y9_c00294{bottom:574.530000px;}
.y8_c00294{bottom:632.580000px;}
.y7_c00294{bottom:671.580000px;}
.y6_c00294{bottom:689.880000px;}
.y5_c00294{bottom:708.480000px;}
.y4_c00294{bottom:726.330000px;}
.y3_c00294{bottom:744.630000px;}
.y2_c00294{bottom:762.480000px;}
.y1_c00294{bottom:780.930000px;}
.h4_c00294{height:13.200074px;}
.h5_c00294{height:43.804688px;}
.h2_c00294{height:62.880000px;}
.h3_c00294{height:223.224000px;}
.h0_c00294{height:841.350000px;}
.h1_c00294{height:841.500000px;}
.w1_c00294{width:104.875500px;}
.w0_c00294{width:590.250000px;}
.x0_c00294{left:0.000000px;}
.x2_c00294{left:65.100000px;}
.x1_c00294{left:67.050000px;}
.xe_c00294{left:68.850000px;}
.x5_c00294{left:70.500000px;}
.xd_c00294{left:72.000000px;}
.xf_c00294{left:73.200000px;}
.x8_c00294{left:88.800000px;}
.x4_c00294{left:121.500000px;}
.x6_c00294{left:149.850000px;}
.x9_c00294{left:181.950000px;}
.xc_c00294{left:187.650000px;}
.xa_c00294{left:189.000000px;}
.xb_c00294{left:190.050000px;}
.x7_c00294{left:222.150000px;}
.x11_c00294{left:246.939240px;}
.x3_c00294{left:257.850000px;}
.x10_c00294{left:459.750000px;}
@media print{
.v0_c00294{vertical-align:0.000000pt;}
.ls5_c00294{letter-spacing:0.000000pt;}
.ls4_c00294{letter-spacing:2.666667pt;}
.ls6_c00294{letter-spacing:10.666667pt;}
.ls3_c00294{letter-spacing:16.000000pt;}
.ls2_c00294{letter-spacing:18.560000pt;}
.ls1_c00294{letter-spacing:33.653333pt;}
.ls0_c00294{letter-spacing:44.106667pt;}
.ws0_c00294{word-spacing:-31.306667pt;}
.ws1_c00294{word-spacing:-16.053333pt;}
.ws2_c00294{word-spacing:0.000000pt;}
._1c_c00294{margin-left:-35.938667pt;}
._1d_c00294{margin-left:-15.336000pt;}
._16_c00294{margin-left:-9.226667pt;}
._b_c00294{margin-left:-7.146667pt;}
._27_c00294{margin-left:-5.866667pt;}
._6_c00294{margin-left:-4.853333pt;}
._15_c00294{margin-left:-3.786667pt;}
._1a_c00294{margin-left:-2.880000pt;}
._9_c00294{margin-left:-1.653333pt;}
._3_c00294{width:0.906667pt;}
._1_c00294{width:2.186667pt;}
._0_c00294{width:3.840000pt;}
._e_c00294{width:5.600000pt;}
._22_c00294{width:6.506667pt;}
._f_c00294{width:7.786667pt;}
._18_c00294{width:9.173333pt;}
._5_c00294{width:10.666667pt;}
._10_c00294{width:12.320000pt;}
._14_c00294{width:13.226667pt;}
._4_c00294{width:14.133333pt;}
._23_c00294{width:15.200000pt;}
._28_c00294{width:16.373333pt;}
._1f_c00294{width:17.280000pt;}
._c_c00294{width:18.613333pt;}
._d_c00294{width:20.213333pt;}
._12_c00294{width:21.920000pt;}
._13_c00294{width:25.386667pt;}
._8_c00294{width:26.933333pt;}
._26_c00294{width:27.840000pt;}
._20_c00294{width:31.786667pt;}
._21_c00294{width:39.466667pt;}
._29_c00294{width:61.333333pt;}
._11_c00294{width:64.106667pt;}
._7_c00294{width:66.400000pt;}
._2_c00294{width:85.226667pt;}
._17_c00294{width:99.146667pt;}
._a_c00294{width:143.573333pt;}
._19_c00294{width:155.786667pt;}
._1e_c00294{width:163.394667pt;}
._24_c00294{width:167.626667pt;}
._1b_c00294{width:268.320000pt;}
._25_c00294{width:331.893333pt;}
.fs2_c00294{font-size:42.666667pt;}
.fs0_c00294{font-size:53.333333pt;}
.fs1_c00294{font-size:189.333333pt;}
.y0_c00294{bottom:0.000000pt;}
.y26_c00294{bottom:2.760000pt;}
.y25_c00294{bottom:6.425206pt;}
.y24_c00294{bottom:29.360000pt;}
.y23_c00294{bottom:48.960000pt;}
.y22_c00294{bottom:66.026667pt;}
.y21_c00294{bottom:82.293333pt;}
.y20_c00294{bottom:97.226667pt;}
.y1f_c00294{bottom:112.293333pt;}
.y1e_c00294{bottom:131.093333pt;}
.y1d_c00294{bottom:145.893333pt;}
.y1c_c00294{bottom:162.960000pt;}
.y1b_c00294{bottom:178.293333pt;}
.y1a_c00294{bottom:194.960000pt;}
.y19_c00294{bottom:211.226667pt;}
.y18_c00294{bottom:227.760000pt;}
.y17_c00294{bottom:243.626667pt;}
.y16_c00294{bottom:258.960000pt;}
.y15_c00294{bottom:275.360000pt;}
.y14_c00294{bottom:291.893333pt;}
.y13_c00294{bottom:307.493333pt;}
.y12_c00294{bottom:323.360000pt;}
.y11_c00294{bottom:339.360000pt;}
.y10_c00294{bottom:355.226667pt;}
.yf_c00294{bottom:370.293333pt;}
.ye_c00294{bottom:404.960000pt;}
.yd_c00294{bottom:420.560000pt;}
.yc_c00294{bottom:452.160000pt;}
.yb_c00294{bottom:468.693333pt;}
.ya_c00294{bottom:484.826667pt;}
.y9_c00294{bottom:510.693333pt;}
.y8_c00294{bottom:562.293333pt;}
.y7_c00294{bottom:596.960000pt;}
.y6_c00294{bottom:613.226667pt;}
.y5_c00294{bottom:629.760000pt;}
.y4_c00294{bottom:645.626667pt;}
.y3_c00294{bottom:661.893333pt;}
.y2_c00294{bottom:677.760000pt;}
.y1_c00294{bottom:694.160000pt;}
.h4_c00294{height:11.733399pt;}
.h5_c00294{height:38.937500pt;}
.h2_c00294{height:55.893333pt;}
.h3_c00294{height:198.421333pt;}
.h0_c00294{height:747.866667pt;}
.h1_c00294{height:748.000000pt;}
.w1_c00294{width:93.222667pt;}
.w0_c00294{width:524.666667pt;}
.x0_c00294{left:0.000000pt;}
.x2_c00294{left:57.866667pt;}
.x1_c00294{left:59.600000pt;}
.xe_c00294{left:61.200000pt;}
.x5_c00294{left:62.666667pt;}
.xd_c00294{left:64.000000pt;}
.xf_c00294{left:65.066667pt;}
.x8_c00294{left:78.933333pt;}
.x4_c00294{left:108.000000pt;}
.x6_c00294{left:133.200000pt;}
.x9_c00294{left:161.733333pt;}
.xc_c00294{left:166.800000pt;}
.xa_c00294{left:168.000000pt;}
.xb_c00294{left:168.933333pt;}
.x7_c00294{left:197.466667pt;}
.x11_c00294{left:219.501546pt;}
.x3_c00294{left:229.200000pt;}
.x10_c00294{left:408.666667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_90bce8f6788bbb8899486000.woff2')format("woff");}.ff1_c00295{font-family:ff1_c00295;line-height:1.437000;font-style:normal;font-weight:normal;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_a8ad75412d938c6aea89e5be.woff2')format("woff");}.ff2_c00295{font-family:ff2_c00295;line-height:1.437000;font-style:normal;font-weight:normal;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_3017188e01ebf17078031ba6.woff2')format("woff");}.ff3_c00295{font-family:ff3_c00295;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00295;src:url('chunks/assets/font_1599c2592d8f78aca441da62.woff2')format("woff");}.ff4_c00295{font-family:ff4_c00295;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00295;src:url('chunks/assets/font_186ee8cd8f835d9e40eb079a.woff2')format("woff");}.ff5_c00295{font-family:ff5_c00295;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00295;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff6_c00295{font-family:ff6_c00295;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00295{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00295{vertical-align:0.000000px;}
.ls7_c00295{letter-spacing:0.000000px;}
.ls2_c00295{letter-spacing:1.800000px;}
.ls0_c00295{letter-spacing:3.000000px;}
.ls6_c00295{letter-spacing:6.000000px;}
.ls1_c00295{letter-spacing:10.200000px;}
.ls5_c00295{letter-spacing:15.060000px;}
.ls3_c00295{letter-spacing:18.000000px;}
.ls4_c00295{letter-spacing:125.340000px;}
.sc__c00295{text-shadow:none;}
.sc0_c00295{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00295{-webkit-text-stroke:0px transparent;}
.sc0_c00295{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00295{word-spacing:-32.340000px;}
.ws1_c00295{word-spacing:-25.074000px;}
.ws0_c00295{word-spacing:-17.340000px;}
.ws2_c00295{word-spacing:-14.160000px;}
.ws4_c00295{word-spacing:0.000000px;}
._22_c00295{margin-left:-20.520000px;}
._2a_c00295{margin-left:-19.500000px;}
._11_c00295{margin-left:-16.920000px;}
._1f_c00295{margin-left:-14.520000px;}
._21_c00295{margin-left:-12.600000px;}
._20_c00295{margin-left:-10.920000px;}
._8_c00295{margin-left:-9.840000px;}
._e_c00295{margin-left:-8.460000px;}
._1d_c00295{margin-left:-7.380000px;}
._d_c00295{margin-left:-6.300000px;}
._6_c00295{margin-left:-5.280000px;}
._7_c00295{margin-left:-3.840000px;}
._5_c00295{margin-left:-2.640000px;}
._9_c00295{margin-left:-1.200000px;}
._a_c00295{width:1.080000px;}
._2_c00295{width:2.280000px;}
._3_c00295{width:4.200000px;}
._0_c00295{width:5.400000px;}
._10_c00295{width:7.320000px;}
._c_c00295{width:9.180000px;}
._13_c00295{width:11.160000px;}
._f_c00295{width:12.600000px;}
._b_c00295{width:14.100000px;}
._18_c00295{width:15.180000px;}
._4_c00295{width:16.380000px;}
._23_c00295{width:19.140000px;}
._16_c00295{width:20.340000px;}
._31_c00295{width:21.360000px;}
._15_c00295{width:22.500000px;}
._30_c00295{width:23.640000px;}
._17_c00295{width:26.340000px;}
._12_c00295{width:27.540000px;}
._1b_c00295{width:28.680000px;}
._25_c00295{width:32.040000px;}
._27_c00295{width:33.300000px;}
._28_c00295{width:37.980000px;}
._1c_c00295{width:54.540000px;}
._2f_c00295{width:56.340000px;}
._2e_c00295{width:68.700000px;}
._2b_c00295{width:81.420000px;}
._14_c00295{width:86.100000px;}
._1a_c00295{width:95.460000px;}
._19_c00295{width:102.780000px;}
._2c_c00295{width:107.520000px;}
._2d_c00295{width:109.980000px;}
._29_c00295{width:132.360000px;}
._26_c00295{width:151.740000px;}
._24_c00295{width:213.720000px;}
._1e_c00295{width:284.280000px;}
._1_c00295{width:296.640000px;}
.fc2_c00295{color:transparent;}
.fc1_c00295{color:rgb(128,128,128);}
.fc0_c00295{color:rgb(0,0,0);}
.fs3_c00295{font-size:48.000000px;}
.fs0_c00295{font-size:60.000000px;}
.fs2_c00295{font-size:63.000000px;}
.fs1_c00295{font-size:66.000000px;}
.y0_c00295{bottom:0.000000px;}
.y2a_c00295{bottom:3.105000px;}
.y29_c00295{bottom:7.228363px;}
.y28_c00295{bottom:50.400000px;}
.y27_c00295{bottom:68.850000px;}
.y26_c00295{bottom:87.450000px;}
.y25_c00295{bottom:105.300000px;}
.y24_c00295{bottom:123.900000px;}
.y23_c00295{bottom:141.450000px;}
.y22_c00295{bottom:161.700000px;}
.y21_c00295{bottom:180.300000px;}
.y20_c00295{bottom:216.300000px;}
.y1f_c00295{bottom:235.350000px;}
.y1e_c00295{bottom:269.100000px;}
.y1d_c00295{bottom:289.650000px;}
.y1c_c00295{bottom:307.800000px;}
.y1b_c00295{bottom:325.650000px;}
.y1a_c00295{bottom:344.250000px;}
.y19_c00295{bottom:363.450000px;}
.y18_c00295{bottom:379.800000px;}
.y17_c00295{bottom:399.000000px;}
.y16_c00295{bottom:417.450000px;}
.y15_c00295{bottom:435.000000px;}
.y14_c00295{bottom:453.900000px;}
.y13_c00295{bottom:471.150000px;}
.y12_c00295{bottom:489.150000px;}
.y11_c00295{bottom:507.900000px;}
.y10_c00295{bottom:525.600000px;}
.yf_c00295{bottom:543.750000px;}
.ye_c00295{bottom:561.900000px;}
.yd_c00295{bottom:579.600000px;}
.yc_c00295{bottom:598.500000px;}
.yb_c00295{bottom:616.350000px;}
.ya_c00295{bottom:633.900000px;}
.y9_c00295{bottom:652.500000px;}
.y8_c00295{bottom:670.350000px;}
.y7_c00295{bottom:688.800000px;}
.y6_c00295{bottom:706.800000px;}
.y5_c00295{bottom:724.650000px;}
.y4_c00295{bottom:742.800000px;}
.y3_c00295{bottom:760.350000px;}
.y2_c00295{bottom:779.550000px;}
.y1_c00295{bottom:798.450000px;}
.h4_c00295{height:13.200074px;}
.h5_c00295{height:43.804688px;}
.h1_c00295{height:62.880000px;}
.h3_c00295{height:66.024000px;}
.h2_c00295{height:70.422000px;}
.h0_c00295{height:843.750000px;}
.w2_c00295{width:104.875500px;}
.w1_c00295{width:565.500000px;}
.w0_c00295{width:565.650000px;}
.x0_c00295{left:0.000000px;}
.x3_c00295{left:30.000000px;}
.xa_c00295{left:33.150000px;}
.x6_c00295{left:61.050000px;}
.x9_c00295{left:88.800000px;}
.x7_c00295{left:90.150000px;}
.x4_c00295{left:92.100000px;}
.x2_c00295{left:93.150000px;}
.x5_c00295{left:94.200000px;}
.x1_c00295{left:98.250000px;}
.x8_c00295{left:132.600000px;}
.xb_c00295{left:234.639267px;}
@media print{
.v0_c00295{vertical-align:0.000000pt;}
.ls7_c00295{letter-spacing:0.000000pt;}
.ls2_c00295{letter-spacing:1.600000pt;}
.ls0_c00295{letter-spacing:2.666667pt;}
.ls6_c00295{letter-spacing:5.333333pt;}
.ls1_c00295{letter-spacing:9.066667pt;}
.ls5_c00295{letter-spacing:13.386667pt;}
.ls3_c00295{letter-spacing:16.000000pt;}
.ls4_c00295{letter-spacing:111.413333pt;}
.ws3_c00295{word-spacing:-28.746667pt;}
.ws1_c00295{word-spacing:-22.288000pt;}
.ws0_c00295{word-spacing:-15.413333pt;}
.ws2_c00295{word-spacing:-12.586667pt;}
.ws4_c00295{word-spacing:0.000000pt;}
._22_c00295{margin-left:-18.240000pt;}
._2a_c00295{margin-left:-17.333333pt;}
._11_c00295{margin-left:-15.040000pt;}
._1f_c00295{margin-left:-12.906667pt;}
._21_c00295{margin-left:-11.200000pt;}
._20_c00295{margin-left:-9.706667pt;}
._8_c00295{margin-left:-8.746667pt;}
._e_c00295{margin-left:-7.520000pt;}
._1d_c00295{margin-left:-6.560000pt;}
._d_c00295{margin-left:-5.600000pt;}
._6_c00295{margin-left:-4.693333pt;}
._7_c00295{margin-left:-3.413333pt;}
._5_c00295{margin-left:-2.346667pt;}
._9_c00295{margin-left:-1.066667pt;}
._a_c00295{width:0.960000pt;}
._2_c00295{width:2.026667pt;}
._3_c00295{width:3.733333pt;}
._0_c00295{width:4.800000pt;}
._10_c00295{width:6.506667pt;}
._c_c00295{width:8.160000pt;}
._13_c00295{width:9.920000pt;}
._f_c00295{width:11.200000pt;}
._b_c00295{width:12.533333pt;}
._18_c00295{width:13.493333pt;}
._4_c00295{width:14.560000pt;}
._23_c00295{width:17.013333pt;}
._16_c00295{width:18.080000pt;}
._31_c00295{width:18.986667pt;}
._15_c00295{width:20.000000pt;}
._30_c00295{width:21.013333pt;}
._17_c00295{width:23.413333pt;}
._12_c00295{width:24.480000pt;}
._1b_c00295{width:25.493333pt;}
._25_c00295{width:28.480000pt;}
._27_c00295{width:29.600000pt;}
._28_c00295{width:33.760000pt;}
._1c_c00295{width:48.480000pt;}
._2f_c00295{width:50.080000pt;}
._2e_c00295{width:61.066667pt;}
._2b_c00295{width:72.373333pt;}
._14_c00295{width:76.533333pt;}
._1a_c00295{width:84.853333pt;}
._19_c00295{width:91.360000pt;}
._2c_c00295{width:95.573333pt;}
._2d_c00295{width:97.760000pt;}
._29_c00295{width:117.653333pt;}
._26_c00295{width:134.880000pt;}
._24_c00295{width:189.973333pt;}
._1e_c00295{width:252.693333pt;}
._1_c00295{width:263.680000pt;}
.fs3_c00295{font-size:42.666667pt;}
.fs0_c00295{font-size:53.333333pt;}
.fs2_c00295{font-size:56.000000pt;}
.fs1_c00295{font-size:58.666667pt;}
.y0_c00295{bottom:0.000000pt;}
.y2a_c00295{bottom:2.760000pt;}
.y29_c00295{bottom:6.425212pt;}
.y28_c00295{bottom:44.800000pt;}
.y27_c00295{bottom:61.200000pt;}
.y26_c00295{bottom:77.733333pt;}
.y25_c00295{bottom:93.600000pt;}
.y24_c00295{bottom:110.133333pt;}
.y23_c00295{bottom:125.733333pt;}
.y22_c00295{bottom:143.733333pt;}
.y21_c00295{bottom:160.266667pt;}
.y20_c00295{bottom:192.266667pt;}
.y1f_c00295{bottom:209.200000pt;}
.y1e_c00295{bottom:239.200000pt;}
.y1d_c00295{bottom:257.466667pt;}
.y1c_c00295{bottom:273.600000pt;}
.y1b_c00295{bottom:289.466667pt;}
.y1a_c00295{bottom:306.000000pt;}
.y19_c00295{bottom:323.066667pt;}
.y18_c00295{bottom:337.600000pt;}
.y17_c00295{bottom:354.666667pt;}
.y16_c00295{bottom:371.066667pt;}
.y15_c00295{bottom:386.666667pt;}
.y14_c00295{bottom:403.466667pt;}
.y13_c00295{bottom:418.800000pt;}
.y12_c00295{bottom:434.800000pt;}
.y11_c00295{bottom:451.466667pt;}
.y10_c00295{bottom:467.200000pt;}
.yf_c00295{bottom:483.333333pt;}
.ye_c00295{bottom:499.466667pt;}
.yd_c00295{bottom:515.200000pt;}
.yc_c00295{bottom:532.000000pt;}
.yb_c00295{bottom:547.866667pt;}
.ya_c00295{bottom:563.466667pt;}
.y9_c00295{bottom:580.000000pt;}
.y8_c00295{bottom:595.866667pt;}
.y7_c00295{bottom:612.266667pt;}
.y6_c00295{bottom:628.266667pt;}
.y5_c00295{bottom:644.133333pt;}
.y4_c00295{bottom:660.266667pt;}
.y3_c00295{bottom:675.866667pt;}
.y2_c00295{bottom:692.933333pt;}
.y1_c00295{bottom:709.733333pt;}
.h4_c00295{height:11.733399pt;}
.h5_c00295{height:38.937500pt;}
.h1_c00295{height:55.893333pt;}
.h3_c00295{height:58.688000pt;}
.h2_c00295{height:62.597333pt;}
.h0_c00295{height:750.000000pt;}
.w2_c00295{width:93.222667pt;}
.w1_c00295{width:502.666667pt;}
.w0_c00295{width:502.800000pt;}
.x0_c00295{left:0.000000pt;}
.x3_c00295{left:26.666667pt;}
.xa_c00295{left:29.466667pt;}
.x6_c00295{left:54.266667pt;}
.x9_c00295{left:78.933333pt;}
.x7_c00295{left:80.133333pt;}
.x4_c00295{left:81.866667pt;}
.x2_c00295{left:82.800000pt;}
.x5_c00295{left:83.733333pt;}
.x1_c00295{left:87.333333pt;}
.x8_c00295{left:117.866667pt;}
.xb_c00295{left:208.568237pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_15f87ac2fd32ae6ff2cb644a.woff2')format("woff");}.ff1_c00296{font-family:ff1_c00296;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00296;src:url('chunks/assets/font_302e4230c5c6c21e6cba2144.woff2')format("woff");}.ff2_c00296{font-family:ff2_c00296;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00296;src:url('chunks/assets/font_8d4a8023624dd8abb89aac23.woff2')format("woff");}.ff3_c00296{font-family:ff3_c00296;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00296;src:url('chunks/assets/font_16d25e0067e5d153ecfae653.woff2')format("woff");}.ff4_c00296{font-family:ff4_c00296;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00296;src:url('chunks/assets/font_74865cbfb0647b60b50692f5.woff2')format("woff");}.ff5_c00296{font-family:ff5_c00296;line-height:1.012793;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00296;src:url('chunks/assets/font_9ad853f605e9e040b64f9b7a.woff2')format("woff");}.ff6_c00296{font-family:ff6_c00296;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00296;src:url('chunks/assets/font_18f5a717a67e8b79c7027fc5.woff2')format("woff");}.ff7_c00296{font-family:ff7_c00296;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00296;src:url('chunks/assets/font_03fa7c977446c359fa2d8459.woff2')format("woff");}.ff8_c00296{font-family:ff8_c00296;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00296;src:url('chunks/assets/font_d5bf6223ffd2f46cfc8ad820.woff2')format("woff");}.ff9_c00296{font-family:ff9_c00296;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00296;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ffa_c00296{font-family:ffa_c00296;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00296{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00296{vertical-align:-145.800000px;}
.v0_c00296{vertical-align:0.000000px;}
.v2_c00296{vertical-align:78.000000px;}
.ls5_c00296{letter-spacing:0.000000px;}
.ls0_c00296{letter-spacing:1.416000px;}
.ls2_c00296{letter-spacing:3.000000px;}
.ls3_c00296{letter-spacing:8.205000px;}
.ls6_c00296{letter-spacing:9.000000px;}
.ls4_c00296{letter-spacing:9.837000px;}
.ls1_c00296{letter-spacing:18.900000px;}
.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;}
}
.ws7_c00296{word-spacing:-42.744000px;}
.ws8_c00296{word-spacing:-29.295000px;}
.ws0_c00296{word-spacing:-20.340000px;}
.ws4_c00296{word-spacing:-18.060000px;}
.ws5_c00296{word-spacing:-17.340000px;}
.ws3_c00296{word-spacing:-15.744000px;}
.ws1_c00296{word-spacing:-15.000000px;}
.ws2_c00296{word-spacing:-14.160000px;}
.ws9_c00296{word-spacing:0.000000px;}
.ws6_c00296{word-spacing:666.300000px;}
._5_c00296{margin-left:-17.220000px;}
._2a_c00296{margin-left:-15.555000px;}
._24_c00296{margin-left:-14.520000px;}
._a_c00296{margin-left:-12.900000px;}
._1d_c00296{margin-left:-10.980000px;}
._10_c00296{margin-left:-9.720000px;}
._14_c00296{margin-left:-8.580000px;}
._1c_c00296{margin-left:-6.900000px;}
._8_c00296{margin-left:-5.760000px;}
._19_c00296{margin-left:-4.500000px;}
._e_c00296{margin-left:-3.480000px;}
._17_c00296{margin-left:-2.340000px;}
._6_c00296{margin-left:-1.260000px;}
._c_c00296{width:1.800000px;}
._9_c00296{width:3.660000px;}
._1b_c00296{width:4.800000px;}
._7_c00296{width:5.940000px;}
._11_c00296{width:7.440000px;}
._f_c00296{width:8.640000px;}
._1_c00296{width:9.840000px;}
._1a_c00296{width:10.860000px;}
._0_c00296{width:12.240000px;}
._b_c00296{width:13.440000px;}
._1f_c00296{width:14.520000px;}
._18_c00296{width:16.200000px;}
._2b_c00296{width:18.240000px;}
._3_c00296{width:19.260000px;}
._4_c00296{width:21.060000px;}
._d_c00296{width:22.680000px;}
._25_c00296{width:24.240000px;}
._21_c00296{width:25.380000px;}
._26_c00296{width:26.640000px;}
._1e_c00296{width:27.900000px;}
._13_c00296{width:30.300000px;}
._15_c00296{width:32.580000px;}
._27_c00296{width:34.740000px;}
._12_c00296{width:36.120000px;}
._16_c00296{width:37.440000px;}
._29_c00296{width:38.700000px;}
._28_c00296{width:40.620000px;}
._2_c00296{width:45.540000px;}
._23_c00296{width:50.220000px;}
._20_c00296{width:78.720000px;}
._22_c00296{width:126.780000px;}
.fc2_c00296{color:transparent;}
.fc1_c00296{color:rgb(128,128,128);}
.fc0_c00296{color:rgb(0,0,0);}
.fs4_c00296{font-size:45.000000px;}
.fs2_c00296{font-size:48.000000px;}
.fs1_c00296{font-size:54.000000px;}
.fs0_c00296{font-size:60.000000px;}
.fs3_c00296{font-size:117.000000px;}
.fs5_c00296{font-size:213.000000px;}
.y0_c00296{bottom:0.000000px;}
.y51_c00296{bottom:3.105000px;}
.y50_c00296{bottom:7.228357px;}
.y4f_c00296{bottom:58.080000px;}
.y2a_c00296{bottom:61.530000px;}
.y4e_c00296{bottom:78.030000px;}
.y29_c00296{bottom:81.630000px;}
.y4d_c00296{bottom:96.480000px;}
.y28_c00296{bottom:99.330000px;}
.y4c_c00296{bottom:114.180000px;}
.y27_c00296{bottom:117.480000px;}
.y4b_c00296{bottom:132.630000px;}
.y26_c00296{bottom:135.630000px;}
.y4a_c00296{bottom:150.630000px;}
.y25_c00296{bottom:152.880000px;}
.y49_c00296{bottom:168.780000px;}
.y24_c00296{bottom:171.780000px;}
.y48_c00296{bottom:187.680000px;}
.y23_c00296{bottom:189.330000px;}
.y47_c00296{bottom:205.530000px;}
.y22_c00296{bottom:207.630000px;}
.y46_c00296{bottom:223.830000px;}
.y21_c00296{bottom:226.230000px;}
.y20_c00296{bottom:240.930000px;}
.y45_c00296{bottom:241.380000px;}
.y44_c00296{bottom:259.980000px;}
.y1f_c00296{bottom:262.230000px;}
.y43_c00296{bottom:278.130000px;}
.y1e_c00296{bottom:280.830000px;}
.y42_c00296{bottom:296.430000px;}
.y1d_c00296{bottom:298.380000px;}
.y41_c00296{bottom:314.880000px;}
.y1c_c00296{bottom:315.630000px;}
.y40_c00296{bottom:332.730000px;}
.y1b_c00296{bottom:333.480000px;}
.y3e_c00296{bottom:349.080000px;}
.y3f_c00296{bottom:349.980000px;}
.y1a_c00296{bottom:351.630000px;}
.y19_c00296{bottom:370.530000px;}
.y18_c00296{bottom:388.530000px;}
.y3d_c00296{bottom:405.030000px;}
.y17_c00296{bottom:407.130000px;}
.y3c_c00296{bottom:423.330000px;}
.y16_c00296{bottom:424.530000px;}
.y3b_c00296{bottom:442.080000px;}
.y15_c00296{bottom:443.430000px;}
.y3a_c00296{bottom:460.080000px;}
.y14_c00296{bottom:461.130000px;}
.y39_c00296{bottom:477.330000px;}
.y13_c00296{bottom:479.280000px;}
.y12_c00296{bottom:495.780000px;}
.y11_c00296{bottom:513.330000px;}
.y10_c00296{bottom:531.180000px;}
.yf_c00296{bottom:550.080000px;}
.y38_c00296{bottom:551.430000px;}
.ye_c00296{bottom:567.630000px;}
.y37_c00296{bottom:567.780000px;}
.yd_c00296{bottom:585.930000px;}
.y36_c00296{bottom:586.980000px;}
.yc_c00296{bottom:604.080000px;}
.y35_c00296{bottom:605.130000px;}
.yb_c00296{bottom:622.680000px;}
.y34_c00296{bottom:623.130000px;}
.ya_c00296{bottom:640.230000px;}
.y33_c00296{bottom:640.530000px;}
.y9_c00296{bottom:658.080000px;}
.y32_c00296{bottom:659.130000px;}
.y8_c00296{bottom:676.380000px;}
.y31_c00296{bottom:677.430000px;}
.y7_c00296{bottom:694.230000px;}
.y30_c00296{bottom:695.580000px;}
.y6_c00296{bottom:712.530000px;}
.y2f_c00296{bottom:713.580000px;}
.y5_c00296{bottom:730.680000px;}
.y2e_c00296{bottom:731.430000px;}
.y4_c00296{bottom:748.530000px;}
.y2d_c00296{bottom:749.580000px;}
.y3_c00296{bottom:766.230000px;}
.y2c_c00296{bottom:767.880000px;}
.y2_c00296{bottom:784.680000px;}
.y2b_c00296{bottom:786.330000px;}
.y1_c00296{bottom:804.330000px;}
.h5_c00296{height:13.200074px;}
.h6_c00296{height:43.804688px;}
.h2_c00296{height:62.880000px;}
.h3_c00296{height:64.020000px;}
.h4_c00296{height:223.224000px;}
.h0_c00296{height:848.100000px;}
.h1_c00296{height:848.250000px;}
.w1_c00296{width:104.875500px;}
.w0_c00296{width:590.250000px;}
.x0_c00296{left:0.000000px;}
.x6_c00296{left:11.100000px;}
.x9_c00296{left:28.650000px;}
.x2_c00296{left:71.250000px;}
.x3_c00296{left:72.900000px;}
.x4_c00296{left:74.550000px;}
.x5_c00296{left:75.900000px;}
.x8_c00296{left:76.950000px;}
.xa_c00296{left:88.500000px;}
.x7_c00296{left:116.100000px;}
.x1_c00296{left:194.400000px;}
.x1a_c00296{left:246.939240px;}
.xb_c00296{left:286.950000px;}
.xc_c00296{left:288.900000px;}
.xd_c00296{left:291.150000px;}
.xe_c00296{left:292.350000px;}
.xf_c00296{left:293.400000px;}
.x17_c00296{left:294.750000px;}
.x15_c00296{left:296.400000px;}
.x18_c00296{left:298.050000px;}
.x11_c00296{left:308.550000px;}
.x19_c00296{left:321.300000px;}
.x12_c00296{left:324.750000px;}
.x10_c00296{left:326.400000px;}
.x16_c00296{left:338.550000px;}
.x13_c00296{left:345.900000px;}
.x14_c00296{left:373.650000px;}
@media print{
.v1_c00296{vertical-align:-129.600000pt;}
.v0_c00296{vertical-align:0.000000pt;}
.v2_c00296{vertical-align:69.333333pt;}
.ls5_c00296{letter-spacing:0.000000pt;}
.ls0_c00296{letter-spacing:1.258667pt;}
.ls2_c00296{letter-spacing:2.666667pt;}
.ls3_c00296{letter-spacing:7.293333pt;}
.ls6_c00296{letter-spacing:8.000000pt;}
.ls4_c00296{letter-spacing:8.744000pt;}
.ls1_c00296{letter-spacing:16.800000pt;}
.ws7_c00296{word-spacing:-37.994667pt;}
.ws8_c00296{word-spacing:-26.040000pt;}
.ws0_c00296{word-spacing:-18.080000pt;}
.ws4_c00296{word-spacing:-16.053333pt;}
.ws5_c00296{word-spacing:-15.413333pt;}
.ws3_c00296{word-spacing:-13.994667pt;}
.ws1_c00296{word-spacing:-13.333333pt;}
.ws2_c00296{word-spacing:-12.586667pt;}
.ws9_c00296{word-spacing:0.000000pt;}
.ws6_c00296{word-spacing:592.266667pt;}
._5_c00296{margin-left:-15.306667pt;}
._2a_c00296{margin-left:-13.826667pt;}
._24_c00296{margin-left:-12.906667pt;}
._a_c00296{margin-left:-11.466667pt;}
._1d_c00296{margin-left:-9.760000pt;}
._10_c00296{margin-left:-8.640000pt;}
._14_c00296{margin-left:-7.626667pt;}
._1c_c00296{margin-left:-6.133333pt;}
._8_c00296{margin-left:-5.120000pt;}
._19_c00296{margin-left:-4.000000pt;}
._e_c00296{margin-left:-3.093333pt;}
._17_c00296{margin-left:-2.080000pt;}
._6_c00296{margin-left:-1.120000pt;}
._c_c00296{width:1.600000pt;}
._9_c00296{width:3.253333pt;}
._1b_c00296{width:4.266667pt;}
._7_c00296{width:5.280000pt;}
._11_c00296{width:6.613333pt;}
._f_c00296{width:7.680000pt;}
._1_c00296{width:8.746667pt;}
._1a_c00296{width:9.653333pt;}
._0_c00296{width:10.880000pt;}
._b_c00296{width:11.946667pt;}
._1f_c00296{width:12.906667pt;}
._18_c00296{width:14.400000pt;}
._2b_c00296{width:16.213333pt;}
._3_c00296{width:17.120000pt;}
._4_c00296{width:18.720000pt;}
._d_c00296{width:20.160000pt;}
._25_c00296{width:21.546667pt;}
._21_c00296{width:22.560000pt;}
._26_c00296{width:23.680000pt;}
._1e_c00296{width:24.800000pt;}
._13_c00296{width:26.933333pt;}
._15_c00296{width:28.960000pt;}
._27_c00296{width:30.880000pt;}
._12_c00296{width:32.106667pt;}
._16_c00296{width:33.280000pt;}
._29_c00296{width:34.400000pt;}
._28_c00296{width:36.106667pt;}
._2_c00296{width:40.480000pt;}
._23_c00296{width:44.640000pt;}
._20_c00296{width:69.973333pt;}
._22_c00296{width:112.693333pt;}
.fs4_c00296{font-size:40.000000pt;}
.fs2_c00296{font-size:42.666667pt;}
.fs1_c00296{font-size:48.000000pt;}
.fs0_c00296{font-size:53.333333pt;}
.fs3_c00296{font-size:104.000000pt;}
.fs5_c00296{font-size:189.333333pt;}
.y0_c00296{bottom:0.000000pt;}
.y51_c00296{bottom:2.760000pt;}
.y50_c00296{bottom:6.425206pt;}
.y4f_c00296{bottom:51.626667pt;}
.y2a_c00296{bottom:54.693333pt;}
.y4e_c00296{bottom:69.360000pt;}
.y29_c00296{bottom:72.560000pt;}
.y4d_c00296{bottom:85.760000pt;}
.y28_c00296{bottom:88.293333pt;}
.y4c_c00296{bottom:101.493333pt;}
.y27_c00296{bottom:104.426667pt;}
.y4b_c00296{bottom:117.893333pt;}
.y26_c00296{bottom:120.560000pt;}
.y4a_c00296{bottom:133.893333pt;}
.y25_c00296{bottom:135.893333pt;}
.y49_c00296{bottom:150.026667pt;}
.y24_c00296{bottom:152.693333pt;}
.y48_c00296{bottom:166.826667pt;}
.y23_c00296{bottom:168.293333pt;}
.y47_c00296{bottom:182.693333pt;}
.y22_c00296{bottom:184.560000pt;}
.y46_c00296{bottom:198.960000pt;}
.y21_c00296{bottom:201.093333pt;}
.y20_c00296{bottom:214.160000pt;}
.y45_c00296{bottom:214.560000pt;}
.y44_c00296{bottom:231.093333pt;}
.y1f_c00296{bottom:233.093333pt;}
.y43_c00296{bottom:247.226667pt;}
.y1e_c00296{bottom:249.626667pt;}
.y42_c00296{bottom:263.493333pt;}
.y1d_c00296{bottom:265.226667pt;}
.y41_c00296{bottom:279.893333pt;}
.y1c_c00296{bottom:280.560000pt;}
.y40_c00296{bottom:295.760000pt;}
.y1b_c00296{bottom:296.426667pt;}
.y3e_c00296{bottom:310.293333pt;}
.y3f_c00296{bottom:311.093333pt;}
.y1a_c00296{bottom:312.560000pt;}
.y19_c00296{bottom:329.360000pt;}
.y18_c00296{bottom:345.360000pt;}
.y3d_c00296{bottom:360.026667pt;}
.y17_c00296{bottom:361.893333pt;}
.y3c_c00296{bottom:376.293333pt;}
.y16_c00296{bottom:377.360000pt;}
.y3b_c00296{bottom:392.960000pt;}
.y15_c00296{bottom:394.160000pt;}
.y3a_c00296{bottom:408.960000pt;}
.y14_c00296{bottom:409.893333pt;}
.y39_c00296{bottom:424.293333pt;}
.y13_c00296{bottom:426.026667pt;}
.y12_c00296{bottom:440.693333pt;}
.y11_c00296{bottom:456.293333pt;}
.y10_c00296{bottom:472.160000pt;}
.yf_c00296{bottom:488.960000pt;}
.y38_c00296{bottom:490.160000pt;}
.ye_c00296{bottom:504.560000pt;}
.y37_c00296{bottom:504.693333pt;}
.yd_c00296{bottom:520.826667pt;}
.y36_c00296{bottom:521.760000pt;}
.yc_c00296{bottom:536.960000pt;}
.y35_c00296{bottom:537.893333pt;}
.yb_c00296{bottom:553.493333pt;}
.y34_c00296{bottom:553.893333pt;}
.ya_c00296{bottom:569.093333pt;}
.y33_c00296{bottom:569.360000pt;}
.y9_c00296{bottom:584.960000pt;}
.y32_c00296{bottom:585.893333pt;}
.y8_c00296{bottom:601.226667pt;}
.y31_c00296{bottom:602.160000pt;}
.y7_c00296{bottom:617.093333pt;}
.y30_c00296{bottom:618.293333pt;}
.y6_c00296{bottom:633.360000pt;}
.y2f_c00296{bottom:634.293333pt;}
.y5_c00296{bottom:649.493333pt;}
.y2e_c00296{bottom:650.160000pt;}
.y4_c00296{bottom:665.360000pt;}
.y2d_c00296{bottom:666.293333pt;}
.y3_c00296{bottom:681.093333pt;}
.y2c_c00296{bottom:682.560000pt;}
.y2_c00296{bottom:697.493333pt;}
.y2b_c00296{bottom:698.960000pt;}
.y1_c00296{bottom:714.960000pt;}
.h5_c00296{height:11.733399pt;}
.h6_c00296{height:38.937500pt;}
.h2_c00296{height:55.893333pt;}
.h3_c00296{height:56.906667pt;}
.h4_c00296{height:198.421333pt;}
.h0_c00296{height:753.866667pt;}
.h1_c00296{height:754.000000pt;}
.w1_c00296{width:93.222667pt;}
.w0_c00296{width:524.666667pt;}
.x0_c00296{left:0.000000pt;}
.x6_c00296{left:9.866667pt;}
.x9_c00296{left:25.466667pt;}
.x2_c00296{left:63.333333pt;}
.x3_c00296{left:64.800000pt;}
.x4_c00296{left:66.266667pt;}
.x5_c00296{left:67.466667pt;}
.x8_c00296{left:68.400000pt;}
.xa_c00296{left:78.666667pt;}
.x7_c00296{left:103.200000pt;}
.x1_c00296{left:172.800000pt;}
.x1a_c00296{left:219.501546pt;}
.xb_c00296{left:255.066667pt;}
.xc_c00296{left:256.800000pt;}
.xd_c00296{left:258.800000pt;}
.xe_c00296{left:259.866667pt;}
.xf_c00296{left:260.800000pt;}
.x17_c00296{left:262.000000pt;}
.x15_c00296{left:263.466667pt;}
.x18_c00296{left:264.933333pt;}
.x11_c00296{left:274.266667pt;}
.x19_c00296{left:285.600000pt;}
.x12_c00296{left:288.666667pt;}
.x10_c00296{left:290.133333pt;}
.x16_c00296{left:300.933333pt;}
.x13_c00296{left:307.466667pt;}
.x14_c00296{left:332.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_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_d5213f95b26f96102c24f69a.woff2')format("woff");}.ff1_c00297{font-family:ff1_c00297;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00297;src:url('chunks/assets/font_40e742745ce6eb887d19ec91.woff2')format("woff");}.ff2_c00297{font-family:ff2_c00297;line-height:1.575000;font-style:normal;font-weight:normal;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_ee3c683a470f3e665fddf1da.woff2')format("woff");}.ff3_c00297{font-family:ff3_c00297;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00297;src:url('chunks/assets/font_70efc15637422dc8907765c5.woff2')format("woff");}.ff4_c00297{font-family:ff4_c00297;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00297;src:url('chunks/assets/font_53970840027122674b0aca81.woff2')format("woff");}.ff5_c00297{font-family:ff5_c00297;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00297;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff6_c00297{font-family:ff6_c00297;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00297{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00297{vertical-align:-75.600000px;}
.v0_c00297{vertical-align:0.000000px;}
.ls7_c00297{letter-spacing:0.000000px;}
.ls2_c00297{letter-spacing:3.000000px;}
.ls1_c00297{letter-spacing:3.240000px;}
.ls6_c00297{letter-spacing:5.040000px;}
.ls0_c00297{letter-spacing:17.400000px;}
.ls3_c00297{letter-spacing:23.805000px;}
.ls4_c00297{letter-spacing:84.540000px;}
.ls5_c00297{letter-spacing:88.740000px;}
.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:-20.340000px;}
.ws3_c00297{word-spacing:-18.060000px;}
.ws4_c00297{word-spacing:-17.340000px;}
.ws1_c00297{word-spacing:-14.160000px;}
.ws5_c00297{word-spacing:0.000000px;}
.ws2_c00297{word-spacing:0.900000px;}
._25_c00297{margin-left:-19.260000px;}
._29_c00297{margin-left:-17.520000px;}
._1c_c00297{margin-left:-14.640000px;}
._1_c00297{margin-left:-10.440000px;}
._23_c00297{margin-left:-9.300000px;}
._24_c00297{margin-left:-7.500000px;}
._22_c00297{margin-left:-5.400000px;}
._d_c00297{margin-left:-3.960000px;}
._e_c00297{margin-left:-2.760000px;}
._0_c00297{margin-left:-1.200000px;}
._18_c00297{width:1.620000px;}
._f_c00297{width:2.760000px;}
._11_c00297{width:4.260000px;}
._12_c00297{width:5.460000px;}
._5_c00297{width:7.320000px;}
._13_c00297{width:9.240000px;}
._b_c00297{width:10.440000px;}
._1e_c00297{width:12.060000px;}
._3_c00297{width:13.200000px;}
._4_c00297{width:14.640000px;}
._27_c00297{width:15.720000px;}
._a_c00297{width:16.740000px;}
._7_c00297{width:20.160000px;}
._9_c00297{width:21.240000px;}
._6_c00297{width:22.500000px;}
._1b_c00297{width:24.000000px;}
._c_c00297{width:25.200000px;}
._16_c00297{width:27.300000px;}
._2b_c00297{width:33.360000px;}
._14_c00297{width:35.580000px;}
._15_c00297{width:38.340000px;}
._2a_c00297{width:43.020000px;}
._26_c00297{width:49.200000px;}
._8_c00297{width:50.940000px;}
._20_c00297{width:71.700000px;}
._1d_c00297{width:73.020000px;}
._1f_c00297{width:76.200000px;}
._19_c00297{width:78.000000px;}
._10_c00297{width:80.100000px;}
._17_c00297{width:81.660000px;}
._1a_c00297{width:83.160000px;}
._28_c00297{width:84.720000px;}
._2c_c00297{width:102.900000px;}
._21_c00297{width:303.720000px;}
._2_c00297{width:336.240000px;}
.fc2_c00297{color:transparent;}
.fc1_c00297{color:rgb(128,128,128);}
.fc0_c00297{color:rgb(0,0,0);}
.fs1_c00297{font-size:45.000000px;}
.fs2_c00297{font-size:48.000000px;}
.fs0_c00297{font-size:60.000000px;}
.y0_c00297{bottom:0.000000px;}
.y42_c00297{bottom:3.105000px;}
.y41_c00297{bottom:7.228357px;}
.y40_c00297{bottom:38.430000px;}
.y3f_c00297{bottom:54.630000px;}
.y3e_c00297{bottom:73.530000px;}
.y32_c00297{bottom:90.780000px;}
.y3d_c00297{bottom:92.130000px;}
.y31_c00297{bottom:109.380000px;}
.y3c_c00297{bottom:109.980000px;}
.y30_c00297{bottom:126.930000px;}
.y3b_c00297{bottom:128.280000px;}
.y2f_c00297{bottom:145.830000px;}
.y3a_c00297{bottom:146.130000px;}
.y2e_c00297{bottom:163.980000px;}
.y39_c00297{bottom:164.130000px;}
.y2d_c00297{bottom:181.980000px;}
.y38_c00297{bottom:182.280000px;}
.y2c_c00297{bottom:200.430000px;}
.y37_c00297{bottom:201.180000px;}
.y2b_c00297{bottom:218.430000px;}
.y36_c00297{bottom:218.730000px;}
.y2a_c00297{bottom:236.280000px;}
.y35_c00297{bottom:237.030000px;}
.y29_c00297{bottom:254.130000px;}
.y34_c00297{bottom:254.430000px;}
.y28_c00297{bottom:272.130000px;}
.y33_c00297{bottom:273.330000px;}
.y21_c00297{bottom:290.880000px;}
.y20_c00297{bottom:307.830000px;}
.y1f_c00297{bottom:326.730000px;}
.y1e_c00297{bottom:345.330000px;}
.y1d_c00297{bottom:362.580000px;}
.y27_c00297{bottom:364.230000px;}
.y1c_c00297{bottom:381.030000px;}
.y26_c00297{bottom:382.680000px;}
.y1b_c00297{bottom:399.030000px;}
.y25_c00297{bottom:400.230000px;}
.y1a_c00297{bottom:416.880000px;}
.y24_c00297{bottom:417.480000px;}
.y23_c00297{bottom:436.680000px;}
.y19_c00297{bottom:453.930000px;}
.y22_c00297{bottom:454.980000px;}
.y18_c00297{bottom:472.530000px;}
.y17_c00297{bottom:490.830000px;}
.y16_c00297{bottom:509.280000px;}
.y15_c00297{bottom:526.230000px;}
.y10_c00297{bottom:528.180000px;}
.y14_c00297{bottom:544.380000px;}
.yf_c00297{bottom:546.480000px;}
.y13_c00297{bottom:562.980000px;}
.ye_c00297{bottom:564.630000px;}
.y12_c00297{bottom:581.130000px;}
.yd_c00297{bottom:583.230000px;}
.y11_c00297{bottom:599.130000px;}
.yc_c00297{bottom:601.380000px;}
.yb_c00297{bottom:618.330000px;}
.ya_c00297{bottom:636.180000px;}
.y9_c00297{bottom:655.380000px;}
.y8_c00297{bottom:673.380000px;}
.y7_c00297{bottom:691.830000px;}
.y6_c00297{bottom:709.080000px;}
.y5_c00297{bottom:726.930000px;}
.y4_c00297{bottom:745.230000px;}
.y3_c00297{bottom:763.080000px;}
.y2_c00297{bottom:782.430000px;}
.y1_c00297{bottom:800.280000px;}
.h4_c00297{height:13.200074px;}
.h5_c00297{height:43.804688px;}
.h3_c00297{height:62.880000px;}
.h2_c00297{height:64.020000px;}
.h0_c00297{height:835.950000px;}
.h1_c00297{height:836.250000px;}
.w2_c00297{width:104.875500px;}
.w0_c00297{width:559.950000px;}
.w1_c00297{width:560.250000px;}
.x0_c00297{left:0.000000px;}
.x9_c00297{left:26.250000px;}
.xa_c00297{left:77.250000px;}
.x8_c00297{left:87.000000px;}
.x7_c00297{left:88.350000px;}
.x6_c00297{left:90.150000px;}
.x2_c00297{left:91.800000px;}
.x1_c00297{left:92.850000px;}
.xc_c00297{left:231.789230px;}
.x5_c00297{left:309.150000px;}
.x4_c00297{left:310.500000px;}
.x3_c00297{left:311.550000px;}
.xb_c00297{left:483.000000px;}
@media print{
.v1_c00297{vertical-align:-67.200000pt;}
.v0_c00297{vertical-align:0.000000pt;}
.ls7_c00297{letter-spacing:0.000000pt;}
.ls2_c00297{letter-spacing:2.666667pt;}
.ls1_c00297{letter-spacing:2.880000pt;}
.ls6_c00297{letter-spacing:4.480000pt;}
.ls0_c00297{letter-spacing:15.466667pt;}
.ls3_c00297{letter-spacing:21.160000pt;}
.ls4_c00297{letter-spacing:75.146667pt;}
.ls5_c00297{letter-spacing:78.880000pt;}
.ws0_c00297{word-spacing:-18.080000pt;}
.ws3_c00297{word-spacing:-16.053333pt;}
.ws4_c00297{word-spacing:-15.413333pt;}
.ws1_c00297{word-spacing:-12.586667pt;}
.ws5_c00297{word-spacing:0.000000pt;}
.ws2_c00297{word-spacing:0.800000pt;}
._25_c00297{margin-left:-17.120000pt;}
._29_c00297{margin-left:-15.573333pt;}
._1c_c00297{margin-left:-13.013333pt;}
._1_c00297{margin-left:-9.280000pt;}
._23_c00297{margin-left:-8.266667pt;}
._24_c00297{margin-left:-6.666667pt;}
._22_c00297{margin-left:-4.800000pt;}
._d_c00297{margin-left:-3.520000pt;}
._e_c00297{margin-left:-2.453333pt;}
._0_c00297{margin-left:-1.066667pt;}
._18_c00297{width:1.440000pt;}
._f_c00297{width:2.453333pt;}
._11_c00297{width:3.786667pt;}
._12_c00297{width:4.853333pt;}
._5_c00297{width:6.506667pt;}
._13_c00297{width:8.213333pt;}
._b_c00297{width:9.280000pt;}
._1e_c00297{width:10.720000pt;}
._3_c00297{width:11.733333pt;}
._4_c00297{width:13.013333pt;}
._27_c00297{width:13.973333pt;}
._a_c00297{width:14.880000pt;}
._7_c00297{width:17.920000pt;}
._9_c00297{width:18.880000pt;}
._6_c00297{width:20.000000pt;}
._1b_c00297{width:21.333333pt;}
._c_c00297{width:22.400000pt;}
._16_c00297{width:24.266667pt;}
._2b_c00297{width:29.653333pt;}
._14_c00297{width:31.626667pt;}
._15_c00297{width:34.080000pt;}
._2a_c00297{width:38.240000pt;}
._26_c00297{width:43.733333pt;}
._8_c00297{width:45.280000pt;}
._20_c00297{width:63.733333pt;}
._1d_c00297{width:64.906667pt;}
._1f_c00297{width:67.733333pt;}
._19_c00297{width:69.333333pt;}
._10_c00297{width:71.200000pt;}
._17_c00297{width:72.586667pt;}
._1a_c00297{width:73.920000pt;}
._28_c00297{width:75.306667pt;}
._2c_c00297{width:91.466667pt;}
._21_c00297{width:269.973333pt;}
._2_c00297{width:298.880000pt;}
.fs1_c00297{font-size:40.000000pt;}
.fs2_c00297{font-size:42.666667pt;}
.fs0_c00297{font-size:53.333333pt;}
.y0_c00297{bottom:0.000000pt;}
.y42_c00297{bottom:2.760000pt;}
.y41_c00297{bottom:6.425206pt;}
.y40_c00297{bottom:34.160000pt;}
.y3f_c00297{bottom:48.560000pt;}
.y3e_c00297{bottom:65.360000pt;}
.y32_c00297{bottom:80.693333pt;}
.y3d_c00297{bottom:81.893333pt;}
.y31_c00297{bottom:97.226667pt;}
.y3c_c00297{bottom:97.760000pt;}
.y30_c00297{bottom:112.826667pt;}
.y3b_c00297{bottom:114.026667pt;}
.y2f_c00297{bottom:129.626667pt;}
.y3a_c00297{bottom:129.893333pt;}
.y2e_c00297{bottom:145.760000pt;}
.y39_c00297{bottom:145.893333pt;}
.y2d_c00297{bottom:161.760000pt;}
.y38_c00297{bottom:162.026667pt;}
.y2c_c00297{bottom:178.160000pt;}
.y37_c00297{bottom:178.826667pt;}
.y2b_c00297{bottom:194.160000pt;}
.y36_c00297{bottom:194.426667pt;}
.y2a_c00297{bottom:210.026667pt;}
.y35_c00297{bottom:210.693333pt;}
.y29_c00297{bottom:225.893333pt;}
.y34_c00297{bottom:226.160000pt;}
.y28_c00297{bottom:241.893333pt;}
.y33_c00297{bottom:242.960000pt;}
.y21_c00297{bottom:258.560000pt;}
.y20_c00297{bottom:273.626667pt;}
.y1f_c00297{bottom:290.426667pt;}
.y1e_c00297{bottom:306.960000pt;}
.y1d_c00297{bottom:322.293333pt;}
.y27_c00297{bottom:323.760000pt;}
.y1c_c00297{bottom:338.693333pt;}
.y26_c00297{bottom:340.160000pt;}
.y1b_c00297{bottom:354.693333pt;}
.y25_c00297{bottom:355.760000pt;}
.y1a_c00297{bottom:370.560000pt;}
.y24_c00297{bottom:371.093333pt;}
.y23_c00297{bottom:388.160000pt;}
.y19_c00297{bottom:403.493333pt;}
.y22_c00297{bottom:404.426667pt;}
.y18_c00297{bottom:420.026667pt;}
.y17_c00297{bottom:436.293333pt;}
.y16_c00297{bottom:452.693333pt;}
.y15_c00297{bottom:467.760000pt;}
.y10_c00297{bottom:469.493333pt;}
.y14_c00297{bottom:483.893333pt;}
.yf_c00297{bottom:485.760000pt;}
.y13_c00297{bottom:500.426667pt;}
.ye_c00297{bottom:501.893333pt;}
.y12_c00297{bottom:516.560000pt;}
.yd_c00297{bottom:518.426667pt;}
.y11_c00297{bottom:532.560000pt;}
.yc_c00297{bottom:534.560000pt;}
.yb_c00297{bottom:549.626667pt;}
.ya_c00297{bottom:565.493333pt;}
.y9_c00297{bottom:582.560000pt;}
.y8_c00297{bottom:598.560000pt;}
.y7_c00297{bottom:614.960000pt;}
.y6_c00297{bottom:630.293333pt;}
.y5_c00297{bottom:646.160000pt;}
.y4_c00297{bottom:662.426667pt;}
.y3_c00297{bottom:678.293333pt;}
.y2_c00297{bottom:695.493333pt;}
.y1_c00297{bottom:711.360000pt;}
.h4_c00297{height:11.733399pt;}
.h5_c00297{height:38.937500pt;}
.h3_c00297{height:55.893333pt;}
.h2_c00297{height:56.906667pt;}
.h0_c00297{height:743.066667pt;}
.h1_c00297{height:743.333333pt;}
.w2_c00297{width:93.222667pt;}
.w0_c00297{width:497.733333pt;}
.w1_c00297{width:498.000000pt;}
.x0_c00297{left:0.000000pt;}
.x9_c00297{left:23.333333pt;}
.xa_c00297{left:68.666667pt;}
.x8_c00297{left:77.333333pt;}
.x7_c00297{left:78.533333pt;}
.x6_c00297{left:80.133333pt;}
.x2_c00297{left:81.600000pt;}
.x1_c00297{left:82.533333pt;}
.xc_c00297{left:206.034871pt;}
.x5_c00297{left:274.800000pt;}
.x4_c00297{left:276.000000pt;}
.x3_c00297{left:276.933333pt;}
.xb_c00297{left:429.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_0ab8c2c57cfa7528c782a9a1.woff2')format("woff");}.ff1_c00298{font-family:ff1_c00298;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00298;src:url('chunks/assets/font_034df3441c834ea463579280.woff2')format("woff");}.ff2_c00298{font-family:ff2_c00298;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00298;src:url('chunks/assets/font_6b4a65466d80f2b0cb4c637a.woff2')format("woff");}.ff3_c00298{font-family:ff3_c00298;line-height:1.575000;font-style:normal;font-weight:normal;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_1f81005aaaf77d3d231d5139.woff2')format("woff");}.ff4_c00298{font-family:ff4_c00298;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00298;src:url('chunks/assets/font_7164f7fc20c479aacf7b7c04.woff2')format("woff");}.ff5_c00298{font-family:ff5_c00298;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00298;src:url('chunks/assets/font_7c7b114d6d8510036cb24ad0.woff2')format("woff");}.ff6_c00298{font-family:ff6_c00298;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00298;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff7_c00298{font-family:ff7_c00298;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00298{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00298{vertical-align:0.000000px;}
.ls5_c00298{letter-spacing:0.000000px;}
.ls0_c00298{letter-spacing:3.000000px;}
.ls4_c00298{letter-spacing:4.440000px;}
.ls6_c00298{letter-spacing:6.000000px;}
.ls1_c00298{letter-spacing:10.500000px;}
.ls3_c00298{letter-spacing:14.880000px;}
.ls2_c00298{letter-spacing:48.540000px;}
.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;}
}
.ws2_c00298{word-spacing:-29.295000px;}
.ws0_c00298{word-spacing:-20.340000px;}
.ws1_c00298{word-spacing:-18.060000px;}
.ws3_c00298{word-spacing:-17.340000px;}
.ws4_c00298{word-spacing:-14.160000px;}
.ws5_c00298{word-spacing:0.000000px;}
._18_c00298{margin-left:-20.760000px;}
._24_c00298{margin-left:-15.720000px;}
._19_c00298{margin-left:-14.400000px;}
._7_c00298{margin-left:-13.260000px;}
._17_c00298{margin-left:-11.400000px;}
._14_c00298{margin-left:-9.960000px;}
._6_c00298{margin-left:-8.700000px;}
._2a_c00298{margin-left:-7.620000px;}
._15_c00298{margin-left:-6.480000px;}
._10_c00298{margin-left:-4.620000px;}
._9_c00298{margin-left:-2.820000px;}
._2_c00298{margin-left:-1.560000px;}
._0_c00298{width:1.380000px;}
._a_c00298{width:2.400000px;}
._f_c00298{width:3.720000px;}
._5_c00298{width:5.340000px;}
._4_c00298{width:6.720000px;}
._11_c00298{width:7.740000px;}
._e_c00298{width:9.240000px;}
._12_c00298{width:10.680000px;}
._1b_c00298{width:11.700000px;}
._20_c00298{width:12.720000px;}
._d_c00298{width:13.740000px;}
._1e_c00298{width:14.940000px;}
._1_c00298{width:17.040000px;}
._1d_c00298{width:19.200000px;}
._1f_c00298{width:20.340000px;}
._1a_c00298{width:21.780000px;}
._26_c00298{width:23.040000px;}
._b_c00298{width:24.480000px;}
._8_c00298{width:25.680000px;}
._3_c00298{width:28.140000px;}
._25_c00298{width:29.160000px;}
._27_c00298{width:30.180000px;}
._1c_c00298{width:32.040000px;}
._29_c00298{width:33.900000px;}
._2b_c00298{width:45.540000px;}
._16_c00298{width:55.620000px;}
._13_c00298{width:68.940000px;}
._c_c00298{width:78.960000px;}
._23_c00298{width:110.100000px;}
._22_c00298{width:140.280000px;}
._21_c00298{width:198.360000px;}
._28_c00298{width:207.180000px;}
.fc2_c00298{color:transparent;}
.fc1_c00298{color:rgb(128,128,128);}
.fc0_c00298{color:rgb(0,0,0);}
.fs1_c00298{font-size:45.000000px;}
.fs2_c00298{font-size:48.000000px;}
.fs0_c00298{font-size:60.000000px;}
.y0_c00298{bottom:0.000000px;}
.y55_c00298{bottom:3.105000px;}
.y54_c00298{bottom:7.228363px;}
.y53_c00298{bottom:31.350000px;}
.y52_c00298{bottom:50.550000px;}
.y29_c00298{bottom:55.050000px;}
.y51_c00298{bottom:68.400000px;}
.y28_c00298{bottom:74.550000px;}
.y50_c00298{bottom:87.300000px;}
.y27_c00298{bottom:92.400000px;}
.y4f_c00298{bottom:104.850000px;}
.y26_c00298{bottom:110.400000px;}
.y4e_c00298{bottom:123.750000px;}
.y25_c00298{bottom:128.250000px;}
.y4d_c00298{bottom:142.050000px;}
.y24_c00298{bottom:147.150000px;}
.y4c_c00298{bottom:159.900000px;}
.y23_c00298{bottom:164.100000px;}
.y4b_c00298{bottom:178.500000px;}
.y22_c00298{bottom:183.600000px;}
.y4a_c00298{bottom:196.800000px;}
.y21_c00298{bottom:199.800000px;}
.y49_c00298{bottom:214.350000px;}
.y20_c00298{bottom:220.800000px;}
.y48_c00298{bottom:232.800000px;}
.y1f_c00298{bottom:237.300000px;}
.y47_c00298{bottom:251.400000px;}
.y1e_c00298{bottom:255.900000px;}
.y46_c00298{bottom:268.650000px;}
.y1d_c00298{bottom:273.450000px;}
.y45_c00298{bottom:287.850000px;}
.y1c_c00298{bottom:291.900000px;}
.y44_c00298{bottom:305.700000px;}
.y1b_c00298{bottom:309.600000px;}
.y43_c00298{bottom:324.000000px;}
.y1a_c00298{bottom:325.800000px;}
.y42_c00298{bottom:342.150000px;}
.y19_c00298{bottom:346.050000px;}
.y41_c00298{bottom:360.450000px;}
.y18_c00298{bottom:363.600000px;}
.y40_c00298{bottom:378.300000px;}
.y17_c00298{bottom:381.750000px;}
.y3f_c00298{bottom:397.800000px;}
.y16_c00298{bottom:400.050000px;}
.y3e_c00298{bottom:415.050000px;}
.y15_c00298{bottom:417.900000px;}
.y3d_c00298{bottom:432.600000px;}
.y14_c00298{bottom:436.350000px;}
.y3c_c00298{bottom:450.900000px;}
.y13_c00298{bottom:454.950000px;}
.y3b_c00298{bottom:469.050000px;}
.y12_c00298{bottom:472.200000px;}
.y3a_c00298{bottom:486.300000px;}
.y11_c00298{bottom:490.050000px;}
.y39_c00298{bottom:504.600000px;}
.y10_c00298{bottom:507.300000px;}
.y38_c00298{bottom:522.900000px;}
.yf_c00298{bottom:525.150000px;}
.y37_c00298{bottom:541.050000px;}
.ye_c00298{bottom:543.300000px;}
.y36_c00298{bottom:559.350000px;}
.yd_c00298{bottom:561.900000px;}
.y35_c00298{bottom:576.900000px;}
.yc_c00298{bottom:579.150000px;}
.y34_c00298{bottom:595.350000px;}
.yb_c00298{bottom:597.300000px;}
.y33_c00298{bottom:613.350000px;}
.ya_c00298{bottom:615.300000px;}
.y32_c00298{bottom:631.200000px;}
.y9_c00298{bottom:632.850000px;}
.y31_c00298{bottom:649.350000px;}
.y8_c00298{bottom:651.300000px;}
.y30_c00298{bottom:666.600000px;}
.y7_c00298{bottom:668.550000px;}
.y2f_c00298{bottom:685.200000px;}
.y6_c00298{bottom:686.700000px;}
.y2e_c00298{bottom:703.650000px;}
.y5_c00298{bottom:704.400000px;}
.y2d_c00298{bottom:721.500000px;}
.y4_c00298{bottom:721.950000px;}
.y2c_c00298{bottom:740.100000px;}
.y3_c00298{bottom:740.700000px;}
.y2b_c00298{bottom:758.250000px;}
.y2_c00298{bottom:758.700000px;}
.y2a_c00298{bottom:775.950000px;}
.y1_c00298{bottom:776.250000px;}
.h4_c00298{height:13.200074px;}
.h5_c00298{height:43.804688px;}
.h2_c00298{height:62.880000px;}
.h3_c00298{height:64.020000px;}
.h1_c00298{height:842.250000px;}
.h0_c00298{height:842.400000px;}
.w2_c00298{width:104.875500px;}
.w0_c00298{width:586.425000px;}
.w1_c00298{width:586.500000px;}
.x0_c00298{left:0.000000px;}
.x7_c00298{left:13.800000px;}
.x8_c00298{left:14.850000px;}
.x1_c00298{left:67.200000px;}
.x2_c00298{left:68.550000px;}
.x3_c00298{left:69.600000px;}
.x4_c00298{left:71.250000px;}
.x5_c00298{left:72.300000px;}
.x6_c00298{left:97.650000px;}
.x12_c00298{left:245.026749px;}
.xa_c00298{left:282.450000px;}
.x9_c00298{left:284.550000px;}
.xb_c00298{left:285.600000px;}
.xc_c00298{left:287.100000px;}
.xd_c00298{left:288.450000px;}
.xe_c00298{left:289.800000px;}
.xf_c00298{left:291.150000px;}
.x10_c00298{left:292.200000px;}
.x11_c00298{left:455.550000px;}
@media print{
.v0_c00298{vertical-align:0.000000pt;}
.ls5_c00298{letter-spacing:0.000000pt;}
.ls0_c00298{letter-spacing:2.666667pt;}
.ls4_c00298{letter-spacing:3.946667pt;}
.ls6_c00298{letter-spacing:5.333333pt;}
.ls1_c00298{letter-spacing:9.333333pt;}
.ls3_c00298{letter-spacing:13.226667pt;}
.ls2_c00298{letter-spacing:43.146667pt;}
.ws2_c00298{word-spacing:-26.040000pt;}
.ws0_c00298{word-spacing:-18.080000pt;}
.ws1_c00298{word-spacing:-16.053333pt;}
.ws3_c00298{word-spacing:-15.413333pt;}
.ws4_c00298{word-spacing:-12.586667pt;}
.ws5_c00298{word-spacing:0.000000pt;}
._18_c00298{margin-left:-18.453333pt;}
._24_c00298{margin-left:-13.973333pt;}
._19_c00298{margin-left:-12.800000pt;}
._7_c00298{margin-left:-11.786667pt;}
._17_c00298{margin-left:-10.133333pt;}
._14_c00298{margin-left:-8.853333pt;}
._6_c00298{margin-left:-7.733333pt;}
._2a_c00298{margin-left:-6.773333pt;}
._15_c00298{margin-left:-5.760000pt;}
._10_c00298{margin-left:-4.106667pt;}
._9_c00298{margin-left:-2.506667pt;}
._2_c00298{margin-left:-1.386667pt;}
._0_c00298{width:1.226667pt;}
._a_c00298{width:2.133333pt;}
._f_c00298{width:3.306667pt;}
._5_c00298{width:4.746667pt;}
._4_c00298{width:5.973333pt;}
._11_c00298{width:6.880000pt;}
._e_c00298{width:8.213333pt;}
._12_c00298{width:9.493333pt;}
._1b_c00298{width:10.400000pt;}
._20_c00298{width:11.306667pt;}
._d_c00298{width:12.213333pt;}
._1e_c00298{width:13.280000pt;}
._1_c00298{width:15.146667pt;}
._1d_c00298{width:17.066667pt;}
._1f_c00298{width:18.080000pt;}
._1a_c00298{width:19.360000pt;}
._26_c00298{width:20.480000pt;}
._b_c00298{width:21.760000pt;}
._8_c00298{width:22.826667pt;}
._3_c00298{width:25.013333pt;}
._25_c00298{width:25.920000pt;}
._27_c00298{width:26.826667pt;}
._1c_c00298{width:28.480000pt;}
._29_c00298{width:30.133333pt;}
._2b_c00298{width:40.480000pt;}
._16_c00298{width:49.440000pt;}
._13_c00298{width:61.280000pt;}
._c_c00298{width:70.186667pt;}
._23_c00298{width:97.866667pt;}
._22_c00298{width:124.693333pt;}
._21_c00298{width:176.320000pt;}
._28_c00298{width:184.160000pt;}
.fs1_c00298{font-size:40.000000pt;}
.fs2_c00298{font-size:42.666667pt;}
.fs0_c00298{font-size:53.333333pt;}
.y0_c00298{bottom:0.000000pt;}
.y55_c00298{bottom:2.760000pt;}
.y54_c00298{bottom:6.425212pt;}
.y53_c00298{bottom:27.866667pt;}
.y52_c00298{bottom:44.933333pt;}
.y29_c00298{bottom:48.933333pt;}
.y51_c00298{bottom:60.800000pt;}
.y28_c00298{bottom:66.266667pt;}
.y50_c00298{bottom:77.600000pt;}
.y27_c00298{bottom:82.133333pt;}
.y4f_c00298{bottom:93.200000pt;}
.y26_c00298{bottom:98.133333pt;}
.y4e_c00298{bottom:110.000000pt;}
.y25_c00298{bottom:114.000000pt;}
.y4d_c00298{bottom:126.266667pt;}
.y24_c00298{bottom:130.800000pt;}
.y4c_c00298{bottom:142.133333pt;}
.y23_c00298{bottom:145.866667pt;}
.y4b_c00298{bottom:158.666667pt;}
.y22_c00298{bottom:163.200000pt;}
.y4a_c00298{bottom:174.933333pt;}
.y21_c00298{bottom:177.600000pt;}
.y49_c00298{bottom:190.533333pt;}
.y20_c00298{bottom:196.266667pt;}
.y48_c00298{bottom:206.933333pt;}
.y1f_c00298{bottom:210.933333pt;}
.y47_c00298{bottom:223.466667pt;}
.y1e_c00298{bottom:227.466667pt;}
.y46_c00298{bottom:238.800000pt;}
.y1d_c00298{bottom:243.066667pt;}
.y45_c00298{bottom:255.866667pt;}
.y1c_c00298{bottom:259.466667pt;}
.y44_c00298{bottom:271.733333pt;}
.y1b_c00298{bottom:275.200000pt;}
.y43_c00298{bottom:288.000000pt;}
.y1a_c00298{bottom:289.600000pt;}
.y42_c00298{bottom:304.133333pt;}
.y19_c00298{bottom:307.600000pt;}
.y41_c00298{bottom:320.400000pt;}
.y18_c00298{bottom:323.200000pt;}
.y40_c00298{bottom:336.266667pt;}
.y17_c00298{bottom:339.333333pt;}
.y3f_c00298{bottom:353.600000pt;}
.y16_c00298{bottom:355.600000pt;}
.y3e_c00298{bottom:368.933333pt;}
.y15_c00298{bottom:371.466667pt;}
.y3d_c00298{bottom:384.533333pt;}
.y14_c00298{bottom:387.866667pt;}
.y3c_c00298{bottom:400.800000pt;}
.y13_c00298{bottom:404.400000pt;}
.y3b_c00298{bottom:416.933333pt;}
.y12_c00298{bottom:419.733333pt;}
.y3a_c00298{bottom:432.266667pt;}
.y11_c00298{bottom:435.600000pt;}
.y39_c00298{bottom:448.533333pt;}
.y10_c00298{bottom:450.933333pt;}
.y38_c00298{bottom:464.800000pt;}
.yf_c00298{bottom:466.800000pt;}
.y37_c00298{bottom:480.933333pt;}
.ye_c00298{bottom:482.933333pt;}
.y36_c00298{bottom:497.200000pt;}
.yd_c00298{bottom:499.466667pt;}
.y35_c00298{bottom:512.800000pt;}
.yc_c00298{bottom:514.800000pt;}
.y34_c00298{bottom:529.200000pt;}
.yb_c00298{bottom:530.933333pt;}
.y33_c00298{bottom:545.200000pt;}
.ya_c00298{bottom:546.933333pt;}
.y32_c00298{bottom:561.066667pt;}
.y9_c00298{bottom:562.533333pt;}
.y31_c00298{bottom:577.200000pt;}
.y8_c00298{bottom:578.933333pt;}
.y30_c00298{bottom:592.533333pt;}
.y7_c00298{bottom:594.266667pt;}
.y2f_c00298{bottom:609.066667pt;}
.y6_c00298{bottom:610.400000pt;}
.y2e_c00298{bottom:625.466667pt;}
.y5_c00298{bottom:626.133333pt;}
.y2d_c00298{bottom:641.333333pt;}
.y4_c00298{bottom:641.733333pt;}
.y2c_c00298{bottom:657.866667pt;}
.y3_c00298{bottom:658.400000pt;}
.y2b_c00298{bottom:674.000000pt;}
.y2_c00298{bottom:674.400000pt;}
.y2a_c00298{bottom:689.733333pt;}
.y1_c00298{bottom:690.000000pt;}
.h4_c00298{height:11.733399pt;}
.h5_c00298{height:38.937500pt;}
.h2_c00298{height:55.893333pt;}
.h3_c00298{height:56.906667pt;}
.h1_c00298{height:748.666667pt;}
.h0_c00298{height:748.800000pt;}
.w2_c00298{width:93.222667pt;}
.w0_c00298{width:521.266667pt;}
.w1_c00298{width:521.333333pt;}
.x0_c00298{left:0.000000pt;}
.x7_c00298{left:12.266667pt;}
.x8_c00298{left:13.200000pt;}
.x1_c00298{left:59.733333pt;}
.x2_c00298{left:60.933333pt;}
.x3_c00298{left:61.866667pt;}
.x4_c00298{left:63.333333pt;}
.x5_c00298{left:64.266667pt;}
.x6_c00298{left:86.800000pt;}
.x12_c00298{left:217.801554pt;}
.xa_c00298{left:251.066667pt;}
.x9_c00298{left:252.933333pt;}
.xb_c00298{left:253.866667pt;}
.xc_c00298{left:255.200000pt;}
.xd_c00298{left:256.400000pt;}
.xe_c00298{left:257.600000pt;}
.xf_c00298{left:258.800000pt;}
.x10_c00298{left:259.733333pt;}
.x11_c00298{left:404.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_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_cc037a54f2b9c414e584dea6.woff2')format("woff");}.ff1_c00299{font-family:ff1_c00299;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00299;src:url('chunks/assets/font_488e41150313862cc5fc735c.woff2')format("woff");}.ff2_c00299{font-family:ff2_c00299;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00299;src:url('chunks/assets/font_04afd72366cd814c34a860aa.woff2')format("woff");}.ff3_c00299{font-family:ff3_c00299;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00299;src:url('chunks/assets/font_506912a369582d498e8daa37.woff2')format("woff");}.ff4_c00299{font-family:ff4_c00299;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00299;src:url('chunks/assets/font_7164f7fc20c479aacf7b7c04.woff2')format("woff");}.ff5_c00299{font-family:ff5_c00299;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00299;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff6_c00299{font-family:ff6_c00299;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00299{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00299{vertical-align:0.000000px;}
.v1_c00299{vertical-align:17.400000px;}
.ls4_c00299{letter-spacing:0.000000px;}
.ls2_c00299{letter-spacing:1.005000px;}
.ls1_c00299{letter-spacing:3.000000px;}
.ls5_c00299{letter-spacing:12.000000px;}
.ls6_c00299{letter-spacing:27.000000px;}
.ls3_c00299{letter-spacing:127.140000px;}
.ls0_c00299{letter-spacing:305.787000px;}
.sc__c00299{text-shadow:none;}
.sc0_c00299{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00299{-webkit-text-stroke:0px transparent;}
.sc0_c00299{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00299{word-spacing:-27.813000px;}
.ws5_c00299{word-spacing:-18.060000px;}
.ws4_c00299{word-spacing:-17.340000px;}
.ws0_c00299{word-spacing:-14.340000px;}
.ws3_c00299{word-spacing:-14.160000px;}
.ws6_c00299{word-spacing:0.000000px;}
.ws2_c00299{word-spacing:22.080000px;}
._20_c00299{margin-left:-24.120000px;}
._1e_c00299{margin-left:-22.920000px;}
._1f_c00299{margin-left:-20.280000px;}
._1d_c00299{margin-left:-18.180000px;}
._29_c00299{margin-left:-11.820000px;}
._15_c00299{margin-left:-9.120000px;}
._f_c00299{margin-left:-7.482000px;}
._23_c00299{margin-left:-6.240000px;}
._e_c00299{margin-left:-4.920000px;}
._a_c00299{margin-left:-3.360000px;}
._7_c00299{margin-left:-2.220000px;}
._8_c00299{margin-left:-1.200000px;}
._5_c00299{width:1.680000px;}
._4_c00299{width:3.480000px;}
._6_c00299{width:4.680000px;}
._d_c00299{width:6.180000px;}
._3_c00299{width:7.182000px;}
._1_c00299{width:9.000000px;}
._0_c00299{width:10.200000px;}
._2_c00299{width:11.520000px;}
._19_c00299{width:12.900000px;}
._9_c00299{width:14.100000px;}
._b_c00299{width:15.540000px;}
._22_c00299{width:16.860000px;}
._12_c00299{width:17.880000px;}
._21_c00299{width:19.158000px;}
._c_c00299{width:20.640000px;}
._1c_c00299{width:21.924000px;}
._28_c00299{width:23.178000px;}
._17_c00299{width:24.618000px;}
._16_c00299{width:26.580000px;}
._27_c00299{width:27.900000px;}
._13_c00299{width:29.778000px;}
._14_c00299{width:31.440000px;}
._25_c00299{width:33.300000px;}
._2b_c00299{width:36.300000px;}
._24_c00299{width:37.962000px;}
._2a_c00299{width:45.402000px;}
._26_c00299{width:46.440000px;}
._1a_c00299{width:50.640000px;}
._18_c00299{width:53.442000px;}
._1b_c00299{width:67.380000px;}
._11_c00299{width:78.840000px;}
._10_c00299{width:83.280000px;}
.fc2_c00299{color:transparent;}
.fc1_c00299{color:rgb(128,128,128);}
.fc0_c00299{color:rgb(0,0,0);}
.fs3_c00299{font-size:45.000000px;}
.fs4_c00299{font-size:48.000000px;}
.fs0_c00299{font-size:60.000000px;}
.fs1_c00299{font-size:63.000000px;}
.fs2_c00299{font-size:72.000000px;}
.y0_c00299{bottom:0.000000px;}
.y51_c00299{bottom:3.105000px;}
.y50_c00299{bottom:7.228357px;}
.y4f_c00299{bottom:42.930000px;}
.y2a_c00299{bottom:57.780000px;}
.y4e_c00299{bottom:60.030000px;}
.y29_c00299{bottom:77.280000px;}
.y4d_c00299{bottom:78.630000px;}
.y28_c00299{bottom:95.880000px;}
.y4c_c00299{bottom:97.230000px;}
.y27_c00299{bottom:114.180000px;}
.y4b_c00299{bottom:114.780000px;}
.y26_c00299{bottom:131.280000px;}
.y4a_c00299{bottom:133.680000px;}
.y25_c00299{bottom:150.630000px;}
.y49_c00299{bottom:151.530000px;}
.y24_c00299{bottom:167.730000px;}
.y48_c00299{bottom:169.830000px;}
.y47_c00299{bottom:183.930000px;}
.y23_c00299{bottom:186.330000px;}
.y22_c00299{bottom:204.480000px;}
.y21_c00299{bottom:222.780000px;}
.y46_c00299{bottom:224.430000px;}
.y20_c00299{bottom:241.080000px;}
.y45_c00299{bottom:242.730000px;}
.y1f_c00299{bottom:259.830000px;}
.y44_c00299{bottom:260.580000px;}
.y1e_c00299{bottom:276.780000px;}
.y43_c00299{bottom:278.880000px;}
.y1d_c00299{bottom:295.080000px;}
.y1c_c00299{bottom:312.930000px;}
.y42_c00299{bottom:313.980000px;}
.y1b_c00299{bottom:331.080000px;}
.y41_c00299{bottom:349.680000px;}
.y1a_c00299{bottom:349.980000px;}
.y19_c00299{bottom:367.980000px;}
.y18_c00299{bottom:386.130000px;}
.y40_c00299{bottom:386.880000px;}
.y17_c00299{bottom:403.980000px;}
.y3f_c00299{bottom:405.030000px;}
.y16_c00299{bottom:422.280000px;}
.y3e_c00299{bottom:422.580000px;}
.y15_c00299{bottom:440.730000px;}
.y3d_c00299{bottom:440.880000px;}
.y14_c00299{bottom:458.280000px;}
.y3c_c00299{bottom:459.030000px;}
.y13_c00299{bottom:476.280000px;}
.y3b_c00299{bottom:477.180000px;}
.y12_c00299{bottom:494.580000px;}
.y3a_c00299{bottom:496.080000px;}
.y11_c00299{bottom:512.730000px;}
.y39_c00299{bottom:514.080000px;}
.y10_c00299{bottom:530.880000px;}
.y38_c00299{bottom:531.930000px;}
.yf_c00299{bottom:549.180000px;}
.y37_c00299{bottom:550.230000px;}
.ye_c00299{bottom:567.630000px;}
.y36_c00299{bottom:568.080000px;}
.yd_c00299{bottom:585.930000px;}
.y35_c00299{bottom:586.680000px;}
.yc_c00299{bottom:603.480000px;}
.y34_c00299{bottom:604.530000px;}
.yb_c00299{bottom:621.630000px;}
.y33_c00299{bottom:623.130000px;}
.ya_c00299{bottom:639.630000px;}
.y32_c00299{bottom:641.280000px;}
.y9_c00299{bottom:658.530000px;}
.y31_c00299{bottom:659.130000px;}
.y8_c00299{bottom:676.080000px;}
.y30_c00299{bottom:676.680000px;}
.y7_c00299{bottom:694.230000px;}
.y2f_c00299{bottom:695.280000px;}
.y6_c00299{bottom:712.230000px;}
.y2e_c00299{bottom:713.580000px;}
.y5_c00299{bottom:730.980000px;}
.y2d_c00299{bottom:731.730000px;}
.y4_c00299{bottom:748.680000px;}
.y2c_c00299{bottom:750.030000px;}
.y3_c00299{bottom:767.430000px;}
.y2b_c00299{bottom:767.880000px;}
.y2_c00299{bottom:786.030000px;}
.y1_c00299{bottom:804.330000px;}
.h6_c00299{height:13.200074px;}
.h7_c00299{height:43.804688px;}
.h3_c00299{height:62.880000px;}
.h2_c00299{height:66.024000px;}
.h4_c00299{height:70.664062px;}
.h5_c00299{height:80.280000px;}
.h0_c00299{height:835.950000px;}
.h1_c00299{height:836.250000px;}
.w2_c00299{width:104.875500px;}
.w0_c00299{width:559.950000px;}
.w1_c00299{width:560.250000px;}
.x0_c00299{left:0.000000px;}
.xa_c00299{left:24.300000px;}
.x8_c00299{left:32.100000px;}
.x5_c00299{left:70.950000px;}
.xb_c00299{left:83.400000px;}
.x9_c00299{left:85.050000px;}
.x7_c00299{left:86.400000px;}
.x6_c00299{left:87.450000px;}
.x4_c00299{left:89.100000px;}
.x3_c00299{left:90.750000px;}
.x2_c00299{left:92.850000px;}
.x1_c00299{left:97.200000px;}
.x1f_c00299{left:231.789230px;}
.x1d_c00299{left:303.150000px;}
.x1c_c00299{left:304.500000px;}
.x19_c00299{left:305.550000px;}
.x1b_c00299{left:306.750000px;}
.x16_c00299{left:308.850000px;}
.x14_c00299{left:310.800000px;}
.x13_c00299{left:311.850000px;}
.x12_c00299{left:312.900000px;}
.x11_c00299{left:314.850000px;}
.x10_c00299{left:316.200000px;}
.xf_c00299{left:318.150000px;}
.xe_c00299{left:319.200000px;}
.xc_c00299{left:320.550000px;}
.xd_c00299{left:321.600000px;}
.x17_c00299{left:337.200000px;}
.x1a_c00299{left:347.700000px;}
.x18_c00299{left:378.000000px;}
.x15_c00299{left:382.050000px;}
.x1e_c00299{left:455.250000px;}
@media print{
.v0_c00299{vertical-align:0.000000pt;}
.v1_c00299{vertical-align:15.466667pt;}
.ls4_c00299{letter-spacing:0.000000pt;}
.ls2_c00299{letter-spacing:0.893333pt;}
.ls1_c00299{letter-spacing:2.666667pt;}
.ls5_c00299{letter-spacing:10.666667pt;}
.ls6_c00299{letter-spacing:24.000000pt;}
.ls3_c00299{letter-spacing:113.013333pt;}
.ls0_c00299{letter-spacing:271.810667pt;}
.ws1_c00299{word-spacing:-24.722667pt;}
.ws5_c00299{word-spacing:-16.053333pt;}
.ws4_c00299{word-spacing:-15.413333pt;}
.ws0_c00299{word-spacing:-12.746667pt;}
.ws3_c00299{word-spacing:-12.586667pt;}
.ws6_c00299{word-spacing:0.000000pt;}
.ws2_c00299{word-spacing:19.626667pt;}
._20_c00299{margin-left:-21.440000pt;}
._1e_c00299{margin-left:-20.373333pt;}
._1f_c00299{margin-left:-18.026667pt;}
._1d_c00299{margin-left:-16.160000pt;}
._29_c00299{margin-left:-10.506667pt;}
._15_c00299{margin-left:-8.106667pt;}
._f_c00299{margin-left:-6.650667pt;}
._23_c00299{margin-left:-5.546667pt;}
._e_c00299{margin-left:-4.373333pt;}
._a_c00299{margin-left:-2.986667pt;}
._7_c00299{margin-left:-1.973333pt;}
._8_c00299{margin-left:-1.066667pt;}
._5_c00299{width:1.493333pt;}
._4_c00299{width:3.093333pt;}
._6_c00299{width:4.160000pt;}
._d_c00299{width:5.493333pt;}
._3_c00299{width:6.384000pt;}
._1_c00299{width:8.000000pt;}
._0_c00299{width:9.066667pt;}
._2_c00299{width:10.240000pt;}
._19_c00299{width:11.466667pt;}
._9_c00299{width:12.533333pt;}
._b_c00299{width:13.813333pt;}
._22_c00299{width:14.986667pt;}
._12_c00299{width:15.893333pt;}
._21_c00299{width:17.029333pt;}
._c_c00299{width:18.346667pt;}
._1c_c00299{width:19.488000pt;}
._28_c00299{width:20.602667pt;}
._17_c00299{width:21.882667pt;}
._16_c00299{width:23.626667pt;}
._27_c00299{width:24.800000pt;}
._13_c00299{width:26.469333pt;}
._14_c00299{width:27.946667pt;}
._25_c00299{width:29.600000pt;}
._2b_c00299{width:32.266667pt;}
._24_c00299{width:33.744000pt;}
._2a_c00299{width:40.357333pt;}
._26_c00299{width:41.280000pt;}
._1a_c00299{width:45.013333pt;}
._18_c00299{width:47.504000pt;}
._1b_c00299{width:59.893333pt;}
._11_c00299{width:70.080000pt;}
._10_c00299{width:74.026667pt;}
.fs3_c00299{font-size:40.000000pt;}
.fs4_c00299{font-size:42.666667pt;}
.fs0_c00299{font-size:53.333333pt;}
.fs1_c00299{font-size:56.000000pt;}
.fs2_c00299{font-size:64.000000pt;}
.y0_c00299{bottom:0.000000pt;}
.y51_c00299{bottom:2.760000pt;}
.y50_c00299{bottom:6.425206pt;}
.y4f_c00299{bottom:38.160000pt;}
.y2a_c00299{bottom:51.360000pt;}
.y4e_c00299{bottom:53.360000pt;}
.y29_c00299{bottom:68.693333pt;}
.y4d_c00299{bottom:69.893333pt;}
.y28_c00299{bottom:85.226667pt;}
.y4c_c00299{bottom:86.426667pt;}
.y27_c00299{bottom:101.493333pt;}
.y4b_c00299{bottom:102.026667pt;}
.y26_c00299{bottom:116.693333pt;}
.y4a_c00299{bottom:118.826667pt;}
.y25_c00299{bottom:133.893333pt;}
.y49_c00299{bottom:134.693333pt;}
.y24_c00299{bottom:149.093333pt;}
.y48_c00299{bottom:150.960000pt;}
.y47_c00299{bottom:163.493333pt;}
.y23_c00299{bottom:165.626667pt;}
.y22_c00299{bottom:181.760000pt;}
.y21_c00299{bottom:198.026667pt;}
.y46_c00299{bottom:199.493333pt;}
.y20_c00299{bottom:214.293333pt;}
.y45_c00299{bottom:215.760000pt;}
.y1f_c00299{bottom:230.960000pt;}
.y44_c00299{bottom:231.626667pt;}
.y1e_c00299{bottom:246.026667pt;}
.y43_c00299{bottom:247.893333pt;}
.y1d_c00299{bottom:262.293333pt;}
.y1c_c00299{bottom:278.160000pt;}
.y42_c00299{bottom:279.093333pt;}
.y1b_c00299{bottom:294.293333pt;}
.y41_c00299{bottom:310.826667pt;}
.y1a_c00299{bottom:311.093333pt;}
.y19_c00299{bottom:327.093333pt;}
.y18_c00299{bottom:343.226667pt;}
.y40_c00299{bottom:343.893333pt;}
.y17_c00299{bottom:359.093333pt;}
.y3f_c00299{bottom:360.026667pt;}
.y16_c00299{bottom:375.360000pt;}
.y3e_c00299{bottom:375.626667pt;}
.y15_c00299{bottom:391.760000pt;}
.y3d_c00299{bottom:391.893333pt;}
.y14_c00299{bottom:407.360000pt;}
.y3c_c00299{bottom:408.026667pt;}
.y13_c00299{bottom:423.360000pt;}
.y3b_c00299{bottom:424.160000pt;}
.y12_c00299{bottom:439.626667pt;}
.y3a_c00299{bottom:440.960000pt;}
.y11_c00299{bottom:455.760000pt;}
.y39_c00299{bottom:456.960000pt;}
.y10_c00299{bottom:471.893333pt;}
.y38_c00299{bottom:472.826667pt;}
.yf_c00299{bottom:488.160000pt;}
.y37_c00299{bottom:489.093333pt;}
.ye_c00299{bottom:504.560000pt;}
.y36_c00299{bottom:504.960000pt;}
.yd_c00299{bottom:520.826667pt;}
.y35_c00299{bottom:521.493333pt;}
.yc_c00299{bottom:536.426667pt;}
.y34_c00299{bottom:537.360000pt;}
.yb_c00299{bottom:552.560000pt;}
.y33_c00299{bottom:553.893333pt;}
.ya_c00299{bottom:568.560000pt;}
.y32_c00299{bottom:570.026667pt;}
.y9_c00299{bottom:585.360000pt;}
.y31_c00299{bottom:585.893333pt;}
.y8_c00299{bottom:600.960000pt;}
.y30_c00299{bottom:601.493333pt;}
.y7_c00299{bottom:617.093333pt;}
.y2f_c00299{bottom:618.026667pt;}
.y6_c00299{bottom:633.093333pt;}
.y2e_c00299{bottom:634.293333pt;}
.y5_c00299{bottom:649.760000pt;}
.y2d_c00299{bottom:650.426667pt;}
.y4_c00299{bottom:665.493333pt;}
.y2c_c00299{bottom:666.693333pt;}
.y3_c00299{bottom:682.160000pt;}
.y2b_c00299{bottom:682.560000pt;}
.y2_c00299{bottom:698.693333pt;}
.y1_c00299{bottom:714.960000pt;}
.h6_c00299{height:11.733399pt;}
.h7_c00299{height:38.937500pt;}
.h3_c00299{height:55.893333pt;}
.h2_c00299{height:58.688000pt;}
.h4_c00299{height:62.812500pt;}
.h5_c00299{height:71.360000pt;}
.h0_c00299{height:743.066667pt;}
.h1_c00299{height:743.333333pt;}
.w2_c00299{width:93.222667pt;}
.w0_c00299{width:497.733333pt;}
.w1_c00299{width:498.000000pt;}
.x0_c00299{left:0.000000pt;}
.xa_c00299{left:21.600000pt;}
.x8_c00299{left:28.533333pt;}
.x5_c00299{left:63.066667pt;}
.xb_c00299{left:74.133333pt;}
.x9_c00299{left:75.600000pt;}
.x7_c00299{left:76.800000pt;}
.x6_c00299{left:77.733333pt;}
.x4_c00299{left:79.200000pt;}
.x3_c00299{left:80.666667pt;}
.x2_c00299{left:82.533333pt;}
.x1_c00299{left:86.400000pt;}
.x1f_c00299{left:206.034871pt;}
.x1d_c00299{left:269.466667pt;}
.x1c_c00299{left:270.666667pt;}
.x19_c00299{left:271.600000pt;}
.x1b_c00299{left:272.666667pt;}
.x16_c00299{left:274.533333pt;}
.x14_c00299{left:276.266667pt;}
.x13_c00299{left:277.200000pt;}
.x12_c00299{left:278.133333pt;}
.x11_c00299{left:279.866667pt;}
.x10_c00299{left:281.066667pt;}
.xf_c00299{left:282.800000pt;}
.xe_c00299{left:283.733333pt;}
.xc_c00299{left:284.933333pt;}
.xd_c00299{left:285.866667pt;}
.x17_c00299{left:299.733333pt;}
.x1a_c00299{left:309.066667pt;}
.x18_c00299{left:336.000000pt;}
.x15_c00299{left:339.600000pt;}
.x1e_c00299{left:404.666667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_0746d92bc5f8b98cfae27df6.woff2')format("woff");}.ff1_c00300{font-family:ff1_c00300;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00300;src:url('chunks/assets/font_750e7a66f95c990620c48adc.woff2')format("woff");}.ff2_c00300{font-family:ff2_c00300;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00300;src:url('chunks/assets/font_c2cb7b2c6dd6946f4c0ffee7.woff2')format("woff");}.ff3_c00300{font-family:ff3_c00300;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00300;src:url('chunks/assets/font_31d191515134c16a051d5715.woff2')format("woff");}.ff4_c00300{font-family:ff4_c00300;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00300;src:url('chunks/assets/font_48a5749fb3e6e334d68fa380.woff2')format("woff");}.ff5_c00300{font-family:ff5_c00300;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00300;src:url('chunks/assets/font_7c7b114d6d8510036cb24ad0.woff2')format("woff");}.ff6_c00300{font-family:ff6_c00300;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00300;src:url('chunks/assets/font_35689f50ae7209b684240e44.woff2')format("woff");}.ff7_c00300{font-family:ff7_c00300;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00300;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff8_c00300{font-family:ff8_c00300;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00300{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00300{vertical-align:0.000000px;}
.ls9_c00300{letter-spacing:0.000000px;}
.ls5_c00300{letter-spacing:1.800000px;}
.ls3_c00300{letter-spacing:2.400000px;}
.ls8_c00300{letter-spacing:3.000000px;}
.ls7_c00300{letter-spacing:3.693000px;}
.ls6_c00300{letter-spacing:6.000000px;}
.ls0_c00300{letter-spacing:7.740000px;}
.ls2_c00300{letter-spacing:12.000000px;}
.ls4_c00300{letter-spacing:12.693000px;}
.ls1_c00300{letter-spacing:15.180000px;}
.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;}
}
.ws2_c00300{word-spacing:-48.360000px;}
.ws3_c00300{word-spacing:-29.295000px;}
.ws1_c00300{word-spacing:-18.060000px;}
.ws7_c00300{word-spacing:-18.000000px;}
.ws0_c00300{word-spacing:-14.160000px;}
.ws6_c00300{word-spacing:-13.452000px;}
.ws4_c00300{word-spacing:-12.000000px;}
.ws8_c00300{word-spacing:0.000000px;}
.ws5_c00300{word-spacing:4.503000px;}
._12_c00300{margin-left:-12.540000px;}
._27_c00300{margin-left:-9.540000px;}
._16_c00300{margin-left:-7.800000px;}
._a_c00300{margin-left:-6.660000px;}
._17_c00300{margin-left:-5.580000px;}
._c_c00300{margin-left:-4.560000px;}
._5_c00300{margin-left:-2.700000px;}
._4_c00300{margin-left:-1.680000px;}
._1_c00300{width:1.620000px;}
._0_c00300{width:3.540000px;}
._9_c00300{width:5.340000px;}
._2_c00300{width:6.360000px;}
._e_c00300{width:8.220000px;}
._f_c00300{width:9.480000px;}
._3_c00300{width:11.100000px;}
._d_c00300{width:12.240000px;}
._13_c00300{width:13.440000px;}
._10_c00300{width:15.180000px;}
._6_c00300{width:16.740000px;}
._18_c00300{width:17.760000px;}
._1d_c00300{width:19.560000px;}
._1f_c00300{width:20.640000px;}
._19_c00300{width:21.720000px;}
._8_c00300{width:23.040000px;}
._7_c00300{width:24.780000px;}
._1e_c00300{width:25.920000px;}
._22_c00300{width:28.125000px;}
._b_c00300{width:29.340000px;}
._23_c00300{width:31.380000px;}
._1c_c00300{width:32.940000px;}
._26_c00300{width:35.040000px;}
._25_c00300{width:36.741000px;}
._1b_c00300{width:39.840000px;}
._14_c00300{width:42.780000px;}
._1a_c00300{width:46.860000px;}
._11_c00300{width:50.760000px;}
._24_c00300{width:66.900000px;}
._21_c00300{width:70.140000px;}
._15_c00300{width:75.960000px;}
._29_c00300{width:106.440000px;}
._20_c00300{width:165.840000px;}
._28_c00300{width:224.640000px;}
.fc2_c00300{color:transparent;}
.fc1_c00300{color:rgb(128,128,128);}
.fc0_c00300{color:rgb(0,0,0);}
.fs2_c00300{font-size:45.000000px;}
.fs3_c00300{font-size:48.000000px;}
.fs4_c00300{font-size:57.000000px;}
.fs0_c00300{font-size:60.000000px;}
.fs5_c00300{font-size:69.000000px;}
.fs1_c00300{font-size:78.000000px;}
.y0_c00300{bottom:0.000000px;}
.y59_c00300{bottom:3.105000px;}
.y58_c00300{bottom:7.228363px;}
.y57_c00300{bottom:40.950000px;}
.y56_c00300{bottom:59.700000px;}
.y2c_c00300{bottom:62.100000px;}
.y55_c00300{bottom:78.000000px;}
.y2b_c00300{bottom:81.600000px;}
.y54_c00300{bottom:96.900000px;}
.y2a_c00300{bottom:99.300000px;}
.y53_c00300{bottom:114.750000px;}
.y29_c00300{bottom:117.900000px;}
.y52_c00300{bottom:133.650000px;}
.y28_c00300{bottom:136.050000px;}
.y51_c00300{bottom:151.650000px;}
.y27_c00300{bottom:153.600000px;}
.y50_c00300{bottom:170.100000px;}
.y26_c00300{bottom:172.350000px;}
.y4f_c00300{bottom:187.350000px;}
.y25_c00300{bottom:189.600000px;}
.y4e_c00300{bottom:205.500000px;}
.y24_c00300{bottom:207.600000px;}
.y4d_c00300{bottom:223.800000px;}
.y23_c00300{bottom:225.750000px;}
.y4c_c00300{bottom:241.950000px;}
.y22_c00300{bottom:243.450000px;}
.y4b_c00300{bottom:259.650000px;}
.y21_c00300{bottom:261.900000px;}
.y4a_c00300{bottom:278.100000px;}
.y20_c00300{bottom:280.200000px;}
.y49_c00300{bottom:295.650000px;}
.y1f_c00300{bottom:298.350000px;}
.y48_c00300{bottom:313.950000px;}
.y1e_c00300{bottom:315.900000px;}
.y47_c00300{bottom:332.100000px;}
.y1d_c00300{bottom:333.150000px;}
.y46_c00300{bottom:350.400000px;}
.y1c_c00300{bottom:351.000000px;}
.y45_c00300{bottom:367.950000px;}
.y1b_c00300{bottom:369.150000px;}
.y44_c00300{bottom:386.550000px;}
.y1a_c00300{bottom:387.150000px;}
.y43_c00300{bottom:404.700000px;}
.y19_c00300{bottom:405.000000px;}
.y18_c00300{bottom:423.150000px;}
.y42_c00300{bottom:423.300000px;}
.y17_c00300{bottom:441.000000px;}
.y41_c00300{bottom:441.450000px;}
.y40_c00300{bottom:458.700000px;}
.y16_c00300{bottom:459.000000px;}
.y3f_c00300{bottom:476.550000px;}
.y15_c00300{bottom:476.850000px;}
.y14_c00300{bottom:493.800000px;}
.y3e_c00300{bottom:495.000000px;}
.y13_c00300{bottom:512.250000px;}
.y3d_c00300{bottom:512.400000px;}
.y6_c00300{bottom:526.800000px;}
.y12_c00300{bottom:529.800000px;}
.y3c_c00300{bottom:531.300000px;}
.y5_c00300{bottom:544.800000px;}
.y11_c00300{bottom:548.400000px;}
.y3b_c00300{bottom:549.150000px;}
.y4_c00300{bottom:563.250000px;}
.y10_c00300{bottom:565.950000px;}
.y3a_c00300{bottom:567.000000px;}
.yf_c00300{bottom:583.800000px;}
.y39_c00300{bottom:585.300000px;}
.ye_c00300{bottom:601.800000px;}
.y38_c00300{bottom:603.000000px;}
.yd_c00300{bottom:619.350000px;}
.y37_c00300{bottom:621.600000px;}
.yc_c00300{bottom:637.200000px;}
.y36_c00300{bottom:639.000000px;}
.yb_c00300{bottom:655.350000px;}
.y35_c00300{bottom:657.150000px;}
.ya_c00300{bottom:674.250000px;}
.y34_c00300{bottom:675.300000px;}
.y9_c00300{bottom:691.650000px;}
.y33_c00300{bottom:693.000000px;}
.y8_c00300{bottom:709.050000px;}
.y32_c00300{bottom:711.150000px;}
.y7_c00300{bottom:727.350000px;}
.y31_c00300{bottom:729.300000px;}
.y3_c00300{bottom:745.800000px;}
.y30_c00300{bottom:747.900000px;}
.y2_c00300{bottom:762.750000px;}
.y2f_c00300{bottom:765.750000px;}
.y1_c00300{bottom:781.650000px;}
.y2e_c00300{bottom:783.300000px;}
.y2d_c00300{bottom:800.850000px;}
.h8_c00300{height:13.200074px;}
.h9_c00300{height:43.804688px;}
.h6_c00300{height:59.736000px;}
.h2_c00300{height:62.880000px;}
.h5_c00300{height:63.480000px;}
.h4_c00300{height:64.020000px;}
.h7_c00300{height:72.312000px;}
.h3_c00300{height:81.744000px;}
.h1_c00300{height:842.250000px;}
.h0_c00300{height:842.400000px;}
.w2_c00300{width:104.875500px;}
.w0_c00300{width:586.425000px;}
.w1_c00300{width:586.500000px;}
.x0_c00300{left:0.000000px;}
.x9_c00300{left:15.150000px;}
.x2_c00300{left:17.100000px;}
.x3_c00300{left:19.200000px;}
.xb_c00300{left:70.500000px;}
.xa_c00300{left:71.550000px;}
.xc_c00300{left:73.950000px;}
.x8_c00300{left:75.600000px;}
.x7_c00300{left:76.650000px;}
.x5_c00300{left:78.600000px;}
.x1_c00300{left:79.650000px;}
.x4_c00300{left:80.700000px;}
.xd_c00300{left:95.550000px;}
.x6_c00300{left:107.550000px;}
.x18_c00300{left:245.026749px;}
.x16_c00300{left:287.100000px;}
.x15_c00300{left:288.300000px;}
.x14_c00300{left:289.650000px;}
.x13_c00300{left:291.150000px;}
.x11_c00300{left:292.500000px;}
.xf_c00300{left:293.850000px;}
.x10_c00300{left:295.200000px;}
.x12_c00300{left:320.250000px;}
.x17_c00300{left:385.350000px;}
.xe_c00300{left:458.700000px;}
@media print{
.v0_c00300{vertical-align:0.000000pt;}
.ls9_c00300{letter-spacing:0.000000pt;}
.ls5_c00300{letter-spacing:1.600000pt;}
.ls3_c00300{letter-spacing:2.133333pt;}
.ls8_c00300{letter-spacing:2.666667pt;}
.ls7_c00300{letter-spacing:3.282667pt;}
.ls6_c00300{letter-spacing:5.333333pt;}
.ls0_c00300{letter-spacing:6.880000pt;}
.ls2_c00300{letter-spacing:10.666667pt;}
.ls4_c00300{letter-spacing:11.282667pt;}
.ls1_c00300{letter-spacing:13.493333pt;}
.ws2_c00300{word-spacing:-42.986667pt;}
.ws3_c00300{word-spacing:-26.040000pt;}
.ws1_c00300{word-spacing:-16.053333pt;}
.ws7_c00300{word-spacing:-16.000000pt;}
.ws0_c00300{word-spacing:-12.586667pt;}
.ws6_c00300{word-spacing:-11.957333pt;}
.ws4_c00300{word-spacing:-10.666667pt;}
.ws8_c00300{word-spacing:0.000000pt;}
.ws5_c00300{word-spacing:4.002667pt;}
._12_c00300{margin-left:-11.146667pt;}
._27_c00300{margin-left:-8.480000pt;}
._16_c00300{margin-left:-6.933333pt;}
._a_c00300{margin-left:-5.920000pt;}
._17_c00300{margin-left:-4.960000pt;}
._c_c00300{margin-left:-4.053333pt;}
._5_c00300{margin-left:-2.400000pt;}
._4_c00300{margin-left:-1.493333pt;}
._1_c00300{width:1.440000pt;}
._0_c00300{width:3.146667pt;}
._9_c00300{width:4.746667pt;}
._2_c00300{width:5.653333pt;}
._e_c00300{width:7.306667pt;}
._f_c00300{width:8.426667pt;}
._3_c00300{width:9.866667pt;}
._d_c00300{width:10.880000pt;}
._13_c00300{width:11.946667pt;}
._10_c00300{width:13.493333pt;}
._6_c00300{width:14.880000pt;}
._18_c00300{width:15.786667pt;}
._1d_c00300{width:17.386667pt;}
._1f_c00300{width:18.346667pt;}
._19_c00300{width:19.306667pt;}
._8_c00300{width:20.480000pt;}
._7_c00300{width:22.026667pt;}
._1e_c00300{width:23.040000pt;}
._22_c00300{width:25.000000pt;}
._b_c00300{width:26.080000pt;}
._23_c00300{width:27.893333pt;}
._1c_c00300{width:29.280000pt;}
._26_c00300{width:31.146667pt;}
._25_c00300{width:32.658667pt;}
._1b_c00300{width:35.413333pt;}
._14_c00300{width:38.026667pt;}
._1a_c00300{width:41.653333pt;}
._11_c00300{width:45.120000pt;}
._24_c00300{width:59.466667pt;}
._21_c00300{width:62.346667pt;}
._15_c00300{width:67.520000pt;}
._29_c00300{width:94.613333pt;}
._20_c00300{width:147.413333pt;}
._28_c00300{width:199.680000pt;}
.fs2_c00300{font-size:40.000000pt;}
.fs3_c00300{font-size:42.666667pt;}
.fs4_c00300{font-size:50.666667pt;}
.fs0_c00300{font-size:53.333333pt;}
.fs5_c00300{font-size:61.333333pt;}
.fs1_c00300{font-size:69.333333pt;}
.y0_c00300{bottom:0.000000pt;}
.y59_c00300{bottom:2.760000pt;}
.y58_c00300{bottom:6.425212pt;}
.y57_c00300{bottom:36.400000pt;}
.y56_c00300{bottom:53.066667pt;}
.y2c_c00300{bottom:55.200000pt;}
.y55_c00300{bottom:69.333333pt;}
.y2b_c00300{bottom:72.533333pt;}
.y54_c00300{bottom:86.133333pt;}
.y2a_c00300{bottom:88.266667pt;}
.y53_c00300{bottom:102.000000pt;}
.y29_c00300{bottom:104.800000pt;}
.y52_c00300{bottom:118.800000pt;}
.y28_c00300{bottom:120.933333pt;}
.y51_c00300{bottom:134.800000pt;}
.y27_c00300{bottom:136.533333pt;}
.y50_c00300{bottom:151.200000pt;}
.y26_c00300{bottom:153.200000pt;}
.y4f_c00300{bottom:166.533333pt;}
.y25_c00300{bottom:168.533333pt;}
.y4e_c00300{bottom:182.666667pt;}
.y24_c00300{bottom:184.533333pt;}
.y4d_c00300{bottom:198.933333pt;}
.y23_c00300{bottom:200.666667pt;}
.y4c_c00300{bottom:215.066667pt;}
.y22_c00300{bottom:216.400000pt;}
.y4b_c00300{bottom:230.800000pt;}
.y21_c00300{bottom:232.800000pt;}
.y4a_c00300{bottom:247.200000pt;}
.y20_c00300{bottom:249.066667pt;}
.y49_c00300{bottom:262.800000pt;}
.y1f_c00300{bottom:265.200000pt;}
.y48_c00300{bottom:279.066667pt;}
.y1e_c00300{bottom:280.800000pt;}
.y47_c00300{bottom:295.200000pt;}
.y1d_c00300{bottom:296.133333pt;}
.y46_c00300{bottom:311.466667pt;}
.y1c_c00300{bottom:312.000000pt;}
.y45_c00300{bottom:327.066667pt;}
.y1b_c00300{bottom:328.133333pt;}
.y44_c00300{bottom:343.600000pt;}
.y1a_c00300{bottom:344.133333pt;}
.y43_c00300{bottom:359.733333pt;}
.y19_c00300{bottom:360.000000pt;}
.y18_c00300{bottom:376.133333pt;}
.y42_c00300{bottom:376.266667pt;}
.y17_c00300{bottom:392.000000pt;}
.y41_c00300{bottom:392.400000pt;}
.y40_c00300{bottom:407.733333pt;}
.y16_c00300{bottom:408.000000pt;}
.y3f_c00300{bottom:423.600000pt;}
.y15_c00300{bottom:423.866667pt;}
.y14_c00300{bottom:438.933333pt;}
.y3e_c00300{bottom:440.000000pt;}
.y13_c00300{bottom:455.333333pt;}
.y3d_c00300{bottom:455.466667pt;}
.y6_c00300{bottom:468.266667pt;}
.y12_c00300{bottom:470.933333pt;}
.y3c_c00300{bottom:472.266667pt;}
.y5_c00300{bottom:484.266667pt;}
.y11_c00300{bottom:487.466667pt;}
.y3b_c00300{bottom:488.133333pt;}
.y4_c00300{bottom:500.666667pt;}
.y10_c00300{bottom:503.066667pt;}
.y3a_c00300{bottom:504.000000pt;}
.yf_c00300{bottom:518.933333pt;}
.y39_c00300{bottom:520.266667pt;}
.ye_c00300{bottom:534.933333pt;}
.y38_c00300{bottom:536.000000pt;}
.yd_c00300{bottom:550.533333pt;}
.y37_c00300{bottom:552.533333pt;}
.yc_c00300{bottom:566.400000pt;}
.y36_c00300{bottom:568.000000pt;}
.yb_c00300{bottom:582.533333pt;}
.y35_c00300{bottom:584.133333pt;}
.ya_c00300{bottom:599.333333pt;}
.y34_c00300{bottom:600.266667pt;}
.y9_c00300{bottom:614.800000pt;}
.y33_c00300{bottom:616.000000pt;}
.y8_c00300{bottom:630.266667pt;}
.y32_c00300{bottom:632.133333pt;}
.y7_c00300{bottom:646.533333pt;}
.y31_c00300{bottom:648.266667pt;}
.y3_c00300{bottom:662.933333pt;}
.y30_c00300{bottom:664.800000pt;}
.y2_c00300{bottom:678.000000pt;}
.y2f_c00300{bottom:680.666667pt;}
.y1_c00300{bottom:694.800000pt;}
.y2e_c00300{bottom:696.266667pt;}
.y2d_c00300{bottom:711.866667pt;}
.h8_c00300{height:11.733399pt;}
.h9_c00300{height:38.937500pt;}
.h6_c00300{height:53.098667pt;}
.h2_c00300{height:55.893333pt;}
.h5_c00300{height:56.426667pt;}
.h4_c00300{height:56.906667pt;}
.h7_c00300{height:64.277333pt;}
.h3_c00300{height:72.661333pt;}
.h1_c00300{height:748.666667pt;}
.h0_c00300{height:748.800000pt;}
.w2_c00300{width:93.222667pt;}
.w0_c00300{width:521.266667pt;}
.w1_c00300{width:521.333333pt;}
.x0_c00300{left:0.000000pt;}
.x9_c00300{left:13.466667pt;}
.x2_c00300{left:15.200000pt;}
.x3_c00300{left:17.066667pt;}
.xb_c00300{left:62.666667pt;}
.xa_c00300{left:63.600000pt;}
.xc_c00300{left:65.733333pt;}
.x8_c00300{left:67.200000pt;}
.x7_c00300{left:68.133333pt;}
.x5_c00300{left:69.866667pt;}
.x1_c00300{left:70.800000pt;}
.x4_c00300{left:71.733333pt;}
.xd_c00300{left:84.933333pt;}
.x6_c00300{left:95.600000pt;}
.x18_c00300{left:217.801554pt;}
.x16_c00300{left:255.200000pt;}
.x15_c00300{left:256.266667pt;}
.x14_c00300{left:257.466667pt;}
.x13_c00300{left:258.800000pt;}
.x11_c00300{left:260.000000pt;}
.xf_c00300{left:261.200000pt;}
.x10_c00300{left:262.400000pt;}
.x12_c00300{left:284.666667pt;}
.x17_c00300{left:342.533333pt;}
.xe_c00300{left:407.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_46893215ca601ce7b86f0e48.woff2')format("woff");}.ff1_c00301{font-family:ff1_c00301;line-height:1.437000;font-style:normal;font-weight:normal;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_4cf60d044707b539a5f8ccf0.woff2')format("woff");}.ff2_c00301{font-family:ff2_c00301;line-height:1.437000;font-style:normal;font-weight:normal;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_a340c7b79f99569bdfa441ef.woff2')format("woff");}.ff3_c00301{font-family:ff3_c00301;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00301;src:url('chunks/assets/font_a1fdba429ab2afa43fe98848.woff2')format("woff");}.ff4_c00301{font-family:ff4_c00301;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00301;src:url('chunks/assets/font_5728bd63ec3e2d09752c48a8.woff2')format("woff");}.ff5_c00301{font-family:ff5_c00301;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00301;src:url('chunks/assets/font_8e901468e66864af56469dc0.woff2')format("woff");}.ff6_c00301{font-family:ff6_c00301;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00301;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff7_c00301{font-family:ff7_c00301;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00301{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00301{vertical-align:0.000000px;}
.ls6_c00301{letter-spacing:0.000000px;}
.ls0_c00301{letter-spacing:3.000000px;}
.ls4_c00301{letter-spacing:10.740000px;}
.ls3_c00301{letter-spacing:13.140000px;}
.ls1_c00301{letter-spacing:18.000000px;}
.ls5_c00301{letter-spacing:31.140000px;}
.ls2_c00301{letter-spacing:42.540000px;}
.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;}
}
.ws3_c00301{word-spacing:-39.399000px;}
.ws2_c00301{word-spacing:-32.340000px;}
.ws1_c00301{word-spacing:-23.760000px;}
.ws0_c00301{word-spacing:-14.160000px;}
.ws4_c00301{word-spacing:0.000000px;}
._18_c00301{margin-left:-14.280000px;}
._26_c00301{margin-left:-11.880000px;}
._19_c00301{margin-left:-10.260000px;}
._23_c00301{margin-left:-8.760000px;}
._22_c00301{margin-left:-7.260000px;}
._c_c00301{margin-left:-6.240000px;}
._4_c00301{margin-left:-5.100000px;}
._3_c00301{margin-left:-3.360000px;}
._1_c00301{margin-left:-1.560000px;}
._5_c00301{width:1.500000px;}
._0_c00301{width:3.240000px;}
._2_c00301{width:4.440000px;}
._6_c00301{width:6.360000px;}
._15_c00301{width:7.380000px;}
._7_c00301{width:8.400000px;}
._12_c00301{width:9.720000px;}
._1a_c00301{width:11.280000px;}
._17_c00301{width:13.080000px;}
._13_c00301{width:14.100000px;}
._b_c00301{width:15.840000px;}
._24_c00301{width:17.940000px;}
._28_c00301{width:19.200000px;}
._f_c00301{width:20.280000px;}
._27_c00301{width:22.080000px;}
._a_c00301{width:23.160000px;}
._10_c00301{width:24.840000px;}
._1d_c00301{width:26.220000px;}
._25_c00301{width:27.300000px;}
._14_c00301{width:28.560000px;}
._9_c00301{width:30.420000px;}
._11_c00301{width:32.604000px;}
._16_c00301{width:34.860000px;}
._1f_c00301{width:35.880000px;}
._1c_c00301{width:37.440000px;}
._1e_c00301{width:44.796000px;}
._1b_c00301{width:46.296000px;}
._21_c00301{width:48.720000px;}
._e_c00301{width:84.060000px;}
._8_c00301{width:100.920000px;}
._20_c00301{width:128.160000px;}
._d_c00301{width:178.200000px;}
.fc2_c00301{color:transparent;}
.fc1_c00301{color:rgb(128,128,128);}
.fc0_c00301{color:rgb(0,0,0);}
.fs1_c00301{font-size:48.000000px;}
.fs2_c00301{font-size:57.000000px;}
.fs0_c00301{font-size:60.000000px;}
.fs4_c00301{font-size:69.000000px;}
.fs3_c00301{font-size:72.000000px;}
.y0_c00301{bottom:0.000000px;}
.y53_c00301{bottom:3.105000px;}
.y52_c00301{bottom:7.228363px;}
.y51_c00301{bottom:46.200000px;}
.y29_c00301{bottom:61.800000px;}
.y50_c00301{bottom:62.550000px;}
.y28_c00301{bottom:81.000000px;}
.y4f_c00301{bottom:83.100000px;}
.y27_c00301{bottom:99.600000px;}
.y4e_c00301{bottom:99.900000px;}
.y26_c00301{bottom:117.750000px;}
.y25_c00301{bottom:136.050000px;}
.y24_c00301{bottom:153.600000px;}
.y4d_c00301{bottom:154.350000px;}
.y23_c00301{bottom:172.050000px;}
.y4c_c00301{bottom:172.200000px;}
.y22_c00301{bottom:190.650000px;}
.y4b_c00301{bottom:190.800000px;}
.y21_c00301{bottom:208.500000px;}
.y4a_c00301{bottom:208.950000px;}
.y20_c00301{bottom:226.500000px;}
.y49_c00301{bottom:227.850000px;}
.y1f_c00301{bottom:244.950000px;}
.y48_c00301{bottom:246.150000px;}
.y1e_c00301{bottom:263.250000px;}
.y47_c00301{bottom:264.000000px;}
.y1d_c00301{bottom:281.400000px;}
.y46_c00301{bottom:281.850000px;}
.y1c_c00301{bottom:299.250000px;}
.y45_c00301{bottom:300.150000px;}
.y1b_c00301{bottom:317.850000px;}
.y44_c00301{bottom:318.600000px;}
.y1a_c00301{bottom:335.850000px;}
.y43_c00301{bottom:336.600000px;}
.y19_c00301{bottom:354.000000px;}
.y42_c00301{bottom:354.750000px;}
.y18_c00301{bottom:372.600000px;}
.y41_c00301{bottom:373.050000px;}
.y17_c00301{bottom:390.750000px;}
.y40_c00301{bottom:391.200000px;}
.y16_c00301{bottom:409.050000px;}
.y3f_c00301{bottom:409.500000px;}
.y15_c00301{bottom:427.200000px;}
.y3e_c00301{bottom:427.950000px;}
.y14_c00301{bottom:445.050000px;}
.y3d_c00301{bottom:445.950000px;}
.y13_c00301{bottom:463.650000px;}
.y3c_c00301{bottom:464.400000px;}
.y12_c00301{bottom:481.950000px;}
.y3b_c00301{bottom:482.700000px;}
.y11_c00301{bottom:500.250000px;}
.y3a_c00301{bottom:500.550000px;}
.y10_c00301{bottom:518.400000px;}
.y39_c00301{bottom:519.000000px;}
.yf_c00301{bottom:536.400000px;}
.y38_c00301{bottom:537.000000px;}
.ye_c00301{bottom:554.850000px;}
.y37_c00301{bottom:555.450000px;}
.yd_c00301{bottom:573.300000px;}
.y36_c00301{bottom:573.450000px;}
.yc_c00301{bottom:591.300000px;}
.y35_c00301{bottom:591.900000px;}
.yb_c00301{bottom:609.900000px;}
.ya_c00301{bottom:627.750000px;}
.y34_c00301{bottom:628.350000px;}
.y9_c00301{bottom:645.900000px;}
.y33_c00301{bottom:646.350000px;}
.y8_c00301{bottom:663.900000px;}
.y32_c00301{bottom:664.800000px;}
.y7_c00301{bottom:682.050000px;}
.y31_c00301{bottom:683.100000px;}
.y6_c00301{bottom:700.650000px;}
.y30_c00301{bottom:701.250000px;}
.y5_c00301{bottom:718.800000px;}
.y2f_c00301{bottom:719.100000px;}
.y2e_c00301{bottom:737.400000px;}
.y4_c00301{bottom:737.700000px;}
.y3_c00301{bottom:754.950000px;}
.y2d_c00301{bottom:756.000000px;}
.y2_c00301{bottom:773.250000px;}
.y2c_c00301{bottom:773.850000px;}
.y1_c00301{bottom:791.100000px;}
.y2b_c00301{bottom:791.400000px;}
.y2a_c00301{bottom:811.050000px;}
.h5_c00301{height:13.200074px;}
.h6_c00301{height:43.804688px;}
.h1_c00301{height:62.880000px;}
.h2_c00301{height:63.480000px;}
.h3_c00301{height:70.664062px;}
.h4_c00301{height:73.623000px;}
.h0_c00301{height:843.750000px;}
.w2_c00301{width:104.875500px;}
.w1_c00301{width:565.500000px;}
.w0_c00301{width:565.650000px;}
.x0_c00301{left:0.000000px;}
.x2_c00301{left:30.450000px;}
.x3_c00301{left:32.100000px;}
.x5_c00301{left:46.800000px;}
.x1_c00301{left:95.250000px;}
.x4_c00301{left:96.750000px;}
.x6_c00301{left:98.100000px;}
.x11_c00301{left:234.639267px;}
.x7_c00301{left:294.600000px;}
.x8_c00301{left:309.900000px;}
.x9_c00301{left:311.400000px;}
.xa_c00301{left:312.900000px;}
.xb_c00301{left:314.550000px;}
.xc_c00301{left:315.900000px;}
.xd_c00301{left:316.950000px;}
.xe_c00301{left:318.000000px;}
.xf_c00301{left:319.050000px;}
.x10_c00301{left:490.050000px;}
@media print{
.v0_c00301{vertical-align:0.000000pt;}
.ls6_c00301{letter-spacing:0.000000pt;}
.ls0_c00301{letter-spacing:2.666667pt;}
.ls4_c00301{letter-spacing:9.546667pt;}
.ls3_c00301{letter-spacing:11.680000pt;}
.ls1_c00301{letter-spacing:16.000000pt;}
.ls5_c00301{letter-spacing:27.680000pt;}
.ls2_c00301{letter-spacing:37.813333pt;}
.ws3_c00301{word-spacing:-35.021333pt;}
.ws2_c00301{word-spacing:-28.746667pt;}
.ws1_c00301{word-spacing:-21.120000pt;}
.ws0_c00301{word-spacing:-12.586667pt;}
.ws4_c00301{word-spacing:0.000000pt;}
._18_c00301{margin-left:-12.693333pt;}
._26_c00301{margin-left:-10.560000pt;}
._19_c00301{margin-left:-9.120000pt;}
._23_c00301{margin-left:-7.786667pt;}
._22_c00301{margin-left:-6.453333pt;}
._c_c00301{margin-left:-5.546667pt;}
._4_c00301{margin-left:-4.533333pt;}
._3_c00301{margin-left:-2.986667pt;}
._1_c00301{margin-left:-1.386667pt;}
._5_c00301{width:1.333333pt;}
._0_c00301{width:2.880000pt;}
._2_c00301{width:3.946667pt;}
._6_c00301{width:5.653333pt;}
._15_c00301{width:6.560000pt;}
._7_c00301{width:7.466667pt;}
._12_c00301{width:8.640000pt;}
._1a_c00301{width:10.026667pt;}
._17_c00301{width:11.626667pt;}
._13_c00301{width:12.533333pt;}
._b_c00301{width:14.080000pt;}
._24_c00301{width:15.946667pt;}
._28_c00301{width:17.066667pt;}
._f_c00301{width:18.026667pt;}
._27_c00301{width:19.626667pt;}
._a_c00301{width:20.586667pt;}
._10_c00301{width:22.080000pt;}
._1d_c00301{width:23.306667pt;}
._25_c00301{width:24.266667pt;}
._14_c00301{width:25.386667pt;}
._9_c00301{width:27.040000pt;}
._11_c00301{width:28.981333pt;}
._16_c00301{width:30.986667pt;}
._1f_c00301{width:31.893333pt;}
._1c_c00301{width:33.280000pt;}
._1e_c00301{width:39.818667pt;}
._1b_c00301{width:41.152000pt;}
._21_c00301{width:43.306667pt;}
._e_c00301{width:74.720000pt;}
._8_c00301{width:89.706667pt;}
._20_c00301{width:113.920000pt;}
._d_c00301{width:158.400000pt;}
.fs1_c00301{font-size:42.666667pt;}
.fs2_c00301{font-size:50.666667pt;}
.fs0_c00301{font-size:53.333333pt;}
.fs4_c00301{font-size:61.333333pt;}
.fs3_c00301{font-size:64.000000pt;}
.y0_c00301{bottom:0.000000pt;}
.y53_c00301{bottom:2.760000pt;}
.y52_c00301{bottom:6.425212pt;}
.y51_c00301{bottom:41.066667pt;}
.y29_c00301{bottom:54.933333pt;}
.y50_c00301{bottom:55.600000pt;}
.y28_c00301{bottom:72.000000pt;}
.y4f_c00301{bottom:73.866667pt;}
.y27_c00301{bottom:88.533333pt;}
.y4e_c00301{bottom:88.800000pt;}
.y26_c00301{bottom:104.666667pt;}
.y25_c00301{bottom:120.933333pt;}
.y24_c00301{bottom:136.533333pt;}
.y4d_c00301{bottom:137.200000pt;}
.y23_c00301{bottom:152.933333pt;}
.y4c_c00301{bottom:153.066667pt;}
.y22_c00301{bottom:169.466667pt;}
.y4b_c00301{bottom:169.600000pt;}
.y21_c00301{bottom:185.333333pt;}
.y4a_c00301{bottom:185.733333pt;}
.y20_c00301{bottom:201.333333pt;}
.y49_c00301{bottom:202.533333pt;}
.y1f_c00301{bottom:217.733333pt;}
.y48_c00301{bottom:218.800000pt;}
.y1e_c00301{bottom:234.000000pt;}
.y47_c00301{bottom:234.666667pt;}
.y1d_c00301{bottom:250.133333pt;}
.y46_c00301{bottom:250.533333pt;}
.y1c_c00301{bottom:266.000000pt;}
.y45_c00301{bottom:266.800000pt;}
.y1b_c00301{bottom:282.533333pt;}
.y44_c00301{bottom:283.200000pt;}
.y1a_c00301{bottom:298.533333pt;}
.y43_c00301{bottom:299.200000pt;}
.y19_c00301{bottom:314.666667pt;}
.y42_c00301{bottom:315.333333pt;}
.y18_c00301{bottom:331.200000pt;}
.y41_c00301{bottom:331.600000pt;}
.y17_c00301{bottom:347.333333pt;}
.y40_c00301{bottom:347.733333pt;}
.y16_c00301{bottom:363.600000pt;}
.y3f_c00301{bottom:364.000000pt;}
.y15_c00301{bottom:379.733333pt;}
.y3e_c00301{bottom:380.400000pt;}
.y14_c00301{bottom:395.600000pt;}
.y3d_c00301{bottom:396.400000pt;}
.y13_c00301{bottom:412.133333pt;}
.y3c_c00301{bottom:412.800000pt;}
.y12_c00301{bottom:428.400000pt;}
.y3b_c00301{bottom:429.066667pt;}
.y11_c00301{bottom:444.666667pt;}
.y3a_c00301{bottom:444.933333pt;}
.y10_c00301{bottom:460.800000pt;}
.y39_c00301{bottom:461.333333pt;}
.yf_c00301{bottom:476.800000pt;}
.y38_c00301{bottom:477.333333pt;}
.ye_c00301{bottom:493.200000pt;}
.y37_c00301{bottom:493.733333pt;}
.yd_c00301{bottom:509.600000pt;}
.y36_c00301{bottom:509.733333pt;}
.yc_c00301{bottom:525.600000pt;}
.y35_c00301{bottom:526.133333pt;}
.yb_c00301{bottom:542.133333pt;}
.ya_c00301{bottom:558.000000pt;}
.y34_c00301{bottom:558.533333pt;}
.y9_c00301{bottom:574.133333pt;}
.y33_c00301{bottom:574.533333pt;}
.y8_c00301{bottom:590.133333pt;}
.y32_c00301{bottom:590.933333pt;}
.y7_c00301{bottom:606.266667pt;}
.y31_c00301{bottom:607.200000pt;}
.y6_c00301{bottom:622.800000pt;}
.y30_c00301{bottom:623.333333pt;}
.y5_c00301{bottom:638.933333pt;}
.y2f_c00301{bottom:639.200000pt;}
.y2e_c00301{bottom:655.466667pt;}
.y4_c00301{bottom:655.733333pt;}
.y3_c00301{bottom:671.066667pt;}
.y2d_c00301{bottom:672.000000pt;}
.y2_c00301{bottom:687.333333pt;}
.y2c_c00301{bottom:687.866667pt;}
.y1_c00301{bottom:703.200000pt;}
.y2b_c00301{bottom:703.466667pt;}
.y2a_c00301{bottom:720.933333pt;}
.h5_c00301{height:11.733399pt;}
.h6_c00301{height:38.937500pt;}
.h1_c00301{height:55.893333pt;}
.h2_c00301{height:56.426667pt;}
.h3_c00301{height:62.812500pt;}
.h4_c00301{height:65.442667pt;}
.h0_c00301{height:750.000000pt;}
.w2_c00301{width:93.222667pt;}
.w1_c00301{width:502.666667pt;}
.w0_c00301{width:502.800000pt;}
.x0_c00301{left:0.000000pt;}
.x2_c00301{left:27.066667pt;}
.x3_c00301{left:28.533333pt;}
.x5_c00301{left:41.600000pt;}
.x1_c00301{left:84.666667pt;}
.x4_c00301{left:86.000000pt;}
.x6_c00301{left:87.200000pt;}
.x11_c00301{left:208.568237pt;}
.x7_c00301{left:261.866667pt;}
.x8_c00301{left:275.466667pt;}
.x9_c00301{left:276.800000pt;}
.xa_c00301{left:278.133333pt;}
.xb_c00301{left:279.600000pt;}
.xc_c00301{left:280.800000pt;}
.xd_c00301{left:281.733333pt;}
.xe_c00301{left:282.666667pt;}
.xf_c00301{left:283.600000pt;}
.x10_c00301{left:435.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_7745de9c16bd611fc8285fea.woff2')format("woff");}.ff1_c00302{font-family:ff1_c00302;line-height:1.437000;font-style:normal;font-weight:normal;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_8520d8b14b17dd14cfa936ce.woff2')format("woff");}.ff2_c00302{font-family:ff2_c00302;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00302;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff3_c00302{font-family:ff3_c00302;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00302{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00302{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.v0_c00302{vertical-align:0.000000px;}
.ls4_c00302{letter-spacing:0.000000px;}
.ls0_c00302{letter-spacing:3.000000px;}
.ls3_c00302{letter-spacing:6.060000px;}
.ls1_c00302{letter-spacing:6.300000px;}
.ls2_c00302{letter-spacing:11.712000px;}
.ls5_c00302{letter-spacing:12.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;}
}
.ws3_c00302{word-spacing:-30.072000px;}
.ws1_c00302{word-spacing:-21.360000px;}
.ws2_c00302{word-spacing:-18.060000px;}
.ws5_c00302{word-spacing:-17.319000px;}
.ws4_c00302{word-spacing:-16.284000px;}
.ws0_c00302{word-spacing:-14.160000px;}
.ws6_c00302{word-spacing:0.000000px;}
._1a_c00302{margin-left:-18.216000px;}
._18_c00302{margin-left:-12.096000px;}
._21_c00302{margin-left:-11.040000px;}
._1d_c00302{margin-left:-9.051000px;}
._19_c00302{margin-left:-7.872000px;}
._10_c00302{margin-left:-6.360000px;}
._3_c00302{margin-left:-5.160000px;}
._9_c00302{margin-left:-3.180000px;}
._5_c00302{margin-left:-1.680000px;}
._0_c00302{width:1.440000px;}
._7_c00302{width:2.460000px;}
._6_c00302{width:3.480000px;}
._b_c00302{width:4.620000px;}
._11_c00302{width:5.640000px;}
._26_c00302{width:6.660000px;}
._4_c00302{width:7.740000px;}
._27_c00302{width:8.940000px;}
._12_c00302{width:10.020000px;}
._8_c00302{width:11.400000px;}
._a_c00302{width:12.720000px;}
._2_c00302{width:14.040000px;}
._d_c00302{width:16.020000px;}
._25_c00302{width:17.229000px;}
._c_c00302{width:19.800000px;}
._22_c00302{width:21.180000px;}
._1_c00302{width:22.500000px;}
._1f_c00302{width:23.580000px;}
._13_c00302{width:25.140000px;}
._e_c00302{width:27.300000px;}
._14_c00302{width:29.220000px;}
._1c_c00302{width:30.840000px;}
._20_c00302{width:32.340000px;}
._16_c00302{width:34.020000px;}
._f_c00302{width:35.460000px;}
._15_c00302{width:36.540000px;}
._17_c00302{width:38.880000px;}
._1e_c00302{width:43.311000px;}
._23_c00302{width:44.640000px;}
._24_c00302{width:56.640000px;}
._1b_c00302{width:91.569000px;}
.fc2_c00302{color:transparent;}
.fc1_c00302{color:rgb(128,128,128);}
.fc0_c00302{color:rgb(0,0,0);}
.fs5_c00302{font-size:48.000000px;}
.fs4_c00302{font-size:57.000000px;}
.fs0_c00302{font-size:60.000000px;}
.fs1_c00302{font-size:69.000000px;}
.fs2_c00302{font-size:72.000000px;}
.fs3_c00302{font-size:213.000000px;}
.y0_c00302{bottom:0.000000px;}
.y52_c00302{bottom:3.105000px;}
.y51_c00302{bottom:7.228363px;}
.y50_c00302{bottom:36.750000px;}
.y4f_c00302{bottom:54.900000px;}
.y26_c00302{bottom:60.150000px;}
.y4e_c00302{bottom:73.650000px;}
.y25_c00302{bottom:79.950000px;}
.y4d_c00302{bottom:93.150000px;}
.y24_c00302{bottom:96.300000px;}
.y4c_c00302{bottom:111.000000px;}
.y23_c00302{bottom:115.050000px;}
.y4b_c00302{bottom:129.150000px;}
.y27_c00302{bottom:130.650000px;}
.y22_c00302{bottom:131.250000px;}
.y4a_c00302{bottom:147.450000px;}
.y21_c00302{bottom:150.900000px;}
.y49_c00302{bottom:165.750000px;}
.y48_c00302{bottom:183.600000px;}
.y20_c00302{bottom:187.200000px;}
.y47_c00302{bottom:201.750000px;}
.y1f_c00302{bottom:205.500000px;}
.y46_c00302{bottom:220.650000px;}
.y1e_c00302{bottom:222.450000px;}
.y45_c00302{bottom:238.500000px;}
.y44_c00302{bottom:256.200000px;}
.y1d_c00302{bottom:259.200000px;}
.y43_c00302{bottom:275.400000px;}
.y42_c00302{bottom:292.950000px;}
.y1c_c00302{bottom:295.350000px;}
.y41_c00302{bottom:311.550000px;}
.y1b_c00302{bottom:312.750000px;}
.y40_c00302{bottom:329.100000px;}
.y1a_c00302{bottom:331.350000px;}
.y3f_c00302{bottom:347.850000px;}
.y19_c00302{bottom:349.350000px;}
.y3e_c00302{bottom:366.300000px;}
.y18_c00302{bottom:367.500000px;}
.y17_c00302{bottom:384.750000px;}
.y3d_c00302{bottom:401.400000px;}
.y16_c00302{bottom:403.350000px;}
.y3c_c00302{bottom:421.200000px;}
.y15_c00302{bottom:421.650000px;}
.y3b_c00302{bottom:438.750000px;}
.y14_c00302{bottom:439.800000px;}
.y3a_c00302{bottom:456.750000px;}
.y13_c00302{bottom:457.350000px;}
.y39_c00302{bottom:474.300000px;}
.y12_c00302{bottom:475.200000px;}
.y11_c00302{bottom:492.450000px;}
.y38_c00302{bottom:492.750000px;}
.y10_c00302{bottom:510.300000px;}
.y37_c00302{bottom:510.750000px;}
.yf_c00302{bottom:528.150000px;}
.y36_c00302{bottom:529.200000px;}
.ye_c00302{bottom:546.150000px;}
.y35_c00302{bottom:547.050000px;}
.yd_c00302{bottom:564.000000px;}
.y34_c00302{bottom:565.350000px;}
.yc_c00302{bottom:582.300000px;}
.y33_c00302{bottom:583.950000px;}
.yb_c00302{bottom:599.850000px;}
.y32_c00302{bottom:602.100000px;}
.ya_c00302{bottom:618.300000px;}
.y31_c00302{bottom:620.100000px;}
.y9_c00302{bottom:636.300000px;}
.y30_c00302{bottom:637.950000px;}
.y8_c00302{bottom:654.150000px;}
.y2f_c00302{bottom:656.400000px;}
.y7_c00302{bottom:672.300000px;}
.y2e_c00302{bottom:674.250000px;}
.y6_c00302{bottom:690.150000px;}
.y2d_c00302{bottom:692.700000px;}
.y5_c00302{bottom:708.150000px;}
.y2c_c00302{bottom:710.700000px;}
.y4_c00302{bottom:726.300000px;}
.y2b_c00302{bottom:728.700000px;}
.y3_c00302{bottom:744.900000px;}
.y2a_c00302{bottom:747.000000px;}
.y2_c00302{bottom:762.150000px;}
.y29_c00302{bottom:765.000000px;}
.y1_c00302{bottom:780.000000px;}
.y28_c00302{bottom:783.000000px;}
.h6_c00302{height:13.200074px;}
.h7_c00302{height:43.804688px;}
.h2_c00302{height:62.880000px;}
.h3_c00302{height:72.312000px;}
.h4_c00302{height:75.456000px;}
.h5_c00302{height:223.224000px;}
.h1_c00302{height:842.250000px;}
.h0_c00302{height:842.400000px;}
.w2_c00302{width:104.875500px;}
.w0_c00302{width:586.425000px;}
.w1_c00302{width:586.500000px;}
.x0_c00302{left:0.000000px;}
.xc_c00302{left:19.200000px;}
.xb_c00302{left:20.550000px;}
.xa_c00302{left:77.700000px;}
.x4_c00302{left:80.700000px;}
.x2_c00302{left:82.650000px;}
.x3_c00302{left:84.000000px;}
.x1_c00302{left:85.050000px;}
.x7_c00302{left:95.550000px;}
.x6_c00302{left:111.150000px;}
.x9_c00302{left:116.550000px;}
.x8_c00302{left:138.000000px;}
.x5_c00302{left:177.600000px;}
.x16_c00302{left:245.026749px;}
.x14_c00302{left:292.950000px;}
.x13_c00302{left:294.300000px;}
.x12_c00302{left:296.700000px;}
.x11_c00302{left:297.900000px;}
.x10_c00302{left:299.250000px;}
.xf_c00302{left:300.300000px;}
.xd_c00302{left:301.950000px;}
.xe_c00302{left:303.000000px;}
.x15_c00302{left:464.100000px;}
@media print{
.v0_c00302{vertical-align:0.000000pt;}
.ls4_c00302{letter-spacing:0.000000pt;}
.ls0_c00302{letter-spacing:2.666667pt;}
.ls3_c00302{letter-spacing:5.386667pt;}
.ls1_c00302{letter-spacing:5.600000pt;}
.ls2_c00302{letter-spacing:10.410667pt;}
.ls5_c00302{letter-spacing:10.666667pt;}
.ws3_c00302{word-spacing:-26.730667pt;}
.ws1_c00302{word-spacing:-18.986667pt;}
.ws2_c00302{word-spacing:-16.053333pt;}
.ws5_c00302{word-spacing:-15.394667pt;}
.ws4_c00302{word-spacing:-14.474667pt;}
.ws0_c00302{word-spacing:-12.586667pt;}
.ws6_c00302{word-spacing:0.000000pt;}
._1a_c00302{margin-left:-16.192000pt;}
._18_c00302{margin-left:-10.752000pt;}
._21_c00302{margin-left:-9.813333pt;}
._1d_c00302{margin-left:-8.045333pt;}
._19_c00302{margin-left:-6.997333pt;}
._10_c00302{margin-left:-5.653333pt;}
._3_c00302{margin-left:-4.586667pt;}
._9_c00302{margin-left:-2.826667pt;}
._5_c00302{margin-left:-1.493333pt;}
._0_c00302{width:1.280000pt;}
._7_c00302{width:2.186667pt;}
._6_c00302{width:3.093333pt;}
._b_c00302{width:4.106667pt;}
._11_c00302{width:5.013333pt;}
._26_c00302{width:5.920000pt;}
._4_c00302{width:6.880000pt;}
._27_c00302{width:7.946667pt;}
._12_c00302{width:8.906667pt;}
._8_c00302{width:10.133333pt;}
._a_c00302{width:11.306667pt;}
._2_c00302{width:12.480000pt;}
._d_c00302{width:14.240000pt;}
._25_c00302{width:15.314667pt;}
._c_c00302{width:17.600000pt;}
._22_c00302{width:18.826667pt;}
._1_c00302{width:20.000000pt;}
._1f_c00302{width:20.960000pt;}
._13_c00302{width:22.346667pt;}
._e_c00302{width:24.266667pt;}
._14_c00302{width:25.973333pt;}
._1c_c00302{width:27.413333pt;}
._20_c00302{width:28.746667pt;}
._16_c00302{width:30.240000pt;}
._f_c00302{width:31.520000pt;}
._15_c00302{width:32.480000pt;}
._17_c00302{width:34.560000pt;}
._1e_c00302{width:38.498667pt;}
._23_c00302{width:39.680000pt;}
._24_c00302{width:50.346667pt;}
._1b_c00302{width:81.394667pt;}
.fs5_c00302{font-size:42.666667pt;}
.fs4_c00302{font-size:50.666667pt;}
.fs0_c00302{font-size:53.333333pt;}
.fs1_c00302{font-size:61.333333pt;}
.fs2_c00302{font-size:64.000000pt;}
.fs3_c00302{font-size:189.333333pt;}
.y0_c00302{bottom:0.000000pt;}
.y52_c00302{bottom:2.760000pt;}
.y51_c00302{bottom:6.425212pt;}
.y50_c00302{bottom:32.666667pt;}
.y4f_c00302{bottom:48.800000pt;}
.y26_c00302{bottom:53.466667pt;}
.y4e_c00302{bottom:65.466667pt;}
.y25_c00302{bottom:71.066667pt;}
.y4d_c00302{bottom:82.800000pt;}
.y24_c00302{bottom:85.600000pt;}
.y4c_c00302{bottom:98.666667pt;}
.y23_c00302{bottom:102.266667pt;}
.y4b_c00302{bottom:114.800000pt;}
.y27_c00302{bottom:116.133333pt;}
.y22_c00302{bottom:116.666667pt;}
.y4a_c00302{bottom:131.066667pt;}
.y21_c00302{bottom:134.133333pt;}
.y49_c00302{bottom:147.333333pt;}
.y48_c00302{bottom:163.200000pt;}
.y20_c00302{bottom:166.400000pt;}
.y47_c00302{bottom:179.333333pt;}
.y1f_c00302{bottom:182.666667pt;}
.y46_c00302{bottom:196.133333pt;}
.y1e_c00302{bottom:197.733333pt;}
.y45_c00302{bottom:212.000000pt;}
.y44_c00302{bottom:227.733333pt;}
.y1d_c00302{bottom:230.400000pt;}
.y43_c00302{bottom:244.800000pt;}
.y42_c00302{bottom:260.400000pt;}
.y1c_c00302{bottom:262.533333pt;}
.y41_c00302{bottom:276.933333pt;}
.y1b_c00302{bottom:278.000000pt;}
.y40_c00302{bottom:292.533333pt;}
.y1a_c00302{bottom:294.533333pt;}
.y3f_c00302{bottom:309.200000pt;}
.y19_c00302{bottom:310.533333pt;}
.y3e_c00302{bottom:325.600000pt;}
.y18_c00302{bottom:326.666667pt;}
.y17_c00302{bottom:342.000000pt;}
.y3d_c00302{bottom:356.800000pt;}
.y16_c00302{bottom:358.533333pt;}
.y3c_c00302{bottom:374.400000pt;}
.y15_c00302{bottom:374.800000pt;}
.y3b_c00302{bottom:390.000000pt;}
.y14_c00302{bottom:390.933333pt;}
.y3a_c00302{bottom:406.000000pt;}
.y13_c00302{bottom:406.533333pt;}
.y39_c00302{bottom:421.600000pt;}
.y12_c00302{bottom:422.400000pt;}
.y11_c00302{bottom:437.733333pt;}
.y38_c00302{bottom:438.000000pt;}
.y10_c00302{bottom:453.600000pt;}
.y37_c00302{bottom:454.000000pt;}
.yf_c00302{bottom:469.466667pt;}
.y36_c00302{bottom:470.400000pt;}
.ye_c00302{bottom:485.466667pt;}
.y35_c00302{bottom:486.266667pt;}
.yd_c00302{bottom:501.333333pt;}
.y34_c00302{bottom:502.533333pt;}
.yc_c00302{bottom:517.600000pt;}
.y33_c00302{bottom:519.066667pt;}
.yb_c00302{bottom:533.200000pt;}
.y32_c00302{bottom:535.200000pt;}
.ya_c00302{bottom:549.600000pt;}
.y31_c00302{bottom:551.200000pt;}
.y9_c00302{bottom:565.600000pt;}
.y30_c00302{bottom:567.066667pt;}
.y8_c00302{bottom:581.466667pt;}
.y2f_c00302{bottom:583.466667pt;}
.y7_c00302{bottom:597.600000pt;}
.y2e_c00302{bottom:599.333333pt;}
.y6_c00302{bottom:613.466667pt;}
.y2d_c00302{bottom:615.733333pt;}
.y5_c00302{bottom:629.466667pt;}
.y2c_c00302{bottom:631.733333pt;}
.y4_c00302{bottom:645.600000pt;}
.y2b_c00302{bottom:647.733333pt;}
.y3_c00302{bottom:662.133333pt;}
.y2a_c00302{bottom:664.000000pt;}
.y2_c00302{bottom:677.466667pt;}
.y29_c00302{bottom:680.000000pt;}
.y1_c00302{bottom:693.333333pt;}
.y28_c00302{bottom:696.000000pt;}
.h6_c00302{height:11.733399pt;}
.h7_c00302{height:38.937500pt;}
.h2_c00302{height:55.893333pt;}
.h3_c00302{height:64.277333pt;}
.h4_c00302{height:67.072000pt;}
.h5_c00302{height:198.421333pt;}
.h1_c00302{height:748.666667pt;}
.h0_c00302{height:748.800000pt;}
.w2_c00302{width:93.222667pt;}
.w0_c00302{width:521.266667pt;}
.w1_c00302{width:521.333333pt;}
.x0_c00302{left:0.000000pt;}
.xc_c00302{left:17.066667pt;}
.xb_c00302{left:18.266667pt;}
.xa_c00302{left:69.066667pt;}
.x4_c00302{left:71.733333pt;}
.x2_c00302{left:73.466667pt;}
.x3_c00302{left:74.666667pt;}
.x1_c00302{left:75.600000pt;}
.x7_c00302{left:84.933333pt;}
.x6_c00302{left:98.800000pt;}
.x9_c00302{left:103.600000pt;}
.x8_c00302{left:122.666667pt;}
.x5_c00302{left:157.866667pt;}
.x16_c00302{left:217.801554pt;}
.x14_c00302{left:260.400000pt;}
.x13_c00302{left:261.600000pt;}
.x12_c00302{left:263.733333pt;}
.x11_c00302{left:264.800000pt;}
.x10_c00302{left:266.000000pt;}
.xf_c00302{left:266.933333pt;}
.xd_c00302{left:268.400000pt;}
.xe_c00302{left:269.333333pt;}
.x15_c00302{left:412.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_8bfab15be4e43bbdcc07df7c.woff2')format("woff");}.ff1_c00303{font-family:ff1_c00303;line-height:1.437000;font-style:normal;font-weight:normal;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_21504dbb710cc6ee48b2fd3a.woff2')format("woff");}.ff2_c00303{font-family:ff2_c00303;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00303;src:url('chunks/assets/font_b93a626403b6e9935b521ec8.woff2')format("woff");}.ff3_c00303{font-family:ff3_c00303;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00303;src:url('chunks/assets/font_7164f7fc20c479aacf7b7c04.woff2')format("woff");}.ff4_c00303{font-family:ff4_c00303;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00303;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff5_c00303{font-family:ff5_c00303;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00303{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00303{vertical-align:0.000000px;}
.ls4_c00303{letter-spacing:0.000000px;}
.ls0_c00303{letter-spacing:3.000000px;}
.ls3_c00303{letter-spacing:3.600000px;}
.ls2_c00303{letter-spacing:9.480000px;}
.ls1_c00303{letter-spacing:16.800000px;}
.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;}
}
.ws2_c00303{word-spacing:-29.295000px;}
.ws3_c00303{word-spacing:-20.340000px;}
.ws0_c00303{word-spacing:-18.060000px;}
.ws4_c00303{word-spacing:-17.319000px;}
.ws1_c00303{word-spacing:-14.160000px;}
.ws5_c00303{word-spacing:0.000000px;}
._28_c00303{margin-left:-20.700000px;}
._c_c00303{margin-left:-17.700000px;}
._20_c00303{margin-left:-16.620000px;}
._1c_c00303{margin-left:-15.480000px;}
._f_c00303{margin-left:-13.560000px;}
._19_c00303{margin-left:-10.860000px;}
._1a_c00303{margin-left:-9.720000px;}
._1b_c00303{margin-left:-8.460000px;}
._15_c00303{margin-left:-6.900000px;}
._a_c00303{margin-left:-4.860000px;}
._6_c00303{margin-left:-3.120000px;}
._3_c00303{margin-left:-2.040000px;}
._10_c00303{margin-left:-1.020000px;}
._4_c00303{width:1.080000px;}
._2_c00303{width:2.100000px;}
._1_c00303{width:3.540000px;}
._b_c00303{width:4.920000px;}
._d_c00303{width:6.540000px;}
._11_c00303{width:7.560000px;}
._7_c00303{width:8.940000px;}
._5_c00303{width:10.560000px;}
._24_c00303{width:11.580000px;}
._8_c00303{width:12.600000px;}
._9_c00303{width:14.100000px;}
._0_c00303{width:16.080000px;}
._23_c00303{width:18.420000px;}
._13_c00303{width:19.740000px;}
._12_c00303{width:20.880000px;}
._e_c00303{width:23.040000px;}
._14_c00303{width:24.720000px;}
._16_c00303{width:26.700000px;}
._1e_c00303{width:28.080000px;}
._26_c00303{width:31.020000px;}
._2a_c00303{width:33.540000px;}
._17_c00303{width:35.220000px;}
._18_c00303{width:39.300000px;}
._29_c00303{width:43.200000px;}
._21_c00303{width:45.540000px;}
._1d_c00303{width:49.800000px;}
._2b_c00303{width:58.440000px;}
._2d_c00303{width:62.220000px;}
._2c_c00303{width:77.580000px;}
._22_c00303{width:112.740000px;}
._27_c00303{width:194.340000px;}
._25_c00303{width:199.740000px;}
._1f_c00303{width:238.920000px;}
.fc2_c00303{color:transparent;}
.fc1_c00303{color:rgb(128,128,128);}
.fc0_c00303{color:rgb(0,0,0);}
.fs1_c00303{font-size:45.000000px;}
.fs3_c00303{font-size:48.000000px;}
.fs0_c00303{font-size:60.000000px;}
.fs2_c00303{font-size:69.000000px;}
.y0_c00303{bottom:0.000000px;}
.y51_c00303{bottom:3.105000px;}
.y50_c00303{bottom:7.228363px;}
.y4f_c00303{bottom:40.200000px;}
.y29_c00303{bottom:57.000000px;}
.y4e_c00303{bottom:58.350000px;}
.y28_c00303{bottom:75.900000px;}
.y4d_c00303{bottom:76.950000px;}
.y27_c00303{bottom:94.200000px;}
.y4c_c00303{bottom:95.400000px;}
.y26_c00303{bottom:112.950000px;}
.y4b_c00303{bottom:113.400000px;}
.y25_c00303{bottom:130.650000px;}
.y4a_c00303{bottom:131.550000px;}
.y24_c00303{bottom:148.200000px;}
.y49_c00303{bottom:149.850000px;}
.y23_c00303{bottom:167.400000px;}
.y48_c00303{bottom:168.000000px;}
.y22_c00303{bottom:186.000000px;}
.y47_c00303{bottom:186.600000px;}
.y21_c00303{bottom:204.750000px;}
.y46_c00303{bottom:204.900000px;}
.y45_c00303{bottom:223.050000px;}
.y20_c00303{bottom:223.350000px;}
.y1f_c00303{bottom:240.600000px;}
.y44_c00303{bottom:240.900000px;}
.y1e_c00303{bottom:258.450000px;}
.y43_c00303{bottom:259.800000px;}
.y1d_c00303{bottom:276.750000px;}
.y42_c00303{bottom:277.650000px;}
.y1c_c00303{bottom:295.350000px;}
.y1b_c00303{bottom:313.500000px;}
.y41_c00303{bottom:314.250000px;}
.y1a_c00303{bottom:331.800000px;}
.y19_c00303{bottom:350.550000px;}
.y40_c00303{bottom:350.700000px;}
.y18_c00303{bottom:368.250000px;}
.y3f_c00303{bottom:368.850000px;}
.y3e_c00303{bottom:386.100000px;}
.y17_c00303{bottom:386.700000px;}
.y16_c00303{bottom:404.550000px;}
.y15_c00303{bottom:423.450000px;}
.y14_c00303{bottom:440.100000px;}
.y3d_c00303{bottom:441.750000px;}
.y13_c00303{bottom:459.300000px;}
.y3c_c00303{bottom:459.900000px;}
.y12_c00303{bottom:477.600000px;}
.y3b_c00303{bottom:478.200000px;}
.y11_c00303{bottom:495.750000px;}
.y3a_c00303{bottom:496.500000px;}
.y39_c00303{bottom:514.050000px;}
.y10_c00303{bottom:514.350000px;}
.yf_c00303{bottom:531.900000px;}
.y38_c00303{bottom:532.500000px;}
.ye_c00303{bottom:549.900000px;}
.y37_c00303{bottom:550.500000px;}
.yd_c00303{bottom:568.350000px;}
.y36_c00303{bottom:568.950000px;}
.yc_c00303{bottom:586.200000px;}
.y35_c00303{bottom:587.250000px;}
.yb_c00303{bottom:604.800000px;}
.y34_c00303{bottom:606.150000px;}
.ya_c00303{bottom:622.950000px;}
.y33_c00303{bottom:624.000000px;}
.y9_c00303{bottom:641.550000px;}
.y32_c00303{bottom:642.300000px;}
.y8_c00303{bottom:659.400000px;}
.y31_c00303{bottom:660.150000px;}
.y7_c00303{bottom:677.400000px;}
.y30_c00303{bottom:678.300000px;}
.y6_c00303{bottom:696.150000px;}
.y2f_c00303{bottom:696.300000px;}
.y5_c00303{bottom:713.400000px;}
.y2e_c00303{bottom:714.450000px;}
.y4_c00303{bottom:731.400000px;}
.y2d_c00303{bottom:732.000000px;}
.y3_c00303{bottom:749.550000px;}
.y2c_c00303{bottom:750.000000px;}
.y2_c00303{bottom:767.850000px;}
.y2b_c00303{bottom:768.450000px;}
.y2a_c00303{bottom:786.300000px;}
.y1_c00303{bottom:786.450000px;}
.h4_c00303{height:13.200074px;}
.h5_c00303{height:43.804688px;}
.h1_c00303{height:62.880000px;}
.h2_c00303{height:64.020000px;}
.h3_c00303{height:72.312000px;}
.h0_c00303{height:843.750000px;}
.w2_c00303{width:104.875500px;}
.w1_c00303{width:565.500000px;}
.w0_c00303{width:565.650000px;}
.x0_c00303{left:0.000000px;}
.x4_c00303{left:25.950000px;}
.x5_c00303{left:90.450000px;}
.x2_c00303{left:91.500000px;}
.x1_c00303{left:92.700000px;}
.x3_c00303{left:97.500000px;}
.xc_c00303{left:234.639267px;}
.x6_c00303{left:308.700000px;}
.x7_c00303{left:310.200000px;}
.x9_c00303{left:311.400000px;}
.x8_c00303{left:312.450000px;}
.xa_c00303{left:345.600000px;}
.xb_c00303{left:480.900000px;}
@media print{
.v0_c00303{vertical-align:0.000000pt;}
.ls4_c00303{letter-spacing:0.000000pt;}
.ls0_c00303{letter-spacing:2.666667pt;}
.ls3_c00303{letter-spacing:3.200000pt;}
.ls2_c00303{letter-spacing:8.426667pt;}
.ls1_c00303{letter-spacing:14.933333pt;}
.ws2_c00303{word-spacing:-26.040000pt;}
.ws3_c00303{word-spacing:-18.080000pt;}
.ws0_c00303{word-spacing:-16.053333pt;}
.ws4_c00303{word-spacing:-15.394667pt;}
.ws1_c00303{word-spacing:-12.586667pt;}
.ws5_c00303{word-spacing:0.000000pt;}
._28_c00303{margin-left:-18.400000pt;}
._c_c00303{margin-left:-15.733333pt;}
._20_c00303{margin-left:-14.773333pt;}
._1c_c00303{margin-left:-13.760000pt;}
._f_c00303{margin-left:-12.053333pt;}
._19_c00303{margin-left:-9.653333pt;}
._1a_c00303{margin-left:-8.640000pt;}
._1b_c00303{margin-left:-7.520000pt;}
._15_c00303{margin-left:-6.133333pt;}
._a_c00303{margin-left:-4.320000pt;}
._6_c00303{margin-left:-2.773333pt;}
._3_c00303{margin-left:-1.813333pt;}
._10_c00303{margin-left:-0.906667pt;}
._4_c00303{width:0.960000pt;}
._2_c00303{width:1.866667pt;}
._1_c00303{width:3.146667pt;}
._b_c00303{width:4.373333pt;}
._d_c00303{width:5.813333pt;}
._11_c00303{width:6.720000pt;}
._7_c00303{width:7.946667pt;}
._5_c00303{width:9.386667pt;}
._24_c00303{width:10.293333pt;}
._8_c00303{width:11.200000pt;}
._9_c00303{width:12.533333pt;}
._0_c00303{width:14.293333pt;}
._23_c00303{width:16.373333pt;}
._13_c00303{width:17.546667pt;}
._12_c00303{width:18.560000pt;}
._e_c00303{width:20.480000pt;}
._14_c00303{width:21.973333pt;}
._16_c00303{width:23.733333pt;}
._1e_c00303{width:24.960000pt;}
._26_c00303{width:27.573333pt;}
._2a_c00303{width:29.813333pt;}
._17_c00303{width:31.306667pt;}
._18_c00303{width:34.933333pt;}
._29_c00303{width:38.400000pt;}
._21_c00303{width:40.480000pt;}
._1d_c00303{width:44.266667pt;}
._2b_c00303{width:51.946667pt;}
._2d_c00303{width:55.306667pt;}
._2c_c00303{width:68.960000pt;}
._22_c00303{width:100.213333pt;}
._27_c00303{width:172.746667pt;}
._25_c00303{width:177.546667pt;}
._1f_c00303{width:212.373333pt;}
.fs1_c00303{font-size:40.000000pt;}
.fs3_c00303{font-size:42.666667pt;}
.fs0_c00303{font-size:53.333333pt;}
.fs2_c00303{font-size:61.333333pt;}
.y0_c00303{bottom:0.000000pt;}
.y51_c00303{bottom:2.760000pt;}
.y50_c00303{bottom:6.425212pt;}
.y4f_c00303{bottom:35.733333pt;}
.y29_c00303{bottom:50.666667pt;}
.y4e_c00303{bottom:51.866667pt;}
.y28_c00303{bottom:67.466667pt;}
.y4d_c00303{bottom:68.400000pt;}
.y27_c00303{bottom:83.733333pt;}
.y4c_c00303{bottom:84.800000pt;}
.y26_c00303{bottom:100.400000pt;}
.y4b_c00303{bottom:100.800000pt;}
.y25_c00303{bottom:116.133333pt;}
.y4a_c00303{bottom:116.933333pt;}
.y24_c00303{bottom:131.733333pt;}
.y49_c00303{bottom:133.200000pt;}
.y23_c00303{bottom:148.800000pt;}
.y48_c00303{bottom:149.333333pt;}
.y22_c00303{bottom:165.333333pt;}
.y47_c00303{bottom:165.866667pt;}
.y21_c00303{bottom:182.000000pt;}
.y46_c00303{bottom:182.133333pt;}
.y45_c00303{bottom:198.266667pt;}
.y20_c00303{bottom:198.533333pt;}
.y1f_c00303{bottom:213.866667pt;}
.y44_c00303{bottom:214.133333pt;}
.y1e_c00303{bottom:229.733333pt;}
.y43_c00303{bottom:230.933333pt;}
.y1d_c00303{bottom:246.000000pt;}
.y42_c00303{bottom:246.800000pt;}
.y1c_c00303{bottom:262.533333pt;}
.y1b_c00303{bottom:278.666667pt;}
.y41_c00303{bottom:279.333333pt;}
.y1a_c00303{bottom:294.933333pt;}
.y19_c00303{bottom:311.600000pt;}
.y40_c00303{bottom:311.733333pt;}
.y18_c00303{bottom:327.333333pt;}
.y3f_c00303{bottom:327.866667pt;}
.y3e_c00303{bottom:343.200000pt;}
.y17_c00303{bottom:343.733333pt;}
.y16_c00303{bottom:359.600000pt;}
.y15_c00303{bottom:376.400000pt;}
.y14_c00303{bottom:391.200000pt;}
.y3d_c00303{bottom:392.666667pt;}
.y13_c00303{bottom:408.266667pt;}
.y3c_c00303{bottom:408.800000pt;}
.y12_c00303{bottom:424.533333pt;}
.y3b_c00303{bottom:425.066667pt;}
.y11_c00303{bottom:440.666667pt;}
.y3a_c00303{bottom:441.333333pt;}
.y39_c00303{bottom:456.933333pt;}
.y10_c00303{bottom:457.200000pt;}
.yf_c00303{bottom:472.800000pt;}
.y38_c00303{bottom:473.333333pt;}
.ye_c00303{bottom:488.800000pt;}
.y37_c00303{bottom:489.333333pt;}
.yd_c00303{bottom:505.200000pt;}
.y36_c00303{bottom:505.733333pt;}
.yc_c00303{bottom:521.066667pt;}
.y35_c00303{bottom:522.000000pt;}
.yb_c00303{bottom:537.600000pt;}
.y34_c00303{bottom:538.800000pt;}
.ya_c00303{bottom:553.733333pt;}
.y33_c00303{bottom:554.666667pt;}
.y9_c00303{bottom:570.266667pt;}
.y32_c00303{bottom:570.933333pt;}
.y8_c00303{bottom:586.133333pt;}
.y31_c00303{bottom:586.800000pt;}
.y7_c00303{bottom:602.133333pt;}
.y30_c00303{bottom:602.933333pt;}
.y6_c00303{bottom:618.800000pt;}
.y2f_c00303{bottom:618.933333pt;}
.y5_c00303{bottom:634.133333pt;}
.y2e_c00303{bottom:635.066667pt;}
.y4_c00303{bottom:650.133333pt;}
.y2d_c00303{bottom:650.666667pt;}
.y3_c00303{bottom:666.266667pt;}
.y2c_c00303{bottom:666.666667pt;}
.y2_c00303{bottom:682.533333pt;}
.y2b_c00303{bottom:683.066667pt;}
.y2a_c00303{bottom:698.933333pt;}
.y1_c00303{bottom:699.066667pt;}
.h4_c00303{height:11.733399pt;}
.h5_c00303{height:38.937500pt;}
.h1_c00303{height:55.893333pt;}
.h2_c00303{height:56.906667pt;}
.h3_c00303{height:64.277333pt;}
.h0_c00303{height:750.000000pt;}
.w2_c00303{width:93.222667pt;}
.w1_c00303{width:502.666667pt;}
.w0_c00303{width:502.800000pt;}
.x0_c00303{left:0.000000pt;}
.x4_c00303{left:23.066667pt;}
.x5_c00303{left:80.400000pt;}
.x2_c00303{left:81.333333pt;}
.x1_c00303{left:82.400000pt;}
.x3_c00303{left:86.666667pt;}
.xc_c00303{left:208.568237pt;}
.x6_c00303{left:274.400000pt;}
.x7_c00303{left:275.733333pt;}
.x9_c00303{left:276.800000pt;}
.x8_c00303{left:277.733333pt;}
.xa_c00303{left:307.200000pt;}
.xb_c00303{left:427.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_eacd52aafc930ae4acb81a38.woff2')format("woff");}.ff1_c00304{font-family:ff1_c00304;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00304;src:url('chunks/assets/font_c49a425d8dedad869d867391.woff2')format("woff");}.ff2_c00304{font-family:ff2_c00304;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00304;src:url('chunks/assets/font_148a40b5844e26c25604ea8f.woff2')format("woff");}.ff3_c00304{font-family:ff3_c00304;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00304;src:url('chunks/assets/font_2751c2fc4566dccdbbd0306e.woff2')format("woff");}.ff4_c00304{font-family:ff4_c00304;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00304;src:url('chunks/assets/font_aa247dd794cf460846e70fa9.woff2')format("woff");}.ff5_c00304{font-family:ff5_c00304;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00304;src:url('chunks/assets/font_cf4cc7472ae1f7ddef24aea6.woff2')format("woff");}.ff6_c00304{font-family:ff6_c00304;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00304;src:url('chunks/assets/font_19f1603766d0887c40277a1e.woff2')format("woff");}.ff7_c00304{font-family:ff7_c00304;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00304;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff8_c00304{font-family:ff8_c00304;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00304;src:url('chunks/assets/font_c8ea0fc012a97501592941c7.woff2')format("woff");}.ff9_c00304{font-family:ff9_c00304;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00304;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ffa_c00304{font-family:ffa_c00304;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00304{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00304{vertical-align:0.000000px;}
.v1_c00304{vertical-align:96.600000px;}
.lse_c00304{letter-spacing:0.000000px;}
.ls2_c00304{letter-spacing:1.200000px;}
.ls7_c00304{letter-spacing:2.400000px;}
.ls3_c00304{letter-spacing:3.000000px;}
.lsb_c00304{letter-spacing:5.400000px;}
.ls5_c00304{letter-spacing:5.850000px;}
.lsd_c00304{letter-spacing:6.000000px;}
.ls9_c00304{letter-spacing:7.200000px;}
.ls4_c00304{letter-spacing:9.000000px;}
.ls1_c00304{letter-spacing:11.400000px;}
.lsc_c00304{letter-spacing:12.000000px;}
.ls0_c00304{letter-spacing:17.940000px;}
.ls8_c00304{letter-spacing:21.360000px;}
.ls6_c00304{letter-spacing:22.050000px;}
.lsa_c00304{letter-spacing:27.591000px;}
.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;}
}
.ws4_c00304{word-spacing:-35.280000px;}
.ws0_c00304{word-spacing:-22.872000px;}
.ws3_c00304{word-spacing:-20.340000px;}
.ws1_c00304{word-spacing:-17.340000px;}
.ws5_c00304{word-spacing:-14.160000px;}
.ws2_c00304{word-spacing:-12.291000px;}
.ws6_c00304{word-spacing:0.000000px;}
._19_c00304{margin-left:-15.267000px;}
._1b_c00304{margin-left:-11.040000px;}
._1a_c00304{margin-left:-8.760000px;}
._e_c00304{margin-left:-7.260000px;}
._1c_c00304{margin-left:-5.760000px;}
._10_c00304{margin-left:-4.041000px;}
._6_c00304{margin-left:-2.847000px;}
._7_c00304{margin-left:-1.680000px;}
._a_c00304{width:1.680000px;}
._5_c00304{width:3.024000px;}
._2_c00304{width:4.473000px;}
._1_c00304{width:6.111000px;}
._2b_c00304{width:7.119000px;}
._3_c00304{width:8.127000px;}
._d_c00304{width:10.062000px;}
._c_c00304{width:11.220000px;}
._12_c00304{width:12.876000px;}
._11_c00304{width:14.127000px;}
._16_c00304{width:15.882000px;}
._20_c00304{width:17.004000px;}
._8_c00304{width:18.867000px;}
._f_c00304{width:19.968000px;}
._13_c00304{width:21.048000px;}
._18_c00304{width:23.181000px;}
._0_c00304{width:24.192000px;}
._17_c00304{width:25.341000px;}
._26_c00304{width:26.733000px;}
._1f_c00304{width:28.059000px;}
._1e_c00304{width:29.295000px;}
._15_c00304{width:30.399000px;}
._1d_c00304{width:31.818000px;}
._28_c00304{width:33.414000px;}
._14_c00304{width:34.680000px;}
._9_c00304{width:35.940000px;}
._21_c00304{width:37.236000px;}
._2c_c00304{width:39.321000px;}
._29_c00304{width:42.027000px;}
._22_c00304{width:45.873000px;}
._27_c00304{width:53.823000px;}
._b_c00304{width:76.680000px;}
._24_c00304{width:86.628000px;}
._2a_c00304{width:168.408000px;}
._4_c00304{width:433.983000px;}
._25_c00304{width:534.117000px;}
._23_c00304{width:726.474000px;}
.fc2_c00304{color:transparent;}
.fc1_c00304{color:rgb(128,128,128);}
.fc0_c00304{color:rgb(0,0,0);}
.fs1_c00304{font-size:48.000000px;}
.fs5_c00304{font-size:51.000000px;}
.fs2_c00304{font-size:60.000000px;}
.fs0_c00304{font-size:63.000000px;}
.fs3_c00304{font-size:66.000000px;}
.fs4_c00304{font-size:72.000000px;}
.fs6_c00304{font-size:189.000000px;}
.y0_c00304{bottom:0.000000px;}
.y50_c00304{bottom:3.105000px;}
.y4f_c00304{bottom:7.228357px;}
.y4e_c00304{bottom:65.130000px;}
.y2a_c00304{bottom:65.430000px;}
.y4d_c00304{bottom:84.030000px;}
.y29_c00304{bottom:84.780000px;}
.y4c_c00304{bottom:101.880000px;}
.y28_c00304{bottom:103.380000px;}
.y4b_c00304{bottom:119.580000px;}
.y27_c00304{bottom:121.230000px;}
.y4a_c00304{bottom:137.430000px;}
.y26_c00304{bottom:139.080000px;}
.y49_c00304{bottom:156.030000px;}
.y25_c00304{bottom:157.380000px;}
.y48_c00304{bottom:174.180000px;}
.y24_c00304{bottom:174.930000px;}
.y47_c00304{bottom:192.330000px;}
.y23_c00304{bottom:193.680000px;}
.y46_c00304{bottom:210.330000px;}
.y22_c00304{bottom:211.380000px;}
.y45_c00304{bottom:228.480000px;}
.y21_c00304{bottom:229.230000px;}
.y43_c00304{bottom:239.880000px;}
.y44_c00304{bottom:246.480000px;}
.y20_c00304{bottom:247.080000px;}
.y1f_c00304{bottom:265.980000px;}
.y1e_c00304{bottom:284.130000px;}
.y1d_c00304{bottom:299.730000px;}
.y42_c00304{bottom:301.680000px;}
.y41_c00304{bottom:319.230000px;}
.y1c_c00304{bottom:319.380000px;}
.y1b_c00304{bottom:337.230000px;}
.y40_c00304{bottom:337.830000px;}
.y1a_c00304{bottom:355.380000px;}
.y19_c00304{bottom:373.230000px;}
.y3f_c00304{bottom:389.880000px;}
.y18_c00304{bottom:391.230000px;}
.y17_c00304{bottom:409.080000px;}
.y16_c00304{bottom:427.380000px;}
.y3e_c00304{bottom:427.680000px;}
.y3d_c00304{bottom:444.930000px;}
.y15_c00304{bottom:445.230000px;}
.y3c_c00304{bottom:462.330000px;}
.y14_c00304{bottom:463.080000px;}
.y13_c00304{bottom:480.630000px;}
.y3b_c00304{bottom:481.980000px;}
.y12_c00304{bottom:497.880000px;}
.y3a_c00304{bottom:499.530000px;}
.y11_c00304{bottom:516.330000px;}
.y39_c00304{bottom:517.380000px;}
.y10_c00304{bottom:534.030000px;}
.y38_c00304{bottom:536.280000px;}
.yf_c00304{bottom:553.230000px;}
.y37_c00304{bottom:554.280000px;}
.ye_c00304{bottom:571.080000px;}
.y36_c00304{bottom:573.180000px;}
.yd_c00304{bottom:590.280000px;}
.y35_c00304{bottom:590.580000px;}
.yc_c00304{bottom:606.780000px;}
.y34_c00304{bottom:609.630000px;}
.yb_c00304{bottom:624.030000px;}
.y33_c00304{bottom:627.180000px;}
.ya_c00304{bottom:644.280000px;}
.y32_c00304{bottom:646.080000px;}
.y9_c00304{bottom:662.130000px;}
.y31_c00304{bottom:664.530000px;}
.y8_c00304{bottom:680.130000px;}
.y30_c00304{bottom:682.530000px;}
.y7_c00304{bottom:697.980000px;}
.y2f_c00304{bottom:700.380000px;}
.y6_c00304{bottom:716.130000px;}
.y2e_c00304{bottom:718.530000px;}
.y5_c00304{bottom:733.830000px;}
.y2d_c00304{bottom:736.530000px;}
.y4_c00304{bottom:752.280000px;}
.y2c_c00304{bottom:755.280000px;}
.y3_c00304{bottom:770.280000px;}
.y2b_c00304{bottom:772.980000px;}
.y2_c00304{bottom:790.080000px;}
.y1_c00304{bottom:809.730000px;}
.hb_c00304{height:13.200074px;}
.hc_c00304{height:43.804688px;}
.h9_c00304{height:59.690918px;}
.h5_c00304{height:62.880000px;}
.h8_c00304{height:64.020000px;}
.h7_c00304{height:64.571777px;}
.h2_c00304{height:66.024000px;}
.h4_c00304{height:69.168000px;}
.h3_c00304{height:70.422000px;}
.h6_c00304{height:70.664062px;}
.ha_c00304{height:198.072000px;}
.h0_c00304{height:848.100000px;}
.h1_c00304{height:848.250000px;}
.w1_c00304{width:104.875500px;}
.w0_c00304{width:590.250000px;}
.x0_c00304{left:0.000000px;}
.x7_c00304{left:76.500000px;}
.x8_c00304{left:77.700000px;}
.x5_c00304{left:79.350000px;}
.x4_c00304{left:80.550000px;}
.x3_c00304{left:81.750000px;}
.x2_c00304{left:83.250000px;}
.x6_c00304{left:130.950000px;}
.x1_c00304{left:216.000000px;}
.x12_c00304{left:246.939240px;}
.x11_c00304{left:295.950000px;}
.x10_c00304{left:297.300000px;}
.xb_c00304{left:298.650000px;}
.xa_c00304{left:299.700000px;}
.x9_c00304{left:301.500000px;}
.xd_c00304{left:316.500000px;}
.xc_c00304{left:334.500000px;}
.xe_c00304{left:343.500000px;}
.xf_c00304{left:380.250000px;}
@media print{
.v0_c00304{vertical-align:0.000000pt;}
.v1_c00304{vertical-align:85.866667pt;}
.lse_c00304{letter-spacing:0.000000pt;}
.ls2_c00304{letter-spacing:1.066667pt;}
.ls7_c00304{letter-spacing:2.133333pt;}
.ls3_c00304{letter-spacing:2.666667pt;}
.lsb_c00304{letter-spacing:4.800000pt;}
.ls5_c00304{letter-spacing:5.200000pt;}
.lsd_c00304{letter-spacing:5.333333pt;}
.ls9_c00304{letter-spacing:6.400000pt;}
.ls4_c00304{letter-spacing:8.000000pt;}
.ls1_c00304{letter-spacing:10.133333pt;}
.lsc_c00304{letter-spacing:10.666667pt;}
.ls0_c00304{letter-spacing:15.946667pt;}
.ls8_c00304{letter-spacing:18.986667pt;}
.ls6_c00304{letter-spacing:19.600000pt;}
.lsa_c00304{letter-spacing:24.525333pt;}
.ws4_c00304{word-spacing:-31.360000pt;}
.ws0_c00304{word-spacing:-20.330667pt;}
.ws3_c00304{word-spacing:-18.080000pt;}
.ws1_c00304{word-spacing:-15.413333pt;}
.ws5_c00304{word-spacing:-12.586667pt;}
.ws2_c00304{word-spacing:-10.925333pt;}
.ws6_c00304{word-spacing:0.000000pt;}
._19_c00304{margin-left:-13.570667pt;}
._1b_c00304{margin-left:-9.813333pt;}
._1a_c00304{margin-left:-7.786667pt;}
._e_c00304{margin-left:-6.453333pt;}
._1c_c00304{margin-left:-5.120000pt;}
._10_c00304{margin-left:-3.592000pt;}
._6_c00304{margin-left:-2.530667pt;}
._7_c00304{margin-left:-1.493333pt;}
._a_c00304{width:1.493333pt;}
._5_c00304{width:2.688000pt;}
._2_c00304{width:3.976000pt;}
._1_c00304{width:5.432000pt;}
._2b_c00304{width:6.328000pt;}
._3_c00304{width:7.224000pt;}
._d_c00304{width:8.944000pt;}
._c_c00304{width:9.973333pt;}
._12_c00304{width:11.445333pt;}
._11_c00304{width:12.557333pt;}
._16_c00304{width:14.117333pt;}
._20_c00304{width:15.114667pt;}
._8_c00304{width:16.770667pt;}
._f_c00304{width:17.749333pt;}
._13_c00304{width:18.709333pt;}
._18_c00304{width:20.605333pt;}
._0_c00304{width:21.504000pt;}
._17_c00304{width:22.525333pt;}
._26_c00304{width:23.762667pt;}
._1f_c00304{width:24.941333pt;}
._1e_c00304{width:26.040000pt;}
._15_c00304{width:27.021333pt;}
._1d_c00304{width:28.282667pt;}
._28_c00304{width:29.701333pt;}
._14_c00304{width:30.826667pt;}
._9_c00304{width:31.946667pt;}
._21_c00304{width:33.098667pt;}
._2c_c00304{width:34.952000pt;}
._29_c00304{width:37.357333pt;}
._22_c00304{width:40.776000pt;}
._27_c00304{width:47.842667pt;}
._b_c00304{width:68.160000pt;}
._24_c00304{width:77.002667pt;}
._2a_c00304{width:149.696000pt;}
._4_c00304{width:385.762667pt;}
._25_c00304{width:474.770667pt;}
._23_c00304{width:645.754667pt;}
.fs1_c00304{font-size:42.666667pt;}
.fs5_c00304{font-size:45.333333pt;}
.fs2_c00304{font-size:53.333333pt;}
.fs0_c00304{font-size:56.000000pt;}
.fs3_c00304{font-size:58.666667pt;}
.fs4_c00304{font-size:64.000000pt;}
.fs6_c00304{font-size:168.000000pt;}
.y0_c00304{bottom:0.000000pt;}
.y50_c00304{bottom:2.760000pt;}
.y4f_c00304{bottom:6.425206pt;}
.y4e_c00304{bottom:57.893333pt;}
.y2a_c00304{bottom:58.160000pt;}
.y4d_c00304{bottom:74.693333pt;}
.y29_c00304{bottom:75.360000pt;}
.y4c_c00304{bottom:90.560000pt;}
.y28_c00304{bottom:91.893333pt;}
.y4b_c00304{bottom:106.293333pt;}
.y27_c00304{bottom:107.760000pt;}
.y4a_c00304{bottom:122.160000pt;}
.y26_c00304{bottom:123.626667pt;}
.y49_c00304{bottom:138.693333pt;}
.y25_c00304{bottom:139.893333pt;}
.y48_c00304{bottom:154.826667pt;}
.y24_c00304{bottom:155.493333pt;}
.y47_c00304{bottom:170.960000pt;}
.y23_c00304{bottom:172.160000pt;}
.y46_c00304{bottom:186.960000pt;}
.y22_c00304{bottom:187.893333pt;}
.y45_c00304{bottom:203.093333pt;}
.y21_c00304{bottom:203.760000pt;}
.y43_c00304{bottom:213.226667pt;}
.y44_c00304{bottom:219.093333pt;}
.y20_c00304{bottom:219.626667pt;}
.y1f_c00304{bottom:236.426667pt;}
.y1e_c00304{bottom:252.560000pt;}
.y1d_c00304{bottom:266.426667pt;}
.y42_c00304{bottom:268.160000pt;}
.y41_c00304{bottom:283.760000pt;}
.y1c_c00304{bottom:283.893333pt;}
.y1b_c00304{bottom:299.760000pt;}
.y40_c00304{bottom:300.293333pt;}
.y1a_c00304{bottom:315.893333pt;}
.y19_c00304{bottom:331.760000pt;}
.y3f_c00304{bottom:346.560000pt;}
.y18_c00304{bottom:347.760000pt;}
.y17_c00304{bottom:363.626667pt;}
.y16_c00304{bottom:379.893333pt;}
.y3e_c00304{bottom:380.160000pt;}
.y3d_c00304{bottom:395.493333pt;}
.y15_c00304{bottom:395.760000pt;}
.y3c_c00304{bottom:410.960000pt;}
.y14_c00304{bottom:411.626667pt;}
.y13_c00304{bottom:427.226667pt;}
.y3b_c00304{bottom:428.426667pt;}
.y12_c00304{bottom:442.560000pt;}
.y3a_c00304{bottom:444.026667pt;}
.y11_c00304{bottom:458.960000pt;}
.y39_c00304{bottom:459.893333pt;}
.y10_c00304{bottom:474.693333pt;}
.y38_c00304{bottom:476.693333pt;}
.yf_c00304{bottom:491.760000pt;}
.y37_c00304{bottom:492.693333pt;}
.ye_c00304{bottom:507.626667pt;}
.y36_c00304{bottom:509.493333pt;}
.yd_c00304{bottom:524.693333pt;}
.y35_c00304{bottom:524.960000pt;}
.yc_c00304{bottom:539.360000pt;}
.y34_c00304{bottom:541.893333pt;}
.yb_c00304{bottom:554.693333pt;}
.y33_c00304{bottom:557.493333pt;}
.ya_c00304{bottom:572.693333pt;}
.y32_c00304{bottom:574.293333pt;}
.y9_c00304{bottom:588.560000pt;}
.y31_c00304{bottom:590.693333pt;}
.y8_c00304{bottom:604.560000pt;}
.y30_c00304{bottom:606.693333pt;}
.y7_c00304{bottom:620.426667pt;}
.y2f_c00304{bottom:622.560000pt;}
.y6_c00304{bottom:636.560000pt;}
.y2e_c00304{bottom:638.693333pt;}
.y5_c00304{bottom:652.293333pt;}
.y2d_c00304{bottom:654.693333pt;}
.y4_c00304{bottom:668.693333pt;}
.y2c_c00304{bottom:671.360000pt;}
.y3_c00304{bottom:684.693333pt;}
.y2b_c00304{bottom:687.093333pt;}
.y2_c00304{bottom:702.293333pt;}
.y1_c00304{bottom:719.760000pt;}
.hb_c00304{height:11.733399pt;}
.hc_c00304{height:38.937500pt;}
.h9_c00304{height:53.058594pt;}
.h5_c00304{height:55.893333pt;}
.h8_c00304{height:56.906667pt;}
.h7_c00304{height:57.397135pt;}
.h2_c00304{height:58.688000pt;}
.h4_c00304{height:61.482667pt;}
.h3_c00304{height:62.597333pt;}
.h6_c00304{height:62.812500pt;}
.ha_c00304{height:176.064000pt;}
.h0_c00304{height:753.866667pt;}
.h1_c00304{height:754.000000pt;}
.w1_c00304{width:93.222667pt;}
.w0_c00304{width:524.666667pt;}
.x0_c00304{left:0.000000pt;}
.x7_c00304{left:68.000000pt;}
.x8_c00304{left:69.066667pt;}
.x5_c00304{left:70.533333pt;}
.x4_c00304{left:71.600000pt;}
.x3_c00304{left:72.666667pt;}
.x2_c00304{left:74.000000pt;}
.x6_c00304{left:116.400000pt;}
.x1_c00304{left:192.000000pt;}
.x12_c00304{left:219.501546pt;}
.x11_c00304{left:263.066667pt;}
.x10_c00304{left:264.266667pt;}
.xb_c00304{left:265.466667pt;}
.xa_c00304{left:266.400000pt;}
.x9_c00304{left:268.000000pt;}
.xd_c00304{left:281.333333pt;}
.xc_c00304{left:297.333333pt;}
.xe_c00304{left:305.333333pt;}
.xf_c00304{left:338.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_c00305 {
    display:none;
  }
  .loading-indicator_c00305.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00305 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00305 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00305" -> "#page-container .classname_c00305")
 */
.pf_c00305 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00305 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00305.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00305 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00305 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00305 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00305 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00305 {overflow:visible;}
  }
}
.c_c00305 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00305 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00305:after { /* webkit #35443 */
  content: '';
}
.t_c00305:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00305 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00305 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00305 { /* info for Javascript */
  display:none;
}
.l_c00305 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00305 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00305 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00305:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00305{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00305;src:url('chunks/assets/font_769eedd04c5185788b20f5c7.woff2')format("woff");}.ff1_c00305{font-family:ff1_c00305;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00305;src:url('chunks/assets/font_eea406070bf6801b5547d78e.woff2')format("woff");}.ff2_c00305{font-family:ff2_c00305;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00305;src:url('chunks/assets/font_d2d7f9da27351fc45e0dd1e2.woff2')format("woff");}.ff3_c00305{font-family:ff3_c00305;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00305;src:url('chunks/assets/font_0ce391de997f24f9f9dd37f4.woff2')format("woff");}.ff4_c00305{font-family:ff4_c00305;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00305;src:url('chunks/assets/font_e5c5cf6173eb20b2742baa62.woff2')format("woff");}.ff5_c00305{font-family:ff5_c00305;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00305;src:url('chunks/assets/font_c142d3398516d59ab3618bbe.woff2')format("woff");}.ff6_c00305{font-family:ff6_c00305;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00305;src:url('chunks/assets/font_5c23b5e3f3b8c5b05988bb0b.woff2')format("woff");}.ff7_c00305{font-family:ff7_c00305;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00305;src:url('chunks/assets/font_acf594c3475b356f85df6e46.woff2')format("woff");}.ff8_c00305{font-family:ff8_c00305;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00305;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff9_c00305{font-family:ff9_c00305;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00305{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00305{vertical-align:0.000000px;}
.v1_c00305{vertical-align:72.000000px;}
.ls7_c00305{letter-spacing:0.000000px;}
.ls0_c00305{letter-spacing:1.605000px;}
.ls4_c00305{letter-spacing:3.000000px;}
.ls6_c00305{letter-spacing:6.000000px;}
.ls8_c00305{letter-spacing:9.000000px;}
.ls5_c00305{letter-spacing:10.200000px;}
.ls3_c00305{letter-spacing:12.000000px;}
.ls1_c00305{letter-spacing:19.740000px;}
.ls2_c00305{letter-spacing:118.740000px;}
.sc__c00305{text-shadow:none;}
.sc0_c00305{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00305{-webkit-text-stroke:0px transparent;}
.sc0_c00305{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00305{word-spacing:-77.922000px;}
.ws2_c00305{word-spacing:-29.295000px;}
.ws4_c00305{word-spacing:-23.160000px;}
.ws1_c00305{word-spacing:-18.060000px;}
.ws0_c00305{word-spacing:-14.160000px;}
.ws5_c00305{word-spacing:0.000000px;}
._3e_c00305{margin-left:-25.020000px;}
._36_c00305{margin-left:-18.600000px;}
._13_c00305{margin-left:-14.820000px;}
._11_c00305{margin-left:-11.220000px;}
._10_c00305{margin-left:-9.420000px;}
._1e_c00305{margin-left:-8.220000px;}
._f_c00305{margin-left:-6.840000px;}
._4_c00305{margin-left:-5.340000px;}
._2_c00305{margin-left:-3.840000px;}
._6_c00305{margin-left:-2.340000px;}
._0_c00305{margin-left:-1.260000px;}
._19_c00305{width:1.020000px;}
._3_c00305{width:2.160000px;}
._d_c00305{width:3.408000px;}
._c_c00305{width:4.872000px;}
._7_c00305{width:6.780000px;}
._2b_c00305{width:7.992000px;}
._1_c00305{width:9.000000px;}
._8_c00305{width:10.560000px;}
._9_c00305{width:11.760000px;}
._1c_c00305{width:12.852000px;}
._2c_c00305{width:14.340000px;}
._b_c00305{width:15.600000px;}
._31_c00305{width:16.980000px;}
._18_c00305{width:18.600000px;}
._24_c00305{width:19.920000px;}
._29_c00305{width:21.288000px;}
._20_c00305{width:22.452000px;}
._14_c00305{width:24.300000px;}
._16_c00305{width:26.640000px;}
._2e_c00305{width:27.780000px;}
._23_c00305{width:29.496000px;}
._15_c00305{width:33.060000px;}
._3f_c00305{width:40.752000px;}
._39_c00305{width:46.560000px;}
._38_c00305{width:50.508000px;}
._2d_c00305{width:61.980000px;}
._3c_c00305{width:88.092000px;}
._3d_c00305{width:90.600000px;}
._35_c00305{width:91.908000px;}
._3b_c00305{width:93.252000px;}
._3a_c00305{width:96.120000px;}
._33_c00305{width:97.200000px;}
._2f_c00305{width:98.508000px;}
._30_c00305{width:102.936000px;}
._25_c00305{width:105.708000px;}
._28_c00305{width:107.964000px;}
._22_c00305{width:110.160000px;}
._2a_c00305{width:111.219000px;}
._21_c00305{width:112.560000px;}
._1f_c00305{width:113.760000px;}
._12_c00305{width:115.440000px;}
._1d_c00305{width:117.000000px;}
._17_c00305{width:122.460000px;}
._5_c00305{width:123.660000px;}
._a_c00305{width:125.820000px;}
._1b_c00305{width:134.544000px;}
._37_c00305{width:204.300000px;}
._27_c00305{width:222.024000px;}
._e_c00305{width:277.620000px;}
._34_c00305{width:284.352000px;}
._32_c00305{width:313.740000px;}
._26_c00305{width:328.428000px;}
._1a_c00305{width:351.960000px;}
.fc2_c00305{color:transparent;}
.fc1_c00305{color:rgb(128,128,128);}
.fc0_c00305{color:rgb(0,0,0);}
.fs2_c00305{font-size:45.000000px;}
.fs3_c00305{font-size:48.000000px;}
.fs1_c00305{font-size:57.000000px;}
.fs0_c00305{font-size:60.000000px;}
.fs4_c00305{font-size:69.000000px;}
.fs6_c00305{font-size:72.000000px;}
.fs5_c00305{font-size:162.000000px;}
.y0_c00305{bottom:0.000000px;}
.y2b_c00305{bottom:3.105000px;}
.y2a_c00305{bottom:7.228363px;}
.y29_c00305{bottom:33.750000px;}
.y28_c00305{bottom:50.850000px;}
.y27_c00305{bottom:69.900000px;}
.y26_c00305{bottom:88.650000px;}
.y25_c00305{bottom:106.650000px;}
.y24_c00305{bottom:125.550000px;}
.y23_c00305{bottom:143.400000px;}
.y22_c00305{bottom:161.550000px;}
.y21_c00305{bottom:180.150000px;}
.y20_c00305{bottom:216.600000px;}
.y1f_c00305{bottom:234.450000px;}
.y1e_c00305{bottom:253.050000px;}
.y1d_c00305{bottom:271.650000px;}
.y1c_c00305{bottom:289.950000px;}
.y1b_c00305{bottom:308.400000px;}
.y1a_c00305{bottom:325.650000px;}
.y19_c00305{bottom:344.850000px;}
.y18_c00305{bottom:362.700000px;}
.y17_c00305{bottom:381.600000px;}
.y16_c00305{bottom:398.850000px;}
.y15_c00305{bottom:417.150000px;}
.y14_c00305{bottom:436.350000px;}
.y13_c00305{bottom:454.200000px;}
.y12_c00305{bottom:473.100000px;}
.y11_c00305{bottom:492.000000px;}
.y10_c00305{bottom:508.500000px;}
.yf_c00305{bottom:528.150000px;}
.ye_c00305{bottom:544.950000px;}
.yd_c00305{bottom:564.600000px;}
.yc_c00305{bottom:582.900000px;}
.yb_c00305{bottom:601.050000px;}
.ya_c00305{bottom:619.350000px;}
.y9_c00305{bottom:637.500000px;}
.y8_c00305{bottom:655.800000px;}
.y7_c00305{bottom:673.950000px;}
.y6_c00305{bottom:692.100000px;}
.y5_c00305{bottom:711.000000px;}
.y4_c00305{bottom:729.000000px;}
.y3_c00305{bottom:747.000000px;}
.y2_c00305{bottom:764.700000px;}
.y1_c00305{bottom:783.450000px;}
.h6_c00305{height:13.200074px;}
.h7_c00305{height:43.804688px;}
.h1_c00305{height:62.880000px;}
.h3_c00305{height:64.020000px;}
.h5_c00305{height:70.664062px;}
.h2_c00305{height:72.312000px;}
.h4_c00305{height:172.854000px;}
.h0_c00305{height:843.750000px;}
.w2_c00305{width:104.875500px;}
.w1_c00305{width:565.500000px;}
.w0_c00305{width:565.650000px;}
.x0_c00305{left:0.000000px;}
.x3_c00305{left:33.300000px;}
.xb_c00305{left:88.200000px;}
.x2_c00305{left:92.850000px;}
.x1_c00305{left:94.950000px;}
.x4_c00305{left:96.150000px;}
.x5_c00305{left:97.200000px;}
.x6_c00305{left:98.250000px;}
.x7_c00305{left:99.600000px;}
.x9_c00305{left:100.650000px;}
.xa_c00305{left:102.000000px;}
.x8_c00305{left:111.000000px;}
.xd_c00305{left:234.639267px;}
.xc_c00305{left:493.500000px;}
@media print{
.v0_c00305{vertical-align:0.000000pt;}
.v1_c00305{vertical-align:64.000000pt;}
.ls7_c00305{letter-spacing:0.000000pt;}
.ls0_c00305{letter-spacing:1.426667pt;}
.ls4_c00305{letter-spacing:2.666667pt;}
.ls6_c00305{letter-spacing:5.333333pt;}
.ls8_c00305{letter-spacing:8.000000pt;}
.ls5_c00305{letter-spacing:9.066667pt;}
.ls3_c00305{letter-spacing:10.666667pt;}
.ls1_c00305{letter-spacing:17.546667pt;}
.ls2_c00305{letter-spacing:105.546667pt;}
.ws3_c00305{word-spacing:-69.264000pt;}
.ws2_c00305{word-spacing:-26.040000pt;}
.ws4_c00305{word-spacing:-20.586667pt;}
.ws1_c00305{word-spacing:-16.053333pt;}
.ws0_c00305{word-spacing:-12.586667pt;}
.ws5_c00305{word-spacing:0.000000pt;}
._3e_c00305{margin-left:-22.240000pt;}
._36_c00305{margin-left:-16.533333pt;}
._13_c00305{margin-left:-13.173333pt;}
._11_c00305{margin-left:-9.973333pt;}
._10_c00305{margin-left:-8.373333pt;}
._1e_c00305{margin-left:-7.306667pt;}
._f_c00305{margin-left:-6.080000pt;}
._4_c00305{margin-left:-4.746667pt;}
._2_c00305{margin-left:-3.413333pt;}
._6_c00305{margin-left:-2.080000pt;}
._0_c00305{margin-left:-1.120000pt;}
._19_c00305{width:0.906667pt;}
._3_c00305{width:1.920000pt;}
._d_c00305{width:3.029333pt;}
._c_c00305{width:4.330667pt;}
._7_c00305{width:6.026667pt;}
._2b_c00305{width:7.104000pt;}
._1_c00305{width:8.000000pt;}
._8_c00305{width:9.386667pt;}
._9_c00305{width:10.453333pt;}
._1c_c00305{width:11.424000pt;}
._2c_c00305{width:12.746667pt;}
._b_c00305{width:13.866667pt;}
._31_c00305{width:15.093333pt;}
._18_c00305{width:16.533333pt;}
._24_c00305{width:17.706667pt;}
._29_c00305{width:18.922667pt;}
._20_c00305{width:19.957333pt;}
._14_c00305{width:21.600000pt;}
._16_c00305{width:23.680000pt;}
._2e_c00305{width:24.693333pt;}
._23_c00305{width:26.218667pt;}
._15_c00305{width:29.386667pt;}
._3f_c00305{width:36.224000pt;}
._39_c00305{width:41.386667pt;}
._38_c00305{width:44.896000pt;}
._2d_c00305{width:55.093333pt;}
._3c_c00305{width:78.304000pt;}
._3d_c00305{width:80.533333pt;}
._35_c00305{width:81.696000pt;}
._3b_c00305{width:82.890667pt;}
._3a_c00305{width:85.440000pt;}
._33_c00305{width:86.400000pt;}
._2f_c00305{width:87.562667pt;}
._30_c00305{width:91.498667pt;}
._25_c00305{width:93.962667pt;}
._28_c00305{width:95.968000pt;}
._22_c00305{width:97.920000pt;}
._2a_c00305{width:98.861333pt;}
._21_c00305{width:100.053333pt;}
._1f_c00305{width:101.120000pt;}
._12_c00305{width:102.613333pt;}
._1d_c00305{width:104.000000pt;}
._17_c00305{width:108.853333pt;}
._5_c00305{width:109.920000pt;}
._a_c00305{width:111.840000pt;}
._1b_c00305{width:119.594667pt;}
._37_c00305{width:181.600000pt;}
._27_c00305{width:197.354667pt;}
._e_c00305{width:246.773333pt;}
._34_c00305{width:252.757333pt;}
._32_c00305{width:278.880000pt;}
._26_c00305{width:291.936000pt;}
._1a_c00305{width:312.853333pt;}
.fs2_c00305{font-size:40.000000pt;}
.fs3_c00305{font-size:42.666667pt;}
.fs1_c00305{font-size:50.666667pt;}
.fs0_c00305{font-size:53.333333pt;}
.fs4_c00305{font-size:61.333333pt;}
.fs6_c00305{font-size:64.000000pt;}
.fs5_c00305{font-size:144.000000pt;}
.y0_c00305{bottom:0.000000pt;}
.y2b_c00305{bottom:2.760000pt;}
.y2a_c00305{bottom:6.425212pt;}
.y29_c00305{bottom:30.000000pt;}
.y28_c00305{bottom:45.200000pt;}
.y27_c00305{bottom:62.133333pt;}
.y26_c00305{bottom:78.800000pt;}
.y25_c00305{bottom:94.800000pt;}
.y24_c00305{bottom:111.600000pt;}
.y23_c00305{bottom:127.466667pt;}
.y22_c00305{bottom:143.600000pt;}
.y21_c00305{bottom:160.133333pt;}
.y20_c00305{bottom:192.533333pt;}
.y1f_c00305{bottom:208.400000pt;}
.y1e_c00305{bottom:224.933333pt;}
.y1d_c00305{bottom:241.466667pt;}
.y1c_c00305{bottom:257.733333pt;}
.y1b_c00305{bottom:274.133333pt;}
.y1a_c00305{bottom:289.466667pt;}
.y19_c00305{bottom:306.533333pt;}
.y18_c00305{bottom:322.400000pt;}
.y17_c00305{bottom:339.200000pt;}
.y16_c00305{bottom:354.533333pt;}
.y15_c00305{bottom:370.800000pt;}
.y14_c00305{bottom:387.866667pt;}
.y13_c00305{bottom:403.733333pt;}
.y12_c00305{bottom:420.533333pt;}
.y11_c00305{bottom:437.333333pt;}
.y10_c00305{bottom:452.000000pt;}
.yf_c00305{bottom:469.466667pt;}
.ye_c00305{bottom:484.400000pt;}
.yd_c00305{bottom:501.866667pt;}
.yc_c00305{bottom:518.133333pt;}
.yb_c00305{bottom:534.266667pt;}
.ya_c00305{bottom:550.533333pt;}
.y9_c00305{bottom:566.666667pt;}
.y8_c00305{bottom:582.933333pt;}
.y7_c00305{bottom:599.066667pt;}
.y6_c00305{bottom:615.200000pt;}
.y5_c00305{bottom:632.000000pt;}
.y4_c00305{bottom:648.000000pt;}
.y3_c00305{bottom:664.000000pt;}
.y2_c00305{bottom:679.733333pt;}
.y1_c00305{bottom:696.400000pt;}
.h6_c00305{height:11.733399pt;}
.h7_c00305{height:38.937500pt;}
.h1_c00305{height:55.893333pt;}
.h3_c00305{height:56.906667pt;}
.h5_c00305{height:62.812500pt;}
.h2_c00305{height:64.277333pt;}
.h4_c00305{height:153.648000pt;}
.h0_c00305{height:750.000000pt;}
.w2_c00305{width:93.222667pt;}
.w1_c00305{width:502.666667pt;}
.w0_c00305{width:502.800000pt;}
.x0_c00305{left:0.000000pt;}
.x3_c00305{left:29.600000pt;}
.xb_c00305{left:78.400000pt;}
.x2_c00305{left:82.533333pt;}
.x1_c00305{left:84.400000pt;}
.x4_c00305{left:85.466667pt;}
.x5_c00305{left:86.400000pt;}
.x6_c00305{left:87.333333pt;}
.x7_c00305{left:88.533333pt;}
.x9_c00305{left:89.466667pt;}
.xa_c00305{left:90.666667pt;}
.x8_c00305{left:98.666667pt;}
.xd_c00305{left:208.568237pt;}
.xc_c00305{left:438.666667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_5534e9a5f2a6c2c7f447d04d.woff2')format("woff");}.ff1_c00306{font-family:ff1_c00306;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00306;src:url('chunks/assets/font_5594ac07ac875ff650ad1996.woff2')format("woff");}.ff2_c00306{font-family:ff2_c00306;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00306;src:url('chunks/assets/font_db50c1f2089e583fbb1ed965.woff2')format("woff");}.ff3_c00306{font-family:ff3_c00306;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00306;src:url('chunks/assets/font_53c0dcd4308eaadb2201d34e.woff2')format("woff");}.ff4_c00306{font-family:ff4_c00306;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00306;src:url('chunks/assets/font_692b2cbc293e73065f46a2f5.woff2')format("woff");}.ff5_c00306{font-family:ff5_c00306;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00306;src:url('chunks/assets/font_0f538b19933c8d88eee171d6.woff2')format("woff");}.ff6_c00306{font-family:ff6_c00306;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00306;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff7_c00306{font-family:ff7_c00306;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00306{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00306{vertical-align:0.000000px;}
.ls3_c00306{letter-spacing:0.000000px;}
.ls0_c00306{letter-spacing:3.000000px;}
.ls5_c00306{letter-spacing:6.000000px;}
.ls1_c00306{letter-spacing:7.800000px;}
.ls4_c00306{letter-spacing:12.000000px;}
.ls2_c00306{letter-spacing:23.400000px;}
.sc__c00306{text-shadow:none;}
.sc0_c00306{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00306{-webkit-text-stroke:0px transparent;}
.sc0_c00306{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00306{word-spacing:-38.961000px;}
.ws3_c00306{word-spacing:-27.813000px;}
.ws2_c00306{word-spacing:-18.060000px;}
.ws1_c00306{word-spacing:-14.160000px;}
.ws4_c00306{word-spacing:0.000000px;}
._2c_c00306{margin-left:-17.484000px;}
._2e_c00306{margin-left:-14.031000px;}
._1b_c00306{margin-left:-11.970000px;}
._4_c00306{margin-left:-8.100000px;}
._1a_c00306{margin-left:-6.834000px;}
._19_c00306{margin-left:-5.430000px;}
._e_c00306{margin-left:-4.410000px;}
._12_c00306{margin-left:-2.694000px;}
._0_c00306{margin-left:-1.662000px;}
._2_c00306{width:1.518000px;}
._5_c00306{width:3.282000px;}
._6_c00306{width:4.776000px;}
._a_c00306{width:6.462000px;}
._d_c00306{width:7.662000px;}
._9_c00306{width:9.480000px;}
._f_c00306{width:10.716000px;}
._21_c00306{width:11.844000px;}
._1_c00306{width:12.972000px;}
._8_c00306{width:14.052000px;}
._10_c00306{width:15.666000px;}
._2b_c00306{width:17.046000px;}
._17_c00306{width:19.428000px;}
._15_c00306{width:20.520000px;}
._c_c00306{width:22.158000px;}
._30_c00306{width:23.358000px;}
._11_c00306{width:24.960000px;}
._29_c00306{width:26.688000px;}
._b_c00306{width:28.944000px;}
._24_c00306{width:30.054000px;}
._28_c00306{width:31.878000px;}
._27_c00306{width:32.880000px;}
._14_c00306{width:34.896000px;}
._18_c00306{width:37.764000px;}
._25_c00306{width:40.248000px;}
._2f_c00306{width:52.644000px;}
._1d_c00306{width:55.332000px;}
._2d_c00306{width:56.433000px;}
._1e_c00306{width:61.272000px;}
._1c_c00306{width:62.448000px;}
._13_c00306{width:64.038000px;}
._16_c00306{width:65.844000px;}
._7_c00306{width:67.152000px;}
._22_c00306{width:68.784000px;}
._1f_c00306{width:72.060000px;}
._23_c00306{width:73.134000px;}
._20_c00306{width:102.480000px;}
._26_c00306{width:105.840000px;}
._2a_c00306{width:130.200000px;}
._32_c00306{width:172.494000px;}
._3_c00306{width:407.430000px;}
._31_c00306{width:1144.518000px;}
.fc2_c00306{color:transparent;}
.fc1_c00306{color:rgb(128,128,128);}
.fc0_c00306{color:rgb(0,0,0);}
.fs5_c00306{font-size:48.000000px;}
.fs3_c00306{font-size:51.000000px;}
.fs2_c00306{font-size:60.000000px;}
.fs4_c00306{font-size:63.000000px;}
.fs1_c00306{font-size:69.000000px;}
.fs0_c00306{font-size:81.000000px;}
.y0_c00306{bottom:0.000000px;}
.y41_c00306{bottom:3.105000px;}
.y40_c00306{bottom:7.228357px;}
.y3f_c00306{bottom:38.130000px;}
.y3e_c00306{bottom:60.030000px;}
.y3d_c00306{bottom:79.380000px;}
.y3c_c00306{bottom:97.980000px;}
.y3b_c00306{bottom:114.480000px;}
.y3a_c00306{bottom:133.680000px;}
.y39_c00306{bottom:151.230000px;}
.y38_c00306{bottom:169.530000px;}
.y37_c00306{bottom:184.680000px;}
.y32_c00306{bottom:190.080000px;}
.y36_c00306{bottom:204.480000px;}
.y31_c00306{bottom:209.280000px;}
.y35_c00306{bottom:222.180000px;}
.y30_c00306{bottom:227.580000px;}
.y34_c00306{bottom:240.930000px;}
.y2f_c00306{bottom:245.730000px;}
.y33_c00306{bottom:259.830000px;}
.y2e_c00306{bottom:263.880000px;}
.y2d_c00306{bottom:278.880000px;}
.y2c_c00306{bottom:297.630000px;}
.y2b_c00306{bottom:315.630000px;}
.y2a_c00306{bottom:334.080000px;}
.y29_c00306{bottom:351.630000px;}
.y28_c00306{bottom:368.880000px;}
.y27_c00306{bottom:386.730000px;}
.y26_c00306{bottom:405.030000px;}
.y25_c00306{bottom:423.330000px;}
.y24_c00306{bottom:442.080000px;}
.y1a_c00306{bottom:459.330000px;}
.y23_c00306{bottom:460.080000px;}
.y19_c00306{bottom:477.330000px;}
.y22_c00306{bottom:478.680000px;}
.y18_c00306{bottom:494.730000px;}
.y21_c00306{bottom:496.230000px;}
.y17_c00306{bottom:513.780000px;}
.y20_c00306{bottom:514.080000px;}
.y1f_c00306{bottom:531.180000px;}
.y16_c00306{bottom:531.630000px;}
.y1e_c00306{bottom:550.080000px;}
.y15_c00306{bottom:550.230000px;}
.y1d_c00306{bottom:568.080000px;}
.y14_c00306{bottom:568.680000px;}
.y1c_c00306{bottom:585.630000px;}
.y13_c00306{bottom:586.680000px;}
.y1b_c00306{bottom:604.230000px;}
.y12_c00306{bottom:604.830000px;}
.y11_c00306{bottom:622.380000px;}
.y10_c00306{bottom:639.330000px;}
.yf_c00306{bottom:658.830000px;}
.y8_c00306{bottom:676.230000px;}
.ye_c00306{bottom:678.030000px;}
.y7_c00306{bottom:694.230000px;}
.yd_c00306{bottom:696.030000px;}
.y6_c00306{bottom:712.230000px;}
.yc_c00306{bottom:714.930000px;}
.y5_c00306{bottom:729.630000px;}
.yb_c00306{bottom:732.780000px;}
.y4_c00306{bottom:747.930000px;}
.ya_c00306{bottom:750.930000px;}
.y3_c00306{bottom:766.530000px;}
.y9_c00306{bottom:768.780000px;}
.y2_c00306{bottom:786.030000px;}
.y1_c00306{bottom:806.280000px;}
.h7_c00306{height:13.200074px;}
.h8_c00306{height:43.804688px;}
.h3_c00306{height:62.880000px;}
.h4_c00306{height:64.020000px;}
.h5_c00306{height:64.571777px;}
.h6_c00306{height:66.024000px;}
.h2_c00306{height:87.804000px;}
.h0_c00306{height:848.100000px;}
.h1_c00306{height:848.250000px;}
.w1_c00306{width:104.875500px;}
.w0_c00306{width:590.250000px;}
.x0_c00306{left:0.000000px;}
.xb_c00306{left:17.550000px;}
.xa_c00306{left:27.300000px;}
.xc_c00306{left:75.900000px;}
.xd_c00306{left:76.950000px;}
.x9_c00306{left:78.750000px;}
.x8_c00306{left:80.400000px;}
.x2_c00306{left:81.600000px;}
.xf_c00306{left:83.400000px;}
.x11_c00306{left:84.450000px;}
.x10_c00306{left:108.300000px;}
.x1_c00306{left:221.850000px;}
.x12_c00306{left:246.939240px;}
.xe_c00306{left:289.200000px;}
.x7_c00306{left:290.550000px;}
.x6_c00306{left:291.900000px;}
.x5_c00306{left:292.950000px;}
.x4_c00306{left:294.000000px;}
.x3_c00306{left:295.200000px;}
@media print{
.v0_c00306{vertical-align:0.000000pt;}
.ls3_c00306{letter-spacing:0.000000pt;}
.ls0_c00306{letter-spacing:2.666667pt;}
.ls5_c00306{letter-spacing:5.333333pt;}
.ls1_c00306{letter-spacing:6.933333pt;}
.ls4_c00306{letter-spacing:10.666667pt;}
.ls2_c00306{letter-spacing:20.800000pt;}
.ws0_c00306{word-spacing:-34.632000pt;}
.ws3_c00306{word-spacing:-24.722667pt;}
.ws2_c00306{word-spacing:-16.053333pt;}
.ws1_c00306{word-spacing:-12.586667pt;}
.ws4_c00306{word-spacing:0.000000pt;}
._2c_c00306{margin-left:-15.541333pt;}
._2e_c00306{margin-left:-12.472000pt;}
._1b_c00306{margin-left:-10.640000pt;}
._4_c00306{margin-left:-7.200000pt;}
._1a_c00306{margin-left:-6.074667pt;}
._19_c00306{margin-left:-4.826667pt;}
._e_c00306{margin-left:-3.920000pt;}
._12_c00306{margin-left:-2.394667pt;}
._0_c00306{margin-left:-1.477333pt;}
._2_c00306{width:1.349333pt;}
._5_c00306{width:2.917333pt;}
._6_c00306{width:4.245333pt;}
._a_c00306{width:5.744000pt;}
._d_c00306{width:6.810667pt;}
._9_c00306{width:8.426667pt;}
._f_c00306{width:9.525333pt;}
._21_c00306{width:10.528000pt;}
._1_c00306{width:11.530667pt;}
._8_c00306{width:12.490667pt;}
._10_c00306{width:13.925333pt;}
._2b_c00306{width:15.152000pt;}
._17_c00306{width:17.269333pt;}
._15_c00306{width:18.240000pt;}
._c_c00306{width:19.696000pt;}
._30_c00306{width:20.762667pt;}
._11_c00306{width:22.186667pt;}
._29_c00306{width:23.722667pt;}
._b_c00306{width:25.728000pt;}
._24_c00306{width:26.714667pt;}
._28_c00306{width:28.336000pt;}
._27_c00306{width:29.226667pt;}
._14_c00306{width:31.018667pt;}
._18_c00306{width:33.568000pt;}
._25_c00306{width:35.776000pt;}
._2f_c00306{width:46.794667pt;}
._1d_c00306{width:49.184000pt;}
._2d_c00306{width:50.162667pt;}
._1e_c00306{width:54.464000pt;}
._1c_c00306{width:55.509333pt;}
._13_c00306{width:56.922667pt;}
._16_c00306{width:58.528000pt;}
._7_c00306{width:59.690667pt;}
._22_c00306{width:61.141333pt;}
._1f_c00306{width:64.053333pt;}
._23_c00306{width:65.008000pt;}
._20_c00306{width:91.093333pt;}
._26_c00306{width:94.080000pt;}
._2a_c00306{width:115.733333pt;}
._32_c00306{width:153.328000pt;}
._3_c00306{width:362.160000pt;}
._31_c00306{width:1017.349333pt;}
.fs5_c00306{font-size:42.666667pt;}
.fs3_c00306{font-size:45.333333pt;}
.fs2_c00306{font-size:53.333333pt;}
.fs4_c00306{font-size:56.000000pt;}
.fs1_c00306{font-size:61.333333pt;}
.fs0_c00306{font-size:72.000000pt;}
.y0_c00306{bottom:0.000000pt;}
.y41_c00306{bottom:2.760000pt;}
.y40_c00306{bottom:6.425206pt;}
.y3f_c00306{bottom:33.893333pt;}
.y3e_c00306{bottom:53.360000pt;}
.y3d_c00306{bottom:70.560000pt;}
.y3c_c00306{bottom:87.093333pt;}
.y3b_c00306{bottom:101.760000pt;}
.y3a_c00306{bottom:118.826667pt;}
.y39_c00306{bottom:134.426667pt;}
.y38_c00306{bottom:150.693333pt;}
.y37_c00306{bottom:164.160000pt;}
.y32_c00306{bottom:168.960000pt;}
.y36_c00306{bottom:181.760000pt;}
.y31_c00306{bottom:186.026667pt;}
.y35_c00306{bottom:197.493333pt;}
.y30_c00306{bottom:202.293333pt;}
.y34_c00306{bottom:214.160000pt;}
.y2f_c00306{bottom:218.426667pt;}
.y33_c00306{bottom:230.960000pt;}
.y2e_c00306{bottom:234.560000pt;}
.y2d_c00306{bottom:247.893333pt;}
.y2c_c00306{bottom:264.560000pt;}
.y2b_c00306{bottom:280.560000pt;}
.y2a_c00306{bottom:296.960000pt;}
.y29_c00306{bottom:312.560000pt;}
.y28_c00306{bottom:327.893333pt;}
.y27_c00306{bottom:343.760000pt;}
.y26_c00306{bottom:360.026667pt;}
.y25_c00306{bottom:376.293333pt;}
.y24_c00306{bottom:392.960000pt;}
.y1a_c00306{bottom:408.293333pt;}
.y23_c00306{bottom:408.960000pt;}
.y19_c00306{bottom:424.293333pt;}
.y22_c00306{bottom:425.493333pt;}
.y18_c00306{bottom:439.760000pt;}
.y21_c00306{bottom:441.093333pt;}
.y17_c00306{bottom:456.693333pt;}
.y20_c00306{bottom:456.960000pt;}
.y1f_c00306{bottom:472.160000pt;}
.y16_c00306{bottom:472.560000pt;}
.y1e_c00306{bottom:488.960000pt;}
.y15_c00306{bottom:489.093333pt;}
.y1d_c00306{bottom:504.960000pt;}
.y14_c00306{bottom:505.493333pt;}
.y1c_c00306{bottom:520.560000pt;}
.y13_c00306{bottom:521.493333pt;}
.y1b_c00306{bottom:537.093333pt;}
.y12_c00306{bottom:537.626667pt;}
.y11_c00306{bottom:553.226667pt;}
.y10_c00306{bottom:568.293333pt;}
.yf_c00306{bottom:585.626667pt;}
.y8_c00306{bottom:601.093333pt;}
.ye_c00306{bottom:602.693333pt;}
.y7_c00306{bottom:617.093333pt;}
.yd_c00306{bottom:618.693333pt;}
.y6_c00306{bottom:633.093333pt;}
.yc_c00306{bottom:635.493333pt;}
.y5_c00306{bottom:648.560000pt;}
.yb_c00306{bottom:651.360000pt;}
.y4_c00306{bottom:664.826667pt;}
.ya_c00306{bottom:667.493333pt;}
.y3_c00306{bottom:681.360000pt;}
.y9_c00306{bottom:683.360000pt;}
.y2_c00306{bottom:698.693333pt;}
.y1_c00306{bottom:716.693333pt;}
.h7_c00306{height:11.733399pt;}
.h8_c00306{height:38.937500pt;}
.h3_c00306{height:55.893333pt;}
.h4_c00306{height:56.906667pt;}
.h5_c00306{height:57.397135pt;}
.h6_c00306{height:58.688000pt;}
.h2_c00306{height:78.048000pt;}
.h0_c00306{height:753.866667pt;}
.h1_c00306{height:754.000000pt;}
.w1_c00306{width:93.222667pt;}
.w0_c00306{width:524.666667pt;}
.x0_c00306{left:0.000000pt;}
.xb_c00306{left:15.600000pt;}
.xa_c00306{left:24.266667pt;}
.xc_c00306{left:67.466667pt;}
.xd_c00306{left:68.400000pt;}
.x9_c00306{left:70.000000pt;}
.x8_c00306{left:71.466667pt;}
.x2_c00306{left:72.533333pt;}
.xf_c00306{left:74.133333pt;}
.x11_c00306{left:75.066667pt;}
.x10_c00306{left:96.266667pt;}
.x1_c00306{left:197.200000pt;}
.x12_c00306{left:219.501546pt;}
.xe_c00306{left:257.066667pt;}
.x7_c00306{left:258.266667pt;}
.x6_c00306{left:259.466667pt;}
.x5_c00306{left:260.400000pt;}
.x4_c00306{left:261.333333pt;}
.x3_c00306{left:262.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a13ecbae1bce7d8671142f88.woff2')format("woff");}.ff1_c00307{font-family:ff1_c00307;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00307;src:url('chunks/assets/font_0dfa87b6118ef689822830e7.woff2')format("woff");}.ff2_c00307{font-family:ff2_c00307;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00307;src:url('chunks/assets/font_b3e9e2421e70fd6bd9ccd74b.woff2')format("woff");}.ff3_c00307{font-family:ff3_c00307;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00307;src:url('chunks/assets/font_17c4e7a20d87bd0f5ea1dab4.woff2')format("woff");}.ff4_c00307{font-family:ff4_c00307;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00307;src:url('chunks/assets/font_57b9a3dfeb7d582897105c63.woff2')format("woff");}.ff5_c00307{font-family:ff5_c00307;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00307;src:url('chunks/assets/font_2c75a5b958b788e656d9fefa.woff2')format("woff");}.ff6_c00307{font-family:ff6_c00307;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00307;src:url('chunks/assets/font_664f8d435666d9ecdd07ab6b.woff2')format("woff");}.ff7_c00307{font-family:ff7_c00307;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00307;src:url('chunks/assets/font_abe8c30872fea3f4bf4d385c.woff2')format("woff");}.ff8_c00307{font-family:ff8_c00307;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00307;src:url('chunks/assets/font_8bdc2b34114f2941bf4bb951.woff2')format("woff");}.ff9_c00307{font-family:ff9_c00307;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00307;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ffa_c00307{font-family:ffa_c00307;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00307{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00307{vertical-align:0.000000px;}
.v1_c00307{vertical-align:106.800000px;}
.ls9_c00307{letter-spacing:0.000000px;}
.ls5_c00307{letter-spacing:2.880000px;}
.ls3_c00307{letter-spacing:3.000000px;}
.ls8_c00307{letter-spacing:4.260000px;}
.ls7_c00307{letter-spacing:4.728000px;}
.lsb_c00307{letter-spacing:6.000000px;}
.ls1_c00307{letter-spacing:6.600000px;}
.ls4_c00307{letter-spacing:9.000000px;}
.ls0_c00307{letter-spacing:10.500000px;}
.ls2_c00307{letter-spacing:14.340000px;}
.lsa_c00307{letter-spacing:15.000000px;}
.ls6_c00307{letter-spacing:16.572000px;}
.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;}
}
.ws6_c00307{word-spacing:-69.684000px;}
.wsa_c00307{word-spacing:-39.780000px;}
.ws9_c00307{word-spacing:-32.424000px;}
.ws5_c00307{word-spacing:-28.359000px;}
.ws0_c00307{word-spacing:-27.840000px;}
.ws3_c00307{word-spacing:-20.340000px;}
.ws8_c00307{word-spacing:-18.600000px;}
.ws1_c00307{word-spacing:-18.060000px;}
.ws2_c00307{word-spacing:-17.340000px;}
.ws7_c00307{word-spacing:-14.160000px;}
.wsb_c00307{word-spacing:0.000000px;}
.ws4_c00307{word-spacing:24.660000px;}
._1c_c00307{margin-left:-16.884000px;}
._1d_c00307{margin-left:-15.288000px;}
._1a_c00307{margin-left:-12.660000px;}
._1e_c00307{margin-left:-11.469000px;}
._18_c00307{margin-left:-8.679000px;}
._1b_c00307{margin-left:-7.440000px;}
._11_c00307{margin-left:-6.120000px;}
._15_c00307{margin-left:-4.482000px;}
._e_c00307{margin-left:-3.174000px;}
._a_c00307{margin-left:-1.380000px;}
._7_c00307{width:1.020000px;}
._6_c00307{width:2.160000px;}
._9_c00307{width:3.180000px;}
._8_c00307{width:4.320000px;}
._b_c00307{width:6.279000px;}
._13_c00307{width:7.440000px;}
._2_c00307{width:8.700000px;}
._d_c00307{width:10.380000px;}
._1_c00307{width:12.300000px;}
._3_c00307{width:13.980000px;}
._12_c00307{width:15.348000px;}
._10_c00307{width:16.962000px;}
._5_c00307{width:19.260000px;}
._4_c00307{width:21.120000px;}
._17_c00307{width:23.754000px;}
._21_c00307{width:25.320000px;}
._c_c00307{width:27.000000px;}
._23_c00307{width:32.553000px;}
._16_c00307{width:34.101000px;}
._22_c00307{width:38.340000px;}
._f_c00307{width:43.680000px;}
._14_c00307{width:46.380000px;}
._1f_c00307{width:48.252000px;}
._20_c00307{width:50.160000px;}
._19_c00307{width:58.260000px;}
._25_c00307{width:69.504000px;}
._24_c00307{width:87.708000px;}
._0_c00307{width:299.040000px;}
.fc2_c00307{color:transparent;}
.fc1_c00307{color:rgb(128,128,128);}
.fc0_c00307{color:rgb(0,0,0);}
.fs8_c00307{font-size:24.000000px;}
.fs7_c00307{font-size:36.000000px;}
.fs6_c00307{font-size:48.000000px;}
.fs0_c00307{font-size:60.000000px;}
.fs1_c00307{font-size:69.000000px;}
.fs3_c00307{font-size:81.000000px;}
.fs4_c00307{font-size:84.000000px;}
.fs2_c00307{font-size:90.000000px;}
.fs5_c00307{font-size:210.000000px;}
.y0_c00307{bottom:0.000000px;}
.y55_c00307{bottom:3.105000px;}
.y54_c00307{bottom:7.228369px;}
.y51_c00307{bottom:28.620000px;}
.y29_c00307{bottom:38.820000px;}
.y50_c00307{bottom:46.470000px;}
.y4f_c00307{bottom:65.370000px;}
.y28_c00307{bottom:81.570000px;}
.y4e_c00307{bottom:83.070000px;}
.y27_c00307{bottom:99.120000px;}
.y4d_c00307{bottom:101.820000px;}
.y26_c00307{bottom:118.170000px;}
.y4c_c00307{bottom:119.520000px;}
.y25_c00307{bottom:137.070000px;}
.y4b_c00307{bottom:137.970000px;}
.y24_c00307{bottom:155.520000px;}
.y4a_c00307{bottom:156.870000px;}
.y23_c00307{bottom:173.370000px;}
.y49_c00307{bottom:174.870000px;}
.y22_c00307{bottom:192.270000px;}
.y48_c00307{bottom:193.020000px;}
.y21_c00307{bottom:210.270000px;}
.y47_c00307{bottom:210.870000px;}
.y20_c00307{bottom:228.120000px;}
.y46_c00307{bottom:230.220000px;}
.y1f_c00307{bottom:246.420000px;}
.y45_c00307{bottom:247.770000px;}
.y1e_c00307{bottom:265.170000px;}
.y44_c00307{bottom:266.520000px;}
.y1d_c00307{bottom:282.420000px;}
.y43_c00307{bottom:285.120000px;}
.y1c_c00307{bottom:301.020000px;}
.y42_c00307{bottom:303.120000px;}
.y1b_c00307{bottom:319.620000px;}
.y41_c00307{bottom:320.970000px;}
.y1a_c00307{bottom:338.220000px;}
.y40_c00307{bottom:339.570000px;}
.y19_c00307{bottom:355.770000px;}
.y3f_c00307{bottom:357.720000px;}
.y18_c00307{bottom:374.220000px;}
.y3e_c00307{bottom:375.870000px;}
.y17_c00307{bottom:392.220000px;}
.y3d_c00307{bottom:393.870000px;}
.y16_c00307{bottom:409.320000px;}
.y3c_c00307{bottom:412.020000px;}
.y15_c00307{bottom:428.520000px;}
.y3b_c00307{bottom:430.620000px;}
.y14_c00307{bottom:446.520000px;}
.y3a_c00307{bottom:448.920000px;}
.y13_c00307{bottom:464.670000px;}
.y39_c00307{bottom:467.070000px;}
.y12_c00307{bottom:482.670000px;}
.y38_c00307{bottom:485.670000px;}
.y11_c00307{bottom:501.570000px;}
.y53_c00307{bottom:501.870000px;}
.y37_c00307{bottom:503.820000px;}
.y10_c00307{bottom:519.870000px;}
.y52_c00307{bottom:520.770000px;}
.y36_c00307{bottom:521.820000px;}
.yf_c00307{bottom:538.020000px;}
.y35_c00307{bottom:539.670000px;}
.ye_c00307{bottom:556.170000px;}
.y34_c00307{bottom:557.520000px;}
.yd_c00307{bottom:574.770000px;}
.y33_c00307{bottom:576.120000px;}
.yc_c00307{bottom:592.620000px;}
.y32_c00307{bottom:594.270000px;}
.yb_c00307{bottom:611.820000px;}
.y31_c00307{bottom:612.570000px;}
.y2f_c00307{bottom:622.320000px;}
.ya_c00307{bottom:629.070000px;}
.y30_c00307{bottom:630.720000px;}
.y9_c00307{bottom:647.670000px;}
.y8_c00307{bottom:665.520000px;}
.y7_c00307{bottom:685.020000px;}
.y2e_c00307{bottom:685.770000px;}
.y6_c00307{bottom:702.570000px;}
.y2d_c00307{bottom:704.070000px;}
.y5_c00307{bottom:720.570000px;}
.y2c_c00307{bottom:722.520000px;}
.y4_c00307{bottom:738.420000px;}
.y3_c00307{bottom:757.620000px;}
.y2b_c00307{bottom:759.270000px;}
.y2_c00307{bottom:778.170000px;}
.y1_c00307{bottom:795.720000px;}
.y2a_c00307{bottom:799.770000px;}
.h9_c00307{height:13.200073px;}
.ha_c00307{height:43.804688px;}
.h4_c00307{height:62.880000px;}
.h2_c00307{height:64.020000px;}
.h3_c00307{height:72.312000px;}
.h6_c00307{height:84.888000px;}
.h5_c00307{height:88.286133px;}
.h7_c00307{height:91.056000px;}
.h8_c00307{height:224.070000px;}
.h1_c00307{height:837.750000px;}
.h0_c00307{height:838.050000px;}
.w2_c00307{width:104.875500px;}
.w0_c00307{width:561.600000px;}
.w1_c00307{width:561.750000px;}
.x0_c00307{left:0.000000px;}
.x5_c00307{left:90.150000px;}
.x4_c00307{left:91.800000px;}
.x3_c00307{left:92.850000px;}
.x2_c00307{left:94.050000px;}
.x1_c00307{left:97.500000px;}
.x6_c00307{left:101.250000px;}
.x7_c00307{left:116.850000px;}
.x8_c00307{left:132.000000px;}
.x9_c00307{left:163.050000px;}
.x16_c00307{left:232.614258px;}
.x12_c00307{left:306.900000px;}
.x13_c00307{left:309.150000px;}
.x11_c00307{left:310.200000px;}
.xc_c00307{left:311.850000px;}
.xa_c00307{left:316.650000px;}
.xd_c00307{left:322.650000px;}
.x10_c00307{left:340.950000px;}
.xf_c00307{left:343.350000px;}
.xe_c00307{left:355.500000px;}
.xb_c00307{left:383.100000px;}
.x14_c00307{left:418.800000px;}
.x15_c00307{left:510.000000px;}
@media print{
.v0_c00307{vertical-align:0.000000pt;}
.v1_c00307{vertical-align:94.933333pt;}
.ls9_c00307{letter-spacing:0.000000pt;}
.ls5_c00307{letter-spacing:2.560000pt;}
.ls3_c00307{letter-spacing:2.666667pt;}
.ls8_c00307{letter-spacing:3.786667pt;}
.ls7_c00307{letter-spacing:4.202667pt;}
.lsb_c00307{letter-spacing:5.333333pt;}
.ls1_c00307{letter-spacing:5.866667pt;}
.ls4_c00307{letter-spacing:8.000000pt;}
.ls0_c00307{letter-spacing:9.333333pt;}
.ls2_c00307{letter-spacing:12.746667pt;}
.lsa_c00307{letter-spacing:13.333333pt;}
.ls6_c00307{letter-spacing:14.730667pt;}
.ws6_c00307{word-spacing:-61.941333pt;}
.wsa_c00307{word-spacing:-35.360000pt;}
.ws9_c00307{word-spacing:-28.821333pt;}
.ws5_c00307{word-spacing:-25.208000pt;}
.ws0_c00307{word-spacing:-24.746667pt;}
.ws3_c00307{word-spacing:-18.080000pt;}
.ws8_c00307{word-spacing:-16.533333pt;}
.ws1_c00307{word-spacing:-16.053333pt;}
.ws2_c00307{word-spacing:-15.413333pt;}
.ws7_c00307{word-spacing:-12.586667pt;}
.wsb_c00307{word-spacing:0.000000pt;}
.ws4_c00307{word-spacing:21.920000pt;}
._1c_c00307{margin-left:-15.008000pt;}
._1d_c00307{margin-left:-13.589333pt;}
._1a_c00307{margin-left:-11.253333pt;}
._1e_c00307{margin-left:-10.194667pt;}
._18_c00307{margin-left:-7.714667pt;}
._1b_c00307{margin-left:-6.613333pt;}
._11_c00307{margin-left:-5.440000pt;}
._15_c00307{margin-left:-3.984000pt;}
._e_c00307{margin-left:-2.821333pt;}
._a_c00307{margin-left:-1.226667pt;}
._7_c00307{width:0.906667pt;}
._6_c00307{width:1.920000pt;}
._9_c00307{width:2.826667pt;}
._8_c00307{width:3.840000pt;}
._b_c00307{width:5.581333pt;}
._13_c00307{width:6.613333pt;}
._2_c00307{width:7.733333pt;}
._d_c00307{width:9.226667pt;}
._1_c00307{width:10.933333pt;}
._3_c00307{width:12.426667pt;}
._12_c00307{width:13.642667pt;}
._10_c00307{width:15.077333pt;}
._5_c00307{width:17.120000pt;}
._4_c00307{width:18.773333pt;}
._17_c00307{width:21.114667pt;}
._21_c00307{width:22.506667pt;}
._c_c00307{width:24.000000pt;}
._23_c00307{width:28.936000pt;}
._16_c00307{width:30.312000pt;}
._22_c00307{width:34.080000pt;}
._f_c00307{width:38.826667pt;}
._14_c00307{width:41.226667pt;}
._1f_c00307{width:42.890667pt;}
._20_c00307{width:44.586667pt;}
._19_c00307{width:51.786667pt;}
._25_c00307{width:61.781333pt;}
._24_c00307{width:77.962667pt;}
._0_c00307{width:265.813333pt;}
.fs8_c00307{font-size:21.333333pt;}
.fs7_c00307{font-size:32.000000pt;}
.fs6_c00307{font-size:42.666667pt;}
.fs0_c00307{font-size:53.333333pt;}
.fs1_c00307{font-size:61.333333pt;}
.fs3_c00307{font-size:72.000000pt;}
.fs4_c00307{font-size:74.666667pt;}
.fs2_c00307{font-size:80.000000pt;}
.fs5_c00307{font-size:186.666667pt;}
.y0_c00307{bottom:0.000000pt;}
.y55_c00307{bottom:2.760000pt;}
.y54_c00307{bottom:6.425217pt;}
.y51_c00307{bottom:25.440000pt;}
.y29_c00307{bottom:34.506667pt;}
.y50_c00307{bottom:41.306667pt;}
.y4f_c00307{bottom:58.106667pt;}
.y28_c00307{bottom:72.506667pt;}
.y4e_c00307{bottom:73.840000pt;}
.y27_c00307{bottom:88.106667pt;}
.y4d_c00307{bottom:90.506667pt;}
.y26_c00307{bottom:105.040000pt;}
.y4c_c00307{bottom:106.240000pt;}
.y25_c00307{bottom:121.840000pt;}
.y4b_c00307{bottom:122.640000pt;}
.y24_c00307{bottom:138.240000pt;}
.y4a_c00307{bottom:139.440000pt;}
.y23_c00307{bottom:154.106667pt;}
.y49_c00307{bottom:155.440000pt;}
.y22_c00307{bottom:170.906667pt;}
.y48_c00307{bottom:171.573333pt;}
.y21_c00307{bottom:186.906667pt;}
.y47_c00307{bottom:187.440000pt;}
.y20_c00307{bottom:202.773333pt;}
.y46_c00307{bottom:204.640000pt;}
.y1f_c00307{bottom:219.040000pt;}
.y45_c00307{bottom:220.240000pt;}
.y1e_c00307{bottom:235.706667pt;}
.y44_c00307{bottom:236.906667pt;}
.y1d_c00307{bottom:251.040000pt;}
.y43_c00307{bottom:253.440000pt;}
.y1c_c00307{bottom:267.573333pt;}
.y42_c00307{bottom:269.440000pt;}
.y1b_c00307{bottom:284.106667pt;}
.y41_c00307{bottom:285.306667pt;}
.y1a_c00307{bottom:300.640000pt;}
.y40_c00307{bottom:301.840000pt;}
.y19_c00307{bottom:316.240000pt;}
.y3f_c00307{bottom:317.973333pt;}
.y18_c00307{bottom:332.640000pt;}
.y3e_c00307{bottom:334.106667pt;}
.y17_c00307{bottom:348.640000pt;}
.y3d_c00307{bottom:350.106667pt;}
.y16_c00307{bottom:363.840000pt;}
.y3c_c00307{bottom:366.240000pt;}
.y15_c00307{bottom:380.906667pt;}
.y3b_c00307{bottom:382.773333pt;}
.y14_c00307{bottom:396.906667pt;}
.y3a_c00307{bottom:399.040000pt;}
.y13_c00307{bottom:413.040000pt;}
.y39_c00307{bottom:415.173333pt;}
.y12_c00307{bottom:429.040000pt;}
.y38_c00307{bottom:431.706667pt;}
.y11_c00307{bottom:445.840000pt;}
.y53_c00307{bottom:446.106667pt;}
.y37_c00307{bottom:447.840000pt;}
.y10_c00307{bottom:462.106667pt;}
.y52_c00307{bottom:462.906667pt;}
.y36_c00307{bottom:463.840000pt;}
.yf_c00307{bottom:478.240000pt;}
.y35_c00307{bottom:479.706667pt;}
.ye_c00307{bottom:494.373333pt;}
.y34_c00307{bottom:495.573333pt;}
.yd_c00307{bottom:510.906667pt;}
.y33_c00307{bottom:512.106667pt;}
.yc_c00307{bottom:526.773333pt;}
.y32_c00307{bottom:528.240000pt;}
.yb_c00307{bottom:543.840000pt;}
.y31_c00307{bottom:544.506667pt;}
.y2f_c00307{bottom:553.173333pt;}
.ya_c00307{bottom:559.173333pt;}
.y30_c00307{bottom:560.640000pt;}
.y9_c00307{bottom:575.706667pt;}
.y8_c00307{bottom:591.573333pt;}
.y7_c00307{bottom:608.906667pt;}
.y2e_c00307{bottom:609.573333pt;}
.y6_c00307{bottom:624.506667pt;}
.y2d_c00307{bottom:625.840000pt;}
.y5_c00307{bottom:640.506667pt;}
.y2c_c00307{bottom:642.240000pt;}
.y4_c00307{bottom:656.373333pt;}
.y3_c00307{bottom:673.440000pt;}
.y2b_c00307{bottom:674.906667pt;}
.y2_c00307{bottom:691.706667pt;}
.y1_c00307{bottom:707.306667pt;}
.y2a_c00307{bottom:710.906667pt;}
.h9_c00307{height:11.733399pt;}
.ha_c00307{height:38.937500pt;}
.h4_c00307{height:55.893333pt;}
.h2_c00307{height:56.906667pt;}
.h3_c00307{height:64.277333pt;}
.h6_c00307{height:75.456000pt;}
.h5_c00307{height:78.476562pt;}
.h7_c00307{height:80.938667pt;}
.h8_c00307{height:199.173333pt;}
.h1_c00307{height:744.666667pt;}
.h0_c00307{height:744.933333pt;}
.w2_c00307{width:93.222667pt;}
.w0_c00307{width:499.200000pt;}
.w1_c00307{width:499.333333pt;}
.x0_c00307{left:0.000000pt;}
.x5_c00307{left:80.133333pt;}
.x4_c00307{left:81.600000pt;}
.x3_c00307{left:82.533333pt;}
.x2_c00307{left:83.600000pt;}
.x1_c00307{left:86.666667pt;}
.x6_c00307{left:90.000000pt;}
.x7_c00307{left:103.866667pt;}
.x8_c00307{left:117.333333pt;}
.x9_c00307{left:144.933333pt;}
.x16_c00307{left:206.768229pt;}
.x12_c00307{left:272.800000pt;}
.x13_c00307{left:274.800000pt;}
.x11_c00307{left:275.733333pt;}
.xc_c00307{left:277.200000pt;}
.xa_c00307{left:281.466667pt;}
.xd_c00307{left:286.800000pt;}
.x10_c00307{left:303.066667pt;}
.xf_c00307{left:305.200000pt;}
.xe_c00307{left:316.000000pt;}
.xb_c00307{left:340.533333pt;}
.x14_c00307{left:372.266667pt;}
.x15_c00307{left:453.333333pt;}
}





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

.ir_c00308:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00308{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00308;src:url('chunks/assets/font_c65a1f24c66f17ada54b7916.woff2')format("woff");}.ff1_c00308{font-family:ff1_c00308;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00308;src:url('chunks/assets/font_155d1e58fb80ed898925022b.woff2')format("woff");}.ff2_c00308{font-family:ff2_c00308;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00308;src:url('chunks/assets/font_6606024d9e74c63477292057.woff2')format("woff");}.ff3_c00308{font-family:ff3_c00308;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00308;src:url('chunks/assets/font_8df646192cacd7c630ebcc35.woff2')format("woff");}.ff4_c00308{font-family:ff4_c00308;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00308;src:url('chunks/assets/font_3996fc535ada9783ed718a74.woff2')format("woff");}.ff5_c00308{font-family:ff5_c00308;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00308;src:url('chunks/assets/font_7164f7fc20c479aacf7b7c04.woff2')format("woff");}.ff6_c00308{font-family:ff6_c00308;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00308;src:url('chunks/assets/font_12af980173ee7caa34bae52f.woff2')format("woff");}.ff7_c00308{font-family:ff7_c00308;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00308;src:url('chunks/assets/font_3f87c50ba3ca0dd69fb87f99.woff2')format("woff");}.ff8_c00308{font-family:ff8_c00308;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00308;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff9_c00308{font-family:ff9_c00308;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00308{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00308{vertical-align:0.000000px;}
.ls7_c00308{letter-spacing:0.000000px;}
.ls6_c00308{letter-spacing:0.840000px;}
.ls0_c00308{letter-spacing:3.000000px;}
.ls3_c00308{letter-spacing:3.240000px;}
.ls1_c00308{letter-spacing:3.678000px;}
.ls2_c00308{letter-spacing:6.405000px;}
.ls4_c00308{letter-spacing:14.700000px;}
.ls5_c00308{letter-spacing:53.577000px;}
.sc__c00308{text-shadow:none;}
.sc0_c00308{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00308{-webkit-text-stroke:0px transparent;}
.sc0_c00308{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00308{word-spacing:-20.340000px;}
.ws3_c00308{word-spacing:-17.319000px;}
.ws1_c00308{word-spacing:-14.160000px;}
.ws2_c00308{word-spacing:-13.623000px;}
.ws4_c00308{word-spacing:0.000000px;}
._19_c00308{margin-left:-17.940000px;}
._1f_c00308{margin-left:-12.540000px;}
._11_c00308{margin-left:-10.020000px;}
._e_c00308{margin-left:-8.700000px;}
._f_c00308{margin-left:-7.200000px;}
._10_c00308{margin-left:-5.820000px;}
._c_c00308{margin-left:-4.500000px;}
._b_c00308{margin-left:-3.240000px;}
._a_c00308{margin-left:-1.800000px;}
._8_c00308{width:1.140000px;}
._6_c00308{width:2.820000px;}
._5_c00308{width:4.200000px;}
._4_c00308{width:5.460000px;}
._17_c00308{width:6.600000px;}
._13_c00308{width:7.680000px;}
._14_c00308{width:9.120000px;}
._1_c00308{width:10.980000px;}
._d_c00308{width:12.240000px;}
._0_c00308{width:13.740000px;}
._12_c00308{width:14.880000px;}
._18_c00308{width:16.320000px;}
._3_c00308{width:19.260000px;}
._16_c00308{width:21.180000px;}
._26_c00308{width:22.194000px;}
._9_c00308{width:23.580000px;}
._1a_c00308{width:24.900000px;}
._1d_c00308{width:26.700000px;}
._15_c00308{width:28.620000px;}
._21_c00308{width:30.780000px;}
._7_c00308{width:33.840000px;}
._1c_c00308{width:35.640000px;}
._2c_c00308{width:36.780000px;}
._2b_c00308{width:39.060000px;}
._2a_c00308{width:41.640000px;}
._2_c00308{width:43.440000px;}
._20_c00308{width:45.000000px;}
._2d_c00308{width:46.200000px;}
._28_c00308{width:47.880000px;}
._23_c00308{width:50.220000px;}
._24_c00308{width:51.270000px;}
._29_c00308{width:52.680000px;}
._27_c00308{width:76.164000px;}
._1e_c00308{width:110.880000px;}
._1b_c00308{width:231.900000px;}
._22_c00308{width:245.784000px;}
._25_c00308{width:279.618000px;}
.fc2_c00308{color:transparent;}
.fc1_c00308{color:rgb(128,128,128);}
.fc0_c00308{color:rgb(0,0,0);}
.fs3_c00308{font-size:45.000000px;}
.fs6_c00308{font-size:48.000000px;}
.fs2_c00308{font-size:51.000000px;}
.fs4_c00308{font-size:54.000000px;}
.fs1_c00308{font-size:57.000000px;}
.fs0_c00308{font-size:60.000000px;}
.fs5_c00308{font-size:69.000000px;}
.y0_c00308{bottom:0.000000px;}
.y54_c00308{bottom:3.105000px;}
.y53_c00308{bottom:7.228357px;}
.y52_c00308{bottom:39.930000px;}
.y51_c00308{bottom:59.130000px;}
.y2a_c00308{bottom:61.080000px;}
.y50_c00308{bottom:77.730000px;}
.y29_c00308{bottom:80.730000px;}
.y4f_c00308{bottom:95.880000px;}
.y28_c00308{bottom:98.580000px;}
.y4e_c00308{bottom:114.480000px;}
.y27_c00308{bottom:117.180000px;}
.y4d_c00308{bottom:132.630000px;}
.y26_c00308{bottom:133.980000px;}
.y4c_c00308{bottom:150.630000px;}
.y25_c00308{bottom:153.330000px;}
.y4b_c00308{bottom:168.780000px;}
.y24_c00308{bottom:171.480000px;}
.y4a_c00308{bottom:186.930000px;}
.y23_c00308{bottom:189.330000px;}
.y49_c00308{bottom:204.930000px;}
.y22_c00308{bottom:207.630000px;}
.y48_c00308{bottom:222.780000px;}
.y21_c00308{bottom:225.480000px;}
.y47_c00308{bottom:241.680000px;}
.y20_c00308{bottom:243.330000px;}
.y46_c00308{bottom:259.530000px;}
.y1f_c00308{bottom:261.330000px;}
.y45_c00308{bottom:277.830000px;}
.y1e_c00308{bottom:280.080000px;}
.y44_c00308{bottom:295.680000px;}
.y1d_c00308{bottom:297.330000px;}
.y43_c00308{bottom:313.230000px;}
.y1c_c00308{bottom:316.230000px;}
.y42_c00308{bottom:331.380000px;}
.y1b_c00308{bottom:333.480000px;}
.y41_c00308{bottom:349.980000px;}
.y1a_c00308{bottom:350.730000px;}
.y40_c00308{bottom:367.830000px;}
.y19_c00308{bottom:369.330000px;}
.y3f_c00308{bottom:385.830000px;}
.y18_c00308{bottom:387.480000px;}
.y3e_c00308{bottom:404.280000px;}
.y17_c00308{bottom:405.780000px;}
.y3d_c00308{bottom:421.980000px;}
.y16_c00308{bottom:423.630000px;}
.y3c_c00308{bottom:439.380000px;}
.y15_c00308{bottom:443.430000px;}
.y3b_c00308{bottom:458.430000px;}
.y14_c00308{bottom:459.030000px;}
.y3a_c00308{bottom:476.580000px;}
.y13_c00308{bottom:477.330000px;}
.y39_c00308{bottom:494.430000px;}
.y12_c00308{bottom:495.480000px;}
.y38_c00308{bottom:512.430000px;}
.y11_c00308{bottom:513.630000px;}
.y37_c00308{bottom:530.280000px;}
.y10_c00308{bottom:531.630000px;}
.y36_c00308{bottom:548.880000px;}
.yf_c00308{bottom:549.480000px;}
.y35_c00308{bottom:567.030000px;}
.ye_c00308{bottom:568.080000px;}
.y34_c00308{bottom:584.580000px;}
.yd_c00308{bottom:585.930000px;}
.yc_c00308{bottom:602.130000px;}
.y33_c00308{bottom:602.430000px;}
.y32_c00308{bottom:621.030000px;}
.yb_c00308{bottom:621.780000px;}
.y31_c00308{bottom:639.180000px;}
.ya_c00308{bottom:639.330000px;}
.y9_c00308{bottom:656.880000px;}
.y30_c00308{bottom:657.180000px;}
.y8_c00308{bottom:675.030000px;}
.y2f_c00308{bottom:675.630000px;}
.y2e_c00308{bottom:692.880000px;}
.y7_c00308{bottom:694.530000px;}
.y6_c00308{bottom:712.230000px;}
.y5_c00308{bottom:729.780000px;}
.y2d_c00308{bottom:730.680000px;}
.y4_c00308{bottom:747.930000px;}
.y2c_c00308{bottom:748.680000px;}
.y3_c00308{bottom:766.530000px;}
.y2_c00308{bottom:784.380000px;}
.y2b_c00308{bottom:785.130000px;}
.y1_c00308{bottom:805.380000px;}
.h8_c00308{height:13.200074px;}
.h9_c00308{height:43.804688px;}
.h6_c00308{height:52.971680px;}
.h4_c00308{height:52.998047px;}
.h5_c00308{height:59.736000px;}
.h2_c00308{height:62.880000px;}
.h3_c00308{height:64.020000px;}
.h7_c00308{height:72.312000px;}
.h1_c00308{height:838.500000px;}
.h0_c00308{height:838.650000px;}
.w2_c00308{width:104.875500px;}
.w1_c00308{width:583.500000px;}
.w0_c00308{width:583.725000px;}
.x0_c00308{left:0.000000px;}
.x9_c00308{left:23.400000px;}
.xa_c00308{left:43.500000px;}
.x4_c00308{left:79.650000px;}
.x2_c00308{left:80.700000px;}
.x7_c00308{left:82.050000px;}
.x8_c00308{left:83.700000px;}
.x6_c00308{left:114.750000px;}
.x5_c00308{left:165.750000px;}
.x1_c00308{left:201.600000px;}
.x3_c00308{left:223.050000px;}
.x14_c00308{left:243.676758px;}
.x12_c00308{left:286.950000px;}
.xb_c00308{left:290.550000px;}
.xc_c00308{left:292.350000px;}
.xd_c00308{left:293.400000px;}
.xf_c00308{left:294.750000px;}
.x10_c00308{left:296.400000px;}
.xe_c00308{left:318.600000px;}
.x11_c00308{left:321.750000px;}
.x13_c00308{left:464.850000px;}
@media print{
.v0_c00308{vertical-align:0.000000pt;}
.ls7_c00308{letter-spacing:0.000000pt;}
.ls6_c00308{letter-spacing:0.746667pt;}
.ls0_c00308{letter-spacing:2.666667pt;}
.ls3_c00308{letter-spacing:2.880000pt;}
.ls1_c00308{letter-spacing:3.269333pt;}
.ls2_c00308{letter-spacing:5.693333pt;}
.ls4_c00308{letter-spacing:13.066667pt;}
.ls5_c00308{letter-spacing:47.624000pt;}
.ws0_c00308{word-spacing:-18.080000pt;}
.ws3_c00308{word-spacing:-15.394667pt;}
.ws1_c00308{word-spacing:-12.586667pt;}
.ws2_c00308{word-spacing:-12.109333pt;}
.ws4_c00308{word-spacing:0.000000pt;}
._19_c00308{margin-left:-15.946667pt;}
._1f_c00308{margin-left:-11.146667pt;}
._11_c00308{margin-left:-8.906667pt;}
._e_c00308{margin-left:-7.733333pt;}
._f_c00308{margin-left:-6.400000pt;}
._10_c00308{margin-left:-5.173333pt;}
._c_c00308{margin-left:-4.000000pt;}
._b_c00308{margin-left:-2.880000pt;}
._a_c00308{margin-left:-1.600000pt;}
._8_c00308{width:1.013333pt;}
._6_c00308{width:2.506667pt;}
._5_c00308{width:3.733333pt;}
._4_c00308{width:4.853333pt;}
._17_c00308{width:5.866667pt;}
._13_c00308{width:6.826667pt;}
._14_c00308{width:8.106667pt;}
._1_c00308{width:9.760000pt;}
._d_c00308{width:10.880000pt;}
._0_c00308{width:12.213333pt;}
._12_c00308{width:13.226667pt;}
._18_c00308{width:14.506667pt;}
._3_c00308{width:17.120000pt;}
._16_c00308{width:18.826667pt;}
._26_c00308{width:19.728000pt;}
._9_c00308{width:20.960000pt;}
._1a_c00308{width:22.133333pt;}
._1d_c00308{width:23.733333pt;}
._15_c00308{width:25.440000pt;}
._21_c00308{width:27.360000pt;}
._7_c00308{width:30.080000pt;}
._1c_c00308{width:31.680000pt;}
._2c_c00308{width:32.693333pt;}
._2b_c00308{width:34.720000pt;}
._2a_c00308{width:37.013333pt;}
._2_c00308{width:38.613333pt;}
._20_c00308{width:40.000000pt;}
._2d_c00308{width:41.066667pt;}
._28_c00308{width:42.560000pt;}
._23_c00308{width:44.640000pt;}
._24_c00308{width:45.573333pt;}
._29_c00308{width:46.826667pt;}
._27_c00308{width:67.701333pt;}
._1e_c00308{width:98.560000pt;}
._1b_c00308{width:206.133333pt;}
._22_c00308{width:218.474667pt;}
._25_c00308{width:248.549333pt;}
.fs3_c00308{font-size:40.000000pt;}
.fs6_c00308{font-size:42.666667pt;}
.fs2_c00308{font-size:45.333333pt;}
.fs4_c00308{font-size:48.000000pt;}
.fs1_c00308{font-size:50.666667pt;}
.fs0_c00308{font-size:53.333333pt;}
.fs5_c00308{font-size:61.333333pt;}
.y0_c00308{bottom:0.000000pt;}
.y54_c00308{bottom:2.760000pt;}
.y53_c00308{bottom:6.425206pt;}
.y52_c00308{bottom:35.493333pt;}
.y51_c00308{bottom:52.560000pt;}
.y2a_c00308{bottom:54.293333pt;}
.y50_c00308{bottom:69.093333pt;}
.y29_c00308{bottom:71.760000pt;}
.y4f_c00308{bottom:85.226667pt;}
.y28_c00308{bottom:87.626667pt;}
.y4e_c00308{bottom:101.760000pt;}
.y27_c00308{bottom:104.160000pt;}
.y4d_c00308{bottom:117.893333pt;}
.y26_c00308{bottom:119.093333pt;}
.y4c_c00308{bottom:133.893333pt;}
.y25_c00308{bottom:136.293333pt;}
.y4b_c00308{bottom:150.026667pt;}
.y24_c00308{bottom:152.426667pt;}
.y4a_c00308{bottom:166.160000pt;}
.y23_c00308{bottom:168.293333pt;}
.y49_c00308{bottom:182.160000pt;}
.y22_c00308{bottom:184.560000pt;}
.y48_c00308{bottom:198.026667pt;}
.y21_c00308{bottom:200.426667pt;}
.y47_c00308{bottom:214.826667pt;}
.y20_c00308{bottom:216.293333pt;}
.y46_c00308{bottom:230.693333pt;}
.y1f_c00308{bottom:232.293333pt;}
.y45_c00308{bottom:246.960000pt;}
.y1e_c00308{bottom:248.960000pt;}
.y44_c00308{bottom:262.826667pt;}
.y1d_c00308{bottom:264.293333pt;}
.y43_c00308{bottom:278.426667pt;}
.y1c_c00308{bottom:281.093333pt;}
.y42_c00308{bottom:294.560000pt;}
.y1b_c00308{bottom:296.426667pt;}
.y41_c00308{bottom:311.093333pt;}
.y1a_c00308{bottom:311.760000pt;}
.y40_c00308{bottom:326.960000pt;}
.y19_c00308{bottom:328.293333pt;}
.y3f_c00308{bottom:342.960000pt;}
.y18_c00308{bottom:344.426667pt;}
.y3e_c00308{bottom:359.360000pt;}
.y17_c00308{bottom:360.693333pt;}
.y3d_c00308{bottom:375.093333pt;}
.y16_c00308{bottom:376.560000pt;}
.y3c_c00308{bottom:390.560000pt;}
.y15_c00308{bottom:394.160000pt;}
.y3b_c00308{bottom:407.493333pt;}
.y14_c00308{bottom:408.026667pt;}
.y3a_c00308{bottom:423.626667pt;}
.y13_c00308{bottom:424.293333pt;}
.y39_c00308{bottom:439.493333pt;}
.y12_c00308{bottom:440.426667pt;}
.y38_c00308{bottom:455.493333pt;}
.y11_c00308{bottom:456.560000pt;}
.y37_c00308{bottom:471.360000pt;}
.y10_c00308{bottom:472.560000pt;}
.y36_c00308{bottom:487.893333pt;}
.yf_c00308{bottom:488.426667pt;}
.y35_c00308{bottom:504.026667pt;}
.ye_c00308{bottom:504.960000pt;}
.y34_c00308{bottom:519.626667pt;}
.yd_c00308{bottom:520.826667pt;}
.yc_c00308{bottom:535.226667pt;}
.y33_c00308{bottom:535.493333pt;}
.y32_c00308{bottom:552.026667pt;}
.yb_c00308{bottom:552.693333pt;}
.y31_c00308{bottom:568.160000pt;}
.ya_c00308{bottom:568.293333pt;}
.y9_c00308{bottom:583.893333pt;}
.y30_c00308{bottom:584.160000pt;}
.y8_c00308{bottom:600.026667pt;}
.y2f_c00308{bottom:600.560000pt;}
.y2e_c00308{bottom:615.893333pt;}
.y7_c00308{bottom:617.360000pt;}
.y6_c00308{bottom:633.093333pt;}
.y5_c00308{bottom:648.693333pt;}
.y2d_c00308{bottom:649.493333pt;}
.y4_c00308{bottom:664.826667pt;}
.y2c_c00308{bottom:665.493333pt;}
.y3_c00308{bottom:681.360000pt;}
.y2_c00308{bottom:697.226667pt;}
.y2b_c00308{bottom:697.893333pt;}
.y1_c00308{bottom:715.893333pt;}
.h8_c00308{height:11.733399pt;}
.h9_c00308{height:38.937500pt;}
.h6_c00308{height:47.085938pt;}
.h4_c00308{height:47.109375pt;}
.h5_c00308{height:53.098667pt;}
.h2_c00308{height:55.893333pt;}
.h3_c00308{height:56.906667pt;}
.h7_c00308{height:64.277333pt;}
.h1_c00308{height:745.333333pt;}
.h0_c00308{height:745.466667pt;}
.w2_c00308{width:93.222667pt;}
.w1_c00308{width:518.666667pt;}
.w0_c00308{width:518.866667pt;}
.x0_c00308{left:0.000000pt;}
.x9_c00308{left:20.800000pt;}
.xa_c00308{left:38.666667pt;}
.x4_c00308{left:70.800000pt;}
.x2_c00308{left:71.733333pt;}
.x7_c00308{left:72.933333pt;}
.x8_c00308{left:74.400000pt;}
.x6_c00308{left:102.000000pt;}
.x5_c00308{left:147.333333pt;}
.x1_c00308{left:179.200000pt;}
.x3_c00308{left:198.266667pt;}
.x14_c00308{left:216.601563pt;}
.x12_c00308{left:255.066667pt;}
.xb_c00308{left:258.266667pt;}
.xc_c00308{left:259.866667pt;}
.xd_c00308{left:260.800000pt;}
.xf_c00308{left:262.000000pt;}
.x10_c00308{left:263.466667pt;}
.xe_c00308{left:283.200000pt;}
.x11_c00308{left:286.000000pt;}
.x13_c00308{left:413.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_c00309 {
    display:none;
  }
  .loading-indicator_c00309.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00309 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00309 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00309" -> "#page-container .classname_c00309")
 */
.pf_c00309 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00309 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00309.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00309 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00309 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00309 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00309 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00309 {overflow:visible;}
  }
}
.c_c00309 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00309 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00309:after { /* webkit #35443 */
  content: '';
}
.t_c00309:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00309 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00309 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00309 { /* info for Javascript */
  display:none;
}
.l_c00309 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00309 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00309 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00309:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00309{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00309;src:url('chunks/assets/font_43397b6a308f27b5f76b658e.woff2')format("woff");}.ff1_c00309{font-family:ff1_c00309;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00309;src:url('chunks/assets/font_40a2b1fea3b4bd21ab0ef839.woff2')format("woff");}.ff2_c00309{font-family:ff2_c00309;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00309;src:url('chunks/assets/font_52adc402afe8187b64892d5f.woff2')format("woff");}.ff3_c00309{font-family:ff3_c00309;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00309;src:url('chunks/assets/font_03910153b3aa7df29bea8a5d.woff2')format("woff");}.ff4_c00309{font-family:ff4_c00309;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00309;src:url('chunks/assets/font_c91b90aaf0db6fea11bcba12.woff2')format("woff");}.ff5_c00309{font-family:ff5_c00309;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00309;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff6_c00309{font-family:ff6_c00309;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00309{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00309{vertical-align:0.000000px;}
.v1_c00309{vertical-align:13.800000px;}
.lsb_c00309{letter-spacing:0.000000px;}
.ls6_c00309{letter-spacing:2.400000px;}
.ls5_c00309{letter-spacing:3.000000px;}
.ls2_c00309{letter-spacing:3.600000px;}
.ls1_c00309{letter-spacing:5.400000px;}
.ls4_c00309{letter-spacing:7.200000px;}
.lsa_c00309{letter-spacing:9.000000px;}
.ls0_c00309{letter-spacing:9.720000px;}
.ls9_c00309{letter-spacing:12.405000px;}
.ls7_c00309{letter-spacing:14.940000px;}
.lsc_c00309{letter-spacing:15.000000px;}
.ls3_c00309{letter-spacing:15.600000px;}
.ls8_c00309{letter-spacing:115.740000px;}
.sc__c00309{text-shadow:none;}
.sc0_c00309{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00309{-webkit-text-stroke:0px transparent;}
.sc0_c00309{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00309{word-spacing:-29.295000px;}
.ws0_c00309{word-spacing:-24.780000px;}
.ws7_c00309{word-spacing:-23.160000px;}
.ws3_c00309{word-spacing:-18.060000px;}
.ws6_c00309{word-spacing:-16.284000px;}
.ws1_c00309{word-spacing:-14.160000px;}
.ws8_c00309{word-spacing:0.000000px;}
.ws4_c00309{word-spacing:0.420000px;}
.ws5_c00309{word-spacing:79.140000px;}
._e_c00309{margin-left:-28.602000px;}
._f_c00309{margin-left:-22.020000px;}
._28_c00309{margin-left:-15.042000px;}
._7_c00309{margin-left:-12.165000px;}
._0_c00309{margin-left:-10.203000px;}
._3_c00309{margin-left:-8.835000px;}
._23_c00309{margin-left:-7.794000px;}
._b_c00309{margin-left:-6.642000px;}
._4_c00309{margin-left:-5.484000px;}
._1_c00309{margin-left:-4.275000px;}
._26_c00309{margin-left:-3.234000px;}
._2_c00309{margin-left:-2.223000px;}
._14_c00309{margin-left:-1.080000px;}
._5_c00309{width:1.470000px;}
._8_c00309{width:3.078000px;}
._a_c00309{width:4.320000px;}
._c_c00309{width:5.883000px;}
._9_c00309{width:7.422000px;}
._24_c00309{width:8.580000px;}
._19_c00309{width:9.717000px;}
._22_c00309{width:10.908000px;}
._6_c00309{width:12.198000px;}
._d_c00309{width:13.875000px;}
._1d_c00309{width:14.877000px;}
._13_c00309{width:15.996000px;}
._1b_c00309{width:17.010000px;}
._27_c00309{width:18.906000px;}
._12_c00309{width:20.148000px;}
._1f_c00309{width:21.642000px;}
._15_c00309{width:24.882000px;}
._16_c00309{width:26.280000px;}
._18_c00309{width:29.160000px;}
._10_c00309{width:30.528000px;}
._25_c00309{width:32.670000px;}
._11_c00309{width:35.955000px;}
._17_c00309{width:39.444000px;}
._1a_c00309{width:48.567000px;}
._20_c00309{width:50.802000px;}
._1c_c00309{width:52.665000px;}
._21_c00309{width:137.460000px;}
._1e_c00309{width:215.040000px;}
.fc2_c00309{color:transparent;}
.fc1_c00309{color:rgb(128,128,128);}
.fc0_c00309{color:rgb(0,0,0);}
.fs2_c00309{font-size:45.000000px;}
.fs5_c00309{font-size:48.000000px;}
.fs0_c00309{font-size:57.000000px;}
.fs1_c00309{font-size:60.000000px;}
.fs3_c00309{font-size:63.000000px;}
.fs4_c00309{font-size:69.000000px;}
.y0_c00309{bottom:0.000000px;}
.y4a_c00309{bottom:3.105000px;}
.y49_c00309{bottom:7.228363px;}
.y48_c00309{bottom:37.800000px;}
.y47_c00309{bottom:55.650000px;}
.y29_c00309{bottom:55.800000px;}
.y46_c00309{bottom:74.250000px;}
.y28_c00309{bottom:74.700000px;}
.y45_c00309{bottom:92.250000px;}
.y27_c00309{bottom:93.150000px;}
.y26_c00309{bottom:110.700000px;}
.y44_c00309{bottom:111.000000px;}
.y43_c00309{bottom:128.700000px;}
.y25_c00309{bottom:129.000000px;}
.y42_c00309{bottom:147.150000px;}
.y24_c00309{bottom:147.450000px;}
.y23_c00309{bottom:165.450000px;}
.y22_c00309{bottom:183.600000px;}
.y21_c00309{bottom:201.600000px;}
.y41_c00309{bottom:202.200000px;}
.y20_c00309{bottom:219.750000px;}
.y40_c00309{bottom:220.350000px;}
.y3f_c00309{bottom:237.600000px;}
.y1f_c00309{bottom:238.050000px;}
.y3e_c00309{bottom:256.200000px;}
.y1e_c00309{bottom:256.500000px;}
.y3d_c00309{bottom:273.750000px;}
.y1d_c00309{bottom:274.350000px;}
.y3c_c00309{bottom:288.900000px;}
.y1c_c00309{bottom:292.650000px;}
.y1b_c00309{bottom:310.950000px;}
.y1a_c00309{bottom:328.800000px;}
.y3b_c00309{bottom:346.950000px;}
.y19_c00309{bottom:347.250000px;}
.y3a_c00309{bottom:365.250000px;}
.y18_c00309{bottom:365.550000px;}
.y17_c00309{bottom:383.400000px;}
.y39_c00309{bottom:400.650000px;}
.y16_c00309{bottom:402.300000px;}
.y15_c00309{bottom:419.850000px;}
.y38_c00309{bottom:437.400000px;}
.y14_c00309{bottom:438.450000px;}
.y37_c00309{bottom:455.700000px;}
.y13_c00309{bottom:456.000000px;}
.y12_c00309{bottom:474.300000px;}
.y11_c00309{bottom:492.450000px;}
.y10_c00309{bottom:510.750000px;}
.y36_c00309{bottom:528.600000px;}
.yf_c00309{bottom:529.200000px;}
.ye_c00309{bottom:547.050000px;}
.y35_c00309{bottom:547.200000px;}
.y34_c00309{bottom:565.050000px;}
.yd_c00309{bottom:565.650000px;}
.yc_c00309{bottom:583.500000px;}
.y33_c00309{bottom:583.650000px;}
.yb_c00309{bottom:601.500000px;}
.y32_c00309{bottom:601.800000px;}
.ya_c00309{bottom:619.950000px;}
.y31_c00309{bottom:620.100000px;}
.y9_c00309{bottom:638.550000px;}
.y30_c00309{bottom:656.850000px;}
.y8_c00309{bottom:657.750000px;}
.y2f_c00309{bottom:674.400000px;}
.y7_c00309{bottom:674.700000px;}
.y6_c00309{bottom:693.300000px;}
.y2e_c00309{bottom:709.200000px;}
.y5_c00309{bottom:710.550000px;}
.y4_c00309{bottom:729.750000px;}
.y2d_c00309{bottom:729.900000px;}
.y3_c00309{bottom:747.600000px;}
.y2c_c00309{bottom:748.200000px;}
.y2_c00309{bottom:765.750000px;}
.y2b_c00309{bottom:766.500000px;}
.y1_c00309{bottom:784.950000px;}
.y2a_c00309{bottom:785.100000px;}
.h6_c00309{height:13.200074px;}
.h7_c00309{height:43.804688px;}
.h1_c00309{height:62.880000px;}
.h2_c00309{height:64.020000px;}
.h3_c00309{height:66.024000px;}
.h4_c00309{height:72.312000px;}
.h5_c00309{height:76.680000px;}
.h0_c00309{height:843.750000px;}
.w2_c00309{width:104.875500px;}
.w1_c00309{width:565.500000px;}
.w0_c00309{width:565.650000px;}
.x0_c00309{left:0.000000px;}
.x8_c00309{left:19.200000px;}
.x7_c00309{left:26.700000px;}
.x9_c00309{left:43.500000px;}
.x6_c00309{left:63.150000px;}
.x5_c00309{left:76.050000px;}
.xa_c00309{left:80.400000px;}
.x4_c00309{left:82.350000px;}
.x2_c00309{left:84.000000px;}
.x3_c00309{left:85.050000px;}
.x1_c00309{left:87.450000px;}
.x17_c00309{left:234.639267px;}
.x15_c00309{left:292.950000px;}
.x14_c00309{left:294.600000px;}
.x12_c00309{left:295.650000px;}
.x10_c00309{left:297.750000px;}
.xe_c00309{left:298.800000px;}
.xc_c00309{left:300.150000px;}
.xb_c00309{left:301.500000px;}
.xd_c00309{left:302.850000px;}
.x11_c00309{left:326.100000px;}
.x13_c00309{left:337.800000px;}
.xf_c00309{left:363.900000px;}
.x16_c00309{left:454.500000px;}
@media print{
.v0_c00309{vertical-align:0.000000pt;}
.v1_c00309{vertical-align:12.266667pt;}
.lsb_c00309{letter-spacing:0.000000pt;}
.ls6_c00309{letter-spacing:2.133333pt;}
.ls5_c00309{letter-spacing:2.666667pt;}
.ls2_c00309{letter-spacing:3.200000pt;}
.ls1_c00309{letter-spacing:4.800000pt;}
.ls4_c00309{letter-spacing:6.400000pt;}
.lsa_c00309{letter-spacing:8.000000pt;}
.ls0_c00309{letter-spacing:8.640000pt;}
.ls9_c00309{letter-spacing:11.026667pt;}
.ls7_c00309{letter-spacing:13.280000pt;}
.lsc_c00309{letter-spacing:13.333333pt;}
.ls3_c00309{letter-spacing:13.866667pt;}
.ls8_c00309{letter-spacing:102.880000pt;}
.ws2_c00309{word-spacing:-26.040000pt;}
.ws0_c00309{word-spacing:-22.026667pt;}
.ws7_c00309{word-spacing:-20.586667pt;}
.ws3_c00309{word-spacing:-16.053333pt;}
.ws6_c00309{word-spacing:-14.474667pt;}
.ws1_c00309{word-spacing:-12.586667pt;}
.ws8_c00309{word-spacing:0.000000pt;}
.ws4_c00309{word-spacing:0.373333pt;}
.ws5_c00309{word-spacing:70.346667pt;}
._e_c00309{margin-left:-25.424000pt;}
._f_c00309{margin-left:-19.573333pt;}
._28_c00309{margin-left:-13.370667pt;}
._7_c00309{margin-left:-10.813333pt;}
._0_c00309{margin-left:-9.069333pt;}
._3_c00309{margin-left:-7.853333pt;}
._23_c00309{margin-left:-6.928000pt;}
._b_c00309{margin-left:-5.904000pt;}
._4_c00309{margin-left:-4.874667pt;}
._1_c00309{margin-left:-3.800000pt;}
._26_c00309{margin-left:-2.874667pt;}
._2_c00309{margin-left:-1.976000pt;}
._14_c00309{margin-left:-0.960000pt;}
._5_c00309{width:1.306667pt;}
._8_c00309{width:2.736000pt;}
._a_c00309{width:3.840000pt;}
._c_c00309{width:5.229333pt;}
._9_c00309{width:6.597333pt;}
._24_c00309{width:7.626667pt;}
._19_c00309{width:8.637333pt;}
._22_c00309{width:9.696000pt;}
._6_c00309{width:10.842667pt;}
._d_c00309{width:12.333333pt;}
._1d_c00309{width:13.224000pt;}
._13_c00309{width:14.218667pt;}
._1b_c00309{width:15.120000pt;}
._27_c00309{width:16.805333pt;}
._12_c00309{width:17.909333pt;}
._1f_c00309{width:19.237333pt;}
._15_c00309{width:22.117333pt;}
._16_c00309{width:23.360000pt;}
._18_c00309{width:25.920000pt;}
._10_c00309{width:27.136000pt;}
._25_c00309{width:29.040000pt;}
._11_c00309{width:31.960000pt;}
._17_c00309{width:35.061333pt;}
._1a_c00309{width:43.170667pt;}
._20_c00309{width:45.157333pt;}
._1c_c00309{width:46.813333pt;}
._21_c00309{width:122.186667pt;}
._1e_c00309{width:191.146667pt;}
.fs2_c00309{font-size:40.000000pt;}
.fs5_c00309{font-size:42.666667pt;}
.fs0_c00309{font-size:50.666667pt;}
.fs1_c00309{font-size:53.333333pt;}
.fs3_c00309{font-size:56.000000pt;}
.fs4_c00309{font-size:61.333333pt;}
.y0_c00309{bottom:0.000000pt;}
.y4a_c00309{bottom:2.760000pt;}
.y49_c00309{bottom:6.425212pt;}
.y48_c00309{bottom:33.600000pt;}
.y47_c00309{bottom:49.466667pt;}
.y29_c00309{bottom:49.600000pt;}
.y46_c00309{bottom:66.000000pt;}
.y28_c00309{bottom:66.400000pt;}
.y45_c00309{bottom:82.000000pt;}
.y27_c00309{bottom:82.800000pt;}
.y26_c00309{bottom:98.400000pt;}
.y44_c00309{bottom:98.666667pt;}
.y43_c00309{bottom:114.400000pt;}
.y25_c00309{bottom:114.666667pt;}
.y42_c00309{bottom:130.800000pt;}
.y24_c00309{bottom:131.066667pt;}
.y23_c00309{bottom:147.066667pt;}
.y22_c00309{bottom:163.200000pt;}
.y21_c00309{bottom:179.200000pt;}
.y41_c00309{bottom:179.733333pt;}
.y20_c00309{bottom:195.333333pt;}
.y40_c00309{bottom:195.866667pt;}
.y3f_c00309{bottom:211.200000pt;}
.y1f_c00309{bottom:211.600000pt;}
.y3e_c00309{bottom:227.733333pt;}
.y1e_c00309{bottom:228.000000pt;}
.y3d_c00309{bottom:243.333333pt;}
.y1d_c00309{bottom:243.866667pt;}
.y3c_c00309{bottom:256.800000pt;}
.y1c_c00309{bottom:260.133333pt;}
.y1b_c00309{bottom:276.400000pt;}
.y1a_c00309{bottom:292.266667pt;}
.y3b_c00309{bottom:308.400000pt;}
.y19_c00309{bottom:308.666667pt;}
.y3a_c00309{bottom:324.666667pt;}
.y18_c00309{bottom:324.933333pt;}
.y17_c00309{bottom:340.800000pt;}
.y39_c00309{bottom:356.133333pt;}
.y16_c00309{bottom:357.600000pt;}
.y15_c00309{bottom:373.200000pt;}
.y38_c00309{bottom:388.800000pt;}
.y14_c00309{bottom:389.733333pt;}
.y37_c00309{bottom:405.066667pt;}
.y13_c00309{bottom:405.333333pt;}
.y12_c00309{bottom:421.600000pt;}
.y11_c00309{bottom:437.733333pt;}
.y10_c00309{bottom:454.000000pt;}
.y36_c00309{bottom:469.866667pt;}
.yf_c00309{bottom:470.400000pt;}
.ye_c00309{bottom:486.266667pt;}
.y35_c00309{bottom:486.400000pt;}
.y34_c00309{bottom:502.266667pt;}
.yd_c00309{bottom:502.800000pt;}
.yc_c00309{bottom:518.666667pt;}
.y33_c00309{bottom:518.800000pt;}
.yb_c00309{bottom:534.666667pt;}
.y32_c00309{bottom:534.933333pt;}
.ya_c00309{bottom:551.066667pt;}
.y31_c00309{bottom:551.200000pt;}
.y9_c00309{bottom:567.600000pt;}
.y30_c00309{bottom:583.866667pt;}
.y8_c00309{bottom:584.666667pt;}
.y2f_c00309{bottom:599.466667pt;}
.y7_c00309{bottom:599.733333pt;}
.y6_c00309{bottom:616.266667pt;}
.y2e_c00309{bottom:630.400000pt;}
.y5_c00309{bottom:631.600000pt;}
.y4_c00309{bottom:648.666667pt;}
.y2d_c00309{bottom:648.800000pt;}
.y3_c00309{bottom:664.533333pt;}
.y2c_c00309{bottom:665.066667pt;}
.y2_c00309{bottom:680.666667pt;}
.y2b_c00309{bottom:681.333333pt;}
.y1_c00309{bottom:697.733333pt;}
.y2a_c00309{bottom:697.866667pt;}
.h6_c00309{height:11.733399pt;}
.h7_c00309{height:38.937500pt;}
.h1_c00309{height:55.893333pt;}
.h2_c00309{height:56.906667pt;}
.h3_c00309{height:58.688000pt;}
.h4_c00309{height:64.277333pt;}
.h5_c00309{height:68.160000pt;}
.h0_c00309{height:750.000000pt;}
.w2_c00309{width:93.222667pt;}
.w1_c00309{width:502.666667pt;}
.w0_c00309{width:502.800000pt;}
.x0_c00309{left:0.000000pt;}
.x8_c00309{left:17.066667pt;}
.x7_c00309{left:23.733333pt;}
.x9_c00309{left:38.666667pt;}
.x6_c00309{left:56.133333pt;}
.x5_c00309{left:67.600000pt;}
.xa_c00309{left:71.466667pt;}
.x4_c00309{left:73.200000pt;}
.x2_c00309{left:74.666667pt;}
.x3_c00309{left:75.600000pt;}
.x1_c00309{left:77.733333pt;}
.x17_c00309{left:208.568237pt;}
.x15_c00309{left:260.400000pt;}
.x14_c00309{left:261.866667pt;}
.x12_c00309{left:262.800000pt;}
.x10_c00309{left:264.666667pt;}
.xe_c00309{left:265.600000pt;}
.xc_c00309{left:266.800000pt;}
.xb_c00309{left:268.000000pt;}
.xd_c00309{left:269.200000pt;}
.x11_c00309{left:289.866667pt;}
.x13_c00309{left:300.266667pt;}
.xf_c00309{left:323.466667pt;}
.x16_c00309{left:404.000000pt;}
}





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

.ir_c00310:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00310{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00310;src:url('chunks/assets/font_736f2f0b209095223f51e5b4.woff2')format("woff");}.ff1_c00310{font-family:ff1_c00310;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00310;src:url('chunks/assets/font_ca448d6f1939befc0cf904d2.woff2')format("woff");}.ff2_c00310{font-family:ff2_c00310;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00310;src:url('chunks/assets/font_b5dbdf613d037a5cc4d39921.woff2')format("woff");}.ff3_c00310{font-family:ff3_c00310;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00310;src:url('chunks/assets/font_e09be507c3bf06bab7bc1e30.woff2')format("woff");}.ff4_c00310{font-family:ff4_c00310;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00310;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff5_c00310{font-family:ff5_c00310;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00310;src:url('chunks/assets/font_bfa182b6c5ff71812e95073d.woff2')format("woff");}.ff6_c00310{font-family:ff6_c00310;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00310;src:url('chunks/assets/font_5a27e1085e7da783f0ceda3d.woff2')format("woff");}.ff7_c00310{font-family:ff7_c00310;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00310;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff8_c00310{font-family:ff8_c00310;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00310{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00310{vertical-align:0.000000px;}
.ls8_c00310{letter-spacing:0.000000px;}
.ls2_c00310{letter-spacing:0.660000px;}
.ls1_c00310{letter-spacing:3.000000px;}
.ls6_c00310{letter-spacing:3.450000px;}
.lsa_c00310{letter-spacing:6.000000px;}
.ls5_c00310{letter-spacing:6.540000px;}
.ls7_c00310{letter-spacing:10.980000px;}
.ls0_c00310{letter-spacing:12.000000px;}
.ls9_c00310{letter-spacing:15.000000px;}
.ls4_c00310{letter-spacing:15.450000px;}
.ls3_c00310{letter-spacing:26.250000px;}
.sc__c00310{text-shadow:none;}
.sc0_c00310{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00310{-webkit-text-stroke:0px transparent;}
.sc0_c00310{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00310{word-spacing:-28.623000px;}
.ws7_c00310{word-spacing:-20.340000px;}
.ws2_c00310{word-spacing:-17.340000px;}
.ws4_c00310{word-spacing:-15.576000px;}
.ws0_c00310{word-spacing:-14.160000px;}
.ws3_c00310{word-spacing:-12.036000px;}
.ws8_c00310{word-spacing:0.000000px;}
.ws6_c00310{word-spacing:2.220000px;}
.ws5_c00310{word-spacing:6.000000px;}
._13_c00310{margin-left:-19.440000px;}
._f_c00310{margin-left:-16.260000px;}
._10_c00310{margin-left:-14.880000px;}
._28_c00310{margin-left:-12.738000px;}
._12_c00310{margin-left:-11.334000px;}
._11_c00310{margin-left:-10.218000px;}
._7_c00310{margin-left:-8.967000px;}
._e_c00310{margin-left:-7.953000px;}
._c_c00310{margin-left:-6.501000px;}
._6_c00310{margin-left:-4.500000px;}
._a_c00310{margin-left:-3.120000px;}
._3_c00310{margin-left:-1.800000px;}
._8_c00310{width:1.200000px;}
._0_c00310{width:3.087000px;}
._9_c00310{width:4.800000px;}
._2_c00310{width:6.426000px;}
._d_c00310{width:7.953000px;}
._5_c00310{width:9.780000px;}
._16_c00310{width:11.100000px;}
._4_c00310{width:12.180000px;}
._b_c00310{width:14.280000px;}
._21_c00310{width:15.555000px;}
._19_c00310{width:16.860000px;}
._22_c00310{width:18.321000px;}
._15_c00310{width:20.220000px;}
._1f_c00310{width:21.360000px;}
._14_c00310{width:22.620000px;}
._1c_c00310{width:24.573000px;}
._1e_c00310{width:26.139000px;}
._25_c00310{width:28.380000px;}
._1_c00310{width:29.421000px;}
._1a_c00310{width:31.026000px;}
._1b_c00310{width:36.882000px;}
._20_c00310{width:38.385000px;}
._1d_c00310{width:40.608000px;}
._26_c00310{width:41.640000px;}
._17_c00310{width:92.028000px;}
._23_c00310{width:94.788000px;}
._24_c00310{width:141.120000px;}
._18_c00310{width:221.466000px;}
._27_c00310{width:236.085000px;}
.fc2_c00310{color:transparent;}
.fc1_c00310{color:rgb(128,128,128);}
.fc0_c00310{color:rgb(0,0,0);}
.fs5_c00310{font-size:45.000000px;}
.fs7_c00310{font-size:48.000000px;}
.fs4_c00310{font-size:51.000000px;}
.fs2_c00310{font-size:57.000000px;}
.fs1_c00310{font-size:60.000000px;}
.fs0_c00310{font-size:63.000000px;}
.fs3_c00310{font-size:66.000000px;}
.fs6_c00310{font-size:72.000000px;}
.y0_c00310{bottom:0.000000px;}
.y56_c00310{bottom:3.105000px;}
.y55_c00310{bottom:7.228363px;}
.y54_c00310{bottom:34.800000px;}
.y53_c00310{bottom:54.300000px;}
.y2a_c00310{bottom:57.300000px;}
.y52_c00310{bottom:72.600000px;}
.y29_c00310{bottom:76.500000px;}
.y51_c00310{bottom:90.900000px;}
.y28_c00310{bottom:95.100000px;}
.y50_c00310{bottom:108.450000px;}
.y27_c00310{bottom:113.700000px;}
.y4f_c00310{bottom:127.200000px;}
.y26_c00310{bottom:130.650000px;}
.y4e_c00310{bottom:144.900000px;}
.y25_c00310{bottom:150.150000px;}
.y4d_c00310{bottom:161.700000px;}
.y24_c00310{bottom:167.700000px;}
.y4c_c00310{bottom:181.350000px;}
.y23_c00310{bottom:185.850000px;}
.y4b_c00310{bottom:199.200000px;}
.y22_c00310{bottom:202.200000px;}
.y4a_c00310{bottom:218.250000px;}
.y21_c00310{bottom:222.450000px;}
.y49_c00310{bottom:235.350000px;}
.y20_c00310{bottom:240.300000px;}
.y48_c00310{bottom:253.800000px;}
.y1f_c00310{bottom:258.450000px;}
.y47_c00310{bottom:272.100000px;}
.y1e_c00310{bottom:276.300000px;}
.y46_c00310{bottom:290.550000px;}
.y1d_c00310{bottom:295.200000px;}
.y45_c00310{bottom:308.400000px;}
.y1c_c00310{bottom:312.750000px;}
.y44_c00310{bottom:326.700000px;}
.y1b_c00310{bottom:332.100000px;}
.y43_c00310{bottom:344.700000px;}
.y1a_c00310{bottom:349.650000px;}
.y42_c00310{bottom:362.850000px;}
.y19_c00310{bottom:367.500000px;}
.y41_c00310{bottom:379.050000px;}
.y18_c00310{bottom:386.400000px;}
.y40_c00310{bottom:398.700000px;}
.y17_c00310{bottom:403.200000px;}
.y3f_c00310{bottom:416.850000px;}
.y16_c00310{bottom:421.800000px;}
.y3e_c00310{bottom:434.400000px;}
.y15_c00310{bottom:439.650000px;}
.y3d_c00310{bottom:453.600000px;}
.y14_c00310{bottom:457.350000px;}
.y3c_c00310{bottom:469.800000px;}
.y13_c00310{bottom:475.500000px;}
.y3b_c00310{bottom:489.000000px;}
.y12_c00310{bottom:493.050000px;}
.y3a_c00310{bottom:506.550000px;}
.y11_c00310{bottom:510.900000px;}
.y39_c00310{bottom:525.450000px;}
.y10_c00310{bottom:528.900000px;}
.y38_c00310{bottom:543.000000px;}
.yf_c00310{bottom:546.300000px;}
.y37_c00310{bottom:561.900000px;}
.ye_c00310{bottom:565.200000px;}
.y36_c00310{bottom:579.600000px;}
.yd_c00310{bottom:582.900000px;}
.y35_c00310{bottom:598.500000px;}
.yc_c00310{bottom:601.050000px;}
.y34_c00310{bottom:616.950000px;}
.yb_c00310{bottom:619.350000px;}
.y33_c00310{bottom:635.250000px;}
.ya_c00310{bottom:637.650000px;}
.y32_c00310{bottom:653.850000px;}
.y9_c00310{bottom:656.400000px;}
.y31_c00310{bottom:671.700000px;}
.y8_c00310{bottom:673.650000px;}
.y30_c00310{bottom:690.300000px;}
.y7_c00310{bottom:691.500000px;}
.y2f_c00310{bottom:708.000000px;}
.y6_c00310{bottom:710.100000px;}
.y2e_c00310{bottom:726.600000px;}
.y5_c00310{bottom:728.400000px;}
.y2d_c00310{bottom:744.900000px;}
.y4_c00310{bottom:746.100000px;}
.y2c_c00310{bottom:762.450000px;}
.y3_c00310{bottom:763.500000px;}
.y2b_c00310{bottom:780.600000px;}
.y2_c00310{bottom:781.950000px;}
.y1_c00310{bottom:802.800000px;}
.h8_c00310{height:13.200074px;}
.h9_c00310{height:43.804688px;}
.h5_c00310{height:53.448000px;}
.h3_c00310{height:62.880000px;}
.h7_c00310{height:64.020000px;}
.h2_c00310{height:66.024000px;}
.h4_c00310{height:69.168000px;}
.h6_c00310{height:75.456000px;}
.h1_c00310{height:842.250000px;}
.h0_c00310{height:842.400000px;}
.w2_c00310{width:104.875500px;}
.w0_c00310{width:586.425000px;}
.w1_c00310{width:586.500000px;}
.x0_c00310{left:0.000000px;}
.x9_c00310{left:24.300000px;}
.x3_c00310{left:76.650000px;}
.x2_c00310{left:77.850000px;}
.x4_c00310{left:79.350000px;}
.x5_c00310{left:80.700000px;}
.x6_c00310{left:82.050000px;}
.x7_c00310{left:83.400000px;}
.x8_c00310{left:84.750000px;}
.xa_c00310{left:86.100000px;}
.xb_c00310{left:87.450000px;}
.xc_c00310{left:88.800000px;}
.x1_c00310{left:214.650000px;}
.x17_c00310{left:245.026749px;}
.xf_c00310{left:296.100000px;}
.xe_c00310{left:299.700000px;}
.x10_c00310{left:300.750000px;}
.xd_c00310{left:302.100000px;}
.x12_c00310{left:303.450000px;}
.x13_c00310{left:304.500000px;}
.x14_c00310{left:305.850000px;}
.x15_c00310{left:306.900000px;}
.x11_c00310{left:327.750000px;}
.x16_c00310{left:464.400000px;}
@media print{
.v0_c00310{vertical-align:0.000000pt;}
.ls8_c00310{letter-spacing:0.000000pt;}
.ls2_c00310{letter-spacing:0.586667pt;}
.ls1_c00310{letter-spacing:2.666667pt;}
.ls6_c00310{letter-spacing:3.066667pt;}
.lsa_c00310{letter-spacing:5.333333pt;}
.ls5_c00310{letter-spacing:5.813333pt;}
.ls7_c00310{letter-spacing:9.760000pt;}
.ls0_c00310{letter-spacing:10.666667pt;}
.ls9_c00310{letter-spacing:13.333333pt;}
.ls4_c00310{letter-spacing:13.733333pt;}
.ls3_c00310{letter-spacing:23.333333pt;}
.ws1_c00310{word-spacing:-25.442667pt;}
.ws7_c00310{word-spacing:-18.080000pt;}
.ws2_c00310{word-spacing:-15.413333pt;}
.ws4_c00310{word-spacing:-13.845333pt;}
.ws0_c00310{word-spacing:-12.586667pt;}
.ws3_c00310{word-spacing:-10.698667pt;}
.ws8_c00310{word-spacing:0.000000pt;}
.ws6_c00310{word-spacing:1.973333pt;}
.ws5_c00310{word-spacing:5.333333pt;}
._13_c00310{margin-left:-17.280000pt;}
._f_c00310{margin-left:-14.453333pt;}
._10_c00310{margin-left:-13.226667pt;}
._28_c00310{margin-left:-11.322667pt;}
._12_c00310{margin-left:-10.074667pt;}
._11_c00310{margin-left:-9.082667pt;}
._7_c00310{margin-left:-7.970667pt;}
._e_c00310{margin-left:-7.069333pt;}
._c_c00310{margin-left:-5.778667pt;}
._6_c00310{margin-left:-4.000000pt;}
._a_c00310{margin-left:-2.773333pt;}
._3_c00310{margin-left:-1.600000pt;}
._8_c00310{width:1.066667pt;}
._0_c00310{width:2.744000pt;}
._9_c00310{width:4.266667pt;}
._2_c00310{width:5.712000pt;}
._d_c00310{width:7.069333pt;}
._5_c00310{width:8.693333pt;}
._16_c00310{width:9.866667pt;}
._4_c00310{width:10.826667pt;}
._b_c00310{width:12.693333pt;}
._21_c00310{width:13.826667pt;}
._19_c00310{width:14.986667pt;}
._22_c00310{width:16.285333pt;}
._15_c00310{width:17.973333pt;}
._1f_c00310{width:18.986667pt;}
._14_c00310{width:20.106667pt;}
._1c_c00310{width:21.842667pt;}
._1e_c00310{width:23.234667pt;}
._25_c00310{width:25.226667pt;}
._1_c00310{width:26.152000pt;}
._1a_c00310{width:27.578667pt;}
._1b_c00310{width:32.784000pt;}
._20_c00310{width:34.120000pt;}
._1d_c00310{width:36.096000pt;}
._26_c00310{width:37.013333pt;}
._17_c00310{width:81.802667pt;}
._23_c00310{width:84.256000pt;}
._24_c00310{width:125.440000pt;}
._18_c00310{width:196.858667pt;}
._27_c00310{width:209.853333pt;}
.fs5_c00310{font-size:40.000000pt;}
.fs7_c00310{font-size:42.666667pt;}
.fs4_c00310{font-size:45.333333pt;}
.fs2_c00310{font-size:50.666667pt;}
.fs1_c00310{font-size:53.333333pt;}
.fs0_c00310{font-size:56.000000pt;}
.fs3_c00310{font-size:58.666667pt;}
.fs6_c00310{font-size:64.000000pt;}
.y0_c00310{bottom:0.000000pt;}
.y56_c00310{bottom:2.760000pt;}
.y55_c00310{bottom:6.425212pt;}
.y54_c00310{bottom:30.933333pt;}
.y53_c00310{bottom:48.266667pt;}
.y2a_c00310{bottom:50.933333pt;}
.y52_c00310{bottom:64.533333pt;}
.y29_c00310{bottom:68.000000pt;}
.y51_c00310{bottom:80.800000pt;}
.y28_c00310{bottom:84.533333pt;}
.y50_c00310{bottom:96.400000pt;}
.y27_c00310{bottom:101.066667pt;}
.y4f_c00310{bottom:113.066667pt;}
.y26_c00310{bottom:116.133333pt;}
.y4e_c00310{bottom:128.800000pt;}
.y25_c00310{bottom:133.466667pt;}
.y4d_c00310{bottom:143.733333pt;}
.y24_c00310{bottom:149.066667pt;}
.y4c_c00310{bottom:161.200000pt;}
.y23_c00310{bottom:165.200000pt;}
.y4b_c00310{bottom:177.066667pt;}
.y22_c00310{bottom:179.733333pt;}
.y4a_c00310{bottom:194.000000pt;}
.y21_c00310{bottom:197.733333pt;}
.y49_c00310{bottom:209.200000pt;}
.y20_c00310{bottom:213.600000pt;}
.y48_c00310{bottom:225.600000pt;}
.y1f_c00310{bottom:229.733333pt;}
.y47_c00310{bottom:241.866667pt;}
.y1e_c00310{bottom:245.600000pt;}
.y46_c00310{bottom:258.266667pt;}
.y1d_c00310{bottom:262.400000pt;}
.y45_c00310{bottom:274.133333pt;}
.y1c_c00310{bottom:278.000000pt;}
.y44_c00310{bottom:290.400000pt;}
.y1b_c00310{bottom:295.200000pt;}
.y43_c00310{bottom:306.400000pt;}
.y1a_c00310{bottom:310.800000pt;}
.y42_c00310{bottom:322.533333pt;}
.y19_c00310{bottom:326.666667pt;}
.y41_c00310{bottom:336.933333pt;}
.y18_c00310{bottom:343.466667pt;}
.y40_c00310{bottom:354.400000pt;}
.y17_c00310{bottom:358.400000pt;}
.y3f_c00310{bottom:370.533333pt;}
.y16_c00310{bottom:374.933333pt;}
.y3e_c00310{bottom:386.133333pt;}
.y15_c00310{bottom:390.800000pt;}
.y3d_c00310{bottom:403.200000pt;}
.y14_c00310{bottom:406.533333pt;}
.y3c_c00310{bottom:417.600000pt;}
.y13_c00310{bottom:422.666667pt;}
.y3b_c00310{bottom:434.666667pt;}
.y12_c00310{bottom:438.266667pt;}
.y3a_c00310{bottom:450.266667pt;}
.y11_c00310{bottom:454.133333pt;}
.y39_c00310{bottom:467.066667pt;}
.y10_c00310{bottom:470.133333pt;}
.y38_c00310{bottom:482.666667pt;}
.yf_c00310{bottom:485.600000pt;}
.y37_c00310{bottom:499.466667pt;}
.ye_c00310{bottom:502.400000pt;}
.y36_c00310{bottom:515.200000pt;}
.yd_c00310{bottom:518.133333pt;}
.y35_c00310{bottom:532.000000pt;}
.yc_c00310{bottom:534.266667pt;}
.y34_c00310{bottom:548.400000pt;}
.yb_c00310{bottom:550.533333pt;}
.y33_c00310{bottom:564.666667pt;}
.ya_c00310{bottom:566.800000pt;}
.y32_c00310{bottom:581.200000pt;}
.y9_c00310{bottom:583.466667pt;}
.y31_c00310{bottom:597.066667pt;}
.y8_c00310{bottom:598.800000pt;}
.y30_c00310{bottom:613.600000pt;}
.y7_c00310{bottom:614.666667pt;}
.y2f_c00310{bottom:629.333333pt;}
.y6_c00310{bottom:631.200000pt;}
.y2e_c00310{bottom:645.866667pt;}
.y5_c00310{bottom:647.466667pt;}
.y2d_c00310{bottom:662.133333pt;}
.y4_c00310{bottom:663.200000pt;}
.y2c_c00310{bottom:677.733333pt;}
.y3_c00310{bottom:678.666667pt;}
.y2b_c00310{bottom:693.866667pt;}
.y2_c00310{bottom:695.066667pt;}
.y1_c00310{bottom:713.600000pt;}
.h8_c00310{height:11.733399pt;}
.h9_c00310{height:38.937500pt;}
.h5_c00310{height:47.509333pt;}
.h3_c00310{height:55.893333pt;}
.h7_c00310{height:56.906667pt;}
.h2_c00310{height:58.688000pt;}
.h4_c00310{height:61.482667pt;}
.h6_c00310{height:67.072000pt;}
.h1_c00310{height:748.666667pt;}
.h0_c00310{height:748.800000pt;}
.w2_c00310{width:93.222667pt;}
.w0_c00310{width:521.266667pt;}
.w1_c00310{width:521.333333pt;}
.x0_c00310{left:0.000000pt;}
.x9_c00310{left:21.600000pt;}
.x3_c00310{left:68.133333pt;}
.x2_c00310{left:69.200000pt;}
.x4_c00310{left:70.533333pt;}
.x5_c00310{left:71.733333pt;}
.x6_c00310{left:72.933333pt;}
.x7_c00310{left:74.133333pt;}
.x8_c00310{left:75.333333pt;}
.xa_c00310{left:76.533333pt;}
.xb_c00310{left:77.733333pt;}
.xc_c00310{left:78.933333pt;}
.x1_c00310{left:190.800000pt;}
.x17_c00310{left:217.801554pt;}
.xf_c00310{left:263.200000pt;}
.xe_c00310{left:266.400000pt;}
.x10_c00310{left:267.333333pt;}
.xd_c00310{left:268.533333pt;}
.x12_c00310{left:269.733333pt;}
.x13_c00310{left:270.666667pt;}
.x14_c00310{left:271.866667pt;}
.x15_c00310{left:272.800000pt;}
.x11_c00310{left:291.333333pt;}
.x16_c00310{left:412.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_dc2b79e846db7a96381acf71.woff2')format("woff");}.ff1_c00311{font-family:ff1_c00311;line-height:1.437000;font-style:normal;font-weight:normal;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_34712e5211782c96735822f3.woff2')format("woff");}.ff2_c00311{font-family:ff2_c00311;line-height:1.437000;font-style:normal;font-weight:normal;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_22baf766999224007fb854c8.woff2')format("woff");}.ff3_c00311{font-family:ff3_c00311;line-height:1.575000;font-style:normal;font-weight:normal;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_8137d6c004cf79499386be83.woff2')format("woff");}.ff4_c00311{font-family:ff4_c00311;line-height:1.437000;font-style:normal;font-weight:normal;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_7c34d08f6146d16c494206c6.woff2')format("woff");}.ff5_c00311{font-family:ff5_c00311;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00311;src:url('chunks/assets/font_9b6d1473e6b559e495db5493.woff2')format("woff");}.ff6_c00311{font-family:ff6_c00311;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00311;src:url('chunks/assets/font_7164f7fc20c479aacf7b7c04.woff2')format("woff");}.ff7_c00311{font-family:ff7_c00311;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00311;src:url('chunks/assets/font_7c7b114d6d8510036cb24ad0.woff2')format("woff");}.ff8_c00311{font-family:ff8_c00311;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00311;src:url('chunks/assets/font_5dcd662586163251cbffe319.woff2')format("woff");}.ff9_c00311{font-family:ff9_c00311;line-height:1.575000;font-style:normal;font-weight: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_c00311;src:url('chunks/assets/font_a93576c7b81066a27d0d9100.woff2')format("woff");}.ffa_c00311{font-family:ffa_c00311;line-height:1.575000;font-style:normal;font-weight: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_c00311;src:url('chunks/assets/font_d6d7a5282ddaf1a80f60f294.woff2')format("woff");}.ffb_c00311{font-family:ffb_c00311;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc_c00311;src:url('chunks/assets/font_b6f438ed412b38c9a183ef14.woff2')format("woff");}.ffc_c00311{font-family:ffc_c00311;line-height:1.575000;font-style:normal;font-weight: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_c00311;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ffd_c00311{font-family:ffd_c00311;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00311{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00311{vertical-align:0.000000px;}
.v1_c00311{vertical-align:9.600000px;}
.ls9_c00311{letter-spacing:0.000000px;}
.ls7_c00311{letter-spacing:0.306000px;}
.ls0_c00311{letter-spacing:2.040000px;}
.ls3_c00311{letter-spacing:3.000000px;}
.ls1_c00311{letter-spacing:6.000000px;}
.ls6_c00311{letter-spacing:6.384000px;}
.ls8_c00311{letter-spacing:6.900000px;}
.ls5_c00311{letter-spacing:7.980000px;}
.lsa_c00311{letter-spacing:9.000000px;}
.lsb_c00311{letter-spacing:15.000000px;}
.ls2_c00311{letter-spacing:27.150000px;}
.ls4_c00311{letter-spacing:128.160000px;}
.sc__c00311{text-shadow:none;}
.sc0_c00311{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00311{-webkit-text-stroke:0px transparent;}
.sc0_c00311{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00311{word-spacing:-32.295000px;}
.ws1_c00311{word-spacing:-23.868000px;}
.ws5_c00311{word-spacing:-18.813000px;}
.ws6_c00311{word-spacing:-18.060000px;}
.ws3_c00311{word-spacing:-17.250000px;}
.ws4_c00311{word-spacing:-15.750000px;}
.ws0_c00311{word-spacing:-14.160000px;}
.ws7_c00311{word-spacing:0.000000px;}
._21_c00311{margin-left:-22.743000px;}
._22_c00311{margin-left:-20.853000px;}
._20_c00311{margin-left:-17.559000px;}
._23_c00311{margin-left:-16.002000px;}
._f_c00311{margin-left:-14.982000px;}
._12_c00311{margin-left:-13.626000px;}
._b_c00311{margin-left:-11.682000px;}
._a_c00311{margin-left:-9.306000px;}
._c_c00311{margin-left:-8.268000px;}
._d_c00311{margin-left:-6.666000px;}
._8_c00311{margin-left:-5.346000px;}
._10_c00311{margin-left:-4.290000px;}
._6_c00311{margin-left:-3.168000px;}
._5_c00311{margin-left:-2.046000px;}
._13_c00311{margin-left:-1.020000px;}
._1_c00311{width:1.980000px;}
._3_c00311{width:3.360000px;}
._0_c00311{width:4.500000px;}
._4_c00311{width:6.000000px;}
._9_c00311{width:7.128000px;}
._18_c00311{width:8.448000px;}
._e_c00311{width:9.456000px;}
._15_c00311{width:10.560000px;}
._2_c00311{width:12.540000px;}
._25_c00311{width:13.629000px;}
._7_c00311{width:14.652000px;}
._14_c00311{width:16.086000px;}
._16_c00311{width:17.292000px;}
._11_c00311{width:18.810000px;}
._19_c00311{width:20.394000px;}
._24_c00311{width:22.419000px;}
._1e_c00311{width:25.938000px;}
._1b_c00311{width:28.380000px;}
._17_c00311{width:31.746000px;}
._26_c00311{width:33.156000px;}
._1a_c00311{width:34.716000px;}
._1d_c00311{width:39.402000px;}
._1c_c00311{width:41.382000px;}
._1f_c00311{width:142.320000px;}
.fc2_c00311{color:transparent;}
.fc1_c00311{color:rgb(128,128,128);}
.fc0_c00311{color:rgb(0,0,0);}
.fs2_c00311{font-size:45.000000px;}
.fs7_c00311{font-size:48.000000px;}
.fs6_c00311{font-size:51.000000px;}
.fs0_c00311{font-size:60.000000px;}
.fs3_c00311{font-size:63.000000px;}
.fs1_c00311{font-size:66.000000px;}
.fs4_c00311{font-size:69.000000px;}
.fs5_c00311{font-size:72.000000px;}
.y0_c00311{bottom:0.000000px;}
.y51_c00311{bottom:3.105000px;}
.y50_c00311{bottom:7.228357px;}
.y4f_c00311{bottom:32.730000px;}
.y29_c00311{bottom:51.030000px;}
.y4e_c00311{bottom:51.630000px;}
.y28_c00311{bottom:70.230000px;}
.y4d_c00311{bottom:70.830000px;}
.y4c_c00311{bottom:88.530000px;}
.y27_c00311{bottom:88.830000px;}
.y26_c00311{bottom:106.380000px;}
.y4b_c00311{bottom:106.680000px;}
.y25_c00311{bottom:124.980000px;}
.y4a_c00311{bottom:125.280000px;}
.y24_c00311{bottom:142.830000px;}
.y23_c00311{bottom:161.280000px;}
.y49_c00311{bottom:161.430000px;}
.y22_c00311{bottom:178.830000px;}
.y48_c00311{bottom:178.980000px;}
.y21_c00311{bottom:197.130000px;}
.y47_c00311{bottom:197.430000px;}
.y20_c00311{bottom:215.280000px;}
.y46_c00311{bottom:215.430000px;}
.y45_c00311{bottom:233.280000px;}
.y1f_c00311{bottom:233.580000px;}
.y44_c00311{bottom:251.430000px;}
.y1e_c00311{bottom:251.730000px;}
.y1d_c00311{bottom:269.430000px;}
.y43_c00311{bottom:270.330000px;}
.y1c_c00311{bottom:287.580000px;}
.y42_c00311{bottom:288.330000px;}
.y1b_c00311{bottom:305.880000px;}
.y41_c00311{bottom:306.480000px;}
.y1a_c00311{bottom:324.030000px;}
.y40_c00311{bottom:324.630000px;}
.y19_c00311{bottom:342.180000px;}
.y3f_c00311{bottom:342.930000px;}
.y18_c00311{bottom:360.180000px;}
.y3e_c00311{bottom:361.080000px;}
.y17_c00311{bottom:378.630000px;}
.y3d_c00311{bottom:379.680000px;}
.y16_c00311{bottom:396.330000px;}
.y3c_c00311{bottom:397.530000px;}
.y15_c00311{bottom:414.780000px;}
.y3b_c00311{bottom:415.530000px;}
.y14_c00311{bottom:432.630000px;}
.y3a_c00311{bottom:433.080000px;}
.y13_c00311{bottom:450.930000px;}
.y39_c00311{bottom:452.580000px;}
.y12_c00311{bottom:469.080000px;}
.y38_c00311{bottom:469.830000px;}
.y11_c00311{bottom:487.380000px;}
.y37_c00311{bottom:488.730000px;}
.y10_c00311{bottom:505.980000px;}
.y36_c00311{bottom:506.880000px;}
.yf_c00311{bottom:523.530000px;}
.y35_c00311{bottom:524.880000px;}
.ye_c00311{bottom:541.380000px;}
.y34_c00311{bottom:543.330000px;}
.yd_c00311{bottom:559.230000px;}
.y33_c00311{bottom:560.580000px;}
.yc_c00311{bottom:577.830000px;}
.y32_c00311{bottom:579.180000px;}
.yb_c00311{bottom:596.730000px;}
.y31_c00311{bottom:597.480000px;}
.ya_c00311{bottom:614.880000px;}
.y30_c00311{bottom:615.930000px;}
.y9_c00311{bottom:633.180000px;}
.y2f_c00311{bottom:633.930000px;}
.y2e_c00311{bottom:649.980000px;}
.y8_c00311{bottom:652.080000px;}
.y7_c00311{bottom:670.380000px;}
.y6_c00311{bottom:688.830000px;}
.y2d_c00311{bottom:689.580000px;}
.y2c_c00311{bottom:706.680000px;}
.y5_c00311{bottom:706.830000px;}
.y4_c00311{bottom:724.980000px;}
.y2b_c00311{bottom:726.330000px;}
.y3_c00311{bottom:744.930000px;}
.y2_c00311{bottom:760.830000px;}
.y2a_c00311{bottom:762.030000px;}
.y1_c00311{bottom:781.080000px;}
.ha_c00311{height:13.200074px;}
.hb_c00311{height:43.804688px;}
.h6_c00311{height:59.690918px;}
.h2_c00311{height:62.880000px;}
.h8_c00311{height:66.024000px;}
.h9_c00311{height:67.221000px;}
.h3_c00311{height:70.422000px;}
.h5_c00311{height:70.664062px;}
.h4_c00311{height:73.623000px;}
.h7_c00311{height:75.624000px;}
.h1_c00311{height:837.000000px;}
.h0_c00311{height:837.300000px;}
.w1_c00311{width:104.875500px;}
.w0_c00311{width:556.500000px;}
.x0_c00311{left:0.000000px;}
.xa_c00311{left:81.600000px;}
.x9_c00311{left:82.950000px;}
.x8_c00311{left:84.000000px;}
.x5_c00311{left:85.350000px;}
.x7_c00311{left:86.400000px;}
.x6_c00311{left:87.450000px;}
.x4_c00311{left:88.650000px;}
.x3_c00311{left:90.000000px;}
.x2_c00311{left:91.500000px;}
.x1_c00311{left:93.150000px;}
.x17_c00311{left:230.064240px;}
.x15_c00311{left:301.800000px;}
.x14_c00311{left:303.300000px;}
.x13_c00311{left:305.100000px;}
.x12_c00311{left:306.450000px;}
.xf_c00311{left:307.500000px;}
.x11_c00311{left:308.700000px;}
.xd_c00311{left:325.950000px;}
.xc_c00311{left:342.150000px;}
.x10_c00311{left:352.350000px;}
.xe_c00311{left:369.150000px;}
.xb_c00311{left:380.700000px;}
.x16_c00311{left:473.250000px;}
@media print{
.v0_c00311{vertical-align:0.000000pt;}
.v1_c00311{vertical-align:8.533333pt;}
.ls9_c00311{letter-spacing:0.000000pt;}
.ls7_c00311{letter-spacing:0.272000pt;}
.ls0_c00311{letter-spacing:1.813333pt;}
.ls3_c00311{letter-spacing:2.666667pt;}
.ls1_c00311{letter-spacing:5.333333pt;}
.ls6_c00311{letter-spacing:5.674667pt;}
.ls8_c00311{letter-spacing:6.133333pt;}
.ls5_c00311{letter-spacing:7.093333pt;}
.lsa_c00311{letter-spacing:8.000000pt;}
.lsb_c00311{letter-spacing:13.333333pt;}
.ls2_c00311{letter-spacing:24.133333pt;}
.ls4_c00311{letter-spacing:113.920000pt;}
.ws2_c00311{word-spacing:-28.706667pt;}
.ws1_c00311{word-spacing:-21.216000pt;}
.ws5_c00311{word-spacing:-16.722667pt;}
.ws6_c00311{word-spacing:-16.053333pt;}
.ws3_c00311{word-spacing:-15.333333pt;}
.ws4_c00311{word-spacing:-14.000000pt;}
.ws0_c00311{word-spacing:-12.586667pt;}
.ws7_c00311{word-spacing:0.000000pt;}
._21_c00311{margin-left:-20.216000pt;}
._22_c00311{margin-left:-18.536000pt;}
._20_c00311{margin-left:-15.608000pt;}
._23_c00311{margin-left:-14.224000pt;}
._f_c00311{margin-left:-13.317333pt;}
._12_c00311{margin-left:-12.112000pt;}
._b_c00311{margin-left:-10.384000pt;}
._a_c00311{margin-left:-8.272000pt;}
._c_c00311{margin-left:-7.349333pt;}
._d_c00311{margin-left:-5.925333pt;}
._8_c00311{margin-left:-4.752000pt;}
._10_c00311{margin-left:-3.813333pt;}
._6_c00311{margin-left:-2.816000pt;}
._5_c00311{margin-left:-1.818667pt;}
._13_c00311{margin-left:-0.906667pt;}
._1_c00311{width:1.760000pt;}
._3_c00311{width:2.986667pt;}
._0_c00311{width:4.000000pt;}
._4_c00311{width:5.333333pt;}
._9_c00311{width:6.336000pt;}
._18_c00311{width:7.509333pt;}
._e_c00311{width:8.405333pt;}
._15_c00311{width:9.386667pt;}
._2_c00311{width:11.146667pt;}
._25_c00311{width:12.114667pt;}
._7_c00311{width:13.024000pt;}
._14_c00311{width:14.298667pt;}
._16_c00311{width:15.370667pt;}
._11_c00311{width:16.720000pt;}
._19_c00311{width:18.128000pt;}
._24_c00311{width:19.928000pt;}
._1e_c00311{width:23.056000pt;}
._1b_c00311{width:25.226667pt;}
._17_c00311{width:28.218667pt;}
._26_c00311{width:29.472000pt;}
._1a_c00311{width:30.858667pt;}
._1d_c00311{width:35.024000pt;}
._1c_c00311{width:36.784000pt;}
._1f_c00311{width:126.506667pt;}
.fs2_c00311{font-size:40.000000pt;}
.fs7_c00311{font-size:42.666667pt;}
.fs6_c00311{font-size:45.333333pt;}
.fs0_c00311{font-size:53.333333pt;}
.fs3_c00311{font-size:56.000000pt;}
.fs1_c00311{font-size:58.666667pt;}
.fs4_c00311{font-size:61.333333pt;}
.fs5_c00311{font-size:64.000000pt;}
.y0_c00311{bottom:0.000000pt;}
.y51_c00311{bottom:2.760000pt;}
.y50_c00311{bottom:6.425206pt;}
.y4f_c00311{bottom:29.093333pt;}
.y29_c00311{bottom:45.360000pt;}
.y4e_c00311{bottom:45.893333pt;}
.y28_c00311{bottom:62.426667pt;}
.y4d_c00311{bottom:62.960000pt;}
.y4c_c00311{bottom:78.693333pt;}
.y27_c00311{bottom:78.960000pt;}
.y26_c00311{bottom:94.560000pt;}
.y4b_c00311{bottom:94.826667pt;}
.y25_c00311{bottom:111.093333pt;}
.y4a_c00311{bottom:111.360000pt;}
.y24_c00311{bottom:126.960000pt;}
.y23_c00311{bottom:143.360000pt;}
.y49_c00311{bottom:143.493333pt;}
.y22_c00311{bottom:158.960000pt;}
.y48_c00311{bottom:159.093333pt;}
.y21_c00311{bottom:175.226667pt;}
.y47_c00311{bottom:175.493333pt;}
.y20_c00311{bottom:191.360000pt;}
.y46_c00311{bottom:191.493333pt;}
.y45_c00311{bottom:207.360000pt;}
.y1f_c00311{bottom:207.626667pt;}
.y44_c00311{bottom:223.493333pt;}
.y1e_c00311{bottom:223.760000pt;}
.y1d_c00311{bottom:239.493333pt;}
.y43_c00311{bottom:240.293333pt;}
.y1c_c00311{bottom:255.626667pt;}
.y42_c00311{bottom:256.293333pt;}
.y1b_c00311{bottom:271.893333pt;}
.y41_c00311{bottom:272.426667pt;}
.y1a_c00311{bottom:288.026667pt;}
.y40_c00311{bottom:288.560000pt;}
.y19_c00311{bottom:304.160000pt;}
.y3f_c00311{bottom:304.826667pt;}
.y18_c00311{bottom:320.160000pt;}
.y3e_c00311{bottom:320.960000pt;}
.y17_c00311{bottom:336.560000pt;}
.y3d_c00311{bottom:337.493333pt;}
.y16_c00311{bottom:352.293333pt;}
.y3c_c00311{bottom:353.360000pt;}
.y15_c00311{bottom:368.693333pt;}
.y3b_c00311{bottom:369.360000pt;}
.y14_c00311{bottom:384.560000pt;}
.y3a_c00311{bottom:384.960000pt;}
.y13_c00311{bottom:400.826667pt;}
.y39_c00311{bottom:402.293333pt;}
.y12_c00311{bottom:416.960000pt;}
.y38_c00311{bottom:417.626667pt;}
.y11_c00311{bottom:433.226667pt;}
.y37_c00311{bottom:434.426667pt;}
.y10_c00311{bottom:449.760000pt;}
.y36_c00311{bottom:450.560000pt;}
.yf_c00311{bottom:465.360000pt;}
.y35_c00311{bottom:466.560000pt;}
.ye_c00311{bottom:481.226667pt;}
.y34_c00311{bottom:482.960000pt;}
.yd_c00311{bottom:497.093333pt;}
.y33_c00311{bottom:498.293333pt;}
.yc_c00311{bottom:513.626667pt;}
.y32_c00311{bottom:514.826667pt;}
.yb_c00311{bottom:530.426667pt;}
.y31_c00311{bottom:531.093333pt;}
.ya_c00311{bottom:546.560000pt;}
.y30_c00311{bottom:547.493333pt;}
.y9_c00311{bottom:562.826667pt;}
.y2f_c00311{bottom:563.493333pt;}
.y2e_c00311{bottom:577.760000pt;}
.y8_c00311{bottom:579.626667pt;}
.y7_c00311{bottom:595.893333pt;}
.y6_c00311{bottom:612.293333pt;}
.y2d_c00311{bottom:612.960000pt;}
.y2c_c00311{bottom:628.160000pt;}
.y5_c00311{bottom:628.293333pt;}
.y4_c00311{bottom:644.426667pt;}
.y2b_c00311{bottom:645.626667pt;}
.y3_c00311{bottom:662.160000pt;}
.y2_c00311{bottom:676.293333pt;}
.y2a_c00311{bottom:677.360000pt;}
.y1_c00311{bottom:694.293333pt;}
.ha_c00311{height:11.733399pt;}
.hb_c00311{height:38.937500pt;}
.h6_c00311{height:53.058594pt;}
.h2_c00311{height:55.893333pt;}
.h8_c00311{height:58.688000pt;}
.h9_c00311{height:59.752000pt;}
.h3_c00311{height:62.597333pt;}
.h5_c00311{height:62.812500pt;}
.h4_c00311{height:65.442667pt;}
.h7_c00311{height:67.221333pt;}
.h1_c00311{height:744.000000pt;}
.h0_c00311{height:744.266667pt;}
.w1_c00311{width:93.222667pt;}
.w0_c00311{width:494.666667pt;}
.x0_c00311{left:0.000000pt;}
.xa_c00311{left:72.533333pt;}
.x9_c00311{left:73.733333pt;}
.x8_c00311{left:74.666667pt;}
.x5_c00311{left:75.866667pt;}
.x7_c00311{left:76.800000pt;}
.x6_c00311{left:77.733333pt;}
.x4_c00311{left:78.800000pt;}
.x3_c00311{left:80.000000pt;}
.x2_c00311{left:81.333333pt;}
.x1_c00311{left:82.800000pt;}
.x17_c00311{left:204.501546pt;}
.x15_c00311{left:268.266667pt;}
.x14_c00311{left:269.600000pt;}
.x13_c00311{left:271.200000pt;}
.x12_c00311{left:272.400000pt;}
.xf_c00311{left:273.333333pt;}
.x11_c00311{left:274.400000pt;}
.xd_c00311{left:289.733333pt;}
.xc_c00311{left:304.133333pt;}
.x10_c00311{left:313.200000pt;}
.xe_c00311{left:328.133333pt;}
.xb_c00311{left:338.400000pt;}
.x16_c00311{left:420.666667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_16288e52e332d5c884293955.woff2')format("woff");}.ff1_c00312{font-family:ff1_c00312;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00312;src:url('chunks/assets/font_72ce278845b10da88d08b9ac.woff2')format("woff");}.ff2_c00312{font-family:ff2_c00312;line-height:1.575000;font-style:normal;font-weight:normal;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_8e1ed201e3637789ca113254.woff2')format("woff");}.ff3_c00312{font-family:ff3_c00312;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00312;src:url('chunks/assets/font_9f67c00298e5b8e042bde24c.woff2')format("woff");}.ff4_c00312{font-family:ff4_c00312;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00312;src:url('chunks/assets/font_7c7b114d6d8510036cb24ad0.woff2')format("woff");}.ff5_c00312{font-family:ff5_c00312;line-height:1.575000;font-style:normal;font-weight:normal;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_03a863669f065f0af7057959.woff2')format("woff");}.ff6_c00312{font-family:ff6_c00312;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00312;src:url('chunks/assets/font_300bbcaec913016a3ec92794.woff2')format("woff");}.ff7_c00312{font-family:ff7_c00312;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00312;src:url('chunks/assets/font_a0994f2f4fcc25f61d0c94d7.woff2')format("woff");}.ff8_c00312{font-family:ff8_c00312;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00312;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff9_c00312{font-family:ff9_c00312;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00312{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00312{vertical-align:0.000000px;}
.ls7_c00312{letter-spacing:0.000000px;}
.ls2_c00312{letter-spacing:0.774000px;}
.ls1_c00312{letter-spacing:3.000000px;}
.ls5_c00312{letter-spacing:3.450000px;}
.ls6_c00312{letter-spacing:6.000000px;}
.ls3_c00312{letter-spacing:7.650000px;}
.ls0_c00312{letter-spacing:8.016000px;}
.ls4_c00312{letter-spacing:39.450000px;}
.sc__c00312{text-shadow:none;}
.sc0_c00312{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00312{-webkit-text-stroke:0px transparent;}
.sc0_c00312{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00312{word-spacing:-18.060000px;}
.ws4_c00312{word-spacing:-18.000000px;}
.ws6_c00312{word-spacing:-17.319000px;}
.ws5_c00312{word-spacing:-16.500000px;}
.ws1_c00312{word-spacing:-16.338000px;}
.ws0_c00312{word-spacing:-14.160000px;}
.ws7_c00312{word-spacing:0.000000px;}
.ws2_c00312{word-spacing:0.060000px;}
._29_c00312{margin-left:-18.420000px;}
._28_c00312{margin-left:-12.918000px;}
._f_c00312{margin-left:-10.620000px;}
._d_c00312{margin-left:-8.460000px;}
._15_c00312{margin-left:-7.128000px;}
._8_c00312{margin-left:-5.700000px;}
._13_c00312{margin-left:-4.578000px;}
._c_c00312{margin-left:-3.426000px;}
._e_c00312{margin-left:-1.560000px;}
._5_c00312{width:1.860000px;}
._b_c00312{width:3.264000px;}
._6_c00312{width:5.040000px;}
._26_c00312{width:6.045000px;}
._a_c00312{width:7.047000px;}
._14_c00312{width:8.508000px;}
._7_c00312{width:9.960000px;}
._1_c00312{width:11.040000px;}
._9_c00312{width:12.240000px;}
._0_c00312{width:14.040000px;}
._17_c00312{width:15.072000px;}
._27_c00312{width:16.560000px;}
._11_c00312{width:17.787000px;}
._3_c00312{width:19.860000px;}
._4_c00312{width:21.960000px;}
._1a_c00312{width:23.760000px;}
._12_c00312{width:25.494000px;}
._1f_c00312{width:26.676000px;}
._1b_c00312{width:27.720000px;}
._1c_c00312{width:30.234000px;}
._21_c00312{width:34.536000px;}
._22_c00312{width:35.760000px;}
._20_c00312{width:39.132000px;}
._23_c00312{width:40.560000px;}
._2_c00312{width:42.540000px;}
._24_c00312{width:45.360000px;}
._18_c00312{width:46.983000px;}
._2b_c00312{width:48.348000px;}
._1d_c00312{width:69.555000px;}
._16_c00312{width:70.845000px;}
._25_c00312{width:78.438000px;}
._2c_c00312{width:102.357000px;}
._1e_c00312{width:115.776000px;}
._2a_c00312{width:141.144000px;}
._19_c00312{width:204.258000px;}
._10_c00312{width:230.622000px;}
.fc2_c00312{color:transparent;}
.fc1_c00312{color:rgb(128,128,128);}
.fc0_c00312{color:rgb(0,0,0);}
.fs3_c00312{font-size:39.000000px;}
.fs4_c00312{font-size:45.000000px;}
.fs9_c00312{font-size:48.000000px;}
.fs1_c00312{font-size:51.000000px;}
.fs5_c00312{font-size:54.000000px;}
.fs2_c00312{font-size:57.000000px;}
.fs0_c00312{font-size:60.000000px;}
.fs7_c00312{font-size:63.000000px;}
.fs6_c00312{font-size:66.000000px;}
.fs8_c00312{font-size:69.000000px;}
.y0_c00312{bottom:0.000000px;}
.y56_c00312{bottom:3.105000px;}
.y55_c00312{bottom:7.228363px;}
.y54_c00312{bottom:43.950000px;}
.y53_c00312{bottom:61.800000px;}
.y2a_c00312{bottom:62.550000px;}
.y52_c00312{bottom:80.400000px;}
.y29_c00312{bottom:81.900000px;}
.y51_c00312{bottom:99.300000px;}
.y28_c00312{bottom:100.200000px;}
.y50_c00312{bottom:117.150000px;}
.y27_c00312{bottom:117.450000px;}
.y4f_c00312{bottom:135.000000px;}
.y26_c00312{bottom:136.350000px;}
.y4e_c00312{bottom:152.850000px;}
.y25_c00312{bottom:154.800000px;}
.y4d_c00312{bottom:171.150000px;}
.y24_c00312{bottom:172.800000px;}
.y4c_c00312{bottom:190.050000px;}
.y23_c00312{bottom:190.650000px;}
.y4b_c00312{bottom:207.300000px;}
.y22_c00312{bottom:208.350000px;}
.y4a_c00312{bottom:225.900000px;}
.y21_c00312{bottom:226.800000px;}
.y49_c00312{bottom:244.350000px;}
.y20_c00312{bottom:245.100000px;}
.y48_c00312{bottom:262.350000px;}
.y1f_c00312{bottom:263.550000px;}
.y47_c00312{bottom:279.900000px;}
.y1e_c00312{bottom:281.550000px;}
.y46_c00312{bottom:298.800000px;}
.y1d_c00312{bottom:299.700000px;}
.y45_c00312{bottom:316.350000px;}
.y1c_c00312{bottom:317.700000px;}
.y44_c00312{bottom:334.800000px;}
.y1b_c00312{bottom:335.850000px;}
.y43_c00312{bottom:352.350000px;}
.y1a_c00312{bottom:353.700000px;}
.y42_c00312{bottom:370.200000px;}
.y19_c00312{bottom:371.700000px;}
.y41_c00312{bottom:388.500000px;}
.y18_c00312{bottom:390.150000px;}
.y40_c00312{bottom:406.800000px;}
.y17_c00312{bottom:408.150000px;}
.y3f_c00312{bottom:424.650000px;}
.y16_c00312{bottom:426.600000px;}
.y3e_c00312{bottom:443.250000px;}
.y15_c00312{bottom:444.600000px;}
.y3d_c00312{bottom:460.800000px;}
.y14_c00312{bottom:462.150000px;}
.y3c_c00312{bottom:478.350000px;}
.y13_c00312{bottom:479.850000px;}
.y3b_c00312{bottom:496.800000px;}
.y12_c00312{bottom:497.250000px;}
.y3a_c00312{bottom:515.250000px;}
.y11_c00312{bottom:515.400000px;}
.y39_c00312{bottom:532.950000px;}
.y10_c00312{bottom:533.850000px;}
.y38_c00312{bottom:551.700000px;}
.yf_c00312{bottom:553.050000px;}
.y37_c00312{bottom:569.400000px;}
.ye_c00312{bottom:569.700000px;}
.y36_c00312{bottom:587.550000px;}
.yd_c00312{bottom:588.000000px;}
.yc_c00312{bottom:605.250000px;}
.y35_c00312{bottom:605.850000px;}
.yb_c00312{bottom:623.400000px;}
.y34_c00312{bottom:623.700000px;}
.ya_c00312{bottom:641.250000px;}
.y33_c00312{bottom:641.850000px;}
.y9_c00312{bottom:658.500000px;}
.y32_c00312{bottom:659.850000px;}
.y8_c00312{bottom:676.950000px;}
.y31_c00312{bottom:677.700000px;}
.y7_c00312{bottom:694.950000px;}
.y30_c00312{bottom:696.000000px;}
.y6_c00312{bottom:712.800000px;}
.y2f_c00312{bottom:713.850000px;}
.y5_c00312{bottom:730.950000px;}
.y2e_c00312{bottom:732.000000px;}
.y4_c00312{bottom:748.950000px;}
.y2d_c00312{bottom:750.600000px;}
.y3_c00312{bottom:767.250000px;}
.y2c_c00312{bottom:768.750000px;}
.y2_c00312{bottom:785.250000px;}
.y2b_c00312{bottom:786.750000px;}
.y1_c00312{bottom:805.650000px;}
.h9_c00312{height:13.200074px;}
.h5_c00312{height:42.276000px;}
.ha_c00312{height:43.804688px;}
.h6_c00312{height:56.592000px;}
.h3_c00312{height:59.736000px;}
.h2_c00312{height:62.880000px;}
.h4_c00312{height:64.020000px;}
.h7_c00312{height:70.422000px;}
.h8_c00312{height:72.312000px;}
.h0_c00312{height:845.100000px;}
.h1_c00312{height:845.250000px;}
.w2_c00312{width:104.875500px;}
.w1_c00312{width:588.000000px;}
.w0_c00312{width:588.075000px;}
.x0_c00312{left:0.000000px;}
.x7_c00312{left:20.250000px;}
.x8_c00312{left:21.300000px;}
.x3_c00312{left:78.300000px;}
.x2_c00312{left:79.650000px;}
.x4_c00312{left:80.700000px;}
.x5_c00312{left:81.750000px;}
.x6_c00312{left:83.400000px;}
.x9_c00312{left:85.800000px;}
.xa_c00312{left:86.850000px;}
.xb_c00312{left:88.200000px;}
.x1_c00312{left:204.150000px;}
.x14_c00312{left:245.851730px;}
.xc_c00312{left:297.000000px;}
.xd_c00312{left:298.650000px;}
.xe_c00312{left:299.700000px;}
.xf_c00312{left:301.050000px;}
.x10_c00312{left:302.400000px;}
.x11_c00312{left:303.750000px;}
.x12_c00312{left:304.800000px;}
.x13_c00312{left:454.350000px;}
@media print{
.v0_c00312{vertical-align:0.000000pt;}
.ls7_c00312{letter-spacing:0.000000pt;}
.ls2_c00312{letter-spacing:0.688000pt;}
.ls1_c00312{letter-spacing:2.666667pt;}
.ls5_c00312{letter-spacing:3.066667pt;}
.ls6_c00312{letter-spacing:5.333333pt;}
.ls3_c00312{letter-spacing:6.800000pt;}
.ls0_c00312{letter-spacing:7.125333pt;}
.ls4_c00312{letter-spacing:35.066667pt;}
.ws3_c00312{word-spacing:-16.053333pt;}
.ws4_c00312{word-spacing:-16.000000pt;}
.ws6_c00312{word-spacing:-15.394667pt;}
.ws5_c00312{word-spacing:-14.666667pt;}
.ws1_c00312{word-spacing:-14.522667pt;}
.ws0_c00312{word-spacing:-12.586667pt;}
.ws7_c00312{word-spacing:0.000000pt;}
.ws2_c00312{word-spacing:0.053333pt;}
._29_c00312{margin-left:-16.373333pt;}
._28_c00312{margin-left:-11.482667pt;}
._f_c00312{margin-left:-9.440000pt;}
._d_c00312{margin-left:-7.520000pt;}
._15_c00312{margin-left:-6.336000pt;}
._8_c00312{margin-left:-5.066667pt;}
._13_c00312{margin-left:-4.069333pt;}
._c_c00312{margin-left:-3.045333pt;}
._e_c00312{margin-left:-1.386667pt;}
._5_c00312{width:1.653333pt;}
._b_c00312{width:2.901333pt;}
._6_c00312{width:4.480000pt;}
._26_c00312{width:5.373333pt;}
._a_c00312{width:6.264000pt;}
._14_c00312{width:7.562667pt;}
._7_c00312{width:8.853333pt;}
._1_c00312{width:9.813333pt;}
._9_c00312{width:10.880000pt;}
._0_c00312{width:12.480000pt;}
._17_c00312{width:13.397333pt;}
._27_c00312{width:14.720000pt;}
._11_c00312{width:15.810667pt;}
._3_c00312{width:17.653333pt;}
._4_c00312{width:19.520000pt;}
._1a_c00312{width:21.120000pt;}
._12_c00312{width:22.661333pt;}
._1f_c00312{width:23.712000pt;}
._1b_c00312{width:24.640000pt;}
._1c_c00312{width:26.874667pt;}
._21_c00312{width:30.698667pt;}
._22_c00312{width:31.786667pt;}
._20_c00312{width:34.784000pt;}
._23_c00312{width:36.053333pt;}
._2_c00312{width:37.813333pt;}
._24_c00312{width:40.320000pt;}
._18_c00312{width:41.762667pt;}
._2b_c00312{width:42.976000pt;}
._1d_c00312{width:61.826667pt;}
._16_c00312{width:62.973333pt;}
._25_c00312{width:69.722667pt;}
._2c_c00312{width:90.984000pt;}
._1e_c00312{width:102.912000pt;}
._2a_c00312{width:125.461333pt;}
._19_c00312{width:181.562667pt;}
._10_c00312{width:204.997333pt;}
.fs3_c00312{font-size:34.666667pt;}
.fs4_c00312{font-size:40.000000pt;}
.fs9_c00312{font-size:42.666667pt;}
.fs1_c00312{font-size:45.333333pt;}
.fs5_c00312{font-size:48.000000pt;}
.fs2_c00312{font-size:50.666667pt;}
.fs0_c00312{font-size:53.333333pt;}
.fs7_c00312{font-size:56.000000pt;}
.fs6_c00312{font-size:58.666667pt;}
.fs8_c00312{font-size:61.333333pt;}
.y0_c00312{bottom:0.000000pt;}
.y56_c00312{bottom:2.760000pt;}
.y55_c00312{bottom:6.425212pt;}
.y54_c00312{bottom:39.066667pt;}
.y53_c00312{bottom:54.933333pt;}
.y2a_c00312{bottom:55.600000pt;}
.y52_c00312{bottom:71.466667pt;}
.y29_c00312{bottom:72.800000pt;}
.y51_c00312{bottom:88.266667pt;}
.y28_c00312{bottom:89.066667pt;}
.y50_c00312{bottom:104.133333pt;}
.y27_c00312{bottom:104.400000pt;}
.y4f_c00312{bottom:120.000000pt;}
.y26_c00312{bottom:121.200000pt;}
.y4e_c00312{bottom:135.866667pt;}
.y25_c00312{bottom:137.600000pt;}
.y4d_c00312{bottom:152.133333pt;}
.y24_c00312{bottom:153.600000pt;}
.y4c_c00312{bottom:168.933333pt;}
.y23_c00312{bottom:169.466667pt;}
.y4b_c00312{bottom:184.266667pt;}
.y22_c00312{bottom:185.200000pt;}
.y4a_c00312{bottom:200.800000pt;}
.y21_c00312{bottom:201.600000pt;}
.y49_c00312{bottom:217.200000pt;}
.y20_c00312{bottom:217.866667pt;}
.y48_c00312{bottom:233.200000pt;}
.y1f_c00312{bottom:234.266667pt;}
.y47_c00312{bottom:248.800000pt;}
.y1e_c00312{bottom:250.266667pt;}
.y46_c00312{bottom:265.600000pt;}
.y1d_c00312{bottom:266.400000pt;}
.y45_c00312{bottom:281.200000pt;}
.y1c_c00312{bottom:282.400000pt;}
.y44_c00312{bottom:297.600000pt;}
.y1b_c00312{bottom:298.533333pt;}
.y43_c00312{bottom:313.200000pt;}
.y1a_c00312{bottom:314.400000pt;}
.y42_c00312{bottom:329.066667pt;}
.y19_c00312{bottom:330.400000pt;}
.y41_c00312{bottom:345.333333pt;}
.y18_c00312{bottom:346.800000pt;}
.y40_c00312{bottom:361.600000pt;}
.y17_c00312{bottom:362.800000pt;}
.y3f_c00312{bottom:377.466667pt;}
.y16_c00312{bottom:379.200000pt;}
.y3e_c00312{bottom:394.000000pt;}
.y15_c00312{bottom:395.200000pt;}
.y3d_c00312{bottom:409.600000pt;}
.y14_c00312{bottom:410.800000pt;}
.y3c_c00312{bottom:425.200000pt;}
.y13_c00312{bottom:426.533333pt;}
.y3b_c00312{bottom:441.600000pt;}
.y12_c00312{bottom:442.000000pt;}
.y3a_c00312{bottom:458.000000pt;}
.y11_c00312{bottom:458.133333pt;}
.y39_c00312{bottom:473.733333pt;}
.y10_c00312{bottom:474.533333pt;}
.y38_c00312{bottom:490.400000pt;}
.yf_c00312{bottom:491.600000pt;}
.y37_c00312{bottom:506.133333pt;}
.ye_c00312{bottom:506.400000pt;}
.y36_c00312{bottom:522.266667pt;}
.yd_c00312{bottom:522.666667pt;}
.yc_c00312{bottom:538.000000pt;}
.y35_c00312{bottom:538.533333pt;}
.yb_c00312{bottom:554.133333pt;}
.y34_c00312{bottom:554.400000pt;}
.ya_c00312{bottom:570.000000pt;}
.y33_c00312{bottom:570.533333pt;}
.y9_c00312{bottom:585.333333pt;}
.y32_c00312{bottom:586.533333pt;}
.y8_c00312{bottom:601.733333pt;}
.y31_c00312{bottom:602.400000pt;}
.y7_c00312{bottom:617.733333pt;}
.y30_c00312{bottom:618.666667pt;}
.y6_c00312{bottom:633.600000pt;}
.y2f_c00312{bottom:634.533333pt;}
.y5_c00312{bottom:649.733333pt;}
.y2e_c00312{bottom:650.666667pt;}
.y4_c00312{bottom:665.733333pt;}
.y2d_c00312{bottom:667.200000pt;}
.y3_c00312{bottom:682.000000pt;}
.y2c_c00312{bottom:683.333333pt;}
.y2_c00312{bottom:698.000000pt;}
.y2b_c00312{bottom:699.333333pt;}
.y1_c00312{bottom:716.133333pt;}
.h9_c00312{height:11.733399pt;}
.h5_c00312{height:37.578667pt;}
.ha_c00312{height:38.937500pt;}
.h6_c00312{height:50.304000pt;}
.h3_c00312{height:53.098667pt;}
.h2_c00312{height:55.893333pt;}
.h4_c00312{height:56.906667pt;}
.h7_c00312{height:62.597333pt;}
.h8_c00312{height:64.277333pt;}
.h0_c00312{height:751.200000pt;}
.h1_c00312{height:751.333333pt;}
.w2_c00312{width:93.222667pt;}
.w1_c00312{width:522.666667pt;}
.w0_c00312{width:522.733333pt;}
.x0_c00312{left:0.000000pt;}
.x7_c00312{left:18.000000pt;}
.x8_c00312{left:18.933333pt;}
.x3_c00312{left:69.600000pt;}
.x2_c00312{left:70.800000pt;}
.x4_c00312{left:71.733333pt;}
.x5_c00312{left:72.666667pt;}
.x6_c00312{left:74.133333pt;}
.x9_c00312{left:76.266667pt;}
.xa_c00312{left:77.200000pt;}
.xb_c00312{left:78.400000pt;}
.x1_c00312{left:181.466667pt;}
.x14_c00312{left:218.534871pt;}
.xc_c00312{left:264.000000pt;}
.xd_c00312{left:265.466667pt;}
.xe_c00312{left:266.400000pt;}
.xf_c00312{left:267.600000pt;}
.x10_c00312{left:268.800000pt;}
.x11_c00312{left:270.000000pt;}
.x12_c00312{left:270.933333pt;}
.x13_c00312{left:403.866667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_64452e35b37d58551f500f9b.woff2')format("woff");}.ff1_c00313{font-family:ff1_c00313;line-height:1.575000;font-style:normal;font-weight:normal;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_41f45891f61d3d03cbbb87fd.woff2')format("woff");}.ff2_c00313{font-family:ff2_c00313;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00313;src:url('chunks/assets/font_ba9dec6590b175880bec881c.woff2')format("woff");}.ff3_c00313{font-family:ff3_c00313;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00313;src:url('chunks/assets/font_7659c036c4cb1e6a7222da78.woff2')format("woff");}.ff4_c00313{font-family:ff4_c00313;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00313;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff5_c00313{font-family:ff5_c00313;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00313;src:url('chunks/assets/font_918f981232076067b0c527f5.woff2')format("woff");}.ff6_c00313{font-family:ff6_c00313;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00313;src:url('chunks/assets/font_a09183cb4a8fdab8dacda2ec.woff2')format("woff");}.ff7_c00313{font-family:ff7_c00313;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00313;src:url('chunks/assets/font_12df661d0b8ea003fcb2316b.woff2')format("woff");}.ff8_c00313{font-family:ff8_c00313;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00313;src:url('chunks/assets/font_64bc162e1f005b415666e235.woff2')format("woff");}.ff9_c00313{font-family:ff9_c00313;line-height:1.575000;font-style:normal;font-weight: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_c00313;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ffa_c00313{font-family:ffa_c00313;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00313{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00313{vertical-align:0.000000px;}
.v1_c00313{vertical-align:106.200000px;}
.ls4_c00313{letter-spacing:0.000000px;}
.ls0_c00313{letter-spacing:2.805000px;}
.ls5_c00313{letter-spacing:3.000000px;}
.ls2_c00313{letter-spacing:6.000000px;}
.ls3_c00313{letter-spacing:12.000000px;}
.ls1_c00313{letter-spacing:13.326000px;}
.ls6_c00313{letter-spacing:15.000000px;}
.sc__c00313{text-shadow:none;}
.sc0_c00313{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00313{-webkit-text-stroke:0px transparent;}
.sc0_c00313{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00313{word-spacing:-32.295000px;}
.ws0_c00313{word-spacing:-27.750000px;}
.ws3_c00313{word-spacing:-18.813000px;}
.ws1_c00313{word-spacing:-18.060000px;}
.ws5_c00313{word-spacing:-18.000000px;}
.ws4_c00313{word-spacing:-14.160000px;}
.ws2_c00313{word-spacing:-4.800000px;}
.ws7_c00313{word-spacing:0.000000px;}
._1a_c00313{margin-left:-12.426000px;}
._c_c00313{margin-left:-9.855000px;}
._1b_c00313{margin-left:-8.742000px;}
._9_c00313{margin-left:-7.497000px;}
._12_c00313{margin-left:-6.309000px;}
._a_c00313{margin-left:-5.157000px;}
._3_c00313{margin-left:-3.717000px;}
._0_c00313{margin-left:-2.520000px;}
._1_c00313{margin-left:-1.071000px;}
._5_c00313{width:1.512000px;}
._d_c00313{width:3.402000px;}
._13_c00313{width:4.473000px;}
._18_c00313{width:5.553000px;}
._6_c00313{width:6.669000px;}
._2_c00313{width:7.938000px;}
._4_c00313{width:9.387000px;}
._11_c00313{width:10.395000px;}
._7_c00313{width:11.844000px;}
._14_c00313{width:13.671000px;}
._8_c00313{width:15.750000px;}
._15_c00313{width:17.388000px;}
._f_c00313{width:19.467000px;}
._19_c00313{width:21.981000px;}
._16_c00313{width:23.484000px;}
._17_c00313{width:25.830000px;}
._e_c00313{width:27.279000px;}
._10_c00313{width:30.114000px;}
._1d_c00313{width:31.986000px;}
._1c_c00313{width:35.253000px;}
._b_c00313{width:36.324000px;}
._1f_c00313{width:42.936000px;}
._1e_c00313{width:48.240000px;}
.fc2_c00313{color:transparent;}
.fc1_c00313{color:rgb(128,128,128);}
.fc0_c00313{color:rgb(0,0,0);}
.fs4_c00313{font-size:45.000000px;}
.fs6_c00313{font-size:48.000000px;}
.fs3_c00313{font-size:51.000000px;}
.fs2_c00313{font-size:60.000000px;}
.fs0_c00313{font-size:63.000000px;}
.fs1_c00313{font-size:66.000000px;}
.fs5_c00313{font-size:201.000000px;}
.y0_c00313{bottom:0.000000px;}
.y50_c00313{bottom:3.105000px;}
.y4f_c00313{bottom:7.228357px;}
.y4e_c00313{bottom:29.130000px;}
.y4d_c00313{bottom:47.280000px;}
.y26_c00313{bottom:59.430000px;}
.y4c_c00313{bottom:64.530000px;}
.y4b_c00313{bottom:82.980000px;}
.y4a_c00313{bottom:101.280000px;}
.y25_c00313{bottom:118.830000px;}
.y49_c00313{bottom:119.580000px;}
.y24_c00313{bottom:136.380000px;}
.y48_c00313{bottom:137.430000px;}
.y23_c00313{bottom:154.680000px;}
.y47_c00313{bottom:155.580000px;}
.y22_c00313{bottom:173.130000px;}
.y46_c00313{bottom:173.880000px;}
.y21_c00313{bottom:191.430000px;}
.y45_c00313{bottom:192.330000px;}
.y20_c00313{bottom:208.980000px;}
.y44_c00313{bottom:209.880000px;}
.y1f_c00313{bottom:227.130000px;}
.y43_c00313{bottom:228.780000px;}
.y1e_c00313{bottom:245.580000px;}
.y42_c00313{bottom:247.080000px;}
.y1d_c00313{bottom:263.730000px;}
.y41_c00313{bottom:264.930000px;}
.y1c_c00313{bottom:281.880000px;}
.y40_c00313{bottom:282.480000px;}
.y1b_c00313{bottom:300.030000px;}
.y3f_c00313{bottom:301.080000px;}
.y1a_c00313{bottom:318.030000px;}
.y3e_c00313{bottom:319.380000px;}
.y19_c00313{bottom:335.880000px;}
.y3d_c00313{bottom:337.230000px;}
.y18_c00313{bottom:354.330000px;}
.y3c_c00313{bottom:355.830000px;}
.y17_c00313{bottom:372.030000px;}
.y3b_c00313{bottom:374.280000px;}
.y16_c00313{bottom:390.030000px;}
.y3a_c00313{bottom:392.580000px;}
.y15_c00313{bottom:408.180000px;}
.y39_c00313{bottom:411.030000px;}
.y14_c00313{bottom:426.330000px;}
.y38_c00313{bottom:428.580000px;}
.y13_c00313{bottom:444.480000px;}
.y37_c00313{bottom:446.580000px;}
.y12_c00313{bottom:463.080000px;}
.y36_c00313{bottom:465.030000px;}
.y11_c00313{bottom:480.930000px;}
.y35_c00313{bottom:483.030000px;}
.y10_c00313{bottom:498.780000px;}
.y34_c00313{bottom:501.480000px;}
.yf_c00313{bottom:516.780000px;}
.y33_c00313{bottom:519.480000px;}
.ye_c00313{bottom:535.380000px;}
.y32_c00313{bottom:537.330000px;}
.yd_c00313{bottom:553.530000px;}
.y31_c00313{bottom:555.930000px;}
.yc_c00313{bottom:571.680000px;}
.y30_c00313{bottom:573.780000px;}
.y2e_c00313{bottom:583.680000px;}
.yb_c00313{bottom:589.380000px;}
.y2f_c00313{bottom:591.930000px;}
.ya_c00313{bottom:607.830000px;}
.y9_c00313{bottom:625.830000px;}
.y8_c00313{bottom:643.980000px;}
.y2d_c00313{bottom:645.930000px;}
.y7_c00313{bottom:662.580000px;}
.y2c_c00313{bottom:663.930000px;}
.y6_c00313{bottom:680.730000px;}
.y2b_c00313{bottom:682.380000px;}
.y5_c00313{bottom:699.630000px;}
.y2a_c00313{bottom:700.680000px;}
.y4_c00313{bottom:716.880000px;}
.y29_c00313{bottom:718.980000px;}
.y3_c00313{bottom:735.180000px;}
.y2_c00313{bottom:753.030000px;}
.y28_c00313{bottom:753.330000px;}
.y1_c00313{bottom:771.480000px;}
.y27_c00313{bottom:791.730000px;}
.ha_c00313{height:13.200074px;}
.hb_c00313{height:43.804688px;}
.h7_c00313{height:59.690918px;}
.h4_c00313{height:62.880000px;}
.h9_c00313{height:64.020000px;}
.h6_c00313{height:64.571777px;}
.h5_c00313{height:66.024000px;}
.h2_c00313{height:67.221000px;}
.h3_c00313{height:69.168000px;}
.h8_c00313{height:210.648000px;}
.h1_c00313{height:825.000000px;}
.h0_c00313{height:825.150000px;}
.w2_c00313{width:104.875500px;}
.w0_c00313{width:548.100000px;}
.w1_c00313{width:548.250000px;}
.x0_c00313{left:0.000000px;}
.x5_c00313{left:71.550000px;}
.x6_c00313{left:72.600000px;}
.x4_c00313{left:73.800000px;}
.x3_c00313{left:75.000000px;}
.x1_c00313{left:76.500000px;}
.x2_c00313{left:77.550000px;}
.x7_c00313{left:81.750000px;}
.x8_c00313{left:95.550000px;}
.x9_c00313{left:129.300000px;}
.xb_c00313{left:144.150000px;}
.xa_c00313{left:152.250000px;}
.x1c_c00313{left:225.864258px;}
.xc_c00313{left:274.350000px;}
.x1a_c00313{left:289.200000px;}
.x19_c00313{left:290.850000px;}
.x18_c00313{left:291.900000px;}
.x17_c00313{left:293.400000px;}
.x16_c00313{left:295.650000px;}
.x13_c00313{left:298.050000px;}
.xe_c00313{left:300.000000px;}
.xf_c00313{left:306.750000px;}
.x10_c00313{left:327.000000px;}
.x15_c00313{left:335.250000px;}
.x14_c00313{left:342.000000px;}
.x11_c00313{left:347.700000px;}
.x12_c00313{left:379.350000px;}
.xd_c00313{left:390.450000px;}
.x1b_c00313{left:471.750000px;}
@media print{
.v0_c00313{vertical-align:0.000000pt;}
.v1_c00313{vertical-align:94.400000pt;}
.ls4_c00313{letter-spacing:0.000000pt;}
.ls0_c00313{letter-spacing:2.493333pt;}
.ls5_c00313{letter-spacing:2.666667pt;}
.ls2_c00313{letter-spacing:5.333333pt;}
.ls3_c00313{letter-spacing:10.666667pt;}
.ls1_c00313{letter-spacing:11.845333pt;}
.ls6_c00313{letter-spacing:13.333333pt;}
.ws6_c00313{word-spacing:-28.706667pt;}
.ws0_c00313{word-spacing:-24.666667pt;}
.ws3_c00313{word-spacing:-16.722667pt;}
.ws1_c00313{word-spacing:-16.053333pt;}
.ws5_c00313{word-spacing:-16.000000pt;}
.ws4_c00313{word-spacing:-12.586667pt;}
.ws2_c00313{word-spacing:-4.266667pt;}
.ws7_c00313{word-spacing:0.000000pt;}
._1a_c00313{margin-left:-11.045333pt;}
._c_c00313{margin-left:-8.760000pt;}
._1b_c00313{margin-left:-7.770667pt;}
._9_c00313{margin-left:-6.664000pt;}
._12_c00313{margin-left:-5.608000pt;}
._a_c00313{margin-left:-4.584000pt;}
._3_c00313{margin-left:-3.304000pt;}
._0_c00313{margin-left:-2.240000pt;}
._1_c00313{margin-left:-0.952000pt;}
._5_c00313{width:1.344000pt;}
._d_c00313{width:3.024000pt;}
._13_c00313{width:3.976000pt;}
._18_c00313{width:4.936000pt;}
._6_c00313{width:5.928000pt;}
._2_c00313{width:7.056000pt;}
._4_c00313{width:8.344000pt;}
._11_c00313{width:9.240000pt;}
._7_c00313{width:10.528000pt;}
._14_c00313{width:12.152000pt;}
._8_c00313{width:14.000000pt;}
._15_c00313{width:15.456000pt;}
._f_c00313{width:17.304000pt;}
._19_c00313{width:19.538667pt;}
._16_c00313{width:20.874667pt;}
._17_c00313{width:22.960000pt;}
._e_c00313{width:24.248000pt;}
._10_c00313{width:26.768000pt;}
._1d_c00313{width:28.432000pt;}
._1c_c00313{width:31.336000pt;}
._b_c00313{width:32.288000pt;}
._1f_c00313{width:38.165333pt;}
._1e_c00313{width:42.880000pt;}
.fs4_c00313{font-size:40.000000pt;}
.fs6_c00313{font-size:42.666667pt;}
.fs3_c00313{font-size:45.333333pt;}
.fs2_c00313{font-size:53.333333pt;}
.fs0_c00313{font-size:56.000000pt;}
.fs1_c00313{font-size:58.666667pt;}
.fs5_c00313{font-size:178.666667pt;}
.y0_c00313{bottom:0.000000pt;}
.y50_c00313{bottom:2.760000pt;}
.y4f_c00313{bottom:6.425206pt;}
.y4e_c00313{bottom:25.893333pt;}
.y4d_c00313{bottom:42.026667pt;}
.y26_c00313{bottom:52.826667pt;}
.y4c_c00313{bottom:57.360000pt;}
.y4b_c00313{bottom:73.760000pt;}
.y4a_c00313{bottom:90.026667pt;}
.y25_c00313{bottom:105.626667pt;}
.y49_c00313{bottom:106.293333pt;}
.y24_c00313{bottom:121.226667pt;}
.y48_c00313{bottom:122.160000pt;}
.y23_c00313{bottom:137.493333pt;}
.y47_c00313{bottom:138.293333pt;}
.y22_c00313{bottom:153.893333pt;}
.y46_c00313{bottom:154.560000pt;}
.y21_c00313{bottom:170.160000pt;}
.y45_c00313{bottom:170.960000pt;}
.y20_c00313{bottom:185.760000pt;}
.y44_c00313{bottom:186.560000pt;}
.y1f_c00313{bottom:201.893333pt;}
.y43_c00313{bottom:203.360000pt;}
.y1e_c00313{bottom:218.293333pt;}
.y42_c00313{bottom:219.626667pt;}
.y1d_c00313{bottom:234.426667pt;}
.y41_c00313{bottom:235.493333pt;}
.y1c_c00313{bottom:250.560000pt;}
.y40_c00313{bottom:251.093333pt;}
.y1b_c00313{bottom:266.693333pt;}
.y3f_c00313{bottom:267.626667pt;}
.y1a_c00313{bottom:282.693333pt;}
.y3e_c00313{bottom:283.893333pt;}
.y19_c00313{bottom:298.560000pt;}
.y3d_c00313{bottom:299.760000pt;}
.y18_c00313{bottom:314.960000pt;}
.y3c_c00313{bottom:316.293333pt;}
.y17_c00313{bottom:330.693333pt;}
.y3b_c00313{bottom:332.693333pt;}
.y16_c00313{bottom:346.693333pt;}
.y3a_c00313{bottom:348.960000pt;}
.y15_c00313{bottom:362.826667pt;}
.y39_c00313{bottom:365.360000pt;}
.y14_c00313{bottom:378.960000pt;}
.y38_c00313{bottom:380.960000pt;}
.y13_c00313{bottom:395.093333pt;}
.y37_c00313{bottom:396.960000pt;}
.y12_c00313{bottom:411.626667pt;}
.y36_c00313{bottom:413.360000pt;}
.y11_c00313{bottom:427.493333pt;}
.y35_c00313{bottom:429.360000pt;}
.y10_c00313{bottom:443.360000pt;}
.y34_c00313{bottom:445.760000pt;}
.yf_c00313{bottom:459.360000pt;}
.y33_c00313{bottom:461.760000pt;}
.ye_c00313{bottom:475.893333pt;}
.y32_c00313{bottom:477.626667pt;}
.yd_c00313{bottom:492.026667pt;}
.y31_c00313{bottom:494.160000pt;}
.yc_c00313{bottom:508.160000pt;}
.y30_c00313{bottom:510.026667pt;}
.y2e_c00313{bottom:518.826667pt;}
.yb_c00313{bottom:523.893333pt;}
.y2f_c00313{bottom:526.160000pt;}
.ya_c00313{bottom:540.293333pt;}
.y9_c00313{bottom:556.293333pt;}
.y8_c00313{bottom:572.426667pt;}
.y2d_c00313{bottom:574.160000pt;}
.y7_c00313{bottom:588.960000pt;}
.y2c_c00313{bottom:590.160000pt;}
.y6_c00313{bottom:605.093333pt;}
.y2b_c00313{bottom:606.560000pt;}
.y5_c00313{bottom:621.893333pt;}
.y2a_c00313{bottom:622.826667pt;}
.y4_c00313{bottom:637.226667pt;}
.y29_c00313{bottom:639.093333pt;}
.y3_c00313{bottom:653.493333pt;}
.y2_c00313{bottom:669.360000pt;}
.y28_c00313{bottom:669.626667pt;}
.y1_c00313{bottom:685.760000pt;}
.y27_c00313{bottom:703.760000pt;}
.ha_c00313{height:11.733399pt;}
.hb_c00313{height:38.937500pt;}
.h7_c00313{height:53.058594pt;}
.h4_c00313{height:55.893333pt;}
.h9_c00313{height:56.906667pt;}
.h6_c00313{height:57.397135pt;}
.h5_c00313{height:58.688000pt;}
.h2_c00313{height:59.752000pt;}
.h3_c00313{height:61.482667pt;}
.h8_c00313{height:187.242667pt;}
.h1_c00313{height:733.333333pt;}
.h0_c00313{height:733.466667pt;}
.w2_c00313{width:93.222667pt;}
.w0_c00313{width:487.200000pt;}
.w1_c00313{width:487.333333pt;}
.x0_c00313{left:0.000000pt;}
.x5_c00313{left:63.600000pt;}
.x6_c00313{left:64.533333pt;}
.x4_c00313{left:65.600000pt;}
.x3_c00313{left:66.666667pt;}
.x1_c00313{left:68.000000pt;}
.x2_c00313{left:68.933333pt;}
.x7_c00313{left:72.666667pt;}
.x8_c00313{left:84.933333pt;}
.x9_c00313{left:114.933333pt;}
.xb_c00313{left:128.133333pt;}
.xa_c00313{left:135.333333pt;}
.x1c_c00313{left:200.768229pt;}
.xc_c00313{left:243.866667pt;}
.x1a_c00313{left:257.066667pt;}
.x19_c00313{left:258.533333pt;}
.x18_c00313{left:259.466667pt;}
.x17_c00313{left:260.800000pt;}
.x16_c00313{left:262.800000pt;}
.x13_c00313{left:264.933333pt;}
.xe_c00313{left:266.666667pt;}
.xf_c00313{left:272.666667pt;}
.x10_c00313{left:290.666667pt;}
.x15_c00313{left:298.000000pt;}
.x14_c00313{left:304.000000pt;}
.x11_c00313{left:309.066667pt;}
.x12_c00313{left:337.200000pt;}
.xd_c00313{left:347.066667pt;}
.x1b_c00313{left:419.333333pt;}
}





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

.ir_c00314:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00314{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00314;src:url('chunks/assets/font_f268e4e6f3ed5a5a4ceb87a9.woff2')format("woff");}.ff1_c00314{font-family:ff1_c00314;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00314;src:url('chunks/assets/font_743fdee5ff58f3c3aaec3b04.woff2')format("woff");}.ff2_c00314{font-family:ff2_c00314;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00314;src:url('chunks/assets/font_00963abb717155f1a7ea411d.woff2')format("woff");}.ff3_c00314{font-family:ff3_c00314;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00314;src:url('chunks/assets/font_5071d7c6c4844985e7ba9592.woff2')format("woff");}.ff4_c00314{font-family:ff4_c00314;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00314;src:url('chunks/assets/font_ac0bc400d72b9d76264e625c.woff2')format("woff");}.ff5_c00314{font-family:ff5_c00314;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00314;src:url('chunks/assets/font_bf7b92b3e9a88256f9e48b45.woff2')format("woff");}.ff6_c00314{font-family:ff6_c00314;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00314;src:url('chunks/assets/font_7164f7fc20c479aacf7b7c04.woff2')format("woff");}.ff7_c00314{font-family:ff7_c00314;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00314;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff8_c00314{font-family:ff8_c00314;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00314{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00314{vertical-align:0.000000px;}
.ls6_c00314{letter-spacing:0.000000px;}
.ls4_c00314{letter-spacing:2.400000px;}
.ls2_c00314{letter-spacing:3.000000px;}
.ls0_c00314{letter-spacing:6.000000px;}
.ls1_c00314{letter-spacing:9.000000px;}
.ls7_c00314{letter-spacing:15.000000px;}
.ls5_c00314{letter-spacing:15.540000px;}
.ls3_c00314{letter-spacing:25.740000px;}
.sc__c00314{text-shadow:none;}
.sc0_c00314{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00314{-webkit-text-stroke:0px transparent;}
.sc0_c00314{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00314{word-spacing:-58.041000px;}
.ws0_c00314{word-spacing:-45.399000px;}
.ws5_c00314{word-spacing:-32.295000px;}
.ws6_c00314{word-spacing:-30.813000px;}
.ws4_c00314{word-spacing:-18.000000px;}
.ws1_c00314{word-spacing:-14.427000px;}
.ws3_c00314{word-spacing:-14.160000px;}
.ws7_c00314{word-spacing:0.000000px;}
._28_c00314{margin-left:-23.016000px;}
._19_c00314{margin-left:-18.570000px;}
._11_c00314{margin-left:-13.209000px;}
._21_c00314{margin-left:-11.643000px;}
._18_c00314{margin-left:-9.930000px;}
._12_c00314{margin-left:-8.901000px;}
._d_c00314{margin-left:-7.497000px;}
._a_c00314{margin-left:-5.355000px;}
._3_c00314{margin-left:-3.528000px;}
._0_c00314{margin-left:-2.415000px;}
._1_c00314{margin-left:-1.035000px;}
._4_c00314{width:1.890000px;}
._10_c00314{width:2.898000px;}
._5_c00314{width:4.596000px;}
._13_c00314{width:6.048000px;}
._f_c00314{width:7.371000px;}
._2_c00314{width:9.387000px;}
._1a_c00314{width:10.518000px;}
._8_c00314{width:11.529000px;}
._6_c00314{width:13.440000px;}
._7_c00314{width:14.538000px;}
._16_c00314{width:15.699000px;}
._e_c00314{width:17.553000px;}
._1f_c00314{width:21.678000px;}
._15_c00314{width:22.920000px;}
._1b_c00314{width:25.203000px;}
._20_c00314{width:26.592000px;}
._22_c00314{width:28.005000px;}
._24_c00314{width:30.219000px;}
._1e_c00314{width:33.165000px;}
._b_c00314{width:35.217000px;}
._9_c00314{width:36.729000px;}
._1c_c00314{width:42.255000px;}
._23_c00314{width:44.166000px;}
._c_c00314{width:48.321000px;}
._1d_c00314{width:50.568000px;}
._26_c00314{width:76.101000px;}
._14_c00314{width:80.430000px;}
._29_c00314{width:103.215000px;}
._25_c00314{width:104.484000px;}
._17_c00314{width:108.339000px;}
._27_c00314{width:484.458000px;}
.fc2_c00314{color:transparent;}
.fc1_c00314{color:rgb(128,128,128);}
.fc0_c00314{color:rgb(0,0,0);}
.fs4_c00314{font-size:45.000000px;}
.fs5_c00314{font-size:48.000000px;}
.fs3_c00314{font-size:57.000000px;}
.fs1_c00314{font-size:60.000000px;}
.fs2_c00314{font-size:63.000000px;}
.fs0_c00314{font-size:69.000000px;}
.y0_c00314{bottom:0.000000px;}
.y54_c00314{bottom:3.105000px;}
.y53_c00314{bottom:7.228369px;}
.y52_c00314{bottom:25.920000px;}
.y51_c00314{bottom:45.570000px;}
.y2b_c00314{bottom:47.820000px;}
.y50_c00314{bottom:64.470000px;}
.y2a_c00314{bottom:66.870000px;}
.y4f_c00314{bottom:81.570000px;}
.y29_c00314{bottom:84.720000px;}
.y4e_c00314{bottom:100.470000px;}
.y28_c00314{bottom:102.870000px;}
.y4d_c00314{bottom:118.170000px;}
.y27_c00314{bottom:120.870000px;}
.y4c_c00314{bottom:136.470000px;}
.y26_c00314{bottom:139.620000px;}
.y4b_c00314{bottom:154.470000px;}
.y25_c00314{bottom:157.620000px;}
.y4a_c00314{bottom:172.470000px;}
.y24_c00314{bottom:175.770000px;}
.y49_c00314{bottom:191.370000px;}
.y23_c00314{bottom:193.620000px;}
.y48_c00314{bottom:209.220000px;}
.y22_c00314{bottom:211.920000px;}
.y47_c00314{bottom:226.470000px;}
.y21_c00314{bottom:230.070000px;}
.y46_c00314{bottom:245.070000px;}
.y20_c00314{bottom:248.070000px;}
.y45_c00314{bottom:263.520000px;}
.y1f_c00314{bottom:266.520000px;}
.y44_c00314{bottom:281.070000px;}
.y1e_c00314{bottom:284.220000px;}
.y43_c00314{bottom:299.370000px;}
.y1d_c00314{bottom:302.370000px;}
.y42_c00314{bottom:316.920000px;}
.y1c_c00314{bottom:319.920000px;}
.y41_c00314{bottom:335.370000px;}
.y1b_c00314{bottom:338.520000px;}
.y40_c00314{bottom:352.920000px;}
.y1a_c00314{bottom:356.970000px;}
.y3f_c00314{bottom:372.270000px;}
.y19_c00314{bottom:374.970000px;}
.y3e_c00314{bottom:389.820000px;}
.y18_c00314{bottom:393.120000px;}
.y3d_c00314{bottom:409.020000px;}
.y17_c00314{bottom:410.970000px;}
.y3c_c00314{bottom:426.870000px;}
.y16_c00314{bottom:428.970000px;}
.y3b_c00314{bottom:445.170000px;}
.y15_c00314{bottom:447.420000px;}
.y3a_c00314{bottom:463.770000px;}
.y14_c00314{bottom:465.120000px;}
.y39_c00314{bottom:480.870000px;}
.y13_c00314{bottom:482.670000px;}
.y38_c00314{bottom:499.170000px;}
.y12_c00314{bottom:500.520000px;}
.y37_c00314{bottom:516.420000px;}
.y11_c00314{bottom:518.370000px;}
.y36_c00314{bottom:535.620000px;}
.y10_c00314{bottom:536.520000px;}
.y35_c00314{bottom:553.170000px;}
.yf_c00314{bottom:554.220000px;}
.y34_c00314{bottom:571.620000px;}
.ye_c00314{bottom:572.070000px;}
.y33_c00314{bottom:589.620000px;}
.yd_c00314{bottom:590.520000px;}
.y32_c00314{bottom:607.170000px;}
.yc_c00314{bottom:608.220000px;}
.y31_c00314{bottom:626.070000px;}
.yb_c00314{bottom:626.670000px;}
.y2_c00314{bottom:640.920000px;}
.ya_c00314{bottom:644.970000px;}
.y30_c00314{bottom:645.270000px;}
.y1_c00314{bottom:660.120000px;}
.y2f_c00314{bottom:662.520000px;}
.y9_c00314{bottom:663.120000px;}
.y8_c00314{bottom:680.070000px;}
.y7_c00314{bottom:698.670000px;}
.y6_c00314{bottom:716.820000px;}
.y2e_c00314{bottom:717.120000px;}
.y2d_c00314{bottom:734.670000px;}
.y5_c00314{bottom:735.120000px;}
.y4_c00314{bottom:752.520000px;}
.y2c_c00314{bottom:752.970000px;}
.y3_c00314{bottom:771.570000px;}
.h7_c00314{height:13.200073px;}
.h8_c00314{height:43.804688px;}
.h5_c00314{height:62.880000px;}
.h2_c00314{height:64.020000px;}
.h3_c00314{height:66.024000px;}
.h4_c00314{height:66.713379px;}
.h6_c00314{height:67.221000px;}
.h1_c00314{height:73.623000px;}
.h0_c00314{height:827.250000px;}
.w2_c00314{width:104.875500px;}
.w1_c00314{width:578.250000px;}
.w0_c00314{width:578.325000px;}
.x0_c00314{left:0.000000px;}
.x3_c00314{left:8.850000px;}
.x1_c00314{left:11.850000px;}
.x7_c00314{left:13.500000px;}
.x2_c00314{left:67.950000px;}
.x5_c00314{left:69.900000px;}
.x6_c00314{left:71.250000px;}
.x9_c00314{left:74.700000px;}
.xa_c00314{left:75.900000px;}
.xb_c00314{left:76.950000px;}
.xc_c00314{left:78.000000px;}
.xd_c00314{left:79.350000px;}
.x8_c00314{left:89.550000px;}
.x4_c00314{left:176.850000px;}
.x19_c00314{left:240.976730px;}
.xe_c00314{left:288.600000px;}
.xf_c00314{left:290.250000px;}
.x10_c00314{left:291.300000px;}
.x11_c00314{left:292.500000px;}
.x12_c00314{left:294.300000px;}
.x13_c00314{left:295.350000px;}
.x14_c00314{left:296.700000px;}
.x15_c00314{left:297.750000px;}
.x16_c00314{left:298.800000px;}
.x17_c00314{left:300.000000px;}
.x18_c00314{left:453.600000px;}
@media print{
.v0_c00314{vertical-align:0.000000pt;}
.ls6_c00314{letter-spacing:0.000000pt;}
.ls4_c00314{letter-spacing:2.133333pt;}
.ls2_c00314{letter-spacing:2.666667pt;}
.ls0_c00314{letter-spacing:5.333333pt;}
.ls1_c00314{letter-spacing:8.000000pt;}
.ls7_c00314{letter-spacing:13.333333pt;}
.ls5_c00314{letter-spacing:13.813333pt;}
.ls3_c00314{letter-spacing:22.880000pt;}
.ws2_c00314{word-spacing:-51.592000pt;}
.ws0_c00314{word-spacing:-40.354667pt;}
.ws5_c00314{word-spacing:-28.706667pt;}
.ws6_c00314{word-spacing:-27.389333pt;}
.ws4_c00314{word-spacing:-16.000000pt;}
.ws1_c00314{word-spacing:-12.824000pt;}
.ws3_c00314{word-spacing:-12.586667pt;}
.ws7_c00314{word-spacing:0.000000pt;}
._28_c00314{margin-left:-20.458667pt;}
._19_c00314{margin-left:-16.506667pt;}
._11_c00314{margin-left:-11.741333pt;}
._21_c00314{margin-left:-10.349333pt;}
._18_c00314{margin-left:-8.826667pt;}
._12_c00314{margin-left:-7.912000pt;}
._d_c00314{margin-left:-6.664000pt;}
._a_c00314{margin-left:-4.760000pt;}
._3_c00314{margin-left:-3.136000pt;}
._0_c00314{margin-left:-2.146667pt;}
._1_c00314{margin-left:-0.920000pt;}
._4_c00314{width:1.680000pt;}
._10_c00314{width:2.576000pt;}
._5_c00314{width:4.085333pt;}
._13_c00314{width:5.376000pt;}
._f_c00314{width:6.552000pt;}
._2_c00314{width:8.344000pt;}
._1a_c00314{width:9.349333pt;}
._8_c00314{width:10.248000pt;}
._6_c00314{width:11.946667pt;}
._7_c00314{width:12.922667pt;}
._16_c00314{width:13.954667pt;}
._e_c00314{width:15.602667pt;}
._1f_c00314{width:19.269333pt;}
._15_c00314{width:20.373333pt;}
._1b_c00314{width:22.402667pt;}
._20_c00314{width:23.637333pt;}
._22_c00314{width:24.893333pt;}
._24_c00314{width:26.861333pt;}
._1e_c00314{width:29.480000pt;}
._b_c00314{width:31.304000pt;}
._9_c00314{width:32.648000pt;}
._1c_c00314{width:37.560000pt;}
._23_c00314{width:39.258667pt;}
._c_c00314{width:42.952000pt;}
._1d_c00314{width:44.949333pt;}
._26_c00314{width:67.645333pt;}
._14_c00314{width:71.493333pt;}
._29_c00314{width:91.746667pt;}
._25_c00314{width:92.874667pt;}
._17_c00314{width:96.301333pt;}
._27_c00314{width:430.629333pt;}
.fs4_c00314{font-size:40.000000pt;}
.fs5_c00314{font-size:42.666667pt;}
.fs3_c00314{font-size:50.666667pt;}
.fs1_c00314{font-size:53.333333pt;}
.fs2_c00314{font-size:56.000000pt;}
.fs0_c00314{font-size:61.333333pt;}
.y0_c00314{bottom:0.000000pt;}
.y54_c00314{bottom:2.760000pt;}
.y53_c00314{bottom:6.425217pt;}
.y52_c00314{bottom:23.040000pt;}
.y51_c00314{bottom:40.506667pt;}
.y2b_c00314{bottom:42.506667pt;}
.y50_c00314{bottom:57.306667pt;}
.y2a_c00314{bottom:59.440000pt;}
.y4f_c00314{bottom:72.506667pt;}
.y29_c00314{bottom:75.306667pt;}
.y4e_c00314{bottom:89.306667pt;}
.y28_c00314{bottom:91.440000pt;}
.y4d_c00314{bottom:105.040000pt;}
.y27_c00314{bottom:107.440000pt;}
.y4c_c00314{bottom:121.306667pt;}
.y26_c00314{bottom:124.106667pt;}
.y4b_c00314{bottom:137.306667pt;}
.y25_c00314{bottom:140.106667pt;}
.y4a_c00314{bottom:153.306667pt;}
.y24_c00314{bottom:156.240000pt;}
.y49_c00314{bottom:170.106667pt;}
.y23_c00314{bottom:172.106667pt;}
.y48_c00314{bottom:185.973333pt;}
.y22_c00314{bottom:188.373333pt;}
.y47_c00314{bottom:201.306667pt;}
.y21_c00314{bottom:204.506667pt;}
.y46_c00314{bottom:217.840000pt;}
.y20_c00314{bottom:220.506667pt;}
.y45_c00314{bottom:234.240000pt;}
.y1f_c00314{bottom:236.906667pt;}
.y44_c00314{bottom:249.840000pt;}
.y1e_c00314{bottom:252.640000pt;}
.y43_c00314{bottom:266.106667pt;}
.y1d_c00314{bottom:268.773333pt;}
.y42_c00314{bottom:281.706667pt;}
.y1c_c00314{bottom:284.373333pt;}
.y41_c00314{bottom:298.106667pt;}
.y1b_c00314{bottom:300.906667pt;}
.y40_c00314{bottom:313.706667pt;}
.y1a_c00314{bottom:317.306667pt;}
.y3f_c00314{bottom:330.906667pt;}
.y19_c00314{bottom:333.306667pt;}
.y3e_c00314{bottom:346.506667pt;}
.y18_c00314{bottom:349.440000pt;}
.y3d_c00314{bottom:363.573333pt;}
.y17_c00314{bottom:365.306667pt;}
.y3c_c00314{bottom:379.440000pt;}
.y16_c00314{bottom:381.306667pt;}
.y3b_c00314{bottom:395.706667pt;}
.y15_c00314{bottom:397.706667pt;}
.y3a_c00314{bottom:412.240000pt;}
.y14_c00314{bottom:413.440000pt;}
.y39_c00314{bottom:427.440000pt;}
.y13_c00314{bottom:429.040000pt;}
.y38_c00314{bottom:443.706667pt;}
.y12_c00314{bottom:444.906667pt;}
.y37_c00314{bottom:459.040000pt;}
.y11_c00314{bottom:460.773333pt;}
.y36_c00314{bottom:476.106667pt;}
.y10_c00314{bottom:476.906667pt;}
.y35_c00314{bottom:491.706667pt;}
.yf_c00314{bottom:492.640000pt;}
.y34_c00314{bottom:508.106667pt;}
.ye_c00314{bottom:508.506667pt;}
.y33_c00314{bottom:524.106667pt;}
.yd_c00314{bottom:524.906667pt;}
.y32_c00314{bottom:539.706667pt;}
.yc_c00314{bottom:540.640000pt;}
.y31_c00314{bottom:556.506667pt;}
.yb_c00314{bottom:557.040000pt;}
.y2_c00314{bottom:569.706667pt;}
.ya_c00314{bottom:573.306667pt;}
.y30_c00314{bottom:573.573333pt;}
.y1_c00314{bottom:586.773333pt;}
.y2f_c00314{bottom:588.906667pt;}
.y9_c00314{bottom:589.440000pt;}
.y8_c00314{bottom:604.506667pt;}
.y7_c00314{bottom:621.040000pt;}
.y6_c00314{bottom:637.173333pt;}
.y2e_c00314{bottom:637.440000pt;}
.y2d_c00314{bottom:653.040000pt;}
.y5_c00314{bottom:653.440000pt;}
.y4_c00314{bottom:668.906667pt;}
.y2c_c00314{bottom:669.306667pt;}
.y3_c00314{bottom:685.840000pt;}
.h7_c00314{height:11.733399pt;}
.h8_c00314{height:38.937500pt;}
.h5_c00314{height:55.893333pt;}
.h2_c00314{height:56.906667pt;}
.h3_c00314{height:58.688000pt;}
.h4_c00314{height:59.300781pt;}
.h6_c00314{height:59.752000pt;}
.h1_c00314{height:65.442667pt;}
.h0_c00314{height:735.333333pt;}
.w2_c00314{width:93.222667pt;}
.w1_c00314{width:514.000000pt;}
.w0_c00314{width:514.066667pt;}
.x0_c00314{left:0.000000pt;}
.x3_c00314{left:7.866667pt;}
.x1_c00314{left:10.533333pt;}
.x7_c00314{left:12.000000pt;}
.x2_c00314{left:60.400000pt;}
.x5_c00314{left:62.133333pt;}
.x6_c00314{left:63.333333pt;}
.x9_c00314{left:66.400000pt;}
.xa_c00314{left:67.466667pt;}
.xb_c00314{left:68.400000pt;}
.xc_c00314{left:69.333333pt;}
.xd_c00314{left:70.533333pt;}
.x8_c00314{left:79.600000pt;}
.x4_c00314{left:157.200000pt;}
.x19_c00314{left:214.201538pt;}
.xe_c00314{left:256.533333pt;}
.xf_c00314{left:258.000000pt;}
.x10_c00314{left:258.933333pt;}
.x11_c00314{left:260.000000pt;}
.x12_c00314{left:261.600000pt;}
.x13_c00314{left:262.533333pt;}
.x14_c00314{left:263.733333pt;}
.x15_c00314{left:264.666667pt;}
.x16_c00314{left:265.600000pt;}
.x17_c00314{left:266.666667pt;}
.x18_c00314{left:403.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_04a1623ae9b76c3b3e8bd7b2.woff2')format("woff");}.ff1_c00315{font-family:ff1_c00315;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00315;src:url('chunks/assets/font_b192f12be23474994e98e5c2.woff2')format("woff");}.ff2_c00315{font-family:ff2_c00315;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00315;src:url('chunks/assets/font_150239c88c5df7b5c0e3aa1d.woff2')format("woff");}.ff3_c00315{font-family:ff3_c00315;line-height:1.575000;font-style:normal;font-weight:normal;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_1daf6c5e854d4d3254cbd91d.woff2')format("woff");}.ff4_c00315{font-family:ff4_c00315;line-height:1.575000;font-style:normal;font-weight:normal;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_405617f19d777b11dfe9758e.woff2')format("woff");}.ff5_c00315{font-family:ff5_c00315;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00315;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff6_c00315{font-family:ff6_c00315;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00315{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00315{vertical-align:0.000000px;}
.ls4_c00315{letter-spacing:0.000000px;}
.ls2_c00315{letter-spacing:3.000000px;}
.ls5_c00315{letter-spacing:6.000000px;}
.ls1_c00315{letter-spacing:12.000000px;}
.ls3_c00315{letter-spacing:15.000000px;}
.ls0_c00315{letter-spacing:41.688000px;}
.sc__c00315{text-shadow:none;}
.sc0_c00315{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00315{-webkit-text-stroke:0px transparent;}
.sc0_c00315{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00315{word-spacing:-60.750000px;}
.ws3_c00315{word-spacing:-51.000000px;}
.ws6_c00315{word-spacing:-20.340000px;}
.ws5_c00315{word-spacing:-19.554000px;}
.ws4_c00315{word-spacing:-18.060000px;}
.ws1_c00315{word-spacing:-18.000000px;}
.ws0_c00315{word-spacing:-14.160000px;}
.ws7_c00315{word-spacing:0.000000px;}
._1b_c00315{margin-left:-53.118000px;}
._1d_c00315{margin-left:-28.413000px;}
._28_c00315{margin-left:-14.208000px;}
._14_c00315{margin-left:-11.940000px;}
._1f_c00315{margin-left:-10.854000px;}
._1e_c00315{margin-left:-9.477000px;}
._2a_c00315{margin-left:-8.241000px;}
._29_c00315{margin-left:-7.119000px;}
._1c_c00315{margin-left:-6.045000px;}
._12_c00315{margin-left:-4.020000px;}
._13_c00315{margin-left:-2.805000px;}
._d_c00315{margin-left:-1.260000px;}
._8_c00315{width:1.080000px;}
._6_c00315{width:2.520000px;}
._f_c00315{width:3.918000px;}
._3_c00315{width:5.040000px;}
._0_c00315{width:6.237000px;}
._1_c00315{width:7.245000px;}
._4_c00315{width:8.379000px;}
._19_c00315{width:9.621000px;}
._e_c00315{width:11.340000px;}
._24_c00315{width:12.606000px;}
._17_c00315{width:13.674000px;}
._26_c00315{width:15.240000px;}
._16_c00315{width:16.560000px;}
._5_c00315{width:18.396000px;}
._a_c00315{width:20.280000px;}
._22_c00315{width:22.440000px;}
._1a_c00315{width:24.105000px;}
._27_c00315{width:25.395000px;}
._9_c00315{width:29.400000px;}
._c_c00315{width:30.780000px;}
._10_c00315{width:32.541000px;}
._7_c00315{width:35.100000px;}
._20_c00315{width:36.774000px;}
._21_c00315{width:45.015000px;}
._25_c00315{width:46.740000px;}
._23_c00315{width:56.166000px;}
._18_c00315{width:71.400000px;}
._b_c00315{width:75.420000px;}
._15_c00315{width:76.860000px;}
._11_c00315{width:78.540000px;}
._2_c00315{width:262.857000px;}
.fc2_c00315{color:transparent;}
.fc1_c00315{color:rgb(128,128,128);}
.fc0_c00315{color:rgb(0,0,0);}
.fs7_c00315{font-size:48.000000px;}
.fs5_c00315{font-size:54.000000px;}
.fs1_c00315{font-size:60.000000px;}
.fs0_c00315{font-size:63.000000px;}
.fs6_c00315{font-size:72.000000px;}
.fs4_c00315{font-size:81.000000px;}
.fs3_c00315{font-size:156.000000px;}
.fs2_c00315{font-size:195.000000px;}
.y0_c00315{bottom:0.000000px;}
.y22_c00315{bottom:3.105000px;}
.y21_c00315{bottom:7.228357px;}
.y20_c00315{bottom:45.630000px;}
.y1f_c00315{bottom:64.830000px;}
.y1e_c00315{bottom:83.430000px;}
.y1d_c00315{bottom:101.580000px;}
.y1c_c00315{bottom:119.580000px;}
.y1b_c00315{bottom:138.330000px;}
.y1a_c00315{bottom:156.330000px;}
.y19_c00315{bottom:174.780000px;}
.y18_c00315{bottom:192.330000px;}
.y17_c00315{bottom:211.230000px;}
.y16_c00315{bottom:229.230000px;}
.y15_c00315{bottom:247.680000px;}
.y14_c00315{bottom:266.280000px;}
.y13_c00315{bottom:284.130000px;}
.y12_c00315{bottom:302.130000px;}
.y11_c00315{bottom:320.730000px;}
.y10_c00315{bottom:338.580000px;}
.yf_c00315{bottom:356.430000px;}
.ye_c00315{bottom:375.030000px;}
.yd_c00315{bottom:393.480000px;}
.yc_c00315{bottom:485.730000px;}
.yb_c00315{bottom:502.980000px;}
.ya_c00315{bottom:521.730000px;}
.y9_c00315{bottom:557.580000px;}
.y8_c00315{bottom:575.880000px;}
.y7_c00315{bottom:593.430000px;}
.y6_c00315{bottom:625.830000px;}
.y5_c00315{bottom:720.930000px;}
.y4_c00315{bottom:739.230000px;}
.y3_c00315{bottom:756.330000px;}
.y2_c00315{bottom:775.980000px;}
.y1_c00315{bottom:795.480000px;}
.h9_c00315{height:13.200074px;}
.ha_c00315{height:43.804688px;}
.h7_c00315{height:56.592000px;}
.h3_c00315{height:62.880000px;}
.h4_c00315{height:64.020000px;}
.h2_c00315{height:66.024000px;}
.h8_c00315{height:75.456000px;}
.h6_c00315{height:84.888000px;}
.h5_c00315{height:208.065000px;}
.h1_c00315{height:837.000000px;}
.h0_c00315{height:837.300000px;}
.w1_c00315{width:104.875500px;}
.w0_c00315{width:556.500000px;}
.x0_c00315{left:0.000000px;}
.x10_c00315{left:90.000000px;}
.xf_c00315{left:91.350000px;}
.xe_c00315{left:92.850000px;}
.xd_c00315{left:94.050000px;}
.xc_c00315{left:95.400000px;}
.xb_c00315{left:96.900000px;}
.xa_c00315{left:98.100000px;}
.x6_c00315{left:104.850000px;}
.x3_c00315{left:105.900000px;}
.x1_c00315{left:107.700000px;}
.x7_c00315{left:120.750000px;}
.x2_c00315{left:146.400000px;}
.x4_c00315{left:156.600000px;}
.x5_c00315{left:209.250000px;}
.x8_c00315{left:220.350000px;}
.x9_c00315{left:221.700000px;}
.x11_c00315{left:230.064240px;}
@media print{
.v0_c00315{vertical-align:0.000000pt;}
.ls4_c00315{letter-spacing:0.000000pt;}
.ls2_c00315{letter-spacing:2.666667pt;}
.ls5_c00315{letter-spacing:5.333333pt;}
.ls1_c00315{letter-spacing:10.666667pt;}
.ls3_c00315{letter-spacing:13.333333pt;}
.ls0_c00315{letter-spacing:37.056000pt;}
.ws2_c00315{word-spacing:-54.000000pt;}
.ws3_c00315{word-spacing:-45.333333pt;}
.ws6_c00315{word-spacing:-18.080000pt;}
.ws5_c00315{word-spacing:-17.381333pt;}
.ws4_c00315{word-spacing:-16.053333pt;}
.ws1_c00315{word-spacing:-16.000000pt;}
.ws0_c00315{word-spacing:-12.586667pt;}
.ws7_c00315{word-spacing:0.000000pt;}
._1b_c00315{margin-left:-47.216000pt;}
._1d_c00315{margin-left:-25.256000pt;}
._28_c00315{margin-left:-12.629333pt;}
._14_c00315{margin-left:-10.613333pt;}
._1f_c00315{margin-left:-9.648000pt;}
._1e_c00315{margin-left:-8.424000pt;}
._2a_c00315{margin-left:-7.325333pt;}
._29_c00315{margin-left:-6.328000pt;}
._1c_c00315{margin-left:-5.373333pt;}
._12_c00315{margin-left:-3.573333pt;}
._13_c00315{margin-left:-2.493333pt;}
._d_c00315{margin-left:-1.120000pt;}
._8_c00315{width:0.960000pt;}
._6_c00315{width:2.240000pt;}
._f_c00315{width:3.482667pt;}
._3_c00315{width:4.480000pt;}
._0_c00315{width:5.544000pt;}
._1_c00315{width:6.440000pt;}
._4_c00315{width:7.448000pt;}
._19_c00315{width:8.552000pt;}
._e_c00315{width:10.080000pt;}
._24_c00315{width:11.205333pt;}
._17_c00315{width:12.154667pt;}
._26_c00315{width:13.546667pt;}
._16_c00315{width:14.720000pt;}
._5_c00315{width:16.352000pt;}
._a_c00315{width:18.026667pt;}
._22_c00315{width:19.946667pt;}
._1a_c00315{width:21.426667pt;}
._27_c00315{width:22.573333pt;}
._9_c00315{width:26.133333pt;}
._c_c00315{width:27.360000pt;}
._10_c00315{width:28.925333pt;}
._7_c00315{width:31.200000pt;}
._20_c00315{width:32.688000pt;}
._21_c00315{width:40.013333pt;}
._25_c00315{width:41.546667pt;}
._23_c00315{width:49.925333pt;}
._18_c00315{width:63.466667pt;}
._b_c00315{width:67.040000pt;}
._15_c00315{width:68.320000pt;}
._11_c00315{width:69.813333pt;}
._2_c00315{width:233.650667pt;}
.fs7_c00315{font-size:42.666667pt;}
.fs5_c00315{font-size:48.000000pt;}
.fs1_c00315{font-size:53.333333pt;}
.fs0_c00315{font-size:56.000000pt;}
.fs6_c00315{font-size:64.000000pt;}
.fs4_c00315{font-size:72.000000pt;}
.fs3_c00315{font-size:138.666667pt;}
.fs2_c00315{font-size:173.333333pt;}
.y0_c00315{bottom:0.000000pt;}
.y22_c00315{bottom:2.760000pt;}
.y21_c00315{bottom:6.425206pt;}
.y20_c00315{bottom:40.560000pt;}
.y1f_c00315{bottom:57.626667pt;}
.y1e_c00315{bottom:74.160000pt;}
.y1d_c00315{bottom:90.293333pt;}
.y1c_c00315{bottom:106.293333pt;}
.y1b_c00315{bottom:122.960000pt;}
.y1a_c00315{bottom:138.960000pt;}
.y19_c00315{bottom:155.360000pt;}
.y18_c00315{bottom:170.960000pt;}
.y17_c00315{bottom:187.760000pt;}
.y16_c00315{bottom:203.760000pt;}
.y15_c00315{bottom:220.160000pt;}
.y14_c00315{bottom:236.693333pt;}
.y13_c00315{bottom:252.560000pt;}
.y12_c00315{bottom:268.560000pt;}
.y11_c00315{bottom:285.093333pt;}
.y10_c00315{bottom:300.960000pt;}
.yf_c00315{bottom:316.826667pt;}
.ye_c00315{bottom:333.360000pt;}
.yd_c00315{bottom:349.760000pt;}
.yc_c00315{bottom:431.760000pt;}
.yb_c00315{bottom:447.093333pt;}
.ya_c00315{bottom:463.760000pt;}
.y9_c00315{bottom:495.626667pt;}
.y8_c00315{bottom:511.893333pt;}
.y7_c00315{bottom:527.493333pt;}
.y6_c00315{bottom:556.293333pt;}
.y5_c00315{bottom:640.826667pt;}
.y4_c00315{bottom:657.093333pt;}
.y3_c00315{bottom:672.293333pt;}
.y2_c00315{bottom:689.760000pt;}
.y1_c00315{bottom:707.093333pt;}
.h9_c00315{height:11.733399pt;}
.ha_c00315{height:38.937500pt;}
.h7_c00315{height:50.304000pt;}
.h3_c00315{height:55.893333pt;}
.h4_c00315{height:56.906667pt;}
.h2_c00315{height:58.688000pt;}
.h8_c00315{height:67.072000pt;}
.h6_c00315{height:75.456000pt;}
.h5_c00315{height:184.946667pt;}
.h1_c00315{height:744.000000pt;}
.h0_c00315{height:744.266667pt;}
.w1_c00315{width:93.222667pt;}
.w0_c00315{width:494.666667pt;}
.x0_c00315{left:0.000000pt;}
.x10_c00315{left:80.000000pt;}
.xf_c00315{left:81.200000pt;}
.xe_c00315{left:82.533333pt;}
.xd_c00315{left:83.600000pt;}
.xc_c00315{left:84.800000pt;}
.xb_c00315{left:86.133333pt;}
.xa_c00315{left:87.200000pt;}
.x6_c00315{left:93.200000pt;}
.x3_c00315{left:94.133333pt;}
.x1_c00315{left:95.733333pt;}
.x7_c00315{left:107.333333pt;}
.x2_c00315{left:130.133333pt;}
.x4_c00315{left:139.200000pt;}
.x5_c00315{left:186.000000pt;}
.x8_c00315{left:195.866667pt;}
.x9_c00315{left:197.066667pt;}
.x11_c00315{left:204.501546pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3d701852a3c760fac2d0eb40.woff2')format("woff");}.ff1_c00316{font-family:ff1_c00316;line-height:1.437000;font-style:normal;font-weight:normal;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_2b9b1a8d2d7ec6dcafba5887.woff2')format("woff");}.ff2_c00316{font-family:ff2_c00316;line-height:1.575000;font-style:normal;font-weight:normal;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_2b1500bce7ff1fd5de72f9f5.woff2')format("woff");}.ff3_c00316{font-family:ff3_c00316;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00316;src:url('chunks/assets/font_4a47419e73bee48b35e0d842.woff2')format("woff");}.ff4_c00316{font-family:ff4_c00316;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00316;src:url('chunks/assets/font_91274de8390af38641092d58.woff2')format("woff");}.ff5_c00316{font-family:ff5_c00316;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00316;src:url('chunks/assets/font_0ce391de997f24f9f9dd37f4.woff2')format("woff");}.ff6_c00316{font-family:ff6_c00316;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00316;src:url('chunks/assets/font_3552ccabb1526759434df5d1.woff2')format("woff");}.ff7_c00316{font-family:ff7_c00316;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00316;src:url('chunks/assets/font_e2cb6dad5d7bc611e63a4b7e.woff2')format("woff");}.ff8_c00316{font-family:ff8_c00316;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00316;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff9_c00316{font-family:ff9_c00316;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00316{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00316{vertical-align:0.000000px;}
.ls9_c00316{letter-spacing:-6.000000px;}
.ls7_c00316{letter-spacing:0.000000px;}
.ls1_c00316{letter-spacing:3.000000px;}
.ls4_c00316{letter-spacing:3.180000px;}
.ls0_c00316{letter-spacing:4.200000px;}
.ls2_c00316{letter-spacing:9.000000px;}
.ls6_c00316{letter-spacing:9.750000px;}
.ls3_c00316{letter-spacing:10.005000px;}
.ls8_c00316{letter-spacing:15.000000px;}
.ls5_c00316{letter-spacing:29.400000px;}
.sc__c00316{text-shadow:none;}
.sc0_c00316{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00316{-webkit-text-stroke:0px transparent;}
.sc0_c00316{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00316{word-spacing:-56.028000px;}
.ws3_c00316{word-spacing:-18.060000px;}
.ws1_c00316{word-spacing:-18.000000px;}
.ws0_c00316{word-spacing:-14.160000px;}
.ws2_c00316{word-spacing:-8.427000px;}
.ws5_c00316{word-spacing:0.000000px;}
._1a_c00316{margin-left:-23.391000px;}
._c_c00316{margin-left:-21.120000px;}
._1b_c00316{margin-left:-16.947000px;}
._16_c00316{margin-left:-13.320000px;}
._17_c00316{margin-left:-12.000000px;}
._13_c00316{margin-left:-9.840000px;}
._19_c00316{margin-left:-7.992000px;}
._18_c00316{margin-left:-6.180000px;}
._15_c00316{margin-left:-4.860000px;}
._a_c00316{margin-left:-3.000000px;}
._14_c00316{margin-left:-1.020000px;}
._f_c00316{width:1.920000px;}
._0_c00316{width:3.120000px;}
._10_c00316{width:4.440000px;}
._11_c00316{width:5.460000px;}
._e_c00316{width:6.600000px;}
._9_c00316{width:8.340000px;}
._7_c00316{width:10.200000px;}
._3_c00316{width:12.240000px;}
._12_c00316{width:13.500000px;}
._2_c00316{width:15.240000px;}
._1c_c00316{width:17.703000px;}
._5_c00316{width:19.260000px;}
._6_c00316{width:21.060000px;}
._8_c00316{width:25.200000px;}
._1e_c00316{width:26.460000px;}
._1d_c00316{width:33.915000px;}
._4_c00316{width:43.740000px;}
._b_c00316{width:155.940000px;}
._1_c00316{width:182.640000px;}
._1f_c00316{width:222.960000px;}
._d_c00316{width:260.340000px;}
.fc2_c00316{color:transparent;}
.fc1_c00316{color:rgb(128,128,128);}
.fc0_c00316{color:rgb(0,0,0);}
.fs2_c00316{font-size:45.000000px;}
.fs7_c00316{font-size:48.000000px;}
.fs0_c00316{font-size:60.000000px;}
.fs1_c00316{font-size:63.000000px;}
.fs6_c00316{font-size:66.000000px;}
.fs3_c00316{font-size:69.000000px;}
.fs5_c00316{font-size:81.000000px;}
.fs4_c00316{font-size:84.000000px;}
.y0_c00316{bottom:0.000000px;}
.y41_c00316{bottom:3.105000px;}
.y40_c00316{bottom:7.228355px;}
.y3e_c00316{bottom:24.885000px;}
.y3d_c00316{bottom:45.435000px;}
.y28_c00316{bottom:48.285000px;}
.y3c_c00316{bottom:64.035000px;}
.y27_c00316{bottom:68.835000px;}
.y3b_c00316{bottom:82.935000px;}
.y26_c00316{bottom:86.085000px;}
.y3a_c00316{bottom:100.935000px;}
.y25_c00316{bottom:104.235000px;}
.y39_c00316{bottom:118.335000px;}
.y24_c00316{bottom:121.485000px;}
.y38_c00316{bottom:136.935000px;}
.y23_c00316{bottom:140.085000px;}
.y37_c00316{bottom:155.835000px;}
.y22_c00316{bottom:158.535000px;}
.y36_c00316{bottom:173.385000px;}
.y21_c00316{bottom:175.785000px;}
.y3f_c00316{bottom:180.885000px;}
.y35_c00316{bottom:191.235000px;}
.y20_c00316{bottom:194.385000px;}
.y34_c00316{bottom:209.535000px;}
.y1f_c00316{bottom:211.935000px;}
.y33_c00316{bottom:227.385000px;}
.y1e_c00316{bottom:230.385000px;}
.y32_c00316{bottom:245.235000px;}
.y1d_c00316{bottom:248.085000px;}
.y31_c00316{bottom:263.835000px;}
.y1c_c00316{bottom:265.635000px;}
.y30_c00316{bottom:281.385000px;}
.y1b_c00316{bottom:283.785000px;}
.y2f_c00316{bottom:298.635000px;}
.y1a_c00316{bottom:301.335000px;}
.y2e_c00316{bottom:317.835000px;}
.y19_c00316{bottom:319.635000px;}
.y2d_c00316{bottom:335.835000px;}
.y18_c00316{bottom:338.085000px;}
.y2c_c00316{bottom:354.285000px;}
.y17_c00316{bottom:355.935000px;}
.y2b_c00316{bottom:371.835000px;}
.y16_c00316{bottom:373.635000px;}
.y2a_c00316{bottom:390.435000px;}
.y15_c00316{bottom:391.785000px;}
.y29_c00316{bottom:408.585000px;}
.y14_c00316{bottom:408.735000px;}
.y13_c00316{bottom:445.185000px;}
.y12_c00316{bottom:480.885000px;}
.y11_c00316{bottom:498.435000px;}
.y10_c00316{bottom:516.735000px;}
.yf_c00316{bottom:535.185000px;}
.ye_c00316{bottom:553.035000px;}
.yd_c00316{bottom:571.035000px;}
.yc_c00316{bottom:589.185000px;}
.yb_c00316{bottom:606.735000px;}
.ya_c00316{bottom:625.635000px;}
.y9_c00316{bottom:643.485000px;}
.y8_c00316{bottom:661.485000px;}
.y7_c00316{bottom:679.335000px;}
.y6_c00316{bottom:698.535000px;}
.y5_c00316{bottom:715.785000px;}
.y4_c00316{bottom:733.635000px;}
.y3_c00316{bottom:751.485000px;}
.y2_c00316{bottom:770.535000px;}
.y1_c00316{bottom:787.635000px;}
.h8_c00316{height:13.200074px;}
.h9_c00316{height:43.804688px;}
.h3_c00316{height:62.880000px;}
.h2_c00316{height:64.020000px;}
.h4_c00316{height:66.024000px;}
.h7_c00316{height:70.422000px;}
.h5_c00316{height:73.623000px;}
.h6_c00316{height:84.888000px;}
.h0_c00316{height:818.625000px;}
.h1_c00316{height:819.000000px;}
.w2_c00316{width:104.875500px;}
.w0_c00316{width:571.875000px;}
.w1_c00316{width:572.250000px;}
.x0_c00316{left:0.000000px;}
.xc_c00316{left:47.550000px;}
.xb_c00316{left:48.600000px;}
.xa_c00316{left:49.650000px;}
.x9_c00316{left:51.000000px;}
.x8_c00316{left:52.650000px;}
.x2_c00316{left:54.000000px;}
.x7_c00316{left:55.050000px;}
.x3_c00316{left:56.250000px;}
.x5_c00316{left:57.600000px;}
.x4_c00316{left:58.650000px;}
.x1_c00316{left:128.550000px;}
.x6_c00316{left:181.500000px;}
.x13_c00316{left:237.751740px;}
.x10_c00316{left:266.400000px;}
.xf_c00316{left:267.750000px;}
.xe_c00316{left:269.100000px;}
.xd_c00316{left:271.050000px;}
.x11_c00316{left:376.050000px;}
.x12_c00316{left:473.250000px;}
@media print{
.v0_c00316{vertical-align:0.000000pt;}
.ls9_c00316{letter-spacing:-5.333333pt;}
.ls7_c00316{letter-spacing:0.000000pt;}
.ls1_c00316{letter-spacing:2.666667pt;}
.ls4_c00316{letter-spacing:2.826667pt;}
.ls0_c00316{letter-spacing:3.733333pt;}
.ls2_c00316{letter-spacing:8.000000pt;}
.ls6_c00316{letter-spacing:8.666667pt;}
.ls3_c00316{letter-spacing:8.893333pt;}
.ls8_c00316{letter-spacing:13.333333pt;}
.ls5_c00316{letter-spacing:26.133333pt;}
.ws4_c00316{word-spacing:-49.802667pt;}
.ws3_c00316{word-spacing:-16.053333pt;}
.ws1_c00316{word-spacing:-16.000000pt;}
.ws0_c00316{word-spacing:-12.586667pt;}
.ws2_c00316{word-spacing:-7.490667pt;}
.ws5_c00316{word-spacing:0.000000pt;}
._1a_c00316{margin-left:-20.792000pt;}
._c_c00316{margin-left:-18.773333pt;}
._1b_c00316{margin-left:-15.064000pt;}
._16_c00316{margin-left:-11.840000pt;}
._17_c00316{margin-left:-10.666667pt;}
._13_c00316{margin-left:-8.746667pt;}
._19_c00316{margin-left:-7.104000pt;}
._18_c00316{margin-left:-5.493333pt;}
._15_c00316{margin-left:-4.320000pt;}
._a_c00316{margin-left:-2.666667pt;}
._14_c00316{margin-left:-0.906667pt;}
._f_c00316{width:1.706667pt;}
._0_c00316{width:2.773333pt;}
._10_c00316{width:3.946667pt;}
._11_c00316{width:4.853333pt;}
._e_c00316{width:5.866667pt;}
._9_c00316{width:7.413333pt;}
._7_c00316{width:9.066667pt;}
._3_c00316{width:10.880000pt;}
._12_c00316{width:12.000000pt;}
._2_c00316{width:13.546667pt;}
._1c_c00316{width:15.736000pt;}
._5_c00316{width:17.120000pt;}
._6_c00316{width:18.720000pt;}
._8_c00316{width:22.400000pt;}
._1e_c00316{width:23.520000pt;}
._1d_c00316{width:30.146667pt;}
._4_c00316{width:38.880000pt;}
._b_c00316{width:138.613333pt;}
._1_c00316{width:162.346667pt;}
._1f_c00316{width:198.186667pt;}
._d_c00316{width:231.413333pt;}
.fs2_c00316{font-size:40.000000pt;}
.fs7_c00316{font-size:42.666667pt;}
.fs0_c00316{font-size:53.333333pt;}
.fs1_c00316{font-size:56.000000pt;}
.fs6_c00316{font-size:58.666667pt;}
.fs3_c00316{font-size:61.333333pt;}
.fs5_c00316{font-size:72.000000pt;}
.fs4_c00316{font-size:74.666667pt;}
.y0_c00316{bottom:0.000000pt;}
.y41_c00316{bottom:2.760000pt;}
.y40_c00316{bottom:6.425204pt;}
.y3e_c00316{bottom:22.120000pt;}
.y3d_c00316{bottom:40.386667pt;}
.y28_c00316{bottom:42.920000pt;}
.y3c_c00316{bottom:56.920000pt;}
.y27_c00316{bottom:61.186667pt;}
.y3b_c00316{bottom:73.720000pt;}
.y26_c00316{bottom:76.520000pt;}
.y3a_c00316{bottom:89.720000pt;}
.y25_c00316{bottom:92.653333pt;}
.y39_c00316{bottom:105.186667pt;}
.y24_c00316{bottom:107.986667pt;}
.y38_c00316{bottom:121.720000pt;}
.y23_c00316{bottom:124.520000pt;}
.y37_c00316{bottom:138.520000pt;}
.y22_c00316{bottom:140.920000pt;}
.y36_c00316{bottom:154.120000pt;}
.y21_c00316{bottom:156.253333pt;}
.y3f_c00316{bottom:160.786667pt;}
.y35_c00316{bottom:169.986667pt;}
.y20_c00316{bottom:172.786667pt;}
.y34_c00316{bottom:186.253333pt;}
.y1f_c00316{bottom:188.386667pt;}
.y33_c00316{bottom:202.120000pt;}
.y1e_c00316{bottom:204.786667pt;}
.y32_c00316{bottom:217.986667pt;}
.y1d_c00316{bottom:220.520000pt;}
.y31_c00316{bottom:234.520000pt;}
.y1c_c00316{bottom:236.120000pt;}
.y30_c00316{bottom:250.120000pt;}
.y1b_c00316{bottom:252.253333pt;}
.y2f_c00316{bottom:265.453333pt;}
.y1a_c00316{bottom:267.853333pt;}
.y2e_c00316{bottom:282.520000pt;}
.y19_c00316{bottom:284.120000pt;}
.y2d_c00316{bottom:298.520000pt;}
.y18_c00316{bottom:300.520000pt;}
.y2c_c00316{bottom:314.920000pt;}
.y17_c00316{bottom:316.386667pt;}
.y2b_c00316{bottom:330.520000pt;}
.y16_c00316{bottom:332.120000pt;}
.y2a_c00316{bottom:347.053333pt;}
.y15_c00316{bottom:348.253333pt;}
.y29_c00316{bottom:363.186667pt;}
.y14_c00316{bottom:363.320000pt;}
.y13_c00316{bottom:395.720000pt;}
.y12_c00316{bottom:427.453333pt;}
.y11_c00316{bottom:443.053333pt;}
.y10_c00316{bottom:459.320000pt;}
.yf_c00316{bottom:475.720000pt;}
.ye_c00316{bottom:491.586667pt;}
.yd_c00316{bottom:507.586667pt;}
.yc_c00316{bottom:523.720000pt;}
.yb_c00316{bottom:539.320000pt;}
.ya_c00316{bottom:556.120000pt;}
.y9_c00316{bottom:571.986667pt;}
.y8_c00316{bottom:587.986667pt;}
.y7_c00316{bottom:603.853333pt;}
.y6_c00316{bottom:620.920000pt;}
.y5_c00316{bottom:636.253333pt;}
.y4_c00316{bottom:652.120000pt;}
.y3_c00316{bottom:667.986667pt;}
.y2_c00316{bottom:684.920000pt;}
.y1_c00316{bottom:700.120000pt;}
.h8_c00316{height:11.733399pt;}
.h9_c00316{height:38.937500pt;}
.h3_c00316{height:55.893333pt;}
.h2_c00316{height:56.906667pt;}
.h4_c00316{height:58.688000pt;}
.h7_c00316{height:62.597333pt;}
.h5_c00316{height:65.442667pt;}
.h6_c00316{height:75.456000pt;}
.h0_c00316{height:727.666667pt;}
.h1_c00316{height:728.000000pt;}
.w2_c00316{width:93.222667pt;}
.w0_c00316{width:508.333333pt;}
.w1_c00316{width:508.666667pt;}
.x0_c00316{left:0.000000pt;}
.xc_c00316{left:42.266667pt;}
.xb_c00316{left:43.200000pt;}
.xa_c00316{left:44.133333pt;}
.x9_c00316{left:45.333333pt;}
.x8_c00316{left:46.800000pt;}
.x2_c00316{left:48.000000pt;}
.x7_c00316{left:48.933333pt;}
.x3_c00316{left:50.000000pt;}
.x5_c00316{left:51.200000pt;}
.x4_c00316{left:52.133333pt;}
.x1_c00316{left:114.266667pt;}
.x6_c00316{left:161.333333pt;}
.x13_c00316{left:211.334880pt;}
.x10_c00316{left:236.800000pt;}
.xf_c00316{left:238.000000pt;}
.xe_c00316{left:239.200000pt;}
.xd_c00316{left:240.933333pt;}
.x11_c00316{left:334.266667pt;}
.x12_c00316{left:420.666667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_80b6f426f674ca27d828b0ce.woff2')format("woff");}.ff1_c00317{font-family:ff1_c00317;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00317;src:url('chunks/assets/font_c88e94e3038256eff481ef6b.woff2')format("woff");}.ff2_c00317{font-family:ff2_c00317;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00317;src:url('chunks/assets/font_1ad43c228740f2c6a1e8319a.woff2')format("woff");}.ff3_c00317{font-family:ff3_c00317;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00317;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff4_c00317{font-family:ff4_c00317;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00317;src:url('chunks/assets/font_b4b5fc8ac724ffe804f999c2.woff2')format("woff");}.ff5_c00317{font-family:ff5_c00317;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00317;src:url('chunks/assets/font_a879a83bd64733b7a804bc59.woff2')format("woff");}.ff6_c00317{font-family:ff6_c00317;line-height:1.012793;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00317;src:url('chunks/assets/font_92796cc2452de109b39142be.woff2')format("woff");}.ff7_c00317{font-family:ff7_c00317;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00317;src:url('chunks/assets/font_acd13a391bcc4c519d5c2ff8.woff2')format("woff");}.ff8_c00317{font-family:ff8_c00317;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00317;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff9_c00317{font-family:ff9_c00317;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00317{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00317{vertical-align:0.000000px;}
.lsb_c00317{letter-spacing:0.000000px;}
.ls6_c00317{letter-spacing:3.000000px;}
.ls2_c00317{letter-spacing:4.347000px;}
.ls8_c00317{letter-spacing:5.400000px;}
.ls3_c00317{letter-spacing:6.000000px;}
.ls4_c00317{letter-spacing:6.777000px;}
.ls1_c00317{letter-spacing:9.904800px;}
.ls7_c00317{letter-spacing:10.800000px;}
.ls0_c00317{letter-spacing:13.560000px;}
.lsa_c00317{letter-spacing:15.000000px;}
.ls5_c00317{letter-spacing:27.777000px;}
.ls9_c00317{letter-spacing:28.140000px;}
.sc__c00317{text-shadow:none;}
.sc0_c00317{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00317{-webkit-text-stroke:0px transparent;}
.sc0_c00317{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00317{word-spacing:-24.072000px;}
.ws5_c00317{word-spacing:-20.340000px;}
.ws0_c00317{word-spacing:-19.500000px;}
.ws6_c00317{word-spacing:-18.060000px;}
.ws3_c00317{word-spacing:-14.160000px;}
.ws2_c00317{word-spacing:-13.623000px;}
.ws7_c00317{word-spacing:0.000000px;}
.ws4_c00317{word-spacing:0.720000px;}
._f_c00317{margin-left:-12.402000px;}
._1d_c00317{margin-left:-11.166000px;}
._24_c00317{margin-left:-9.444000px;}
._d_c00317{margin-left:-7.467000px;}
._1b_c00317{margin-left:-6.351000px;}
._a_c00317{margin-left:-5.130000px;}
._b_c00317{margin-left:-3.936000px;}
._4_c00317{margin-left:-2.016000px;}
._5_c00317{margin-left:-1.008000px;}
._6_c00317{width:1.008000px;}
._7_c00317{width:2.682000px;}
._19_c00317{width:3.780000px;}
._1_c00317{width:4.788000px;}
._2_c00317{width:5.859000px;}
._3_c00317{width:7.182000px;}
._16_c00317{width:8.850000px;}
._1a_c00317{width:9.891000px;}
._9_c00317{width:11.718000px;}
._17_c00317{width:12.816000px;}
._18_c00317{width:14.139000px;}
._e_c00317{width:16.086000px;}
._22_c00317{width:19.140000px;}
._14_c00317{width:20.412000px;}
._15_c00317{width:22.278000px;}
._12_c00317{width:24.774000px;}
._10_c00317{width:27.216000px;}
._13_c00317{width:30.492000px;}
._11_c00317{width:31.617000px;}
._23_c00317{width:33.378000px;}
._21_c00317{width:34.680000px;}
._1c_c00317{width:36.522000px;}
._1f_c00317{width:39.480000px;}
._20_c00317{width:41.256000px;}
._25_c00317{width:45.444000px;}
._26_c00317{width:47.961000px;}
._8_c00317{width:70.236000px;}
._c_c00317{width:147.174000px;}
._1e_c00317{width:161.580000px;}
._0_c00317{width:249.984000px;}
.fc2_c00317{color:transparent;}
.fc1_c00317{color:rgb(128,128,128);}
.fc0_c00317{color:rgb(0,0,0);}
.fs6_c00317{font-size:48.000000px;}
.fs1_c00317{font-size:50.400000px;}
.fs5_c00317{font-size:51.000000px;}
.fs3_c00317{font-size:54.000000px;}
.fs4_c00317{font-size:57.000000px;}
.fs0_c00317{font-size:60.000000px;}
.fs2_c00317{font-size:63.000000px;}
.y0_c00317{bottom:0.000000px;}
.y4e_c00317{bottom:3.105000px;}
.y4d_c00317{bottom:7.228357px;}
.y4c_c00317{bottom:36.780000px;}
.y27_c00317{bottom:53.280000px;}
.y4b_c00317{bottom:54.630000px;}
.y4a_c00317{bottom:72.330000px;}
.y26_c00317{bottom:72.630000px;}
.y49_c00317{bottom:90.780000px;}
.y25_c00317{bottom:91.080000px;}
.y24_c00317{bottom:109.080000px;}
.y48_c00317{bottom:109.380000px;}
.y47_c00317{bottom:127.230000px;}
.y23_c00317{bottom:127.530000px;}
.y22_c00317{bottom:145.530000px;}
.y46_c00317{bottom:145.830000px;}
.y21_c00317{bottom:164.130000px;}
.y45_c00317{bottom:164.430000px;}
.y20_c00317{bottom:181.680000px;}
.y44_c00317{bottom:182.280000px;}
.y43_c00317{bottom:200.430000px;}
.y1f_c00317{bottom:200.580000px;}
.y42_c00317{bottom:218.730000px;}
.y1e_c00317{bottom:219.030000px;}
.y41_c00317{bottom:236.580000px;}
.y1d_c00317{bottom:237.030000px;}
.y40_c00317{bottom:254.430000px;}
.y1c_c00317{bottom:255.180000px;}
.y3f_c00317{bottom:273.030000px;}
.y1b_c00317{bottom:273.480000px;}
.y3e_c00317{bottom:291.030000px;}
.y1a_c00317{bottom:291.330000px;}
.y3d_c00317{bottom:309.780000px;}
.y19_c00317{bottom:328.080000px;}
.y3c_c00317{bottom:346.230000px;}
.y18_c00317{bottom:346.680000px;}
.y3b_c00317{bottom:364.530000px;}
.y17_c00317{bottom:365.280000px;}
.y3a_c00317{bottom:382.680000px;}
.y16_c00317{bottom:383.730000px;}
.y39_c00317{bottom:400.980000px;}
.y15_c00317{bottom:419.130000px;}
.y38_c00317{bottom:419.280000px;}
.y37_c00317{bottom:437.430000px;}
.y14_c00317{bottom:455.730000px;}
.y13_c00317{bottom:473.880000px;}
.y36_c00317{bottom:474.480000px;}
.y12_c00317{bottom:491.730000px;}
.y35_c00317{bottom:492.480000px;}
.y11_c00317{bottom:510.180000px;}
.y34_c00317{bottom:510.330000px;}
.y10_c00317{bottom:528.480000px;}
.y33_c00317{bottom:528.930000px;}
.yf_c00317{bottom:546.780000px;}
.ye_c00317{bottom:565.080000px;}
.y32_c00317{bottom:565.380000px;}
.yd_c00317{bottom:583.530000px;}
.y31_c00317{bottom:583.980000px;}
.yc_c00317{bottom:601.530000px;}
.y30_c00317{bottom:601.830000px;}
.yb_c00317{bottom:619.980000px;}
.y2f_c00317{bottom:620.280000px;}
.ya_c00317{bottom:638.280000px;}
.y9_c00317{bottom:656.730000px;}
.y8_c00317{bottom:675.030000px;}
.y2e_c00317{bottom:675.330000px;}
.y2d_c00317{bottom:693.330000px;}
.y7_c00317{bottom:693.630000px;}
.y6_c00317{bottom:711.180000px;}
.y2c_c00317{bottom:728.730000px;}
.y5_c00317{bottom:729.630000px;}
.y2b_c00317{bottom:747.330000px;}
.y4_c00317{bottom:747.630000px;}
.y2a_c00317{bottom:764.880000px;}
.y3_c00317{bottom:766.080000px;}
.y2_c00317{bottom:783.330000px;}
.y29_c00317{bottom:783.630000px;}
.y1_c00317{bottom:801.930000px;}
.y28_c00317{bottom:802.680000px;}
.h7_c00317{height:13.200074px;}
.h8_c00317{height:43.804688px;}
.h3_c00317{height:52.998047px;}
.h4_c00317{height:59.736000px;}
.h5_c00317{height:62.880000px;}
.h6_c00317{height:64.020000px;}
.h2_c00317{height:66.024000px;}
.h1_c00317{height:837.000000px;}
.h0_c00317{height:837.300000px;}
.w2_c00317{width:104.875500px;}
.w0_c00317{width:565.350000px;}
.w1_c00317{width:565.500000px;}
.x0_c00317{left:0.000000px;}
.x4_c00317{left:28.050000px;}
.x3_c00317{left:29.400000px;}
.xc_c00317{left:33.150000px;}
.xd_c00317{left:34.500000px;}
.x5_c00317{left:90.150000px;}
.x2_c00317{left:93.450000px;}
.x1_c00317{left:95.250000px;}
.xb_c00317{left:97.200000px;}
.xe_c00317{left:99.450000px;}
.xf_c00317{left:100.500000px;}
.x7_c00317{left:103.650000px;}
.xa_c00317{left:108.450000px;}
.x8_c00317{left:117.150000px;}
.x9_c00317{left:151.950000px;}
.x6_c00317{left:174.450000px;}
.x16_c00317{left:234.489258px;}
.x10_c00317{left:306.000000px;}
.x12_c00317{left:314.850000px;}
.x11_c00317{left:315.900000px;}
.x13_c00317{left:317.550000px;}
.x14_c00317{left:318.600000px;}
.x15_c00317{left:493.650000px;}
@media print{
.v0_c00317{vertical-align:0.000000pt;}
.lsb_c00317{letter-spacing:0.000000pt;}
.ls6_c00317{letter-spacing:2.666667pt;}
.ls2_c00317{letter-spacing:3.864000pt;}
.ls8_c00317{letter-spacing:4.800000pt;}
.ls3_c00317{letter-spacing:5.333333pt;}
.ls4_c00317{letter-spacing:6.024000pt;}
.ls1_c00317{letter-spacing:8.804267pt;}
.ls7_c00317{letter-spacing:9.600000pt;}
.ls0_c00317{letter-spacing:12.053333pt;}
.lsa_c00317{letter-spacing:13.333333pt;}
.ls5_c00317{letter-spacing:24.690667pt;}
.ls9_c00317{letter-spacing:25.013333pt;}
.ws1_c00317{word-spacing:-21.397333pt;}
.ws5_c00317{word-spacing:-18.080000pt;}
.ws0_c00317{word-spacing:-17.333333pt;}
.ws6_c00317{word-spacing:-16.053333pt;}
.ws3_c00317{word-spacing:-12.586667pt;}
.ws2_c00317{word-spacing:-12.109333pt;}
.ws7_c00317{word-spacing:0.000000pt;}
.ws4_c00317{word-spacing:0.640000pt;}
._f_c00317{margin-left:-11.024000pt;}
._1d_c00317{margin-left:-9.925333pt;}
._24_c00317{margin-left:-8.394667pt;}
._d_c00317{margin-left:-6.637333pt;}
._1b_c00317{margin-left:-5.645333pt;}
._a_c00317{margin-left:-4.560000pt;}
._b_c00317{margin-left:-3.498667pt;}
._4_c00317{margin-left:-1.792000pt;}
._5_c00317{margin-left:-0.896000pt;}
._6_c00317{width:0.896000pt;}
._7_c00317{width:2.384000pt;}
._19_c00317{width:3.360000pt;}
._1_c00317{width:4.256000pt;}
._2_c00317{width:5.208000pt;}
._3_c00317{width:6.384000pt;}
._16_c00317{width:7.866667pt;}
._1a_c00317{width:8.792000pt;}
._9_c00317{width:10.416000pt;}
._17_c00317{width:11.392000pt;}
._18_c00317{width:12.568000pt;}
._e_c00317{width:14.298667pt;}
._22_c00317{width:17.013333pt;}
._14_c00317{width:18.144000pt;}
._15_c00317{width:19.802667pt;}
._12_c00317{width:22.021333pt;}
._10_c00317{width:24.192000pt;}
._13_c00317{width:27.104000pt;}
._11_c00317{width:28.104000pt;}
._23_c00317{width:29.669333pt;}
._21_c00317{width:30.826667pt;}
._1c_c00317{width:32.464000pt;}
._1f_c00317{width:35.093333pt;}
._20_c00317{width:36.672000pt;}
._25_c00317{width:40.394667pt;}
._26_c00317{width:42.632000pt;}
._8_c00317{width:62.432000pt;}
._c_c00317{width:130.821333pt;}
._1e_c00317{width:143.626667pt;}
._0_c00317{width:222.208000pt;}
.fs6_c00317{font-size:42.666667pt;}
.fs1_c00317{font-size:44.800000pt;}
.fs5_c00317{font-size:45.333333pt;}
.fs3_c00317{font-size:48.000000pt;}
.fs4_c00317{font-size:50.666667pt;}
.fs0_c00317{font-size:53.333333pt;}
.fs2_c00317{font-size:56.000000pt;}
.y0_c00317{bottom:0.000000pt;}
.y4e_c00317{bottom:2.760000pt;}
.y4d_c00317{bottom:6.425206pt;}
.y4c_c00317{bottom:32.693333pt;}
.y27_c00317{bottom:47.360000pt;}
.y4b_c00317{bottom:48.560000pt;}
.y4a_c00317{bottom:64.293333pt;}
.y26_c00317{bottom:64.560000pt;}
.y49_c00317{bottom:80.693333pt;}
.y25_c00317{bottom:80.960000pt;}
.y24_c00317{bottom:96.960000pt;}
.y48_c00317{bottom:97.226667pt;}
.y47_c00317{bottom:113.093333pt;}
.y23_c00317{bottom:113.360000pt;}
.y22_c00317{bottom:129.360000pt;}
.y46_c00317{bottom:129.626667pt;}
.y21_c00317{bottom:145.893333pt;}
.y45_c00317{bottom:146.160000pt;}
.y20_c00317{bottom:161.493333pt;}
.y44_c00317{bottom:162.026667pt;}
.y43_c00317{bottom:178.160000pt;}
.y1f_c00317{bottom:178.293333pt;}
.y42_c00317{bottom:194.426667pt;}
.y1e_c00317{bottom:194.693333pt;}
.y41_c00317{bottom:210.293333pt;}
.y1d_c00317{bottom:210.693333pt;}
.y40_c00317{bottom:226.160000pt;}
.y1c_c00317{bottom:226.826667pt;}
.y3f_c00317{bottom:242.693333pt;}
.y1b_c00317{bottom:243.093333pt;}
.y3e_c00317{bottom:258.693333pt;}
.y1a_c00317{bottom:258.960000pt;}
.y3d_c00317{bottom:275.360000pt;}
.y19_c00317{bottom:291.626667pt;}
.y3c_c00317{bottom:307.760000pt;}
.y18_c00317{bottom:308.160000pt;}
.y3b_c00317{bottom:324.026667pt;}
.y17_c00317{bottom:324.693333pt;}
.y3a_c00317{bottom:340.160000pt;}
.y16_c00317{bottom:341.093333pt;}
.y39_c00317{bottom:356.426667pt;}
.y15_c00317{bottom:372.560000pt;}
.y38_c00317{bottom:372.693333pt;}
.y37_c00317{bottom:388.826667pt;}
.y14_c00317{bottom:405.093333pt;}
.y13_c00317{bottom:421.226667pt;}
.y36_c00317{bottom:421.760000pt;}
.y12_c00317{bottom:437.093333pt;}
.y35_c00317{bottom:437.760000pt;}
.y11_c00317{bottom:453.493333pt;}
.y34_c00317{bottom:453.626667pt;}
.y10_c00317{bottom:469.760000pt;}
.y33_c00317{bottom:470.160000pt;}
.yf_c00317{bottom:486.026667pt;}
.ye_c00317{bottom:502.293333pt;}
.y32_c00317{bottom:502.560000pt;}
.yd_c00317{bottom:518.693333pt;}
.y31_c00317{bottom:519.093333pt;}
.yc_c00317{bottom:534.693333pt;}
.y30_c00317{bottom:534.960000pt;}
.yb_c00317{bottom:551.093333pt;}
.y2f_c00317{bottom:551.360000pt;}
.ya_c00317{bottom:567.360000pt;}
.y9_c00317{bottom:583.760000pt;}
.y8_c00317{bottom:600.026667pt;}
.y2e_c00317{bottom:600.293333pt;}
.y2d_c00317{bottom:616.293333pt;}
.y7_c00317{bottom:616.560000pt;}
.y6_c00317{bottom:632.160000pt;}
.y2c_c00317{bottom:647.760000pt;}
.y5_c00317{bottom:648.560000pt;}
.y2b_c00317{bottom:664.293333pt;}
.y4_c00317{bottom:664.560000pt;}
.y2a_c00317{bottom:679.893333pt;}
.y3_c00317{bottom:680.960000pt;}
.y2_c00317{bottom:696.293333pt;}
.y29_c00317{bottom:696.560000pt;}
.y1_c00317{bottom:712.826667pt;}
.y28_c00317{bottom:713.493333pt;}
.h7_c00317{height:11.733399pt;}
.h8_c00317{height:38.937500pt;}
.h3_c00317{height:47.109375pt;}
.h4_c00317{height:53.098667pt;}
.h5_c00317{height:55.893333pt;}
.h6_c00317{height:56.906667pt;}
.h2_c00317{height:58.688000pt;}
.h1_c00317{height:744.000000pt;}
.h0_c00317{height:744.266667pt;}
.w2_c00317{width:93.222667pt;}
.w0_c00317{width:502.533333pt;}
.w1_c00317{width:502.666667pt;}
.x0_c00317{left:0.000000pt;}
.x4_c00317{left:24.933333pt;}
.x3_c00317{left:26.133333pt;}
.xc_c00317{left:29.466667pt;}
.xd_c00317{left:30.666667pt;}
.x5_c00317{left:80.133333pt;}
.x2_c00317{left:83.066667pt;}
.x1_c00317{left:84.666667pt;}
.xb_c00317{left:86.400000pt;}
.xe_c00317{left:88.400000pt;}
.xf_c00317{left:89.333333pt;}
.x7_c00317{left:92.133333pt;}
.xa_c00317{left:96.400000pt;}
.x8_c00317{left:104.133333pt;}
.x9_c00317{left:135.066667pt;}
.x6_c00317{left:155.066667pt;}
.x16_c00317{left:208.434896pt;}
.x10_c00317{left:272.000000pt;}
.x12_c00317{left:279.866667pt;}
.x11_c00317{left:280.800000pt;}
.x13_c00317{left:282.266667pt;}
.x14_c00317{left:283.200000pt;}
.x15_c00317{left:438.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_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_db7ac30532ca21f706496e4f.woff2')format("woff");}.ff1_c00318{font-family:ff1_c00318;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00318;src:url('chunks/assets/font_6bac995b9fdd2d616c378691.woff2')format("woff");}.ff2_c00318{font-family:ff2_c00318;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00318;src:url('chunks/assets/font_6b5a3a686ae5ceee3986849c.woff2')format("woff");}.ff3_c00318{font-family:ff3_c00318;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00318;src:url('chunks/assets/font_3eb0c65d0463339facff539e.woff2')format("woff");}.ff4_c00318{font-family:ff4_c00318;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00318;src:url('chunks/assets/font_8f7db1c697f566a8bea35959.woff2')format("woff");}.ff5_c00318{font-family:ff5_c00318;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00318;src:url('chunks/assets/font_a09a64d90d7bc7edbb5d4bd1.woff2')format("woff");}.ff6_c00318{font-family:ff6_c00318;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00318;src:url('chunks/assets/font_ca33beba0b270d12f96b777a.woff2')format("woff");}.ff7_c00318{font-family:ff7_c00318;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00318;src:url('chunks/assets/font_ac3724b2633203ea6e4e95b5.woff2')format("woff");}.ff8_c00318{font-family:ff8_c00318;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00318;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff9_c00318{font-family:ff9_c00318;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00318{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00318{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.v0_c00318{vertical-align:0.000000px;}
.ls5_c00318{letter-spacing:0.000000px;}
.ls2_c00318{letter-spacing:0.900000px;}
.ls1_c00318{letter-spacing:3.000000px;}
.ls3_c00318{letter-spacing:6.000000px;}
.ls0_c00318{letter-spacing:19.800000px;}
.ls4_c00318{letter-spacing:35.340000px;}
.sc__c00318{text-shadow:none;}
.sc0_c00318{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00318{-webkit-text-stroke:0px transparent;}
.sc0_c00318{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00318{word-spacing:-31.860000px;}
.ws5_c00318{word-spacing:-16.284000px;}
.ws1_c00318{word-spacing:-16.053000px;}
.ws3_c00318{word-spacing:-14.160000px;}
.ws4_c00318{word-spacing:-11.784000px;}
.ws6_c00318{word-spacing:0.000000px;}
.ws0_c00318{word-spacing:1.440000px;}
._23_c00318{margin-left:-11.913000px;}
._28_c00318{margin-left:-9.948000px;}
._26_c00318{margin-left:-8.496000px;}
._27_c00318{margin-left:-7.488000px;}
._22_c00318{margin-left:-6.192000px;}
._21_c00318{margin-left:-4.731000px;}
._24_c00318{margin-left:-2.766000px;}
._1e_c00318{margin-left:-1.560000px;}
._1d_c00318{width:1.608000px;}
._c_c00318{width:3.216000px;}
._f_c00318{width:4.416000px;}
._25_c00318{width:5.811000px;}
._10_c00318{width:7.200000px;}
._20_c00318{width:8.304000px;}
._e_c00318{width:9.384000px;}
._d_c00318{width:10.512000px;}
._29_c00318{width:11.532000px;}
._17_c00318{width:13.008000px;}
._9_c00318{width:14.136000px;}
._15_c00318{width:15.240000px;}
._8_c00318{width:16.320000px;}
._11_c00318{width:18.192000px;}
._12_c00318{width:19.416000px;}
._b_c00318{width:20.664000px;}
._7_c00318{width:21.744000px;}
._1f_c00318{width:23.472000px;}
._a_c00318{width:24.480000px;}
._5_c00318{width:26.040000px;}
._18_c00318{width:27.456000px;}
._1a_c00318{width:28.464000px;}
._1_c00318{width:29.928000px;}
._14_c00318{width:31.680000px;}
._0_c00318{width:33.624000px;}
._13_c00318{width:35.184000px;}
._16_c00318{width:36.504000px;}
._3_c00318{width:37.896000px;}
._19_c00318{width:39.960000px;}
._4_c00318{width:41.592000px;}
._1c_c00318{width:42.720000px;}
._2_c00318{width:46.416000px;}
._6_c00318{width:48.240000px;}
._1b_c00318{width:54.936000px;}
._2b_c00318{width:113.832000px;}
._2a_c00318{width:131.289000px;}
.fc2_c00318{color:transparent;}
.fc1_c00318{color:rgb(128,128,128);}
.fc0_c00318{color:rgb(0,0,0);}
.fs0_c00318{font-size:24.000000px;}
.fs4_c00318{font-size:45.000000px;}
.fs6_c00318{font-size:48.000000px;}
.fs1_c00318{font-size:57.000000px;}
.fs3_c00318{font-size:60.000000px;}
.fs2_c00318{font-size:63.000000px;}
.fs5_c00318{font-size:69.000000px;}
.y0_c00318{bottom:0.000000px;}
.y48_c00318{bottom:3.105000px;}
.y47_c00318{bottom:7.228357px;}
.y45_c00318{bottom:21.030000px;}
.y29_c00318{bottom:34.080000px;}
.y44_c00318{bottom:45.630000px;}
.y43_c00318{bottom:64.230000px;}
.y42_c00318{bottom:82.080000px;}
.y41_c00318{bottom:101.280000px;}
.y40_c00318{bottom:118.530000px;}
.y3f_c00318{bottom:136.980000px;}
.y3e_c00318{bottom:154.680000px;}
.y3d_c00318{bottom:172.980000px;}
.y3c_c00318{bottom:190.980000px;}
.y22_c00318{bottom:192.480000px;}
.y3b_c00318{bottom:208.980000px;}
.y21_c00318{bottom:209.280000px;}
.y3a_c00318{bottom:227.580000px;}
.y20_c00318{bottom:228.780000px;}
.y39_c00318{bottom:246.030000px;}
.y1f_c00318{bottom:247.080000px;}
.y1e_c00318{bottom:263.880000px;}
.y38_c00318{bottom:281.880000px;}
.y1d_c00318{bottom:282.930000px;}
.y37_c00318{bottom:300.030000px;}
.y1c_c00318{bottom:301.080000px;}
.y36_c00318{bottom:317.880000px;}
.y1b_c00318{bottom:318.330000px;}
.y35_c00318{bottom:336.480000px;}
.y1a_c00318{bottom:336.780000px;}
.y19_c00318{bottom:354.480000px;}
.y34_c00318{bottom:372.630000px;}
.y18_c00318{bottom:372.930000px;}
.y17_c00318{bottom:390.930000px;}
.y16_c00318{bottom:408.780000px;}
.y33_c00318{bottom:409.380000px;}
.y15_c00318{bottom:426.930000px;}
.y14_c00318{bottom:444.480000px;}
.y32_c00318{bottom:445.230000px;}
.y13_c00318{bottom:462.480000px;}
.y31_c00318{bottom:463.380000px;}
.y12_c00318{bottom:480.030000px;}
.y46_c00318{bottom:480.630000px;}
.y30_c00318{bottom:481.380000px;}
.y11_c00318{bottom:497.880000px;}
.y2f_c00318{bottom:499.530000px;}
.y10_c00318{bottom:515.730000px;}
.y2e_c00318{bottom:517.680000px;}
.yf_c00318{bottom:533.580000px;}
.y2d_c00318{bottom:535.680000px;}
.ye_c00318{bottom:551.880000px;}
.y2c_c00318{bottom:553.530000px;}
.yd_c00318{bottom:569.730000px;}
.y2b_c00318{bottom:571.830000px;}
.yc_c00318{bottom:587.580000px;}
.y2a_c00318{bottom:590.580000px;}
.yb_c00318{bottom:605.580000px;}
.y28_c00318{bottom:608.580000px;}
.ya_c00318{bottom:623.730000px;}
.y9_c00318{bottom:641.880000px;}
.y27_c00318{bottom:644.280000px;}
.y8_c00318{bottom:659.580000px;}
.y26_c00318{bottom:662.580000px;}
.y7_c00318{bottom:677.730000px;}
.y25_c00318{bottom:681.180000px;}
.y6_c00318{bottom:695.880000px;}
.y24_c00318{bottom:699.030000px;}
.y5_c00318{bottom:714.480000px;}
.y23_c00318{bottom:717.480000px;}
.y4_c00318{bottom:731.580000px;}
.y3_c00318{bottom:749.580000px;}
.y2_c00318{bottom:767.580000px;}
.y1_c00318{bottom:788.430000px;}
.h9_c00318{height:13.200074px;}
.h2_c00318{height:30.386719px;}
.ha_c00318{height:43.804688px;}
.h3_c00318{height:59.736000px;}
.h6_c00318{height:62.880000px;}
.h7_c00318{height:63.480000px;}
.h5_c00318{height:65.040000px;}
.h4_c00318{height:68.292000px;}
.h8_c00318{height:72.312000px;}
.h1_c00318{height:825.000000px;}
.h0_c00318{height:825.150000px;}
.w1_c00318{width:104.875500px;}
.w0_c00318{width:576.750000px;}
.x0_c00318{left:0.000000px;}
.x11_c00318{left:12.900000px;}
.x6_c00318{left:61.050000px;}
.x5_c00318{left:63.900000px;}
.x3_c00318{left:74.250000px;}
.x4_c00318{left:75.900000px;}
.x2_c00318{left:76.950000px;}
.x8_c00318{left:91.200000px;}
.x7_c00318{left:101.700000px;}
.x9_c00318{left:106.350000px;}
.xa_c00318{left:148.200000px;}
.x1_c00318{left:208.950000px;}
.x18_c00318{left:240.189240px;}
.x14_c00318{left:294.000000px;}
.x12_c00318{left:295.200000px;}
.xb_c00318{left:296.400000px;}
.xc_c00318{left:309.450000px;}
.x15_c00318{left:316.950000px;}
.x13_c00318{left:321.900000px;}
.x10_c00318{left:329.400000px;}
.xd_c00318{left:331.800000px;}
.xe_c00318{left:351.450000px;}
.xf_c00318{left:364.800000px;}
.x16_c00318{left:400.050000px;}
.x17_c00318{left:500.250000px;}
@media print{
.v0_c00318{vertical-align:0.000000pt;}
.ls5_c00318{letter-spacing:0.000000pt;}
.ls2_c00318{letter-spacing:0.800000pt;}
.ls1_c00318{letter-spacing:2.666667pt;}
.ls3_c00318{letter-spacing:5.333333pt;}
.ls0_c00318{letter-spacing:17.600000pt;}
.ls4_c00318{letter-spacing:31.413333pt;}
.ws2_c00318{word-spacing:-28.320000pt;}
.ws5_c00318{word-spacing:-14.474667pt;}
.ws1_c00318{word-spacing:-14.269333pt;}
.ws3_c00318{word-spacing:-12.586667pt;}
.ws4_c00318{word-spacing:-10.474667pt;}
.ws6_c00318{word-spacing:0.000000pt;}
.ws0_c00318{word-spacing:1.280000pt;}
._23_c00318{margin-left:-10.589333pt;}
._28_c00318{margin-left:-8.842667pt;}
._26_c00318{margin-left:-7.552000pt;}
._27_c00318{margin-left:-6.656000pt;}
._22_c00318{margin-left:-5.504000pt;}
._21_c00318{margin-left:-4.205333pt;}
._24_c00318{margin-left:-2.458667pt;}
._1e_c00318{margin-left:-1.386667pt;}
._1d_c00318{width:1.429333pt;}
._c_c00318{width:2.858667pt;}
._f_c00318{width:3.925333pt;}
._25_c00318{width:5.165333pt;}
._10_c00318{width:6.400000pt;}
._20_c00318{width:7.381333pt;}
._e_c00318{width:8.341333pt;}
._d_c00318{width:9.344000pt;}
._29_c00318{width:10.250667pt;}
._17_c00318{width:11.562667pt;}
._9_c00318{width:12.565333pt;}
._15_c00318{width:13.546667pt;}
._8_c00318{width:14.506667pt;}
._11_c00318{width:16.170667pt;}
._12_c00318{width:17.258667pt;}
._b_c00318{width:18.368000pt;}
._7_c00318{width:19.328000pt;}
._1f_c00318{width:20.864000pt;}
._a_c00318{width:21.760000pt;}
._5_c00318{width:23.146667pt;}
._18_c00318{width:24.405333pt;}
._1a_c00318{width:25.301333pt;}
._1_c00318{width:26.602667pt;}
._14_c00318{width:28.160000pt;}
._0_c00318{width:29.888000pt;}
._13_c00318{width:31.274667pt;}
._16_c00318{width:32.448000pt;}
._3_c00318{width:33.685333pt;}
._19_c00318{width:35.520000pt;}
._4_c00318{width:36.970667pt;}
._1c_c00318{width:37.973333pt;}
._2_c00318{width:41.258667pt;}
._6_c00318{width:42.880000pt;}
._1b_c00318{width:48.832000pt;}
._2b_c00318{width:101.184000pt;}
._2a_c00318{width:116.701333pt;}
.fs0_c00318{font-size:21.333333pt;}
.fs4_c00318{font-size:40.000000pt;}
.fs6_c00318{font-size:42.666667pt;}
.fs1_c00318{font-size:50.666667pt;}
.fs3_c00318{font-size:53.333333pt;}
.fs2_c00318{font-size:56.000000pt;}
.fs5_c00318{font-size:61.333333pt;}
.y0_c00318{bottom:0.000000pt;}
.y48_c00318{bottom:2.760000pt;}
.y47_c00318{bottom:6.425206pt;}
.y45_c00318{bottom:18.693333pt;}
.y29_c00318{bottom:30.293333pt;}
.y44_c00318{bottom:40.560000pt;}
.y43_c00318{bottom:57.093333pt;}
.y42_c00318{bottom:72.960000pt;}
.y41_c00318{bottom:90.026667pt;}
.y40_c00318{bottom:105.360000pt;}
.y3f_c00318{bottom:121.760000pt;}
.y3e_c00318{bottom:137.493333pt;}
.y3d_c00318{bottom:153.760000pt;}
.y3c_c00318{bottom:169.760000pt;}
.y22_c00318{bottom:171.093333pt;}
.y3b_c00318{bottom:185.760000pt;}
.y21_c00318{bottom:186.026667pt;}
.y3a_c00318{bottom:202.293333pt;}
.y20_c00318{bottom:203.360000pt;}
.y39_c00318{bottom:218.693333pt;}
.y1f_c00318{bottom:219.626667pt;}
.y1e_c00318{bottom:234.560000pt;}
.y38_c00318{bottom:250.560000pt;}
.y1d_c00318{bottom:251.493333pt;}
.y37_c00318{bottom:266.693333pt;}
.y1c_c00318{bottom:267.626667pt;}
.y36_c00318{bottom:282.560000pt;}
.y1b_c00318{bottom:282.960000pt;}
.y35_c00318{bottom:299.093333pt;}
.y1a_c00318{bottom:299.360000pt;}
.y19_c00318{bottom:315.093333pt;}
.y34_c00318{bottom:331.226667pt;}
.y18_c00318{bottom:331.493333pt;}
.y17_c00318{bottom:347.493333pt;}
.y16_c00318{bottom:363.360000pt;}
.y33_c00318{bottom:363.893333pt;}
.y15_c00318{bottom:379.493333pt;}
.y14_c00318{bottom:395.093333pt;}
.y32_c00318{bottom:395.760000pt;}
.y13_c00318{bottom:411.093333pt;}
.y31_c00318{bottom:411.893333pt;}
.y12_c00318{bottom:426.693333pt;}
.y46_c00318{bottom:427.226667pt;}
.y30_c00318{bottom:427.893333pt;}
.y11_c00318{bottom:442.560000pt;}
.y2f_c00318{bottom:444.026667pt;}
.y10_c00318{bottom:458.426667pt;}
.y2e_c00318{bottom:460.160000pt;}
.yf_c00318{bottom:474.293333pt;}
.y2d_c00318{bottom:476.160000pt;}
.ye_c00318{bottom:490.560000pt;}
.y2c_c00318{bottom:492.026667pt;}
.yd_c00318{bottom:506.426667pt;}
.y2b_c00318{bottom:508.293333pt;}
.yc_c00318{bottom:522.293333pt;}
.y2a_c00318{bottom:524.960000pt;}
.yb_c00318{bottom:538.293333pt;}
.y28_c00318{bottom:540.960000pt;}
.ya_c00318{bottom:554.426667pt;}
.y9_c00318{bottom:570.560000pt;}
.y27_c00318{bottom:572.693333pt;}
.y8_c00318{bottom:586.293333pt;}
.y26_c00318{bottom:588.960000pt;}
.y7_c00318{bottom:602.426667pt;}
.y25_c00318{bottom:605.493333pt;}
.y6_c00318{bottom:618.560000pt;}
.y24_c00318{bottom:621.360000pt;}
.y5_c00318{bottom:635.093333pt;}
.y23_c00318{bottom:637.760000pt;}
.y4_c00318{bottom:650.293333pt;}
.y3_c00318{bottom:666.293333pt;}
.y2_c00318{bottom:682.293333pt;}
.y1_c00318{bottom:700.826667pt;}
.h9_c00318{height:11.733399pt;}
.h2_c00318{height:27.010417pt;}
.ha_c00318{height:38.937500pt;}
.h3_c00318{height:53.098667pt;}
.h6_c00318{height:55.893333pt;}
.h7_c00318{height:56.426667pt;}
.h5_c00318{height:57.813333pt;}
.h4_c00318{height:60.704000pt;}
.h8_c00318{height:64.277333pt;}
.h1_c00318{height:733.333333pt;}
.h0_c00318{height:733.466667pt;}
.w1_c00318{width:93.222667pt;}
.w0_c00318{width:512.666667pt;}
.x0_c00318{left:0.000000pt;}
.x11_c00318{left:11.466667pt;}
.x6_c00318{left:54.266667pt;}
.x5_c00318{left:56.800000pt;}
.x3_c00318{left:66.000000pt;}
.x4_c00318{left:67.466667pt;}
.x2_c00318{left:68.400000pt;}
.x8_c00318{left:81.066667pt;}
.x7_c00318{left:90.400000pt;}
.x9_c00318{left:94.533333pt;}
.xa_c00318{left:131.733333pt;}
.x1_c00318{left:185.733333pt;}
.x18_c00318{left:213.501546pt;}
.x14_c00318{left:261.333333pt;}
.x12_c00318{left:262.400000pt;}
.xb_c00318{left:263.466667pt;}
.xc_c00318{left:275.066667pt;}
.x15_c00318{left:281.733333pt;}
.x13_c00318{left:286.133333pt;}
.x10_c00318{left:292.800000pt;}
.xd_c00318{left:294.933333pt;}
.xe_c00318{left:312.400000pt;}
.xf_c00318{left:324.266667pt;}
.x16_c00318{left:355.600000pt;}
.x17_c00318{left:444.666667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_32c31999d415bfb7c395b412.woff2')format("woff");}.ff1_c00319{font-family:ff1_c00319;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00319;src:url('chunks/assets/font_f0bac69ed0fd2ff1137ce56e.woff2')format("woff");}.ff2_c00319{font-family:ff2_c00319;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00319;src:url('chunks/assets/font_02e5b9e874011284b3b89eb4.woff2')format("woff");}.ff3_c00319{font-family:ff3_c00319;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00319;src:url('chunks/assets/font_b768c1678cb5a37d1024a63b.woff2')format("woff");}.ff4_c00319{font-family:ff4_c00319;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00319;src:url('chunks/assets/font_48dad49aa18f968d83bf4539.woff2')format("woff");}.ff5_c00319{font-family:ff5_c00319;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00319;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff6_c00319{font-family:ff6_c00319;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:108.000000px;}
.ls4_c00319{letter-spacing:0.000000px;}
.ls0_c00319{letter-spacing:1.200000px;}
.ls2_c00319{letter-spacing:2.640000px;}
.ls3_c00319{letter-spacing:3.000000px;}
.ls5_c00319{letter-spacing:6.000000px;}
.ls1_c00319{letter-spacing:14.250000px;}
.sc__c00319{text-shadow:none;}
.sc0_c00319{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00319{-webkit-text-stroke:0px transparent;}
.sc0_c00319{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00319{word-spacing:-51.204000px;}
.ws0_c00319{word-spacing:-18.060000px;}
.ws1_c00319{word-spacing:-18.000000px;}
.ws3_c00319{word-spacing:-14.160000px;}
.ws6_c00319{word-spacing:0.000000px;}
.ws5_c00319{word-spacing:0.240000px;}
.ws2_c00319{word-spacing:3.282000px;}
._25_c00319{margin-left:-14.340000px;}
._2b_c00319{margin-left:-13.260000px;}
._a_c00319{margin-left:-12.000000px;}
._1f_c00319{margin-left:-9.198000px;}
._1e_c00319{margin-left:-7.749000px;}
._5_c00319{margin-left:-6.060000px;}
._9_c00319{margin-left:-4.980000px;}
._4_c00319{margin-left:-3.180000px;}
._6_c00319{margin-left:-1.620000px;}
._7_c00319{width:1.560000px;}
._d_c00319{width:2.580000px;}
._2_c00319{width:4.200000px;}
._15_c00319{width:5.220000px;}
._3_c00319{width:6.540000px;}
._14_c00319{width:7.920000px;}
._11_c00319{width:9.600000px;}
._12_c00319{width:11.100000px;}
._10_c00319{width:12.420000px;}
._e_c00319{width:14.400000px;}
._16_c00319{width:15.480000px;}
._19_c00319{width:16.740000px;}
._1c_c00319{width:18.018000px;}
._24_c00319{width:19.140000px;}
._13_c00319{width:20.760000px;}
._21_c00319{width:21.780000px;}
._1_c00319{width:23.160000px;}
._0_c00319{width:24.480000px;}
._18_c00319{width:25.740000px;}
._17_c00319{width:27.240000px;}
._28_c00319{width:28.680000px;}
._8_c00319{width:29.880000px;}
._b_c00319{width:31.740000px;}
._f_c00319{width:32.880000px;}
._27_c00319{width:34.020000px;}
._20_c00319{width:35.838000px;}
._22_c00319{width:37.740000px;}
._29_c00319{width:39.660000px;}
._c_c00319{width:41.100000px;}
._23_c00319{width:43.200000px;}
._26_c00319{width:46.200000px;}
._2a_c00319{width:49.440000px;}
._1a_c00319{width:53.160000px;}
._1b_c00319{width:137.190000px;}
._1d_c00319{width:266.220000px;}
.fc2_c00319{color:transparent;}
.fc1_c00319{color:rgb(128,128,128);}
.fc0_c00319{color:rgb(0,0,0);}
.fs6_c00319{font-size:48.000000px;}
.fs3_c00319{font-size:57.000000px;}
.fs0_c00319{font-size:60.000000px;}
.fs2_c00319{font-size:63.000000px;}
.fs1_c00319{font-size:66.000000px;}
.fs4_c00319{font-size:69.000000px;}
.fs5_c00319{font-size:204.000000px;}
.y0_c00319{bottom:0.000000px;}
.y48_c00319{bottom:3.105000px;}
.y47_c00319{bottom:7.228357px;}
.y46_c00319{bottom:49.980000px;}
.y45_c00319{bottom:69.180000px;}
.y28_c00319{bottom:71.580000px;}
.y44_c00319{bottom:88.380000px;}
.y27_c00319{bottom:90.780000px;}
.y43_c00319{bottom:106.980000px;}
.y26_c00319{bottom:108.630000px;}
.y42_c00319{bottom:124.830000px;}
.y25_c00319{bottom:126.930000px;}
.y41_c00319{bottom:143.430000px;}
.y24_c00319{bottom:143.730000px;}
.y3f_c00319{bottom:151.980000px;}
.y40_c00319{bottom:160.680000px;}
.y23_c00319{bottom:163.380000px;}
.y22_c00319{bottom:181.530000px;}
.y21_c00319{bottom:199.530000px;}
.y3e_c00319{bottom:216.630000px;}
.y20_c00319{bottom:217.980000px;}
.y3d_c00319{bottom:235.230000px;}
.y1f_c00319{bottom:235.680000px;}
.y3c_c00319{bottom:253.080000px;}
.y1e_c00319{bottom:253.830000px;}
.y1d_c00319{bottom:271.980000px;}
.y3b_c00319{bottom:288.180000px;}
.y1c_c00319{bottom:289.680000px;}
.y1b_c00319{bottom:307.830000px;}
.y1a_c00319{bottom:326.430000px;}
.y3a_c00319{bottom:342.630000px;}
.y19_c00319{bottom:344.280000px;}
.y39_c00319{bottom:361.530000px;}
.y18_c00319{bottom:362.430000px;}
.y38_c00319{bottom:379.980000px;}
.y17_c00319{bottom:381.330000px;}
.y16_c00319{bottom:397.680000px;}
.y15_c00319{bottom:416.130000px;}
.y14_c00319{bottom:433.680000px;}
.y13_c00319{bottom:451.980000px;}
.y12_c00319{bottom:470.430000px;}
.y37_c00319{bottom:470.580000px;}
.y11_c00319{bottom:488.130000px;}
.y36_c00319{bottom:489.330000px;}
.y10_c00319{bottom:506.580000px;}
.y35_c00319{bottom:506.880000px;}
.yf_c00319{bottom:524.580000px;}
.ye_c00319{bottom:542.730000px;}
.y34_c00319{bottom:543.030000px;}
.yd_c00319{bottom:561.030000px;}
.y33_c00319{bottom:579.180000px;}
.yc_c00319{bottom:579.480000px;}
.yb_c00319{bottom:597.030000px;}
.y32_c00319{bottom:597.480000px;}
.y31_c00319{bottom:615.030000px;}
.ya_c00319{bottom:615.330000px;}
.y9_c00319{bottom:633.180000px;}
.y30_c00319{bottom:633.780000px;}
.y8_c00319{bottom:651.480000px;}
.y2f_c00319{bottom:651.780000px;}
.y7_c00319{bottom:669.930000px;}
.y2e_c00319{bottom:670.230000px;}
.y6_c00319{bottom:688.230000px;}
.y2d_c00319{bottom:705.480000px;}
.y5_c00319{bottom:706.080000px;}
.y4_c00319{bottom:724.230000px;}
.y2c_c00319{bottom:724.380000px;}
.y2b_c00319{bottom:742.530000px;}
.y3_c00319{bottom:743.130000px;}
.y2a_c00319{bottom:760.680000px;}
.y2_c00319{bottom:761.430000px;}
.y1_c00319{bottom:778.980000px;}
.y29_c00319{bottom:799.230000px;}
.h7_c00319{height:13.200074px;}
.h8_c00319{height:43.804688px;}
.h2_c00319{height:62.880000px;}
.h3_c00319{height:64.020000px;}
.h4_c00319{height:70.422000px;}
.h5_c00319{height:73.623000px;}
.h6_c00319{height:213.792000px;}
.h1_c00319{height:837.000000px;}
.h0_c00319{height:837.300000px;}
.w2_c00319{width:104.875500px;}
.w0_c00319{width:565.350000px;}
.w1_c00319{width:565.500000px;}
.x0_c00319{left:0.000000px;}
.x3_c00319{left:36.750000px;}
.x2_c00319{left:99.900000px;}
.x1_c00319{left:101.250000px;}
.x4_c00319{left:103.050000px;}
.xf_c00319{left:234.489258px;}
.x5_c00319{left:306.750000px;}
.x6_c00319{left:319.650000px;}
.x7_c00319{left:321.000000px;}
.x8_c00319{left:322.200000px;}
.xa_c00319{left:339.150000px;}
.xd_c00319{left:360.150000px;}
.xc_c00319{left:365.850000px;}
.xb_c00319{left:377.400000px;}
.x9_c00319{left:392.850000px;}
.xe_c00319{left:491.100000px;}
@media print{
.v0_c00319{vertical-align:0.000000pt;}
.v1_c00319{vertical-align:96.000000pt;}
.ls4_c00319{letter-spacing:0.000000pt;}
.ls0_c00319{letter-spacing:1.066667pt;}
.ls2_c00319{letter-spacing:2.346667pt;}
.ls3_c00319{letter-spacing:2.666667pt;}
.ls5_c00319{letter-spacing:5.333333pt;}
.ls1_c00319{letter-spacing:12.666667pt;}
.ws4_c00319{word-spacing:-45.514667pt;}
.ws0_c00319{word-spacing:-16.053333pt;}
.ws1_c00319{word-spacing:-16.000000pt;}
.ws3_c00319{word-spacing:-12.586667pt;}
.ws6_c00319{word-spacing:0.000000pt;}
.ws5_c00319{word-spacing:0.213333pt;}
.ws2_c00319{word-spacing:2.917333pt;}
._25_c00319{margin-left:-12.746667pt;}
._2b_c00319{margin-left:-11.786667pt;}
._a_c00319{margin-left:-10.666667pt;}
._1f_c00319{margin-left:-8.176000pt;}
._1e_c00319{margin-left:-6.888000pt;}
._5_c00319{margin-left:-5.386667pt;}
._9_c00319{margin-left:-4.426667pt;}
._4_c00319{margin-left:-2.826667pt;}
._6_c00319{margin-left:-1.440000pt;}
._7_c00319{width:1.386667pt;}
._d_c00319{width:2.293333pt;}
._2_c00319{width:3.733333pt;}
._15_c00319{width:4.640000pt;}
._3_c00319{width:5.813333pt;}
._14_c00319{width:7.040000pt;}
._11_c00319{width:8.533333pt;}
._12_c00319{width:9.866667pt;}
._10_c00319{width:11.040000pt;}
._e_c00319{width:12.800000pt;}
._16_c00319{width:13.760000pt;}
._19_c00319{width:14.880000pt;}
._1c_c00319{width:16.016000pt;}
._24_c00319{width:17.013333pt;}
._13_c00319{width:18.453333pt;}
._21_c00319{width:19.360000pt;}
._1_c00319{width:20.586667pt;}
._0_c00319{width:21.760000pt;}
._18_c00319{width:22.880000pt;}
._17_c00319{width:24.213333pt;}
._28_c00319{width:25.493333pt;}
._8_c00319{width:26.560000pt;}
._b_c00319{width:28.213333pt;}
._f_c00319{width:29.226667pt;}
._27_c00319{width:30.240000pt;}
._20_c00319{width:31.856000pt;}
._22_c00319{width:33.546667pt;}
._29_c00319{width:35.253333pt;}
._c_c00319{width:36.533333pt;}
._23_c00319{width:38.400000pt;}
._26_c00319{width:41.066667pt;}
._2a_c00319{width:43.946667pt;}
._1a_c00319{width:47.253333pt;}
._1b_c00319{width:121.946667pt;}
._1d_c00319{width:236.640000pt;}
.fs6_c00319{font-size:42.666667pt;}
.fs3_c00319{font-size:50.666667pt;}
.fs0_c00319{font-size:53.333333pt;}
.fs2_c00319{font-size:56.000000pt;}
.fs1_c00319{font-size:58.666667pt;}
.fs4_c00319{font-size:61.333333pt;}
.fs5_c00319{font-size:181.333333pt;}
.y0_c00319{bottom:0.000000pt;}
.y48_c00319{bottom:2.760000pt;}
.y47_c00319{bottom:6.425206pt;}
.y46_c00319{bottom:44.426667pt;}
.y45_c00319{bottom:61.493333pt;}
.y28_c00319{bottom:63.626667pt;}
.y44_c00319{bottom:78.560000pt;}
.y27_c00319{bottom:80.693333pt;}
.y43_c00319{bottom:95.093333pt;}
.y26_c00319{bottom:96.560000pt;}
.y42_c00319{bottom:110.960000pt;}
.y25_c00319{bottom:112.826667pt;}
.y41_c00319{bottom:127.493333pt;}
.y24_c00319{bottom:127.760000pt;}
.y3f_c00319{bottom:135.093333pt;}
.y40_c00319{bottom:142.826667pt;}
.y23_c00319{bottom:145.226667pt;}
.y22_c00319{bottom:161.360000pt;}
.y21_c00319{bottom:177.360000pt;}
.y3e_c00319{bottom:192.560000pt;}
.y20_c00319{bottom:193.760000pt;}
.y3d_c00319{bottom:209.093333pt;}
.y1f_c00319{bottom:209.493333pt;}
.y3c_c00319{bottom:224.960000pt;}
.y1e_c00319{bottom:225.626667pt;}
.y1d_c00319{bottom:241.760000pt;}
.y3b_c00319{bottom:256.160000pt;}
.y1c_c00319{bottom:257.493333pt;}
.y1b_c00319{bottom:273.626667pt;}
.y1a_c00319{bottom:290.160000pt;}
.y3a_c00319{bottom:304.560000pt;}
.y19_c00319{bottom:306.026667pt;}
.y39_c00319{bottom:321.360000pt;}
.y18_c00319{bottom:322.160000pt;}
.y38_c00319{bottom:337.760000pt;}
.y17_c00319{bottom:338.960000pt;}
.y16_c00319{bottom:353.493333pt;}
.y15_c00319{bottom:369.893333pt;}
.y14_c00319{bottom:385.493333pt;}
.y13_c00319{bottom:401.760000pt;}
.y12_c00319{bottom:418.160000pt;}
.y37_c00319{bottom:418.293333pt;}
.y11_c00319{bottom:433.893333pt;}
.y36_c00319{bottom:434.960000pt;}
.y10_c00319{bottom:450.293333pt;}
.y35_c00319{bottom:450.560000pt;}
.yf_c00319{bottom:466.293333pt;}
.ye_c00319{bottom:482.426667pt;}
.y34_c00319{bottom:482.693333pt;}
.yd_c00319{bottom:498.693333pt;}
.y33_c00319{bottom:514.826667pt;}
.yc_c00319{bottom:515.093333pt;}
.yb_c00319{bottom:530.693333pt;}
.y32_c00319{bottom:531.093333pt;}
.y31_c00319{bottom:546.693333pt;}
.ya_c00319{bottom:546.960000pt;}
.y9_c00319{bottom:562.826667pt;}
.y30_c00319{bottom:563.360000pt;}
.y8_c00319{bottom:579.093333pt;}
.y2f_c00319{bottom:579.360000pt;}
.y7_c00319{bottom:595.493333pt;}
.y2e_c00319{bottom:595.760000pt;}
.y6_c00319{bottom:611.760000pt;}
.y2d_c00319{bottom:627.093333pt;}
.y5_c00319{bottom:627.626667pt;}
.y4_c00319{bottom:643.760000pt;}
.y2c_c00319{bottom:643.893333pt;}
.y2b_c00319{bottom:660.026667pt;}
.y3_c00319{bottom:660.560000pt;}
.y2a_c00319{bottom:676.160000pt;}
.y2_c00319{bottom:676.826667pt;}
.y1_c00319{bottom:692.426667pt;}
.y29_c00319{bottom:710.426667pt;}
.h7_c00319{height:11.733399pt;}
.h8_c00319{height:38.937500pt;}
.h2_c00319{height:55.893333pt;}
.h3_c00319{height:56.906667pt;}
.h4_c00319{height:62.597333pt;}
.h5_c00319{height:65.442667pt;}
.h6_c00319{height:190.037333pt;}
.h1_c00319{height:744.000000pt;}
.h0_c00319{height:744.266667pt;}
.w2_c00319{width:93.222667pt;}
.w0_c00319{width:502.533333pt;}
.w1_c00319{width:502.666667pt;}
.x0_c00319{left:0.000000pt;}
.x3_c00319{left:32.666667pt;}
.x2_c00319{left:88.800000pt;}
.x1_c00319{left:90.000000pt;}
.x4_c00319{left:91.600000pt;}
.xf_c00319{left:208.434896pt;}
.x5_c00319{left:272.666667pt;}
.x6_c00319{left:284.133333pt;}
.x7_c00319{left:285.333333pt;}
.x8_c00319{left:286.400000pt;}
.xa_c00319{left:301.466667pt;}
.xd_c00319{left:320.133333pt;}
.xc_c00319{left:325.200000pt;}
.xb_c00319{left:335.466667pt;}
.x9_c00319{left:349.200000pt;}
.xe_c00319{left:436.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_51eaec0e979914cf02e6957d.woff2')format("woff");}.ff1_c00320{font-family:ff1_c00320;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00320;src:url('chunks/assets/font_48fd6ac302fd1e7730eb31fa.woff2')format("woff");}.ff2_c00320{font-family:ff2_c00320;line-height:1.437000;font-style:normal;font-weight:normal;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_7a6a8e240139a83a88560283.woff2')format("woff");}.ff3_c00320{font-family:ff3_c00320;line-height:1.437000;font-style:normal;font-weight:normal;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_1cf4d89a7f080b458f1ad1f5.woff2')format("woff");}.ff4_c00320{font-family:ff4_c00320;line-height:1.437000;font-style:normal;font-weight:normal;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_ed416c24d2e65f4b1031d0d0.woff2')format("woff");}.ff5_c00320{font-family:ff5_c00320;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00320;src:url('chunks/assets/font_0696cd671e7f221146ed60ce.woff2')format("woff");}.ff6_c00320{font-family:ff6_c00320;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00320;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff7_c00320{font-family:ff7_c00320;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00320{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00320{vertical-align:0.000000px;}
.ls3_c00320{letter-spacing:0.000000px;}
.ls1_c00320{letter-spacing:1.605000px;}
.ls0_c00320{letter-spacing:3.000000px;}
.ls2_c00320{letter-spacing:6.000000px;}
.sc__c00320{text-shadow:none;}
.sc0_c00320{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00320{-webkit-text-stroke:0px transparent;}
.sc0_c00320{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00320{word-spacing:-32.295000px;}
.ws4_c00320{word-spacing:-20.340000px;}
.ws3_c00320{word-spacing:-15.801000px;}
.ws2_c00320{word-spacing:-14.160000px;}
.ws5_c00320{word-spacing:0.000000px;}
.ws0_c00320{word-spacing:7.140000px;}
._19_c00320{margin-left:-21.540000px;}
._9_c00320{margin-left:-13.752000px;}
._7_c00320{margin-left:-12.240000px;}
._5_c00320{margin-left:-10.800000px;}
._6_c00320{margin-left:-9.504000px;}
._2_c00320{margin-left:-7.992000px;}
._10_c00320{margin-left:-6.528000px;}
._3_c00320{margin-left:-5.256000px;}
._b_c00320{margin-left:-4.248000px;}
._0_c00320{margin-left:-2.880000px;}
._c_c00320{margin-left:-1.800000px;}
._d_c00320{width:1.296000px;}
._1_c00320{width:2.592000px;}
._e_c00320{width:3.939000px;}
._4_c00320{width:5.400000px;}
._8_c00320{width:7.200000px;}
._17_c00320{width:8.280000px;}
._15_c00320{width:9.756000px;}
._14_c00320{width:11.484000px;}
._1f_c00320{width:13.191000px;}
._f_c00320{width:14.472000px;}
._27_c00320{width:15.837000px;}
._a_c00320{width:17.496000px;}
._1b_c00320{width:19.833000px;}
._11_c00320{width:21.264000px;}
._13_c00320{width:22.728000px;}
._22_c00320{width:23.760000px;}
._12_c00320{width:25.200000px;}
._16_c00320{width:26.772000px;}
._28_c00320{width:28.311000px;}
._26_c00320{width:30.198000px;}
._29_c00320{width:32.016000px;}
._18_c00320{width:33.708000px;}
._1d_c00320{width:35.040000px;}
._2a_c00320{width:40.980000px;}
._1c_c00320{width:42.984000px;}
._20_c00320{width:47.556000px;}
._1a_c00320{width:69.387000px;}
._25_c00320{width:92.628000px;}
._23_c00320{width:121.173000px;}
._1e_c00320{width:139.332000px;}
._24_c00320{width:156.900000px;}
._21_c00320{width:218.232000px;}
.fc2_c00320{color:transparent;}
.fc1_c00320{color:rgb(128,128,128);}
.fc0_c00320{color:rgb(0,0,0);}
.fs4_c00320{font-size:45.000000px;}
.fs7_c00320{font-size:48.000000px;}
.fs1_c00320{font-size:51.000000px;}
.fs5_c00320{font-size:57.000000px;}
.fs2_c00320{font-size:60.000000px;}
.fs6_c00320{font-size:69.000000px;}
.fs0_c00320{font-size:72.000000px;}
.fs3_c00320{font-size:78.000000px;}
.y0_c00320{bottom:0.000000px;}
.y53_c00320{bottom:3.105000px;}
.y52_c00320{bottom:7.228371px;}
.y29_c00320{bottom:71.865000px;}
.y51_c00320{bottom:73.965000px;}
.y28_c00320{bottom:90.165000px;}
.y50_c00320{bottom:92.265000px;}
.y27_c00320{bottom:108.315000px;}
.y4f_c00320{bottom:110.115000px;}
.y26_c00320{bottom:126.615000px;}
.y4e_c00320{bottom:128.565000px;}
.y25_c00320{bottom:144.765000px;}
.y4d_c00320{bottom:146.565000px;}
.y24_c00320{bottom:162.465000px;}
.y4c_c00320{bottom:164.115000px;}
.y23_c00320{bottom:180.915000px;}
.y4b_c00320{bottom:182.565000px;}
.y22_c00320{bottom:198.765000px;}
.y4a_c00320{bottom:201.165000px;}
.y21_c00320{bottom:216.015000px;}
.y49_c00320{bottom:218.715000px;}
.y20_c00320{bottom:234.315000px;}
.y48_c00320{bottom:236.565000px;}
.y1f_c00320{bottom:251.865000px;}
.y47_c00320{bottom:254.265000px;}
.y1e_c00320{bottom:270.765000px;}
.y46_c00320{bottom:273.015000px;}
.y1d_c00320{bottom:288.015000px;}
.y45_c00320{bottom:290.715000px;}
.y1c_c00320{bottom:305.865000px;}
.y44_c00320{bottom:308.865000px;}
.y1b_c00320{bottom:324.015000px;}
.y43_c00320{bottom:326.715000px;}
.y1a_c00320{bottom:341.565000px;}
.y42_c00320{bottom:345.015000px;}
.y19_c00320{bottom:359.565000px;}
.y41_c00320{bottom:362.865000px;}
.y18_c00320{bottom:377.715000px;}
.y40_c00320{bottom:380.715000px;}
.y17_c00320{bottom:395.265000px;}
.y3f_c00320{bottom:398.715000px;}
.y16_c00320{bottom:413.415000px;}
.y3e_c00320{bottom:416.865000px;}
.y15_c00320{bottom:431.115000px;}
.y3d_c00320{bottom:434.415000px;}
.y14_c00320{bottom:449.265000px;}
.y3c_c00320{bottom:452.715000px;}
.y13_c00320{bottom:467.115000px;}
.y3b_c00320{bottom:470.565000px;}
.y12_c00320{bottom:484.665000px;}
.y3a_c00320{bottom:487.815000px;}
.y11_c00320{bottom:502.215000px;}
.y39_c00320{bottom:505.965000px;}
.y10_c00320{bottom:519.765000px;}
.y38_c00320{bottom:524.265000px;}
.yf_c00320{bottom:537.615000px;}
.y37_c00320{bottom:542.115000px;}
.ye_c00320{bottom:555.615000px;}
.y36_c00320{bottom:559.665000px;}
.yd_c00320{bottom:573.765000px;}
.y35_c00320{bottom:577.815000px;}
.yc_c00320{bottom:591.765000px;}
.y34_c00320{bottom:595.815000px;}
.yb_c00320{bottom:609.315000px;}
.y33_c00320{bottom:613.665000px;}
.ya_c00320{bottom:627.465000px;}
.y32_c00320{bottom:631.815000px;}
.y9_c00320{bottom:644.715000px;}
.y31_c00320{bottom:649.365000px;}
.y8_c00320{bottom:662.715000px;}
.y30_c00320{bottom:667.965000px;}
.y7_c00320{bottom:680.715000px;}
.y2f_c00320{bottom:685.515000px;}
.y6_c00320{bottom:698.715000px;}
.y2e_c00320{bottom:703.665000px;}
.y5_c00320{bottom:715.965000px;}
.y2d_c00320{bottom:721.665000px;}
.y4_c00320{bottom:734.415000px;}
.y2c_c00320{bottom:739.215000px;}
.y3_c00320{bottom:751.665000px;}
.y2b_c00320{bottom:757.665000px;}
.y2_c00320{bottom:772.665000px;}
.y2a_c00320{bottom:775.665000px;}
.y1_c00320{bottom:790.515000px;}
.h8_c00320{height:13.200074px;}
.h9_c00320{height:43.804688px;}
.h3_c00320{height:53.448000px;}
.h5_c00320{height:62.880000px;}
.h7_c00320{height:64.020000px;}
.h2_c00320{height:70.664062px;}
.h6_c00320{height:72.312000px;}
.h4_c00320{height:81.744000px;}
.h1_c00320{height:844.500000px;}
.h0_c00320{height:844.575000px;}
.w1_c00320{width:104.875500px;}
.w0_c00320{width:590.250000px;}
.x0_c00320{left:0.000000px;}
.x5_c00320{left:17.550000px;}
.x7_c00320{left:19.200000px;}
.xa_c00320{left:21.300000px;}
.xb_c00320{left:23.850000px;}
.x6_c00320{left:37.500000px;}
.x3_c00320{left:76.350000px;}
.x2_c00320{left:78.300000px;}
.x4_c00320{left:79.350000px;}
.x1_c00320{left:81.300000px;}
.x9_c00320{left:83.100000px;}
.x8_c00320{left:84.150000px;}
.x12_c00320{left:246.939240px;}
.xd_c00320{left:297.300000px;}
.xc_c00320{left:298.350000px;}
.xe_c00320{left:299.400000px;}
.xf_c00320{left:300.750000px;}
.x10_c00320{left:302.700000px;}
.x11_c00320{left:304.350000px;}
@media print{
.v0_c00320{vertical-align:0.000000pt;}
.ls3_c00320{letter-spacing:0.000000pt;}
.ls1_c00320{letter-spacing:1.426667pt;}
.ls0_c00320{letter-spacing:2.666667pt;}
.ls2_c00320{letter-spacing:5.333333pt;}
.ws1_c00320{word-spacing:-28.706667pt;}
.ws4_c00320{word-spacing:-18.080000pt;}
.ws3_c00320{word-spacing:-14.045333pt;}
.ws2_c00320{word-spacing:-12.586667pt;}
.ws5_c00320{word-spacing:0.000000pt;}
.ws0_c00320{word-spacing:6.346667pt;}
._19_c00320{margin-left:-19.146667pt;}
._9_c00320{margin-left:-12.224000pt;}
._7_c00320{margin-left:-10.880000pt;}
._5_c00320{margin-left:-9.600000pt;}
._6_c00320{margin-left:-8.448000pt;}
._2_c00320{margin-left:-7.104000pt;}
._10_c00320{margin-left:-5.802667pt;}
._3_c00320{margin-left:-4.672000pt;}
._b_c00320{margin-left:-3.776000pt;}
._0_c00320{margin-left:-2.560000pt;}
._c_c00320{margin-left:-1.600000pt;}
._d_c00320{width:1.152000pt;}
._1_c00320{width:2.304000pt;}
._e_c00320{width:3.501333pt;}
._4_c00320{width:4.800000pt;}
._8_c00320{width:6.400000pt;}
._17_c00320{width:7.360000pt;}
._15_c00320{width:8.672000pt;}
._14_c00320{width:10.208000pt;}
._1f_c00320{width:11.725333pt;}
._f_c00320{width:12.864000pt;}
._27_c00320{width:14.077333pt;}
._a_c00320{width:15.552000pt;}
._1b_c00320{width:17.629333pt;}
._11_c00320{width:18.901333pt;}
._13_c00320{width:20.202667pt;}
._22_c00320{width:21.120000pt;}
._12_c00320{width:22.400000pt;}
._16_c00320{width:23.797333pt;}
._28_c00320{width:25.165333pt;}
._26_c00320{width:26.842667pt;}
._29_c00320{width:28.458667pt;}
._18_c00320{width:29.962667pt;}
._1d_c00320{width:31.146667pt;}
._2a_c00320{width:36.426667pt;}
._1c_c00320{width:38.208000pt;}
._20_c00320{width:42.272000pt;}
._1a_c00320{width:61.677333pt;}
._25_c00320{width:82.336000pt;}
._23_c00320{width:107.709333pt;}
._1e_c00320{width:123.850667pt;}
._24_c00320{width:139.466667pt;}
._21_c00320{width:193.984000pt;}
.fs4_c00320{font-size:40.000000pt;}
.fs7_c00320{font-size:42.666667pt;}
.fs1_c00320{font-size:45.333333pt;}
.fs5_c00320{font-size:50.666667pt;}
.fs2_c00320{font-size:53.333333pt;}
.fs6_c00320{font-size:61.333333pt;}
.fs0_c00320{font-size:64.000000pt;}
.fs3_c00320{font-size:69.333333pt;}
.y0_c00320{bottom:0.000000pt;}
.y53_c00320{bottom:2.760000pt;}
.y52_c00320{bottom:6.425219pt;}
.y29_c00320{bottom:63.880000pt;}
.y51_c00320{bottom:65.746667pt;}
.y28_c00320{bottom:80.146667pt;}
.y50_c00320{bottom:82.013333pt;}
.y27_c00320{bottom:96.280000pt;}
.y4f_c00320{bottom:97.880000pt;}
.y26_c00320{bottom:112.546667pt;}
.y4e_c00320{bottom:114.280000pt;}
.y25_c00320{bottom:128.680000pt;}
.y4d_c00320{bottom:130.280000pt;}
.y24_c00320{bottom:144.413333pt;}
.y4c_c00320{bottom:145.880000pt;}
.y23_c00320{bottom:160.813333pt;}
.y4b_c00320{bottom:162.280000pt;}
.y22_c00320{bottom:176.680000pt;}
.y4a_c00320{bottom:178.813333pt;}
.y21_c00320{bottom:192.013333pt;}
.y49_c00320{bottom:194.413333pt;}
.y20_c00320{bottom:208.280000pt;}
.y48_c00320{bottom:210.280000pt;}
.y1f_c00320{bottom:223.880000pt;}
.y47_c00320{bottom:226.013333pt;}
.y1e_c00320{bottom:240.680000pt;}
.y46_c00320{bottom:242.680000pt;}
.y1d_c00320{bottom:256.013333pt;}
.y45_c00320{bottom:258.413333pt;}
.y1c_c00320{bottom:271.880000pt;}
.y44_c00320{bottom:274.546667pt;}
.y1b_c00320{bottom:288.013333pt;}
.y43_c00320{bottom:290.413333pt;}
.y1a_c00320{bottom:303.613333pt;}
.y42_c00320{bottom:306.680000pt;}
.y19_c00320{bottom:319.613333pt;}
.y41_c00320{bottom:322.546667pt;}
.y18_c00320{bottom:335.746667pt;}
.y40_c00320{bottom:338.413333pt;}
.y17_c00320{bottom:351.346667pt;}
.y3f_c00320{bottom:354.413333pt;}
.y16_c00320{bottom:367.480000pt;}
.y3e_c00320{bottom:370.546667pt;}
.y15_c00320{bottom:383.213333pt;}
.y3d_c00320{bottom:386.146667pt;}
.y14_c00320{bottom:399.346667pt;}
.y3c_c00320{bottom:402.413333pt;}
.y13_c00320{bottom:415.213333pt;}
.y3b_c00320{bottom:418.280000pt;}
.y12_c00320{bottom:430.813333pt;}
.y3a_c00320{bottom:433.613333pt;}
.y11_c00320{bottom:446.413333pt;}
.y39_c00320{bottom:449.746667pt;}
.y10_c00320{bottom:462.013333pt;}
.y38_c00320{bottom:466.013333pt;}
.yf_c00320{bottom:477.880000pt;}
.y37_c00320{bottom:481.880000pt;}
.ye_c00320{bottom:493.880000pt;}
.y36_c00320{bottom:497.480000pt;}
.yd_c00320{bottom:510.013333pt;}
.y35_c00320{bottom:513.613333pt;}
.yc_c00320{bottom:526.013333pt;}
.y34_c00320{bottom:529.613333pt;}
.yb_c00320{bottom:541.613333pt;}
.y33_c00320{bottom:545.480000pt;}
.ya_c00320{bottom:557.746667pt;}
.y32_c00320{bottom:561.613333pt;}
.y9_c00320{bottom:573.080000pt;}
.y31_c00320{bottom:577.213333pt;}
.y8_c00320{bottom:589.080000pt;}
.y30_c00320{bottom:593.746667pt;}
.y7_c00320{bottom:605.080000pt;}
.y2f_c00320{bottom:609.346667pt;}
.y6_c00320{bottom:621.080000pt;}
.y2e_c00320{bottom:625.480000pt;}
.y5_c00320{bottom:636.413333pt;}
.y2d_c00320{bottom:641.480000pt;}
.y4_c00320{bottom:652.813333pt;}
.y2c_c00320{bottom:657.080000pt;}
.y3_c00320{bottom:668.146667pt;}
.y2b_c00320{bottom:673.480000pt;}
.y2_c00320{bottom:686.813333pt;}
.y2a_c00320{bottom:689.480000pt;}
.y1_c00320{bottom:702.680000pt;}
.h8_c00320{height:11.733399pt;}
.h9_c00320{height:38.937500pt;}
.h3_c00320{height:47.509333pt;}
.h5_c00320{height:55.893333pt;}
.h7_c00320{height:56.906667pt;}
.h2_c00320{height:62.812500pt;}
.h6_c00320{height:64.277333pt;}
.h4_c00320{height:72.661333pt;}
.h1_c00320{height:750.666667pt;}
.h0_c00320{height:750.733333pt;}
.w1_c00320{width:93.222667pt;}
.w0_c00320{width:524.666667pt;}
.x0_c00320{left:0.000000pt;}
.x5_c00320{left:15.600000pt;}
.x7_c00320{left:17.066667pt;}
.xa_c00320{left:18.933333pt;}
.xb_c00320{left:21.200000pt;}
.x6_c00320{left:33.333333pt;}
.x3_c00320{left:67.866667pt;}
.x2_c00320{left:69.600000pt;}
.x4_c00320{left:70.533333pt;}
.x1_c00320{left:72.266667pt;}
.x9_c00320{left:73.866667pt;}
.x8_c00320{left:74.800000pt;}
.x12_c00320{left:219.501546pt;}
.xd_c00320{left:264.266667pt;}
.xc_c00320{left:265.200000pt;}
.xe_c00320{left:266.133333pt;}
.xf_c00320{left:267.333333pt;}
.x10_c00320{left:269.066667pt;}
.x11_c00320{left:270.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_18ff4f61d596a88fd600f29d.woff2')format("woff");}.ff1_c00321{font-family:ff1_c00321;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00321;src:url('chunks/assets/font_69d28cdb047307db6a061c7e.woff2')format("woff");}.ff2_c00321{font-family:ff2_c00321;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00321;src:url('chunks/assets/font_c8b043400fef98ed594669aa.woff2')format("woff");}.ff3_c00321{font-family:ff3_c00321;line-height:1.575000;font-style:normal;font-weight:normal;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_3589be5039d0841db6dffb69.woff2')format("woff");}.ff4_c00321{font-family:ff4_c00321;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00321;src:url('chunks/assets/font_b1e3df6026b91a5ec8003bbd.woff2')format("woff");}.ff5_c00321{font-family:ff5_c00321;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00321;src:url('chunks/assets/font_739a1604bdbe542c750b9924.woff2')format("woff");}.ff6_c00321{font-family:ff6_c00321;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00321;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff7_c00321{font-family:ff7_c00321;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.v1_c00321{vertical-align:105.600000px;}
.ls1_c00321{letter-spacing:0.000000px;}
.ls0_c00321{letter-spacing:1.080000px;}
.ls2_c00321{letter-spacing:3.000000px;}
.sc__c00321{text-shadow:none;}
.sc0_c00321{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00321{-webkit-text-stroke:0px transparent;}
.sc0_c00321{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00321{word-spacing:-50.451000px;}
.ws2_c00321{word-spacing:-18.060000px;}
.ws1_c00321{word-spacing:-18.000000px;}
.ws3_c00321{word-spacing:-15.774000px;}
.ws6_c00321{word-spacing:-15.366000px;}
.ws4_c00321{word-spacing:-14.160000px;}
.ws0_c00321{word-spacing:-3.660000px;}
.ws8_c00321{word-spacing:-1.020000px;}
.ws9_c00321{word-spacing:0.000000px;}
.ws7_c00321{word-spacing:1.980000px;}
._13_c00321{margin-left:-12.132000px;}
._16_c00321{margin-left:-10.368000px;}
._17_c00321{margin-left:-7.482000px;}
._15_c00321{margin-left:-5.940000px;}
._e_c00321{margin-left:-4.920000px;}
._7_c00321{margin-left:-2.940000px;}
._6_c00321{margin-left:-1.500000px;}
._0_c00321{width:1.248000px;}
._9_c00321{width:3.072000px;}
._8_c00321{width:4.092000px;}
._b_c00321{width:5.304000px;}
._a_c00321{width:6.396000px;}
._f_c00321{width:7.560000px;}
._14_c00321{width:8.640000px;}
._11_c00321{width:9.900000px;}
._10_c00321{width:11.820000px;}
._d_c00321{width:13.236000px;}
._c_c00321{width:14.988000px;}
._2_c00321{width:16.740000px;}
._3_c00321{width:17.940000px;}
._24_c00321{width:19.416000px;}
._12_c00321{width:21.012000px;}
._5_c00321{width:22.860000px;}
._1e_c00321{width:24.000000px;}
._4_c00321{width:25.500000px;}
._26_c00321{width:27.132000px;}
._20_c00321{width:28.152000px;}
._1d_c00321{width:30.600000px;}
._23_c00321{width:31.608000px;}
._21_c00321{width:33.132000px;}
._1a_c00321{width:35.460000px;}
._22_c00321{width:37.776000px;}
._1b_c00321{width:40.464000px;}
._27_c00321{width:43.380000px;}
._28_c00321{width:48.216000px;}
._1f_c00321{width:51.264000px;}
._18_c00321{width:64.260000px;}
._1c_c00321{width:65.412000px;}
._25_c00321{width:112.488000px;}
._19_c00321{width:124.008000px;}
._1_c00321{width:268.158000px;}
.fc2_c00321{color:transparent;}
.fc1_c00321{color:rgb(128,128,128);}
.fc0_c00321{color:rgb(0,0,0);}
.fs6_c00321{font-size:48.000000px;}
.fs3_c00321{font-size:54.000000px;}
.fs1_c00321{font-size:60.000000px;}
.fs5_c00321{font-size:63.000000px;}
.fs2_c00321{font-size:66.000000px;}
.fs0_c00321{font-size:78.000000px;}
.fs4_c00321{font-size:201.000000px;}
.y0_c00321{bottom:0.000000px;}
.y54_c00321{bottom:3.105000px;}
.y53_c00321{bottom:7.228363px;}
.y52_c00321{bottom:54.900000px;}
.y51_c00321{bottom:72.900000px;}
.y27_c00321{bottom:74.700000px;}
.y50_c00321{bottom:92.250000px;}
.y26_c00321{bottom:93.900000px;}
.y4f_c00321{bottom:109.650000px;}
.y25_c00321{bottom:112.500000px;}
.y4e_c00321{bottom:127.950000px;}
.y24_c00321{bottom:129.900000px;}
.y4d_c00321{bottom:145.500000px;}
.y23_c00321{bottom:149.250000px;}
.y4c_c00321{bottom:164.700000px;}
.y22_c00321{bottom:167.100000px;}
.y4b_c00321{bottom:182.550000px;}
.y21_c00321{bottom:184.950000px;}
.y4a_c00321{bottom:200.250000px;}
.y20_c00321{bottom:201.900000px;}
.y49_c00321{bottom:218.700000px;}
.y1f_c00321{bottom:220.800000px;}
.y48_c00321{bottom:237.000000px;}
.y1e_c00321{bottom:239.400000px;}
.y47_c00321{bottom:255.150000px;}
.y1d_c00321{bottom:257.550000px;}
.y46_c00321{bottom:273.150000px;}
.y1c_c00321{bottom:276.450000px;}
.y45_c00321{bottom:291.600000px;}
.y1b_c00321{bottom:295.050000px;}
.y44_c00321{bottom:309.150000px;}
.y1a_c00321{bottom:311.550000px;}
.y43_c00321{bottom:327.150000px;}
.y19_c00321{bottom:329.850000px;}
.y42_c00321{bottom:345.600000px;}
.y18_c00321{bottom:348.000000px;}
.y41_c00321{bottom:363.450000px;}
.y17_c00321{bottom:365.850000px;}
.y40_c00321{bottom:381.750000px;}
.y16_c00321{bottom:383.700000px;}
.y3f_c00321{bottom:399.900000px;}
.y15_c00321{bottom:402.300000px;}
.y3e_c00321{bottom:417.900000px;}
.y14_c00321{bottom:420.150000px;}
.y12_c00321{bottom:429.300000px;}
.y3d_c00321{bottom:435.750000px;}
.y13_c00321{bottom:438.150000px;}
.y3c_c00321{bottom:454.050000px;}
.y3b_c00321{bottom:472.500000px;}
.y3a_c00321{bottom:490.800000px;}
.y11_c00321{bottom:492.750000px;}
.y39_c00321{bottom:508.050000px;}
.y10_c00321{bottom:510.750000px;}
.y38_c00321{bottom:526.800000px;}
.yf_c00321{bottom:528.900000px;}
.y37_c00321{bottom:544.500000px;}
.ye_c00321{bottom:546.750000px;}
.y36_c00321{bottom:562.500000px;}
.y35_c00321{bottom:580.500000px;}
.yd_c00321{bottom:581.250000px;}
.y34_c00321{bottom:598.950000px;}
.y33_c00321{bottom:616.950000px;}
.yc_c00321{bottom:619.650000px;}
.y32_c00321{bottom:635.550000px;}
.yb_c00321{bottom:636.900000px;}
.y31_c00321{bottom:654.000000px;}
.ya_c00321{bottom:655.200000px;}
.y30_c00321{bottom:671.850000px;}
.y9_c00321{bottom:673.050000px;}
.y2f_c00321{bottom:689.850000px;}
.y8_c00321{bottom:691.500000px;}
.y2e_c00321{bottom:708.000000px;}
.y7_c00321{bottom:709.350000px;}
.y2d_c00321{bottom:725.850000px;}
.y6_c00321{bottom:727.950000px;}
.y2c_c00321{bottom:744.150000px;}
.y5_c00321{bottom:746.100000px;}
.y2b_c00321{bottom:762.450000px;}
.y4_c00321{bottom:763.500000px;}
.y2a_c00321{bottom:781.200000px;}
.y3_c00321{bottom:782.250000px;}
.y29_c00321{bottom:798.900000px;}
.y2_c00321{bottom:799.950000px;}
.y28_c00321{bottom:818.400000px;}
.y1_c00321{bottom:820.050000px;}
.h9_c00321{height:13.200074px;}
.ha_c00321{height:43.804688px;}
.h6_c00321{height:56.592000px;}
.h3_c00321{height:62.880000px;}
.h4_c00321{height:64.020000px;}
.h8_c00321{height:67.221000px;}
.h5_c00321{height:69.168000px;}
.h2_c00321{height:81.744000px;}
.h7_c00321{height:210.648000px;}
.h0_c00321{height:845.100000px;}
.h1_c00321{height:845.250000px;}
.w2_c00321{width:104.875500px;}
.w0_c00321{width:561.600000px;}
.w1_c00321{width:561.750000px;}
.x0_c00321{left:0.000000px;}
.xb_c00321{left:32.400000px;}
.xc_c00321{left:34.800000px;}
.xd_c00321{left:37.050000px;}
.x2_c00321{left:92.250000px;}
.x3_c00321{left:93.450000px;}
.x8_c00321{left:95.100000px;}
.x1_c00321{left:96.450000px;}
.x5_c00321{left:97.800000px;}
.xe_c00321{left:99.300000px;}
.x6_c00321{left:121.050000px;}
.xa_c00321{left:129.150000px;}
.x9_c00321{left:133.650000px;}
.x7_c00321{left:167.400000px;}
.x4_c00321{left:192.600000px;}
.x15_c00321{left:232.614258px;}
.xf_c00321{left:306.450000px;}
.x11_c00321{left:312.900000px;}
.x10_c00321{left:314.100000px;}
.x12_c00321{left:315.150000px;}
.x13_c00321{left:316.500000px;}
.x14_c00321{left:487.950000px;}
@media print{
.v0_c00321{vertical-align:0.000000pt;}
.v1_c00321{vertical-align:93.866667pt;}
.ls1_c00321{letter-spacing:0.000000pt;}
.ls0_c00321{letter-spacing:0.960000pt;}
.ls2_c00321{letter-spacing:2.666667pt;}
.ws5_c00321{word-spacing:-44.845333pt;}
.ws2_c00321{word-spacing:-16.053333pt;}
.ws1_c00321{word-spacing:-16.000000pt;}
.ws3_c00321{word-spacing:-14.021333pt;}
.ws6_c00321{word-spacing:-13.658667pt;}
.ws4_c00321{word-spacing:-12.586667pt;}
.ws0_c00321{word-spacing:-3.253333pt;}
.ws8_c00321{word-spacing:-0.906667pt;}
.ws9_c00321{word-spacing:0.000000pt;}
.ws7_c00321{word-spacing:1.760000pt;}
._13_c00321{margin-left:-10.784000pt;}
._16_c00321{margin-left:-9.216000pt;}
._17_c00321{margin-left:-6.650667pt;}
._15_c00321{margin-left:-5.280000pt;}
._e_c00321{margin-left:-4.373333pt;}
._7_c00321{margin-left:-2.613333pt;}
._6_c00321{margin-left:-1.333333pt;}
._0_c00321{width:1.109333pt;}
._9_c00321{width:2.730667pt;}
._8_c00321{width:3.637333pt;}
._b_c00321{width:4.714667pt;}
._a_c00321{width:5.685333pt;}
._f_c00321{width:6.720000pt;}
._14_c00321{width:7.680000pt;}
._11_c00321{width:8.800000pt;}
._10_c00321{width:10.506667pt;}
._d_c00321{width:11.765333pt;}
._c_c00321{width:13.322667pt;}
._2_c00321{width:14.880000pt;}
._3_c00321{width:15.946667pt;}
._24_c00321{width:17.258667pt;}
._12_c00321{width:18.677333pt;}
._5_c00321{width:20.320000pt;}
._1e_c00321{width:21.333333pt;}
._4_c00321{width:22.666667pt;}
._26_c00321{width:24.117333pt;}
._20_c00321{width:25.024000pt;}
._1d_c00321{width:27.200000pt;}
._23_c00321{width:28.096000pt;}
._21_c00321{width:29.450667pt;}
._1a_c00321{width:31.520000pt;}
._22_c00321{width:33.578667pt;}
._1b_c00321{width:35.968000pt;}
._27_c00321{width:38.560000pt;}
._28_c00321{width:42.858667pt;}
._1f_c00321{width:45.568000pt;}
._18_c00321{width:57.120000pt;}
._1c_c00321{width:58.144000pt;}
._25_c00321{width:99.989333pt;}
._19_c00321{width:110.229333pt;}
._1_c00321{width:238.362667pt;}
.fs6_c00321{font-size:42.666667pt;}
.fs3_c00321{font-size:48.000000pt;}
.fs1_c00321{font-size:53.333333pt;}
.fs5_c00321{font-size:56.000000pt;}
.fs2_c00321{font-size:58.666667pt;}
.fs0_c00321{font-size:69.333333pt;}
.fs4_c00321{font-size:178.666667pt;}
.y0_c00321{bottom:0.000000pt;}
.y54_c00321{bottom:2.760000pt;}
.y53_c00321{bottom:6.425212pt;}
.y52_c00321{bottom:48.800000pt;}
.y51_c00321{bottom:64.800000pt;}
.y27_c00321{bottom:66.400000pt;}
.y50_c00321{bottom:82.000000pt;}
.y26_c00321{bottom:83.466667pt;}
.y4f_c00321{bottom:97.466667pt;}
.y25_c00321{bottom:100.000000pt;}
.y4e_c00321{bottom:113.733333pt;}
.y24_c00321{bottom:115.466667pt;}
.y4d_c00321{bottom:129.333333pt;}
.y23_c00321{bottom:132.666667pt;}
.y4c_c00321{bottom:146.400000pt;}
.y22_c00321{bottom:148.533333pt;}
.y4b_c00321{bottom:162.266667pt;}
.y21_c00321{bottom:164.400000pt;}
.y4a_c00321{bottom:178.000000pt;}
.y20_c00321{bottom:179.466667pt;}
.y49_c00321{bottom:194.400000pt;}
.y1f_c00321{bottom:196.266667pt;}
.y48_c00321{bottom:210.666667pt;}
.y1e_c00321{bottom:212.800000pt;}
.y47_c00321{bottom:226.800000pt;}
.y1d_c00321{bottom:228.933333pt;}
.y46_c00321{bottom:242.800000pt;}
.y1c_c00321{bottom:245.733333pt;}
.y45_c00321{bottom:259.200000pt;}
.y1b_c00321{bottom:262.266667pt;}
.y44_c00321{bottom:274.800000pt;}
.y1a_c00321{bottom:276.933333pt;}
.y43_c00321{bottom:290.800000pt;}
.y19_c00321{bottom:293.200000pt;}
.y42_c00321{bottom:307.200000pt;}
.y18_c00321{bottom:309.333333pt;}
.y41_c00321{bottom:323.066667pt;}
.y17_c00321{bottom:325.200000pt;}
.y40_c00321{bottom:339.333333pt;}
.y16_c00321{bottom:341.066667pt;}
.y3f_c00321{bottom:355.466667pt;}
.y15_c00321{bottom:357.600000pt;}
.y3e_c00321{bottom:371.466667pt;}
.y14_c00321{bottom:373.466667pt;}
.y12_c00321{bottom:381.600000pt;}
.y3d_c00321{bottom:387.333333pt;}
.y13_c00321{bottom:389.466667pt;}
.y3c_c00321{bottom:403.600000pt;}
.y3b_c00321{bottom:420.000000pt;}
.y3a_c00321{bottom:436.266667pt;}
.y11_c00321{bottom:438.000000pt;}
.y39_c00321{bottom:451.600000pt;}
.y10_c00321{bottom:454.000000pt;}
.y38_c00321{bottom:468.266667pt;}
.yf_c00321{bottom:470.133333pt;}
.y37_c00321{bottom:484.000000pt;}
.ye_c00321{bottom:486.000000pt;}
.y36_c00321{bottom:500.000000pt;}
.y35_c00321{bottom:516.000000pt;}
.yd_c00321{bottom:516.666667pt;}
.y34_c00321{bottom:532.400000pt;}
.y33_c00321{bottom:548.400000pt;}
.yc_c00321{bottom:550.800000pt;}
.y32_c00321{bottom:564.933333pt;}
.yb_c00321{bottom:566.133333pt;}
.y31_c00321{bottom:581.333333pt;}
.ya_c00321{bottom:582.400000pt;}
.y30_c00321{bottom:597.200000pt;}
.y9_c00321{bottom:598.266667pt;}
.y2f_c00321{bottom:613.200000pt;}
.y8_c00321{bottom:614.666667pt;}
.y2e_c00321{bottom:629.333333pt;}
.y7_c00321{bottom:630.533333pt;}
.y2d_c00321{bottom:645.200000pt;}
.y6_c00321{bottom:647.066667pt;}
.y2c_c00321{bottom:661.466667pt;}
.y5_c00321{bottom:663.200000pt;}
.y2b_c00321{bottom:677.733333pt;}
.y4_c00321{bottom:678.666667pt;}
.y2a_c00321{bottom:694.400000pt;}
.y3_c00321{bottom:695.333333pt;}
.y29_c00321{bottom:710.133333pt;}
.y2_c00321{bottom:711.066667pt;}
.y28_c00321{bottom:727.466667pt;}
.y1_c00321{bottom:728.933333pt;}
.h9_c00321{height:11.733399pt;}
.ha_c00321{height:38.937500pt;}
.h6_c00321{height:50.304000pt;}
.h3_c00321{height:55.893333pt;}
.h4_c00321{height:56.906667pt;}
.h8_c00321{height:59.752000pt;}
.h5_c00321{height:61.482667pt;}
.h2_c00321{height:72.661333pt;}
.h7_c00321{height:187.242667pt;}
.h0_c00321{height:751.200000pt;}
.h1_c00321{height:751.333333pt;}
.w2_c00321{width:93.222667pt;}
.w0_c00321{width:499.200000pt;}
.w1_c00321{width:499.333333pt;}
.x0_c00321{left:0.000000pt;}
.xb_c00321{left:28.800000pt;}
.xc_c00321{left:30.933333pt;}
.xd_c00321{left:32.933333pt;}
.x2_c00321{left:82.000000pt;}
.x3_c00321{left:83.066667pt;}
.x8_c00321{left:84.533333pt;}
.x1_c00321{left:85.733333pt;}
.x5_c00321{left:86.933333pt;}
.xe_c00321{left:88.266667pt;}
.x6_c00321{left:107.600000pt;}
.xa_c00321{left:114.800000pt;}
.x9_c00321{left:118.800000pt;}
.x7_c00321{left:148.800000pt;}
.x4_c00321{left:171.200000pt;}
.x15_c00321{left:206.768229pt;}
.xf_c00321{left:272.400000pt;}
.x11_c00321{left:278.133333pt;}
.x10_c00321{left:279.200000pt;}
.x12_c00321{left:280.133333pt;}
.x13_c00321{left:281.333333pt;}
.x14_c00321{left:433.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_6a5201ec0079cf211aa1f0f3.woff2')format("woff");}.ff1_c00322{font-family:ff1_c00322;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00322;src:url('chunks/assets/font_8f69cbb08250afe3f9cdb06b.woff2')format("woff");}.ff2_c00322{font-family:ff2_c00322;line-height:1.437000;font-style:normal;font-weight:normal;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_b954991e3141d1b2d693db10.woff2')format("woff");}.ff3_c00322{font-family:ff3_c00322;line-height:1.437000;font-style:normal;font-weight:normal;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_9de364ff353b52f60b96d19d.woff2')format("woff");}.ff4_c00322{font-family:ff4_c00322;line-height:1.437000;font-style:normal;font-weight:normal;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_74b5bf35b1f237a0ccbfd775.woff2')format("woff");}.ff5_c00322{font-family:ff5_c00322;line-height:1.575000;font-style:normal;font-weight:normal;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_0ce391de997f24f9f9dd37f4.woff2')format("woff");}.ff6_c00322{font-family:ff6_c00322;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00322;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff7_c00322{font-family:ff7_c00322;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00322{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00322{vertical-align:0.000000px;}
.ls5_c00322{letter-spacing:0.000000px;}
.ls3_c00322{letter-spacing:3.000000px;}
.ls1_c00322{letter-spacing:5.205000px;}
.ls4_c00322{letter-spacing:5.460000px;}
.ls0_c00322{letter-spacing:6.000000px;}
.ls6_c00322{letter-spacing:15.000000px;}
.ls2_c00322{letter-spacing:38.460000px;}
.sc__c00322{text-shadow:none;}
.sc0_c00322{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00322{-webkit-text-stroke:0px transparent;}
.sc0_c00322{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00322{word-spacing:-28.623000px;}
.ws0_c00322{word-spacing:-18.060000px;}
.ws2_c00322{word-spacing:-18.000000px;}
.ws4_c00322{word-spacing:-17.340000px;}
.ws1_c00322{word-spacing:-14.160000px;}
.ws5_c00322{word-spacing:0.000000px;}
._23_c00322{margin-left:-13.800000px;}
._15_c00322{margin-left:-11.040000px;}
._14_c00322{margin-left:-9.360000px;}
._20_c00322{margin-left:-8.016000px;}
._1f_c00322{margin-left:-6.720000px;}
._f_c00322{margin-left:-5.040000px;}
._b_c00322{margin-left:-3.540000px;}
._c_c00322{margin-left:-2.460000px;}
._9_c00322{margin-left:-1.440000px;}
._2_c00322{width:1.800000px;}
._1_c00322{width:3.528000px;}
._3_c00322{width:5.412000px;}
._19_c00322{width:6.660000px;}
._4_c00322{width:8.040000px;}
._d_c00322{width:9.444000px;}
._a_c00322{width:10.500000px;}
._16_c00322{width:11.952000px;}
._5_c00322{width:13.620000px;}
._e_c00322{width:14.640000px;}
._12_c00322{width:15.936000px;}
._1d_c00322{width:17.580000px;}
._6_c00322{width:19.140000px;}
._13_c00322{width:21.504000px;}
._7_c00322{width:22.560000px;}
._17_c00322{width:23.868000px;}
._11_c00322{width:24.960000px;}
._18_c00322{width:26.580000px;}
._10_c00322{width:27.960000px;}
._8_c00322{width:30.060000px;}
._0_c00322{width:33.336000px;}
._1b_c00322{width:34.380000px;}
._21_c00322{width:37.464000px;}
._1c_c00322{width:41.952000px;}
._22_c00322{width:185.496000px;}
._1e_c00322{width:201.276000px;}
._1a_c00322{width:430.668000px;}
.fc2_c00322{color:transparent;}
.fc1_c00322{color:rgb(128,128,128);}
.fc0_c00322{color:rgb(0,0,0);}
.fs3_c00322{font-size:45.000000px;}
.fs5_c00322{font-size:48.000000px;}
.fs4_c00322{font-size:57.000000px;}
.fs1_c00322{font-size:60.000000px;}
.fs0_c00322{font-size:72.000000px;}
.fs2_c00322{font-size:78.000000px;}
.y0_c00322{bottom:0.000000px;}
.y54_c00322{bottom:3.105000px;}
.y53_c00322{bottom:7.228371px;}
.y52_c00322{bottom:40.965000px;}
.y27_c00322{bottom:60.165000px;}
.y51_c00322{bottom:61.215000px;}
.y26_c00322{bottom:79.665000px;}
.y50_c00322{bottom:79.965000px;}
.y25_c00322{bottom:96.915000px;}
.y4f_c00322{bottom:97.665000px;}
.y4e_c00322{bottom:115.215000px;}
.y4d_c00322{bottom:133.365000px;}
.y24_c00322{bottom:134.115000px;}
.y4c_c00322{bottom:151.515000px;}
.y23_c00322{bottom:151.965000px;}
.y22_c00322{bottom:169.215000px;}
.y4b_c00322{bottom:170.115000px;}
.y21_c00322{bottom:187.665000px;}
.y4a_c00322{bottom:188.115000px;}
.y49_c00322{bottom:206.265000px;}
.y20_c00322{bottom:220.515000px;}
.y48_c00322{bottom:224.415000px;}
.y47_c00322{bottom:242.415000px;}
.y1f_c00322{bottom:258.615000px;}
.y46_c00322{bottom:260.565000px;}
.y1e_c00322{bottom:276.765000px;}
.y45_c00322{bottom:278.565000px;}
.y1d_c00322{bottom:295.065000px;}
.y44_c00322{bottom:296.415000px;}
.y1c_c00322{bottom:312.915000px;}
.y43_c00322{bottom:314.865000px;}
.y1b_c00322{bottom:331.065000px;}
.y42_c00322{bottom:333.165000px;}
.y1a_c00322{bottom:349.365000px;}
.y41_c00322{bottom:351.315000px;}
.y19_c00322{bottom:367.515000px;}
.y40_c00322{bottom:369.015000px;}
.y18_c00322{bottom:384.765000px;}
.y3f_c00322{bottom:387.165000px;}
.y17_c00322{bottom:402.765000px;}
.y3e_c00322{bottom:405.015000px;}
.y16_c00322{bottom:421.215000px;}
.y3d_c00322{bottom:423.315000px;}
.y15_c00322{bottom:438.765000px;}
.y3c_c00322{bottom:441.165000px;}
.y14_c00322{bottom:456.315000px;}
.y3b_c00322{bottom:458.715000px;}
.y13_c00322{bottom:473.865000px;}
.y3a_c00322{bottom:477.015000px;}
.y12_c00322{bottom:492.165000px;}
.y39_c00322{bottom:495.165000px;}
.y11_c00322{bottom:509.415000px;}
.y38_c00322{bottom:513.315000px;}
.y10_c00322{bottom:527.265000px;}
.y37_c00322{bottom:530.865000px;}
.yf_c00322{bottom:545.415000px;}
.y36_c00322{bottom:548.565000px;}
.ye_c00322{bottom:562.965000px;}
.y35_c00322{bottom:567.015000px;}
.yd_c00322{bottom:580.965000px;}
.y34_c00322{bottom:585.015000px;}
.yc_c00322{bottom:599.115000px;}
.y33_c00322{bottom:603.165000px;}
.yb_c00322{bottom:616.365000px;}
.y32_c00322{bottom:621.015000px;}
.ya_c00322{bottom:634.515000px;}
.y31_c00322{bottom:638.565000px;}
.y9_c00322{bottom:652.515000px;}
.y30_c00322{bottom:656.565000px;}
.y8_c00322{bottom:670.365000px;}
.y2f_c00322{bottom:674.415000px;}
.y7_c00322{bottom:688.815000px;}
.y2e_c00322{bottom:692.565000px;}
.y6_c00322{bottom:706.515000px;}
.y2d_c00322{bottom:710.865000px;}
.y5_c00322{bottom:724.965000px;}
.y2c_c00322{bottom:729.315000px;}
.y4_c00322{bottom:742.515000px;}
.y2b_c00322{bottom:747.615000px;}
.y3_c00322{bottom:760.065000px;}
.y2a_c00322{bottom:765.465000px;}
.y2_c00322{bottom:780.615000px;}
.y29_c00322{bottom:783.465000px;}
.y1_c00322{bottom:798.915000px;}
.y28_c00322{bottom:801.315000px;}
.h6_c00322{height:13.200074px;}
.h7_c00322{height:43.804688px;}
.h3_c00322{height:62.880000px;}
.h4_c00322{height:64.020000px;}
.h2_c00322{height:70.664062px;}
.h5_c00322{height:81.744000px;}
.h1_c00322{height:844.500000px;}
.h0_c00322{height:844.575000px;}
.w1_c00322{width:104.875500px;}
.w0_c00322{width:590.250000px;}
.x0_c00322{left:0.000000px;}
.x3_c00322{left:69.900000px;}
.x2_c00322{left:71.100000px;}
.x4_c00322{left:72.150000px;}
.x5_c00322{left:73.200000px;}
.x6_c00322{left:74.250000px;}
.x8_c00322{left:87.450000px;}
.x9_c00322{left:112.350000px;}
.xb_c00322{left:116.400000px;}
.x7_c00322{left:145.050000px;}
.xa_c00322{left:152.550000px;}
.x1_c00322{left:203.850000px;}
.x15_c00322{left:246.939240px;}
.xc_c00322{left:281.700000px;}
.xd_c00322{left:287.850000px;}
.xe_c00322{left:289.200000px;}
.xf_c00322{left:290.850000px;}
.x11_c00322{left:292.050000px;}
.x10_c00322{left:293.250000px;}
.x12_c00322{left:295.050000px;}
.x13_c00322{left:296.100000px;}
.x14_c00322{left:389.850000px;}
@media print{
.v0_c00322{vertical-align:0.000000pt;}
.ls5_c00322{letter-spacing:0.000000pt;}
.ls3_c00322{letter-spacing:2.666667pt;}
.ls1_c00322{letter-spacing:4.626667pt;}
.ls4_c00322{letter-spacing:4.853333pt;}
.ls0_c00322{letter-spacing:5.333333pt;}
.ls6_c00322{letter-spacing:13.333333pt;}
.ls2_c00322{letter-spacing:34.186667pt;}
.ws3_c00322{word-spacing:-25.442667pt;}
.ws0_c00322{word-spacing:-16.053333pt;}
.ws2_c00322{word-spacing:-16.000000pt;}
.ws4_c00322{word-spacing:-15.413333pt;}
.ws1_c00322{word-spacing:-12.586667pt;}
.ws5_c00322{word-spacing:0.000000pt;}
._23_c00322{margin-left:-12.266667pt;}
._15_c00322{margin-left:-9.813333pt;}
._14_c00322{margin-left:-8.320000pt;}
._20_c00322{margin-left:-7.125333pt;}
._1f_c00322{margin-left:-5.973333pt;}
._f_c00322{margin-left:-4.480000pt;}
._b_c00322{margin-left:-3.146667pt;}
._c_c00322{margin-left:-2.186667pt;}
._9_c00322{margin-left:-1.280000pt;}
._2_c00322{width:1.600000pt;}
._1_c00322{width:3.136000pt;}
._3_c00322{width:4.810667pt;}
._19_c00322{width:5.920000pt;}
._4_c00322{width:7.146667pt;}
._d_c00322{width:8.394667pt;}
._a_c00322{width:9.333333pt;}
._16_c00322{width:10.624000pt;}
._5_c00322{width:12.106667pt;}
._e_c00322{width:13.013333pt;}
._12_c00322{width:14.165333pt;}
._1d_c00322{width:15.626667pt;}
._6_c00322{width:17.013333pt;}
._13_c00322{width:19.114667pt;}
._7_c00322{width:20.053333pt;}
._17_c00322{width:21.216000pt;}
._11_c00322{width:22.186667pt;}
._18_c00322{width:23.626667pt;}
._10_c00322{width:24.853333pt;}
._8_c00322{width:26.720000pt;}
._0_c00322{width:29.632000pt;}
._1b_c00322{width:30.560000pt;}
._21_c00322{width:33.301333pt;}
._1c_c00322{width:37.290667pt;}
._22_c00322{width:164.885333pt;}
._1e_c00322{width:178.912000pt;}
._1a_c00322{width:382.816000pt;}
.fs3_c00322{font-size:40.000000pt;}
.fs5_c00322{font-size:42.666667pt;}
.fs4_c00322{font-size:50.666667pt;}
.fs1_c00322{font-size:53.333333pt;}
.fs0_c00322{font-size:64.000000pt;}
.fs2_c00322{font-size:69.333333pt;}
.y0_c00322{bottom:0.000000pt;}
.y54_c00322{bottom:2.760000pt;}
.y53_c00322{bottom:6.425219pt;}
.y52_c00322{bottom:36.413333pt;}
.y27_c00322{bottom:53.480000pt;}
.y51_c00322{bottom:54.413333pt;}
.y26_c00322{bottom:70.813333pt;}
.y50_c00322{bottom:71.080000pt;}
.y25_c00322{bottom:86.146667pt;}
.y4f_c00322{bottom:86.813333pt;}
.y4e_c00322{bottom:102.413333pt;}
.y4d_c00322{bottom:118.546667pt;}
.y24_c00322{bottom:119.213333pt;}
.y4c_c00322{bottom:134.680000pt;}
.y23_c00322{bottom:135.080000pt;}
.y22_c00322{bottom:150.413333pt;}
.y4b_c00322{bottom:151.213333pt;}
.y21_c00322{bottom:166.813333pt;}
.y4a_c00322{bottom:167.213333pt;}
.y49_c00322{bottom:183.346667pt;}
.y20_c00322{bottom:196.013333pt;}
.y48_c00322{bottom:199.480000pt;}
.y47_c00322{bottom:215.480000pt;}
.y1f_c00322{bottom:229.880000pt;}
.y46_c00322{bottom:231.613333pt;}
.y1e_c00322{bottom:246.013333pt;}
.y45_c00322{bottom:247.613333pt;}
.y1d_c00322{bottom:262.280000pt;}
.y44_c00322{bottom:263.480000pt;}
.y1c_c00322{bottom:278.146667pt;}
.y43_c00322{bottom:279.880000pt;}
.y1b_c00322{bottom:294.280000pt;}
.y42_c00322{bottom:296.146667pt;}
.y1a_c00322{bottom:310.546667pt;}
.y41_c00322{bottom:312.280000pt;}
.y19_c00322{bottom:326.680000pt;}
.y40_c00322{bottom:328.013333pt;}
.y18_c00322{bottom:342.013333pt;}
.y3f_c00322{bottom:344.146667pt;}
.y17_c00322{bottom:358.013333pt;}
.y3e_c00322{bottom:360.013333pt;}
.y16_c00322{bottom:374.413333pt;}
.y3d_c00322{bottom:376.280000pt;}
.y15_c00322{bottom:390.013333pt;}
.y3c_c00322{bottom:392.146667pt;}
.y14_c00322{bottom:405.613333pt;}
.y3b_c00322{bottom:407.746667pt;}
.y13_c00322{bottom:421.213333pt;}
.y3a_c00322{bottom:424.013333pt;}
.y12_c00322{bottom:437.480000pt;}
.y39_c00322{bottom:440.146667pt;}
.y11_c00322{bottom:452.813333pt;}
.y38_c00322{bottom:456.280000pt;}
.y10_c00322{bottom:468.680000pt;}
.y37_c00322{bottom:471.880000pt;}
.yf_c00322{bottom:484.813333pt;}
.y36_c00322{bottom:487.613333pt;}
.ye_c00322{bottom:500.413333pt;}
.y35_c00322{bottom:504.013333pt;}
.yd_c00322{bottom:516.413333pt;}
.y34_c00322{bottom:520.013333pt;}
.yc_c00322{bottom:532.546667pt;}
.y33_c00322{bottom:536.146667pt;}
.yb_c00322{bottom:547.880000pt;}
.y32_c00322{bottom:552.013333pt;}
.ya_c00322{bottom:564.013333pt;}
.y31_c00322{bottom:567.613333pt;}
.y9_c00322{bottom:580.013333pt;}
.y30_c00322{bottom:583.613333pt;}
.y8_c00322{bottom:595.880000pt;}
.y2f_c00322{bottom:599.480000pt;}
.y7_c00322{bottom:612.280000pt;}
.y2e_c00322{bottom:615.613333pt;}
.y6_c00322{bottom:628.013333pt;}
.y2d_c00322{bottom:631.880000pt;}
.y5_c00322{bottom:644.413333pt;}
.y2c_c00322{bottom:648.280000pt;}
.y4_c00322{bottom:660.013333pt;}
.y2b_c00322{bottom:664.546667pt;}
.y3_c00322{bottom:675.613333pt;}
.y2a_c00322{bottom:680.413333pt;}
.y2_c00322{bottom:693.880000pt;}
.y29_c00322{bottom:696.413333pt;}
.y1_c00322{bottom:710.146667pt;}
.y28_c00322{bottom:712.280000pt;}
.h6_c00322{height:11.733399pt;}
.h7_c00322{height:38.937500pt;}
.h3_c00322{height:55.893333pt;}
.h4_c00322{height:56.906667pt;}
.h2_c00322{height:62.812500pt;}
.h5_c00322{height:72.661333pt;}
.h1_c00322{height:750.666667pt;}
.h0_c00322{height:750.733333pt;}
.w1_c00322{width:93.222667pt;}
.w0_c00322{width:524.666667pt;}
.x0_c00322{left:0.000000pt;}
.x3_c00322{left:62.133333pt;}
.x2_c00322{left:63.200000pt;}
.x4_c00322{left:64.133333pt;}
.x5_c00322{left:65.066667pt;}
.x6_c00322{left:66.000000pt;}
.x8_c00322{left:77.733333pt;}
.x9_c00322{left:99.866667pt;}
.xb_c00322{left:103.466667pt;}
.x7_c00322{left:128.933333pt;}
.xa_c00322{left:135.600000pt;}
.x1_c00322{left:181.200000pt;}
.x15_c00322{left:219.501546pt;}
.xc_c00322{left:250.400000pt;}
.xd_c00322{left:255.866667pt;}
.xe_c00322{left:257.066667pt;}
.xf_c00322{left:258.533333pt;}
.x11_c00322{left:259.600000pt;}
.x10_c00322{left:260.666667pt;}
.x12_c00322{left:262.266667pt;}
.x13_c00322{left:263.200000pt;}
.x14_c00322{left:346.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_0de02ff1e0145179e92e86df.woff2')format("woff");}.ff1_c00323{font-family:ff1_c00323;line-height:1.437000;font-style:normal;font-weight:normal;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_2dfcb48bc65b51670af431b9.woff2')format("woff");}.ff2_c00323{font-family:ff2_c00323;line-height:1.575000;font-style:normal;font-weight:normal;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_f136eb9dc54f707df071f6d7.woff2')format("woff");}.ff3_c00323{font-family:ff3_c00323;line-height:1.437000;font-style:normal;font-weight:normal;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_c77dcf0dbe892df2196e10f3.woff2')format("woff");}.ff4_c00323{font-family:ff4_c00323;line-height:1.437000;font-style:normal;font-weight:normal;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_51fecec609abbe6121be2626.woff2')format("woff");}.ff5_c00323{font-family:ff5_c00323;line-height:1.575000;font-style:normal;font-weight:normal;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_62fea1aeda61440009d773a5.woff2')format("woff");}.ff6_c00323{font-family:ff6_c00323;line-height:1.575000;font-style:normal;font-weight:normal;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_84b7beee46d00507a3c0d12e.woff2')format("woff");}.ff7_c00323{font-family:ff7_c00323;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00323;src:url('chunks/assets/font_65241be733f3c2ae4cdc43a4.woff2')format("woff");}.ff8_c00323{font-family:ff8_c00323;line-height:1.012793;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00323;src:url('chunks/assets/font_c0a78ba03e42234c5b69f0e2.woff2')format("woff");}.ff9_c00323{font-family:ff9_c00323;line-height:1.437000;font-style:normal;font-weight: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_c00323;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ffa_c00323{font-family:ffa_c00323;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00323{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00323{vertical-align:0.000000px;}
.v1_c00323{vertical-align:97.200000px;}
.ls5_c00323{letter-spacing:0.000000px;}
.ls1_c00323{letter-spacing:0.600000px;}
.ls0_c00323{letter-spacing:3.000000px;}
.ls2_c00323{letter-spacing:6.000000px;}
.ls3_c00323{letter-spacing:23.355000px;}
.ls4_c00323{letter-spacing:24.660000px;}
.sc__c00323{text-shadow:none;}
.sc0_c00323{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00323{-webkit-text-stroke:0px transparent;}
.sc0_c00323{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00323{word-spacing:-61.932000px;}
.ws1_c00323{word-spacing:-18.060000px;}
.ws0_c00323{word-spacing:-18.000000px;}
.ws5_c00323{word-spacing:-16.500000px;}
.ws6_c00323{word-spacing:-15.750000px;}
.ws4_c00323{word-spacing:-15.000000px;}
.ws3_c00323{word-spacing:-14.160000px;}
.ws8_c00323{word-spacing:0.000000px;}
.ws2_c00323{word-spacing:25.380000px;}
._29_c00323{margin-left:-30.360000px;}
._1e_c00323{margin-left:-17.220000px;}
._17_c00323{margin-left:-14.520000px;}
._23_c00323{margin-left:-12.360000px;}
._16_c00323{margin-left:-10.920000px;}
._20_c00323{margin-left:-9.660000px;}
._1a_c00323{margin-left:-8.160000px;}
._c_c00323{margin-left:-6.900000px;}
._8_c00323{margin-left:-5.760000px;}
._7_c00323{margin-left:-4.560000px;}
._9_c00323{margin-left:-3.240000px;}
._6_c00323{margin-left:-1.680000px;}
._1_c00323{width:1.440000px;}
._2_c00323{width:2.460000px;}
._0_c00323{width:3.540000px;}
._5_c00323{width:4.860000px;}
._4_c00323{width:6.060000px;}
._3_c00323{width:7.440000px;}
._19_c00323{width:8.820000px;}
._a_c00323{width:9.900000px;}
._b_c00323{width:11.760000px;}
._d_c00323{width:13.140000px;}
._14_c00323{width:14.460000px;}
._21_c00323{width:15.540000px;}
._e_c00323{width:16.860000px;}
._26_c00323{width:18.180000px;}
._f_c00323{width:19.860000px;}
._12_c00323{width:21.060000px;}
._11_c00323{width:22.800000px;}
._10_c00323{width:24.180000px;}
._13_c00323{width:25.680000px;}
._1b_c00323{width:27.420000px;}
._24_c00323{width:28.860000px;}
._1c_c00323{width:30.780000px;}
._25_c00323{width:31.980000px;}
._18_c00323{width:33.300000px;}
._22_c00323{width:39.540000px;}
._15_c00323{width:44.100000px;}
._27_c00323{width:73.068000px;}
._28_c00323{width:103.260000px;}
._1d_c00323{width:149.700000px;}
._1f_c00323{width:166.200000px;}
.fc2_c00323{color:transparent;}
.fc1_c00323{color:rgb(128,128,128);}
.fc0_c00323{color:rgb(0,0,0);}
.fs3_c00323{font-size:24.000000px;}
.fs4_c00323{font-size:48.000000px;}
.fs0_c00323{font-size:60.000000px;}
.fs5_c00323{font-size:63.000000px;}
.fs1_c00323{font-size:66.000000px;}
.fs6_c00323{font-size:78.000000px;}
.fs2_c00323{font-size:189.000000px;}
.y0_c00323{bottom:0.000000px;}
.y4f_c00323{bottom:3.105000px;}
.y4e_c00323{bottom:7.228371px;}
.y47_c00323{bottom:43.665000px;}
.y46_c00323{bottom:61.065000px;}
.y45_c00323{bottom:79.965000px;}
.y44_c00323{bottom:97.215000px;}
.y4d_c00323{bottom:99.915000px;}
.y24_c00323{bottom:110.715000px;}
.y43_c00323{bottom:115.515000px;}
.y4c_c00323{bottom:118.515000px;}
.y42_c00323{bottom:133.965000px;}
.y4b_c00323{bottom:135.765000px;}
.y41_c00323{bottom:151.215000px;}
.y23_c00323{bottom:165.165000px;}
.y40_c00323{bottom:169.215000px;}
.y3f_c00323{bottom:186.615000px;}
.y22_c00323{bottom:188.415000px;}
.y21_c00323{bottom:205.515000px;}
.y3e_c00323{bottom:205.665000px;}
.y20_c00323{bottom:222.465000px;}
.y3d_c00323{bottom:223.815000px;}
.y1f_c00323{bottom:241.965000px;}
.y3c_c00323{bottom:242.715000px;}
.y1e_c00323{bottom:260.565000px;}
.y3b_c00323{bottom:260.865000px;}
.y1d_c00323{bottom:278.415000px;}
.y1c_c00323{bottom:296.715000px;}
.y3a_c00323{bottom:297.315000px;}
.y1b_c00323{bottom:314.565000px;}
.y1a_c00323{bottom:333.465000px;}
.y39_c00323{bottom:333.765000px;}
.y19_c00323{bottom:351.015000px;}
.y38_c00323{bottom:351.765000px;}
.y18_c00323{bottom:369.315000px;}
.y37_c00323{bottom:370.665000px;}
.y17_c00323{bottom:387.165000px;}
.y36_c00323{bottom:387.915000px;}
.y4a_c00323{bottom:389.115000px;}
.y16_c00323{bottom:405.315000px;}
.y35_c00323{bottom:406.065000px;}
.y15_c00323{bottom:423.315000px;}
.y34_c00323{bottom:424.965000px;}
.y14_c00323{bottom:441.915000px;}
.y13_c00323{bottom:460.665000px;}
.y12_c00323{bottom:478.665000px;}
.y33_c00323{bottom:478.965000px;}
.y11_c00323{bottom:496.815000px;}
.y32_c00323{bottom:497.265000px;}
.y10_c00323{bottom:515.415000px;}
.y31_c00323{bottom:515.715000px;}
.yf_c00323{bottom:533.565000px;}
.y30_c00323{bottom:534.015000px;}
.y49_c00323{bottom:548.115000px;}
.ye_c00323{bottom:552.165000px;}
.y2f_c00323{bottom:552.465000px;}
.y48_c00323{bottom:568.815000px;}
.yd_c00323{bottom:569.715000px;}
.y2e_c00323{bottom:570.765000px;}
.yc_c00323{bottom:588.315000px;}
.y2d_c00323{bottom:588.615000px;}
.y2b_c00323{bottom:600.765000px;}
.yb_c00323{bottom:606.465000px;}
.y2c_c00323{bottom:606.615000px;}
.ya_c00323{bottom:624.765000px;}
.y9_c00323{bottom:642.915000px;}
.y8_c00323{bottom:660.915000px;}
.y2a_c00323{bottom:661.515000px;}
.y7_c00323{bottom:679.065000px;}
.y29_c00323{bottom:679.515000px;}
.y6_c00323{bottom:697.065000px;}
.y28_c00323{bottom:697.665000px;}
.y5_c00323{bottom:715.215000px;}
.y27_c00323{bottom:715.815000px;}
.y4_c00323{bottom:733.515000px;}
.y26_c00323{bottom:734.115000px;}
.y3_c00323{bottom:751.065000px;}
.y25_c00323{bottom:769.515000px;}
.y2_c00323{bottom:769.815000px;}
.y1_c00323{bottom:788.115000px;}
.h8_c00323{height:13.200074px;}
.h9_c00323{height:43.804688px;}
.h2_c00323{height:62.880000px;}
.h3_c00323{height:64.020000px;}
.h7_c00323{height:67.221000px;}
.h4_c00323{height:70.422000px;}
.h6_c00323{height:81.744000px;}
.h5_c00323{height:198.072000px;}
.h0_c00323{height:841.875000px;}
.h1_c00323{height:842.250000px;}
.w2_c00323{width:104.875500px;}
.w1_c00323{width:560.250000px;}
.w0_c00323{width:560.550000px;}
.x0_c00323{left:0.000000px;}
.x3_c00323{left:85.500000px;}
.x2_c00323{left:87.000000px;}
.x1_c00323{left:88.200000px;}
.x4_c00323{left:103.950000px;}
.x5_c00323{left:127.350000px;}
.x6_c00323{left:146.550000px;}
.x8_c00323{left:160.050000px;}
.x7_c00323{left:172.500000px;}
.x18_c00323{left:232.089249px;}
.x11_c00323{left:302.850000px;}
.x12_c00323{left:304.050000px;}
.xf_c00323{left:306.750000px;}
.xa_c00323{left:307.800000px;}
.x10_c00323{left:308.850000px;}
.xb_c00323{left:318.900000px;}
.xe_c00323{left:356.400000px;}
.xc_c00323{left:361.350000px;}
.x9_c00323{left:374.400000px;}
.xd_c00323{left:392.250000px;}
.x13_c00323{left:461.400000px;}
.x16_c00323{left:507.900000px;}
.x17_c00323{left:509.400000px;}
.x15_c00323{left:510.600000px;}
.x14_c00323{left:513.000000px;}
@media print{
.v0_c00323{vertical-align:0.000000pt;}
.v1_c00323{vertical-align:86.400000pt;}
.ls5_c00323{letter-spacing:0.000000pt;}
.ls1_c00323{letter-spacing:0.533333pt;}
.ls0_c00323{letter-spacing:2.666667pt;}
.ls2_c00323{letter-spacing:5.333333pt;}
.ls3_c00323{letter-spacing:20.760000pt;}
.ls4_c00323{letter-spacing:21.920000pt;}
.ws7_c00323{word-spacing:-55.050667pt;}
.ws1_c00323{word-spacing:-16.053333pt;}
.ws0_c00323{word-spacing:-16.000000pt;}
.ws5_c00323{word-spacing:-14.666667pt;}
.ws6_c00323{word-spacing:-14.000000pt;}
.ws4_c00323{word-spacing:-13.333333pt;}
.ws3_c00323{word-spacing:-12.586667pt;}
.ws8_c00323{word-spacing:0.000000pt;}
.ws2_c00323{word-spacing:22.560000pt;}
._29_c00323{margin-left:-26.986667pt;}
._1e_c00323{margin-left:-15.306667pt;}
._17_c00323{margin-left:-12.906667pt;}
._23_c00323{margin-left:-10.986667pt;}
._16_c00323{margin-left:-9.706667pt;}
._20_c00323{margin-left:-8.586667pt;}
._1a_c00323{margin-left:-7.253333pt;}
._c_c00323{margin-left:-6.133333pt;}
._8_c00323{margin-left:-5.120000pt;}
._7_c00323{margin-left:-4.053333pt;}
._9_c00323{margin-left:-2.880000pt;}
._6_c00323{margin-left:-1.493333pt;}
._1_c00323{width:1.280000pt;}
._2_c00323{width:2.186667pt;}
._0_c00323{width:3.146667pt;}
._5_c00323{width:4.320000pt;}
._4_c00323{width:5.386667pt;}
._3_c00323{width:6.613333pt;}
._19_c00323{width:7.840000pt;}
._a_c00323{width:8.800000pt;}
._b_c00323{width:10.453333pt;}
._d_c00323{width:11.680000pt;}
._14_c00323{width:12.853333pt;}
._21_c00323{width:13.813333pt;}
._e_c00323{width:14.986667pt;}
._26_c00323{width:16.160000pt;}
._f_c00323{width:17.653333pt;}
._12_c00323{width:18.720000pt;}
._11_c00323{width:20.266667pt;}
._10_c00323{width:21.493333pt;}
._13_c00323{width:22.826667pt;}
._1b_c00323{width:24.373333pt;}
._24_c00323{width:25.653333pt;}
._1c_c00323{width:27.360000pt;}
._25_c00323{width:28.426667pt;}
._18_c00323{width:29.600000pt;}
._22_c00323{width:35.146667pt;}
._15_c00323{width:39.200000pt;}
._27_c00323{width:64.949333pt;}
._28_c00323{width:91.786667pt;}
._1d_c00323{width:133.066667pt;}
._1f_c00323{width:147.733333pt;}
.fs3_c00323{font-size:21.333333pt;}
.fs4_c00323{font-size:42.666667pt;}
.fs0_c00323{font-size:53.333333pt;}
.fs5_c00323{font-size:56.000000pt;}
.fs1_c00323{font-size:58.666667pt;}
.fs6_c00323{font-size:69.333333pt;}
.fs2_c00323{font-size:168.000000pt;}
.y0_c00323{bottom:0.000000pt;}
.y4f_c00323{bottom:2.760000pt;}
.y4e_c00323{bottom:6.425219pt;}
.y47_c00323{bottom:38.813333pt;}
.y46_c00323{bottom:54.280000pt;}
.y45_c00323{bottom:71.080000pt;}
.y44_c00323{bottom:86.413333pt;}
.y4d_c00323{bottom:88.813333pt;}
.y24_c00323{bottom:98.413333pt;}
.y43_c00323{bottom:102.680000pt;}
.y4c_c00323{bottom:105.346667pt;}
.y42_c00323{bottom:119.080000pt;}
.y4b_c00323{bottom:120.680000pt;}
.y41_c00323{bottom:134.413333pt;}
.y23_c00323{bottom:146.813333pt;}
.y40_c00323{bottom:150.413333pt;}
.y3f_c00323{bottom:165.880000pt;}
.y22_c00323{bottom:167.480000pt;}
.y21_c00323{bottom:182.680000pt;}
.y3e_c00323{bottom:182.813333pt;}
.y20_c00323{bottom:197.746667pt;}
.y3d_c00323{bottom:198.946667pt;}
.y1f_c00323{bottom:215.080000pt;}
.y3c_c00323{bottom:215.746667pt;}
.y1e_c00323{bottom:231.613333pt;}
.y3b_c00323{bottom:231.880000pt;}
.y1d_c00323{bottom:247.480000pt;}
.y1c_c00323{bottom:263.746667pt;}
.y3a_c00323{bottom:264.280000pt;}
.y1b_c00323{bottom:279.613333pt;}
.y1a_c00323{bottom:296.413333pt;}
.y39_c00323{bottom:296.680000pt;}
.y19_c00323{bottom:312.013333pt;}
.y38_c00323{bottom:312.680000pt;}
.y18_c00323{bottom:328.280000pt;}
.y37_c00323{bottom:329.480000pt;}
.y17_c00323{bottom:344.146667pt;}
.y36_c00323{bottom:344.813333pt;}
.y4a_c00323{bottom:345.880000pt;}
.y16_c00323{bottom:360.280000pt;}
.y35_c00323{bottom:360.946667pt;}
.y15_c00323{bottom:376.280000pt;}
.y34_c00323{bottom:377.746667pt;}
.y14_c00323{bottom:392.813333pt;}
.y13_c00323{bottom:409.480000pt;}
.y12_c00323{bottom:425.480000pt;}
.y33_c00323{bottom:425.746667pt;}
.y11_c00323{bottom:441.613333pt;}
.y32_c00323{bottom:442.013333pt;}
.y10_c00323{bottom:458.146667pt;}
.y31_c00323{bottom:458.413333pt;}
.yf_c00323{bottom:474.280000pt;}
.y30_c00323{bottom:474.680000pt;}
.y49_c00323{bottom:487.213333pt;}
.ye_c00323{bottom:490.813333pt;}
.y2f_c00323{bottom:491.080000pt;}
.y48_c00323{bottom:505.613333pt;}
.yd_c00323{bottom:506.413333pt;}
.y2e_c00323{bottom:507.346667pt;}
.yc_c00323{bottom:522.946667pt;}
.y2d_c00323{bottom:523.213333pt;}
.y2b_c00323{bottom:534.013333pt;}
.yb_c00323{bottom:539.080000pt;}
.y2c_c00323{bottom:539.213333pt;}
.ya_c00323{bottom:555.346667pt;}
.y9_c00323{bottom:571.480000pt;}
.y8_c00323{bottom:587.480000pt;}
.y2a_c00323{bottom:588.013333pt;}
.y7_c00323{bottom:603.613333pt;}
.y29_c00323{bottom:604.013333pt;}
.y6_c00323{bottom:619.613333pt;}
.y28_c00323{bottom:620.146667pt;}
.y5_c00323{bottom:635.746667pt;}
.y27_c00323{bottom:636.280000pt;}
.y4_c00323{bottom:652.013333pt;}
.y26_c00323{bottom:652.546667pt;}
.y3_c00323{bottom:667.613333pt;}
.y25_c00323{bottom:684.013333pt;}
.y2_c00323{bottom:684.280000pt;}
.y1_c00323{bottom:700.546667pt;}
.h8_c00323{height:11.733399pt;}
.h9_c00323{height:38.937500pt;}
.h2_c00323{height:55.893333pt;}
.h3_c00323{height:56.906667pt;}
.h7_c00323{height:59.752000pt;}
.h4_c00323{height:62.597333pt;}
.h6_c00323{height:72.661333pt;}
.h5_c00323{height:176.064000pt;}
.h0_c00323{height:748.333333pt;}
.h1_c00323{height:748.666667pt;}
.w2_c00323{width:93.222667pt;}
.w1_c00323{width:498.000000pt;}
.w0_c00323{width:498.266667pt;}
.x0_c00323{left:0.000000pt;}
.x3_c00323{left:76.000000pt;}
.x2_c00323{left:77.333333pt;}
.x1_c00323{left:78.400000pt;}
.x4_c00323{left:92.400000pt;}
.x5_c00323{left:113.200000pt;}
.x6_c00323{left:130.266667pt;}
.x8_c00323{left:142.266667pt;}
.x7_c00323{left:153.333333pt;}
.x18_c00323{left:206.301554pt;}
.x11_c00323{left:269.200000pt;}
.x12_c00323{left:270.266667pt;}
.xf_c00323{left:272.666667pt;}
.xa_c00323{left:273.600000pt;}
.x10_c00323{left:274.533333pt;}
.xb_c00323{left:283.466667pt;}
.xe_c00323{left:316.800000pt;}
.xc_c00323{left:321.200000pt;}
.x9_c00323{left:332.800000pt;}
.xd_c00323{left:348.666667pt;}
.x13_c00323{left:410.133333pt;}
.x16_c00323{left:451.466667pt;}
.x17_c00323{left:452.800000pt;}
.x15_c00323{left:453.866667pt;}
.x14_c00323{left:456.000000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ae5402ff47cf74fcbf1ffd91.woff2')format("woff");}.ff1_c00324{font-family:ff1_c00324;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00324;src:url('chunks/assets/font_0424abca9f2dc187656dc028.woff2')format("woff");}.ff2_c00324{font-family:ff2_c00324;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00324;src:url('chunks/assets/font_5fafabddc30ea5916a828007.woff2')format("woff");}.ff3_c00324{font-family:ff3_c00324;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00324;src:url('chunks/assets/font_c1f531441e4d83f7d875d533.woff2')format("woff");}.ff4_c00324{font-family:ff4_c00324;line-height:1.575000;font-style:normal;font-weight:normal;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_ff2875fa2c2354c7de50ee63.woff2')format("woff");}.ff5_c00324{font-family:ff5_c00324;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00324;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff6_c00324{font-family:ff6_c00324;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00324{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00324{vertical-align:0.000000px;}
.ls6_c00324{letter-spacing:0.000000px;}
.ls2_c00324{letter-spacing:1.605000px;}
.ls0_c00324{letter-spacing:3.000000px;}
.ls7_c00324{letter-spacing:6.000000px;}
.ls5_c00324{letter-spacing:14.445000px;}
.ls3_c00324{letter-spacing:16.419000px;}
.ls1_c00324{letter-spacing:24.480000px;}
.ls4_c00324{letter-spacing:30.645000px;}
.sc__c00324{text-shadow:none;}
.sc0_c00324{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00324{-webkit-text-stroke:0px transparent;}
.sc0_c00324{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00324{word-spacing:-18.390000px;}
.ws2_c00324{word-spacing:-18.000000px;}
.ws1_c00324{word-spacing:-14.160000px;}
.ws0_c00324{word-spacing:-12.912000px;}
.ws4_c00324{word-spacing:0.000000px;}
._1a_c00324{margin-left:-22.314000px;}
._28_c00324{margin-left:-19.920000px;}
._26_c00324{margin-left:-15.174000px;}
._16_c00324{margin-left:-9.972000px;}
._17_c00324{margin-left:-7.980000px;}
._12_c00324{margin-left:-6.270000px;}
._b_c00324{margin-left:-4.890000px;}
._a_c00324{margin-left:-3.150000px;}
._5_c00324{margin-left:-1.536000px;}
._20_c00324{width:1.014000px;}
._8_c00324{width:2.016000px;}
._7_c00324{width:3.444000px;}
._6_c00324{width:4.476000px;}
._1_c00324{width:5.610000px;}
._9_c00324{width:6.660000px;}
._0_c00324{width:7.770000px;}
._2_c00324{width:8.778000px;}
._e_c00324{width:9.906000px;}
._3_c00324{width:11.298000px;}
._c_c00324{width:13.320000px;}
._15_c00324{width:14.514000px;}
._11_c00324{width:15.528000px;}
._4_c00324{width:16.614000px;}
._21_c00324{width:19.482000px;}
._13_c00324{width:20.682000px;}
._d_c00324{width:21.906000px;}
._24_c00324{width:23.220000px;}
._14_c00324{width:24.492000px;}
._f_c00324{width:25.734000px;}
._10_c00324{width:27.222000px;}
._19_c00324{width:28.224000px;}
._25_c00324{width:30.186000px;}
._18_c00324{width:31.296000px;}
._1f_c00324{width:35.502000px;}
._1d_c00324{width:36.699000px;}
._22_c00324{width:37.812000px;}
._1b_c00324{width:40.587000px;}
._1c_c00324{width:56.343000px;}
._1e_c00324{width:114.312000px;}
._27_c00324{width:222.366000px;}
._23_c00324{width:298.674000px;}
.fc2_c00324{color:transparent;}
.fc1_c00324{color:rgb(128,128,128);}
.fc0_c00324{color:rgb(0,0,0);}
.fs4_c00324{font-size:39.000000px;}
.fs0_c00324{font-size:42.000000px;}
.fs3_c00324{font-size:45.000000px;}
.fs5_c00324{font-size:48.000000px;}
.fs2_c00324{font-size:57.000000px;}
.fs1_c00324{font-size:60.000000px;}
.y0_c00324{bottom:0.000000px;}
.y4e_c00324{bottom:3.105000px;}
.y4d_c00324{bottom:7.228371px;}
.y29_c00324{bottom:49.965000px;}
.y28_c00324{bottom:68.565000px;}
.y27_c00324{bottom:86.715000px;}
.y4c_c00324{bottom:97.215000px;}
.y26_c00324{bottom:105.015000px;}
.y4b_c00324{bottom:118.515000px;}
.y25_c00324{bottom:123.315000px;}
.y4a_c00324{bottom:136.665000px;}
.y24_c00324{bottom:141.465000px;}
.y49_c00324{bottom:156.315000px;}
.y23_c00324{bottom:159.315000px;}
.y48_c00324{bottom:174.465000px;}
.y22_c00324{bottom:177.165000px;}
.y47_c00324{bottom:193.065000px;}
.y21_c00324{bottom:195.165000px;}
.y46_c00324{bottom:210.765000px;}
.y20_c00324{bottom:212.265000px;}
.y45_c00324{bottom:228.915000px;}
.y1f_c00324{bottom:231.165000px;}
.y44_c00324{bottom:247.065000px;}
.y1e_c00324{bottom:249.165000px;}
.y43_c00324{bottom:265.065000px;}
.y1d_c00324{bottom:267.015000px;}
.y42_c00324{bottom:282.915000px;}
.y1c_c00324{bottom:284.715000px;}
.y41_c00324{bottom:300.765000px;}
.y1b_c00324{bottom:302.865000px;}
.y40_c00324{bottom:319.065000px;}
.y1a_c00324{bottom:321.015000px;}
.y3f_c00324{bottom:336.915000px;}
.y19_c00324{bottom:338.565000px;}
.y18_c00324{bottom:355.365000px;}
.y3e_c00324{bottom:373.365000px;}
.y17_c00324{bottom:375.015000px;}
.y3d_c00324{bottom:391.965000px;}
.y16_c00324{bottom:392.415000px;}
.y3c_c00324{bottom:409.515000px;}
.y15_c00324{bottom:410.715000px;}
.y3b_c00324{bottom:427.965000px;}
.y14_c00324{bottom:429.015000px;}
.y3a_c00324{bottom:445.815000px;}
.y13_c00324{bottom:446.865000px;}
.y39_c00324{bottom:464.115000px;}
.y12_c00324{bottom:464.865000px;}
.y38_c00324{bottom:482.265000px;}
.y11_c00324{bottom:482.715000px;}
.y37_c00324{bottom:499.815000px;}
.y10_c00324{bottom:500.865000px;}
.y36_c00324{bottom:518.115000px;}
.yf_c00324{bottom:518.415000px;}
.y35_c00324{bottom:536.265000px;}
.ye_c00324{bottom:537.015000px;}
.yd_c00324{bottom:554.565000px;}
.yc_c00324{bottom:572.115000px;}
.y34_c00324{bottom:572.415000px;}
.yb_c00324{bottom:590.715000px;}
.y33_c00324{bottom:591.015000px;}
.ya_c00324{bottom:608.265000px;}
.y32_c00324{bottom:608.565000px;}
.y9_c00324{bottom:626.415000px;}
.y31_c00324{bottom:626.865000px;}
.y8_c00324{bottom:643.965000px;}
.y30_c00324{bottom:644.715000px;}
.y7_c00324{bottom:662.565000px;}
.y6_c00324{bottom:680.415000px;}
.y2f_c00324{bottom:680.715000px;}
.y5_c00324{bottom:698.265000px;}
.y2e_c00324{bottom:698.415000px;}
.y4_c00324{bottom:715.815000px;}
.y2d_c00324{bottom:716.565000px;}
.y2c_c00324{bottom:734.715000px;}
.y3_c00324{bottom:734.865000px;}
.y2_c00324{bottom:753.015000px;}
.y2b_c00324{bottom:753.315000px;}
.y1_c00324{bottom:770.265000px;}
.y2a_c00324{bottom:771.315000px;}
.h6_c00324{height:13.200074px;}
.h7_c00324{height:43.804688px;}
.h2_c00324{height:44.016000px;}
.h5_c00324{height:59.736000px;}
.h3_c00324{height:62.880000px;}
.h4_c00324{height:64.020000px;}
.h1_c00324{height:822.750000px;}
.h0_c00324{height:822.975000px;}
.w2_c00324{width:104.875500px;}
.w0_c00324{width:575.100000px;}
.w1_c00324{width:575.250000px;}
.x0_c00324{left:0.000000px;}
.x6_c00324{left:22.950000px;}
.x1_c00324{left:81.300000px;}
.x2_c00324{left:82.350000px;}
.x3_c00324{left:83.400000px;}
.x5_c00324{left:84.750000px;}
.x4_c00324{left:109.800000px;}
.xd_c00324{left:239.364258px;}
.x7_c00324{left:299.100000px;}
.x8_c00324{left:300.750000px;}
.x9_c00324{left:301.800000px;}
.xa_c00324{left:321.750000px;}
.xb_c00324{left:360.150000px;}
.xc_c00324{left:385.800000px;}
@media print{
.v0_c00324{vertical-align:0.000000pt;}
.ls6_c00324{letter-spacing:0.000000pt;}
.ls2_c00324{letter-spacing:1.426667pt;}
.ls0_c00324{letter-spacing:2.666667pt;}
.ls7_c00324{letter-spacing:5.333333pt;}
.ls5_c00324{letter-spacing:12.840000pt;}
.ls3_c00324{letter-spacing:14.594667pt;}
.ls1_c00324{letter-spacing:21.760000pt;}
.ls4_c00324{letter-spacing:27.240000pt;}
.ws3_c00324{word-spacing:-16.346667pt;}
.ws2_c00324{word-spacing:-16.000000pt;}
.ws1_c00324{word-spacing:-12.586667pt;}
.ws0_c00324{word-spacing:-11.477333pt;}
.ws4_c00324{word-spacing:0.000000pt;}
._1a_c00324{margin-left:-19.834667pt;}
._28_c00324{margin-left:-17.706667pt;}
._26_c00324{margin-left:-13.488000pt;}
._16_c00324{margin-left:-8.864000pt;}
._17_c00324{margin-left:-7.093333pt;}
._12_c00324{margin-left:-5.573333pt;}
._b_c00324{margin-left:-4.346667pt;}
._a_c00324{margin-left:-2.800000pt;}
._5_c00324{margin-left:-1.365333pt;}
._20_c00324{width:0.901333pt;}
._8_c00324{width:1.792000pt;}
._7_c00324{width:3.061333pt;}
._6_c00324{width:3.978667pt;}
._1_c00324{width:4.986667pt;}
._9_c00324{width:5.920000pt;}
._0_c00324{width:6.906667pt;}
._2_c00324{width:7.802667pt;}
._e_c00324{width:8.805333pt;}
._3_c00324{width:10.042667pt;}
._c_c00324{width:11.840000pt;}
._15_c00324{width:12.901333pt;}
._11_c00324{width:13.802667pt;}
._4_c00324{width:14.768000pt;}
._21_c00324{width:17.317333pt;}
._13_c00324{width:18.384000pt;}
._d_c00324{width:19.472000pt;}
._24_c00324{width:20.640000pt;}
._14_c00324{width:21.770667pt;}
._f_c00324{width:22.874667pt;}
._10_c00324{width:24.197333pt;}
._19_c00324{width:25.088000pt;}
._25_c00324{width:26.832000pt;}
._18_c00324{width:27.818667pt;}
._1f_c00324{width:31.557333pt;}
._1d_c00324{width:32.621333pt;}
._22_c00324{width:33.610667pt;}
._1b_c00324{width:36.077333pt;}
._1c_c00324{width:50.082667pt;}
._1e_c00324{width:101.610667pt;}
._27_c00324{width:197.658667pt;}
._23_c00324{width:265.488000pt;}
.fs4_c00324{font-size:34.666667pt;}
.fs0_c00324{font-size:37.333333pt;}
.fs3_c00324{font-size:40.000000pt;}
.fs5_c00324{font-size:42.666667pt;}
.fs2_c00324{font-size:50.666667pt;}
.fs1_c00324{font-size:53.333333pt;}
.y0_c00324{bottom:0.000000pt;}
.y4e_c00324{bottom:2.760000pt;}
.y4d_c00324{bottom:6.425219pt;}
.y29_c00324{bottom:44.413333pt;}
.y28_c00324{bottom:60.946667pt;}
.y27_c00324{bottom:77.080000pt;}
.y4c_c00324{bottom:86.413333pt;}
.y26_c00324{bottom:93.346667pt;}
.y4b_c00324{bottom:105.346667pt;}
.y25_c00324{bottom:109.613333pt;}
.y4a_c00324{bottom:121.480000pt;}
.y24_c00324{bottom:125.746667pt;}
.y49_c00324{bottom:138.946667pt;}
.y23_c00324{bottom:141.613333pt;}
.y48_c00324{bottom:155.080000pt;}
.y22_c00324{bottom:157.480000pt;}
.y47_c00324{bottom:171.613333pt;}
.y21_c00324{bottom:173.480000pt;}
.y46_c00324{bottom:187.346667pt;}
.y20_c00324{bottom:188.680000pt;}
.y45_c00324{bottom:203.480000pt;}
.y1f_c00324{bottom:205.480000pt;}
.y44_c00324{bottom:219.613333pt;}
.y1e_c00324{bottom:221.480000pt;}
.y43_c00324{bottom:235.613333pt;}
.y1d_c00324{bottom:237.346667pt;}
.y42_c00324{bottom:251.480000pt;}
.y1c_c00324{bottom:253.080000pt;}
.y41_c00324{bottom:267.346667pt;}
.y1b_c00324{bottom:269.213333pt;}
.y40_c00324{bottom:283.613333pt;}
.y1a_c00324{bottom:285.346667pt;}
.y3f_c00324{bottom:299.480000pt;}
.y19_c00324{bottom:300.946667pt;}
.y18_c00324{bottom:315.880000pt;}
.y3e_c00324{bottom:331.880000pt;}
.y17_c00324{bottom:333.346667pt;}
.y3d_c00324{bottom:348.413333pt;}
.y16_c00324{bottom:348.813333pt;}
.y3c_c00324{bottom:364.013333pt;}
.y15_c00324{bottom:365.080000pt;}
.y3b_c00324{bottom:380.413333pt;}
.y14_c00324{bottom:381.346667pt;}
.y3a_c00324{bottom:396.280000pt;}
.y13_c00324{bottom:397.213333pt;}
.y39_c00324{bottom:412.546667pt;}
.y12_c00324{bottom:413.213333pt;}
.y38_c00324{bottom:428.680000pt;}
.y11_c00324{bottom:429.080000pt;}
.y37_c00324{bottom:444.280000pt;}
.y10_c00324{bottom:445.213333pt;}
.y36_c00324{bottom:460.546667pt;}
.yf_c00324{bottom:460.813333pt;}
.y35_c00324{bottom:476.680000pt;}
.ye_c00324{bottom:477.346667pt;}
.yd_c00324{bottom:492.946667pt;}
.yc_c00324{bottom:508.546667pt;}
.y34_c00324{bottom:508.813333pt;}
.yb_c00324{bottom:525.080000pt;}
.y33_c00324{bottom:525.346667pt;}
.ya_c00324{bottom:540.680000pt;}
.y32_c00324{bottom:540.946667pt;}
.y9_c00324{bottom:556.813333pt;}
.y31_c00324{bottom:557.213333pt;}
.y8_c00324{bottom:572.413333pt;}
.y30_c00324{bottom:573.080000pt;}
.y7_c00324{bottom:588.946667pt;}
.y6_c00324{bottom:604.813333pt;}
.y2f_c00324{bottom:605.080000pt;}
.y5_c00324{bottom:620.680000pt;}
.y2e_c00324{bottom:620.813333pt;}
.y4_c00324{bottom:636.280000pt;}
.y2d_c00324{bottom:636.946667pt;}
.y2c_c00324{bottom:653.080000pt;}
.y3_c00324{bottom:653.213333pt;}
.y2_c00324{bottom:669.346667pt;}
.y2b_c00324{bottom:669.613333pt;}
.y1_c00324{bottom:684.680000pt;}
.y2a_c00324{bottom:685.613333pt;}
.h6_c00324{height:11.733399pt;}
.h7_c00324{height:38.937500pt;}
.h2_c00324{height:39.125333pt;}
.h5_c00324{height:53.098667pt;}
.h3_c00324{height:55.893333pt;}
.h4_c00324{height:56.906667pt;}
.h1_c00324{height:731.333333pt;}
.h0_c00324{height:731.533333pt;}
.w2_c00324{width:93.222667pt;}
.w0_c00324{width:511.200000pt;}
.w1_c00324{width:511.333333pt;}
.x0_c00324{left:0.000000pt;}
.x6_c00324{left:20.400000pt;}
.x1_c00324{left:72.266667pt;}
.x2_c00324{left:73.200000pt;}
.x3_c00324{left:74.133333pt;}
.x5_c00324{left:75.333333pt;}
.x4_c00324{left:97.600000pt;}
.xd_c00324{left:212.768229pt;}
.x7_c00324{left:265.866667pt;}
.x8_c00324{left:267.333333pt;}
.x9_c00324{left:268.266667pt;}
.xa_c00324{left:286.000000pt;}
.xb_c00324{left:320.133333pt;}
.xc_c00324{left:342.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_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_79dbadd30918da05aeabff60.woff2')format("woff");}.ff1_c00325{font-family:ff1_c00325;line-height:1.437000;font-style:normal;font-weight:normal;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_c904c114b4d1b1bb22e8837d.woff2')format("woff");}.ff2_c00325{font-family:ff2_c00325;line-height:1.437000;font-style:normal;font-weight:normal;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_5eb9c424d2f036fd3feafe8c.woff2')format("woff");}.ff3_c00325{font-family:ff3_c00325;line-height:1.437000;font-style:normal;font-weight:normal;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_2aca6f640e07b71e311f32ec.woff2')format("woff");}.ff4_c00325{font-family:ff4_c00325;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00325;src:url('chunks/assets/font_29388d566375a357dcf3ddb6.woff2')format("woff");}.ff5_c00325{font-family:ff5_c00325;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00325;src:url('chunks/assets/font_34a681ac7c0916ed598fa0fd.woff2')format("woff");}.ff6_c00325{font-family:ff6_c00325;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00325;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff7_c00325{font-family:ff7_c00325;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00325{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00325{vertical-align:0.000000px;}
.v1_c00325{vertical-align:96.000000px;}
.ls5_c00325{letter-spacing:0.000000px;}
.ls0_c00325{letter-spacing:3.000000px;}
.ls3_c00325{letter-spacing:6.000000px;}
.ls6_c00325{letter-spacing:9.000000px;}
.ls7_c00325{letter-spacing:12.000000px;}
.ls4_c00325{letter-spacing:14.340000px;}
.ls1_c00325{letter-spacing:18.060000px;}
.ls2_c00325{letter-spacing:20.940000px;}
.sc__c00325{text-shadow:none;}
.sc0_c00325{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00325{-webkit-text-stroke:0px transparent;}
.sc0_c00325{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00325{word-spacing:-65.463000px;}
.ws7_c00325{word-spacing:-53.505000px;}
.ws5_c00325{word-spacing:-20.340000px;}
.ws0_c00325{word-spacing:-18.060000px;}
.ws1_c00325{word-spacing:-17.868000px;}
.ws2_c00325{word-spacing:-14.160000px;}
.ws8_c00325{word-spacing:0.000000px;}
.ws4_c00325{word-spacing:1.920000px;}
.ws6_c00325{word-spacing:13.500000px;}
._f_c00325{margin-left:-40.083000px;}
._24_c00325{margin-left:-18.450000px;}
._1f_c00325{margin-left:-17.100000px;}
._a_c00325{margin-left:-11.997000px;}
._c_c00325{margin-left:-10.647000px;}
._25_c00325{margin-left:-9.645000px;}
._b_c00325{margin-left:-8.631000px;}
._22_c00325{margin-left:-7.560000px;}
._9_c00325{margin-left:-6.552000px;}
._8_c00325{margin-left:-5.229000px;}
._7_c00325{margin-left:-3.339000px;}
._d_c00325{margin-left:-2.280000px;}
._6_c00325{margin-left:-1.020000px;}
._4_c00325{width:1.080000px;}
._2_c00325{width:2.460000px;}
._1_c00325{width:4.200000px;}
._15_c00325{width:5.820000px;}
._0_c00325{width:7.440000px;}
._3_c00325{width:9.360000px;}
._17_c00325{width:10.377000px;}
._e_c00325{width:11.880000px;}
._16_c00325{width:13.020000px;}
._1b_c00325{width:14.460000px;}
._5_c00325{width:16.140000px;}
._19_c00325{width:17.880000px;}
._13_c00325{width:19.380000px;}
._14_c00325{width:20.463000px;}
._23_c00325{width:21.759000px;}
._1a_c00325{width:23.220000px;}
._1c_c00325{width:24.960000px;}
._21_c00325{width:26.097000px;}
._12_c00325{width:28.680000px;}
._11_c00325{width:30.900000px;}
._1e_c00325{width:33.129000px;}
._10_c00325{width:35.760000px;}
._26_c00325{width:62.160000px;}
._20_c00325{width:116.400000px;}
._1d_c00325{width:126.336000px;}
._18_c00325{width:155.679000px;}
.fc2_c00325{color:transparent;}
.fc1_c00325{color:rgb(128,128,128);}
.fc0_c00325{color:rgb(0,0,0);}
.fs6_c00325{font-size:48.000000px;}
.fs2_c00325{font-size:57.000000px;}
.fs0_c00325{font-size:60.000000px;}
.fs1_c00325{font-size:63.000000px;}
.fs3_c00325{font-size:66.000000px;}
.fs5_c00325{font-size:105.000000px;}
.fs4_c00325{font-size:213.000000px;}
.y0_c00325{bottom:0.000000px;}
.y49_c00325{bottom:3.105000px;}
.y48_c00325{bottom:7.228357px;}
.y47_c00325{bottom:49.230000px;}
.y26_c00325{bottom:64.830000px;}
.y25_c00325{bottom:83.730000px;}
.y24_c00325{bottom:102.030000px;}
.y46_c00325{bottom:115.530000px;}
.y23_c00325{bottom:119.880000px;}
.y22_c00325{bottom:138.480000px;}
.y21_c00325{bottom:156.330000px;}
.y20_c00325{bottom:174.780000px;}
.y45_c00325{bottom:174.930000px;}
.y1f_c00325{bottom:192.480000px;}
.y1e_c00325{bottom:210.030000px;}
.y44_c00325{bottom:211.230000px;}
.y1d_c00325{bottom:228.480000px;}
.y43_c00325{bottom:229.230000px;}
.y1c_c00325{bottom:246.480000px;}
.y42_c00325{bottom:247.080000px;}
.y1b_c00325{bottom:264.330000px;}
.y41_c00325{bottom:265.680000px;}
.y1a_c00325{bottom:282.480000px;}
.y40_c00325{bottom:283.230000px;}
.y19_c00325{bottom:300.780000px;}
.y3f_c00325{bottom:301.380000px;}
.y18_c00325{bottom:318.630000px;}
.y3e_c00325{bottom:319.380000px;}
.y17_c00325{bottom:336.180000px;}
.y3d_c00325{bottom:337.530000px;}
.y16_c00325{bottom:355.080000px;}
.y3c_c00325{bottom:356.130000px;}
.y15_c00325{bottom:373.980000px;}
.y14_c00325{bottom:391.530000px;}
.y3b_c00325{bottom:391.830000px;}
.y13_c00325{bottom:409.680000px;}
.y3a_c00325{bottom:427.680000px;}
.y12_c00325{bottom:427.980000px;}
.y39_c00325{bottom:446.130000px;}
.y11_c00325{bottom:446.280000px;}
.y10_c00325{bottom:464.430000px;}
.y38_c00325{bottom:482.730000px;}
.yf_c00325{bottom:483.330000px;}
.ye_c00325{bottom:500.880000px;}
.yd_c00325{bottom:519.480000px;}
.y37_c00325{bottom:519.780000px;}
.yc_c00325{bottom:537.630000px;}
.y36_c00325{bottom:537.930000px;}
.yb_c00325{bottom:555.930000px;}
.y35_c00325{bottom:556.230000px;}
.ya_c00325{bottom:574.080000px;}
.y34_c00325{bottom:574.530000px;}
.y9_c00325{bottom:591.930000px;}
.y33_c00325{bottom:592.980000px;}
.y8_c00325{bottom:609.930000px;}
.y32_c00325{bottom:610.980000px;}
.y6_c00325{bottom:622.680000px;}
.y7_c00325{bottom:627.780000px;}
.y31_c00325{bottom:629.430000px;}
.y30_c00325{bottom:647.430000px;}
.y2f_c00325{bottom:665.880000px;}
.y5_c00325{bottom:683.430000px;}
.y2e_c00325{bottom:684.180000px;}
.y4_c00325{bottom:700.980000px;}
.y2d_c00325{bottom:702.330000px;}
.y3_c00325{bottom:719.280000px;}
.y2c_c00325{bottom:720.630000px;}
.y2_c00325{bottom:738.180000px;}
.y2b_c00325{bottom:738.480000px;}
.y2a_c00325{bottom:756.630000px;}
.y1_c00325{bottom:772.980000px;}
.y29_c00325{bottom:774.630000px;}
.y28_c00325{bottom:793.080000px;}
.y27_c00325{bottom:812.430000px;}
.h8_c00325{height:13.200074px;}
.h9_c00325{height:43.804688px;}
.h2_c00325{height:62.880000px;}
.h6_c00325{height:64.020000px;}
.h3_c00325{height:66.024000px;}
.h4_c00325{height:69.168000px;}
.h7_c00325{height:112.035000px;}
.h5_c00325{height:223.224000px;}
.h0_c00325{height:849.450000px;}
.h1_c00325{height:849.750000px;}
.w2_c00325{width:104.875500px;}
.w0_c00325{width:554.850000px;}
.w1_c00325{width:555.000000px;}
.x0_c00325{left:0.000000px;}
.x7_c00325{left:32.100000px;}
.xa_c00325{left:36.450000px;}
.x9_c00325{left:80.700000px;}
.x8_c00325{left:91.050000px;}
.x6_c00325{left:92.400000px;}
.x2_c00325{left:94.200000px;}
.x3_c00325{left:110.250000px;}
.x4_c00325{left:135.600000px;}
.x5_c00325{left:172.800000px;}
.x1_c00325{left:186.300000px;}
.x16_c00325{left:229.239258px;}
.xe_c00325{left:310.500000px;}
.xc_c00325{left:312.450000px;}
.xb_c00325{left:313.800000px;}
.xd_c00325{left:315.450000px;}
.xf_c00325{left:316.650000px;}
.x10_c00325{left:323.550000px;}
.x11_c00325{left:351.900000px;}
.x12_c00325{left:366.900000px;}
.x13_c00325{left:383.100000px;}
.x14_c00325{left:384.300000px;}
.x15_c00325{left:447.450000px;}
@media print{
.v0_c00325{vertical-align:0.000000pt;}
.v1_c00325{vertical-align:85.333333pt;}
.ls5_c00325{letter-spacing:0.000000pt;}
.ls0_c00325{letter-spacing:2.666667pt;}
.ls3_c00325{letter-spacing:5.333333pt;}
.ls6_c00325{letter-spacing:8.000000pt;}
.ls7_c00325{letter-spacing:10.666667pt;}
.ls4_c00325{letter-spacing:12.746667pt;}
.ls1_c00325{letter-spacing:16.053333pt;}
.ls2_c00325{letter-spacing:18.613333pt;}
.ws3_c00325{word-spacing:-58.189333pt;}
.ws7_c00325{word-spacing:-47.560000pt;}
.ws5_c00325{word-spacing:-18.080000pt;}
.ws0_c00325{word-spacing:-16.053333pt;}
.ws1_c00325{word-spacing:-15.882667pt;}
.ws2_c00325{word-spacing:-12.586667pt;}
.ws8_c00325{word-spacing:0.000000pt;}
.ws4_c00325{word-spacing:1.706667pt;}
.ws6_c00325{word-spacing:12.000000pt;}
._f_c00325{margin-left:-35.629333pt;}
._24_c00325{margin-left:-16.400000pt;}
._1f_c00325{margin-left:-15.200000pt;}
._a_c00325{margin-left:-10.664000pt;}
._c_c00325{margin-left:-9.464000pt;}
._25_c00325{margin-left:-8.573333pt;}
._b_c00325{margin-left:-7.672000pt;}
._22_c00325{margin-left:-6.720000pt;}
._9_c00325{margin-left:-5.824000pt;}
._8_c00325{margin-left:-4.648000pt;}
._7_c00325{margin-left:-2.968000pt;}
._d_c00325{margin-left:-2.026667pt;}
._6_c00325{margin-left:-0.906667pt;}
._4_c00325{width:0.960000pt;}
._2_c00325{width:2.186667pt;}
._1_c00325{width:3.733333pt;}
._15_c00325{width:5.173333pt;}
._0_c00325{width:6.613333pt;}
._3_c00325{width:8.320000pt;}
._17_c00325{width:9.224000pt;}
._e_c00325{width:10.560000pt;}
._16_c00325{width:11.573333pt;}
._1b_c00325{width:12.853333pt;}
._5_c00325{width:14.346667pt;}
._19_c00325{width:15.893333pt;}
._13_c00325{width:17.226667pt;}
._14_c00325{width:18.189333pt;}
._23_c00325{width:19.341333pt;}
._1a_c00325{width:20.640000pt;}
._1c_c00325{width:22.186667pt;}
._21_c00325{width:23.197333pt;}
._12_c00325{width:25.493333pt;}
._11_c00325{width:27.466667pt;}
._1e_c00325{width:29.448000pt;}
._10_c00325{width:31.786667pt;}
._26_c00325{width:55.253333pt;}
._20_c00325{width:103.466667pt;}
._1d_c00325{width:112.298667pt;}
._18_c00325{width:138.381333pt;}
.fs6_c00325{font-size:42.666667pt;}
.fs2_c00325{font-size:50.666667pt;}
.fs0_c00325{font-size:53.333333pt;}
.fs1_c00325{font-size:56.000000pt;}
.fs3_c00325{font-size:58.666667pt;}
.fs5_c00325{font-size:93.333333pt;}
.fs4_c00325{font-size:189.333333pt;}
.y0_c00325{bottom:0.000000pt;}
.y49_c00325{bottom:2.760000pt;}
.y48_c00325{bottom:6.425206pt;}
.y47_c00325{bottom:43.760000pt;}
.y26_c00325{bottom:57.626667pt;}
.y25_c00325{bottom:74.426667pt;}
.y24_c00325{bottom:90.693333pt;}
.y46_c00325{bottom:102.693333pt;}
.y23_c00325{bottom:106.560000pt;}
.y22_c00325{bottom:123.093333pt;}
.y21_c00325{bottom:138.960000pt;}
.y20_c00325{bottom:155.360000pt;}
.y45_c00325{bottom:155.493333pt;}
.y1f_c00325{bottom:171.093333pt;}
.y1e_c00325{bottom:186.693333pt;}
.y44_c00325{bottom:187.760000pt;}
.y1d_c00325{bottom:203.093333pt;}
.y43_c00325{bottom:203.760000pt;}
.y1c_c00325{bottom:219.093333pt;}
.y42_c00325{bottom:219.626667pt;}
.y1b_c00325{bottom:234.960000pt;}
.y41_c00325{bottom:236.160000pt;}
.y1a_c00325{bottom:251.093333pt;}
.y40_c00325{bottom:251.760000pt;}
.y19_c00325{bottom:267.360000pt;}
.y3f_c00325{bottom:267.893333pt;}
.y18_c00325{bottom:283.226667pt;}
.y3e_c00325{bottom:283.893333pt;}
.y17_c00325{bottom:298.826667pt;}
.y3d_c00325{bottom:300.026667pt;}
.y16_c00325{bottom:315.626667pt;}
.y3c_c00325{bottom:316.560000pt;}
.y15_c00325{bottom:332.426667pt;}
.y14_c00325{bottom:348.026667pt;}
.y3b_c00325{bottom:348.293333pt;}
.y13_c00325{bottom:364.160000pt;}
.y3a_c00325{bottom:380.160000pt;}
.y12_c00325{bottom:380.426667pt;}
.y39_c00325{bottom:396.560000pt;}
.y11_c00325{bottom:396.693333pt;}
.y10_c00325{bottom:412.826667pt;}
.y38_c00325{bottom:429.093333pt;}
.yf_c00325{bottom:429.626667pt;}
.ye_c00325{bottom:445.226667pt;}
.yd_c00325{bottom:461.760000pt;}
.y37_c00325{bottom:462.026667pt;}
.yc_c00325{bottom:477.893333pt;}
.y36_c00325{bottom:478.160000pt;}
.yb_c00325{bottom:494.160000pt;}
.y35_c00325{bottom:494.426667pt;}
.ya_c00325{bottom:510.293333pt;}
.y34_c00325{bottom:510.693333pt;}
.y9_c00325{bottom:526.160000pt;}
.y33_c00325{bottom:527.093333pt;}
.y8_c00325{bottom:542.160000pt;}
.y32_c00325{bottom:543.093333pt;}
.y6_c00325{bottom:553.493333pt;}
.y7_c00325{bottom:558.026667pt;}
.y31_c00325{bottom:559.493333pt;}
.y30_c00325{bottom:575.493333pt;}
.y2f_c00325{bottom:591.893333pt;}
.y5_c00325{bottom:607.493333pt;}
.y2e_c00325{bottom:608.160000pt;}
.y4_c00325{bottom:623.093333pt;}
.y2d_c00325{bottom:624.293333pt;}
.y3_c00325{bottom:639.360000pt;}
.y2c_c00325{bottom:640.560000pt;}
.y2_c00325{bottom:656.160000pt;}
.y2b_c00325{bottom:656.426667pt;}
.y2a_c00325{bottom:672.560000pt;}
.y1_c00325{bottom:687.093333pt;}
.y29_c00325{bottom:688.560000pt;}
.y28_c00325{bottom:704.960000pt;}
.y27_c00325{bottom:722.160000pt;}
.h8_c00325{height:11.733399pt;}
.h9_c00325{height:38.937500pt;}
.h2_c00325{height:55.893333pt;}
.h6_c00325{height:56.906667pt;}
.h3_c00325{height:58.688000pt;}
.h4_c00325{height:61.482667pt;}
.h7_c00325{height:99.586667pt;}
.h5_c00325{height:198.421333pt;}
.h0_c00325{height:755.066667pt;}
.h1_c00325{height:755.333333pt;}
.w2_c00325{width:93.222667pt;}
.w0_c00325{width:493.200000pt;}
.w1_c00325{width:493.333333pt;}
.x0_c00325{left:0.000000pt;}
.x7_c00325{left:28.533333pt;}
.xa_c00325{left:32.400000pt;}
.x9_c00325{left:71.733333pt;}
.x8_c00325{left:80.933333pt;}
.x6_c00325{left:82.133333pt;}
.x2_c00325{left:83.733333pt;}
.x3_c00325{left:98.000000pt;}
.x4_c00325{left:120.533333pt;}
.x5_c00325{left:153.600000pt;}
.x1_c00325{left:165.600000pt;}
.x16_c00325{left:203.768229pt;}
.xe_c00325{left:276.000000pt;}
.xc_c00325{left:277.733333pt;}
.xb_c00325{left:278.933333pt;}
.xd_c00325{left:280.400000pt;}
.xf_c00325{left:281.466667pt;}
.x10_c00325{left:287.600000pt;}
.x11_c00325{left:312.800000pt;}
.x12_c00325{left:326.133333pt;}
.x13_c00325{left:340.533333pt;}
.x14_c00325{left:341.600000pt;}
.x15_c00325{left:397.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a0c45803cbb6e84212293cfd.woff2')format("woff");}.ff1_c00326{font-family:ff1_c00326;line-height:1.575000;font-style:normal;font-weight:normal;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_e4c7daa97882b43e708bfd13.woff2')format("woff");}.ff2_c00326{font-family:ff2_c00326;line-height:1.437000;font-style:normal;font-weight:normal;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_6d256b1a711b672291be1deb.woff2')format("woff");}.ff3_c00326{font-family:ff3_c00326;line-height:1.437000;font-style:normal;font-weight:normal;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_def44b3a81b13b262c6bc275.woff2')format("woff");}.ff4_c00326{font-family:ff4_c00326;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00326;src:url('chunks/assets/font_619d00e58f291e43eea03bea.woff2')format("woff");}.ff5_c00326{font-family:ff5_c00326;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00326;src:url('chunks/assets/font_0ce391de997f24f9f9dd37f4.woff2')format("woff");}.ff6_c00326{font-family:ff6_c00326;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00326;src:url('chunks/assets/font_6fa8668447277302f14f194c.woff2')format("woff");}.ff7_c00326{font-family:ff7_c00326;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00326;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff8_c00326{font-family:ff8_c00326;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00326{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00326{vertical-align:0.000000px;}
.v1_c00326{vertical-align:101.400000px;}
.lsa_c00326{letter-spacing:0.000000px;}
.ls3_c00326{letter-spacing:0.840000px;}
.ls4_c00326{letter-spacing:2.805000px;}
.ls9_c00326{letter-spacing:3.000000px;}
.ls1_c00326{letter-spacing:6.000000px;}
.ls2_c00326{letter-spacing:6.600000px;}
.ls7_c00326{letter-spacing:10.200000px;}
.ls0_c00326{letter-spacing:12.705000px;}
.ls5_c00326{letter-spacing:14.940000px;}
.ls6_c00326{letter-spacing:16.200000px;}
.ls8_c00326{letter-spacing:17.340000px;}
.sc__c00326{text-shadow:none;}
.sc0_c00326{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00326{-webkit-text-stroke:0px transparent;}
.sc0_c00326{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00326{word-spacing:-39.399000px;}
.ws4_c00326{word-spacing:-20.340000px;}
.ws2_c00326{word-spacing:-18.060000px;}
.ws5_c00326{word-spacing:-16.491000px;}
.ws0_c00326{word-spacing:-14.160000px;}
.ws1_c00326{word-spacing:-0.060000px;}
.ws6_c00326{word-spacing:0.000000px;}
._13_c00326{margin-left:-17.520000px;}
._12_c00326{margin-left:-15.540000px;}
._e_c00326{margin-left:-12.510000px;}
._0_c00326{margin-left:-10.260000px;}
._f_c00326{margin-left:-8.790000px;}
._d_c00326{margin-left:-7.560000px;}
._1_c00326{margin-left:-6.480000px;}
._2_c00326{margin-left:-5.100000px;}
._c_c00326{margin-left:-4.020000px;}
._5_c00326{margin-left:-2.850000px;}
._4_c00326{margin-left:-1.653000px;}
._7_c00326{width:1.260000px;}
._b_c00326{width:2.367000px;}
._a_c00326{width:3.699000px;}
._9_c00326{width:4.881000px;}
._19_c00326{width:6.243000px;}
._3_c00326{width:7.320000px;}
._15_c00326{width:8.400000px;}
._6_c00326{width:9.519000px;}
._18_c00326{width:11.160000px;}
._21_c00326{width:12.480000px;}
._11_c00326{width:14.580000px;}
._1c_c00326{width:15.708000px;}
._16_c00326{width:16.740000px;}
._17_c00326{width:18.420000px;}
._8_c00326{width:20.040000px;}
._20_c00326{width:21.720000px;}
._1b_c00326{width:23.910000px;}
._1d_c00326{width:26.082000px;}
._1e_c00326{width:27.132000px;}
._22_c00326{width:30.720000px;}
._1a_c00326{width:33.600000px;}
._1f_c00326{width:34.920000px;}
._25_c00326{width:37.800000px;}
._24_c00326{width:38.910000px;}
._26_c00326{width:40.161000px;}
._27_c00326{width:45.000000px;}
._23_c00326{width:100.740000px;}
._10_c00326{width:202.413000px;}
._14_c00326{width:215.040000px;}
.fc2_c00326{color:transparent;}
.fc1_c00326{color:rgb(128,128,128);}
.fc0_c00326{color:rgb(0,0,0);}
.fs4_c00326{font-size:45.000000px;}
.fs6_c00326{font-size:48.000000px;}
.fs1_c00326{font-size:57.000000px;}
.fs0_c00326{font-size:60.000000px;}
.fs3_c00326{font-size:66.000000px;}
.fs5_c00326{font-size:69.000000px;}
.fs2_c00326{font-size:195.000000px;}
.y0_c00326{bottom:0.000000px;}
.y51_c00326{bottom:3.105000px;}
.y50_c00326{bottom:7.228371px;}
.y4f_c00326{bottom:37.515000px;}
.y4e_c00326{bottom:57.015000px;}
.y25_c00326{bottom:59.715000px;}
.y4d_c00326{bottom:75.915000px;}
.y24_c00326{bottom:79.665000px;}
.y4c_c00326{bottom:92.865000px;}
.y23_c00326{bottom:97.665000px;}
.y4b_c00326{bottom:112.365000px;}
.y22_c00326{bottom:116.115000px;}
.y4a_c00326{bottom:130.065000px;}
.y21_c00326{bottom:134.115000px;}
.y49_c00326{bottom:147.915000px;}
.y20_c00326{bottom:152.565000px;}
.y48_c00326{bottom:166.365000px;}
.y1f_c00326{bottom:169.515000px;}
.y47_c00326{bottom:182.715000px;}
.y1e_c00326{bottom:188.415000px;}
.y46_c00326{bottom:201.915000px;}
.y1d_c00326{bottom:206.865000px;}
.y45_c00326{bottom:220.365000px;}
.y1c_c00326{bottom:224.865000px;}
.y44_c00326{bottom:238.665000px;}
.y1b_c00326{bottom:242.415000px;}
.y43_c00326{bottom:256.215000px;}
.y1a_c00326{bottom:259.965000px;}
.y42_c00326{bottom:275.115000px;}
.y19_c00326{bottom:278.115000px;}
.y41_c00326{bottom:292.815000px;}
.y18_c00326{bottom:295.965000px;}
.y40_c00326{bottom:310.965000px;}
.y17_c00326{bottom:313.665000px;}
.y3f_c00326{bottom:329.115000px;}
.y16_c00326{bottom:332.415000px;}
.y3e_c00326{bottom:347.415000px;}
.y15_c00326{bottom:350.415000px;}
.y3d_c00326{bottom:365.865000px;}
.y14_c00326{bottom:367.965000px;}
.y3c_c00326{bottom:383.865000px;}
.y13_c00326{bottom:386.115000px;}
.y3b_c00326{bottom:402.315000px;}
.y12_c00326{bottom:404.115000px;}
.y3a_c00326{bottom:420.165000px;}
.y11_c00326{bottom:422.265000px;}
.y39_c00326{bottom:438.165000px;}
.y10_c00326{bottom:441.165000px;}
.y38_c00326{bottom:456.315000px;}
.yf_c00326{bottom:459.015000px;}
.y37_c00326{bottom:474.615000px;}
.ye_c00326{bottom:477.315000px;}
.y36_c00326{bottom:492.465000px;}
.yd_c00326{bottom:496.515000px;}
.y35_c00326{bottom:510.615000px;}
.yc_c00326{bottom:513.315000px;}
.y34_c00326{bottom:528.615000px;}
.yb_c00326{bottom:531.315000px;}
.y33_c00326{bottom:546.465000px;}
.ya_c00326{bottom:549.465000px;}
.y32_c00326{bottom:564.765000px;}
.y9_c00326{bottom:567.465000px;}
.y31_c00326{bottom:583.515000px;}
.y8_c00326{bottom:585.615000px;}
.y30_c00326{bottom:601.065000px;}
.y7_c00326{bottom:603.765000px;}
.y5_c00326{bottom:613.965000px;}
.y2f_c00326{bottom:619.365000px;}
.y6_c00326{bottom:621.315000px;}
.y2e_c00326{bottom:637.515000px;}
.y2d_c00326{bottom:655.515000px;}
.y2c_c00326{bottom:673.065000px;}
.y4_c00326{bottom:673.965000px;}
.y2b_c00326{bottom:691.515000px;}
.y3_c00326{bottom:691.965000px;}
.y2a_c00326{bottom:709.215000px;}
.y2_c00326{bottom:710.865000px;}
.y29_c00326{bottom:727.665000px;}
.y1_c00326{bottom:728.415000px;}
.y28_c00326{bottom:745.665000px;}
.y27_c00326{bottom:763.815000px;}
.y26_c00326{bottom:782.415000px;}
.h8_c00326{height:13.200074px;}
.h9_c00326{height:43.804688px;}
.h3_c00326{height:62.880000px;}
.h2_c00326{height:64.020000px;}
.h5_c00326{height:70.422000px;}
.h7_c00326{height:72.312000px;}
.h6_c00326{height:73.623000px;}
.h4_c00326{height:204.360000px;}
.h1_c00326{height:844.500000px;}
.h0_c00326{height:844.575000px;}
.w1_c00326{width:104.875500px;}
.w0_c00326{width:590.250000px;}
.x0_c00326{left:0.000000px;}
.x6_c00326{left:11.850000px;}
.x7_c00326{left:12.900000px;}
.x1_c00326{left:72.900000px;}
.x8_c00326{left:74.700000px;}
.x9_c00326{left:76.050000px;}
.x2_c00326{left:81.750000px;}
.x3_c00326{left:98.550000px;}
.x5_c00326{left:108.450000px;}
.x4_c00326{left:149.550000px;}
.x14_c00326{left:246.939240px;}
.xa_c00326{left:287.850000px;}
.xb_c00326{left:288.900000px;}
.xc_c00326{left:289.950000px;}
.xd_c00326{left:291.600000px;}
.xe_c00326{left:292.650000px;}
.xf_c00326{left:293.850000px;}
.x10_c00326{left:294.900000px;}
.x11_c00326{left:295.950000px;}
.x12_c00326{left:297.300000px;}
.x13_c00326{left:460.650000px;}
@media print{
.v0_c00326{vertical-align:0.000000pt;}
.v1_c00326{vertical-align:90.133333pt;}
.lsa_c00326{letter-spacing:0.000000pt;}
.ls3_c00326{letter-spacing:0.746667pt;}
.ls4_c00326{letter-spacing:2.493333pt;}
.ls9_c00326{letter-spacing:2.666667pt;}
.ls1_c00326{letter-spacing:5.333333pt;}
.ls2_c00326{letter-spacing:5.866667pt;}
.ls7_c00326{letter-spacing:9.066667pt;}
.ls0_c00326{letter-spacing:11.293333pt;}
.ls5_c00326{letter-spacing:13.280000pt;}
.ls6_c00326{letter-spacing:14.400000pt;}
.ls8_c00326{letter-spacing:15.413333pt;}
.ws3_c00326{word-spacing:-35.021333pt;}
.ws4_c00326{word-spacing:-18.080000pt;}
.ws2_c00326{word-spacing:-16.053333pt;}
.ws5_c00326{word-spacing:-14.658667pt;}
.ws0_c00326{word-spacing:-12.586667pt;}
.ws1_c00326{word-spacing:-0.053333pt;}
.ws6_c00326{word-spacing:0.000000pt;}
._13_c00326{margin-left:-15.573333pt;}
._12_c00326{margin-left:-13.813333pt;}
._e_c00326{margin-left:-11.120000pt;}
._0_c00326{margin-left:-9.120000pt;}
._f_c00326{margin-left:-7.813333pt;}
._d_c00326{margin-left:-6.720000pt;}
._1_c00326{margin-left:-5.760000pt;}
._2_c00326{margin-left:-4.533333pt;}
._c_c00326{margin-left:-3.573333pt;}
._5_c00326{margin-left:-2.533333pt;}
._4_c00326{margin-left:-1.469333pt;}
._7_c00326{width:1.120000pt;}
._b_c00326{width:2.104000pt;}
._a_c00326{width:3.288000pt;}
._9_c00326{width:4.338667pt;}
._19_c00326{width:5.549333pt;}
._3_c00326{width:6.506667pt;}
._15_c00326{width:7.466667pt;}
._6_c00326{width:8.461333pt;}
._18_c00326{width:9.920000pt;}
._21_c00326{width:11.093333pt;}
._11_c00326{width:12.960000pt;}
._1c_c00326{width:13.962667pt;}
._16_c00326{width:14.880000pt;}
._17_c00326{width:16.373333pt;}
._8_c00326{width:17.813333pt;}
._20_c00326{width:19.306667pt;}
._1b_c00326{width:21.253333pt;}
._1d_c00326{width:23.184000pt;}
._1e_c00326{width:24.117333pt;}
._22_c00326{width:27.306667pt;}
._1a_c00326{width:29.866667pt;}
._1f_c00326{width:31.040000pt;}
._25_c00326{width:33.600000pt;}
._24_c00326{width:34.586667pt;}
._26_c00326{width:35.698667pt;}
._27_c00326{width:40.000000pt;}
._23_c00326{width:89.546667pt;}
._10_c00326{width:179.922667pt;}
._14_c00326{width:191.146667pt;}
.fs4_c00326{font-size:40.000000pt;}
.fs6_c00326{font-size:42.666667pt;}
.fs1_c00326{font-size:50.666667pt;}
.fs0_c00326{font-size:53.333333pt;}
.fs3_c00326{font-size:58.666667pt;}
.fs5_c00326{font-size:61.333333pt;}
.fs2_c00326{font-size:173.333333pt;}
.y0_c00326{bottom:0.000000pt;}
.y51_c00326{bottom:2.760000pt;}
.y50_c00326{bottom:6.425219pt;}
.y4f_c00326{bottom:33.346667pt;}
.y4e_c00326{bottom:50.680000pt;}
.y25_c00326{bottom:53.080000pt;}
.y4d_c00326{bottom:67.480000pt;}
.y24_c00326{bottom:70.813333pt;}
.y4c_c00326{bottom:82.546667pt;}
.y23_c00326{bottom:86.813333pt;}
.y4b_c00326{bottom:99.880000pt;}
.y22_c00326{bottom:103.213333pt;}
.y4a_c00326{bottom:115.613333pt;}
.y21_c00326{bottom:119.213333pt;}
.y49_c00326{bottom:131.480000pt;}
.y20_c00326{bottom:135.613333pt;}
.y48_c00326{bottom:147.880000pt;}
.y1f_c00326{bottom:150.680000pt;}
.y47_c00326{bottom:162.413333pt;}
.y1e_c00326{bottom:167.480000pt;}
.y46_c00326{bottom:179.480000pt;}
.y1d_c00326{bottom:183.880000pt;}
.y45_c00326{bottom:195.880000pt;}
.y1c_c00326{bottom:199.880000pt;}
.y44_c00326{bottom:212.146667pt;}
.y1b_c00326{bottom:215.480000pt;}
.y43_c00326{bottom:227.746667pt;}
.y1a_c00326{bottom:231.080000pt;}
.y42_c00326{bottom:244.546667pt;}
.y19_c00326{bottom:247.213333pt;}
.y41_c00326{bottom:260.280000pt;}
.y18_c00326{bottom:263.080000pt;}
.y40_c00326{bottom:276.413333pt;}
.y17_c00326{bottom:278.813333pt;}
.y3f_c00326{bottom:292.546667pt;}
.y16_c00326{bottom:295.480000pt;}
.y3e_c00326{bottom:308.813333pt;}
.y15_c00326{bottom:311.480000pt;}
.y3d_c00326{bottom:325.213333pt;}
.y14_c00326{bottom:327.080000pt;}
.y3c_c00326{bottom:341.213333pt;}
.y13_c00326{bottom:343.213333pt;}
.y3b_c00326{bottom:357.613333pt;}
.y12_c00326{bottom:359.213333pt;}
.y3a_c00326{bottom:373.480000pt;}
.y11_c00326{bottom:375.346667pt;}
.y39_c00326{bottom:389.480000pt;}
.y10_c00326{bottom:392.146667pt;}
.y38_c00326{bottom:405.613333pt;}
.yf_c00326{bottom:408.013333pt;}
.y37_c00326{bottom:421.880000pt;}
.ye_c00326{bottom:424.280000pt;}
.y36_c00326{bottom:437.746667pt;}
.yd_c00326{bottom:441.346667pt;}
.y35_c00326{bottom:453.880000pt;}
.yc_c00326{bottom:456.280000pt;}
.y34_c00326{bottom:469.880000pt;}
.yb_c00326{bottom:472.280000pt;}
.y33_c00326{bottom:485.746667pt;}
.ya_c00326{bottom:488.413333pt;}
.y32_c00326{bottom:502.013333pt;}
.y9_c00326{bottom:504.413333pt;}
.y31_c00326{bottom:518.680000pt;}
.y8_c00326{bottom:520.546667pt;}
.y30_c00326{bottom:534.280000pt;}
.y7_c00326{bottom:536.680000pt;}
.y5_c00326{bottom:545.746667pt;}
.y2f_c00326{bottom:550.546667pt;}
.y6_c00326{bottom:552.280000pt;}
.y2e_c00326{bottom:566.680000pt;}
.y2d_c00326{bottom:582.680000pt;}
.y2c_c00326{bottom:598.280000pt;}
.y4_c00326{bottom:599.080000pt;}
.y2b_c00326{bottom:614.680000pt;}
.y3_c00326{bottom:615.080000pt;}
.y2a_c00326{bottom:630.413333pt;}
.y2_c00326{bottom:631.880000pt;}
.y29_c00326{bottom:646.813333pt;}
.y1_c00326{bottom:647.480000pt;}
.y28_c00326{bottom:662.813333pt;}
.y27_c00326{bottom:678.946667pt;}
.y26_c00326{bottom:695.480000pt;}
.h8_c00326{height:11.733399pt;}
.h9_c00326{height:38.937500pt;}
.h3_c00326{height:55.893333pt;}
.h2_c00326{height:56.906667pt;}
.h5_c00326{height:62.597333pt;}
.h7_c00326{height:64.277333pt;}
.h6_c00326{height:65.442667pt;}
.h4_c00326{height:181.653333pt;}
.h1_c00326{height:750.666667pt;}
.h0_c00326{height:750.733333pt;}
.w1_c00326{width:93.222667pt;}
.w0_c00326{width:524.666667pt;}
.x0_c00326{left:0.000000pt;}
.x6_c00326{left:10.533333pt;}
.x7_c00326{left:11.466667pt;}
.x1_c00326{left:64.800000pt;}
.x8_c00326{left:66.400000pt;}
.x9_c00326{left:67.600000pt;}
.x2_c00326{left:72.666667pt;}
.x3_c00326{left:87.600000pt;}
.x5_c00326{left:96.400000pt;}
.x4_c00326{left:132.933333pt;}
.x14_c00326{left:219.501546pt;}
.xa_c00326{left:255.866667pt;}
.xb_c00326{left:256.800000pt;}
.xc_c00326{left:257.733333pt;}
.xd_c00326{left:259.200000pt;}
.xe_c00326{left:260.133333pt;}
.xf_c00326{left:261.200000pt;}
.x10_c00326{left:262.133333pt;}
.x11_c00326{left:263.066667pt;}
.x12_c00326{left:264.266667pt;}
.x13_c00326{left:409.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_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_59a00820b80eae1d3fc64ff5.woff2')format("woff");}.ff1_c00327{font-family:ff1_c00327;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00327;src:url('chunks/assets/font_cb189e20e75c616ee79962ae.woff2')format("woff");}.ff2_c00327{font-family:ff2_c00327;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00327;src:url('chunks/assets/font_dcf36e3493048a2526506e11.woff2')format("woff");}.ff3_c00327{font-family:ff3_c00327;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00327;src:url('chunks/assets/font_780ccb64d8efa2aed2337746.woff2')format("woff");}.ff4_c00327{font-family:ff4_c00327;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00327;src:url('chunks/assets/font_9cf19430b1f58255d442bbc5.woff2')format("woff");}.ff5_c00327{font-family:ff5_c00327;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00327;src:url('chunks/assets/font_f20dd47a0d027df5b28cd925.woff2')format("woff");}.ff6_c00327{font-family:ff6_c00327;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00327;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff7_c00327{font-family:ff7_c00327;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00327{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00327{vertical-align:0.000000px;}
.v1_c00327{vertical-align:16.200000px;}
.ls3_c00327{letter-spacing:0.000000px;}
.ls4_c00327{letter-spacing:3.000000px;}
.ls0_c00327{letter-spacing:6.000000px;}
.ls1_c00327{letter-spacing:10.680000px;}
.ls2_c00327{letter-spacing:96.480000px;}
.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;}
}
.ws7_c00327{word-spacing:-33.189000px;}
.ws1_c00327{word-spacing:-22.572000px;}
.ws4_c00327{word-spacing:-20.340000px;}
.ws6_c00327{word-spacing:-18.060000px;}
.ws5_c00327{word-spacing:-16.452000px;}
.ws0_c00327{word-spacing:-14.160000px;}
.ws2_c00327{word-spacing:-13.452000px;}
.ws8_c00327{word-spacing:0.000000px;}
.ws3_c00327{word-spacing:18.900000px;}
._9_c00327{margin-left:-23.580000px;}
._8_c00327{margin-left:-22.200000px;}
._21_c00327{margin-left:-21.003000px;}
._23_c00327{margin-left:-17.580000px;}
._10_c00327{margin-left:-15.960000px;}
._4_c00327{margin-left:-14.220000px;}
._12_c00327{margin-left:-11.640000px;}
._11_c00327{margin-left:-9.720000px;}
._7_c00327{margin-left:-8.100000px;}
._2_c00327{margin-left:-6.660000px;}
._0_c00327{margin-left:-5.340000px;}
._1_c00327{margin-left:-3.900000px;}
._6_c00327{margin-left:-2.820000px;}
._5_c00327{margin-left:-1.740000px;}
._16_c00327{width:1.440000px;}
._3_c00327{width:2.520000px;}
._b_c00327{width:3.780000px;}
._c_c00327{width:5.100000px;}
._1c_c00327{width:6.660000px;}
._a_c00327{width:8.400000px;}
._17_c00327{width:9.420000px;}
._f_c00327{width:10.500000px;}
._d_c00327{width:12.060000px;}
._1b_c00327{width:13.140000px;}
._15_c00327{width:14.280000px;}
._e_c00327{width:15.960000px;}
._1f_c00327{width:17.697000px;}
._22_c00327{width:19.260000px;}
._1d_c00327{width:21.360000px;}
._18_c00327{width:22.980000px;}
._19_c00327{width:24.960000px;}
._1e_c00327{width:27.720000px;}
._13_c00327{width:29.700000px;}
._14_c00327{width:31.140000px;}
._24_c00327{width:32.160000px;}
._25_c00327{width:33.900000px;}
._1a_c00327{width:36.900000px;}
._20_c00327{width:65.493000px;}
.fc2_c00327{color:transparent;}
.fc1_c00327{color:rgb(128,128,128);}
.fc0_c00327{color:rgb(0,0,0);}
.fs2_c00327{font-size:45.600000px;}
.fs4_c00327{font-size:48.000000px;}
.fs1_c00327{font-size:57.000000px;}
.fs0_c00327{font-size:60.000000px;}
.fs3_c00327{font-size:69.000000px;}
.y0_c00327{bottom:0.000000px;}
.y58_c00327{bottom:3.105000px;}
.y57_c00327{bottom:7.228357px;}
.y52_c00327{bottom:45.330000px;}
.y27_c00327{bottom:60.180000px;}
.y51_c00327{bottom:62.880000px;}
.y26_c00327{bottom:74.880000px;}
.y50_c00327{bottom:81.780000px;}
.y4f_c00327{bottom:99.630000px;}
.y25_c00327{bottom:116.130000px;}
.y4e_c00327{bottom:118.080000px;}
.y24_c00327{bottom:135.330000px;}
.y4d_c00327{bottom:135.780000px;}
.y23_c00327{bottom:152.280000px;}
.y4c_c00327{bottom:153.930000px;}
.y22_c00327{bottom:170.730000px;}
.y4b_c00327{bottom:171.780000px;}
.y21_c00327{bottom:187.380000px;}
.y4a_c00327{bottom:189.780000px;}
.y49_c00327{bottom:208.230000px;}
.y20_c00327{bottom:225.180000px;}
.y48_c00327{bottom:226.230000px;}
.y1f_c00327{bottom:243.030000px;}
.y47_c00327{bottom:244.980000px;}
.y1e_c00327{bottom:261.330000px;}
.y46_c00327{bottom:262.980000px;}
.y1d_c00327{bottom:280.230000px;}
.y45_c00327{bottom:280.830000px;}
.y1c_c00327{bottom:297.780000px;}
.y44_c00327{bottom:298.380000px;}
.y1b_c00327{bottom:315.930000px;}
.y43_c00327{bottom:316.980000px;}
.y1a_c00327{bottom:334.230000px;}
.y42_c00327{bottom:335.130000px;}
.y19_c00327{bottom:352.380000px;}
.y41_c00327{bottom:352.980000px;}
.y18_c00327{bottom:370.680000px;}
.y40_c00327{bottom:371.580000px;}
.y17_c00327{bottom:388.530000px;}
.y3f_c00327{bottom:389.580000px;}
.y16_c00327{bottom:407.430000px;}
.y3e_c00327{bottom:407.730000px;}
.y15_c00327{bottom:424.980000px;}
.y3d_c00327{bottom:426.330000px;}
.y14_c00327{bottom:443.430000px;}
.y3c_c00327{bottom:444.180000px;}
.y13_c00327{bottom:461.130000px;}
.y3b_c00327{bottom:462.480000px;}
.y12_c00327{bottom:480.030000px;}
.y3a_c00327{bottom:480.630000px;}
.y56_c00327{bottom:484.080000px;}
.y11_c00327{bottom:497.880000px;}
.y39_c00327{bottom:499.230000px;}
.y55_c00327{bottom:501.930000px;}
.y10_c00327{bottom:515.730000px;}
.y38_c00327{bottom:516.480000px;}
.yf_c00327{bottom:534.330000px;}
.y37_c00327{bottom:534.930000px;}
.y36_c00327{bottom:552.780000px;}
.ye_c00327{bottom:553.230000px;}
.yd_c00327{bottom:571.080000px;}
.y35_c00327{bottom:571.680000px;}
.yc_c00327{bottom:589.230000px;}
.y34_c00327{bottom:590.280000px;}
.yb_c00327{bottom:607.830000px;}
.y33_c00327{bottom:608.130000px;}
.ya_c00327{bottom:625.680000px;}
.y32_c00327{bottom:626.430000px;}
.y31_c00327{bottom:643.980000px;}
.y9_c00327{bottom:644.580000px;}
.y8_c00327{bottom:662.130000px;}
.y30_c00327{bottom:663.630000px;}
.y7_c00327{bottom:681.030000px;}
.y2f_c00327{bottom:681.180000px;}
.y2e_c00327{bottom:699.630000px;}
.y6_c00327{bottom:699.930000px;}
.y54_c00327{bottom:715.230000px;}
.y2d_c00327{bottom:717.930000px;}
.y5_c00327{bottom:718.830000px;}
.y2c_c00327{bottom:736.380000px;}
.y53_c00327{bottom:736.830000px;}
.y4_c00327{bottom:737.730000px;}
.y2b_c00327{bottom:753.330000px;}
.y3_c00327{bottom:754.680000px;}
.y2a_c00327{bottom:771.180000px;}
.y2_c00327{bottom:773.280000px;}
.y29_c00327{bottom:790.530000px;}
.y1_c00327{bottom:791.130000px;}
.y28_c00327{bottom:811.080000px;}
.h7_c00327{height:13.200074px;}
.h8_c00327{height:43.804688px;}
.h3_c00327{height:59.736000px;}
.h2_c00327{height:62.880000px;}
.h5_c00327{height:64.020000px;}
.h6_c00327{height:73.623000px;}
.h4_c00327{height:79.080000px;}
.h1_c00327{height:843.750000px;}
.h0_c00327{height:844.050000px;}
.w2_c00327{width:104.875500px;}
.w1_c00327{width:550.500000px;}
.w0_c00327{width:550.800000px;}
.x0_c00327{left:0.000000px;}
.x5_c00327{left:74.700000px;}
.x4_c00327{left:76.950000px;}
.x3_c00327{left:78.000000px;}
.x2_c00327{left:79.350000px;}
.x1_c00327{left:81.000000px;}
.x7_c00327{left:93.900000px;}
.xa_c00327{left:103.950000px;}
.x8_c00327{left:136.350000px;}
.x6_c00327{left:150.900000px;}
.x9_c00327{left:160.050000px;}
.x18_c00327{left:227.214249px;}
.xb_c00327{left:291.900000px;}
.x14_c00327{left:292.950000px;}
.x13_c00327{left:294.000000px;}
.x12_c00327{left:295.350000px;}
.xc_c00327{left:297.450000px;}
.xd_c00327{left:298.800000px;}
.xe_c00327{left:300.000000px;}
.x10_c00327{left:301.950000px;}
.x11_c00327{left:329.100000px;}
.xf_c00327{left:342.450000px;}
.x15_c00327{left:451.500000px;}
.x17_c00327{left:502.200000px;}
.x16_c00327{left:504.000000px;}
@media print{
.v0_c00327{vertical-align:0.000000pt;}
.v1_c00327{vertical-align:14.400000pt;}
.ls3_c00327{letter-spacing:0.000000pt;}
.ls4_c00327{letter-spacing:2.666667pt;}
.ls0_c00327{letter-spacing:5.333333pt;}
.ls1_c00327{letter-spacing:9.493333pt;}
.ls2_c00327{letter-spacing:85.760000pt;}
.ws7_c00327{word-spacing:-29.501333pt;}
.ws1_c00327{word-spacing:-20.064000pt;}
.ws4_c00327{word-spacing:-18.080000pt;}
.ws6_c00327{word-spacing:-16.053333pt;}
.ws5_c00327{word-spacing:-14.624000pt;}
.ws0_c00327{word-spacing:-12.586667pt;}
.ws2_c00327{word-spacing:-11.957333pt;}
.ws8_c00327{word-spacing:0.000000pt;}
.ws3_c00327{word-spacing:16.800000pt;}
._9_c00327{margin-left:-20.960000pt;}
._8_c00327{margin-left:-19.733333pt;}
._21_c00327{margin-left:-18.669333pt;}
._23_c00327{margin-left:-15.626667pt;}
._10_c00327{margin-left:-14.186667pt;}
._4_c00327{margin-left:-12.640000pt;}
._12_c00327{margin-left:-10.346667pt;}
._11_c00327{margin-left:-8.640000pt;}
._7_c00327{margin-left:-7.200000pt;}
._2_c00327{margin-left:-5.920000pt;}
._0_c00327{margin-left:-4.746667pt;}
._1_c00327{margin-left:-3.466667pt;}
._6_c00327{margin-left:-2.506667pt;}
._5_c00327{margin-left:-1.546667pt;}
._16_c00327{width:1.280000pt;}
._3_c00327{width:2.240000pt;}
._b_c00327{width:3.360000pt;}
._c_c00327{width:4.533333pt;}
._1c_c00327{width:5.920000pt;}
._a_c00327{width:7.466667pt;}
._17_c00327{width:8.373333pt;}
._f_c00327{width:9.333333pt;}
._d_c00327{width:10.720000pt;}
._1b_c00327{width:11.680000pt;}
._15_c00327{width:12.693333pt;}
._e_c00327{width:14.186667pt;}
._1f_c00327{width:15.730667pt;}
._22_c00327{width:17.120000pt;}
._1d_c00327{width:18.986667pt;}
._18_c00327{width:20.426667pt;}
._19_c00327{width:22.186667pt;}
._1e_c00327{width:24.640000pt;}
._13_c00327{width:26.400000pt;}
._14_c00327{width:27.680000pt;}
._24_c00327{width:28.586667pt;}
._25_c00327{width:30.133333pt;}
._1a_c00327{width:32.800000pt;}
._20_c00327{width:58.216000pt;}
.fs2_c00327{font-size:40.533333pt;}
.fs4_c00327{font-size:42.666667pt;}
.fs1_c00327{font-size:50.666667pt;}
.fs0_c00327{font-size:53.333333pt;}
.fs3_c00327{font-size:61.333333pt;}
.y0_c00327{bottom:0.000000pt;}
.y58_c00327{bottom:2.760000pt;}
.y57_c00327{bottom:6.425206pt;}
.y52_c00327{bottom:40.293333pt;}
.y27_c00327{bottom:53.493333pt;}
.y51_c00327{bottom:55.893333pt;}
.y26_c00327{bottom:66.560000pt;}
.y50_c00327{bottom:72.693333pt;}
.y4f_c00327{bottom:88.560000pt;}
.y25_c00327{bottom:103.226667pt;}
.y4e_c00327{bottom:104.960000pt;}
.y24_c00327{bottom:120.293333pt;}
.y4d_c00327{bottom:120.693333pt;}
.y23_c00327{bottom:135.360000pt;}
.y4c_c00327{bottom:136.826667pt;}
.y22_c00327{bottom:151.760000pt;}
.y4b_c00327{bottom:152.693333pt;}
.y21_c00327{bottom:166.560000pt;}
.y4a_c00327{bottom:168.693333pt;}
.y49_c00327{bottom:185.093333pt;}
.y20_c00327{bottom:200.160000pt;}
.y48_c00327{bottom:201.093333pt;}
.y1f_c00327{bottom:216.026667pt;}
.y47_c00327{bottom:217.760000pt;}
.y1e_c00327{bottom:232.293333pt;}
.y46_c00327{bottom:233.760000pt;}
.y1d_c00327{bottom:249.093333pt;}
.y45_c00327{bottom:249.626667pt;}
.y1c_c00327{bottom:264.693333pt;}
.y44_c00327{bottom:265.226667pt;}
.y1b_c00327{bottom:280.826667pt;}
.y43_c00327{bottom:281.760000pt;}
.y1a_c00327{bottom:297.093333pt;}
.y42_c00327{bottom:297.893333pt;}
.y19_c00327{bottom:313.226667pt;}
.y41_c00327{bottom:313.760000pt;}
.y18_c00327{bottom:329.493333pt;}
.y40_c00327{bottom:330.293333pt;}
.y17_c00327{bottom:345.360000pt;}
.y3f_c00327{bottom:346.293333pt;}
.y16_c00327{bottom:362.160000pt;}
.y3e_c00327{bottom:362.426667pt;}
.y15_c00327{bottom:377.760000pt;}
.y3d_c00327{bottom:378.960000pt;}
.y14_c00327{bottom:394.160000pt;}
.y3c_c00327{bottom:394.826667pt;}
.y13_c00327{bottom:409.893333pt;}
.y3b_c00327{bottom:411.093333pt;}
.y12_c00327{bottom:426.693333pt;}
.y3a_c00327{bottom:427.226667pt;}
.y56_c00327{bottom:430.293333pt;}
.y11_c00327{bottom:442.560000pt;}
.y39_c00327{bottom:443.760000pt;}
.y55_c00327{bottom:446.160000pt;}
.y10_c00327{bottom:458.426667pt;}
.y38_c00327{bottom:459.093333pt;}
.yf_c00327{bottom:474.960000pt;}
.y37_c00327{bottom:475.493333pt;}
.y36_c00327{bottom:491.360000pt;}
.ye_c00327{bottom:491.760000pt;}
.yd_c00327{bottom:507.626667pt;}
.y35_c00327{bottom:508.160000pt;}
.yc_c00327{bottom:523.760000pt;}
.y34_c00327{bottom:524.693333pt;}
.yb_c00327{bottom:540.293333pt;}
.y33_c00327{bottom:540.560000pt;}
.ya_c00327{bottom:556.160000pt;}
.y32_c00327{bottom:556.826667pt;}
.y31_c00327{bottom:572.426667pt;}
.y9_c00327{bottom:572.960000pt;}
.y8_c00327{bottom:588.560000pt;}
.y30_c00327{bottom:589.893333pt;}
.y7_c00327{bottom:605.360000pt;}
.y2f_c00327{bottom:605.493333pt;}
.y2e_c00327{bottom:621.893333pt;}
.y6_c00327{bottom:622.160000pt;}
.y54_c00327{bottom:635.760000pt;}
.y2d_c00327{bottom:638.160000pt;}
.y5_c00327{bottom:638.960000pt;}
.y2c_c00327{bottom:654.560000pt;}
.y53_c00327{bottom:654.960000pt;}
.y4_c00327{bottom:655.760000pt;}
.y2b_c00327{bottom:669.626667pt;}
.y3_c00327{bottom:670.826667pt;}
.y2a_c00327{bottom:685.493333pt;}
.y2_c00327{bottom:687.360000pt;}
.y29_c00327{bottom:702.693333pt;}
.y1_c00327{bottom:703.226667pt;}
.y28_c00327{bottom:720.960000pt;}
.h7_c00327{height:11.733399pt;}
.h8_c00327{height:38.937500pt;}
.h3_c00327{height:53.098667pt;}
.h2_c00327{height:55.893333pt;}
.h5_c00327{height:56.906667pt;}
.h6_c00327{height:65.442667pt;}
.h4_c00327{height:70.293333pt;}
.h1_c00327{height:750.000000pt;}
.h0_c00327{height:750.266667pt;}
.w2_c00327{width:93.222667pt;}
.w1_c00327{width:489.333333pt;}
.w0_c00327{width:489.600000pt;}
.x0_c00327{left:0.000000pt;}
.x5_c00327{left:66.400000pt;}
.x4_c00327{left:68.400000pt;}
.x3_c00327{left:69.333333pt;}
.x2_c00327{left:70.533333pt;}
.x1_c00327{left:72.000000pt;}
.x7_c00327{left:83.466667pt;}
.xa_c00327{left:92.400000pt;}
.x8_c00327{left:121.200000pt;}
.x6_c00327{left:134.133333pt;}
.x9_c00327{left:142.266667pt;}
.x18_c00327{left:201.968221pt;}
.xb_c00327{left:259.466667pt;}
.x14_c00327{left:260.400000pt;}
.x13_c00327{left:261.333333pt;}
.x12_c00327{left:262.533333pt;}
.xc_c00327{left:264.400000pt;}
.xd_c00327{left:265.600000pt;}
.xe_c00327{left:266.666667pt;}
.x10_c00327{left:268.400000pt;}
.x11_c00327{left:292.533333pt;}
.xf_c00327{left:304.400000pt;}
.x15_c00327{left:401.333333pt;}
.x17_c00327{left:446.400000pt;}
.x16_c00327{left:448.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_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_937a693bae37109d9924466d.woff2')format("woff");}.ff1_c00328{font-family:ff1_c00328;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00328;src:url('chunks/assets/font_4c322ad8b70f47d2525a344f.woff2')format("woff");}.ff2_c00328{font-family:ff2_c00328;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00328;src:url('chunks/assets/font_58ef4d7dfe01c8af1cb801f1.woff2')format("woff");}.ff3_c00328{font-family:ff3_c00328;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00328;src:url('chunks/assets/font_c4b22fe6ae0c3c750809f868.woff2')format("woff");}.ff4_c00328{font-family:ff4_c00328;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00328;src:url('chunks/assets/font_0ce391de997f24f9f9dd37f4.woff2')format("woff");}.ff5_c00328{font-family:ff5_c00328;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00328;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff6_c00328{font-family:ff6_c00328;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00328{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00328{vertical-align:0.000000px;}
.ls8_c00328{letter-spacing:0.000000px;}
.ls2_c00328{letter-spacing:0.600000px;}
.ls5_c00328{letter-spacing:2.400000px;}
.ls3_c00328{letter-spacing:3.000000px;}
.ls6_c00328{letter-spacing:4.620000px;}
.ls0_c00328{letter-spacing:6.000000px;}
.ls1_c00328{letter-spacing:6.600000px;}
.ls4_c00328{letter-spacing:10.605000px;}
.ls7_c00328{letter-spacing:12.000000px;}
.sc__c00328{text-shadow:none;}
.sc0_c00328{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00328{-webkit-text-stroke:0px transparent;}
.sc0_c00328{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00328{word-spacing:-20.340000px;}
.ws1_c00328{word-spacing:-18.060000px;}
.ws0_c00328{word-spacing:-14.160000px;}
.ws4_c00328{word-spacing:0.000000px;}
.ws2_c00328{word-spacing:0.360000px;}
._1f_c00328{margin-left:-24.600000px;}
._25_c00328{margin-left:-18.720000px;}
._a_c00328{margin-left:-16.140000px;}
._b_c00328{margin-left:-14.220000px;}
._1b_c00328{margin-left:-12.900000px;}
._10_c00328{margin-left:-11.280000px;}
._0_c00328{margin-left:-10.020000px;}
._2_c00328{margin-left:-8.160000px;}
._14_c00328{margin-left:-7.080000px;}
._1_c00328{margin-left:-6.060000px;}
._4_c00328{margin-left:-4.980000px;}
._7_c00328{margin-left:-3.120000px;}
._6_c00328{margin-left:-1.560000px;}
._13_c00328{width:1.860000px;}
._5_c00328{width:3.360000px;}
._1e_c00328{width:4.740000px;}
._3_c00328{width:5.940000px;}
._e_c00328{width:7.440000px;}
._c_c00328{width:8.820000px;}
._21_c00328{width:10.140000px;}
._9_c00328{width:11.460000px;}
._d_c00328{width:12.960000px;}
._22_c00328{width:13.980000px;}
._28_c00328{width:15.120000px;}
._1d_c00328{width:16.260000px;}
._12_c00328{width:17.520000px;}
._20_c00328{width:20.220000px;}
._24_c00328{width:21.360000px;}
._17_c00328{width:22.560000px;}
._1a_c00328{width:23.820000px;}
._1c_c00328{width:25.020000px;}
._23_c00328{width:26.460000px;}
._19_c00328{width:27.780000px;}
._18_c00328{width:30.960000px;}
._11_c00328{width:32.100000px;}
._29_c00328{width:33.240000px;}
._26_c00328{width:34.740000px;}
._27_c00328{width:36.240000px;}
._f_c00328{width:37.440000px;}
._2c_c00328{width:38.580000px;}
._2a_c00328{width:40.260000px;}
._16_c00328{width:43.080000px;}
._2d_c00328{width:45.000000px;}
._15_c00328{width:46.920000px;}
._8_c00328{width:126.660000px;}
._2b_c00328{width:240.600000px;}
.fc2_c00328{color:transparent;}
.fc1_c00328{color:rgb(128,128,128);}
.fc0_c00328{color:rgb(0,0,0);}
.fs2_c00328{font-size:45.000000px;}
.fs3_c00328{font-size:48.000000px;}
.fs1_c00328{font-size:60.000000px;}
.fs0_c00328{font-size:213.000000px;}
.y0_c00328{bottom:0.000000px;}
.y55_c00328{bottom:3.105000px;}
.y54_c00328{bottom:7.228371px;}
.y53_c00328{bottom:38.115000px;}
.y52_c00328{bottom:57.465000px;}
.y2a_c00328{bottom:60.465000px;}
.y51_c00328{bottom:76.365000px;}
.y29_c00328{bottom:78.315000px;}
.y50_c00328{bottom:92.565000px;}
.y28_c00328{bottom:98.265000px;}
.y4f_c00328{bottom:113.115000px;}
.y27_c00328{bottom:115.815000px;}
.y4e_c00328{bottom:129.615000px;}
.y26_c00328{bottom:133.665000px;}
.y4d_c00328{bottom:149.265000px;}
.y25_c00328{bottom:151.965000px;}
.y4c_c00328{bottom:165.015000px;}
.y24_c00328{bottom:169.815000px;}
.y4b_c00328{bottom:183.615000px;}
.y23_c00328{bottom:187.665000px;}
.y4a_c00328{bottom:203.265000px;}
.y22_c00328{bottom:205.665000px;}
.y49_c00328{bottom:221.115000px;}
.y21_c00328{bottom:224.115000px;}
.y48_c00328{bottom:238.365000px;}
.y20_c00328{bottom:241.365000px;}
.y47_c00328{bottom:257.265000px;}
.y1f_c00328{bottom:258.615000px;}
.y46_c00328{bottom:275.715000px;}
.y1e_c00328{bottom:278.415000px;}
.y45_c00328{bottom:293.415000px;}
.y1d_c00328{bottom:295.515000px;}
.y44_c00328{bottom:311.265000px;}
.y1c_c00328{bottom:313.515000px;}
.y43_c00328{bottom:329.115000px;}
.y1b_c00328{bottom:331.515000px;}
.y42_c00328{bottom:347.715000px;}
.y1a_c00328{bottom:349.665000px;}
.y41_c00328{bottom:365.565000px;}
.y19_c00328{bottom:367.215000px;}
.y40_c00328{bottom:383.715000px;}
.y18_c00328{bottom:385.215000px;}
.y17_c00328{bottom:402.765000px;}
.y3f_c00328{bottom:420.615000px;}
.y16_c00328{bottom:421.215000px;}
.y3e_c00328{bottom:437.865000px;}
.y15_c00328{bottom:439.515000px;}
.y1_c00328{bottom:455.265000px;}
.y3d_c00328{bottom:456.315000px;}
.y14_c00328{bottom:457.665000px;}
.y3c_c00328{bottom:474.165000px;}
.y13_c00328{bottom:474.615000px;}
.y3b_c00328{bottom:492.165000px;}
.y12_c00328{bottom:493.065000px;}
.y3a_c00328{bottom:510.015000px;}
.y11_c00328{bottom:510.615000px;}
.y39_c00328{bottom:527.865000px;}
.y10_c00328{bottom:529.215000px;}
.y38_c00328{bottom:545.715000px;}
.yf_c00328{bottom:547.215000px;}
.y37_c00328{bottom:564.015000px;}
.ye_c00328{bottom:564.765000px;}
.y36_c00328{bottom:580.965000px;}
.yd_c00328{bottom:581.865000px;}
.yc_c00328{bottom:599.865000px;}
.y35_c00328{bottom:600.465000px;}
.yb_c00328{bottom:618.765000px;}
.y34_c00328{bottom:619.365000px;}
.ya_c00328{bottom:636.315000px;}
.y33_c00328{bottom:637.215000px;}
.y9_c00328{bottom:654.165000px;}
.y32_c00328{bottom:655.515000px;}
.y8_c00328{bottom:672.315000px;}
.y31_c00328{bottom:673.965000px;}
.y7_c00328{bottom:690.615000px;}
.y30_c00328{bottom:691.515000px;}
.y6_c00328{bottom:707.865000px;}
.y2f_c00328{bottom:709.515000px;}
.y5_c00328{bottom:727.065000px;}
.y2e_c00328{bottom:727.365000px;}
.y4_c00328{bottom:744.165000px;}
.y2d_c00328{bottom:745.665000px;}
.y3_c00328{bottom:762.165000px;}
.y2c_c00328{bottom:764.115000px;}
.y2_c00328{bottom:778.965000px;}
.y2b_c00328{bottom:783.015000px;}
.h5_c00328{height:13.200074px;}
.h6_c00328{height:43.804688px;}
.h3_c00328{height:62.880000px;}
.h4_c00328{height:64.020000px;}
.h2_c00328{height:223.224000px;}
.h1_c00328{height:844.500000px;}
.h0_c00328{height:844.575000px;}
.w1_c00328{width:104.875500px;}
.w0_c00328{width:590.250000px;}
.x0_c00328{left:0.000000px;}
.xc_c00328{left:51.600000px;}
.x2_c00328{left:71.250000px;}
.x3_c00328{left:72.600000px;}
.x1_c00328{left:73.800000px;}
.xb_c00328{left:75.000000px;}
.xd_c00328{left:76.050000px;}
.x5_c00328{left:83.250000px;}
.x6_c00328{left:99.900000px;}
.x9_c00328{left:101.700000px;}
.xa_c00328{left:116.550000px;}
.x7_c00328{left:132.300000px;}
.x4_c00328{left:149.850000px;}
.x8_c00328{left:151.650000px;}
.x17_c00328{left:246.939240px;}
.xf_c00328{left:289.650000px;}
.x10_c00328{left:291.900000px;}
.xe_c00328{left:292.950000px;}
.x11_c00328{left:294.000000px;}
.x12_c00328{left:295.200000px;}
.x13_c00328{left:296.700000px;}
.x15_c00328{left:297.900000px;}
.x14_c00328{left:308.400000px;}
.x16_c00328{left:474.150000px;}
@media print{
.v0_c00328{vertical-align:0.000000pt;}
.ls8_c00328{letter-spacing:0.000000pt;}
.ls2_c00328{letter-spacing:0.533333pt;}
.ls5_c00328{letter-spacing:2.133333pt;}
.ls3_c00328{letter-spacing:2.666667pt;}
.ls6_c00328{letter-spacing:4.106667pt;}
.ls0_c00328{letter-spacing:5.333333pt;}
.ls1_c00328{letter-spacing:5.866667pt;}
.ls4_c00328{letter-spacing:9.426667pt;}
.ls7_c00328{letter-spacing:10.666667pt;}
.ws3_c00328{word-spacing:-18.080000pt;}
.ws1_c00328{word-spacing:-16.053333pt;}
.ws0_c00328{word-spacing:-12.586667pt;}
.ws4_c00328{word-spacing:0.000000pt;}
.ws2_c00328{word-spacing:0.320000pt;}
._1f_c00328{margin-left:-21.866667pt;}
._25_c00328{margin-left:-16.640000pt;}
._a_c00328{margin-left:-14.346667pt;}
._b_c00328{margin-left:-12.640000pt;}
._1b_c00328{margin-left:-11.466667pt;}
._10_c00328{margin-left:-10.026667pt;}
._0_c00328{margin-left:-8.906667pt;}
._2_c00328{margin-left:-7.253333pt;}
._14_c00328{margin-left:-6.293333pt;}
._1_c00328{margin-left:-5.386667pt;}
._4_c00328{margin-left:-4.426667pt;}
._7_c00328{margin-left:-2.773333pt;}
._6_c00328{margin-left:-1.386667pt;}
._13_c00328{width:1.653333pt;}
._5_c00328{width:2.986667pt;}
._1e_c00328{width:4.213333pt;}
._3_c00328{width:5.280000pt;}
._e_c00328{width:6.613333pt;}
._c_c00328{width:7.840000pt;}
._21_c00328{width:9.013333pt;}
._9_c00328{width:10.186667pt;}
._d_c00328{width:11.520000pt;}
._22_c00328{width:12.426667pt;}
._28_c00328{width:13.440000pt;}
._1d_c00328{width:14.453333pt;}
._12_c00328{width:15.573333pt;}
._20_c00328{width:17.973333pt;}
._24_c00328{width:18.986667pt;}
._17_c00328{width:20.053333pt;}
._1a_c00328{width:21.173333pt;}
._1c_c00328{width:22.240000pt;}
._23_c00328{width:23.520000pt;}
._19_c00328{width:24.693333pt;}
._18_c00328{width:27.520000pt;}
._11_c00328{width:28.533333pt;}
._29_c00328{width:29.546667pt;}
._26_c00328{width:30.880000pt;}
._27_c00328{width:32.213333pt;}
._f_c00328{width:33.280000pt;}
._2c_c00328{width:34.293333pt;}
._2a_c00328{width:35.786667pt;}
._16_c00328{width:38.293333pt;}
._2d_c00328{width:40.000000pt;}
._15_c00328{width:41.706667pt;}
._8_c00328{width:112.586667pt;}
._2b_c00328{width:213.866667pt;}
.fs2_c00328{font-size:40.000000pt;}
.fs3_c00328{font-size:42.666667pt;}
.fs1_c00328{font-size:53.333333pt;}
.fs0_c00328{font-size:189.333333pt;}
.y0_c00328{bottom:0.000000pt;}
.y55_c00328{bottom:2.760000pt;}
.y54_c00328{bottom:6.425219pt;}
.y53_c00328{bottom:33.880000pt;}
.y52_c00328{bottom:51.080000pt;}
.y2a_c00328{bottom:53.746667pt;}
.y51_c00328{bottom:67.880000pt;}
.y29_c00328{bottom:69.613333pt;}
.y50_c00328{bottom:82.280000pt;}
.y28_c00328{bottom:87.346667pt;}
.y4f_c00328{bottom:100.546667pt;}
.y27_c00328{bottom:102.946667pt;}
.y4e_c00328{bottom:115.213333pt;}
.y26_c00328{bottom:118.813333pt;}
.y4d_c00328{bottom:132.680000pt;}
.y25_c00328{bottom:135.080000pt;}
.y4c_c00328{bottom:146.680000pt;}
.y24_c00328{bottom:150.946667pt;}
.y4b_c00328{bottom:163.213333pt;}
.y23_c00328{bottom:166.813333pt;}
.y4a_c00328{bottom:180.680000pt;}
.y22_c00328{bottom:182.813333pt;}
.y49_c00328{bottom:196.546667pt;}
.y21_c00328{bottom:199.213333pt;}
.y48_c00328{bottom:211.880000pt;}
.y20_c00328{bottom:214.546667pt;}
.y47_c00328{bottom:228.680000pt;}
.y1f_c00328{bottom:229.880000pt;}
.y46_c00328{bottom:245.080000pt;}
.y1e_c00328{bottom:247.480000pt;}
.y45_c00328{bottom:260.813333pt;}
.y1d_c00328{bottom:262.680000pt;}
.y44_c00328{bottom:276.680000pt;}
.y1c_c00328{bottom:278.680000pt;}
.y43_c00328{bottom:292.546667pt;}
.y1b_c00328{bottom:294.680000pt;}
.y42_c00328{bottom:309.080000pt;}
.y1a_c00328{bottom:310.813333pt;}
.y41_c00328{bottom:324.946667pt;}
.y19_c00328{bottom:326.413333pt;}
.y40_c00328{bottom:341.080000pt;}
.y18_c00328{bottom:342.413333pt;}
.y17_c00328{bottom:358.013333pt;}
.y3f_c00328{bottom:373.880000pt;}
.y16_c00328{bottom:374.413333pt;}
.y3e_c00328{bottom:389.213333pt;}
.y15_c00328{bottom:390.680000pt;}
.y1_c00328{bottom:404.680000pt;}
.y3d_c00328{bottom:405.613333pt;}
.y14_c00328{bottom:406.813333pt;}
.y3c_c00328{bottom:421.480000pt;}
.y13_c00328{bottom:421.880000pt;}
.y3b_c00328{bottom:437.480000pt;}
.y12_c00328{bottom:438.280000pt;}
.y3a_c00328{bottom:453.346667pt;}
.y11_c00328{bottom:453.880000pt;}
.y39_c00328{bottom:469.213333pt;}
.y10_c00328{bottom:470.413333pt;}
.y38_c00328{bottom:485.080000pt;}
.yf_c00328{bottom:486.413333pt;}
.y37_c00328{bottom:501.346667pt;}
.ye_c00328{bottom:502.013333pt;}
.y36_c00328{bottom:516.413333pt;}
.yd_c00328{bottom:517.213333pt;}
.yc_c00328{bottom:533.213333pt;}
.y35_c00328{bottom:533.746667pt;}
.yb_c00328{bottom:550.013333pt;}
.y34_c00328{bottom:550.546667pt;}
.ya_c00328{bottom:565.613333pt;}
.y33_c00328{bottom:566.413333pt;}
.y9_c00328{bottom:581.480000pt;}
.y32_c00328{bottom:582.680000pt;}
.y8_c00328{bottom:597.613333pt;}
.y31_c00328{bottom:599.080000pt;}
.y7_c00328{bottom:613.880000pt;}
.y30_c00328{bottom:614.680000pt;}
.y6_c00328{bottom:629.213333pt;}
.y2f_c00328{bottom:630.680000pt;}
.y5_c00328{bottom:646.280000pt;}
.y2e_c00328{bottom:646.546667pt;}
.y4_c00328{bottom:661.480000pt;}
.y2d_c00328{bottom:662.813333pt;}
.y3_c00328{bottom:677.480000pt;}
.y2c_c00328{bottom:679.213333pt;}
.y2_c00328{bottom:692.413333pt;}
.y2b_c00328{bottom:696.013333pt;}
.h5_c00328{height:11.733399pt;}
.h6_c00328{height:38.937500pt;}
.h3_c00328{height:55.893333pt;}
.h4_c00328{height:56.906667pt;}
.h2_c00328{height:198.421333pt;}
.h1_c00328{height:750.666667pt;}
.h0_c00328{height:750.733333pt;}
.w1_c00328{width:93.222667pt;}
.w0_c00328{width:524.666667pt;}
.x0_c00328{left:0.000000pt;}
.xc_c00328{left:45.866667pt;}
.x2_c00328{left:63.333333pt;}
.x3_c00328{left:64.533333pt;}
.x1_c00328{left:65.600000pt;}
.xb_c00328{left:66.666667pt;}
.xd_c00328{left:67.600000pt;}
.x5_c00328{left:74.000000pt;}
.x6_c00328{left:88.800000pt;}
.x9_c00328{left:90.400000pt;}
.xa_c00328{left:103.600000pt;}
.x7_c00328{left:117.600000pt;}
.x4_c00328{left:133.200000pt;}
.x8_c00328{left:134.800000pt;}
.x17_c00328{left:219.501546pt;}
.xf_c00328{left:257.466667pt;}
.x10_c00328{left:259.466667pt;}
.xe_c00328{left:260.400000pt;}
.x11_c00328{left:261.333333pt;}
.x12_c00328{left:262.400000pt;}
.x13_c00328{left:263.733333pt;}
.x15_c00328{left:264.800000pt;}
.x14_c00328{left:274.133333pt;}
.x16_c00328{left:421.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ef1cdc815de2181bbedca44e.woff2')format("woff");}.ff1_c00329{font-family:ff1_c00329;line-height:1.437000;font-style:normal;font-weight:normal;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_80f6ee412de0d214d7615b3a.woff2')format("woff");}.ff2_c00329{font-family:ff2_c00329;line-height:1.437000;font-style:normal;font-weight:normal;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_48c9bd6b555a1175fefd7926.woff2')format("woff");}.ff3_c00329{font-family:ff3_c00329;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00329;src:url('chunks/assets/font_5afffe15a9f978df5259b08d.woff2')format("woff");}.ff4_c00329{font-family:ff4_c00329;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00329;src:url('chunks/assets/font_1c7742fd1a4f89a1af388b69.woff2')format("woff");}.ff5_c00329{font-family:ff5_c00329;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00329;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff6_c00329{font-family:ff6_c00329;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00329{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00329{vertical-align:0.000000px;}
.v1_c00329{vertical-align:43.800000px;}
.lsa_c00329{letter-spacing:0.000000px;}
.ls6_c00329{letter-spacing:2.760000px;}
.ls7_c00329{letter-spacing:3.000000px;}
.ls2_c00329{letter-spacing:5.442000px;}
.ls4_c00329{letter-spacing:6.000000px;}
.ls0_c00329{letter-spacing:7.380000px;}
.ls5_c00329{letter-spacing:12.000000px;}
.ls1_c00329{letter-spacing:12.381000px;}
.ls9_c00329{letter-spacing:16.260000px;}
.ls8_c00329{letter-spacing:20.460000px;}
.ls3_c00329{letter-spacing:22.845000px;}
.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:-26.340000px;}
.ws2_c00329{word-spacing:-20.340000px;}
.ws0_c00329{word-spacing:-14.160000px;}
.ws3_c00329{word-spacing:-13.380000px;}
.ws4_c00329{word-spacing:0.000000px;}
._26_c00329{margin-left:-20.490000px;}
._1a_c00329{margin-left:-15.960000px;}
._17_c00329{margin-left:-13.050000px;}
._12_c00329{margin-left:-12.000000px;}
._16_c00329{margin-left:-10.200000px;}
._13_c00329{margin-left:-9.180000px;}
._11_c00329{margin-left:-7.980000px;}
._14_c00329{margin-left:-6.300000px;}
._d_c00329{margin-left:-5.040000px;}
._7_c00329{margin-left:-3.420000px;}
._2_c00329{margin-left:-1.710000px;}
._5_c00329{width:1.500000px;}
._4_c00329{width:3.060000px;}
._9_c00329{width:4.200000px;}
._0_c00329{width:5.220000px;}
._f_c00329{width:7.020000px;}
._10_c00329{width:8.520000px;}
._6_c00329{width:9.540000px;}
._1d_c00329{width:10.560000px;}
._8_c00329{width:11.640000px;}
._a_c00329{width:13.410000px;}
._1b_c00329{width:14.700000px;}
._1f_c00329{width:16.320000px;}
._1_c00329{width:17.955000px;}
._b_c00329{width:19.530000px;}
._c_c00329{width:21.840000px;}
._18_c00329{width:23.100000px;}
._3_c00329{width:25.050000px;}
._19_c00329{width:26.220000px;}
._e_c00329{width:29.040000px;}
._25_c00329{width:30.120000px;}
._20_c00329{width:33.300000px;}
._15_c00329{width:35.280000px;}
._1e_c00329{width:37.980000px;}
._1c_c00329{width:39.120000px;}
._23_c00329{width:42.960000px;}
._24_c00329{width:62.550000px;}
._22_c00329{width:123.060000px;}
._21_c00329{width:142.710000px;}
.fc2_c00329{color:transparent;}
.fc1_c00329{color:rgb(128,128,128);}
.fc0_c00329{color:rgb(0,0,0);}
.fs0_c00329{font-size:45.000000px;}
.fs4_c00329{font-size:48.000000px;}
.fs3_c00329{font-size:54.000000px;}
.fs1_c00329{font-size:60.000000px;}
.fs2_c00329{font-size:123.000000px;}
.y0_c00329{bottom:0.000000px;}
.y56_c00329{bottom:3.105000px;}
.y55_c00329{bottom:7.228357px;}
.y54_c00329{bottom:44.280000px;}
.y53_c00329{bottom:62.130000px;}
.y29_c00329{bottom:62.430000px;}
.y52_c00329{bottom:79.680000px;}
.y28_c00329{bottom:81.330000px;}
.y51_c00329{bottom:97.980000px;}
.y27_c00329{bottom:99.180000px;}
.y50_c00329{bottom:116.430000px;}
.y26_c00329{bottom:117.480000px;}
.y4f_c00329{bottom:134.280000px;}
.y25_c00329{bottom:135.330000px;}
.y4e_c00329{bottom:151.980000px;}
.y24_c00329{bottom:153.330000px;}
.y4d_c00329{bottom:170.130000px;}
.y23_c00329{bottom:171.780000px;}
.y4c_c00329{bottom:188.130000px;}
.y22_c00329{bottom:189.630000px;}
.y4b_c00329{bottom:206.280000px;}
.y21_c00329{bottom:207.330000px;}
.y4a_c00329{bottom:224.430000px;}
.y20_c00329{bottom:225.480000px;}
.y49_c00329{bottom:242.280000px;}
.y1f_c00329{bottom:243.780000px;}
.y48_c00329{bottom:261.180000px;}
.y1e_c00329{bottom:261.330000px;}
.y47_c00329{bottom:278.880000px;}
.y1d_c00329{bottom:280.080000px;}
.y46_c00329{bottom:296.730000px;}
.y1c_c00329{bottom:298.080000px;}
.y45_c00329{bottom:314.730000px;}
.y1b_c00329{bottom:315.930000px;}
.y44_c00329{bottom:332.880000px;}
.y1a_c00329{bottom:334.230000px;}
.y43_c00329{bottom:351.030000px;}
.y19_c00329{bottom:352.080000px;}
.y42_c00329{bottom:369.180000px;}
.y18_c00329{bottom:370.230000px;}
.y41_c00329{bottom:387.180000px;}
.y17_c00329{bottom:388.530000px;}
.y40_c00329{bottom:405.630000px;}
.y16_c00329{bottom:406.380000px;}
.y3f_c00329{bottom:423.630000px;}
.y15_c00329{bottom:424.680000px;}
.y3e_c00329{bottom:442.080000px;}
.y14_c00329{bottom:442.530000px;}
.y3d_c00329{bottom:459.780000px;}
.y13_c00329{bottom:460.980000px;}
.y3c_c00329{bottom:477.630000px;}
.y12_c00329{bottom:478.680000px;}
.y3b_c00329{bottom:496.080000px;}
.y11_c00329{bottom:497.130000px;}
.y3a_c00329{bottom:514.080000px;}
.y10_c00329{bottom:514.980000px;}
.y39_c00329{bottom:531.630000px;}
.yf_c00329{bottom:532.980000px;}
.y38_c00329{bottom:550.080000px;}
.ye_c00329{bottom:551.130000px;}
.y37_c00329{bottom:567.780000px;}
.yd_c00329{bottom:568.980000px;}
.y36_c00329{bottom:586.230000px;}
.yc_c00329{bottom:586.980000px;}
.y35_c00329{bottom:604.080000px;}
.yb_c00329{bottom:606.180000px;}
.y34_c00329{bottom:621.630000px;}
.ya_c00329{bottom:623.730000px;}
.y9_c00329{bottom:630.930000px;}
.y33_c00329{bottom:639.930000px;}
.y32_c00329{bottom:658.080000px;}
.y8_c00329{bottom:660.180000px;}
.y31_c00329{bottom:675.630000px;}
.y7_c00329{bottom:677.430000px;}
.y30_c00329{bottom:694.230000px;}
.y6_c00329{bottom:696.030000px;}
.y2f_c00329{bottom:712.230000px;}
.y5_c00329{bottom:713.580000px;}
.y2e_c00329{bottom:730.680000px;}
.y4_c00329{bottom:731.730000px;}
.y2d_c00329{bottom:748.680000px;}
.y3_c00329{bottom:750.630000px;}
.y2c_c00329{bottom:766.230000px;}
.y2_c00329{bottom:768.180000px;}
.y2b_c00329{bottom:784.380000px;}
.y1_c00329{bottom:785.430000px;}
.y2a_c00329{bottom:804.030000px;}
.h5_c00329{height:13.200074px;}
.h6_c00329{height:43.804688px;}
.h2_c00329{height:62.880000px;}
.h4_c00329{height:63.480000px;}
.h3_c00329{height:133.332000px;}
.h0_c00329{height:849.450000px;}
.h1_c00329{height:849.750000px;}
.w2_c00329{width:104.875500px;}
.w0_c00329{width:554.850000px;}
.w1_c00329{width:555.000000px;}
.x0_c00329{left:0.000000px;}
.x1_c00329{left:30.750000px;}
.xb_c00329{left:73.650000px;}
.x6_c00329{left:84.000000px;}
.xa_c00329{left:85.050000px;}
.x9_c00329{left:86.700000px;}
.x5_c00329{left:87.750000px;}
.x8_c00329{left:89.100000px;}
.x4_c00329{left:90.150000px;}
.x2_c00329{left:91.200000px;}
.x7_c00329{left:99.900000px;}
.x3_c00329{left:137.100000px;}
.x11_c00329{left:229.239258px;}
.xd_c00329{left:307.500000px;}
.xe_c00329{left:308.850000px;}
.xf_c00329{left:310.050000px;}
.xc_c00329{left:311.550000px;}
.x10_c00329{left:477.600000px;}
@media print{
.v0_c00329{vertical-align:0.000000pt;}
.v1_c00329{vertical-align:38.933333pt;}
.lsa_c00329{letter-spacing:0.000000pt;}
.ls6_c00329{letter-spacing:2.453333pt;}
.ls7_c00329{letter-spacing:2.666667pt;}
.ls2_c00329{letter-spacing:4.837333pt;}
.ls4_c00329{letter-spacing:5.333333pt;}
.ls0_c00329{letter-spacing:6.560000pt;}
.ls5_c00329{letter-spacing:10.666667pt;}
.ls1_c00329{letter-spacing:11.005333pt;}
.ls9_c00329{letter-spacing:14.453333pt;}
.ls8_c00329{letter-spacing:18.186667pt;}
.ls3_c00329{letter-spacing:20.306667pt;}
.ws1_c00329{word-spacing:-23.413333pt;}
.ws2_c00329{word-spacing:-18.080000pt;}
.ws0_c00329{word-spacing:-12.586667pt;}
.ws3_c00329{word-spacing:-11.893333pt;}
.ws4_c00329{word-spacing:0.000000pt;}
._26_c00329{margin-left:-18.213333pt;}
._1a_c00329{margin-left:-14.186667pt;}
._17_c00329{margin-left:-11.600000pt;}
._12_c00329{margin-left:-10.666667pt;}
._16_c00329{margin-left:-9.066667pt;}
._13_c00329{margin-left:-8.160000pt;}
._11_c00329{margin-left:-7.093333pt;}
._14_c00329{margin-left:-5.600000pt;}
._d_c00329{margin-left:-4.480000pt;}
._7_c00329{margin-left:-3.040000pt;}
._2_c00329{margin-left:-1.520000pt;}
._5_c00329{width:1.333333pt;}
._4_c00329{width:2.720000pt;}
._9_c00329{width:3.733333pt;}
._0_c00329{width:4.640000pt;}
._f_c00329{width:6.240000pt;}
._10_c00329{width:7.573333pt;}
._6_c00329{width:8.480000pt;}
._1d_c00329{width:9.386667pt;}
._8_c00329{width:10.346667pt;}
._a_c00329{width:11.920000pt;}
._1b_c00329{width:13.066667pt;}
._1f_c00329{width:14.506667pt;}
._1_c00329{width:15.960000pt;}
._b_c00329{width:17.360000pt;}
._c_c00329{width:19.413333pt;}
._18_c00329{width:20.533333pt;}
._3_c00329{width:22.266667pt;}
._19_c00329{width:23.306667pt;}
._e_c00329{width:25.813333pt;}
._25_c00329{width:26.773333pt;}
._20_c00329{width:29.600000pt;}
._15_c00329{width:31.360000pt;}
._1e_c00329{width:33.760000pt;}
._1c_c00329{width:34.773333pt;}
._23_c00329{width:38.186667pt;}
._24_c00329{width:55.600000pt;}
._22_c00329{width:109.386667pt;}
._21_c00329{width:126.853333pt;}
.fs0_c00329{font-size:40.000000pt;}
.fs4_c00329{font-size:42.666667pt;}
.fs3_c00329{font-size:48.000000pt;}
.fs1_c00329{font-size:53.333333pt;}
.fs2_c00329{font-size:109.333333pt;}
.y0_c00329{bottom:0.000000pt;}
.y56_c00329{bottom:2.760000pt;}
.y55_c00329{bottom:6.425206pt;}
.y54_c00329{bottom:39.360000pt;}
.y53_c00329{bottom:55.226667pt;}
.y29_c00329{bottom:55.493333pt;}
.y52_c00329{bottom:70.826667pt;}
.y28_c00329{bottom:72.293333pt;}
.y51_c00329{bottom:87.093333pt;}
.y27_c00329{bottom:88.160000pt;}
.y50_c00329{bottom:103.493333pt;}
.y26_c00329{bottom:104.426667pt;}
.y4f_c00329{bottom:119.360000pt;}
.y25_c00329{bottom:120.293333pt;}
.y4e_c00329{bottom:135.093333pt;}
.y24_c00329{bottom:136.293333pt;}
.y4d_c00329{bottom:151.226667pt;}
.y23_c00329{bottom:152.693333pt;}
.y4c_c00329{bottom:167.226667pt;}
.y22_c00329{bottom:168.560000pt;}
.y4b_c00329{bottom:183.360000pt;}
.y21_c00329{bottom:184.293333pt;}
.y4a_c00329{bottom:199.493333pt;}
.y20_c00329{bottom:200.426667pt;}
.y49_c00329{bottom:215.360000pt;}
.y1f_c00329{bottom:216.693333pt;}
.y48_c00329{bottom:232.160000pt;}
.y1e_c00329{bottom:232.293333pt;}
.y47_c00329{bottom:247.893333pt;}
.y1d_c00329{bottom:248.960000pt;}
.y46_c00329{bottom:263.760000pt;}
.y1c_c00329{bottom:264.960000pt;}
.y45_c00329{bottom:279.760000pt;}
.y1b_c00329{bottom:280.826667pt;}
.y44_c00329{bottom:295.893333pt;}
.y1a_c00329{bottom:297.093333pt;}
.y43_c00329{bottom:312.026667pt;}
.y19_c00329{bottom:312.960000pt;}
.y42_c00329{bottom:328.160000pt;}
.y18_c00329{bottom:329.093333pt;}
.y41_c00329{bottom:344.160000pt;}
.y17_c00329{bottom:345.360000pt;}
.y40_c00329{bottom:360.560000pt;}
.y16_c00329{bottom:361.226667pt;}
.y3f_c00329{bottom:376.560000pt;}
.y15_c00329{bottom:377.493333pt;}
.y3e_c00329{bottom:392.960000pt;}
.y14_c00329{bottom:393.360000pt;}
.y3d_c00329{bottom:408.693333pt;}
.y13_c00329{bottom:409.760000pt;}
.y3c_c00329{bottom:424.560000pt;}
.y12_c00329{bottom:425.493333pt;}
.y3b_c00329{bottom:440.960000pt;}
.y11_c00329{bottom:441.893333pt;}
.y3a_c00329{bottom:456.960000pt;}
.y10_c00329{bottom:457.760000pt;}
.y39_c00329{bottom:472.560000pt;}
.yf_c00329{bottom:473.760000pt;}
.y38_c00329{bottom:488.960000pt;}
.ye_c00329{bottom:489.893333pt;}
.y37_c00329{bottom:504.693333pt;}
.yd_c00329{bottom:505.760000pt;}
.y36_c00329{bottom:521.093333pt;}
.yc_c00329{bottom:521.760000pt;}
.y35_c00329{bottom:536.960000pt;}
.yb_c00329{bottom:538.826667pt;}
.y34_c00329{bottom:552.560000pt;}
.ya_c00329{bottom:554.426667pt;}
.y9_c00329{bottom:560.826667pt;}
.y33_c00329{bottom:568.826667pt;}
.y32_c00329{bottom:584.960000pt;}
.y8_c00329{bottom:586.826667pt;}
.y31_c00329{bottom:600.560000pt;}
.y7_c00329{bottom:602.160000pt;}
.y30_c00329{bottom:617.093333pt;}
.y6_c00329{bottom:618.693333pt;}
.y2f_c00329{bottom:633.093333pt;}
.y5_c00329{bottom:634.293333pt;}
.y2e_c00329{bottom:649.493333pt;}
.y4_c00329{bottom:650.426667pt;}
.y2d_c00329{bottom:665.493333pt;}
.y3_c00329{bottom:667.226667pt;}
.y2c_c00329{bottom:681.093333pt;}
.y2_c00329{bottom:682.826667pt;}
.y2b_c00329{bottom:697.226667pt;}
.y1_c00329{bottom:698.160000pt;}
.y2a_c00329{bottom:714.693333pt;}
.h5_c00329{height:11.733399pt;}
.h6_c00329{height:38.937500pt;}
.h2_c00329{height:55.893333pt;}
.h4_c00329{height:56.426667pt;}
.h3_c00329{height:118.517333pt;}
.h0_c00329{height:755.066667pt;}
.h1_c00329{height:755.333333pt;}
.w2_c00329{width:93.222667pt;}
.w0_c00329{width:493.200000pt;}
.w1_c00329{width:493.333333pt;}
.x0_c00329{left:0.000000pt;}
.x1_c00329{left:27.333333pt;}
.xb_c00329{left:65.466667pt;}
.x6_c00329{left:74.666667pt;}
.xa_c00329{left:75.600000pt;}
.x9_c00329{left:77.066667pt;}
.x5_c00329{left:78.000000pt;}
.x8_c00329{left:79.200000pt;}
.x4_c00329{left:80.133333pt;}
.x2_c00329{left:81.066667pt;}
.x7_c00329{left:88.800000pt;}
.x3_c00329{left:121.866667pt;}
.x11_c00329{left:203.768229pt;}
.xd_c00329{left:273.333333pt;}
.xe_c00329{left:274.533333pt;}
.xf_c00329{left:275.600000pt;}
.xc_c00329{left:276.933333pt;}
.x10_c00329{left:424.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c6ca2502e02afdfaadd391bc.woff2')format("woff");}.ff1_c00330{font-family:ff1_c00330;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00330;src:url('chunks/assets/font_589b81ee00dbb9a7eab0721a.woff2')format("woff");}.ff2_c00330{font-family:ff2_c00330;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00330;src:url('chunks/assets/font_fbf45ad1d6c3c7a658ade436.woff2')format("woff");}.ff3_c00330{font-family:ff3_c00330;line-height:1.575000;font-style:normal;font-weight:normal;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_2262bd98b616d21e4b6a355f.woff2')format("woff");}.ff4_c00330{font-family:ff4_c00330;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00330;src:url('chunks/assets/font_bf1430bc462086e0860b5f54.woff2')format("woff");}.ff5_c00330{font-family:ff5_c00330;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00330;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff6_c00330{font-family:ff6_c00330;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00330{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00330{vertical-align:0.000000px;}
.v1_c00330{vertical-align:102.600000px;}
.ls7_c00330{letter-spacing:0.000000px;}
.ls2_c00330{letter-spacing:1.200000px;}
.ls6_c00330{letter-spacing:3.000000px;}
.ls5_c00330{letter-spacing:3.360000px;}
.ls4_c00330{letter-spacing:4.605000px;}
.ls1_c00330{letter-spacing:5.880000px;}
.ls3_c00330{letter-spacing:6.000000px;}
.ls0_c00330{letter-spacing:30.360000px;}
.sc__c00330{text-shadow:none;}
.sc0_c00330{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00330{-webkit-text-stroke:0px transparent;}
.sc0_c00330{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00330{word-spacing:-32.295000px;}
.ws0_c00330{word-spacing:-18.060000px;}
.ws3_c00330{word-spacing:-17.520000px;}
.ws2_c00330{word-spacing:-16.755000px;}
.ws1_c00330{word-spacing:-14.160000px;}
.ws5_c00330{word-spacing:0.000000px;}
._1e_c00330{margin-left:-21.660000px;}
._29_c00330{margin-left:-18.360000px;}
._1b_c00330{margin-left:-12.780000px;}
._24_c00330{margin-left:-11.760000px;}
._2a_c00330{margin-left:-9.780000px;}
._13_c00330{margin-left:-8.760000px;}
._1d_c00330{margin-left:-6.540000px;}
._7_c00330{margin-left:-4.980000px;}
._21_c00330{margin-left:-3.960000px;}
._e_c00330{margin-left:-2.940000px;}
._d_c00330{margin-left:-1.800000px;}
._a_c00330{width:1.020000px;}
._b_c00330{width:2.340000px;}
._10_c00330{width:3.480000px;}
._9_c00330{width:4.560000px;}
._14_c00330{width:5.580000px;}
._c_c00330{width:6.900000px;}
._1_c00330{width:8.460000px;}
._4_c00330{width:9.600000px;}
._12_c00330{width:11.640000px;}
._0_c00330{width:12.840000px;}
._15_c00330{width:13.860000px;}
._11_c00330{width:15.180000px;}
._26_c00330{width:16.440000px;}
._1c_c00330{width:17.460000px;}
._3_c00330{width:19.260000px;}
._18_c00330{width:20.880000px;}
._25_c00330{width:22.005000px;}
._5_c00330{width:23.400000px;}
._17_c00330{width:24.540000px;}
._16_c00330{width:26.220000px;}
._2_c00330{width:27.540000px;}
._27_c00330{width:29.400000px;}
._19_c00330{width:33.180000px;}
._1a_c00330{width:34.560000px;}
._22_c00330{width:36.600000px;}
._1f_c00330{width:37.620000px;}
._6_c00330{width:39.780000px;}
._23_c00330{width:41.400000px;}
._2b_c00330{width:43.260000px;}
._28_c00330{width:45.120000px;}
._f_c00330{width:82.980000px;}
._20_c00330{width:269.340000px;}
._8_c00330{width:372.840000px;}
.fc2_c00330{color:transparent;}
.fc1_c00330{color:rgb(128,128,128);}
.fc0_c00330{color:rgb(0,0,0);}
.fs2_c00330{font-size:45.000000px;}
.fs3_c00330{font-size:48.000000px;}
.fs0_c00330{font-size:60.000000px;}
.fs1_c00330{font-size:204.000000px;}
.y0_c00330{bottom:0.000000px;}
.y51_c00330{bottom:3.105000px;}
.y50_c00330{bottom:7.228357px;}
.y4f_c00330{bottom:34.080000px;}
.y4e_c00330{bottom:52.980000px;}
.y27_c00330{bottom:56.130000px;}
.y4d_c00330{bottom:71.880000px;}
.y26_c00330{bottom:74.280000px;}
.y4c_c00330{bottom:89.880000px;}
.y25_c00330{bottom:91.530000px;}
.y4b_c00330{bottom:107.280000px;}
.y24_c00330{bottom:110.430000px;}
.y4a_c00330{bottom:125.880000px;}
.y23_c00330{bottom:128.580000px;}
.y49_c00330{bottom:144.180000px;}
.y22_c00330{bottom:146.580000px;}
.y48_c00330{bottom:161.730000px;}
.y21_c00330{bottom:164.730000px;}
.y47_c00330{bottom:179.580000px;}
.y20_c00330{bottom:182.280000px;}
.y46_c00330{bottom:197.430000px;}
.y1f_c00330{bottom:200.880000px;}
.y45_c00330{bottom:216.030000px;}
.y1e_c00330{bottom:219.030000px;}
.y44_c00330{bottom:233.880000px;}
.y1d_c00330{bottom:236.880000px;}
.y43_c00330{bottom:252.480000px;}
.y1c_c00330{bottom:255.480000px;}
.y42_c00330{bottom:270.030000px;}
.y1b_c00330{bottom:272.730000px;}
.y41_c00330{bottom:288.630000px;}
.y1a_c00330{bottom:290.880000px;}
.y40_c00330{bottom:307.080000px;}
.y19_c00330{bottom:308.880000px;}
.y3f_c00330{bottom:324.780000px;}
.y18_c00330{bottom:326.430000px;}
.y3e_c00330{bottom:342.330000px;}
.y17_c00330{bottom:344.880000px;}
.y3d_c00330{bottom:360.780000px;}
.y16_c00330{bottom:362.880000px;}
.y3c_c00330{bottom:379.080000px;}
.y15_c00330{bottom:380.430000px;}
.y3b_c00330{bottom:397.230000px;}
.y14_c00330{bottom:398.880000px;}
.y3a_c00330{bottom:415.230000px;}
.y13_c00330{bottom:416.880000px;}
.y39_c00330{bottom:433.380000px;}
.y12_c00330{bottom:435.330000px;}
.y38_c00330{bottom:450.930000px;}
.y11_c00330{bottom:452.580000px;}
.y37_c00330{bottom:469.530000px;}
.y10_c00330{bottom:470.580000px;}
.y36_c00330{bottom:487.680000px;}
.yf_c00330{bottom:487.980000px;}
.ye_c00330{bottom:505.530000px;}
.y35_c00330{bottom:505.680000px;}
.yd_c00330{bottom:523.830000px;}
.y34_c00330{bottom:541.680000px;}
.yc_c00330{bottom:542.430000px;}
.y33_c00330{bottom:559.230000px;}
.yb_c00330{bottom:559.980000px;}
.y9_c00330{bottom:569.730000px;}
.y32_c00330{bottom:576.780000px;}
.ya_c00330{bottom:577.830000px;}
.y31_c00330{bottom:595.380000px;}
.y30_c00330{bottom:613.530000px;}
.y2f_c00330{bottom:631.230000px;}
.y8_c00330{bottom:631.530000px;}
.y2e_c00330{bottom:649.380000px;}
.y7_c00330{bottom:650.130000px;}
.y2d_c00330{bottom:667.230000px;}
.y6_c00330{bottom:667.680000px;}
.y2c_c00330{bottom:685.530000px;}
.y2b_c00330{bottom:702.630000px;}
.y5_c00330{bottom:702.780000px;}
.y2a_c00330{bottom:721.530000px;}
.y4_c00330{bottom:738.780000px;}
.y29_c00330{bottom:740.130000px;}
.y3_c00330{bottom:756.780000px;}
.y28_c00330{bottom:758.730000px;}
.y2_c00330{bottom:775.530000px;}
.y1_c00330{bottom:795.930000px;}
.h5_c00330{height:13.200074px;}
.h6_c00330{height:43.804688px;}
.h2_c00330{height:62.880000px;}
.h4_c00330{height:64.020000px;}
.h3_c00330{height:217.668000px;}
.h1_c00330{height:825.000000px;}
.h0_c00330{height:825.150000px;}
.w1_c00330{width:104.875500px;}
.w0_c00330{width:576.750000px;}
.x0_c00330{left:0.000000px;}
.x3_c00330{left:63.750000px;}
.x2_c00330{left:64.800000px;}
.x5_c00330{left:66.750000px;}
.x6_c00330{left:81.900000px;}
.x8_c00330{left:108.900000px;}
.x7_c00330{left:124.200000px;}
.x4_c00330{left:160.650000px;}
.x1_c00330{left:205.500000px;}
.x10_c00330{left:240.189240px;}
.x9_c00330{left:282.450000px;}
.xa_c00330{left:283.800000px;}
.xb_c00330{left:285.750000px;}
.xd_c00330{left:286.950000px;}
.xc_c00330{left:288.150000px;}
.xe_c00330{left:304.500000px;}
.xf_c00330{left:462.600000px;}
@media print{
.v0_c00330{vertical-align:0.000000pt;}
.v1_c00330{vertical-align:91.200000pt;}
.ls7_c00330{letter-spacing:0.000000pt;}
.ls2_c00330{letter-spacing:1.066667pt;}
.ls6_c00330{letter-spacing:2.666667pt;}
.ls5_c00330{letter-spacing:2.986667pt;}
.ls4_c00330{letter-spacing:4.093333pt;}
.ls1_c00330{letter-spacing:5.226667pt;}
.ls3_c00330{letter-spacing:5.333333pt;}
.ls0_c00330{letter-spacing:26.986667pt;}
.ws4_c00330{word-spacing:-28.706667pt;}
.ws0_c00330{word-spacing:-16.053333pt;}
.ws3_c00330{word-spacing:-15.573333pt;}
.ws2_c00330{word-spacing:-14.893333pt;}
.ws1_c00330{word-spacing:-12.586667pt;}
.ws5_c00330{word-spacing:0.000000pt;}
._1e_c00330{margin-left:-19.253333pt;}
._29_c00330{margin-left:-16.320000pt;}
._1b_c00330{margin-left:-11.360000pt;}
._24_c00330{margin-left:-10.453333pt;}
._2a_c00330{margin-left:-8.693333pt;}
._13_c00330{margin-left:-7.786667pt;}
._1d_c00330{margin-left:-5.813333pt;}
._7_c00330{margin-left:-4.426667pt;}
._21_c00330{margin-left:-3.520000pt;}
._e_c00330{margin-left:-2.613333pt;}
._d_c00330{margin-left:-1.600000pt;}
._a_c00330{width:0.906667pt;}
._b_c00330{width:2.080000pt;}
._10_c00330{width:3.093333pt;}
._9_c00330{width:4.053333pt;}
._14_c00330{width:4.960000pt;}
._c_c00330{width:6.133333pt;}
._1_c00330{width:7.520000pt;}
._4_c00330{width:8.533333pt;}
._12_c00330{width:10.346667pt;}
._0_c00330{width:11.413333pt;}
._15_c00330{width:12.320000pt;}
._11_c00330{width:13.493333pt;}
._26_c00330{width:14.613333pt;}
._1c_c00330{width:15.520000pt;}
._3_c00330{width:17.120000pt;}
._18_c00330{width:18.560000pt;}
._25_c00330{width:19.560000pt;}
._5_c00330{width:20.800000pt;}
._17_c00330{width:21.813333pt;}
._16_c00330{width:23.306667pt;}
._2_c00330{width:24.480000pt;}
._27_c00330{width:26.133333pt;}
._19_c00330{width:29.493333pt;}
._1a_c00330{width:30.720000pt;}
._22_c00330{width:32.533333pt;}
._1f_c00330{width:33.440000pt;}
._6_c00330{width:35.360000pt;}
._23_c00330{width:36.800000pt;}
._2b_c00330{width:38.453333pt;}
._28_c00330{width:40.106667pt;}
._f_c00330{width:73.760000pt;}
._20_c00330{width:239.413333pt;}
._8_c00330{width:331.413333pt;}
.fs2_c00330{font-size:40.000000pt;}
.fs3_c00330{font-size:42.666667pt;}
.fs0_c00330{font-size:53.333333pt;}
.fs1_c00330{font-size:181.333333pt;}
.y0_c00330{bottom:0.000000pt;}
.y51_c00330{bottom:2.760000pt;}
.y50_c00330{bottom:6.425206pt;}
.y4f_c00330{bottom:30.293333pt;}
.y4e_c00330{bottom:47.093333pt;}
.y27_c00330{bottom:49.893333pt;}
.y4d_c00330{bottom:63.893333pt;}
.y26_c00330{bottom:66.026667pt;}
.y4c_c00330{bottom:79.893333pt;}
.y25_c00330{bottom:81.360000pt;}
.y4b_c00330{bottom:95.360000pt;}
.y24_c00330{bottom:98.160000pt;}
.y4a_c00330{bottom:111.893333pt;}
.y23_c00330{bottom:114.293333pt;}
.y49_c00330{bottom:128.160000pt;}
.y22_c00330{bottom:130.293333pt;}
.y48_c00330{bottom:143.760000pt;}
.y21_c00330{bottom:146.426667pt;}
.y47_c00330{bottom:159.626667pt;}
.y20_c00330{bottom:162.026667pt;}
.y46_c00330{bottom:175.493333pt;}
.y1f_c00330{bottom:178.560000pt;}
.y45_c00330{bottom:192.026667pt;}
.y1e_c00330{bottom:194.693333pt;}
.y44_c00330{bottom:207.893333pt;}
.y1d_c00330{bottom:210.560000pt;}
.y43_c00330{bottom:224.426667pt;}
.y1c_c00330{bottom:227.093333pt;}
.y42_c00330{bottom:240.026667pt;}
.y1b_c00330{bottom:242.426667pt;}
.y41_c00330{bottom:256.560000pt;}
.y1a_c00330{bottom:258.560000pt;}
.y40_c00330{bottom:272.960000pt;}
.y19_c00330{bottom:274.560000pt;}
.y3f_c00330{bottom:288.693333pt;}
.y18_c00330{bottom:290.160000pt;}
.y3e_c00330{bottom:304.293333pt;}
.y17_c00330{bottom:306.560000pt;}
.y3d_c00330{bottom:320.693333pt;}
.y16_c00330{bottom:322.560000pt;}
.y3c_c00330{bottom:336.960000pt;}
.y15_c00330{bottom:338.160000pt;}
.y3b_c00330{bottom:353.093333pt;}
.y14_c00330{bottom:354.560000pt;}
.y3a_c00330{bottom:369.093333pt;}
.y13_c00330{bottom:370.560000pt;}
.y39_c00330{bottom:385.226667pt;}
.y12_c00330{bottom:386.960000pt;}
.y38_c00330{bottom:400.826667pt;}
.y11_c00330{bottom:402.293333pt;}
.y37_c00330{bottom:417.360000pt;}
.y10_c00330{bottom:418.293333pt;}
.y36_c00330{bottom:433.493333pt;}
.yf_c00330{bottom:433.760000pt;}
.ye_c00330{bottom:449.360000pt;}
.y35_c00330{bottom:449.493333pt;}
.yd_c00330{bottom:465.626667pt;}
.y34_c00330{bottom:481.493333pt;}
.yc_c00330{bottom:482.160000pt;}
.y33_c00330{bottom:497.093333pt;}
.yb_c00330{bottom:497.760000pt;}
.y9_c00330{bottom:506.426667pt;}
.y32_c00330{bottom:512.693333pt;}
.ya_c00330{bottom:513.626667pt;}
.y31_c00330{bottom:529.226667pt;}
.y30_c00330{bottom:545.360000pt;}
.y2f_c00330{bottom:561.093333pt;}
.y8_c00330{bottom:561.360000pt;}
.y2e_c00330{bottom:577.226667pt;}
.y7_c00330{bottom:577.893333pt;}
.y2d_c00330{bottom:593.093333pt;}
.y6_c00330{bottom:593.493333pt;}
.y2c_c00330{bottom:609.360000pt;}
.y2b_c00330{bottom:624.560000pt;}
.y5_c00330{bottom:624.693333pt;}
.y2a_c00330{bottom:641.360000pt;}
.y4_c00330{bottom:656.693333pt;}
.y29_c00330{bottom:657.893333pt;}
.y3_c00330{bottom:672.693333pt;}
.y28_c00330{bottom:674.426667pt;}
.y2_c00330{bottom:689.360000pt;}
.y1_c00330{bottom:707.493333pt;}
.h5_c00330{height:11.733399pt;}
.h6_c00330{height:38.937500pt;}
.h2_c00330{height:55.893333pt;}
.h4_c00330{height:56.906667pt;}
.h3_c00330{height:193.482667pt;}
.h1_c00330{height:733.333333pt;}
.h0_c00330{height:733.466667pt;}
.w1_c00330{width:93.222667pt;}
.w0_c00330{width:512.666667pt;}
.x0_c00330{left:0.000000pt;}
.x3_c00330{left:56.666667pt;}
.x2_c00330{left:57.600000pt;}
.x5_c00330{left:59.333333pt;}
.x6_c00330{left:72.800000pt;}
.x8_c00330{left:96.800000pt;}
.x7_c00330{left:110.400000pt;}
.x4_c00330{left:142.800000pt;}
.x1_c00330{left:182.666667pt;}
.x10_c00330{left:213.501546pt;}
.x9_c00330{left:251.066667pt;}
.xa_c00330{left:252.266667pt;}
.xb_c00330{left:254.000000pt;}
.xd_c00330{left:255.066667pt;}
.xc_c00330{left:256.133333pt;}
.xe_c00330{left:270.666667pt;}
.xf_c00330{left:411.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_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_ab1b3f11911d32ed753fa8c2.woff2')format("woff");}.ff1_c00331{font-family:ff1_c00331;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00331;src:url('chunks/assets/font_1d06c05f0e620a7ef9d03794.woff2')format("woff");}.ff2_c00331{font-family:ff2_c00331;line-height:1.575000;font-style:normal;font-weight:normal;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_e453731d64da35654a332009.woff2')format("woff");}.ff3_c00331{font-family:ff3_c00331;line-height:1.575000;font-style:normal;font-weight:normal;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_5175af9213f5a20b3a672b62.woff2')format("woff");}.ff4_c00331{font-family:ff4_c00331;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00331;src:url('chunks/assets/font_9c435bbca388e16dcfb74a1e.woff2')format("woff");}.ff5_c00331{font-family:ff5_c00331;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00331;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff6_c00331{font-family:ff6_c00331;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00331{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00331{vertical-align:0.000000px;}
.ls6_c00331{letter-spacing:0.000000px;}
.ls1_c00331{letter-spacing:1.200000px;}
.ls0_c00331{letter-spacing:3.000000px;}
.ls2_c00331{letter-spacing:3.600000px;}
.ls4_c00331{letter-spacing:6.000000px;}
.ls3_c00331{letter-spacing:12.000000px;}
.ls5_c00331{letter-spacing:14.940000px;}
.sc__c00331{text-shadow:none;}
.sc0_c00331{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00331{-webkit-text-stroke:0px transparent;}
.sc0_c00331{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00331{word-spacing:-30.957000px;}
.ws1_c00331{word-spacing:-18.060000px;}
.ws4_c00331{word-spacing:-16.491000px;}
.ws2_c00331{word-spacing:-14.160000px;}
.ws3_c00331{word-spacing:-13.080000px;}
.ws5_c00331{word-spacing:0.000000px;}
._19_c00331{margin-left:-21.600000px;}
._1f_c00331{margin-left:-13.608000px;}
._f_c00331{margin-left:-11.520000px;}
._24_c00331{margin-left:-10.020000px;}
._12_c00331{margin-left:-8.820000px;}
._13_c00331{margin-left:-7.500000px;}
._20_c00331{margin-left:-6.480000px;}
._c_c00331{margin-left:-5.460000px;}
._10_c00331{margin-left:-3.900000px;}
._6_c00331{margin-left:-2.520000px;}
._8_c00331{margin-left:-1.500000px;}
._3_c00331{width:1.740000px;}
._2_c00331{width:2.820000px;}
._5_c00331{width:4.200000px;}
._0_c00331{width:5.280000px;}
._b_c00331{width:6.357000px;}
._7_c00331{width:7.440000px;}
._a_c00331{width:8.772000px;}
._16_c00331{width:10.320000px;}
._1_c00331{width:11.400000px;}
._1c_c00331{width:12.531000px;}
._9_c00331{width:13.620000px;}
._e_c00331{width:15.528000px;}
._1d_c00331{width:16.608000px;}
._27_c00331{width:18.708000px;}
._11_c00331{width:20.571000px;}
._4_c00331{width:21.840000px;}
._d_c00331{width:22.968000px;}
._17_c00331{width:24.240000px;}
._1e_c00331{width:25.992000px;}
._1a_c00331{width:28.032000px;}
._18_c00331{width:30.003000px;}
._14_c00331{width:32.520000px;}
._15_c00331{width:34.080000px;}
._1b_c00331{width:38.400000px;}
._2b_c00331{width:39.960000px;}
._29_c00331{width:43.500000px;}
._28_c00331{width:45.960000px;}
._26_c00331{width:55.200000px;}
._25_c00331{width:57.900000px;}
._23_c00331{width:94.260000px;}
._22_c00331{width:131.223000px;}
._2a_c00331{width:148.269000px;}
._21_c00331{width:238.500000px;}
.fc2_c00331{color:transparent;}
.fc1_c00331{color:rgb(128,128,128);}
.fc0_c00331{color:rgb(0,0,0);}
.fs3_c00331{font-size:45.000000px;}
.fs2_c00331{font-size:48.000000px;}
.fs1_c00331{font-size:51.000000px;}
.fs0_c00331{font-size:60.000000px;}
.fs4_c00331{font-size:69.000000px;}
.y0_c00331{bottom:0.000000px;}
.y57_c00331{bottom:3.105000px;}
.y56_c00331{bottom:7.228357px;}
.y52_c00331{bottom:48.930000px;}
.y29_c00331{bottom:65.880000px;}
.y51_c00331{bottom:66.480000px;}
.y28_c00331{bottom:83.730000px;}
.y50_c00331{bottom:85.380000px;}
.y27_c00331{bottom:102.930000px;}
.y4f_c00331{bottom:103.230000px;}
.y26_c00331{bottom:120.930000px;}
.y4e_c00331{bottom:121.830000px;}
.y25_c00331{bottom:138.780000px;}
.y4d_c00331{bottom:139.080000px;}
.y24_c00331{bottom:156.930000px;}
.y4c_c00331{bottom:157.230000px;}
.y23_c00331{bottom:175.230000px;}
.y4b_c00331{bottom:176.280000px;}
.y22_c00331{bottom:193.530000px;}
.y4a_c00331{bottom:193.830000px;}
.y21_c00331{bottom:211.230000px;}
.y49_c00331{bottom:211.980000px;}
.y20_c00331{bottom:228.930000px;}
.y48_c00331{bottom:230.130000px;}
.y47_c00331{bottom:247.680000px;}
.y1f_c00331{bottom:247.830000px;}
.y1e_c00331{bottom:265.380000px;}
.y46_c00331{bottom:266.280000px;}
.y1d_c00331{bottom:283.230000px;}
.y45_c00331{bottom:284.130000px;}
.y1c_c00331{bottom:301.080000px;}
.y44_c00331{bottom:302.430000px;}
.y1b_c00331{bottom:320.280000px;}
.y1a_c00331{bottom:337.530000px;}
.y43_c00331{bottom:338.130000px;}
.y19_c00331{bottom:355.530000px;}
.y42_c00331{bottom:356.730000px;}
.y18_c00331{bottom:373.680000px;}
.y41_c00331{bottom:374.580000px;}
.y17_c00331{bottom:391.830000px;}
.y40_c00331{bottom:392.280000px;}
.y16_c00331{bottom:409.680000px;}
.y3f_c00331{bottom:410.730000px;}
.y15_c00331{bottom:428.280000px;}
.y3e_c00331{bottom:428.730000px;}
.y14_c00331{bottom:445.530000px;}
.y3d_c00331{bottom:447.180000px;}
.y13_c00331{bottom:463.830000px;}
.y3c_c00331{bottom:465.180000px;}
.y12_c00331{bottom:481.980000px;}
.y3b_c00331{bottom:482.730000px;}
.y11_c00331{bottom:500.280000px;}
.y3a_c00331{bottom:501.180000px;}
.y10_c00331{bottom:518.130000px;}
.y39_c00331{bottom:519.180000px;}
.yf_c00331{bottom:535.830000px;}
.y38_c00331{bottom:537.330000px;}
.ye_c00331{bottom:554.130000px;}
.y37_c00331{bottom:555.180000px;}
.yd_c00331{bottom:572.430000px;}
.y36_c00331{bottom:573.480000px;}
.yc_c00331{bottom:590.580000px;}
.y35_c00331{bottom:591.630000px;}
.yb_c00331{bottom:608.130000px;}
.y34_c00331{bottom:609.480000px;}
.ya_c00331{bottom:626.430000px;}
.y33_c00331{bottom:627.780000px;}
.y9_c00331{bottom:644.730000px;}
.y32_c00331{bottom:645.930000px;}
.y8_c00331{bottom:663.480000px;}
.y31_c00331{bottom:663.630000px;}
.y7_c00331{bottom:680.430000px;}
.y30_c00331{bottom:682.080000px;}
.y6_c00331{bottom:699.330000px;}
.y2f_c00331{bottom:699.930000px;}
.y55_c00331{bottom:716.580000px;}
.y5_c00331{bottom:716.880000px;}
.y2e_c00331{bottom:717.630000px;}
.y4_c00331{bottom:735.480000px;}
.y2d_c00331{bottom:735.780000px;}
.y54_c00331{bottom:736.080000px;}
.y53_c00331{bottom:752.730000px;}
.y3_c00331{bottom:753.030000px;}
.y2c_c00331{bottom:771.180000px;}
.y2_c00331{bottom:771.480000px;}
.y1_c00331{bottom:789.030000px;}
.y2b_c00331{bottom:789.180000px;}
.y2a_c00331{bottom:810.330000px;}
.h5_c00331{height:13.200074px;}
.h6_c00331{height:43.804688px;}
.h2_c00331{height:62.880000px;}
.h3_c00331{height:64.020000px;}
.h4_c00331{height:72.312000px;}
.h0_c00331{height:849.450000px;}
.h1_c00331{height:849.750000px;}
.w2_c00331{width:104.875500px;}
.w0_c00331{width:554.850000px;}
.w1_c00331{width:555.000000px;}
.x0_c00331{left:0.000000px;}
.x7_c00331{left:80.550000px;}
.x6_c00331{left:81.600000px;}
.x5_c00331{left:82.650000px;}
.x1_c00331{left:84.750000px;}
.x3_c00331{left:85.950000px;}
.x4_c00331{left:88.200000px;}
.x2_c00331{left:128.550000px;}
.x12_c00331{left:229.239258px;}
.x8_c00331{left:295.200000px;}
.xd_c00331{left:302.700000px;}
.xf_c00331{left:304.500000px;}
.xe_c00331{left:305.550000px;}
.x9_c00331{left:306.750000px;}
.xa_c00331{left:307.800000px;}
.xb_c00331{left:369.450000px;}
.xc_c00331{left:381.600000px;}
.x10_c00331{left:478.950000px;}
.x11_c00331{left:512.100000px;}
@media print{
.v0_c00331{vertical-align:0.000000pt;}
.ls6_c00331{letter-spacing:0.000000pt;}
.ls1_c00331{letter-spacing:1.066667pt;}
.ls0_c00331{letter-spacing:2.666667pt;}
.ls2_c00331{letter-spacing:3.200000pt;}
.ls4_c00331{letter-spacing:5.333333pt;}
.ls3_c00331{letter-spacing:10.666667pt;}
.ls5_c00331{letter-spacing:13.280000pt;}
.ws0_c00331{word-spacing:-27.517333pt;}
.ws1_c00331{word-spacing:-16.053333pt;}
.ws4_c00331{word-spacing:-14.658667pt;}
.ws2_c00331{word-spacing:-12.586667pt;}
.ws3_c00331{word-spacing:-11.626667pt;}
.ws5_c00331{word-spacing:0.000000pt;}
._19_c00331{margin-left:-19.200000pt;}
._1f_c00331{margin-left:-12.096000pt;}
._f_c00331{margin-left:-10.240000pt;}
._24_c00331{margin-left:-8.906667pt;}
._12_c00331{margin-left:-7.840000pt;}
._13_c00331{margin-left:-6.666667pt;}
._20_c00331{margin-left:-5.760000pt;}
._c_c00331{margin-left:-4.853333pt;}
._10_c00331{margin-left:-3.466667pt;}
._6_c00331{margin-left:-2.240000pt;}
._8_c00331{margin-left:-1.333333pt;}
._3_c00331{width:1.546667pt;}
._2_c00331{width:2.506667pt;}
._5_c00331{width:3.733333pt;}
._0_c00331{width:4.693333pt;}
._b_c00331{width:5.650667pt;}
._7_c00331{width:6.613333pt;}
._a_c00331{width:7.797333pt;}
._16_c00331{width:9.173333pt;}
._1_c00331{width:10.133333pt;}
._1c_c00331{width:11.138667pt;}
._9_c00331{width:12.106667pt;}
._e_c00331{width:13.802667pt;}
._1d_c00331{width:14.762667pt;}
._27_c00331{width:16.629333pt;}
._11_c00331{width:18.285333pt;}
._4_c00331{width:19.413333pt;}
._d_c00331{width:20.416000pt;}
._17_c00331{width:21.546667pt;}
._1e_c00331{width:23.104000pt;}
._1a_c00331{width:24.917333pt;}
._18_c00331{width:26.669333pt;}
._14_c00331{width:28.906667pt;}
._15_c00331{width:30.293333pt;}
._1b_c00331{width:34.133333pt;}
._2b_c00331{width:35.520000pt;}
._29_c00331{width:38.666667pt;}
._28_c00331{width:40.853333pt;}
._26_c00331{width:49.066667pt;}
._25_c00331{width:51.466667pt;}
._23_c00331{width:83.786667pt;}
._22_c00331{width:116.642667pt;}
._2a_c00331{width:131.794667pt;}
._21_c00331{width:212.000000pt;}
.fs3_c00331{font-size:40.000000pt;}
.fs2_c00331{font-size:42.666667pt;}
.fs1_c00331{font-size:45.333333pt;}
.fs0_c00331{font-size:53.333333pt;}
.fs4_c00331{font-size:61.333333pt;}
.y0_c00331{bottom:0.000000pt;}
.y57_c00331{bottom:2.760000pt;}
.y56_c00331{bottom:6.425206pt;}
.y52_c00331{bottom:43.493333pt;}
.y29_c00331{bottom:58.560000pt;}
.y51_c00331{bottom:59.093333pt;}
.y28_c00331{bottom:74.426667pt;}
.y50_c00331{bottom:75.893333pt;}
.y27_c00331{bottom:91.493333pt;}
.y4f_c00331{bottom:91.760000pt;}
.y26_c00331{bottom:107.493333pt;}
.y4e_c00331{bottom:108.293333pt;}
.y25_c00331{bottom:123.360000pt;}
.y4d_c00331{bottom:123.626667pt;}
.y24_c00331{bottom:139.493333pt;}
.y4c_c00331{bottom:139.760000pt;}
.y23_c00331{bottom:155.760000pt;}
.y4b_c00331{bottom:156.693333pt;}
.y22_c00331{bottom:172.026667pt;}
.y4a_c00331{bottom:172.293333pt;}
.y21_c00331{bottom:187.760000pt;}
.y49_c00331{bottom:188.426667pt;}
.y20_c00331{bottom:203.493333pt;}
.y48_c00331{bottom:204.560000pt;}
.y47_c00331{bottom:220.160000pt;}
.y1f_c00331{bottom:220.293333pt;}
.y1e_c00331{bottom:235.893333pt;}
.y46_c00331{bottom:236.693333pt;}
.y1d_c00331{bottom:251.760000pt;}
.y45_c00331{bottom:252.560000pt;}
.y1c_c00331{bottom:267.626667pt;}
.y44_c00331{bottom:268.826667pt;}
.y1b_c00331{bottom:284.693333pt;}
.y1a_c00331{bottom:300.026667pt;}
.y43_c00331{bottom:300.560000pt;}
.y19_c00331{bottom:316.026667pt;}
.y42_c00331{bottom:317.093333pt;}
.y18_c00331{bottom:332.160000pt;}
.y41_c00331{bottom:332.960000pt;}
.y17_c00331{bottom:348.293333pt;}
.y40_c00331{bottom:348.693333pt;}
.y16_c00331{bottom:364.160000pt;}
.y3f_c00331{bottom:365.093333pt;}
.y15_c00331{bottom:380.693333pt;}
.y3e_c00331{bottom:381.093333pt;}
.y14_c00331{bottom:396.026667pt;}
.y3d_c00331{bottom:397.493333pt;}
.y13_c00331{bottom:412.293333pt;}
.y3c_c00331{bottom:413.493333pt;}
.y12_c00331{bottom:428.426667pt;}
.y3b_c00331{bottom:429.093333pt;}
.y11_c00331{bottom:444.693333pt;}
.y3a_c00331{bottom:445.493333pt;}
.y10_c00331{bottom:460.560000pt;}
.y39_c00331{bottom:461.493333pt;}
.yf_c00331{bottom:476.293333pt;}
.y38_c00331{bottom:477.626667pt;}
.ye_c00331{bottom:492.560000pt;}
.y37_c00331{bottom:493.493333pt;}
.yd_c00331{bottom:508.826667pt;}
.y36_c00331{bottom:509.760000pt;}
.yc_c00331{bottom:524.960000pt;}
.y35_c00331{bottom:525.893333pt;}
.yb_c00331{bottom:540.560000pt;}
.y34_c00331{bottom:541.760000pt;}
.ya_c00331{bottom:556.826667pt;}
.y33_c00331{bottom:558.026667pt;}
.y9_c00331{bottom:573.093333pt;}
.y32_c00331{bottom:574.160000pt;}
.y8_c00331{bottom:589.760000pt;}
.y31_c00331{bottom:589.893333pt;}
.y7_c00331{bottom:604.826667pt;}
.y30_c00331{bottom:606.293333pt;}
.y6_c00331{bottom:621.626667pt;}
.y2f_c00331{bottom:622.160000pt;}
.y55_c00331{bottom:636.960000pt;}
.y5_c00331{bottom:637.226667pt;}
.y2e_c00331{bottom:637.893333pt;}
.y4_c00331{bottom:653.760000pt;}
.y2d_c00331{bottom:654.026667pt;}
.y54_c00331{bottom:654.293333pt;}
.y53_c00331{bottom:669.093333pt;}
.y3_c00331{bottom:669.360000pt;}
.y2c_c00331{bottom:685.493333pt;}
.y2_c00331{bottom:685.760000pt;}
.y1_c00331{bottom:701.360000pt;}
.y2b_c00331{bottom:701.493333pt;}
.y2a_c00331{bottom:720.293333pt;}
.h5_c00331{height:11.733399pt;}
.h6_c00331{height:38.937500pt;}
.h2_c00331{height:55.893333pt;}
.h3_c00331{height:56.906667pt;}
.h4_c00331{height:64.277333pt;}
.h0_c00331{height:755.066667pt;}
.h1_c00331{height:755.333333pt;}
.w2_c00331{width:93.222667pt;}
.w0_c00331{width:493.200000pt;}
.w1_c00331{width:493.333333pt;}
.x0_c00331{left:0.000000pt;}
.x7_c00331{left:71.600000pt;}
.x6_c00331{left:72.533333pt;}
.x5_c00331{left:73.466667pt;}
.x1_c00331{left:75.333333pt;}
.x3_c00331{left:76.400000pt;}
.x4_c00331{left:78.400000pt;}
.x2_c00331{left:114.266667pt;}
.x12_c00331{left:203.768229pt;}
.x8_c00331{left:262.400000pt;}
.xd_c00331{left:269.066667pt;}
.xf_c00331{left:270.666667pt;}
.xe_c00331{left:271.600000pt;}
.x9_c00331{left:272.666667pt;}
.xa_c00331{left:273.600000pt;}
.xb_c00331{left:328.400000pt;}
.xc_c00331{left:339.200000pt;}
.x10_c00331{left:425.733333pt;}
.x11_c00331{left:455.200000pt;}
}





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

.ir_c00332:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00332{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00332;src:url('chunks/assets/font_0f8acd1178bfeb299f8a55aa.woff2')format("woff");}.ff1_c00332{font-family:ff1_c00332;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00332;src:url('chunks/assets/font_14c3c352b394e8f1d15a588d.woff2')format("woff");}.ff2_c00332{font-family:ff2_c00332;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00332;src:url('chunks/assets/font_cd8ed2dcb8fa65614e2e6716.woff2')format("woff");}.ff3_c00332{font-family:ff3_c00332;line-height:1.575000;font-style:normal;font-weight:normal;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_c04434b699cfb2bb2f828f7b.woff2')format("woff");}.ff4_c00332{font-family:ff4_c00332;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00332;src:url('chunks/assets/font_ec5daff6b3b7f09192948732.woff2')format("woff");}.ff5_c00332{font-family:ff5_c00332;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00332;src:url('chunks/assets/font_369b7bbe9f967356dd672bf8.woff2')format("woff");}.ff6_c00332{font-family:ff6_c00332;line-height:1.012793;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00332;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff7_c00332{font-family:ff7_c00332;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00332{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00332{vertical-align:-58.200000px;}
.v2_c00332{vertical-align:-15.000000px;}
.v0_c00332{vertical-align:0.000000px;}
.ls9_c00332{letter-spacing:-15.000000px;}
.ls5_c00332{letter-spacing:0.000000px;}
.ls2_c00332{letter-spacing:3.000000px;}
.ls0_c00332{letter-spacing:4.800000px;}
.ls3_c00332{letter-spacing:6.000000px;}
.ls6_c00332{letter-spacing:9.000000px;}
.ls7_c00332{letter-spacing:12.000000px;}
.ls4_c00332{letter-spacing:13.200000px;}
.ls8_c00332{letter-spacing:15.000000px;}
.ls1_c00332{letter-spacing:64.740000px;}
.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;}
}
.ws3_c00332{word-spacing:-20.340000px;}
.ws0_c00332{word-spacing:-18.060000px;}
.ws1_c00332{word-spacing:-18.000000px;}
.ws2_c00332{word-spacing:-14.160000px;}
.ws4_c00332{word-spacing:0.000000px;}
._28_c00332{margin-left:-21.828000px;}
._1e_c00332{margin-left:-19.560000px;}
._16_c00332{margin-left:-16.194000px;}
._27_c00332{margin-left:-14.340000px;}
._17_c00332{margin-left:-13.140000px;}
._e_c00332{margin-left:-11.640000px;}
._26_c00332{margin-left:-10.500000px;}
._21_c00332{margin-left:-9.420000px;}
._18_c00332{margin-left:-7.260000px;}
._1b_c00332{margin-left:-5.340000px;}
._f_c00332{margin-left:-3.360000px;}
._13_c00332{margin-left:-2.220000px;}
._a_c00332{margin-left:-1.020000px;}
._7_c00332{width:1.320000px;}
._4_c00332{width:2.940000px;}
._c_c00332{width:4.260000px;}
._6_c00332{width:5.280000px;}
._d_c00332{width:7.020000px;}
._1c_c00332{width:8.700000px;}
._11_c00332{width:9.894000px;}
._1_c00332{width:11.280000px;}
._8_c00332{width:12.720000px;}
._0_c00332{width:14.040000px;}
._3_c00332{width:15.060000px;}
._5_c00332{width:16.140000px;}
._12_c00332{width:18.624000px;}
._9_c00332{width:20.520000px;}
._b_c00332{width:23.340000px;}
._10_c00332{width:25.020000px;}
._20_c00332{width:28.740000px;}
._1f_c00332{width:30.660000px;}
._19_c00332{width:32.340000px;}
._22_c00332{width:33.351000px;}
._15_c00332{width:35.100000px;}
._1a_c00332{width:38.280000px;}
._25_c00332{width:40.074000px;}
._14_c00332{width:41.100000px;}
._2_c00332{width:44.340000px;}
._24_c00332{width:46.005000px;}
._23_c00332{width:54.687000px;}
._2a_c00332{width:157.434000px;}
._1d_c00332{width:424.371000px;}
._29_c00332{width:558.036000px;}
.fc2_c00332{color:transparent;}
.fc1_c00332{color:rgb(128,128,128);}
.fc0_c00332{color:rgb(0,0,0);}
.fs5_c00332{font-size:48.000000px;}
.fs1_c00332{font-size:51.000000px;}
.fs0_c00332{font-size:60.000000px;}
.fs3_c00332{font-size:63.000000px;}
.fs4_c00332{font-size:102.000000px;}
.fs2_c00332{font-size:195.000000px;}
.y0_c00332{bottom:0.000000px;}
.y3a_c00332{bottom:3.105000px;}
.y39_c00332{bottom:7.228371px;}
.y38_c00332{bottom:47.265000px;}
.y37_c00332{bottom:71.265000px;}
.y36_c00332{bottom:88.215000px;}
.y35_c00332{bottom:107.115000px;}
.y34_c00332{bottom:123.165000px;}
.y33_c00332{bottom:140.415000px;}
.y32_c00332{bottom:161.415000px;}
.y31_c00332{bottom:178.965000px;}
.y30_c00332{bottom:197.565000px;}
.y2f_c00332{bottom:215.415000px;}
.y2e_c00332{bottom:252.465000px;}
.y2d_c00332{bottom:270.765000px;}
.y2c_c00332{bottom:306.915000px;}
.y2b_c00332{bottom:325.065000px;}
.y2a_c00332{bottom:341.565000px;}
.y29_c00332{bottom:388.215000px;}
.y14_c00332{bottom:468.465000px;}
.y28_c00332{bottom:469.215000px;}
.y13_c00332{bottom:486.015000px;}
.y27_c00332{bottom:486.765000px;}
.y12_c00332{bottom:504.015000px;}
.y26_c00332{bottom:504.615000px;}
.y25_c00332{bottom:520.515000px;}
.y11_c00332{bottom:522.165000px;}
.y10_c00332{bottom:539.715000px;}
.y24_c00332{bottom:540.015000px;}
.yf_c00332{bottom:557.565000px;}
.y23_c00332{bottom:558.315000px;}
.ye_c00332{bottom:575.415000px;}
.y22_c00332{bottom:576.765000px;}
.yd_c00332{bottom:593.415000px;}
.y21_c00332{bottom:594.015000px;}
.yc_c00332{bottom:610.965000px;}
.y20_c00332{bottom:612.615000px;}
.yb_c00332{bottom:628.815000px;}
.y1f_c00332{bottom:630.465000px;}
.ya_c00332{bottom:646.365000px;}
.y1e_c00332{bottom:648.465000px;}
.y9_c00332{bottom:664.215000px;}
.y1d_c00332{bottom:666.915000px;}
.y8_c00332{bottom:682.515000px;}
.y1c_c00332{bottom:684.765000px;}
.y7_c00332{bottom:700.665000px;}
.y1b_c00332{bottom:703.065000px;}
.y6_c00332{bottom:718.215000px;}
.y1a_c00332{bottom:720.615000px;}
.y5_c00332{bottom:736.215000px;}
.y19_c00332{bottom:738.915000px;}
.y4_c00332{bottom:753.615000px;}
.y18_c00332{bottom:757.065000px;}
.y3_c00332{bottom:771.615000px;}
.y17_c00332{bottom:774.915000px;}
.y2_c00332{bottom:789.465000px;}
.y16_c00332{bottom:793.215000px;}
.y1_c00332{bottom:807.765000px;}
.y15_c00332{bottom:810.465000px;}
.h8_c00332{height:13.200074px;}
.h9_c00332{height:43.804688px;}
.h4_c00332{height:50.053711px;}
.h2_c00332{height:62.880000px;}
.h3_c00332{height:64.020000px;}
.h6_c00332{height:66.024000px;}
.h7_c00332{height:87.865430px;}
.h5_c00332{height:149.865000px;}
.h1_c00332{height:831.000000px;}
.h0_c00332{height:831.075000px;}
.w1_c00332{width:104.875500px;}
.w0_c00332{width:580.500000px;}
.x0_c00332{left:0.000000px;}
.x1b_c00332{left:55.050000px;}
.x1a_c00332{left:56.250000px;}
.x15_c00332{left:60.150000px;}
.x2_c00332{left:61.350000px;}
.x3_c00332{left:63.150000px;}
.x4_c00332{left:64.500000px;}
.x5_c00332{left:65.700000px;}
.x16_c00332{left:75.900000px;}
.x13_c00332{left:114.750000px;}
.x12_c00332{left:138.750000px;}
.x19_c00332{left:168.750000px;}
.x18_c00332{left:174.150000px;}
.x17_c00332{left:179.250000px;}
.x1_c00332{left:192.600000px;}
.x14_c00332{left:196.800000px;}
.x1c_c00332{left:242.064240px;}
.x6_c00332{left:271.950000px;}
.xd_c00332{left:276.150000px;}
.xc_c00332{left:277.800000px;}
.xb_c00332{left:279.150000px;}
.xa_c00332{left:280.500000px;}
.x9_c00332{left:281.550000px;}
.x8_c00332{left:283.800000px;}
.x7_c00332{left:285.150000px;}
.xe_c00332{left:287.250000px;}
.xf_c00332{left:308.100000px;}
.x10_c00332{left:333.150000px;}
.x11_c00332{left:363.450000px;}
@media print{
.v1_c00332{vertical-align:-51.733333pt;}
.v2_c00332{vertical-align:-13.333333pt;}
.v0_c00332{vertical-align:0.000000pt;}
.ls9_c00332{letter-spacing:-13.333333pt;}
.ls5_c00332{letter-spacing:0.000000pt;}
.ls2_c00332{letter-spacing:2.666667pt;}
.ls0_c00332{letter-spacing:4.266667pt;}
.ls3_c00332{letter-spacing:5.333333pt;}
.ls6_c00332{letter-spacing:8.000000pt;}
.ls7_c00332{letter-spacing:10.666667pt;}
.ls4_c00332{letter-spacing:11.733333pt;}
.ls8_c00332{letter-spacing:13.333333pt;}
.ls1_c00332{letter-spacing:57.546667pt;}
.ws3_c00332{word-spacing:-18.080000pt;}
.ws0_c00332{word-spacing:-16.053333pt;}
.ws1_c00332{word-spacing:-16.000000pt;}
.ws2_c00332{word-spacing:-12.586667pt;}
.ws4_c00332{word-spacing:0.000000pt;}
._28_c00332{margin-left:-19.402667pt;}
._1e_c00332{margin-left:-17.386667pt;}
._16_c00332{margin-left:-14.394667pt;}
._27_c00332{margin-left:-12.746667pt;}
._17_c00332{margin-left:-11.680000pt;}
._e_c00332{margin-left:-10.346667pt;}
._26_c00332{margin-left:-9.333333pt;}
._21_c00332{margin-left:-8.373333pt;}
._18_c00332{margin-left:-6.453333pt;}
._1b_c00332{margin-left:-4.746667pt;}
._f_c00332{margin-left:-2.986667pt;}
._13_c00332{margin-left:-1.973333pt;}
._a_c00332{margin-left:-0.906667pt;}
._7_c00332{width:1.173333pt;}
._4_c00332{width:2.613333pt;}
._c_c00332{width:3.786667pt;}
._6_c00332{width:4.693333pt;}
._d_c00332{width:6.240000pt;}
._1c_c00332{width:7.733333pt;}
._11_c00332{width:8.794667pt;}
._1_c00332{width:10.026667pt;}
._8_c00332{width:11.306667pt;}
._0_c00332{width:12.480000pt;}
._3_c00332{width:13.386667pt;}
._5_c00332{width:14.346667pt;}
._12_c00332{width:16.554667pt;}
._9_c00332{width:18.240000pt;}
._b_c00332{width:20.746667pt;}
._10_c00332{width:22.240000pt;}
._20_c00332{width:25.546667pt;}
._1f_c00332{width:27.253333pt;}
._19_c00332{width:28.746667pt;}
._22_c00332{width:29.645333pt;}
._15_c00332{width:31.200000pt;}
._1a_c00332{width:34.026667pt;}
._25_c00332{width:35.621333pt;}
._14_c00332{width:36.533333pt;}
._2_c00332{width:39.413333pt;}
._24_c00332{width:40.893333pt;}
._23_c00332{width:48.610667pt;}
._2a_c00332{width:139.941333pt;}
._1d_c00332{width:377.218667pt;}
._29_c00332{width:496.032000pt;}
.fs5_c00332{font-size:42.666667pt;}
.fs1_c00332{font-size:45.333333pt;}
.fs0_c00332{font-size:53.333333pt;}
.fs3_c00332{font-size:56.000000pt;}
.fs4_c00332{font-size:90.666667pt;}
.fs2_c00332{font-size:173.333333pt;}
.y0_c00332{bottom:0.000000pt;}
.y3a_c00332{bottom:2.760000pt;}
.y39_c00332{bottom:6.425219pt;}
.y38_c00332{bottom:42.013333pt;}
.y37_c00332{bottom:63.346667pt;}
.y36_c00332{bottom:78.413333pt;}
.y35_c00332{bottom:95.213333pt;}
.y34_c00332{bottom:109.480000pt;}
.y33_c00332{bottom:124.813333pt;}
.y32_c00332{bottom:143.480000pt;}
.y31_c00332{bottom:159.080000pt;}
.y30_c00332{bottom:175.613333pt;}
.y2f_c00332{bottom:191.480000pt;}
.y2e_c00332{bottom:224.413333pt;}
.y2d_c00332{bottom:240.680000pt;}
.y2c_c00332{bottom:272.813333pt;}
.y2b_c00332{bottom:288.946667pt;}
.y2a_c00332{bottom:303.613333pt;}
.y29_c00332{bottom:345.080000pt;}
.y14_c00332{bottom:416.413333pt;}
.y28_c00332{bottom:417.080000pt;}
.y13_c00332{bottom:432.013333pt;}
.y27_c00332{bottom:432.680000pt;}
.y12_c00332{bottom:448.013333pt;}
.y26_c00332{bottom:448.546667pt;}
.y25_c00332{bottom:462.680000pt;}
.y11_c00332{bottom:464.146667pt;}
.y10_c00332{bottom:479.746667pt;}
.y24_c00332{bottom:480.013333pt;}
.yf_c00332{bottom:495.613333pt;}
.y23_c00332{bottom:496.280000pt;}
.ye_c00332{bottom:511.480000pt;}
.y22_c00332{bottom:512.680000pt;}
.yd_c00332{bottom:527.480000pt;}
.y21_c00332{bottom:528.013333pt;}
.yc_c00332{bottom:543.080000pt;}
.y20_c00332{bottom:544.546667pt;}
.yb_c00332{bottom:558.946667pt;}
.y1f_c00332{bottom:560.413333pt;}
.ya_c00332{bottom:574.546667pt;}
.y1e_c00332{bottom:576.413333pt;}
.y9_c00332{bottom:590.413333pt;}
.y1d_c00332{bottom:592.813333pt;}
.y8_c00332{bottom:606.680000pt;}
.y1c_c00332{bottom:608.680000pt;}
.y7_c00332{bottom:622.813333pt;}
.y1b_c00332{bottom:624.946667pt;}
.y6_c00332{bottom:638.413333pt;}
.y1a_c00332{bottom:640.546667pt;}
.y5_c00332{bottom:654.413333pt;}
.y19_c00332{bottom:656.813333pt;}
.y4_c00332{bottom:669.880000pt;}
.y18_c00332{bottom:672.946667pt;}
.y3_c00332{bottom:685.880000pt;}
.y17_c00332{bottom:688.813333pt;}
.y2_c00332{bottom:701.746667pt;}
.y16_c00332{bottom:705.080000pt;}
.y1_c00332{bottom:718.013333pt;}
.y15_c00332{bottom:720.413333pt;}
.h8_c00332{height:11.733399pt;}
.h9_c00332{height:38.937500pt;}
.h4_c00332{height:44.492188pt;}
.h2_c00332{height:55.893333pt;}
.h3_c00332{height:56.906667pt;}
.h6_c00332{height:58.688000pt;}
.h7_c00332{height:78.102604pt;}
.h5_c00332{height:133.213333pt;}
.h1_c00332{height:738.666667pt;}
.h0_c00332{height:738.733333pt;}
.w1_c00332{width:93.222667pt;}
.w0_c00332{width:516.000000pt;}
.x0_c00332{left:0.000000pt;}
.x1b_c00332{left:48.933333pt;}
.x1a_c00332{left:50.000000pt;}
.x15_c00332{left:53.466667pt;}
.x2_c00332{left:54.533333pt;}
.x3_c00332{left:56.133333pt;}
.x4_c00332{left:57.333333pt;}
.x5_c00332{left:58.400000pt;}
.x16_c00332{left:67.466667pt;}
.x13_c00332{left:102.000000pt;}
.x12_c00332{left:123.333333pt;}
.x19_c00332{left:150.000000pt;}
.x18_c00332{left:154.800000pt;}
.x17_c00332{left:159.333333pt;}
.x1_c00332{left:171.200000pt;}
.x14_c00332{left:174.933333pt;}
.x1c_c00332{left:215.168213pt;}
.x6_c00332{left:241.733333pt;}
.xd_c00332{left:245.466667pt;}
.xc_c00332{left:246.933333pt;}
.xb_c00332{left:248.133333pt;}
.xa_c00332{left:249.333333pt;}
.x9_c00332{left:250.266667pt;}
.x8_c00332{left:252.266667pt;}
.x7_c00332{left:253.466667pt;}
.xe_c00332{left:255.333333pt;}
.xf_c00332{left:273.866667pt;}
.x10_c00332{left:296.133333pt;}
.x11_c00332{left:323.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_db5673bbffddb1baa3a4e101.woff2')format("woff");}.ff1_c00333{font-family:ff1_c00333;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00333;src:url('chunks/assets/font_0a930269d96eec3a2f4ecba8.woff2')format("woff");}.ff2_c00333{font-family:ff2_c00333;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00333;src:url('chunks/assets/font_bc845eed19985d465a75f858.woff2')format("woff");}.ff3_c00333{font-family:ff3_c00333;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00333;src:url('chunks/assets/font_8d89a3b8844dde2af7dc8c0d.woff2')format("woff");}.ff4_c00333{font-family:ff4_c00333;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00333;src:url('chunks/assets/font_f1c4eb16a792696d85261f0f.woff2')format("woff");}.ff5_c00333{font-family:ff5_c00333;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00333;src:url('chunks/assets/font_e7caccb975b5bebeca5cf30d.woff2')format("woff");}.ff6_c00333{font-family:ff6_c00333;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00333;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff7_c00333{font-family:ff7_c00333;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00333{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00333{vertical-align:0.000000px;}
.ls3_c00333{letter-spacing:0.000000px;}
.ls1_c00333{letter-spacing:1.200000px;}
.ls2_c00333{letter-spacing:3.000000px;}
.ls0_c00333{letter-spacing:7.740000px;}
.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:-32.295000px;}
.ws2_c00333{word-spacing:-20.340000px;}
.ws4_c00333{word-spacing:-18.060000px;}
.ws3_c00333{word-spacing:-14.160000px;}
.ws1_c00333{word-spacing:-0.066000px;}
.ws5_c00333{word-spacing:0.000000px;}
._1b_c00333{margin-left:-18.285000px;}
._f_c00333{margin-left:-6.690000px;}
._10_c00333{margin-left:-4.980000px;}
._a_c00333{margin-left:-3.840000px;}
._b_c00333{margin-left:-2.040000px;}
._12_c00333{margin-left:-1.035000px;}
._e_c00333{width:1.080000px;}
._d_c00333{width:2.340000px;}
._0_c00333{width:4.005000px;}
._11_c00333{width:5.160000px;}
._8_c00333{width:6.240000px;}
._7_c00333{width:7.680000px;}
._9_c00333{width:9.060000px;}
._15_c00333{width:10.920000px;}
._5_c00333{width:13.080000px;}
._13_c00333{width:14.415000px;}
._14_c00333{width:16.980000px;}
._18_c00333{width:19.725000px;}
._1d_c00333{width:22.410000px;}
._2_c00333{width:24.960000px;}
._4_c00333{width:26.700000px;}
._c_c00333{width:27.780000px;}
._3_c00333{width:30.780000px;}
._6_c00333{width:38.160000px;}
._1c_c00333{width:39.300000px;}
._16_c00333{width:89.400000px;}
._1a_c00333{width:118.335000px;}
._19_c00333{width:142.965000px;}
._1_c00333{width:210.240000px;}
._17_c00333{width:222.120000px;}
._1e_c00333{width:1439.250000px;}
.fc2_c00333{color:transparent;}
.fc1_c00333{color:rgb(128,128,128);}
.fc0_c00333{color:rgb(0,0,0);}
.fs0_c00333{font-size:45.000000px;}
.fs3_c00333{font-size:48.000000px;}
.fs1_c00333{font-size:60.000000px;}
.fs2_c00333{font-size:66.000000px;}
.y0_c00333{bottom:0.000000px;}
.y2b_c00333{bottom:3.105000px;}
.y2a_c00333{bottom:7.228357px;}
.y29_c00333{bottom:45.630000px;}
.y28_c00333{bottom:102.930000px;}
.y27_c00333{bottom:120.180000px;}
.y26_c00333{bottom:138.030000px;}
.y25_c00333{bottom:156.630000px;}
.y24_c00333{bottom:174.930000px;}
.y23_c00333{bottom:193.080000px;}
.y22_c00333{bottom:210.930000px;}
.y21_c00333{bottom:229.530000px;}
.y20_c00333{bottom:247.680000px;}
.y1f_c00333{bottom:265.380000px;}
.y1e_c00333{bottom:283.230000px;}
.y1d_c00333{bottom:302.130000px;}
.y1c_c00333{bottom:319.680000px;}
.y1b_c00333{bottom:337.530000px;}
.y1a_c00333{bottom:354.330000px;}
.y19_c00333{bottom:374.580000px;}
.y18_c00333{bottom:392.130000px;}
.y17_c00333{bottom:409.830000px;}
.y16_c00333{bottom:428.580000px;}
.y15_c00333{bottom:446.580000px;}
.y14_c00333{bottom:464.430000px;}
.y13_c00333{bottom:482.730000px;}
.y12_c00333{bottom:500.880000px;}
.y11_c00333{bottom:519.030000px;}
.y10_c00333{bottom:536.730000px;}
.yf_c00333{bottom:555.180000px;}
.ye_c00333{bottom:573.180000px;}
.yd_c00333{bottom:591.630000px;}
.yc_c00333{bottom:609.480000px;}
.yb_c00333{bottom:627.480000px;}
.ya_c00333{bottom:645.930000px;}
.y9_c00333{bottom:663.930000px;}
.y8_c00333{bottom:682.080000px;}
.y7_c00333{bottom:700.380000px;}
.y6_c00333{bottom:717.630000px;}
.y5_c00333{bottom:735.930000px;}
.y4_c00333{bottom:754.380000px;}
.y3_c00333{bottom:772.830000px;}
.y2_c00333{bottom:790.830000px;}
.y1_c00333{bottom:811.680000px;}
.h5_c00333{height:13.200074px;}
.h6_c00333{height:43.804688px;}
.h2_c00333{height:62.880000px;}
.h4_c00333{height:64.020000px;}
.h3_c00333{height:70.422000px;}
.h0_c00333{height:849.450000px;}
.h1_c00333{height:849.750000px;}
.w2_c00333{width:104.875500px;}
.w0_c00333{width:554.850000px;}
.w1_c00333{width:555.000000px;}
.x0_c00333{left:0.000000px;}
.x4_c00333{left:31.500000px;}
.x5_c00333{left:33.450000px;}
.x3_c00333{left:93.150000px;}
.x6_c00333{left:94.200000px;}
.x2_c00333{left:95.550000px;}
.x1_c00333{left:97.200000px;}
.x7_c00333{left:98.250000px;}
.x8_c00333{left:99.450000px;}
.x9_c00333{left:100.800000px;}
.xc_c00333{left:105.600000px;}
.xa_c00333{left:138.300000px;}
.xb_c00333{left:212.850000px;}
.xd_c00333{left:229.239258px;}
@media print{
.v0_c00333{vertical-align:0.000000pt;}
.ls3_c00333{letter-spacing:0.000000pt;}
.ls1_c00333{letter-spacing:1.066667pt;}
.ls2_c00333{letter-spacing:2.666667pt;}
.ls0_c00333{letter-spacing:6.880000pt;}
.ws0_c00333{word-spacing:-28.706667pt;}
.ws2_c00333{word-spacing:-18.080000pt;}
.ws4_c00333{word-spacing:-16.053333pt;}
.ws3_c00333{word-spacing:-12.586667pt;}
.ws1_c00333{word-spacing:-0.058667pt;}
.ws5_c00333{word-spacing:0.000000pt;}
._1b_c00333{margin-left:-16.253333pt;}
._f_c00333{margin-left:-5.946667pt;}
._10_c00333{margin-left:-4.426667pt;}
._a_c00333{margin-left:-3.413333pt;}
._b_c00333{margin-left:-1.813333pt;}
._12_c00333{margin-left:-0.920000pt;}
._e_c00333{width:0.960000pt;}
._d_c00333{width:2.080000pt;}
._0_c00333{width:3.560000pt;}
._11_c00333{width:4.586667pt;}
._8_c00333{width:5.546667pt;}
._7_c00333{width:6.826667pt;}
._9_c00333{width:8.053333pt;}
._15_c00333{width:9.706667pt;}
._5_c00333{width:11.626667pt;}
._13_c00333{width:12.813333pt;}
._14_c00333{width:15.093333pt;}
._18_c00333{width:17.533333pt;}
._1d_c00333{width:19.920000pt;}
._2_c00333{width:22.186667pt;}
._4_c00333{width:23.733333pt;}
._c_c00333{width:24.693333pt;}
._3_c00333{width:27.360000pt;}
._6_c00333{width:33.920000pt;}
._1c_c00333{width:34.933333pt;}
._16_c00333{width:79.466667pt;}
._1a_c00333{width:105.186667pt;}
._19_c00333{width:127.080000pt;}
._1_c00333{width:186.880000pt;}
._17_c00333{width:197.440000pt;}
._1e_c00333{width:1279.333333pt;}
.fs0_c00333{font-size:40.000000pt;}
.fs3_c00333{font-size:42.666667pt;}
.fs1_c00333{font-size:53.333333pt;}
.fs2_c00333{font-size:58.666667pt;}
.y0_c00333{bottom:0.000000pt;}
.y2b_c00333{bottom:2.760000pt;}
.y2a_c00333{bottom:6.425206pt;}
.y29_c00333{bottom:40.560000pt;}
.y28_c00333{bottom:91.493333pt;}
.y27_c00333{bottom:106.826667pt;}
.y26_c00333{bottom:122.693333pt;}
.y25_c00333{bottom:139.226667pt;}
.y24_c00333{bottom:155.493333pt;}
.y23_c00333{bottom:171.626667pt;}
.y22_c00333{bottom:187.493333pt;}
.y21_c00333{bottom:204.026667pt;}
.y20_c00333{bottom:220.160000pt;}
.y1f_c00333{bottom:235.893333pt;}
.y1e_c00333{bottom:251.760000pt;}
.y1d_c00333{bottom:268.560000pt;}
.y1c_c00333{bottom:284.160000pt;}
.y1b_c00333{bottom:300.026667pt;}
.y1a_c00333{bottom:314.960000pt;}
.y19_c00333{bottom:332.960000pt;}
.y18_c00333{bottom:348.560000pt;}
.y17_c00333{bottom:364.293333pt;}
.y16_c00333{bottom:380.960000pt;}
.y15_c00333{bottom:396.960000pt;}
.y14_c00333{bottom:412.826667pt;}
.y13_c00333{bottom:429.093333pt;}
.y12_c00333{bottom:445.226667pt;}
.y11_c00333{bottom:461.360000pt;}
.y10_c00333{bottom:477.093333pt;}
.yf_c00333{bottom:493.493333pt;}
.ye_c00333{bottom:509.493333pt;}
.yd_c00333{bottom:525.893333pt;}
.yc_c00333{bottom:541.760000pt;}
.yb_c00333{bottom:557.760000pt;}
.ya_c00333{bottom:574.160000pt;}
.y9_c00333{bottom:590.160000pt;}
.y8_c00333{bottom:606.293333pt;}
.y7_c00333{bottom:622.560000pt;}
.y6_c00333{bottom:637.893333pt;}
.y5_c00333{bottom:654.160000pt;}
.y4_c00333{bottom:670.560000pt;}
.y3_c00333{bottom:686.960000pt;}
.y2_c00333{bottom:702.960000pt;}
.y1_c00333{bottom:721.493333pt;}
.h5_c00333{height:11.733399pt;}
.h6_c00333{height:38.937500pt;}
.h2_c00333{height:55.893333pt;}
.h4_c00333{height:56.906667pt;}
.h3_c00333{height:62.597333pt;}
.h0_c00333{height:755.066667pt;}
.h1_c00333{height:755.333333pt;}
.w2_c00333{width:93.222667pt;}
.w0_c00333{width:493.200000pt;}
.w1_c00333{width:493.333333pt;}
.x0_c00333{left:0.000000pt;}
.x4_c00333{left:28.000000pt;}
.x5_c00333{left:29.733333pt;}
.x3_c00333{left:82.800000pt;}
.x6_c00333{left:83.733333pt;}
.x2_c00333{left:84.933333pt;}
.x1_c00333{left:86.400000pt;}
.x7_c00333{left:87.333333pt;}
.x8_c00333{left:88.400000pt;}
.x9_c00333{left:89.600000pt;}
.xc_c00333{left:93.866667pt;}
.xa_c00333{left:122.933333pt;}
.xb_c00333{left:189.200000pt;}
.xd_c00333{left:203.768229pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ca02dcd498216b004d987bce.woff2')format("woff");}.ff1_c00334{font-family:ff1_c00334;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00334;src:url('chunks/assets/font_90d5a459d2b53e0c4b243799.woff2')format("woff");}.ff2_c00334{font-family:ff2_c00334;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00334;src:url('chunks/assets/font_e7b04ed37db8951d095d424f.woff2')format("woff");}.ff3_c00334{font-family:ff3_c00334;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00334;src:url('chunks/assets/font_07867585ce34909c4b58f138.woff2')format("woff");}.ff4_c00334{font-family:ff4_c00334;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00334;src:url('chunks/assets/font_3c4ee0174bd6471f6576fe2d.woff2')format("woff");}.ff5_c00334{font-family:ff5_c00334;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00334;src:url('chunks/assets/font_61810028eba8acfab3f5b981.woff2')format("woff");}.ff6_c00334{font-family:ff6_c00334;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00334;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff7_c00334{font-family:ff7_c00334;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00334{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00334{vertical-align:0.000000px;}
.ls6_c00334{letter-spacing:-3.000000px;}
.ls7_c00334{letter-spacing:0.000000px;}
.ls4_c00334{letter-spacing:0.405000px;}
.ls5_c00334{letter-spacing:3.000000px;}
.ls0_c00334{letter-spacing:3.672000px;}
.ls3_c00334{letter-spacing:7.800000px;}
.ls2_c00334{letter-spacing:23.205000px;}
.ls1_c00334{letter-spacing:76.560000px;}
.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;}
}
.ws3_c00334{word-spacing:-32.295000px;}
.ws0_c00334{word-spacing:-20.340000px;}
.ws4_c00334{word-spacing:-15.060000px;}
.ws2_c00334{word-spacing:-14.160000px;}
.ws5_c00334{word-spacing:0.000000px;}
.ws1_c00334{word-spacing:2.919000px;}
._26_c00334{margin-left:-15.855000px;}
._18_c00334{margin-left:-9.300000px;}
._4_c00334{margin-left:-8.160000px;}
._e_c00334{margin-left:-6.114000px;}
._24_c00334{margin-left:-4.860000px;}
._5_c00334{margin-left:-3.660000px;}
._6_c00334{margin-left:-1.863000px;}
._7_c00334{width:1.800000px;}
._0_c00334{width:3.120000px;}
._1_c00334{width:4.440000px;}
._b_c00334{width:6.180000px;}
._2_c00334{width:7.800000px;}
._3_c00334{width:8.940000px;}
._8_c00334{width:10.260000px;}
._a_c00334{width:12.060000px;}
._1a_c00334{width:13.083000px;}
._25_c00334{width:14.649000px;}
._d_c00334{width:15.780000px;}
._22_c00334{width:16.860000px;}
._15_c00334{width:18.180000px;}
._1c_c00334{width:20.283000px;}
._14_c00334{width:22.023000px;}
._9_c00334{width:23.640000px;}
._10_c00334{width:27.180000px;}
._19_c00334{width:29.025000px;}
._27_c00334{width:30.360000px;}
._17_c00334{width:32.703000px;}
._11_c00334{width:33.840000px;}
._c_c00334{width:41.880000px;}
._13_c00334{width:46.620000px;}
._12_c00334{width:49.881000px;}
._16_c00334{width:52.080000px;}
._21_c00334{width:54.609000px;}
._20_c00334{width:56.223000px;}
._1e_c00334{width:60.009000px;}
._1b_c00334{width:62.640000px;}
._1f_c00334{width:63.660000px;}
._1d_c00334{width:64.740000px;}
._f_c00334{width:68.520000px;}
._28_c00334{width:103.872000px;}
._23_c00334{width:183.303000px;}
.fc2_c00334{color:transparent;}
.fc1_c00334{color:rgb(128,128,128);}
.fc0_c00334{color:rgb(0,0,0);}
.fs3_c00334{font-size:45.000000px;}
.fs1_c00334{font-size:48.000000px;}
.fs0_c00334{font-size:60.000000px;}
.fs2_c00334{font-size:81.000000px;}
.y0_c00334{bottom:0.000000px;}
.y3d_c00334{bottom:3.105000px;}
.y3c_c00334{bottom:7.228357px;}
.y3b_c00334{bottom:48.630000px;}
.y2a_c00334{bottom:51.030000px;}
.y3a_c00334{bottom:67.230000px;}
.y29_c00334{bottom:71.280000px;}
.y39_c00334{bottom:86.130000px;}
.y28_c00334{bottom:88.530000px;}
.y38_c00334{bottom:103.680000px;}
.y27_c00334{bottom:105.930000px;}
.y37_c00334{bottom:121.830000px;}
.y26_c00334{bottom:123.630000px;}
.y36_c00334{bottom:139.830000px;}
.y25_c00334{bottom:142.080000px;}
.y35_c00334{bottom:157.980000px;}
.y24_c00334{bottom:159.930000px;}
.y34_c00334{bottom:176.280000px;}
.y23_c00334{bottom:177.630000px;}
.y33_c00334{bottom:193.830000px;}
.y22_c00334{bottom:195.030000px;}
.y32_c00334{bottom:211.680000px;}
.y21_c00334{bottom:214.080000px;}
.y31_c00334{bottom:230.280000px;}
.y20_c00334{bottom:232.530000px;}
.y30_c00334{bottom:249.030000px;}
.y1f_c00334{bottom:250.380000px;}
.y2f_c00334{bottom:266.280000px;}
.y1e_c00334{bottom:268.080000px;}
.y2e_c00334{bottom:285.180000px;}
.y1d_c00334{bottom:285.930000px;}
.y2d_c00334{bottom:303.030000px;}
.y1c_c00334{bottom:303.780000px;}
.y2c_c00334{bottom:321.330000px;}
.y1b_c00334{bottom:321.930000px;}
.y1a_c00334{bottom:339.480000px;}
.y19_c00334{bottom:357.480000px;}
.y2b_c00334{bottom:375.930000px;}
.y18_c00334{bottom:376.080000px;}
.y17_c00334{bottom:393.480000px;}
.y16_c00334{bottom:412.080000px;}
.y15_c00334{bottom:430.080000px;}
.y3_c00334{bottom:446.580000px;}
.y14_c00334{bottom:447.930000px;}
.y2_c00334{bottom:464.430000px;}
.y13_c00334{bottom:466.380000px;}
.y1_c00334{bottom:482.280000px;}
.y12_c00334{bottom:484.080000px;}
.y11_c00334{bottom:501.480000px;}
.y10_c00334{bottom:520.380000px;}
.yf_c00334{bottom:537.630000px;}
.ye_c00334{bottom:556.230000px;}
.yd_c00334{bottom:574.530000px;}
.yc_c00334{bottom:592.680000px;}
.yb_c00334{bottom:610.530000px;}
.ya_c00334{bottom:628.080000px;}
.y9_c00334{bottom:645.330000px;}
.y8_c00334{bottom:663.630000px;}
.y7_c00334{bottom:681.480000px;}
.y6_c00334{bottom:700.380000px;}
.y5_c00334{bottom:717.930000px;}
.y4_c00334{bottom:752.730000px;}
.h5_c00334{height:13.200074px;}
.h6_c00334{height:43.804688px;}
.h2_c00334{height:62.880000px;}
.h3_c00334{height:64.020000px;}
.h4_c00334{height:86.427000px;}
.h1_c00334{height:825.000000px;}
.h0_c00334{height:825.150000px;}
.w1_c00334{width:104.875500px;}
.w0_c00334{width:576.750000px;}
.x0_c00334{left:0.000000px;}
.x1_c00334{left:13.500000px;}
.x8_c00334{left:14.550000px;}
.x7_c00334{left:70.500000px;}
.x6_c00334{left:73.200000px;}
.x5_c00334{left:74.250000px;}
.x3_c00334{left:75.900000px;}
.x4_c00334{left:112.050000px;}
.x9_c00334{left:132.000000px;}
.x2_c00334{left:133.050000px;}
.xd_c00334{left:240.189240px;}
.xa_c00334{left:289.500000px;}
.xb_c00334{left:290.550000px;}
.xc_c00334{left:291.900000px;}
@media print{
.v0_c00334{vertical-align:0.000000pt;}
.ls6_c00334{letter-spacing:-2.666667pt;}
.ls7_c00334{letter-spacing:0.000000pt;}
.ls4_c00334{letter-spacing:0.360000pt;}
.ls5_c00334{letter-spacing:2.666667pt;}
.ls0_c00334{letter-spacing:3.264000pt;}
.ls3_c00334{letter-spacing:6.933333pt;}
.ls2_c00334{letter-spacing:20.626667pt;}
.ls1_c00334{letter-spacing:68.053333pt;}
.ws3_c00334{word-spacing:-28.706667pt;}
.ws0_c00334{word-spacing:-18.080000pt;}
.ws4_c00334{word-spacing:-13.386667pt;}
.ws2_c00334{word-spacing:-12.586667pt;}
.ws5_c00334{word-spacing:0.000000pt;}
.ws1_c00334{word-spacing:2.594667pt;}
._26_c00334{margin-left:-14.093333pt;}
._18_c00334{margin-left:-8.266667pt;}
._4_c00334{margin-left:-7.253333pt;}
._e_c00334{margin-left:-5.434667pt;}
._24_c00334{margin-left:-4.320000pt;}
._5_c00334{margin-left:-3.253333pt;}
._6_c00334{margin-left:-1.656000pt;}
._7_c00334{width:1.600000pt;}
._0_c00334{width:2.773333pt;}
._1_c00334{width:3.946667pt;}
._b_c00334{width:5.493333pt;}
._2_c00334{width:6.933333pt;}
._3_c00334{width:7.946667pt;}
._8_c00334{width:9.120000pt;}
._a_c00334{width:10.720000pt;}
._1a_c00334{width:11.629333pt;}
._25_c00334{width:13.021333pt;}
._d_c00334{width:14.026667pt;}
._22_c00334{width:14.986667pt;}
._15_c00334{width:16.160000pt;}
._1c_c00334{width:18.029333pt;}
._14_c00334{width:19.576000pt;}
._9_c00334{width:21.013333pt;}
._10_c00334{width:24.160000pt;}
._19_c00334{width:25.800000pt;}
._27_c00334{width:26.986667pt;}
._17_c00334{width:29.069333pt;}
._11_c00334{width:30.080000pt;}
._c_c00334{width:37.226667pt;}
._13_c00334{width:41.440000pt;}
._12_c00334{width:44.338667pt;}
._16_c00334{width:46.293333pt;}
._21_c00334{width:48.541333pt;}
._20_c00334{width:49.976000pt;}
._1e_c00334{width:53.341333pt;}
._1b_c00334{width:55.680000pt;}
._1f_c00334{width:56.586667pt;}
._1d_c00334{width:57.546667pt;}
._f_c00334{width:60.906667pt;}
._28_c00334{width:92.330667pt;}
._23_c00334{width:162.936000pt;}
.fs3_c00334{font-size:40.000000pt;}
.fs1_c00334{font-size:42.666667pt;}
.fs0_c00334{font-size:53.333333pt;}
.fs2_c00334{font-size:72.000000pt;}
.y0_c00334{bottom:0.000000pt;}
.y3d_c00334{bottom:2.760000pt;}
.y3c_c00334{bottom:6.425206pt;}
.y3b_c00334{bottom:43.226667pt;}
.y2a_c00334{bottom:45.360000pt;}
.y3a_c00334{bottom:59.760000pt;}
.y29_c00334{bottom:63.360000pt;}
.y39_c00334{bottom:76.560000pt;}
.y28_c00334{bottom:78.693333pt;}
.y38_c00334{bottom:92.160000pt;}
.y27_c00334{bottom:94.160000pt;}
.y37_c00334{bottom:108.293333pt;}
.y26_c00334{bottom:109.893333pt;}
.y36_c00334{bottom:124.293333pt;}
.y25_c00334{bottom:126.293333pt;}
.y35_c00334{bottom:140.426667pt;}
.y24_c00334{bottom:142.160000pt;}
.y34_c00334{bottom:156.693333pt;}
.y23_c00334{bottom:157.893333pt;}
.y33_c00334{bottom:172.293333pt;}
.y22_c00334{bottom:173.360000pt;}
.y32_c00334{bottom:188.160000pt;}
.y21_c00334{bottom:190.293333pt;}
.y31_c00334{bottom:204.693333pt;}
.y20_c00334{bottom:206.693333pt;}
.y30_c00334{bottom:221.360000pt;}
.y1f_c00334{bottom:222.560000pt;}
.y2f_c00334{bottom:236.693333pt;}
.y1e_c00334{bottom:238.293333pt;}
.y2e_c00334{bottom:253.493333pt;}
.y1d_c00334{bottom:254.160000pt;}
.y2d_c00334{bottom:269.360000pt;}
.y1c_c00334{bottom:270.026667pt;}
.y2c_c00334{bottom:285.626667pt;}
.y1b_c00334{bottom:286.160000pt;}
.y1a_c00334{bottom:301.760000pt;}
.y19_c00334{bottom:317.760000pt;}
.y2b_c00334{bottom:334.160000pt;}
.y18_c00334{bottom:334.293333pt;}
.y17_c00334{bottom:349.760000pt;}
.y16_c00334{bottom:366.293333pt;}
.y15_c00334{bottom:382.293333pt;}
.y3_c00334{bottom:396.960000pt;}
.y14_c00334{bottom:398.160000pt;}
.y2_c00334{bottom:412.826667pt;}
.y13_c00334{bottom:414.560000pt;}
.y1_c00334{bottom:428.693333pt;}
.y12_c00334{bottom:430.293333pt;}
.y11_c00334{bottom:445.760000pt;}
.y10_c00334{bottom:462.560000pt;}
.yf_c00334{bottom:477.893333pt;}
.ye_c00334{bottom:494.426667pt;}
.yd_c00334{bottom:510.693333pt;}
.yc_c00334{bottom:526.826667pt;}
.yb_c00334{bottom:542.693333pt;}
.ya_c00334{bottom:558.293333pt;}
.y9_c00334{bottom:573.626667pt;}
.y8_c00334{bottom:589.893333pt;}
.y7_c00334{bottom:605.760000pt;}
.y6_c00334{bottom:622.560000pt;}
.y5_c00334{bottom:638.160000pt;}
.y4_c00334{bottom:669.093333pt;}
.h5_c00334{height:11.733399pt;}
.h6_c00334{height:38.937500pt;}
.h2_c00334{height:55.893333pt;}
.h3_c00334{height:56.906667pt;}
.h4_c00334{height:76.824000pt;}
.h1_c00334{height:733.333333pt;}
.h0_c00334{height:733.466667pt;}
.w1_c00334{width:93.222667pt;}
.w0_c00334{width:512.666667pt;}
.x0_c00334{left:0.000000pt;}
.x1_c00334{left:12.000000pt;}
.x8_c00334{left:12.933333pt;}
.x7_c00334{left:62.666667pt;}
.x6_c00334{left:65.066667pt;}
.x5_c00334{left:66.000000pt;}
.x3_c00334{left:67.466667pt;}
.x4_c00334{left:99.600000pt;}
.x9_c00334{left:117.333333pt;}
.x2_c00334{left:118.266667pt;}
.xd_c00334{left:213.501546pt;}
.xa_c00334{left:257.333333pt;}
.xb_c00334{left:258.266667pt;}
.xc_c00334{left:259.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_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_55eb9db8683fc23c726f566e.woff2')format("woff");}.ff1_c00335{font-family:ff1_c00335;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00335;src:url('chunks/assets/font_4d79853dfdb6652070f5aef9.woff2')format("woff");}.ff2_c00335{font-family:ff2_c00335;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00335;src:url('chunks/assets/font_1924f6bfc1079e23c7239222.woff2')format("woff");}.ff3_c00335{font-family:ff3_c00335;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00335;src:url('chunks/assets/font_64acafdade42ca71b9b8fbc0.woff2')format("woff");}.ff4_c00335{font-family:ff4_c00335;line-height:1.575000;font-style:normal;font-weight:normal;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_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff5_c00335{font-family:ff5_c00335;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00335{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00335{vertical-align:0.000000px;}
.ls6_c00335{letter-spacing:0.000000px;}
.ls2_c00335{letter-spacing:0.600000px;}
.ls3_c00335{letter-spacing:2.400000px;}
.ls1_c00335{letter-spacing:3.000000px;}
.ls5_c00335{letter-spacing:7.200000px;}
.ls0_c00335{letter-spacing:13.005000px;}
.ls4_c00335{letter-spacing:13.200000px;}
.sc__c00335{text-shadow:none;}
.sc0_c00335{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00335{-webkit-text-stroke:0px transparent;}
.sc0_c00335{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00335{word-spacing:-20.340000px;}
.ws2_c00335{word-spacing:-18.060000px;}
.ws0_c00335{word-spacing:-14.160000px;}
.ws3_c00335{word-spacing:-1.920000px;}
.ws4_c00335{word-spacing:0.000000px;}
._1d_c00335{margin-left:-19.860000px;}
._21_c00335{margin-left:-18.780000px;}
._1e_c00335{margin-left:-12.960000px;}
._12_c00335{margin-left:-10.380000px;}
._d_c00335{margin-left:-9.120000px;}
._c_c00335{margin-left:-8.040000px;}
._b_c00335{margin-left:-6.600000px;}
._10_c00335{margin-left:-4.740000px;}
._0_c00335{margin-left:-3.540000px;}
._1_c00335{margin-left:-2.160000px;}
._1a_c00335{margin-left:-1.020000px;}
._e_c00335{width:1.980000px;}
._f_c00335{width:3.480000px;}
._9_c00335{width:4.620000px;}
._15_c00335{width:6.540000px;}
._14_c00335{width:7.800000px;}
._11_c00335{width:9.780000px;}
._13_c00335{width:11.820000px;}
._16_c00335{width:13.320000px;}
._3_c00335{width:14.700000px;}
._4_c00335{width:16.740000px;}
._20_c00335{width:18.540000px;}
._24_c00335{width:20.040000px;}
._7_c00335{width:21.360000px;}
._6_c00335{width:22.860000px;}
._22_c00335{width:24.240000px;}
._5_c00335{width:25.380000px;}
._1b_c00335{width:26.820000px;}
._18_c00335{width:28.320000px;}
._17_c00335{width:30.900000px;}
._8_c00335{width:34.740000px;}
._23_c00335{width:37.800000px;}
._26_c00335{width:87.480000px;}
._25_c00335{width:102.600000px;}
._1f_c00335{width:105.120000px;}
._a_c00335{width:113.640000px;}
._1c_c00335{width:134.640000px;}
._2_c00335{width:147.240000px;}
._19_c00335{width:149.100000px;}
.fc2_c00335{color:transparent;}
.fc1_c00335{color:rgb(128,128,128);}
.fc0_c00335{color:rgb(0,0,0);}
.fs0_c00335{font-size:45.000000px;}
.fs3_c00335{font-size:48.000000px;}
.fs2_c00335{font-size:51.000000px;}
.fs1_c00335{font-size:60.000000px;}
.y0_c00335{bottom:0.000000px;}
.y57_c00335{bottom:3.105000px;}
.y56_c00335{bottom:7.228371px;}
.y55_c00335{bottom:37.215000px;}
.y54_c00335{bottom:54.015000px;}
.y2a_c00335{bottom:55.815000px;}
.y53_c00335{bottom:72.915000px;}
.y29_c00335{bottom:73.215000px;}
.y52_c00335{bottom:90.915000px;}
.y28_c00335{bottom:91.215000px;}
.y51_c00335{bottom:109.065000px;}
.y27_c00335{bottom:109.665000px;}
.y50_c00335{bottom:127.215000px;}
.y26_c00335{bottom:127.965000px;}
.y4f_c00335{bottom:144.915000px;}
.y25_c00335{bottom:145.815000px;}
.y4e_c00335{bottom:163.665000px;}
.y24_c00335{bottom:164.715000px;}
.y4d_c00335{bottom:181.215000px;}
.y23_c00335{bottom:182.265000px;}
.y4c_c00335{bottom:199.815000px;}
.y22_c00335{bottom:200.265000px;}
.y4b_c00335{bottom:217.665000px;}
.y21_c00335{bottom:218.715000px;}
.y4a_c00335{bottom:235.665000px;}
.y20_c00335{bottom:236.565000px;}
.y49_c00335{bottom:253.515000px;}
.y1f_c00335{bottom:254.865000px;}
.y48_c00335{bottom:271.815000px;}
.y1e_c00335{bottom:272.715000px;}
.y47_c00335{bottom:289.965000px;}
.y1d_c00335{bottom:291.015000px;}
.y46_c00335{bottom:308.565000px;}
.y1c_c00335{bottom:308.865000px;}
.y45_c00335{bottom:327.015000px;}
.y1b_c00335{bottom:327.165000px;}
.y44_c00335{bottom:344.565000px;}
.y1a_c00335{bottom:345.915000px;}
.y43_c00335{bottom:362.865000px;}
.y19_c00335{bottom:364.215000px;}
.y42_c00335{bottom:381.015000px;}
.y18_c00335{bottom:382.365000px;}
.y41_c00335{bottom:398.715000px;}
.y17_c00335{bottom:400.065000px;}
.y40_c00335{bottom:417.165000px;}
.y16_c00335{bottom:418.215000px;}
.y3f_c00335{bottom:435.465000px;}
.y15_c00335{bottom:436.515000px;}
.y3e_c00335{bottom:453.915000px;}
.y14_c00335{bottom:454.965000px;}
.y3d_c00335{bottom:471.465000px;}
.y13_c00335{bottom:472.215000px;}
.y12_c00335{bottom:490.065000px;}
.y3c_c00335{bottom:490.365000px;}
.y3b_c00335{bottom:508.065000px;}
.y11_c00335{bottom:509.265000px;}
.y3a_c00335{bottom:526.215000px;}
.y10_c00335{bottom:527.265000px;}
.y39_c00335{bottom:544.365000px;}
.yf_c00335{bottom:544.815000px;}
.y38_c00335{bottom:562.065000px;}
.ye_c00335{bottom:563.715000px;}
.y37_c00335{bottom:580.515000px;}
.yd_c00335{bottom:581.265000px;}
.y36_c00335{bottom:598.515000px;}
.yc_c00335{bottom:599.715000px;}
.y35_c00335{bottom:616.965000px;}
.yb_c00335{bottom:618.015000px;}
.y34_c00335{bottom:634.815000px;}
.ya_c00335{bottom:635.865000px;}
.y33_c00335{bottom:652.515000px;}
.y9_c00335{bottom:653.865000px;}
.y32_c00335{bottom:670.965000px;}
.y8_c00335{bottom:672.015000px;}
.y31_c00335{bottom:689.265000px;}
.y7_c00335{bottom:689.565000px;}
.y30_c00335{bottom:706.815000px;}
.y6_c00335{bottom:708.465000px;}
.y2f_c00335{bottom:724.965000px;}
.y5_c00335{bottom:726.615000px;}
.y2e_c00335{bottom:742.965000px;}
.y4_c00335{bottom:744.615000px;}
.y2d_c00335{bottom:760.365000px;}
.y3_c00335{bottom:762.765000px;}
.y2c_c00335{bottom:778.065000px;}
.y2_c00335{bottom:781.065000px;}
.y2b_c00335{bottom:800.265000px;}
.y1_c00335{bottom:801.015000px;}
.h5_c00335{height:13.200074px;}
.h6_c00335{height:43.804688px;}
.h4_c00335{height:53.448000px;}
.h2_c00335{height:62.880000px;}
.h3_c00335{height:64.020000px;}
.h0_c00335{height:839.175000px;}
.h1_c00335{height:839.250000px;}
.w2_c00335{width:104.875500px;}
.w1_c00335{width:547.500000px;}
.w0_c00335{width:547.575000px;}
.x0_c00335{left:0.000000px;}
.x2_c00335{left:69.300000px;}
.x3_c00335{left:70.500000px;}
.x1_c00335{left:72.000000px;}
.x4_c00335{left:73.200000px;}
.x5_c00335{left:74.550000px;}
.x6_c00335{left:75.600000px;}
.x7_c00335{left:76.650000px;}
.x8_c00335{left:77.700000px;}
.x9_c00335{left:79.950000px;}
.x10_c00335{left:225.601730px;}
.xa_c00335{left:281.850000px;}
.xb_c00335{left:292.050000px;}
.xc_c00335{left:293.250000px;}
.xd_c00335{left:295.050000px;}
.xe_c00335{left:296.400000px;}
.xf_c00335{left:464.850000px;}
@media print{
.v0_c00335{vertical-align:0.000000pt;}
.ls6_c00335{letter-spacing:0.000000pt;}
.ls2_c00335{letter-spacing:0.533333pt;}
.ls3_c00335{letter-spacing:2.133333pt;}
.ls1_c00335{letter-spacing:2.666667pt;}
.ls5_c00335{letter-spacing:6.400000pt;}
.ls0_c00335{letter-spacing:11.560000pt;}
.ls4_c00335{letter-spacing:11.733333pt;}
.ws1_c00335{word-spacing:-18.080000pt;}
.ws2_c00335{word-spacing:-16.053333pt;}
.ws0_c00335{word-spacing:-12.586667pt;}
.ws3_c00335{word-spacing:-1.706667pt;}
.ws4_c00335{word-spacing:0.000000pt;}
._1d_c00335{margin-left:-17.653333pt;}
._21_c00335{margin-left:-16.693333pt;}
._1e_c00335{margin-left:-11.520000pt;}
._12_c00335{margin-left:-9.226667pt;}
._d_c00335{margin-left:-8.106667pt;}
._c_c00335{margin-left:-7.146667pt;}
._b_c00335{margin-left:-5.866667pt;}
._10_c00335{margin-left:-4.213333pt;}
._0_c00335{margin-left:-3.146667pt;}
._1_c00335{margin-left:-1.920000pt;}
._1a_c00335{margin-left:-0.906667pt;}
._e_c00335{width:1.760000pt;}
._f_c00335{width:3.093333pt;}
._9_c00335{width:4.106667pt;}
._15_c00335{width:5.813333pt;}
._14_c00335{width:6.933333pt;}
._11_c00335{width:8.693333pt;}
._13_c00335{width:10.506667pt;}
._16_c00335{width:11.840000pt;}
._3_c00335{width:13.066667pt;}
._4_c00335{width:14.880000pt;}
._20_c00335{width:16.480000pt;}
._24_c00335{width:17.813333pt;}
._7_c00335{width:18.986667pt;}
._6_c00335{width:20.320000pt;}
._22_c00335{width:21.546667pt;}
._5_c00335{width:22.560000pt;}
._1b_c00335{width:23.840000pt;}
._18_c00335{width:25.173333pt;}
._17_c00335{width:27.466667pt;}
._8_c00335{width:30.880000pt;}
._23_c00335{width:33.600000pt;}
._26_c00335{width:77.760000pt;}
._25_c00335{width:91.200000pt;}
._1f_c00335{width:93.440000pt;}
._a_c00335{width:101.013333pt;}
._1c_c00335{width:119.680000pt;}
._2_c00335{width:130.880000pt;}
._19_c00335{width:132.533333pt;}
.fs0_c00335{font-size:40.000000pt;}
.fs3_c00335{font-size:42.666667pt;}
.fs2_c00335{font-size:45.333333pt;}
.fs1_c00335{font-size:53.333333pt;}
.y0_c00335{bottom:0.000000pt;}
.y57_c00335{bottom:2.760000pt;}
.y56_c00335{bottom:6.425219pt;}
.y55_c00335{bottom:33.080000pt;}
.y54_c00335{bottom:48.013333pt;}
.y2a_c00335{bottom:49.613333pt;}
.y53_c00335{bottom:64.813333pt;}
.y29_c00335{bottom:65.080000pt;}
.y52_c00335{bottom:80.813333pt;}
.y28_c00335{bottom:81.080000pt;}
.y51_c00335{bottom:96.946667pt;}
.y27_c00335{bottom:97.480000pt;}
.y50_c00335{bottom:113.080000pt;}
.y26_c00335{bottom:113.746667pt;}
.y4f_c00335{bottom:128.813333pt;}
.y25_c00335{bottom:129.613333pt;}
.y4e_c00335{bottom:145.480000pt;}
.y24_c00335{bottom:146.413333pt;}
.y4d_c00335{bottom:161.080000pt;}
.y23_c00335{bottom:162.013333pt;}
.y4c_c00335{bottom:177.613333pt;}
.y22_c00335{bottom:178.013333pt;}
.y4b_c00335{bottom:193.480000pt;}
.y21_c00335{bottom:194.413333pt;}
.y4a_c00335{bottom:209.480000pt;}
.y20_c00335{bottom:210.280000pt;}
.y49_c00335{bottom:225.346667pt;}
.y1f_c00335{bottom:226.546667pt;}
.y48_c00335{bottom:241.613333pt;}
.y1e_c00335{bottom:242.413333pt;}
.y47_c00335{bottom:257.746667pt;}
.y1d_c00335{bottom:258.680000pt;}
.y46_c00335{bottom:274.280000pt;}
.y1c_c00335{bottom:274.546667pt;}
.y45_c00335{bottom:290.680000pt;}
.y1b_c00335{bottom:290.813333pt;}
.y44_c00335{bottom:306.280000pt;}
.y1a_c00335{bottom:307.480000pt;}
.y43_c00335{bottom:322.546667pt;}
.y19_c00335{bottom:323.746667pt;}
.y42_c00335{bottom:338.680000pt;}
.y18_c00335{bottom:339.880000pt;}
.y41_c00335{bottom:354.413333pt;}
.y17_c00335{bottom:355.613333pt;}
.y40_c00335{bottom:370.813333pt;}
.y16_c00335{bottom:371.746667pt;}
.y3f_c00335{bottom:387.080000pt;}
.y15_c00335{bottom:388.013333pt;}
.y3e_c00335{bottom:403.480000pt;}
.y14_c00335{bottom:404.413333pt;}
.y3d_c00335{bottom:419.080000pt;}
.y13_c00335{bottom:419.746667pt;}
.y12_c00335{bottom:435.613333pt;}
.y3c_c00335{bottom:435.880000pt;}
.y3b_c00335{bottom:451.613333pt;}
.y11_c00335{bottom:452.680000pt;}
.y3a_c00335{bottom:467.746667pt;}
.y10_c00335{bottom:468.680000pt;}
.y39_c00335{bottom:483.880000pt;}
.yf_c00335{bottom:484.280000pt;}
.y38_c00335{bottom:499.613333pt;}
.ye_c00335{bottom:501.080000pt;}
.y37_c00335{bottom:516.013333pt;}
.yd_c00335{bottom:516.680000pt;}
.y36_c00335{bottom:532.013333pt;}
.yc_c00335{bottom:533.080000pt;}
.y35_c00335{bottom:548.413333pt;}
.yb_c00335{bottom:549.346667pt;}
.y34_c00335{bottom:564.280000pt;}
.ya_c00335{bottom:565.213333pt;}
.y33_c00335{bottom:580.013333pt;}
.y9_c00335{bottom:581.213333pt;}
.y32_c00335{bottom:596.413333pt;}
.y8_c00335{bottom:597.346667pt;}
.y31_c00335{bottom:612.680000pt;}
.y7_c00335{bottom:612.946667pt;}
.y30_c00335{bottom:628.280000pt;}
.y6_c00335{bottom:629.746667pt;}
.y2f_c00335{bottom:644.413333pt;}
.y5_c00335{bottom:645.880000pt;}
.y2e_c00335{bottom:660.413333pt;}
.y4_c00335{bottom:661.880000pt;}
.y2d_c00335{bottom:675.880000pt;}
.y3_c00335{bottom:678.013333pt;}
.y2c_c00335{bottom:691.613333pt;}
.y2_c00335{bottom:694.280000pt;}
.y2b_c00335{bottom:711.346667pt;}
.y1_c00335{bottom:712.013333pt;}
.h5_c00335{height:11.733399pt;}
.h6_c00335{height:38.937500pt;}
.h4_c00335{height:47.509333pt;}
.h2_c00335{height:55.893333pt;}
.h3_c00335{height:56.906667pt;}
.h0_c00335{height:745.933333pt;}
.h1_c00335{height:746.000000pt;}
.w2_c00335{width:93.222667pt;}
.w1_c00335{width:486.666667pt;}
.w0_c00335{width:486.733333pt;}
.x0_c00335{left:0.000000pt;}
.x2_c00335{left:61.600000pt;}
.x3_c00335{left:62.666667pt;}
.x1_c00335{left:64.000000pt;}
.x4_c00335{left:65.066667pt;}
.x5_c00335{left:66.266667pt;}
.x6_c00335{left:67.200000pt;}
.x7_c00335{left:68.133333pt;}
.x8_c00335{left:69.066667pt;}
.x9_c00335{left:71.066667pt;}
.x10_c00335{left:200.534871pt;}
.xa_c00335{left:250.533333pt;}
.xb_c00335{left:259.600000pt;}
.xc_c00335{left:260.666667pt;}
.xd_c00335{left:262.266667pt;}
.xe_c00335{left:263.466667pt;}
.xf_c00335{left:413.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_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_9f4503bba13dd62febfaaf63.woff2')format("woff");}.ff1_c00336{font-family:ff1_c00336;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00336;src:url('chunks/assets/font_24cd9c39a0e24f8137c37d28.woff2')format("woff");}.ff2_c00336{font-family:ff2_c00336;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00336;src:url('chunks/assets/font_950df93344e2ab32800f8266.woff2')format("woff");}.ff3_c00336{font-family:ff3_c00336;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00336;src:url('chunks/assets/font_16015407663feef270aae1ea.woff2')format("woff");}.ff4_c00336{font-family:ff4_c00336;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00336;src:url('chunks/assets/font_0ce391de997f24f9f9dd37f4.woff2')format("woff");}.ff5_c00336{font-family:ff5_c00336;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00336;src:url('chunks/assets/font_13f1de456f73f89ffe11d621.woff2')format("woff");}.ff6_c00336{font-family:ff6_c00336;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00336;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff7_c00336{font-family:ff7_c00336;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00336{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00336{vertical-align:0.000000px;}
.ls4_c00336{letter-spacing:0.000000px;}
.ls2_c00336{letter-spacing:1.605000px;}
.ls3_c00336{letter-spacing:3.000000px;}
.ls0_c00336{letter-spacing:5.400000px;}
.ls1_c00336{letter-spacing:6.000000px;}
.ls5_c00336{letter-spacing:12.000000px;}
.sc__c00336{text-shadow:none;}
.sc0_c00336{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00336{-webkit-text-stroke:0px transparent;}
.sc0_c00336{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00336{word-spacing:-22.740000px;}
.ws0_c00336{word-spacing:-20.340000px;}
.ws1_c00336{word-spacing:-18.060000px;}
.ws3_c00336{word-spacing:-14.160000px;}
.ws4_c00336{word-spacing:0.000000px;}
._13_c00336{margin-left:-24.420000px;}
._28_c00336{margin-left:-16.740000px;}
._1e_c00336{margin-left:-15.336000px;}
._1d_c00336{margin-left:-12.876000px;}
._1a_c00336{margin-left:-10.020000px;}
._18_c00336{margin-left:-7.860000px;}
._3_c00336{margin-left:-6.240000px;}
._1b_c00336{margin-left:-5.160000px;}
._9_c00336{margin-left:-4.140000px;}
._7_c00336{margin-left:-3.120000px;}
._6_c00336{margin-left:-1.320000px;}
._8_c00336{width:1.080000px;}
._5_c00336{width:2.340000px;}
._2_c00336{width:3.960000px;}
._1c_c00336{width:5.340000px;}
._1_c00336{width:6.420000px;}
._4_c00336{width:7.680000px;}
._0_c00336{width:9.300000px;}
._a_c00336{width:11.340000px;}
._15_c00336{width:12.360000px;}
._11_c00336{width:14.040000px;}
._b_c00336{width:15.540000px;}
._21_c00336{width:16.620000px;}
._26_c00336{width:17.700000px;}
._16_c00336{width:19.980000px;}
._10_c00336{width:21.000000px;}
._1f_c00336{width:22.740000px;}
._d_c00336{width:24.300000px;}
._c_c00336{width:26.040000px;}
._22_c00336{width:27.180000px;}
._e_c00336{width:28.980000px;}
._20_c00336{width:32.580000px;}
._27_c00336{width:34.560000px;}
._23_c00336{width:36.600000px;}
._f_c00336{width:41.820000px;}
._25_c00336{width:52.200000px;}
._14_c00336{width:73.440000px;}
._19_c00336{width:79.740000px;}
._17_c00336{width:81.585000px;}
._24_c00336{width:121.860000px;}
._29_c00336{width:199.560000px;}
._12_c00336{width:362.040000px;}
.fc2_c00336{color:transparent;}
.fc1_c00336{color:rgb(128,128,128);}
.fc0_c00336{color:rgb(0,0,0);}
.fs1_c00336{font-size:45.000000px;}
.fs4_c00336{font-size:48.000000px;}
.fs0_c00336{font-size:60.000000px;}
.fs3_c00336{font-size:72.000000px;}
.fs2_c00336{font-size:213.000000px;}
.y0_c00336{bottom:0.000000px;}
.y55_c00336{bottom:3.105000px;}
.y54_c00336{bottom:7.228371px;}
.y53_c00336{bottom:36.465000px;}
.y52_c00336{bottom:56.415000px;}
.y2f_c00336{bottom:59.715000px;}
.y51_c00336{bottom:73.965000px;}
.y2e_c00336{bottom:78.315000px;}
.y50_c00336{bottom:93.165000px;}
.y2d_c00336{bottom:96.615000px;}
.y4f_c00336{bottom:110.115000px;}
.y2c_c00336{bottom:114.465000px;}
.y4e_c00336{bottom:129.615000px;}
.y2b_c00336{bottom:132.615000px;}
.y4d_c00336{bottom:147.165000px;}
.y2a_c00336{bottom:150.315000px;}
.y4c_c00336{bottom:164.715000px;}
.y29_c00336{bottom:167.115000px;}
.y4b_c00336{bottom:183.015000px;}
.y28_c00336{bottom:186.015000px;}
.y4a_c00336{bottom:201.165000px;}
.y27_c00336{bottom:204.165000px;}
.y49_c00336{bottom:219.015000px;}
.y26_c00336{bottom:222.465000px;}
.y48_c00336{bottom:238.365000px;}
.y25_c00336{bottom:240.015000px;}
.y47_c00336{bottom:255.165000px;}
.y24_c00336{bottom:258.315000px;}
.y46_c00336{bottom:273.465000px;}
.y23_c00336{bottom:276.465000px;}
.y45_c00336{bottom:291.015000px;}
.y22_c00336{bottom:293.715000px;}
.y44_c00336{bottom:309.615000px;}
.y21_c00336{bottom:312.315000px;}
.y43_c00336{bottom:326.715000px;}
.y20_c00336{bottom:329.415000px;}
.y42_c00336{bottom:343.665000px;}
.y1f_c00336{bottom:348.015000px;}
.y41_c00336{bottom:363.915000px;}
.y1e_c00336{bottom:365.865000px;}
.y40_c00336{bottom:382.065000px;}
.y1d_c00336{bottom:383.415000px;}
.y3f_c00336{bottom:400.065000px;}
.y1c_c00336{bottom:400.965000px;}
.y3e_c00336{bottom:418.215000px;}
.y1b_c00336{bottom:419.265000px;}
.y3d_c00336{bottom:435.165000px;}
.y1a_c00336{bottom:437.715000px;}
.y3c_c00336{bottom:453.315000px;}
.y19_c00336{bottom:454.665000px;}
.y16_c00336{bottom:454.965000px;}
.y15_c00336{bottom:468.765000px;}
.y3b_c00336{bottom:471.915000px;}
.y18_c00336{bottom:472.815000px;}
.y30_c00336{bottom:488.415000px;}
.y3a_c00336{bottom:489.765000px;}
.y17_c00336{bottom:490.515000px;}
.y39_c00336{bottom:507.315000px;}
.y38_c00336{bottom:525.615000px;}
.y14_c00336{bottom:525.915000px;}
.y37_c00336{bottom:543.165000px;}
.y13_c00336{bottom:543.465000px;}
.y12_c00336{bottom:561.315000px;}
.y36_c00336{bottom:562.065000px;}
.y11_c00336{bottom:579.165000px;}
.y35_c00336{bottom:580.215000px;}
.y34_c00336{bottom:598.365000px;}
.y10_c00336{bottom:614.265000px;}
.y33_c00336{bottom:615.615000px;}
.y32_c00336{bottom:634.515000px;}
.yf_c00336{bottom:649.365000px;}
.y31_c00336{bottom:653.115000px;}
.ye_c00336{bottom:670.365000px;}
.yd_c00336{bottom:687.915000px;}
.y6_c00336{bottom:703.065000px;}
.yc_c00336{bottom:707.115000px;}
.y5_c00336{bottom:721.365000px;}
.yb_c00336{bottom:725.415000px;}
.y4_c00336{bottom:739.515000px;}
.ya_c00336{bottom:743.565000px;}
.y3_c00336{bottom:757.665000px;}
.y9_c00336{bottom:761.415000px;}
.y2_c00336{bottom:774.915000px;}
.y8_c00336{bottom:780.015000px;}
.y1_c00336{bottom:793.515000px;}
.y7_c00336{bottom:796.965000px;}
.h6_c00336{height:13.200074px;}
.h7_c00336{height:43.804688px;}
.h2_c00336{height:62.880000px;}
.h3_c00336{height:64.020000px;}
.h5_c00336{height:70.664062px;}
.h4_c00336{height:223.224000px;}
.h0_c00336{height:839.175000px;}
.h1_c00336{height:839.250000px;}
.w2_c00336{width:104.875500px;}
.w0_c00336{width:586.425000px;}
.w1_c00336{width:586.500000px;}
.x0_c00336{left:0.000000px;}
.xe_c00336{left:7.050000px;}
.x11_c00336{left:65.850000px;}
.x10_c00336{left:67.200000px;}
.xf_c00336{left:68.400000px;}
.x2_c00336{left:70.200000px;}
.x3_c00336{left:71.550000px;}
.x4_c00336{left:72.900000px;}
.x8_c00336{left:85.350000px;}
.xd_c00336{left:90.150000px;}
.xc_c00336{left:92.850000px;}
.x9_c00336{left:95.850000px;}
.xb_c00336{left:111.000000px;}
.xa_c00336{left:135.000000px;}
.x7_c00336{left:177.900000px;}
.x1_c00336{left:197.850000px;}
.x5_c00336{left:241.650000px;}
.x17_c00336{left:245.026749px;}
.x15_c00336{left:283.200000px;}
.x14_c00336{left:288.150000px;}
.x13_c00336{left:289.500000px;}
.x6_c00336{left:290.550000px;}
.x16_c00336{left:382.350000px;}
.x12_c00336{left:494.700000px;}
@media print{
.v0_c00336{vertical-align:0.000000pt;}
.ls4_c00336{letter-spacing:0.000000pt;}
.ls2_c00336{letter-spacing:1.426667pt;}
.ls3_c00336{letter-spacing:2.666667pt;}
.ls0_c00336{letter-spacing:4.800000pt;}
.ls1_c00336{letter-spacing:5.333333pt;}
.ls5_c00336{letter-spacing:10.666667pt;}
.ws2_c00336{word-spacing:-20.213333pt;}
.ws0_c00336{word-spacing:-18.080000pt;}
.ws1_c00336{word-spacing:-16.053333pt;}
.ws3_c00336{word-spacing:-12.586667pt;}
.ws4_c00336{word-spacing:0.000000pt;}
._13_c00336{margin-left:-21.706667pt;}
._28_c00336{margin-left:-14.880000pt;}
._1e_c00336{margin-left:-13.632000pt;}
._1d_c00336{margin-left:-11.445333pt;}
._1a_c00336{margin-left:-8.906667pt;}
._18_c00336{margin-left:-6.986667pt;}
._3_c00336{margin-left:-5.546667pt;}
._1b_c00336{margin-left:-4.586667pt;}
._9_c00336{margin-left:-3.680000pt;}
._7_c00336{margin-left:-2.773333pt;}
._6_c00336{margin-left:-1.173333pt;}
._8_c00336{width:0.960000pt;}
._5_c00336{width:2.080000pt;}
._2_c00336{width:3.520000pt;}
._1c_c00336{width:4.746667pt;}
._1_c00336{width:5.706667pt;}
._4_c00336{width:6.826667pt;}
._0_c00336{width:8.266667pt;}
._a_c00336{width:10.080000pt;}
._15_c00336{width:10.986667pt;}
._11_c00336{width:12.480000pt;}
._b_c00336{width:13.813333pt;}
._21_c00336{width:14.773333pt;}
._26_c00336{width:15.733333pt;}
._16_c00336{width:17.760000pt;}
._10_c00336{width:18.666667pt;}
._1f_c00336{width:20.213333pt;}
._d_c00336{width:21.600000pt;}
._c_c00336{width:23.146667pt;}
._22_c00336{width:24.160000pt;}
._e_c00336{width:25.760000pt;}
._20_c00336{width:28.960000pt;}
._27_c00336{width:30.720000pt;}
._23_c00336{width:32.533333pt;}
._f_c00336{width:37.173333pt;}
._25_c00336{width:46.400000pt;}
._14_c00336{width:65.280000pt;}
._19_c00336{width:70.880000pt;}
._17_c00336{width:72.520000pt;}
._24_c00336{width:108.320000pt;}
._29_c00336{width:177.386667pt;}
._12_c00336{width:321.813333pt;}
.fs1_c00336{font-size:40.000000pt;}
.fs4_c00336{font-size:42.666667pt;}
.fs0_c00336{font-size:53.333333pt;}
.fs3_c00336{font-size:64.000000pt;}
.fs2_c00336{font-size:189.333333pt;}
.y0_c00336{bottom:0.000000pt;}
.y55_c00336{bottom:2.760000pt;}
.y54_c00336{bottom:6.425219pt;}
.y53_c00336{bottom:32.413333pt;}
.y52_c00336{bottom:50.146667pt;}
.y2f_c00336{bottom:53.080000pt;}
.y51_c00336{bottom:65.746667pt;}
.y2e_c00336{bottom:69.613333pt;}
.y50_c00336{bottom:82.813333pt;}
.y2d_c00336{bottom:85.880000pt;}
.y4f_c00336{bottom:97.880000pt;}
.y2c_c00336{bottom:101.746667pt;}
.y4e_c00336{bottom:115.213333pt;}
.y2b_c00336{bottom:117.880000pt;}
.y4d_c00336{bottom:130.813333pt;}
.y2a_c00336{bottom:133.613333pt;}
.y4c_c00336{bottom:146.413333pt;}
.y29_c00336{bottom:148.546667pt;}
.y4b_c00336{bottom:162.680000pt;}
.y28_c00336{bottom:165.346667pt;}
.y4a_c00336{bottom:178.813333pt;}
.y27_c00336{bottom:181.480000pt;}
.y49_c00336{bottom:194.680000pt;}
.y26_c00336{bottom:197.746667pt;}
.y48_c00336{bottom:211.880000pt;}
.y25_c00336{bottom:213.346667pt;}
.y47_c00336{bottom:226.813333pt;}
.y24_c00336{bottom:229.613333pt;}
.y46_c00336{bottom:243.080000pt;}
.y23_c00336{bottom:245.746667pt;}
.y45_c00336{bottom:258.680000pt;}
.y22_c00336{bottom:261.080000pt;}
.y44_c00336{bottom:275.213333pt;}
.y21_c00336{bottom:277.613333pt;}
.y43_c00336{bottom:290.413333pt;}
.y20_c00336{bottom:292.813333pt;}
.y42_c00336{bottom:305.480000pt;}
.y1f_c00336{bottom:309.346667pt;}
.y41_c00336{bottom:323.480000pt;}
.y1e_c00336{bottom:325.213333pt;}
.y40_c00336{bottom:339.613333pt;}
.y1d_c00336{bottom:340.813333pt;}
.y3f_c00336{bottom:355.613333pt;}
.y1c_c00336{bottom:356.413333pt;}
.y3e_c00336{bottom:371.746667pt;}
.y1b_c00336{bottom:372.680000pt;}
.y3d_c00336{bottom:386.813333pt;}
.y1a_c00336{bottom:389.080000pt;}
.y3c_c00336{bottom:402.946667pt;}
.y19_c00336{bottom:404.146667pt;}
.y16_c00336{bottom:404.413333pt;}
.y15_c00336{bottom:416.680000pt;}
.y3b_c00336{bottom:419.480000pt;}
.y18_c00336{bottom:420.280000pt;}
.y30_c00336{bottom:434.146667pt;}
.y3a_c00336{bottom:435.346667pt;}
.y17_c00336{bottom:436.013333pt;}
.y39_c00336{bottom:450.946667pt;}
.y38_c00336{bottom:467.213333pt;}
.y14_c00336{bottom:467.480000pt;}
.y37_c00336{bottom:482.813333pt;}
.y13_c00336{bottom:483.080000pt;}
.y12_c00336{bottom:498.946667pt;}
.y36_c00336{bottom:499.613333pt;}
.y11_c00336{bottom:514.813333pt;}
.y35_c00336{bottom:515.746667pt;}
.y34_c00336{bottom:531.880000pt;}
.y10_c00336{bottom:546.013333pt;}
.y33_c00336{bottom:547.213333pt;}
.y32_c00336{bottom:564.013333pt;}
.yf_c00336{bottom:577.213333pt;}
.y31_c00336{bottom:580.546667pt;}
.ye_c00336{bottom:595.880000pt;}
.yd_c00336{bottom:611.480000pt;}
.y6_c00336{bottom:624.946667pt;}
.yc_c00336{bottom:628.546667pt;}
.y5_c00336{bottom:641.213333pt;}
.yb_c00336{bottom:644.813333pt;}
.y4_c00336{bottom:657.346667pt;}
.ya_c00336{bottom:660.946667pt;}
.y3_c00336{bottom:673.480000pt;}
.y9_c00336{bottom:676.813333pt;}
.y2_c00336{bottom:688.813333pt;}
.y8_c00336{bottom:693.346667pt;}
.y1_c00336{bottom:705.346667pt;}
.y7_c00336{bottom:708.413333pt;}
.h6_c00336{height:11.733399pt;}
.h7_c00336{height:38.937500pt;}
.h2_c00336{height:55.893333pt;}
.h3_c00336{height:56.906667pt;}
.h5_c00336{height:62.812500pt;}
.h4_c00336{height:198.421333pt;}
.h0_c00336{height:745.933333pt;}
.h1_c00336{height:746.000000pt;}
.w2_c00336{width:93.222667pt;}
.w0_c00336{width:521.266667pt;}
.w1_c00336{width:521.333333pt;}
.x0_c00336{left:0.000000pt;}
.xe_c00336{left:6.266667pt;}
.x11_c00336{left:58.533333pt;}
.x10_c00336{left:59.733333pt;}
.xf_c00336{left:60.800000pt;}
.x2_c00336{left:62.400000pt;}
.x3_c00336{left:63.600000pt;}
.x4_c00336{left:64.800000pt;}
.x8_c00336{left:75.866667pt;}
.xd_c00336{left:80.133333pt;}
.xc_c00336{left:82.533333pt;}
.x9_c00336{left:85.200000pt;}
.xb_c00336{left:98.666667pt;}
.xa_c00336{left:120.000000pt;}
.x7_c00336{left:158.133333pt;}
.x1_c00336{left:175.866667pt;}
.x5_c00336{left:214.800000pt;}
.x17_c00336{left:217.801554pt;}
.x15_c00336{left:251.733333pt;}
.x14_c00336{left:256.133333pt;}
.x13_c00336{left:257.333333pt;}
.x6_c00336{left:258.266667pt;}
.x16_c00336{left:339.866667pt;}
.x12_c00336{left:439.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_64ca4ca29ad5ea49e49ef0e5.woff2')format("woff");}.ff1_c00337{font-family:ff1_c00337;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00337;src:url('chunks/assets/font_07153c0947fa7aaa6dc5586f.woff2')format("woff");}.ff2_c00337{font-family:ff2_c00337;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00337;src:url('chunks/assets/font_d7cbefc3f2cc8de0f28ce2f4.woff2')format("woff");}.ff3_c00337{font-family:ff3_c00337;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00337;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff4_c00337{font-family:ff4_c00337;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00337{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00337{vertical-align:0.000000px;}
.ls4_c00337{letter-spacing:0.000000px;}
.ls1_c00337{letter-spacing:1.800000px;}
.ls2_c00337{letter-spacing:3.000000px;}
.ls3_c00337{letter-spacing:6.000000px;}
.ls0_c00337{letter-spacing:9.900000px;}
.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:-27.240000px;}
.ws4_c00337{word-spacing:-20.340000px;}
.ws3_c00337{word-spacing:-18.060000px;}
.ws1_c00337{word-spacing:-14.160000px;}
.ws0_c00337{word-spacing:-3.060000px;}
.ws5_c00337{word-spacing:0.000000px;}
._20_c00337{margin-left:-18.243000px;}
._26_c00337{margin-left:-16.140000px;}
._18_c00337{margin-left:-14.400000px;}
._1f_c00337{margin-left:-12.300000px;}
._23_c00337{margin-left:-9.300000px;}
._8_c00337{margin-left:-6.900000px;}
._1d_c00337{margin-left:-5.580000px;}
._6_c00337{margin-left:-4.140000px;}
._d_c00337{margin-left:-2.280000px;}
._15_c00337{margin-left:-1.200000px;}
._4_c00337{width:1.800000px;}
._5_c00337{width:3.660000px;}
._9_c00337{width:5.640000px;}
._13_c00337{width:7.200000px;}
._b_c00337{width:8.220000px;}
._7_c00337{width:9.780000px;}
._f_c00337{width:11.220000px;}
._e_c00337{width:12.240000px;}
._c_c00337{width:13.320000px;}
._a_c00337{width:15.240000px;}
._0_c00337{width:16.740000px;}
._1_c00337{width:18.240000px;}
._11_c00337{width:20.103000px;}
._24_c00337{width:21.120000px;}
._3_c00337{width:22.860000px;}
._1e_c00337{width:24.117000px;}
._2_c00337{width:25.500000px;}
._10_c00337{width:26.820000px;}
._21_c00337{width:29.820000px;}
._17_c00337{width:31.560000px;}
._25_c00337{width:33.780000px;}
._1a_c00337{width:36.780000px;}
._1b_c00337{width:40.020000px;}
._19_c00337{width:41.220000px;}
._1c_c00337{width:44.040000px;}
._16_c00337{width:46.200000px;}
._14_c00337{width:132.720000px;}
._22_c00337{width:198.180000px;}
._12_c00337{width:431.040000px;}
.fc2_c00337{color:transparent;}
.fc1_c00337{color:rgb(128,128,128);}
.fc0_c00337{color:rgb(0,0,0);}
.fs2_c00337{font-size:48.000000px;}
.fs1_c00337{font-size:57.000000px;}
.fs0_c00337{font-size:60.000000px;}
.y0_c00337{bottom:0.000000px;}
.y54_c00337{bottom:3.105000px;}
.y53_c00337{bottom:7.228355px;}
.y52_c00337{bottom:44.085000px;}
.y51_c00337{bottom:62.385000px;}
.y2c_c00337{bottom:63.735000px;}
.y50_c00337{bottom:81.285000px;}
.y2b_c00337{bottom:82.635000px;}
.y4f_c00337{bottom:99.885000px;}
.y2a_c00337{bottom:100.935000px;}
.y4e_c00337{bottom:118.485000px;}
.y29_c00337{bottom:118.785000px;}
.y4d_c00337{bottom:135.885000px;}
.y28_c00337{bottom:136.935000px;}
.y27_c00337{bottom:153.585000px;}
.y4c_c00337{bottom:154.185000px;}
.y4b_c00337{bottom:172.035000px;}
.y26_c00337{bottom:173.385000px;}
.y25_c00337{bottom:191.235000px;}
.y4a_c00337{bottom:191.385000px;}
.y49_c00337{bottom:208.185000px;}
.y24_c00337{bottom:208.935000px;}
.y48_c00337{bottom:226.785000px;}
.y23_c00337{bottom:227.385000px;}
.y22_c00337{bottom:245.385000px;}
.y47_c00337{bottom:263.235000px;}
.y21_c00337{bottom:263.835000px;}
.y20_c00337{bottom:281.385000px;}
.y46_c00337{bottom:282.135000px;}
.y45_c00337{bottom:299.385000px;}
.y1f_c00337{bottom:299.985000px;}
.y1e_c00337{bottom:318.135000px;}
.y44_c00337{bottom:319.185000px;}
.y1d_c00337{bottom:336.135000px;}
.y1c_c00337{bottom:354.735000px;}
.y43_c00337{bottom:355.035000px;}
.y42_c00337{bottom:372.135000px;}
.y1b_c00337{bottom:372.285000px;}
.y1a_c00337{bottom:390.735000px;}
.y41_c00337{bottom:391.185000px;}
.y19_c00337{bottom:409.035000px;}
.y18_c00337{bottom:426.885000px;}
.y40_c00337{bottom:427.485000px;}
.y17_c00337{bottom:444.735000px;}
.y3f_c00337{bottom:445.785000px;}
.y16_c00337{bottom:463.035000px;}
.y3e_c00337{bottom:464.085000px;}
.y15_c00337{bottom:481.485000px;}
.y3d_c00337{bottom:481.935000px;}
.y14_c00337{bottom:499.035000px;}
.y3c_c00337{bottom:500.085000px;}
.y13_c00337{bottom:518.085000px;}
.y3b_c00337{bottom:518.685000px;}
.y12_c00337{bottom:535.635000px;}
.y3a_c00337{bottom:536.835000px;}
.y11_c00337{bottom:554.385000px;}
.y39_c00337{bottom:555.135000px;}
.y10_c00337{bottom:572.685000px;}
.yf_c00337{bottom:590.985000px;}
.y38_c00337{bottom:591.285000px;}
.y37_c00337{bottom:609.435000px;}
.ye_c00337{bottom:609.735000px;}
.yd_c00337{bottom:626.685000px;}
.y36_c00337{bottom:627.735000px;}
.y35_c00337{bottom:645.585000px;}
.yc_c00337{bottom:645.885000px;}
.y34_c00337{bottom:663.435000px;}
.yb_c00337{bottom:664.785000px;}
.y33_c00337{bottom:681.435000px;}
.ya_c00337{bottom:682.335000px;}
.y32_c00337{bottom:698.835000px;}
.y9_c00337{bottom:700.185000px;}
.y31_c00337{bottom:717.135000px;}
.y8_c00337{bottom:717.885000px;}
.y30_c00337{bottom:735.435000px;}
.y7_c00337{bottom:736.335000px;}
.y2f_c00337{bottom:753.585000px;}
.y6_c00337{bottom:755.685000px;}
.y2e_c00337{bottom:771.435000px;}
.y5_c00337{bottom:771.885000px;}
.y4_c00337{bottom:788.985000px;}
.y2d_c00337{bottom:789.735000px;}
.y2_c00337{bottom:790.335000px;}
.y3_c00337{bottom:808.935000px;}
.y1_c00337{bottom:811.335000px;}
.h5_c00337{height:13.200074px;}
.h6_c00337{height:43.804688px;}
.h4_c00337{height:59.736000px;}
.h2_c00337{height:62.880000px;}
.h3_c00337{height:64.020000px;}
.h1_c00337{height:840.000000px;}
.h0_c00337{height:840.225000px;}
.w2_c00337{width:104.875500px;}
.w1_c00337{width:558.750000px;}
.w0_c00337{width:558.900000px;}
.x0_c00337{left:0.000000px;}
.x6_c00337{left:14.550000px;}
.x7_c00337{left:73.350000px;}
.x5_c00337{left:77.700000px;}
.x4_c00337{left:79.050000px;}
.x3_c00337{left:81.300000px;}
.x2_c00337{left:93.150000px;}
.x1_c00337{left:166.650000px;}
.xd_c00337{left:231.264267px;}
.x8_c00337{left:280.050000px;}
.x9_c00337{left:296.700000px;}
.xa_c00337{left:297.750000px;}
.xb_c00337{left:298.950000px;}
.xc_c00337{left:468.750000px;}
@media print{
.v0_c00337{vertical-align:0.000000pt;}
.ls4_c00337{letter-spacing:0.000000pt;}
.ls1_c00337{letter-spacing:1.600000pt;}
.ls2_c00337{letter-spacing:2.666667pt;}
.ls3_c00337{letter-spacing:5.333333pt;}
.ls0_c00337{letter-spacing:8.800000pt;}
.ws2_c00337{word-spacing:-24.213333pt;}
.ws4_c00337{word-spacing:-18.080000pt;}
.ws3_c00337{word-spacing:-16.053333pt;}
.ws1_c00337{word-spacing:-12.586667pt;}
.ws0_c00337{word-spacing:-2.720000pt;}
.ws5_c00337{word-spacing:0.000000pt;}
._20_c00337{margin-left:-16.216000pt;}
._26_c00337{margin-left:-14.346667pt;}
._18_c00337{margin-left:-12.800000pt;}
._1f_c00337{margin-left:-10.933333pt;}
._23_c00337{margin-left:-8.266667pt;}
._8_c00337{margin-left:-6.133333pt;}
._1d_c00337{margin-left:-4.960000pt;}
._6_c00337{margin-left:-3.680000pt;}
._d_c00337{margin-left:-2.026667pt;}
._15_c00337{margin-left:-1.066667pt;}
._4_c00337{width:1.600000pt;}
._5_c00337{width:3.253333pt;}
._9_c00337{width:5.013333pt;}
._13_c00337{width:6.400000pt;}
._b_c00337{width:7.306667pt;}
._7_c00337{width:8.693333pt;}
._f_c00337{width:9.973333pt;}
._e_c00337{width:10.880000pt;}
._c_c00337{width:11.840000pt;}
._a_c00337{width:13.546667pt;}
._0_c00337{width:14.880000pt;}
._1_c00337{width:16.213333pt;}
._11_c00337{width:17.869333pt;}
._24_c00337{width:18.773333pt;}
._3_c00337{width:20.320000pt;}
._1e_c00337{width:21.437333pt;}
._2_c00337{width:22.666667pt;}
._10_c00337{width:23.840000pt;}
._21_c00337{width:26.506667pt;}
._17_c00337{width:28.053333pt;}
._25_c00337{width:30.026667pt;}
._1a_c00337{width:32.693333pt;}
._1b_c00337{width:35.573333pt;}
._19_c00337{width:36.640000pt;}
._1c_c00337{width:39.146667pt;}
._16_c00337{width:41.066667pt;}
._14_c00337{width:117.973333pt;}
._22_c00337{width:176.160000pt;}
._12_c00337{width:383.146667pt;}
.fs2_c00337{font-size:42.666667pt;}
.fs1_c00337{font-size:50.666667pt;}
.fs0_c00337{font-size:53.333333pt;}
.y0_c00337{bottom:0.000000pt;}
.y54_c00337{bottom:2.760000pt;}
.y53_c00337{bottom:6.425204pt;}
.y52_c00337{bottom:39.186667pt;}
.y51_c00337{bottom:55.453333pt;}
.y2c_c00337{bottom:56.653333pt;}
.y50_c00337{bottom:72.253333pt;}
.y2b_c00337{bottom:73.453333pt;}
.y4f_c00337{bottom:88.786667pt;}
.y2a_c00337{bottom:89.720000pt;}
.y4e_c00337{bottom:105.320000pt;}
.y29_c00337{bottom:105.586667pt;}
.y4d_c00337{bottom:120.786667pt;}
.y28_c00337{bottom:121.720000pt;}
.y27_c00337{bottom:136.520000pt;}
.y4c_c00337{bottom:137.053333pt;}
.y4b_c00337{bottom:152.920000pt;}
.y26_c00337{bottom:154.120000pt;}
.y25_c00337{bottom:169.986667pt;}
.y4a_c00337{bottom:170.120000pt;}
.y49_c00337{bottom:185.053333pt;}
.y24_c00337{bottom:185.720000pt;}
.y48_c00337{bottom:201.586667pt;}
.y23_c00337{bottom:202.120000pt;}
.y22_c00337{bottom:218.120000pt;}
.y47_c00337{bottom:233.986667pt;}
.y21_c00337{bottom:234.520000pt;}
.y20_c00337{bottom:250.120000pt;}
.y46_c00337{bottom:250.786667pt;}
.y45_c00337{bottom:266.120000pt;}
.y1f_c00337{bottom:266.653333pt;}
.y1e_c00337{bottom:282.786667pt;}
.y44_c00337{bottom:283.720000pt;}
.y1d_c00337{bottom:298.786667pt;}
.y1c_c00337{bottom:315.320000pt;}
.y43_c00337{bottom:315.586667pt;}
.y42_c00337{bottom:330.786667pt;}
.y1b_c00337{bottom:330.920000pt;}
.y1a_c00337{bottom:347.320000pt;}
.y41_c00337{bottom:347.720000pt;}
.y19_c00337{bottom:363.586667pt;}
.y18_c00337{bottom:379.453333pt;}
.y40_c00337{bottom:379.986667pt;}
.y17_c00337{bottom:395.320000pt;}
.y3f_c00337{bottom:396.253333pt;}
.y16_c00337{bottom:411.586667pt;}
.y3e_c00337{bottom:412.520000pt;}
.y15_c00337{bottom:427.986667pt;}
.y3d_c00337{bottom:428.386667pt;}
.y14_c00337{bottom:443.586667pt;}
.y3c_c00337{bottom:444.520000pt;}
.y13_c00337{bottom:460.520000pt;}
.y3b_c00337{bottom:461.053333pt;}
.y12_c00337{bottom:476.120000pt;}
.y3a_c00337{bottom:477.186667pt;}
.y11_c00337{bottom:492.786667pt;}
.y39_c00337{bottom:493.453333pt;}
.y10_c00337{bottom:509.053333pt;}
.yf_c00337{bottom:525.320000pt;}
.y38_c00337{bottom:525.586667pt;}
.y37_c00337{bottom:541.720000pt;}
.ye_c00337{bottom:541.986667pt;}
.yd_c00337{bottom:557.053333pt;}
.y36_c00337{bottom:557.986667pt;}
.y35_c00337{bottom:573.853333pt;}
.yc_c00337{bottom:574.120000pt;}
.y34_c00337{bottom:589.720000pt;}
.yb_c00337{bottom:590.920000pt;}
.y33_c00337{bottom:605.720000pt;}
.ya_c00337{bottom:606.520000pt;}
.y32_c00337{bottom:621.186667pt;}
.y9_c00337{bottom:622.386667pt;}
.y31_c00337{bottom:637.453333pt;}
.y8_c00337{bottom:638.120000pt;}
.y30_c00337{bottom:653.720000pt;}
.y7_c00337{bottom:654.520000pt;}
.y2f_c00337{bottom:669.853333pt;}
.y6_c00337{bottom:671.720000pt;}
.y2e_c00337{bottom:685.720000pt;}
.y5_c00337{bottom:686.120000pt;}
.y4_c00337{bottom:701.320000pt;}
.y2d_c00337{bottom:701.986667pt;}
.y2_c00337{bottom:702.520000pt;}
.y3_c00337{bottom:719.053333pt;}
.y1_c00337{bottom:721.186667pt;}
.h5_c00337{height:11.733399pt;}
.h6_c00337{height:38.937500pt;}
.h4_c00337{height:53.098667pt;}
.h2_c00337{height:55.893333pt;}
.h3_c00337{height:56.906667pt;}
.h1_c00337{height:746.666667pt;}
.h0_c00337{height:746.866667pt;}
.w2_c00337{width:93.222667pt;}
.w1_c00337{width:496.666667pt;}
.w0_c00337{width:496.800000pt;}
.x0_c00337{left:0.000000pt;}
.x6_c00337{left:12.933333pt;}
.x7_c00337{left:65.200000pt;}
.x5_c00337{left:69.066667pt;}
.x4_c00337{left:70.266667pt;}
.x3_c00337{left:72.266667pt;}
.x2_c00337{left:82.800000pt;}
.x1_c00337{left:148.133333pt;}
.xd_c00337{left:205.568237pt;}
.x8_c00337{left:248.933333pt;}
.x9_c00337{left:263.733333pt;}
.xa_c00337{left:264.666667pt;}
.xb_c00337{left:265.733333pt;}
.xc_c00337{left:416.666667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_dab9a4d1d37468c8f125c2fb.woff2')format("woff");}.ff1_c00338{font-family:ff1_c00338;line-height:1.437000;font-style:normal;font-weight:normal;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_4b049bf9514ab97fdc1f64b1.woff2')format("woff");}.ff2_c00338{font-family:ff2_c00338;line-height:1.437000;font-style:normal;font-weight:normal;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_4d867712ef7d468a56e327fb.woff2')format("woff");}.ff3_c00338{font-family:ff3_c00338;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00338;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff4_c00338{font-family:ff4_c00338;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00338{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00338{vertical-align:0.000000px;}
.ls2_c00338{letter-spacing:0.000000px;}
.ls0_c00338{letter-spacing:3.000000px;}
.ls1_c00338{letter-spacing:6.000000px;}
.sc__c00338{text-shadow:none;}
.sc0_c00338{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00338{-webkit-text-stroke:0px transparent;}
.sc0_c00338{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00338{word-spacing:-18.060000px;}
.ws0_c00338{word-spacing:-14.160000px;}
.ws2_c00338{word-spacing:0.000000px;}
._11_c00338{margin-left:-12.420000px;}
._1a_c00338{margin-left:-10.500000px;}
._a_c00338{margin-left:-9.360000px;}
._17_c00338{margin-left:-7.320000px;}
._b_c00338{margin-left:-5.940000px;}
._c_c00338{margin-left:-4.500000px;}
._d_c00338{margin-left:-3.300000px;}
._9_c00338{margin-left:-1.680000px;}
._e_c00338{width:1.200000px;}
._8_c00338{width:2.760000px;}
._10_c00338{width:3.960000px;}
._12_c00338{width:5.736000px;}
._15_c00338{width:7.020000px;}
._1_c00338{width:8.340000px;}
._4_c00338{width:9.600000px;}
._0_c00338{width:10.740000px;}
._21_c00338{width:11.760000px;}
._13_c00338{width:12.840000px;}
._6_c00338{width:14.100000px;}
._18_c00338{width:15.684000px;}
._16_c00338{width:16.860000px;}
._3_c00338{width:20.460000px;}
._2_c00338{width:21.840000px;}
._5_c00338{width:23.700000px;}
._1f_c00338{width:24.720000px;}
._14_c00338{width:27.024000px;}
._1d_c00338{width:34.740000px;}
._19_c00338{width:36.240000px;}
._1b_c00338{width:37.596000px;}
._1c_c00338{width:40.704000px;}
._1e_c00338{width:50.460000px;}
._f_c00338{width:81.300000px;}
._20_c00338{width:166.368000px;}
._22_c00338{width:323.844000px;}
._7_c00338{width:438.840000px;}
.fc2_c00338{color:transparent;}
.fc1_c00338{color:rgb(128,128,128);}
.fc0_c00338{color:rgb(0,0,0);}
.fs2_c00338{font-size:48.000000px;}
.fs1_c00338{font-size:54.000000px;}
.fs0_c00338{font-size:60.000000px;}
.y0_c00338{bottom:0.000000px;}
.y53_c00338{bottom:3.105000px;}
.y52_c00338{bottom:7.228369px;}
.y51_c00338{bottom:38.070000px;}
.y50_c00338{bottom:55.620000px;}
.y26_c00338{bottom:57.420000px;}
.y4f_c00338{bottom:74.220000px;}
.y25_c00338{bottom:77.220000px;}
.y4e_c00338{bottom:92.520000px;}
.y24_c00338{bottom:94.470000px;}
.y4d_c00338{bottom:110.370000px;}
.y23_c00338{bottom:113.370000px;}
.y4c_c00338{bottom:129.270000px;}
.y22_c00338{bottom:132.270000px;}
.y4b_c00338{bottom:146.820000px;}
.y21_c00338{bottom:149.520000px;}
.y4a_c00338{bottom:164.670000px;}
.y20_c00338{bottom:168.120000px;}
.y49_c00338{bottom:183.270000px;}
.y1f_c00338{bottom:185.970000px;}
.y48_c00338{bottom:201.420000px;}
.y1e_c00338{bottom:203.820000px;}
.y47_c00338{bottom:219.270000px;}
.y1d_c00338{bottom:221.970000px;}
.y46_c00338{bottom:237.570000px;}
.y1c_c00338{bottom:239.970000px;}
.y45_c00338{bottom:255.420000px;}
.y44_c00338{bottom:273.720000px;}
.y43_c00338{bottom:291.570000px;}
.y1b_c00338{bottom:293.970000px;}
.y42_c00338{bottom:309.420000px;}
.y1a_c00338{bottom:312.120000px;}
.y41_c00338{bottom:327.270000px;}
.y19_c00338{bottom:329.970000px;}
.y40_c00338{bottom:345.270000px;}
.y3f_c00338{bottom:363.870000px;}
.y18_c00338{bottom:364.770000px;}
.y3e_c00338{bottom:382.020000px;}
.y3d_c00338{bottom:400.020000px;}
.y17_c00338{bottom:401.220000px;}
.y3c_c00338{bottom:417.870000px;}
.y16_c00338{bottom:418.170000px;}
.y3b_c00338{bottom:435.720000px;}
.y15_c00338{bottom:436.620000px;}
.y3a_c00338{bottom:453.570000px;}
.y14_c00338{bottom:454.620000px;}
.y39_c00338{bottom:470.820000px;}
.y13_c00338{bottom:472.470000px;}
.y38_c00338{bottom:489.720000px;}
.y12_c00338{bottom:490.320000px;}
.y37_c00338{bottom:507.720000px;}
.y11_c00338{bottom:507.870000px;}
.y10_c00338{bottom:525.420000px;}
.y36_c00338{bottom:525.720000px;}
.yf_c00338{bottom:543.420000px;}
.y35_c00338{bottom:543.720000px;}
.ye_c00338{bottom:561.570000px;}
.y34_c00338{bottom:562.170000px;}
.y33_c00338{bottom:579.420000px;}
.yd_c00338{bottom:579.720000px;}
.yc_c00338{bottom:597.420000px;}
.y32_c00338{bottom:598.620000px;}
.yb_c00338{bottom:616.170000px;}
.y31_c00338{bottom:617.220000px;}
.ya_c00338{bottom:633.720000px;}
.y30_c00338{bottom:635.220000px;}
.y9_c00338{bottom:651.420000px;}
.y2f_c00338{bottom:653.970000px;}
.y8_c00338{bottom:669.570000px;}
.y2e_c00338{bottom:672.570000px;}
.y7_c00338{bottom:687.420000px;}
.y2d_c00338{bottom:690.570000px;}
.y6_c00338{bottom:704.970000px;}
.y2c_c00338{bottom:708.720000px;}
.y5_c00338{bottom:722.970000px;}
.y2b_c00338{bottom:727.620000px;}
.y4_c00338{bottom:741.120000px;}
.y2a_c00338{bottom:744.870000px;}
.y28_c00338{bottom:758.670000px;}
.y3_c00338{bottom:758.970000px;}
.y29_c00338{bottom:763.320000px;}
.y2_c00338{bottom:778.620000px;}
.y27_c00338{bottom:781.920000px;}
.y1_c00338{bottom:798.870000px;}
.h2_c00338{height:13.200073px;}
.h3_c00338{height:43.804688px;}
.h1_c00338{height:62.880000px;}
.h0_c00338{height:827.250000px;}
.w2_c00338{width:104.875500px;}
.w1_c00338{width:578.250000px;}
.w0_c00338{width:578.325000px;}
.x0_c00338{left:0.000000px;}
.xb_c00338{left:50.700000px;}
.xc_c00338{left:52.950000px;}
.xa_c00338{left:55.350000px;}
.xd_c00338{left:56.400000px;}
.x5_c00338{left:58.050000px;}
.x3_c00338{left:59.400000px;}
.x4_c00338{left:60.450000px;}
.x2_c00338{left:61.500000px;}
.x7_c00338{left:66.150000px;}
.x8_c00338{left:91.200000px;}
.x9_c00338{left:100.200000px;}
.x6_c00338{left:132.300000px;}
.x1_c00338{left:205.200000px;}
.x17_c00338{left:240.976730px;}
.x12_c00338{left:278.100000px;}
.x11_c00338{left:279.450000px;}
.x10_c00338{left:281.250000px;}
.x14_c00338{left:282.600000px;}
.x15_c00338{left:283.800000px;}
.x13_c00338{left:285.150000px;}
.x16_c00338{left:375.750000px;}
.xf_c00338{left:488.700000px;}
.xe_c00338{left:490.050000px;}
@media print{
.v0_c00338{vertical-align:0.000000pt;}
.ls2_c00338{letter-spacing:0.000000pt;}
.ls0_c00338{letter-spacing:2.666667pt;}
.ls1_c00338{letter-spacing:5.333333pt;}
.ws1_c00338{word-spacing:-16.053333pt;}
.ws0_c00338{word-spacing:-12.586667pt;}
.ws2_c00338{word-spacing:0.000000pt;}
._11_c00338{margin-left:-11.040000pt;}
._1a_c00338{margin-left:-9.333333pt;}
._a_c00338{margin-left:-8.320000pt;}
._17_c00338{margin-left:-6.506667pt;}
._b_c00338{margin-left:-5.280000pt;}
._c_c00338{margin-left:-4.000000pt;}
._d_c00338{margin-left:-2.933333pt;}
._9_c00338{margin-left:-1.493333pt;}
._e_c00338{width:1.066667pt;}
._8_c00338{width:2.453333pt;}
._10_c00338{width:3.520000pt;}
._12_c00338{width:5.098667pt;}
._15_c00338{width:6.240000pt;}
._1_c00338{width:7.413333pt;}
._4_c00338{width:8.533333pt;}
._0_c00338{width:9.546667pt;}
._21_c00338{width:10.453333pt;}
._13_c00338{width:11.413333pt;}
._6_c00338{width:12.533333pt;}
._18_c00338{width:13.941333pt;}
._16_c00338{width:14.986667pt;}
._3_c00338{width:18.186667pt;}
._2_c00338{width:19.413333pt;}
._5_c00338{width:21.066667pt;}
._1f_c00338{width:21.973333pt;}
._14_c00338{width:24.021333pt;}
._1d_c00338{width:30.880000pt;}
._19_c00338{width:32.213333pt;}
._1b_c00338{width:33.418667pt;}
._1c_c00338{width:36.181333pt;}
._1e_c00338{width:44.853333pt;}
._f_c00338{width:72.266667pt;}
._20_c00338{width:147.882667pt;}
._22_c00338{width:287.861333pt;}
._7_c00338{width:390.080000pt;}
.fs2_c00338{font-size:42.666667pt;}
.fs1_c00338{font-size:48.000000pt;}
.fs0_c00338{font-size:53.333333pt;}
.y0_c00338{bottom:0.000000pt;}
.y53_c00338{bottom:2.760000pt;}
.y52_c00338{bottom:6.425217pt;}
.y51_c00338{bottom:33.840000pt;}
.y50_c00338{bottom:49.440000pt;}
.y26_c00338{bottom:51.040000pt;}
.y4f_c00338{bottom:65.973333pt;}
.y25_c00338{bottom:68.640000pt;}
.y4e_c00338{bottom:82.240000pt;}
.y24_c00338{bottom:83.973333pt;}
.y4d_c00338{bottom:98.106667pt;}
.y23_c00338{bottom:100.773333pt;}
.y4c_c00338{bottom:114.906667pt;}
.y22_c00338{bottom:117.573333pt;}
.y4b_c00338{bottom:130.506667pt;}
.y21_c00338{bottom:132.906667pt;}
.y4a_c00338{bottom:146.373333pt;}
.y20_c00338{bottom:149.440000pt;}
.y49_c00338{bottom:162.906667pt;}
.y1f_c00338{bottom:165.306667pt;}
.y48_c00338{bottom:179.040000pt;}
.y1e_c00338{bottom:181.173333pt;}
.y47_c00338{bottom:194.906667pt;}
.y1d_c00338{bottom:197.306667pt;}
.y46_c00338{bottom:211.173333pt;}
.y1c_c00338{bottom:213.306667pt;}
.y45_c00338{bottom:227.040000pt;}
.y44_c00338{bottom:243.306667pt;}
.y43_c00338{bottom:259.173333pt;}
.y1b_c00338{bottom:261.306667pt;}
.y42_c00338{bottom:275.040000pt;}
.y1a_c00338{bottom:277.440000pt;}
.y41_c00338{bottom:290.906667pt;}
.y19_c00338{bottom:293.306667pt;}
.y40_c00338{bottom:306.906667pt;}
.y3f_c00338{bottom:323.440000pt;}
.y18_c00338{bottom:324.240000pt;}
.y3e_c00338{bottom:339.573333pt;}
.y3d_c00338{bottom:355.573333pt;}
.y17_c00338{bottom:356.640000pt;}
.y3c_c00338{bottom:371.440000pt;}
.y16_c00338{bottom:371.706667pt;}
.y3b_c00338{bottom:387.306667pt;}
.y15_c00338{bottom:388.106667pt;}
.y3a_c00338{bottom:403.173333pt;}
.y14_c00338{bottom:404.106667pt;}
.y39_c00338{bottom:418.506667pt;}
.y13_c00338{bottom:419.973333pt;}
.y38_c00338{bottom:435.306667pt;}
.y12_c00338{bottom:435.840000pt;}
.y37_c00338{bottom:451.306667pt;}
.y11_c00338{bottom:451.440000pt;}
.y10_c00338{bottom:467.040000pt;}
.y36_c00338{bottom:467.306667pt;}
.yf_c00338{bottom:483.040000pt;}
.y35_c00338{bottom:483.306667pt;}
.ye_c00338{bottom:499.173333pt;}
.y34_c00338{bottom:499.706667pt;}
.y33_c00338{bottom:515.040000pt;}
.yd_c00338{bottom:515.306667pt;}
.yc_c00338{bottom:531.040000pt;}
.y32_c00338{bottom:532.106667pt;}
.yb_c00338{bottom:547.706667pt;}
.y31_c00338{bottom:548.640000pt;}
.ya_c00338{bottom:563.306667pt;}
.y30_c00338{bottom:564.640000pt;}
.y9_c00338{bottom:579.040000pt;}
.y2f_c00338{bottom:581.306667pt;}
.y8_c00338{bottom:595.173333pt;}
.y2e_c00338{bottom:597.840000pt;}
.y7_c00338{bottom:611.040000pt;}
.y2d_c00338{bottom:613.840000pt;}
.y6_c00338{bottom:626.640000pt;}
.y2c_c00338{bottom:629.973333pt;}
.y5_c00338{bottom:642.640000pt;}
.y2b_c00338{bottom:646.773333pt;}
.y4_c00338{bottom:658.773333pt;}
.y2a_c00338{bottom:662.106667pt;}
.y28_c00338{bottom:674.373333pt;}
.y3_c00338{bottom:674.640000pt;}
.y29_c00338{bottom:678.506667pt;}
.y2_c00338{bottom:692.106667pt;}
.y27_c00338{bottom:695.040000pt;}
.y1_c00338{bottom:710.106667pt;}
.h2_c00338{height:11.733399pt;}
.h3_c00338{height:38.937500pt;}
.h1_c00338{height:55.893333pt;}
.h0_c00338{height:735.333333pt;}
.w2_c00338{width:93.222667pt;}
.w1_c00338{width:514.000000pt;}
.w0_c00338{width:514.066667pt;}
.x0_c00338{left:0.000000pt;}
.xb_c00338{left:45.066667pt;}
.xc_c00338{left:47.066667pt;}
.xa_c00338{left:49.200000pt;}
.xd_c00338{left:50.133333pt;}
.x5_c00338{left:51.600000pt;}
.x3_c00338{left:52.800000pt;}
.x4_c00338{left:53.733333pt;}
.x2_c00338{left:54.666667pt;}
.x7_c00338{left:58.800000pt;}
.x8_c00338{left:81.066667pt;}
.x9_c00338{left:89.066667pt;}
.x6_c00338{left:117.600000pt;}
.x1_c00338{left:182.400000pt;}
.x17_c00338{left:214.201538pt;}
.x12_c00338{left:247.200000pt;}
.x11_c00338{left:248.400000pt;}
.x10_c00338{left:250.000000pt;}
.x14_c00338{left:251.200000pt;}
.x15_c00338{left:252.266667pt;}
.x13_c00338{left:253.466667pt;}
.x16_c00338{left:334.000000pt;}
.xf_c00338{left:434.400000pt;}
.xe_c00338{left:435.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b963c889a93617bdcba7703d.woff2')format("woff");}.ff1_c00339{font-family:ff1_c00339;line-height:1.575000;font-style:normal;font-weight:normal;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_fdb9deedbdd934010c862f35.woff2')format("woff");}.ff2_c00339{font-family:ff2_c00339;line-height:1.437000;font-style:normal;font-weight:normal;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_c0bd17dfae68a7e96a4263f3.woff2')format("woff");}.ff3_c00339{font-family:ff3_c00339;line-height:1.437000;font-style:normal;font-weight:normal;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_da3e9d5c2cf503952b17cdf2.woff2')format("woff");}.ff4_c00339{font-family:ff4_c00339;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00339;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff5_c00339{font-family:ff5_c00339;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00339{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00339{vertical-align:0.000000px;}
.lsa_c00339{letter-spacing:0.000000px;}
.ls7_c00339{letter-spacing:0.600000px;}
.ls5_c00339{letter-spacing:1.200000px;}
.ls6_c00339{letter-spacing:2.400000px;}
.ls2_c00339{letter-spacing:3.000000px;}
.ls3_c00339{letter-spacing:6.000000px;}
.ls9_c00339{letter-spacing:8.400000px;}
.ls1_c00339{letter-spacing:9.480000px;}
.ls0_c00339{letter-spacing:9.900000px;}
.ls8_c00339{letter-spacing:10.278000px;}
.ls4_c00339{letter-spacing:44.340000px;}
.sc__c00339{text-shadow:none;}
.sc0_c00339{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00339{-webkit-text-stroke:0px transparent;}
.sc0_c00339{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00339{word-spacing:-27.240000px;}
.ws1_c00339{word-spacing:-20.340000px;}
.ws2_c00339{word-spacing:-18.060000px;}
.ws5_c00339{word-spacing:-17.340000px;}
.ws3_c00339{word-spacing:-14.160000px;}
.ws4_c00339{word-spacing:-0.420000px;}
.ws6_c00339{word-spacing:0.000000px;}
._2a_c00339{margin-left:-21.480000px;}
._29_c00339{margin-left:-18.060000px;}
._1f_c00339{margin-left:-13.620000px;}
._18_c00339{margin-left:-12.060000px;}
._1d_c00339{margin-left:-10.320000px;}
._1e_c00339{margin-left:-8.760000px;}
._b_c00339{margin-left:-7.260000px;}
._13_c00339{margin-left:-5.460000px;}
._e_c00339{margin-left:-3.720000px;}
._c_c00339{margin-left:-2.340000px;}
._f_c00339{margin-left:-1.320000px;}
._7_c00339{width:1.440000px;}
._15_c00339{width:2.460000px;}
._9_c00339{width:3.480000px;}
._a_c00339{width:5.220000px;}
._8_c00339{width:7.200000px;}
._10_c00339{width:8.220000px;}
._d_c00339{width:9.540000px;}
._12_c00339{width:11.460000px;}
._11_c00339{width:12.540000px;}
._25_c00339{width:13.620000px;}
._1_c00339{width:14.700000px;}
._2_c00339{width:16.440000px;}
._16_c00339{width:19.500000px;}
._5_c00339{width:21.060000px;}
._4_c00339{width:22.560000px;}
._19_c00339{width:23.580000px;}
._3_c00339{width:25.080000px;}
._24_c00339{width:26.160000px;}
._1c_c00339{width:27.540000px;}
._21_c00339{width:28.560000px;}
._6_c00339{width:31.740000px;}
._22_c00339{width:33.660000px;}
._23_c00339{width:34.680000px;}
._1a_c00339{width:35.700000px;}
._28_c00339{width:37.320000px;}
._14_c00339{width:41.520000px;}
._26_c00339{width:49.500000px;}
._27_c00339{width:63.660000px;}
._20_c00339{width:171.420000px;}
._1b_c00339{width:189.420000px;}
._0_c00339{width:206.640000px;}
._17_c00339{width:207.840000px;}
.fc2_c00339{color:transparent;}
.fc1_c00339{color:rgb(128,128,128);}
.fc0_c00339{color:rgb(0,0,0);}
.fs1_c00339{font-size:42.000000px;}
.fs3_c00339{font-size:48.000000px;}
.fs2_c00339{font-size:57.000000px;}
.fs0_c00339{font-size:60.000000px;}
.y0_c00339{bottom:0.000000px;}
.y52_c00339{bottom:3.105000px;}
.y51_c00339{bottom:7.228371px;}
.y50_c00339{bottom:33.165000px;}
.y4f_c00339{bottom:49.365000px;}
.y2a_c00339{bottom:50.715000px;}
.y4e_c00339{bottom:67.965000px;}
.y29_c00339{bottom:69.315000px;}
.y4d_c00339{bottom:85.815000px;}
.y28_c00339{bottom:87.165000px;}
.y4c_c00339{bottom:103.665000px;}
.y27_c00339{bottom:105.765000px;}
.y4b_c00339{bottom:122.265000px;}
.y26_c00339{bottom:123.315000px;}
.y4a_c00339{bottom:140.415000px;}
.y25_c00339{bottom:141.165000px;}
.y49_c00339{bottom:158.415000px;}
.y24_c00339{bottom:159.615000px;}
.y48_c00339{bottom:176.265000px;}
.y23_c00339{bottom:178.065000px;}
.y47_c00339{bottom:194.415000px;}
.y22_c00339{bottom:196.065000px;}
.y46_c00339{bottom:212.265000px;}
.y21_c00339{bottom:214.065000px;}
.y45_c00339{bottom:231.615000px;}
.y20_c00339{bottom:232.665000px;}
.y44_c00339{bottom:248.715000px;}
.y1f_c00339{bottom:251.865000px;}
.y43_c00339{bottom:267.015000px;}
.y1e_c00339{bottom:268.665000px;}
.y42_c00339{bottom:285.165000px;}
.y1d_c00339{bottom:286.515000px;}
.y41_c00339{bottom:302.865000px;}
.y1c_c00339{bottom:304.515000px;}
.y40_c00339{bottom:322.365000px;}
.y1b_c00339{bottom:322.965000px;}
.y3f_c00339{bottom:340.515000px;}
.y1a_c00339{bottom:341.565000px;}
.y19_c00339{bottom:359.115000px;}
.y3e_c00339{bottom:359.565000px;}
.y3d_c00339{bottom:376.065000px;}
.y18_c00339{bottom:377.115000px;}
.y3c_c00339{bottom:394.515000px;}
.y17_c00339{bottom:395.265000px;}
.y3b_c00339{bottom:412.515000px;}
.y16_c00339{bottom:413.565000px;}
.y3a_c00339{bottom:430.065000px;}
.y15_c00339{bottom:431.715000px;}
.y39_c00339{bottom:448.965000px;}
.y14_c00339{bottom:449.565000px;}
.y38_c00339{bottom:467.115000px;}
.y13_c00339{bottom:467.565000px;}
.y37_c00339{bottom:484.665000px;}
.y12_c00339{bottom:485.715000px;}
.y11_c00339{bottom:503.565000px;}
.y36_c00339{bottom:521.115000px;}
.y10_c00339{bottom:522.165000px;}
.y35_c00339{bottom:539.115000px;}
.yf_c00339{bottom:540.015000px;}
.ye_c00339{bottom:558.015000px;}
.y34_c00339{bottom:558.315000px;}
.yd_c00339{bottom:576.465000px;}
.yc_c00339{bottom:594.465000px;}
.yb_c00339{bottom:612.315000px;}
.y33_c00339{bottom:612.915000px;}
.ya_c00339{bottom:630.765000px;}
.y9_c00339{bottom:649.065000px;}
.y32_c00339{bottom:649.365000px;}
.y8_c00339{bottom:667.365000px;}
.y31_c00339{bottom:667.965000px;}
.y7_c00339{bottom:685.515000px;}
.y30_c00339{bottom:685.815000px;}
.y6_c00339{bottom:703.665000px;}
.y2f_c00339{bottom:703.815000px;}
.y5_c00339{bottom:721.965000px;}
.y2e_c00339{bottom:722.265000px;}
.y4_c00339{bottom:740.115000px;}
.y2d_c00339{bottom:758.115000px;}
.y3_c00339{bottom:759.165000px;}
.y2_c00339{bottom:775.965000px;}
.y2c_c00339{bottom:776.715000px;}
.y2b_c00339{bottom:795.915000px;}
.y1_c00339{bottom:796.215000px;}
.h4_c00339{height:13.200074px;}
.h5_c00339{height:43.804688px;}
.h3_c00339{height:62.880000px;}
.h2_c00339{height:64.020000px;}
.h0_c00339{height:833.775000px;}
.h1_c00339{height:834.000000px;}
.w2_c00339{width:104.875500px;}
.w0_c00339{width:557.850000px;}
.w1_c00339{width:558.000000px;}
.x0_c00339{left:0.000000px;}
.x3_c00339{left:11.850000px;}
.x9_c00339{left:15.150000px;}
.x8_c00339{left:27.900000px;}
.x1_c00339{left:74.250000px;}
.x2_c00339{left:75.600000px;}
.x4_c00339{left:76.950000px;}
.x5_c00339{left:78.000000px;}
.x7_c00339{left:79.050000px;}
.xa_c00339{left:81.000000px;}
.xb_c00339{left:82.350000px;}
.xc_c00339{left:83.700000px;}
.x6_c00339{left:94.950000px;}
.x19_c00339{left:230.739258px;}
.x10_c00339{left:283.950000px;}
.xd_c00339{left:286.650000px;}
.xe_c00339{left:293.700000px;}
.xf_c00339{left:294.750000px;}
.x11_c00339{left:295.950000px;}
.x12_c00339{left:297.000000px;}
.x13_c00339{left:298.650000px;}
.x14_c00339{left:299.700000px;}
.x15_c00339{left:301.050000px;}
.x17_c00339{left:302.100000px;}
.x16_c00339{left:316.950000px;}
.x18_c00339{left:476.550000px;}
@media print{
.v0_c00339{vertical-align:0.000000pt;}
.lsa_c00339{letter-spacing:0.000000pt;}
.ls7_c00339{letter-spacing:0.533333pt;}
.ls5_c00339{letter-spacing:1.066667pt;}
.ls6_c00339{letter-spacing:2.133333pt;}
.ls2_c00339{letter-spacing:2.666667pt;}
.ls3_c00339{letter-spacing:5.333333pt;}
.ls9_c00339{letter-spacing:7.466667pt;}
.ls1_c00339{letter-spacing:8.426667pt;}
.ls0_c00339{letter-spacing:8.800000pt;}
.ls8_c00339{letter-spacing:9.136000pt;}
.ls4_c00339{letter-spacing:39.413333pt;}
.ws0_c00339{word-spacing:-24.213333pt;}
.ws1_c00339{word-spacing:-18.080000pt;}
.ws2_c00339{word-spacing:-16.053333pt;}
.ws5_c00339{word-spacing:-15.413333pt;}
.ws3_c00339{word-spacing:-12.586667pt;}
.ws4_c00339{word-spacing:-0.373333pt;}
.ws6_c00339{word-spacing:0.000000pt;}
._2a_c00339{margin-left:-19.093333pt;}
._29_c00339{margin-left:-16.053333pt;}
._1f_c00339{margin-left:-12.106667pt;}
._18_c00339{margin-left:-10.720000pt;}
._1d_c00339{margin-left:-9.173333pt;}
._1e_c00339{margin-left:-7.786667pt;}
._b_c00339{margin-left:-6.453333pt;}
._13_c00339{margin-left:-4.853333pt;}
._e_c00339{margin-left:-3.306667pt;}
._c_c00339{margin-left:-2.080000pt;}
._f_c00339{margin-left:-1.173333pt;}
._7_c00339{width:1.280000pt;}
._15_c00339{width:2.186667pt;}
._9_c00339{width:3.093333pt;}
._a_c00339{width:4.640000pt;}
._8_c00339{width:6.400000pt;}
._10_c00339{width:7.306667pt;}
._d_c00339{width:8.480000pt;}
._12_c00339{width:10.186667pt;}
._11_c00339{width:11.146667pt;}
._25_c00339{width:12.106667pt;}
._1_c00339{width:13.066667pt;}
._2_c00339{width:14.613333pt;}
._16_c00339{width:17.333333pt;}
._5_c00339{width:18.720000pt;}
._4_c00339{width:20.053333pt;}
._19_c00339{width:20.960000pt;}
._3_c00339{width:22.293333pt;}
._24_c00339{width:23.253333pt;}
._1c_c00339{width:24.480000pt;}
._21_c00339{width:25.386667pt;}
._6_c00339{width:28.213333pt;}
._22_c00339{width:29.920000pt;}
._23_c00339{width:30.826667pt;}
._1a_c00339{width:31.733333pt;}
._28_c00339{width:33.173333pt;}
._14_c00339{width:36.906667pt;}
._26_c00339{width:44.000000pt;}
._27_c00339{width:56.586667pt;}
._20_c00339{width:152.373333pt;}
._1b_c00339{width:168.373333pt;}
._0_c00339{width:183.680000pt;}
._17_c00339{width:184.746667pt;}
.fs1_c00339{font-size:37.333333pt;}
.fs3_c00339{font-size:42.666667pt;}
.fs2_c00339{font-size:50.666667pt;}
.fs0_c00339{font-size:53.333333pt;}
.y0_c00339{bottom:0.000000pt;}
.y52_c00339{bottom:2.760000pt;}
.y51_c00339{bottom:6.425219pt;}
.y50_c00339{bottom:29.480000pt;}
.y4f_c00339{bottom:43.880000pt;}
.y2a_c00339{bottom:45.080000pt;}
.y4e_c00339{bottom:60.413333pt;}
.y29_c00339{bottom:61.613333pt;}
.y4d_c00339{bottom:76.280000pt;}
.y28_c00339{bottom:77.480000pt;}
.y4c_c00339{bottom:92.146667pt;}
.y27_c00339{bottom:94.013333pt;}
.y4b_c00339{bottom:108.680000pt;}
.y26_c00339{bottom:109.613333pt;}
.y4a_c00339{bottom:124.813333pt;}
.y25_c00339{bottom:125.480000pt;}
.y49_c00339{bottom:140.813333pt;}
.y24_c00339{bottom:141.880000pt;}
.y48_c00339{bottom:156.680000pt;}
.y23_c00339{bottom:158.280000pt;}
.y47_c00339{bottom:172.813333pt;}
.y22_c00339{bottom:174.280000pt;}
.y46_c00339{bottom:188.680000pt;}
.y21_c00339{bottom:190.280000pt;}
.y45_c00339{bottom:205.880000pt;}
.y20_c00339{bottom:206.813333pt;}
.y44_c00339{bottom:221.080000pt;}
.y1f_c00339{bottom:223.880000pt;}
.y43_c00339{bottom:237.346667pt;}
.y1e_c00339{bottom:238.813333pt;}
.y42_c00339{bottom:253.480000pt;}
.y1d_c00339{bottom:254.680000pt;}
.y41_c00339{bottom:269.213333pt;}
.y1c_c00339{bottom:270.680000pt;}
.y40_c00339{bottom:286.546667pt;}
.y1b_c00339{bottom:287.080000pt;}
.y3f_c00339{bottom:302.680000pt;}
.y1a_c00339{bottom:303.613333pt;}
.y19_c00339{bottom:319.213333pt;}
.y3e_c00339{bottom:319.613333pt;}
.y3d_c00339{bottom:334.280000pt;}
.y18_c00339{bottom:335.213333pt;}
.y3c_c00339{bottom:350.680000pt;}
.y17_c00339{bottom:351.346667pt;}
.y3b_c00339{bottom:366.680000pt;}
.y16_c00339{bottom:367.613333pt;}
.y3a_c00339{bottom:382.280000pt;}
.y15_c00339{bottom:383.746667pt;}
.y39_c00339{bottom:399.080000pt;}
.y14_c00339{bottom:399.613333pt;}
.y38_c00339{bottom:415.213333pt;}
.y13_c00339{bottom:415.613333pt;}
.y37_c00339{bottom:430.813333pt;}
.y12_c00339{bottom:431.746667pt;}
.y11_c00339{bottom:447.613333pt;}
.y36_c00339{bottom:463.213333pt;}
.y10_c00339{bottom:464.146667pt;}
.y35_c00339{bottom:479.213333pt;}
.yf_c00339{bottom:480.013333pt;}
.ye_c00339{bottom:496.013333pt;}
.y34_c00339{bottom:496.280000pt;}
.yd_c00339{bottom:512.413333pt;}
.yc_c00339{bottom:528.413333pt;}
.yb_c00339{bottom:544.280000pt;}
.y33_c00339{bottom:544.813333pt;}
.ya_c00339{bottom:560.680000pt;}
.y9_c00339{bottom:576.946667pt;}
.y32_c00339{bottom:577.213333pt;}
.y8_c00339{bottom:593.213333pt;}
.y31_c00339{bottom:593.746667pt;}
.y7_c00339{bottom:609.346667pt;}
.y30_c00339{bottom:609.613333pt;}
.y6_c00339{bottom:625.480000pt;}
.y2f_c00339{bottom:625.613333pt;}
.y5_c00339{bottom:641.746667pt;}
.y2e_c00339{bottom:642.013333pt;}
.y4_c00339{bottom:657.880000pt;}
.y2d_c00339{bottom:673.880000pt;}
.y3_c00339{bottom:674.813333pt;}
.y2_c00339{bottom:689.746667pt;}
.y2c_c00339{bottom:690.413333pt;}
.y2b_c00339{bottom:707.480000pt;}
.y1_c00339{bottom:707.746667pt;}
.h4_c00339{height:11.733399pt;}
.h5_c00339{height:38.937500pt;}
.h3_c00339{height:55.893333pt;}
.h2_c00339{height:56.906667pt;}
.h0_c00339{height:741.133333pt;}
.h1_c00339{height:741.333333pt;}
.w2_c00339{width:93.222667pt;}
.w0_c00339{width:495.866667pt;}
.w1_c00339{width:496.000000pt;}
.x0_c00339{left:0.000000pt;}
.x3_c00339{left:10.533333pt;}
.x9_c00339{left:13.466667pt;}
.x8_c00339{left:24.800000pt;}
.x1_c00339{left:66.000000pt;}
.x2_c00339{left:67.200000pt;}
.x4_c00339{left:68.400000pt;}
.x5_c00339{left:69.333333pt;}
.x7_c00339{left:70.266667pt;}
.xa_c00339{left:72.000000pt;}
.xb_c00339{left:73.200000pt;}
.xc_c00339{left:74.400000pt;}
.x6_c00339{left:84.400000pt;}
.x19_c00339{left:205.101563pt;}
.x10_c00339{left:252.400000pt;}
.xd_c00339{left:254.800000pt;}
.xe_c00339{left:261.066667pt;}
.xf_c00339{left:262.000000pt;}
.x11_c00339{left:263.066667pt;}
.x12_c00339{left:264.000000pt;}
.x13_c00339{left:265.466667pt;}
.x14_c00339{left:266.400000pt;}
.x15_c00339{left:267.600000pt;}
.x17_c00339{left:268.533333pt;}
.x16_c00339{left:281.733333pt;}
.x18_c00339{left:423.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_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_a456d0c39fb973052b5bdd31.woff2')format("woff");}.ff1_c00340{font-family:ff1_c00340;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00340;src:url('chunks/assets/font_4f3f28ef4e786f057ec9062a.woff2')format("woff");}.ff2_c00340{font-family:ff2_c00340;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00340;src:url('chunks/assets/font_c60dc3852de2f091b6ee65b2.woff2')format("woff");}.ff3_c00340{font-family:ff3_c00340;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00340;src:url('chunks/assets/font_93506a6e5a8798e0545c3a4e.woff2')format("woff");}.ff4_c00340{font-family:ff4_c00340;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00340;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff5_c00340{font-family:ff5_c00340;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00340{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00340{vertical-align:0.000000px;}
.v1_c00340{vertical-align:97.200000px;}
.ls6_c00340{letter-spacing:0.000000px;}
.ls4_c00340{letter-spacing:3.000000px;}
.ls5_c00340{letter-spacing:3.240000px;}
.ls0_c00340{letter-spacing:4.239000px;}
.ls3_c00340{letter-spacing:4.800000px;}
.ls1_c00340{letter-spacing:6.000000px;}
.ls2_c00340{letter-spacing:6.540000px;}
.sc__c00340{text-shadow:none;}
.sc0_c00340{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00340{-webkit-text-stroke:0px transparent;}
.sc0_c00340{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00340{word-spacing:-22.074000px;}
.ws2_c00340{word-spacing:-20.340000px;}
.ws1_c00340{word-spacing:-18.060000px;}
.ws0_c00340{word-spacing:-14.160000px;}
.ws4_c00340{word-spacing:0.000000px;}
._e_c00340{margin-left:-16.740000px;}
._1b_c00340{margin-left:-15.300000px;}
._1d_c00340{margin-left:-13.560000px;}
._16_c00340{margin-left:-11.820000px;}
._1a_c00340{margin-left:-9.780000px;}
._15_c00340{margin-left:-8.400000px;}
._19_c00340{margin-left:-7.320000px;}
._13_c00340{margin-left:-6.000000px;}
._d_c00340{margin-left:-4.860000px;}
._9_c00340{margin-left:-3.120000px;}
._8_c00340{margin-left:-1.860000px;}
._7_c00340{width:1.320000px;}
._6_c00340{width:2.520000px;}
._3_c00340{width:4.320000px;}
._5_c00340{width:5.700000px;}
._4_c00340{width:7.680000px;}
._f_c00340{width:9.060000px;}
._1_c00340{width:10.140000px;}
._c_c00340{width:11.340000px;}
._0_c00340{width:12.840000px;}
._1e_c00340{width:13.860000px;}
._14_c00340{width:14.880000px;}
._a_c00340{width:15.960000px;}
._18_c00340{width:21.240000px;}
._10_c00340{width:24.060000px;}
._b_c00340{width:26.100000px;}
._11_c00340{width:27.648000px;}
._12_c00340{width:30.276000px;}
._2_c00340{width:33.840000px;}
._1c_c00340{width:46.320000px;}
._17_c00340{width:114.900000px;}
.fc2_c00340{color:transparent;}
.fc1_c00340{color:rgb(128,128,128);}
.fc0_c00340{color:rgb(0,0,0);}
.fs4_c00340{font-size:48.000000px;}
.fs1_c00340{font-size:57.000000px;}
.fs0_c00340{font-size:60.000000px;}
.fs3_c00340{font-size:66.000000px;}
.fs2_c00340{font-size:189.000000px;}
.y0_c00340{bottom:0.000000px;}
.y54_c00340{bottom:3.105000px;}
.y53_c00340{bottom:7.228369px;}
.y51_c00340{bottom:38.370000px;}
.y50_c00340{bottom:57.270000px;}
.y27_c00340{bottom:60.420000px;}
.y4f_c00340{bottom:75.270000px;}
.y26_c00340{bottom:79.020000px;}
.y4e_c00340{bottom:93.420000px;}
.y25_c00340{bottom:98.220000px;}
.y4d_c00340{bottom:112.020000px;}
.y24_c00340{bottom:115.770000px;}
.y4c_c00340{bottom:130.170000px;}
.y23_c00340{bottom:134.220000px;}
.y4b_c00340{bottom:147.870000px;}
.y22_c00340{bottom:152.220000px;}
.y4a_c00340{bottom:165.420000px;}
.y21_c00340{bottom:169.320000px;}
.y49_c00340{bottom:183.570000px;}
.y20_c00340{bottom:188.670000px;}
.y48_c00340{bottom:202.770000px;}
.y1f_c00340{bottom:206.820000px;}
.y47_c00340{bottom:220.770000px;}
.y1e_c00340{bottom:224.070000px;}
.y1c_c00340{bottom:236.820000px;}
.y46_c00340{bottom:239.220000px;}
.y1d_c00340{bottom:242.970000px;}
.y45_c00340{bottom:257.070000px;}
.y44_c00340{bottom:274.770000px;}
.y43_c00340{bottom:293.670000px;}
.y1b_c00340{bottom:297.570000px;}
.y42_c00340{bottom:311.070000px;}
.y1a_c00340{bottom:315.120000px;}
.y41_c00340{bottom:329.970000px;}
.y19_c00340{bottom:333.720000px;}
.y40_c00340{bottom:347.970000px;}
.y3f_c00340{bottom:366.420000px;}
.y18_c00340{bottom:368.220000px;}
.y3e_c00340{bottom:383.670000px;}
.y3d_c00340{bottom:402.270000px;}
.y17_c00340{bottom:404.970000px;}
.y3c_c00340{bottom:420.570000px;}
.y16_c00340{bottom:423.270000px;}
.y3b_c00340{bottom:438.720000px;}
.y15_c00340{bottom:441.720000px;}
.y3a_c00340{bottom:456.870000px;}
.y14_c00340{bottom:459.720000px;}
.y39_c00340{bottom:475.170000px;}
.y13_c00340{bottom:477.270000px;}
.y38_c00340{bottom:492.120000px;}
.y12_c00340{bottom:495.420000px;}
.y37_c00340{bottom:511.020000px;}
.y11_c00340{bottom:512.970000px;}
.y36_c00340{bottom:529.170000px;}
.y10_c00340{bottom:530.520000px;}
.y35_c00340{bottom:546.720000px;}
.yf_c00340{bottom:548.670000px;}
.y34_c00340{bottom:565.320000px;}
.ye_c00340{bottom:566.970000px;}
.y33_c00340{bottom:583.770000px;}
.yd_c00340{bottom:585.120000px;}
.y32_c00340{bottom:601.770000px;}
.yc_c00340{bottom:602.820000px;}
.y31_c00340{bottom:619.620000px;}
.yb_c00340{bottom:620.970000px;}
.y30_c00340{bottom:637.920000px;}
.ya_c00340{bottom:639.270000px;}
.y2f_c00340{bottom:656.370000px;}
.y9_c00340{bottom:657.420000px;}
.y8_c00340{bottom:674.670000px;}
.y2e_c00340{bottom:674.970000px;}
.y2d_c00340{bottom:692.220000px;}
.y52_c00340{bottom:692.520000px;}
.y7_c00340{bottom:693.120000px;}
.y2c_c00340{bottom:710.370000px;}
.y6_c00340{bottom:710.820000px;}
.y2b_c00340{bottom:728.220000px;}
.y5_c00340{bottom:728.970000px;}
.y4_c00340{bottom:746.520000px;}
.y2a_c00340{bottom:746.820000px;}
.y3_c00340{bottom:764.820000px;}
.y29_c00340{bottom:765.120000px;}
.y2_c00340{bottom:782.970000px;}
.y28_c00340{bottom:783.270000px;}
.y1_c00340{bottom:804.270000px;}
.h7_c00340{height:13.200073px;}
.h8_c00340{height:43.804688px;}
.h4_c00340{height:59.736000px;}
.h2_c00340{height:62.880000px;}
.h3_c00340{height:64.020000px;}
.h6_c00340{height:70.422000px;}
.h5_c00340{height:198.072000px;}
.h0_c00340{height:835.350000px;}
.h1_c00340{height:835.500000px;}
.w2_c00340{width:104.875500px;}
.w1_c00340{width:583.500000px;}
.w0_c00340{width:583.725000px;}
.x0_c00340{left:0.000000px;}
.x3_c00340{left:63.450000px;}
.x2_c00340{left:64.800000px;}
.x4_c00340{left:66.150000px;}
.x6_c00340{left:67.200000px;}
.x7_c00340{left:68.250000px;}
.x9_c00340{left:69.900000px;}
.xa_c00340{left:83.400000px;}
.x5_c00340{left:111.450000px;}
.xb_c00340{left:135.000000px;}
.x8_c00340{left:140.850000px;}
.x1_c00340{left:193.650000px;}
.x16_c00340{left:243.676758px;}
.xf_c00340{left:283.950000px;}
.xc_c00340{left:285.300000px;}
.xd_c00340{left:286.500000px;}
.xe_c00340{left:287.850000px;}
.x10_c00340{left:289.350000px;}
.x11_c00340{left:290.550000px;}
.x12_c00340{left:291.600000px;}
.x13_c00340{left:452.550000px;}
.x14_c00340{left:491.100000px;}
.x15_c00340{left:493.050000px;}
@media print{
.v0_c00340{vertical-align:0.000000pt;}
.v1_c00340{vertical-align:86.400000pt;}
.ls6_c00340{letter-spacing:0.000000pt;}
.ls4_c00340{letter-spacing:2.666667pt;}
.ls5_c00340{letter-spacing:2.880000pt;}
.ls0_c00340{letter-spacing:3.768000pt;}
.ls3_c00340{letter-spacing:4.266667pt;}
.ls1_c00340{letter-spacing:5.333333pt;}
.ls2_c00340{letter-spacing:5.813333pt;}
.ws3_c00340{word-spacing:-19.621333pt;}
.ws2_c00340{word-spacing:-18.080000pt;}
.ws1_c00340{word-spacing:-16.053333pt;}
.ws0_c00340{word-spacing:-12.586667pt;}
.ws4_c00340{word-spacing:0.000000pt;}
._e_c00340{margin-left:-14.880000pt;}
._1b_c00340{margin-left:-13.600000pt;}
._1d_c00340{margin-left:-12.053333pt;}
._16_c00340{margin-left:-10.506667pt;}
._1a_c00340{margin-left:-8.693333pt;}
._15_c00340{margin-left:-7.466667pt;}
._19_c00340{margin-left:-6.506667pt;}
._13_c00340{margin-left:-5.333333pt;}
._d_c00340{margin-left:-4.320000pt;}
._9_c00340{margin-left:-2.773333pt;}
._8_c00340{margin-left:-1.653333pt;}
._7_c00340{width:1.173333pt;}
._6_c00340{width:2.240000pt;}
._3_c00340{width:3.840000pt;}
._5_c00340{width:5.066667pt;}
._4_c00340{width:6.826667pt;}
._f_c00340{width:8.053333pt;}
._1_c00340{width:9.013333pt;}
._c_c00340{width:10.080000pt;}
._0_c00340{width:11.413333pt;}
._1e_c00340{width:12.320000pt;}
._14_c00340{width:13.226667pt;}
._a_c00340{width:14.186667pt;}
._18_c00340{width:18.880000pt;}
._10_c00340{width:21.386667pt;}
._b_c00340{width:23.200000pt;}
._11_c00340{width:24.576000pt;}
._12_c00340{width:26.912000pt;}
._2_c00340{width:30.080000pt;}
._1c_c00340{width:41.173333pt;}
._17_c00340{width:102.133333pt;}
.fs4_c00340{font-size:42.666667pt;}
.fs1_c00340{font-size:50.666667pt;}
.fs0_c00340{font-size:53.333333pt;}
.fs3_c00340{font-size:58.666667pt;}
.fs2_c00340{font-size:168.000000pt;}
.y0_c00340{bottom:0.000000pt;}
.y54_c00340{bottom:2.760000pt;}
.y53_c00340{bottom:6.425217pt;}
.y51_c00340{bottom:34.106667pt;}
.y50_c00340{bottom:50.906667pt;}
.y27_c00340{bottom:53.706667pt;}
.y4f_c00340{bottom:66.906667pt;}
.y26_c00340{bottom:70.240000pt;}
.y4e_c00340{bottom:83.040000pt;}
.y25_c00340{bottom:87.306667pt;}
.y4d_c00340{bottom:99.573333pt;}
.y24_c00340{bottom:102.906667pt;}
.y4c_c00340{bottom:115.706667pt;}
.y23_c00340{bottom:119.306667pt;}
.y4b_c00340{bottom:131.440000pt;}
.y22_c00340{bottom:135.306667pt;}
.y4a_c00340{bottom:147.040000pt;}
.y21_c00340{bottom:150.506667pt;}
.y49_c00340{bottom:163.173333pt;}
.y20_c00340{bottom:167.706667pt;}
.y48_c00340{bottom:180.240000pt;}
.y1f_c00340{bottom:183.840000pt;}
.y47_c00340{bottom:196.240000pt;}
.y1e_c00340{bottom:199.173333pt;}
.y1c_c00340{bottom:210.506667pt;}
.y46_c00340{bottom:212.640000pt;}
.y1d_c00340{bottom:215.973333pt;}
.y45_c00340{bottom:228.506667pt;}
.y44_c00340{bottom:244.240000pt;}
.y43_c00340{bottom:261.040000pt;}
.y1b_c00340{bottom:264.506667pt;}
.y42_c00340{bottom:276.506667pt;}
.y1a_c00340{bottom:280.106667pt;}
.y41_c00340{bottom:293.306667pt;}
.y19_c00340{bottom:296.640000pt;}
.y40_c00340{bottom:309.306667pt;}
.y3f_c00340{bottom:325.706667pt;}
.y18_c00340{bottom:327.306667pt;}
.y3e_c00340{bottom:341.040000pt;}
.y3d_c00340{bottom:357.573333pt;}
.y17_c00340{bottom:359.973333pt;}
.y3c_c00340{bottom:373.840000pt;}
.y16_c00340{bottom:376.240000pt;}
.y3b_c00340{bottom:389.973333pt;}
.y15_c00340{bottom:392.640000pt;}
.y3a_c00340{bottom:406.106667pt;}
.y14_c00340{bottom:408.640000pt;}
.y39_c00340{bottom:422.373333pt;}
.y13_c00340{bottom:424.240000pt;}
.y38_c00340{bottom:437.440000pt;}
.y12_c00340{bottom:440.373333pt;}
.y37_c00340{bottom:454.240000pt;}
.y11_c00340{bottom:455.973333pt;}
.y36_c00340{bottom:470.373333pt;}
.y10_c00340{bottom:471.573333pt;}
.y35_c00340{bottom:485.973333pt;}
.yf_c00340{bottom:487.706667pt;}
.y34_c00340{bottom:502.506667pt;}
.ye_c00340{bottom:503.973333pt;}
.y33_c00340{bottom:518.906667pt;}
.yd_c00340{bottom:520.106667pt;}
.y32_c00340{bottom:534.906667pt;}
.yc_c00340{bottom:535.840000pt;}
.y31_c00340{bottom:550.773333pt;}
.yb_c00340{bottom:551.973333pt;}
.y30_c00340{bottom:567.040000pt;}
.ya_c00340{bottom:568.240000pt;}
.y2f_c00340{bottom:583.440000pt;}
.y9_c00340{bottom:584.373333pt;}
.y8_c00340{bottom:599.706667pt;}
.y2e_c00340{bottom:599.973333pt;}
.y2d_c00340{bottom:615.306667pt;}
.y52_c00340{bottom:615.573333pt;}
.y7_c00340{bottom:616.106667pt;}
.y2c_c00340{bottom:631.440000pt;}
.y6_c00340{bottom:631.840000pt;}
.y2b_c00340{bottom:647.306667pt;}
.y5_c00340{bottom:647.973333pt;}
.y4_c00340{bottom:663.573333pt;}
.y2a_c00340{bottom:663.840000pt;}
.y3_c00340{bottom:679.840000pt;}
.y29_c00340{bottom:680.106667pt;}
.y2_c00340{bottom:695.973333pt;}
.y28_c00340{bottom:696.240000pt;}
.y1_c00340{bottom:714.906667pt;}
.h7_c00340{height:11.733399pt;}
.h8_c00340{height:38.937500pt;}
.h4_c00340{height:53.098667pt;}
.h2_c00340{height:55.893333pt;}
.h3_c00340{height:56.906667pt;}
.h6_c00340{height:62.597333pt;}
.h5_c00340{height:176.064000pt;}
.h0_c00340{height:742.533333pt;}
.h1_c00340{height:742.666667pt;}
.w2_c00340{width:93.222667pt;}
.w1_c00340{width:518.666667pt;}
.w0_c00340{width:518.866667pt;}
.x0_c00340{left:0.000000pt;}
.x3_c00340{left:56.400000pt;}
.x2_c00340{left:57.600000pt;}
.x4_c00340{left:58.800000pt;}
.x6_c00340{left:59.733333pt;}
.x7_c00340{left:60.666667pt;}
.x9_c00340{left:62.133333pt;}
.xa_c00340{left:74.133333pt;}
.x5_c00340{left:99.066667pt;}
.xb_c00340{left:120.000000pt;}
.x8_c00340{left:125.200000pt;}
.x1_c00340{left:172.133333pt;}
.x16_c00340{left:216.601563pt;}
.xf_c00340{left:252.400000pt;}
.xc_c00340{left:253.600000pt;}
.xd_c00340{left:254.666667pt;}
.xe_c00340{left:255.866667pt;}
.x10_c00340{left:257.200000pt;}
.x11_c00340{left:258.266667pt;}
.x12_c00340{left:259.200000pt;}
.x13_c00340{left:402.266667pt;}
.x14_c00340{left:436.533333pt;}
.x15_c00340{left:438.266667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4195a96cee94a5599c5fb84d.woff2')format("woff");}.ff1_c00341{font-family:ff1_c00341;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00341;src:url('chunks/assets/font_9219a16948181d7e2c247d93.woff2')format("woff");}.ff2_c00341{font-family:ff2_c00341;line-height:1.437000;font-style:normal;font-weight:normal;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_deecca6cae1b22c40829a9ae.woff2')format("woff");}.ff3_c00341{font-family:ff3_c00341;line-height:1.437000;font-style:normal;font-weight:normal;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_12df661d0b8ea003fcb2316b.woff2')format("woff");}.ff4_c00341{font-family:ff4_c00341;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00341;src:url('chunks/assets/font_6503a19f6ee6b3bd112ea44d.woff2')format("woff");}.ff5_c00341{font-family:ff5_c00341;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00341;src:url('chunks/assets/font_e2a6a1f979d86de9257bb448.woff2')format("woff");}.ff6_c00341{font-family:ff6_c00341;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00341;src:url('chunks/assets/font_dfb3bcb726d70832edb48303.woff2')format("woff");}.ff7_c00341{font-family:ff7_c00341;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00341;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff8_c00341{font-family:ff8_c00341;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00341{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00341{vertical-align:0.000000px;}
.v1_c00341{vertical-align:82.200000px;}
.ls3_c00341{letter-spacing:0.000000px;}
.ls1_c00341{letter-spacing:0.405000px;}
.ls2_c00341{letter-spacing:2.304000px;}
.ls0_c00341{letter-spacing:3.000000px;}
.ls4_c00341{letter-spacing:6.000000px;}
.sc__c00341{text-shadow:none;}
.sc0_c00341{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00341{-webkit-text-stroke:0px transparent;}
.sc0_c00341{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00341{word-spacing:-32.295000px;}
.ws0_c00341{word-spacing:-20.340000px;}
.ws3_c00341{word-spacing:-18.060000px;}
.ws1_c00341{word-spacing:-14.160000px;}
.ws4_c00341{word-spacing:0.000000px;}
._27_c00341{margin-left:-20.460000px;}
._2a_c00341{margin-left:-17.700000px;}
._25_c00341{margin-left:-16.416000px;}
._24_c00341{margin-left:-15.180000px;}
._1a_c00341{margin-left:-13.572000px;}
._20_c00341{margin-left:-10.572000px;}
._18_c00341{margin-left:-9.480000px;}
._1e_c00341{margin-left:-8.328000px;}
._13_c00341{margin-left:-7.200000px;}
._1b_c00341{margin-left:-5.280000px;}
._e_c00341{margin-left:-3.900000px;}
._16_c00341{margin-left:-2.760000px;}
._d_c00341{margin-left:-1.740000px;}
._10_c00341{width:1.080000px;}
._7_c00341{width:2.160000px;}
._9_c00341{width:3.180000px;}
._11_c00341{width:4.200000px;}
._b_c00341{width:5.580000px;}
._26_c00341{width:6.660000px;}
._12_c00341{width:7.860000px;}
._c_c00341{width:9.000000px;}
._14_c00341{width:10.680000px;}
._19_c00341{width:11.808000px;}
._f_c00341{width:13.140000px;}
._1_c00341{width:14.700000px;}
._2_c00341{width:16.440000px;}
._29_c00341{width:19.680000px;}
._5_c00341{width:21.060000px;}
._4_c00341{width:22.560000px;}
._21_c00341{width:23.700000px;}
._3_c00341{width:25.080000px;}
._8_c00341{width:27.120000px;}
._1f_c00341{width:28.200000px;}
._22_c00341{width:29.340000px;}
._28_c00341{width:30.360000px;}
._a_c00341{width:32.460000px;}
._23_c00341{width:35.460000px;}
._1d_c00341{width:38.100000px;}
._2b_c00341{width:45.900000px;}
._17_c00341{width:50.220000px;}
._1c_c00341{width:55.320000px;}
._15_c00341{width:56.640000px;}
._6_c00341{width:194.940000px;}
._0_c00341{width:215.640000px;}
.fc2_c00341{color:transparent;}
.fc1_c00341{color:rgb(128,128,128);}
.fc0_c00341{color:rgb(0,0,0);}
.fs2_c00341{font-size:24.000000px;}
.fs1_c00341{font-size:45.000000px;}
.fs5_c00341{font-size:48.000000px;}
.fs0_c00341{font-size:60.000000px;}
.fs3_c00341{font-size:72.000000px;}
.fs4_c00341{font-size:168.000000px;}
.y0_c00341{bottom:0.000000px;}
.y50_c00341{bottom:3.105000px;}
.y4f_c00341{bottom:7.228363px;}
.y4e_c00341{bottom:40.500000px;}
.y2a_c00341{bottom:57.150000px;}
.y4d_c00341{bottom:57.750000px;}
.y29_c00341{bottom:75.600000px;}
.y4c_c00341{bottom:77.700000px;}
.y28_c00341{bottom:93.900000px;}
.y4b_c00341{bottom:95.250000px;}
.y27_c00341{bottom:112.350000px;}
.y4a_c00341{bottom:112.800000px;}
.y26_c00341{bottom:129.900000px;}
.y49_c00341{bottom:131.250000px;}
.y25_c00341{bottom:148.800000px;}
.y48_c00341{bottom:149.250000px;}
.y24_c00341{bottom:166.950000px;}
.y47_c00341{bottom:167.400000px;}
.y23_c00341{bottom:184.950000px;}
.y46_c00341{bottom:185.400000px;}
.y22_c00341{bottom:202.800000px;}
.y45_c00341{bottom:203.550000px;}
.y21_c00341{bottom:221.100000px;}
.y44_c00341{bottom:221.700000px;}
.y20_c00341{bottom:239.250000px;}
.y43_c00341{bottom:239.400000px;}
.y42_c00341{bottom:257.550000px;}
.y1f_c00341{bottom:257.850000px;}
.y1e_c00341{bottom:275.400000px;}
.y41_c00341{bottom:275.850000px;}
.y1d_c00341{bottom:293.550000px;}
.y40_c00341{bottom:293.700000px;}
.y3f_c00341{bottom:311.850000px;}
.y1c_c00341{bottom:312.150000px;}
.y1b_c00341{bottom:329.850000px;}
.y3e_c00341{bottom:348.300000px;}
.y1a_c00341{bottom:349.200000px;}
.y3d_c00341{bottom:366.150000px;}
.y19_c00341{bottom:366.450000px;}
.y18_c00341{bottom:384.300000px;}
.y3c_c00341{bottom:384.450000px;}
.y17_c00341{bottom:402.300000px;}
.y3b_c00341{bottom:402.750000px;}
.y16_c00341{bottom:420.600000px;}
.y3a_c00341{bottom:438.750000px;}
.y15_c00341{bottom:439.050000px;}
.y39_c00341{bottom:456.750000px;}
.y14_c00341{bottom:457.350000px;}
.y38_c00341{bottom:475.200000px;}
.y13_c00341{bottom:475.500000px;}
.y37_c00341{bottom:493.200000px;}
.y12_c00341{bottom:493.350000px;}
.y36_c00341{bottom:511.050000px;}
.y11_c00341{bottom:511.950000px;}
.y35_c00341{bottom:526.950000px;}
.y10_c00341{bottom:529.500000px;}
.yf_c00341{bottom:547.800000px;}
.ye_c00341{bottom:565.950000px;}
.yd_c00341{bottom:583.650000px;}
.y34_c00341{bottom:583.950000px;}
.y33_c00341{bottom:602.400000px;}
.yc_c00341{bottom:603.000000px;}
.y32_c00341{bottom:619.950000px;}
.yb_c00341{bottom:620.400000px;}
.y31_c00341{bottom:637.650000px;}
.ya_c00341{bottom:638.850000px;}
.y9_c00341{bottom:657.000000px;}
.y30_c00341{bottom:671.250000px;}
.y8_c00341{bottom:673.950000px;}
.y7_c00341{bottom:692.250000px;}
.y2f_c00341{bottom:710.100000px;}
.y6_c00341{bottom:711.150000px;}
.y2e_c00341{bottom:728.250000px;}
.y5_c00341{bottom:729.300000px;}
.y2d_c00341{bottom:746.250000px;}
.y4_c00341{bottom:747.300000px;}
.y2c_c00341{bottom:764.100000px;}
.y3_c00341{bottom:765.450000px;}
.y2b_c00341{bottom:782.700000px;}
.y2_c00341{bottom:783.300000px;}
.y1_c00341{bottom:803.250000px;}
.h6_c00341{height:13.200074px;}
.h7_c00341{height:43.804688px;}
.h3_c00341{height:62.880000px;}
.h2_c00341{height:64.020000px;}
.h4_c00341{height:70.664062px;}
.h5_c00341{height:169.312500px;}
.h0_c00341{height:831.600000px;}
.h1_c00341{height:831.750000px;}
.w2_c00341{width:104.875500px;}
.w1_c00341{width:556.500000px;}
.w0_c00341{width:556.725000px;}
.x0_c00341{left:0.000000px;}
.x2_c00341{left:15.150000px;}
.x5_c00341{left:16.500000px;}
.x6_c00341{left:19.500000px;}
.x4_c00341{left:20.550000px;}
.xa_c00341{left:72.900000px;}
.x8_c00341{left:79.200000px;}
.x7_c00341{left:80.550000px;}
.x9_c00341{left:81.600000px;}
.x1_c00341{left:82.950000px;}
.x3_c00341{left:85.050000px;}
.x15_c00341{left:230.176758px;}
.x13_c00341{left:295.350000px;}
.x12_c00341{left:297.000000px;}
.x11_c00341{left:298.650000px;}
.xc_c00341{left:299.700000px;}
.xb_c00341{left:300.750000px;}
.xe_c00341{left:319.500000px;}
.x10_c00341{left:335.100000px;}
.xf_c00341{left:348.300000px;}
.xd_c00341{left:369.150000px;}
.x14_c00341{left:457.950000px;}
@media print{
.v0_c00341{vertical-align:0.000000pt;}
.v1_c00341{vertical-align:73.066667pt;}
.ls3_c00341{letter-spacing:0.000000pt;}
.ls1_c00341{letter-spacing:0.360000pt;}
.ls2_c00341{letter-spacing:2.048000pt;}
.ls0_c00341{letter-spacing:2.666667pt;}
.ls4_c00341{letter-spacing:5.333333pt;}
.ws2_c00341{word-spacing:-28.706667pt;}
.ws0_c00341{word-spacing:-18.080000pt;}
.ws3_c00341{word-spacing:-16.053333pt;}
.ws1_c00341{word-spacing:-12.586667pt;}
.ws4_c00341{word-spacing:0.000000pt;}
._27_c00341{margin-left:-18.186667pt;}
._2a_c00341{margin-left:-15.733333pt;}
._25_c00341{margin-left:-14.592000pt;}
._24_c00341{margin-left:-13.493333pt;}
._1a_c00341{margin-left:-12.064000pt;}
._20_c00341{margin-left:-9.397333pt;}
._18_c00341{margin-left:-8.426667pt;}
._1e_c00341{margin-left:-7.402667pt;}
._13_c00341{margin-left:-6.400000pt;}
._1b_c00341{margin-left:-4.693333pt;}
._e_c00341{margin-left:-3.466667pt;}
._16_c00341{margin-left:-2.453333pt;}
._d_c00341{margin-left:-1.546667pt;}
._10_c00341{width:0.960000pt;}
._7_c00341{width:1.920000pt;}
._9_c00341{width:2.826667pt;}
._11_c00341{width:3.733333pt;}
._b_c00341{width:4.960000pt;}
._26_c00341{width:5.920000pt;}
._12_c00341{width:6.986667pt;}
._c_c00341{width:8.000000pt;}
._14_c00341{width:9.493333pt;}
._19_c00341{width:10.496000pt;}
._f_c00341{width:11.680000pt;}
._1_c00341{width:13.066667pt;}
._2_c00341{width:14.613333pt;}
._29_c00341{width:17.493333pt;}
._5_c00341{width:18.720000pt;}
._4_c00341{width:20.053333pt;}
._21_c00341{width:21.066667pt;}
._3_c00341{width:22.293333pt;}
._8_c00341{width:24.106667pt;}
._1f_c00341{width:25.066667pt;}
._22_c00341{width:26.080000pt;}
._28_c00341{width:26.986667pt;}
._a_c00341{width:28.853333pt;}
._23_c00341{width:31.520000pt;}
._1d_c00341{width:33.866667pt;}
._2b_c00341{width:40.800000pt;}
._17_c00341{width:44.640000pt;}
._1c_c00341{width:49.173333pt;}
._15_c00341{width:50.346667pt;}
._6_c00341{width:173.280000pt;}
._0_c00341{width:191.680000pt;}
.fs2_c00341{font-size:21.333333pt;}
.fs1_c00341{font-size:40.000000pt;}
.fs5_c00341{font-size:42.666667pt;}
.fs0_c00341{font-size:53.333333pt;}
.fs3_c00341{font-size:64.000000pt;}
.fs4_c00341{font-size:149.333333pt;}
.y0_c00341{bottom:0.000000pt;}
.y50_c00341{bottom:2.760000pt;}
.y4f_c00341{bottom:6.425212pt;}
.y4e_c00341{bottom:36.000000pt;}
.y2a_c00341{bottom:50.800000pt;}
.y4d_c00341{bottom:51.333333pt;}
.y29_c00341{bottom:67.200000pt;}
.y4c_c00341{bottom:69.066667pt;}
.y28_c00341{bottom:83.466667pt;}
.y4b_c00341{bottom:84.666667pt;}
.y27_c00341{bottom:99.866667pt;}
.y4a_c00341{bottom:100.266667pt;}
.y26_c00341{bottom:115.466667pt;}
.y49_c00341{bottom:116.666667pt;}
.y25_c00341{bottom:132.266667pt;}
.y48_c00341{bottom:132.666667pt;}
.y24_c00341{bottom:148.400000pt;}
.y47_c00341{bottom:148.800000pt;}
.y23_c00341{bottom:164.400000pt;}
.y46_c00341{bottom:164.800000pt;}
.y22_c00341{bottom:180.266667pt;}
.y45_c00341{bottom:180.933333pt;}
.y21_c00341{bottom:196.533333pt;}
.y44_c00341{bottom:197.066667pt;}
.y20_c00341{bottom:212.666667pt;}
.y43_c00341{bottom:212.800000pt;}
.y42_c00341{bottom:228.933333pt;}
.y1f_c00341{bottom:229.200000pt;}
.y1e_c00341{bottom:244.800000pt;}
.y41_c00341{bottom:245.200000pt;}
.y1d_c00341{bottom:260.933333pt;}
.y40_c00341{bottom:261.066667pt;}
.y3f_c00341{bottom:277.200000pt;}
.y1c_c00341{bottom:277.466667pt;}
.y1b_c00341{bottom:293.200000pt;}
.y3e_c00341{bottom:309.600000pt;}
.y1a_c00341{bottom:310.400000pt;}
.y3d_c00341{bottom:325.466667pt;}
.y19_c00341{bottom:325.733333pt;}
.y18_c00341{bottom:341.600000pt;}
.y3c_c00341{bottom:341.733333pt;}
.y17_c00341{bottom:357.600000pt;}
.y3b_c00341{bottom:358.000000pt;}
.y16_c00341{bottom:373.866667pt;}
.y3a_c00341{bottom:390.000000pt;}
.y15_c00341{bottom:390.266667pt;}
.y39_c00341{bottom:406.000000pt;}
.y14_c00341{bottom:406.533333pt;}
.y38_c00341{bottom:422.400000pt;}
.y13_c00341{bottom:422.666667pt;}
.y37_c00341{bottom:438.400000pt;}
.y12_c00341{bottom:438.533333pt;}
.y36_c00341{bottom:454.266667pt;}
.y11_c00341{bottom:455.066667pt;}
.y35_c00341{bottom:468.400000pt;}
.y10_c00341{bottom:470.666667pt;}
.yf_c00341{bottom:486.933333pt;}
.ye_c00341{bottom:503.066667pt;}
.yd_c00341{bottom:518.800000pt;}
.y34_c00341{bottom:519.066667pt;}
.y33_c00341{bottom:535.466667pt;}
.yc_c00341{bottom:536.000000pt;}
.y32_c00341{bottom:551.066667pt;}
.yb_c00341{bottom:551.466667pt;}
.y31_c00341{bottom:566.800000pt;}
.ya_c00341{bottom:567.866667pt;}
.y9_c00341{bottom:584.000000pt;}
.y30_c00341{bottom:596.666667pt;}
.y8_c00341{bottom:599.066667pt;}
.y7_c00341{bottom:615.333333pt;}
.y2f_c00341{bottom:631.200000pt;}
.y6_c00341{bottom:632.133333pt;}
.y2e_c00341{bottom:647.333333pt;}
.y5_c00341{bottom:648.266667pt;}
.y2d_c00341{bottom:663.333333pt;}
.y4_c00341{bottom:664.266667pt;}
.y2c_c00341{bottom:679.200000pt;}
.y3_c00341{bottom:680.400000pt;}
.y2b_c00341{bottom:695.733333pt;}
.y2_c00341{bottom:696.266667pt;}
.y1_c00341{bottom:714.000000pt;}
.h6_c00341{height:11.733399pt;}
.h7_c00341{height:38.937500pt;}
.h3_c00341{height:55.893333pt;}
.h2_c00341{height:56.906667pt;}
.h4_c00341{height:62.812500pt;}
.h5_c00341{height:150.500000pt;}
.h0_c00341{height:739.200000pt;}
.h1_c00341{height:739.333333pt;}
.w2_c00341{width:93.222667pt;}
.w1_c00341{width:494.666667pt;}
.w0_c00341{width:494.866667pt;}
.x0_c00341{left:0.000000pt;}
.x2_c00341{left:13.466667pt;}
.x5_c00341{left:14.666667pt;}
.x6_c00341{left:17.333333pt;}
.x4_c00341{left:18.266667pt;}
.xa_c00341{left:64.800000pt;}
.x8_c00341{left:70.400000pt;}
.x7_c00341{left:71.600000pt;}
.x9_c00341{left:72.533333pt;}
.x1_c00341{left:73.733333pt;}
.x3_c00341{left:75.600000pt;}
.x15_c00341{left:204.601563pt;}
.x13_c00341{left:262.533333pt;}
.x12_c00341{left:264.000000pt;}
.x11_c00341{left:265.466667pt;}
.xc_c00341{left:266.400000pt;}
.xb_c00341{left:267.333333pt;}
.xe_c00341{left:284.000000pt;}
.x10_c00341{left:297.866667pt;}
.xf_c00341{left:309.600000pt;}
.xd_c00341{left:328.133333pt;}
.x14_c00341{left:407.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_faa226670e4a592cd24ae898.woff2')format("woff");}.ff1_c00342{font-family:ff1_c00342;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00342;src:url('chunks/assets/font_06cc255595f45f3b4519d0ac.woff2')format("woff");}.ff2_c00342{font-family:ff2_c00342;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00342;src:url('chunks/assets/font_f3790c11fa1b72b5ebd5d0f3.woff2')format("woff");}.ff3_c00342{font-family:ff3_c00342;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00342;src:url('chunks/assets/font_6d12232ed0522b6a49b210e4.woff2')format("woff");}.ff4_c00342{font-family:ff4_c00342;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00342;src:url('chunks/assets/font_36467da296846616da44bc3e.woff2')format("woff");}.ff5_c00342{font-family:ff5_c00342;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00342;src:url('chunks/assets/font_ba8436a736ab1296ccf8e058.woff2')format("woff");}.ff6_c00342{font-family:ff6_c00342;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00342;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff7_c00342{font-family:ff7_c00342;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00342{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00342{vertical-align:0.000000px;}
.ls4_c00342{letter-spacing:0.000000px;}
.ls0_c00342{letter-spacing:1.605000px;}
.ls2_c00342{letter-spacing:3.000000px;}
.ls1_c00342{letter-spacing:6.000000px;}
.ls5_c00342{letter-spacing:9.000000px;}
.ls3_c00342{letter-spacing:15.000000px;}
.sc__c00342{text-shadow:none;}
.sc0_c00342{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00342{-webkit-text-stroke:0px transparent;}
.sc0_c00342{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00342{word-spacing:-35.808000px;}
.ws1_c00342{word-spacing:-32.295000px;}
.ws2_c00342{word-spacing:-20.340000px;}
.ws4_c00342{word-spacing:-18.813000px;}
.ws0_c00342{word-spacing:-14.160000px;}
.ws5_c00342{word-spacing:0.000000px;}
._21_c00342{margin-left:-20.988000px;}
._2a_c00342{margin-left:-18.744000px;}
._20_c00342{margin-left:-13.515000px;}
._1e_c00342{margin-left:-12.327000px;}
._17_c00342{margin-left:-10.500000px;}
._1d_c00342{margin-left:-8.718000px;}
._f_c00342{margin-left:-7.371000px;}
._b_c00342{margin-left:-5.592000px;}
._9_c00342{margin-left:-4.140000px;}
._1c_c00342{margin-left:-3.027000px;}
._8_c00342{margin-left:-1.968000px;}
._7_c00342{width:1.356000px;}
._5_c00342{width:2.394000px;}
._0_c00342{width:3.717000px;}
._6_c00342{width:4.788000px;}
._18_c00342{width:5.883000px;}
._14_c00342{width:7.371000px;}
._3_c00342{width:8.379000px;}
._13_c00342{width:9.480000px;}
._2_c00342{width:10.584000px;}
._c_c00342{width:11.904000px;}
._2d_c00342{width:12.948000px;}
._1b_c00342{width:13.965000px;}
._24_c00342{width:15.072000px;}
._e_c00342{width:16.779000px;}
._10_c00342{width:18.369000px;}
._15_c00342{width:19.740000px;}
._28_c00342{width:21.408000px;}
._34_c00342{width:22.926000px;}
._12_c00342{width:24.240000px;}
._19_c00342{width:26.199000px;}
._25_c00342{width:27.378000px;}
._11_c00342{width:29.958000px;}
._27_c00342{width:31.602000px;}
._35_c00342{width:37.347000px;}
._4_c00342{width:40.899000px;}
._33_c00342{width:45.699000px;}
._30_c00342{width:47.235000px;}
._32_c00342{width:49.587000px;}
._31_c00342{width:51.078000px;}
._23_c00342{width:52.395000px;}
._2c_c00342{width:54.006000px;}
._2f_c00342{width:55.545000px;}
._2b_c00342{width:57.168000px;}
._26_c00342{width:58.602000px;}
._29_c00342{width:59.988000px;}
._2e_c00342{width:61.656000px;}
._22_c00342{width:63.579000px;}
._a_c00342{width:64.788000px;}
._d_c00342{width:66.624000px;}
._1a_c00342{width:67.896000px;}
._16_c00342{width:69.375000px;}
._1_c00342{width:128.205000px;}
._1f_c00342{width:156.447000px;}
._36_c00342{width:191.706000px;}
.fc2_c00342{color:transparent;}
.fc1_c00342{color:rgb(128,128,128);}
.fc0_c00342{color:rgb(0,0,0);}
.fs4_c00342{font-size:36.000000px;}
.fs2_c00342{font-size:45.000000px;}
.fs5_c00342{font-size:48.000000px;}
.fs3_c00342{font-size:54.000000px;}
.fs1_c00342{font-size:60.000000px;}
.fs0_c00342{font-size:63.000000px;}
.y0_c00342{bottom:0.000000px;}
.y2d_c00342{bottom:3.105000px;}
.y2c_c00342{bottom:7.228369px;}
.y2b_c00342{bottom:37.170000px;}
.y2a_c00342{bottom:58.620000px;}
.y29_c00342{bottom:77.970000px;}
.y28_c00342{bottom:95.820000px;}
.y27_c00342{bottom:113.970000px;}
.y26_c00342{bottom:131.670000px;}
.y25_c00342{bottom:150.570000px;}
.y24_c00342{bottom:166.620000px;}
.y23_c00342{bottom:186.270000px;}
.y22_c00342{bottom:203.820000px;}
.y21_c00342{bottom:222.720000px;}
.y20_c00342{bottom:239.970000px;}
.y1f_c00342{bottom:258.870000px;}
.y1e_c00342{bottom:277.320000px;}
.y1d_c00342{bottom:295.020000px;}
.y1c_c00342{bottom:312.120000px;}
.y1b_c00342{bottom:330.420000px;}
.y1a_c00342{bottom:348.870000px;}
.y19_c00342{bottom:366.120000px;}
.y18_c00342{bottom:383.970000px;}
.y17_c00342{bottom:402.270000px;}
.y16_c00342{bottom:421.170000px;}
.y15_c00342{bottom:439.320000px;}
.y14_c00342{bottom:456.570000px;}
.y13_c00342{bottom:475.770000px;}
.y12_c00342{bottom:493.020000px;}
.y11_c00342{bottom:511.020000px;}
.y10_c00342{bottom:529.470000px;}
.yf_c00342{bottom:547.020000px;}
.ye_c00342{bottom:565.020000px;}
.yd_c00342{bottom:583.470000px;}
.yc_c00342{bottom:601.020000px;}
.yb_c00342{bottom:619.320000px;}
.ya_c00342{bottom:637.170000px;}
.y9_c00342{bottom:655.020000px;}
.y8_c00342{bottom:673.620000px;}
.y7_c00342{bottom:691.470000px;}
.y6_c00342{bottom:708.720000px;}
.y5_c00342{bottom:726.870000px;}
.y4_c00342{bottom:744.870000px;}
.y3_c00342{bottom:763.320000px;}
.y2_c00342{bottom:781.620000px;}
.y1_c00342{bottom:801.870000px;}
.h5_c00342{height:13.200073px;}
.h6_c00342{height:43.804688px;}
.h3_c00342{height:62.880000px;}
.h4_c00342{height:64.020000px;}
.h2_c00342{height:66.024000px;}
.h0_c00342{height:835.350000px;}
.h1_c00342{height:835.500000px;}
.w2_c00342{width:104.875500px;}
.w1_c00342{width:583.500000px;}
.w0_c00342{width:583.725000px;}
.x0_c00342{left:0.000000px;}
.x6_c00342{left:67.200000px;}
.x3_c00342{left:72.000000px;}
.x4_c00342{left:73.200000px;}
.x2_c00342{left:74.550000px;}
.x5_c00342{left:75.600000px;}
.x7_c00342{left:76.950000px;}
.x1_c00342{left:157.200000px;}
.x9_c00342{left:243.676758px;}
.x8_c00342{left:459.300000px;}
@media print{
.v0_c00342{vertical-align:0.000000pt;}
.ls4_c00342{letter-spacing:0.000000pt;}
.ls0_c00342{letter-spacing:1.426667pt;}
.ls2_c00342{letter-spacing:2.666667pt;}
.ls1_c00342{letter-spacing:5.333333pt;}
.ls5_c00342{letter-spacing:8.000000pt;}
.ls3_c00342{letter-spacing:13.333333pt;}
.ws3_c00342{word-spacing:-31.829333pt;}
.ws1_c00342{word-spacing:-28.706667pt;}
.ws2_c00342{word-spacing:-18.080000pt;}
.ws4_c00342{word-spacing:-16.722667pt;}
.ws0_c00342{word-spacing:-12.586667pt;}
.ws5_c00342{word-spacing:0.000000pt;}
._21_c00342{margin-left:-18.656000pt;}
._2a_c00342{margin-left:-16.661333pt;}
._20_c00342{margin-left:-12.013333pt;}
._1e_c00342{margin-left:-10.957333pt;}
._17_c00342{margin-left:-9.333333pt;}
._1d_c00342{margin-left:-7.749333pt;}
._f_c00342{margin-left:-6.552000pt;}
._b_c00342{margin-left:-4.970667pt;}
._9_c00342{margin-left:-3.680000pt;}
._1c_c00342{margin-left:-2.690667pt;}
._8_c00342{margin-left:-1.749333pt;}
._7_c00342{width:1.205333pt;}
._5_c00342{width:2.128000pt;}
._0_c00342{width:3.304000pt;}
._6_c00342{width:4.256000pt;}
._18_c00342{width:5.229333pt;}
._14_c00342{width:6.552000pt;}
._3_c00342{width:7.448000pt;}
._13_c00342{width:8.426667pt;}
._2_c00342{width:9.408000pt;}
._c_c00342{width:10.581333pt;}
._2d_c00342{width:11.509333pt;}
._1b_c00342{width:12.413333pt;}
._24_c00342{width:13.397333pt;}
._e_c00342{width:14.914667pt;}
._10_c00342{width:16.328000pt;}
._15_c00342{width:17.546667pt;}
._28_c00342{width:19.029333pt;}
._34_c00342{width:20.378667pt;}
._12_c00342{width:21.546667pt;}
._19_c00342{width:23.288000pt;}
._25_c00342{width:24.336000pt;}
._11_c00342{width:26.629333pt;}
._27_c00342{width:28.090667pt;}
._35_c00342{width:33.197333pt;}
._4_c00342{width:36.354667pt;}
._33_c00342{width:40.621333pt;}
._30_c00342{width:41.986667pt;}
._32_c00342{width:44.077333pt;}
._31_c00342{width:45.402667pt;}
._23_c00342{width:46.573333pt;}
._2c_c00342{width:48.005333pt;}
._2f_c00342{width:49.373333pt;}
._2b_c00342{width:50.816000pt;}
._26_c00342{width:52.090667pt;}
._29_c00342{width:53.322667pt;}
._2e_c00342{width:54.805333pt;}
._22_c00342{width:56.514667pt;}
._a_c00342{width:57.589333pt;}
._d_c00342{width:59.221333pt;}
._1a_c00342{width:60.352000pt;}
._16_c00342{width:61.666667pt;}
._1_c00342{width:113.960000pt;}
._1f_c00342{width:139.064000pt;}
._36_c00342{width:170.405333pt;}
.fs4_c00342{font-size:32.000000pt;}
.fs2_c00342{font-size:40.000000pt;}
.fs5_c00342{font-size:42.666667pt;}
.fs3_c00342{font-size:48.000000pt;}
.fs1_c00342{font-size:53.333333pt;}
.fs0_c00342{font-size:56.000000pt;}
.y0_c00342{bottom:0.000000pt;}
.y2d_c00342{bottom:2.760000pt;}
.y2c_c00342{bottom:6.425217pt;}
.y2b_c00342{bottom:33.040000pt;}
.y2a_c00342{bottom:52.106667pt;}
.y29_c00342{bottom:69.306667pt;}
.y28_c00342{bottom:85.173333pt;}
.y27_c00342{bottom:101.306667pt;}
.y26_c00342{bottom:117.040000pt;}
.y25_c00342{bottom:133.840000pt;}
.y24_c00342{bottom:148.106667pt;}
.y23_c00342{bottom:165.573333pt;}
.y22_c00342{bottom:181.173333pt;}
.y21_c00342{bottom:197.973333pt;}
.y20_c00342{bottom:213.306667pt;}
.y1f_c00342{bottom:230.106667pt;}
.y1e_c00342{bottom:246.506667pt;}
.y1d_c00342{bottom:262.240000pt;}
.y1c_c00342{bottom:277.440000pt;}
.y1b_c00342{bottom:293.706667pt;}
.y1a_c00342{bottom:310.106667pt;}
.y19_c00342{bottom:325.440000pt;}
.y18_c00342{bottom:341.306667pt;}
.y17_c00342{bottom:357.573333pt;}
.y16_c00342{bottom:374.373333pt;}
.y15_c00342{bottom:390.506667pt;}
.y14_c00342{bottom:405.840000pt;}
.y13_c00342{bottom:422.906667pt;}
.y12_c00342{bottom:438.240000pt;}
.y11_c00342{bottom:454.240000pt;}
.y10_c00342{bottom:470.640000pt;}
.yf_c00342{bottom:486.240000pt;}
.ye_c00342{bottom:502.240000pt;}
.yd_c00342{bottom:518.640000pt;}
.yc_c00342{bottom:534.240000pt;}
.yb_c00342{bottom:550.506667pt;}
.ya_c00342{bottom:566.373333pt;}
.y9_c00342{bottom:582.240000pt;}
.y8_c00342{bottom:598.773333pt;}
.y7_c00342{bottom:614.640000pt;}
.y6_c00342{bottom:629.973333pt;}
.y5_c00342{bottom:646.106667pt;}
.y4_c00342{bottom:662.106667pt;}
.y3_c00342{bottom:678.506667pt;}
.y2_c00342{bottom:694.773333pt;}
.y1_c00342{bottom:712.773333pt;}
.h5_c00342{height:11.733399pt;}
.h6_c00342{height:38.937500pt;}
.h3_c00342{height:55.893333pt;}
.h4_c00342{height:56.906667pt;}
.h2_c00342{height:58.688000pt;}
.h0_c00342{height:742.533333pt;}
.h1_c00342{height:742.666667pt;}
.w2_c00342{width:93.222667pt;}
.w1_c00342{width:518.666667pt;}
.w0_c00342{width:518.866667pt;}
.x0_c00342{left:0.000000pt;}
.x6_c00342{left:59.733333pt;}
.x3_c00342{left:64.000000pt;}
.x4_c00342{left:65.066667pt;}
.x2_c00342{left:66.266667pt;}
.x5_c00342{left:67.200000pt;}
.x7_c00342{left:68.400000pt;}
.x1_c00342{left:139.733333pt;}
.x9_c00342{left:216.601563pt;}
.x8_c00342{left:408.266667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_6b4be5a045607efa91804de9.woff2')format("woff");}.ff1_c00343{font-family:ff1_c00343;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00343;src:url('chunks/assets/font_375123b74e728869d740c857.woff2')format("woff");}.ff2_c00343{font-family:ff2_c00343;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00343;src:url('chunks/assets/font_09e451725aa14075a6f2465d.woff2')format("woff");}.ff3_c00343{font-family:ff3_c00343;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00343;src:url('chunks/assets/font_fd8f8833a35052a9244a0036.woff2')format("woff");}.ff4_c00343{font-family:ff4_c00343;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00343;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff5_c00343{font-family:ff5_c00343;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00343{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00343{vertical-align:0.000000px;}
.v1_c00343{vertical-align:93.600000px;}
.ls7_c00343{letter-spacing:0.000000px;}
.ls6_c00343{letter-spacing:3.000000px;}
.ls0_c00343{letter-spacing:6.000000px;}
.ls1_c00343{letter-spacing:6.060000px;}
.ls4_c00343{letter-spacing:9.000000px;}
.ls3_c00343{letter-spacing:10.680000px;}
.ls5_c00343{letter-spacing:80.463000px;}
.ls2_c00343{letter-spacing:81.540000px;}
.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;}
}
.ws2_c00343{word-spacing:-20.340000px;}
.ws0_c00343{word-spacing:-18.060000px;}
.ws1_c00343{word-spacing:-14.160000px;}
.ws4_c00343{word-spacing:0.000000px;}
.ws3_c00343{word-spacing:0.180000px;}
._18_c00343{margin-left:-14.100000px;}
._1e_c00343{margin-left:-12.900000px;}
._19_c00343{margin-left:-11.880000px;}
._17_c00343{margin-left:-10.740000px;}
._11_c00343{margin-left:-9.300000px;}
._13_c00343{margin-left:-7.740000px;}
._e_c00343{margin-left:-6.420000px;}
._c_c00343{margin-left:-4.740000px;}
._14_c00343{margin-left:-3.720000px;}
._b_c00343{margin-left:-2.580000px;}
._4_c00343{margin-left:-1.080000px;}
._9_c00343{width:1.140000px;}
._1_c00343{width:2.220000px;}
._2_c00343{width:3.300000px;}
._0_c00343{width:4.380000px;}
._8_c00343{width:5.700000px;}
._5_c00343{width:6.840000px;}
._7_c00343{width:8.100000px;}
._6_c00343{width:10.020000px;}
._10_c00343{width:11.820000px;}
._1a_c00343{width:13.020000px;}
._d_c00343{width:14.340000px;}
._20_c00343{width:15.780000px;}
._1c_c00343{width:17.880000px;}
._1f_c00343{width:19.320000px;}
._3_c00343{width:20.760000px;}
._f_c00343{width:22.680000px;}
._a_c00343{width:24.660000px;}
._26_c00343{width:26.160000px;}
._24_c00343{width:30.180000px;}
._1d_c00343{width:32.520000px;}
._22_c00343{width:39.240000px;}
._1b_c00343{width:42.180000px;}
._25_c00343{width:44.100000px;}
._16_c00343{width:48.600000px;}
._15_c00343{width:50.520000px;}
._23_c00343{width:81.360000px;}
._12_c00343{width:85.440000px;}
._21_c00343{width:123.480000px;}
.fc2_c00343{color:transparent;}
.fc1_c00343{color:rgb(128,128,128);}
.fc0_c00343{color:rgb(0,0,0);}
.fs3_c00343{font-size:48.000000px;}
.fs0_c00343{font-size:60.000000px;}
.fs1_c00343{font-size:66.000000px;}
.fs2_c00343{font-size:213.000000px;}
.y0_c00343{bottom:0.000000px;}
.y47_c00343{bottom:3.105000px;}
.y46_c00343{bottom:7.228363px;}
.y45_c00343{bottom:60.450000px;}
.y32_c00343{bottom:63.150000px;}
.y31_c00343{bottom:82.050000px;}
.y44_c00343{bottom:98.850000px;}
.y30_c00343{bottom:99.600000px;}
.y2f_c00343{bottom:117.750000px;}
.y2e_c00343{bottom:135.000000px;}
.y43_c00343{bottom:135.300000px;}
.y2d_c00343{bottom:153.600000px;}
.y2c_c00343{bottom:171.450000px;}
.y42_c00343{bottom:171.750000px;}
.y40_c00343{bottom:184.200000px;}
.y2b_c00343{bottom:189.600000px;}
.y41_c00343{bottom:189.900000px;}
.y2a_c00343{bottom:207.450000px;}
.y29_c00343{bottom:225.750000px;}
.y28_c00343{bottom:243.900000px;}
.y3f_c00343{bottom:244.050000px;}
.y3e_c00343{bottom:261.600000px;}
.y27_c00343{bottom:262.200000px;}
.y26_c00343{bottom:280.350000px;}
.y3d_c00343{bottom:280.500000px;}
.y25_c00343{bottom:297.900000px;}
.y3c_c00343{bottom:298.350000px;}
.y24_c00343{bottom:315.900000px;}
.y3b_c00343{bottom:333.150000px;}
.y23_c00343{bottom:334.350000px;}
.y22_c00343{bottom:352.350000px;}
.y3a_c00343{bottom:369.600000px;}
.y21_c00343{bottom:370.800000px;}
.y39_c00343{bottom:388.500000px;}
.y20_c00343{bottom:389.100000px;}
.y38_c00343{bottom:406.650000px;}
.y1f_c00343{bottom:406.950000px;}
.y37_c00343{bottom:424.950000px;}
.y1e_c00343{bottom:425.250000px;}
.y1d_c00343{bottom:443.100000px;}
.y36_c00343{bottom:461.250000px;}
.y1c_c00343{bottom:461.400000px;}
.y1b_c00343{bottom:479.550000px;}
.y1a_c00343{bottom:497.700000px;}
.y19_c00343{bottom:516.000000px;}
.y18_c00343{bottom:534.150000px;}
.y35_c00343{bottom:551.850000px;}
.y17_c00343{bottom:552.150000px;}
.y34_c00343{bottom:570.000000px;}
.y16_c00343{bottom:570.300000px;}
.y15_c00343{bottom:587.550000px;}
.y33_c00343{bottom:588.300000px;}
.y14_c00343{bottom:606.750000px;}
.y13_c00343{bottom:624.600000px;}
.yb_c00343{bottom:625.050000px;}
.y12_c00343{bottom:642.300000px;}
.ya_c00343{bottom:642.600000px;}
.y9_c00343{bottom:660.750000px;}
.y11_c00343{bottom:678.300000px;}
.y8_c00343{bottom:678.750000px;}
.y10_c00343{bottom:696.900000px;}
.y7_c00343{bottom:697.500000px;}
.y6_c00343{bottom:715.200000px;}
.yf_c00343{bottom:715.500000px;}
.ye_c00343{bottom:733.050000px;}
.y5_c00343{bottom:733.650000px;}
.y4_c00343{bottom:751.500000px;}
.yd_c00343{bottom:769.050000px;}
.y3_c00343{bottom:769.800000px;}
.yc_c00343{bottom:787.650000px;}
.y2_c00343{bottom:788.100000px;}
.y1_c00343{bottom:804.900000px;}
.h6_c00343{height:13.200074px;}
.h7_c00343{height:43.804688px;}
.h2_c00343{height:62.880000px;}
.h3_c00343{height:64.020000px;}
.h4_c00343{height:69.168000px;}
.h5_c00343{height:223.224000px;}
.h0_c00343{height:845.100000px;}
.h1_c00343{height:845.250000px;}
.w2_c00343{width:104.875500px;}
.w0_c00343{width:565.350000px;}
.w1_c00343{width:565.500000px;}
.x0_c00343{left:0.000000px;}
.x11_c00343{left:14.400000px;}
.x12_c00343{left:15.450000px;}
.xb_c00343{left:75.900000px;}
.x3_c00343{left:78.000000px;}
.x2_c00343{left:79.050000px;}
.x1_c00343{left:84.750000px;}
.xd_c00343{left:96.150000px;}
.x10_c00343{left:119.400000px;}
.xe_c00343{left:135.300000px;}
.xc_c00343{left:153.600000px;}
.xf_c00343{left:155.550000px;}
.x13_c00343{left:234.489258px;}
.xa_c00343{left:295.950000px;}
.x9_c00343{left:297.000000px;}
.x8_c00343{left:298.950000px;}
.x5_c00343{left:300.300000px;}
.x6_c00343{left:301.350000px;}
.x4_c00343{left:303.450000px;}
.x7_c00343{left:319.200000px;}
@media print{
.v0_c00343{vertical-align:0.000000pt;}
.v1_c00343{vertical-align:83.200000pt;}
.ls7_c00343{letter-spacing:0.000000pt;}
.ls6_c00343{letter-spacing:2.666667pt;}
.ls0_c00343{letter-spacing:5.333333pt;}
.ls1_c00343{letter-spacing:5.386667pt;}
.ls4_c00343{letter-spacing:8.000000pt;}
.ls3_c00343{letter-spacing:9.493333pt;}
.ls5_c00343{letter-spacing:71.522667pt;}
.ls2_c00343{letter-spacing:72.480000pt;}
.ws2_c00343{word-spacing:-18.080000pt;}
.ws0_c00343{word-spacing:-16.053333pt;}
.ws1_c00343{word-spacing:-12.586667pt;}
.ws4_c00343{word-spacing:0.000000pt;}
.ws3_c00343{word-spacing:0.160000pt;}
._18_c00343{margin-left:-12.533333pt;}
._1e_c00343{margin-left:-11.466667pt;}
._19_c00343{margin-left:-10.560000pt;}
._17_c00343{margin-left:-9.546667pt;}
._11_c00343{margin-left:-8.266667pt;}
._13_c00343{margin-left:-6.880000pt;}
._e_c00343{margin-left:-5.706667pt;}
._c_c00343{margin-left:-4.213333pt;}
._14_c00343{margin-left:-3.306667pt;}
._b_c00343{margin-left:-2.293333pt;}
._4_c00343{margin-left:-0.960000pt;}
._9_c00343{width:1.013333pt;}
._1_c00343{width:1.973333pt;}
._2_c00343{width:2.933333pt;}
._0_c00343{width:3.893333pt;}
._8_c00343{width:5.066667pt;}
._5_c00343{width:6.080000pt;}
._7_c00343{width:7.200000pt;}
._6_c00343{width:8.906667pt;}
._10_c00343{width:10.506667pt;}
._1a_c00343{width:11.573333pt;}
._d_c00343{width:12.746667pt;}
._20_c00343{width:14.026667pt;}
._1c_c00343{width:15.893333pt;}
._1f_c00343{width:17.173333pt;}
._3_c00343{width:18.453333pt;}
._f_c00343{width:20.160000pt;}
._a_c00343{width:21.920000pt;}
._26_c00343{width:23.253333pt;}
._24_c00343{width:26.826667pt;}
._1d_c00343{width:28.906667pt;}
._22_c00343{width:34.880000pt;}
._1b_c00343{width:37.493333pt;}
._25_c00343{width:39.200000pt;}
._16_c00343{width:43.200000pt;}
._15_c00343{width:44.906667pt;}
._23_c00343{width:72.320000pt;}
._12_c00343{width:75.946667pt;}
._21_c00343{width:109.760000pt;}
.fs3_c00343{font-size:42.666667pt;}
.fs0_c00343{font-size:53.333333pt;}
.fs1_c00343{font-size:58.666667pt;}
.fs2_c00343{font-size:189.333333pt;}
.y0_c00343{bottom:0.000000pt;}
.y47_c00343{bottom:2.760000pt;}
.y46_c00343{bottom:6.425212pt;}
.y45_c00343{bottom:53.733333pt;}
.y32_c00343{bottom:56.133333pt;}
.y31_c00343{bottom:72.933333pt;}
.y44_c00343{bottom:87.866667pt;}
.y30_c00343{bottom:88.533333pt;}
.y2f_c00343{bottom:104.666667pt;}
.y2e_c00343{bottom:120.000000pt;}
.y43_c00343{bottom:120.266667pt;}
.y2d_c00343{bottom:136.533333pt;}
.y2c_c00343{bottom:152.400000pt;}
.y42_c00343{bottom:152.666667pt;}
.y40_c00343{bottom:163.733333pt;}
.y2b_c00343{bottom:168.533333pt;}
.y41_c00343{bottom:168.800000pt;}
.y2a_c00343{bottom:184.400000pt;}
.y29_c00343{bottom:200.666667pt;}
.y28_c00343{bottom:216.800000pt;}
.y3f_c00343{bottom:216.933333pt;}
.y3e_c00343{bottom:232.533333pt;}
.y27_c00343{bottom:233.066667pt;}
.y26_c00343{bottom:249.200000pt;}
.y3d_c00343{bottom:249.333333pt;}
.y25_c00343{bottom:264.800000pt;}
.y3c_c00343{bottom:265.200000pt;}
.y24_c00343{bottom:280.800000pt;}
.y3b_c00343{bottom:296.133333pt;}
.y23_c00343{bottom:297.200000pt;}
.y22_c00343{bottom:313.200000pt;}
.y3a_c00343{bottom:328.533333pt;}
.y21_c00343{bottom:329.600000pt;}
.y39_c00343{bottom:345.333333pt;}
.y20_c00343{bottom:345.866667pt;}
.y38_c00343{bottom:361.466667pt;}
.y1f_c00343{bottom:361.733333pt;}
.y37_c00343{bottom:377.733333pt;}
.y1e_c00343{bottom:378.000000pt;}
.y1d_c00343{bottom:393.866667pt;}
.y36_c00343{bottom:410.000000pt;}
.y1c_c00343{bottom:410.133333pt;}
.y1b_c00343{bottom:426.266667pt;}
.y1a_c00343{bottom:442.400000pt;}
.y19_c00343{bottom:458.666667pt;}
.y18_c00343{bottom:474.800000pt;}
.y35_c00343{bottom:490.533333pt;}
.y17_c00343{bottom:490.800000pt;}
.y34_c00343{bottom:506.666667pt;}
.y16_c00343{bottom:506.933333pt;}
.y15_c00343{bottom:522.266667pt;}
.y33_c00343{bottom:522.933333pt;}
.y14_c00343{bottom:539.333333pt;}
.y13_c00343{bottom:555.200000pt;}
.yb_c00343{bottom:555.600000pt;}
.y12_c00343{bottom:570.933333pt;}
.ya_c00343{bottom:571.200000pt;}
.y9_c00343{bottom:587.333333pt;}
.y11_c00343{bottom:602.933333pt;}
.y8_c00343{bottom:603.333333pt;}
.y10_c00343{bottom:619.466667pt;}
.y7_c00343{bottom:620.000000pt;}
.y6_c00343{bottom:635.733333pt;}
.yf_c00343{bottom:636.000000pt;}
.ye_c00343{bottom:651.600000pt;}
.y5_c00343{bottom:652.133333pt;}
.y4_c00343{bottom:668.000000pt;}
.yd_c00343{bottom:683.600000pt;}
.y3_c00343{bottom:684.266667pt;}
.yc_c00343{bottom:700.133333pt;}
.y2_c00343{bottom:700.533333pt;}
.y1_c00343{bottom:715.466667pt;}
.h6_c00343{height:11.733399pt;}
.h7_c00343{height:38.937500pt;}
.h2_c00343{height:55.893333pt;}
.h3_c00343{height:56.906667pt;}
.h4_c00343{height:61.482667pt;}
.h5_c00343{height:198.421333pt;}
.h0_c00343{height:751.200000pt;}
.h1_c00343{height:751.333333pt;}
.w2_c00343{width:93.222667pt;}
.w0_c00343{width:502.533333pt;}
.w1_c00343{width:502.666667pt;}
.x0_c00343{left:0.000000pt;}
.x11_c00343{left:12.800000pt;}
.x12_c00343{left:13.733333pt;}
.xb_c00343{left:67.466667pt;}
.x3_c00343{left:69.333333pt;}
.x2_c00343{left:70.266667pt;}
.x1_c00343{left:75.333333pt;}
.xd_c00343{left:85.466667pt;}
.x10_c00343{left:106.133333pt;}
.xe_c00343{left:120.266667pt;}
.xc_c00343{left:136.533333pt;}
.xf_c00343{left:138.266667pt;}
.x13_c00343{left:208.434896pt;}
.xa_c00343{left:263.066667pt;}
.x9_c00343{left:264.000000pt;}
.x8_c00343{left:265.733333pt;}
.x5_c00343{left:266.933333pt;}
.x6_c00343{left:267.866667pt;}
.x4_c00343{left:269.733333pt;}
.x7_c00343{left:283.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_5b143fad6bbeeed72ca20cc5.woff2')format("woff");}.ff1_c00344{font-family:ff1_c00344;line-height:1.437000;font-style:normal;font-weight:normal;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_e9f345a43add7875aeb977da.woff2')format("woff");}.ff2_c00344{font-family:ff2_c00344;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00344;src:url('chunks/assets/font_308e7351e30d83a1402a45a8.woff2')format("woff");}.ff3_c00344{font-family:ff3_c00344;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00344;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff4_c00344{font-family:ff4_c00344;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00344;src:url('chunks/assets/font_757dbdc9e2b8b34db96da32a.woff2')format("woff");}.ff5_c00344{font-family:ff5_c00344;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00344;src:url('chunks/assets/font_e234e617991263b6d5d32835.woff2')format("woff");}.ff6_c00344{font-family:ff6_c00344;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00344;src:url('chunks/assets/font_50de6bdc44c429e0cc3e1f76.woff2')format("woff");}.ff7_c00344{font-family:ff7_c00344;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00344;src:url('chunks/assets/font_36ea4df8745d49b28120bb6f.woff2')format("woff");}.ff8_c00344{font-family:ff8_c00344;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00344;src:url('chunks/assets/font_7164f7fc20c479aacf7b7c04.woff2')format("woff");}.ff9_c00344{font-family:ff9_c00344;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00344;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ffa_c00344{font-family:ffa_c00344;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00344{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00344{vertical-align:0.000000px;}
.lsa_c00344{letter-spacing:0.000000px;}
.ls6_c00344{letter-spacing:1.005000px;}
.ls8_c00344{letter-spacing:3.000000px;}
.ls1_c00344{letter-spacing:5.400000px;}
.ls3_c00344{letter-spacing:6.000000px;}
.ls2_c00344{letter-spacing:7.704000px;}
.ls5_c00344{letter-spacing:9.000000px;}
.ls9_c00344{letter-spacing:10.200000px;}
.ls0_c00344{letter-spacing:11.940000px;}
.lsb_c00344{letter-spacing:12.000000px;}
.ls7_c00344{letter-spacing:40.140000px;}
.ls4_c00344{letter-spacing:163.140000px;}
.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;}
}
.ws4_c00344{word-spacing:-24.744000px;}
.ws1_c00344{word-spacing:-18.291000px;}
.ws8_c00344{word-spacing:-18.060000px;}
.ws7_c00344{word-spacing:-18.000000px;}
.ws3_c00344{word-spacing:-16.992000px;}
.ws2_c00344{word-spacing:-14.160000px;}
.ws5_c00344{word-spacing:-12.744000px;}
.ws0_c00344{word-spacing:-12.291000px;}
.ws6_c00344{word-spacing:-9.750000px;}
.ws9_c00344{word-spacing:0.000000px;}
._19_c00344{margin-left:-23.208000px;}
._20_c00344{margin-left:-20.361000px;}
._24_c00344{margin-left:-18.120000px;}
._23_c00344{margin-left:-16.053000px;}
._1e_c00344{margin-left:-14.907000px;}
._21_c00344{margin-left:-13.716000px;}
._22_c00344{margin-left:-12.678000px;}
._12_c00344{margin-left:-11.100000px;}
._1a_c00344{margin-left:-9.282000px;}
._13_c00344{margin-left:-8.277000px;}
._e_c00344{margin-left:-6.648000px;}
._b_c00344{margin-left:-4.644000px;}
._8_c00344{margin-left:-3.498000px;}
._a_c00344{margin-left:-1.512000px;}
._0_c00344{width:1.620000px;}
._4_c00344{width:2.640000px;}
._f_c00344{width:4.104000px;}
._6_c00344{width:5.520000px;}
._5_c00344{width:7.182000px;}
._d_c00344{width:8.478000px;}
._9_c00344{width:9.600000px;}
._3_c00344{width:11.280000px;}
._18_c00344{width:12.378000px;}
._c_c00344{width:13.614000px;}
._7_c00344{width:14.808000px;}
._1b_c00344{width:16.632000px;}
._1c_c00344{width:17.646000px;}
._14_c00344{width:19.362000px;}
._16_c00344{width:21.552000px;}
._10_c00344{width:22.632000px;}
._17_c00344{width:24.300000px;}
._2_c00344{width:25.758000px;}
._2a_c00344{width:26.820000px;}
._26_c00344{width:27.840000px;}
._11_c00344{width:29.034000px;}
._27_c00344{width:30.834000px;}
._1d_c00344{width:32.109000px;}
._1_c00344{width:33.264000px;}
._29_c00344{width:37.632000px;}
._1f_c00344{width:88.164000px;}
._28_c00344{width:113.736000px;}
._25_c00344{width:215.004000px;}
._15_c00344{width:218.808000px;}
.fc2_c00344{color:transparent;}
.fc1_c00344{color:rgb(128,128,128);}
.fc0_c00344{color:rgb(0,0,0);}
.fs5_c00344{font-size:39.000000px;}
.fs6_c00344{font-size:45.000000px;}
.fs3_c00344{font-size:48.000000px;}
.fs2_c00344{font-size:51.000000px;}
.fs0_c00344{font-size:54.000000px;}
.fs4_c00344{font-size:57.000000px;}
.fs1_c00344{font-size:60.000000px;}
.fs7_c00344{font-size:63.000000px;}
.y0_c00344{bottom:0.000000px;}
.y51_c00344{bottom:3.105000px;}
.y50_c00344{bottom:7.228371px;}
.y29_c00344{bottom:60.465000px;}
.y4f_c00344{bottom:78.615000px;}
.y28_c00344{bottom:78.765000px;}
.y27_c00344{bottom:96.615000px;}
.y4e_c00344{bottom:97.215000px;}
.y26_c00344{bottom:114.465000px;}
.y4d_c00344{bottom:115.515000px;}
.y4c_c00344{bottom:132.765000px;}
.y25_c00344{bottom:133.665000px;}
.y4b_c00344{bottom:150.615000px;}
.y24_c00344{bottom:151.665000px;}
.y4a_c00344{bottom:168.765000px;}
.y23_c00344{bottom:169.815000px;}
.y49_c00344{bottom:187.065000px;}
.y22_c00344{bottom:188.415000px;}
.y48_c00344{bottom:205.665000px;}
.y21_c00344{bottom:205.965000px;}
.y47_c00344{bottom:223.065000px;}
.y20_c00344{bottom:224.115000px;}
.y1f_c00344{bottom:241.365000px;}
.y46_c00344{bottom:242.115000px;}
.y1e_c00344{bottom:260.565000px;}
.y1d_c00344{bottom:277.515000px;}
.y1c_c00344{bottom:295.665000px;}
.y45_c00344{bottom:296.115000px;}
.y44_c00344{bottom:312.915000px;}
.y1b_c00344{bottom:313.515000px;}
.y1a_c00344{bottom:331.215000px;}
.y43_c00344{bottom:331.815000px;}
.y42_c00344{bottom:349.665000px;}
.y19_c00344{bottom:349.965000px;}
.y41_c00344{bottom:367.515000px;}
.y18_c00344{bottom:367.665000px;}
.y40_c00344{bottom:385.815000px;}
.y17_c00344{bottom:386.415000px;}
.y3f_c00344{bottom:403.665000px;}
.y16_c00344{bottom:404.415000px;}
.y3e_c00344{bottom:421.665000px;}
.y15_c00344{bottom:422.265000px;}
.y3d_c00344{bottom:439.815000px;}
.y14_c00344{bottom:440.115000px;}
.y3c_c00344{bottom:457.665000px;}
.y13_c00344{bottom:457.965000px;}
.y12_c00344{bottom:475.515000px;}
.y3b_c00344{bottom:476.265000px;}
.y3a_c00344{bottom:493.815000px;}
.y11_c00344{bottom:494.415000px;}
.y10_c00344{bottom:511.665000px;}
.y39_c00344{bottom:512.115000px;}
.yf_c00344{bottom:528.915000px;}
.y38_c00344{bottom:530.565000px;}
.ye_c00344{bottom:547.065000px;}
.y37_c00344{bottom:548.415000px;}
.yd_c00344{bottom:565.365000px;}
.y36_c00344{bottom:565.965000px;}
.yc_c00344{bottom:582.915000px;}
.y35_c00344{bottom:583.965000px;}
.yb_c00344{bottom:600.765000px;}
.y34_c00344{bottom:601.815000px;}
.ya_c00344{bottom:619.065000px;}
.y33_c00344{bottom:619.365000px;}
.y9_c00344{bottom:636.915000px;}
.y32_c00344{bottom:637.965000px;}
.y8_c00344{bottom:654.765000px;}
.y31_c00344{bottom:656.415000px;}
.y7_c00344{bottom:672.615000px;}
.y30_c00344{bottom:674.115000px;}
.y6_c00344{bottom:690.915000px;}
.y2f_c00344{bottom:691.965000px;}
.y5_c00344{bottom:708.465000px;}
.y2e_c00344{bottom:709.815000px;}
.y4_c00344{bottom:725.715000px;}
.y2d_c00344{bottom:727.965000px;}
.y3_c00344{bottom:744.165000px;}
.y2c_c00344{bottom:746.265000px;}
.y2_c00344{bottom:762.165000px;}
.y2b_c00344{bottom:764.115000px;}
.y1_c00344{bottom:780.015000px;}
.y2a_c00344{bottom:782.115000px;}
.ha_c00344{height:13.200074px;}
.hb_c00344{height:43.804688px;}
.h2_c00344{height:56.592000px;}
.h4_c00344{height:59.690918px;}
.h6_c00344{height:59.736000px;}
.h3_c00344{height:62.880000px;}
.h8_c00344{height:64.020000px;}
.h5_c00344{height:64.571777px;}
.h9_c00344{height:66.024000px;}
.h7_c00344{height:72.168457px;}
.h1_c00344{height:844.500000px;}
.h0_c00344{height:844.575000px;}
.w1_c00344{width:104.875500px;}
.w0_c00344{width:590.250000px;}
.x0_c00344{left:0.000000px;}
.x5_c00344{left:12.450000px;}
.x2_c00344{left:67.500000px;}
.x1_c00344{left:68.550000px;}
.x3_c00344{left:70.200000px;}
.x4_c00344{left:71.850000px;}
.xc_c00344{left:246.939240px;}
.x6_c00344{left:285.450000px;}
.x8_c00344{left:286.650000px;}
.x9_c00344{left:287.850000px;}
.xa_c00344{left:289.200000px;}
.xb_c00344{left:291.000000px;}
.x7_c00344{left:304.050000px;}
@media print{
.v0_c00344{vertical-align:0.000000pt;}
.lsa_c00344{letter-spacing:0.000000pt;}
.ls6_c00344{letter-spacing:0.893333pt;}
.ls8_c00344{letter-spacing:2.666667pt;}
.ls1_c00344{letter-spacing:4.800000pt;}
.ls3_c00344{letter-spacing:5.333333pt;}
.ls2_c00344{letter-spacing:6.848000pt;}
.ls5_c00344{letter-spacing:8.000000pt;}
.ls9_c00344{letter-spacing:9.066667pt;}
.ls0_c00344{letter-spacing:10.613333pt;}
.lsb_c00344{letter-spacing:10.666667pt;}
.ls7_c00344{letter-spacing:35.680000pt;}
.ls4_c00344{letter-spacing:145.013333pt;}
.ws4_c00344{word-spacing:-21.994667pt;}
.ws1_c00344{word-spacing:-16.258667pt;}
.ws8_c00344{word-spacing:-16.053333pt;}
.ws7_c00344{word-spacing:-16.000000pt;}
.ws3_c00344{word-spacing:-15.104000pt;}
.ws2_c00344{word-spacing:-12.586667pt;}
.ws5_c00344{word-spacing:-11.328000pt;}
.ws0_c00344{word-spacing:-10.925333pt;}
.ws6_c00344{word-spacing:-8.666667pt;}
.ws9_c00344{word-spacing:0.000000pt;}
._19_c00344{margin-left:-20.629333pt;}
._20_c00344{margin-left:-18.098667pt;}
._24_c00344{margin-left:-16.106667pt;}
._23_c00344{margin-left:-14.269333pt;}
._1e_c00344{margin-left:-13.250667pt;}
._21_c00344{margin-left:-12.192000pt;}
._22_c00344{margin-left:-11.269333pt;}
._12_c00344{margin-left:-9.866667pt;}
._1a_c00344{margin-left:-8.250667pt;}
._13_c00344{margin-left:-7.357333pt;}
._e_c00344{margin-left:-5.909333pt;}
._b_c00344{margin-left:-4.128000pt;}
._8_c00344{margin-left:-3.109333pt;}
._a_c00344{margin-left:-1.344000pt;}
._0_c00344{width:1.440000pt;}
._4_c00344{width:2.346667pt;}
._f_c00344{width:3.648000pt;}
._6_c00344{width:4.906667pt;}
._5_c00344{width:6.384000pt;}
._d_c00344{width:7.536000pt;}
._9_c00344{width:8.533333pt;}
._3_c00344{width:10.026667pt;}
._18_c00344{width:11.002667pt;}
._c_c00344{width:12.101333pt;}
._7_c00344{width:13.162667pt;}
._1b_c00344{width:14.784000pt;}
._1c_c00344{width:15.685333pt;}
._14_c00344{width:17.210667pt;}
._16_c00344{width:19.157333pt;}
._10_c00344{width:20.117333pt;}
._17_c00344{width:21.600000pt;}
._2_c00344{width:22.896000pt;}
._2a_c00344{width:23.840000pt;}
._26_c00344{width:24.746667pt;}
._11_c00344{width:25.808000pt;}
._27_c00344{width:27.408000pt;}
._1d_c00344{width:28.541333pt;}
._1_c00344{width:29.568000pt;}
._29_c00344{width:33.450667pt;}
._1f_c00344{width:78.368000pt;}
._28_c00344{width:101.098667pt;}
._25_c00344{width:191.114667pt;}
._15_c00344{width:194.496000pt;}
.fs5_c00344{font-size:34.666667pt;}
.fs6_c00344{font-size:40.000000pt;}
.fs3_c00344{font-size:42.666667pt;}
.fs2_c00344{font-size:45.333333pt;}
.fs0_c00344{font-size:48.000000pt;}
.fs4_c00344{font-size:50.666667pt;}
.fs1_c00344{font-size:53.333333pt;}
.fs7_c00344{font-size:56.000000pt;}
.y0_c00344{bottom:0.000000pt;}
.y51_c00344{bottom:2.760000pt;}
.y50_c00344{bottom:6.425219pt;}
.y29_c00344{bottom:53.746667pt;}
.y4f_c00344{bottom:69.880000pt;}
.y28_c00344{bottom:70.013333pt;}
.y27_c00344{bottom:85.880000pt;}
.y4e_c00344{bottom:86.413333pt;}
.y26_c00344{bottom:101.746667pt;}
.y4d_c00344{bottom:102.680000pt;}
.y4c_c00344{bottom:118.013333pt;}
.y25_c00344{bottom:118.813333pt;}
.y4b_c00344{bottom:133.880000pt;}
.y24_c00344{bottom:134.813333pt;}
.y4a_c00344{bottom:150.013333pt;}
.y23_c00344{bottom:150.946667pt;}
.y49_c00344{bottom:166.280000pt;}
.y22_c00344{bottom:167.480000pt;}
.y48_c00344{bottom:182.813333pt;}
.y21_c00344{bottom:183.080000pt;}
.y47_c00344{bottom:198.280000pt;}
.y20_c00344{bottom:199.213333pt;}
.y1f_c00344{bottom:214.546667pt;}
.y46_c00344{bottom:215.213333pt;}
.y1e_c00344{bottom:231.613333pt;}
.y1d_c00344{bottom:246.680000pt;}
.y1c_c00344{bottom:262.813333pt;}
.y45_c00344{bottom:263.213333pt;}
.y44_c00344{bottom:278.146667pt;}
.y1b_c00344{bottom:278.680000pt;}
.y1a_c00344{bottom:294.413333pt;}
.y43_c00344{bottom:294.946667pt;}
.y42_c00344{bottom:310.813333pt;}
.y19_c00344{bottom:311.080000pt;}
.y41_c00344{bottom:326.680000pt;}
.y18_c00344{bottom:326.813333pt;}
.y40_c00344{bottom:342.946667pt;}
.y17_c00344{bottom:343.480000pt;}
.y3f_c00344{bottom:358.813333pt;}
.y16_c00344{bottom:359.480000pt;}
.y3e_c00344{bottom:374.813333pt;}
.y15_c00344{bottom:375.346667pt;}
.y3d_c00344{bottom:390.946667pt;}
.y14_c00344{bottom:391.213333pt;}
.y3c_c00344{bottom:406.813333pt;}
.y13_c00344{bottom:407.080000pt;}
.y12_c00344{bottom:422.680000pt;}
.y3b_c00344{bottom:423.346667pt;}
.y3a_c00344{bottom:438.946667pt;}
.y11_c00344{bottom:439.480000pt;}
.y10_c00344{bottom:454.813333pt;}
.y39_c00344{bottom:455.213333pt;}
.yf_c00344{bottom:470.146667pt;}
.y38_c00344{bottom:471.613333pt;}
.ye_c00344{bottom:486.280000pt;}
.y37_c00344{bottom:487.480000pt;}
.yd_c00344{bottom:502.546667pt;}
.y36_c00344{bottom:503.080000pt;}
.yc_c00344{bottom:518.146667pt;}
.y35_c00344{bottom:519.080000pt;}
.yb_c00344{bottom:534.013333pt;}
.y34_c00344{bottom:534.946667pt;}
.ya_c00344{bottom:550.280000pt;}
.y33_c00344{bottom:550.546667pt;}
.y9_c00344{bottom:566.146667pt;}
.y32_c00344{bottom:567.080000pt;}
.y8_c00344{bottom:582.013333pt;}
.y31_c00344{bottom:583.480000pt;}
.y7_c00344{bottom:597.880000pt;}
.y30_c00344{bottom:599.213333pt;}
.y6_c00344{bottom:614.146667pt;}
.y2f_c00344{bottom:615.080000pt;}
.y5_c00344{bottom:629.746667pt;}
.y2e_c00344{bottom:630.946667pt;}
.y4_c00344{bottom:645.080000pt;}
.y2d_c00344{bottom:647.080000pt;}
.y3_c00344{bottom:661.480000pt;}
.y2c_c00344{bottom:663.346667pt;}
.y2_c00344{bottom:677.480000pt;}
.y2b_c00344{bottom:679.213333pt;}
.y1_c00344{bottom:693.346667pt;}
.y2a_c00344{bottom:695.213333pt;}
.ha_c00344{height:11.733399pt;}
.hb_c00344{height:38.937500pt;}
.h2_c00344{height:50.304000pt;}
.h4_c00344{height:53.058594pt;}
.h6_c00344{height:53.098667pt;}
.h3_c00344{height:55.893333pt;}
.h8_c00344{height:56.906667pt;}
.h5_c00344{height:57.397135pt;}
.h9_c00344{height:58.688000pt;}
.h7_c00344{height:64.149740pt;}
.h1_c00344{height:750.666667pt;}
.h0_c00344{height:750.733333pt;}
.w1_c00344{width:93.222667pt;}
.w0_c00344{width:524.666667pt;}
.x0_c00344{left:0.000000pt;}
.x5_c00344{left:11.066667pt;}
.x2_c00344{left:60.000000pt;}
.x1_c00344{left:60.933333pt;}
.x3_c00344{left:62.400000pt;}
.x4_c00344{left:63.866667pt;}
.xc_c00344{left:219.501546pt;}
.x6_c00344{left:253.733333pt;}
.x8_c00344{left:254.800000pt;}
.x9_c00344{left:255.866667pt;}
.xa_c00344{left:257.066667pt;}
.xb_c00344{left:258.666667pt;}
.x7_c00344{left:270.266667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ce82be32973675c09d72d06b.woff2')format("woff");}.ff1_c00345{font-family:ff1_c00345;line-height:1.437000;font-style:normal;font-weight:normal;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_82321ead991a2efb2c7aba63.woff2')format("woff");}.ff2_c00345{font-family:ff2_c00345;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00345;src:url('chunks/assets/font_31d89bc1e685286b8158a11c.woff2')format("woff");}.ff3_c00345{font-family:ff3_c00345;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00345;src:url('chunks/assets/font_8e519c8fbecd9dee5534b8f5.woff2')format("woff");}.ff4_c00345{font-family:ff4_c00345;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00345;src:url('chunks/assets/font_28f6960219a68021fe6464b2.woff2')format("woff");}.ff5_c00345{font-family:ff5_c00345;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00345;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff6_c00345{font-family:ff6_c00345;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00345{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00345{vertical-align:0.000000px;}
.v1_c00345{vertical-align:91.800000px;}
.ls7_c00345{letter-spacing:0.000000px;}
.ls1_c00345{letter-spacing:0.600000px;}
.ls3_c00345{letter-spacing:3.000000px;}
.ls4_c00345{letter-spacing:3.600000px;}
.ls6_c00345{letter-spacing:5.691000px;}
.ls5_c00345{letter-spacing:6.000000px;}
.ls2_c00345{letter-spacing:6.780000px;}
.ls8_c00345{letter-spacing:9.000000px;}
.ls0_c00345{letter-spacing:12.000000px;}
.sc__c00345{text-shadow:none;}
.sc0_c00345{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00345{-webkit-text-stroke:0px transparent;}
.sc0_c00345{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00345{word-spacing:-26.340000px;}
.ws3_c00345{word-spacing:-21.744000px;}
.ws1_c00345{word-spacing:-18.060000px;}
.ws4_c00345{word-spacing:-16.491000px;}
.ws2_c00345{word-spacing:-14.160000px;}
.ws5_c00345{word-spacing:0.000000px;}
._14_c00345{margin-left:-20.400000px;}
._21_c00345{margin-left:-14.280000px;}
._17_c00345{margin-left:-12.840000px;}
._1b_c00345{margin-left:-11.040000px;}
._1c_c00345{margin-left:-9.960000px;}
._18_c00345{margin-left:-8.340000px;}
._c_c00345{margin-left:-6.600000px;}
._a_c00345{margin-left:-4.740000px;}
._9_c00345{margin-left:-3.000000px;}
._6_c00345{margin-left:-1.260000px;}
._7_c00345{width:1.200000px;}
._0_c00345{width:2.580000px;}
._b_c00345{width:4.440000px;}
._2_c00345{width:6.180000px;}
._3_c00345{width:7.680000px;}
._5_c00345{width:9.660000px;}
._4_c00345{width:11.220000px;}
._8_c00345{width:13.260000px;}
._d_c00345{width:15.300000px;}
._15_c00345{width:16.620000px;}
._20_c00345{width:18.060000px;}
._f_c00345{width:19.080000px;}
._e_c00345{width:21.600000px;}
._19_c00345{width:22.740000px;}
._16_c00345{width:24.000000px;}
._10_c00345{width:28.140000px;}
._1a_c00345{width:30.060000px;}
._1d_c00345{width:40.020000px;}
._11_c00345{width:41.640000px;}
._1f_c00345{width:45.360000px;}
._1e_c00345{width:48.600000px;}
._12_c00345{width:130.140000px;}
._1_c00345{width:198.480000px;}
._13_c00345{width:267.540000px;}
.fc2_c00345{color:transparent;}
.fc1_c00345{color:rgb(128,128,128);}
.fc0_c00345{color:rgb(0,0,0);}
.fs6_c00345{font-size:48.000000px;}
.fs2_c00345{font-size:54.000000px;}
.fs0_c00345{font-size:60.000000px;}
.fs1_c00345{font-size:66.000000px;}
.fs5_c00345{font-size:69.000000px;}
.fs3_c00345{font-size:75.000000px;}
.fs4_c00345{font-size:189.000000px;}
.y0_c00345{bottom:0.000000px;}
.y51_c00345{bottom:3.105000px;}
.y50_c00345{bottom:7.228355px;}
.y4f_c00345{bottom:38.685000px;}
.y2a_c00345{bottom:54.885000px;}
.y4e_c00345{bottom:55.335000px;}
.y29_c00345{bottom:73.935000px;}
.y28_c00345{bottom:92.085000px;}
.y27_c00345{bottom:109.335000px;}
.y4d_c00345{bottom:110.685000px;}
.y26_c00345{bottom:127.935000px;}
.y4c_c00345{bottom:128.535000px;}
.y25_c00345{bottom:146.085000px;}
.y24_c00345{bottom:164.235000px;}
.y4b_c00345{bottom:165.285000px;}
.y23_c00345{bottom:181.935000px;}
.y4a_c00345{bottom:182.535000px;}
.y22_c00345{bottom:200.085000px;}
.y49_c00345{bottom:201.135000px;}
.y21_c00345{bottom:218.235000px;}
.y48_c00345{bottom:219.285000px;}
.y20_c00345{bottom:236.535000px;}
.y47_c00345{bottom:237.285000px;}
.y1f_c00345{bottom:254.385000px;}
.y46_c00345{bottom:255.435000px;}
.y1e_c00345{bottom:272.685000px;}
.y45_c00345{bottom:273.285000px;}
.y1d_c00345{bottom:290.835000px;}
.y44_c00345{bottom:291.285000px;}
.y1c_c00345{bottom:308.835000px;}
.y43_c00345{bottom:310.035000px;}
.y1b_c00345{bottom:326.985000px;}
.y42_c00345{bottom:327.585000px;}
.y1a_c00345{bottom:345.285000px;}
.y41_c00345{bottom:345.885000px;}
.y3f_c00345{bottom:359.385000px;}
.y19_c00345{bottom:363.135000px;}
.y40_c00345{bottom:364.485000px;}
.y18_c00345{bottom:381.585000px;}
.y17_c00345{bottom:399.285000px;}
.y16_c00345{bottom:417.885000px;}
.y3e_c00345{bottom:418.485000px;}
.y15_c00345{bottom:435.585000px;}
.y3d_c00345{bottom:436.935000px;}
.y14_c00345{bottom:453.285000px;}
.y3c_c00345{bottom:455.235000px;}
.y13_c00345{bottom:471.135000px;}
.y3b_c00345{bottom:473.385000px;}
.y12_c00345{bottom:489.735000px;}
.y11_c00345{bottom:507.885000px;}
.y3a_c00345{bottom:508.185000px;}
.y10_c00345{bottom:526.035000px;}
.yf_c00345{bottom:543.735000px;}
.y39_c00345{bottom:544.935000px;}
.ye_c00345{bottom:561.885000px;}
.y38_c00345{bottom:562.485000px;}
.yd_c00345{bottom:580.485000px;}
.y37_c00345{bottom:581.835000px;}
.yc_c00345{bottom:598.635000px;}
.y36_c00345{bottom:599.685000px;}
.yb_c00345{bottom:615.885000px;}
.y35_c00345{bottom:617.985000px;}
.ya_c00345{bottom:634.785000px;}
.y34_c00345{bottom:635.835000px;}
.y9_c00345{bottom:652.335000px;}
.y33_c00345{bottom:653.685000px;}
.y8_c00345{bottom:670.635000px;}
.y32_c00345{bottom:671.535000px;}
.y7_c00345{bottom:688.635000px;}
.y31_c00345{bottom:689.835000px;}
.y6_c00345{bottom:706.635000px;}
.y30_c00345{bottom:708.435000px;}
.y5_c00345{bottom:724.635000px;}
.y2f_c00345{bottom:726.285000px;}
.y4_c00345{bottom:742.785000px;}
.y2e_c00345{bottom:744.135000px;}
.y3_c00345{bottom:761.085000px;}
.y2d_c00345{bottom:761.985000px;}
.y2_c00345{bottom:779.235000px;}
.y2c_c00345{bottom:780.285000px;}
.y1_c00345{bottom:798.885000px;}
.y2b_c00345{bottom:799.785000px;}
.h9_c00345{height:13.200074px;}
.ha_c00345{height:43.804688px;}
.h2_c00345{height:62.880000px;}
.h4_c00345{height:63.480000px;}
.h3_c00345{height:64.020000px;}
.h5_c00345{height:70.422000px;}
.h8_c00345{height:72.312000px;}
.h6_c00345{height:78.600000px;}
.h7_c00345{height:201.663000px;}
.h1_c00345{height:846.750000px;}
.h0_c00345{height:846.975000px;}
.w2_c00345{width:104.875500px;}
.w1_c00345{width:575.250000px;}
.w0_c00345{width:575.400000px;}
.x0_c00345{left:0.000000px;}
.x6_c00345{left:37.500000px;}
.x5_c00345{left:94.500000px;}
.x3_c00345{left:97.950000px;}
.x2_c00345{left:99.600000px;}
.x4_c00345{left:100.950000px;}
.x7_c00345{left:103.200000px;}
.x1_c00345{left:108.300000px;}
.x12_c00345{left:239.514267px;}
.x8_c00345{left:304.650000px;}
.x10_c00345{left:317.850000px;}
.x9_c00345{left:318.900000px;}
.xa_c00345{left:320.850000px;}
.xc_c00345{left:331.350000px;}
.xf_c00345{left:344.250000px;}
.xd_c00345{left:350.700000px;}
.xe_c00345{left:375.000000px;}
.xb_c00345{left:390.750000px;}
.x11_c00345{left:494.700000px;}
@media print{
.v0_c00345{vertical-align:0.000000pt;}
.v1_c00345{vertical-align:81.600000pt;}
.ls7_c00345{letter-spacing:0.000000pt;}
.ls1_c00345{letter-spacing:0.533333pt;}
.ls3_c00345{letter-spacing:2.666667pt;}
.ls4_c00345{letter-spacing:3.200000pt;}
.ls6_c00345{letter-spacing:5.058667pt;}
.ls5_c00345{letter-spacing:5.333333pt;}
.ls2_c00345{letter-spacing:6.026667pt;}
.ls8_c00345{letter-spacing:8.000000pt;}
.ls0_c00345{letter-spacing:10.666667pt;}
.ws0_c00345{word-spacing:-23.413333pt;}
.ws3_c00345{word-spacing:-19.328000pt;}
.ws1_c00345{word-spacing:-16.053333pt;}
.ws4_c00345{word-spacing:-14.658667pt;}
.ws2_c00345{word-spacing:-12.586667pt;}
.ws5_c00345{word-spacing:0.000000pt;}
._14_c00345{margin-left:-18.133333pt;}
._21_c00345{margin-left:-12.693333pt;}
._17_c00345{margin-left:-11.413333pt;}
._1b_c00345{margin-left:-9.813333pt;}
._1c_c00345{margin-left:-8.853333pt;}
._18_c00345{margin-left:-7.413333pt;}
._c_c00345{margin-left:-5.866667pt;}
._a_c00345{margin-left:-4.213333pt;}
._9_c00345{margin-left:-2.666667pt;}
._6_c00345{margin-left:-1.120000pt;}
._7_c00345{width:1.066667pt;}
._0_c00345{width:2.293333pt;}
._b_c00345{width:3.946667pt;}
._2_c00345{width:5.493333pt;}
._3_c00345{width:6.826667pt;}
._5_c00345{width:8.586667pt;}
._4_c00345{width:9.973333pt;}
._8_c00345{width:11.786667pt;}
._d_c00345{width:13.600000pt;}
._15_c00345{width:14.773333pt;}
._20_c00345{width:16.053333pt;}
._f_c00345{width:16.960000pt;}
._e_c00345{width:19.200000pt;}
._19_c00345{width:20.213333pt;}
._16_c00345{width:21.333333pt;}
._10_c00345{width:25.013333pt;}
._1a_c00345{width:26.720000pt;}
._1d_c00345{width:35.573333pt;}
._11_c00345{width:37.013333pt;}
._1f_c00345{width:40.320000pt;}
._1e_c00345{width:43.200000pt;}
._12_c00345{width:115.680000pt;}
._1_c00345{width:176.426667pt;}
._13_c00345{width:237.813333pt;}
.fs6_c00345{font-size:42.666667pt;}
.fs2_c00345{font-size:48.000000pt;}
.fs0_c00345{font-size:53.333333pt;}
.fs1_c00345{font-size:58.666667pt;}
.fs5_c00345{font-size:61.333333pt;}
.fs3_c00345{font-size:66.666667pt;}
.fs4_c00345{font-size:168.000000pt;}
.y0_c00345{bottom:0.000000pt;}
.y51_c00345{bottom:2.760000pt;}
.y50_c00345{bottom:6.425204pt;}
.y4f_c00345{bottom:34.386667pt;}
.y2a_c00345{bottom:48.786667pt;}
.y4e_c00345{bottom:49.186667pt;}
.y29_c00345{bottom:65.720000pt;}
.y28_c00345{bottom:81.853333pt;}
.y27_c00345{bottom:97.186667pt;}
.y4d_c00345{bottom:98.386667pt;}
.y26_c00345{bottom:113.720000pt;}
.y4c_c00345{bottom:114.253333pt;}
.y25_c00345{bottom:129.853333pt;}
.y24_c00345{bottom:145.986667pt;}
.y4b_c00345{bottom:146.920000pt;}
.y23_c00345{bottom:161.720000pt;}
.y4a_c00345{bottom:162.253333pt;}
.y22_c00345{bottom:177.853333pt;}
.y49_c00345{bottom:178.786667pt;}
.y21_c00345{bottom:193.986667pt;}
.y48_c00345{bottom:194.920000pt;}
.y20_c00345{bottom:210.253333pt;}
.y47_c00345{bottom:210.920000pt;}
.y1f_c00345{bottom:226.120000pt;}
.y46_c00345{bottom:227.053333pt;}
.y1e_c00345{bottom:242.386667pt;}
.y45_c00345{bottom:242.920000pt;}
.y1d_c00345{bottom:258.520000pt;}
.y44_c00345{bottom:258.920000pt;}
.y1c_c00345{bottom:274.520000pt;}
.y43_c00345{bottom:275.586667pt;}
.y1b_c00345{bottom:290.653333pt;}
.y42_c00345{bottom:291.186667pt;}
.y1a_c00345{bottom:306.920000pt;}
.y41_c00345{bottom:307.453333pt;}
.y3f_c00345{bottom:319.453333pt;}
.y19_c00345{bottom:322.786667pt;}
.y40_c00345{bottom:323.986667pt;}
.y18_c00345{bottom:339.186667pt;}
.y17_c00345{bottom:354.920000pt;}
.y16_c00345{bottom:371.453333pt;}
.y3e_c00345{bottom:371.986667pt;}
.y15_c00345{bottom:387.186667pt;}
.y3d_c00345{bottom:388.386667pt;}
.y14_c00345{bottom:402.920000pt;}
.y3c_c00345{bottom:404.653333pt;}
.y13_c00345{bottom:418.786667pt;}
.y3b_c00345{bottom:420.786667pt;}
.y12_c00345{bottom:435.320000pt;}
.y11_c00345{bottom:451.453333pt;}
.y3a_c00345{bottom:451.720000pt;}
.y10_c00345{bottom:467.586667pt;}
.yf_c00345{bottom:483.320000pt;}
.y39_c00345{bottom:484.386667pt;}
.ye_c00345{bottom:499.453333pt;}
.y38_c00345{bottom:499.986667pt;}
.yd_c00345{bottom:515.986667pt;}
.y37_c00345{bottom:517.186667pt;}
.yc_c00345{bottom:532.120000pt;}
.y36_c00345{bottom:533.053333pt;}
.yb_c00345{bottom:547.453333pt;}
.y35_c00345{bottom:549.320000pt;}
.ya_c00345{bottom:564.253333pt;}
.y34_c00345{bottom:565.186667pt;}
.y9_c00345{bottom:579.853333pt;}
.y33_c00345{bottom:581.053333pt;}
.y8_c00345{bottom:596.120000pt;}
.y32_c00345{bottom:596.920000pt;}
.y7_c00345{bottom:612.120000pt;}
.y31_c00345{bottom:613.186667pt;}
.y6_c00345{bottom:628.120000pt;}
.y30_c00345{bottom:629.720000pt;}
.y5_c00345{bottom:644.120000pt;}
.y2f_c00345{bottom:645.586667pt;}
.y4_c00345{bottom:660.253333pt;}
.y2e_c00345{bottom:661.453333pt;}
.y3_c00345{bottom:676.520000pt;}
.y2d_c00345{bottom:677.320000pt;}
.y2_c00345{bottom:692.653333pt;}
.y2c_c00345{bottom:693.586667pt;}
.y1_c00345{bottom:710.120000pt;}
.y2b_c00345{bottom:710.920000pt;}
.h9_c00345{height:11.733399pt;}
.ha_c00345{height:38.937500pt;}
.h2_c00345{height:55.893333pt;}
.h4_c00345{height:56.426667pt;}
.h3_c00345{height:56.906667pt;}
.h5_c00345{height:62.597333pt;}
.h8_c00345{height:64.277333pt;}
.h6_c00345{height:69.866667pt;}
.h7_c00345{height:179.256000pt;}
.h1_c00345{height:752.666667pt;}
.h0_c00345{height:752.866667pt;}
.w2_c00345{width:93.222667pt;}
.w1_c00345{width:511.333333pt;}
.w0_c00345{width:511.466667pt;}
.x0_c00345{left:0.000000pt;}
.x6_c00345{left:33.333333pt;}
.x5_c00345{left:84.000000pt;}
.x3_c00345{left:87.066667pt;}
.x2_c00345{left:88.533333pt;}
.x4_c00345{left:89.733333pt;}
.x7_c00345{left:91.733333pt;}
.x1_c00345{left:96.266667pt;}
.x12_c00345{left:212.901571pt;}
.x8_c00345{left:270.800000pt;}
.x10_c00345{left:282.533333pt;}
.x9_c00345{left:283.466667pt;}
.xa_c00345{left:285.200000pt;}
.xc_c00345{left:294.533333pt;}
.xf_c00345{left:306.000000pt;}
.xd_c00345{left:311.733333pt;}
.xe_c00345{left:333.333333pt;}
.xb_c00345{left:347.333333pt;}
.x11_c00345{left:439.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_011c964eda29e06222e559f9.woff2')format("woff");}.ff1_c00346{font-family:ff1_c00346;line-height:1.437000;font-style:normal;font-weight:normal;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_f0c7bba1f3ee1efd5317d172.woff2')format("woff");}.ff2_c00346{font-family:ff2_c00346;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00346;src:url('chunks/assets/font_6d39a42b9013cde1b0d911cd.woff2')format("woff");}.ff3_c00346{font-family:ff3_c00346;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00346;src:url('chunks/assets/font_4370a70d7a5e599b9ffd62ae.woff2')format("woff");}.ff4_c00346{font-family:ff4_c00346;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00346;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff5_c00346{font-family:ff5_c00346;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00346{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.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);}
.v1_c00346{vertical-align:-79.200000px;}
.v0_c00346{vertical-align:0.000000px;}
.ls8_c00346{letter-spacing:0.000000px;}
.ls1_c00346{letter-spacing:3.000000px;}
.ls0_c00346{letter-spacing:6.000000px;}
.ls7_c00346{letter-spacing:7.692000px;}
.ls3_c00346{letter-spacing:8.460000px;}
.ls5_c00346{letter-spacing:12.000000px;}
.ls6_c00346{letter-spacing:13.977000px;}
.ls2_c00346{letter-spacing:14.460000px;}
.ls4_c00346{letter-spacing:21.999000px;}
.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;}
}
.ws2_c00346{word-spacing:-26.340000px;}
.ws4_c00346{word-spacing:-20.340000px;}
.ws1_c00346{word-spacing:-17.868000px;}
.ws5_c00346{word-spacing:-16.452000px;}
.ws0_c00346{word-spacing:-14.160000px;}
.ws3_c00346{word-spacing:-11.679000px;}
.ws6_c00346{word-spacing:0.000000px;}
._29_c00346{margin-left:-25.560000px;}
._22_c00346{margin-left:-21.240000px;}
._17_c00346{margin-left:-18.270000px;}
._1a_c00346{margin-left:-15.840000px;}
._1e_c00346{margin-left:-14.700000px;}
._1b_c00346{margin-left:-12.660000px;}
._c_c00346{margin-left:-11.160000px;}
._9_c00346{margin-left:-9.360000px;}
._f_c00346{margin-left:-8.280000px;}
._19_c00346{margin-left:-7.260000px;}
._d_c00346{margin-left:-6.240000px;}
._5_c00346{margin-left:-4.860000px;}
._6_c00346{margin-left:-3.840000px;}
._4_c00346{margin-left:-2.580000px;}
._3_c00346{margin-left:-1.440000px;}
._27_c00346{width:1.011000px;}
._8_c00346{width:2.160000px;}
._18_c00346{width:3.540000px;}
._26_c00346{width:4.572000px;}
._1_c00346{width:5.880000px;}
._0_c00346{width:7.800000px;}
._14_c00346{width:8.832000px;}
._7_c00346{width:10.140000px;}
._12_c00346{width:11.214000px;}
._a_c00346{width:12.600000px;}
._13_c00346{width:13.800000px;}
._b_c00346{width:15.480000px;}
._11_c00346{width:17.388000px;}
._28_c00346{width:20.460000px;}
._25_c00346{width:21.972000px;}
._15_c00346{width:23.865000px;}
._20_c00346{width:24.900000px;}
._1f_c00346{width:26.775000px;}
._23_c00346{width:28.260000px;}
._10_c00346{width:30.051000px;}
._1d_c00346{width:31.320000px;}
._21_c00346{width:33.720000px;}
._2a_c00346{width:35.160000px;}
._e_c00346{width:37.140000px;}
._2_c00346{width:39.060000px;}
._1c_c00346{width:54.600000px;}
._16_c00346{width:113.979000px;}
._24_c00346{width:136.560000px;}
.fc2_c00346{color:transparent;}
.fc1_c00346{color:rgb(128,128,128);}
.fc0_c00346{color:rgb(0,0,0);}
.fs4_c00346{font-size:48.000000px;}
.fs2_c00346{font-size:51.000000px;}
.fs3_c00346{font-size:57.000000px;}
.fs0_c00346{font-size:60.000000px;}
.fs1_c00346{font-size:63.000000px;}
.y0_c00346{bottom:0.000000px;}
.y53_c00346{bottom:3.105000px;}
.y52_c00346{bottom:7.228371px;}
.y51_c00346{bottom:36.915000px;}
.y50_c00346{bottom:56.415000px;}
.y2a_c00346{bottom:59.865000px;}
.y4f_c00346{bottom:73.665000px;}
.y29_c00346{bottom:79.065000px;}
.y4e_c00346{bottom:93.165000px;}
.y28_c00346{bottom:95.565000px;}
.y4d_c00346{bottom:110.715000px;}
.y27_c00346{bottom:115.815000px;}
.y4c_c00346{bottom:128.715000px;}
.y26_c00346{bottom:131.715000px;}
.y4b_c00346{bottom:146.865000px;}
.y25_c00346{bottom:151.665000px;}
.y4a_c00346{bottom:165.165000px;}
.y24_c00346{bottom:170.415000px;}
.y49_c00346{bottom:183.015000px;}
.y23_c00346{bottom:188.415000px;}
.y48_c00346{bottom:201.465000px;}
.y22_c00346{bottom:206.565000px;}
.y47_c00346{bottom:217.815000px;}
.y21_c00346{bottom:222.765000px;}
.y46_c00346{bottom:237.315000px;}
.y20_c00346{bottom:243.015000px;}
.y45_c00346{bottom:255.615000px;}
.y1f_c00346{bottom:260.265000px;}
.y44_c00346{bottom:274.065000px;}
.y1e_c00346{bottom:278.415000px;}
.y43_c00346{bottom:292.065000px;}
.y1d_c00346{bottom:296.415000px;}
.y42_c00346{bottom:309.465000px;}
.y1c_c00346{bottom:314.265000px;}
.y41_c00346{bottom:327.465000px;}
.y1b_c00346{bottom:332.565000px;}
.y1a_c00346{bottom:349.665000px;}
.y40_c00346{bottom:365.865000px;}
.y19_c00346{bottom:367.965000px;}
.y3f_c00346{bottom:382.065000px;}
.y18_c00346{bottom:386.415000px;}
.y3e_c00346{bottom:400.965000px;}
.y17_c00346{bottom:405.015000px;}
.y3d_c00346{bottom:418.965000px;}
.y16_c00346{bottom:422.565000px;}
.y3c_c00346{bottom:437.115000px;}
.y15_c00346{bottom:440.415000px;}
.y3b_c00346{bottom:455.265000px;}
.y14_c00346{bottom:458.415000px;}
.y3a_c00346{bottom:473.265000px;}
.y13_c00346{bottom:476.865000px;}
.y39_c00346{bottom:491.415000px;}
.y12_c00346{bottom:494.115000px;}
.y38_c00346{bottom:509.415000px;}
.y11_c00346{bottom:511.665000px;}
.y37_c00346{bottom:526.965000px;}
.y10_c00346{bottom:529.215000px;}
.y36_c00346{bottom:545.115000px;}
.yf_c00346{bottom:547.215000px;}
.y35_c00346{bottom:563.415000px;}
.ye_c00346{bottom:565.965000px;}
.y34_c00346{bottom:580.965000px;}
.yd_c00346{bottom:583.665000px;}
.y33_c00346{bottom:599.715000px;}
.yc_c00346{bottom:601.215000px;}
.y32_c00346{bottom:617.715000px;}
.yb_c00346{bottom:619.965000px;}
.y31_c00346{bottom:636.315000px;}
.ya_c00346{bottom:638.565000px;}
.y30_c00346{bottom:654.765000px;}
.y9_c00346{bottom:655.815000px;}
.y2f_c00346{bottom:672.615000px;}
.y8_c00346{bottom:673.365000px;}
.y2e_c00346{bottom:690.615000px;}
.y7_c00346{bottom:691.215000px;}
.y2d_c00346{bottom:708.765000px;}
.y6_c00346{bottom:709.215000px;}
.y5_c00346{bottom:727.065000px;}
.y4_c00346{bottom:745.215000px;}
.y2c_c00346{bottom:762.765000px;}
.y3_c00346{bottom:763.215000px;}
.y2b_c00346{bottom:781.065000px;}
.y2_c00346{bottom:781.965000px;}
.y1_c00346{bottom:802.965000px;}
.h5_c00346{height:13.200074px;}
.h6_c00346{height:43.804688px;}
.h4_c00346{height:59.736000px;}
.h2_c00346{height:62.880000px;}
.h3_c00346{height:66.024000px;}
.h1_c00346{height:844.500000px;}
.h0_c00346{height:844.575000px;}
.w1_c00346{width:104.875500px;}
.w0_c00346{width:590.250000px;}
.x0_c00346{left:0.000000px;}
.x6_c00346{left:11.850000px;}
.xe_c00346{left:17.250000px;}
.x7_c00346{left:64.350000px;}
.x5_c00346{left:67.500000px;}
.x4_c00346{left:68.850000px;}
.x2_c00346{left:69.900000px;}
.x3_c00346{left:71.250000px;}
.x9_c00346{left:72.300000px;}
.xa_c00346{left:73.950000px;}
.xb_c00346{left:75.150000px;}
.xd_c00346{left:76.500000px;}
.xc_c00346{left:77.550000px;}
.x8_c00346{left:149.100000px;}
.x1_c00346{left:204.600000px;}
.x1c_c00346{left:246.939240px;}
.x15_c00346{left:287.850000px;}
.xf_c00346{left:289.500000px;}
.x10_c00346{left:290.850000px;}
.x11_c00346{left:292.200000px;}
.x12_c00346{left:293.250000px;}
.x13_c00346{left:294.600000px;}
.x14_c00346{left:297.000000px;}
.x16_c00346{left:298.950000px;}
.x17_c00346{left:300.300000px;}
.x19_c00346{left:301.650000px;}
.x18_c00346{left:302.700000px;}
.x1a_c00346{left:304.800000px;}
.x1b_c00346{left:464.400000px;}
@media print{
.v1_c00346{vertical-align:-70.400000pt;}
.v0_c00346{vertical-align:0.000000pt;}
.ls8_c00346{letter-spacing:0.000000pt;}
.ls1_c00346{letter-spacing:2.666667pt;}
.ls0_c00346{letter-spacing:5.333333pt;}
.ls7_c00346{letter-spacing:6.837333pt;}
.ls3_c00346{letter-spacing:7.520000pt;}
.ls5_c00346{letter-spacing:10.666667pt;}
.ls6_c00346{letter-spacing:12.424000pt;}
.ls2_c00346{letter-spacing:12.853333pt;}
.ls4_c00346{letter-spacing:19.554667pt;}
.ws2_c00346{word-spacing:-23.413333pt;}
.ws4_c00346{word-spacing:-18.080000pt;}
.ws1_c00346{word-spacing:-15.882667pt;}
.ws5_c00346{word-spacing:-14.624000pt;}
.ws0_c00346{word-spacing:-12.586667pt;}
.ws3_c00346{word-spacing:-10.381333pt;}
.ws6_c00346{word-spacing:0.000000pt;}
._29_c00346{margin-left:-22.720000pt;}
._22_c00346{margin-left:-18.880000pt;}
._17_c00346{margin-left:-16.240000pt;}
._1a_c00346{margin-left:-14.080000pt;}
._1e_c00346{margin-left:-13.066667pt;}
._1b_c00346{margin-left:-11.253333pt;}
._c_c00346{margin-left:-9.920000pt;}
._9_c00346{margin-left:-8.320000pt;}
._f_c00346{margin-left:-7.360000pt;}
._19_c00346{margin-left:-6.453333pt;}
._d_c00346{margin-left:-5.546667pt;}
._5_c00346{margin-left:-4.320000pt;}
._6_c00346{margin-left:-3.413333pt;}
._4_c00346{margin-left:-2.293333pt;}
._3_c00346{margin-left:-1.280000pt;}
._27_c00346{width:0.898667pt;}
._8_c00346{width:1.920000pt;}
._18_c00346{width:3.146667pt;}
._26_c00346{width:4.064000pt;}
._1_c00346{width:5.226667pt;}
._0_c00346{width:6.933333pt;}
._14_c00346{width:7.850667pt;}
._7_c00346{width:9.013333pt;}
._12_c00346{width:9.968000pt;}
._a_c00346{width:11.200000pt;}
._13_c00346{width:12.266667pt;}
._b_c00346{width:13.760000pt;}
._11_c00346{width:15.456000pt;}
._28_c00346{width:18.186667pt;}
._25_c00346{width:19.530667pt;}
._15_c00346{width:21.213333pt;}
._20_c00346{width:22.133333pt;}
._1f_c00346{width:23.800000pt;}
._23_c00346{width:25.120000pt;}
._10_c00346{width:26.712000pt;}
._1d_c00346{width:27.840000pt;}
._21_c00346{width:29.973333pt;}
._2a_c00346{width:31.253333pt;}
._e_c00346{width:33.013333pt;}
._2_c00346{width:34.720000pt;}
._1c_c00346{width:48.533333pt;}
._16_c00346{width:101.314667pt;}
._24_c00346{width:121.386667pt;}
.fs4_c00346{font-size:42.666667pt;}
.fs2_c00346{font-size:45.333333pt;}
.fs3_c00346{font-size:50.666667pt;}
.fs0_c00346{font-size:53.333333pt;}
.fs1_c00346{font-size:56.000000pt;}
.y0_c00346{bottom:0.000000pt;}
.y53_c00346{bottom:2.760000pt;}
.y52_c00346{bottom:6.425219pt;}
.y51_c00346{bottom:32.813333pt;}
.y50_c00346{bottom:50.146667pt;}
.y2a_c00346{bottom:53.213333pt;}
.y4f_c00346{bottom:65.480000pt;}
.y29_c00346{bottom:70.280000pt;}
.y4e_c00346{bottom:82.813333pt;}
.y28_c00346{bottom:84.946667pt;}
.y4d_c00346{bottom:98.413333pt;}
.y27_c00346{bottom:102.946667pt;}
.y4c_c00346{bottom:114.413333pt;}
.y26_c00346{bottom:117.080000pt;}
.y4b_c00346{bottom:130.546667pt;}
.y25_c00346{bottom:134.813333pt;}
.y4a_c00346{bottom:146.813333pt;}
.y24_c00346{bottom:151.480000pt;}
.y49_c00346{bottom:162.680000pt;}
.y23_c00346{bottom:167.480000pt;}
.y48_c00346{bottom:179.080000pt;}
.y22_c00346{bottom:183.613333pt;}
.y47_c00346{bottom:193.613333pt;}
.y21_c00346{bottom:198.013333pt;}
.y46_c00346{bottom:210.946667pt;}
.y20_c00346{bottom:216.013333pt;}
.y45_c00346{bottom:227.213333pt;}
.y1f_c00346{bottom:231.346667pt;}
.y44_c00346{bottom:243.613333pt;}
.y1e_c00346{bottom:247.480000pt;}
.y43_c00346{bottom:259.613333pt;}
.y1d_c00346{bottom:263.480000pt;}
.y42_c00346{bottom:275.080000pt;}
.y1c_c00346{bottom:279.346667pt;}
.y41_c00346{bottom:291.080000pt;}
.y1b_c00346{bottom:295.613333pt;}
.y1a_c00346{bottom:310.813333pt;}
.y40_c00346{bottom:325.213333pt;}
.y19_c00346{bottom:327.080000pt;}
.y3f_c00346{bottom:339.613333pt;}
.y18_c00346{bottom:343.480000pt;}
.y3e_c00346{bottom:356.413333pt;}
.y17_c00346{bottom:360.013333pt;}
.y3d_c00346{bottom:372.413333pt;}
.y16_c00346{bottom:375.613333pt;}
.y3c_c00346{bottom:388.546667pt;}
.y15_c00346{bottom:391.480000pt;}
.y3b_c00346{bottom:404.680000pt;}
.y14_c00346{bottom:407.480000pt;}
.y3a_c00346{bottom:420.680000pt;}
.y13_c00346{bottom:423.880000pt;}
.y39_c00346{bottom:436.813333pt;}
.y12_c00346{bottom:439.213333pt;}
.y38_c00346{bottom:452.813333pt;}
.y11_c00346{bottom:454.813333pt;}
.y37_c00346{bottom:468.413333pt;}
.y10_c00346{bottom:470.413333pt;}
.y36_c00346{bottom:484.546667pt;}
.yf_c00346{bottom:486.413333pt;}
.y35_c00346{bottom:500.813333pt;}
.ye_c00346{bottom:503.080000pt;}
.y34_c00346{bottom:516.413333pt;}
.yd_c00346{bottom:518.813333pt;}
.y33_c00346{bottom:533.080000pt;}
.yc_c00346{bottom:534.413333pt;}
.y32_c00346{bottom:549.080000pt;}
.yb_c00346{bottom:551.080000pt;}
.y31_c00346{bottom:565.613333pt;}
.ya_c00346{bottom:567.613333pt;}
.y30_c00346{bottom:582.013333pt;}
.y9_c00346{bottom:582.946667pt;}
.y2f_c00346{bottom:597.880000pt;}
.y8_c00346{bottom:598.546667pt;}
.y2e_c00346{bottom:613.880000pt;}
.y7_c00346{bottom:614.413333pt;}
.y2d_c00346{bottom:630.013333pt;}
.y6_c00346{bottom:630.413333pt;}
.y5_c00346{bottom:646.280000pt;}
.y4_c00346{bottom:662.413333pt;}
.y2c_c00346{bottom:678.013333pt;}
.y3_c00346{bottom:678.413333pt;}
.y2b_c00346{bottom:694.280000pt;}
.y2_c00346{bottom:695.080000pt;}
.y1_c00346{bottom:713.746667pt;}
.h5_c00346{height:11.733399pt;}
.h6_c00346{height:38.937500pt;}
.h4_c00346{height:53.098667pt;}
.h2_c00346{height:55.893333pt;}
.h3_c00346{height:58.688000pt;}
.h1_c00346{height:750.666667pt;}
.h0_c00346{height:750.733333pt;}
.w1_c00346{width:93.222667pt;}
.w0_c00346{width:524.666667pt;}
.x0_c00346{left:0.000000pt;}
.x6_c00346{left:10.533333pt;}
.xe_c00346{left:15.333333pt;}
.x7_c00346{left:57.200000pt;}
.x5_c00346{left:60.000000pt;}
.x4_c00346{left:61.200000pt;}
.x2_c00346{left:62.133333pt;}
.x3_c00346{left:63.333333pt;}
.x9_c00346{left:64.266667pt;}
.xa_c00346{left:65.733333pt;}
.xb_c00346{left:66.800000pt;}
.xd_c00346{left:68.000000pt;}
.xc_c00346{left:68.933333pt;}
.x8_c00346{left:132.533333pt;}
.x1_c00346{left:181.866667pt;}
.x1c_c00346{left:219.501546pt;}
.x15_c00346{left:255.866667pt;}
.xf_c00346{left:257.333333pt;}
.x10_c00346{left:258.533333pt;}
.x11_c00346{left:259.733333pt;}
.x12_c00346{left:260.666667pt;}
.x13_c00346{left:261.866667pt;}
.x14_c00346{left:264.000000pt;}
.x16_c00346{left:265.733333pt;}
.x17_c00346{left:266.933333pt;}
.x19_c00346{left:268.133333pt;}
.x18_c00346{left:269.066667pt;}
.x1a_c00346{left:270.933333pt;}
.x1b_c00346{left:412.800000pt;}
}





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

.ir_c00347:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00347{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00347;src:url('chunks/assets/font_efca3bf3341af8cc7c17df75.woff2')format("woff");}.ff1_c00347{font-family:ff1_c00347;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00347;src:url('chunks/assets/font_7ad46bbd1a3213ebdd8f4593.woff2')format("woff");}.ff2_c00347{font-family:ff2_c00347;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00347;src:url('chunks/assets/font_2eb09c0cce4bc94ff0a161cd.woff2')format("woff");}.ff3_c00347{font-family:ff3_c00347;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00347;src:url('chunks/assets/font_59d4e14a332939b25657d1d6.woff2')format("woff");}.ff4_c00347{font-family:ff4_c00347;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00347;src:url('chunks/assets/font_a694ab09fdd88b27502a81c7.woff2')format("woff");}.ff5_c00347{font-family:ff5_c00347;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00347;src:url('chunks/assets/font_db3c510041364d59f1bb5837.woff2')format("woff");}.ff6_c00347{font-family:ff6_c00347;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00347;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff7_c00347{font-family:ff7_c00347;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00347{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00347{vertical-align:0.000000px;}
.ls5_c00347{letter-spacing:0.000000px;}
.ls4_c00347{letter-spacing:1.800000px;}
.ls1_c00347{letter-spacing:3.000000px;}
.ls6_c00347{letter-spacing:6.000000px;}
.ls2_c00347{letter-spacing:6.300000px;}
.ls0_c00347{letter-spacing:16.020000px;}
.ls3_c00347{letter-spacing:16.800000px;}
.sc__c00347{text-shadow:none;}
.sc0_c00347{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00347{-webkit-text-stroke:0px transparent;}
.sc0_c00347{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00347{word-spacing:-40.920000px;}
.ws3_c00347{word-spacing:-24.000000px;}
.ws0_c00347{word-spacing:-18.000000px;}
.ws2_c00347{word-spacing:-15.000000px;}
.ws1_c00347{word-spacing:-14.160000px;}
.ws5_c00347{word-spacing:0.000000px;}
._1f_c00347{margin-left:-24.060000px;}
._1d_c00347{margin-left:-19.260000px;}
._22_c00347{margin-left:-15.240000px;}
._24_c00347{margin-left:-14.040000px;}
._1e_c00347{margin-left:-12.000000px;}
._1b_c00347{margin-left:-10.320000px;}
._26_c00347{margin-left:-9.300000px;}
._1c_c00347{margin-left:-8.280000px;}
._17_c00347{margin-left:-7.200000px;}
._18_c00347{margin-left:-5.520000px;}
._15_c00347{margin-left:-3.960000px;}
._13_c00347{margin-left:-2.220000px;}
._16_c00347{margin-left:-1.020000px;}
._d_c00347{width:1.440000px;}
._c_c00347{width:3.000000px;}
._f_c00347{width:4.080000px;}
._11_c00347{width:5.460000px;}
._0_c00347{width:6.600000px;}
._e_c00347{width:7.800000px;}
._10_c00347{width:9.300000px;}
._a_c00347{width:11.100000px;}
._14_c00347{width:12.840000px;}
._2_c00347{width:14.700000px;}
._3_c00347{width:16.440000px;}
._1a_c00347{width:17.880000px;}
._8_c00347{width:19.620000px;}
._6_c00347{width:21.060000px;}
._5_c00347{width:22.560000px;}
._9_c00347{width:24.060000px;}
._4_c00347{width:25.080000px;}
._b_c00347{width:26.700000px;}
._2a_c00347{width:27.900000px;}
._2d_c00347{width:30.000000px;}
._25_c00347{width:31.080000px;}
._7_c00347{width:32.640000px;}
._28_c00347{width:45.180000px;}
._29_c00347{width:47.100000px;}
._20_c00347{width:51.000000px;}
._27_c00347{width:57.480000px;}
._21_c00347{width:64.140000px;}
._12_c00347{width:77.040000px;}
._2b_c00347{width:79.500000px;}
._23_c00347{width:80.880000px;}
._2c_c00347{width:88.800000px;}
._19_c00347{width:102.300000px;}
._1_c00347{width:201.540000px;}
.fc2_c00347{color:transparent;}
.fc1_c00347{color:rgb(128,128,128);}
.fc0_c00347{color:rgb(0,0,0);}
.fs4_c00347{font-size:48.000000px;}
.fs0_c00347{font-size:60.000000px;}
.fs3_c00347{font-size:66.000000px;}
.fs1_c00347{font-size:69.000000px;}
.fs2_c00347{font-size:72.000000px;}
.y0_c00347{bottom:0.000000px;}
.y53_c00347{bottom:3.105000px;}
.y52_c00347{bottom:7.228355px;}
.y51_c00347{bottom:48.135000px;}
.y50_c00347{bottom:64.485000px;}
.y4f_c00347{bottom:82.935000px;}
.y2b_c00347{bottom:101.235000px;}
.y4e_c00347{bottom:102.135000px;}
.y2a_c00347{bottom:119.085000px;}
.y4d_c00347{bottom:119.385000px;}
.y29_c00347{bottom:137.385000px;}
.y4c_c00347{bottom:138.585000px;}
.y28_c00347{bottom:154.935000px;}
.y4b_c00347{bottom:155.835000px;}
.y27_c00347{bottom:173.085000px;}
.y4a_c00347{bottom:173.685000px;}
.y26_c00347{bottom:191.085000px;}
.y49_c00347{bottom:192.585000px;}
.y25_c00347{bottom:208.935000px;}
.y48_c00347{bottom:210.135000px;}
.y24_c00347{bottom:226.785000px;}
.y47_c00347{bottom:228.735000px;}
.y23_c00347{bottom:245.235000px;}
.y46_c00347{bottom:245.985000px;}
.y22_c00347{bottom:263.235000px;}
.y45_c00347{bottom:264.285000px;}
.y21_c00347{bottom:281.085000px;}
.y44_c00347{bottom:282.735000px;}
.y20_c00347{bottom:299.685000px;}
.y43_c00347{bottom:301.185000px;}
.y1f_c00347{bottom:317.835000px;}
.y42_c00347{bottom:319.185000px;}
.y1e_c00347{bottom:335.835000px;}
.y41_c00347{bottom:337.185000px;}
.y1d_c00347{bottom:353.985000px;}
.y40_c00347{bottom:355.035000px;}
.y1c_c00347{bottom:372.285000px;}
.y3f_c00347{bottom:373.185000px;}
.y1b_c00347{bottom:390.135000px;}
.y3e_c00347{bottom:391.485000px;}
.y1a_c00347{bottom:407.685000px;}
.y3d_c00347{bottom:409.935000px;}
.y19_c00347{bottom:426.135000px;}
.y3c_c00347{bottom:427.935000px;}
.y18_c00347{bottom:444.135000px;}
.y3b_c00347{bottom:446.085000px;}
.y17_c00347{bottom:463.335000px;}
.y3a_c00347{bottom:463.935000px;}
.y16_c00347{bottom:480.885000px;}
.y39_c00347{bottom:481.935000px;}
.y15_c00347{bottom:498.435000px;}
.y38_c00347{bottom:500.385000px;}
.y14_c00347{bottom:516.585000px;}
.y37_c00347{bottom:518.385000px;}
.y13_c00347{bottom:535.935000px;}
.y36_c00347{bottom:536.235000px;}
.y12_c00347{bottom:552.135000px;}
.y35_c00347{bottom:554.235000px;}
.y11_c00347{bottom:570.735000px;}
.y34_c00347{bottom:572.385000px;}
.y10_c00347{bottom:589.185000px;}
.y33_c00347{bottom:590.535000px;}
.yf_c00347{bottom:607.185000px;}
.y32_c00347{bottom:608.535000px;}
.ye_c00347{bottom:624.735000px;}
.y31_c00347{bottom:626.385000px;}
.yd_c00347{bottom:642.585000px;}
.y30_c00347{bottom:644.535000px;}
.yc_c00347{bottom:660.585000px;}
.y2f_c00347{bottom:662.835000px;}
.yb_c00347{bottom:678.735000px;}
.y2e_c00347{bottom:680.685000px;}
.ya_c00347{bottom:696.885000px;}
.y2d_c00347{bottom:699.285000px;}
.y9_c00347{bottom:715.035000px;}
.y2c_c00347{bottom:716.835000px;}
.y8_c00347{bottom:733.335000px;}
.y5_c00347{bottom:734.985000px;}
.y7_c00347{bottom:751.185000px;}
.y4_c00347{bottom:753.885000px;}
.y6_c00347{bottom:769.485000px;}
.y3_c00347{bottom:771.135000px;}
.y2_c00347{bottom:788.385000px;}
.y1_c00347{bottom:806.985000px;}
.h7_c00347{height:13.200074px;}
.h8_c00347{height:43.804688px;}
.h3_c00347{height:62.880000px;}
.h2_c00347{height:64.020000px;}
.h6_c00347{height:69.168000px;}
.h5_c00347{height:70.664062px;}
.h4_c00347{height:73.623000px;}
.h1_c00347{height:846.750000px;}
.h0_c00347{height:846.975000px;}
.w2_c00347{width:104.875500px;}
.w1_c00347{width:575.250000px;}
.w0_c00347{width:575.400000px;}
.x0_c00347{left:0.000000px;}
.x10_c00347{left:34.350000px;}
.x6_c00347{left:43.500000px;}
.x7_c00347{left:44.850000px;}
.x1c_c00347{left:94.800000px;}
.x12_c00347{left:95.850000px;}
.xf_c00347{left:97.800000px;}
.xe_c00347{left:99.150000px;}
.xd_c00347{left:100.800000px;}
.xc_c00347{left:102.300000px;}
.xb_c00347{left:103.500000px;}
.xa_c00347{left:104.850000px;}
.x9_c00347{left:106.200000px;}
.x8_c00347{left:107.250000px;}
.x5_c00347{left:109.650000px;}
.x4_c00347{left:110.700000px;}
.x1_c00347{left:112.050000px;}
.x11_c00347{left:159.000000px;}
.x1e_c00347{left:239.514267px;}
.x1b_c00347{left:315.150000px;}
.x19_c00347{left:321.300000px;}
.x1a_c00347{left:322.950000px;}
.x18_c00347{left:324.000000px;}
.x17_c00347{left:325.050000px;}
.x16_c00347{left:326.250000px;}
.x15_c00347{left:327.300000px;}
.x14_c00347{left:328.650000px;}
.x13_c00347{left:329.700000px;}
.x3_c00347{left:331.050000px;}
.x2_c00347{left:333.000000px;}
.x1d_c00347{left:472.950000px;}
@media print{
.v0_c00347{vertical-align:0.000000pt;}
.ls5_c00347{letter-spacing:0.000000pt;}
.ls4_c00347{letter-spacing:1.600000pt;}
.ls1_c00347{letter-spacing:2.666667pt;}
.ls6_c00347{letter-spacing:5.333333pt;}
.ls2_c00347{letter-spacing:5.600000pt;}
.ls0_c00347{letter-spacing:14.240000pt;}
.ls3_c00347{letter-spacing:14.933333pt;}
.ws4_c00347{word-spacing:-36.373333pt;}
.ws3_c00347{word-spacing:-21.333333pt;}
.ws0_c00347{word-spacing:-16.000000pt;}
.ws2_c00347{word-spacing:-13.333333pt;}
.ws1_c00347{word-spacing:-12.586667pt;}
.ws5_c00347{word-spacing:0.000000pt;}
._1f_c00347{margin-left:-21.386667pt;}
._1d_c00347{margin-left:-17.120000pt;}
._22_c00347{margin-left:-13.546667pt;}
._24_c00347{margin-left:-12.480000pt;}
._1e_c00347{margin-left:-10.666667pt;}
._1b_c00347{margin-left:-9.173333pt;}
._26_c00347{margin-left:-8.266667pt;}
._1c_c00347{margin-left:-7.360000pt;}
._17_c00347{margin-left:-6.400000pt;}
._18_c00347{margin-left:-4.906667pt;}
._15_c00347{margin-left:-3.520000pt;}
._13_c00347{margin-left:-1.973333pt;}
._16_c00347{margin-left:-0.906667pt;}
._d_c00347{width:1.280000pt;}
._c_c00347{width:2.666667pt;}
._f_c00347{width:3.626667pt;}
._11_c00347{width:4.853333pt;}
._0_c00347{width:5.866667pt;}
._e_c00347{width:6.933333pt;}
._10_c00347{width:8.266667pt;}
._a_c00347{width:9.866667pt;}
._14_c00347{width:11.413333pt;}
._2_c00347{width:13.066667pt;}
._3_c00347{width:14.613333pt;}
._1a_c00347{width:15.893333pt;}
._8_c00347{width:17.440000pt;}
._6_c00347{width:18.720000pt;}
._5_c00347{width:20.053333pt;}
._9_c00347{width:21.386667pt;}
._4_c00347{width:22.293333pt;}
._b_c00347{width:23.733333pt;}
._2a_c00347{width:24.800000pt;}
._2d_c00347{width:26.666667pt;}
._25_c00347{width:27.626667pt;}
._7_c00347{width:29.013333pt;}
._28_c00347{width:40.160000pt;}
._29_c00347{width:41.866667pt;}
._20_c00347{width:45.333333pt;}
._27_c00347{width:51.093333pt;}
._21_c00347{width:57.013333pt;}
._12_c00347{width:68.480000pt;}
._2b_c00347{width:70.666667pt;}
._23_c00347{width:71.893333pt;}
._2c_c00347{width:78.933333pt;}
._19_c00347{width:90.933333pt;}
._1_c00347{width:179.146667pt;}
.fs4_c00347{font-size:42.666667pt;}
.fs0_c00347{font-size:53.333333pt;}
.fs3_c00347{font-size:58.666667pt;}
.fs1_c00347{font-size:61.333333pt;}
.fs2_c00347{font-size:64.000000pt;}
.y0_c00347{bottom:0.000000pt;}
.y53_c00347{bottom:2.760000pt;}
.y52_c00347{bottom:6.425204pt;}
.y51_c00347{bottom:42.786667pt;}
.y50_c00347{bottom:57.320000pt;}
.y4f_c00347{bottom:73.720000pt;}
.y2b_c00347{bottom:89.986667pt;}
.y4e_c00347{bottom:90.786667pt;}
.y2a_c00347{bottom:105.853333pt;}
.y4d_c00347{bottom:106.120000pt;}
.y29_c00347{bottom:122.120000pt;}
.y4c_c00347{bottom:123.186667pt;}
.y28_c00347{bottom:137.720000pt;}
.y4b_c00347{bottom:138.520000pt;}
.y27_c00347{bottom:153.853333pt;}
.y4a_c00347{bottom:154.386667pt;}
.y26_c00347{bottom:169.853333pt;}
.y49_c00347{bottom:171.186667pt;}
.y25_c00347{bottom:185.720000pt;}
.y48_c00347{bottom:186.786667pt;}
.y24_c00347{bottom:201.586667pt;}
.y47_c00347{bottom:203.320000pt;}
.y23_c00347{bottom:217.986667pt;}
.y46_c00347{bottom:218.653333pt;}
.y22_c00347{bottom:233.986667pt;}
.y45_c00347{bottom:234.920000pt;}
.y21_c00347{bottom:249.853333pt;}
.y44_c00347{bottom:251.320000pt;}
.y20_c00347{bottom:266.386667pt;}
.y43_c00347{bottom:267.720000pt;}
.y1f_c00347{bottom:282.520000pt;}
.y42_c00347{bottom:283.720000pt;}
.y1e_c00347{bottom:298.520000pt;}
.y41_c00347{bottom:299.720000pt;}
.y1d_c00347{bottom:314.653333pt;}
.y40_c00347{bottom:315.586667pt;}
.y1c_c00347{bottom:330.920000pt;}
.y3f_c00347{bottom:331.720000pt;}
.y1b_c00347{bottom:346.786667pt;}
.y3e_c00347{bottom:347.986667pt;}
.y1a_c00347{bottom:362.386667pt;}
.y3d_c00347{bottom:364.386667pt;}
.y19_c00347{bottom:378.786667pt;}
.y3c_c00347{bottom:380.386667pt;}
.y18_c00347{bottom:394.786667pt;}
.y3b_c00347{bottom:396.520000pt;}
.y17_c00347{bottom:411.853333pt;}
.y3a_c00347{bottom:412.386667pt;}
.y16_c00347{bottom:427.453333pt;}
.y39_c00347{bottom:428.386667pt;}
.y15_c00347{bottom:443.053333pt;}
.y38_c00347{bottom:444.786667pt;}
.y14_c00347{bottom:459.186667pt;}
.y37_c00347{bottom:460.786667pt;}
.y13_c00347{bottom:476.386667pt;}
.y36_c00347{bottom:476.653333pt;}
.y12_c00347{bottom:490.786667pt;}
.y35_c00347{bottom:492.653333pt;}
.y11_c00347{bottom:507.320000pt;}
.y34_c00347{bottom:508.786667pt;}
.y10_c00347{bottom:523.720000pt;}
.y33_c00347{bottom:524.920000pt;}
.yf_c00347{bottom:539.720000pt;}
.y32_c00347{bottom:540.920000pt;}
.ye_c00347{bottom:555.320000pt;}
.y31_c00347{bottom:556.786667pt;}
.yd_c00347{bottom:571.186667pt;}
.y30_c00347{bottom:572.920000pt;}
.yc_c00347{bottom:587.186667pt;}
.y2f_c00347{bottom:589.186667pt;}
.yb_c00347{bottom:603.320000pt;}
.y2e_c00347{bottom:605.053333pt;}
.ya_c00347{bottom:619.453333pt;}
.y2d_c00347{bottom:621.586667pt;}
.y9_c00347{bottom:635.586667pt;}
.y2c_c00347{bottom:637.186667pt;}
.y8_c00347{bottom:651.853333pt;}
.y5_c00347{bottom:653.320000pt;}
.y7_c00347{bottom:667.720000pt;}
.y4_c00347{bottom:670.120000pt;}
.y6_c00347{bottom:683.986667pt;}
.y3_c00347{bottom:685.453333pt;}
.y2_c00347{bottom:700.786667pt;}
.y1_c00347{bottom:717.320000pt;}
.h7_c00347{height:11.733399pt;}
.h8_c00347{height:38.937500pt;}
.h3_c00347{height:55.893333pt;}
.h2_c00347{height:56.906667pt;}
.h6_c00347{height:61.482667pt;}
.h5_c00347{height:62.812500pt;}
.h4_c00347{height:65.442667pt;}
.h1_c00347{height:752.666667pt;}
.h0_c00347{height:752.866667pt;}
.w2_c00347{width:93.222667pt;}
.w1_c00347{width:511.333333pt;}
.w0_c00347{width:511.466667pt;}
.x0_c00347{left:0.000000pt;}
.x10_c00347{left:30.533333pt;}
.x6_c00347{left:38.666667pt;}
.x7_c00347{left:39.866667pt;}
.x1c_c00347{left:84.266667pt;}
.x12_c00347{left:85.200000pt;}
.xf_c00347{left:86.933333pt;}
.xe_c00347{left:88.133333pt;}
.xd_c00347{left:89.600000pt;}
.xc_c00347{left:90.933333pt;}
.xb_c00347{left:92.000000pt;}
.xa_c00347{left:93.200000pt;}
.x9_c00347{left:94.400000pt;}
.x8_c00347{left:95.333333pt;}
.x5_c00347{left:97.466667pt;}
.x4_c00347{left:98.400000pt;}
.x1_c00347{left:99.600000pt;}
.x11_c00347{left:141.333333pt;}
.x1e_c00347{left:212.901571pt;}
.x1b_c00347{left:280.133333pt;}
.x19_c00347{left:285.600000pt;}
.x1a_c00347{left:287.066667pt;}
.x18_c00347{left:288.000000pt;}
.x17_c00347{left:288.933333pt;}
.x16_c00347{left:290.000000pt;}
.x15_c00347{left:290.933333pt;}
.x14_c00347{left:292.133333pt;}
.x13_c00347{left:293.066667pt;}
.x3_c00347{left:294.266667pt;}
.x2_c00347{left:296.000000pt;}
.x1d_c00347{left:420.400000pt;}
}





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

.ir_c00348:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00348{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00348;src:url('chunks/assets/font_d021ef9253afcde596f58c84.woff2')format("woff");}.ff1_c00348{font-family:ff1_c00348;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00348;src:url('chunks/assets/font_af15a56213866dbc87efb9a3.woff2')format("woff");}.ff2_c00348{font-family:ff2_c00348;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00348;src:url('chunks/assets/font_a36cd579c8e9d14a08075ed0.woff2')format("woff");}.ff3_c00348{font-family:ff3_c00348;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00348;src:url('chunks/assets/font_79a29f02ba9b61ae14ed8698.woff2')format("woff");}.ff4_c00348{font-family:ff4_c00348;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00348;src:url('chunks/assets/font_7e982b00a3b38b2335c89adb.woff2')format("woff");}.ff5_c00348{font-family:ff5_c00348;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00348;src:url('chunks/assets/font_10c0b2fa18d363fb2762e120.woff2')format("woff");}.ff6_c00348{font-family:ff6_c00348;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00348;src:url('chunks/assets/font_75c44b660503eb96518d9355.woff2')format("woff");}.ff7_c00348{font-family:ff7_c00348;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00348;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff8_c00348{font-family:ff8_c00348;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00348{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00348{vertical-align:0.000000px;}
.ls8_c00348{letter-spacing:0.000000px;}
.ls0_c00348{letter-spacing:0.540000px;}
.ls6_c00348{letter-spacing:0.600000px;}
.ls4_c00348{letter-spacing:3.000000px;}
.ls2_c00348{letter-spacing:6.000000px;}
.ls1_c00348{letter-spacing:10.200000px;}
.ls9_c00348{letter-spacing:12.000000px;}
.ls5_c00348{letter-spacing:15.960000px;}
.ls3_c00348{letter-spacing:16.860000px;}
.ls7_c00348{letter-spacing:439.860000px;}
.sc__c00348{text-shadow:none;}
.sc0_c00348{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00348{-webkit-text-stroke:0px transparent;}
.sc0_c00348{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00348{word-spacing:-30.636000px;}
.ws5_c00348{word-spacing:-26.340000px;}
.ws1_c00348{word-spacing:-20.340000px;}
.ws2_c00348{word-spacing:-18.060000px;}
.ws0_c00348{word-spacing:-14.160000px;}
.ws7_c00348{word-spacing:-3.900000px;}
.ws8_c00348{word-spacing:0.000000px;}
.ws3_c00348{word-spacing:0.480000px;}
.ws6_c00348{word-spacing:0.585000px;}
._1f_c00348{margin-left:-17.400000px;}
._f_c00348{margin-left:-12.180000px;}
._24_c00348{margin-left:-11.100000px;}
._9_c00348{margin-left:-9.900000px;}
._4_c00348{margin-left:-8.580000px;}
._16_c00348{margin-left:-7.560000px;}
._7_c00348{margin-left:-6.360000px;}
._8_c00348{margin-left:-4.920000px;}
._5_c00348{margin-left:-3.240000px;}
._c_c00348{margin-left:-1.380000px;}
._3_c00348{width:1.440000px;}
._10_c00348{width:2.460000px;}
._13_c00348{width:4.260000px;}
._6_c00348{width:5.400000px;}
._d_c00348{width:7.200000px;}
._1a_c00348{width:8.340000px;}
._22_c00348{width:9.480000px;}
._a_c00348{width:10.620000px;}
._b_c00348{width:12.360000px;}
._2_c00348{width:13.860000px;}
._0_c00348{width:15.840000px;}
._12_c00348{width:16.980000px;}
._e_c00348{width:18.480000px;}
._11_c00348{width:20.520000px;}
._17_c00348{width:22.020000px;}
._19_c00348{width:23.400000px;}
._23_c00348{width:25.020000px;}
._1d_c00348{width:26.100000px;}
._18_c00348{width:28.080000px;}
._1b_c00348{width:30.300000px;}
._21_c00348{width:31.560000px;}
._14_c00348{width:32.760000px;}
._1c_c00348{width:36.360000px;}
._15_c00348{width:37.440000px;}
._1_c00348{width:41.160000px;}
._20_c00348{width:43.860000px;}
._1e_c00348{width:93.600000px;}
._25_c00348{width:167.340000px;}
.fc2_c00348{color:transparent;}
.fc1_c00348{color:rgb(128,128,128);}
.fc0_c00348{color:rgb(0,0,0);}
.fs3_c00348{font-size:45.000000px;}
.fs4_c00348{font-size:48.000000px;}
.fs0_c00348{font-size:60.000000px;}
.fs1_c00348{font-size:66.000000px;}
.fs2_c00348{font-size:69.000000px;}
.y0_c00348{bottom:0.000000px;}
.y55_c00348{bottom:3.105000px;}
.y54_c00348{bottom:7.228363px;}
.y53_c00348{bottom:32.400000px;}
.y52_c00348{bottom:55.650000px;}
.y28_c00348{bottom:56.400000px;}
.y51_c00348{bottom:74.250000px;}
.y27_c00348{bottom:75.900000px;}
.y50_c00348{bottom:92.100000px;}
.y26_c00348{bottom:93.450000px;}
.y4f_c00348{bottom:110.100000px;}
.y25_c00348{bottom:112.050000px;}
.y4e_c00348{bottom:128.700000px;}
.y24_c00348{bottom:129.600000px;}
.y4d_c00348{bottom:146.550000px;}
.y23_c00348{bottom:147.750000px;}
.y4c_c00348{bottom:163.800000px;}
.y22_c00348{bottom:166.350000px;}
.y4b_c00348{bottom:182.250000px;}
.y21_c00348{bottom:184.650000px;}
.y4a_c00348{bottom:199.800000px;}
.y20_c00348{bottom:202.050000px;}
.y49_c00348{bottom:219.000000px;}
.y1f_c00348{bottom:220.050000px;}
.y48_c00348{bottom:237.000000px;}
.y1e_c00348{bottom:238.500000px;}
.y47_c00348{bottom:254.550000px;}
.y1d_c00348{bottom:256.800000px;}
.y46_c00348{bottom:273.000000px;}
.y1c_c00348{bottom:274.350000px;}
.y45_c00348{bottom:291.000000px;}
.y1b_c00348{bottom:292.200000px;}
.y44_c00348{bottom:308.550000px;}
.y1a_c00348{bottom:309.450000px;}
.y43_c00348{bottom:327.150000px;}
.y19_c00348{bottom:327.600000px;}
.y42_c00348{bottom:345.000000px;}
.y18_c00348{bottom:345.300000px;}
.y41_c00348{bottom:363.150000px;}
.y17_c00348{bottom:363.750000px;}
.y40_c00348{bottom:381.000000px;}
.y16_c00348{bottom:381.600000px;}
.y3f_c00348{bottom:397.950000px;}
.y15_c00348{bottom:398.850000px;}
.y14_c00348{bottom:416.400000px;}
.y3e_c00348{bottom:417.150000px;}
.y3d_c00348{bottom:433.800000px;}
.y13_c00348{bottom:435.300000px;}
.y3c_c00348{bottom:451.950000px;}
.y12_c00348{bottom:454.200000px;}
.y11_c00348{bottom:470.700000px;}
.y3b_c00348{bottom:471.150000px;}
.y3a_c00348{bottom:489.000000px;}
.y10_c00348{bottom:489.600000px;}
.y39_c00348{bottom:507.900000px;}
.yf_c00348{bottom:523.350000px;}
.y38_c00348{bottom:526.200000px;}
.y37_c00348{bottom:544.800000px;}
.ye_c00348{bottom:559.200000px;}
.y36_c00348{bottom:562.650000px;}
.yd_c00348{bottom:577.800000px;}
.y35_c00348{bottom:579.900000px;}
.yc_c00348{bottom:596.700000px;}
.y34_c00348{bottom:598.500000px;}
.yb_c00348{bottom:614.250000px;}
.y33_c00348{bottom:616.950000px;}
.ya_c00348{bottom:632.250000px;}
.y32_c00348{bottom:634.800000px;}
.y9_c00348{bottom:650.700000px;}
.y31_c00348{bottom:653.700000px;}
.y8_c00348{bottom:668.250000px;}
.y30_c00348{bottom:670.950000px;}
.y7_c00348{bottom:686.250000px;}
.y2f_c00348{bottom:689.550000px;}
.y6_c00348{bottom:704.250000px;}
.y2e_c00348{bottom:707.400000px;}
.y5_c00348{bottom:722.250000px;}
.y2d_c00348{bottom:725.850000px;}
.y4_c00348{bottom:740.100000px;}
.y2c_c00348{bottom:743.550000px;}
.y3_c00348{bottom:758.250000px;}
.y2b_c00348{bottom:761.400000px;}
.y2_c00348{bottom:775.950000px;}
.y2a_c00348{bottom:780.300000px;}
.y1_c00348{bottom:795.150000px;}
.y29_c00348{bottom:798.900000px;}
.h6_c00348{height:13.200074px;}
.h7_c00348{height:43.804688px;}
.h3_c00348{height:62.880000px;}
.h5_c00348{height:64.020000px;}
.h4_c00348{height:67.719727px;}
.h2_c00348{height:70.422000px;}
.h1_c00348{height:828.750000px;}
.h0_c00348{height:828.900000px;}
.w2_c00348{width:104.875500px;}
.w0_c00348{width:579.450000px;}
.w1_c00348{width:579.750000px;}
.x0_c00348{left:0.000000px;}
.xb_c00348{left:14.100000px;}
.xe_c00348{left:70.800000px;}
.xd_c00348{left:71.850000px;}
.xc_c00348{left:72.900000px;}
.x3_c00348{left:74.550000px;}
.x2_c00348{left:75.600000px;}
.x4_c00348{left:76.650000px;}
.xa_c00348{left:82.350000px;}
.x7_c00348{left:86.400000px;}
.x8_c00348{left:106.350000px;}
.x6_c00348{left:109.650000px;}
.x5_c00348{left:145.350000px;}
.x9_c00348{left:146.700000px;}
.x1_c00348{left:206.250000px;}
.x16_c00348{left:241.539230px;}
.x12_c00348{left:287.850000px;}
.x14_c00348{left:290.850000px;}
.x13_c00348{left:291.900000px;}
.x11_c00348{left:293.250000px;}
.x10_c00348{left:294.900000px;}
.xf_c00348{left:295.950000px;}
.x15_c00348{left:393.900000px;}
@media print{
.v0_c00348{vertical-align:0.000000pt;}
.ls8_c00348{letter-spacing:0.000000pt;}
.ls0_c00348{letter-spacing:0.480000pt;}
.ls6_c00348{letter-spacing:0.533333pt;}
.ls4_c00348{letter-spacing:2.666667pt;}
.ls2_c00348{letter-spacing:5.333333pt;}
.ls1_c00348{letter-spacing:9.066667pt;}
.ls9_c00348{letter-spacing:10.666667pt;}
.ls5_c00348{letter-spacing:14.186667pt;}
.ls3_c00348{letter-spacing:14.986667pt;}
.ls7_c00348{letter-spacing:390.986667pt;}
.ws4_c00348{word-spacing:-27.232000pt;}
.ws5_c00348{word-spacing:-23.413333pt;}
.ws1_c00348{word-spacing:-18.080000pt;}
.ws2_c00348{word-spacing:-16.053333pt;}
.ws0_c00348{word-spacing:-12.586667pt;}
.ws7_c00348{word-spacing:-3.466667pt;}
.ws8_c00348{word-spacing:0.000000pt;}
.ws3_c00348{word-spacing:0.426667pt;}
.ws6_c00348{word-spacing:0.520000pt;}
._1f_c00348{margin-left:-15.466667pt;}
._f_c00348{margin-left:-10.826667pt;}
._24_c00348{margin-left:-9.866667pt;}
._9_c00348{margin-left:-8.800000pt;}
._4_c00348{margin-left:-7.626667pt;}
._16_c00348{margin-left:-6.720000pt;}
._7_c00348{margin-left:-5.653333pt;}
._8_c00348{margin-left:-4.373333pt;}
._5_c00348{margin-left:-2.880000pt;}
._c_c00348{margin-left:-1.226667pt;}
._3_c00348{width:1.280000pt;}
._10_c00348{width:2.186667pt;}
._13_c00348{width:3.786667pt;}
._6_c00348{width:4.800000pt;}
._d_c00348{width:6.400000pt;}
._1a_c00348{width:7.413333pt;}
._22_c00348{width:8.426667pt;}
._a_c00348{width:9.440000pt;}
._b_c00348{width:10.986667pt;}
._2_c00348{width:12.320000pt;}
._0_c00348{width:14.080000pt;}
._12_c00348{width:15.093333pt;}
._e_c00348{width:16.426667pt;}
._11_c00348{width:18.240000pt;}
._17_c00348{width:19.573333pt;}
._19_c00348{width:20.800000pt;}
._23_c00348{width:22.240000pt;}
._1d_c00348{width:23.200000pt;}
._18_c00348{width:24.960000pt;}
._1b_c00348{width:26.933333pt;}
._21_c00348{width:28.053333pt;}
._14_c00348{width:29.120000pt;}
._1c_c00348{width:32.320000pt;}
._15_c00348{width:33.280000pt;}
._1_c00348{width:36.586667pt;}
._20_c00348{width:38.986667pt;}
._1e_c00348{width:83.200000pt;}
._25_c00348{width:148.746667pt;}
.fs3_c00348{font-size:40.000000pt;}
.fs4_c00348{font-size:42.666667pt;}
.fs0_c00348{font-size:53.333333pt;}
.fs1_c00348{font-size:58.666667pt;}
.fs2_c00348{font-size:61.333333pt;}
.y0_c00348{bottom:0.000000pt;}
.y55_c00348{bottom:2.760000pt;}
.y54_c00348{bottom:6.425212pt;}
.y53_c00348{bottom:28.800000pt;}
.y52_c00348{bottom:49.466667pt;}
.y28_c00348{bottom:50.133333pt;}
.y51_c00348{bottom:66.000000pt;}
.y27_c00348{bottom:67.466667pt;}
.y50_c00348{bottom:81.866667pt;}
.y26_c00348{bottom:83.066667pt;}
.y4f_c00348{bottom:97.866667pt;}
.y25_c00348{bottom:99.600000pt;}
.y4e_c00348{bottom:114.400000pt;}
.y24_c00348{bottom:115.200000pt;}
.y4d_c00348{bottom:130.266667pt;}
.y23_c00348{bottom:131.333333pt;}
.y4c_c00348{bottom:145.600000pt;}
.y22_c00348{bottom:147.866667pt;}
.y4b_c00348{bottom:162.000000pt;}
.y21_c00348{bottom:164.133333pt;}
.y4a_c00348{bottom:177.600000pt;}
.y20_c00348{bottom:179.600000pt;}
.y49_c00348{bottom:194.666667pt;}
.y1f_c00348{bottom:195.600000pt;}
.y48_c00348{bottom:210.666667pt;}
.y1e_c00348{bottom:212.000000pt;}
.y47_c00348{bottom:226.266667pt;}
.y1d_c00348{bottom:228.266667pt;}
.y46_c00348{bottom:242.666667pt;}
.y1c_c00348{bottom:243.866667pt;}
.y45_c00348{bottom:258.666667pt;}
.y1b_c00348{bottom:259.733333pt;}
.y44_c00348{bottom:274.266667pt;}
.y1a_c00348{bottom:275.066667pt;}
.y43_c00348{bottom:290.800000pt;}
.y19_c00348{bottom:291.200000pt;}
.y42_c00348{bottom:306.666667pt;}
.y18_c00348{bottom:306.933333pt;}
.y41_c00348{bottom:322.800000pt;}
.y17_c00348{bottom:323.333333pt;}
.y40_c00348{bottom:338.666667pt;}
.y16_c00348{bottom:339.200000pt;}
.y3f_c00348{bottom:353.733333pt;}
.y15_c00348{bottom:354.533333pt;}
.y14_c00348{bottom:370.133333pt;}
.y3e_c00348{bottom:370.800000pt;}
.y3d_c00348{bottom:385.600000pt;}
.y13_c00348{bottom:386.933333pt;}
.y3c_c00348{bottom:401.733333pt;}
.y12_c00348{bottom:403.733333pt;}
.y11_c00348{bottom:418.400000pt;}
.y3b_c00348{bottom:418.800000pt;}
.y3a_c00348{bottom:434.666667pt;}
.y10_c00348{bottom:435.200000pt;}
.y39_c00348{bottom:451.466667pt;}
.yf_c00348{bottom:465.200000pt;}
.y38_c00348{bottom:467.733333pt;}
.y37_c00348{bottom:484.266667pt;}
.ye_c00348{bottom:497.066667pt;}
.y36_c00348{bottom:500.133333pt;}
.yd_c00348{bottom:513.600000pt;}
.y35_c00348{bottom:515.466667pt;}
.yc_c00348{bottom:530.400000pt;}
.y34_c00348{bottom:532.000000pt;}
.yb_c00348{bottom:546.000000pt;}
.y33_c00348{bottom:548.400000pt;}
.ya_c00348{bottom:562.000000pt;}
.y32_c00348{bottom:564.266667pt;}
.y9_c00348{bottom:578.400000pt;}
.y31_c00348{bottom:581.066667pt;}
.y8_c00348{bottom:594.000000pt;}
.y30_c00348{bottom:596.400000pt;}
.y7_c00348{bottom:610.000000pt;}
.y2f_c00348{bottom:612.933333pt;}
.y6_c00348{bottom:626.000000pt;}
.y2e_c00348{bottom:628.800000pt;}
.y5_c00348{bottom:642.000000pt;}
.y2d_c00348{bottom:645.200000pt;}
.y4_c00348{bottom:657.866667pt;}
.y2c_c00348{bottom:660.933333pt;}
.y3_c00348{bottom:674.000000pt;}
.y2b_c00348{bottom:676.800000pt;}
.y2_c00348{bottom:689.733333pt;}
.y2a_c00348{bottom:693.600000pt;}
.y1_c00348{bottom:706.800000pt;}
.y29_c00348{bottom:710.133333pt;}
.h6_c00348{height:11.733399pt;}
.h7_c00348{height:38.937500pt;}
.h3_c00348{height:55.893333pt;}
.h5_c00348{height:56.906667pt;}
.h4_c00348{height:60.195312pt;}
.h2_c00348{height:62.597333pt;}
.h1_c00348{height:736.666667pt;}
.h0_c00348{height:736.800000pt;}
.w2_c00348{width:93.222667pt;}
.w0_c00348{width:515.066667pt;}
.w1_c00348{width:515.333333pt;}
.x0_c00348{left:0.000000pt;}
.xb_c00348{left:12.533333pt;}
.xe_c00348{left:62.933333pt;}
.xd_c00348{left:63.866667pt;}
.xc_c00348{left:64.800000pt;}
.x3_c00348{left:66.266667pt;}
.x2_c00348{left:67.200000pt;}
.x4_c00348{left:68.133333pt;}
.xa_c00348{left:73.200000pt;}
.x7_c00348{left:76.800000pt;}
.x8_c00348{left:94.533333pt;}
.x6_c00348{left:97.466667pt;}
.x5_c00348{left:129.200000pt;}
.x9_c00348{left:130.400000pt;}
.x1_c00348{left:183.333333pt;}
.x16_c00348{left:214.701538pt;}
.x12_c00348{left:255.866667pt;}
.x14_c00348{left:258.533333pt;}
.x13_c00348{left:259.466667pt;}
.x11_c00348{left:260.666667pt;}
.x10_c00348{left:262.133333pt;}
.xf_c00348{left:263.066667pt;}
.x15_c00348{left:350.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_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_9424718750a4d7d142f42795.woff2')format("woff");}.ff1_c00349{font-family:ff1_c00349;line-height:1.575000;font-style:normal;font-weight:normal;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_4feafb7c73b2a2d2289b67b6.woff2')format("woff");}.ff2_c00349{font-family:ff2_c00349;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00349;src:url('chunks/assets/font_836d9639fdfd4f1ec63b62e8.woff2')format("woff");}.ff3_c00349{font-family:ff3_c00349;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00349;src:url('chunks/assets/font_e7ff172cd75590a4530f4ff9.woff2')format("woff");}.ff4_c00349{font-family:ff4_c00349;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00349;src:url('chunks/assets/font_0936280ada47d3560bd3821f.woff2')format("woff");}.ff5_c00349{font-family:ff5_c00349;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00349;src:url('chunks/assets/font_68e9978a62662e5e5f5a0f75.woff2')format("woff");}.ff6_c00349{font-family:ff6_c00349;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00349;src:url('chunks/assets/font_7b6f1a2232e067096726c6fc.woff2')format("woff");}.ff7_c00349{font-family:ff7_c00349;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00349;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff8_c00349{font-family:ff8_c00349;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00349{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00349{vertical-align:0.000000px;}
.v1_c00349{vertical-align:87.600000px;}
.ls8_c00349{letter-spacing:-6.000000px;}
.ls7_c00349{letter-spacing:-3.000000px;}
.ls6_c00349{letter-spacing:0.000000px;}
.ls4_c00349{letter-spacing:2.580000px;}
.ls5_c00349{letter-spacing:3.000000px;}
.ls1_c00349{letter-spacing:3.780000px;}
.ls3_c00349{letter-spacing:18.984000px;}
.ls0_c00349{letter-spacing:56.238000px;}
.ls2_c00349{letter-spacing:81.984000px;}
.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;}
}
.ws1_c00349{word-spacing:-53.505000px;}
.ws5_c00349{word-spacing:-35.415000px;}
.ws2_c00349{word-spacing:-28.860000px;}
.ws6_c00349{word-spacing:-18.060000px;}
.ws0_c00349{word-spacing:-18.000000px;}
.ws3_c00349{word-spacing:-14.160000px;}
.ws7_c00349{word-spacing:0.000000px;}
.ws4_c00349{word-spacing:5.460000px;}
._1a_c00349{margin-left:-22.176000px;}
._12_c00349{margin-left:-20.700000px;}
._28_c00349{margin-left:-15.360000px;}
._29_c00349{margin-left:-12.300000px;}
._21_c00349{margin-left:-10.440000px;}
._1c_c00349{margin-left:-9.120000px;}
._13_c00349{margin-left:-7.980000px;}
._14_c00349{margin-left:-6.720000px;}
._11_c00349{margin-left:-5.160000px;}
._e_c00349{margin-left:-3.360000px;}
._a_c00349{margin-left:-1.860000px;}
._6_c00349{width:1.740000px;}
._7_c00349{width:2.760000px;}
._9_c00349{width:3.960000px;}
._0_c00349{width:5.700000px;}
._10_c00349{width:7.500000px;}
._b_c00349{width:9.300000px;}
._d_c00349{width:10.800000px;}
._2_c00349{width:12.300000px;}
._3_c00349{width:14.040000px;}
._16_c00349{width:15.780000px;}
._5_c00349{width:16.860000px;}
._c_c00349{width:19.680000px;}
._1d_c00349{width:20.880000px;}
._4_c00349{width:22.200000px;}
._8_c00349{width:23.700000px;}
._25_c00349{width:24.720000px;}
._15_c00349{width:26.040000px;}
._f_c00349{width:27.240000px;}
._24_c00349{width:28.500000px;}
._22_c00349{width:30.960000px;}
._17_c00349{width:34.500000px;}
._18_c00349{width:36.480000px;}
._27_c00349{width:37.920000px;}
._19_c00349{width:39.060000px;}
._26_c00349{width:42.090000px;}
._23_c00349{width:44.220000px;}
._2a_c00349{width:62.340000px;}
._1f_c00349{width:68.100000px;}
._1e_c00349{width:72.900000px;}
._20_c00349{width:136.440000px;}
._1b_c00349{width:142.980000px;}
._1_c00349{width:203.940000px;}
.fc2_c00349{color:transparent;}
.fc1_c00349{color:rgb(128,128,128);}
.fc0_c00349{color:rgb(0,0,0);}
.fs5_c00349{font-size:45.000000px;}
.fs6_c00349{font-size:48.000000px;}
.fs7_c00349{font-size:57.000000px;}
.fs0_c00349{font-size:60.000000px;}
.fs3_c00349{font-size:63.000000px;}
.fs1_c00349{font-size:66.000000px;}
.fs2_c00349{font-size:105.000000px;}
.fs4_c00349{font-size:213.000000px;}
.y0_c00349{bottom:0.000000px;}
.y54_c00349{bottom:3.105000px;}
.y53_c00349{bottom:7.228355px;}
.y52_c00349{bottom:31.035000px;}
.y51_c00349{bottom:49.635000px;}
.y27_c00349{bottom:51.885000px;}
.y50_c00349{bottom:67.785000px;}
.y26_c00349{bottom:69.885000px;}
.y4f_c00349{bottom:86.385000px;}
.y25_c00349{bottom:88.635000px;}
.y4e_c00349{bottom:104.535000px;}
.y24_c00349{bottom:106.935000px;}
.y4d_c00349{bottom:122.385000px;}
.y23_c00349{bottom:124.785000px;}
.y4c_c00349{bottom:139.935000px;}
.y22_c00349{bottom:143.085000px;}
.y4b_c00349{bottom:158.835000px;}
.y21_c00349{bottom:160.935000px;}
.y4a_c00349{bottom:176.535000px;}
.y20_c00349{bottom:179.235000px;}
.y49_c00349{bottom:194.685000px;}
.y1f_c00349{bottom:196.785000px;}
.y48_c00349{bottom:212.985000px;}
.y1e_c00349{bottom:215.235000px;}
.y47_c00349{bottom:231.135000px;}
.y1d_c00349{bottom:233.535000px;}
.y46_c00349{bottom:249.735000px;}
.y1c_c00349{bottom:251.685000px;}
.y45_c00349{bottom:267.885000px;}
.y1b_c00349{bottom:269.235000px;}
.y44_c00349{bottom:285.135000px;}
.y1a_c00349{bottom:287.535000px;}
.y43_c00349{bottom:304.035000px;}
.y19_c00349{bottom:305.385000px;}
.y42_c00349{bottom:321.885000px;}
.y18_c00349{bottom:324.285000px;}
.y16_c00349{bottom:338.085000px;}
.y41_c00349{bottom:340.185000px;}
.y17_c00349{bottom:341.835000px;}
.y40_c00349{bottom:357.735000px;}
.y3f_c00349{bottom:376.935000px;}
.y3e_c00349{bottom:394.485000px;}
.y15_c00349{bottom:396.435000px;}
.y3d_c00349{bottom:412.635000px;}
.y14_c00349{bottom:413.685000px;}
.y3c_c00349{bottom:431.235000px;}
.y13_c00349{bottom:433.035000px;}
.y3b_c00349{bottom:449.835000px;}
.y3a_c00349{bottom:467.385000px;}
.y12_c00349{bottom:468.435000px;}
.y39_c00349{bottom:485.535000px;}
.y38_c00349{bottom:504.135000px;}
.y11_c00349{bottom:504.885000px;}
.y37_c00349{bottom:522.435000px;}
.y10_c00349{bottom:523.485000px;}
.y36_c00349{bottom:540.285000px;}
.yf_c00349{bottom:541.335000px;}
.y35_c00349{bottom:558.135000px;}
.ye_c00349{bottom:559.935000px;}
.y34_c00349{bottom:576.735000px;}
.yd_c00349{bottom:578.085000px;}
.y33_c00349{bottom:594.885000px;}
.yc_c00349{bottom:596.235000px;}
.y32_c00349{bottom:612.585000px;}
.yb_c00349{bottom:614.235000px;}
.y31_c00349{bottom:630.735000px;}
.ya_c00349{bottom:632.835000px;}
.y30_c00349{bottom:648.585000px;}
.y9_c00349{bottom:650.685000px;}
.y2f_c00349{bottom:667.485000px;}
.y8_c00349{bottom:668.835000px;}
.y2e_c00349{bottom:685.035000px;}
.y7_c00349{bottom:686.835000px;}
.y2d_c00349{bottom:703.335000px;}
.y6_c00349{bottom:704.985000px;}
.y2c_c00349{bottom:720.885000px;}
.y5_c00349{bottom:723.285000px;}
.y2b_c00349{bottom:739.485000px;}
.y4_c00349{bottom:741.435000px;}
.y2a_c00349{bottom:757.335000px;}
.y3_c00349{bottom:759.585000px;}
.y29_c00349{bottom:774.885000px;}
.y2_c00349{bottom:777.885000px;}
.y28_c00349{bottom:794.835000px;}
.y1_c00349{bottom:797.835000px;}
.h8_c00349{height:13.200074px;}
.h9_c00349{height:43.804688px;}
.h7_c00349{height:59.736000px;}
.h3_c00349{height:62.880000px;}
.h2_c00349{height:64.020000px;}
.h5_c00349{height:66.024000px;}
.h4_c00349{height:112.035000px;}
.h6_c00349{height:223.224000px;}
.h0_c00349{height:829.425000px;}
.h1_c00349{height:829.500000px;}
.w1_c00349{width:104.875500px;}
.w0_c00349{width:563.250000px;}
.x0_c00349{left:0.000000px;}
.x9_c00349{left:34.800000px;}
.xa_c00349{left:35.850000px;}
.xb_c00349{left:37.200000px;}
.x4_c00349{left:97.950000px;}
.x3_c00349{left:99.000000px;}
.x2_c00349{left:100.200000px;}
.x1_c00349{left:102.300000px;}
.x5_c00349{left:115.200000px;}
.x6_c00349{left:130.050000px;}
.x8_c00349{left:144.150000px;}
.xc_c00349{left:147.600000px;}
.x7_c00349{left:160.950000px;}
.x13_c00349{left:233.439240px;}
.xd_c00349{left:312.900000px;}
.x11_c00349{left:316.950000px;}
.x10_c00349{left:318.000000px;}
.xf_c00349{left:319.650000px;}
.xe_c00349{left:320.850000px;}
.x12_c00349{left:481.050000px;}
@media print{
.v0_c00349{vertical-align:0.000000pt;}
.v1_c00349{vertical-align:77.866667pt;}
.ls8_c00349{letter-spacing:-5.333333pt;}
.ls7_c00349{letter-spacing:-2.666667pt;}
.ls6_c00349{letter-spacing:0.000000pt;}
.ls4_c00349{letter-spacing:2.293333pt;}
.ls5_c00349{letter-spacing:2.666667pt;}
.ls1_c00349{letter-spacing:3.360000pt;}
.ls3_c00349{letter-spacing:16.874667pt;}
.ls0_c00349{letter-spacing:49.989333pt;}
.ls2_c00349{letter-spacing:72.874667pt;}
.ws1_c00349{word-spacing:-47.560000pt;}
.ws5_c00349{word-spacing:-31.480000pt;}
.ws2_c00349{word-spacing:-25.653333pt;}
.ws6_c00349{word-spacing:-16.053333pt;}
.ws0_c00349{word-spacing:-16.000000pt;}
.ws3_c00349{word-spacing:-12.586667pt;}
.ws7_c00349{word-spacing:0.000000pt;}
.ws4_c00349{word-spacing:4.853333pt;}
._1a_c00349{margin-left:-19.712000pt;}
._12_c00349{margin-left:-18.400000pt;}
._28_c00349{margin-left:-13.653333pt;}
._29_c00349{margin-left:-10.933333pt;}
._21_c00349{margin-left:-9.280000pt;}
._1c_c00349{margin-left:-8.106667pt;}
._13_c00349{margin-left:-7.093333pt;}
._14_c00349{margin-left:-5.973333pt;}
._11_c00349{margin-left:-4.586667pt;}
._e_c00349{margin-left:-2.986667pt;}
._a_c00349{margin-left:-1.653333pt;}
._6_c00349{width:1.546667pt;}
._7_c00349{width:2.453333pt;}
._9_c00349{width:3.520000pt;}
._0_c00349{width:5.066667pt;}
._10_c00349{width:6.666667pt;}
._b_c00349{width:8.266667pt;}
._d_c00349{width:9.600000pt;}
._2_c00349{width:10.933333pt;}
._3_c00349{width:12.480000pt;}
._16_c00349{width:14.026667pt;}
._5_c00349{width:14.986667pt;}
._c_c00349{width:17.493333pt;}
._1d_c00349{width:18.560000pt;}
._4_c00349{width:19.733333pt;}
._8_c00349{width:21.066667pt;}
._25_c00349{width:21.973333pt;}
._15_c00349{width:23.146667pt;}
._f_c00349{width:24.213333pt;}
._24_c00349{width:25.333333pt;}
._22_c00349{width:27.520000pt;}
._17_c00349{width:30.666667pt;}
._18_c00349{width:32.426667pt;}
._27_c00349{width:33.706667pt;}
._19_c00349{width:34.720000pt;}
._26_c00349{width:37.413333pt;}
._23_c00349{width:39.306667pt;}
._2a_c00349{width:55.413333pt;}
._1f_c00349{width:60.533333pt;}
._1e_c00349{width:64.800000pt;}
._20_c00349{width:121.280000pt;}
._1b_c00349{width:127.093333pt;}
._1_c00349{width:181.280000pt;}
.fs5_c00349{font-size:40.000000pt;}
.fs6_c00349{font-size:42.666667pt;}
.fs7_c00349{font-size:50.666667pt;}
.fs0_c00349{font-size:53.333333pt;}
.fs3_c00349{font-size:56.000000pt;}
.fs1_c00349{font-size:58.666667pt;}
.fs2_c00349{font-size:93.333333pt;}
.fs4_c00349{font-size:189.333333pt;}
.y0_c00349{bottom:0.000000pt;}
.y54_c00349{bottom:2.760000pt;}
.y53_c00349{bottom:6.425204pt;}
.y52_c00349{bottom:27.586667pt;}
.y51_c00349{bottom:44.120000pt;}
.y27_c00349{bottom:46.120000pt;}
.y50_c00349{bottom:60.253333pt;}
.y26_c00349{bottom:62.120000pt;}
.y4f_c00349{bottom:76.786667pt;}
.y25_c00349{bottom:78.786667pt;}
.y4e_c00349{bottom:92.920000pt;}
.y24_c00349{bottom:95.053333pt;}
.y4d_c00349{bottom:108.786667pt;}
.y23_c00349{bottom:110.920000pt;}
.y4c_c00349{bottom:124.386667pt;}
.y22_c00349{bottom:127.186667pt;}
.y4b_c00349{bottom:141.186667pt;}
.y21_c00349{bottom:143.053333pt;}
.y4a_c00349{bottom:156.920000pt;}
.y20_c00349{bottom:159.320000pt;}
.y49_c00349{bottom:173.053333pt;}
.y1f_c00349{bottom:174.920000pt;}
.y48_c00349{bottom:189.320000pt;}
.y1e_c00349{bottom:191.320000pt;}
.y47_c00349{bottom:205.453333pt;}
.y1d_c00349{bottom:207.586667pt;}
.y46_c00349{bottom:221.986667pt;}
.y1c_c00349{bottom:223.720000pt;}
.y45_c00349{bottom:238.120000pt;}
.y1b_c00349{bottom:239.320000pt;}
.y44_c00349{bottom:253.453333pt;}
.y1a_c00349{bottom:255.586667pt;}
.y43_c00349{bottom:270.253333pt;}
.y19_c00349{bottom:271.453333pt;}
.y42_c00349{bottom:286.120000pt;}
.y18_c00349{bottom:288.253333pt;}
.y16_c00349{bottom:300.520000pt;}
.y41_c00349{bottom:302.386667pt;}
.y17_c00349{bottom:303.853333pt;}
.y40_c00349{bottom:317.986667pt;}
.y3f_c00349{bottom:335.053333pt;}
.y3e_c00349{bottom:350.653333pt;}
.y15_c00349{bottom:352.386667pt;}
.y3d_c00349{bottom:366.786667pt;}
.y14_c00349{bottom:367.720000pt;}
.y3c_c00349{bottom:383.320000pt;}
.y13_c00349{bottom:384.920000pt;}
.y3b_c00349{bottom:399.853333pt;}
.y3a_c00349{bottom:415.453333pt;}
.y12_c00349{bottom:416.386667pt;}
.y39_c00349{bottom:431.586667pt;}
.y38_c00349{bottom:448.120000pt;}
.y11_c00349{bottom:448.786667pt;}
.y37_c00349{bottom:464.386667pt;}
.y10_c00349{bottom:465.320000pt;}
.y36_c00349{bottom:480.253333pt;}
.yf_c00349{bottom:481.186667pt;}
.y35_c00349{bottom:496.120000pt;}
.ye_c00349{bottom:497.720000pt;}
.y34_c00349{bottom:512.653333pt;}
.yd_c00349{bottom:513.853333pt;}
.y33_c00349{bottom:528.786667pt;}
.yc_c00349{bottom:529.986667pt;}
.y32_c00349{bottom:544.520000pt;}
.yb_c00349{bottom:545.986667pt;}
.y31_c00349{bottom:560.653333pt;}
.ya_c00349{bottom:562.520000pt;}
.y30_c00349{bottom:576.520000pt;}
.y9_c00349{bottom:578.386667pt;}
.y2f_c00349{bottom:593.320000pt;}
.y8_c00349{bottom:594.520000pt;}
.y2e_c00349{bottom:608.920000pt;}
.y7_c00349{bottom:610.520000pt;}
.y2d_c00349{bottom:625.186667pt;}
.y6_c00349{bottom:626.653333pt;}
.y2c_c00349{bottom:640.786667pt;}
.y5_c00349{bottom:642.920000pt;}
.y2b_c00349{bottom:657.320000pt;}
.y4_c00349{bottom:659.053333pt;}
.y2a_c00349{bottom:673.186667pt;}
.y3_c00349{bottom:675.186667pt;}
.y29_c00349{bottom:688.786667pt;}
.y2_c00349{bottom:691.453333pt;}
.y28_c00349{bottom:706.520000pt;}
.y1_c00349{bottom:709.186667pt;}
.h8_c00349{height:11.733399pt;}
.h9_c00349{height:38.937500pt;}
.h7_c00349{height:53.098667pt;}
.h3_c00349{height:55.893333pt;}
.h2_c00349{height:56.906667pt;}
.h5_c00349{height:58.688000pt;}
.h4_c00349{height:99.586667pt;}
.h6_c00349{height:198.421333pt;}
.h0_c00349{height:737.266667pt;}
.h1_c00349{height:737.333333pt;}
.w1_c00349{width:93.222667pt;}
.w0_c00349{width:500.666667pt;}
.x0_c00349{left:0.000000pt;}
.x9_c00349{left:30.933333pt;}
.xa_c00349{left:31.866667pt;}
.xb_c00349{left:33.066667pt;}
.x4_c00349{left:87.066667pt;}
.x3_c00349{left:88.000000pt;}
.x2_c00349{left:89.066667pt;}
.x1_c00349{left:90.933333pt;}
.x5_c00349{left:102.400000pt;}
.x6_c00349{left:115.600000pt;}
.x8_c00349{left:128.133333pt;}
.xc_c00349{left:131.200000pt;}
.x7_c00349{left:143.066667pt;}
.x13_c00349{left:207.501546pt;}
.xd_c00349{left:278.133333pt;}
.x11_c00349{left:281.733333pt;}
.x10_c00349{left:282.666667pt;}
.xf_c00349{left:284.133333pt;}
.xe_c00349{left:285.200000pt;}
.x12_c00349{left:427.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_c00350 {
    display:none;
  }
  .loading-indicator_c00350.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00350 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00350 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00350" -> "#page-container .classname_c00350")
 */
.pf_c00350 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00350 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00350.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00350 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00350 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00350 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00350 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00350 {overflow:visible;}
  }
}
.c_c00350 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00350 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00350:after { /* webkit #35443 */
  content: '';
}
.t_c00350:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00350 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00350 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00350 { /* info for Javascript */
  display:none;
}
.l_c00350 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00350 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00350 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00350:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00350{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00350;src:url('chunks/assets/font_73b25d52b0f2e1f5880cf0d1.woff2')format("woff");}.ff1_c00350{font-family:ff1_c00350;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00350;src:url('chunks/assets/font_514db789f6765d94e7690072.woff2')format("woff");}.ff2_c00350{font-family:ff2_c00350;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00350;src:url('chunks/assets/font_0ce391de997f24f9f9dd37f4.woff2')format("woff");}.ff3_c00350{font-family:ff3_c00350;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00350;src:url('chunks/assets/font_0cafca22a6ca1a311a26409f.woff2')format("woff");}.ff4_c00350{font-family:ff4_c00350;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00350;src:url('chunks/assets/font_0e8933460b72cd9e2aebe5ec.woff2')format("woff");}.ff5_c00350{font-family:ff5_c00350;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00350;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff6_c00350{font-family:ff6_c00350;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00350{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00350{vertical-align:0.000000px;}
.ls4_c00350{letter-spacing:0.000000px;}
.ls3_c00350{letter-spacing:3.000000px;}
.ls1_c00350{letter-spacing:8.805000px;}
.ls7_c00350{letter-spacing:9.000000px;}
.ls6_c00350{letter-spacing:12.000000px;}
.ls2_c00350{letter-spacing:12.600000px;}
.ls0_c00350{letter-spacing:18.420000px;}
.ls5_c00350{letter-spacing:21.000000px;}
.sc__c00350{text-shadow:none;}
.sc0_c00350{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00350{-webkit-text-stroke:0px transparent;}
.sc0_c00350{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00350{word-spacing:-36.060000px;}
.ws2_c00350{word-spacing:-18.060000px;}
.ws1_c00350{word-spacing:-14.160000px;}
.ws3_c00350{word-spacing:0.000000px;}
._34_c00350{margin-left:-28.920000px;}
._17_c00350{margin-left:-21.660000px;}
._2b_c00350{margin-left:-19.071000px;}
._35_c00350{margin-left:-14.520000px;}
._1f_c00350{margin-left:-13.320000px;}
._36_c00350{margin-left:-10.320000px;}
._2c_c00350{margin-left:-8.946000px;}
._1e_c00350{margin-left:-7.500000px;}
._8_c00350{margin-left:-6.120000px;}
._7_c00350{margin-left:-4.320000px;}
._22_c00350{margin-left:-3.180000px;}
._6_c00350{margin-left:-2.160000px;}
._10_c00350{margin-left:-1.020000px;}
._b_c00350{width:1.080000px;}
._9_c00350{width:2.280000px;}
._e_c00350{width:3.540000px;}
._d_c00350{width:4.740000px;}
._15_c00350{width:5.760000px;}
._4_c00350{width:6.960000px;}
._a_c00350{width:8.040000px;}
._3_c00350{width:9.600000px;}
._11_c00350{width:11.640000px;}
._0_c00350{width:13.380000px;}
._c_c00350{width:14.520000px;}
._24_c00350{width:15.720000px;}
._f_c00350{width:18.600000px;}
._2_c00350{width:19.860000px;}
._1b_c00350{width:21.360000px;}
._19_c00350{width:22.440000px;}
._1_c00350{width:24.600000px;}
._18_c00350{width:26.580000px;}
._13_c00350{width:28.260000px;}
._12_c00350{width:31.860000px;}
._2e_c00350{width:33.000000px;}
._1d_c00350{width:37.080000px;}
._2f_c00350{width:39.840000px;}
._37_c00350{width:42.480000px;}
._2d_c00350{width:45.060000px;}
._20_c00350{width:47.220000px;}
._1c_c00350{width:55.920000px;}
._29_c00350{width:57.780000px;}
._21_c00350{width:59.760000px;}
._33_c00350{width:69.420000px;}
._14_c00350{width:73.260000px;}
._1a_c00350{width:75.240000px;}
._28_c00350{width:98.760000px;}
._23_c00350{width:113.400000px;}
._31_c00350{width:173.751000px;}
._3a_c00350{width:177.720000px;}
._25_c00350{width:215.700000px;}
._39_c00350{width:217.620000px;}
._16_c00350{width:234.060000px;}
._30_c00350{width:292.380000px;}
._26_c00350{width:317.520000px;}
._38_c00350{width:413.880000px;}
._27_c00350{width:419.760000px;}
._5_c00350{width:438.840000px;}
._2a_c00350{width:532.740000px;}
._32_c00350{width:886.299000px;}
.fc2_c00350{color:transparent;}
.fc1_c00350{color:rgb(128,128,128);}
.fc0_c00350{color:rgb(0,0,0);}
.fs2_c00350{font-size:45.000000px;}
.fs4_c00350{font-size:48.000000px;}
.fs3_c00350{font-size:51.000000px;}
.fs0_c00350{font-size:60.000000px;}
.fs1_c00350{font-size:213.000000px;}
.y0_c00350{bottom:0.000000px;}
.y27_c00350{bottom:3.105000px;}
.y26_c00350{bottom:7.228357px;}
.y25_c00350{bottom:39.930000px;}
.y24_c00350{bottom:58.680000px;}
.y23_c00350{bottom:77.280000px;}
.y22_c00350{bottom:94.830000px;}
.y21_c00350{bottom:112.830000px;}
.y20_c00350{bottom:131.730000px;}
.y1f_c00350{bottom:149.580000px;}
.y1e_c00350{bottom:168.180000px;}
.y1d_c00350{bottom:186.030000px;}
.y1c_c00350{bottom:204.930000px;}
.y1b_c00350{bottom:221.430000px;}
.y1a_c00350{bottom:240.630000px;}
.y19_c00350{bottom:257.880000px;}
.y18_c00350{bottom:276.780000px;}
.y17_c00350{bottom:293.580000px;}
.y16_c00350{bottom:313.230000px;}
.y15_c00350{bottom:331.380000px;}
.y14_c00350{bottom:366.630000px;}
.y13_c00350{bottom:385.830000px;}
.y12_c00350{bottom:421.530000px;}
.y11_c00350{bottom:440.130000px;}
.y10_c00350{bottom:457.980000px;}
.yf_c00350{bottom:476.580000px;}
.ye_c00350{bottom:494.130000px;}
.yd_c00350{bottom:511.680000px;}
.yc_c00350{bottom:529.530000px;}
.yb_c00350{bottom:562.680000px;}
.ya_c00350{bottom:615.330000px;}
.y9_c00350{bottom:654.480000px;}
.y8_c00350{bottom:673.080000px;}
.y7_c00350{bottom:691.230000px;}
.y6_c00350{bottom:709.830000px;}
.y5_c00350{bottom:727.980000px;}
.y4_c00350{bottom:745.230000px;}
.y3_c00350{bottom:763.530000px;}
.y2_c00350{bottom:781.380000px;}
.y1_c00350{bottom:801.330000px;}
.h4_c00350{height:13.200074px;}
.h5_c00350{height:43.804688px;}
.h1_c00350{height:62.880000px;}
.h3_c00350{height:64.020000px;}
.h2_c00350{height:223.224000px;}
.h0_c00350{height:833.250000px;}
.w2_c00350{width:104.875500px;}
.w1_c00350{width:582.000000px;}
.w0_c00350{width:582.150000px;}
.x0_c00350{left:0.000000px;}
.x2_c00350{left:19.350000px;}
.x12_c00350{left:65.100000px;}
.x11_c00350{left:66.150000px;}
.xb_c00350{left:74.550000px;}
.x7_c00350{left:76.650000px;}
.x4_c00350{left:78.300000px;}
.x3_c00350{left:79.650000px;}
.xc_c00350{left:81.300000px;}
.x5_c00350{left:83.400000px;}
.x8_c00350{left:87.150000px;}
.x6_c00350{left:107.400000px;}
.x9_c00350{left:150.150000px;}
.xd_c00350{left:183.900000px;}
.x10_c00350{left:185.250000px;}
.xf_c00350{left:186.300000px;}
.xe_c00350{left:187.650000px;}
.xa_c00350{left:212.400000px;}
.x1_c00350{left:222.150000px;}
.x14_c00350{left:242.889267px;}
.x13_c00350{left:305.100000px;}
@media print{
.v0_c00350{vertical-align:0.000000pt;}
.ls4_c00350{letter-spacing:0.000000pt;}
.ls3_c00350{letter-spacing:2.666667pt;}
.ls1_c00350{letter-spacing:7.826667pt;}
.ls7_c00350{letter-spacing:8.000000pt;}
.ls6_c00350{letter-spacing:10.666667pt;}
.ls2_c00350{letter-spacing:11.200000pt;}
.ls0_c00350{letter-spacing:16.373333pt;}
.ls5_c00350{letter-spacing:18.666667pt;}
.ws0_c00350{word-spacing:-32.053333pt;}
.ws2_c00350{word-spacing:-16.053333pt;}
.ws1_c00350{word-spacing:-12.586667pt;}
.ws3_c00350{word-spacing:0.000000pt;}
._34_c00350{margin-left:-25.706667pt;}
._17_c00350{margin-left:-19.253333pt;}
._2b_c00350{margin-left:-16.952000pt;}
._35_c00350{margin-left:-12.906667pt;}
._1f_c00350{margin-left:-11.840000pt;}
._36_c00350{margin-left:-9.173333pt;}
._2c_c00350{margin-left:-7.952000pt;}
._1e_c00350{margin-left:-6.666667pt;}
._8_c00350{margin-left:-5.440000pt;}
._7_c00350{margin-left:-3.840000pt;}
._22_c00350{margin-left:-2.826667pt;}
._6_c00350{margin-left:-1.920000pt;}
._10_c00350{margin-left:-0.906667pt;}
._b_c00350{width:0.960000pt;}
._9_c00350{width:2.026667pt;}
._e_c00350{width:3.146667pt;}
._d_c00350{width:4.213333pt;}
._15_c00350{width:5.120000pt;}
._4_c00350{width:6.186667pt;}
._a_c00350{width:7.146667pt;}
._3_c00350{width:8.533333pt;}
._11_c00350{width:10.346667pt;}
._0_c00350{width:11.893333pt;}
._c_c00350{width:12.906667pt;}
._24_c00350{width:13.973333pt;}
._f_c00350{width:16.533333pt;}
._2_c00350{width:17.653333pt;}
._1b_c00350{width:18.986667pt;}
._19_c00350{width:19.946667pt;}
._1_c00350{width:21.866667pt;}
._18_c00350{width:23.626667pt;}
._13_c00350{width:25.120000pt;}
._12_c00350{width:28.320000pt;}
._2e_c00350{width:29.333333pt;}
._1d_c00350{width:32.960000pt;}
._2f_c00350{width:35.413333pt;}
._37_c00350{width:37.760000pt;}
._2d_c00350{width:40.053333pt;}
._20_c00350{width:41.973333pt;}
._1c_c00350{width:49.706667pt;}
._29_c00350{width:51.360000pt;}
._21_c00350{width:53.120000pt;}
._33_c00350{width:61.706667pt;}
._14_c00350{width:65.120000pt;}
._1a_c00350{width:66.880000pt;}
._28_c00350{width:87.786667pt;}
._23_c00350{width:100.800000pt;}
._31_c00350{width:154.445333pt;}
._3a_c00350{width:157.973333pt;}
._25_c00350{width:191.733333pt;}
._39_c00350{width:193.440000pt;}
._16_c00350{width:208.053333pt;}
._30_c00350{width:259.893333pt;}
._26_c00350{width:282.240000pt;}
._38_c00350{width:367.893333pt;}
._27_c00350{width:373.120000pt;}
._5_c00350{width:390.080000pt;}
._2a_c00350{width:473.546667pt;}
._32_c00350{width:787.821333pt;}
.fs2_c00350{font-size:40.000000pt;}
.fs4_c00350{font-size:42.666667pt;}
.fs3_c00350{font-size:45.333333pt;}
.fs0_c00350{font-size:53.333333pt;}
.fs1_c00350{font-size:189.333333pt;}
.y0_c00350{bottom:0.000000pt;}
.y27_c00350{bottom:2.760000pt;}
.y26_c00350{bottom:6.425206pt;}
.y25_c00350{bottom:35.493333pt;}
.y24_c00350{bottom:52.160000pt;}
.y23_c00350{bottom:68.693333pt;}
.y22_c00350{bottom:84.293333pt;}
.y21_c00350{bottom:100.293333pt;}
.y20_c00350{bottom:117.093333pt;}
.y1f_c00350{bottom:132.960000pt;}
.y1e_c00350{bottom:149.493333pt;}
.y1d_c00350{bottom:165.360000pt;}
.y1c_c00350{bottom:182.160000pt;}
.y1b_c00350{bottom:196.826667pt;}
.y1a_c00350{bottom:213.893333pt;}
.y19_c00350{bottom:229.226667pt;}
.y18_c00350{bottom:246.026667pt;}
.y17_c00350{bottom:260.960000pt;}
.y16_c00350{bottom:278.426667pt;}
.y15_c00350{bottom:294.560000pt;}
.y14_c00350{bottom:325.893333pt;}
.y13_c00350{bottom:342.960000pt;}
.y12_c00350{bottom:374.693333pt;}
.y11_c00350{bottom:391.226667pt;}
.y10_c00350{bottom:407.093333pt;}
.yf_c00350{bottom:423.626667pt;}
.ye_c00350{bottom:439.226667pt;}
.yd_c00350{bottom:454.826667pt;}
.yc_c00350{bottom:470.693333pt;}
.yb_c00350{bottom:500.160000pt;}
.ya_c00350{bottom:546.960000pt;}
.y9_c00350{bottom:581.760000pt;}
.y8_c00350{bottom:598.293333pt;}
.y7_c00350{bottom:614.426667pt;}
.y6_c00350{bottom:630.960000pt;}
.y5_c00350{bottom:647.093333pt;}
.y4_c00350{bottom:662.426667pt;}
.y3_c00350{bottom:678.693333pt;}
.y2_c00350{bottom:694.560000pt;}
.y1_c00350{bottom:712.293333pt;}
.h4_c00350{height:11.733399pt;}
.h5_c00350{height:38.937500pt;}
.h1_c00350{height:55.893333pt;}
.h3_c00350{height:56.906667pt;}
.h2_c00350{height:198.421333pt;}
.h0_c00350{height:740.666667pt;}
.w2_c00350{width:93.222667pt;}
.w1_c00350{width:517.333333pt;}
.w0_c00350{width:517.466667pt;}
.x0_c00350{left:0.000000pt;}
.x2_c00350{left:17.200000pt;}
.x12_c00350{left:57.866667pt;}
.x11_c00350{left:58.800000pt;}
.xb_c00350{left:66.266667pt;}
.x7_c00350{left:68.133333pt;}
.x4_c00350{left:69.600000pt;}
.x3_c00350{left:70.800000pt;}
.xc_c00350{left:72.266667pt;}
.x5_c00350{left:74.133333pt;}
.x8_c00350{left:77.466667pt;}
.x6_c00350{left:95.466667pt;}
.x9_c00350{left:133.466667pt;}
.xd_c00350{left:163.466667pt;}
.x10_c00350{left:164.666667pt;}
.xf_c00350{left:165.600000pt;}
.xe_c00350{left:166.800000pt;}
.xa_c00350{left:188.800000pt;}
.x1_c00350{left:197.466667pt;}
.x14_c00350{left:215.901571pt;}
.x13_c00350{left:271.200000pt;}
}





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

.ir_c00351:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00351{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00351;src:url('chunks/assets/font_86980ce2cd8aeecf49abe9b9.woff2')format("woff");}.ff1_c00351{font-family:ff1_c00351;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00351;src:url('chunks/assets/font_2588bf94caff62715d9a469a.woff2')format("woff");}.ff2_c00351{font-family:ff2_c00351;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00351;src:url('chunks/assets/font_62f454481cb4d894264824f6.woff2')format("woff");}.ff3_c00351{font-family:ff3_c00351;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00351;src:url('chunks/assets/font_5475dad9e3e124e656e54cce.woff2')format("woff");}.ff4_c00351{font-family:ff4_c00351;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00351;src:url('chunks/assets/font_62c5b80b2d99f9366cb9e17d.woff2')format("woff");}.ff5_c00351{font-family:ff5_c00351;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00351;src:url('chunks/assets/font_9a686083ce59363fb8eccde6.woff2')format("woff");}.ff6_c00351{font-family:ff6_c00351;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00351;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff7_c00351{font-family:ff7_c00351;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00351{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00351{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.v0_c00351{vertical-align:0.000000px;}
.v1_c00351{vertical-align:222.600000px;}
.ls9_c00351{letter-spacing:0.000000px;}
.ls8_c00351{letter-spacing:1.200000px;}
.ls1_c00351{letter-spacing:2.400000px;}
.ls7_c00351{letter-spacing:3.000000px;}
.ls5_c00351{letter-spacing:3.600000px;}
.ls0_c00351{letter-spacing:6.000000px;}
.ls2_c00351{letter-spacing:10.800000px;}
.ls3_c00351{letter-spacing:11.940000px;}
.ls6_c00351{letter-spacing:14.400000px;}
.ls4_c00351{letter-spacing:249.642000px;}
.sc__c00351{text-shadow:none;}
.sc0_c00351{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00351{-webkit-text-stroke:0px transparent;}
.sc0_c00351{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00351{word-spacing:-32.424000px;}
.ws1_c00351{word-spacing:-20.340000px;}
.ws2_c00351{word-spacing:-18.060000px;}
.ws0_c00351{word-spacing:-14.160000px;}
.ws4_c00351{word-spacing:0.000000px;}
._1d_c00351{margin-left:-19.620000px;}
._10_c00351{margin-left:-16.380000px;}
._11_c00351{margin-left:-14.340000px;}
._f_c00351{margin-left:-13.200000px;}
._c_c00351{margin-left:-11.280000px;}
._b_c00351{margin-left:-9.300000px;}
._e_c00351{margin-left:-7.980000px;}
._13_c00351{margin-left:-6.660000px;}
._a_c00351{margin-left:-5.580000px;}
._d_c00351{margin-left:-4.560000px;}
._7_c00351{margin-left:-3.060000px;}
._1a_c00351{margin-left:-2.040000px;}
._0_c00351{margin-left:-1.020000px;}
._8_c00351{width:1.140000px;}
._9_c00351{width:3.120000px;}
._3_c00351{width:4.800000px;}
._4_c00351{width:6.120000px;}
._2_c00351{width:7.500000px;}
._5_c00351{width:9.480000px;}
._6_c00351{width:11.400000px;}
._12_c00351{width:13.500000px;}
._17_c00351{width:14.760000px;}
._1e_c00351{width:15.780000px;}
._18_c00351{width:17.040000px;}
._1c_c00351{width:18.120000px;}
._14_c00351{width:19.560000px;}
._27_c00351{width:21.120000px;}
._1f_c00351{width:23.880000px;}
._16_c00351{width:25.980000px;}
._20_c00351{width:27.120000px;}
._21_c00351{width:28.800000px;}
._1b_c00351{width:31.140000px;}
._15_c00351{width:35.760000px;}
._19_c00351{width:38.520000px;}
._22_c00351{width:51.120000px;}
._1_c00351{width:55.260000px;}
._25_c00351{width:73.980000px;}
._23_c00351{width:77.280000px;}
._24_c00351{width:81.852000px;}
._28_c00351{width:83.640000px;}
._26_c00351{width:90.240000px;}
.fc2_c00351{color:transparent;}
.fc1_c00351{color:rgb(128,128,128);}
.fc0_c00351{color:rgb(0,0,0);}
.fs2_c00351{font-size:24.000000px;}
.fs5_c00351{font-size:48.000000px;}
.fs1_c00351{font-size:51.000000px;}
.fs0_c00351{font-size:60.000000px;}
.fs4_c00351{font-size:69.000000px;}
.fs3_c00351{font-size:222.000000px;}
.y0_c00351{bottom:0.000000px;}
.y2b_c00351{bottom:3.105000px;}
.y2a_c00351{bottom:7.228355px;}
.y29_c00351{bottom:38.385000px;}
.y28_c00351{bottom:57.285000px;}
.y27_c00351{bottom:75.885000px;}
.y26_c00351{bottom:94.035000px;}
.y25_c00351{bottom:112.335000px;}
.y24_c00351{bottom:130.185000px;}
.y23_c00351{bottom:148.185000px;}
.y20_c00351{bottom:164.385000px;}
.y22_c00351{bottom:166.335000px;}
.y21_c00351{bottom:184.485000px;}
.y1f_c00351{bottom:257.835000px;}
.y1e_c00351{bottom:275.385000px;}
.y1d_c00351{bottom:293.535000px;}
.y1c_c00351{bottom:311.835000px;}
.y1b_c00351{bottom:328.935000px;}
.y1a_c00351{bottom:347.985000px;}
.y19_c00351{bottom:365.535000px;}
.y18_c00351{bottom:384.285000px;}
.y17_c00351{bottom:402.285000px;}
.y16_c00351{bottom:420.135000px;}
.y15_c00351{bottom:438.735000px;}
.y14_c00351{bottom:455.985000px;}
.y13_c00351{bottom:474.135000px;}
.y12_c00351{bottom:492.735000px;}
.y11_c00351{bottom:510.885000px;}
.y10_c00351{bottom:529.185000px;}
.yf_c00351{bottom:546.735000px;}
.ye_c00351{bottom:564.885000px;}
.yd_c00351{bottom:583.485000px;}
.yc_c00351{bottom:602.085000px;}
.yb_c00351{bottom:619.935000px;}
.ya_c00351{bottom:638.535000px;}
.y9_c00351{bottom:655.785000px;}
.y8_c00351{bottom:674.535000px;}
.y7_c00351{bottom:691.185000px;}
.y6_c00351{bottom:710.685000px;}
.y5_c00351{bottom:728.985000px;}
.y4_c00351{bottom:746.835000px;}
.y3_c00351{bottom:764.385000px;}
.y2_c00351{bottom:783.885000px;}
.y1_c00351{bottom:803.835000px;}
.h5_c00351{height:13.200074px;}
.h6_c00351{height:43.804688px;}
.h2_c00351{height:62.880000px;}
.h3_c00351{height:64.020000px;}
.h4_c00351{height:294.912000px;}
.h1_c00351{height:846.750000px;}
.h0_c00351{height:846.975000px;}
.w2_c00351{width:104.875500px;}
.w1_c00351{width:575.250000px;}
.w0_c00351{width:575.400000px;}
.x0_c00351{left:0.000000px;}
.x2_c00351{left:111.300000px;}
.x3_c00351{left:112.350000px;}
.x1_c00351{left:113.400000px;}
.x4_c00351{left:114.450000px;}
.x5_c00351{left:116.400000px;}
.x7_c00351{left:138.750000px;}
.x6_c00351{left:147.150000px;}
.x9_c00351{left:239.514267px;}
.x8_c00351{left:510.000000px;}
@media print{
.v0_c00351{vertical-align:0.000000pt;}
.v1_c00351{vertical-align:197.866667pt;}
.ls9_c00351{letter-spacing:0.000000pt;}
.ls8_c00351{letter-spacing:1.066667pt;}
.ls1_c00351{letter-spacing:2.133333pt;}
.ls7_c00351{letter-spacing:2.666667pt;}
.ls5_c00351{letter-spacing:3.200000pt;}
.ls0_c00351{letter-spacing:5.333333pt;}
.ls2_c00351{letter-spacing:9.600000pt;}
.ls3_c00351{letter-spacing:10.613333pt;}
.ls6_c00351{letter-spacing:12.800000pt;}
.ls4_c00351{letter-spacing:221.904000pt;}
.ws3_c00351{word-spacing:-28.821333pt;}
.ws1_c00351{word-spacing:-18.080000pt;}
.ws2_c00351{word-spacing:-16.053333pt;}
.ws0_c00351{word-spacing:-12.586667pt;}
.ws4_c00351{word-spacing:0.000000pt;}
._1d_c00351{margin-left:-17.440000pt;}
._10_c00351{margin-left:-14.560000pt;}
._11_c00351{margin-left:-12.746667pt;}
._f_c00351{margin-left:-11.733333pt;}
._c_c00351{margin-left:-10.026667pt;}
._b_c00351{margin-left:-8.266667pt;}
._e_c00351{margin-left:-7.093333pt;}
._13_c00351{margin-left:-5.920000pt;}
._a_c00351{margin-left:-4.960000pt;}
._d_c00351{margin-left:-4.053333pt;}
._7_c00351{margin-left:-2.720000pt;}
._1a_c00351{margin-left:-1.813333pt;}
._0_c00351{margin-left:-0.906667pt;}
._8_c00351{width:1.013333pt;}
._9_c00351{width:2.773333pt;}
._3_c00351{width:4.266667pt;}
._4_c00351{width:5.440000pt;}
._2_c00351{width:6.666667pt;}
._5_c00351{width:8.426667pt;}
._6_c00351{width:10.133333pt;}
._12_c00351{width:12.000000pt;}
._17_c00351{width:13.120000pt;}
._1e_c00351{width:14.026667pt;}
._18_c00351{width:15.146667pt;}
._1c_c00351{width:16.106667pt;}
._14_c00351{width:17.386667pt;}
._27_c00351{width:18.773333pt;}
._1f_c00351{width:21.226667pt;}
._16_c00351{width:23.093333pt;}
._20_c00351{width:24.106667pt;}
._21_c00351{width:25.600000pt;}
._1b_c00351{width:27.680000pt;}
._15_c00351{width:31.786667pt;}
._19_c00351{width:34.240000pt;}
._22_c00351{width:45.440000pt;}
._1_c00351{width:49.120000pt;}
._25_c00351{width:65.760000pt;}
._23_c00351{width:68.693333pt;}
._24_c00351{width:72.757333pt;}
._28_c00351{width:74.346667pt;}
._26_c00351{width:80.213333pt;}
.fs2_c00351{font-size:21.333333pt;}
.fs5_c00351{font-size:42.666667pt;}
.fs1_c00351{font-size:45.333333pt;}
.fs0_c00351{font-size:53.333333pt;}
.fs4_c00351{font-size:61.333333pt;}
.fs3_c00351{font-size:197.333333pt;}
.y0_c00351{bottom:0.000000pt;}
.y2b_c00351{bottom:2.760000pt;}
.y2a_c00351{bottom:6.425204pt;}
.y29_c00351{bottom:34.120000pt;}
.y28_c00351{bottom:50.920000pt;}
.y27_c00351{bottom:67.453333pt;}
.y26_c00351{bottom:83.586667pt;}
.y25_c00351{bottom:99.853333pt;}
.y24_c00351{bottom:115.720000pt;}
.y23_c00351{bottom:131.720000pt;}
.y20_c00351{bottom:146.120000pt;}
.y22_c00351{bottom:147.853333pt;}
.y21_c00351{bottom:163.986667pt;}
.y1f_c00351{bottom:229.186667pt;}
.y1e_c00351{bottom:244.786667pt;}
.y1d_c00351{bottom:260.920000pt;}
.y1c_c00351{bottom:277.186667pt;}
.y1b_c00351{bottom:292.386667pt;}
.y1a_c00351{bottom:309.320000pt;}
.y19_c00351{bottom:324.920000pt;}
.y18_c00351{bottom:341.586667pt;}
.y17_c00351{bottom:357.586667pt;}
.y16_c00351{bottom:373.453333pt;}
.y15_c00351{bottom:389.986667pt;}
.y14_c00351{bottom:405.320000pt;}
.y13_c00351{bottom:421.453333pt;}
.y12_c00351{bottom:437.986667pt;}
.y11_c00351{bottom:454.120000pt;}
.y10_c00351{bottom:470.386667pt;}
.yf_c00351{bottom:485.986667pt;}
.ye_c00351{bottom:502.120000pt;}
.yd_c00351{bottom:518.653333pt;}
.yc_c00351{bottom:535.186667pt;}
.yb_c00351{bottom:551.053333pt;}
.ya_c00351{bottom:567.586667pt;}
.y9_c00351{bottom:582.920000pt;}
.y8_c00351{bottom:599.586667pt;}
.y7_c00351{bottom:614.386667pt;}
.y6_c00351{bottom:631.720000pt;}
.y5_c00351{bottom:647.986667pt;}
.y4_c00351{bottom:663.853333pt;}
.y3_c00351{bottom:679.453333pt;}
.y2_c00351{bottom:696.786667pt;}
.y1_c00351{bottom:714.520000pt;}
.h5_c00351{height:11.733399pt;}
.h6_c00351{height:38.937500pt;}
.h2_c00351{height:55.893333pt;}
.h3_c00351{height:56.906667pt;}
.h4_c00351{height:262.144000pt;}
.h1_c00351{height:752.666667pt;}
.h0_c00351{height:752.866667pt;}
.w2_c00351{width:93.222667pt;}
.w1_c00351{width:511.333333pt;}
.w0_c00351{width:511.466667pt;}
.x0_c00351{left:0.000000pt;}
.x2_c00351{left:98.933333pt;}
.x3_c00351{left:99.866667pt;}
.x1_c00351{left:100.800000pt;}
.x4_c00351{left:101.733333pt;}
.x5_c00351{left:103.466667pt;}
.x7_c00351{left:123.333333pt;}
.x6_c00351{left:130.800000pt;}
.x9_c00351{left:212.901571pt;}
.x8_c00351{left:453.333333pt;}
}





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

.ir_c00352:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00352{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00352;src:url('chunks/assets/font_c43895b86eb4af0fd79cddbb.woff2')format("woff");}.ff1_c00352{font-family:ff1_c00352;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00352;src:url('chunks/assets/font_55aae710b28d47710d633d19.woff2')format("woff");}.ff2_c00352{font-family:ff2_c00352;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00352;src:url('chunks/assets/font_94b4573f452444416b806a64.woff2')format("woff");}.ff3_c00352{font-family:ff3_c00352;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00352;src:url('chunks/assets/font_505a34c871c79fef2b31ba3e.woff2')format("woff");}.ff4_c00352{font-family:ff4_c00352;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00352;src:url('chunks/assets/font_fbb8993c7e0fbd3879ce672f.woff2')format("woff");}.ff5_c00352{font-family:ff5_c00352;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00352;src:url('chunks/assets/font_0a24a5937dae081ca703b43c.woff2')format("woff");}.ff6_c00352{font-family:ff6_c00352;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00352;src:url('chunks/assets/font_ca5c5d1876cbd54cf2ec7792.woff2')format("woff");}.ff7_c00352{font-family:ff7_c00352;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00352;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff8_c00352{font-family:ff8_c00352;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00352{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00352{vertical-align:0.000000px;}
.ls7_c00352{letter-spacing:-3.000000px;}
.ls5_c00352{letter-spacing:0.000000px;}
.ls1_c00352{letter-spacing:2.400000px;}
.ls0_c00352{letter-spacing:3.000000px;}
.ls4_c00352{letter-spacing:6.000000px;}
.ls3_c00352{letter-spacing:8.820000px;}
.ls8_c00352{letter-spacing:9.000000px;}
.ls6_c00352{letter-spacing:12.000000px;}
.ls2_c00352{letter-spacing:20.805000px;}
.sc__c00352{text-shadow:none;}
.sc0_c00352{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00352{-webkit-text-stroke:0px transparent;}
.sc0_c00352{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00352{word-spacing:-65.463000px;}
.ws2_c00352{word-spacing:-32.295000px;}
.ws4_c00352{word-spacing:-18.060000px;}
.ws3_c00352{word-spacing:-18.000000px;}
.ws1_c00352{word-spacing:-14.160000px;}
.ws6_c00352{word-spacing:-11.868000px;}
.ws0_c00352{word-spacing:-2.640000px;}
.ws7_c00352{word-spacing:0.000000px;}
._1c_c00352{margin-left:-46.434000px;}
._1d_c00352{margin-left:-24.282000px;}
._18_c00352{margin-left:-11.799000px;}
._0_c00352{margin-left:-10.788000px;}
._1_c00352{margin-left:-9.393000px;}
._22_c00352{margin-left:-7.860000px;}
._e_c00352{margin-left:-6.660000px;}
._14_c00352{margin-left:-5.145000px;}
._b_c00352{margin-left:-3.300000px;}
._a_c00352{margin-left:-1.500000px;}
._7_c00352{width:1.680000px;}
._8_c00352{width:3.300000px;}
._9_c00352{width:5.220000px;}
._d_c00352{width:6.480000px;}
._13_c00352{width:7.665000px;}
._15_c00352{width:9.000000px;}
._f_c00352{width:10.800000px;}
._19_c00352{width:12.000000px;}
._11_c00352{width:13.020000px;}
._10_c00352{width:14.040000px;}
._1a_c00352{width:15.180000px;}
._12_c00352{width:16.200000px;}
._1e_c00352{width:19.500000px;}
._6_c00352{width:20.700000px;}
._16_c00352{width:22.380000px;}
._5_c00352{width:24.300000px;}
._2_c00352{width:25.512000px;}
._23_c00352{width:26.820000px;}
._3_c00352{width:28.680000px;}
._17_c00352{width:30.480000px;}
._20_c00352{width:31.920000px;}
._24_c00352{width:33.000000px;}
._1b_c00352{width:35.640000px;}
._4_c00352{width:41.640000px;}
._21_c00352{width:109.800000px;}
._c_c00352{width:168.000000px;}
._25_c00352{width:174.000000px;}
._1f_c00352{width:263.160000px;}
.fc2_c00352{color:transparent;}
.fc1_c00352{color:rgb(128,128,128);}
.fc0_c00352{color:rgb(0,0,0);}
.fs2_c00352{font-size:45.000000px;}
.fs4_c00352{font-size:48.000000px;}
.fs1_c00352{font-size:60.000000px;}
.fs5_c00352{font-size:63.000000px;}
.fs0_c00352{font-size:93.000000px;}
.fs3_c00352{font-size:213.000000px;}
.y0_c00352{bottom:0.000000px;}
.y55_c00352{bottom:3.105000px;}
.y54_c00352{bottom:7.228371px;}
.y50_c00352{bottom:43.665000px;}
.y27_c00352{bottom:62.565000px;}
.y4f_c00352{bottom:81.015000px;}
.y26_c00352{bottom:81.465000px;}
.y53_c00352{bottom:97.965000px;}
.y4e_c00352{bottom:98.865000px;}
.y25_c00352{bottom:99.315000px;}
.y24_c00352{bottom:116.415000px;}
.y52_c00352{bottom:116.565000px;}
.y4d_c00352{bottom:116.865000px;}
.y51_c00352{bottom:134.415000px;}
.y4c_c00352{bottom:134.715000px;}
.y23_c00352{bottom:135.015000px;}
.y4b_c00352{bottom:152.865000px;}
.y22_c00352{bottom:153.015000px;}
.y1f_c00352{bottom:167.415000px;}
.y4a_c00352{bottom:170.565000px;}
.y21_c00352{bottom:170.865000px;}
.y49_c00352{bottom:188.115000px;}
.y20_c00352{bottom:189.315000px;}
.y48_c00352{bottom:206.865000px;}
.y47_c00352{bottom:225.165000px;}
.y46_c00352{bottom:243.015000px;}
.y1e_c00352{bottom:243.315000px;}
.y1d_c00352{bottom:261.315000px;}
.y45_c00352{bottom:279.165000px;}
.y1c_c00352{bottom:279.765000px;}
.y44_c00352{bottom:297.015000px;}
.y1b_c00352{bottom:313.665000px;}
.y43_c00352{bottom:315.315000px;}
.y42_c00352{bottom:333.165000px;}
.y1a_c00352{bottom:350.115000px;}
.y41_c00352{bottom:350.415000px;}
.y19_c00352{bottom:368.565000px;}
.y40_c00352{bottom:369.615000px;}
.y18_c00352{bottom:386.565000px;}
.y3f_c00352{bottom:387.165000px;}
.y17_c00352{bottom:404.415000px;}
.y3e_c00352{bottom:405.015000px;}
.y16_c00352{bottom:421.665000px;}
.y3d_c00352{bottom:423.015000px;}
.y15_c00352{bottom:440.115000px;}
.y3c_c00352{bottom:441.165000px;}
.y14_c00352{bottom:458.115000px;}
.y3b_c00352{bottom:459.015000px;}
.y13_c00352{bottom:476.265000px;}
.y3a_c00352{bottom:477.315000px;}
.y12_c00352{bottom:494.115000px;}
.y39_c00352{bottom:495.165000px;}
.y11_c00352{bottom:510.765000px;}
.y38_c00352{bottom:513.315000px;}
.y10_c00352{bottom:528.615000px;}
.y37_c00352{bottom:531.015000px;}
.yf_c00352{bottom:546.765000px;}
.y36_c00352{bottom:549.165000px;}
.ye_c00352{bottom:565.065000px;}
.y35_c00352{bottom:567.165000px;}
.yd_c00352{bottom:582.315000px;}
.y34_c00352{bottom:585.315000px;}
.yc_c00352{bottom:600.465000px;}
.y33_c00352{bottom:603.465000px;}
.yb_c00352{bottom:618.615000px;}
.y32_c00352{bottom:621.465000px;}
.ya_c00352{bottom:636.315000px;}
.y31_c00352{bottom:639.915000px;}
.y9_c00352{bottom:654.465000px;}
.y30_c00352{bottom:657.915000px;}
.y8_c00352{bottom:671.715000px;}
.y2f_c00352{bottom:675.465000px;}
.y7_c00352{bottom:690.915000px;}
.y2e_c00352{bottom:693.315000px;}
.y6_c00352{bottom:707.415000px;}
.y2d_c00352{bottom:711.465000px;}
.y5_c00352{bottom:726.015000px;}
.y2c_c00352{bottom:729.765000px;}
.y4_c00352{bottom:743.265000px;}
.y2b_c00352{bottom:747.615000px;}
.y3_c00352{bottom:761.115000px;}
.y2a_c00352{bottom:765.165000px;}
.y2_c00352{bottom:780.765000px;}
.y29_c00352{bottom:784.365000px;}
.y1_c00352{bottom:799.515000px;}
.y28_c00352{bottom:800.265000px;}
.h7_c00352{height:13.200074px;}
.h8_c00352{height:43.804688px;}
.h3_c00352{height:62.880000px;}
.h4_c00352{height:64.020000px;}
.h6_c00352{height:66.024000px;}
.h2_c00352{height:91.274414px;}
.h5_c00352{height:223.224000px;}
.h1_c00352{height:844.500000px;}
.h0_c00352{height:844.575000px;}
.w1_c00352{width:104.875500px;}
.w0_c00352{width:590.250000px;}
.x0_c00352{left:0.000000px;}
.xd_c00352{left:25.350000px;}
.xe_c00352{left:27.300000px;}
.xb_c00352{left:80.250000px;}
.xf_c00352{left:82.650000px;}
.xc_c00352{left:84.000000px;}
.xa_c00352{left:85.350000px;}
.x2_c00352{left:86.700000px;}
.x3_c00352{left:87.750000px;}
.x4_c00352{left:89.100000px;}
.x6_c00352{left:102.150000px;}
.x8_c00352{left:118.050000px;}
.x9_c00352{left:120.150000px;}
.x7_c00352{left:130.200000px;}
.x5_c00352{left:167.400000px;}
.x1_c00352{left:215.100000px;}
.x19_c00352{left:246.939240px;}
.x14_c00352{left:304.350000px;}
.x13_c00352{left:305.400000px;}
.x12_c00352{left:306.450000px;}
.x15_c00352{left:397.950000px;}
.x11_c00352{left:425.250000px;}
.x10_c00352{left:474.150000px;}
.x17_c00352{left:507.300000px;}
.x18_c00352{left:508.650000px;}
.x16_c00352{left:510.600000px;}
@media print{
.v0_c00352{vertical-align:0.000000pt;}
.ls7_c00352{letter-spacing:-2.666667pt;}
.ls5_c00352{letter-spacing:0.000000pt;}
.ls1_c00352{letter-spacing:2.133333pt;}
.ls0_c00352{letter-spacing:2.666667pt;}
.ls4_c00352{letter-spacing:5.333333pt;}
.ls3_c00352{letter-spacing:7.840000pt;}
.ls8_c00352{letter-spacing:8.000000pt;}
.ls6_c00352{letter-spacing:10.666667pt;}
.ls2_c00352{letter-spacing:18.493333pt;}
.ws5_c00352{word-spacing:-58.189333pt;}
.ws2_c00352{word-spacing:-28.706667pt;}
.ws4_c00352{word-spacing:-16.053333pt;}
.ws3_c00352{word-spacing:-16.000000pt;}
.ws1_c00352{word-spacing:-12.586667pt;}
.ws6_c00352{word-spacing:-10.549333pt;}
.ws0_c00352{word-spacing:-2.346667pt;}
.ws7_c00352{word-spacing:0.000000pt;}
._1c_c00352{margin-left:-41.274667pt;}
._1d_c00352{margin-left:-21.584000pt;}
._18_c00352{margin-left:-10.488000pt;}
._0_c00352{margin-left:-9.589333pt;}
._1_c00352{margin-left:-8.349333pt;}
._22_c00352{margin-left:-6.986667pt;}
._e_c00352{margin-left:-5.920000pt;}
._14_c00352{margin-left:-4.573333pt;}
._b_c00352{margin-left:-2.933333pt;}
._a_c00352{margin-left:-1.333333pt;}
._7_c00352{width:1.493333pt;}
._8_c00352{width:2.933333pt;}
._9_c00352{width:4.640000pt;}
._d_c00352{width:5.760000pt;}
._13_c00352{width:6.813333pt;}
._15_c00352{width:8.000000pt;}
._f_c00352{width:9.600000pt;}
._19_c00352{width:10.666667pt;}
._11_c00352{width:11.573333pt;}
._10_c00352{width:12.480000pt;}
._1a_c00352{width:13.493333pt;}
._12_c00352{width:14.400000pt;}
._1e_c00352{width:17.333333pt;}
._6_c00352{width:18.400000pt;}
._16_c00352{width:19.893333pt;}
._5_c00352{width:21.600000pt;}
._2_c00352{width:22.677333pt;}
._23_c00352{width:23.840000pt;}
._3_c00352{width:25.493333pt;}
._17_c00352{width:27.093333pt;}
._20_c00352{width:28.373333pt;}
._24_c00352{width:29.333333pt;}
._1b_c00352{width:31.680000pt;}
._4_c00352{width:37.013333pt;}
._21_c00352{width:97.600000pt;}
._c_c00352{width:149.333333pt;}
._25_c00352{width:154.666667pt;}
._1f_c00352{width:233.920000pt;}
.fs2_c00352{font-size:40.000000pt;}
.fs4_c00352{font-size:42.666667pt;}
.fs1_c00352{font-size:53.333333pt;}
.fs5_c00352{font-size:56.000000pt;}
.fs0_c00352{font-size:82.666667pt;}
.fs3_c00352{font-size:189.333333pt;}
.y0_c00352{bottom:0.000000pt;}
.y55_c00352{bottom:2.760000pt;}
.y54_c00352{bottom:6.425219pt;}
.y50_c00352{bottom:38.813333pt;}
.y27_c00352{bottom:55.613333pt;}
.y4f_c00352{bottom:72.013333pt;}
.y26_c00352{bottom:72.413333pt;}
.y53_c00352{bottom:87.080000pt;}
.y4e_c00352{bottom:87.880000pt;}
.y25_c00352{bottom:88.280000pt;}
.y24_c00352{bottom:103.480000pt;}
.y52_c00352{bottom:103.613333pt;}
.y4d_c00352{bottom:103.880000pt;}
.y51_c00352{bottom:119.480000pt;}
.y4c_c00352{bottom:119.746667pt;}
.y23_c00352{bottom:120.013333pt;}
.y4b_c00352{bottom:135.880000pt;}
.y22_c00352{bottom:136.013333pt;}
.y1f_c00352{bottom:148.813333pt;}
.y4a_c00352{bottom:151.613333pt;}
.y21_c00352{bottom:151.880000pt;}
.y49_c00352{bottom:167.213333pt;}
.y20_c00352{bottom:168.280000pt;}
.y48_c00352{bottom:183.880000pt;}
.y47_c00352{bottom:200.146667pt;}
.y46_c00352{bottom:216.013333pt;}
.y1e_c00352{bottom:216.280000pt;}
.y1d_c00352{bottom:232.280000pt;}
.y45_c00352{bottom:248.146667pt;}
.y1c_c00352{bottom:248.680000pt;}
.y44_c00352{bottom:264.013333pt;}
.y1b_c00352{bottom:278.813333pt;}
.y43_c00352{bottom:280.280000pt;}
.y42_c00352{bottom:296.146667pt;}
.y1a_c00352{bottom:311.213333pt;}
.y41_c00352{bottom:311.480000pt;}
.y19_c00352{bottom:327.613333pt;}
.y40_c00352{bottom:328.546667pt;}
.y18_c00352{bottom:343.613333pt;}
.y3f_c00352{bottom:344.146667pt;}
.y17_c00352{bottom:359.480000pt;}
.y3e_c00352{bottom:360.013333pt;}
.y16_c00352{bottom:374.813333pt;}
.y3d_c00352{bottom:376.013333pt;}
.y15_c00352{bottom:391.213333pt;}
.y3c_c00352{bottom:392.146667pt;}
.y14_c00352{bottom:407.213333pt;}
.y3b_c00352{bottom:408.013333pt;}
.y13_c00352{bottom:423.346667pt;}
.y3a_c00352{bottom:424.280000pt;}
.y12_c00352{bottom:439.213333pt;}
.y39_c00352{bottom:440.146667pt;}
.y11_c00352{bottom:454.013333pt;}
.y38_c00352{bottom:456.280000pt;}
.y10_c00352{bottom:469.880000pt;}
.y37_c00352{bottom:472.013333pt;}
.yf_c00352{bottom:486.013333pt;}
.y36_c00352{bottom:488.146667pt;}
.ye_c00352{bottom:502.280000pt;}
.y35_c00352{bottom:504.146667pt;}
.yd_c00352{bottom:517.613333pt;}
.y34_c00352{bottom:520.280000pt;}
.yc_c00352{bottom:533.746667pt;}
.y33_c00352{bottom:536.413333pt;}
.yb_c00352{bottom:549.880000pt;}
.y32_c00352{bottom:552.413333pt;}
.ya_c00352{bottom:565.613333pt;}
.y31_c00352{bottom:568.813333pt;}
.y9_c00352{bottom:581.746667pt;}
.y30_c00352{bottom:584.813333pt;}
.y8_c00352{bottom:597.080000pt;}
.y2f_c00352{bottom:600.413333pt;}
.y7_c00352{bottom:614.146667pt;}
.y2e_c00352{bottom:616.280000pt;}
.y6_c00352{bottom:628.813333pt;}
.y2d_c00352{bottom:632.413333pt;}
.y5_c00352{bottom:645.346667pt;}
.y2c_c00352{bottom:648.680000pt;}
.y4_c00352{bottom:660.680000pt;}
.y2b_c00352{bottom:664.546667pt;}
.y3_c00352{bottom:676.546667pt;}
.y2a_c00352{bottom:680.146667pt;}
.y2_c00352{bottom:694.013333pt;}
.y29_c00352{bottom:697.213333pt;}
.y1_c00352{bottom:710.680000pt;}
.y28_c00352{bottom:711.346667pt;}
.h7_c00352{height:11.733399pt;}
.h8_c00352{height:38.937500pt;}
.h3_c00352{height:55.893333pt;}
.h4_c00352{height:56.906667pt;}
.h6_c00352{height:58.688000pt;}
.h2_c00352{height:81.132812pt;}
.h5_c00352{height:198.421333pt;}
.h1_c00352{height:750.666667pt;}
.h0_c00352{height:750.733333pt;}
.w1_c00352{width:93.222667pt;}
.w0_c00352{width:524.666667pt;}
.x0_c00352{left:0.000000pt;}
.xd_c00352{left:22.533333pt;}
.xe_c00352{left:24.266667pt;}
.xb_c00352{left:71.333333pt;}
.xf_c00352{left:73.466667pt;}
.xc_c00352{left:74.666667pt;}
.xa_c00352{left:75.866667pt;}
.x2_c00352{left:77.066667pt;}
.x3_c00352{left:78.000000pt;}
.x4_c00352{left:79.200000pt;}
.x6_c00352{left:90.800000pt;}
.x8_c00352{left:104.933333pt;}
.x9_c00352{left:106.800000pt;}
.x7_c00352{left:115.733333pt;}
.x5_c00352{left:148.800000pt;}
.x1_c00352{left:191.200000pt;}
.x19_c00352{left:219.501546pt;}
.x14_c00352{left:270.533333pt;}
.x13_c00352{left:271.466667pt;}
.x12_c00352{left:272.400000pt;}
.x15_c00352{left:353.733333pt;}
.x11_c00352{left:378.000000pt;}
.x10_c00352{left:421.466667pt;}
.x17_c00352{left:450.933333pt;}
.x18_c00352{left:452.133333pt;}
.x16_c00352{left:453.866667pt;}
}





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

.ir_c00353:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00353{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00353;src:url('chunks/assets/font_4ad8df7cebef7009e964d00c.woff2')format("woff");}.ff1_c00353{font-family:ff1_c00353;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00353;src:url('chunks/assets/font_6120ecbffcd26190ccbae401.woff2')format("woff");}.ff2_c00353{font-family:ff2_c00353;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00353;src:url('chunks/assets/font_10a535e3b0110d2c76e98b02.woff2')format("woff");}.ff3_c00353{font-family:ff3_c00353;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00353;src:url('chunks/assets/font_e9950c37293fb0b3756bc1d8.woff2')format("woff");}.ff4_c00353{font-family:ff4_c00353;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00353;src:url('chunks/assets/font_e2a16062a57833d04abf05ad.woff2')format("woff");}.ff5_c00353{font-family:ff5_c00353;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00353;src:url('chunks/assets/font_13392f8bf6d1d6eaf0ab84a4.woff2')format("woff");}.ff6_c00353{font-family:ff6_c00353;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00353;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff7_c00353{font-family:ff7_c00353;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00353{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00353{vertical-align:0.000000px;}
.ls7_c00353{letter-spacing:0.000000px;}
.ls0_c00353{letter-spacing:3.000000px;}
.ls1_c00353{letter-spacing:6.000000px;}
.ls4_c00353{letter-spacing:13.260000px;}
.ls5_c00353{letter-spacing:20.460000px;}
.ls3_c00353{letter-spacing:24.450000px;}
.ls6_c00353{letter-spacing:28.260000px;}
.ls2_c00353{letter-spacing:31.860000px;}
.sc__c00353{text-shadow:none;}
.sc0_c00353{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00353{-webkit-text-stroke:0px transparent;}
.sc0_c00353{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00353{word-spacing:-20.340000px;}
.ws3_c00353{word-spacing:-18.000000px;}
.ws4_c00353{word-spacing:-17.319000px;}
.ws0_c00353{word-spacing:-16.500000px;}
.ws1_c00353{word-spacing:-14.160000px;}
.ws5_c00353{word-spacing:0.000000px;}
._24_c00353{margin-left:-15.177000px;}
._12_c00353{margin-left:-13.338000px;}
._8_c00353{margin-left:-11.880000px;}
._14_c00353{margin-left:-10.779000px;}
._f_c00353{margin-left:-9.222000px;}
._e_c00353{margin-left:-7.860000px;}
._c_c00353{margin-left:-6.381000px;}
._b_c00353{margin-left:-4.860000px;}
._0_c00353{margin-left:-3.060000px;}
._1_c00353{margin-left:-1.200000px;}
._6_c00353{width:1.260000px;}
._3_c00353{width:2.961000px;}
._5_c00353{width:4.002000px;}
._4_c00353{width:5.103000px;}
._16_c00353{width:6.132000px;}
._2_c00353{width:7.221000px;}
._a_c00353{width:8.580000px;}
._10_c00353{width:10.020000px;}
._d_c00353{width:11.661000px;}
._1b_c00353{width:12.693000px;}
._13_c00353{width:14.700000px;}
._1e_c00353{width:16.299000px;}
._1d_c00353{width:17.619000px;}
._7_c00353{width:19.239000px;}
._1f_c00353{width:21.381000px;}
._20_c00353{width:22.911000px;}
._11_c00353{width:25.560000px;}
._1c_c00353{width:28.278000px;}
._22_c00353{width:29.940000px;}
._26_c00353{width:31.620000px;}
._9_c00353{width:32.760000px;}
._25_c00353{width:34.626000px;}
._18_c00353{width:38.127000px;}
._23_c00353{width:39.942000px;}
._21_c00353{width:42.840000px;}
._19_c00353{width:52.740000px;}
._1a_c00353{width:72.873000px;}
._17_c00353{width:132.378000px;}
._15_c00353{width:151.521000px;}
._27_c00353{width:162.960000px;}
.fc2_c00353{color:transparent;}
.fc1_c00353{color:rgb(128,128,128);}
.fc0_c00353{color:rgb(0,0,0);}
.fs4_c00353{font-size:48.000000px;}
.fs0_c00353{font-size:60.000000px;}
.fs1_c00353{font-size:63.000000px;}
.fs2_c00353{font-size:66.000000px;}
.fs3_c00353{font-size:69.000000px;}
.y0_c00353{bottom:0.000000px;}
.y54_c00353{bottom:3.105000px;}
.y53_c00353{bottom:7.228355px;}
.y52_c00353{bottom:48.285000px;}
.y51_c00353{bottom:66.585000px;}
.y29_c00353{bottom:68.385000px;}
.y50_c00353{bottom:85.035000px;}
.y28_c00353{bottom:87.285000px;}
.y4f_c00353{bottom:103.485000px;}
.y27_c00353{bottom:105.285000px;}
.y4e_c00353{bottom:122.085000px;}
.y26_c00353{bottom:123.735000px;}
.y4d_c00353{bottom:140.085000px;}
.y25_c00353{bottom:141.435000px;}
.y4c_c00353{bottom:156.285000px;}
.y24_c00353{bottom:159.885000px;}
.y4b_c00353{bottom:175.785000px;}
.y23_c00353{bottom:176.535000px;}
.y4a_c00353{bottom:194.085000px;}
.y22_c00353{bottom:195.285000px;}
.y21_c00353{bottom:212.535000px;}
.y49_c00353{bottom:230.535000px;}
.y20_c00353{bottom:232.185000px;}
.y48_c00353{bottom:248.685000px;}
.y1f_c00353{bottom:250.635000px;}
.y47_c00353{bottom:266.835000px;}
.y1e_c00353{bottom:267.585000px;}
.y1d_c00353{bottom:284.535000px;}
.y46_c00353{bottom:284.835000px;}
.y45_c00353{bottom:301.935000px;}
.y1c_c00353{bottom:303.735000px;}
.y44_c00353{bottom:319.935000px;}
.y1b_c00353{bottom:322.335000px;}
.y43_c00353{bottom:338.085000px;}
.y1a_c00353{bottom:340.185000px;}
.y42_c00353{bottom:356.385000px;}
.y19_c00353{bottom:357.735000px;}
.y41_c00353{bottom:374.535000px;}
.y18_c00353{bottom:375.885000px;}
.y40_c00353{bottom:392.385000px;}
.y17_c00353{bottom:393.885000px;}
.y3f_c00353{bottom:410.385000px;}
.y16_c00353{bottom:412.635000px;}
.y3e_c00353{bottom:428.535000px;}
.y15_c00353{bottom:430.635000px;}
.y3d_c00353{bottom:446.535000px;}
.y14_c00353{bottom:447.885000px;}
.y3c_c00353{bottom:464.685000px;}
.y13_c00353{bottom:466.785000px;}
.y3b_c00353{bottom:482.535000px;}
.y12_c00353{bottom:484.635000px;}
.y3a_c00353{bottom:500.535000px;}
.y11_c00353{bottom:502.485000px;}
.y39_c00353{bottom:517.635000px;}
.y10_c00353{bottom:520.635000px;}
.y38_c00353{bottom:536.835000px;}
.yf_c00353{bottom:538.635000px;}
.y37_c00353{bottom:554.835000px;}
.ye_c00353{bottom:556.785000px;}
.y36_c00353{bottom:572.385000px;}
.yd_c00353{bottom:574.785000px;}
.y35_c00353{bottom:590.835000px;}
.yc_c00353{bottom:592.635000px;}
.y34_c00353{bottom:608.535000px;}
.yb_c00353{bottom:610.485000px;}
.y33_c00353{bottom:626.985000px;}
.ya_c00353{bottom:629.085000px;}
.y32_c00353{bottom:644.835000px;}
.y9_c00353{bottom:646.935000px;}
.y31_c00353{bottom:662.085000px;}
.y8_c00353{bottom:664.185000px;}
.y30_c00353{bottom:680.985000px;}
.y7_c00353{bottom:682.785000px;}
.y2f_c00353{bottom:698.985000px;}
.y6_c00353{bottom:701.235000px;}
.y2e_c00353{bottom:717.135000px;}
.y5_c00353{bottom:719.535000px;}
.y2d_c00353{bottom:735.435000px;}
.y4_c00353{bottom:737.385000px;}
.y2c_c00353{bottom:752.985000px;}
.y3_c00353{bottom:755.535000px;}
.y2b_c00353{bottom:771.135000px;}
.y2_c00353{bottom:773.085000px;}
.y2a_c00353{bottom:789.285000px;}
.y1_c00353{bottom:791.685000px;}
.h7_c00353{height:13.200074px;}
.h8_c00353{height:43.804688px;}
.h5_c00353{height:62.880000px;}
.h3_c00353{height:65.040000px;}
.h2_c00353{height:67.221000px;}
.h4_c00353{height:71.544000px;}
.h6_c00353{height:72.312000px;}
.h1_c00353{height:846.750000px;}
.h0_c00353{height:846.975000px;}
.w2_c00353{width:104.875500px;}
.w1_c00353{width:575.250000px;}
.w0_c00353{width:575.400000px;}
.x0_c00353{left:0.000000px;}
.x8_c00353{left:12.900000px;}
.x9_c00353{left:14.550000px;}
.xb_c00353{left:15.900000px;}
.x3_c00353{left:70.650000px;}
.x4_c00353{left:72.600000px;}
.x1_c00353{left:73.800000px;}
.xc_c00353{left:74.850000px;}
.x5_c00353{left:75.900000px;}
.x6_c00353{left:76.950000px;}
.xa_c00353{left:78.000000px;}
.x7_c00353{left:92.250000px;}
.x2_c00353{left:126.600000px;}
.x13_c00353{left:239.514267px;}
.xe_c00353{left:294.600000px;}
.xd_c00353{left:295.650000px;}
.xf_c00353{left:296.700000px;}
.x10_c00353{left:297.900000px;}
.x11_c00353{left:298.950000px;}
.x12_c00353{left:472.050000px;}
@media print{
.v0_c00353{vertical-align:0.000000pt;}
.ls7_c00353{letter-spacing:0.000000pt;}
.ls0_c00353{letter-spacing:2.666667pt;}
.ls1_c00353{letter-spacing:5.333333pt;}
.ls4_c00353{letter-spacing:11.786667pt;}
.ls5_c00353{letter-spacing:18.186667pt;}
.ls3_c00353{letter-spacing:21.733333pt;}
.ls6_c00353{letter-spacing:25.120000pt;}
.ls2_c00353{letter-spacing:28.320000pt;}
.ws2_c00353{word-spacing:-18.080000pt;}
.ws3_c00353{word-spacing:-16.000000pt;}
.ws4_c00353{word-spacing:-15.394667pt;}
.ws0_c00353{word-spacing:-14.666667pt;}
.ws1_c00353{word-spacing:-12.586667pt;}
.ws5_c00353{word-spacing:0.000000pt;}
._24_c00353{margin-left:-13.490667pt;}
._12_c00353{margin-left:-11.856000pt;}
._8_c00353{margin-left:-10.560000pt;}
._14_c00353{margin-left:-9.581333pt;}
._f_c00353{margin-left:-8.197333pt;}
._e_c00353{margin-left:-6.986667pt;}
._c_c00353{margin-left:-5.672000pt;}
._b_c00353{margin-left:-4.320000pt;}
._0_c00353{margin-left:-2.720000pt;}
._1_c00353{margin-left:-1.066667pt;}
._6_c00353{width:1.120000pt;}
._3_c00353{width:2.632000pt;}
._5_c00353{width:3.557333pt;}
._4_c00353{width:4.536000pt;}
._16_c00353{width:5.450667pt;}
._2_c00353{width:6.418667pt;}
._a_c00353{width:7.626667pt;}
._10_c00353{width:8.906667pt;}
._d_c00353{width:10.365333pt;}
._1b_c00353{width:11.282667pt;}
._13_c00353{width:13.066667pt;}
._1e_c00353{width:14.488000pt;}
._1d_c00353{width:15.661333pt;}
._7_c00353{width:17.101333pt;}
._1f_c00353{width:19.005333pt;}
._20_c00353{width:20.365333pt;}
._11_c00353{width:22.720000pt;}
._1c_c00353{width:25.136000pt;}
._22_c00353{width:26.613333pt;}
._26_c00353{width:28.106667pt;}
._9_c00353{width:29.120000pt;}
._25_c00353{width:30.778667pt;}
._18_c00353{width:33.890667pt;}
._23_c00353{width:35.504000pt;}
._21_c00353{width:38.080000pt;}
._19_c00353{width:46.880000pt;}
._1a_c00353{width:64.776000pt;}
._17_c00353{width:117.669333pt;}
._15_c00353{width:134.685333pt;}
._27_c00353{width:144.853333pt;}
.fs4_c00353{font-size:42.666667pt;}
.fs0_c00353{font-size:53.333333pt;}
.fs1_c00353{font-size:56.000000pt;}
.fs2_c00353{font-size:58.666667pt;}
.fs3_c00353{font-size:61.333333pt;}
.y0_c00353{bottom:0.000000pt;}
.y54_c00353{bottom:2.760000pt;}
.y53_c00353{bottom:6.425204pt;}
.y52_c00353{bottom:42.920000pt;}
.y51_c00353{bottom:59.186667pt;}
.y29_c00353{bottom:60.786667pt;}
.y50_c00353{bottom:75.586667pt;}
.y28_c00353{bottom:77.586667pt;}
.y4f_c00353{bottom:91.986667pt;}
.y27_c00353{bottom:93.586667pt;}
.y4e_c00353{bottom:108.520000pt;}
.y26_c00353{bottom:109.986667pt;}
.y4d_c00353{bottom:124.520000pt;}
.y25_c00353{bottom:125.720000pt;}
.y4c_c00353{bottom:138.920000pt;}
.y24_c00353{bottom:142.120000pt;}
.y4b_c00353{bottom:156.253333pt;}
.y23_c00353{bottom:156.920000pt;}
.y4a_c00353{bottom:172.520000pt;}
.y22_c00353{bottom:173.586667pt;}
.y21_c00353{bottom:188.920000pt;}
.y49_c00353{bottom:204.920000pt;}
.y20_c00353{bottom:206.386667pt;}
.y48_c00353{bottom:221.053333pt;}
.y1f_c00353{bottom:222.786667pt;}
.y47_c00353{bottom:237.186667pt;}
.y1e_c00353{bottom:237.853333pt;}
.y1d_c00353{bottom:252.920000pt;}
.y46_c00353{bottom:253.186667pt;}
.y45_c00353{bottom:268.386667pt;}
.y1c_c00353{bottom:269.986667pt;}
.y44_c00353{bottom:284.386667pt;}
.y1b_c00353{bottom:286.520000pt;}
.y43_c00353{bottom:300.520000pt;}
.y1a_c00353{bottom:302.386667pt;}
.y42_c00353{bottom:316.786667pt;}
.y19_c00353{bottom:317.986667pt;}
.y41_c00353{bottom:332.920000pt;}
.y18_c00353{bottom:334.120000pt;}
.y40_c00353{bottom:348.786667pt;}
.y17_c00353{bottom:350.120000pt;}
.y3f_c00353{bottom:364.786667pt;}
.y16_c00353{bottom:366.786667pt;}
.y3e_c00353{bottom:380.920000pt;}
.y15_c00353{bottom:382.786667pt;}
.y3d_c00353{bottom:396.920000pt;}
.y14_c00353{bottom:398.120000pt;}
.y3c_c00353{bottom:413.053333pt;}
.y13_c00353{bottom:414.920000pt;}
.y3b_c00353{bottom:428.920000pt;}
.y12_c00353{bottom:430.786667pt;}
.y3a_c00353{bottom:444.920000pt;}
.y11_c00353{bottom:446.653333pt;}
.y39_c00353{bottom:460.120000pt;}
.y10_c00353{bottom:462.786667pt;}
.y38_c00353{bottom:477.186667pt;}
.yf_c00353{bottom:478.786667pt;}
.y37_c00353{bottom:493.186667pt;}
.ye_c00353{bottom:494.920000pt;}
.y36_c00353{bottom:508.786667pt;}
.yd_c00353{bottom:510.920000pt;}
.y35_c00353{bottom:525.186667pt;}
.yc_c00353{bottom:526.786667pt;}
.y34_c00353{bottom:540.920000pt;}
.yb_c00353{bottom:542.653333pt;}
.y33_c00353{bottom:557.320000pt;}
.ya_c00353{bottom:559.186667pt;}
.y32_c00353{bottom:573.186667pt;}
.y9_c00353{bottom:575.053333pt;}
.y31_c00353{bottom:588.520000pt;}
.y8_c00353{bottom:590.386667pt;}
.y30_c00353{bottom:605.320000pt;}
.y7_c00353{bottom:606.920000pt;}
.y2f_c00353{bottom:621.320000pt;}
.y6_c00353{bottom:623.320000pt;}
.y2e_c00353{bottom:637.453333pt;}
.y5_c00353{bottom:639.586667pt;}
.y2d_c00353{bottom:653.720000pt;}
.y4_c00353{bottom:655.453333pt;}
.y2c_c00353{bottom:669.320000pt;}
.y3_c00353{bottom:671.586667pt;}
.y2b_c00353{bottom:685.453333pt;}
.y2_c00353{bottom:687.186667pt;}
.y2a_c00353{bottom:701.586667pt;}
.y1_c00353{bottom:703.720000pt;}
.h7_c00353{height:11.733399pt;}
.h8_c00353{height:38.937500pt;}
.h5_c00353{height:55.893333pt;}
.h3_c00353{height:57.813333pt;}
.h2_c00353{height:59.752000pt;}
.h4_c00353{height:63.594667pt;}
.h6_c00353{height:64.277333pt;}
.h1_c00353{height:752.666667pt;}
.h0_c00353{height:752.866667pt;}
.w2_c00353{width:93.222667pt;}
.w1_c00353{width:511.333333pt;}
.w0_c00353{width:511.466667pt;}
.x0_c00353{left:0.000000pt;}
.x8_c00353{left:11.466667pt;}
.x9_c00353{left:12.933333pt;}
.xb_c00353{left:14.133333pt;}
.x3_c00353{left:62.800000pt;}
.x4_c00353{left:64.533333pt;}
.x1_c00353{left:65.600000pt;}
.xc_c00353{left:66.533333pt;}
.x5_c00353{left:67.466667pt;}
.x6_c00353{left:68.400000pt;}
.xa_c00353{left:69.333333pt;}
.x7_c00353{left:82.000000pt;}
.x2_c00353{left:112.533333pt;}
.x13_c00353{left:212.901571pt;}
.xe_c00353{left:261.866667pt;}
.xd_c00353{left:262.800000pt;}
.xf_c00353{left:263.733333pt;}
.x10_c00353{left:264.800000pt;}
.x11_c00353{left:265.733333pt;}
.x12_c00353{left:419.600000pt;}
}





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

.ir_c00354:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00354{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00354;src:url('chunks/assets/font_3bd4ac24a61b93febcdbb20f.woff2')format("woff");}.ff1_c00354{font-family:ff1_c00354;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00354;src:url('chunks/assets/font_9327caf71dbdb6ab8d67867a.woff2')format("woff");}.ff2_c00354{font-family:ff2_c00354;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00354;src:url('chunks/assets/font_43ca4fa9297671174e605511.woff2')format("woff");}.ff3_c00354{font-family:ff3_c00354;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00354;src:url('chunks/assets/font_5c304916f987b983adf48fd7.woff2')format("woff");}.ff4_c00354{font-family:ff4_c00354;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00354;src:url('chunks/assets/font_fc6eaf36cc196394a61547ee.woff2')format("woff");}.ff5_c00354{font-family:ff5_c00354;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00354;src:url('chunks/assets/font_7c7b114d6d8510036cb24ad0.woff2')format("woff");}.ff6_c00354{font-family:ff6_c00354;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00354;src:url('chunks/assets/font_924df17011c3ca4d55b1243b.woff2')format("woff");}.ff7_c00354{font-family:ff7_c00354;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00354;src:url('chunks/assets/font_aef24b37decea2c263c81c5f.woff2')format("woff");}.ff8_c00354{font-family:ff8_c00354;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00354;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff9_c00354{font-family:ff9_c00354;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00354{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00354{vertical-align:0.000000px;}
.v1_c00354{vertical-align:91.800000px;}
.ls9_c00354{letter-spacing:0.000000px;}
.ls1_c00354{letter-spacing:0.600000px;}
.ls0_c00354{letter-spacing:3.000000px;}
.ls6_c00354{letter-spacing:4.317000px;}
.ls2_c00354{letter-spacing:5.805000px;}
.lsa_c00354{letter-spacing:6.000000px;}
.ls3_c00354{letter-spacing:10.005000px;}
.ls8_c00354{letter-spacing:12.660000px;}
.ls5_c00354{letter-spacing:13.200000px;}
.ls7_c00354{letter-spacing:19.860000px;}
.ls4_c00354{letter-spacing:22.620000px;}
.sc__c00354{text-shadow:none;}
.sc0_c00354{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00354{-webkit-text-stroke:0px transparent;}
.sc0_c00354{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00354{word-spacing:-54.684000px;}
.ws1_c00354{word-spacing:-18.060000px;}
.ws0_c00354{word-spacing:-14.160000px;}
.ws3_c00354{word-spacing:0.000000px;}
._23_c00354{margin-left:-35.448000px;}
._1f_c00354{margin-left:-29.820000px;}
._22_c00354{margin-left:-28.476000px;}
._20_c00354{margin-left:-27.198000px;}
._21_c00354{margin-left:-20.748000px;}
._25_c00354{margin-left:-19.557000px;}
._1d_c00354{margin-left:-17.778000px;}
._26_c00354{margin-left:-16.605000px;}
._9_c00354{margin-left:-15.054000px;}
._28_c00354{margin-left:-13.779000px;}
._24_c00354{margin-left:-12.303000px;}
._c_c00354{margin-left:-10.764000px;}
._b_c00354{margin-left:-9.672000px;}
._27_c00354{margin-left:-7.488000px;}
._a_c00354{margin-left:-6.162000px;}
._15_c00354{margin-left:-4.224000px;}
._1_c00354{margin-left:-3.000000px;}
._2_c00354{margin-left:-1.140000px;}
._0_c00354{width:1.320000px;}
._3_c00354{width:3.120000px;}
._10_c00354{width:4.620000px;}
._13_c00354{width:6.144000px;}
._5_c00354{width:7.560000px;}
._14_c00354{width:9.204000px;}
._12_c00354{width:11.124000px;}
._4_c00354{width:13.080000px;}
._7_c00354{width:14.280000px;}
._6_c00354{width:16.380000px;}
._1e_c00354{width:17.940000px;}
._1c_c00354{width:19.320000px;}
._16_c00354{width:21.420000px;}
._8_c00354{width:22.860000px;}
._2a_c00354{width:24.594000px;}
._1b_c00354{width:25.740000px;}
._17_c00354{width:27.180000px;}
._29_c00354{width:28.380000px;}
._19_c00354{width:30.072000px;}
._2b_c00354{width:31.380000px;}
._18_c00354{width:34.080000px;}
._2c_c00354{width:35.700000px;}
._2f_c00354{width:37.020000px;}
._2d_c00354{width:39.516000px;}
._2e_c00354{width:46.200000px;}
._30_c00354{width:56.832000px;}
._d_c00354{width:73.164000px;}
._1a_c00354{width:99.024000px;}
._11_c00354{width:101.544000px;}
._e_c00354{width:158.196000px;}
._31_c00354{width:196.314000px;}
._f_c00354{width:438.480000px;}
.fc2_c00354{color:transparent;}
.fc1_c00354{color:rgb(128,128,128);}
.fc0_c00354{color:rgb(0,0,0);}
.fs3_c00354{font-size:36.000000px;}
.fs4_c00354{font-size:45.000000px;}
.fs8_c00354{font-size:48.000000px;}
.fs2_c00354{font-size:54.000000px;}
.fs0_c00354{font-size:60.000000px;}
.fs1_c00354{font-size:78.000000px;}
.fs7_c00354{font-size:81.000000px;}
.fs6_c00354{font-size:84.000000px;}
.fs5_c00354{font-size:213.000000px;}
.y0_c00354{bottom:0.000000px;}
.y4e_c00354{bottom:3.105000px;}
.y4d_c00354{bottom:7.228357px;}
.y4c_c00354{bottom:38.130000px;}
.y26_c00354{bottom:57.330000px;}
.y4b_c00354{bottom:75.030000px;}
.y25_c00354{bottom:76.380000px;}
.y4a_c00354{bottom:93.930000px;}
.y24_c00354{bottom:95.280000px;}
.y49_c00354{bottom:112.380000px;}
.y23_c00354{bottom:112.830000px;}
.y48_c00354{bottom:130.230000px;}
.y22_c00354{bottom:130.380000px;}
.y47_c00354{bottom:148.530000px;}
.y21_c00354{bottom:149.580000px;}
.y46_c00354{bottom:166.380000px;}
.y20_c00354{bottom:167.430000px;}
.y45_c00354{bottom:184.980000px;}
.y1f_c00354{bottom:185.280000px;}
.y44_c00354{bottom:201.180000px;}
.y1e_c00354{bottom:203.880000px;}
.y1d_c00354{bottom:220.830000px;}
.y1c_c00354{bottom:238.680000px;}
.y43_c00354{bottom:239.280000px;}
.y42_c00354{bottom:256.530000px;}
.y1b_c00354{bottom:257.130000px;}
.y1a_c00354{bottom:275.130000px;}
.y41_c00354{bottom:275.730000px;}
.y19_c00354{bottom:293.280000px;}
.y40_c00354{bottom:293.580000px;}
.y18_c00354{bottom:311.280000px;}
.y16_c00354{bottom:324.630000px;}
.y17_c00354{bottom:329.430000px;}
.y3f_c00354{bottom:330.030000px;}
.y3e_c00354{bottom:347.580000px;}
.y3d_c00354{bottom:366.180000px;}
.y15_c00354{bottom:383.430000px;}
.y3c_c00354{bottom:384.180000px;}
.y14_c00354{bottom:401.730000px;}
.y3b_c00354{bottom:402.930000px;}
.y3a_c00354{bottom:420.480000px;}
.y13_c00354{bottom:420.630000px;}
.y12_c00354{bottom:438.180000px;}
.y39_c00354{bottom:438.480000px;}
.y38_c00354{bottom:456.930000px;}
.y11_c00354{bottom:472.830000px;}
.y37_c00354{bottom:474.480000px;}
.y36_c00354{bottom:492.180000px;}
.y10_c00354{bottom:509.280000px;}
.y35_c00354{bottom:510.330000px;}
.yf_c00354{bottom:527.130000px;}
.y34_c00354{bottom:528.480000px;}
.ye_c00354{bottom:545.430000px;}
.y33_c00354{bottom:546.180000px;}
.y32_c00354{bottom:563.580000px;}
.yd_c00354{bottom:563.730000px;}
.yc_c00354{bottom:581.580000px;}
.yb_c00354{bottom:599.430000px;}
.y31_c00354{bottom:600.030000px;}
.ya_c00354{bottom:617.130000px;}
.y30_c00354{bottom:618.330000px;}
.y9_c00354{bottom:635.580000px;}
.y2f_c00354{bottom:635.880000px;}
.y8_c00354{bottom:654.030000px;}
.y2e_c00354{bottom:654.780000px;}
.y7_c00354{bottom:672.030000px;}
.y2d_c00354{bottom:672.330000px;}
.y6_c00354{bottom:689.580000px;}
.y2c_c00354{bottom:690.930000px;}
.y5_c00354{bottom:708.030000px;}
.y2b_c00354{bottom:708.780000px;}
.y4_c00354{bottom:726.030000px;}
.y2a_c00354{bottom:726.330000px;}
.y3_c00354{bottom:743.280000px;}
.y29_c00354{bottom:745.530000px;}
.y2_c00354{bottom:761.130000px;}
.y28_c00354{bottom:762.780000px;}
.y1_c00354{bottom:780.030000px;}
.y27_c00354{bottom:780.330000px;}
.h8_c00354{height:13.200074px;}
.h3_c00354{height:39.024000px;}
.h9_c00354{height:43.804688px;}
.h1_c00354{height:62.880000px;}
.h4_c00354{height:64.020000px;}
.h2_c00354{height:81.744000px;}
.h7_c00354{height:84.888000px;}
.h6_c00354{height:91.056000px;}
.h5_c00354{height:223.224000px;}
.h0_c00354{height:833.250000px;}
.w2_c00354{width:104.875500px;}
.w1_c00354{width:582.000000px;}
.w0_c00354{width:582.150000px;}
.x0_c00354{left:0.000000px;}
.xd_c00354{left:22.200000px;}
.x3_c00354{left:24.000000px;}
.xc_c00354{left:81.600000px;}
.xa_c00354{left:82.650000px;}
.x4_c00354{left:84.300000px;}
.x2_c00354{left:85.350000px;}
.x5_c00354{left:86.400000px;}
.x1_c00354{left:88.200000px;}
.x7_c00354{left:99.600000px;}
.x8_c00354{left:115.650000px;}
.xb_c00354{left:124.800000px;}
.x9_c00354{left:145.500000px;}
.x6_c00354{left:188.550000px;}
.x1b_c00354{left:242.889267px;}
.x19_c00354{left:302.400000px;}
.x18_c00354{left:303.750000px;}
.x17_c00354{left:305.400000px;}
.x16_c00354{left:306.450000px;}
.x15_c00354{left:307.800000px;}
.x14_c00354{left:308.850000px;}
.x13_c00354{left:310.500000px;}
.x12_c00354{left:311.850000px;}
.x11_c00354{left:313.200000px;}
.x10_c00354{left:314.250000px;}
.xf_c00354{left:315.450000px;}
.xe_c00354{left:316.500000px;}
.x1a_c00354{left:394.800000px;}
@media print{
.v0_c00354{vertical-align:0.000000pt;}
.v1_c00354{vertical-align:81.600000pt;}
.ls9_c00354{letter-spacing:0.000000pt;}
.ls1_c00354{letter-spacing:0.533333pt;}
.ls0_c00354{letter-spacing:2.666667pt;}
.ls6_c00354{letter-spacing:3.837333pt;}
.ls2_c00354{letter-spacing:5.160000pt;}
.lsa_c00354{letter-spacing:5.333333pt;}
.ls3_c00354{letter-spacing:8.893333pt;}
.ls8_c00354{letter-spacing:11.253333pt;}
.ls5_c00354{letter-spacing:11.733333pt;}
.ls7_c00354{letter-spacing:17.653333pt;}
.ls4_c00354{letter-spacing:20.106667pt;}
.ws2_c00354{word-spacing:-48.608000pt;}
.ws1_c00354{word-spacing:-16.053333pt;}
.ws0_c00354{word-spacing:-12.586667pt;}
.ws3_c00354{word-spacing:0.000000pt;}
._23_c00354{margin-left:-31.509333pt;}
._1f_c00354{margin-left:-26.506667pt;}
._22_c00354{margin-left:-25.312000pt;}
._20_c00354{margin-left:-24.176000pt;}
._21_c00354{margin-left:-18.442667pt;}
._25_c00354{margin-left:-17.384000pt;}
._1d_c00354{margin-left:-15.802667pt;}
._26_c00354{margin-left:-14.760000pt;}
._9_c00354{margin-left:-13.381333pt;}
._28_c00354{margin-left:-12.248000pt;}
._24_c00354{margin-left:-10.936000pt;}
._c_c00354{margin-left:-9.568000pt;}
._b_c00354{margin-left:-8.597333pt;}
._27_c00354{margin-left:-6.656000pt;}
._a_c00354{margin-left:-5.477333pt;}
._15_c00354{margin-left:-3.754667pt;}
._1_c00354{margin-left:-2.666667pt;}
._2_c00354{margin-left:-1.013333pt;}
._0_c00354{width:1.173333pt;}
._3_c00354{width:2.773333pt;}
._10_c00354{width:4.106667pt;}
._13_c00354{width:5.461333pt;}
._5_c00354{width:6.720000pt;}
._14_c00354{width:8.181333pt;}
._12_c00354{width:9.888000pt;}
._4_c00354{width:11.626667pt;}
._7_c00354{width:12.693333pt;}
._6_c00354{width:14.560000pt;}
._1e_c00354{width:15.946667pt;}
._1c_c00354{width:17.173333pt;}
._16_c00354{width:19.040000pt;}
._8_c00354{width:20.320000pt;}
._2a_c00354{width:21.861333pt;}
._1b_c00354{width:22.880000pt;}
._17_c00354{width:24.160000pt;}
._29_c00354{width:25.226667pt;}
._19_c00354{width:26.730667pt;}
._2b_c00354{width:27.893333pt;}
._18_c00354{width:30.293333pt;}
._2c_c00354{width:31.733333pt;}
._2f_c00354{width:32.906667pt;}
._2d_c00354{width:35.125333pt;}
._2e_c00354{width:41.066667pt;}
._30_c00354{width:50.517333pt;}
._d_c00354{width:65.034667pt;}
._1a_c00354{width:88.021333pt;}
._11_c00354{width:90.261333pt;}
._e_c00354{width:140.618667pt;}
._31_c00354{width:174.501333pt;}
._f_c00354{width:389.760000pt;}
.fs3_c00354{font-size:32.000000pt;}
.fs4_c00354{font-size:40.000000pt;}
.fs8_c00354{font-size:42.666667pt;}
.fs2_c00354{font-size:48.000000pt;}
.fs0_c00354{font-size:53.333333pt;}
.fs1_c00354{font-size:69.333333pt;}
.fs7_c00354{font-size:72.000000pt;}
.fs6_c00354{font-size:74.666667pt;}
.fs5_c00354{font-size:189.333333pt;}
.y0_c00354{bottom:0.000000pt;}
.y4e_c00354{bottom:2.760000pt;}
.y4d_c00354{bottom:6.425206pt;}
.y4c_c00354{bottom:33.893333pt;}
.y26_c00354{bottom:50.960000pt;}
.y4b_c00354{bottom:66.693333pt;}
.y25_c00354{bottom:67.893333pt;}
.y4a_c00354{bottom:83.493333pt;}
.y24_c00354{bottom:84.693333pt;}
.y49_c00354{bottom:99.893333pt;}
.y23_c00354{bottom:100.293333pt;}
.y48_c00354{bottom:115.760000pt;}
.y22_c00354{bottom:115.893333pt;}
.y47_c00354{bottom:132.026667pt;}
.y21_c00354{bottom:132.960000pt;}
.y46_c00354{bottom:147.893333pt;}
.y20_c00354{bottom:148.826667pt;}
.y45_c00354{bottom:164.426667pt;}
.y1f_c00354{bottom:164.693333pt;}
.y44_c00354{bottom:178.826667pt;}
.y1e_c00354{bottom:181.226667pt;}
.y1d_c00354{bottom:196.293333pt;}
.y1c_c00354{bottom:212.160000pt;}
.y43_c00354{bottom:212.693333pt;}
.y42_c00354{bottom:228.026667pt;}
.y1b_c00354{bottom:228.560000pt;}
.y1a_c00354{bottom:244.560000pt;}
.y41_c00354{bottom:245.093333pt;}
.y19_c00354{bottom:260.693333pt;}
.y40_c00354{bottom:260.960000pt;}
.y18_c00354{bottom:276.693333pt;}
.y16_c00354{bottom:288.560000pt;}
.y17_c00354{bottom:292.826667pt;}
.y3f_c00354{bottom:293.360000pt;}
.y3e_c00354{bottom:308.960000pt;}
.y3d_c00354{bottom:325.493333pt;}
.y15_c00354{bottom:340.826667pt;}
.y3c_c00354{bottom:341.493333pt;}
.y14_c00354{bottom:357.093333pt;}
.y3b_c00354{bottom:358.160000pt;}
.y3a_c00354{bottom:373.760000pt;}
.y13_c00354{bottom:373.893333pt;}
.y12_c00354{bottom:389.493333pt;}
.y39_c00354{bottom:389.760000pt;}
.y38_c00354{bottom:406.160000pt;}
.y11_c00354{bottom:420.293333pt;}
.y37_c00354{bottom:421.760000pt;}
.y36_c00354{bottom:437.493333pt;}
.y10_c00354{bottom:452.693333pt;}
.y35_c00354{bottom:453.626667pt;}
.yf_c00354{bottom:468.560000pt;}
.y34_c00354{bottom:469.760000pt;}
.ye_c00354{bottom:484.826667pt;}
.y33_c00354{bottom:485.493333pt;}
.y32_c00354{bottom:500.960000pt;}
.yd_c00354{bottom:501.093333pt;}
.yc_c00354{bottom:516.960000pt;}
.yb_c00354{bottom:532.826667pt;}
.y31_c00354{bottom:533.360000pt;}
.ya_c00354{bottom:548.560000pt;}
.y30_c00354{bottom:549.626667pt;}
.y9_c00354{bottom:564.960000pt;}
.y2f_c00354{bottom:565.226667pt;}
.y8_c00354{bottom:581.360000pt;}
.y2e_c00354{bottom:582.026667pt;}
.y7_c00354{bottom:597.360000pt;}
.y2d_c00354{bottom:597.626667pt;}
.y6_c00354{bottom:612.960000pt;}
.y2c_c00354{bottom:614.160000pt;}
.y5_c00354{bottom:629.360000pt;}
.y2b_c00354{bottom:630.026667pt;}
.y4_c00354{bottom:645.360000pt;}
.y2a_c00354{bottom:645.626667pt;}
.y3_c00354{bottom:660.693333pt;}
.y29_c00354{bottom:662.693333pt;}
.y2_c00354{bottom:676.560000pt;}
.y28_c00354{bottom:678.026667pt;}
.y1_c00354{bottom:693.360000pt;}
.y27_c00354{bottom:693.626667pt;}
.h8_c00354{height:11.733399pt;}
.h3_c00354{height:34.688000pt;}
.h9_c00354{height:38.937500pt;}
.h1_c00354{height:55.893333pt;}
.h4_c00354{height:56.906667pt;}
.h2_c00354{height:72.661333pt;}
.h7_c00354{height:75.456000pt;}
.h6_c00354{height:80.938667pt;}
.h5_c00354{height:198.421333pt;}
.h0_c00354{height:740.666667pt;}
.w2_c00354{width:93.222667pt;}
.w1_c00354{width:517.333333pt;}
.w0_c00354{width:517.466667pt;}
.x0_c00354{left:0.000000pt;}
.xd_c00354{left:19.733333pt;}
.x3_c00354{left:21.333333pt;}
.xc_c00354{left:72.533333pt;}
.xa_c00354{left:73.466667pt;}
.x4_c00354{left:74.933333pt;}
.x2_c00354{left:75.866667pt;}
.x5_c00354{left:76.800000pt;}
.x1_c00354{left:78.400000pt;}
.x7_c00354{left:88.533333pt;}
.x8_c00354{left:102.800000pt;}
.xb_c00354{left:110.933333pt;}
.x9_c00354{left:129.333333pt;}
.x6_c00354{left:167.600000pt;}
.x1b_c00354{left:215.901571pt;}
.x19_c00354{left:268.800000pt;}
.x18_c00354{left:270.000000pt;}
.x17_c00354{left:271.466667pt;}
.x16_c00354{left:272.400000pt;}
.x15_c00354{left:273.600000pt;}
.x14_c00354{left:274.533333pt;}
.x13_c00354{left:276.000000pt;}
.x12_c00354{left:277.200000pt;}
.x11_c00354{left:278.400000pt;}
.x10_c00354{left:279.333333pt;}
.xf_c00354{left:280.400000pt;}
.xe_c00354{left:281.333333pt;}
.x1a_c00354{left:350.933333pt;}
}





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

.ir_c00355:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00355{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00355;src:url('chunks/assets/font_fa70c9c7f3ee8338b9287224.woff2')format("woff");}.ff1_c00355{font-family:ff1_c00355;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00355;src:url('chunks/assets/font_3a0d1c6cc2cc779a8737610d.woff2')format("woff");}.ff2_c00355{font-family:ff2_c00355;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00355;src:url('chunks/assets/font_f57a61198bb21f79308557c9.woff2')format("woff");}.ff3_c00355{font-family:ff3_c00355;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00355;src:url('chunks/assets/font_a53dc16481449e71584e7322.woff2')format("woff");}.ff4_c00355{font-family:ff4_c00355;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00355;src:url('chunks/assets/font_61b2dca146668384daf17d0b.woff2')format("woff");}.ff5_c00355{font-family:ff5_c00355;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00355;src:url('chunks/assets/font_bded03d4b5d240b51b31ff26.woff2')format("woff");}.ff6_c00355{font-family:ff6_c00355;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00355;src:url('chunks/assets/font_25b6e87a414bdc7a26d13a30.woff2')format("woff");}.ff7_c00355{font-family:ff7_c00355;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00355;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff8_c00355{font-family:ff8_c00355;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00355{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00355{vertical-align:0.000000px;}
.ls8_c00355{letter-spacing:-6.000000px;}
.lsa_c00355{letter-spacing:-3.000000px;}
.ls7_c00355{letter-spacing:0.000000px;}
.ls0_c00355{letter-spacing:0.600000px;}
.ls1_c00355{letter-spacing:3.000000px;}
.ls6_c00355{letter-spacing:6.000000px;}
.ls2_c00355{letter-spacing:10.800000px;}
.ls3_c00355{letter-spacing:11.400000px;}
.ls9_c00355{letter-spacing:15.000000px;}
.ls5_c00355{letter-spacing:18.540000px;}
.ls4_c00355{letter-spacing:21.000000px;}
.sc__c00355{text-shadow:none;}
.sc0_c00355{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00355{-webkit-text-stroke:0px transparent;}
.sc0_c00355{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00355{word-spacing:-22.275000px;}
.ws2_c00355{word-spacing:-18.060000px;}
.ws3_c00355{word-spacing:-15.348000px;}
.ws1_c00355{word-spacing:-14.160000px;}
.ws4_c00355{word-spacing:0.000000px;}
._1e_c00355{margin-left:-15.528000px;}
._13_c00355{margin-left:-10.800000px;}
._14_c00355{margin-left:-7.260000px;}
._8_c00355{margin-left:-5.640000px;}
._10_c00355{margin-left:-3.768000px;}
._7_c00355{margin-left:-2.580000px;}
._9_c00355{margin-left:-1.500000px;}
._f_c00355{width:1.032000px;}
._5_c00355{width:2.040000px;}
._4_c00355{width:3.240000px;}
._6_c00355{width:4.800000px;}
._a_c00355{width:5.988000px;}
._1_c00355{width:7.344000px;}
._c_c00355{width:8.520000px;}
._2_c00355{width:9.576000px;}
._3_c00355{width:11.592000px;}
._11_c00355{width:12.708000px;}
._19_c00355{width:13.800000px;}
._b_c00355{width:15.024000px;}
._1b_c00355{width:16.032000px;}
._18_c00355{width:17.616000px;}
._d_c00355{width:19.500000px;}
._16_c00355{width:20.676000px;}
._12_c00355{width:22.368000px;}
._1f_c00355{width:24.384000px;}
._e_c00355{width:25.440000px;}
._17_c00355{width:27.060000px;}
._15_c00355{width:28.140000px;}
._1a_c00355{width:29.748000px;}
._20_c00355{width:32.655000px;}
._1c_c00355{width:35.616000px;}
._1d_c00355{width:39.888000px;}
._21_c00355{width:46.176000px;}
._0_c00355{width:189.012000px;}
.fc2_c00355{color:transparent;}
.fc1_c00355{color:rgb(128,128,128);}
.fc0_c00355{color:rgb(0,0,0);}
.fs6_c00355{font-size:48.000000px;}
.fs2_c00355{font-size:60.000000px;}
.fs3_c00355{font-size:63.000000px;}
.fs5_c00355{font-size:66.000000px;}
.fs4_c00355{font-size:69.000000px;}
.fs1_c00355{font-size:72.000000px;}
.fs0_c00355{font-size:75.000000px;}
.y0_c00355{bottom:0.000000px;}
.y4f_c00355{bottom:3.105000px;}
.y4e_c00355{bottom:7.228355px;}
.y4d_c00355{bottom:39.735000px;}
.y2a_c00355{bottom:59.985000px;}
.y4c_c00355{bottom:76.635000px;}
.y29_c00355{bottom:78.885000px;}
.y4b_c00355{bottom:96.435000px;}
.y28_c00355{bottom:96.585000px;}
.y4a_c00355{bottom:113.985000px;}
.y27_c00355{bottom:114.435000px;}
.y26_c00355{bottom:132.285000px;}
.y25_c00355{bottom:150.885000px;}
.y49_c00355{bottom:168.435000px;}
.y24_c00355{bottom:169.035000px;}
.y23_c00355{bottom:186.285000px;}
.y48_c00355{bottom:187.335000px;}
.y22_c00355{bottom:205.485000px;}
.y21_c00355{bottom:223.035000px;}
.y20_c00355{bottom:241.185000px;}
.y1f_c00355{bottom:258.435000px;}
.y47_c00355{bottom:258.885000px;}
.y1e_c00355{bottom:276.735000px;}
.y46_c00355{bottom:277.785000px;}
.y1d_c00355{bottom:294.585000px;}
.y45_c00355{bottom:295.335000px;}
.y1c_c00355{bottom:313.185000px;}
.y44_c00355{bottom:330.435000px;}
.y1b_c00355{bottom:331.335000px;}
.y43_c00355{bottom:349.185000px;}
.y1a_c00355{bottom:350.235000px;}
.y42_c00355{bottom:366.885000px;}
.y19_c00355{bottom:367.185000px;}
.y18_c00355{bottom:385.035000px;}
.y41_c00355{bottom:385.335000px;}
.y17_c00355{bottom:403.335000px;}
.y16_c00355{bottom:420.885000px;}
.y40_c00355{bottom:421.785000px;}
.y3f_c00355{bottom:439.635000px;}
.y15_c00355{bottom:439.785000px;}
.y3e_c00355{bottom:457.635000px;}
.y14_c00355{bottom:457.935000px;}
.y13_c00355{bottom:476.085000px;}
.y3d_c00355{bottom:476.235000px;}
.y3c_c00355{bottom:493.785000px;}
.y12_c00355{bottom:494.385000px;}
.y11_c00355{bottom:511.185000px;}
.y3b_c00355{bottom:511.335000px;}
.y10_c00355{bottom:528.885000px;}
.y3a_c00355{bottom:529.485000px;}
.y39_c00355{bottom:547.635000px;}
.yf_c00355{bottom:547.785000px;}
.y38_c00355{bottom:564.885000px;}
.ye_c00355{bottom:566.235000px;}
.y37_c00355{bottom:582.885000px;}
.yd_c00355{bottom:584.235000px;}
.y36_c00355{bottom:601.035000px;}
.yc_c00355{bottom:602.385000px;}
.y35_c00355{bottom:618.585000px;}
.yb_c00355{bottom:620.235000px;}
.y34_c00355{bottom:637.185000px;}
.ya_c00355{bottom:638.535000px;}
.y33_c00355{bottom:654.435000px;}
.y9_c00355{bottom:657.735000px;}
.y32_c00355{bottom:672.885000px;}
.y8_c00355{bottom:676.335000px;}
.y31_c00355{bottom:691.185000px;}
.y7_c00355{bottom:693.885000px;}
.y30_c00355{bottom:708.435000px;}
.y6_c00355{bottom:711.735000px;}
.y2f_c00355{bottom:726.285000px;}
.y5_c00355{bottom:729.885000px;}
.y2e_c00355{bottom:744.435000px;}
.y4_c00355{bottom:748.485000px;}
.y2d_c00355{bottom:763.335000px;}
.y3_c00355{bottom:765.735000px;}
.y2c_c00355{bottom:781.185000px;}
.y2_c00355{bottom:784.335000px;}
.y2b_c00355{bottom:802.185000px;}
.y1_c00355{bottom:803.535000px;}
.h7_c00355{height:13.200074px;}
.h8_c00355{height:43.804688px;}
.h3_c00355{height:62.880000px;}
.h4_c00355{height:64.020000px;}
.h5_c00355{height:66.024000px;}
.h6_c00355{height:73.623000px;}
.h2_c00355{height:80.025000px;}
.h1_c00355{height:846.750000px;}
.h0_c00355{height:846.975000px;}
.w2_c00355{width:104.875500px;}
.w1_c00355{width:575.250000px;}
.w0_c00355{width:575.400000px;}
.x0_c00355{left:0.000000px;}
.x6_c00355{left:18.900000px;}
.x7_c00355{left:79.650000px;}
.x5_c00355{left:83.400000px;}
.x3_c00355{left:85.500000px;}
.x2_c00355{left:86.700000px;}
.x1_c00355{left:95.550000px;}
.x4_c00355{left:100.500000px;}
.xe_c00355{left:239.514267px;}
.x8_c00355{left:288.600000px;}
.xb_c00355{left:297.900000px;}
.xc_c00355{left:301.050000px;}
.x9_c00355{left:302.400000px;}
.xa_c00355{left:304.050000px;}
.xd_c00355{left:465.000000px;}
@media print{
.v0_c00355{vertical-align:0.000000pt;}
.ls8_c00355{letter-spacing:-5.333333pt;}
.lsa_c00355{letter-spacing:-2.666667pt;}
.ls7_c00355{letter-spacing:0.000000pt;}
.ls0_c00355{letter-spacing:0.533333pt;}
.ls1_c00355{letter-spacing:2.666667pt;}
.ls6_c00355{letter-spacing:5.333333pt;}
.ls2_c00355{letter-spacing:9.600000pt;}
.ls3_c00355{letter-spacing:10.133333pt;}
.ls9_c00355{letter-spacing:13.333333pt;}
.ls5_c00355{letter-spacing:16.480000pt;}
.ls4_c00355{letter-spacing:18.666667pt;}
.ws0_c00355{word-spacing:-19.800000pt;}
.ws2_c00355{word-spacing:-16.053333pt;}
.ws3_c00355{word-spacing:-13.642667pt;}
.ws1_c00355{word-spacing:-12.586667pt;}
.ws4_c00355{word-spacing:0.000000pt;}
._1e_c00355{margin-left:-13.802667pt;}
._13_c00355{margin-left:-9.600000pt;}
._14_c00355{margin-left:-6.453333pt;}
._8_c00355{margin-left:-5.013333pt;}
._10_c00355{margin-left:-3.349333pt;}
._7_c00355{margin-left:-2.293333pt;}
._9_c00355{margin-left:-1.333333pt;}
._f_c00355{width:0.917333pt;}
._5_c00355{width:1.813333pt;}
._4_c00355{width:2.880000pt;}
._6_c00355{width:4.266667pt;}
._a_c00355{width:5.322667pt;}
._1_c00355{width:6.528000pt;}
._c_c00355{width:7.573333pt;}
._2_c00355{width:8.512000pt;}
._3_c00355{width:10.304000pt;}
._11_c00355{width:11.296000pt;}
._19_c00355{width:12.266667pt;}
._b_c00355{width:13.354667pt;}
._1b_c00355{width:14.250667pt;}
._18_c00355{width:15.658667pt;}
._d_c00355{width:17.333333pt;}
._16_c00355{width:18.378667pt;}
._12_c00355{width:19.882667pt;}
._1f_c00355{width:21.674667pt;}
._e_c00355{width:22.613333pt;}
._17_c00355{width:24.053333pt;}
._15_c00355{width:25.013333pt;}
._1a_c00355{width:26.442667pt;}
._20_c00355{width:29.026667pt;}
._1c_c00355{width:31.658667pt;}
._1d_c00355{width:35.456000pt;}
._21_c00355{width:41.045333pt;}
._0_c00355{width:168.010667pt;}
.fs6_c00355{font-size:42.666667pt;}
.fs2_c00355{font-size:53.333333pt;}
.fs3_c00355{font-size:56.000000pt;}
.fs5_c00355{font-size:58.666667pt;}
.fs4_c00355{font-size:61.333333pt;}
.fs1_c00355{font-size:64.000000pt;}
.fs0_c00355{font-size:66.666667pt;}
.y0_c00355{bottom:0.000000pt;}
.y4f_c00355{bottom:2.760000pt;}
.y4e_c00355{bottom:6.425204pt;}
.y4d_c00355{bottom:35.320000pt;}
.y2a_c00355{bottom:53.320000pt;}
.y4c_c00355{bottom:68.120000pt;}
.y29_c00355{bottom:70.120000pt;}
.y4b_c00355{bottom:85.720000pt;}
.y28_c00355{bottom:85.853333pt;}
.y4a_c00355{bottom:101.320000pt;}
.y27_c00355{bottom:101.720000pt;}
.y26_c00355{bottom:117.586667pt;}
.y25_c00355{bottom:134.120000pt;}
.y49_c00355{bottom:149.720000pt;}
.y24_c00355{bottom:150.253333pt;}
.y23_c00355{bottom:165.586667pt;}
.y48_c00355{bottom:166.520000pt;}
.y22_c00355{bottom:182.653333pt;}
.y21_c00355{bottom:198.253333pt;}
.y20_c00355{bottom:214.386667pt;}
.y1f_c00355{bottom:229.720000pt;}
.y47_c00355{bottom:230.120000pt;}
.y1e_c00355{bottom:245.986667pt;}
.y46_c00355{bottom:246.920000pt;}
.y1d_c00355{bottom:261.853333pt;}
.y45_c00355{bottom:262.520000pt;}
.y1c_c00355{bottom:278.386667pt;}
.y44_c00355{bottom:293.720000pt;}
.y1b_c00355{bottom:294.520000pt;}
.y43_c00355{bottom:310.386667pt;}
.y1a_c00355{bottom:311.320000pt;}
.y42_c00355{bottom:326.120000pt;}
.y19_c00355{bottom:326.386667pt;}
.y18_c00355{bottom:342.253333pt;}
.y41_c00355{bottom:342.520000pt;}
.y17_c00355{bottom:358.520000pt;}
.y16_c00355{bottom:374.120000pt;}
.y40_c00355{bottom:374.920000pt;}
.y3f_c00355{bottom:390.786667pt;}
.y15_c00355{bottom:390.920000pt;}
.y3e_c00355{bottom:406.786667pt;}
.y14_c00355{bottom:407.053333pt;}
.y13_c00355{bottom:423.186667pt;}
.y3d_c00355{bottom:423.320000pt;}
.y3c_c00355{bottom:438.920000pt;}
.y12_c00355{bottom:439.453333pt;}
.y11_c00355{bottom:454.386667pt;}
.y3b_c00355{bottom:454.520000pt;}
.y10_c00355{bottom:470.120000pt;}
.y3a_c00355{bottom:470.653333pt;}
.y39_c00355{bottom:486.786667pt;}
.yf_c00355{bottom:486.920000pt;}
.y38_c00355{bottom:502.120000pt;}
.ye_c00355{bottom:503.320000pt;}
.y37_c00355{bottom:518.120000pt;}
.yd_c00355{bottom:519.320000pt;}
.y36_c00355{bottom:534.253333pt;}
.yc_c00355{bottom:535.453333pt;}
.y35_c00355{bottom:549.853333pt;}
.yb_c00355{bottom:551.320000pt;}
.y34_c00355{bottom:566.386667pt;}
.ya_c00355{bottom:567.586667pt;}
.y33_c00355{bottom:581.720000pt;}
.y9_c00355{bottom:584.653333pt;}
.y32_c00355{bottom:598.120000pt;}
.y8_c00355{bottom:601.186667pt;}
.y31_c00355{bottom:614.386667pt;}
.y7_c00355{bottom:616.786667pt;}
.y30_c00355{bottom:629.720000pt;}
.y6_c00355{bottom:632.653333pt;}
.y2f_c00355{bottom:645.586667pt;}
.y5_c00355{bottom:648.786667pt;}
.y2e_c00355{bottom:661.720000pt;}
.y4_c00355{bottom:665.320000pt;}
.y2d_c00355{bottom:678.520000pt;}
.y3_c00355{bottom:680.653333pt;}
.y2c_c00355{bottom:694.386667pt;}
.y2_c00355{bottom:697.186667pt;}
.y2b_c00355{bottom:713.053333pt;}
.y1_c00355{bottom:714.253333pt;}
.h7_c00355{height:11.733399pt;}
.h8_c00355{height:38.937500pt;}
.h3_c00355{height:55.893333pt;}
.h4_c00355{height:56.906667pt;}
.h5_c00355{height:58.688000pt;}
.h6_c00355{height:65.442667pt;}
.h2_c00355{height:71.133333pt;}
.h1_c00355{height:752.666667pt;}
.h0_c00355{height:752.866667pt;}
.w2_c00355{width:93.222667pt;}
.w1_c00355{width:511.333333pt;}
.w0_c00355{width:511.466667pt;}
.x0_c00355{left:0.000000pt;}
.x6_c00355{left:16.800000pt;}
.x7_c00355{left:70.800000pt;}
.x5_c00355{left:74.133333pt;}
.x3_c00355{left:76.000000pt;}
.x2_c00355{left:77.066667pt;}
.x1_c00355{left:84.933333pt;}
.x4_c00355{left:89.333333pt;}
.xe_c00355{left:212.901571pt;}
.x8_c00355{left:256.533333pt;}
.xb_c00355{left:264.800000pt;}
.xc_c00355{left:267.600000pt;}
.x9_c00355{left:268.800000pt;}
.xa_c00355{left:270.266667pt;}
.xd_c00355{left:413.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_c00356 {
    display:none;
  }
  .loading-indicator_c00356.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00356 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00356 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00356" -> "#page-container .classname_c00356")
 */
.pf_c00356 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00356 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00356.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00356 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00356 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00356 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00356 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00356 {overflow:visible;}
  }
}
.c_c00356 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00356 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00356:after { /* webkit #35443 */
  content: '';
}
.t_c00356:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00356 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00356 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00356 { /* info for Javascript */
  display:none;
}
.l_c00356 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00356 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00356 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00356:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00356{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00356;src:url('chunks/assets/font_e8a588075b455dd0065ed3e0.woff2')format("woff");}.ff1_c00356{font-family:ff1_c00356;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00356;src:url('chunks/assets/font_2efb5060f0bbd490cc504b67.woff2')format("woff");}.ff2_c00356{font-family:ff2_c00356;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00356;src:url('chunks/assets/font_71566ec5554f673c417ce4de.woff2')format("woff");}.ff3_c00356{font-family:ff3_c00356;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00356;src:url('chunks/assets/font_524c0a1b0f54f005c7828bfa.woff2')format("woff");}.ff4_c00356{font-family:ff4_c00356;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00356;src:url('chunks/assets/font_8e970dea4894194a676bc08a.woff2')format("woff");}.ff5_c00356{font-family:ff5_c00356;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00356;src:url('chunks/assets/font_29e1d8d52da1a739e0ecc3e6.woff2')format("woff");}.ff6_c00356{font-family:ff6_c00356;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00356;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff7_c00356{font-family:ff7_c00356;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00356{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00356{vertical-align:0.000000px;}
.ls6_c00356{letter-spacing:0.000000px;}
.ls3_c00356{letter-spacing:1.605000px;}
.ls5_c00356{letter-spacing:3.000000px;}
.ls4_c00356{letter-spacing:3.405000px;}
.ls1_c00356{letter-spacing:4.620000px;}
.ls0_c00356{letter-spacing:7.200000px;}
.ls2_c00356{letter-spacing:9.405000px;}
.sc__c00356{text-shadow:none;}
.sc0_c00356{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00356{-webkit-text-stroke:0px transparent;}
.sc0_c00356{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00356{word-spacing:-32.295000px;}
.ws5_c00356{word-spacing:-18.060000px;}
.ws4_c00356{word-spacing:-18.000000px;}
.ws0_c00356{word-spacing:-17.250000px;}
.ws2_c00356{word-spacing:-14.160000px;}
.ws6_c00356{word-spacing:0.000000px;}
.ws1_c00356{word-spacing:2.220000px;}
._17_c00356{margin-left:-15.678000px;}
._12_c00356{margin-left:-12.108000px;}
._22_c00356{margin-left:-10.923000px;}
._18_c00356{margin-left:-9.900000px;}
._c_c00356{margin-left:-8.820000px;}
._20_c00356{margin-left:-6.840000px;}
._9_c00356{margin-left:-5.340000px;}
._7_c00356{margin-left:-3.900000px;}
._8_c00356{margin-left:-2.640000px;}
._4_c00356{margin-left:-1.560000px;}
._0_c00356{width:1.620000px;}
._3_c00356{width:2.940000px;}
._1_c00356{width:4.380000px;}
._a_c00356{width:5.640000px;}
._b_c00356{width:6.948000px;}
._f_c00356{width:8.583000px;}
._14_c00356{width:9.600000px;}
._2_c00356{width:10.980000px;}
._6_c00356{width:12.180000px;}
._5_c00356{width:13.560000px;}
._19_c00356{width:15.963000px;}
._1a_c00356{width:16.980000px;}
._11_c00356{width:19.440000px;}
._23_c00356{width:20.460000px;}
._15_c00356{width:21.777000px;}
._2a_c00356{width:23.100000px;}
._10_c00356{width:24.240000px;}
._1f_c00356{width:26.340000px;}
._1b_c00356{width:27.480000px;}
._28_c00356{width:30.840000px;}
._24_c00356{width:32.160000px;}
._21_c00356{width:33.180000px;}
._e_c00356{width:34.692000px;}
._29_c00356{width:36.720000px;}
._d_c00356{width:44.400000px;}
._26_c00356{width:46.092000px;}
._27_c00356{width:47.640000px;}
._1c_c00356{width:54.120000px;}
._13_c00356{width:56.040000px;}
._1e_c00356{width:57.300000px;}
._16_c00356{width:68.880000px;}
._1d_c00356{width:78.486000px;}
._25_c00356{width:95.280000px;}
.fc2_c00356{color:transparent;}
.fc1_c00356{color:rgb(128,128,128);}
.fc0_c00356{color:rgb(0,0,0);}
.fs3_c00356{font-size:45.000000px;}
.fs1_c00356{font-size:48.000000px;}
.fs4_c00356{font-size:57.000000px;}
.fs0_c00356{font-size:60.000000px;}
.fs2_c00356{font-size:69.000000px;}
.y0_c00356{bottom:0.000000px;}
.y54_c00356{bottom:3.105000px;}
.y53_c00356{bottom:7.228371px;}
.y52_c00356{bottom:55.665000px;}
.y29_c00356{bottom:57.015000px;}
.y51_c00356{bottom:73.665000px;}
.y28_c00356{bottom:77.265000px;}
.y50_c00356{bottom:92.265000px;}
.y27_c00356{bottom:94.515000px;}
.y4f_c00356{bottom:111.165000px;}
.y26_c00356{bottom:113.415000px;}
.y4e_c00356{bottom:128.565000px;}
.y25_c00356{bottom:131.715000px;}
.y4d_c00356{bottom:146.115000px;}
.y24_c00356{bottom:149.565000px;}
.y4c_c00356{bottom:164.715000px;}
.y23_c00356{bottom:167.415000px;}
.y4b_c00356{bottom:181.665000px;}
.y22_c00356{bottom:185.715000px;}
.y4a_c00356{bottom:201.165000px;}
.y21_c00356{bottom:204.315000px;}
.y49_c00356{bottom:219.465000px;}
.y20_c00356{bottom:222.165000px;}
.y48_c00356{bottom:237.015000px;}
.y1f_c00356{bottom:240.315000px;}
.y47_c00356{bottom:255.465000px;}
.y1e_c00356{bottom:258.315000px;}
.y46_c00356{bottom:273.165000px;}
.y1d_c00356{bottom:276.765000px;}
.y45_c00356{bottom:291.315000px;}
.y1c_c00356{bottom:294.315000px;}
.y44_c00356{bottom:309.465000px;}
.y1b_c00356{bottom:312.315000px;}
.y43_c00356{bottom:327.165000px;}
.y1a_c00356{bottom:330.765000px;}
.y42_c00356{bottom:345.915000px;}
.y19_c00356{bottom:348.615000px;}
.y41_c00356{bottom:364.215000px;}
.y18_c00356{bottom:366.615000px;}
.y40_c00356{bottom:382.065000px;}
.y17_c00356{bottom:385.065000px;}
.y3f_c00356{bottom:400.065000px;}
.y16_c00356{bottom:402.015000px;}
.y3e_c00356{bottom:416.865000px;}
.y15_c00356{bottom:420.165000px;}
.y3d_c00356{bottom:435.765000px;}
.y14_c00356{bottom:437.715000px;}
.y3c_c00356{bottom:453.015000px;}
.y13_c00356{bottom:454.965000px;}
.y3b_c00356{bottom:472.815000px;}
.y12_c00356{bottom:473.865000px;}
.y3a_c00356{bottom:490.065000px;}
.y11_c00356{bottom:491.865000px;}
.y39_c00356{bottom:508.065000px;}
.y10_c00356{bottom:510.615000px;}
.y38_c00356{bottom:526.215000px;}
.yf_c00356{bottom:527.865000px;}
.y37_c00356{bottom:544.065000px;}
.ye_c00356{bottom:545.415000px;}
.y36_c00356{bottom:562.365000px;}
.yd_c00356{bottom:562.665000px;}
.y35_c00356{bottom:580.515000px;}
.yc_c00356{bottom:580.965000px;}
.y34_c00356{bottom:598.515000px;}
.yb_c00356{bottom:599.865000px;}
.y33_c00356{bottom:615.615000px;}
.ya_c00356{bottom:617.715000px;}
.y32_c00356{bottom:634.215000px;}
.y9_c00356{bottom:635.865000px;}
.y31_c00356{bottom:652.815000px;}
.y8_c00356{bottom:654.165000px;}
.y30_c00356{bottom:670.965000px;}
.y7_c00356{bottom:672.015000px;}
.y2f_c00356{bottom:688.215000px;}
.y6_c00356{bottom:690.165000px;}
.y2e_c00356{bottom:706.515000px;}
.y5_c00356{bottom:707.865000px;}
.y2d_c00356{bottom:725.265000px;}
.y4_c00356{bottom:727.065000px;}
.y2c_c00356{bottom:743.265000px;}
.y3_c00356{bottom:745.215000px;}
.y2b_c00356{bottom:761.865000px;}
.y2_c00356{bottom:762.465000px;}
.y2a_c00356{bottom:779.265000px;}
.y1_c00356{bottom:780.615000px;}
.h5_c00356{height:13.200074px;}
.h6_c00356{height:43.804688px;}
.h2_c00356{height:62.880000px;}
.h3_c00356{height:64.020000px;}
.h4_c00356{height:73.623000px;}
.h1_c00356{height:844.500000px;}
.h0_c00356{height:844.575000px;}
.w1_c00356{width:104.875500px;}
.w0_c00356{width:590.250000px;}
.x0_c00356{left:0.000000px;}
.x6_c00356{left:24.900000px;}
.x7_c00356{left:27.300000px;}
.x5_c00356{left:75.150000px;}
.x1_c00356{left:87.000000px;}
.x2_c00356{left:88.200000px;}
.x4_c00356{left:89.700000px;}
.x3_c00356{left:91.200000px;}
.x8_c00356{left:92.400000px;}
.xe_c00356{left:246.939240px;}
.x9_c00356{left:303.300000px;}
.xa_c00356{left:304.800000px;}
.xb_c00356{left:306.000000px;}
.xc_c00356{left:307.350000px;}
.xd_c00356{left:308.550000px;}
@media print{
.v0_c00356{vertical-align:0.000000pt;}
.ls6_c00356{letter-spacing:0.000000pt;}
.ls3_c00356{letter-spacing:1.426667pt;}
.ls5_c00356{letter-spacing:2.666667pt;}
.ls4_c00356{letter-spacing:3.026667pt;}
.ls1_c00356{letter-spacing:4.106667pt;}
.ls0_c00356{letter-spacing:6.400000pt;}
.ls2_c00356{letter-spacing:8.360000pt;}
.ws3_c00356{word-spacing:-28.706667pt;}
.ws5_c00356{word-spacing:-16.053333pt;}
.ws4_c00356{word-spacing:-16.000000pt;}
.ws0_c00356{word-spacing:-15.333333pt;}
.ws2_c00356{word-spacing:-12.586667pt;}
.ws6_c00356{word-spacing:0.000000pt;}
.ws1_c00356{word-spacing:1.973333pt;}
._17_c00356{margin-left:-13.936000pt;}
._12_c00356{margin-left:-10.762667pt;}
._22_c00356{margin-left:-9.709333pt;}
._18_c00356{margin-left:-8.800000pt;}
._c_c00356{margin-left:-7.840000pt;}
._20_c00356{margin-left:-6.080000pt;}
._9_c00356{margin-left:-4.746667pt;}
._7_c00356{margin-left:-3.466667pt;}
._8_c00356{margin-left:-2.346667pt;}
._4_c00356{margin-left:-1.386667pt;}
._0_c00356{width:1.440000pt;}
._3_c00356{width:2.613333pt;}
._1_c00356{width:3.893333pt;}
._a_c00356{width:5.013333pt;}
._b_c00356{width:6.176000pt;}
._f_c00356{width:7.629333pt;}
._14_c00356{width:8.533333pt;}
._2_c00356{width:9.760000pt;}
._6_c00356{width:10.826667pt;}
._5_c00356{width:12.053333pt;}
._19_c00356{width:14.189333pt;}
._1a_c00356{width:15.093333pt;}
._11_c00356{width:17.280000pt;}
._23_c00356{width:18.186667pt;}
._15_c00356{width:19.357333pt;}
._2a_c00356{width:20.533333pt;}
._10_c00356{width:21.546667pt;}
._1f_c00356{width:23.413333pt;}
._1b_c00356{width:24.426667pt;}
._28_c00356{width:27.413333pt;}
._24_c00356{width:28.586667pt;}
._21_c00356{width:29.493333pt;}
._e_c00356{width:30.837333pt;}
._29_c00356{width:32.640000pt;}
._d_c00356{width:39.466667pt;}
._26_c00356{width:40.970667pt;}
._27_c00356{width:42.346667pt;}
._1c_c00356{width:48.106667pt;}
._13_c00356{width:49.813333pt;}
._1e_c00356{width:50.933333pt;}
._16_c00356{width:61.226667pt;}
._1d_c00356{width:69.765333pt;}
._25_c00356{width:84.693333pt;}
.fs3_c00356{font-size:40.000000pt;}
.fs1_c00356{font-size:42.666667pt;}
.fs4_c00356{font-size:50.666667pt;}
.fs0_c00356{font-size:53.333333pt;}
.fs2_c00356{font-size:61.333333pt;}
.y0_c00356{bottom:0.000000pt;}
.y54_c00356{bottom:2.760000pt;}
.y53_c00356{bottom:6.425219pt;}
.y52_c00356{bottom:49.480000pt;}
.y29_c00356{bottom:50.680000pt;}
.y51_c00356{bottom:65.480000pt;}
.y28_c00356{bottom:68.680000pt;}
.y50_c00356{bottom:82.013333pt;}
.y27_c00356{bottom:84.013333pt;}
.y4f_c00356{bottom:98.813333pt;}
.y26_c00356{bottom:100.813333pt;}
.y4e_c00356{bottom:114.280000pt;}
.y25_c00356{bottom:117.080000pt;}
.y4d_c00356{bottom:129.880000pt;}
.y24_c00356{bottom:132.946667pt;}
.y4c_c00356{bottom:146.413333pt;}
.y23_c00356{bottom:148.813333pt;}
.y4b_c00356{bottom:161.480000pt;}
.y22_c00356{bottom:165.080000pt;}
.y4a_c00356{bottom:178.813333pt;}
.y21_c00356{bottom:181.613333pt;}
.y49_c00356{bottom:195.080000pt;}
.y20_c00356{bottom:197.480000pt;}
.y48_c00356{bottom:210.680000pt;}
.y1f_c00356{bottom:213.613333pt;}
.y47_c00356{bottom:227.080000pt;}
.y1e_c00356{bottom:229.613333pt;}
.y46_c00356{bottom:242.813333pt;}
.y1d_c00356{bottom:246.013333pt;}
.y45_c00356{bottom:258.946667pt;}
.y1c_c00356{bottom:261.613333pt;}
.y44_c00356{bottom:275.080000pt;}
.y1b_c00356{bottom:277.613333pt;}
.y43_c00356{bottom:290.813333pt;}
.y1a_c00356{bottom:294.013333pt;}
.y42_c00356{bottom:307.480000pt;}
.y19_c00356{bottom:309.880000pt;}
.y41_c00356{bottom:323.746667pt;}
.y18_c00356{bottom:325.880000pt;}
.y40_c00356{bottom:339.613333pt;}
.y17_c00356{bottom:342.280000pt;}
.y3f_c00356{bottom:355.613333pt;}
.y16_c00356{bottom:357.346667pt;}
.y3e_c00356{bottom:370.546667pt;}
.y15_c00356{bottom:373.480000pt;}
.y3d_c00356{bottom:387.346667pt;}
.y14_c00356{bottom:389.080000pt;}
.y3c_c00356{bottom:402.680000pt;}
.y13_c00356{bottom:404.413333pt;}
.y3b_c00356{bottom:420.280000pt;}
.y12_c00356{bottom:421.213333pt;}
.y3a_c00356{bottom:435.613333pt;}
.y11_c00356{bottom:437.213333pt;}
.y39_c00356{bottom:451.613333pt;}
.y10_c00356{bottom:453.880000pt;}
.y38_c00356{bottom:467.746667pt;}
.yf_c00356{bottom:469.213333pt;}
.y37_c00356{bottom:483.613333pt;}
.ye_c00356{bottom:484.813333pt;}
.y36_c00356{bottom:499.880000pt;}
.yd_c00356{bottom:500.146667pt;}
.y35_c00356{bottom:516.013333pt;}
.yc_c00356{bottom:516.413333pt;}
.y34_c00356{bottom:532.013333pt;}
.yb_c00356{bottom:533.213333pt;}
.y33_c00356{bottom:547.213333pt;}
.ya_c00356{bottom:549.080000pt;}
.y32_c00356{bottom:563.746667pt;}
.y9_c00356{bottom:565.213333pt;}
.y31_c00356{bottom:580.280000pt;}
.y8_c00356{bottom:581.480000pt;}
.y30_c00356{bottom:596.413333pt;}
.y7_c00356{bottom:597.346667pt;}
.y2f_c00356{bottom:611.746667pt;}
.y6_c00356{bottom:613.480000pt;}
.y2e_c00356{bottom:628.013333pt;}
.y5_c00356{bottom:629.213333pt;}
.y2d_c00356{bottom:644.680000pt;}
.y4_c00356{bottom:646.280000pt;}
.y2c_c00356{bottom:660.680000pt;}
.y3_c00356{bottom:662.413333pt;}
.y2b_c00356{bottom:677.213333pt;}
.y2_c00356{bottom:677.746667pt;}
.y2a_c00356{bottom:692.680000pt;}
.y1_c00356{bottom:693.880000pt;}
.h5_c00356{height:11.733399pt;}
.h6_c00356{height:38.937500pt;}
.h2_c00356{height:55.893333pt;}
.h3_c00356{height:56.906667pt;}
.h4_c00356{height:65.442667pt;}
.h1_c00356{height:750.666667pt;}
.h0_c00356{height:750.733333pt;}
.w1_c00356{width:93.222667pt;}
.w0_c00356{width:524.666667pt;}
.x0_c00356{left:0.000000pt;}
.x6_c00356{left:22.133333pt;}
.x7_c00356{left:24.266667pt;}
.x5_c00356{left:66.800000pt;}
.x1_c00356{left:77.333333pt;}
.x2_c00356{left:78.400000pt;}
.x4_c00356{left:79.733333pt;}
.x3_c00356{left:81.066667pt;}
.x8_c00356{left:82.133333pt;}
.xe_c00356{left:219.501546pt;}
.x9_c00356{left:269.600000pt;}
.xa_c00356{left:270.933333pt;}
.xb_c00356{left:272.000000pt;}
.xc_c00356{left:273.200000pt;}
.xd_c00356{left:274.266667pt;}
}





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

.ir_c00357:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00357{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00357;src:url('chunks/assets/font_5023b11992285b6ce8895f7b.woff2')format("woff");}.ff1_c00357{font-family:ff1_c00357;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00357;src:url('chunks/assets/font_01872602928de67cb58447ec.woff2')format("woff");}.ff2_c00357{font-family:ff2_c00357;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00357;src:url('chunks/assets/font_b21891b37a9bb0ce9a5cbfae.woff2')format("woff");}.ff3_c00357{font-family:ff3_c00357;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00357;src:url('chunks/assets/font_28583806a132127aef288f1e.woff2')format("woff");}.ff4_c00357{font-family:ff4_c00357;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00357;src:url('chunks/assets/font_2752346c4d1bcd85c3cb7e0b.woff2')format("woff");}.ff5_c00357{font-family:ff5_c00357;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00357;src:url('chunks/assets/font_064b490cf3bb22c77d9c2a5e.woff2')format("woff");}.ff6_c00357{font-family:ff6_c00357;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00357;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff7_c00357{font-family:ff7_c00357;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00357;src:url('chunks/assets/font_f8726699688b8e245ccf2715.woff2')format("woff");}.ff8_c00357{font-family:ff8_c00357;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00357;src:url('chunks/assets/font_b8d6c5e522a5e58cadd00523.woff2')format("woff");}.ff9_c00357{font-family:ff9_c00357;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00357;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ffa_c00357{font-family:ffa_c00357;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00357{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00357{vertical-align:0.000000px;}
.v1_c00357{vertical-align:6.600000px;}
.ls3_c00357{letter-spacing:0.000000px;}
.ls1_c00357{letter-spacing:2.340000px;}
.ls2_c00357{letter-spacing:3.000000px;}
.ls4_c00357{letter-spacing:6.000000px;}
.ls0_c00357{letter-spacing:99.660000px;}
.sc__c00357{text-shadow:none;}
.sc0_c00357{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00357{-webkit-text-stroke:0px transparent;}
.sc0_c00357{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00357{word-spacing:-33.189000px;}
.ws4_c00357{word-spacing:-30.636000px;}
.ws1_c00357{word-spacing:-18.060000px;}
.ws2_c00357{word-spacing:-18.000000px;}
.ws0_c00357{word-spacing:-14.160000px;}
.ws5_c00357{word-spacing:0.000000px;}
._16_c00357{margin-left:-18.900000px;}
._25_c00357{margin-left:-14.820000px;}
._19_c00357{margin-left:-10.980000px;}
._21_c00357{margin-left:-9.660000px;}
._1f_c00357{margin-left:-7.620000px;}
._10_c00357{margin-left:-5.820000px;}
._14_c00357{margin-left:-3.960000px;}
._11_c00357{margin-left:-2.760000px;}
._c_c00357{margin-left:-1.560000px;}
._a_c00357{width:1.260000px;}
._0_c00357{width:2.820000px;}
._2_c00357{width:4.620000px;}
._12_c00357{width:5.700000px;}
._3_c00357{width:6.840000px;}
._e_c00357{width:8.040000px;}
._d_c00357{width:9.360000px;}
._b_c00357{width:11.280000px;}
._15_c00357{width:12.480000px;}
._f_c00357{width:13.500000px;}
._5_c00357{width:14.700000px;}
._6_c00357{width:16.140000px;}
._1b_c00357{width:17.820000px;}
._18_c00357{width:19.020000px;}
._9_c00357{width:20.760000px;}
._8_c00357{width:21.960000px;}
._7_c00357{width:23.880000px;}
._22_c00357{width:25.020000px;}
._1d_c00357{width:26.220000px;}
._13_c00357{width:29.160000px;}
._1_c00357{width:30.240000px;}
._1a_c00357{width:32.280000px;}
._1e_c00357{width:34.740000px;}
._1c_c00357{width:42.180000px;}
._24_c00357{width:43.680000px;}
._23_c00357{width:50.700000px;}
._20_c00357{width:69.060000px;}
._17_c00357{width:95.280000px;}
._4_c00357{width:200.040000px;}
.fc2_c00357{color:transparent;}
.fc1_c00357{color:rgb(128,128,128);}
.fc0_c00357{color:rgb(0,0,0);}
.fs3_c00357{font-size:42.000000px;}
.fs4_c00357{font-size:48.000000px;}
.fs2_c00357{font-size:51.000000px;}
.fs0_c00357{font-size:60.000000px;}
.fs1_c00357{font-size:69.000000px;}
.y0_c00357{bottom:0.000000px;}
.y52_c00357{bottom:3.105000px;}
.y51_c00357{bottom:7.228355px;}
.y50_c00357{bottom:44.835000px;}
.y27_c00357{bottom:61.785000px;}
.y4f_c00357{bottom:63.735000px;}
.y26_c00357{bottom:80.535000px;}
.y4e_c00357{bottom:82.035000px;}
.y25_c00357{bottom:98.235000px;}
.y4d_c00357{bottom:100.785000px;}
.y24_c00357{bottom:117.135000px;}
.y4c_c00357{bottom:119.385000px;}
.y23_c00357{bottom:135.285000px;}
.y4b_c00357{bottom:136.635000px;}
.y22_c00357{bottom:153.585000px;}
.y4a_c00357{bottom:154.785000px;}
.y21_c00357{bottom:171.735000px;}
.y49_c00357{bottom:172.785000px;}
.y20_c00357{bottom:189.885000px;}
.y48_c00357{bottom:191.235000px;}
.y1f_c00357{bottom:208.185000px;}
.y47_c00357{bottom:209.535000px;}
.y1e_c00357{bottom:224.085000px;}
.y46_c00357{bottom:227.385000px;}
.y45_c00357{bottom:245.685000px;}
.y1d_c00357{bottom:257.385000px;}
.y44_c00357{bottom:263.535000px;}
.y1c_c00357{bottom:280.335000px;}
.y43_c00357{bottom:281.085000px;}
.y1b_c00357{bottom:298.335000px;}
.y42_c00357{bottom:299.235000px;}
.y41_c00357{bottom:316.185000px;}
.y1a_c00357{bottom:316.485000px;}
.y40_c00357{bottom:334.785000px;}
.y19_c00357{bottom:352.035000px;}
.y3f_c00357{bottom:352.635000px;}
.y3e_c00357{bottom:371.235000px;}
.y18_c00357{bottom:388.785000px;}
.y3d_c00357{bottom:389.085000px;}
.y17_c00357{bottom:405.585000px;}
.y3c_c00357{bottom:406.935000px;}
.y16_c00357{bottom:424.635000px;}
.y3b_c00357{bottom:425.235000px;}
.y15_c00357{bottom:442.485000px;}
.y3a_c00357{bottom:442.785000px;}
.y14_c00357{bottom:460.335000px;}
.y39_c00357{bottom:461.235000px;}
.y13_c00357{bottom:478.485000px;}
.y38_c00357{bottom:478.785000px;}
.y12_c00357{bottom:496.785000px;}
.y11_c00357{bottom:514.635000px;}
.y37_c00357{bottom:515.235000px;}
.y10_c00357{bottom:532.935000px;}
.y36_c00357{bottom:533.385000px;}
.yf_c00357{bottom:550.785000px;}
.y35_c00357{bottom:551.385000px;}
.ye_c00357{bottom:568.935000px;}
.y34_c00357{bottom:569.385000px;}
.yd_c00357{bottom:586.485000px;}
.y33_c00357{bottom:587.835000px;}
.yc_c00357{bottom:604.335000px;}
.y32_c00357{bottom:605.685000px;}
.yb_c00357{bottom:622.335000px;}
.y31_c00357{bottom:623.385000px;}
.ya_c00357{bottom:640.935000px;}
.y30_c00357{bottom:641.235000px;}
.y9_c00357{bottom:659.385000px;}
.y2f_c00357{bottom:659.685000px;}
.y8_c00357{bottom:676.935000px;}
.y2e_c00357{bottom:677.685000px;}
.y2d_c00357{bottom:695.235000px;}
.y7_c00357{bottom:695.535000px;}
.y2c_c00357{bottom:712.785000px;}
.y6_c00357{bottom:713.685000px;}
.y2b_c00357{bottom:731.235000px;}
.y5_c00357{bottom:731.685000px;}
.y2a_c00357{bottom:748.485000px;}
.y4_c00357{bottom:749.835000px;}
.y29_c00357{bottom:767.085000px;}
.y3_c00357{bottom:768.135000px;}
.y28_c00357{bottom:784.635000px;}
.y2_c00357{bottom:785.685000px;}
.y1_c00357{bottom:805.485000px;}
.h8_c00357{height:13.200074px;}
.h9_c00357{height:43.804688px;}
.h2_c00357{height:62.880000px;}
.h3_c00357{height:64.020000px;}
.h6_c00357{height:64.571777px;}
.h7_c00357{height:67.719727px;}
.h4_c00357{height:69.480000px;}
.h5_c00357{height:73.623000px;}
.h1_c00357{height:846.750000px;}
.h0_c00357{height:846.975000px;}
.w2_c00357{width:104.875500px;}
.w1_c00357{width:575.250000px;}
.w0_c00357{width:575.400000px;}
.x0_c00357{left:0.000000px;}
.xb_c00357{left:72.300000px;}
.x9_c00357{left:74.250000px;}
.x4_c00357{left:76.350000px;}
.x3_c00357{left:78.300000px;}
.x2_c00357{left:81.000000px;}
.x1_c00357{left:82.350000px;}
.x6_c00357{left:87.300000px;}
.xa_c00357{left:116.850000px;}
.x7_c00357{left:124.950000px;}
.x8_c00357{left:157.350000px;}
.x5_c00357{left:173.850000px;}
.x17_c00357{left:239.514267px;}
.x13_c00357{left:289.950000px;}
.x15_c00357{left:291.300000px;}
.x12_c00357{left:292.950000px;}
.x11_c00357{left:294.600000px;}
.x10_c00357{left:295.650000px;}
.xf_c00357{left:297.000000px;}
.xe_c00357{left:298.050000px;}
.xd_c00357{left:300.000000px;}
.xc_c00357{left:301.500000px;}
.x14_c00357{left:310.200000px;}
.x16_c00357{left:455.850000px;}
@media print{
.v0_c00357{vertical-align:0.000000pt;}
.v1_c00357{vertical-align:5.866667pt;}
.ls3_c00357{letter-spacing:0.000000pt;}
.ls1_c00357{letter-spacing:2.080000pt;}
.ls2_c00357{letter-spacing:2.666667pt;}
.ls4_c00357{letter-spacing:5.333333pt;}
.ls0_c00357{letter-spacing:88.586667pt;}
.ws3_c00357{word-spacing:-29.501333pt;}
.ws4_c00357{word-spacing:-27.232000pt;}
.ws1_c00357{word-spacing:-16.053333pt;}
.ws2_c00357{word-spacing:-16.000000pt;}
.ws0_c00357{word-spacing:-12.586667pt;}
.ws5_c00357{word-spacing:0.000000pt;}
._16_c00357{margin-left:-16.800000pt;}
._25_c00357{margin-left:-13.173333pt;}
._19_c00357{margin-left:-9.760000pt;}
._21_c00357{margin-left:-8.586667pt;}
._1f_c00357{margin-left:-6.773333pt;}
._10_c00357{margin-left:-5.173333pt;}
._14_c00357{margin-left:-3.520000pt;}
._11_c00357{margin-left:-2.453333pt;}
._c_c00357{margin-left:-1.386667pt;}
._a_c00357{width:1.120000pt;}
._0_c00357{width:2.506667pt;}
._2_c00357{width:4.106667pt;}
._12_c00357{width:5.066667pt;}
._3_c00357{width:6.080000pt;}
._e_c00357{width:7.146667pt;}
._d_c00357{width:8.320000pt;}
._b_c00357{width:10.026667pt;}
._15_c00357{width:11.093333pt;}
._f_c00357{width:12.000000pt;}
._5_c00357{width:13.066667pt;}
._6_c00357{width:14.346667pt;}
._1b_c00357{width:15.840000pt;}
._18_c00357{width:16.906667pt;}
._9_c00357{width:18.453333pt;}
._8_c00357{width:19.520000pt;}
._7_c00357{width:21.226667pt;}
._22_c00357{width:22.240000pt;}
._1d_c00357{width:23.306667pt;}
._13_c00357{width:25.920000pt;}
._1_c00357{width:26.880000pt;}
._1a_c00357{width:28.693333pt;}
._1e_c00357{width:30.880000pt;}
._1c_c00357{width:37.493333pt;}
._24_c00357{width:38.826667pt;}
._23_c00357{width:45.066667pt;}
._20_c00357{width:61.386667pt;}
._17_c00357{width:84.693333pt;}
._4_c00357{width:177.813333pt;}
.fs3_c00357{font-size:37.333333pt;}
.fs4_c00357{font-size:42.666667pt;}
.fs2_c00357{font-size:45.333333pt;}
.fs0_c00357{font-size:53.333333pt;}
.fs1_c00357{font-size:61.333333pt;}
.y0_c00357{bottom:0.000000pt;}
.y52_c00357{bottom:2.760000pt;}
.y51_c00357{bottom:6.425204pt;}
.y50_c00357{bottom:39.853333pt;}
.y27_c00357{bottom:54.920000pt;}
.y4f_c00357{bottom:56.653333pt;}
.y26_c00357{bottom:71.586667pt;}
.y4e_c00357{bottom:72.920000pt;}
.y25_c00357{bottom:87.320000pt;}
.y4d_c00357{bottom:89.586667pt;}
.y24_c00357{bottom:104.120000pt;}
.y4c_c00357{bottom:106.120000pt;}
.y23_c00357{bottom:120.253333pt;}
.y4b_c00357{bottom:121.453333pt;}
.y22_c00357{bottom:136.520000pt;}
.y4a_c00357{bottom:137.586667pt;}
.y21_c00357{bottom:152.653333pt;}
.y49_c00357{bottom:153.586667pt;}
.y20_c00357{bottom:168.786667pt;}
.y48_c00357{bottom:169.986667pt;}
.y1f_c00357{bottom:185.053333pt;}
.y47_c00357{bottom:186.253333pt;}
.y1e_c00357{bottom:199.186667pt;}
.y46_c00357{bottom:202.120000pt;}
.y45_c00357{bottom:218.386667pt;}
.y1d_c00357{bottom:228.786667pt;}
.y44_c00357{bottom:234.253333pt;}
.y1c_c00357{bottom:249.186667pt;}
.y43_c00357{bottom:249.853333pt;}
.y1b_c00357{bottom:265.186667pt;}
.y42_c00357{bottom:265.986667pt;}
.y41_c00357{bottom:281.053333pt;}
.y1a_c00357{bottom:281.320000pt;}
.y40_c00357{bottom:297.586667pt;}
.y19_c00357{bottom:312.920000pt;}
.y3f_c00357{bottom:313.453333pt;}
.y3e_c00357{bottom:329.986667pt;}
.y18_c00357{bottom:345.586667pt;}
.y3d_c00357{bottom:345.853333pt;}
.y17_c00357{bottom:360.520000pt;}
.y3c_c00357{bottom:361.720000pt;}
.y16_c00357{bottom:377.453333pt;}
.y3b_c00357{bottom:377.986667pt;}
.y15_c00357{bottom:393.320000pt;}
.y3a_c00357{bottom:393.586667pt;}
.y14_c00357{bottom:409.186667pt;}
.y39_c00357{bottom:409.986667pt;}
.y13_c00357{bottom:425.320000pt;}
.y38_c00357{bottom:425.586667pt;}
.y12_c00357{bottom:441.586667pt;}
.y11_c00357{bottom:457.453333pt;}
.y37_c00357{bottom:457.986667pt;}
.y10_c00357{bottom:473.720000pt;}
.y36_c00357{bottom:474.120000pt;}
.yf_c00357{bottom:489.586667pt;}
.y35_c00357{bottom:490.120000pt;}
.ye_c00357{bottom:505.720000pt;}
.y34_c00357{bottom:506.120000pt;}
.yd_c00357{bottom:521.320000pt;}
.y33_c00357{bottom:522.520000pt;}
.yc_c00357{bottom:537.186667pt;}
.y32_c00357{bottom:538.386667pt;}
.yb_c00357{bottom:553.186667pt;}
.y31_c00357{bottom:554.120000pt;}
.ya_c00357{bottom:569.720000pt;}
.y30_c00357{bottom:569.986667pt;}
.y9_c00357{bottom:586.120000pt;}
.y2f_c00357{bottom:586.386667pt;}
.y8_c00357{bottom:601.720000pt;}
.y2e_c00357{bottom:602.386667pt;}
.y2d_c00357{bottom:617.986667pt;}
.y7_c00357{bottom:618.253333pt;}
.y2c_c00357{bottom:633.586667pt;}
.y6_c00357{bottom:634.386667pt;}
.y2b_c00357{bottom:649.986667pt;}
.y5_c00357{bottom:650.386667pt;}
.y2a_c00357{bottom:665.320000pt;}
.y4_c00357{bottom:666.520000pt;}
.y29_c00357{bottom:681.853333pt;}
.y3_c00357{bottom:682.786667pt;}
.y28_c00357{bottom:697.453333pt;}
.y2_c00357{bottom:698.386667pt;}
.y1_c00357{bottom:715.986667pt;}
.h8_c00357{height:11.733399pt;}
.h9_c00357{height:38.937500pt;}
.h2_c00357{height:55.893333pt;}
.h3_c00357{height:56.906667pt;}
.h6_c00357{height:57.397135pt;}
.h7_c00357{height:60.195312pt;}
.h4_c00357{height:61.760000pt;}
.h5_c00357{height:65.442667pt;}
.h1_c00357{height:752.666667pt;}
.h0_c00357{height:752.866667pt;}
.w2_c00357{width:93.222667pt;}
.w1_c00357{width:511.333333pt;}
.w0_c00357{width:511.466667pt;}
.x0_c00357{left:0.000000pt;}
.xb_c00357{left:64.266667pt;}
.x9_c00357{left:66.000000pt;}
.x4_c00357{left:67.866667pt;}
.x3_c00357{left:69.600000pt;}
.x2_c00357{left:72.000000pt;}
.x1_c00357{left:73.200000pt;}
.x6_c00357{left:77.600000pt;}
.xa_c00357{left:103.866667pt;}
.x7_c00357{left:111.066667pt;}
.x8_c00357{left:139.866667pt;}
.x5_c00357{left:154.533333pt;}
.x17_c00357{left:212.901571pt;}
.x13_c00357{left:257.733333pt;}
.x15_c00357{left:258.933333pt;}
.x12_c00357{left:260.400000pt;}
.x11_c00357{left:261.866667pt;}
.x10_c00357{left:262.800000pt;}
.xf_c00357{left:264.000000pt;}
.xe_c00357{left:264.933333pt;}
.xd_c00357{left:266.666667pt;}
.xc_c00357{left:268.000000pt;}
.x14_c00357{left:275.733333pt;}
.x16_c00357{left:405.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_c00358 {
    display:none;
  }
  .loading-indicator_c00358.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00358 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00358 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00358" -> "#page-container .classname_c00358")
 */
.pf_c00358 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00358 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00358.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00358 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00358 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00358 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00358 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00358 {overflow:visible;}
  }
}
.c_c00358 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00358 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00358:after { /* webkit #35443 */
  content: '';
}
.t_c00358:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00358 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00358 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00358 { /* info for Javascript */
  display:none;
}
.l_c00358 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00358 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00358 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00358:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00358{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00358;src:url('chunks/assets/font_5007ef164ec0efcde9641f98.woff2')format("woff");}.ff1_c00358{font-family:ff1_c00358;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00358;src:url('chunks/assets/font_91ee15d7980622f16f72179b.woff2')format("woff");}.ff2_c00358{font-family:ff2_c00358;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00358;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff3_c00358{font-family:ff3_c00358;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00358{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00358{vertical-align:0.000000px;}
.ls1_c00358{letter-spacing:0.000000px;}
.ls0_c00358{letter-spacing:3.000000px;}
.sc__c00358{text-shadow:none;}
.sc0_c00358{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00358{-webkit-text-stroke:0px transparent;}
.sc0_c00358{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00358{word-spacing:-18.060000px;}
.ws0_c00358{word-spacing:-14.160000px;}
.ws2_c00358{word-spacing:0.000000px;}
._19_c00358{margin-left:-16.200000px;}
._1b_c00358{margin-left:-14.280000px;}
._1f_c00358{margin-left:-12.840000px;}
._12_c00358{margin-left:-6.000000px;}
._a_c00358{margin-left:-4.740000px;}
._c_c00358{margin-left:-3.720000px;}
._18_c00358{margin-left:-2.640000px;}
._9_c00358{margin-left:-1.620000px;}
._6_c00358{width:1.080000px;}
._5_c00358{width:2.220000px;}
._7_c00358{width:3.300000px;}
._8_c00358{width:4.380000px;}
._b_c00358{width:5.400000px;}
._f_c00358{width:6.780000px;}
._1_c00358{width:7.860000px;}
._e_c00358{width:9.660000px;}
._0_c00358{width:11.040000px;}
._3_c00358{width:12.360000px;}
._4_c00358{width:13.860000px;}
._20_c00358{width:15.000000px;}
._d_c00358{width:16.140000px;}
._13_c00358{width:19.740000px;}
._1a_c00358{width:21.900000px;}
._17_c00358{width:23.040000px;}
._11_c00358{width:24.360000px;}
._2_c00358{width:26.340000px;}
._1d_c00358{width:27.600000px;}
._16_c00358{width:28.620000px;}
._14_c00358{width:30.960000px;}
._15_c00358{width:33.720000px;}
._1c_c00358{width:36.480000px;}
._1e_c00358{width:41.520000px;}
._10_c00358{width:94.920000px;}
.fc2_c00358{color:transparent;}
.fc1_c00358{color:rgb(128,128,128);}
.fc0_c00358{color:rgb(0,0,0);}
.fs1_c00358{font-size:48.000000px;}
.fs0_c00358{font-size:60.000000px;}
.y0_c00358{bottom:0.000000px;}
.y56_c00358{bottom:3.105000px;}
.y55_c00358{bottom:7.228371px;}
.y54_c00358{bottom:34.215000px;}
.y53_c00358{bottom:53.415000px;}
.y2a_c00358{bottom:58.815000px;}
.y52_c00358{bottom:72.315000px;}
.y29_c00358{bottom:78.015000px;}
.y51_c00358{bottom:89.565000px;}
.y28_c00358{bottom:95.865000px;}
.y50_c00358{bottom:108.315000px;}
.y27_c00358{bottom:113.715000px;}
.y4f_c00358{bottom:126.015000px;}
.y26_c00358{bottom:132.015000px;}
.y4e_c00358{bottom:143.865000px;}
.y25_c00358{bottom:149.715000px;}
.y4d_c00358{bottom:161.715000px;}
.y24_c00358{bottom:167.865000px;}
.y4c_c00358{bottom:180.015000px;}
.y23_c00358{bottom:186.015000px;}
.y4b_c00358{bottom:198.165000px;}
.y22_c00358{bottom:203.865000px;}
.y4a_c00358{bottom:216.465000px;}
.y21_c00358{bottom:222.465000px;}
.y49_c00358{bottom:234.615000px;}
.y20_c00358{bottom:239.415000px;}
.y48_c00358{bottom:252.465000px;}
.y1f_c00358{bottom:258.165000px;}
.y47_c00358{bottom:271.065000px;}
.y1e_c00358{bottom:276.165000px;}
.y46_c00358{bottom:288.915000px;}
.y1d_c00358{bottom:294.015000px;}
.y45_c00358{bottom:307.215000px;}
.y1c_c00358{bottom:312.315000px;}
.y44_c00358{bottom:325.815000px;}
.y1b_c00358{bottom:330.465000px;}
.y43_c00358{bottom:343.365000px;}
.y1a_c00358{bottom:348.315000px;}
.y42_c00358{bottom:361.215000px;}
.y19_c00358{bottom:366.315000px;}
.y41_c00358{bottom:379.365000px;}
.y18_c00358{bottom:384.465000px;}
.y40_c00358{bottom:397.365000px;}
.y17_c00358{bottom:402.615000px;}
.y3f_c00358{bottom:416.115000px;}
.y16_c00358{bottom:420.315000px;}
.y3e_c00358{bottom:434.415000px;}
.y15_c00358{bottom:438.465000px;}
.y3d_c00358{bottom:452.565000px;}
.y14_c00358{bottom:456.315000px;}
.y3c_c00358{bottom:471.165000px;}
.y13_c00358{bottom:474.315000px;}
.y3b_c00358{bottom:488.715000px;}
.y12_c00358{bottom:492.165000px;}
.y3a_c00358{bottom:507.615000px;}
.y11_c00358{bottom:510.315000px;}
.y39_c00358{bottom:525.165000px;}
.y10_c00358{bottom:527.865000px;}
.y38_c00358{bottom:543.015000px;}
.yf_c00358{bottom:545.865000px;}
.y37_c00358{bottom:561.015000px;}
.ye_c00358{bottom:564.315000px;}
.y36_c00358{bottom:579.465000px;}
.yd_c00358{bottom:581.865000px;}
.y35_c00358{bottom:597.465000px;}
.yc_c00358{bottom:600.165000px;}
.y34_c00358{bottom:615.915000px;}
.yb_c00358{bottom:618.315000px;}
.y33_c00358{bottom:633.165000px;}
.ya_c00358{bottom:636.165000px;}
.y32_c00358{bottom:652.515000px;}
.y9_c00358{bottom:654.615000px;}
.y31_c00358{bottom:670.065000px;}
.y8_c00358{bottom:672.615000px;}
.y30_c00358{bottom:688.815000px;}
.y7_c00358{bottom:690.615000px;}
.y2f_c00358{bottom:705.465000px;}
.y6_c00358{bottom:709.065000px;}
.y2e_c00358{bottom:724.665000px;}
.y5_c00358{bottom:727.665000px;}
.y2d_c00358{bottom:742.965000px;}
.y4_c00358{bottom:745.215000px;}
.y2c_c00358{bottom:761.715000px;}
.y3_c00358{bottom:763.215000px;}
.y2b_c00358{bottom:779.415000px;}
.y2_c00358{bottom:780.615000px;}
.y1_c00358{bottom:800.865000px;}
.h3_c00358{height:13.200074px;}
.h4_c00358{height:43.804688px;}
.h2_c00358{height:62.880000px;}
.h1_c00358{height:844.500000px;}
.h0_c00358{height:844.575000px;}
.w1_c00358{width:104.875500px;}
.w0_c00358{width:590.250000px;}
.x0_c00358{left:0.000000px;}
.x3_c00358{left:76.050000px;}
.x6_c00358{left:77.250000px;}
.x2_c00358{left:78.300000px;}
.x5_c00358{left:79.350000px;}
.x4_c00358{left:110.700000px;}
.x1_c00358{left:216.600000px;}
.xe_c00358{left:246.939240px;}
.xc_c00358{left:292.200000px;}
.x7_c00358{left:293.550000px;}
.xb_c00358{left:294.900000px;}
.x9_c00358{left:296.550000px;}
.x8_c00358{left:297.600000px;}
.xa_c00358{left:315.450000px;}
.xd_c00358{left:472.050000px;}
@media print{
.v0_c00358{vertical-align:0.000000pt;}
.ls1_c00358{letter-spacing:0.000000pt;}
.ls0_c00358{letter-spacing:2.666667pt;}
.ws1_c00358{word-spacing:-16.053333pt;}
.ws0_c00358{word-spacing:-12.586667pt;}
.ws2_c00358{word-spacing:0.000000pt;}
._19_c00358{margin-left:-14.400000pt;}
._1b_c00358{margin-left:-12.693333pt;}
._1f_c00358{margin-left:-11.413333pt;}
._12_c00358{margin-left:-5.333333pt;}
._a_c00358{margin-left:-4.213333pt;}
._c_c00358{margin-left:-3.306667pt;}
._18_c00358{margin-left:-2.346667pt;}
._9_c00358{margin-left:-1.440000pt;}
._6_c00358{width:0.960000pt;}
._5_c00358{width:1.973333pt;}
._7_c00358{width:2.933333pt;}
._8_c00358{width:3.893333pt;}
._b_c00358{width:4.800000pt;}
._f_c00358{width:6.026667pt;}
._1_c00358{width:6.986667pt;}
._e_c00358{width:8.586667pt;}
._0_c00358{width:9.813333pt;}
._3_c00358{width:10.986667pt;}
._4_c00358{width:12.320000pt;}
._20_c00358{width:13.333333pt;}
._d_c00358{width:14.346667pt;}
._13_c00358{width:17.546667pt;}
._1a_c00358{width:19.466667pt;}
._17_c00358{width:20.480000pt;}
._11_c00358{width:21.653333pt;}
._2_c00358{width:23.413333pt;}
._1d_c00358{width:24.533333pt;}
._16_c00358{width:25.440000pt;}
._14_c00358{width:27.520000pt;}
._15_c00358{width:29.973333pt;}
._1c_c00358{width:32.426667pt;}
._1e_c00358{width:36.906667pt;}
._10_c00358{width:84.373333pt;}
.fs1_c00358{font-size:42.666667pt;}
.fs0_c00358{font-size:53.333333pt;}
.y0_c00358{bottom:0.000000pt;}
.y56_c00358{bottom:2.760000pt;}
.y55_c00358{bottom:6.425219pt;}
.y54_c00358{bottom:30.413333pt;}
.y53_c00358{bottom:47.480000pt;}
.y2a_c00358{bottom:52.280000pt;}
.y52_c00358{bottom:64.280000pt;}
.y29_c00358{bottom:69.346667pt;}
.y51_c00358{bottom:79.613333pt;}
.y28_c00358{bottom:85.213333pt;}
.y50_c00358{bottom:96.280000pt;}
.y27_c00358{bottom:101.080000pt;}
.y4f_c00358{bottom:112.013333pt;}
.y26_c00358{bottom:117.346667pt;}
.y4e_c00358{bottom:127.880000pt;}
.y25_c00358{bottom:133.080000pt;}
.y4d_c00358{bottom:143.746667pt;}
.y24_c00358{bottom:149.213333pt;}
.y4c_c00358{bottom:160.013333pt;}
.y23_c00358{bottom:165.346667pt;}
.y4b_c00358{bottom:176.146667pt;}
.y22_c00358{bottom:181.213333pt;}
.y4a_c00358{bottom:192.413333pt;}
.y21_c00358{bottom:197.746667pt;}
.y49_c00358{bottom:208.546667pt;}
.y20_c00358{bottom:212.813333pt;}
.y48_c00358{bottom:224.413333pt;}
.y1f_c00358{bottom:229.480000pt;}
.y47_c00358{bottom:240.946667pt;}
.y1e_c00358{bottom:245.480000pt;}
.y46_c00358{bottom:256.813333pt;}
.y1d_c00358{bottom:261.346667pt;}
.y45_c00358{bottom:273.080000pt;}
.y1c_c00358{bottom:277.613333pt;}
.y44_c00358{bottom:289.613333pt;}
.y1b_c00358{bottom:293.746667pt;}
.y43_c00358{bottom:305.213333pt;}
.y1a_c00358{bottom:309.613333pt;}
.y42_c00358{bottom:321.080000pt;}
.y19_c00358{bottom:325.613333pt;}
.y41_c00358{bottom:337.213333pt;}
.y18_c00358{bottom:341.746667pt;}
.y40_c00358{bottom:353.213333pt;}
.y17_c00358{bottom:357.880000pt;}
.y3f_c00358{bottom:369.880000pt;}
.y16_c00358{bottom:373.613333pt;}
.y3e_c00358{bottom:386.146667pt;}
.y15_c00358{bottom:389.746667pt;}
.y3d_c00358{bottom:402.280000pt;}
.y14_c00358{bottom:405.613333pt;}
.y3c_c00358{bottom:418.813333pt;}
.y13_c00358{bottom:421.613333pt;}
.y3b_c00358{bottom:434.413333pt;}
.y12_c00358{bottom:437.480000pt;}
.y3a_c00358{bottom:451.213333pt;}
.y11_c00358{bottom:453.613333pt;}
.y39_c00358{bottom:466.813333pt;}
.y10_c00358{bottom:469.213333pt;}
.y38_c00358{bottom:482.680000pt;}
.yf_c00358{bottom:485.213333pt;}
.y37_c00358{bottom:498.680000pt;}
.ye_c00358{bottom:501.613333pt;}
.y36_c00358{bottom:515.080000pt;}
.yd_c00358{bottom:517.213333pt;}
.y35_c00358{bottom:531.080000pt;}
.yc_c00358{bottom:533.480000pt;}
.y34_c00358{bottom:547.480000pt;}
.yb_c00358{bottom:549.613333pt;}
.y33_c00358{bottom:562.813333pt;}
.ya_c00358{bottom:565.480000pt;}
.y32_c00358{bottom:580.013333pt;}
.y9_c00358{bottom:581.880000pt;}
.y31_c00358{bottom:595.613333pt;}
.y8_c00358{bottom:597.880000pt;}
.y30_c00358{bottom:612.280000pt;}
.y7_c00358{bottom:613.880000pt;}
.y2f_c00358{bottom:627.080000pt;}
.y6_c00358{bottom:630.280000pt;}
.y2e_c00358{bottom:644.146667pt;}
.y5_c00358{bottom:646.813333pt;}
.y2d_c00358{bottom:660.413333pt;}
.y4_c00358{bottom:662.413333pt;}
.y2c_c00358{bottom:677.080000pt;}
.y3_c00358{bottom:678.413333pt;}
.y2b_c00358{bottom:692.813333pt;}
.y2_c00358{bottom:693.880000pt;}
.y1_c00358{bottom:711.880000pt;}
.h3_c00358{height:11.733399pt;}
.h4_c00358{height:38.937500pt;}
.h2_c00358{height:55.893333pt;}
.h1_c00358{height:750.666667pt;}
.h0_c00358{height:750.733333pt;}
.w1_c00358{width:93.222667pt;}
.w0_c00358{width:524.666667pt;}
.x0_c00358{left:0.000000pt;}
.x3_c00358{left:67.600000pt;}
.x6_c00358{left:68.666667pt;}
.x2_c00358{left:69.600000pt;}
.x5_c00358{left:70.533333pt;}
.x4_c00358{left:98.400000pt;}
.x1_c00358{left:192.533333pt;}
.xe_c00358{left:219.501546pt;}
.xc_c00358{left:259.733333pt;}
.x7_c00358{left:260.933333pt;}
.xb_c00358{left:262.133333pt;}
.x9_c00358{left:263.600000pt;}
.x8_c00358{left:264.533333pt;}
.xa_c00358{left:280.400000pt;}
.xd_c00358{left:419.600000pt;}
}





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

.ir_c00359:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00359{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00359;src:url('chunks/assets/font_436bbaee0e385acba98799a6.woff2')format("woff");}.ff1_c00359{font-family:ff1_c00359;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00359;src:url('chunks/assets/font_d80e7ce6f51105d030bc55b8.woff2')format("woff");}.ff2_c00359{font-family:ff2_c00359;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00359;src:url('chunks/assets/font_7164f7fc20c479aacf7b7c04.woff2')format("woff");}.ff3_c00359{font-family:ff3_c00359;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00359;src:url('chunks/assets/font_e63d0c081216a692da7e1509.woff2')format("woff");}.ff4_c00359{font-family:ff4_c00359;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00359;src:url('chunks/assets/font_bf4806ff6d7beedc6859ffcf.woff2')format("woff");}.ff5_c00359{font-family:ff5_c00359;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00359;src:url('chunks/assets/font_148d633ed258551bc3c37b70.woff2')format("woff");}.ff6_c00359{font-family:ff6_c00359;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00359;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff7_c00359{font-family:ff7_c00359;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00359{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00359{vertical-align:0.000000px;}
.ls5_c00359{letter-spacing:0.000000px;}
.ls2_c00359{letter-spacing:1.200000px;}
.ls0_c00359{letter-spacing:3.000000px;}
.ls4_c00359{letter-spacing:5.400000px;}
.ls6_c00359{letter-spacing:6.000000px;}
.ls3_c00359{letter-spacing:6.600000px;}
.ls1_c00359{letter-spacing:25.740000px;}
.sc__c00359{text-shadow:none;}
.sc0_c00359{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00359{-webkit-text-stroke:0px transparent;}
.sc0_c00359{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00359{word-spacing:-33.952800px;}
.ws2_c00359{word-spacing:-32.295000px;}
.ws4_c00359{word-spacing:-20.340000px;}
.ws3_c00359{word-spacing:-18.060000px;}
.ws6_c00359{word-spacing:-15.060000px;}
.ws1_c00359{word-spacing:-14.160000px;}
.ws0_c00359{word-spacing:-0.120000px;}
.ws7_c00359{word-spacing:0.000000px;}
._21_c00359{margin-left:-18.003000px;}
._20_c00359{margin-left:-16.629000px;}
._1f_c00359{margin-left:-14.028000px;}
._14_c00359{margin-left:-11.955000px;}
._18_c00359{margin-left:-10.500000px;}
._17_c00359{margin-left:-9.000000px;}
._19_c00359{margin-left:-7.140000px;}
._1a_c00359{margin-left:-5.400000px;}
._15_c00359{margin-left:-3.420000px;}
._12_c00359{margin-left:-2.400000px;}
._11_c00359{margin-left:-1.200000px;}
._e_c00359{width:1.980000px;}
._d_c00359{width:3.780000px;}
._c_c00359{width:5.100000px;}
._b_c00359{width:6.660000px;}
._1_c00359{width:8.220000px;}
._a_c00359{width:9.300000px;}
._16_c00359{width:10.560000px;}
._0_c00359{width:11.580000px;}
._3_c00359{width:13.500000px;}
._4_c00359{width:14.940000px;}
._5_c00359{width:16.140000px;}
._8_c00359{width:19.260000px;}
._7_c00359{width:20.460000px;}
._6_c00359{width:22.800000px;}
._1e_c00359{width:24.648000px;}
._1b_c00359{width:26.460000px;}
._23_c00359{width:27.780000px;}
._22_c00359{width:30.180000px;}
._9_c00359{width:31.440000px;}
._13_c00359{width:35.340000px;}
._f_c00359{width:39.540000px;}
._10_c00359{width:71.640000px;}
._1d_c00359{width:130.020000px;}
._1c_c00359{width:178.260000px;}
._2_c00359{width:206.640000px;}
.fc2_c00359{color:transparent;}
.fc1_c00359{color:rgb(128,128,128);}
.fc0_c00359{color:rgb(0,0,0);}
.fs1_c00359{font-size:45.000000px;}
.fs3_c00359{font-size:45.600000px;}
.fs5_c00359{font-size:48.000000px;}
.fs2_c00359{font-size:57.000000px;}
.fs0_c00359{font-size:60.000000px;}
.fs4_c00359{font-size:78.000000px;}
.y0_c00359{bottom:0.000000px;}
.y4e_c00359{bottom:3.105000px;}
.y4d_c00359{bottom:7.228355px;}
.y4c_c00359{bottom:42.735000px;}
.y2a_c00359{bottom:59.385000px;}
.y4b_c00359{bottom:60.435000px;}
.y29_c00359{bottom:79.335000px;}
.y28_c00359{bottom:96.435000px;}
.y4a_c00359{bottom:97.785000px;}
.y27_c00359{bottom:114.435000px;}
.y49_c00359{bottom:115.335000px;}
.y26_c00359{bottom:131.985000px;}
.y48_c00359{bottom:133.335000px;}
.y25_c00359{bottom:150.435000px;}
.y47_c00359{bottom:151.785000px;}
.y24_c00359{bottom:168.435000px;}
.y46_c00359{bottom:169.785000px;}
.y23_c00359{bottom:187.185000px;}
.y45_c00359{bottom:187.635000px;}
.y22_c00359{bottom:204.885000px;}
.y44_c00359{bottom:205.785000px;}
.y21_c00359{bottom:223.635000px;}
.y43_c00359{bottom:224.085000px;}
.y20_c00359{bottom:241.185000px;}
.y42_c00359{bottom:241.935000px;}
.y1f_c00359{bottom:259.185000px;}
.y41_c00359{bottom:260.085000px;}
.y1e_c00359{bottom:277.335000px;}
.y40_c00359{bottom:278.085000px;}
.y1d_c00359{bottom:294.885000px;}
.y3f_c00359{bottom:295.935000px;}
.y1c_c00359{bottom:312.435000px;}
.y3e_c00359{bottom:312.735000px;}
.y1b_c00359{bottom:331.335000px;}
.y3d_c00359{bottom:331.635000px;}
.y1a_c00359{bottom:349.185000px;}
.y19_c00359{bottom:367.185000px;}
.y3c_c00359{bottom:367.785000px;}
.y18_c00359{bottom:385.035000px;}
.y17_c00359{bottom:403.635000px;}
.y3b_c00359{bottom:403.935000px;}
.y16_c00359{bottom:421.185000px;}
.y3a_c00359{bottom:422.085000px;}
.y15_c00359{bottom:439.335000px;}
.y39_c00359{bottom:440.085000px;}
.y14_c00359{bottom:457.635000px;}
.y38_c00359{bottom:457.935000px;}
.y13_c00359{bottom:476.085000px;}
.y12_c00359{bottom:493.785000px;}
.y37_c00359{bottom:494.085000px;}
.y11_c00359{bottom:511.935000px;}
.y36_c00359{bottom:530.085000px;}
.y10_c00359{bottom:530.235000px;}
.yf_c00359{bottom:548.385000px;}
.y35_c00359{bottom:565.935000px;}
.ye_c00359{bottom:566.535000px;}
.y34_c00359{bottom:584.235000px;}
.yd_c00359{bottom:584.535000px;}
.y33_c00359{bottom:602.085000px;}
.yc_c00359{bottom:602.985000px;}
.yb_c00359{bottom:620.535000px;}
.y32_c00359{bottom:638.535000px;}
.ya_c00359{bottom:638.835000px;}
.y31_c00359{bottom:656.385000px;}
.y9_c00359{bottom:656.685000px;}
.y30_c00359{bottom:674.535000px;}
.y8_c00359{bottom:674.685000px;}
.y2f_c00359{bottom:692.235000px;}
.y7_c00359{bottom:692.535000px;}
.y2e_c00359{bottom:710.685000px;}
.y6_c00359{bottom:711.135000px;}
.y2d_c00359{bottom:728.235000px;}
.y5_c00359{bottom:728.985000px;}
.y2c_c00359{bottom:746.235000px;}
.y4_c00359{bottom:746.835000px;}
.y2b_c00359{bottom:764.385000px;}
.y3_c00359{bottom:765.135000px;}
.y2_c00359{bottom:782.685000px;}
.y1_c00359{bottom:802.485000px;}
.h6_c00359{height:13.200074px;}
.h7_c00359{height:43.804688px;}
.h4_c00359{height:59.736000px;}
.h2_c00359{height:62.880000px;}
.h3_c00359{height:64.020000px;}
.h5_c00359{height:81.744000px;}
.h1_c00359{height:846.750000px;}
.h0_c00359{height:846.975000px;}
.w2_c00359{width:104.875500px;}
.w1_c00359{width:575.250000px;}
.w0_c00359{width:575.400000px;}
.x0_c00359{left:0.000000px;}
.xb_c00359{left:32.850000px;}
.xa_c00359{left:34.800000px;}
.xc_c00359{left:92.400000px;}
.x9_c00359{left:93.600000px;}
.x8_c00359{left:95.250000px;}
.x7_c00359{left:97.650000px;}
.x5_c00359{left:99.000000px;}
.x6_c00359{left:100.200000px;}
.x3_c00359{left:101.550000px;}
.x1_c00359{left:102.900000px;}
.x4_c00359{left:121.200000px;}
.x2_c00359{left:122.550000px;}
.x14_c00359{left:239.514267px;}
.x12_c00359{left:312.150000px;}
.x11_c00359{left:313.200000px;}
.x10_c00359{left:314.850000px;}
.xf_c00359{left:316.650000px;}
.xe_c00359{left:318.000000px;}
.xd_c00359{left:319.200000px;}
.x13_c00359{left:489.000000px;}
@media print{
.v0_c00359{vertical-align:0.000000pt;}
.ls5_c00359{letter-spacing:0.000000pt;}
.ls2_c00359{letter-spacing:1.066667pt;}
.ls0_c00359{letter-spacing:2.666667pt;}
.ls4_c00359{letter-spacing:4.800000pt;}
.ls6_c00359{letter-spacing:5.333333pt;}
.ls3_c00359{letter-spacing:5.866667pt;}
.ls1_c00359{letter-spacing:22.880000pt;}
.ws5_c00359{word-spacing:-30.180267pt;}
.ws2_c00359{word-spacing:-28.706667pt;}
.ws4_c00359{word-spacing:-18.080000pt;}
.ws3_c00359{word-spacing:-16.053333pt;}
.ws6_c00359{word-spacing:-13.386667pt;}
.ws1_c00359{word-spacing:-12.586667pt;}
.ws0_c00359{word-spacing:-0.106667pt;}
.ws7_c00359{word-spacing:0.000000pt;}
._21_c00359{margin-left:-16.002667pt;}
._20_c00359{margin-left:-14.781333pt;}
._1f_c00359{margin-left:-12.469333pt;}
._14_c00359{margin-left:-10.626667pt;}
._18_c00359{margin-left:-9.333333pt;}
._17_c00359{margin-left:-8.000000pt;}
._19_c00359{margin-left:-6.346667pt;}
._1a_c00359{margin-left:-4.800000pt;}
._15_c00359{margin-left:-3.040000pt;}
._12_c00359{margin-left:-2.133333pt;}
._11_c00359{margin-left:-1.066667pt;}
._e_c00359{width:1.760000pt;}
._d_c00359{width:3.360000pt;}
._c_c00359{width:4.533333pt;}
._b_c00359{width:5.920000pt;}
._1_c00359{width:7.306667pt;}
._a_c00359{width:8.266667pt;}
._16_c00359{width:9.386667pt;}
._0_c00359{width:10.293333pt;}
._3_c00359{width:12.000000pt;}
._4_c00359{width:13.280000pt;}
._5_c00359{width:14.346667pt;}
._8_c00359{width:17.120000pt;}
._7_c00359{width:18.186667pt;}
._6_c00359{width:20.266667pt;}
._1e_c00359{width:21.909333pt;}
._1b_c00359{width:23.520000pt;}
._23_c00359{width:24.693333pt;}
._22_c00359{width:26.826667pt;}
._9_c00359{width:27.946667pt;}
._13_c00359{width:31.413333pt;}
._f_c00359{width:35.146667pt;}
._10_c00359{width:63.680000pt;}
._1d_c00359{width:115.573333pt;}
._1c_c00359{width:158.453333pt;}
._2_c00359{width:183.680000pt;}
.fs1_c00359{font-size:40.000000pt;}
.fs3_c00359{font-size:40.533333pt;}
.fs5_c00359{font-size:42.666667pt;}
.fs2_c00359{font-size:50.666667pt;}
.fs0_c00359{font-size:53.333333pt;}
.fs4_c00359{font-size:69.333333pt;}
.y0_c00359{bottom:0.000000pt;}
.y4e_c00359{bottom:2.760000pt;}
.y4d_c00359{bottom:6.425204pt;}
.y4c_c00359{bottom:37.986667pt;}
.y2a_c00359{bottom:52.786667pt;}
.y4b_c00359{bottom:53.720000pt;}
.y29_c00359{bottom:70.520000pt;}
.y28_c00359{bottom:85.720000pt;}
.y4a_c00359{bottom:86.920000pt;}
.y27_c00359{bottom:101.720000pt;}
.y49_c00359{bottom:102.520000pt;}
.y26_c00359{bottom:117.320000pt;}
.y48_c00359{bottom:118.520000pt;}
.y25_c00359{bottom:133.720000pt;}
.y47_c00359{bottom:134.920000pt;}
.y24_c00359{bottom:149.720000pt;}
.y46_c00359{bottom:150.920000pt;}
.y23_c00359{bottom:166.386667pt;}
.y45_c00359{bottom:166.786667pt;}
.y22_c00359{bottom:182.120000pt;}
.y44_c00359{bottom:182.920000pt;}
.y21_c00359{bottom:198.786667pt;}
.y43_c00359{bottom:199.186667pt;}
.y20_c00359{bottom:214.386667pt;}
.y42_c00359{bottom:215.053333pt;}
.y1f_c00359{bottom:230.386667pt;}
.y41_c00359{bottom:231.186667pt;}
.y1e_c00359{bottom:246.520000pt;}
.y40_c00359{bottom:247.186667pt;}
.y1d_c00359{bottom:262.120000pt;}
.y3f_c00359{bottom:263.053333pt;}
.y1c_c00359{bottom:277.720000pt;}
.y3e_c00359{bottom:277.986667pt;}
.y1b_c00359{bottom:294.520000pt;}
.y3d_c00359{bottom:294.786667pt;}
.y1a_c00359{bottom:310.386667pt;}
.y19_c00359{bottom:326.386667pt;}
.y3c_c00359{bottom:326.920000pt;}
.y18_c00359{bottom:342.253333pt;}
.y17_c00359{bottom:358.786667pt;}
.y3b_c00359{bottom:359.053333pt;}
.y16_c00359{bottom:374.386667pt;}
.y3a_c00359{bottom:375.186667pt;}
.y15_c00359{bottom:390.520000pt;}
.y39_c00359{bottom:391.186667pt;}
.y14_c00359{bottom:406.786667pt;}
.y38_c00359{bottom:407.053333pt;}
.y13_c00359{bottom:423.186667pt;}
.y12_c00359{bottom:438.920000pt;}
.y37_c00359{bottom:439.186667pt;}
.y11_c00359{bottom:455.053333pt;}
.y36_c00359{bottom:471.186667pt;}
.y10_c00359{bottom:471.320000pt;}
.yf_c00359{bottom:487.453333pt;}
.y35_c00359{bottom:503.053333pt;}
.ye_c00359{bottom:503.586667pt;}
.y34_c00359{bottom:519.320000pt;}
.yd_c00359{bottom:519.586667pt;}
.y33_c00359{bottom:535.186667pt;}
.yc_c00359{bottom:535.986667pt;}
.yb_c00359{bottom:551.586667pt;}
.y32_c00359{bottom:567.586667pt;}
.ya_c00359{bottom:567.853333pt;}
.y31_c00359{bottom:583.453333pt;}
.y9_c00359{bottom:583.720000pt;}
.y30_c00359{bottom:599.586667pt;}
.y8_c00359{bottom:599.720000pt;}
.y2f_c00359{bottom:615.320000pt;}
.y7_c00359{bottom:615.586667pt;}
.y2e_c00359{bottom:631.720000pt;}
.y6_c00359{bottom:632.120000pt;}
.y2d_c00359{bottom:647.320000pt;}
.y5_c00359{bottom:647.986667pt;}
.y2c_c00359{bottom:663.320000pt;}
.y4_c00359{bottom:663.853333pt;}
.y2b_c00359{bottom:679.453333pt;}
.y3_c00359{bottom:680.120000pt;}
.y2_c00359{bottom:695.720000pt;}
.y1_c00359{bottom:713.320000pt;}
.h6_c00359{height:11.733399pt;}
.h7_c00359{height:38.937500pt;}
.h4_c00359{height:53.098667pt;}
.h2_c00359{height:55.893333pt;}
.h3_c00359{height:56.906667pt;}
.h5_c00359{height:72.661333pt;}
.h1_c00359{height:752.666667pt;}
.h0_c00359{height:752.866667pt;}
.w2_c00359{width:93.222667pt;}
.w1_c00359{width:511.333333pt;}
.w0_c00359{width:511.466667pt;}
.x0_c00359{left:0.000000pt;}
.xb_c00359{left:29.200000pt;}
.xa_c00359{left:30.933333pt;}
.xc_c00359{left:82.133333pt;}
.x9_c00359{left:83.200000pt;}
.x8_c00359{left:84.666667pt;}
.x7_c00359{left:86.800000pt;}
.x5_c00359{left:88.000000pt;}
.x6_c00359{left:89.066667pt;}
.x3_c00359{left:90.266667pt;}
.x1_c00359{left:91.466667pt;}
.x4_c00359{left:107.733333pt;}
.x2_c00359{left:108.933333pt;}
.x14_c00359{left:212.901571pt;}
.x12_c00359{left:277.466667pt;}
.x11_c00359{left:278.400000pt;}
.x10_c00359{left:279.866667pt;}
.xf_c00359{left:281.466667pt;}
.xe_c00359{left:282.666667pt;}
.xd_c00359{left:283.733333pt;}
.x13_c00359{left:434.666667pt;}
}





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

.ir_c00360:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00360{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00360;src:url('chunks/assets/font_ebe790e153087c6d0e23be21.woff2')format("woff");}.ff1_c00360{font-family:ff1_c00360;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00360;src:url('chunks/assets/font_add5a828fad311288af738c9.woff2')format("woff");}.ff2_c00360{font-family:ff2_c00360;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00360;src:url('chunks/assets/font_31abc9070eae04c1e45136ee.woff2')format("woff");}.ff3_c00360{font-family:ff3_c00360;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00360;src:url('chunks/assets/font_b8b273c8419f54a73f2b54be.woff2')format("woff");}.ff4_c00360{font-family:ff4_c00360;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00360;src:url('chunks/assets/font_322956b406e9113ee6a62cd0.woff2')format("woff");}.ff5_c00360{font-family:ff5_c00360;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00360;src:url('chunks/assets/font_f3790c11fa1b72b5ebd5d0f3.woff2')format("woff");}.ff6_c00360{font-family:ff6_c00360;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00360;src:url('chunks/assets/font_838a72335a7f34cbcedae51b.woff2')format("woff");}.ff7_c00360{font-family:ff7_c00360;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00360;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff8_c00360{font-family:ff8_c00360;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00360{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00360{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.v0_c00360{vertical-align:0.000000px;}
.v1_c00360{vertical-align:15.000000px;}
.ls9_c00360{letter-spacing:0.000000px;}
.ls8_c00360{letter-spacing:3.000000px;}
.ls3_c00360{letter-spacing:3.405000px;}
.ls1_c00360{letter-spacing:5.400000px;}
.ls7_c00360{letter-spacing:6.000000px;}
.ls2_c00360{letter-spacing:9.900000px;}
.ls4_c00360{letter-spacing:10.800000px;}
.ls6_c00360{letter-spacing:12.000000px;}
.ls5_c00360{letter-spacing:21.540000px;}
.ls0_c00360{letter-spacing:115.140000px;}
.sc__c00360{text-shadow:none;}
.sc0_c00360{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00360{-webkit-text-stroke:0px transparent;}
.sc0_c00360{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00360{word-spacing:-32.295000px;}
.ws1_c00360{word-spacing:-18.060000px;}
.ws5_c00360{word-spacing:-18.048000px;}
.ws0_c00360{word-spacing:-14.460000px;}
.ws2_c00360{word-spacing:-14.160000px;}
.ws3_c00360{word-spacing:-1.080000px;}
.ws6_c00360{word-spacing:0.000000px;}
._10_c00360{margin-left:-27.360000px;}
._23_c00360{margin-left:-21.471000px;}
._24_c00360{margin-left:-19.620000px;}
._1c_c00360{margin-left:-16.860000px;}
._14_c00360{margin-left:-15.360000px;}
._22_c00360{margin-left:-9.486000px;}
._20_c00360{margin-left:-8.229000px;}
._b_c00360{margin-left:-6.744000px;}
._e_c00360{margin-left:-5.520000px;}
._6_c00360{margin-left:-4.176000px;}
._5_c00360{margin-left:-3.168000px;}
._0_c00360{margin-left:-1.380000px;}
._9_c00360{width:1.020000px;}
._3_c00360{width:2.208000px;}
._2_c00360{width:3.450000px;}
._d_c00360{width:4.740000px;}
._f_c00360{width:6.480000px;}
._12_c00360{width:8.100000px;}
._8_c00360{width:9.240000px;}
._a_c00360{width:11.040000px;}
._11_c00360{width:12.720000px;}
._7_c00360{width:13.932000px;}
._27_c00360{width:15.120000px;}
._17_c00360{width:16.260000px;}
._2c_c00360{width:17.328000px;}
._13_c00360{width:19.626000px;}
._15_c00360{width:21.900000px;}
._1_c00360{width:23.391000px;}
._21_c00360{width:24.780000px;}
._1a_c00360{width:26.052000px;}
._2d_c00360{width:27.309000px;}
._18_c00360{width:28.332000px;}
._1f_c00360{width:29.832000px;}
._25_c00360{width:31.734000px;}
._2a_c00360{width:33.480000px;}
._1e_c00360{width:35.340000px;}
._19_c00360{width:36.600000px;}
._26_c00360{width:38.352000px;}
._1b_c00360{width:39.360000px;}
._29_c00360{width:41.196000px;}
._2b_c00360{width:42.840000px;}
._16_c00360{width:52.356000px;}
._30_c00360{width:54.564000px;}
._2f_c00360{width:57.840000px;}
._2e_c00360{width:59.310000px;}
._28_c00360{width:61.140000px;}
._c_c00360{width:76.368000px;}
._1d_c00360{width:158.940000px;}
._4_c00360{width:487.416000px;}
.fc2_c00360{color:transparent;}
.fc1_c00360{color:rgb(128,128,128);}
.fc0_c00360{color:rgb(0,0,0);}
.fs3_c00360{font-size:45.000000px;}
.fs4_c00360{font-size:48.000000px;}
.fs2_c00360{font-size:60.000000px;}
.fs0_c00360{font-size:69.000000px;}
.fs1_c00360{font-size:72.000000px;}
.y0_c00360{bottom:0.000000px;}
.y52_c00360{bottom:3.105000px;}
.y51_c00360{bottom:7.228371px;}
.y50_c00360{bottom:54.465000px;}
.y28_c00360{bottom:57.165000px;}
.y4f_c00360{bottom:73.215000px;}
.y27_c00360{bottom:76.065000px;}
.y4e_c00360{bottom:91.215000px;}
.y26_c00360{bottom:94.515000px;}
.y4d_c00360{bottom:109.065000px;}
.y25_c00360{bottom:112.065000px;}
.y4c_c00360{bottom:126.915000px;}
.y24_c00360{bottom:130.365000px;}
.y4b_c00360{bottom:145.215000px;}
.y23_c00360{bottom:148.515000px;}
.y4a_c00360{bottom:163.065000px;}
.y22_c00360{bottom:166.815000px;}
.y49_c00360{bottom:181.665000px;}
.y21_c00360{bottom:184.365000px;}
.y48_c00360{bottom:199.515000px;}
.y20_c00360{bottom:202.215000px;}
.y47_c00360{bottom:217.665000px;}
.y1f_c00360{bottom:220.515000px;}
.y46_c00360{bottom:235.215000px;}
.y1e_c00360{bottom:238.665000px;}
.y45_c00360{bottom:254.115000px;}
.y1d_c00360{bottom:255.915000px;}
.y44_c00360{bottom:272.115000px;}
.y1c_c00360{bottom:275.415000px;}
.y43_c00360{bottom:290.565000px;}
.y1b_c00360{bottom:292.065000px;}
.y42_c00360{bottom:307.665000px;}
.y1a_c00360{bottom:310.215000px;}
.y41_c00360{bottom:326.115000px;}
.y19_c00360{bottom:328.515000px;}
.y18_c00360{bottom:342.615000px;}
.y40_c00360{bottom:344.565000px;}
.y3f_c00360{bottom:362.565000px;}
.y3e_c00360{bottom:379.815000px;}
.y17_c00360{bottom:383.715000px;}
.y3d_c00360{bottom:398.715000px;}
.y16_c00360{bottom:400.665000px;}
.y3c_c00360{bottom:416.565000px;}
.y15_c00360{bottom:417.915000px;}
.y3b_c00360{bottom:434.415000px;}
.y14_c00360{bottom:437.415000px;}
.y3a_c00360{bottom:452.565000px;}
.y13_c00360{bottom:454.965000px;}
.y39_c00360{bottom:470.265000px;}
.y38_c00360{bottom:488.715000px;}
.y12_c00360{bottom:489.765000px;}
.y37_c00360{bottom:506.565000px;}
.y36_c00360{bottom:524.865000px;}
.y11_c00360{bottom:527.565000px;}
.y35_c00360{bottom:543.165000px;}
.y10_c00360{bottom:544.815000px;}
.y34_c00360{bottom:561.015000px;}
.yf_c00360{bottom:563.265000px;}
.y33_c00360{bottom:579.165000px;}
.ye_c00360{bottom:580.965000px;}
.y32_c00360{bottom:597.165000px;}
.yd_c00360{bottom:599.415000px;}
.y31_c00360{bottom:614.265000px;}
.yc_c00360{bottom:617.265000px;}
.y30_c00360{bottom:633.615000px;}
.yb_c00360{bottom:635.715000px;}
.y2f_c00360{bottom:651.465000px;}
.ya_c00360{bottom:653.715000px;}
.y2e_c00360{bottom:669.315000px;}
.y9_c00360{bottom:671.715000px;}
.y2d_c00360{bottom:687.915000px;}
.y8_c00360{bottom:689.865000px;}
.y2c_c00360{bottom:705.465000px;}
.y7_c00360{bottom:708.165000px;}
.y2b_c00360{bottom:724.065000px;}
.y6_c00360{bottom:726.015000px;}
.y2a_c00360{bottom:742.215000px;}
.y5_c00360{bottom:744.165000px;}
.y29_c00360{bottom:760.515000px;}
.y4_c00360{bottom:762.465000px;}
.y3_c00360{bottom:777.615000px;}
.y2_c00360{bottom:779.415000px;}
.y1_c00360{bottom:801.915000px;}
.h9_c00360{height:13.200074px;}
.ha_c00360{height:43.804688px;}
.h5_c00360{height:62.880000px;}
.h8_c00360{height:63.480000px;}
.h7_c00360{height:64.020000px;}
.h3_c00360{height:70.664062px;}
.h2_c00360{height:73.623000px;}
.h4_c00360{height:75.966797px;}
.h6_c00360{height:77.880000px;}
.h1_c00360{height:844.500000px;}
.h0_c00360{height:844.575000px;}
.w1_c00360{width:104.875500px;}
.w0_c00360{width:590.250000px;}
.x0_c00360{left:0.000000px;}
.xb_c00360{left:24.300000px;}
.x2_c00360{left:81.750000px;}
.x4_c00360{left:82.800000px;}
.x6_c00360{left:85.500000px;}
.xc_c00360{left:86.700000px;}
.xd_c00360{left:87.750000px;}
.x7_c00360{left:95.400000px;}
.x8_c00360{left:112.050000px;}
.xa_c00360{left:122.850000px;}
.x9_c00360{left:158.850000px;}
.x5_c00360{left:180.300000px;}
.x1_c00360{left:201.900000px;}
.x3_c00360{left:235.200000px;}
.x16_c00360{left:246.939240px;}
.xe_c00360{left:302.100000px;}
.xf_c00360{left:304.650000px;}
.x10_c00360{left:306.450000px;}
.x11_c00360{left:307.500000px;}
.x12_c00360{left:309.150000px;}
.x13_c00360{left:310.200000px;}
.x14_c00360{left:311.400000px;}
.x15_c00360{left:312.600000px;}
@media print{
.v0_c00360{vertical-align:0.000000pt;}
.v1_c00360{vertical-align:13.333333pt;}
.ls9_c00360{letter-spacing:0.000000pt;}
.ls8_c00360{letter-spacing:2.666667pt;}
.ls3_c00360{letter-spacing:3.026667pt;}
.ls1_c00360{letter-spacing:4.800000pt;}
.ls7_c00360{letter-spacing:5.333333pt;}
.ls2_c00360{letter-spacing:8.800000pt;}
.ls4_c00360{letter-spacing:9.600000pt;}
.ls6_c00360{letter-spacing:10.666667pt;}
.ls5_c00360{letter-spacing:19.146667pt;}
.ls0_c00360{letter-spacing:102.346667pt;}
.ws4_c00360{word-spacing:-28.706667pt;}
.ws1_c00360{word-spacing:-16.053333pt;}
.ws5_c00360{word-spacing:-16.042667pt;}
.ws0_c00360{word-spacing:-12.853333pt;}
.ws2_c00360{word-spacing:-12.586667pt;}
.ws3_c00360{word-spacing:-0.960000pt;}
.ws6_c00360{word-spacing:0.000000pt;}
._10_c00360{margin-left:-24.320000pt;}
._23_c00360{margin-left:-19.085333pt;}
._24_c00360{margin-left:-17.440000pt;}
._1c_c00360{margin-left:-14.986667pt;}
._14_c00360{margin-left:-13.653333pt;}
._22_c00360{margin-left:-8.432000pt;}
._20_c00360{margin-left:-7.314667pt;}
._b_c00360{margin-left:-5.994667pt;}
._e_c00360{margin-left:-4.906667pt;}
._6_c00360{margin-left:-3.712000pt;}
._5_c00360{margin-left:-2.816000pt;}
._0_c00360{margin-left:-1.226667pt;}
._9_c00360{width:0.906667pt;}
._3_c00360{width:1.962667pt;}
._2_c00360{width:3.066667pt;}
._d_c00360{width:4.213333pt;}
._f_c00360{width:5.760000pt;}
._12_c00360{width:7.200000pt;}
._8_c00360{width:8.213333pt;}
._a_c00360{width:9.813333pt;}
._11_c00360{width:11.306667pt;}
._7_c00360{width:12.384000pt;}
._27_c00360{width:13.440000pt;}
._17_c00360{width:14.453333pt;}
._2c_c00360{width:15.402667pt;}
._13_c00360{width:17.445333pt;}
._15_c00360{width:19.466667pt;}
._1_c00360{width:20.792000pt;}
._21_c00360{width:22.026667pt;}
._1a_c00360{width:23.157333pt;}
._2d_c00360{width:24.274667pt;}
._18_c00360{width:25.184000pt;}
._1f_c00360{width:26.517333pt;}
._25_c00360{width:28.208000pt;}
._2a_c00360{width:29.760000pt;}
._1e_c00360{width:31.413333pt;}
._19_c00360{width:32.533333pt;}
._26_c00360{width:34.090667pt;}
._1b_c00360{width:34.986667pt;}
._29_c00360{width:36.618667pt;}
._2b_c00360{width:38.080000pt;}
._16_c00360{width:46.538667pt;}
._30_c00360{width:48.501333pt;}
._2f_c00360{width:51.413333pt;}
._2e_c00360{width:52.720000pt;}
._28_c00360{width:54.346667pt;}
._c_c00360{width:67.882667pt;}
._1d_c00360{width:141.280000pt;}
._4_c00360{width:433.258667pt;}
.fs3_c00360{font-size:40.000000pt;}
.fs4_c00360{font-size:42.666667pt;}
.fs2_c00360{font-size:53.333333pt;}
.fs0_c00360{font-size:61.333333pt;}
.fs1_c00360{font-size:64.000000pt;}
.y0_c00360{bottom:0.000000pt;}
.y52_c00360{bottom:2.760000pt;}
.y51_c00360{bottom:6.425219pt;}
.y50_c00360{bottom:48.413333pt;}
.y28_c00360{bottom:50.813333pt;}
.y4f_c00360{bottom:65.080000pt;}
.y27_c00360{bottom:67.613333pt;}
.y4e_c00360{bottom:81.080000pt;}
.y26_c00360{bottom:84.013333pt;}
.y4d_c00360{bottom:96.946667pt;}
.y25_c00360{bottom:99.613333pt;}
.y4c_c00360{bottom:112.813333pt;}
.y24_c00360{bottom:115.880000pt;}
.y4b_c00360{bottom:129.080000pt;}
.y23_c00360{bottom:132.013333pt;}
.y4a_c00360{bottom:144.946667pt;}
.y22_c00360{bottom:148.280000pt;}
.y49_c00360{bottom:161.480000pt;}
.y21_c00360{bottom:163.880000pt;}
.y48_c00360{bottom:177.346667pt;}
.y20_c00360{bottom:179.746667pt;}
.y47_c00360{bottom:193.480000pt;}
.y1f_c00360{bottom:196.013333pt;}
.y46_c00360{bottom:209.080000pt;}
.y1e_c00360{bottom:212.146667pt;}
.y45_c00360{bottom:225.880000pt;}
.y1d_c00360{bottom:227.480000pt;}
.y44_c00360{bottom:241.880000pt;}
.y1c_c00360{bottom:244.813333pt;}
.y43_c00360{bottom:258.280000pt;}
.y1b_c00360{bottom:259.613333pt;}
.y42_c00360{bottom:273.480000pt;}
.y1a_c00360{bottom:275.746667pt;}
.y41_c00360{bottom:289.880000pt;}
.y19_c00360{bottom:292.013333pt;}
.y18_c00360{bottom:304.546667pt;}
.y40_c00360{bottom:306.280000pt;}
.y3f_c00360{bottom:322.280000pt;}
.y3e_c00360{bottom:337.613333pt;}
.y17_c00360{bottom:341.080000pt;}
.y3d_c00360{bottom:354.413333pt;}
.y16_c00360{bottom:356.146667pt;}
.y3c_c00360{bottom:370.280000pt;}
.y15_c00360{bottom:371.480000pt;}
.y3b_c00360{bottom:386.146667pt;}
.y14_c00360{bottom:388.813333pt;}
.y3a_c00360{bottom:402.280000pt;}
.y13_c00360{bottom:404.413333pt;}
.y39_c00360{bottom:418.013333pt;}
.y38_c00360{bottom:434.413333pt;}
.y12_c00360{bottom:435.346667pt;}
.y37_c00360{bottom:450.280000pt;}
.y36_c00360{bottom:466.546667pt;}
.y11_c00360{bottom:468.946667pt;}
.y35_c00360{bottom:482.813333pt;}
.y10_c00360{bottom:484.280000pt;}
.y34_c00360{bottom:498.680000pt;}
.yf_c00360{bottom:500.680000pt;}
.y33_c00360{bottom:514.813333pt;}
.ye_c00360{bottom:516.413333pt;}
.y32_c00360{bottom:530.813333pt;}
.yd_c00360{bottom:532.813333pt;}
.y31_c00360{bottom:546.013333pt;}
.yc_c00360{bottom:548.680000pt;}
.y30_c00360{bottom:563.213333pt;}
.yb_c00360{bottom:565.080000pt;}
.y2f_c00360{bottom:579.080000pt;}
.ya_c00360{bottom:581.080000pt;}
.y2e_c00360{bottom:594.946667pt;}
.y9_c00360{bottom:597.080000pt;}
.y2d_c00360{bottom:611.480000pt;}
.y8_c00360{bottom:613.213333pt;}
.y2c_c00360{bottom:627.080000pt;}
.y7_c00360{bottom:629.480000pt;}
.y2b_c00360{bottom:643.613333pt;}
.y6_c00360{bottom:645.346667pt;}
.y2a_c00360{bottom:659.746667pt;}
.y5_c00360{bottom:661.480000pt;}
.y29_c00360{bottom:676.013333pt;}
.y4_c00360{bottom:677.746667pt;}
.y3_c00360{bottom:691.213333pt;}
.y2_c00360{bottom:692.813333pt;}
.y1_c00360{bottom:712.813333pt;}
.h9_c00360{height:11.733399pt;}
.ha_c00360{height:38.937500pt;}
.h5_c00360{height:55.893333pt;}
.h8_c00360{height:56.426667pt;}
.h7_c00360{height:56.906667pt;}
.h3_c00360{height:62.812500pt;}
.h2_c00360{height:65.442667pt;}
.h4_c00360{height:67.526042pt;}
.h6_c00360{height:69.226667pt;}
.h1_c00360{height:750.666667pt;}
.h0_c00360{height:750.733333pt;}
.w1_c00360{width:93.222667pt;}
.w0_c00360{width:524.666667pt;}
.x0_c00360{left:0.000000pt;}
.xb_c00360{left:21.600000pt;}
.x2_c00360{left:72.666667pt;}
.x4_c00360{left:73.600000pt;}
.x6_c00360{left:76.000000pt;}
.xc_c00360{left:77.066667pt;}
.xd_c00360{left:78.000000pt;}
.x7_c00360{left:84.800000pt;}
.x8_c00360{left:99.600000pt;}
.xa_c00360{left:109.200000pt;}
.x9_c00360{left:141.200000pt;}
.x5_c00360{left:160.266667pt;}
.x1_c00360{left:179.466667pt;}
.x3_c00360{left:209.066667pt;}
.x16_c00360{left:219.501546pt;}
.xe_c00360{left:268.533333pt;}
.xf_c00360{left:270.800000pt;}
.x10_c00360{left:272.400000pt;}
.x11_c00360{left:273.333333pt;}
.x12_c00360{left:274.800000pt;}
.x13_c00360{left:275.733333pt;}
.x14_c00360{left:276.800000pt;}
.x15_c00360{left:277.866667pt;}
}





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

.ir_c00361:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00361{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00361;src:url('chunks/assets/font_38d71d4e6dd0befb4a9fda22.woff2')format("woff");}.ff1_c00361{font-family:ff1_c00361;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00361;src:url('chunks/assets/font_ecf8c6ef9e06b21b099d62e0.woff2')format("woff");}.ff2_c00361{font-family:ff2_c00361;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00361;src:url('chunks/assets/font_cf7e435a8e8d1f2d385b678f.woff2')format("woff");}.ff3_c00361{font-family:ff3_c00361;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00361;src:url('chunks/assets/font_6a091d1f803e9c2d274c2882.woff2')format("woff");}.ff4_c00361{font-family:ff4_c00361;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00361;src:url('chunks/assets/font_1794b7927496bc2aa1b5a15b.woff2')format("woff");}.ff5_c00361{font-family:ff5_c00361;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00361;src:url('chunks/assets/font_34390a6723c602c50f560444.woff2')format("woff");}.ff6_c00361{font-family:ff6_c00361;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00361;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff7_c00361{font-family:ff7_c00361;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00361{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00361{vertical-align:0.000000px;}
.ls7_c00361{letter-spacing:0.000000px;}
.ls8_c00361{letter-spacing:3.000000px;}
.ls0_c00361{letter-spacing:6.000000px;}
.ls1_c00361{letter-spacing:6.540000px;}
.ls2_c00361{letter-spacing:11.400000px;}
.ls9_c00361{letter-spacing:12.000000px;}
.ls6_c00361{letter-spacing:23.940000px;}
.ls5_c00361{letter-spacing:31.293000px;}
.ls4_c00361{letter-spacing:34.293000px;}
.ls3_c00361{letter-spacing:115.293000px;}
.sc__c00361{text-shadow:none;}
.sc0_c00361{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00361{-webkit-text-stroke:0px transparent;}
.sc0_c00361{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00361{word-spacing:-48.258000px;}
.ws4_c00361{word-spacing:-26.340000px;}
.ws5_c00361{word-spacing:-20.340000px;}
.ws2_c00361{word-spacing:-18.060000px;}
.ws0_c00361{word-spacing:-15.060000px;}
.ws1_c00361{word-spacing:-14.160000px;}
.ws6_c00361{word-spacing:0.000000px;}
._26_c00361{margin-left:-19.890000px;}
._32_c00361{margin-left:-15.120000px;}
._f_c00361{margin-left:-13.260000px;}
._16_c00361{margin-left:-12.060000px;}
._9_c00361{margin-left:-10.440000px;}
._6_c00361{margin-left:-9.060000px;}
._3_c00361{margin-left:-7.560000px;}
._7_c00361{margin-left:-6.060000px;}
._4_c00361{margin-left:-4.920000px;}
._1_c00361{margin-left:-3.420000px;}
._0_c00361{margin-left:-1.440000px;}
._17_c00361{width:1.260000px;}
._c_c00361{width:2.640000px;}
._b_c00361{width:4.080000px;}
._1b_c00361{width:5.760000px;}
._5_c00361{width:7.020000px;}
._8_c00361{width:9.060000px;}
._2_c00361{width:10.920000px;}
._e_c00361{width:12.720000px;}
._2d_c00361{width:14.292000px;}
._23_c00361{width:15.360000px;}
._1c_c00361{width:16.500000px;}
._13_c00361{width:17.880000px;}
._29_c00361{width:19.320000px;}
._14_c00361{width:21.900000px;}
._19_c00361{width:23.100000px;}
._18_c00361{width:24.120000px;}
._2f_c00361{width:25.680000px;}
._25_c00361{width:26.976000px;}
._22_c00361{width:30.300000px;}
._1a_c00361{width:34.260000px;}
._27_c00361{width:37.764000px;}
._24_c00361{width:46.575000px;}
._1e_c00361{width:52.620000px;}
._a_c00361{width:55.260000px;}
._d_c00361{width:59.520000px;}
._1f_c00361{width:61.620000px;}
._10_c00361{width:63.000000px;}
._12_c00361{width:67.680000px;}
._15_c00361{width:71.520000px;}
._33_c00361{width:77.988000px;}
._31_c00361{width:79.260000px;}
._21_c00361{width:88.920000px;}
._2b_c00361{width:95.247000px;}
._1d_c00361{width:96.600000px;}
._2e_c00361{width:102.840000px;}
._28_c00361{width:111.420000px;}
._2c_c00361{width:112.626000px;}
._2a_c00361{width:252.699000px;}
._20_c00361{width:288.060000px;}
._30_c00361{width:346.500000px;}
._11_c00361{width:626.100000px;}
.fc2_c00361{color:transparent;}
.fc1_c00361{color:rgb(128,128,128);}
.fc0_c00361{color:rgb(0,0,0);}
.fs3_c00361{font-size:48.000000px;}
.fs1_c00361{font-size:57.000000px;}
.fs0_c00361{font-size:60.000000px;}
.fs2_c00361{font-size:66.000000px;}
.y0_c00361{bottom:0.000000px;}
.y43_c00361{bottom:3.105000px;}
.y42_c00361{bottom:7.228355px;}
.y41_c00361{bottom:34.785000px;}
.y40_c00361{bottom:51.885000px;}
.y3f_c00361{bottom:70.785000px;}
.y30_c00361{bottom:88.035000px;}
.y3e_c00361{bottom:89.385000px;}
.y2f_c00361{bottom:106.185000px;}
.y3d_c00361{bottom:106.935000px;}
.y2e_c00361{bottom:124.185000px;}
.y3c_c00361{bottom:125.235000px;}
.y2d_c00361{bottom:142.335000px;}
.y3b_c00361{bottom:143.085000px;}
.y2c_c00361{bottom:160.635000px;}
.y3a_c00361{bottom:161.235000px;}
.y2b_c00361{bottom:178.185000px;}
.y39_c00361{bottom:179.535000px;}
.y2a_c00361{bottom:196.785000px;}
.y38_c00361{bottom:197.385000px;}
.y29_c00361{bottom:214.635000px;}
.y37_c00361{bottom:215.985000px;}
.y28_c00361{bottom:232.485000px;}
.y36_c00361{bottom:233.835000px;}
.y27_c00361{bottom:250.635000px;}
.y35_c00361{bottom:251.985000px;}
.y26_c00361{bottom:268.935000px;}
.y34_c00361{bottom:269.985000px;}
.y25_c00361{bottom:286.185000px;}
.y33_c00361{bottom:287.535000px;}
.y24_c00361{bottom:304.635000px;}
.y32_c00361{bottom:305.085000px;}
.y31_c00361{bottom:317.835000px;}
.y23_c00361{bottom:322.185000px;}
.y22_c00361{bottom:322.635000px;}
.y21_c00361{bottom:341.085000px;}
.y20_c00361{bottom:359.085000px;}
.y14_c00361{bottom:373.185000px;}
.y1f_c00361{bottom:377.235000px;}
.y1e_c00361{bottom:395.085000px;}
.y1d_c00361{bottom:413.085000px;}
.y1c_c00361{bottom:430.935000px;}
.y13_c00361{bottom:447.885000px;}
.y15_c00361{bottom:448.185000px;}
.y1b_c00361{bottom:449.235000px;}
.y12_c00361{bottom:467.085000px;}
.y1a_c00361{bottom:467.385000px;}
.y19_c00361{bottom:484.635000px;}
.y18_c00361{bottom:503.085000px;}
.y17_c00361{bottom:521.085000px;}
.y16_c00361{bottom:539.535000px;}
.yd_c00361{bottom:556.785000px;}
.y11_c00361{bottom:557.085000px;}
.yc_c00361{bottom:574.335000px;}
.y10_c00361{bottom:574.785000px;}
.yb_c00361{bottom:592.635000px;}
.yf_c00361{bottom:592.935000px;}
.ye_c00361{bottom:611.085000px;}
.ya_c00361{bottom:611.235000px;}
.y9_c00361{bottom:629.085000px;}
.y8_c00361{bottom:647.235000px;}
.y7_c00361{bottom:665.085000px;}
.y6_c00361{bottom:683.085000px;}
.y5_c00361{bottom:701.535000px;}
.y4_c00361{bottom:719.835000px;}
.y3_c00361{bottom:736.785000px;}
.y2_c00361{bottom:755.535000px;}
.y1_c00361{bottom:773.235000px;}
.h6_c00361{height:13.200074px;}
.h7_c00361{height:43.804688px;}
.h4_c00361{height:59.736000px;}
.h2_c00361{height:62.880000px;}
.h3_c00361{height:64.020000px;}
.h5_c00361{height:70.422000px;}
.h0_c00361{height:837.525000px;}
.h1_c00361{height:837.750000px;}
.w2_c00361{width:104.875500px;}
.w1_c00361{width:568.500000px;}
.w0_c00361{width:568.650000px;}
.x0_c00361{left:0.000000px;}
.x9_c00361{left:8.100000px;}
.x8_c00361{left:10.200000px;}
.x12_c00361{left:65.850000px;}
.x11_c00361{left:66.900000px;}
.x10_c00361{left:67.950000px;}
.xf_c00361{left:69.600000px;}
.xe_c00361{left:70.950000px;}
.x1_c00361{left:72.000000px;}
.xc_c00361{left:73.650000px;}
.xb_c00361{left:74.700000px;}
.x5_c00361{left:75.900000px;}
.x3_c00361{left:76.950000px;}
.x4_c00361{left:106.650000px;}
.x2_c00361{left:117.600000px;}
.x18_c00361{left:236.139267px;}
.x16_c00361{left:289.200000px;}
.x15_c00361{left:290.550000px;}
.xd_c00361{left:291.600000px;}
.x14_c00361{left:292.650000px;}
.x7_c00361{left:297.450000px;}
.x6_c00361{left:298.650000px;}
.x13_c00361{left:363.600000px;}
.x17_c00361{left:461.700000px;}
.xa_c00361{left:535.950000px;}
@media print{
.v0_c00361{vertical-align:0.000000pt;}
.ls7_c00361{letter-spacing:0.000000pt;}
.ls8_c00361{letter-spacing:2.666667pt;}
.ls0_c00361{letter-spacing:5.333333pt;}
.ls1_c00361{letter-spacing:5.813333pt;}
.ls2_c00361{letter-spacing:10.133333pt;}
.ls9_c00361{letter-spacing:10.666667pt;}
.ls6_c00361{letter-spacing:21.280000pt;}
.ls5_c00361{letter-spacing:27.816000pt;}
.ls4_c00361{letter-spacing:30.482667pt;}
.ls3_c00361{letter-spacing:102.482667pt;}
.ws3_c00361{word-spacing:-42.896000pt;}
.ws4_c00361{word-spacing:-23.413333pt;}
.ws5_c00361{word-spacing:-18.080000pt;}
.ws2_c00361{word-spacing:-16.053333pt;}
.ws0_c00361{word-spacing:-13.386667pt;}
.ws1_c00361{word-spacing:-12.586667pt;}
.ws6_c00361{word-spacing:0.000000pt;}
._26_c00361{margin-left:-17.680000pt;}
._32_c00361{margin-left:-13.440000pt;}
._f_c00361{margin-left:-11.786667pt;}
._16_c00361{margin-left:-10.720000pt;}
._9_c00361{margin-left:-9.280000pt;}
._6_c00361{margin-left:-8.053333pt;}
._3_c00361{margin-left:-6.720000pt;}
._7_c00361{margin-left:-5.386667pt;}
._4_c00361{margin-left:-4.373333pt;}
._1_c00361{margin-left:-3.040000pt;}
._0_c00361{margin-left:-1.280000pt;}
._17_c00361{width:1.120000pt;}
._c_c00361{width:2.346667pt;}
._b_c00361{width:3.626667pt;}
._1b_c00361{width:5.120000pt;}
._5_c00361{width:6.240000pt;}
._8_c00361{width:8.053333pt;}
._2_c00361{width:9.706667pt;}
._e_c00361{width:11.306667pt;}
._2d_c00361{width:12.704000pt;}
._23_c00361{width:13.653333pt;}
._1c_c00361{width:14.666667pt;}
._13_c00361{width:15.893333pt;}
._29_c00361{width:17.173333pt;}
._14_c00361{width:19.466667pt;}
._19_c00361{width:20.533333pt;}
._18_c00361{width:21.440000pt;}
._2f_c00361{width:22.826667pt;}
._25_c00361{width:23.978667pt;}
._22_c00361{width:26.933333pt;}
._1a_c00361{width:30.453333pt;}
._27_c00361{width:33.568000pt;}
._24_c00361{width:41.400000pt;}
._1e_c00361{width:46.773333pt;}
._a_c00361{width:49.120000pt;}
._d_c00361{width:52.906667pt;}
._1f_c00361{width:54.773333pt;}
._10_c00361{width:56.000000pt;}
._12_c00361{width:60.160000pt;}
._15_c00361{width:63.573333pt;}
._33_c00361{width:69.322667pt;}
._31_c00361{width:70.453333pt;}
._21_c00361{width:79.040000pt;}
._2b_c00361{width:84.664000pt;}
._1d_c00361{width:85.866667pt;}
._2e_c00361{width:91.413333pt;}
._28_c00361{width:99.040000pt;}
._2c_c00361{width:100.112000pt;}
._2a_c00361{width:224.621333pt;}
._20_c00361{width:256.053333pt;}
._30_c00361{width:308.000000pt;}
._11_c00361{width:556.533333pt;}
.fs3_c00361{font-size:42.666667pt;}
.fs1_c00361{font-size:50.666667pt;}
.fs0_c00361{font-size:53.333333pt;}
.fs2_c00361{font-size:58.666667pt;}
.y0_c00361{bottom:0.000000pt;}
.y43_c00361{bottom:2.760000pt;}
.y42_c00361{bottom:6.425204pt;}
.y41_c00361{bottom:30.920000pt;}
.y40_c00361{bottom:46.120000pt;}
.y3f_c00361{bottom:62.920000pt;}
.y30_c00361{bottom:78.253333pt;}
.y3e_c00361{bottom:79.453333pt;}
.y2f_c00361{bottom:94.386667pt;}
.y3d_c00361{bottom:95.053333pt;}
.y2e_c00361{bottom:110.386667pt;}
.y3c_c00361{bottom:111.320000pt;}
.y2d_c00361{bottom:126.520000pt;}
.y3b_c00361{bottom:127.186667pt;}
.y2c_c00361{bottom:142.786667pt;}
.y3a_c00361{bottom:143.320000pt;}
.y2b_c00361{bottom:158.386667pt;}
.y39_c00361{bottom:159.586667pt;}
.y2a_c00361{bottom:174.920000pt;}
.y38_c00361{bottom:175.453333pt;}
.y29_c00361{bottom:190.786667pt;}
.y37_c00361{bottom:191.986667pt;}
.y28_c00361{bottom:206.653333pt;}
.y36_c00361{bottom:207.853333pt;}
.y27_c00361{bottom:222.786667pt;}
.y35_c00361{bottom:223.986667pt;}
.y26_c00361{bottom:239.053333pt;}
.y34_c00361{bottom:239.986667pt;}
.y25_c00361{bottom:254.386667pt;}
.y33_c00361{bottom:255.586667pt;}
.y24_c00361{bottom:270.786667pt;}
.y32_c00361{bottom:271.186667pt;}
.y31_c00361{bottom:282.520000pt;}
.y23_c00361{bottom:286.386667pt;}
.y22_c00361{bottom:286.786667pt;}
.y21_c00361{bottom:303.186667pt;}
.y20_c00361{bottom:319.186667pt;}
.y14_c00361{bottom:331.720000pt;}
.y1f_c00361{bottom:335.320000pt;}
.y1e_c00361{bottom:351.186667pt;}
.y1d_c00361{bottom:367.186667pt;}
.y1c_c00361{bottom:383.053333pt;}
.y13_c00361{bottom:398.120000pt;}
.y15_c00361{bottom:398.386667pt;}
.y1b_c00361{bottom:399.320000pt;}
.y12_c00361{bottom:415.186667pt;}
.y1a_c00361{bottom:415.453333pt;}
.y19_c00361{bottom:430.786667pt;}
.y18_c00361{bottom:447.186667pt;}
.y17_c00361{bottom:463.186667pt;}
.y16_c00361{bottom:479.586667pt;}
.yd_c00361{bottom:494.920000pt;}
.y11_c00361{bottom:495.186667pt;}
.yc_c00361{bottom:510.520000pt;}
.y10_c00361{bottom:510.920000pt;}
.yb_c00361{bottom:526.786667pt;}
.yf_c00361{bottom:527.053333pt;}
.ye_c00361{bottom:543.186667pt;}
.ya_c00361{bottom:543.320000pt;}
.y9_c00361{bottom:559.186667pt;}
.y8_c00361{bottom:575.320000pt;}
.y7_c00361{bottom:591.186667pt;}
.y6_c00361{bottom:607.186667pt;}
.y5_c00361{bottom:623.586667pt;}
.y4_c00361{bottom:639.853333pt;}
.y3_c00361{bottom:654.920000pt;}
.y2_c00361{bottom:671.586667pt;}
.y1_c00361{bottom:687.320000pt;}
.h6_c00361{height:11.733399pt;}
.h7_c00361{height:38.937500pt;}
.h4_c00361{height:53.098667pt;}
.h2_c00361{height:55.893333pt;}
.h3_c00361{height:56.906667pt;}
.h5_c00361{height:62.597333pt;}
.h0_c00361{height:744.466667pt;}
.h1_c00361{height:744.666667pt;}
.w2_c00361{width:93.222667pt;}
.w1_c00361{width:505.333333pt;}
.w0_c00361{width:505.466667pt;}
.x0_c00361{left:0.000000pt;}
.x9_c00361{left:7.200000pt;}
.x8_c00361{left:9.066667pt;}
.x12_c00361{left:58.533333pt;}
.x11_c00361{left:59.466667pt;}
.x10_c00361{left:60.400000pt;}
.xf_c00361{left:61.866667pt;}
.xe_c00361{left:63.066667pt;}
.x1_c00361{left:64.000000pt;}
.xc_c00361{left:65.466667pt;}
.xb_c00361{left:66.400000pt;}
.x5_c00361{left:67.466667pt;}
.x3_c00361{left:68.400000pt;}
.x4_c00361{left:94.800000pt;}
.x2_c00361{left:104.533333pt;}
.x18_c00361{left:209.901571pt;}
.x16_c00361{left:257.066667pt;}
.x15_c00361{left:258.266667pt;}
.xd_c00361{left:259.200000pt;}
.x14_c00361{left:260.133333pt;}
.x7_c00361{left:264.400000pt;}
.x6_c00361{left:265.466667pt;}
.x13_c00361{left:323.200000pt;}
.x17_c00361{left:410.400000pt;}
.xa_c00361{left:476.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d173f3716d6d85c4d48877e9.woff2')format("woff");}.ff1_c00362{font-family:ff1_c00362;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00362;src:url('chunks/assets/font_d949de004a242e4b4bdb8d11.woff2')format("woff");}.ff2_c00362{font-family:ff2_c00362;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00362;src:url('chunks/assets/font_98140fdcd879114c08f85f9d.woff2')format("woff");}.ff3_c00362{font-family:ff3_c00362;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00362;src:url('chunks/assets/font_51fbf8a8be07fa326556a66a.woff2')format("woff");}.ff4_c00362{font-family:ff4_c00362;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00362;src:url('chunks/assets/font_5324b678edefa80ef8f2cc00.woff2')format("woff");}.ff5_c00362{font-family:ff5_c00362;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00362;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff6_c00362{font-family:ff6_c00362;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00362;src:url('chunks/assets/font_ac862928a947090876e2775d.woff2')format("woff");}.ff7_c00362{font-family:ff7_c00362;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00362;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff8_c00362{font-family:ff8_c00362;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00362{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00362{vertical-align:0.000000px;}
.ls7_c00362{letter-spacing:0.000000px;}
.ls3_c00362{letter-spacing:1.200000px;}
.ls0_c00362{letter-spacing:3.000000px;}
.ls6_c00362{letter-spacing:5.400000px;}
.ls4_c00362{letter-spacing:6.000000px;}
.ls5_c00362{letter-spacing:6.093000px;}
.ls2_c00362{letter-spacing:20.940000px;}
.ls1_c00362{letter-spacing:161.940000px;}
.sc__c00362{text-shadow:none;}
.sc0_c00362{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00362{-webkit-text-stroke:0px transparent;}
.sc0_c00362{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00362{word-spacing:-31.746000px;}
.ws5_c00362{word-spacing:-20.340000px;}
.ws6_c00362{word-spacing:-18.060000px;}
.ws1_c00362{word-spacing:-14.160000px;}
.ws4_c00362{word-spacing:-13.452000px;}
.ws3_c00362{word-spacing:-12.291000px;}
.ws0_c00362{word-spacing:-0.300000px;}
.ws7_c00362{word-spacing:0.000000px;}
._2e_c00362{margin-left:-21.030000px;}
._16_c00362{margin-left:-19.320000px;}
._28_c00362{margin-left:-17.820000px;}
._1f_c00362{margin-left:-14.640000px;}
._26_c00362{margin-left:-13.200000px;}
._17_c00362{margin-left:-11.880000px;}
._25_c00362{margin-left:-10.680000px;}
._18_c00362{margin-left:-8.880000px;}
._21_c00362{margin-left:-7.680000px;}
._14_c00362{margin-left:-6.060000px;}
._10_c00362{margin-left:-4.980000px;}
._3_c00362{margin-left:-3.960000px;}
._5_c00362{margin-left:-2.640000px;}
._2_c00362{margin-left:-1.020000px;}
._6_c00362{width:1.140000px;}
._0_c00362{width:2.520000px;}
._1_c00362{width:4.140000px;}
._8_c00362{width:5.640000px;}
._12_c00362{width:7.260000px;}
._d_c00362{width:8.340000px;}
._e_c00362{width:10.560000px;}
._2a_c00362{width:11.670000px;}
._c_c00362{width:12.720000px;}
._7_c00362{width:14.400000px;}
._9_c00362{width:16.020000px;}
._1b_c00362{width:17.580000px;}
._f_c00362{width:20.460000px;}
._11_c00362{width:22.080000px;}
._1c_c00362{width:25.140000px;}
._29_c00362{width:27.240000px;}
._27_c00362{width:28.620000px;}
._2b_c00362{width:31.173000px;}
._2d_c00362{width:32.370000px;}
._a_c00362{width:34.260000px;}
._19_c00362{width:39.840000px;}
._1a_c00362{width:41.340000px;}
._b_c00362{width:44.400000px;}
._2c_c00362{width:47.580000px;}
._23_c00362{width:52.680000px;}
._1d_c00362{width:66.480000px;}
._15_c00362{width:80.580000px;}
._13_c00362{width:105.900000px;}
._1e_c00362{width:131.940000px;}
._20_c00362{width:162.540000px;}
._22_c00362{width:176.160000px;}
._24_c00362{width:178.440000px;}
._2f_c00362{width:181.440000px;}
._4_c00362{width:258.420000px;}
.fc2_c00362{color:transparent;}
.fc1_c00362{color:rgb(128,128,128);}
.fc0_c00362{color:rgb(0,0,0);}
.fs4_c00362{font-size:48.000000px;}
.fs2_c00362{font-size:51.000000px;}
.fs3_c00362{font-size:57.000000px;}
.fs0_c00362{font-size:60.000000px;}
.fs1_c00362{font-size:66.000000px;}
.y0_c00362{bottom:0.000000px;}
.y52_c00362{bottom:3.105000px;}
.y51_c00362{bottom:7.228369px;}
.y50_c00362{bottom:28.620000px;}
.y4f_c00362{bottom:46.920000px;}
.y29_c00362{bottom:48.270000px;}
.y4e_c00362{bottom:66.720000px;}
.y28_c00362{bottom:69.570000px;}
.y4d_c00362{bottom:84.420000px;}
.y27_c00362{bottom:86.370000px;}
.y4c_c00362{bottom:101.970000px;}
.y26_c00362{bottom:103.620000px;}
.y4b_c00362{bottom:119.370000px;}
.y25_c00362{bottom:123.420000px;}
.y4a_c00362{bottom:137.370000px;}
.y24_c00362{bottom:141.120000px;}
.y49_c00362{bottom:155.520000px;}
.y23_c00362{bottom:157.620000px;}
.y48_c00362{bottom:172.770000px;}
.y22_c00362{bottom:175.170000px;}
.y47_c00362{bottom:191.370000px;}
.y21_c00362{bottom:193.620000px;}
.y46_c00362{bottom:209.520000px;}
.y20_c00362{bottom:212.970000px;}
.y45_c00362{bottom:227.370000px;}
.y1f_c00362{bottom:231.120000px;}
.y44_c00362{bottom:244.920000px;}
.y1e_c00362{bottom:249.420000px;}
.y43_c00362{bottom:263.970000px;}
.y1d_c00362{bottom:267.270000px;}
.y42_c00362{bottom:281.520000px;}
.y1c_c00362{bottom:285.420000px;}
.y41_c00362{bottom:300.270000px;}
.y1b_c00362{bottom:304.020000px;}
.y40_c00362{bottom:316.620000px;}
.y1a_c00362{bottom:320.970000px;}
.y3f_c00362{bottom:334.470000px;}
.y19_c00362{bottom:339.870000px;}
.y3e_c00362{bottom:352.320000px;}
.y18_c00362{bottom:358.320000px;}
.y3d_c00362{bottom:369.870000px;}
.y17_c00362{bottom:376.920000px;}
.y3c_c00362{bottom:389.520000px;}
.y16_c00362{bottom:394.170000px;}
.y3b_c00362{bottom:407.070000px;}
.y15_c00362{bottom:412.770000px;}
.y3a_c00362{bottom:425.520000px;}
.y14_c00362{bottom:429.870000px;}
.y13_c00362{bottom:447.870000px;}
.y39_c00362{bottom:462.420000px;}
.y12_c00362{bottom:465.720000px;}
.y38_c00362{bottom:480.270000px;}
.y11_c00362{bottom:484.620000px;}
.y37_c00362{bottom:498.870000px;}
.y10_c00362{bottom:502.170000px;}
.y36_c00362{bottom:515.370000px;}
.yf_c00362{bottom:520.470000px;}
.ye_c00362{bottom:537.270000px;}
.y35_c00362{bottom:551.370000px;}
.yd_c00362{bottom:554.820000px;}
.yc_c00362{bottom:573.120000px;}
.y34_c00362{bottom:588.870000px;}
.yb_c00362{bottom:590.970000px;}
.y33_c00362{bottom:606.870000px;}
.ya_c00362{bottom:609.420000px;}
.y32_c00362{bottom:624.270000px;}
.y9_c00362{bottom:626.970000px;}
.y31_c00362{bottom:642.570000px;}
.y8_c00362{bottom:645.570000px;}
.y30_c00362{bottom:661.320000px;}
.y7_c00362{bottom:663.570000px;}
.y2f_c00362{bottom:679.320000px;}
.y6_c00362{bottom:682.320000px;}
.y2e_c00362{bottom:697.320000px;}
.y5_c00362{bottom:700.020000px;}
.y2d_c00362{bottom:713.820000px;}
.y4_c00362{bottom:718.470000px;}
.y2c_c00362{bottom:733.620000px;}
.y3_c00362{bottom:736.020000px;}
.y2b_c00362{bottom:750.570000px;}
.y2_c00362{bottom:754.320000px;}
.y2a_c00362{bottom:770.070000px;}
.y1_c00362{bottom:772.470000px;}
.h7_c00362{height:13.200073px;}
.h8_c00362{height:43.804688px;}
.h6_c00362{height:59.736000px;}
.h2_c00362{height:62.880000px;}
.h3_c00362{height:64.020000px;}
.h5_c00362{height:64.571777px;}
.h4_c00362{height:70.422000px;}
.h0_c00362{height:835.350000px;}
.h1_c00362{height:835.500000px;}
.w2_c00362{width:104.875500px;}
.w1_c00362{width:583.500000px;}
.w0_c00362{width:583.725000px;}
.x0_c00362{left:0.000000px;}
.xa_c00362{left:11.850000px;}
.x3_c00362{left:18.300000px;}
.x4_c00362{left:19.950000px;}
.x9_c00362{left:24.000000px;}
.x7_c00362{left:27.300000px;}
.x2_c00362{left:78.750000px;}
.x5_c00362{left:79.950000px;}
.x1_c00362{left:81.000000px;}
.x6_c00362{left:82.350000px;}
.x8_c00362{left:83.400000px;}
.x18_c00362{left:243.676758px;}
.xc_c00362{left:297.300000px;}
.xb_c00362{left:298.650000px;}
.xe_c00362{left:299.700000px;}
.x14_c00362{left:301.350000px;}
.x16_c00362{left:302.850000px;}
.xf_c00362{left:314.100000px;}
.x12_c00362{left:315.900000px;}
.x10_c00362{left:329.100000px;}
.x13_c00362{left:331.800000px;}
.x11_c00362{left:371.250000px;}
.xd_c00362{left:375.600000px;}
.x15_c00362{left:400.200000px;}
.x17_c00362{left:466.800000px;}
@media print{
.v0_c00362{vertical-align:0.000000pt;}
.ls7_c00362{letter-spacing:0.000000pt;}
.ls3_c00362{letter-spacing:1.066667pt;}
.ls0_c00362{letter-spacing:2.666667pt;}
.ls6_c00362{letter-spacing:4.800000pt;}
.ls4_c00362{letter-spacing:5.333333pt;}
.ls5_c00362{letter-spacing:5.416000pt;}
.ls2_c00362{letter-spacing:18.613333pt;}
.ls1_c00362{letter-spacing:143.946667pt;}
.ws2_c00362{word-spacing:-28.218667pt;}
.ws5_c00362{word-spacing:-18.080000pt;}
.ws6_c00362{word-spacing:-16.053333pt;}
.ws1_c00362{word-spacing:-12.586667pt;}
.ws4_c00362{word-spacing:-11.957333pt;}
.ws3_c00362{word-spacing:-10.925333pt;}
.ws0_c00362{word-spacing:-0.266667pt;}
.ws7_c00362{word-spacing:0.000000pt;}
._2e_c00362{margin-left:-18.693333pt;}
._16_c00362{margin-left:-17.173333pt;}
._28_c00362{margin-left:-15.840000pt;}
._1f_c00362{margin-left:-13.013333pt;}
._26_c00362{margin-left:-11.733333pt;}
._17_c00362{margin-left:-10.560000pt;}
._25_c00362{margin-left:-9.493333pt;}
._18_c00362{margin-left:-7.893333pt;}
._21_c00362{margin-left:-6.826667pt;}
._14_c00362{margin-left:-5.386667pt;}
._10_c00362{margin-left:-4.426667pt;}
._3_c00362{margin-left:-3.520000pt;}
._5_c00362{margin-left:-2.346667pt;}
._2_c00362{margin-left:-0.906667pt;}
._6_c00362{width:1.013333pt;}
._0_c00362{width:2.240000pt;}
._1_c00362{width:3.680000pt;}
._8_c00362{width:5.013333pt;}
._12_c00362{width:6.453333pt;}
._d_c00362{width:7.413333pt;}
._e_c00362{width:9.386667pt;}
._2a_c00362{width:10.373333pt;}
._c_c00362{width:11.306667pt;}
._7_c00362{width:12.800000pt;}
._9_c00362{width:14.240000pt;}
._1b_c00362{width:15.626667pt;}
._f_c00362{width:18.186667pt;}
._11_c00362{width:19.626667pt;}
._1c_c00362{width:22.346667pt;}
._29_c00362{width:24.213333pt;}
._27_c00362{width:25.440000pt;}
._2b_c00362{width:27.709333pt;}
._2d_c00362{width:28.773333pt;}
._a_c00362{width:30.453333pt;}
._19_c00362{width:35.413333pt;}
._1a_c00362{width:36.746667pt;}
._b_c00362{width:39.466667pt;}
._2c_c00362{width:42.293333pt;}
._23_c00362{width:46.826667pt;}
._1d_c00362{width:59.093333pt;}
._15_c00362{width:71.626667pt;}
._13_c00362{width:94.133333pt;}
._1e_c00362{width:117.280000pt;}
._20_c00362{width:144.480000pt;}
._22_c00362{width:156.586667pt;}
._24_c00362{width:158.613333pt;}
._2f_c00362{width:161.280000pt;}
._4_c00362{width:229.706667pt;}
.fs4_c00362{font-size:42.666667pt;}
.fs2_c00362{font-size:45.333333pt;}
.fs3_c00362{font-size:50.666667pt;}
.fs0_c00362{font-size:53.333333pt;}
.fs1_c00362{font-size:58.666667pt;}
.y0_c00362{bottom:0.000000pt;}
.y52_c00362{bottom:2.760000pt;}
.y51_c00362{bottom:6.425217pt;}
.y50_c00362{bottom:25.440000pt;}
.y4f_c00362{bottom:41.706667pt;}
.y29_c00362{bottom:42.906667pt;}
.y4e_c00362{bottom:59.306667pt;}
.y28_c00362{bottom:61.840000pt;}
.y4d_c00362{bottom:75.040000pt;}
.y27_c00362{bottom:76.773333pt;}
.y4c_c00362{bottom:90.640000pt;}
.y26_c00362{bottom:92.106667pt;}
.y4b_c00362{bottom:106.106667pt;}
.y25_c00362{bottom:109.706667pt;}
.y4a_c00362{bottom:122.106667pt;}
.y24_c00362{bottom:125.440000pt;}
.y49_c00362{bottom:138.240000pt;}
.y23_c00362{bottom:140.106667pt;}
.y48_c00362{bottom:153.573333pt;}
.y22_c00362{bottom:155.706667pt;}
.y47_c00362{bottom:170.106667pt;}
.y21_c00362{bottom:172.106667pt;}
.y46_c00362{bottom:186.240000pt;}
.y20_c00362{bottom:189.306667pt;}
.y45_c00362{bottom:202.106667pt;}
.y1f_c00362{bottom:205.440000pt;}
.y44_c00362{bottom:217.706667pt;}
.y1e_c00362{bottom:221.706667pt;}
.y43_c00362{bottom:234.640000pt;}
.y1d_c00362{bottom:237.573333pt;}
.y42_c00362{bottom:250.240000pt;}
.y1c_c00362{bottom:253.706667pt;}
.y41_c00362{bottom:266.906667pt;}
.y1b_c00362{bottom:270.240000pt;}
.y40_c00362{bottom:281.440000pt;}
.y1a_c00362{bottom:285.306667pt;}
.y3f_c00362{bottom:297.306667pt;}
.y19_c00362{bottom:302.106667pt;}
.y3e_c00362{bottom:313.173333pt;}
.y18_c00362{bottom:318.506667pt;}
.y3d_c00362{bottom:328.773333pt;}
.y17_c00362{bottom:335.040000pt;}
.y3c_c00362{bottom:346.240000pt;}
.y16_c00362{bottom:350.373333pt;}
.y3b_c00362{bottom:361.840000pt;}
.y15_c00362{bottom:366.906667pt;}
.y3a_c00362{bottom:378.240000pt;}
.y14_c00362{bottom:382.106667pt;}
.y13_c00362{bottom:398.106667pt;}
.y39_c00362{bottom:411.040000pt;}
.y12_c00362{bottom:413.973333pt;}
.y38_c00362{bottom:426.906667pt;}
.y11_c00362{bottom:430.773333pt;}
.y37_c00362{bottom:443.440000pt;}
.y10_c00362{bottom:446.373333pt;}
.y36_c00362{bottom:458.106667pt;}
.yf_c00362{bottom:462.640000pt;}
.ye_c00362{bottom:477.573333pt;}
.y35_c00362{bottom:490.106667pt;}
.yd_c00362{bottom:493.173333pt;}
.yc_c00362{bottom:509.440000pt;}
.y34_c00362{bottom:523.440000pt;}
.yb_c00362{bottom:525.306667pt;}
.y33_c00362{bottom:539.440000pt;}
.ya_c00362{bottom:541.706667pt;}
.y32_c00362{bottom:554.906667pt;}
.y9_c00362{bottom:557.306667pt;}
.y31_c00362{bottom:571.173333pt;}
.y8_c00362{bottom:573.840000pt;}
.y30_c00362{bottom:587.840000pt;}
.y7_c00362{bottom:589.840000pt;}
.y2f_c00362{bottom:603.840000pt;}
.y6_c00362{bottom:606.506667pt;}
.y2e_c00362{bottom:619.840000pt;}
.y5_c00362{bottom:622.240000pt;}
.y2d_c00362{bottom:634.506667pt;}
.y4_c00362{bottom:638.640000pt;}
.y2c_c00362{bottom:652.106667pt;}
.y3_c00362{bottom:654.240000pt;}
.y2b_c00362{bottom:667.173333pt;}
.y2_c00362{bottom:670.506667pt;}
.y2a_c00362{bottom:684.506667pt;}
.y1_c00362{bottom:686.640000pt;}
.h7_c00362{height:11.733399pt;}
.h8_c00362{height:38.937500pt;}
.h6_c00362{height:53.098667pt;}
.h2_c00362{height:55.893333pt;}
.h3_c00362{height:56.906667pt;}
.h5_c00362{height:57.397135pt;}
.h4_c00362{height:62.597333pt;}
.h0_c00362{height:742.533333pt;}
.h1_c00362{height:742.666667pt;}
.w2_c00362{width:93.222667pt;}
.w1_c00362{width:518.666667pt;}
.w0_c00362{width:518.866667pt;}
.x0_c00362{left:0.000000pt;}
.xa_c00362{left:10.533333pt;}
.x3_c00362{left:16.266667pt;}
.x4_c00362{left:17.733333pt;}
.x9_c00362{left:21.333333pt;}
.x7_c00362{left:24.266667pt;}
.x2_c00362{left:70.000000pt;}
.x5_c00362{left:71.066667pt;}
.x1_c00362{left:72.000000pt;}
.x6_c00362{left:73.200000pt;}
.x8_c00362{left:74.133333pt;}
.x18_c00362{left:216.601563pt;}
.xc_c00362{left:264.266667pt;}
.xb_c00362{left:265.466667pt;}
.xe_c00362{left:266.400000pt;}
.x14_c00362{left:267.866667pt;}
.x16_c00362{left:269.200000pt;}
.xf_c00362{left:279.200000pt;}
.x12_c00362{left:280.800000pt;}
.x10_c00362{left:292.533333pt;}
.x13_c00362{left:294.933333pt;}
.x11_c00362{left:330.000000pt;}
.xd_c00362{left:333.866667pt;}
.x15_c00362{left:355.733333pt;}
.x17_c00362{left:414.933333pt;}
}





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

.ir_c00363:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00363{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00363;src:url('chunks/assets/font_16b42a0bd8c78a9b7aa88145.woff2')format("woff");}.ff1_c00363{font-family:ff1_c00363;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00363;src:url('chunks/assets/font_2191f4bccdbfaec3fe6d6f84.woff2')format("woff");}.ff2_c00363{font-family:ff2_c00363;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00363;src:url('chunks/assets/font_d7cda5da0f1e42fde92911e9.woff2')format("woff");}.ff3_c00363{font-family:ff3_c00363;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00363;src:url('chunks/assets/font_f3790c11fa1b72b5ebd5d0f3.woff2')format("woff");}.ff4_c00363{font-family:ff4_c00363;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00363;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff5_c00363{font-family:ff5_c00363;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00363{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00363{vertical-align:0.000000px;}
.ls5_c00363{letter-spacing:0.000000px;}
.ls1_c00363{letter-spacing:0.405000px;}
.ls2_c00363{letter-spacing:3.000000px;}
.ls4_c00363{letter-spacing:3.405000px;}
.ls0_c00363{letter-spacing:18.600000px;}
.ls3_c00363{letter-spacing:23.400000px;}
.sc__c00363{text-shadow:none;}
.sc0_c00363{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00363{-webkit-text-stroke:0px transparent;}
.sc0_c00363{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00363{word-spacing:-32.295000px;}
.ws3_c00363{word-spacing:-18.060000px;}
.ws0_c00363{word-spacing:-18.000000px;}
.ws1_c00363{word-spacing:-14.160000px;}
.ws4_c00363{word-spacing:0.000000px;}
._1a_c00363{margin-left:-19.500000px;}
._29_c00363{margin-left:-17.400000px;}
._28_c00363{margin-left:-15.960000px;}
._1b_c00363{margin-left:-14.175000px;}
._21_c00363{margin-left:-12.060000px;}
._27_c00363{margin-left:-10.620000px;}
._2e_c00363{margin-left:-7.680000px;}
._2_c00363{margin-left:-6.660000px;}
._3_c00363{margin-left:-4.560000px;}
._9_c00363{margin-left:-2.820000px;}
._7_c00363{margin-left:-1.500000px;}
._1_c00363{width:1.920000px;}
._0_c00363{width:3.360000px;}
._5_c00363{width:4.620000px;}
._4_c00363{width:5.940000px;}
._19_c00363{width:6.960000px;}
._6_c00363{width:8.040000px;}
._17_c00363{width:9.180000px;}
._a_c00363{width:10.800000px;}
._d_c00363{width:12.300000px;}
._13_c00363{width:14.100000px;}
._22_c00363{width:15.540000px;}
._16_c00363{width:16.860000px;}
._1f_c00363{width:19.680000px;}
._18_c00363{width:20.880000px;}
._b_c00363{width:22.140000px;}
._15_c00363{width:23.700000px;}
._c_c00363{width:25.200000px;}
._26_c00363{width:26.700000px;}
._2a_c00363{width:28.620000px;}
._2c_c00363{width:29.940000px;}
._1d_c00363{width:31.020000px;}
._1c_c00363{width:32.520000px;}
._20_c00363{width:33.720000px;}
._24_c00363{width:34.860000px;}
._25_c00363{width:36.000000px;}
._f_c00363{width:38.580000px;}
._e_c00363{width:39.780000px;}
._1e_c00363{width:41.460000px;}
._8_c00363{width:42.540000px;}
._12_c00363{width:43.860000px;}
._2d_c00363{width:44.940000px;}
._14_c00363{width:46.080000px;}
._23_c00363{width:47.760000px;}
._11_c00363{width:49.440000px;}
._10_c00363{width:50.880000px;}
._2b_c00363{width:256.560000px;}
.fc2_c00363{color:transparent;}
.fc1_c00363{color:rgb(128,128,128);}
.fc0_c00363{color:rgb(0,0,0);}
.fs1_c00363{font-size:45.000000px;}
.fs2_c00363{font-size:48.000000px;}
.fs0_c00363{font-size:60.000000px;}
.y0_c00363{bottom:0.000000px;}
.y2c_c00363{bottom:3.105000px;}
.y2b_c00363{bottom:7.228357px;}
.y2a_c00363{bottom:32.130000px;}
.y29_c00363{bottom:49.230000px;}
.y28_c00363{bottom:67.830000px;}
.y27_c00363{bottom:85.830000px;}
.y26_c00363{bottom:103.980000px;}
.y25_c00363{bottom:122.130000px;}
.y24_c00363{bottom:139.830000px;}
.y23_c00363{bottom:158.280000px;}
.y22_c00363{bottom:176.130000px;}
.y21_c00363{bottom:193.830000px;}
.y20_c00363{bottom:211.980000px;}
.y1f_c00363{bottom:230.130000px;}
.y1e_c00363{bottom:247.830000px;}
.y1d_c00363{bottom:265.680000px;}
.y1c_c00363{bottom:283.230000px;}
.y1b_c00363{bottom:300.780000px;}
.y1a_c00363{bottom:318.330000px;}
.y19_c00363{bottom:336.480000px;}
.y18_c00363{bottom:354.780000px;}
.y17_c00363{bottom:372.630000px;}
.y16_c00363{bottom:390.180000px;}
.y15_c00363{bottom:408.480000px;}
.y14_c00363{bottom:426.630000px;}
.y13_c00363{bottom:444.930000px;}
.y12_c00363{bottom:462.480000px;}
.y11_c00363{bottom:480.630000px;}
.y10_c00363{bottom:498.930000px;}
.yf_c00363{bottom:516.330000px;}
.ye_c00363{bottom:534.930000px;}
.yd_c00363{bottom:552.780000px;}
.yc_c00363{bottom:570.480000px;}
.yb_c00363{bottom:588.630000px;}
.ya_c00363{bottom:606.780000px;}
.y9_c00363{bottom:624.780000px;}
.y8_c00363{bottom:642.630000px;}
.y7_c00363{bottom:660.930000px;}
.y6_c00363{bottom:678.780000px;}
.y5_c00363{bottom:697.380000px;}
.y4_c00363{bottom:715.530000px;}
.y3_c00363{bottom:733.680000px;}
.y2_c00363{bottom:751.680000px;}
.y1_c00363{bottom:770.280000px;}
.h4_c00363{height:13.200074px;}
.h5_c00363{height:43.804688px;}
.h2_c00363{height:62.880000px;}
.h3_c00363{height:64.020000px;}
.h1_c00363{height:830.250000px;}
.h0_c00363{height:830.550000px;}
.w2_c00363{width:104.875500px;}
.w1_c00363{width:564.000000px;}
.w0_c00363{width:564.300000px;}
.x0_c00363{left:0.000000px;}
.x6_c00363{left:70.200000px;}
.x5_c00363{left:71.550000px;}
.x4_c00363{left:72.900000px;}
.x3_c00363{left:74.550000px;}
.x2_c00363{left:75.600000px;}
.x1_c00363{left:76.950000px;}
.x8_c00363{left:233.964249px;}
.x7_c00363{left:455.400000px;}
@media print{
.v0_c00363{vertical-align:0.000000pt;}
.ls5_c00363{letter-spacing:0.000000pt;}
.ls1_c00363{letter-spacing:0.360000pt;}
.ls2_c00363{letter-spacing:2.666667pt;}
.ls4_c00363{letter-spacing:3.026667pt;}
.ls0_c00363{letter-spacing:16.533333pt;}
.ls3_c00363{letter-spacing:20.800000pt;}
.ws2_c00363{word-spacing:-28.706667pt;}
.ws3_c00363{word-spacing:-16.053333pt;}
.ws0_c00363{word-spacing:-16.000000pt;}
.ws1_c00363{word-spacing:-12.586667pt;}
.ws4_c00363{word-spacing:0.000000pt;}
._1a_c00363{margin-left:-17.333333pt;}
._29_c00363{margin-left:-15.466667pt;}
._28_c00363{margin-left:-14.186667pt;}
._1b_c00363{margin-left:-12.600000pt;}
._21_c00363{margin-left:-10.720000pt;}
._27_c00363{margin-left:-9.440000pt;}
._2e_c00363{margin-left:-6.826667pt;}
._2_c00363{margin-left:-5.920000pt;}
._3_c00363{margin-left:-4.053333pt;}
._9_c00363{margin-left:-2.506667pt;}
._7_c00363{margin-left:-1.333333pt;}
._1_c00363{width:1.706667pt;}
._0_c00363{width:2.986667pt;}
._5_c00363{width:4.106667pt;}
._4_c00363{width:5.280000pt;}
._19_c00363{width:6.186667pt;}
._6_c00363{width:7.146667pt;}
._17_c00363{width:8.160000pt;}
._a_c00363{width:9.600000pt;}
._d_c00363{width:10.933333pt;}
._13_c00363{width:12.533333pt;}
._22_c00363{width:13.813333pt;}
._16_c00363{width:14.986667pt;}
._1f_c00363{width:17.493333pt;}
._18_c00363{width:18.560000pt;}
._b_c00363{width:19.680000pt;}
._15_c00363{width:21.066667pt;}
._c_c00363{width:22.400000pt;}
._26_c00363{width:23.733333pt;}
._2a_c00363{width:25.440000pt;}
._2c_c00363{width:26.613333pt;}
._1d_c00363{width:27.573333pt;}
._1c_c00363{width:28.906667pt;}
._20_c00363{width:29.973333pt;}
._24_c00363{width:30.986667pt;}
._25_c00363{width:32.000000pt;}
._f_c00363{width:34.293333pt;}
._e_c00363{width:35.360000pt;}
._1e_c00363{width:36.853333pt;}
._8_c00363{width:37.813333pt;}
._12_c00363{width:38.986667pt;}
._2d_c00363{width:39.946667pt;}
._14_c00363{width:40.960000pt;}
._23_c00363{width:42.453333pt;}
._11_c00363{width:43.946667pt;}
._10_c00363{width:45.226667pt;}
._2b_c00363{width:228.053333pt;}
.fs1_c00363{font-size:40.000000pt;}
.fs2_c00363{font-size:42.666667pt;}
.fs0_c00363{font-size:53.333333pt;}
.y0_c00363{bottom:0.000000pt;}
.y2c_c00363{bottom:2.760000pt;}
.y2b_c00363{bottom:6.425206pt;}
.y2a_c00363{bottom:28.560000pt;}
.y29_c00363{bottom:43.760000pt;}
.y28_c00363{bottom:60.293333pt;}
.y27_c00363{bottom:76.293333pt;}
.y26_c00363{bottom:92.426667pt;}
.y25_c00363{bottom:108.560000pt;}
.y24_c00363{bottom:124.293333pt;}
.y23_c00363{bottom:140.693333pt;}
.y22_c00363{bottom:156.560000pt;}
.y21_c00363{bottom:172.293333pt;}
.y20_c00363{bottom:188.426667pt;}
.y1f_c00363{bottom:204.560000pt;}
.y1e_c00363{bottom:220.293333pt;}
.y1d_c00363{bottom:236.160000pt;}
.y1c_c00363{bottom:251.760000pt;}
.y1b_c00363{bottom:267.360000pt;}
.y1a_c00363{bottom:282.960000pt;}
.y19_c00363{bottom:299.093333pt;}
.y18_c00363{bottom:315.360000pt;}
.y17_c00363{bottom:331.226667pt;}
.y16_c00363{bottom:346.826667pt;}
.y15_c00363{bottom:363.093333pt;}
.y14_c00363{bottom:379.226667pt;}
.y13_c00363{bottom:395.493333pt;}
.y12_c00363{bottom:411.093333pt;}
.y11_c00363{bottom:427.226667pt;}
.y10_c00363{bottom:443.493333pt;}
.yf_c00363{bottom:458.960000pt;}
.ye_c00363{bottom:475.493333pt;}
.yd_c00363{bottom:491.360000pt;}
.yc_c00363{bottom:507.093333pt;}
.yb_c00363{bottom:523.226667pt;}
.ya_c00363{bottom:539.360000pt;}
.y9_c00363{bottom:555.360000pt;}
.y8_c00363{bottom:571.226667pt;}
.y7_c00363{bottom:587.493333pt;}
.y6_c00363{bottom:603.360000pt;}
.y5_c00363{bottom:619.893333pt;}
.y4_c00363{bottom:636.026667pt;}
.y3_c00363{bottom:652.160000pt;}
.y2_c00363{bottom:668.160000pt;}
.y1_c00363{bottom:684.693333pt;}
.h4_c00363{height:11.733399pt;}
.h5_c00363{height:38.937500pt;}
.h2_c00363{height:55.893333pt;}
.h3_c00363{height:56.906667pt;}
.h1_c00363{height:738.000000pt;}
.h0_c00363{height:738.266667pt;}
.w2_c00363{width:93.222667pt;}
.w1_c00363{width:501.333333pt;}
.w0_c00363{width:501.600000pt;}
.x0_c00363{left:0.000000pt;}
.x6_c00363{left:62.400000pt;}
.x5_c00363{left:63.600000pt;}
.x4_c00363{left:64.800000pt;}
.x3_c00363{left:66.266667pt;}
.x2_c00363{left:67.200000pt;}
.x1_c00363{left:68.400000pt;}
.x8_c00363{left:207.968221pt;}
.x7_c00363{left:404.800000pt;}
}





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

.ir_c00364:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00364{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00364;src:url('chunks/assets/font_79d4a208bfb4a911907455d5.woff2')format("woff");}.ff1_c00364{font-family:ff1_c00364;line-height:1.437000;font-style:normal;font-weight:normal;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_7b27e8773d5289a4312791dc.woff2')format("woff");}.ff2_c00364{font-family:ff2_c00364;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00364;src:url('chunks/assets/font_987fd8d8b422e99f6ed47ff9.woff2')format("woff");}.ff3_c00364{font-family:ff3_c00364;line-height:1.437000;font-style:normal;font-weight:normal;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_bc496c2fae424e0952f06eaa.woff2')format("woff");}.ff4_c00364{font-family:ff4_c00364;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00364;src:url('chunks/assets/font_43128f919ab5cf7279cdc342.woff2')format("woff");}.ff5_c00364{font-family:ff5_c00364;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00364;src:url('chunks/assets/font_d2469cbd780481ddec5563fb.woff2')format("woff");}.ff6_c00364{font-family:ff6_c00364;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00364;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff7_c00364{font-family:ff7_c00364;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00364;src:url('chunks/assets/font_8082d2cda39823b754f0dada.woff2')format("woff");}.ff8_c00364{font-family:ff8_c00364;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00364;src:url('chunks/assets/font_fa4d0194adc4df0b7b1be7e7.woff2')format("woff");}.ff9_c00364{font-family:ff9_c00364;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00364;src:url('chunks/assets/font_0ce391de997f24f9f9dd37f4.woff2')format("woff");}.ffa_c00364{font-family:ffa_c00364;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00364;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ffb_c00364{font-family:ffb_c00364;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00364{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00364{vertical-align:0.000000px;}
.ls5_c00364{letter-spacing:0.000000px;}
.ls1_c00364{letter-spacing:3.000000px;}
.ls4_c00364{letter-spacing:3.405000px;}
.ls2_c00364{letter-spacing:6.000000px;}
.ls3_c00364{letter-spacing:8.580000px;}
.ls6_c00364{letter-spacing:9.000000px;}
.ls0_c00364{letter-spacing:38.250000px;}
.sc__c00364{text-shadow:none;}
.sc0_c00364{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00364{-webkit-text-stroke:0px transparent;}
.sc0_c00364{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00364{word-spacing:-32.295000px;}
.ws3_c00364{word-spacing:-27.417000px;}
.ws0_c00364{word-spacing:-20.340000px;}
.ws5_c00364{word-spacing:-16.038000px;}
.ws1_c00364{word-spacing:-14.160000px;}
.ws4_c00364{word-spacing:-12.912000px;}
.ws2_c00364{word-spacing:-12.291000px;}
.ws7_c00364{word-spacing:0.000000px;}
._19_c00364{margin-left:-25.320000px;}
._33_c00364{margin-left:-16.893000px;}
._21_c00364{margin-left:-14.025000px;}
._9_c00364{margin-left:-11.220000px;}
._1b_c00364{margin-left:-9.300000px;}
._1a_c00364{margin-left:-7.320000px;}
._15_c00364{margin-left:-6.000000px;}
._b_c00364{margin-left:-4.080000px;}
._16_c00364{margin-left:-2.880000px;}
._10_c00364{margin-left:-1.260000px;}
._13_c00364{width:1.053000px;}
._8_c00364{width:2.100000px;}
._d_c00364{width:3.480000px;}
._17_c00364{width:4.560000px;}
._a_c00364{width:5.580000px;}
._f_c00364{width:7.440000px;}
._6_c00364{width:9.000000px;}
._1e_c00364{width:10.569000px;}
._1_c00364{width:11.640000px;}
._23_c00364{width:12.840000px;}
._0_c00364{width:14.340000px;}
._12_c00364{width:16.299000px;}
._1c_c00364{width:18.300000px;}
._3_c00364{width:20.160000px;}
._4_c00364{width:21.960000px;}
._2c_c00364{width:24.054000px;}
._5_c00364{width:25.260000px;}
._2a_c00364{width:26.688000px;}
._2b_c00364{width:28.014000px;}
._1f_c00364{width:30.447000px;}
._2d_c00364{width:32.400000px;}
._22_c00364{width:33.540000px;}
._2e_c00364{width:34.821000px;}
._14_c00364{width:36.594000px;}
._e_c00364{width:38.700000px;}
._30_c00364{width:42.240000px;}
._2_c00364{width:43.440000px;}
._26_c00364{width:44.781000px;}
._1d_c00364{width:45.990000px;}
._25_c00364{width:48.147000px;}
._28_c00364{width:50.670000px;}
._37_c00364{width:60.801000px;}
._32_c00364{width:76.887000px;}
._2f_c00364{width:82.191000px;}
._c_c00364{width:88.080000px;}
._36_c00364{width:93.750000px;}
._24_c00364{width:95.940000px;}
._20_c00364{width:128.292000px;}
._27_c00364{width:157.560000px;}
._11_c00364{width:185.280000px;}
._29_c00364{width:192.207000px;}
._38_c00364{width:201.051000px;}
._31_c00364{width:214.452000px;}
._18_c00364{width:251.061000px;}
._34_c00364{width:323.046000px;}
._7_c00364{width:449.940000px;}
._35_c00364{width:503.166000px;}
.fc2_c00364{color:transparent;}
.fc1_c00364{color:rgb(128,128,128);}
.fc0_c00364{color:rgb(0,0,0);}
.fs5_c00364{font-size:39.000000px;}
.fs4_c00364{font-size:42.000000px;}
.fs6_c00364{font-size:45.000000px;}
.fs7_c00364{font-size:48.000000px;}
.fs1_c00364{font-size:51.000000px;}
.fs3_c00364{font-size:57.000000px;}
.fs0_c00364{font-size:60.000000px;}
.fs2_c00364{font-size:63.000000px;}
.y0_c00364{bottom:0.000000px;}
.y52_c00364{bottom:3.105000px;}
.y51_c00364{bottom:7.228371px;}
.y50_c00364{bottom:43.965000px;}
.y4f_c00364{bottom:61.515000px;}
.y49_c00364{bottom:63.765000px;}
.y4e_c00364{bottom:80.115000px;}
.y48_c00364{bottom:82.065000px;}
.y4d_c00364{bottom:97.965000px;}
.y47_c00364{bottom:99.615000px;}
.y4c_c00364{bottom:116.865000px;}
.y46_c00364{bottom:117.765000px;}
.y4b_c00364{bottom:134.415000px;}
.y45_c00364{bottom:135.765000px;}
.y4a_c00364{bottom:152.565000px;}
.y44_c00364{bottom:153.315000px;}
.y43_c00364{bottom:159.615000px;}
.y42_c00364{bottom:171.165000px;}
.y41_c00364{bottom:188.415000px;}
.y23_c00364{bottom:189.465000px;}
.y40_c00364{bottom:207.015000px;}
.y22_c00364{bottom:207.315000px;}
.y3f_c00364{bottom:224.865000px;}
.y21_c00364{bottom:225.615000px;}
.y3e_c00364{bottom:242.415000px;}
.y20_c00364{bottom:243.465000px;}
.y3d_c00364{bottom:260.565000px;}
.y1f_c00364{bottom:261.315000px;}
.y3c_c00364{bottom:278.415000px;}
.y1e_c00364{bottom:279.165000px;}
.y3b_c00364{bottom:296.415000px;}
.y1d_c00364{bottom:297.315000px;}
.y3a_c00364{bottom:314.265000px;}
.y1c_c00364{bottom:315.315000px;}
.y39_c00364{bottom:332.565000px;}
.y1b_c00364{bottom:333.615000px;}
.y38_c00364{bottom:350.115000px;}
.y1a_c00364{bottom:351.465000px;}
.y37_c00364{bottom:368.265000px;}
.y19_c00364{bottom:369.315000px;}
.y36_c00364{bottom:385.065000px;}
.y18_c00364{bottom:387.915000px;}
.y35_c00364{bottom:403.665000px;}
.y17_c00364{bottom:405.765000px;}
.y34_c00364{bottom:422.265000px;}
.y16_c00364{bottom:423.915000px;}
.y33_c00364{bottom:440.115000px;}
.y15_c00364{bottom:441.465000px;}
.y32_c00364{bottom:457.965000px;}
.y14_c00364{bottom:459.315000px;}
.y31_c00364{bottom:476.265000px;}
.y13_c00364{bottom:477.015000px;}
.y30_c00364{bottom:494.115000px;}
.y12_c00364{bottom:494.865000px;}
.y2f_c00364{bottom:511.665000px;}
.y11_c00364{bottom:512.115000px;}
.y10_c00364{bottom:529.215000px;}
.y2e_c00364{bottom:529.665000px;}
.yf_c00364{bottom:546.765000px;}
.y2d_c00364{bottom:547.515000px;}
.ye_c00364{bottom:564.765000px;}
.y2c_c00364{bottom:565.965000px;}
.yd_c00364{bottom:582.915000px;}
.y2b_c00364{bottom:583.665000px;}
.yc_c00364{bottom:601.065000px;}
.y2a_c00364{bottom:601.515000px;}
.yb_c00364{bottom:619.365000px;}
.y29_c00364{bottom:619.665000px;}
.ya_c00364{bottom:637.215000px;}
.y9_c00364{bottom:655.215000px;}
.y28_c00364{bottom:656.115000px;}
.y8_c00364{bottom:673.665000px;}
.y27_c00364{bottom:674.115000px;}
.y7_c00364{bottom:691.515000px;}
.y6_c00364{bottom:709.515000px;}
.y26_c00364{bottom:709.815000px;}
.y5_c00364{bottom:727.665000px;}
.y4_c00364{bottom:745.665000px;}
.y25_c00364{bottom:746.265000px;}
.y3_c00364{bottom:763.215000px;}
.y24_c00364{bottom:764.415000px;}
.y2_c00364{bottom:781.065000px;}
.y1_c00364{bottom:801.015000px;}
.h8_c00364{height:13.200074px;}
.h9_c00364{height:43.804688px;}
.h7_c00364{height:44.016000px;}
.h4_c00364{height:59.690918px;}
.h3_c00364{height:62.880000px;}
.h2_c00364{height:64.020000px;}
.h5_c00364{height:64.571777px;}
.h6_c00364{height:66.024000px;}
.h1_c00364{height:844.500000px;}
.h0_c00364{height:844.575000px;}
.w1_c00364{width:104.875500px;}
.w0_c00364{width:590.250000px;}
.x0_c00364{left:0.000000px;}
.xe_c00364{left:16.800000px;}
.x1c_c00364{left:18.000000px;}
.xd_c00364{left:19.500000px;}
.x6_c00364{left:22.500000px;}
.x7_c00364{left:25.200000px;}
.x1d_c00364{left:74.550000px;}
.xb_c00364{left:76.500000px;}
.xc_c00364{left:77.850000px;}
.xa_c00364{left:80.550000px;}
.x8_c00364{left:81.900000px;}
.x2_c00364{left:82.950000px;}
.x5_c00364{left:84.750000px;}
.x3_c00364{left:86.700000px;}
.x1e_c00364{left:105.300000px;}
.x4_c00364{left:114.300000px;}
.x9_c00364{left:155.550000px;}
.x1_c00364{left:216.600000px;}
.x21_c00364{left:246.939240px;}
.x1b_c00364{left:290.250000px;}
.x1f_c00364{left:291.600000px;}
.x1a_c00364{left:293.250000px;}
.x19_c00364{left:294.300000px;}
.x18_c00364{left:295.950000px;}
.x17_c00364{left:297.900000px;}
.x16_c00364{left:298.950000px;}
.x15_c00364{left:300.300000px;}
.x14_c00364{left:302.400000px;}
.x13_c00364{left:303.750000px;}
.x12_c00364{left:304.800000px;}
.x11_c00364{left:306.150000px;}
.x10_c00364{left:307.350000px;}
.xf_c00364{left:309.750000px;}
.x20_c00364{left:394.500000px;}
@media print{
.v0_c00364{vertical-align:0.000000pt;}
.ls5_c00364{letter-spacing:0.000000pt;}
.ls1_c00364{letter-spacing:2.666667pt;}
.ls4_c00364{letter-spacing:3.026667pt;}
.ls2_c00364{letter-spacing:5.333333pt;}
.ls3_c00364{letter-spacing:7.626667pt;}
.ls6_c00364{letter-spacing:8.000000pt;}
.ls0_c00364{letter-spacing:34.000000pt;}
.ws6_c00364{word-spacing:-28.706667pt;}
.ws3_c00364{word-spacing:-24.370667pt;}
.ws0_c00364{word-spacing:-18.080000pt;}
.ws5_c00364{word-spacing:-14.256000pt;}
.ws1_c00364{word-spacing:-12.586667pt;}
.ws4_c00364{word-spacing:-11.477333pt;}
.ws2_c00364{word-spacing:-10.925333pt;}
.ws7_c00364{word-spacing:0.000000pt;}
._19_c00364{margin-left:-22.506667pt;}
._33_c00364{margin-left:-15.016000pt;}
._21_c00364{margin-left:-12.466667pt;}
._9_c00364{margin-left:-9.973333pt;}
._1b_c00364{margin-left:-8.266667pt;}
._1a_c00364{margin-left:-6.506667pt;}
._15_c00364{margin-left:-5.333333pt;}
._b_c00364{margin-left:-3.626667pt;}
._16_c00364{margin-left:-2.560000pt;}
._10_c00364{margin-left:-1.120000pt;}
._13_c00364{width:0.936000pt;}
._8_c00364{width:1.866667pt;}
._d_c00364{width:3.093333pt;}
._17_c00364{width:4.053333pt;}
._a_c00364{width:4.960000pt;}
._f_c00364{width:6.613333pt;}
._6_c00364{width:8.000000pt;}
._1e_c00364{width:9.394667pt;}
._1_c00364{width:10.346667pt;}
._23_c00364{width:11.413333pt;}
._0_c00364{width:12.746667pt;}
._12_c00364{width:14.488000pt;}
._1c_c00364{width:16.266667pt;}
._3_c00364{width:17.920000pt;}
._4_c00364{width:19.520000pt;}
._2c_c00364{width:21.381333pt;}
._5_c00364{width:22.453333pt;}
._2a_c00364{width:23.722667pt;}
._2b_c00364{width:24.901333pt;}
._1f_c00364{width:27.064000pt;}
._2d_c00364{width:28.800000pt;}
._22_c00364{width:29.813333pt;}
._2e_c00364{width:30.952000pt;}
._14_c00364{width:32.528000pt;}
._e_c00364{width:34.400000pt;}
._30_c00364{width:37.546667pt;}
._2_c00364{width:38.613333pt;}
._26_c00364{width:39.805333pt;}
._1d_c00364{width:40.880000pt;}
._25_c00364{width:42.797333pt;}
._28_c00364{width:45.040000pt;}
._37_c00364{width:54.045333pt;}
._32_c00364{width:68.344000pt;}
._2f_c00364{width:73.058667pt;}
._c_c00364{width:78.293333pt;}
._36_c00364{width:83.333333pt;}
._24_c00364{width:85.280000pt;}
._20_c00364{width:114.037333pt;}
._27_c00364{width:140.053333pt;}
._11_c00364{width:164.693333pt;}
._29_c00364{width:170.850667pt;}
._38_c00364{width:178.712000pt;}
._31_c00364{width:190.624000pt;}
._18_c00364{width:223.165333pt;}
._34_c00364{width:287.152000pt;}
._7_c00364{width:399.946667pt;}
._35_c00364{width:447.258667pt;}
.fs5_c00364{font-size:34.666667pt;}
.fs4_c00364{font-size:37.333333pt;}
.fs6_c00364{font-size:40.000000pt;}
.fs7_c00364{font-size:42.666667pt;}
.fs1_c00364{font-size:45.333333pt;}
.fs3_c00364{font-size:50.666667pt;}
.fs0_c00364{font-size:53.333333pt;}
.fs2_c00364{font-size:56.000000pt;}
.y0_c00364{bottom:0.000000pt;}
.y52_c00364{bottom:2.760000pt;}
.y51_c00364{bottom:6.425219pt;}
.y50_c00364{bottom:39.080000pt;}
.y4f_c00364{bottom:54.680000pt;}
.y49_c00364{bottom:56.680000pt;}
.y4e_c00364{bottom:71.213333pt;}
.y48_c00364{bottom:72.946667pt;}
.y4d_c00364{bottom:87.080000pt;}
.y47_c00364{bottom:88.546667pt;}
.y4c_c00364{bottom:103.880000pt;}
.y46_c00364{bottom:104.680000pt;}
.y4b_c00364{bottom:119.480000pt;}
.y45_c00364{bottom:120.680000pt;}
.y4a_c00364{bottom:135.613333pt;}
.y44_c00364{bottom:136.280000pt;}
.y43_c00364{bottom:141.880000pt;}
.y42_c00364{bottom:152.146667pt;}
.y41_c00364{bottom:167.480000pt;}
.y23_c00364{bottom:168.413333pt;}
.y40_c00364{bottom:184.013333pt;}
.y22_c00364{bottom:184.280000pt;}
.y3f_c00364{bottom:199.880000pt;}
.y21_c00364{bottom:200.546667pt;}
.y3e_c00364{bottom:215.480000pt;}
.y20_c00364{bottom:216.413333pt;}
.y3d_c00364{bottom:231.613333pt;}
.y1f_c00364{bottom:232.280000pt;}
.y3c_c00364{bottom:247.480000pt;}
.y1e_c00364{bottom:248.146667pt;}
.y3b_c00364{bottom:263.480000pt;}
.y1d_c00364{bottom:264.280000pt;}
.y3a_c00364{bottom:279.346667pt;}
.y1c_c00364{bottom:280.280000pt;}
.y39_c00364{bottom:295.613333pt;}
.y1b_c00364{bottom:296.546667pt;}
.y38_c00364{bottom:311.213333pt;}
.y1a_c00364{bottom:312.413333pt;}
.y37_c00364{bottom:327.346667pt;}
.y19_c00364{bottom:328.280000pt;}
.y36_c00364{bottom:342.280000pt;}
.y18_c00364{bottom:344.813333pt;}
.y35_c00364{bottom:358.813333pt;}
.y17_c00364{bottom:360.680000pt;}
.y34_c00364{bottom:375.346667pt;}
.y16_c00364{bottom:376.813333pt;}
.y33_c00364{bottom:391.213333pt;}
.y15_c00364{bottom:392.413333pt;}
.y32_c00364{bottom:407.080000pt;}
.y14_c00364{bottom:408.280000pt;}
.y31_c00364{bottom:423.346667pt;}
.y13_c00364{bottom:424.013333pt;}
.y30_c00364{bottom:439.213333pt;}
.y12_c00364{bottom:439.880000pt;}
.y2f_c00364{bottom:454.813333pt;}
.y11_c00364{bottom:455.213333pt;}
.y10_c00364{bottom:470.413333pt;}
.y2e_c00364{bottom:470.813333pt;}
.yf_c00364{bottom:486.013333pt;}
.y2d_c00364{bottom:486.680000pt;}
.ye_c00364{bottom:502.013333pt;}
.y2c_c00364{bottom:503.080000pt;}
.yd_c00364{bottom:518.146667pt;}
.y2b_c00364{bottom:518.813333pt;}
.yc_c00364{bottom:534.280000pt;}
.y2a_c00364{bottom:534.680000pt;}
.yb_c00364{bottom:550.546667pt;}
.y29_c00364{bottom:550.813333pt;}
.ya_c00364{bottom:566.413333pt;}
.y9_c00364{bottom:582.413333pt;}
.y28_c00364{bottom:583.213333pt;}
.y8_c00364{bottom:598.813333pt;}
.y27_c00364{bottom:599.213333pt;}
.y7_c00364{bottom:614.680000pt;}
.y6_c00364{bottom:630.680000pt;}
.y26_c00364{bottom:630.946667pt;}
.y5_c00364{bottom:646.813333pt;}
.y4_c00364{bottom:662.813333pt;}
.y25_c00364{bottom:663.346667pt;}
.y3_c00364{bottom:678.413333pt;}
.y24_c00364{bottom:679.480000pt;}
.y2_c00364{bottom:694.280000pt;}
.y1_c00364{bottom:712.013333pt;}
.h8_c00364{height:11.733399pt;}
.h9_c00364{height:38.937500pt;}
.h7_c00364{height:39.125333pt;}
.h4_c00364{height:53.058594pt;}
.h3_c00364{height:55.893333pt;}
.h2_c00364{height:56.906667pt;}
.h5_c00364{height:57.397135pt;}
.h6_c00364{height:58.688000pt;}
.h1_c00364{height:750.666667pt;}
.h0_c00364{height:750.733333pt;}
.w1_c00364{width:93.222667pt;}
.w0_c00364{width:524.666667pt;}
.x0_c00364{left:0.000000pt;}
.xe_c00364{left:14.933333pt;}
.x1c_c00364{left:16.000000pt;}
.xd_c00364{left:17.333333pt;}
.x6_c00364{left:20.000000pt;}
.x7_c00364{left:22.400000pt;}
.x1d_c00364{left:66.266667pt;}
.xb_c00364{left:68.000000pt;}
.xc_c00364{left:69.200000pt;}
.xa_c00364{left:71.600000pt;}
.x8_c00364{left:72.800000pt;}
.x2_c00364{left:73.733333pt;}
.x5_c00364{left:75.333333pt;}
.x3_c00364{left:77.066667pt;}
.x1e_c00364{left:93.600000pt;}
.x4_c00364{left:101.600000pt;}
.x9_c00364{left:138.266667pt;}
.x1_c00364{left:192.533333pt;}
.x21_c00364{left:219.501546pt;}
.x1b_c00364{left:258.000000pt;}
.x1f_c00364{left:259.200000pt;}
.x1a_c00364{left:260.666667pt;}
.x19_c00364{left:261.600000pt;}
.x18_c00364{left:263.066667pt;}
.x17_c00364{left:264.800000pt;}
.x16_c00364{left:265.733333pt;}
.x15_c00364{left:266.933333pt;}
.x14_c00364{left:268.800000pt;}
.x13_c00364{left:270.000000pt;}
.x12_c00364{left:270.933333pt;}
.x11_c00364{left:272.133333pt;}
.x10_c00364{left:273.200000pt;}
.xf_c00364{left:275.333333pt;}
.x20_c00364{left:350.666667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d7e04e92937b2f43c47ab436.woff2')format("woff");}.ff1_c00365{font-family:ff1_c00365;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00365;src:url('chunks/assets/font_5eebe61d69cbe4f5d379539e.woff2')format("woff");}.ff2_c00365{font-family:ff2_c00365;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00365;src:url('chunks/assets/font_110ca9daafed307a27901b36.woff2')format("woff");}.ff3_c00365{font-family:ff3_c00365;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00365;src:url('chunks/assets/font_7164f7fc20c479aacf7b7c04.woff2')format("woff");}.ff4_c00365{font-family:ff4_c00365;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00365;src:url('chunks/assets/font_7aa5197184df78d75a55672e.woff2')format("woff");}.ff5_c00365{font-family:ff5_c00365;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00365;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff6_c00365{font-family:ff6_c00365;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00365{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00365{vertical-align:0.000000px;}
.v1_c00365{vertical-align:12.000000px;}
.ls5_c00365{letter-spacing:0.000000px;}
.ls1_c00365{letter-spacing:0.405000px;}
.ls2_c00365{letter-spacing:3.000000px;}
.ls6_c00365{letter-spacing:6.000000px;}
.ls4_c00365{letter-spacing:6.600000px;}
.ls0_c00365{letter-spacing:25.620000px;}
.ls3_c00365{letter-spacing:112.740000px;}
.sc__c00365{text-shadow:none;}
.sc0_c00365{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00365{-webkit-text-stroke:0px transparent;}
.sc0_c00365{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00365{word-spacing:-20.340000px;}
.ws2_c00365{word-spacing:-18.060000px;}
.ws1_c00365{word-spacing:-14.160000px;}
.ws3_c00365{word-spacing:0.000000px;}
._28_c00365{margin-left:-29.460000px;}
._f_c00365{margin-left:-24.120000px;}
._29_c00365{margin-left:-19.740000px;}
._16_c00365{margin-left:-18.120000px;}
._15_c00365{margin-left:-15.180000px;}
._24_c00365{margin-left:-12.600000px;}
._19_c00365{margin-left:-10.440000px;}
._14_c00365{margin-left:-9.300000px;}
._11_c00365{margin-left:-7.200000px;}
._c_c00365{margin-left:-6.060000px;}
._23_c00365{margin-left:-4.860000px;}
._d_c00365{margin-left:-3.840000px;}
._b_c00365{margin-left:-2.520000px;}
._5_c00365{margin-left:-1.260000px;}
._0_c00365{width:1.800000px;}
._1_c00365{width:2.820000px;}
._7_c00365{width:3.900000px;}
._2_c00365{width:5.760000px;}
._12_c00365{width:6.840000px;}
._4_c00365{width:7.860000px;}
._3_c00365{width:9.540000px;}
._10_c00365{width:11.400000px;}
._13_c00365{width:12.780000px;}
._17_c00365{width:14.700000px;}
._e_c00365{width:16.080000px;}
._1b_c00365{width:17.640000px;}
._a_c00365{width:19.740000px;}
._1d_c00365{width:20.760000px;}
._9_c00365{width:21.960000px;}
._18_c00365{width:23.400000px;}
._6_c00365{width:24.660000px;}
._8_c00365{width:26.040000px;}
._1c_c00365{width:27.360000px;}
._26_c00365{width:28.740000px;}
._21_c00365{width:29.820000px;}
._1e_c00365{width:31.380000px;}
._22_c00365{width:32.400000px;}
._20_c00365{width:33.900000px;}
._25_c00365{width:35.280000px;}
._1f_c00365{width:36.660000px;}
._1a_c00365{width:151.980000px;}
._27_c00365{width:166.800000px;}
.fc2_c00365{color:transparent;}
.fc1_c00365{color:rgb(128,128,128);}
.fc0_c00365{color:rgb(0,0,0);}
.fs1_c00365{font-size:45.000000px;}
.fs4_c00365{font-size:48.000000px;}
.fs0_c00365{font-size:60.000000px;}
.fs3_c00365{font-size:69.000000px;}
.fs2_c00365{font-size:72.000000px;}
.y0_c00365{bottom:0.000000px;}
.y52_c00365{bottom:3.105000px;}
.y51_c00365{bottom:7.228355px;}
.y50_c00365{bottom:33.435000px;}
.y4f_c00365{bottom:53.235000px;}
.y2a_c00365{bottom:54.585000px;}
.y4e_c00365{bottom:71.835000px;}
.y29_c00365{bottom:73.485000px;}
.y4d_c00365{bottom:90.135000px;}
.y28_c00365{bottom:91.485000px;}
.y4c_c00365{bottom:108.285000px;}
.y27_c00365{bottom:110.385000px;}
.y4b_c00365{bottom:126.585000px;}
.y26_c00365{bottom:127.935000px;}
.y4a_c00365{bottom:143.985000px;}
.y25_c00365{bottom:146.835000px;}
.y49_c00365{bottom:164.235000px;}
.y24_c00365{bottom:164.985000px;}
.y48_c00365{bottom:179.235000px;}
.y23_c00365{bottom:182.835000px;}
.y47_c00365{bottom:200.385000px;}
.y22_c00365{bottom:201.135000px;}
.y46_c00365{bottom:218.985000px;}
.y21_c00365{bottom:219.585000px;}
.y45_c00365{bottom:236.835000px;}
.y20_c00365{bottom:237.585000px;}
.y44_c00365{bottom:255.135000px;}
.y1f_c00365{bottom:255.435000px;}
.y43_c00365{bottom:272.385000px;}
.y1e_c00365{bottom:273.285000px;}
.y42_c00365{bottom:290.235000px;}
.y1d_c00365{bottom:291.285000px;}
.y41_c00365{bottom:304.335000px;}
.y1c_c00365{bottom:308.385000px;}
.y1b_c00365{bottom:327.585000px;}
.y40_c00365{bottom:345.135000px;}
.y1a_c00365{bottom:346.485000px;}
.y3f_c00365{bottom:362.835000px;}
.y19_c00365{bottom:364.035000px;}
.y3e_c00365{bottom:380.985000px;}
.y18_c00365{bottom:381.735000px;}
.y3d_c00365{bottom:398.835000px;}
.y17_c00365{bottom:399.885000px;}
.y16_c00365{bottom:418.035000px;}
.y3c_c00365{bottom:434.235000px;}
.y15_c00365{bottom:436.035000px;}
.y14_c00365{bottom:454.635000px;}
.y3b_c00365{bottom:470.835000px;}
.y13_c00365{bottom:472.485000px;}
.y3a_c00365{bottom:489.285000px;}
.y12_c00365{bottom:490.635000px;}
.y39_c00365{bottom:507.885000px;}
.y11_c00365{bottom:509.535000px;}
.y38_c00365{bottom:525.735000px;}
.y10_c00365{bottom:527.835000px;}
.y37_c00365{bottom:544.035000px;}
.yf_c00365{bottom:545.685000px;}
.y36_c00365{bottom:561.885000px;}
.ye_c00365{bottom:563.835000px;}
.y35_c00365{bottom:580.185000px;}
.yd_c00365{bottom:581.535000px;}
.y34_c00365{bottom:598.335000px;}
.yc_c00365{bottom:599.385000px;}
.y33_c00365{bottom:616.635000px;}
.yb_c00365{bottom:617.235000px;}
.y32_c00365{bottom:634.785000px;}
.ya_c00365{bottom:635.535000px;}
.y31_c00365{bottom:652.635000px;}
.y9_c00365{bottom:653.685000px;}
.y30_c00365{bottom:671.535000px;}
.y8_c00365{bottom:671.835000px;}
.y7_c00365{bottom:689.535000px;}
.y2f_c00365{bottom:707.385000px;}
.y6_c00365{bottom:707.985000px;}
.y2e_c00365{bottom:725.835000px;}
.y5_c00365{bottom:725.985000px;}
.y2d_c00365{bottom:743.085000px;}
.y4_c00365{bottom:744.735000px;}
.y2c_c00365{bottom:761.385000px;}
.y3_c00365{bottom:762.435000px;}
.y2b_c00365{bottom:779.835000px;}
.y2_c00365{bottom:781.185000px;}
.y1_c00365{bottom:800.085000px;}
.h7_c00365{height:13.200074px;}
.h8_c00365{height:43.804688px;}
.h3_c00365{height:62.880000px;}
.h2_c00365{height:64.020000px;}
.h4_c00365{height:70.664062px;}
.h6_c00365{height:72.312000px;}
.h5_c00365{height:74.880000px;}
.h1_c00365{height:846.750000px;}
.h0_c00365{height:846.975000px;}
.w2_c00365{width:104.875500px;}
.w1_c00365{width:575.250000px;}
.w0_c00365{width:575.400000px;}
.x0_c00365{left:0.000000px;}
.x5_c00365{left:82.950000px;}
.x4_c00365{left:84.300000px;}
.x3_c00365{left:85.500000px;}
.x2_c00365{left:87.750000px;}
.x7_c00365{left:88.800000px;}
.x1_c00365{left:91.050000px;}
.x6_c00365{left:110.100000px;}
.x12_c00365{left:239.514267px;}
.xa_c00365{left:305.400000px;}
.x8_c00365{left:306.750000px;}
.x9_c00365{left:307.800000px;}
.xc_c00365{left:309.150000px;}
.xd_c00365{left:326.700000px;}
.xe_c00365{left:342.450000px;}
.x10_c00365{left:349.650000px;}
.xb_c00365{left:376.950000px;}
.xf_c00365{left:382.650000px;}
.x11_c00365{left:477.900000px;}
@media print{
.v0_c00365{vertical-align:0.000000pt;}
.v1_c00365{vertical-align:10.666667pt;}
.ls5_c00365{letter-spacing:0.000000pt;}
.ls1_c00365{letter-spacing:0.360000pt;}
.ls2_c00365{letter-spacing:2.666667pt;}
.ls6_c00365{letter-spacing:5.333333pt;}
.ls4_c00365{letter-spacing:5.866667pt;}
.ls0_c00365{letter-spacing:22.773333pt;}
.ls3_c00365{letter-spacing:100.213333pt;}
.ws0_c00365{word-spacing:-18.080000pt;}
.ws2_c00365{word-spacing:-16.053333pt;}
.ws1_c00365{word-spacing:-12.586667pt;}
.ws3_c00365{word-spacing:0.000000pt;}
._28_c00365{margin-left:-26.186667pt;}
._f_c00365{margin-left:-21.440000pt;}
._29_c00365{margin-left:-17.546667pt;}
._16_c00365{margin-left:-16.106667pt;}
._15_c00365{margin-left:-13.493333pt;}
._24_c00365{margin-left:-11.200000pt;}
._19_c00365{margin-left:-9.280000pt;}
._14_c00365{margin-left:-8.266667pt;}
._11_c00365{margin-left:-6.400000pt;}
._c_c00365{margin-left:-5.386667pt;}
._23_c00365{margin-left:-4.320000pt;}
._d_c00365{margin-left:-3.413333pt;}
._b_c00365{margin-left:-2.240000pt;}
._5_c00365{margin-left:-1.120000pt;}
._0_c00365{width:1.600000pt;}
._1_c00365{width:2.506667pt;}
._7_c00365{width:3.466667pt;}
._2_c00365{width:5.120000pt;}
._12_c00365{width:6.080000pt;}
._4_c00365{width:6.986667pt;}
._3_c00365{width:8.480000pt;}
._10_c00365{width:10.133333pt;}
._13_c00365{width:11.360000pt;}
._17_c00365{width:13.066667pt;}
._e_c00365{width:14.293333pt;}
._1b_c00365{width:15.680000pt;}
._a_c00365{width:17.546667pt;}
._1d_c00365{width:18.453333pt;}
._9_c00365{width:19.520000pt;}
._18_c00365{width:20.800000pt;}
._6_c00365{width:21.920000pt;}
._8_c00365{width:23.146667pt;}
._1c_c00365{width:24.320000pt;}
._26_c00365{width:25.546667pt;}
._21_c00365{width:26.506667pt;}
._1e_c00365{width:27.893333pt;}
._22_c00365{width:28.800000pt;}
._20_c00365{width:30.133333pt;}
._25_c00365{width:31.360000pt;}
._1f_c00365{width:32.586667pt;}
._1a_c00365{width:135.093333pt;}
._27_c00365{width:148.266667pt;}
.fs1_c00365{font-size:40.000000pt;}
.fs4_c00365{font-size:42.666667pt;}
.fs0_c00365{font-size:53.333333pt;}
.fs3_c00365{font-size:61.333333pt;}
.fs2_c00365{font-size:64.000000pt;}
.y0_c00365{bottom:0.000000pt;}
.y52_c00365{bottom:2.760000pt;}
.y51_c00365{bottom:6.425204pt;}
.y50_c00365{bottom:29.720000pt;}
.y4f_c00365{bottom:47.320000pt;}
.y2a_c00365{bottom:48.520000pt;}
.y4e_c00365{bottom:63.853333pt;}
.y29_c00365{bottom:65.320000pt;}
.y4d_c00365{bottom:80.120000pt;}
.y28_c00365{bottom:81.320000pt;}
.y4c_c00365{bottom:96.253333pt;}
.y27_c00365{bottom:98.120000pt;}
.y4b_c00365{bottom:112.520000pt;}
.y26_c00365{bottom:113.720000pt;}
.y4a_c00365{bottom:127.986667pt;}
.y25_c00365{bottom:130.520000pt;}
.y49_c00365{bottom:145.986667pt;}
.y24_c00365{bottom:146.653333pt;}
.y48_c00365{bottom:159.320000pt;}
.y23_c00365{bottom:162.520000pt;}
.y47_c00365{bottom:178.120000pt;}
.y22_c00365{bottom:178.786667pt;}
.y46_c00365{bottom:194.653333pt;}
.y21_c00365{bottom:195.186667pt;}
.y45_c00365{bottom:210.520000pt;}
.y20_c00365{bottom:211.186667pt;}
.y44_c00365{bottom:226.786667pt;}
.y1f_c00365{bottom:227.053333pt;}
.y43_c00365{bottom:242.120000pt;}
.y1e_c00365{bottom:242.920000pt;}
.y42_c00365{bottom:257.986667pt;}
.y1d_c00365{bottom:258.920000pt;}
.y41_c00365{bottom:270.520000pt;}
.y1c_c00365{bottom:274.120000pt;}
.y1b_c00365{bottom:291.186667pt;}
.y40_c00365{bottom:306.786667pt;}
.y1a_c00365{bottom:307.986667pt;}
.y3f_c00365{bottom:322.520000pt;}
.y19_c00365{bottom:323.586667pt;}
.y3e_c00365{bottom:338.653333pt;}
.y18_c00365{bottom:339.320000pt;}
.y3d_c00365{bottom:354.520000pt;}
.y17_c00365{bottom:355.453333pt;}
.y16_c00365{bottom:371.586667pt;}
.y3c_c00365{bottom:385.986667pt;}
.y15_c00365{bottom:387.586667pt;}
.y14_c00365{bottom:404.120000pt;}
.y3b_c00365{bottom:418.520000pt;}
.y13_c00365{bottom:419.986667pt;}
.y3a_c00365{bottom:434.920000pt;}
.y12_c00365{bottom:436.120000pt;}
.y39_c00365{bottom:451.453333pt;}
.y11_c00365{bottom:452.920000pt;}
.y38_c00365{bottom:467.320000pt;}
.y10_c00365{bottom:469.186667pt;}
.y37_c00365{bottom:483.586667pt;}
.yf_c00365{bottom:485.053333pt;}
.y36_c00365{bottom:499.453333pt;}
.ye_c00365{bottom:501.186667pt;}
.y35_c00365{bottom:515.720000pt;}
.yd_c00365{bottom:516.920000pt;}
.y34_c00365{bottom:531.853333pt;}
.yc_c00365{bottom:532.786667pt;}
.y33_c00365{bottom:548.120000pt;}
.yb_c00365{bottom:548.653333pt;}
.y32_c00365{bottom:564.253333pt;}
.ya_c00365{bottom:564.920000pt;}
.y31_c00365{bottom:580.120000pt;}
.y9_c00365{bottom:581.053333pt;}
.y30_c00365{bottom:596.920000pt;}
.y8_c00365{bottom:597.186667pt;}
.y7_c00365{bottom:612.920000pt;}
.y2f_c00365{bottom:628.786667pt;}
.y6_c00365{bottom:629.320000pt;}
.y2e_c00365{bottom:645.186667pt;}
.y5_c00365{bottom:645.320000pt;}
.y2d_c00365{bottom:660.520000pt;}
.y4_c00365{bottom:661.986667pt;}
.y2c_c00365{bottom:676.786667pt;}
.y3_c00365{bottom:677.720000pt;}
.y2b_c00365{bottom:693.186667pt;}
.y2_c00365{bottom:694.386667pt;}
.y1_c00365{bottom:711.186667pt;}
.h7_c00365{height:11.733399pt;}
.h8_c00365{height:38.937500pt;}
.h3_c00365{height:55.893333pt;}
.h2_c00365{height:56.906667pt;}
.h4_c00365{height:62.812500pt;}
.h6_c00365{height:64.277333pt;}
.h5_c00365{height:66.560000pt;}
.h1_c00365{height:752.666667pt;}
.h0_c00365{height:752.866667pt;}
.w2_c00365{width:93.222667pt;}
.w1_c00365{width:511.333333pt;}
.w0_c00365{width:511.466667pt;}
.x0_c00365{left:0.000000pt;}
.x5_c00365{left:73.733333pt;}
.x4_c00365{left:74.933333pt;}
.x3_c00365{left:76.000000pt;}
.x2_c00365{left:78.000000pt;}
.x7_c00365{left:78.933333pt;}
.x1_c00365{left:80.933333pt;}
.x6_c00365{left:97.866667pt;}
.x12_c00365{left:212.901571pt;}
.xa_c00365{left:271.466667pt;}
.x8_c00365{left:272.666667pt;}
.x9_c00365{left:273.600000pt;}
.xc_c00365{left:274.800000pt;}
.xd_c00365{left:290.400000pt;}
.xe_c00365{left:304.400000pt;}
.x10_c00365{left:310.800000pt;}
.xb_c00365{left:335.066667pt;}
.xf_c00365{left:340.133333pt;}
.x11_c00365{left:424.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_19f6b73621fa93c3ae9438d9.woff2')format("woff");}.ff1_c00366{font-family:ff1_c00366;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00366;src:url('chunks/assets/font_7a9df03c8f8b8222dfbf9419.woff2')format("woff");}.ff2_c00366{font-family:ff2_c00366;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00366;src:url('chunks/assets/font_9e70a0fef9a1e414612353dd.woff2')format("woff");}.ff3_c00366{font-family:ff3_c00366;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00366;src:url('chunks/assets/font_33ab4f9d4932c5a8f3c684b3.woff2')format("woff");}.ff4_c00366{font-family:ff4_c00366;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00366;src:url('chunks/assets/font_f3790c11fa1b72b5ebd5d0f3.woff2')format("woff");}.ff5_c00366{font-family:ff5_c00366;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00366;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff6_c00366{font-family:ff6_c00366;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00366{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00366{vertical-align:0.000000px;}
.ls3_c00366{letter-spacing:0.000000px;}
.ls2_c00366{letter-spacing:3.000000px;}
.ls1_c00366{letter-spacing:12.000000px;}
.ls0_c00366{letter-spacing:18.600000px;}
.sc__c00366{text-shadow:none;}
.sc0_c00366{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00366{-webkit-text-stroke:0px transparent;}
.sc0_c00366{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00366{word-spacing:-32.295000px;}
.ws0_c00366{word-spacing:-29.319000px;}
.ws3_c00366{word-spacing:-18.000000px;}
.ws1_c00366{word-spacing:-14.160000px;}
.ws4_c00366{word-spacing:0.000000px;}
._28_c00366{margin-left:-13.890000px;}
._9_c00366{margin-left:-12.696000px;}
._2d_c00366{margin-left:-11.640000px;}
._2c_c00366{margin-left:-10.251000px;}
._2f_c00366{margin-left:-9.168000px;}
._27_c00366{margin-left:-7.560000px;}
._29_c00366{margin-left:-6.021000px;}
._14_c00366{margin-left:-4.620000px;}
._e_c00366{margin-left:-3.300000px;}
._d_c00366{margin-left:-2.160000px;}
._18_c00366{margin-left:-1.050000px;}
._0_c00366{width:1.035000px;}
._10_c00366{width:2.100000px;}
._a_c00366{width:3.240000px;}
._17_c00366{width:4.299000px;}
._15_c00366{width:5.730000px;}
._b_c00366{width:6.840000px;}
._16_c00366{width:7.983000px;}
._4_c00366{width:9.108000px;}
._6_c00366{width:10.695000px;}
._2_c00366{width:12.282000px;}
._13_c00366{width:13.365000px;}
._3_c00366{width:14.697000px;}
._20_c00366{width:16.416000px;}
._8_c00366{width:17.619000px;}
._5_c00366{width:19.527000px;}
._f_c00366{width:20.940000px;}
._1c_c00366{width:22.680000px;}
._1e_c00366{width:23.712000px;}
._c_c00366{width:24.840000px;}
._26_c00366{width:26.130000px;}
._1_c00366{width:27.393000px;}
._2e_c00366{width:28.431000px;}
._1a_c00366{width:29.862000px;}
._1b_c00366{width:31.380000px;}
._1d_c00366{width:33.360000px;}
._25_c00366{width:34.740000px;}
._1f_c00366{width:36.198000px;}
._11_c00366{width:38.040000px;}
._21_c00366{width:39.540000px;}
._2a_c00366{width:41.055000px;}
._23_c00366{width:43.587000px;}
._24_c00366{width:44.664000px;}
._22_c00366{width:47.931000px;}
._2b_c00366{width:54.870000px;}
._12_c00366{width:63.060000px;}
._19_c00366{width:70.293000px;}
._30_c00366{width:144.333000px;}
._31_c00366{width:198.003000px;}
._7_c00366{width:395.577000px;}
.fc2_c00366{color:transparent;}
.fc1_c00366{color:rgb(128,128,128);}
.fc0_c00366{color:rgb(0,0,0);}
.fs2_c00366{font-size:24.000000px;}
.fs3_c00366{font-size:45.000000px;}
.fs4_c00366{font-size:48.000000px;}
.fs1_c00366{font-size:60.000000px;}
.fs0_c00366{font-size:69.000000px;}
.y0_c00366{bottom:0.000000px;}
.y51_c00366{bottom:3.105000px;}
.y50_c00366{bottom:7.228371px;}
.y4f_c00366{bottom:63.915000px;}
.y4e_c00366{bottom:83.715000px;}
.y29_c00366{bottom:84.165000px;}
.y4d_c00366{bottom:101.565000px;}
.y28_c00366{bottom:102.915000px;}
.y4c_c00366{bottom:119.865000px;}
.y27_c00366{bottom:120.915000px;}
.y4b_c00366{bottom:137.715000px;}
.y26_c00366{bottom:139.065000px;}
.y4a_c00366{bottom:155.265000px;}
.y25_c00366{bottom:157.665000px;}
.y49_c00366{bottom:173.865000px;}
.y24_c00366{bottom:175.365000px;}
.y48_c00366{bottom:192.165000px;}
.y23_c00366{bottom:193.515000px;}
.y47_c00366{bottom:210.015000px;}
.y22_c00366{bottom:211.665000px;}
.y46_c00366{bottom:226.815000px;}
.y21_c00366{bottom:229.515000px;}
.y45_c00366{bottom:246.165000px;}
.y20_c00366{bottom:247.815000px;}
.y44_c00366{bottom:264.015000px;}
.y1f_c00366{bottom:265.965000px;}
.y43_c00366{bottom:282.465000px;}
.y1e_c00366{bottom:283.815000px;}
.y42_c00366{bottom:300.765000px;}
.y1d_c00366{bottom:301.815000px;}
.y41_c00366{bottom:318.315000px;}
.y1c_c00366{bottom:319.965000px;}
.y40_c00366{bottom:336.165000px;}
.y1b_c00366{bottom:337.965000px;}
.y3f_c00366{bottom:354.465000px;}
.y1a_c00366{bottom:355.815000px;}
.y3e_c00366{bottom:372.315000px;}
.y19_c00366{bottom:373.665000px;}
.y3d_c00366{bottom:390.465000px;}
.y18_c00366{bottom:391.815000px;}
.y3c_c00366{bottom:408.165000px;}
.y17_c00366{bottom:409.515000px;}
.y3b_c00366{bottom:426.315000px;}
.y16_c00366{bottom:427.365000px;}
.y3a_c00366{bottom:444.465000px;}
.y15_c00366{bottom:445.515000px;}
.y39_c00366{bottom:462.465000px;}
.y14_c00366{bottom:463.515000px;}
.y38_c00366{bottom:480.315000px;}
.y13_c00366{bottom:481.365000px;}
.y37_c00366{bottom:498.165000px;}
.y12_c00366{bottom:499.215000px;}
.y36_c00366{bottom:516.165000px;}
.y11_c00366{bottom:516.765000px;}
.y35_c00366{bottom:534.015000px;}
.y10_c00366{bottom:534.315000px;}
.yf_c00366{bottom:551.565000px;}
.y34_c00366{bottom:552.165000px;}
.ye_c00366{bottom:569.715000px;}
.y33_c00366{bottom:588.015000px;}
.yd_c00366{bottom:588.315000px;}
.y32_c00366{bottom:605.865000px;}
.yc_c00366{bottom:606.465000px;}
.y31_c00366{bottom:623.715000px;}
.yb_c00366{bottom:624.465000px;}
.ya_c00366{bottom:641.715000px;}
.y30_c00366{bottom:659.865000px;}
.y9_c00366{bottom:660.465000px;}
.y2f_c00366{bottom:677.715000px;}
.y8_c00366{bottom:678.465000px;}
.y2e_c00366{bottom:696.015000px;}
.y7_c00366{bottom:696.915000px;}
.y2d_c00366{bottom:713.565000px;}
.y6_c00366{bottom:714.465000px;}
.y2c_c00366{bottom:731.715000px;}
.y5_c00366{bottom:732.165000px;}
.y2b_c00366{bottom:749.565000px;}
.y4_c00366{bottom:750.915000px;}
.y2a_c00366{bottom:767.865000px;}
.y3_c00366{bottom:768.615000px;}
.y2_c00366{bottom:785.115000px;}
.y1_c00366{bottom:805.665000px;}
.h5_c00366{height:13.200074px;}
.h6_c00366{height:43.804688px;}
.h3_c00366{height:62.880000px;}
.h4_c00366{height:64.020000px;}
.h2_c00366{height:73.623000px;}
.h1_c00366{height:844.500000px;}
.h0_c00366{height:844.575000px;}
.w1_c00366{width:104.875500px;}
.w0_c00366{width:587.250000px;}
.x0_c00366{left:0.000000px;}
.x8_c00366{left:8.700000px;}
.x7_c00366{left:13.500000px;}
.xb_c00366{left:63.150000px;}
.xa_c00366{left:72.150000px;}
.x9_c00366{left:73.800000px;}
.x6_c00366{left:74.850000px;}
.x5_c00366{left:76.950000px;}
.x3_c00366{left:78.600000px;}
.x4_c00366{left:79.650000px;}
.x2_c00366{left:116.400000px;}
.x1_c00366{left:220.050000px;}
.x12_c00366{left:245.439240px;}
.x10_c00366{left:292.950000px;}
.xe_c00366{left:294.300000px;}
.xf_c00366{left:295.350000px;}
.xd_c00366{left:296.550000px;}
.xc_c00366{left:297.600000px;}
.x11_c00366{left:383.400000px;}
@media print{
.v0_c00366{vertical-align:0.000000pt;}
.ls3_c00366{letter-spacing:0.000000pt;}
.ls2_c00366{letter-spacing:2.666667pt;}
.ls1_c00366{letter-spacing:10.666667pt;}
.ls0_c00366{letter-spacing:16.533333pt;}
.ws2_c00366{word-spacing:-28.706667pt;}
.ws0_c00366{word-spacing:-26.061333pt;}
.ws3_c00366{word-spacing:-16.000000pt;}
.ws1_c00366{word-spacing:-12.586667pt;}
.ws4_c00366{word-spacing:0.000000pt;}
._28_c00366{margin-left:-12.346667pt;}
._9_c00366{margin-left:-11.285333pt;}
._2d_c00366{margin-left:-10.346667pt;}
._2c_c00366{margin-left:-9.112000pt;}
._2f_c00366{margin-left:-8.149333pt;}
._27_c00366{margin-left:-6.720000pt;}
._29_c00366{margin-left:-5.352000pt;}
._14_c00366{margin-left:-4.106667pt;}
._e_c00366{margin-left:-2.933333pt;}
._d_c00366{margin-left:-1.920000pt;}
._18_c00366{margin-left:-0.933333pt;}
._0_c00366{width:0.920000pt;}
._10_c00366{width:1.866667pt;}
._a_c00366{width:2.880000pt;}
._17_c00366{width:3.821333pt;}
._15_c00366{width:5.093333pt;}
._b_c00366{width:6.080000pt;}
._16_c00366{width:7.096000pt;}
._4_c00366{width:8.096000pt;}
._6_c00366{width:9.506667pt;}
._2_c00366{width:10.917333pt;}
._13_c00366{width:11.880000pt;}
._3_c00366{width:13.064000pt;}
._20_c00366{width:14.592000pt;}
._8_c00366{width:15.661333pt;}
._5_c00366{width:17.357333pt;}
._f_c00366{width:18.613333pt;}
._1c_c00366{width:20.160000pt;}
._1e_c00366{width:21.077333pt;}
._c_c00366{width:22.080000pt;}
._26_c00366{width:23.226667pt;}
._1_c00366{width:24.349333pt;}
._2e_c00366{width:25.272000pt;}
._1a_c00366{width:26.544000pt;}
._1b_c00366{width:27.893333pt;}
._1d_c00366{width:29.653333pt;}
._25_c00366{width:30.880000pt;}
._1f_c00366{width:32.176000pt;}
._11_c00366{width:33.813333pt;}
._21_c00366{width:35.146667pt;}
._2a_c00366{width:36.493333pt;}
._23_c00366{width:38.744000pt;}
._24_c00366{width:39.701333pt;}
._22_c00366{width:42.605333pt;}
._2b_c00366{width:48.773333pt;}
._12_c00366{width:56.053333pt;}
._19_c00366{width:62.482667pt;}
._30_c00366{width:128.296000pt;}
._31_c00366{width:176.002667pt;}
._7_c00366{width:351.624000pt;}
.fs2_c00366{font-size:21.333333pt;}
.fs3_c00366{font-size:40.000000pt;}
.fs4_c00366{font-size:42.666667pt;}
.fs1_c00366{font-size:53.333333pt;}
.fs0_c00366{font-size:61.333333pt;}
.y0_c00366{bottom:0.000000pt;}
.y51_c00366{bottom:2.760000pt;}
.y50_c00366{bottom:6.425219pt;}
.y4f_c00366{bottom:56.813333pt;}
.y4e_c00366{bottom:74.413333pt;}
.y29_c00366{bottom:74.813333pt;}
.y4d_c00366{bottom:90.280000pt;}
.y28_c00366{bottom:91.480000pt;}
.y4c_c00366{bottom:106.546667pt;}
.y27_c00366{bottom:107.480000pt;}
.y4b_c00366{bottom:122.413333pt;}
.y26_c00366{bottom:123.613333pt;}
.y4a_c00366{bottom:138.013333pt;}
.y25_c00366{bottom:140.146667pt;}
.y49_c00366{bottom:154.546667pt;}
.y24_c00366{bottom:155.880000pt;}
.y48_c00366{bottom:170.813333pt;}
.y23_c00366{bottom:172.013333pt;}
.y47_c00366{bottom:186.680000pt;}
.y22_c00366{bottom:188.146667pt;}
.y46_c00366{bottom:201.613333pt;}
.y21_c00366{bottom:204.013333pt;}
.y45_c00366{bottom:218.813333pt;}
.y20_c00366{bottom:220.280000pt;}
.y44_c00366{bottom:234.680000pt;}
.y1f_c00366{bottom:236.413333pt;}
.y43_c00366{bottom:251.080000pt;}
.y1e_c00366{bottom:252.280000pt;}
.y42_c00366{bottom:267.346667pt;}
.y1d_c00366{bottom:268.280000pt;}
.y41_c00366{bottom:282.946667pt;}
.y1c_c00366{bottom:284.413333pt;}
.y40_c00366{bottom:298.813333pt;}
.y1b_c00366{bottom:300.413333pt;}
.y3f_c00366{bottom:315.080000pt;}
.y1a_c00366{bottom:316.280000pt;}
.y3e_c00366{bottom:330.946667pt;}
.y19_c00366{bottom:332.146667pt;}
.y3d_c00366{bottom:347.080000pt;}
.y18_c00366{bottom:348.280000pt;}
.y3c_c00366{bottom:362.813333pt;}
.y17_c00366{bottom:364.013333pt;}
.y3b_c00366{bottom:378.946667pt;}
.y16_c00366{bottom:379.880000pt;}
.y3a_c00366{bottom:395.080000pt;}
.y15_c00366{bottom:396.013333pt;}
.y39_c00366{bottom:411.080000pt;}
.y14_c00366{bottom:412.013333pt;}
.y38_c00366{bottom:426.946667pt;}
.y13_c00366{bottom:427.880000pt;}
.y37_c00366{bottom:442.813333pt;}
.y12_c00366{bottom:443.746667pt;}
.y36_c00366{bottom:458.813333pt;}
.y11_c00366{bottom:459.346667pt;}
.y35_c00366{bottom:474.680000pt;}
.y10_c00366{bottom:474.946667pt;}
.yf_c00366{bottom:490.280000pt;}
.y34_c00366{bottom:490.813333pt;}
.ye_c00366{bottom:506.413333pt;}
.y33_c00366{bottom:522.680000pt;}
.yd_c00366{bottom:522.946667pt;}
.y32_c00366{bottom:538.546667pt;}
.yc_c00366{bottom:539.080000pt;}
.y31_c00366{bottom:554.413333pt;}
.yb_c00366{bottom:555.080000pt;}
.ya_c00366{bottom:570.413333pt;}
.y30_c00366{bottom:586.546667pt;}
.y9_c00366{bottom:587.080000pt;}
.y2f_c00366{bottom:602.413333pt;}
.y8_c00366{bottom:603.080000pt;}
.y2e_c00366{bottom:618.680000pt;}
.y7_c00366{bottom:619.480000pt;}
.y2d_c00366{bottom:634.280000pt;}
.y6_c00366{bottom:635.080000pt;}
.y2c_c00366{bottom:650.413333pt;}
.y5_c00366{bottom:650.813333pt;}
.y2b_c00366{bottom:666.280000pt;}
.y4_c00366{bottom:667.480000pt;}
.y2a_c00366{bottom:682.546667pt;}
.y3_c00366{bottom:683.213333pt;}
.y2_c00366{bottom:697.880000pt;}
.y1_c00366{bottom:716.146667pt;}
.h5_c00366{height:11.733399pt;}
.h6_c00366{height:38.937500pt;}
.h3_c00366{height:55.893333pt;}
.h4_c00366{height:56.906667pt;}
.h2_c00366{height:65.442667pt;}
.h1_c00366{height:750.666667pt;}
.h0_c00366{height:750.733333pt;}
.w1_c00366{width:93.222667pt;}
.w0_c00366{width:522.000000pt;}
.x0_c00366{left:0.000000pt;}
.x8_c00366{left:7.733333pt;}
.x7_c00366{left:12.000000pt;}
.xb_c00366{left:56.133333pt;}
.xa_c00366{left:64.133333pt;}
.x9_c00366{left:65.600000pt;}
.x6_c00366{left:66.533333pt;}
.x5_c00366{left:68.400000pt;}
.x3_c00366{left:69.866667pt;}
.x4_c00366{left:70.800000pt;}
.x2_c00366{left:103.466667pt;}
.x1_c00366{left:195.600000pt;}
.x12_c00366{left:218.168213pt;}
.x10_c00366{left:260.400000pt;}
.xe_c00366{left:261.600000pt;}
.xf_c00366{left:262.533333pt;}
.xd_c00366{left:263.600000pt;}
.xc_c00366{left:264.533333pt;}
.x11_c00366{left:340.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_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_084541fb256aeb3f24de5b18.woff2')format("woff");}.ff1_c00367{font-family:ff1_c00367;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00367;src:url('chunks/assets/font_1aecd32ef543a2c0335fce3b.woff2')format("woff");}.ff2_c00367{font-family:ff2_c00367;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00367;src:url('chunks/assets/font_5e11378c25958fbaf258cae1.woff2')format("woff");}.ff3_c00367{font-family:ff3_c00367;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00367;src:url('chunks/assets/font_966f2e5e6f261427e109ce11.woff2')format("woff");}.ff4_c00367{font-family:ff4_c00367;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00367;src:url('chunks/assets/font_0679c1263130dc0f8b39df72.woff2')format("woff");}.ff5_c00367{font-family:ff5_c00367;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00367;src:url('chunks/assets/font_1de7f793684307b4beb3bf5c.woff2')format("woff");}.ff6_c00367{font-family:ff6_c00367;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00367;src:url('chunks/assets/font_510745118af5de9f2e950d85.woff2')format("woff");}.ff7_c00367{font-family:ff7_c00367;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00367;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff8_c00367{font-family:ff8_c00367;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00367;src:url('chunks/assets/font_d5255a0ecc67a172342de03c.woff2')format("woff");}.ff9_c00367{font-family:ff9_c00367;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00367;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ffa_c00367{font-family:ffa_c00367;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00367{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00367{vertical-align:0.000000px;}
.ls7_c00367{letter-spacing:-3.000000px;}
.ls5_c00367{letter-spacing:0.000000px;}
.ls4_c00367{letter-spacing:2.640000px;}
.ls2_c00367{letter-spacing:3.000000px;}
.ls3_c00367{letter-spacing:6.000000px;}
.ls6_c00367{letter-spacing:9.000000px;}
.ls0_c00367{letter-spacing:9.300000px;}
.ls1_c00367{letter-spacing:9.600000px;}
.sc__c00367{text-shadow:none;}
.sc0_c00367{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00367{-webkit-text-stroke:0px transparent;}
.sc0_c00367{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00367{word-spacing:-31.746000px;}
.ws0_c00367{word-spacing:-26.640000px;}
.ws3_c00367{word-spacing:-20.340000px;}
.ws2_c00367{word-spacing:-18.060000px;}
.ws1_c00367{word-spacing:-14.160000px;}
.ws4_c00367{word-spacing:-12.291000px;}
.ws5_c00367{word-spacing:-11.160000px;}
.ws7_c00367{word-spacing:0.000000px;}
._3e_c00367{margin-left:-26.280000px;}
._26_c00367{margin-left:-24.696000px;}
._27_c00367{margin-left:-23.100000px;}
._2f_c00367{margin-left:-20.400000px;}
._2a_c00367{margin-left:-16.440000px;}
._1c_c00367{margin-left:-13.860000px;}
._2c_c00367{margin-left:-11.700000px;}
._19_c00367{margin-left:-10.380000px;}
._22_c00367{margin-left:-8.760000px;}
._1a_c00367{margin-left:-7.560000px;}
._f_c00367{margin-left:-5.760000px;}
._1b_c00367{margin-left:-4.740000px;}
._b_c00367{margin-left:-3.540000px;}
._d_c00367{margin-left:-2.280000px;}
._c_c00367{margin-left:-1.200000px;}
._8_c00367{width:1.440000px;}
._9_c00367{width:2.880000px;}
._a_c00367{width:4.020000px;}
._16_c00367{width:5.040000px;}
._7_c00367{width:6.300000px;}
._6_c00367{width:7.980000px;}
._5_c00367{width:9.660000px;}
._12_c00367{width:10.740000px;}
._1_c00367{width:12.000000px;}
._2_c00367{width:13.740000px;}
._3_c00367{width:14.940000px;}
._25_c00367{width:15.960000px;}
._24_c00367{width:17.196000px;}
._31_c00367{width:18.420000px;}
._1d_c00367{width:19.440000px;}
._4_c00367{width:21.000000px;}
._18_c00367{width:22.860000px;}
._13_c00367{width:24.780000px;}
._20_c00367{width:25.800000px;}
._1f_c00367{width:26.880000px;}
._1e_c00367{width:28.200000px;}
._21_c00367{width:29.400000px;}
._17_c00367{width:30.540000px;}
._29_c00367{width:31.860000px;}
._11_c00367{width:32.880000px;}
._15_c00367{width:33.900000px;}
._14_c00367{width:35.160000px;}
._10_c00367{width:37.860000px;}
._28_c00367{width:39.780000px;}
._2d_c00367{width:41.280000px;}
._23_c00367{width:43.080000px;}
._39_c00367{width:52.320000px;}
._3a_c00367{width:54.540000px;}
._3d_c00367{width:56.880000px;}
._3c_c00367{width:58.260000px;}
._e_c00367{width:61.800000px;}
._36_c00367{width:62.880000px;}
._3b_c00367{width:64.920000px;}
._2b_c00367{width:67.560000px;}
._38_c00367{width:68.748000px;}
._32_c00367{width:73.740000px;}
._2e_c00367{width:77.760000px;}
._37_c00367{width:80.580000px;}
._35_c00367{width:159.360000px;}
._34_c00367{width:164.880000px;}
._0_c00367{width:193.740000px;}
._33_c00367{width:213.360000px;}
._30_c00367{width:228.540000px;}
._3f_c00367{width:1435.260000px;}
.fc2_c00367{color:transparent;}
.fc1_c00367{color:rgb(128,128,128);}
.fc0_c00367{color:rgb(0,0,0);}
.fs4_c00367{font-size:48.000000px;}
.fs1_c00367{font-size:51.000000px;}
.fs0_c00367{font-size:60.000000px;}
.fs3_c00367{font-size:66.000000px;}
.fs2_c00367{font-size:84.000000px;}
.y0_c00367{bottom:0.000000px;}
.y43_c00367{bottom:3.105000px;}
.y42_c00367{bottom:7.228369px;}
.y41_c00367{bottom:54.720000px;}
.y40_c00367{bottom:72.570000px;}
.y3f_c00367{bottom:91.020000px;}
.y3e_c00367{bottom:109.020000px;}
.y6_c00367{bottom:126.870000px;}
.y3d_c00367{bottom:127.170000px;}
.y5_c00367{bottom:145.170000px;}
.y4_c00367{bottom:163.320000px;}
.y3c_c00367{bottom:181.620000px;}
.y3_c00367{bottom:182.220000px;}
.y3b_c00367{bottom:199.170000px;}
.y3a_c00367{bottom:217.920000px;}
.y39_c00367{bottom:235.920000px;}
.y38_c00367{bottom:253.770000px;}
.y37_c00367{bottom:271.920000px;}
.y36_c00367{bottom:289.470000px;}
.y35_c00367{bottom:306.420000px;}
.y20_c00367{bottom:307.170000px;}
.y34_c00367{bottom:325.020000px;}
.y1f_c00367{bottom:325.620000px;}
.y1e_c00367{bottom:343.620000px;}
.y1d_c00367{bottom:361.470000px;}
.y33_c00367{bottom:361.770000px;}
.y32_c00367{bottom:378.720000px;}
.y1c_c00367{bottom:379.470000px;}
.y1b_c00367{bottom:397.470000px;}
.y31_c00367{bottom:397.620000px;}
.y30_c00367{bottom:415.170000px;}
.y1a_c00367{bottom:415.470000px;}
.y19_c00367{bottom:433.320000px;}
.y2f_c00367{bottom:433.920000px;}
.y18_c00367{bottom:451.620000px;}
.y2e_c00367{bottom:451.920000px;}
.y17_c00367{bottom:470.070000px;}
.y16_c00367{bottom:487.620000px;}
.y2d_c00367{bottom:488.070000px;}
.y15_c00367{bottom:505.470000px;}
.y2c_c00367{bottom:506.520000px;}
.y14_c00367{bottom:523.620000px;}
.y2b_c00367{bottom:524.370000px;}
.y13_c00367{bottom:541.920000px;}
.y2a_c00367{bottom:542.070000px;}
.y29_c00367{bottom:559.620000px;}
.y12_c00367{bottom:560.220000px;}
.y11_c00367{bottom:578.070000px;}
.y10_c00367{bottom:596.070000px;}
.y28_c00367{bottom:596.670000px;}
.yf_c00367{bottom:613.920000px;}
.y27_c00367{bottom:615.270000px;}
.y26_c00367{bottom:632.370000px;}
.ye_c00367{bottom:632.520000px;}
.yd_c00367{bottom:650.070000px;}
.y25_c00367{bottom:650.670000px;}
.yc_c00367{bottom:668.220000px;}
.y24_c00367{bottom:668.820000px;}
.yb_c00367{bottom:686.520000px;}
.y23_c00367{bottom:702.270000px;}
.ya_c00367{bottom:704.370000px;}
.y9_c00367{bottom:722.820000px;}
.y22_c00367{bottom:740.370000px;}
.y8_c00367{bottom:740.520000px;}
.y21_c00367{bottom:757.920000px;}
.y7_c00367{bottom:758.670000px;}
.y2_c00367{bottom:776.820000px;}
.y1_c00367{bottom:797.070000px;}
.h8_c00367{height:13.200073px;}
.h9_c00367{height:43.804688px;}
.h6_c00367{height:59.690918px;}
.h3_c00367{height:62.880000px;}
.h2_c00367{height:64.020000px;}
.h5_c00367{height:64.571777px;}
.h7_c00367{height:70.422000px;}
.h4_c00367{height:91.056000px;}
.h0_c00367{height:835.350000px;}
.h1_c00367{height:835.500000px;}
.w1_c00367{width:104.875500px;}
.w0_c00367{width:567.000000px;}
.x0_c00367{left:0.000000px;}
.x3_c00367{left:18.600000px;}
.x4_c00367{left:19.650000px;}
.x12_c00367{left:78.300000px;}
.x6_c00367{left:81.600000px;}
.x5_c00367{left:82.950000px;}
.x2_c00367{left:84.300000px;}
.x1_c00367{left:88.200000px;}
.x14_c00367{left:106.350000px;}
.x13_c00367{left:109.800000px;}
.x15_c00367{left:235.314240px;}
.x11_c00367{left:302.700000px;}
.x10_c00367{left:304.200000px;}
.x7_c00367{left:306.450000px;}
.xa_c00367{left:311.250000px;}
.xf_c00367{left:326.400000px;}
.xe_c00367{left:337.950000px;}
.x9_c00367{left:341.850000px;}
.xb_c00367{left:347.400000px;}
.xc_c00367{left:357.450000px;}
.x8_c00367{left:373.050000px;}
.xd_c00367{left:385.500000px;}
@media print{
.v0_c00367{vertical-align:0.000000pt;}
.ls7_c00367{letter-spacing:-2.666667pt;}
.ls5_c00367{letter-spacing:0.000000pt;}
.ls4_c00367{letter-spacing:2.346667pt;}
.ls2_c00367{letter-spacing:2.666667pt;}
.ls3_c00367{letter-spacing:5.333333pt;}
.ls6_c00367{letter-spacing:8.000000pt;}
.ls0_c00367{letter-spacing:8.266667pt;}
.ls1_c00367{letter-spacing:8.533333pt;}
.ws6_c00367{word-spacing:-28.218667pt;}
.ws0_c00367{word-spacing:-23.680000pt;}
.ws3_c00367{word-spacing:-18.080000pt;}
.ws2_c00367{word-spacing:-16.053333pt;}
.ws1_c00367{word-spacing:-12.586667pt;}
.ws4_c00367{word-spacing:-10.925333pt;}
.ws5_c00367{word-spacing:-9.920000pt;}
.ws7_c00367{word-spacing:0.000000pt;}
._3e_c00367{margin-left:-23.360000pt;}
._26_c00367{margin-left:-21.952000pt;}
._27_c00367{margin-left:-20.533333pt;}
._2f_c00367{margin-left:-18.133333pt;}
._2a_c00367{margin-left:-14.613333pt;}
._1c_c00367{margin-left:-12.320000pt;}
._2c_c00367{margin-left:-10.400000pt;}
._19_c00367{margin-left:-9.226667pt;}
._22_c00367{margin-left:-7.786667pt;}
._1a_c00367{margin-left:-6.720000pt;}
._f_c00367{margin-left:-5.120000pt;}
._1b_c00367{margin-left:-4.213333pt;}
._b_c00367{margin-left:-3.146667pt;}
._d_c00367{margin-left:-2.026667pt;}
._c_c00367{margin-left:-1.066667pt;}
._8_c00367{width:1.280000pt;}
._9_c00367{width:2.560000pt;}
._a_c00367{width:3.573333pt;}
._16_c00367{width:4.480000pt;}
._7_c00367{width:5.600000pt;}
._6_c00367{width:7.093333pt;}
._5_c00367{width:8.586667pt;}
._12_c00367{width:9.546667pt;}
._1_c00367{width:10.666667pt;}
._2_c00367{width:12.213333pt;}
._3_c00367{width:13.280000pt;}
._25_c00367{width:14.186667pt;}
._24_c00367{width:15.285333pt;}
._31_c00367{width:16.373333pt;}
._1d_c00367{width:17.280000pt;}
._4_c00367{width:18.666667pt;}
._18_c00367{width:20.320000pt;}
._13_c00367{width:22.026667pt;}
._20_c00367{width:22.933333pt;}
._1f_c00367{width:23.893333pt;}
._1e_c00367{width:25.066667pt;}
._21_c00367{width:26.133333pt;}
._17_c00367{width:27.146667pt;}
._29_c00367{width:28.320000pt;}
._11_c00367{width:29.226667pt;}
._15_c00367{width:30.133333pt;}
._14_c00367{width:31.253333pt;}
._10_c00367{width:33.653333pt;}
._28_c00367{width:35.360000pt;}
._2d_c00367{width:36.693333pt;}
._23_c00367{width:38.293333pt;}
._39_c00367{width:46.506667pt;}
._3a_c00367{width:48.480000pt;}
._3d_c00367{width:50.560000pt;}
._3c_c00367{width:51.786667pt;}
._e_c00367{width:54.933333pt;}
._36_c00367{width:55.893333pt;}
._3b_c00367{width:57.706667pt;}
._2b_c00367{width:60.053333pt;}
._38_c00367{width:61.109333pt;}
._32_c00367{width:65.546667pt;}
._2e_c00367{width:69.120000pt;}
._37_c00367{width:71.626667pt;}
._35_c00367{width:141.653333pt;}
._34_c00367{width:146.560000pt;}
._0_c00367{width:172.213333pt;}
._33_c00367{width:189.653333pt;}
._30_c00367{width:203.146667pt;}
._3f_c00367{width:1275.786667pt;}
.fs4_c00367{font-size:42.666667pt;}
.fs1_c00367{font-size:45.333333pt;}
.fs0_c00367{font-size:53.333333pt;}
.fs3_c00367{font-size:58.666667pt;}
.fs2_c00367{font-size:74.666667pt;}
.y0_c00367{bottom:0.000000pt;}
.y43_c00367{bottom:2.760000pt;}
.y42_c00367{bottom:6.425217pt;}
.y41_c00367{bottom:48.640000pt;}
.y40_c00367{bottom:64.506667pt;}
.y3f_c00367{bottom:80.906667pt;}
.y3e_c00367{bottom:96.906667pt;}
.y6_c00367{bottom:112.773333pt;}
.y3d_c00367{bottom:113.040000pt;}
.y5_c00367{bottom:129.040000pt;}
.y4_c00367{bottom:145.173333pt;}
.y3c_c00367{bottom:161.440000pt;}
.y3_c00367{bottom:161.973333pt;}
.y3b_c00367{bottom:177.040000pt;}
.y3a_c00367{bottom:193.706667pt;}
.y39_c00367{bottom:209.706667pt;}
.y38_c00367{bottom:225.573333pt;}
.y37_c00367{bottom:241.706667pt;}
.y36_c00367{bottom:257.306667pt;}
.y35_c00367{bottom:272.373333pt;}
.y20_c00367{bottom:273.040000pt;}
.y34_c00367{bottom:288.906667pt;}
.y1f_c00367{bottom:289.440000pt;}
.y1e_c00367{bottom:305.440000pt;}
.y1d_c00367{bottom:321.306667pt;}
.y33_c00367{bottom:321.573333pt;}
.y32_c00367{bottom:336.640000pt;}
.y1c_c00367{bottom:337.306667pt;}
.y1b_c00367{bottom:353.306667pt;}
.y31_c00367{bottom:353.440000pt;}
.y30_c00367{bottom:369.040000pt;}
.y1a_c00367{bottom:369.306667pt;}
.y19_c00367{bottom:385.173333pt;}
.y2f_c00367{bottom:385.706667pt;}
.y18_c00367{bottom:401.440000pt;}
.y2e_c00367{bottom:401.706667pt;}
.y17_c00367{bottom:417.840000pt;}
.y16_c00367{bottom:433.440000pt;}
.y2d_c00367{bottom:433.840000pt;}
.y15_c00367{bottom:449.306667pt;}
.y2c_c00367{bottom:450.240000pt;}
.y14_c00367{bottom:465.440000pt;}
.y2b_c00367{bottom:466.106667pt;}
.y13_c00367{bottom:481.706667pt;}
.y2a_c00367{bottom:481.840000pt;}
.y29_c00367{bottom:497.440000pt;}
.y12_c00367{bottom:497.973333pt;}
.y11_c00367{bottom:513.840000pt;}
.y10_c00367{bottom:529.840000pt;}
.y28_c00367{bottom:530.373333pt;}
.yf_c00367{bottom:545.706667pt;}
.y27_c00367{bottom:546.906667pt;}
.y26_c00367{bottom:562.106667pt;}
.ye_c00367{bottom:562.240000pt;}
.yd_c00367{bottom:577.840000pt;}
.y25_c00367{bottom:578.373333pt;}
.yc_c00367{bottom:593.973333pt;}
.y24_c00367{bottom:594.506667pt;}
.yb_c00367{bottom:610.240000pt;}
.y23_c00367{bottom:624.240000pt;}
.ya_c00367{bottom:626.106667pt;}
.y9_c00367{bottom:642.506667pt;}
.y22_c00367{bottom:658.106667pt;}
.y8_c00367{bottom:658.240000pt;}
.y21_c00367{bottom:673.706667pt;}
.y7_c00367{bottom:674.373333pt;}
.y2_c00367{bottom:690.506667pt;}
.y1_c00367{bottom:708.506667pt;}
.h8_c00367{height:11.733399pt;}
.h9_c00367{height:38.937500pt;}
.h6_c00367{height:53.058594pt;}
.h3_c00367{height:55.893333pt;}
.h2_c00367{height:56.906667pt;}
.h5_c00367{height:57.397135pt;}
.h7_c00367{height:62.597333pt;}
.h4_c00367{height:80.938667pt;}
.h0_c00367{height:742.533333pt;}
.h1_c00367{height:742.666667pt;}
.w1_c00367{width:93.222667pt;}
.w0_c00367{width:504.000000pt;}
.x0_c00367{left:0.000000pt;}
.x3_c00367{left:16.533333pt;}
.x4_c00367{left:17.466667pt;}
.x12_c00367{left:69.600000pt;}
.x6_c00367{left:72.533333pt;}
.x5_c00367{left:73.733333pt;}
.x2_c00367{left:74.933333pt;}
.x1_c00367{left:78.400000pt;}
.x14_c00367{left:94.533333pt;}
.x13_c00367{left:97.600000pt;}
.x15_c00367{left:209.168213pt;}
.x11_c00367{left:269.066667pt;}
.x10_c00367{left:270.400000pt;}
.x7_c00367{left:272.400000pt;}
.xa_c00367{left:276.666667pt;}
.xf_c00367{left:290.133333pt;}
.xe_c00367{left:300.400000pt;}
.x9_c00367{left:303.866667pt;}
.xb_c00367{left:308.800000pt;}
.xc_c00367{left:317.733333pt;}
.x8_c00367{left:331.600000pt;}
.xd_c00367{left:342.666667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c43895b86eb4af0fd79cddbb.woff2')format("woff");}.ff1_c00368{font-family:ff1_c00368;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00368;src:url('chunks/assets/font_6851d0045bed784522cf5ed0.woff2')format("woff");}.ff2_c00368{font-family:ff2_c00368;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00368;src:url('chunks/assets/font_d7cb8444813aa3d784c6e134.woff2')format("woff");}.ff3_c00368{font-family:ff3_c00368;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00368;src:url('chunks/assets/font_6bb1c2235c0ed8771ae97d9e.woff2')format("woff");}.ff4_c00368{font-family:ff4_c00368;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00368;src:url('chunks/assets/font_21345158a0f0ce7541c61e48.woff2')format("woff");}.ff5_c00368{font-family:ff5_c00368;line-height:1.575000;font-style:normal;font-weight:normal;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_505a34c871c79fef2b31ba3e.woff2')format("woff");}.ff6_c00368{font-family:ff6_c00368;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00368;src:url('chunks/assets/font_b5f1bd31ac67e4bd705f4662.woff2')format("woff");}.ff7_c00368{font-family:ff7_c00368;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00368;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff8_c00368{font-family:ff8_c00368;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00368{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00368{vertical-align:0.000000px;}
.ls4_c00368{letter-spacing:0.000000px;}
.ls0_c00368{letter-spacing:3.000000px;}
.ls3_c00368{letter-spacing:6.000000px;}
.ls2_c00368{letter-spacing:28.605000px;}
.ls1_c00368{letter-spacing:42.693000px;}
.sc__c00368{text-shadow:none;}
.sc0_c00368{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00368{-webkit-text-stroke:0px transparent;}
.sc0_c00368{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00368{word-spacing:-45.399000px;}
.ws4_c00368{word-spacing:-32.295000px;}
.ws5_c00368{word-spacing:-20.340000px;}
.ws2_c00368{word-spacing:-18.060000px;}
.ws0_c00368{word-spacing:-14.160000px;}
.ws3_c00368{word-spacing:-13.452000px;}
.ws7_c00368{word-spacing:0.000000px;}
.ws6_c00368{word-spacing:2.400000px;}
._1e_c00368{margin-left:-13.788000px;}
._17_c00368{margin-left:-12.624000px;}
._12_c00368{margin-left:-10.632000px;}
._1c_c00368{margin-left:-8.073000px;}
._c_c00368{margin-left:-7.008000px;}
._f_c00368{margin-left:-5.784000px;}
._d_c00368{margin-left:-4.644000px;}
._b_c00368{margin-left:-2.988000px;}
._a_c00368{margin-left:-1.092000px;}
._0_c00368{width:1.152000px;}
._14_c00368{width:2.340000px;}
._9_c00368{width:3.480000px;}
._1a_c00368{width:5.208000px;}
._13_c00368{width:6.660000px;}
._7_c00368{width:8.640000px;}
._16_c00368{width:10.044000px;}
._4_c00368{width:11.100000px;}
._10_c00368{width:12.864000px;}
._19_c00368{width:14.304000px;}
._6_c00368{width:16.200000px;}
._1d_c00368{width:17.376000px;}
._11_c00368{width:18.840000px;}
._2_c00368{width:20.160000px;}
._3_c00368{width:22.560000px;}
._23_c00368{width:23.568000px;}
._22_c00368{width:24.888000px;}
._25_c00368{width:25.980000px;}
._5_c00368{width:27.000000px;}
._20_c00368{width:28.908000px;}
._18_c00368{width:30.540000px;}
._21_c00368{width:32.628000px;}
._1f_c00368{width:34.416000px;}
._28_c00368{width:35.736000px;}
._1_c00368{width:37.272000px;}
._24_c00368{width:41.964000px;}
._27_c00368{width:44.940000px;}
._26_c00368{width:47.232000px;}
._29_c00368{width:49.284000px;}
._e_c00368{width:72.972000px;}
._15_c00368{width:74.268000px;}
._1b_c00368{width:79.752000px;}
._8_c00368{width:437.640000px;}
.fc2_c00368{color:transparent;}
.fc1_c00368{color:rgb(128,128,128);}
.fc0_c00368{color:rgb(0,0,0);}
.fs4_c00368{font-size:45.000000px;}
.fs5_c00368{font-size:48.000000px;}
.fs3_c00368{font-size:57.000000px;}
.fs1_c00368{font-size:60.000000px;}
.fs2_c00368{font-size:69.000000px;}
.fs0_c00368{font-size:72.000000px;}
.y0_c00368{bottom:0.000000px;}
.y50_c00368{bottom:3.105000px;}
.y4f_c00368{bottom:7.228369px;}
.y2c_c00368{bottom:61.470000px;}
.y4c_c00368{bottom:62.070000px;}
.y2b_c00368{bottom:80.220000px;}
.y4b_c00368{bottom:80.670000px;}
.y2a_c00368{bottom:98.520000px;}
.y4a_c00368{bottom:116.670000px;}
.y29_c00368{bottom:116.820000px;}
.y49_c00368{bottom:134.670000px;}
.y28_c00368{bottom:134.970000px;}
.y48_c00368{bottom:152.820000px;}
.y27_c00368{bottom:153.270000px;}
.y26_c00368{bottom:171.120000px;}
.y25_c00368{bottom:189.720000px;}
.y47_c00368{bottom:190.320000px;}
.y8_c00368{bottom:205.920000px;}
.y46_c00368{bottom:208.020000px;}
.y24_c00368{bottom:208.170000px;}
.y7_c00368{bottom:220.620000px;}
.y23_c00368{bottom:226.170000px;}
.y22_c00368{bottom:244.020000px;}
.y45_c00368{bottom:244.320000px;}
.y21_c00368{bottom:262.170000px;}
.y20_c00368{bottom:280.470000px;}
.y44_c00368{bottom:280.770000px;}
.y1f_c00368{bottom:298.320000px;}
.y43_c00368{bottom:298.920000px;}
.y1e_c00368{bottom:316.170000px;}
.y42_c00368{bottom:316.620000px;}
.y1d_c00368{bottom:334.470000px;}
.y41_c00368{bottom:334.770000px;}
.y1c_c00368{bottom:352.620000px;}
.y40_c00368{bottom:353.070000px;}
.y1b_c00368{bottom:370.920000px;}
.y3f_c00368{bottom:371.220000px;}
.y1a_c00368{bottom:388.470000px;}
.y3e_c00368{bottom:389.520000px;}
.y19_c00368{bottom:406.920000px;}
.y3d_c00368{bottom:407.370000px;}
.y18_c00368{bottom:425.220000px;}
.y3c_c00368{bottom:425.520000px;}
.y17_c00368{bottom:443.370000px;}
.y3b_c00368{bottom:443.820000px;}
.y16_c00368{bottom:461.370000px;}
.y3a_c00368{bottom:461.970000px;}
.y15_c00368{bottom:479.520000px;}
.y39_c00368{bottom:480.270000px;}
.y14_c00368{bottom:497.070000px;}
.y38_c00368{bottom:498.420000px;}
.y13_c00368{bottom:514.620000px;}
.y37_c00368{bottom:516.270000px;}
.y12_c00368{bottom:532.170000px;}
.y36_c00368{bottom:534.270000px;}
.y11_c00368{bottom:550.020000px;}
.y35_c00368{bottom:552.720000px;}
.y10_c00368{bottom:568.920000px;}
.y34_c00368{bottom:570.270000px;}
.yf_c00368{bottom:586.920000px;}
.y33_c00368{bottom:588.870000px;}
.ye_c00368{bottom:605.370000px;}
.y32_c00368{bottom:606.720000px;}
.yd_c00368{bottom:622.920000px;}
.y31_c00368{bottom:624.270000px;}
.yc_c00368{bottom:641.220000px;}
.y4e_c00368{bottom:641.520000px;}
.y30_c00368{bottom:642.870000px;}
.yb_c00368{bottom:659.070000px;}
.y4d_c00368{bottom:659.520000px;}
.y2f_c00368{bottom:660.720000px;}
.ya_c00368{bottom:677.070000px;}
.y2e_c00368{bottom:677.970000px;}
.y9_c00368{bottom:694.620000px;}
.y2d_c00368{bottom:695.970000px;}
.y6_c00368{bottom:713.520000px;}
.y5_c00368{bottom:731.670000px;}
.y4_c00368{bottom:749.820000px;}
.y3_c00368{bottom:767.070000px;}
.y2_c00368{bottom:785.970000px;}
.y1_c00368{bottom:805.170000px;}
.h7_c00368{height:13.200073px;}
.h8_c00368{height:43.804688px;}
.h5_c00368{height:59.736000px;}
.h3_c00368{height:62.880000px;}
.h6_c00368{height:63.420000px;}
.h2_c00368{height:70.664062px;}
.h4_c00368{height:73.623000px;}
.h0_c00368{height:835.350000px;}
.h1_c00368{height:835.500000px;}
.w1_c00368{width:104.875500px;}
.w0_c00368{width:580.500000px;}
.x0_c00368{left:0.000000px;}
.x4_c00368{left:18.300000px;}
.x6_c00368{left:78.300000px;}
.x7_c00368{left:79.650000px;}
.x2_c00368{left:80.700000px;}
.x3_c00368{left:81.750000px;}
.x5_c00368{left:83.100000px;}
.x8_c00368{left:100.200000px;}
.x9_c00368{left:111.150000px;}
.x1_c00368{left:207.150000px;}
.x13_c00368{left:242.064240px;}
.xe_c00368{left:296.550000px;}
.xc_c00368{left:297.750000px;}
.xa_c00368{left:299.100000px;}
.xd_c00368{left:300.750000px;}
.xf_c00368{left:327.750000px;}
.xb_c00368{left:343.650000px;}
.x11_c00368{left:502.500000px;}
.x10_c00368{left:503.550000px;}
.x12_c00368{left:505.950000px;}
@media print{
.v0_c00368{vertical-align:0.000000pt;}
.ls4_c00368{letter-spacing:0.000000pt;}
.ls0_c00368{letter-spacing:2.666667pt;}
.ls3_c00368{letter-spacing:5.333333pt;}
.ls2_c00368{letter-spacing:25.426667pt;}
.ls1_c00368{letter-spacing:37.949333pt;}
.ws1_c00368{word-spacing:-40.354667pt;}
.ws4_c00368{word-spacing:-28.706667pt;}
.ws5_c00368{word-spacing:-18.080000pt;}
.ws2_c00368{word-spacing:-16.053333pt;}
.ws0_c00368{word-spacing:-12.586667pt;}
.ws3_c00368{word-spacing:-11.957333pt;}
.ws7_c00368{word-spacing:0.000000pt;}
.ws6_c00368{word-spacing:2.133333pt;}
._1e_c00368{margin-left:-12.256000pt;}
._17_c00368{margin-left:-11.221333pt;}
._12_c00368{margin-left:-9.450667pt;}
._1c_c00368{margin-left:-7.176000pt;}
._c_c00368{margin-left:-6.229333pt;}
._f_c00368{margin-left:-5.141333pt;}
._d_c00368{margin-left:-4.128000pt;}
._b_c00368{margin-left:-2.656000pt;}
._a_c00368{margin-left:-0.970667pt;}
._0_c00368{width:1.024000pt;}
._14_c00368{width:2.080000pt;}
._9_c00368{width:3.093333pt;}
._1a_c00368{width:4.629333pt;}
._13_c00368{width:5.920000pt;}
._7_c00368{width:7.680000pt;}
._16_c00368{width:8.928000pt;}
._4_c00368{width:9.866667pt;}
._10_c00368{width:11.434667pt;}
._19_c00368{width:12.714667pt;}
._6_c00368{width:14.400000pt;}
._1d_c00368{width:15.445333pt;}
._11_c00368{width:16.746667pt;}
._2_c00368{width:17.920000pt;}
._3_c00368{width:20.053333pt;}
._23_c00368{width:20.949333pt;}
._22_c00368{width:22.122667pt;}
._25_c00368{width:23.093333pt;}
._5_c00368{width:24.000000pt;}
._20_c00368{width:25.696000pt;}
._18_c00368{width:27.146667pt;}
._21_c00368{width:29.002667pt;}
._1f_c00368{width:30.592000pt;}
._28_c00368{width:31.765333pt;}
._1_c00368{width:33.130667pt;}
._24_c00368{width:37.301333pt;}
._27_c00368{width:39.946667pt;}
._26_c00368{width:41.984000pt;}
._29_c00368{width:43.808000pt;}
._e_c00368{width:64.864000pt;}
._15_c00368{width:66.016000pt;}
._1b_c00368{width:70.890667pt;}
._8_c00368{width:389.013333pt;}
.fs4_c00368{font-size:40.000000pt;}
.fs5_c00368{font-size:42.666667pt;}
.fs3_c00368{font-size:50.666667pt;}
.fs1_c00368{font-size:53.333333pt;}
.fs2_c00368{font-size:61.333333pt;}
.fs0_c00368{font-size:64.000000pt;}
.y0_c00368{bottom:0.000000pt;}
.y50_c00368{bottom:2.760000pt;}
.y4f_c00368{bottom:6.425217pt;}
.y2c_c00368{bottom:54.640000pt;}
.y4c_c00368{bottom:55.173333pt;}
.y2b_c00368{bottom:71.306667pt;}
.y4b_c00368{bottom:71.706667pt;}
.y2a_c00368{bottom:87.573333pt;}
.y4a_c00368{bottom:103.706667pt;}
.y29_c00368{bottom:103.840000pt;}
.y49_c00368{bottom:119.706667pt;}
.y28_c00368{bottom:119.973333pt;}
.y48_c00368{bottom:135.840000pt;}
.y27_c00368{bottom:136.240000pt;}
.y26_c00368{bottom:152.106667pt;}
.y25_c00368{bottom:168.640000pt;}
.y47_c00368{bottom:169.173333pt;}
.y8_c00368{bottom:183.040000pt;}
.y46_c00368{bottom:184.906667pt;}
.y24_c00368{bottom:185.040000pt;}
.y7_c00368{bottom:196.106667pt;}
.y23_c00368{bottom:201.040000pt;}
.y22_c00368{bottom:216.906667pt;}
.y45_c00368{bottom:217.173333pt;}
.y21_c00368{bottom:233.040000pt;}
.y20_c00368{bottom:249.306667pt;}
.y44_c00368{bottom:249.573333pt;}
.y1f_c00368{bottom:265.173333pt;}
.y43_c00368{bottom:265.706667pt;}
.y1e_c00368{bottom:281.040000pt;}
.y42_c00368{bottom:281.440000pt;}
.y1d_c00368{bottom:297.306667pt;}
.y41_c00368{bottom:297.573333pt;}
.y1c_c00368{bottom:313.440000pt;}
.y40_c00368{bottom:313.840000pt;}
.y1b_c00368{bottom:329.706667pt;}
.y3f_c00368{bottom:329.973333pt;}
.y1a_c00368{bottom:345.306667pt;}
.y3e_c00368{bottom:346.240000pt;}
.y19_c00368{bottom:361.706667pt;}
.y3d_c00368{bottom:362.106667pt;}
.y18_c00368{bottom:377.973333pt;}
.y3c_c00368{bottom:378.240000pt;}
.y17_c00368{bottom:394.106667pt;}
.y3b_c00368{bottom:394.506667pt;}
.y16_c00368{bottom:410.106667pt;}
.y3a_c00368{bottom:410.640000pt;}
.y15_c00368{bottom:426.240000pt;}
.y39_c00368{bottom:426.906667pt;}
.y14_c00368{bottom:441.840000pt;}
.y38_c00368{bottom:443.040000pt;}
.y13_c00368{bottom:457.440000pt;}
.y37_c00368{bottom:458.906667pt;}
.y12_c00368{bottom:473.040000pt;}
.y36_c00368{bottom:474.906667pt;}
.y11_c00368{bottom:488.906667pt;}
.y35_c00368{bottom:491.306667pt;}
.y10_c00368{bottom:505.706667pt;}
.y34_c00368{bottom:506.906667pt;}
.yf_c00368{bottom:521.706667pt;}
.y33_c00368{bottom:523.440000pt;}
.ye_c00368{bottom:538.106667pt;}
.y32_c00368{bottom:539.306667pt;}
.yd_c00368{bottom:553.706667pt;}
.y31_c00368{bottom:554.906667pt;}
.yc_c00368{bottom:569.973333pt;}
.y4e_c00368{bottom:570.240000pt;}
.y30_c00368{bottom:571.440000pt;}
.yb_c00368{bottom:585.840000pt;}
.y4d_c00368{bottom:586.240000pt;}
.y2f_c00368{bottom:587.306667pt;}
.ya_c00368{bottom:601.840000pt;}
.y2e_c00368{bottom:602.640000pt;}
.y9_c00368{bottom:617.440000pt;}
.y2d_c00368{bottom:618.640000pt;}
.y6_c00368{bottom:634.240000pt;}
.y5_c00368{bottom:650.373333pt;}
.y4_c00368{bottom:666.506667pt;}
.y3_c00368{bottom:681.840000pt;}
.y2_c00368{bottom:698.640000pt;}
.y1_c00368{bottom:715.706667pt;}
.h7_c00368{height:11.733399pt;}
.h8_c00368{height:38.937500pt;}
.h5_c00368{height:53.098667pt;}
.h3_c00368{height:55.893333pt;}
.h6_c00368{height:56.373333pt;}
.h2_c00368{height:62.812500pt;}
.h4_c00368{height:65.442667pt;}
.h0_c00368{height:742.533333pt;}
.h1_c00368{height:742.666667pt;}
.w1_c00368{width:93.222667pt;}
.w0_c00368{width:516.000000pt;}
.x0_c00368{left:0.000000pt;}
.x4_c00368{left:16.266667pt;}
.x6_c00368{left:69.600000pt;}
.x7_c00368{left:70.800000pt;}
.x2_c00368{left:71.733333pt;}
.x3_c00368{left:72.666667pt;}
.x5_c00368{left:73.866667pt;}
.x8_c00368{left:89.066667pt;}
.x9_c00368{left:98.800000pt;}
.x1_c00368{left:184.133333pt;}
.x13_c00368{left:215.168213pt;}
.xe_c00368{left:263.600000pt;}
.xc_c00368{left:264.666667pt;}
.xa_c00368{left:265.866667pt;}
.xd_c00368{left:267.333333pt;}
.xf_c00368{left:291.333333pt;}
.xb_c00368{left:305.466667pt;}
.x11_c00368{left:446.666667pt;}
.x10_c00368{left:447.600000pt;}
.x12_c00368{left:449.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_0bacfde1332e1333eb711ecb.woff2')format("woff");}.ff1_c00369{font-family:ff1_c00369;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00369;src:url('chunks/assets/font_e4daf057603987c8485d1faa.woff2')format("woff");}.ff2_c00369{font-family:ff2_c00369;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00369;src:url('chunks/assets/font_3d7ce9e292c4444b37b5cee0.woff2')format("woff");}.ff3_c00369{font-family:ff3_c00369;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00369;src:url('chunks/assets/font_6cf77bb494cd3bc4ac9d0b33.woff2')format("woff");}.ff4_c00369{font-family:ff4_c00369;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00369;src:url('chunks/assets/font_a49fe5c5e2373c20499ca68e.woff2')format("woff");}.ff5_c00369{font-family:ff5_c00369;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00369;src:url('chunks/assets/font_6571fd02ad05bd1502cdd825.woff2')format("woff");}.ff6_c00369{font-family:ff6_c00369;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00369;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff7_c00369{font-family:ff7_c00369;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00369{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00369{vertical-align:0.000000px;}
.v1_c00369{vertical-align:110.400000px;}
.ls7_c00369{letter-spacing:0.000000px;}
.ls1_c00369{letter-spacing:3.000000px;}
.ls3_c00369{letter-spacing:3.525000px;}
.ls6_c00369{letter-spacing:6.000000px;}
.ls5_c00369{letter-spacing:7.260000px;}
.ls2_c00369{letter-spacing:14.682000px;}
.ls8_c00369{letter-spacing:15.000000px;}
.ls0_c00369{letter-spacing:16.800000px;}
.ls4_c00369{letter-spacing:25.860000px;}
.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;}
}
.ws6_c00369{word-spacing:-59.550000px;}
.ws2_c00369{word-spacing:-32.295000px;}
.ws4_c00369{word-spacing:-28.623000px;}
.ws3_c00369{word-spacing:-18.060000px;}
.ws5_c00369{word-spacing:-17.340000px;}
.ws1_c00369{word-spacing:-14.160000px;}
.ws0_c00369{word-spacing:-0.096000px;}
.ws7_c00369{word-spacing:0.000000px;}
._1f_c00369{margin-left:-20.820000px;}
._21_c00369{margin-left:-12.342000px;}
._22_c00369{margin-left:-10.557000px;}
._15_c00369{margin-left:-9.060000px;}
._1e_c00369{margin-left:-7.920000px;}
._e_c00369{margin-left:-6.510000px;}
._a_c00369{margin-left:-4.740000px;}
._16_c00369{margin-left:-3.480000px;}
._d_c00369{margin-left:-2.460000px;}
._c_c00369{margin-left:-1.020000px;}
._2_c00369{width:1.500000px;}
._1_c00369{width:2.880000px;}
._9_c00369{width:4.080000px;}
._5_c00369{width:5.400000px;}
._6_c00369{width:6.480000px;}
._7_c00369{width:8.100000px;}
._4_c00369{width:9.240000px;}
._17_c00369{width:10.920000px;}
._8_c00369{width:11.940000px;}
._b_c00369{width:14.040000px;}
._19_c00369{width:15.660000px;}
._1c_c00369{width:16.740000px;}
._f_c00369{width:18.735000px;}
._0_c00369{width:20.760000px;}
._3_c00369{width:22.440000px;}
._13_c00369{width:24.720000px;}
._14_c00369{width:26.580000px;}
._18_c00369{width:28.380000px;}
._12_c00369{width:29.460000px;}
._20_c00369{width:30.780000px;}
._1a_c00369{width:33.930000px;}
._1b_c00369{width:35.790000px;}
._10_c00369{width:39.300000px;}
._11_c00369{width:43.845000px;}
._1d_c00369{width:121.800000px;}
.fc2_c00369{color:transparent;}
.fc1_c00369{color:rgb(128,128,128);}
.fc0_c00369{color:rgb(0,0,0);}
.fs0_c00369{font-size:24.000000px;}
.fs2_c00369{font-size:45.000000px;}
.fs7_c00369{font-size:48.000000px;}
.fs3_c00369{font-size:57.000000px;}
.fs1_c00369{font-size:60.000000px;}
.fs6_c00369{font-size:69.000000px;}
.fs5_c00369{font-size:75.000000px;}
.fs4_c00369{font-size:207.000000px;}
.y0_c00369{bottom:0.000000px;}
.y52_c00369{bottom:3.105000px;}
.y51_c00369{bottom:7.228355px;}
.y50_c00369{bottom:61.785000px;}
.y27_c00369{bottom:64.785000px;}
.y4f_c00369{bottom:82.035000px;}
.y26_c00369{bottom:84.285000px;}
.y4e_c00369{bottom:100.185000px;}
.y25_c00369{bottom:102.885000px;}
.y4d_c00369{bottom:118.485000px;}
.y24_c00369{bottom:120.435000px;}
.y22_c00369{bottom:129.285000px;}
.y4c_c00369{bottom:135.285000px;}
.y23_c00369{bottom:139.035000px;}
.y4b_c00369{bottom:155.235000px;}
.y4a_c00369{bottom:173.085000px;}
.y49_c00369{bottom:191.385000px;}
.y21_c00369{bottom:193.935000px;}
.y48_c00369{bottom:209.535000px;}
.y20_c00369{bottom:211.935000px;}
.y47_c00369{bottom:227.835000px;}
.y1f_c00369{bottom:230.535000px;}
.y46_c00369{bottom:245.385000px;}
.y1e_c00369{bottom:248.385000px;}
.y45_c00369{bottom:264.285000px;}
.y1d_c00369{bottom:266.535000px;}
.y44_c00369{bottom:282.135000px;}
.y43_c00369{bottom:299.985000px;}
.y1c_c00369{bottom:301.035000px;}
.y42_c00369{bottom:317.235000px;}
.y41_c00369{bottom:335.685000px;}
.y1b_c00369{bottom:337.785000px;}
.y40_c00369{bottom:353.985000px;}
.y1a_c00369{bottom:356.385000px;}
.y3f_c00369{bottom:372.135000px;}
.y19_c00369{bottom:374.835000px;}
.y3e_c00369{bottom:389.835000px;}
.y18_c00369{bottom:393.135000px;}
.y3d_c00369{bottom:407.385000px;}
.y17_c00369{bottom:410.985000px;}
.y3c_c00369{bottom:426.285000px;}
.y16_c00369{bottom:428.985000px;}
.y3b_c00369{bottom:444.435000px;}
.y15_c00369{bottom:447.435000px;}
.y3a_c00369{bottom:462.585000px;}
.y14_c00369{bottom:465.735000px;}
.y39_c00369{bottom:480.885000px;}
.y13_c00369{bottom:483.885000px;}
.y38_c00369{bottom:499.035000px;}
.y12_c00369{bottom:501.885000px;}
.y37_c00369{bottom:517.035000px;}
.y11_c00369{bottom:519.735000px;}
.y36_c00369{bottom:535.185000px;}
.y10_c00369{bottom:537.885000px;}
.y35_c00369{bottom:554.385000px;}
.yf_c00369{bottom:556.485000px;}
.y34_c00369{bottom:572.085000px;}
.ye_c00369{bottom:574.635000px;}
.y33_c00369{bottom:590.535000px;}
.yd_c00369{bottom:592.335000px;}
.y32_c00369{bottom:608.835000px;}
.yc_c00369{bottom:610.485000px;}
.y31_c00369{bottom:627.435000px;}
.yb_c00369{bottom:628.635000px;}
.y30_c00369{bottom:645.885000px;}
.ya_c00369{bottom:646.935000px;}
.y2f_c00369{bottom:663.735000px;}
.y9_c00369{bottom:665.085000px;}
.y2e_c00369{bottom:681.285000px;}
.y8_c00369{bottom:682.785000px;}
.y2d_c00369{bottom:699.885000px;}
.y7_c00369{bottom:701.235000px;}
.y2c_c00369{bottom:717.885000px;}
.y6_c00369{bottom:719.235000px;}
.y2b_c00369{bottom:736.335000px;}
.y5_c00369{bottom:737.685000px;}
.y2a_c00369{bottom:753.585000px;}
.y4_c00369{bottom:756.285000px;}
.y29_c00369{bottom:772.785000px;}
.y3_c00369{bottom:774.885000px;}
.y28_c00369{bottom:790.785000px;}
.y2_c00369{bottom:791.985000px;}
.y1_c00369{bottom:811.635000px;}
.h7_c00369{height:13.200074px;}
.h2_c00369{height:30.386719px;}
.h8_c00369{height:43.804688px;}
.h3_c00369{height:62.880000px;}
.h6_c00369{height:72.312000px;}
.h5_c00369{height:78.600000px;}
.h4_c00369{height:216.936000px;}
.h1_c00369{height:846.750000px;}
.h0_c00369{height:846.975000px;}
.w2_c00369{width:104.875500px;}
.w1_c00369{width:575.250000px;}
.w0_c00369{width:575.400000px;}
.x0_c00369{left:0.000000px;}
.x2_c00369{left:25.050000px;}
.x5_c00369{left:81.300000px;}
.x3_c00369{left:82.350000px;}
.x4_c00369{left:83.700000px;}
.xb_c00369{left:85.350000px;}
.x1_c00369{left:88.800000px;}
.x8_c00369{left:94.200000px;}
.x9_c00369{left:108.450000px;}
.x7_c00369{left:112.050000px;}
.xd_c00369{left:123.900000px;}
.xc_c00369{left:127.350000px;}
.xa_c00369{left:139.500000px;}
.x6_c00369{left:145.800000px;}
.x13_c00369{left:239.514267px;}
.x12_c00369{left:300.750000px;}
.x11_c00369{left:301.800000px;}
.x10_c00369{left:302.850000px;}
.xe_c00369{left:304.050000px;}
.xf_c00369{left:305.100000px;}
@media print{
.v0_c00369{vertical-align:0.000000pt;}
.v1_c00369{vertical-align:98.133333pt;}
.ls7_c00369{letter-spacing:0.000000pt;}
.ls1_c00369{letter-spacing:2.666667pt;}
.ls3_c00369{letter-spacing:3.133333pt;}
.ls6_c00369{letter-spacing:5.333333pt;}
.ls5_c00369{letter-spacing:6.453333pt;}
.ls2_c00369{letter-spacing:13.050667pt;}
.ls8_c00369{letter-spacing:13.333333pt;}
.ls0_c00369{letter-spacing:14.933333pt;}
.ls4_c00369{letter-spacing:22.986667pt;}
.ws6_c00369{word-spacing:-52.933333pt;}
.ws2_c00369{word-spacing:-28.706667pt;}
.ws4_c00369{word-spacing:-25.442667pt;}
.ws3_c00369{word-spacing:-16.053333pt;}
.ws5_c00369{word-spacing:-15.413333pt;}
.ws1_c00369{word-spacing:-12.586667pt;}
.ws0_c00369{word-spacing:-0.085333pt;}
.ws7_c00369{word-spacing:0.000000pt;}
._1f_c00369{margin-left:-18.506667pt;}
._21_c00369{margin-left:-10.970667pt;}
._22_c00369{margin-left:-9.384000pt;}
._15_c00369{margin-left:-8.053333pt;}
._1e_c00369{margin-left:-7.040000pt;}
._e_c00369{margin-left:-5.786667pt;}
._a_c00369{margin-left:-4.213333pt;}
._16_c00369{margin-left:-3.093333pt;}
._d_c00369{margin-left:-2.186667pt;}
._c_c00369{margin-left:-0.906667pt;}
._2_c00369{width:1.333333pt;}
._1_c00369{width:2.560000pt;}
._9_c00369{width:3.626667pt;}
._5_c00369{width:4.800000pt;}
._6_c00369{width:5.760000pt;}
._7_c00369{width:7.200000pt;}
._4_c00369{width:8.213333pt;}
._17_c00369{width:9.706667pt;}
._8_c00369{width:10.613333pt;}
._b_c00369{width:12.480000pt;}
._19_c00369{width:13.920000pt;}
._1c_c00369{width:14.880000pt;}
._f_c00369{width:16.653333pt;}
._0_c00369{width:18.453333pt;}
._3_c00369{width:19.946667pt;}
._13_c00369{width:21.973333pt;}
._14_c00369{width:23.626667pt;}
._18_c00369{width:25.226667pt;}
._12_c00369{width:26.186667pt;}
._20_c00369{width:27.360000pt;}
._1a_c00369{width:30.160000pt;}
._1b_c00369{width:31.813333pt;}
._10_c00369{width:34.933333pt;}
._11_c00369{width:38.973333pt;}
._1d_c00369{width:108.266667pt;}
.fs0_c00369{font-size:21.333333pt;}
.fs2_c00369{font-size:40.000000pt;}
.fs7_c00369{font-size:42.666667pt;}
.fs3_c00369{font-size:50.666667pt;}
.fs1_c00369{font-size:53.333333pt;}
.fs6_c00369{font-size:61.333333pt;}
.fs5_c00369{font-size:66.666667pt;}
.fs4_c00369{font-size:184.000000pt;}
.y0_c00369{bottom:0.000000pt;}
.y52_c00369{bottom:2.760000pt;}
.y51_c00369{bottom:6.425204pt;}
.y50_c00369{bottom:54.920000pt;}
.y27_c00369{bottom:57.586667pt;}
.y4f_c00369{bottom:72.920000pt;}
.y26_c00369{bottom:74.920000pt;}
.y4e_c00369{bottom:89.053333pt;}
.y25_c00369{bottom:91.453333pt;}
.y4d_c00369{bottom:105.320000pt;}
.y24_c00369{bottom:107.053333pt;}
.y22_c00369{bottom:114.920000pt;}
.y4c_c00369{bottom:120.253333pt;}
.y23_c00369{bottom:123.586667pt;}
.y4b_c00369{bottom:137.986667pt;}
.y4a_c00369{bottom:153.853333pt;}
.y49_c00369{bottom:170.120000pt;}
.y21_c00369{bottom:172.386667pt;}
.y48_c00369{bottom:186.253333pt;}
.y20_c00369{bottom:188.386667pt;}
.y47_c00369{bottom:202.520000pt;}
.y1f_c00369{bottom:204.920000pt;}
.y46_c00369{bottom:218.120000pt;}
.y1e_c00369{bottom:220.786667pt;}
.y45_c00369{bottom:234.920000pt;}
.y1d_c00369{bottom:236.920000pt;}
.y44_c00369{bottom:250.786667pt;}
.y43_c00369{bottom:266.653333pt;}
.y1c_c00369{bottom:267.586667pt;}
.y42_c00369{bottom:281.986667pt;}
.y41_c00369{bottom:298.386667pt;}
.y1b_c00369{bottom:300.253333pt;}
.y40_c00369{bottom:314.653333pt;}
.y1a_c00369{bottom:316.786667pt;}
.y3f_c00369{bottom:330.786667pt;}
.y19_c00369{bottom:333.186667pt;}
.y3e_c00369{bottom:346.520000pt;}
.y18_c00369{bottom:349.453333pt;}
.y3d_c00369{bottom:362.120000pt;}
.y17_c00369{bottom:365.320000pt;}
.y3c_c00369{bottom:378.920000pt;}
.y16_c00369{bottom:381.320000pt;}
.y3b_c00369{bottom:395.053333pt;}
.y15_c00369{bottom:397.720000pt;}
.y3a_c00369{bottom:411.186667pt;}
.y14_c00369{bottom:413.986667pt;}
.y39_c00369{bottom:427.453333pt;}
.y13_c00369{bottom:430.120000pt;}
.y38_c00369{bottom:443.586667pt;}
.y12_c00369{bottom:446.120000pt;}
.y37_c00369{bottom:459.586667pt;}
.y11_c00369{bottom:461.986667pt;}
.y36_c00369{bottom:475.720000pt;}
.y10_c00369{bottom:478.120000pt;}
.y35_c00369{bottom:492.786667pt;}
.yf_c00369{bottom:494.653333pt;}
.y34_c00369{bottom:508.520000pt;}
.ye_c00369{bottom:510.786667pt;}
.y33_c00369{bottom:524.920000pt;}
.yd_c00369{bottom:526.520000pt;}
.y32_c00369{bottom:541.186667pt;}
.yc_c00369{bottom:542.653333pt;}
.y31_c00369{bottom:557.720000pt;}
.yb_c00369{bottom:558.786667pt;}
.y30_c00369{bottom:574.120000pt;}
.ya_c00369{bottom:575.053333pt;}
.y2f_c00369{bottom:589.986667pt;}
.y9_c00369{bottom:591.186667pt;}
.y2e_c00369{bottom:605.586667pt;}
.y8_c00369{bottom:606.920000pt;}
.y2d_c00369{bottom:622.120000pt;}
.y7_c00369{bottom:623.320000pt;}
.y2c_c00369{bottom:638.120000pt;}
.y6_c00369{bottom:639.320000pt;}
.y2b_c00369{bottom:654.520000pt;}
.y5_c00369{bottom:655.720000pt;}
.y2a_c00369{bottom:669.853333pt;}
.y4_c00369{bottom:672.253333pt;}
.y29_c00369{bottom:686.920000pt;}
.y3_c00369{bottom:688.786667pt;}
.y28_c00369{bottom:702.920000pt;}
.y2_c00369{bottom:703.986667pt;}
.y1_c00369{bottom:721.453333pt;}
.h7_c00369{height:11.733399pt;}
.h2_c00369{height:27.010417pt;}
.h8_c00369{height:38.937500pt;}
.h3_c00369{height:55.893333pt;}
.h6_c00369{height:64.277333pt;}
.h5_c00369{height:69.866667pt;}
.h4_c00369{height:192.832000pt;}
.h1_c00369{height:752.666667pt;}
.h0_c00369{height:752.866667pt;}
.w2_c00369{width:93.222667pt;}
.w1_c00369{width:511.333333pt;}
.w0_c00369{width:511.466667pt;}
.x0_c00369{left:0.000000pt;}
.x2_c00369{left:22.266667pt;}
.x5_c00369{left:72.266667pt;}
.x3_c00369{left:73.200000pt;}
.x4_c00369{left:74.400000pt;}
.xb_c00369{left:75.866667pt;}
.x1_c00369{left:78.933333pt;}
.x8_c00369{left:83.733333pt;}
.x9_c00369{left:96.400000pt;}
.x7_c00369{left:99.600000pt;}
.xd_c00369{left:110.133333pt;}
.xc_c00369{left:113.200000pt;}
.xa_c00369{left:124.000000pt;}
.x6_c00369{left:129.600000pt;}
.x13_c00369{left:212.901571pt;}
.x12_c00369{left:267.333333pt;}
.x11_c00369{left:268.266667pt;}
.x10_c00369{left:269.200000pt;}
.xe_c00369{left:270.266667pt;}
.xf_c00369{left:271.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_223828bb431f8652dba8239c.woff2')format("woff");}.ff1_c00370{font-family:ff1_c00370;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00370;src:url('chunks/assets/font_2798120c519ac83189f533a4.woff2')format("woff");}.ff2_c00370{font-family:ff2_c00370;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00370;src:url('chunks/assets/font_2bb060b0017305174c0ad314.woff2')format("woff");}.ff3_c00370{font-family:ff3_c00370;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00370;src:url('chunks/assets/font_1b27eae22dfc0b429457a078.woff2')format("woff");}.ff4_c00370{font-family:ff4_c00370;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00370;src:url('chunks/assets/font_0ce391de997f24f9f9dd37f4.woff2')format("woff");}.ff5_c00370{font-family:ff5_c00370;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00370;src:url('chunks/assets/font_3bf414ab74995e3f8e06b5e7.woff2')format("woff");}.ff6_c00370{font-family:ff6_c00370;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00370;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff7_c00370{font-family:ff7_c00370;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00370{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00370{vertical-align:0.000000px;}
.ls3_c00370{letter-spacing:0.000000px;}
.ls2_c00370{letter-spacing:3.000000px;}
.ls1_c00370{letter-spacing:6.000000px;}
.ls0_c00370{letter-spacing:23.460000px;}
.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;}
}
.ws2_c00370{word-spacing:-32.295000px;}
.ws4_c00370{word-spacing:-24.000000px;}
.ws3_c00370{word-spacing:-20.340000px;}
.ws0_c00370{word-spacing:-18.060000px;}
.ws1_c00370{word-spacing:-14.160000px;}
.ws6_c00370{word-spacing:0.000000px;}
.ws5_c00370{word-spacing:5.580000px;}
._17_c00370{margin-left:-18.708000px;}
._20_c00370{margin-left:-17.112000px;}
._26_c00370{margin-left:-15.324000px;}
._25_c00370{margin-left:-13.212000px;}
._12_c00370{margin-left:-12.000000px;}
._1d_c00370{margin-left:-10.908000px;}
._11_c00370{margin-left:-9.480000px;}
._10_c00370{margin-left:-8.256000px;}
._8_c00370{margin-left:-6.624000px;}
._e_c00370{margin-left:-5.160000px;}
._a_c00370{margin-left:-3.960000px;}
._9_c00370{margin-left:-2.160000px;}
._b_c00370{margin-left:-1.020000px;}
._0_c00370{width:1.152000px;}
._6_c00370{width:3.024000px;}
._3_c00370{width:4.248000px;}
._5_c00370{width:5.616000px;}
._2_c00370{width:7.416000px;}
._4_c00370{width:8.568000px;}
._21_c00370{width:10.008000px;}
._c_c00370{width:11.340000px;}
._1f_c00370{width:12.516000px;}
._18_c00370{width:13.848000px;}
._24_c00370{width:15.060000px;}
._27_c00370{width:16.581000px;}
._16_c00370{width:17.859000px;}
._28_c00370{width:18.960000px;}
._19_c00370{width:22.332000px;}
._1e_c00370{width:23.352000px;}
._23_c00370{width:25.344000px;}
._1a_c00370{width:29.280000px;}
._1c_c00370{width:31.164000px;}
._1_c00370{width:32.184000px;}
._22_c00370{width:33.672000px;}
._1b_c00370{width:35.280000px;}
._d_c00370{width:39.540000px;}
._13_c00370{width:42.516000px;}
._f_c00370{width:45.204000px;}
._15_c00370{width:49.140000px;}
._14_c00370{width:58.776000px;}
._29_c00370{width:68.712000px;}
._2a_c00370{width:82.707000px;}
._7_c00370{width:411.264000px;}
.fc2_c00370{color:transparent;}
.fc1_c00370{color:rgb(128,128,128);}
.fc0_c00370{color:rgb(0,0,0);}
.fs2_c00370{font-size:45.000000px;}
.fs4_c00370{font-size:48.000000px;}
.fs3_c00370{font-size:57.000000px;}
.fs1_c00370{font-size:60.000000px;}
.fs0_c00370{font-size:72.000000px;}
.y0_c00370{bottom:0.000000px;}
.y44_c00370{bottom:3.105000px;}
.y43_c00370{bottom:7.228363px;}
.y42_c00370{bottom:31.950000px;}
.y3d_c00370{bottom:56.700000px;}
.y3c_c00370{bottom:75.300000px;}
.y3b_c00370{bottom:94.050000px;}
.y3a_c00370{bottom:111.750000px;}
.y39_c00370{bottom:129.900000px;}
.y38_c00370{bottom:148.050000px;}
.y41_c00370{bottom:165.000000px;}
.y37_c00370{bottom:166.350000px;}
.y40_c00370{bottom:183.300000px;}
.y36_c00370{bottom:184.500000px;}
.y3f_c00370{bottom:201.750000px;}
.y35_c00370{bottom:202.800000px;}
.y3e_c00370{bottom:219.300000px;}
.y34_c00370{bottom:220.650000px;}
.y33_c00370{bottom:238.500000px;}
.y32_c00370{bottom:255.750000px;}
.y31_c00370{bottom:273.750000px;}
.y1e_c00370{bottom:275.700000px;}
.y30_c00370{bottom:292.200000px;}
.y1d_c00370{bottom:293.850000px;}
.y2f_c00370{bottom:310.500000px;}
.y1c_c00370{bottom:311.100000px;}
.y2e_c00370{bottom:328.650000px;}
.y1b_c00370{bottom:329.850000px;}
.y2d_c00370{bottom:346.650000px;}
.y1a_c00370{bottom:347.850000px;}
.y2c_c00370{bottom:364.800000px;}
.y19_c00370{bottom:365.850000px;}
.y2b_c00370{bottom:382.950000px;}
.y18_c00370{bottom:384.000000px;}
.y2a_c00370{bottom:400.650000px;}
.y17_c00370{bottom:402.000000px;}
.y29_c00370{bottom:419.100000px;}
.y16_c00370{bottom:420.150000px;}
.y28_c00370{bottom:437.100000px;}
.y15_c00370{bottom:437.700000px;}
.y27_c00370{bottom:455.250000px;}
.y14_c00370{bottom:455.700000px;}
.y26_c00370{bottom:473.100000px;}
.y13_c00370{bottom:474.150000px;}
.y25_c00370{bottom:490.950000px;}
.y12_c00370{bottom:492.000000px;}
.y24_c00370{bottom:508.950000px;}
.y11_c00370{bottom:509.850000px;}
.y10_c00370{bottom:527.100000px;}
.yf_c00370{bottom:544.950000px;}
.y23_c00370{bottom:545.100000px;}
.y22_c00370{bottom:562.500000px;}
.ye_c00370{bottom:562.950000px;}
.yd_c00370{bottom:580.500000px;}
.y21_c00370{bottom:581.400000px;}
.yc_c00370{bottom:598.950000px;}
.yb_c00370{bottom:616.950000px;}
.y20_c00370{bottom:617.250000px;}
.ya_c00370{bottom:635.400000px;}
.y9_c00370{bottom:653.100000px;}
.y1f_c00370{bottom:653.400000px;}
.y8_c00370{bottom:671.250000px;}
.y7_c00370{bottom:689.550000px;}
.y6_c00370{bottom:707.700000px;}
.y5_c00370{bottom:725.250000px;}
.y4_c00370{bottom:743.850000px;}
.y3_c00370{bottom:761.700000px;}
.y2_c00370{bottom:779.250000px;}
.y1_c00370{bottom:799.200000px;}
.h4_c00370{height:13.200074px;}
.h5_c00370{height:43.804688px;}
.h2_c00370{height:62.880000px;}
.h3_c00370{height:63.480000px;}
.h1_c00370{height:70.664062px;}
.h0_c00370{height:837.000000px;}
.w2_c00370{width:104.875500px;}
.w1_c00370{width:581.250000px;}
.w0_c00370{width:581.550000px;}
.x0_c00370{left:0.000000px;}
.x8_c00370{left:60.450000px;}
.x7_c00370{left:67.800000px;}
.x9_c00370{left:68.850000px;}
.x4_c00370{left:70.200000px;}
.x2_c00370{left:71.550000px;}
.x3_c00370{left:73.200000px;}
.x1_c00370{left:211.950000px;}
.xf_c00370{left:242.589249px;}
.x5_c00370{left:286.500000px;}
.x6_c00370{left:287.850000px;}
.xa_c00370{left:302.400000px;}
.xb_c00370{left:325.050000px;}
.xc_c00370{left:337.950000px;}
.xd_c00370{left:368.250000px;}
.xe_c00370{left:463.500000px;}
@media print{
.v0_c00370{vertical-align:0.000000pt;}
.ls3_c00370{letter-spacing:0.000000pt;}
.ls2_c00370{letter-spacing:2.666667pt;}
.ls1_c00370{letter-spacing:5.333333pt;}
.ls0_c00370{letter-spacing:20.853333pt;}
.ws2_c00370{word-spacing:-28.706667pt;}
.ws4_c00370{word-spacing:-21.333333pt;}
.ws3_c00370{word-spacing:-18.080000pt;}
.ws0_c00370{word-spacing:-16.053333pt;}
.ws1_c00370{word-spacing:-12.586667pt;}
.ws6_c00370{word-spacing:0.000000pt;}
.ws5_c00370{word-spacing:4.960000pt;}
._17_c00370{margin-left:-16.629333pt;}
._20_c00370{margin-left:-15.210667pt;}
._26_c00370{margin-left:-13.621333pt;}
._25_c00370{margin-left:-11.744000pt;}
._12_c00370{margin-left:-10.666667pt;}
._1d_c00370{margin-left:-9.696000pt;}
._11_c00370{margin-left:-8.426667pt;}
._10_c00370{margin-left:-7.338667pt;}
._8_c00370{margin-left:-5.888000pt;}
._e_c00370{margin-left:-4.586667pt;}
._a_c00370{margin-left:-3.520000pt;}
._9_c00370{margin-left:-1.920000pt;}
._b_c00370{margin-left:-0.906667pt;}
._0_c00370{width:1.024000pt;}
._6_c00370{width:2.688000pt;}
._3_c00370{width:3.776000pt;}
._5_c00370{width:4.992000pt;}
._2_c00370{width:6.592000pt;}
._4_c00370{width:7.616000pt;}
._21_c00370{width:8.896000pt;}
._c_c00370{width:10.080000pt;}
._1f_c00370{width:11.125333pt;}
._18_c00370{width:12.309333pt;}
._24_c00370{width:13.386667pt;}
._27_c00370{width:14.738667pt;}
._16_c00370{width:15.874667pt;}
._28_c00370{width:16.853333pt;}
._19_c00370{width:19.850667pt;}
._1e_c00370{width:20.757333pt;}
._23_c00370{width:22.528000pt;}
._1a_c00370{width:26.026667pt;}
._1c_c00370{width:27.701333pt;}
._1_c00370{width:28.608000pt;}
._22_c00370{width:29.930667pt;}
._1b_c00370{width:31.360000pt;}
._d_c00370{width:35.146667pt;}
._13_c00370{width:37.792000pt;}
._f_c00370{width:40.181333pt;}
._15_c00370{width:43.680000pt;}
._14_c00370{width:52.245333pt;}
._29_c00370{width:61.077333pt;}
._2a_c00370{width:73.517333pt;}
._7_c00370{width:365.568000pt;}
.fs2_c00370{font-size:40.000000pt;}
.fs4_c00370{font-size:42.666667pt;}
.fs3_c00370{font-size:50.666667pt;}
.fs1_c00370{font-size:53.333333pt;}
.fs0_c00370{font-size:64.000000pt;}
.y0_c00370{bottom:0.000000pt;}
.y44_c00370{bottom:2.760000pt;}
.y43_c00370{bottom:6.425212pt;}
.y42_c00370{bottom:28.400000pt;}
.y3d_c00370{bottom:50.400000pt;}
.y3c_c00370{bottom:66.933333pt;}
.y3b_c00370{bottom:83.600000pt;}
.y3a_c00370{bottom:99.333333pt;}
.y39_c00370{bottom:115.466667pt;}
.y38_c00370{bottom:131.600000pt;}
.y41_c00370{bottom:146.666667pt;}
.y37_c00370{bottom:147.866667pt;}
.y40_c00370{bottom:162.933333pt;}
.y36_c00370{bottom:164.000000pt;}
.y3f_c00370{bottom:179.333333pt;}
.y35_c00370{bottom:180.266667pt;}
.y3e_c00370{bottom:194.933333pt;}
.y34_c00370{bottom:196.133333pt;}
.y33_c00370{bottom:212.000000pt;}
.y32_c00370{bottom:227.333333pt;}
.y31_c00370{bottom:243.333333pt;}
.y1e_c00370{bottom:245.066667pt;}
.y30_c00370{bottom:259.733333pt;}
.y1d_c00370{bottom:261.200000pt;}
.y2f_c00370{bottom:276.000000pt;}
.y1c_c00370{bottom:276.533333pt;}
.y2e_c00370{bottom:292.133333pt;}
.y1b_c00370{bottom:293.200000pt;}
.y2d_c00370{bottom:308.133333pt;}
.y1a_c00370{bottom:309.200000pt;}
.y2c_c00370{bottom:324.266667pt;}
.y19_c00370{bottom:325.200000pt;}
.y2b_c00370{bottom:340.400000pt;}
.y18_c00370{bottom:341.333333pt;}
.y2a_c00370{bottom:356.133333pt;}
.y17_c00370{bottom:357.333333pt;}
.y29_c00370{bottom:372.533333pt;}
.y16_c00370{bottom:373.466667pt;}
.y28_c00370{bottom:388.533333pt;}
.y15_c00370{bottom:389.066667pt;}
.y27_c00370{bottom:404.666667pt;}
.y14_c00370{bottom:405.066667pt;}
.y26_c00370{bottom:420.533333pt;}
.y13_c00370{bottom:421.466667pt;}
.y25_c00370{bottom:436.400000pt;}
.y12_c00370{bottom:437.333333pt;}
.y24_c00370{bottom:452.400000pt;}
.y11_c00370{bottom:453.200000pt;}
.y10_c00370{bottom:468.533333pt;}
.yf_c00370{bottom:484.400000pt;}
.y23_c00370{bottom:484.533333pt;}
.y22_c00370{bottom:500.000000pt;}
.ye_c00370{bottom:500.400000pt;}
.yd_c00370{bottom:516.000000pt;}
.y21_c00370{bottom:516.800000pt;}
.yc_c00370{bottom:532.400000pt;}
.yb_c00370{bottom:548.400000pt;}
.y20_c00370{bottom:548.666667pt;}
.ya_c00370{bottom:564.800000pt;}
.y9_c00370{bottom:580.533333pt;}
.y1f_c00370{bottom:580.800000pt;}
.y8_c00370{bottom:596.666667pt;}
.y7_c00370{bottom:612.933333pt;}
.y6_c00370{bottom:629.066667pt;}
.y5_c00370{bottom:644.666667pt;}
.y4_c00370{bottom:661.200000pt;}
.y3_c00370{bottom:677.066667pt;}
.y2_c00370{bottom:692.666667pt;}
.y1_c00370{bottom:710.400000pt;}
.h4_c00370{height:11.733399pt;}
.h5_c00370{height:38.937500pt;}
.h2_c00370{height:55.893333pt;}
.h3_c00370{height:56.426667pt;}
.h1_c00370{height:62.812500pt;}
.h0_c00370{height:744.000000pt;}
.w2_c00370{width:93.222667pt;}
.w1_c00370{width:516.666667pt;}
.w0_c00370{width:516.933333pt;}
.x0_c00370{left:0.000000pt;}
.x8_c00370{left:53.733333pt;}
.x7_c00370{left:60.266667pt;}
.x9_c00370{left:61.200000pt;}
.x4_c00370{left:62.400000pt;}
.x2_c00370{left:63.600000pt;}
.x3_c00370{left:65.066667pt;}
.x1_c00370{left:188.400000pt;}
.xf_c00370{left:215.634888pt;}
.x5_c00370{left:254.666667pt;}
.x6_c00370{left:255.866667pt;}
.xa_c00370{left:268.800000pt;}
.xb_c00370{left:288.933333pt;}
.xc_c00370{left:300.400000pt;}
.xd_c00370{left:327.333333pt;}
.xe_c00370{left:412.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_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_7e917b76ac8527376ac0f7f6.woff2')format("woff");}.ff1_c00371{font-family:ff1_c00371;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00371;src:url('chunks/assets/font_915c92f452ae1a440100ebee.woff2')format("woff");}.ff2_c00371{font-family:ff2_c00371;line-height:1.575000;font-style:normal;font-weight:normal;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_8064733fddddd044f788c133.woff2')format("woff");}.ff3_c00371{font-family:ff3_c00371;line-height:1.437000;font-style:normal;font-weight:normal;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_4b462922ce6ea9525fb2fe6f.woff2')format("woff");}.ff4_c00371{font-family:ff4_c00371;line-height:1.575000;font-style:normal;font-weight:normal;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_8c0e8442b80e5d071994af24.woff2')format("woff");}.ff5_c00371{font-family:ff5_c00371;line-height:1.437000;font-style:normal;font-weight:normal;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_ebb6949a9a54d0b0d6251bbe.woff2')format("woff");}.ff6_c00371{font-family:ff6_c00371;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00371;src:url('chunks/assets/font_0ce391de997f24f9f9dd37f4.woff2')format("woff");}.ff7_c00371{font-family:ff7_c00371;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00371;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff8_c00371{font-family:ff8_c00371;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00371{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00371{vertical-align:0.000000px;}
.v1_c00371{vertical-align:112.800000px;}
.ls7_c00371{letter-spacing:0.000000px;}
.ls6_c00371{letter-spacing:0.405000px;}
.ls8_c00371{letter-spacing:3.000000px;}
.ls1_c00371{letter-spacing:5.526000px;}
.ls2_c00371{letter-spacing:6.000000px;}
.ls0_c00371{letter-spacing:7.050000px;}
.ls3_c00371{letter-spacing:31.290000px;}
.ls5_c00371{letter-spacing:49.650000px;}
.ls4_c00371{letter-spacing:90.450000px;}
.sc__c00371{text-shadow:none;}
.sc0_c00371{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00371{-webkit-text-stroke:0px transparent;}
.sc0_c00371{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00371{word-spacing:-32.295000px;}
.ws3_c00371{word-spacing:-25.578000px;}
.ws5_c00371{word-spacing:-18.060000px;}
.ws6_c00371{word-spacing:-18.000000px;}
.ws0_c00371{word-spacing:-16.500000px;}
.ws1_c00371{word-spacing:-15.750000px;}
.ws4_c00371{word-spacing:-14.160000px;}
.ws8_c00371{word-spacing:0.000000px;}
.ws2_c00371{word-spacing:4.662000px;}
._1a_c00371{margin-left:-27.408000px;}
._28_c00371{margin-left:-24.003000px;}
._26_c00371{margin-left:-20.808000px;}
._22_c00371{margin-left:-19.362000px;}
._2d_c00371{margin-left:-16.818000px;}
._a_c00371{margin-left:-14.160000px;}
._11_c00371{margin-left:-12.840000px;}
._2_c00371{margin-left:-11.550000px;}
._8_c00371{margin-left:-10.128000px;}
._10_c00371{margin-left:-8.250000px;}
._c_c00371{margin-left:-6.726000px;}
._9_c00371{margin-left:-4.914000px;}
._e_c00371{margin-left:-3.594000px;}
._7_c00371{margin-left:-2.244000px;}
._6_c00371{margin-left:-1.122000px;}
._1_c00371{width:1.764000px;}
._0_c00371{width:3.168000px;}
._4_c00371{width:4.200000px;}
._5_c00371{width:5.640000px;}
._2c_c00371{width:6.648000px;}
._12_c00371{width:7.728000px;}
._f_c00371{width:8.760000px;}
._3_c00371{width:10.338000px;}
._16_c00371{width:11.634000px;}
._13_c00371{width:12.810000px;}
._18_c00371{width:14.196000px;}
._15_c00371{width:15.660000px;}
._21_c00371{width:16.680000px;}
._24_c00371{width:19.266000px;}
._23_c00371{width:21.504000px;}
._17_c00371{width:22.650000px;}
._14_c00371{width:25.254000px;}
._19_c00371{width:26.724000px;}
._2a_c00371{width:28.140000px;}
._1f_c00371{width:30.840000px;}
._25_c00371{width:31.914000px;}
._20_c00371{width:34.050000px;}
._29_c00371{width:35.256000px;}
._1d_c00371{width:36.588000px;}
._1e_c00371{width:40.614000px;}
._27_c00371{width:42.243000px;}
._b_c00371{width:50.760000px;}
._2e_c00371{width:62.058000px;}
._31_c00371{width:63.390000px;}
._2f_c00371{width:64.728000px;}
._33_c00371{width:66.996000px;}
._34_c00371{width:68.373000px;}
._32_c00371{width:70.032000px;}
._30_c00371{width:72.690000px;}
._2b_c00371{width:83.316000px;}
._1b_c00371{width:85.872000px;}
._1c_c00371{width:87.732000px;}
._d_c00371{width:364.788000px;}
.fc2_c00371{color:transparent;}
.fc1_c00371{color:rgb(128,128,128);}
.fc0_c00371{color:rgb(0,0,0);}
.fs5_c00371{font-size:45.000000px;}
.fs6_c00371{font-size:48.000000px;}
.fs3_c00371{font-size:60.000000px;}
.fs1_c00371{font-size:63.000000px;}
.fs0_c00371{font-size:66.000000px;}
.fs2_c00371{font-size:78.000000px;}
.fs4_c00371{font-size:210.000000px;}
.y0_c00371{bottom:0.000000px;}
.y3d_c00371{bottom:3.105000px;}
.y3c_c00371{bottom:7.228355px;}
.y3b_c00371{bottom:36.735000px;}
.y3a_c00371{bottom:56.985000px;}
.y39_c00371{bottom:75.885000px;}
.y38_c00371{bottom:94.035000px;}
.y37_c00371{bottom:112.335000px;}
.y36_c00371{bottom:129.885000px;}
.y35_c00371{bottom:147.735000px;}
.y34_c00371{bottom:166.935000px;}
.y33_c00371{bottom:184.935000px;}
.y32_c00371{bottom:202.185000px;}
.y4_c00371{bottom:204.135000px;}
.y31_c00371{bottom:221.385000px;}
.y3_c00371{bottom:223.035000px;}
.y30_c00371{bottom:239.535000px;}
.y2f_c00371{bottom:257.835000px;}
.y2e_c00371{bottom:275.385000px;}
.y28_c00371{bottom:276.435000px;}
.y2d_c00371{bottom:292.935000px;}
.y27_c00371{bottom:294.585000px;}
.y2c_c00371{bottom:310.785000px;}
.y26_c00371{bottom:312.735000px;}
.y2b_c00371{bottom:328.335000px;}
.y25_c00371{bottom:330.435000px;}
.y2a_c00371{bottom:347.235000px;}
.y24_c00371{bottom:348.885000px;}
.y29_c00371{bottom:364.785000px;}
.y23_c00371{bottom:367.785000px;}
.y22_c00371{bottom:385.635000px;}
.y21_c00371{bottom:402.285000px;}
.y20_c00371{bottom:420.735000px;}
.y2_c00371{bottom:437.085000px;}
.y1f_c00371{bottom:439.035000px;}
.y1_c00371{bottom:456.285000px;}
.y1e_c00371{bottom:456.585000px;}
.y1d_c00371{bottom:474.435000px;}
.y1c_c00371{bottom:492.735000px;}
.y1b_c00371{bottom:510.585000px;}
.y1a_c00371{bottom:529.185000px;}
.y19_c00371{bottom:547.035000px;}
.y18_c00371{bottom:564.585000px;}
.y17_c00371{bottom:583.785000px;}
.y15_c00371{bottom:592.335000px;}
.yf_c00371{bottom:600.435000px;}
.y16_c00371{bottom:602.385000px;}
.ye_c00371{bottom:619.185000px;}
.yd_c00371{bottom:636.735000px;}
.yc_c00371{bottom:655.335000px;}
.y14_c00371{bottom:657.735000px;}
.yb_c00371{bottom:673.185000px;}
.y13_c00371{bottom:675.285000px;}
.ya_c00371{bottom:690.735000px;}
.y12_c00371{bottom:694.185000px;}
.y9_c00371{bottom:709.035000px;}
.y11_c00371{bottom:712.485000px;}
.y8_c00371{bottom:726.885000px;}
.y10_c00371{bottom:730.635000px;}
.y7_c00371{bottom:745.485000px;}
.y6_c00371{bottom:762.735000px;}
.y5_c00371{bottom:780.585000px;}
.h7_c00371{height:13.200074px;}
.h8_c00371{height:43.804688px;}
.h3_c00371{height:62.880000px;}
.h6_c00371{height:64.020000px;}
.h4_c00371{height:71.544000px;}
.h2_c00371{height:81.744000px;}
.h5_c00371{height:220.080000px;}
.h1_c00371{height:846.750000px;}
.h0_c00371{height:846.975000px;}
.w2_c00371{width:104.875500px;}
.w1_c00371{width:575.250000px;}
.w0_c00371{width:575.400000px;}
.x0_c00371{left:0.000000px;}
.x2_c00371{left:18.000000px;}
.x1_c00371{left:21.150000px;}
.x12_c00371{left:82.350000px;}
.xe_c00371{left:83.400000px;}
.xc_c00371{left:84.750000px;}
.x11_c00371{left:85.950000px;}
.x8_c00371{left:98.550000px;}
.x7_c00371{left:117.750000px;}
.x9_c00371{left:119.100000px;}
.xd_c00371{left:127.800000px;}
.xa_c00371{left:132.900000px;}
.xb_c00371{left:164.400000px;}
.x4_c00371{left:183.600000px;}
.x14_c00371{left:239.514267px;}
.x3_c00371{left:285.600000px;}
.x10_c00371{left:302.100000px;}
.x5_c00371{left:306.000000px;}
.x6_c00371{left:307.350000px;}
.xf_c00371{left:322.350000px;}
.x13_c00371{left:477.450000px;}
@media print{
.v0_c00371{vertical-align:0.000000pt;}
.v1_c00371{vertical-align:100.266667pt;}
.ls7_c00371{letter-spacing:0.000000pt;}
.ls6_c00371{letter-spacing:0.360000pt;}
.ls8_c00371{letter-spacing:2.666667pt;}
.ls1_c00371{letter-spacing:4.912000pt;}
.ls2_c00371{letter-spacing:5.333333pt;}
.ls0_c00371{letter-spacing:6.266667pt;}
.ls3_c00371{letter-spacing:27.813333pt;}
.ls5_c00371{letter-spacing:44.133333pt;}
.ls4_c00371{letter-spacing:80.400000pt;}
.ws7_c00371{word-spacing:-28.706667pt;}
.ws3_c00371{word-spacing:-22.736000pt;}
.ws5_c00371{word-spacing:-16.053333pt;}
.ws6_c00371{word-spacing:-16.000000pt;}
.ws0_c00371{word-spacing:-14.666667pt;}
.ws1_c00371{word-spacing:-14.000000pt;}
.ws4_c00371{word-spacing:-12.586667pt;}
.ws8_c00371{word-spacing:0.000000pt;}
.ws2_c00371{word-spacing:4.144000pt;}
._1a_c00371{margin-left:-24.362667pt;}
._28_c00371{margin-left:-21.336000pt;}
._26_c00371{margin-left:-18.496000pt;}
._22_c00371{margin-left:-17.210667pt;}
._2d_c00371{margin-left:-14.949333pt;}
._a_c00371{margin-left:-12.586667pt;}
._11_c00371{margin-left:-11.413333pt;}
._2_c00371{margin-left:-10.266667pt;}
._8_c00371{margin-left:-9.002667pt;}
._10_c00371{margin-left:-7.333333pt;}
._c_c00371{margin-left:-5.978667pt;}
._9_c00371{margin-left:-4.368000pt;}
._e_c00371{margin-left:-3.194667pt;}
._7_c00371{margin-left:-1.994667pt;}
._6_c00371{margin-left:-0.997333pt;}
._1_c00371{width:1.568000pt;}
._0_c00371{width:2.816000pt;}
._4_c00371{width:3.733333pt;}
._5_c00371{width:5.013333pt;}
._2c_c00371{width:5.909333pt;}
._12_c00371{width:6.869333pt;}
._f_c00371{width:7.786667pt;}
._3_c00371{width:9.189333pt;}
._16_c00371{width:10.341333pt;}
._13_c00371{width:11.386667pt;}
._18_c00371{width:12.618667pt;}
._15_c00371{width:13.920000pt;}
._21_c00371{width:14.826667pt;}
._24_c00371{width:17.125333pt;}
._23_c00371{width:19.114667pt;}
._17_c00371{width:20.133333pt;}
._14_c00371{width:22.448000pt;}
._19_c00371{width:23.754667pt;}
._2a_c00371{width:25.013333pt;}
._1f_c00371{width:27.413333pt;}
._25_c00371{width:28.368000pt;}
._20_c00371{width:30.266667pt;}
._29_c00371{width:31.338667pt;}
._1d_c00371{width:32.522667pt;}
._1e_c00371{width:36.101333pt;}
._27_c00371{width:37.549333pt;}
._b_c00371{width:45.120000pt;}
._2e_c00371{width:55.162667pt;}
._31_c00371{width:56.346667pt;}
._2f_c00371{width:57.536000pt;}
._33_c00371{width:59.552000pt;}
._34_c00371{width:60.776000pt;}
._32_c00371{width:62.250667pt;}
._30_c00371{width:64.613333pt;}
._2b_c00371{width:74.058667pt;}
._1b_c00371{width:76.330667pt;}
._1c_c00371{width:77.984000pt;}
._d_c00371{width:324.256000pt;}
.fs5_c00371{font-size:40.000000pt;}
.fs6_c00371{font-size:42.666667pt;}
.fs3_c00371{font-size:53.333333pt;}
.fs1_c00371{font-size:56.000000pt;}
.fs0_c00371{font-size:58.666667pt;}
.fs2_c00371{font-size:69.333333pt;}
.fs4_c00371{font-size:186.666667pt;}
.y0_c00371{bottom:0.000000pt;}
.y3d_c00371{bottom:2.760000pt;}
.y3c_c00371{bottom:6.425204pt;}
.y3b_c00371{bottom:32.653333pt;}
.y3a_c00371{bottom:50.653333pt;}
.y39_c00371{bottom:67.453333pt;}
.y38_c00371{bottom:83.586667pt;}
.y37_c00371{bottom:99.853333pt;}
.y36_c00371{bottom:115.453333pt;}
.y35_c00371{bottom:131.320000pt;}
.y34_c00371{bottom:148.386667pt;}
.y33_c00371{bottom:164.386667pt;}
.y32_c00371{bottom:179.720000pt;}
.y4_c00371{bottom:181.453333pt;}
.y31_c00371{bottom:196.786667pt;}
.y3_c00371{bottom:198.253333pt;}
.y30_c00371{bottom:212.920000pt;}
.y2f_c00371{bottom:229.186667pt;}
.y2e_c00371{bottom:244.786667pt;}
.y28_c00371{bottom:245.720000pt;}
.y2d_c00371{bottom:260.386667pt;}
.y27_c00371{bottom:261.853333pt;}
.y2c_c00371{bottom:276.253333pt;}
.y26_c00371{bottom:277.986667pt;}
.y2b_c00371{bottom:291.853333pt;}
.y25_c00371{bottom:293.720000pt;}
.y2a_c00371{bottom:308.653333pt;}
.y24_c00371{bottom:310.120000pt;}
.y29_c00371{bottom:324.253333pt;}
.y23_c00371{bottom:326.920000pt;}
.y22_c00371{bottom:342.786667pt;}
.y21_c00371{bottom:357.586667pt;}
.y20_c00371{bottom:373.986667pt;}
.y2_c00371{bottom:388.520000pt;}
.y1f_c00371{bottom:390.253333pt;}
.y1_c00371{bottom:405.586667pt;}
.y1e_c00371{bottom:405.853333pt;}
.y1d_c00371{bottom:421.720000pt;}
.y1c_c00371{bottom:437.986667pt;}
.y1b_c00371{bottom:453.853333pt;}
.y1a_c00371{bottom:470.386667pt;}
.y19_c00371{bottom:486.253333pt;}
.y18_c00371{bottom:501.853333pt;}
.y17_c00371{bottom:518.920000pt;}
.y15_c00371{bottom:526.520000pt;}
.yf_c00371{bottom:533.720000pt;}
.y16_c00371{bottom:535.453333pt;}
.ye_c00371{bottom:550.386667pt;}
.yd_c00371{bottom:565.986667pt;}
.yc_c00371{bottom:582.520000pt;}
.y14_c00371{bottom:584.653333pt;}
.yb_c00371{bottom:598.386667pt;}
.y13_c00371{bottom:600.253333pt;}
.ya_c00371{bottom:613.986667pt;}
.y12_c00371{bottom:617.053333pt;}
.y9_c00371{bottom:630.253333pt;}
.y11_c00371{bottom:633.320000pt;}
.y8_c00371{bottom:646.120000pt;}
.y10_c00371{bottom:649.453333pt;}
.y7_c00371{bottom:662.653333pt;}
.y6_c00371{bottom:677.986667pt;}
.y5_c00371{bottom:693.853333pt;}
.h7_c00371{height:11.733399pt;}
.h8_c00371{height:38.937500pt;}
.h3_c00371{height:55.893333pt;}
.h6_c00371{height:56.906667pt;}
.h4_c00371{height:63.594667pt;}
.h2_c00371{height:72.661333pt;}
.h5_c00371{height:195.626667pt;}
.h1_c00371{height:752.666667pt;}
.h0_c00371{height:752.866667pt;}
.w2_c00371{width:93.222667pt;}
.w1_c00371{width:511.333333pt;}
.w0_c00371{width:511.466667pt;}
.x0_c00371{left:0.000000pt;}
.x2_c00371{left:16.000000pt;}
.x1_c00371{left:18.800000pt;}
.x12_c00371{left:73.200000pt;}
.xe_c00371{left:74.133333pt;}
.xc_c00371{left:75.333333pt;}
.x11_c00371{left:76.400000pt;}
.x8_c00371{left:87.600000pt;}
.x7_c00371{left:104.666667pt;}
.x9_c00371{left:105.866667pt;}
.xd_c00371{left:113.600000pt;}
.xa_c00371{left:118.133333pt;}
.xb_c00371{left:146.133333pt;}
.x4_c00371{left:163.200000pt;}
.x14_c00371{left:212.901571pt;}
.x3_c00371{left:253.866667pt;}
.x10_c00371{left:268.533333pt;}
.x5_c00371{left:272.000000pt;}
.x6_c00371{left:273.200000pt;}
.xf_c00371{left:286.533333pt;}
.x13_c00371{left:424.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f95acaf83c951ef10999f2f3.woff2')format("woff");}.ff1_c00372{font-family:ff1_c00372;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00372;src:url('chunks/assets/font_aab1aa399980f756b249007e.woff2')format("woff");}.ff2_c00372{font-family:ff2_c00372;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00372;src:url('chunks/assets/font_f53107a0e4c741b0ad6880a2.woff2')format("woff");}.ff3_c00372{font-family:ff3_c00372;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00372;src:url('chunks/assets/font_d973c47d208c306cbe8cf42f.woff2')format("woff");}.ff4_c00372{font-family:ff4_c00372;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00372;src:url('chunks/assets/font_2ef682f6be52ef4b4fa989a5.woff2')format("woff");}.ff5_c00372{font-family:ff5_c00372;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_c00372;src:url('chunks/assets/font_ee9507f6adce764dee39dfb4.woff2')format("woff");}.ff6_c00372{font-family:ff6_c00372;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00372;src:url('chunks/assets/font_5549e4e3cbb527dcf8904696.woff2')format("woff");}.ff7_c00372{font-family:ff7_c00372;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00372;src:url('chunks/assets/font_42c912c9537a1370170b4121.woff2')format("woff");}.ff8_c00372{font-family:ff8_c00372;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00372;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff9_c00372{font-family:ff9_c00372;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00372{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00372{vertical-align:0.000000px;}
.ls7_c00372{letter-spacing:0.000000px;}
.ls6_c00372{letter-spacing:1.740000px;}
.ls5_c00372{letter-spacing:3.000000px;}
.ls4_c00372{letter-spacing:6.000000px;}
.ls8_c00372{letter-spacing:12.000000px;}
.ls3_c00372{letter-spacing:16.494000px;}
.ls0_c00372{letter-spacing:20.340000px;}
.ls1_c00372{letter-spacing:73.740000px;}
.ls2_c00372{letter-spacing:87.540000px;}
.sc__c00372{text-shadow:none;}
.sc0_c00372{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00372{-webkit-text-stroke:0px transparent;}
.sc0_c00372{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00372{word-spacing:-57.258000px;}
.ws4_c00372{word-spacing:-42.876000px;}
.ws5_c00372{word-spacing:-39.399000px;}
.ws1_c00372{word-spacing:-25.854000px;}
.ws6_c00372{word-spacing:-18.060000px;}
.ws2_c00372{word-spacing:-18.000000px;}
.ws0_c00372{word-spacing:-14.160000px;}
.ws7_c00372{word-spacing:0.000000px;}
._29_c00372{margin-left:-23.868000px;}
._28_c00372{margin-left:-19.803000px;}
._2a_c00372{margin-left:-18.480000px;}
._1a_c00372{margin-left:-16.800000px;}
._2b_c00372{margin-left:-15.348000px;}
._2c_c00372{margin-left:-12.588000px;}
._13_c00372{margin-left:-10.860000px;}
._14_c00372{margin-left:-8.700000px;}
._23_c00372{margin-left:-6.798000px;}
._30_c00372{margin-left:-5.787000px;}
._f_c00372{margin-left:-4.740000px;}
._2f_c00372{margin-left:-3.726000px;}
._e_c00372{margin-left:-2.700000px;}
._8_c00372{margin-left:-1.500000px;}
._2_c00372{width:1.080000px;}
._1_c00372{width:2.160000px;}
._3_c00372{width:3.180000px;}
._0_c00372{width:4.860000px;}
._10_c00372{width:6.240000px;}
._5_c00372{width:7.440000px;}
._11_c00372{width:8.640000px;}
._26_c00372{width:10.032000px;}
._12_c00372{width:11.100000px;}
._9_c00372{width:13.080000px;}
._7_c00372{width:14.700000px;}
._1e_c00372{width:16.740000px;}
._27_c00372{width:19.704000px;}
._19_c00372{width:21.180000px;}
._c_c00372{width:22.440000px;}
._1d_c00372{width:24.480000px;}
._d_c00372{width:25.680000px;}
._18_c00372{width:27.480000px;}
._6_c00372{width:29.280000px;}
._17_c00372{width:31.200000px;}
._22_c00372{width:32.436000px;}
._16_c00372{width:34.740000px;}
._b_c00372{width:35.940000px;}
._34_c00372{width:37.128000px;}
._24_c00372{width:38.730000px;}
._2d_c00372{width:40.035000px;}
._2e_c00372{width:44.457000px;}
._25_c00372{width:50.658000px;}
._20_c00372{width:64.920000px;}
._1c_c00372{width:66.600000px;}
._4_c00372{width:70.500000px;}
._1b_c00372{width:72.180000px;}
._15_c00372{width:73.260000px;}
._a_c00372{width:75.780000px;}
._35_c00372{width:78.906000px;}
._31_c00372{width:81.318000px;}
._21_c00372{width:85.404000px;}
._33_c00372{width:88.788000px;}
._32_c00372{width:95.811000px;}
._1f_c00372{width:152.460000px;}
.fc2_c00372{color:transparent;}
.fc1_c00372{color:rgb(128,128,128);}
.fc0_c00372{color:rgb(0,0,0);}
.fs8_c00372{font-size:48.000000px;}
.fs2_c00372{font-size:54.000000px;}
.fs6_c00372{font-size:57.000000px;}
.fs0_c00372{font-size:60.000000px;}
.fs7_c00372{font-size:63.000000px;}
.fs1_c00372{font-size:66.000000px;}
.fs5_c00372{font-size:69.000000px;}
.fs3_c00372{font-size:72.000000px;}
.fs4_c00372{font-size:93.000000px;}
.y0_c00372{bottom:0.000000px;}
.y43_c00372{bottom:3.105000px;}
.y42_c00372{bottom:7.228371px;}
.y41_c00372{bottom:35.415000px;}
.y40_c00372{bottom:55.815000px;}
.y3f_c00372{bottom:74.715000px;}
.y3e_c00372{bottom:92.565000px;}
.y3d_c00372{bottom:111.165000px;}
.y3c_c00372{bottom:129.015000px;}
.y3b_c00372{bottom:146.865000px;}
.y3a_c00372{bottom:165.165000px;}
.y39_c00372{bottom:181.665000px;}
.y24_c00372{bottom:185.265000px;}
.y38_c00372{bottom:200.865000px;}
.y23_c00372{bottom:202.515000px;}
.y37_c00372{bottom:218.715000px;}
.y22_c00372{bottom:221.865000px;}
.y36_c00372{bottom:237.015000px;}
.y21_c00372{bottom:239.715000px;}
.y35_c00372{bottom:255.165000px;}
.y20_c00372{bottom:258.165000px;}
.y34_c00372{bottom:273.015000px;}
.y1f_c00372{bottom:276.165000px;}
.y33_c00372{bottom:291.915000px;}
.y1e_c00372{bottom:293.715000px;}
.y32_c00372{bottom:309.915000px;}
.y1d_c00372{bottom:312.315000px;}
.y31_c00372{bottom:327.765000px;}
.y1c_c00372{bottom:330.465000px;}
.y30_c00372{bottom:345.915000px;}
.y1b_c00372{bottom:348.615000px;}
.y2f_c00372{bottom:364.815000px;}
.y1a_c00372{bottom:366.915000px;}
.y2e_c00372{bottom:382.515000px;}
.y19_c00372{bottom:384.465000px;}
.y2d_c00372{bottom:400.965000px;}
.y18_c00372{bottom:402.765000px;}
.y2c_c00372{bottom:418.815000px;}
.y17_c00372{bottom:421.215000px;}
.y2b_c00372{bottom:437.415000px;}
.y16_c00372{bottom:438.615000px;}
.y2a_c00372{bottom:455.265000px;}
.y15_c00372{bottom:457.065000px;}
.y29_c00372{bottom:473.565000px;}
.y14_c00372{bottom:475.515000px;}
.y28_c00372{bottom:491.715000px;}
.y13_c00372{bottom:493.065000px;}
.y27_c00372{bottom:509.715000px;}
.y12_c00372{bottom:510.765000px;}
.y26_c00372{bottom:527.865000px;}
.y11_c00372{bottom:528.165000px;}
.y25_c00372{bottom:545.715000px;}
.ye_c00372{bottom:545.865000px;}
.yd_c00372{bottom:564.765000px;}
.yc_c00372{bottom:581.865000px;}
.y10_c00372{bottom:600.465000px;}
.yb_c00372{bottom:601.065000px;}
.ya_c00372{bottom:618.615000px;}
.yf_c00372{bottom:636.165000px;}
.y9_c00372{bottom:636.915000px;}
.y8_c00372{bottom:654.765000px;}
.y7_c00372{bottom:672.765000px;}
.y6_c00372{bottom:691.215000px;}
.y5_c00372{bottom:709.215000px;}
.y4_c00372{bottom:727.365000px;}
.y3_c00372{bottom:745.515000px;}
.y2_c00372{bottom:764.115000px;}
.y1_c00372{bottom:782.715000px;}
.ha_c00372{height:13.200074px;}
.hb_c00372{height:43.804688px;}
.h4_c00372{height:56.592000px;}
.h2_c00372{height:62.880000px;}
.h8_c00372{height:66.024000px;}
.h3_c00372{height:70.422000px;}
.h6_c00372{height:70.664062px;}
.h7_c00372{height:72.312000px;}
.h9_c00372{height:73.623000px;}
.h5_c00372{height:96.996094px;}
.h1_c00372{height:844.500000px;}
.h0_c00372{height:844.575000px;}
.w1_c00372{width:104.875500px;}
.w0_c00372{width:587.250000px;}
.x0_c00372{left:0.000000px;}
.x3_c00372{left:26.100000px;}
.x2_c00372{left:85.800000px;}
.x1_c00372{left:87.450000px;}
.x6_c00372{left:88.800000px;}
.x8_c00372{left:89.850000px;}
.x9_c00372{left:91.200000px;}
.x7_c00372{left:114.150000px;}
.xc_c00372{left:245.439240px;}
.x4_c00372{left:310.200000px;}
.x5_c00372{left:311.250000px;}
.xa_c00372{left:313.200000px;}
.xb_c00372{left:496.200000px;}
@media print{
.v0_c00372{vertical-align:0.000000pt;}
.ls7_c00372{letter-spacing:0.000000pt;}
.ls6_c00372{letter-spacing:1.546667pt;}
.ls5_c00372{letter-spacing:2.666667pt;}
.ls4_c00372{letter-spacing:5.333333pt;}
.ls8_c00372{letter-spacing:10.666667pt;}
.ls3_c00372{letter-spacing:14.661333pt;}
.ls0_c00372{letter-spacing:18.080000pt;}
.ls1_c00372{letter-spacing:65.546667pt;}
.ls2_c00372{letter-spacing:77.813333pt;}
.ws3_c00372{word-spacing:-50.896000pt;}
.ws4_c00372{word-spacing:-38.112000pt;}
.ws5_c00372{word-spacing:-35.021333pt;}
.ws1_c00372{word-spacing:-22.981333pt;}
.ws6_c00372{word-spacing:-16.053333pt;}
.ws2_c00372{word-spacing:-16.000000pt;}
.ws0_c00372{word-spacing:-12.586667pt;}
.ws7_c00372{word-spacing:0.000000pt;}
._29_c00372{margin-left:-21.216000pt;}
._28_c00372{margin-left:-17.602667pt;}
._2a_c00372{margin-left:-16.426667pt;}
._1a_c00372{margin-left:-14.933333pt;}
._2b_c00372{margin-left:-13.642667pt;}
._2c_c00372{margin-left:-11.189333pt;}
._13_c00372{margin-left:-9.653333pt;}
._14_c00372{margin-left:-7.733333pt;}
._23_c00372{margin-left:-6.042667pt;}
._30_c00372{margin-left:-5.144000pt;}
._f_c00372{margin-left:-4.213333pt;}
._2f_c00372{margin-left:-3.312000pt;}
._e_c00372{margin-left:-2.400000pt;}
._8_c00372{margin-left:-1.333333pt;}
._2_c00372{width:0.960000pt;}
._1_c00372{width:1.920000pt;}
._3_c00372{width:2.826667pt;}
._0_c00372{width:4.320000pt;}
._10_c00372{width:5.546667pt;}
._5_c00372{width:6.613333pt;}
._11_c00372{width:7.680000pt;}
._26_c00372{width:8.917333pt;}
._12_c00372{width:9.866667pt;}
._9_c00372{width:11.626667pt;}
._7_c00372{width:13.066667pt;}
._1e_c00372{width:14.880000pt;}
._27_c00372{width:17.514667pt;}
._19_c00372{width:18.826667pt;}
._c_c00372{width:19.946667pt;}
._1d_c00372{width:21.760000pt;}
._d_c00372{width:22.826667pt;}
._18_c00372{width:24.426667pt;}
._6_c00372{width:26.026667pt;}
._17_c00372{width:27.733333pt;}
._22_c00372{width:28.832000pt;}
._16_c00372{width:30.880000pt;}
._b_c00372{width:31.946667pt;}
._34_c00372{width:33.002667pt;}
._24_c00372{width:34.426667pt;}
._2d_c00372{width:35.586667pt;}
._2e_c00372{width:39.517333pt;}
._25_c00372{width:45.029333pt;}
._20_c00372{width:57.706667pt;}
._1c_c00372{width:59.200000pt;}
._4_c00372{width:62.666667pt;}
._1b_c00372{width:64.160000pt;}
._15_c00372{width:65.120000pt;}
._a_c00372{width:67.360000pt;}
._35_c00372{width:70.138667pt;}
._31_c00372{width:72.282667pt;}
._21_c00372{width:75.914667pt;}
._33_c00372{width:78.922667pt;}
._32_c00372{width:85.165333pt;}
._1f_c00372{width:135.520000pt;}
.fs8_c00372{font-size:42.666667pt;}
.fs2_c00372{font-size:48.000000pt;}
.fs6_c00372{font-size:50.666667pt;}
.fs0_c00372{font-size:53.333333pt;}
.fs7_c00372{font-size:56.000000pt;}
.fs1_c00372{font-size:58.666667pt;}
.fs5_c00372{font-size:61.333333pt;}
.fs3_c00372{font-size:64.000000pt;}
.fs4_c00372{font-size:82.666667pt;}
.y0_c00372{bottom:0.000000pt;}
.y43_c00372{bottom:2.760000pt;}
.y42_c00372{bottom:6.425219pt;}
.y41_c00372{bottom:31.480000pt;}
.y40_c00372{bottom:49.613333pt;}
.y3f_c00372{bottom:66.413333pt;}
.y3e_c00372{bottom:82.280000pt;}
.y3d_c00372{bottom:98.813333pt;}
.y3c_c00372{bottom:114.680000pt;}
.y3b_c00372{bottom:130.546667pt;}
.y3a_c00372{bottom:146.813333pt;}
.y39_c00372{bottom:161.480000pt;}
.y24_c00372{bottom:164.680000pt;}
.y38_c00372{bottom:178.546667pt;}
.y23_c00372{bottom:180.013333pt;}
.y37_c00372{bottom:194.413333pt;}
.y22_c00372{bottom:197.213333pt;}
.y36_c00372{bottom:210.680000pt;}
.y21_c00372{bottom:213.080000pt;}
.y35_c00372{bottom:226.813333pt;}
.y20_c00372{bottom:229.480000pt;}
.y34_c00372{bottom:242.680000pt;}
.y1f_c00372{bottom:245.480000pt;}
.y33_c00372{bottom:259.480000pt;}
.y1e_c00372{bottom:261.080000pt;}
.y32_c00372{bottom:275.480000pt;}
.y1d_c00372{bottom:277.613333pt;}
.y31_c00372{bottom:291.346667pt;}
.y1c_c00372{bottom:293.746667pt;}
.y30_c00372{bottom:307.480000pt;}
.y1b_c00372{bottom:309.880000pt;}
.y2f_c00372{bottom:324.280000pt;}
.y1a_c00372{bottom:326.146667pt;}
.y2e_c00372{bottom:340.013333pt;}
.y19_c00372{bottom:341.746667pt;}
.y2d_c00372{bottom:356.413333pt;}
.y18_c00372{bottom:358.013333pt;}
.y2c_c00372{bottom:372.280000pt;}
.y17_c00372{bottom:374.413333pt;}
.y2b_c00372{bottom:388.813333pt;}
.y16_c00372{bottom:389.880000pt;}
.y2a_c00372{bottom:404.680000pt;}
.y15_c00372{bottom:406.280000pt;}
.y29_c00372{bottom:420.946667pt;}
.y14_c00372{bottom:422.680000pt;}
.y28_c00372{bottom:437.080000pt;}
.y13_c00372{bottom:438.280000pt;}
.y27_c00372{bottom:453.080000pt;}
.y12_c00372{bottom:454.013333pt;}
.y26_c00372{bottom:469.213333pt;}
.y11_c00372{bottom:469.480000pt;}
.y25_c00372{bottom:485.080000pt;}
.ye_c00372{bottom:485.213333pt;}
.yd_c00372{bottom:502.013333pt;}
.yc_c00372{bottom:517.213333pt;}
.y10_c00372{bottom:533.746667pt;}
.yb_c00372{bottom:534.280000pt;}
.ya_c00372{bottom:549.880000pt;}
.yf_c00372{bottom:565.480000pt;}
.y9_c00372{bottom:566.146667pt;}
.y8_c00372{bottom:582.013333pt;}
.y7_c00372{bottom:598.013333pt;}
.y6_c00372{bottom:614.413333pt;}
.y5_c00372{bottom:630.413333pt;}
.y4_c00372{bottom:646.546667pt;}
.y3_c00372{bottom:662.680000pt;}
.y2_c00372{bottom:679.213333pt;}
.y1_c00372{bottom:695.746667pt;}
.ha_c00372{height:11.733399pt;}
.hb_c00372{height:38.937500pt;}
.h4_c00372{height:50.304000pt;}
.h2_c00372{height:55.893333pt;}
.h8_c00372{height:58.688000pt;}
.h3_c00372{height:62.597333pt;}
.h6_c00372{height:62.812500pt;}
.h7_c00372{height:64.277333pt;}
.h9_c00372{height:65.442667pt;}
.h5_c00372{height:86.218750pt;}
.h1_c00372{height:750.666667pt;}
.h0_c00372{height:750.733333pt;}
.w1_c00372{width:93.222667pt;}
.w0_c00372{width:522.000000pt;}
.x0_c00372{left:0.000000pt;}
.x3_c00372{left:23.200000pt;}
.x2_c00372{left:76.266667pt;}
.x1_c00372{left:77.733333pt;}
.x6_c00372{left:78.933333pt;}
.x8_c00372{left:79.866667pt;}
.x9_c00372{left:81.066667pt;}
.x7_c00372{left:101.466667pt;}
.xc_c00372{left:218.168213pt;}
.x4_c00372{left:275.733333pt;}
.x5_c00372{left:276.666667pt;}
.xa_c00372{left:278.400000pt;}
.xb_c00372{left:441.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_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_51ddfbd3c2df40a408ebbf21.woff2')format("woff");}.ff1_c00373{font-family:ff1_c00373;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00373;src:url('chunks/assets/font_fc635730fbe823d39f8824c3.woff2')format("woff");}.ff2_c00373{font-family:ff2_c00373;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00373;src:url('chunks/assets/font_a6364d24b3599e675ccf6cc4.woff2')format("woff");}.ff3_c00373{font-family:ff3_c00373;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00373;src:url('chunks/assets/font_5716ef157d66617f99f37114.woff2')format("woff");}.ff4_c00373{font-family:ff4_c00373;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00373;src:url('chunks/assets/font_4dadb86d892b7f7e79392f5f.woff2')format("woff");}.ff5_c00373{font-family:ff5_c00373;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00373;src:url('chunks/assets/font_47b8d2b39f2d3924a059d0a8.woff2')format("woff");}.ff6_c00373{font-family:ff6_c00373;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00373;src:url('chunks/assets/font_6e31810939efc23fa8fe76be.woff2')format("woff");}.ff7_c00373{font-family:ff7_c00373;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00373;src:url('chunks/assets/font_5bbcc457cc4e575669d06f19.woff2')format("woff");}.ff8_c00373{font-family:ff8_c00373;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00373;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff9_c00373{font-family:ff9_c00373;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00373{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2_c00373{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m1_c00373{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.v0_c00373{vertical-align:0.000000px;}
.v1_c00373{vertical-align:86.400000px;}
.ls7_c00373{letter-spacing:-3.000000px;}
.ls6_c00373{letter-spacing:0.000000px;}
.ls5_c00373{letter-spacing:0.600000px;}
.ls1_c00373{letter-spacing:1.587000px;}
.ls2_c00373{letter-spacing:3.000000px;}
.ls0_c00373{letter-spacing:3.081000px;}
.ls4_c00373{letter-spacing:6.000000px;}
.ls3_c00373{letter-spacing:15.150000px;}
.sc__c00373{text-shadow:none;}
.sc0_c00373{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00373{-webkit-text-stroke:0px transparent;}
.sc0_c00373{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00373{word-spacing:-50.022000px;}
.ws4_c00373{word-spacing:-20.250000px;}
.ws2_c00373{word-spacing:-19.500000px;}
.ws3_c00373{word-spacing:-18.813000px;}
.ws0_c00373{word-spacing:-15.650400px;}
.ws6_c00373{word-spacing:-15.000000px;}
.ws5_c00373{word-spacing:-14.160000px;}
.ws7_c00373{word-spacing:0.000000px;}
._1f_c00373{margin-left:-13.530000px;}
._28_c00373{margin-left:-11.427000px;}
._21_c00373{margin-left:-10.045800px;}
._18_c00373{margin-left:-8.530200px;}
._0_c00373{margin-left:-6.921600px;}
._3_c00373{margin-left:-5.153400px;}
._7_c00373{margin-left:-3.578400px;}
._1_c00373{margin-left:-2.217600px;}
._6_c00373{margin-left:-1.008000px;}
._5_c00373{width:1.575000px;}
._d_c00373{width:3.490200px;}
._b_c00373{width:4.699800px;}
._9_c00373{width:5.760000px;}
._15_c00373{width:7.419600px;}
._2_c00373{width:8.606400px;}
._10_c00373{width:10.092600px;}
._4_c00373{width:11.466000px;}
._1c_c00373{width:12.561600px;}
._f_c00373{width:13.860000px;}
._16_c00373{width:14.956200px;}
._12_c00373{width:16.191000px;}
._a_c00373{width:17.715000px;}
._13_c00373{width:20.525400px;}
._c_c00373{width:22.264200px;}
._1b_c00373{width:25.326000px;}
._17_c00373{width:27.720000px;}
._2a_c00373{width:29.020200px;}
._2c_c00373{width:30.985200px;}
._2b_c00373{width:32.527200px;}
._23_c00373{width:35.203800px;}
._1d_c00373{width:37.688400px;}
._11_c00373{width:41.895000px;}
._e_c00373{width:44.125200px;}
._14_c00373{width:45.322200px;}
._19_c00373{width:48.348000px;}
._1a_c00373{width:49.933800px;}
._1e_c00373{width:51.018000px;}
._22_c00373{width:57.045600px;}
._8_c00373{width:68.581800px;}
._24_c00373{width:80.528400px;}
._27_c00373{width:85.440600px;}
._26_c00373{width:89.437800px;}
._20_c00373{width:142.494000px;}
._29_c00373{width:164.236800px;}
._25_c00373{width:252.975600px;}
.fc2_c00373{color:transparent;}
.fc1_c00373{color:rgb(128,128,128);}
.fc0_c00373{color:rgb(0,0,0);}
.fs2_c00373{font-size:45.000000px;}
.fs8_c00373{font-size:48.000000px;}
.fs1_c00373{font-size:50.400000px;}
.fs5_c00373{font-size:60.000000px;}
.fs0_c00373{font-size:63.000000px;}
.fs3_c00373{font-size:66.000000px;}
.fs7_c00373{font-size:72.000000px;}
.fs4_c00373{font-size:93.000000px;}
.fs6_c00373{font-size:195.000000px;}
.y0_c00373{bottom:0.000000px;}
.y3f_c00373{bottom:3.105000px;}
.y3e_c00373{bottom:7.228355px;}
.y3d_c00373{bottom:37.785000px;}
.y32_c00373{bottom:54.285000px;}
.y3c_c00373{bottom:55.635000px;}
.y31_c00373{bottom:73.785000px;}
.y3b_c00373{bottom:74.235000px;}
.y30_c00373{bottom:91.785000px;}
.y3a_c00373{bottom:92.685000px;}
.y2f_c00373{bottom:110.385000px;}
.y2e_c00373{bottom:128.235000px;}
.y39_c00373{bottom:128.535000px;}
.y2d_c00373{bottom:145.785000px;}
.y38_c00373{bottom:146.685000px;}
.y2c_c00373{bottom:164.235000px;}
.y37_c00373{bottom:164.685000px;}
.y2b_c00373{bottom:181.785000px;}
.y36_c00373{bottom:182.535000px;}
.y2a_c00373{bottom:200.685000px;}
.y35_c00373{bottom:201.135000px;}
.y29_c00373{bottom:218.235000px;}
.y34_c00373{bottom:219.285000px;}
.y28_c00373{bottom:235.935000px;}
.y33_c00373{bottom:237.585000px;}
.y24_c00373{bottom:254.835000px;}
.y23_c00373{bottom:272.985000px;}
.y22_c00373{bottom:290.535000px;}
.y21_c00373{bottom:308.085000px;}
.y20_c00373{bottom:326.385000px;}
.y1f_c00373{bottom:344.535000px;}
.y1e_c00373{bottom:361.785000px;}
.y27_c00373{bottom:362.835000px;}
.y25_c00373{bottom:377.235000px;}
.y1d_c00373{bottom:380.385000px;}
.y26_c00373{bottom:380.685000px;}
.y1c_c00373{bottom:398.535000px;}
.y1b_c00373{bottom:416.385000px;}
.y1a_c00373{bottom:434.985000px;}
.y12_c00373{bottom:436.035000px;}
.y11_c00373{bottom:452.835000px;}
.y19_c00373{bottom:470.385000px;}
.y10_c00373{bottom:471.135000px;}
.y18_c00373{bottom:488.685000px;}
.yf_c00373{bottom:489.585000px;}
.y17_c00373{bottom:507.585000px;}
.ye_c00373{bottom:524.385000px;}
.y16_c00373{bottom:525.135000px;}
.y15_c00373{bottom:543.285000px;}
.yd_c00373{bottom:560.835000px;}
.y14_c00373{bottom:561.135000px;}
.y13_c00373{bottom:578.835000px;}
.yc_c00373{bottom:580.035000px;}
.yb_c00373{bottom:597.285000px;}
.ya_c00373{bottom:615.285000px;}
.y9_c00373{bottom:633.435000px;}
.y8_c00373{bottom:651.735000px;}
.y7_c00373{bottom:669.585000px;}
.y6_c00373{bottom:688.185000px;}
.y5_c00373{bottom:706.035000px;}
.y4_c00373{bottom:724.485000px;}
.y3_c00373{bottom:742.185000px;}
.y2_c00373{bottom:760.635000px;}
.y1_c00373{bottom:778.185000px;}
.h9_c00373{height:13.200074px;}
.ha_c00373{height:43.804688px;}
.h5_c00373{height:62.880000px;}
.h7_c00373{height:64.020000px;}
.h2_c00373{height:66.024000px;}
.h3_c00373{height:70.422000px;}
.h8_c00373{height:70.664062px;}
.h4_c00373{height:91.274414px;}
.h6_c00373{height:208.065000px;}
.h1_c00373{height:846.750000px;}
.h0_c00373{height:846.975000px;}
.w2_c00373{width:104.875500px;}
.w1_c00373{width:575.250000px;}
.w0_c00373{width:575.400000px;}
.x0_c00373{left:0.000000px;}
.x15_c00373{left:62.100000px;}
.x14_c00373{left:63.900000px;}
.x13_c00373{left:65.250000px;}
.x11_c00373{left:66.600000px;}
.x10_c00373{left:67.800000px;}
.xf_c00373{left:69.150000px;}
.x2_c00373{left:75.600000px;}
.x1_c00373{left:76.650000px;}
.x6_c00373{left:77.850000px;}
.x9_c00373{left:82.350000px;}
.x8_c00373{left:103.950000px;}
.xa_c00373{left:105.300000px;}
.x12_c00373{left:115.800000px;}
.xb_c00373{left:141.150000px;}
.x7_c00373{left:174.450000px;}
.x1a_c00373{left:239.514267px;}
.x18_c00373{left:285.600000px;}
.x17_c00373{left:286.650000px;}
.x3_c00373{left:288.300000px;}
.x16_c00373{left:289.650000px;}
.xe_c00373{left:291.000000px;}
.xd_c00373{left:292.650000px;}
.xc_c00373{left:294.300000px;}
.x4_c00373{left:325.650000px;}
.x5_c00373{left:370.350000px;}
.x19_c00373{left:451.950000px;}
@media print{
.v0_c00373{vertical-align:0.000000pt;}
.v1_c00373{vertical-align:76.800000pt;}
.ls7_c00373{letter-spacing:-2.666667pt;}
.ls6_c00373{letter-spacing:0.000000pt;}
.ls5_c00373{letter-spacing:0.533333pt;}
.ls1_c00373{letter-spacing:1.410667pt;}
.ls2_c00373{letter-spacing:2.666667pt;}
.ls0_c00373{letter-spacing:2.738667pt;}
.ls4_c00373{letter-spacing:5.333333pt;}
.ls3_c00373{letter-spacing:13.466667pt;}
.ws1_c00373{word-spacing:-44.464000pt;}
.ws4_c00373{word-spacing:-18.000000pt;}
.ws2_c00373{word-spacing:-17.333333pt;}
.ws3_c00373{word-spacing:-16.722667pt;}
.ws0_c00373{word-spacing:-13.911467pt;}
.ws6_c00373{word-spacing:-13.333333pt;}
.ws5_c00373{word-spacing:-12.586667pt;}
.ws7_c00373{word-spacing:0.000000pt;}
._1f_c00373{margin-left:-12.026667pt;}
._28_c00373{margin-left:-10.157333pt;}
._21_c00373{margin-left:-8.929600pt;}
._18_c00373{margin-left:-7.582400pt;}
._0_c00373{margin-left:-6.152533pt;}
._3_c00373{margin-left:-4.580800pt;}
._7_c00373{margin-left:-3.180800pt;}
._1_c00373{margin-left:-1.971200pt;}
._6_c00373{margin-left:-0.896000pt;}
._5_c00373{width:1.400000pt;}
._d_c00373{width:3.102400pt;}
._b_c00373{width:4.177600pt;}
._9_c00373{width:5.120000pt;}
._15_c00373{width:6.595200pt;}
._2_c00373{width:7.650133pt;}
._10_c00373{width:8.971200pt;}
._4_c00373{width:10.192000pt;}
._1c_c00373{width:11.165867pt;}
._f_c00373{width:12.320000pt;}
._16_c00373{width:13.294400pt;}
._12_c00373{width:14.392000pt;}
._a_c00373{width:15.746667pt;}
._13_c00373{width:18.244800pt;}
._c_c00373{width:19.790400pt;}
._1b_c00373{width:22.512000pt;}
._17_c00373{width:24.640000pt;}
._2a_c00373{width:25.795733pt;}
._2c_c00373{width:27.542400pt;}
._2b_c00373{width:28.913067pt;}
._23_c00373{width:31.292267pt;}
._1d_c00373{width:33.500800pt;}
._11_c00373{width:37.240000pt;}
._e_c00373{width:39.222400pt;}
._14_c00373{width:40.286400pt;}
._19_c00373{width:42.976000pt;}
._1a_c00373{width:44.385600pt;}
._1e_c00373{width:45.349333pt;}
._22_c00373{width:50.707200pt;}
._8_c00373{width:60.961600pt;}
._24_c00373{width:71.580800pt;}
._27_c00373{width:75.947200pt;}
._26_c00373{width:79.500267pt;}
._20_c00373{width:126.661333pt;}
._29_c00373{width:145.988267pt;}
._25_c00373{width:224.867200pt;}
.fs2_c00373{font-size:40.000000pt;}
.fs8_c00373{font-size:42.666667pt;}
.fs1_c00373{font-size:44.800000pt;}
.fs5_c00373{font-size:53.333333pt;}
.fs0_c00373{font-size:56.000000pt;}
.fs3_c00373{font-size:58.666667pt;}
.fs7_c00373{font-size:64.000000pt;}
.fs4_c00373{font-size:82.666667pt;}
.fs6_c00373{font-size:173.333333pt;}
.y0_c00373{bottom:0.000000pt;}
.y3f_c00373{bottom:2.760000pt;}
.y3e_c00373{bottom:6.425204pt;}
.y3d_c00373{bottom:33.586667pt;}
.y32_c00373{bottom:48.253333pt;}
.y3c_c00373{bottom:49.453333pt;}
.y31_c00373{bottom:65.586667pt;}
.y3b_c00373{bottom:65.986667pt;}
.y30_c00373{bottom:81.586667pt;}
.y3a_c00373{bottom:82.386667pt;}
.y2f_c00373{bottom:98.120000pt;}
.y2e_c00373{bottom:113.986667pt;}
.y39_c00373{bottom:114.253333pt;}
.y2d_c00373{bottom:129.586667pt;}
.y38_c00373{bottom:130.386667pt;}
.y2c_c00373{bottom:145.986667pt;}
.y37_c00373{bottom:146.386667pt;}
.y2b_c00373{bottom:161.586667pt;}
.y36_c00373{bottom:162.253333pt;}
.y2a_c00373{bottom:178.386667pt;}
.y35_c00373{bottom:178.786667pt;}
.y29_c00373{bottom:193.986667pt;}
.y34_c00373{bottom:194.920000pt;}
.y28_c00373{bottom:209.720000pt;}
.y33_c00373{bottom:211.186667pt;}
.y24_c00373{bottom:226.520000pt;}
.y23_c00373{bottom:242.653333pt;}
.y22_c00373{bottom:258.253333pt;}
.y21_c00373{bottom:273.853333pt;}
.y20_c00373{bottom:290.120000pt;}
.y1f_c00373{bottom:306.253333pt;}
.y1e_c00373{bottom:321.586667pt;}
.y27_c00373{bottom:322.520000pt;}
.y25_c00373{bottom:335.320000pt;}
.y1d_c00373{bottom:338.120000pt;}
.y26_c00373{bottom:338.386667pt;}
.y1c_c00373{bottom:354.253333pt;}
.y1b_c00373{bottom:370.120000pt;}
.y1a_c00373{bottom:386.653333pt;}
.y12_c00373{bottom:387.586667pt;}
.y11_c00373{bottom:402.520000pt;}
.y19_c00373{bottom:418.120000pt;}
.y10_c00373{bottom:418.786667pt;}
.y18_c00373{bottom:434.386667pt;}
.yf_c00373{bottom:435.186667pt;}
.y17_c00373{bottom:451.186667pt;}
.ye_c00373{bottom:466.120000pt;}
.y16_c00373{bottom:466.786667pt;}
.y15_c00373{bottom:482.920000pt;}
.yd_c00373{bottom:498.520000pt;}
.y14_c00373{bottom:498.786667pt;}
.y13_c00373{bottom:514.520000pt;}
.yc_c00373{bottom:515.586667pt;}
.yb_c00373{bottom:530.920000pt;}
.ya_c00373{bottom:546.920000pt;}
.y9_c00373{bottom:563.053333pt;}
.y8_c00373{bottom:579.320000pt;}
.y7_c00373{bottom:595.186667pt;}
.y6_c00373{bottom:611.720000pt;}
.y5_c00373{bottom:627.586667pt;}
.y4_c00373{bottom:643.986667pt;}
.y3_c00373{bottom:659.720000pt;}
.y2_c00373{bottom:676.120000pt;}
.y1_c00373{bottom:691.720000pt;}
.h9_c00373{height:11.733399pt;}
.ha_c00373{height:38.937500pt;}
.h5_c00373{height:55.893333pt;}
.h7_c00373{height:56.906667pt;}
.h2_c00373{height:58.688000pt;}
.h3_c00373{height:62.597333pt;}
.h8_c00373{height:62.812500pt;}
.h4_c00373{height:81.132812pt;}
.h6_c00373{height:184.946667pt;}
.h1_c00373{height:752.666667pt;}
.h0_c00373{height:752.866667pt;}
.w2_c00373{width:93.222667pt;}
.w1_c00373{width:511.333333pt;}
.w0_c00373{width:511.466667pt;}
.x0_c00373{left:0.000000pt;}
.x15_c00373{left:55.200000pt;}
.x14_c00373{left:56.800000pt;}
.x13_c00373{left:58.000000pt;}
.x11_c00373{left:59.200000pt;}
.x10_c00373{left:60.266667pt;}
.xf_c00373{left:61.466667pt;}
.x2_c00373{left:67.200000pt;}
.x1_c00373{left:68.133333pt;}
.x6_c00373{left:69.200000pt;}
.x9_c00373{left:73.200000pt;}
.x8_c00373{left:92.400000pt;}
.xa_c00373{left:93.600000pt;}
.x12_c00373{left:102.933333pt;}
.xb_c00373{left:125.466667pt;}
.x7_c00373{left:155.066667pt;}
.x1a_c00373{left:212.901571pt;}
.x18_c00373{left:253.866667pt;}
.x17_c00373{left:254.800000pt;}
.x3_c00373{left:256.266667pt;}
.x16_c00373{left:257.466667pt;}
.xe_c00373{left:258.666667pt;}
.xd_c00373{left:260.133333pt;}
.xc_c00373{left:261.600000pt;}
.x4_c00373{left:289.466667pt;}
.x5_c00373{left:329.200000pt;}
.x19_c00373{left:401.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b6380b6cd8eebb6e244ce343.woff2')format("woff");}.ff1_c00374{font-family:ff1_c00374;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00374;src:url('chunks/assets/font_77db27b315c85921a1786ff3.woff2')format("woff");}.ff2_c00374{font-family:ff2_c00374;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00374;src:url('chunks/assets/font_7f6163865dc75883c0a25e07.woff2')format("woff");}.ff3_c00374{font-family:ff3_c00374;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00374;src:url('chunks/assets/font_1e96fe794c7773bc1c7f364f.woff2')format("woff");}.ff4_c00374{font-family:ff4_c00374;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00374;src:url('chunks/assets/font_6c3cfd87965ed6c5e5ca3887.woff2')format("woff");}.ff5_c00374{font-family:ff5_c00374;line-height:1.012793;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00374;src:url('chunks/assets/font_dc46f56582da0f3f2b5b72c0.woff2')format("woff");}.ff6_c00374{font-family:ff6_c00374;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00374;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff7_c00374{font-family:ff7_c00374;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00374{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00374{vertical-align:0.000000px;}
.lsa_c00374{letter-spacing:0.000000px;}
.ls5_c00374{letter-spacing:1.986000px;}
.ls6_c00374{letter-spacing:2.220000px;}
.ls7_c00374{letter-spacing:2.580000px;}
.ls4_c00374{letter-spacing:3.000000px;}
.ls8_c00374{letter-spacing:3.480000px;}
.ls9_c00374{letter-spacing:4.320000px;}
.ls2_c00374{letter-spacing:4.896000px;}
.ls3_c00374{letter-spacing:4.980000px;}
.ls1_c00374{letter-spacing:6.000000px;}
.ls0_c00374{letter-spacing:10.080000px;}
.lsb_c00374{letter-spacing:12.000000px;}
.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;}
}
.ws5_c00374{word-spacing:-26.160000px;}
.ws0_c00374{word-spacing:-19.500000px;}
.ws3_c00374{word-spacing:-14.340000px;}
.ws1_c00374{word-spacing:-14.160000px;}
.ws2_c00374{word-spacing:-13.554000px;}
.ws4_c00374{word-spacing:-13.452000px;}
.ws6_c00374{word-spacing:-3.052800px;}
.ws7_c00374{word-spacing:0.000000px;}
._14_c00374{margin-left:-19.824000px;}
._15_c00374{margin-left:-17.226000px;}
._21_c00374{margin-left:-15.588000px;}
._e_c00374{margin-left:-13.794000px;}
._10_c00374{margin-left:-12.450000px;}
._13_c00374{margin-left:-10.542000px;}
._d_c00374{margin-left:-8.766000px;}
._a_c00374{margin-left:-6.894000px;}
._b_c00374{margin-left:-5.712000px;}
._c_c00374{margin-left:-4.140000px;}
._8_c00374{margin-left:-3.060000px;}
._9_c00374{margin-left:-1.740000px;}
._12_c00374{width:1.125000px;}
._11_c00374{width:2.430000px;}
._16_c00374{width:3.576000px;}
._2_c00374{width:5.142000px;}
._1_c00374{width:6.618000px;}
._f_c00374{width:8.301000px;}
._3_c00374{width:9.438000px;}
._18_c00374{width:10.641000px;}
._0_c00374{width:11.682000px;}
._4_c00374{width:12.738000px;}
._6_c00374{width:14.586000px;}
._22_c00374{width:15.624000px;}
._7_c00374{width:17.094000px;}
._1b_c00374{width:18.978000px;}
._5_c00374{width:21.648000px;}
._24_c00374{width:23.334000px;}
._1a_c00374{width:24.663000px;}
._17_c00374{width:25.704000px;}
._1d_c00374{width:26.751000px;}
._20_c00374{width:32.640000px;}
._1f_c00374{width:35.472000px;}
._19_c00374{width:38.610000px;}
._1c_c00374{width:42.465000px;}
._23_c00374{width:47.184000px;}
._1e_c00374{width:172.854000px;}
.fc2_c00374{color:transparent;}
.fc1_c00374{color:rgb(128,128,128);}
.fc0_c00374{color:rgb(0,0,0);}
.fs2_c00374{font-size:45.000000px;}
.fs6_c00374{font-size:48.000000px;}
.fs5_c00374{font-size:52.800000px;}
.fs3_c00374{font-size:54.000000px;}
.fs4_c00374{font-size:57.000000px;}
.fs1_c00374{font-size:60.000000px;}
.fs0_c00374{font-size:66.000000px;}
.y0_c00374{bottom:0.000000px;}
.y56_c00374{bottom:3.105000px;}
.y55_c00374{bottom:7.228357px;}
.y2c_c00374{bottom:45.630000px;}
.y54_c00374{bottom:60.780000px;}
.y2b_c00374{bottom:64.230000px;}
.y53_c00374{bottom:79.680000px;}
.y2a_c00374{bottom:83.130000px;}
.y52_c00374{bottom:97.830000px;}
.y29_c00374{bottom:98.880000px;}
.y51_c00374{bottom:116.130000px;}
.y28_c00374{bottom:119.430000px;}
.y50_c00374{bottom:133.680000px;}
.y27_c00374{bottom:137.730000px;}
.y4f_c00374{bottom:152.580000px;}
.y26_c00374{bottom:155.280000px;}
.y4e_c00374{bottom:170.130000px;}
.y25_c00374{bottom:173.880000px;}
.y4d_c00374{bottom:189.030000px;}
.y24_c00374{bottom:191.730000px;}
.y4c_c00374{bottom:207.180000px;}
.y23_c00374{bottom:210.030000px;}
.y4b_c00374{bottom:225.180000px;}
.y22_c00374{bottom:228.180000px;}
.y4a_c00374{bottom:242.730000px;}
.y21_c00374{bottom:245.730000px;}
.y49_c00374{bottom:261.330000px;}
.y20_c00374{bottom:264.930000px;}
.y48_c00374{bottom:279.330000px;}
.y1f_c00374{bottom:281.430000px;}
.y47_c00374{bottom:297.630000px;}
.y1e_c00374{bottom:300.480000px;}
.y46_c00374{bottom:315.930000px;}
.y1d_c00374{bottom:318.930000px;}
.y45_c00374{bottom:334.080000px;}
.y1c_c00374{bottom:337.230000px;}
.y44_c00374{bottom:351.030000px;}
.y1b_c00374{bottom:355.380000px;}
.y43_c00374{bottom:370.530000px;}
.y1a_c00374{bottom:373.380000px;}
.y42_c00374{bottom:386.880000px;}
.y19_c00374{bottom:391.230000px;}
.y41_c00374{bottom:406.980000px;}
.y18_c00374{bottom:410.130000px;}
.y40_c00374{bottom:424.530000px;}
.y17_c00374{bottom:428.280000px;}
.y3f_c00374{bottom:442.830000px;}
.y16_c00374{bottom:445.530000px;}
.y3e_c00374{bottom:460.980000px;}
.y15_c00374{bottom:463.380000px;}
.y3d_c00374{bottom:479.130000px;}
.y14_c00374{bottom:481.980000px;}
.y3c_c00374{bottom:497.130000px;}
.y13_c00374{bottom:500.130000px;}
.y3b_c00374{bottom:515.130000px;}
.y12_c00374{bottom:517.080000px;}
.y2_c00374{bottom:518.730000px;}
.y3a_c00374{bottom:532.980000px;}
.y11_c00374{bottom:534.630000px;}
.y39_c00374{bottom:551.430000px;}
.y10_c00374{bottom:552.930000px;}
.y38_c00374{bottom:569.430000px;}
.yf_c00374{bottom:571.380000px;}
.y37_c00374{bottom:587.580000px;}
.ye_c00374{bottom:589.380000px;}
.y36_c00374{bottom:605.430000px;}
.yd_c00374{bottom:607.530000px;}
.y1_c00374{bottom:608.280000px;}
.y35_c00374{bottom:622.980000px;}
.yc_c00374{bottom:625.680000px;}
.y34_c00374{bottom:641.580000px;}
.yb_c00374{bottom:643.380000px;}
.y33_c00374{bottom:660.180000px;}
.ya_c00374{bottom:661.830000px;}
.y32_c00374{bottom:678.480000px;}
.y9_c00374{bottom:679.680000px;}
.y31_c00374{bottom:695.880000px;}
.y8_c00374{bottom:697.980000px;}
.y30_c00374{bottom:712.830000px;}
.y7_c00374{bottom:716.580000px;}
.y2f_c00374{bottom:732.480000px;}
.y6_c00374{bottom:733.830000px;}
.y2e_c00374{bottom:751.680000px;}
.y5_c00374{bottom:753.030000px;}
.y2d_c00374{bottom:769.530000px;}
.y4_c00374{bottom:770.880000px;}
.y3_c00374{bottom:789.780000px;}
.h4_c00374{height:13.200074px;}
.h5_c00374{height:43.804688px;}
.h3_c00374{height:56.592000px;}
.h2_c00374{height:62.880000px;}
.h1_c00374{height:70.422000px;}
.h0_c00374{height:833.250000px;}
.w2_c00374{width:104.875500px;}
.w0_c00374{width:578.850000px;}
.w1_c00374{width:579.000000px;}
.x0_c00374{left:0.000000px;}
.x9_c00374{left:13.950000px;}
.x1_c00374{left:18.900000px;}
.x2_c00374{left:19.950000px;}
.x8_c00374{left:78.750000px;}
.x6_c00374{left:80.100000px;}
.x4_c00374{left:82.050000px;}
.xa_c00374{left:83.400000px;}
.xb_c00374{left:84.750000px;}
.xc_c00374{left:85.800000px;}
.x7_c00374{left:101.700000px;}
.x5_c00374{left:103.050000px;}
.x3_c00374{left:215.100000px;}
.x16_c00374{left:241.239258px;}
.xd_c00374{left:301.350000px;}
.xf_c00374{left:302.400000px;}
.x10_c00374{left:303.750000px;}
.x11_c00374{left:304.800000px;}
.x12_c00374{left:306.150000px;}
.x13_c00374{left:321.600000px;}
.xe_c00374{left:327.450000px;}
.x14_c00374{left:344.700000px;}
.x15_c00374{left:385.500000px;}
@media print{
.v0_c00374{vertical-align:0.000000pt;}
.lsa_c00374{letter-spacing:0.000000pt;}
.ls5_c00374{letter-spacing:1.765333pt;}
.ls6_c00374{letter-spacing:1.973333pt;}
.ls7_c00374{letter-spacing:2.293333pt;}
.ls4_c00374{letter-spacing:2.666667pt;}
.ls8_c00374{letter-spacing:3.093333pt;}
.ls9_c00374{letter-spacing:3.840000pt;}
.ls2_c00374{letter-spacing:4.352000pt;}
.ls3_c00374{letter-spacing:4.426667pt;}
.ls1_c00374{letter-spacing:5.333333pt;}
.ls0_c00374{letter-spacing:8.960000pt;}
.lsb_c00374{letter-spacing:10.666667pt;}
.ws5_c00374{word-spacing:-23.253333pt;}
.ws0_c00374{word-spacing:-17.333333pt;}
.ws3_c00374{word-spacing:-12.746667pt;}
.ws1_c00374{word-spacing:-12.586667pt;}
.ws2_c00374{word-spacing:-12.048000pt;}
.ws4_c00374{word-spacing:-11.957333pt;}
.ws6_c00374{word-spacing:-2.713600pt;}
.ws7_c00374{word-spacing:0.000000pt;}
._14_c00374{margin-left:-17.621333pt;}
._15_c00374{margin-left:-15.312000pt;}
._21_c00374{margin-left:-13.856000pt;}
._e_c00374{margin-left:-12.261333pt;}
._10_c00374{margin-left:-11.066667pt;}
._13_c00374{margin-left:-9.370667pt;}
._d_c00374{margin-left:-7.792000pt;}
._a_c00374{margin-left:-6.128000pt;}
._b_c00374{margin-left:-5.077333pt;}
._c_c00374{margin-left:-3.680000pt;}
._8_c00374{margin-left:-2.720000pt;}
._9_c00374{margin-left:-1.546667pt;}
._12_c00374{width:1.000000pt;}
._11_c00374{width:2.160000pt;}
._16_c00374{width:3.178667pt;}
._2_c00374{width:4.570667pt;}
._1_c00374{width:5.882667pt;}
._f_c00374{width:7.378667pt;}
._3_c00374{width:8.389333pt;}
._18_c00374{width:9.458667pt;}
._0_c00374{width:10.384000pt;}
._4_c00374{width:11.322667pt;}
._6_c00374{width:12.965333pt;}
._22_c00374{width:13.888000pt;}
._7_c00374{width:15.194667pt;}
._1b_c00374{width:16.869333pt;}
._5_c00374{width:19.242667pt;}
._24_c00374{width:20.741333pt;}
._1a_c00374{width:21.922667pt;}
._17_c00374{width:22.848000pt;}
._1d_c00374{width:23.778667pt;}
._20_c00374{width:29.013333pt;}
._1f_c00374{width:31.530667pt;}
._19_c00374{width:34.320000pt;}
._1c_c00374{width:37.746667pt;}
._23_c00374{width:41.941333pt;}
._1e_c00374{width:153.648000pt;}
.fs2_c00374{font-size:40.000000pt;}
.fs6_c00374{font-size:42.666667pt;}
.fs5_c00374{font-size:46.933333pt;}
.fs3_c00374{font-size:48.000000pt;}
.fs4_c00374{font-size:50.666667pt;}
.fs1_c00374{font-size:53.333333pt;}
.fs0_c00374{font-size:58.666667pt;}
.y0_c00374{bottom:0.000000pt;}
.y56_c00374{bottom:2.760000pt;}
.y55_c00374{bottom:6.425206pt;}
.y2c_c00374{bottom:40.560000pt;}
.y54_c00374{bottom:54.026667pt;}
.y2b_c00374{bottom:57.093333pt;}
.y53_c00374{bottom:70.826667pt;}
.y2a_c00374{bottom:73.893333pt;}
.y52_c00374{bottom:86.960000pt;}
.y29_c00374{bottom:87.893333pt;}
.y51_c00374{bottom:103.226667pt;}
.y28_c00374{bottom:106.160000pt;}
.y50_c00374{bottom:118.826667pt;}
.y27_c00374{bottom:122.426667pt;}
.y4f_c00374{bottom:135.626667pt;}
.y26_c00374{bottom:138.026667pt;}
.y4e_c00374{bottom:151.226667pt;}
.y25_c00374{bottom:154.560000pt;}
.y4d_c00374{bottom:168.026667pt;}
.y24_c00374{bottom:170.426667pt;}
.y4c_c00374{bottom:184.160000pt;}
.y23_c00374{bottom:186.693333pt;}
.y4b_c00374{bottom:200.160000pt;}
.y22_c00374{bottom:202.826667pt;}
.y4a_c00374{bottom:215.760000pt;}
.y21_c00374{bottom:218.426667pt;}
.y49_c00374{bottom:232.293333pt;}
.y20_c00374{bottom:235.493333pt;}
.y48_c00374{bottom:248.293333pt;}
.y1f_c00374{bottom:250.160000pt;}
.y47_c00374{bottom:264.560000pt;}
.y1e_c00374{bottom:267.093333pt;}
.y46_c00374{bottom:280.826667pt;}
.y1d_c00374{bottom:283.493333pt;}
.y45_c00374{bottom:296.960000pt;}
.y1c_c00374{bottom:299.760000pt;}
.y44_c00374{bottom:312.026667pt;}
.y1b_c00374{bottom:315.893333pt;}
.y43_c00374{bottom:329.360000pt;}
.y1a_c00374{bottom:331.893333pt;}
.y42_c00374{bottom:343.893333pt;}
.y19_c00374{bottom:347.760000pt;}
.y41_c00374{bottom:361.760000pt;}
.y18_c00374{bottom:364.560000pt;}
.y40_c00374{bottom:377.360000pt;}
.y17_c00374{bottom:380.693333pt;}
.y3f_c00374{bottom:393.626667pt;}
.y16_c00374{bottom:396.026667pt;}
.y3e_c00374{bottom:409.760000pt;}
.y15_c00374{bottom:411.893333pt;}
.y3d_c00374{bottom:425.893333pt;}
.y14_c00374{bottom:428.426667pt;}
.y3c_c00374{bottom:441.893333pt;}
.y13_c00374{bottom:444.560000pt;}
.y3b_c00374{bottom:457.893333pt;}
.y12_c00374{bottom:459.626667pt;}
.y2_c00374{bottom:461.093333pt;}
.y3a_c00374{bottom:473.760000pt;}
.y11_c00374{bottom:475.226667pt;}
.y39_c00374{bottom:490.160000pt;}
.y10_c00374{bottom:491.493333pt;}
.y38_c00374{bottom:506.160000pt;}
.yf_c00374{bottom:507.893333pt;}
.y37_c00374{bottom:522.293333pt;}
.ye_c00374{bottom:523.893333pt;}
.y36_c00374{bottom:538.160000pt;}
.yd_c00374{bottom:540.026667pt;}
.y1_c00374{bottom:540.693333pt;}
.y35_c00374{bottom:553.760000pt;}
.yc_c00374{bottom:556.160000pt;}
.y34_c00374{bottom:570.293333pt;}
.yb_c00374{bottom:571.893333pt;}
.y33_c00374{bottom:586.826667pt;}
.ya_c00374{bottom:588.293333pt;}
.y32_c00374{bottom:603.093333pt;}
.y9_c00374{bottom:604.160000pt;}
.y31_c00374{bottom:618.560000pt;}
.y8_c00374{bottom:620.426667pt;}
.y30_c00374{bottom:633.626667pt;}
.y7_c00374{bottom:636.960000pt;}
.y2f_c00374{bottom:651.093333pt;}
.y6_c00374{bottom:652.293333pt;}
.y2e_c00374{bottom:668.160000pt;}
.y5_c00374{bottom:669.360000pt;}
.y2d_c00374{bottom:684.026667pt;}
.y4_c00374{bottom:685.226667pt;}
.y3_c00374{bottom:702.026667pt;}
.h4_c00374{height:11.733399pt;}
.h5_c00374{height:38.937500pt;}
.h3_c00374{height:50.304000pt;}
.h2_c00374{height:55.893333pt;}
.h1_c00374{height:62.597333pt;}
.h0_c00374{height:740.666667pt;}
.w2_c00374{width:93.222667pt;}
.w0_c00374{width:514.533333pt;}
.w1_c00374{width:514.666667pt;}
.x0_c00374{left:0.000000pt;}
.x9_c00374{left:12.400000pt;}
.x1_c00374{left:16.800000pt;}
.x2_c00374{left:17.733333pt;}
.x8_c00374{left:70.000000pt;}
.x6_c00374{left:71.200000pt;}
.x4_c00374{left:72.933333pt;}
.xa_c00374{left:74.133333pt;}
.xb_c00374{left:75.333333pt;}
.xc_c00374{left:76.266667pt;}
.x7_c00374{left:90.400000pt;}
.x5_c00374{left:91.600000pt;}
.x3_c00374{left:191.200000pt;}
.x16_c00374{left:214.434896pt;}
.xd_c00374{left:267.866667pt;}
.xf_c00374{left:268.800000pt;}
.x10_c00374{left:270.000000pt;}
.x11_c00374{left:270.933333pt;}
.x12_c00374{left:272.133333pt;}
.x13_c00374{left:285.866667pt;}
.xe_c00374{left:291.066667pt;}
.x14_c00374{left:306.400000pt;}
.x15_c00374{left:342.666667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_275f9d6c0b6b7a0b3f72a72a.woff2')format("woff");}.ff1_c00375{font-family:ff1_c00375;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00375;src:url('chunks/assets/font_f5505b2106652c761f988ea1.woff2')format("woff");}.ff2_c00375{font-family:ff2_c00375;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00375;src:url('chunks/assets/font_ea1c4f555113972254643c61.woff2')format("woff");}.ff3_c00375{font-family:ff3_c00375;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00375;src:url('chunks/assets/font_934ca93e13e89de206a67195.woff2')format("woff");}.ff4_c00375{font-family:ff4_c00375;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00375;src:url('chunks/assets/font_53a5383589e8bcda1bc7469e.woff2')format("woff");}.ff5_c00375{font-family:ff5_c00375;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00375;src:url('chunks/assets/font_2159c0786e602babeaa50523.woff2')format("woff");}.ff6_c00375{font-family:ff6_c00375;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00375;src:url('chunks/assets/font_82d0a5fc7529c3e24c8dc9a2.woff2')format("woff");}.ff7_c00375{font-family:ff7_c00375;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00375;src:url('chunks/assets/font_7c7b114d6d8510036cb24ad0.woff2')format("woff");}.ff8_c00375{font-family:ff8_c00375;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00375;src:url('chunks/assets/font_7d998d2f1ee30547b0644bfb.woff2')format("woff");}.ff9_c00375{font-family:ff9_c00375;line-height:1.575000;font-style:normal;font-weight: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_c00375;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ffa_c00375{font-family:ffa_c00375;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00375{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00375{vertical-align:0.000000px;}
.v1_c00375{vertical-align:15.000000px;}
.ls10_c00375{letter-spacing:-6.000000px;}
.lsf_c00375{letter-spacing:0.000000px;}
.lsd_c00375{letter-spacing:0.699000px;}
.lsb_c00375{letter-spacing:0.810000px;}
.ls5_c00375{letter-spacing:1.605000px;}
.ls2_c00375{letter-spacing:3.000000px;}
.ls4_c00375{letter-spacing:5.805000px;}
.ls6_c00375{letter-spacing:6.000000px;}
.ls3_c00375{letter-spacing:6.405000px;}
.lse_c00375{letter-spacing:12.000000px;}
.ls8_c00375{letter-spacing:12.405000px;}
.lsa_c00375{letter-spacing:17.340000px;}
.ls9_c00375{letter-spacing:22.005000px;}
.lsc_c00375{letter-spacing:29.400000px;}
.ls7_c00375{letter-spacing:39.000000px;}
.ls1_c00375{letter-spacing:125.460000px;}
.ls0_c00375{letter-spacing:210.894000px;}
.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:-57.258000px;}
.ws9_c00375{word-spacing:-35.295000px;}
.ws1_c00375{word-spacing:-29.250000px;}
.ws4_c00375{word-spacing:-18.813000px;}
.ws2_c00375{word-spacing:-18.072000px;}
.ws5_c00375{word-spacing:-18.060000px;}
.ws6_c00375{word-spacing:-18.000000px;}
.wsc_c00375{word-spacing:-17.250000px;}
.ws8_c00375{word-spacing:-16.380000px;}
.ws3_c00375{word-spacing:-15.750000px;}
.ws7_c00375{word-spacing:-14.160000px;}
.wsa_c00375{word-spacing:-13.845000px;}
.wsb_c00375{word-spacing:-13.452000px;}
.wsd_c00375{word-spacing:0.000000px;}
._2c_c00375{margin-left:-45.120000px;}
._27_c00375{margin-left:-43.740000px;}
._29_c00375{margin-left:-38.820000px;}
._28_c00375{margin-left:-37.800000px;}
._2b_c00375{margin-left:-35.460000px;}
._2a_c00375{margin-left:-34.320000px;}
._33_c00375{margin-left:-22.425000px;}
._9_c00375{margin-left:-18.780000px;}
._8_c00375{margin-left:-16.140000px;}
._1a_c00375{margin-left:-14.679000px;}
._37_c00375{margin-left:-10.860000px;}
._30_c00375{margin-left:-9.816000px;}
._18_c00375{margin-left:-8.091000px;}
._c_c00375{margin-left:-6.120000px;}
._d_c00375{margin-left:-4.818000px;}
._39_c00375{margin-left:-3.684000px;}
._0_c00375{margin-left:-2.622000px;}
._17_c00375{margin-left:-1.512000px;}
._1c_c00375{width:1.008000px;}
._1_c00375{width:2.061000px;}
._2_c00375{width:3.243000px;}
._3_c00375{width:4.899000px;}
._6_c00375{width:6.210000px;}
._5_c00375{width:7.659000px;}
._7_c00375{width:9.453000px;}
._2f_c00375{width:10.581000px;}
._10_c00375{width:11.616000px;}
._13_c00375{width:12.765000px;}
._e_c00375{width:14.202000px;}
._31_c00375{width:15.312000px;}
._1e_c00375{width:16.320000px;}
._16_c00375{width:18.336000px;}
._2e_c00375{width:19.494000px;}
._1f_c00375{width:21.390000px;}
._11_c00375{width:23.232000px;}
._14_c00375{width:24.594000px;}
._3b_c00375{width:25.674000px;}
._4_c00375{width:26.799000px;}
._3a_c00375{width:29.232000px;}
._26_c00375{width:32.280000px;}
._22_c00375{width:33.912000px;}
._38_c00375{width:35.040000px;}
._25_c00375{width:38.280000px;}
._15_c00375{width:40.314000px;}
._21_c00375{width:43.266000px;}
._24_c00375{width:45.300000px;}
._12_c00375{width:47.529000px;}
._32_c00375{width:53.136000px;}
._23_c00375{width:72.822000px;}
._19_c00375{width:78.639000px;}
._a_c00375{width:80.040000px;}
._1d_c00375{width:125.568000px;}
._20_c00375{width:142.506000px;}
._36_c00375{width:162.669000px;}
._35_c00375{width:191.379000px;}
._34_c00375{width:202.107000px;}
._1b_c00375{width:226.629000px;}
._f_c00375{width:333.705000px;}
._b_c00375{width:379.500000px;}
._2d_c00375{width:409.836000px;}
.fc2_c00375{color:transparent;}
.fc1_c00375{color:rgb(128,128,128);}
.fc0_c00375{color:rgb(0,0,0);}
.fs7_c00375{font-size:39.000000px;}
.fs6_c00375{font-size:45.000000px;}
.fs9_c00375{font-size:48.000000px;}
.fs8_c00375{font-size:51.000000px;}
.fs1_c00375{font-size:54.000000px;}
.fs0_c00375{font-size:57.000000px;}
.fs3_c00375{font-size:60.000000px;}
.fs5_c00375{font-size:63.000000px;}
.fs2_c00375{font-size:69.000000px;}
.fs4_c00375{font-size:72.000000px;}
.y0_c00375{bottom:0.000000px;}
.y54_c00375{bottom:3.105000px;}
.y53_c00375{bottom:7.228355px;}
.y52_c00375{bottom:37.485000px;}
.y2b_c00375{bottom:51.585000px;}
.y51_c00375{bottom:54.885000px;}
.y2a_c00375{bottom:69.735000px;}
.y50_c00375{bottom:72.585000px;}
.y29_c00375{bottom:88.035000px;}
.y4f_c00375{bottom:91.335000px;}
.y28_c00375{bottom:106.635000px;}
.y4e_c00375{bottom:109.635000px;}
.y27_c00375{bottom:124.185000px;}
.y4d_c00375{bottom:126.585000px;}
.y26_c00375{bottom:142.785000px;}
.y4c_c00375{bottom:146.085000px;}
.y25_c00375{bottom:160.935000px;}
.y4b_c00375{bottom:164.235000px;}
.y24_c00375{bottom:180.135000px;}
.y4a_c00375{bottom:182.235000px;}
.y23_c00375{bottom:197.385000px;}
.y49_c00375{bottom:200.085000px;}
.y22_c00375{bottom:215.985000px;}
.y48_c00375{bottom:218.235000px;}
.y21_c00375{bottom:233.235000px;}
.y47_c00375{bottom:236.235000px;}
.y20_c00375{bottom:252.135000px;}
.y46_c00375{bottom:254.385000px;}
.y1f_c00375{bottom:269.985000px;}
.y45_c00375{bottom:271.935000px;}
.y1e_c00375{bottom:288.585000px;}
.y44_c00375{bottom:289.785000px;}
.y1d_c00375{bottom:305.685000px;}
.y43_c00375{bottom:307.335000px;}
.y1c_c00375{bottom:323.685000px;}
.y42_c00375{bottom:325.035000px;}
.y1b_c00375{bottom:342.435000px;}
.y41_c00375{bottom:343.785000px;}
.y1a_c00375{bottom:358.035000px;}
.y40_c00375{bottom:360.885000px;}
.y19_c00375{bottom:376.335000px;}
.y3f_c00375{bottom:379.335000px;}
.y18_c00375{bottom:395.535000px;}
.y3e_c00375{bottom:397.785000px;}
.y17_c00375{bottom:413.535000px;}
.y3d_c00375{bottom:415.485000px;}
.y16_c00375{bottom:431.535000px;}
.y3c_c00375{bottom:433.935000px;}
.y15_c00375{bottom:449.535000px;}
.y3b_c00375{bottom:451.935000px;}
.y2d_c00375{bottom:453.285000px;}
.y14_c00375{bottom:467.985000px;}
.y3a_c00375{bottom:469.785000px;}
.y2c_c00375{bottom:471.735000px;}
.y13_c00375{bottom:486.585000px;}
.y39_c00375{bottom:487.935000px;}
.y12_c00375{bottom:504.135000px;}
.y38_c00375{bottom:506.235000px;}
.y11_c00375{bottom:523.035000px;}
.y37_c00375{bottom:524.085000px;}
.y10_c00375{bottom:540.885000px;}
.y36_c00375{bottom:542.235000px;}
.yf_c00375{bottom:558.885000px;}
.y35_c00375{bottom:560.235000px;}
.ye_c00375{bottom:577.035000px;}
.y34_c00375{bottom:577.785000px;}
.yd_c00375{bottom:595.035000px;}
.y33_c00375{bottom:595.935000px;}
.yc_c00375{bottom:613.485000px;}
.y32_c00375{bottom:615.135000px;}
.yb_c00375{bottom:631.785000px;}
.ya_c00375{bottom:646.185000px;}
.y31_c00375{bottom:649.935000px;}
.y30_c00375{bottom:669.285000px;}
.y2f_c00375{bottom:685.485000px;}
.y9_c00375{bottom:686.385000px;}
.y2e_c00375{bottom:703.935000px;}
.y6_c00375{bottom:704.235000px;}
.y8_c00375{bottom:704.685000px;}
.y5_c00375{bottom:721.935000px;}
.y7_c00375{bottom:722.835000px;}
.y4_c00375{bottom:740.085000px;}
.y3_c00375{bottom:758.235000px;}
.y2_c00375{bottom:777.135000px;}
.y1_c00375{bottom:795.735000px;}
.hb_c00375{height:13.200074px;}
.h8_c00375{height:42.276000px;}
.hc_c00375{height:43.804688px;}
.ha_c00375{height:59.736000px;}
.h4_c00375{height:62.880000px;}
.h9_c00375{height:64.020000px;}
.h7_c00375{height:66.024000px;}
.h5_c00375{height:67.221000px;}
.h2_c00375{height:73.623000px;}
.h3_c00375{height:75.456000px;}
.h6_c00375{height:81.024000px;}
.h1_c00375{height:846.750000px;}
.h0_c00375{height:846.975000px;}
.w2_c00375{width:104.875500px;}
.w1_c00375{width:575.250000px;}
.w0_c00375{width:575.400000px;}
.x0_c00375{left:0.000000px;}
.xe_c00375{left:22.650000px;}
.xc_c00375{left:36.450000px;}
.x9_c00375{left:40.800000px;}
.x13_c00375{left:58.950000px;}
.x12_c00375{left:60.000000px;}
.xb_c00375{left:74.250000px;}
.x10_c00375{left:83.700000px;}
.xf_c00375{left:85.050000px;}
.xd_c00375{left:86.400000px;}
.x7_c00375{left:87.450000px;}
.x1_c00375{left:91.800000px;}
.x11_c00375{left:113.100000px;}
.xa_c00375{left:118.800000px;}
.x6_c00375{left:128.550000px;}
.x8_c00375{left:130.350000px;}
.x2_c00375{left:170.100000px;}
.x3_c00375{left:191.700000px;}
.x1c_c00375{left:239.514267px;}
.x19_c00375{left:298.050000px;}
.x1a_c00375{left:299.700000px;}
.x17_c00375{left:301.350000px;}
.x18_c00375{left:302.400000px;}
.x15_c00375{left:303.450000px;}
.x4_c00375{left:305.400000px;}
.x16_c00375{left:321.000000px;}
.x5_c00375{left:367.950000px;}
.x1b_c00375{left:482.700000px;}
.x14_c00375{left:511.950000px;}
@media print{
.v0_c00375{vertical-align:0.000000pt;}
.v1_c00375{vertical-align:13.333333pt;}
.ls10_c00375{letter-spacing:-5.333333pt;}
.lsf_c00375{letter-spacing:0.000000pt;}
.lsd_c00375{letter-spacing:0.621333pt;}
.lsb_c00375{letter-spacing:0.720000pt;}
.ls5_c00375{letter-spacing:1.426667pt;}
.ls2_c00375{letter-spacing:2.666667pt;}
.ls4_c00375{letter-spacing:5.160000pt;}
.ls6_c00375{letter-spacing:5.333333pt;}
.ls3_c00375{letter-spacing:5.693333pt;}
.lse_c00375{letter-spacing:10.666667pt;}
.ls8_c00375{letter-spacing:11.026667pt;}
.lsa_c00375{letter-spacing:15.413333pt;}
.ls9_c00375{letter-spacing:19.560000pt;}
.lsc_c00375{letter-spacing:26.133333pt;}
.ls7_c00375{letter-spacing:34.666667pt;}
.ls1_c00375{letter-spacing:111.520000pt;}
.ls0_c00375{letter-spacing:187.461333pt;}
.ws0_c00375{word-spacing:-50.896000pt;}
.ws9_c00375{word-spacing:-31.373333pt;}
.ws1_c00375{word-spacing:-26.000000pt;}
.ws4_c00375{word-spacing:-16.722667pt;}
.ws2_c00375{word-spacing:-16.064000pt;}
.ws5_c00375{word-spacing:-16.053333pt;}
.ws6_c00375{word-spacing:-16.000000pt;}
.wsc_c00375{word-spacing:-15.333333pt;}
.ws8_c00375{word-spacing:-14.560000pt;}
.ws3_c00375{word-spacing:-14.000000pt;}
.ws7_c00375{word-spacing:-12.586667pt;}
.wsa_c00375{word-spacing:-12.306667pt;}
.wsb_c00375{word-spacing:-11.957333pt;}
.wsd_c00375{word-spacing:0.000000pt;}
._2c_c00375{margin-left:-40.106667pt;}
._27_c00375{margin-left:-38.880000pt;}
._29_c00375{margin-left:-34.506667pt;}
._28_c00375{margin-left:-33.600000pt;}
._2b_c00375{margin-left:-31.520000pt;}
._2a_c00375{margin-left:-30.506667pt;}
._33_c00375{margin-left:-19.933333pt;}
._9_c00375{margin-left:-16.693333pt;}
._8_c00375{margin-left:-14.346667pt;}
._1a_c00375{margin-left:-13.048000pt;}
._37_c00375{margin-left:-9.653333pt;}
._30_c00375{margin-left:-8.725333pt;}
._18_c00375{margin-left:-7.192000pt;}
._c_c00375{margin-left:-5.440000pt;}
._d_c00375{margin-left:-4.282667pt;}
._39_c00375{margin-left:-3.274667pt;}
._0_c00375{margin-left:-2.330667pt;}
._17_c00375{margin-left:-1.344000pt;}
._1c_c00375{width:0.896000pt;}
._1_c00375{width:1.832000pt;}
._2_c00375{width:2.882667pt;}
._3_c00375{width:4.354667pt;}
._6_c00375{width:5.520000pt;}
._5_c00375{width:6.808000pt;}
._7_c00375{width:8.402667pt;}
._2f_c00375{width:9.405333pt;}
._10_c00375{width:10.325333pt;}
._13_c00375{width:11.346667pt;}
._e_c00375{width:12.624000pt;}
._31_c00375{width:13.610667pt;}
._1e_c00375{width:14.506667pt;}
._16_c00375{width:16.298667pt;}
._2e_c00375{width:17.328000pt;}
._1f_c00375{width:19.013333pt;}
._11_c00375{width:20.650667pt;}
._14_c00375{width:21.861333pt;}
._3b_c00375{width:22.821333pt;}
._4_c00375{width:23.821333pt;}
._3a_c00375{width:25.984000pt;}
._26_c00375{width:28.693333pt;}
._22_c00375{width:30.144000pt;}
._38_c00375{width:31.146667pt;}
._25_c00375{width:34.026667pt;}
._15_c00375{width:35.834667pt;}
._21_c00375{width:38.458667pt;}
._24_c00375{width:40.266667pt;}
._12_c00375{width:42.248000pt;}
._32_c00375{width:47.232000pt;}
._23_c00375{width:64.730667pt;}
._19_c00375{width:69.901333pt;}
._a_c00375{width:71.146667pt;}
._1d_c00375{width:111.616000pt;}
._20_c00375{width:126.672000pt;}
._36_c00375{width:144.594667pt;}
._35_c00375{width:170.114667pt;}
._34_c00375{width:179.650667pt;}
._1b_c00375{width:201.448000pt;}
._f_c00375{width:296.626667pt;}
._b_c00375{width:337.333333pt;}
._2d_c00375{width:364.298667pt;}
.fs7_c00375{font-size:34.666667pt;}
.fs6_c00375{font-size:40.000000pt;}
.fs9_c00375{font-size:42.666667pt;}
.fs8_c00375{font-size:45.333333pt;}
.fs1_c00375{font-size:48.000000pt;}
.fs0_c00375{font-size:50.666667pt;}
.fs3_c00375{font-size:53.333333pt;}
.fs5_c00375{font-size:56.000000pt;}
.fs2_c00375{font-size:61.333333pt;}
.fs4_c00375{font-size:64.000000pt;}
.y0_c00375{bottom:0.000000pt;}
.y54_c00375{bottom:2.760000pt;}
.y53_c00375{bottom:6.425204pt;}
.y52_c00375{bottom:33.320000pt;}
.y2b_c00375{bottom:45.853333pt;}
.y51_c00375{bottom:48.786667pt;}
.y2a_c00375{bottom:61.986667pt;}
.y50_c00375{bottom:64.520000pt;}
.y29_c00375{bottom:78.253333pt;}
.y4f_c00375{bottom:81.186667pt;}
.y28_c00375{bottom:94.786667pt;}
.y4e_c00375{bottom:97.453333pt;}
.y27_c00375{bottom:110.386667pt;}
.y4d_c00375{bottom:112.520000pt;}
.y26_c00375{bottom:126.920000pt;}
.y4c_c00375{bottom:129.853333pt;}
.y25_c00375{bottom:143.053333pt;}
.y4b_c00375{bottom:145.986667pt;}
.y24_c00375{bottom:160.120000pt;}
.y4a_c00375{bottom:161.986667pt;}
.y23_c00375{bottom:175.453333pt;}
.y49_c00375{bottom:177.853333pt;}
.y22_c00375{bottom:191.986667pt;}
.y48_c00375{bottom:193.986667pt;}
.y21_c00375{bottom:207.320000pt;}
.y47_c00375{bottom:209.986667pt;}
.y20_c00375{bottom:224.120000pt;}
.y46_c00375{bottom:226.120000pt;}
.y1f_c00375{bottom:239.986667pt;}
.y45_c00375{bottom:241.720000pt;}
.y1e_c00375{bottom:256.520000pt;}
.y44_c00375{bottom:257.586667pt;}
.y1d_c00375{bottom:271.720000pt;}
.y43_c00375{bottom:273.186667pt;}
.y1c_c00375{bottom:287.720000pt;}
.y42_c00375{bottom:288.920000pt;}
.y1b_c00375{bottom:304.386667pt;}
.y41_c00375{bottom:305.586667pt;}
.y1a_c00375{bottom:318.253333pt;}
.y40_c00375{bottom:320.786667pt;}
.y19_c00375{bottom:334.520000pt;}
.y3f_c00375{bottom:337.186667pt;}
.y18_c00375{bottom:351.586667pt;}
.y3e_c00375{bottom:353.586667pt;}
.y17_c00375{bottom:367.586667pt;}
.y3d_c00375{bottom:369.320000pt;}
.y16_c00375{bottom:383.586667pt;}
.y3c_c00375{bottom:385.720000pt;}
.y15_c00375{bottom:399.586667pt;}
.y3b_c00375{bottom:401.720000pt;}
.y2d_c00375{bottom:402.920000pt;}
.y14_c00375{bottom:415.986667pt;}
.y3a_c00375{bottom:417.586667pt;}
.y2c_c00375{bottom:419.320000pt;}
.y13_c00375{bottom:432.520000pt;}
.y39_c00375{bottom:433.720000pt;}
.y12_c00375{bottom:448.120000pt;}
.y38_c00375{bottom:449.986667pt;}
.y11_c00375{bottom:464.920000pt;}
.y37_c00375{bottom:465.853333pt;}
.y10_c00375{bottom:480.786667pt;}
.y36_c00375{bottom:481.986667pt;}
.yf_c00375{bottom:496.786667pt;}
.y35_c00375{bottom:497.986667pt;}
.ye_c00375{bottom:512.920000pt;}
.y34_c00375{bottom:513.586667pt;}
.yd_c00375{bottom:528.920000pt;}
.y33_c00375{bottom:529.720000pt;}
.yc_c00375{bottom:545.320000pt;}
.y32_c00375{bottom:546.786667pt;}
.yb_c00375{bottom:561.586667pt;}
.ya_c00375{bottom:574.386667pt;}
.y31_c00375{bottom:577.720000pt;}
.y30_c00375{bottom:594.920000pt;}
.y2f_c00375{bottom:609.320000pt;}
.y9_c00375{bottom:610.120000pt;}
.y2e_c00375{bottom:625.720000pt;}
.y6_c00375{bottom:625.986667pt;}
.y8_c00375{bottom:626.386667pt;}
.y5_c00375{bottom:641.720000pt;}
.y7_c00375{bottom:642.520000pt;}
.y4_c00375{bottom:657.853333pt;}
.y3_c00375{bottom:673.986667pt;}
.y2_c00375{bottom:690.786667pt;}
.y1_c00375{bottom:707.320000pt;}
.hb_c00375{height:11.733399pt;}
.h8_c00375{height:37.578667pt;}
.hc_c00375{height:38.937500pt;}
.ha_c00375{height:53.098667pt;}
.h4_c00375{height:55.893333pt;}
.h9_c00375{height:56.906667pt;}
.h7_c00375{height:58.688000pt;}
.h5_c00375{height:59.752000pt;}
.h2_c00375{height:65.442667pt;}
.h3_c00375{height:67.072000pt;}
.h6_c00375{height:72.021333pt;}
.h1_c00375{height:752.666667pt;}
.h0_c00375{height:752.866667pt;}
.w2_c00375{width:93.222667pt;}
.w1_c00375{width:511.333333pt;}
.w0_c00375{width:511.466667pt;}
.x0_c00375{left:0.000000pt;}
.xe_c00375{left:20.133333pt;}
.xc_c00375{left:32.400000pt;}
.x9_c00375{left:36.266667pt;}
.x13_c00375{left:52.400000pt;}
.x12_c00375{left:53.333333pt;}
.xb_c00375{left:66.000000pt;}
.x10_c00375{left:74.400000pt;}
.xf_c00375{left:75.600000pt;}
.xd_c00375{left:76.800000pt;}
.x7_c00375{left:77.733333pt;}
.x1_c00375{left:81.600000pt;}
.x11_c00375{left:100.533333pt;}
.xa_c00375{left:105.600000pt;}
.x6_c00375{left:114.266667pt;}
.x8_c00375{left:115.866667pt;}
.x2_c00375{left:151.200000pt;}
.x3_c00375{left:170.400000pt;}
.x1c_c00375{left:212.901571pt;}
.x19_c00375{left:264.933333pt;}
.x1a_c00375{left:266.400000pt;}
.x17_c00375{left:267.866667pt;}
.x18_c00375{left:268.800000pt;}
.x15_c00375{left:269.733333pt;}
.x4_c00375{left:271.466667pt;}
.x16_c00375{left:285.333333pt;}
.x5_c00375{left:327.066667pt;}
.x1b_c00375{left:429.066667pt;}
.x14_c00375{left:455.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_2497333cecef77f3c3de3ab7.woff2')format("woff");}.ff1_c00376{font-family:ff1_c00376;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00376;src:url('chunks/assets/font_2c5dd1c754f5922f7eadc825.woff2')format("woff");}.ff2_c00376{font-family:ff2_c00376;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00376;src:url('chunks/assets/font_72d02bae4873caf536e5861c.woff2')format("woff");}.ff3_c00376{font-family:ff3_c00376;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00376;src:url('chunks/assets/font_37dddda591fcae3dd14d0cc5.woff2')format("woff");}.ff4_c00376{font-family:ff4_c00376;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00376;src:url('chunks/assets/font_afe6ab258a4d779f76bcd7fe.woff2')format("woff");}.ff5_c00376{font-family:ff5_c00376;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00376;src:url('chunks/assets/font_8a83abbc326c1f99f17be8f8.woff2')format("woff");}.ff6_c00376{font-family:ff6_c00376;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00376;src:url('chunks/assets/font_9474de562bb414f43fcd44e7.woff2')format("woff");}.ff7_c00376{font-family:ff7_c00376;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00376;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff8_c00376{font-family:ff8_c00376;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00376{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00376{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.v0_c00376{vertical-align:0.000000px;}
.ls3_c00376{letter-spacing:0.000000px;}
.ls1_c00376{letter-spacing:1.713000px;}
.ls2_c00376{letter-spacing:3.000000px;}
.ls4_c00376{letter-spacing:6.000000px;}
.ls0_c00376{letter-spacing:12.000000px;}
.sc__c00376{text-shadow:none;}
.sc0_c00376{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00376{-webkit-text-stroke:0px transparent;}
.sc0_c00376{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00376{word-spacing:-18.750000px;}
.ws7_c00376{word-spacing:-18.060000px;}
.ws3_c00376{word-spacing:-18.000000px;}
.ws2_c00376{word-spacing:-15.576000px;}
.ws1_c00376{word-spacing:-14.160000px;}
.ws6_c00376{word-spacing:-12.291000px;}
.ws0_c00376{word-spacing:-3.780000px;}
.ws5_c00376{word-spacing:-0.040800px;}
.ws8_c00376{word-spacing:0.000000px;}
._22_c00376{margin-left:-21.369000px;}
._24_c00376{margin-left:-19.584000px;}
._1d_c00376{margin-left:-17.511000px;}
._29_c00376{margin-left:-10.443000px;}
._20_c00376{margin-left:-9.432000px;}
._f_c00376{margin-left:-7.650000px;}
._e_c00376{margin-left:-6.048000px;}
._9_c00376{margin-left:-4.056000px;}
._4_c00376{margin-left:-2.709000px;}
._8_c00376{margin-left:-1.518000px;}
._1_c00376{width:1.680000px;}
._2_c00376{width:2.709000px;}
._6_c00376{width:4.080000px;}
._13_c00376{width:5.397000px;}
._0_c00376{width:6.840000px;}
._3_c00376{width:8.253000px;}
._10_c00376{width:10.059000px;}
._5_c00376{width:11.466000px;}
._14_c00376{width:12.735000px;}
._11_c00376{width:14.160000px;}
._1f_c00376{width:15.540000px;}
._a_c00376{width:17.190000px;}
._d_c00376{width:19.245000px;}
._15_c00376{width:20.802000px;}
._18_c00376{width:22.446000px;}
._1c_c00376{width:23.916000px;}
._1a_c00376{width:25.476000px;}
._b_c00376{width:26.724000px;}
._1b_c00376{width:27.840000px;}
._19_c00376{width:30.417000px;}
._16_c00376{width:31.629000px;}
._17_c00376{width:33.723000px;}
._c_c00376{width:34.965000px;}
._1e_c00376{width:39.444000px;}
._21_c00376{width:40.494000px;}
._2c_c00376{width:46.674000px;}
._23_c00376{width:57.885000px;}
._7_c00376{width:74.808000px;}
._26_c00376{width:87.639000px;}
._2b_c00376{width:109.587000px;}
._25_c00376{width:130.068000px;}
._27_c00376{width:173.946000px;}
._28_c00376{width:199.875000px;}
._2a_c00376{width:298.086000px;}
._2d_c00376{width:308.049000px;}
._12_c00376{width:344.244000px;}
.fc2_c00376{color:transparent;}
.fc1_c00376{color:rgb(128,128,128);}
.fc0_c00376{color:rgb(0,0,0);}
.fs6_c00376{font-size:40.800000px;}
.fs8_c00376{font-size:48.000000px;}
.fs5_c00376{font-size:51.000000px;}
.fs3_c00376{font-size:57.000000px;}
.fs0_c00376{font-size:60.000000px;}
.fs1_c00376{font-size:63.000000px;}
.fs2_c00376{font-size:66.000000px;}
.fs7_c00376{font-size:69.000000px;}
.fs4_c00376{font-size:72.000000px;}
.y0_c00376{bottom:0.000000px;}
.y4a_c00376{bottom:3.105000px;}
.y49_c00376{bottom:7.228371px;}
.y48_c00376{bottom:35.115000px;}
.y47_c00376{bottom:56.115000px;}
.y46_c00376{bottom:74.565000px;}
.y45_c00376{bottom:94.965000px;}
.y44_c00376{bottom:111.465000px;}
.y43_c00376{bottom:129.615000px;}
.y42_c00376{bottom:147.165000px;}
.y41_c00376{bottom:165.765000px;}
.y3f_c00376{bottom:182.565000px;}
.y40_c00376{bottom:184.965000px;}
.y2_c00376{bottom:187.665000px;}
.y23_c00376{bottom:202.215000px;}
.y3e_c00376{bottom:218.715000px;}
.y22_c00376{bottom:221.415000px;}
.y21_c00376{bottom:238.965000px;}
.y3d_c00376{bottom:255.615000px;}
.y20_c00376{bottom:256.815000px;}
.y3c_c00376{bottom:272.115000px;}
.y1f_c00376{bottom:274.515000px;}
.y3b_c00376{bottom:290.265000px;}
.y1e_c00376{bottom:292.965000px;}
.y3a_c00376{bottom:309.465000px;}
.y1d_c00376{bottom:310.815000px;}
.y39_c00376{bottom:327.765000px;}
.y1c_c00376{bottom:329.115000px;}
.y38_c00376{bottom:345.915000px;}
.y1b_c00376{bottom:346.965000px;}
.y37_c00376{bottom:364.215000px;}
.y1a_c00376{bottom:365.565000px;}
.y36_c00376{bottom:381.765000px;}
.y19_c00376{bottom:383.715000px;}
.y35_c00376{bottom:399.915000px;}
.y18_c00376{bottom:401.715000px;}
.y1_c00376{bottom:402.765000px;}
.y34_c00376{bottom:417.465000px;}
.y17_c00376{bottom:418.965000px;}
.y33_c00376{bottom:436.365000px;}
.y16_c00376{bottom:436.815000px;}
.y32_c00376{bottom:454.065000px;}
.y15_c00376{bottom:454.665000px;}
.y31_c00376{bottom:471.165000px;}
.y14_c00376{bottom:472.665000px;}
.y30_c00376{bottom:490.365000px;}
.y13_c00376{bottom:490.515000px;}
.y2f_c00376{bottom:508.065000px;}
.y12_c00376{bottom:508.365000px;}
.y11_c00376{bottom:525.915000px;}
.y2e_c00376{bottom:526.515000px;}
.y10_c00376{bottom:543.165000px;}
.yf_c00376{bottom:561.315000px;}
.y2d_c00376{bottom:562.665000px;}
.ye_c00376{bottom:579.315000px;}
.y2c_c00376{bottom:580.215000px;}
.yd_c00376{bottom:597.465000px;}
.y2b_c00376{bottom:597.765000px;}
.yc_c00376{bottom:615.615000px;}
.y2a_c00376{bottom:616.965000px;}
.yb_c00376{bottom:633.465000px;}
.y29_c00376{bottom:634.515000px;}
.ya_c00376{bottom:651.465000px;}
.y28_c00376{bottom:652.065000px;}
.y9_c00376{bottom:670.065000px;}
.y27_c00376{bottom:670.665000px;}
.y8_c00376{bottom:687.615000px;}
.y26_c00376{bottom:689.265000px;}
.y7_c00376{bottom:705.765000px;}
.y25_c00376{bottom:707.415000px;}
.y6_c00376{bottom:723.915000px;}
.y24_c00376{bottom:725.415000px;}
.y5_c00376{bottom:742.215000px;}
.y4_c00376{bottom:761.115000px;}
.y3_c00376{bottom:779.415000px;}
.hb_c00376{height:13.200074px;}
.hc_c00376{height:43.804688px;}
.h9_c00376{height:50.053711px;}
.h8_c00376{height:59.690918px;}
.h6_c00376{height:59.736000px;}
.h5_c00376{height:61.831055px;}
.h3_c00376{height:62.880000px;}
.h2_c00376{height:64.020000px;}
.h4_c00376{height:69.168000px;}
.h7_c00376{height:70.664062px;}
.ha_c00376{height:72.312000px;}
.h1_c00376{height:844.500000px;}
.h0_c00376{height:844.575000px;}
.w1_c00376{width:104.875500px;}
.w0_c00376{width:587.250000px;}
.x0_c00376{left:0.000000px;}
.x1_c00376{left:12.900000px;}
.x2_c00376{left:14.850000px;}
.xc_c00376{left:36.000000px;}
.xf_c00376{left:71.400000px;}
.x4_c00376{left:73.200000px;}
.x3_c00376{left:74.550000px;}
.x6_c00376{left:75.900000px;}
.x7_c00376{left:76.950000px;}
.x10_c00376{left:82.500000px;}
.x5_c00376{left:97.200000px;}
.x11_c00376{left:98.250000px;}
.x13_c00376{left:245.439240px;}
.x8_c00376{left:292.950000px;}
.x9_c00376{left:294.900000px;}
.xa_c00376{left:295.950000px;}
.xd_c00376{left:318.300000px;}
.xe_c00376{left:390.000000px;}
.xb_c00376{left:391.200000px;}
.x12_c00376{left:461.700000px;}
@media print{
.v0_c00376{vertical-align:0.000000pt;}
.ls3_c00376{letter-spacing:0.000000pt;}
.ls1_c00376{letter-spacing:1.522667pt;}
.ls2_c00376{letter-spacing:2.666667pt;}
.ls4_c00376{letter-spacing:5.333333pt;}
.ls0_c00376{letter-spacing:10.666667pt;}
.ws4_c00376{word-spacing:-16.666667pt;}
.ws7_c00376{word-spacing:-16.053333pt;}
.ws3_c00376{word-spacing:-16.000000pt;}
.ws2_c00376{word-spacing:-13.845333pt;}
.ws1_c00376{word-spacing:-12.586667pt;}
.ws6_c00376{word-spacing:-10.925333pt;}
.ws0_c00376{word-spacing:-3.360000pt;}
.ws5_c00376{word-spacing:-0.036267pt;}
.ws8_c00376{word-spacing:0.000000pt;}
._22_c00376{margin-left:-18.994667pt;}
._24_c00376{margin-left:-17.408000pt;}
._1d_c00376{margin-left:-15.565333pt;}
._29_c00376{margin-left:-9.282667pt;}
._20_c00376{margin-left:-8.384000pt;}
._f_c00376{margin-left:-6.800000pt;}
._e_c00376{margin-left:-5.376000pt;}
._9_c00376{margin-left:-3.605333pt;}
._4_c00376{margin-left:-2.408000pt;}
._8_c00376{margin-left:-1.349333pt;}
._1_c00376{width:1.493333pt;}
._2_c00376{width:2.408000pt;}
._6_c00376{width:3.626667pt;}
._13_c00376{width:4.797333pt;}
._0_c00376{width:6.080000pt;}
._3_c00376{width:7.336000pt;}
._10_c00376{width:8.941333pt;}
._5_c00376{width:10.192000pt;}
._14_c00376{width:11.320000pt;}
._11_c00376{width:12.586667pt;}
._1f_c00376{width:13.813333pt;}
._a_c00376{width:15.280000pt;}
._d_c00376{width:17.106667pt;}
._15_c00376{width:18.490667pt;}
._18_c00376{width:19.952000pt;}
._1c_c00376{width:21.258667pt;}
._1a_c00376{width:22.645333pt;}
._b_c00376{width:23.754667pt;}
._1b_c00376{width:24.746667pt;}
._19_c00376{width:27.037333pt;}
._16_c00376{width:28.114667pt;}
._17_c00376{width:29.976000pt;}
._c_c00376{width:31.080000pt;}
._1e_c00376{width:35.061333pt;}
._21_c00376{width:35.994667pt;}
._2c_c00376{width:41.488000pt;}
._23_c00376{width:51.453333pt;}
._7_c00376{width:66.496000pt;}
._26_c00376{width:77.901333pt;}
._2b_c00376{width:97.410667pt;}
._25_c00376{width:115.616000pt;}
._27_c00376{width:154.618667pt;}
._28_c00376{width:177.666667pt;}
._2a_c00376{width:264.965333pt;}
._2d_c00376{width:273.821333pt;}
._12_c00376{width:305.994667pt;}
.fs6_c00376{font-size:36.266667pt;}
.fs8_c00376{font-size:42.666667pt;}
.fs5_c00376{font-size:45.333333pt;}
.fs3_c00376{font-size:50.666667pt;}
.fs0_c00376{font-size:53.333333pt;}
.fs1_c00376{font-size:56.000000pt;}
.fs2_c00376{font-size:58.666667pt;}
.fs7_c00376{font-size:61.333333pt;}
.fs4_c00376{font-size:64.000000pt;}
.y0_c00376{bottom:0.000000pt;}
.y4a_c00376{bottom:2.760000pt;}
.y49_c00376{bottom:6.425219pt;}
.y48_c00376{bottom:31.213333pt;}
.y47_c00376{bottom:49.880000pt;}
.y46_c00376{bottom:66.280000pt;}
.y45_c00376{bottom:84.413333pt;}
.y44_c00376{bottom:99.080000pt;}
.y43_c00376{bottom:115.213333pt;}
.y42_c00376{bottom:130.813333pt;}
.y41_c00376{bottom:147.346667pt;}
.y3f_c00376{bottom:162.280000pt;}
.y40_c00376{bottom:164.413333pt;}
.y2_c00376{bottom:166.813333pt;}
.y23_c00376{bottom:179.746667pt;}
.y3e_c00376{bottom:194.413333pt;}
.y22_c00376{bottom:196.813333pt;}
.y21_c00376{bottom:212.413333pt;}
.y3d_c00376{bottom:227.213333pt;}
.y20_c00376{bottom:228.280000pt;}
.y3c_c00376{bottom:241.880000pt;}
.y1f_c00376{bottom:244.013333pt;}
.y3b_c00376{bottom:258.013333pt;}
.y1e_c00376{bottom:260.413333pt;}
.y3a_c00376{bottom:275.080000pt;}
.y1d_c00376{bottom:276.280000pt;}
.y39_c00376{bottom:291.346667pt;}
.y1c_c00376{bottom:292.546667pt;}
.y38_c00376{bottom:307.480000pt;}
.y1b_c00376{bottom:308.413333pt;}
.y37_c00376{bottom:323.746667pt;}
.y1a_c00376{bottom:324.946667pt;}
.y36_c00376{bottom:339.346667pt;}
.y19_c00376{bottom:341.080000pt;}
.y35_c00376{bottom:355.480000pt;}
.y18_c00376{bottom:357.080000pt;}
.y1_c00376{bottom:358.013333pt;}
.y34_c00376{bottom:371.080000pt;}
.y17_c00376{bottom:372.413333pt;}
.y33_c00376{bottom:387.880000pt;}
.y16_c00376{bottom:388.280000pt;}
.y32_c00376{bottom:403.613333pt;}
.y15_c00376{bottom:404.146667pt;}
.y31_c00376{bottom:418.813333pt;}
.y14_c00376{bottom:420.146667pt;}
.y30_c00376{bottom:435.880000pt;}
.y13_c00376{bottom:436.013333pt;}
.y2f_c00376{bottom:451.613333pt;}
.y12_c00376{bottom:451.880000pt;}
.y11_c00376{bottom:467.480000pt;}
.y2e_c00376{bottom:468.013333pt;}
.y10_c00376{bottom:482.813333pt;}
.yf_c00376{bottom:498.946667pt;}
.y2d_c00376{bottom:500.146667pt;}
.ye_c00376{bottom:514.946667pt;}
.y2c_c00376{bottom:515.746667pt;}
.yd_c00376{bottom:531.080000pt;}
.y2b_c00376{bottom:531.346667pt;}
.yc_c00376{bottom:547.213333pt;}
.y2a_c00376{bottom:548.413333pt;}
.yb_c00376{bottom:563.080000pt;}
.y29_c00376{bottom:564.013333pt;}
.ya_c00376{bottom:579.080000pt;}
.y28_c00376{bottom:579.613333pt;}
.y9_c00376{bottom:595.613333pt;}
.y27_c00376{bottom:596.146667pt;}
.y8_c00376{bottom:611.213333pt;}
.y26_c00376{bottom:612.680000pt;}
.y7_c00376{bottom:627.346667pt;}
.y25_c00376{bottom:628.813333pt;}
.y6_c00376{bottom:643.480000pt;}
.y24_c00376{bottom:644.813333pt;}
.y5_c00376{bottom:659.746667pt;}
.y4_c00376{bottom:676.546667pt;}
.y3_c00376{bottom:692.813333pt;}
.hb_c00376{height:11.733399pt;}
.hc_c00376{height:38.937500pt;}
.h9_c00376{height:44.492188pt;}
.h8_c00376{height:53.058594pt;}
.h6_c00376{height:53.098667pt;}
.h5_c00376{height:54.960938pt;}
.h3_c00376{height:55.893333pt;}
.h2_c00376{height:56.906667pt;}
.h4_c00376{height:61.482667pt;}
.h7_c00376{height:62.812500pt;}
.ha_c00376{height:64.277333pt;}
.h1_c00376{height:750.666667pt;}
.h0_c00376{height:750.733333pt;}
.w1_c00376{width:93.222667pt;}
.w0_c00376{width:522.000000pt;}
.x0_c00376{left:0.000000pt;}
.x1_c00376{left:11.466667pt;}
.x2_c00376{left:13.200000pt;}
.xc_c00376{left:32.000000pt;}
.xf_c00376{left:63.466667pt;}
.x4_c00376{left:65.066667pt;}
.x3_c00376{left:66.266667pt;}
.x6_c00376{left:67.466667pt;}
.x7_c00376{left:68.400000pt;}
.x10_c00376{left:73.333333pt;}
.x5_c00376{left:86.400000pt;}
.x11_c00376{left:87.333333pt;}
.x13_c00376{left:218.168213pt;}
.x8_c00376{left:260.400000pt;}
.x9_c00376{left:262.133333pt;}
.xa_c00376{left:263.066667pt;}
.xd_c00376{left:282.933333pt;}
.xe_c00376{left:346.666667pt;}
.xb_c00376{left:347.733333pt;}
.x12_c00376{left:410.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6f5baa0fd461c03d58e8b9df.woff2')format("woff");}.ff1_c00377{font-family:ff1_c00377;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00377;src:url('chunks/assets/font_eaec8a5089777efb7be80e1e.woff2')format("woff");}.ff2_c00377{font-family:ff2_c00377;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00377;src:url('chunks/assets/font_d8e3a3ca1740f1213b3e287e.woff2')format("woff");}.ff3_c00377{font-family:ff3_c00377;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00377;src:url('chunks/assets/font_5e52ae24a189d31800d36976.woff2')format("woff");}.ff4_c00377{font-family:ff4_c00377;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00377;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff5_c00377{font-family:ff5_c00377;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00377{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00377{vertical-align:0.000000px;}
.ls8_c00377{letter-spacing:0.000000px;}
.ls5_c00377{letter-spacing:3.000000px;}
.ls7_c00377{letter-spacing:3.600000px;}
.ls4_c00377{letter-spacing:6.600000px;}
.ls0_c00377{letter-spacing:10.005000px;}
.ls3_c00377{letter-spacing:14.940000px;}
.ls6_c00377{letter-spacing:23.805000px;}
.ls1_c00377{letter-spacing:104.940000px;}
.ls2_c00377{letter-spacing:130.740000px;}
.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;}
}
.ws2_c00377{word-spacing:-20.340000px;}
.ws3_c00377{word-spacing:-18.060000px;}
.ws0_c00377{word-spacing:-14.160000px;}
.ws4_c00377{word-spacing:0.000000px;}
.ws1_c00377{word-spacing:4.140000px;}
._27_c00377{margin-left:-32.520000px;}
._14_c00377{margin-left:-23.460000px;}
._2b_c00377{margin-left:-21.960000px;}
._18_c00377{margin-left:-16.920000px;}
._16_c00377{margin-left:-15.060000px;}
._24_c00377{margin-left:-13.740000px;}
._a_c00377{margin-left:-12.660000px;}
._e_c00377{margin-left:-11.460000px;}
._19_c00377{margin-left:-10.020000px;}
._25_c00377{margin-left:-8.520000px;}
._9_c00377{margin-left:-7.080000px;}
._d_c00377{margin-left:-6.060000px;}
._b_c00377{margin-left:-4.080000px;}
._1_c00377{margin-left:-2.460000px;}
._0_c00377{margin-left:-1.260000px;}
._3_c00377{width:1.020000px;}
._2_c00377{width:2.100000px;}
._7_c00377{width:3.840000px;}
._6_c00377{width:5.760000px;}
._5_c00377{width:7.860000px;}
._1c_c00377{width:8.880000px;}
._4_c00377{width:9.900000px;}
._10_c00377{width:11.100000px;}
._c_c00377{width:12.300000px;}
._2c_c00377{width:13.320000px;}
._1d_c00377{width:14.520000px;}
._23_c00377{width:15.540000px;}
._8_c00377{width:16.800000px;}
._2a_c00377{width:17.820000px;}
._29_c00377{width:19.080000px;}
._1a_c00377{width:20.520000px;}
._28_c00377{width:21.600000px;}
._1f_c00377{width:22.680000px;}
._1b_c00377{width:23.940000px;}
._11_c00377{width:25.440000px;}
._f_c00377{width:27.840000px;}
._2d_c00377{width:30.540000px;}
._2e_c00377{width:33.540000px;}
._12_c00377{width:35.760000px;}
._13_c00377{width:39.300000px;}
._15_c00377{width:49.740000px;}
._22_c00377{width:51.180000px;}
._1e_c00377{width:52.920000px;}
._20_c00377{width:79.800000px;}
._26_c00377{width:117.780000px;}
._17_c00377{width:161.340000px;}
._21_c00377{width:277.920000px;}
.fc2_c00377{color:transparent;}
.fc1_c00377{color:rgb(128,128,128);}
.fc0_c00377{color:rgb(0,0,0);}
.fs1_c00377{font-size:45.000000px;}
.fs2_c00377{font-size:48.000000px;}
.fs0_c00377{font-size:60.000000px;}
.y0_c00377{bottom:0.000000px;}
.y53_c00377{bottom:3.105000px;}
.y52_c00377{bottom:7.228355px;}
.y51_c00377{bottom:42.885000px;}
.y29_c00377{bottom:57.285000px;}
.y50_c00377{bottom:59.385000px;}
.y28_c00377{bottom:75.885000px;}
.y4f_c00377{bottom:77.835000px;}
.y27_c00377{bottom:94.785000px;}
.y4e_c00377{bottom:96.885000px;}
.y26_c00377{bottom:113.085000px;}
.y4d_c00377{bottom:114.435000px;}
.y25_c00377{bottom:130.635000px;}
.y4c_c00377{bottom:133.185000px;}
.y24_c00377{bottom:149.085000px;}
.y4b_c00377{bottom:150.885000px;}
.y23_c00377{bottom:167.085000px;}
.y4a_c00377{bottom:169.635000px;}
.y22_c00377{bottom:185.535000px;}
.y49_c00377{bottom:187.635000px;}
.y21_c00377{bottom:203.385000px;}
.y48_c00377{bottom:204.885000px;}
.y20_c00377{bottom:221.685000px;}
.y47_c00377{bottom:223.335000px;}
.y1f_c00377{bottom:239.235000px;}
.y46_c00377{bottom:241.185000px;}
.y1e_c00377{bottom:257.535000px;}
.y45_c00377{bottom:259.485000px;}
.y1d_c00377{bottom:275.685000px;}
.y44_c00377{bottom:278.085000px;}
.y1c_c00377{bottom:293.235000px;}
.y43_c00377{bottom:294.585000px;}
.y1b_c00377{bottom:310.785000px;}
.y42_c00377{bottom:311.835000px;}
.y1a_c00377{bottom:328.935000px;}
.y41_c00377{bottom:329.985000px;}
.y19_c00377{bottom:346.935000px;}
.y40_c00377{bottom:348.285000px;}
.y18_c00377{bottom:365.085000px;}
.y3f_c00377{bottom:366.735000px;}
.y17_c00377{bottom:383.385000px;}
.y3e_c00377{bottom:384.435000px;}
.y16_c00377{bottom:401.235000px;}
.y3d_c00377{bottom:402.585000px;}
.y15_c00377{bottom:419.385000px;}
.y3c_c00377{bottom:419.835000px;}
.y14_c00377{bottom:437.685000px;}
.y3b_c00377{bottom:438.735000px;}
.y13_c00377{bottom:455.835000px;}
.y3a_c00377{bottom:456.285000px;}
.y12_c00377{bottom:472.185000px;}
.y39_c00377{bottom:474.735000px;}
.y11_c00377{bottom:491.985000px;}
.y38_c00377{bottom:493.335000px;}
.y10_c00377{bottom:508.635000px;}
.y37_c00377{bottom:511.335000px;}
.yf_c00377{bottom:527.535000px;}
.y36_c00377{bottom:528.885000px;}
.ye_c00377{bottom:546.285000px;}
.y35_c00377{bottom:546.735000px;}
.yd_c00377{bottom:564.285000px;}
.y34_c00377{bottom:564.585000px;}
.yc_c00377{bottom:581.835000px;}
.y33_c00377{bottom:582.435000px;}
.yb_c00377{bottom:599.985000px;}
.y32_c00377{bottom:600.285000px;}
.ya_c00377{bottom:618.285000px;}
.y31_c00377{bottom:618.585000px;}
.y9_c00377{bottom:636.135000px;}
.y8_c00377{bottom:653.985000px;}
.y30_c00377{bottom:671.535000px;}
.y7_c00377{bottom:672.885000px;}
.y2f_c00377{bottom:690.435000px;}
.y6_c00377{bottom:690.735000px;}
.y2e_c00377{bottom:708.735000px;}
.y5_c00377{bottom:709.035000px;}
.y2d_c00377{bottom:726.585000px;}
.y4_c00377{bottom:726.885000px;}
.y2c_c00377{bottom:744.435000px;}
.y3_c00377{bottom:744.885000px;}
.y2b_c00377{bottom:763.035000px;}
.y2_c00377{bottom:763.335000px;}
.y2a_c00377{bottom:781.185000px;}
.y1_c00377{bottom:781.335000px;}
.h4_c00377{height:13.200074px;}
.h5_c00377{height:43.804688px;}
.h2_c00377{height:62.880000px;}
.h3_c00377{height:64.020000px;}
.h1_c00377{height:846.750000px;}
.h0_c00377{height:846.975000px;}
.w2_c00377{width:104.875500px;}
.w1_c00377{width:575.250000px;}
.w0_c00377{width:575.400000px;}
.x0_c00377{left:0.000000px;}
.x6_c00377{left:20.250000px;}
.xa_c00377{left:21.300000px;}
.x9_c00377{left:22.950000px;}
.x2_c00377{left:27.600000px;}
.x3_c00377{left:28.650000px;}
.xe_c00377{left:79.650000px;}
.xd_c00377{left:81.000000px;}
.xc_c00377{left:82.650000px;}
.xb_c00377{left:84.000000px;}
.x8_c00377{left:86.850000px;}
.x1_c00377{left:88.050000px;}
.x4_c00377{left:89.400000px;}
.x5_c00377{left:105.750000px;}
.x7_c00377{left:156.900000px;}
.x15_c00377{left:239.514267px;}
.xf_c00377{left:304.050000px;}
.x11_c00377{left:305.400000px;}
.x10_c00377{left:306.900000px;}
.x12_c00377{left:324.000000px;}
.x13_c00377{left:328.050000px;}
.x14_c00377{left:486.750000px;}
@media print{
.v0_c00377{vertical-align:0.000000pt;}
.ls8_c00377{letter-spacing:0.000000pt;}
.ls5_c00377{letter-spacing:2.666667pt;}
.ls7_c00377{letter-spacing:3.200000pt;}
.ls4_c00377{letter-spacing:5.866667pt;}
.ls0_c00377{letter-spacing:8.893333pt;}
.ls3_c00377{letter-spacing:13.280000pt;}
.ls6_c00377{letter-spacing:21.160000pt;}
.ls1_c00377{letter-spacing:93.280000pt;}
.ls2_c00377{letter-spacing:116.213333pt;}
.ws2_c00377{word-spacing:-18.080000pt;}
.ws3_c00377{word-spacing:-16.053333pt;}
.ws0_c00377{word-spacing:-12.586667pt;}
.ws4_c00377{word-spacing:0.000000pt;}
.ws1_c00377{word-spacing:3.680000pt;}
._27_c00377{margin-left:-28.906667pt;}
._14_c00377{margin-left:-20.853333pt;}
._2b_c00377{margin-left:-19.520000pt;}
._18_c00377{margin-left:-15.040000pt;}
._16_c00377{margin-left:-13.386667pt;}
._24_c00377{margin-left:-12.213333pt;}
._a_c00377{margin-left:-11.253333pt;}
._e_c00377{margin-left:-10.186667pt;}
._19_c00377{margin-left:-8.906667pt;}
._25_c00377{margin-left:-7.573333pt;}
._9_c00377{margin-left:-6.293333pt;}
._d_c00377{margin-left:-5.386667pt;}
._b_c00377{margin-left:-3.626667pt;}
._1_c00377{margin-left:-2.186667pt;}
._0_c00377{margin-left:-1.120000pt;}
._3_c00377{width:0.906667pt;}
._2_c00377{width:1.866667pt;}
._7_c00377{width:3.413333pt;}
._6_c00377{width:5.120000pt;}
._5_c00377{width:6.986667pt;}
._1c_c00377{width:7.893333pt;}
._4_c00377{width:8.800000pt;}
._10_c00377{width:9.866667pt;}
._c_c00377{width:10.933333pt;}
._2c_c00377{width:11.840000pt;}
._1d_c00377{width:12.906667pt;}
._23_c00377{width:13.813333pt;}
._8_c00377{width:14.933333pt;}
._2a_c00377{width:15.840000pt;}
._29_c00377{width:16.960000pt;}
._1a_c00377{width:18.240000pt;}
._28_c00377{width:19.200000pt;}
._1f_c00377{width:20.160000pt;}
._1b_c00377{width:21.280000pt;}
._11_c00377{width:22.613333pt;}
._f_c00377{width:24.746667pt;}
._2d_c00377{width:27.146667pt;}
._2e_c00377{width:29.813333pt;}
._12_c00377{width:31.786667pt;}
._13_c00377{width:34.933333pt;}
._15_c00377{width:44.213333pt;}
._22_c00377{width:45.493333pt;}
._1e_c00377{width:47.040000pt;}
._20_c00377{width:70.933333pt;}
._26_c00377{width:104.693333pt;}
._17_c00377{width:143.413333pt;}
._21_c00377{width:247.040000pt;}
.fs1_c00377{font-size:40.000000pt;}
.fs2_c00377{font-size:42.666667pt;}
.fs0_c00377{font-size:53.333333pt;}
.y0_c00377{bottom:0.000000pt;}
.y53_c00377{bottom:2.760000pt;}
.y52_c00377{bottom:6.425204pt;}
.y51_c00377{bottom:38.120000pt;}
.y29_c00377{bottom:50.920000pt;}
.y50_c00377{bottom:52.786667pt;}
.y28_c00377{bottom:67.453333pt;}
.y4f_c00377{bottom:69.186667pt;}
.y27_c00377{bottom:84.253333pt;}
.y4e_c00377{bottom:86.120000pt;}
.y26_c00377{bottom:100.520000pt;}
.y4d_c00377{bottom:101.720000pt;}
.y25_c00377{bottom:116.120000pt;}
.y4c_c00377{bottom:118.386667pt;}
.y24_c00377{bottom:132.520000pt;}
.y4b_c00377{bottom:134.120000pt;}
.y23_c00377{bottom:148.520000pt;}
.y4a_c00377{bottom:150.786667pt;}
.y22_c00377{bottom:164.920000pt;}
.y49_c00377{bottom:166.786667pt;}
.y21_c00377{bottom:180.786667pt;}
.y48_c00377{bottom:182.120000pt;}
.y20_c00377{bottom:197.053333pt;}
.y47_c00377{bottom:198.520000pt;}
.y1f_c00377{bottom:212.653333pt;}
.y46_c00377{bottom:214.386667pt;}
.y1e_c00377{bottom:228.920000pt;}
.y45_c00377{bottom:230.653333pt;}
.y1d_c00377{bottom:245.053333pt;}
.y44_c00377{bottom:247.186667pt;}
.y1c_c00377{bottom:260.653333pt;}
.y43_c00377{bottom:261.853333pt;}
.y1b_c00377{bottom:276.253333pt;}
.y42_c00377{bottom:277.186667pt;}
.y1a_c00377{bottom:292.386667pt;}
.y41_c00377{bottom:293.320000pt;}
.y19_c00377{bottom:308.386667pt;}
.y40_c00377{bottom:309.586667pt;}
.y18_c00377{bottom:324.520000pt;}
.y3f_c00377{bottom:325.986667pt;}
.y17_c00377{bottom:340.786667pt;}
.y3e_c00377{bottom:341.720000pt;}
.y16_c00377{bottom:356.653333pt;}
.y3d_c00377{bottom:357.853333pt;}
.y15_c00377{bottom:372.786667pt;}
.y3c_c00377{bottom:373.186667pt;}
.y14_c00377{bottom:389.053333pt;}
.y3b_c00377{bottom:389.986667pt;}
.y13_c00377{bottom:405.186667pt;}
.y3a_c00377{bottom:405.586667pt;}
.y12_c00377{bottom:419.720000pt;}
.y39_c00377{bottom:421.986667pt;}
.y11_c00377{bottom:437.320000pt;}
.y38_c00377{bottom:438.520000pt;}
.y10_c00377{bottom:452.120000pt;}
.y37_c00377{bottom:454.520000pt;}
.yf_c00377{bottom:468.920000pt;}
.y36_c00377{bottom:470.120000pt;}
.ye_c00377{bottom:485.586667pt;}
.y35_c00377{bottom:485.986667pt;}
.yd_c00377{bottom:501.586667pt;}
.y34_c00377{bottom:501.853333pt;}
.yc_c00377{bottom:517.186667pt;}
.y33_c00377{bottom:517.720000pt;}
.yb_c00377{bottom:533.320000pt;}
.y32_c00377{bottom:533.586667pt;}
.ya_c00377{bottom:549.586667pt;}
.y31_c00377{bottom:549.853333pt;}
.y9_c00377{bottom:565.453333pt;}
.y8_c00377{bottom:581.320000pt;}
.y30_c00377{bottom:596.920000pt;}
.y7_c00377{bottom:598.120000pt;}
.y2f_c00377{bottom:613.720000pt;}
.y6_c00377{bottom:613.986667pt;}
.y2e_c00377{bottom:629.986667pt;}
.y5_c00377{bottom:630.253333pt;}
.y2d_c00377{bottom:645.853333pt;}
.y4_c00377{bottom:646.120000pt;}
.y2c_c00377{bottom:661.720000pt;}
.y3_c00377{bottom:662.120000pt;}
.y2b_c00377{bottom:678.253333pt;}
.y2_c00377{bottom:678.520000pt;}
.y2a_c00377{bottom:694.386667pt;}
.y1_c00377{bottom:694.520000pt;}
.h4_c00377{height:11.733399pt;}
.h5_c00377{height:38.937500pt;}
.h2_c00377{height:55.893333pt;}
.h3_c00377{height:56.906667pt;}
.h1_c00377{height:752.666667pt;}
.h0_c00377{height:752.866667pt;}
.w2_c00377{width:93.222667pt;}
.w1_c00377{width:511.333333pt;}
.w0_c00377{width:511.466667pt;}
.x0_c00377{left:0.000000pt;}
.x6_c00377{left:18.000000pt;}
.xa_c00377{left:18.933333pt;}
.x9_c00377{left:20.400000pt;}
.x2_c00377{left:24.533333pt;}
.x3_c00377{left:25.466667pt;}
.xe_c00377{left:70.800000pt;}
.xd_c00377{left:72.000000pt;}
.xc_c00377{left:73.466667pt;}
.xb_c00377{left:74.666667pt;}
.x8_c00377{left:77.200000pt;}
.x1_c00377{left:78.266667pt;}
.x4_c00377{left:79.466667pt;}
.x5_c00377{left:94.000000pt;}
.x7_c00377{left:139.466667pt;}
.x15_c00377{left:212.901571pt;}
.xf_c00377{left:270.266667pt;}
.x11_c00377{left:271.466667pt;}
.x10_c00377{left:272.800000pt;}
.x12_c00377{left:288.000000pt;}
.x13_c00377{left:291.600000pt;}
.x14_c00377{left:432.666667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_14d1c0b1995d2409c072e21e.woff2')format("woff");}.ff1_c00378{font-family:ff1_c00378;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00378;src:url('chunks/assets/font_62c8224772df7eee5b115c70.woff2')format("woff");}.ff2_c00378{font-family:ff2_c00378;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00378;src:url('chunks/assets/font_9e793e1fb9b59dafcd7c0f05.woff2')format("woff");}.ff3_c00378{font-family:ff3_c00378;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00378;src:url('chunks/assets/font_56a35a766bd3083e328821c7.woff2')format("woff");}.ff4_c00378{font-family:ff4_c00378;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00378;src:url('chunks/assets/font_4d8af0db665efbd6638b986d.woff2')format("woff");}.ff5_c00378{font-family:ff5_c00378;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00378;src:url('chunks/assets/font_6ab2a0fdd8054821e4111427.woff2')format("woff");}.ff6_c00378{font-family:ff6_c00378;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00378;src:url('chunks/assets/font_475a8df59569c9df34ba9a30.woff2')format("woff");}.ff7_c00378{font-family:ff7_c00378;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00378;src:url('chunks/assets/font_ece1b80125da961c869fcbbf.woff2')format("woff");}.ff8_c00378{font-family:ff8_c00378;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00378;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff9_c00378{font-family:ff9_c00378;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00378{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m0_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);}
.m2_c00378{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m4_c00378{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m5_c00378{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m3_c00378{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.v0_c00378{vertical-align:0.000000px;}
.ls8_c00378{letter-spacing:0.000000px;}
.ls6_c00378{letter-spacing:1.380000px;}
.ls5_c00378{letter-spacing:2.805000px;}
.ls3_c00378{letter-spacing:3.000000px;}
.ls9_c00378{letter-spacing:6.000000px;}
.ls4_c00378{letter-spacing:6.405000px;}
.ls1_c00378{letter-spacing:9.864000px;}
.ls2_c00378{letter-spacing:13.416000px;}
.ls0_c00378{letter-spacing:19.416000px;}
.ls7_c00378{letter-spacing:28.140000px;}
.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;}
}
.ws7_c00378{word-spacing:-50.022000px;}
.ws8_c00378{word-spacing:-35.295000px;}
.ws6_c00378{word-spacing:-20.340000px;}
.ws9_c00378{word-spacing:-18.813000px;}
.ws2_c00378{word-spacing:-15.576000px;}
.ws5_c00378{word-spacing:-14.460000px;}
.ws0_c00378{word-spacing:-14.160000px;}
.ws4_c00378{word-spacing:-5.784000px;}
.ws1_c00378{word-spacing:-0.288000px;}
.wsa_c00378{word-spacing:0.000000px;}
.ws3_c00378{word-spacing:1.488000px;}
._25_c00378{margin-left:-20.955000px;}
._26_c00378{margin-left:-14.880000px;}
._24_c00378{margin-left:-12.834000px;}
._15_c00378{margin-left:-11.364000px;}
._14_c00378{margin-left:-10.260000px;}
._13_c00378{margin-left:-9.120000px;}
._c_c00378{margin-left:-7.440000px;}
._9_c00378{margin-left:-5.820000px;}
._7_c00378{margin-left:-4.680000px;}
._6_c00378{margin-left:-3.240000px;}
._5_c00378{margin-left:-2.040000px;}
._18_c00378{margin-left:-1.020000px;}
._f_c00378{width:1.800000px;}
._0_c00378{width:3.480000px;}
._2_c00378{width:4.500000px;}
._3_c00378{width:5.580000px;}
._1_c00378{width:6.900000px;}
._e_c00378{width:8.160000px;}
._8_c00378{width:9.960000px;}
._b_c00378{width:11.760000px;}
._19_c00378{width:12.936000px;}
._16_c00378{width:13.980000px;}
._17_c00378{width:15.120000px;}
._11_c00378{width:16.860000px;}
._1b_c00378{width:18.192000px;}
._1a_c00378{width:20.160000px;}
._d_c00378{width:21.720000px;}
._23_c00378{width:23.460000px;}
._1c_c00378{width:24.588000px;}
._22_c00378{width:25.812000px;}
._27_c00378{width:29.565000px;}
._20_c00378{width:31.080000px;}
._1f_c00378{width:33.720000px;}
._1e_c00378{width:37.860000px;}
._21_c00378{width:39.420000px;}
._4_c00378{width:67.740000px;}
._1d_c00378{width:78.120000px;}
._a_c00378{width:92.940000px;}
._12_c00378{width:99.420000px;}
._10_c00378{width:135.180000px;}
.fc2_c00378{color:transparent;}
.fc1_c00378{color:rgb(128,128,128);}
.fc0_c00378{color:rgb(0,0,0);}
.fs3_c00378{font-size:24.000000px;}
.fs4_c00378{font-size:45.000000px;}
.fs6_c00378{font-size:48.000000px;}
.fs1_c00378{font-size:54.000000px;}
.fs0_c00378{font-size:60.000000px;}
.fs5_c00378{font-size:63.000000px;}
.fs2_c00378{font-size:66.000000px;}
.y0_c00378{bottom:0.000000px;}
.y53_c00378{bottom:3.105000px;}
.y52_c00378{bottom:7.228371px;}
.y50_c00378{bottom:31.065000px;}
.y4f_c00378{bottom:49.665000px;}
.y2f_c00378{bottom:51.315000px;}
.y4e_c00378{bottom:67.815000px;}
.y2e_c00378{bottom:69.915000px;}
.y4d_c00378{bottom:86.415000px;}
.y2d_c00378{bottom:88.065000px;}
.y4c_c00378{bottom:104.715000px;}
.y2c_c00378{bottom:105.615000px;}
.y4b_c00378{bottom:122.565000px;}
.y2b_c00378{bottom:123.915000px;}
.y4a_c00378{bottom:139.815000px;}
.y2a_c00378{bottom:141.765000px;}
.y49_c00378{bottom:158.415000px;}
.y29_c00378{bottom:160.665000px;}
.y48_c00378{bottom:176.565000px;}
.y28_c00378{bottom:178.515000px;}
.y47_c00378{bottom:193.515000px;}
.y27_c00378{bottom:196.515000px;}
.y46_c00378{bottom:214.065000px;}
.y26_c00378{bottom:214.665000px;}
.y45_c00378{bottom:230.865000px;}
.y25_c00378{bottom:232.965000px;}
.y44_c00378{bottom:249.465000px;}
.y24_c00378{bottom:251.115000px;}
.y43_c00378{bottom:268.365000px;}
.y23_c00378{bottom:269.415000px;}
.y42_c00378{bottom:286.515000px;}
.y22_c00378{bottom:287.265000px;}
.y41_c00378{bottom:302.715000px;}
.y21_c00378{bottom:305.415000px;}
.y40_c00378{bottom:321.615000px;}
.y20_c00378{bottom:323.115000px;}
.y3f_c00378{bottom:338.265000px;}
.y1f_c00378{bottom:341.265000px;}
.y51_c00378{bottom:355.365000px;}
.y3e_c00378{bottom:357.165000px;}
.y1e_c00378{bottom:359.415000px;}
.y3d_c00378{bottom:376.065000px;}
.y1d_c00378{bottom:377.715000px;}
.y3c_c00378{bottom:394.215000px;}
.y1c_c00378{bottom:395.265000px;}
.y3b_c00378{bottom:412.215000px;}
.y1b_c00378{bottom:413.565000px;}
.y3a_c00378{bottom:430.065000px;}
.y1a_c00378{bottom:431.715000px;}
.y39_c00378{bottom:448.965000px;}
.y19_c00378{bottom:450.315000px;}
.y38_c00378{bottom:466.215000px;}
.y18_c00378{bottom:467.415000px;}
.y37_c00378{bottom:485.415000px;}
.y17_c00378{bottom:486.015000px;}
.y36_c00378{bottom:503.565000px;}
.y16_c00378{bottom:504.015000px;}
.y15_c00378{bottom:521.415000px;}
.y35_c00378{bottom:538.965000px;}
.y14_c00378{bottom:539.415000px;}
.y34_c00378{bottom:557.865000px;}
.y13_c00378{bottom:558.015000px;}
.y33_c00378{bottom:575.565000px;}
.y12_c00378{bottom:576.465000px;}
.y32_c00378{bottom:594.315000px;}
.y11_c00378{bottom:594.465000px;}
.y10_c00378{bottom:611.865000px;}
.y31_c00378{bottom:612.015000px;}
.ye_c00378{bottom:612.615000px;}
.y30_c00378{bottom:629.565000px;}
.yd_c00378{bottom:630.765000px;}
.yc_c00378{bottom:648.315000px;}
.yb_c00378{bottom:666.315000px;}
.y6_c00378{bottom:684.765000px;}
.ya_c00378{bottom:684.915000px;}
.y5_c00378{bottom:703.365000px;}
.y4_c00378{bottom:720.915000px;}
.y9_c00378{bottom:721.665000px;}
.y3_c00378{bottom:739.515000px;}
.y8_c00378{bottom:740.115000px;}
.y7_c00378{bottom:757.665000px;}
.y2_c00378{bottom:758.115000px;}
.yf_c00378{bottom:768.465000px;}
.y1_c00378{bottom:775.665000px;}
.h9_c00378{height:13.200074px;}
.h4_c00378{height:28.089844px;}
.h5_c00378{height:30.386719px;}
.ha_c00378{height:43.804688px;}
.h2_c00378{height:62.880000px;}
.h7_c00378{height:64.020000px;}
.h8_c00378{height:66.024000px;}
.h3_c00378{height:69.168000px;}
.h6_c00378{height:75.966797px;}
.h1_c00378{height:844.500000px;}
.h0_c00378{height:844.575000px;}
.w1_c00378{width:104.875500px;}
.w0_c00378{width:587.250000px;}
.x0_c00378{left:0.000000px;}
.x1_c00378{left:18.150000px;}
.x5_c00378{left:78.600000px;}
.xb_c00378{left:79.681500px;}
.x4_c00378{left:81.000000px;}
.xc_c00378{left:82.408500px;}
.xf_c00378{left:84.000000px;}
.x10_c00378{left:85.800000px;}
.x12_c00378{left:86.850000px;}
.x11_c00378{left:88.200000px;}
.x13_c00378{left:89.400000px;}
.x14_c00378{left:90.900000px;}
.x15_c00378{left:92.250000px;}
.x3_c00378{left:106.050000px;}
.xe_c00378{left:197.850000px;}
.x20_c00378{left:245.439240px;}
.x2_c00378{left:300.000000px;}
.x16_c00378{left:301.350000px;}
.x17_c00378{left:303.150000px;}
.x18_c00378{left:304.650000px;}
.x19_c00378{left:306.450000px;}
.x1a_c00378{left:307.800000px;}
.x1b_c00378{left:309.450000px;}
.x1c_c00378{left:310.500000px;}
.x1d_c00378{left:311.550000px;}
.x6_c00378{left:327.750000px;}
.x7_c00378{left:331.350000px;}
.x8_c00378{left:381.450000px;}
.x9_c00378{left:392.250000px;}
.xa_c00378{left:440.100000px;}
.x1e_c00378{left:474.750000px;}
.x1f_c00378{left:511.650000px;}
.xd_c00378{left:512.668500px;}
@media print{
.v0_c00378{vertical-align:0.000000pt;}
.ls8_c00378{letter-spacing:0.000000pt;}
.ls6_c00378{letter-spacing:1.226667pt;}
.ls5_c00378{letter-spacing:2.493333pt;}
.ls3_c00378{letter-spacing:2.666667pt;}
.ls9_c00378{letter-spacing:5.333333pt;}
.ls4_c00378{letter-spacing:5.693333pt;}
.ls1_c00378{letter-spacing:8.768000pt;}
.ls2_c00378{letter-spacing:11.925333pt;}
.ls0_c00378{letter-spacing:17.258667pt;}
.ls7_c00378{letter-spacing:25.013333pt;}
.ws7_c00378{word-spacing:-44.464000pt;}
.ws8_c00378{word-spacing:-31.373333pt;}
.ws6_c00378{word-spacing:-18.080000pt;}
.ws9_c00378{word-spacing:-16.722667pt;}
.ws2_c00378{word-spacing:-13.845333pt;}
.ws5_c00378{word-spacing:-12.853333pt;}
.ws0_c00378{word-spacing:-12.586667pt;}
.ws4_c00378{word-spacing:-5.141333pt;}
.ws1_c00378{word-spacing:-0.256000pt;}
.wsa_c00378{word-spacing:0.000000pt;}
.ws3_c00378{word-spacing:1.322667pt;}
._25_c00378{margin-left:-18.626667pt;}
._26_c00378{margin-left:-13.226667pt;}
._24_c00378{margin-left:-11.408000pt;}
._15_c00378{margin-left:-10.101333pt;}
._14_c00378{margin-left:-9.120000pt;}
._13_c00378{margin-left:-8.106667pt;}
._c_c00378{margin-left:-6.613333pt;}
._9_c00378{margin-left:-5.173333pt;}
._7_c00378{margin-left:-4.160000pt;}
._6_c00378{margin-left:-2.880000pt;}
._5_c00378{margin-left:-1.813333pt;}
._18_c00378{margin-left:-0.906667pt;}
._f_c00378{width:1.600000pt;}
._0_c00378{width:3.093333pt;}
._2_c00378{width:4.000000pt;}
._3_c00378{width:4.960000pt;}
._1_c00378{width:6.133333pt;}
._e_c00378{width:7.253333pt;}
._8_c00378{width:8.853333pt;}
._b_c00378{width:10.453333pt;}
._19_c00378{width:11.498667pt;}
._16_c00378{width:12.426667pt;}
._17_c00378{width:13.440000pt;}
._11_c00378{width:14.986667pt;}
._1b_c00378{width:16.170667pt;}
._1a_c00378{width:17.920000pt;}
._d_c00378{width:19.306667pt;}
._23_c00378{width:20.853333pt;}
._1c_c00378{width:21.856000pt;}
._22_c00378{width:22.944000pt;}
._27_c00378{width:26.280000pt;}
._20_c00378{width:27.626667pt;}
._1f_c00378{width:29.973333pt;}
._1e_c00378{width:33.653333pt;}
._21_c00378{width:35.040000pt;}
._4_c00378{width:60.213333pt;}
._1d_c00378{width:69.440000pt;}
._a_c00378{width:82.613333pt;}
._12_c00378{width:88.373333pt;}
._10_c00378{width:120.160000pt;}
.fs3_c00378{font-size:21.333333pt;}
.fs4_c00378{font-size:40.000000pt;}
.fs6_c00378{font-size:42.666667pt;}
.fs1_c00378{font-size:48.000000pt;}
.fs0_c00378{font-size:53.333333pt;}
.fs5_c00378{font-size:56.000000pt;}
.fs2_c00378{font-size:58.666667pt;}
.y0_c00378{bottom:0.000000pt;}
.y53_c00378{bottom:2.760000pt;}
.y52_c00378{bottom:6.425219pt;}
.y50_c00378{bottom:27.613333pt;}
.y4f_c00378{bottom:44.146667pt;}
.y2f_c00378{bottom:45.613333pt;}
.y4e_c00378{bottom:60.280000pt;}
.y2e_c00378{bottom:62.146667pt;}
.y4d_c00378{bottom:76.813333pt;}
.y2d_c00378{bottom:78.280000pt;}
.y4c_c00378{bottom:93.080000pt;}
.y2c_c00378{bottom:93.880000pt;}
.y4b_c00378{bottom:108.946667pt;}
.y2b_c00378{bottom:110.146667pt;}
.y4a_c00378{bottom:124.280000pt;}
.y2a_c00378{bottom:126.013333pt;}
.y49_c00378{bottom:140.813333pt;}
.y29_c00378{bottom:142.813333pt;}
.y48_c00378{bottom:156.946667pt;}
.y28_c00378{bottom:158.680000pt;}
.y47_c00378{bottom:172.013333pt;}
.y27_c00378{bottom:174.680000pt;}
.y46_c00378{bottom:190.280000pt;}
.y26_c00378{bottom:190.813333pt;}
.y45_c00378{bottom:205.213333pt;}
.y25_c00378{bottom:207.080000pt;}
.y44_c00378{bottom:221.746667pt;}
.y24_c00378{bottom:223.213333pt;}
.y43_c00378{bottom:238.546667pt;}
.y23_c00378{bottom:239.480000pt;}
.y42_c00378{bottom:254.680000pt;}
.y22_c00378{bottom:255.346667pt;}
.y41_c00378{bottom:269.080000pt;}
.y21_c00378{bottom:271.480000pt;}
.y40_c00378{bottom:285.880000pt;}
.y20_c00378{bottom:287.213333pt;}
.y3f_c00378{bottom:300.680000pt;}
.y1f_c00378{bottom:303.346667pt;}
.y51_c00378{bottom:315.880000pt;}
.y3e_c00378{bottom:317.480000pt;}
.y1e_c00378{bottom:319.480000pt;}
.y3d_c00378{bottom:334.280000pt;}
.y1d_c00378{bottom:335.746667pt;}
.y3c_c00378{bottom:350.413333pt;}
.y1c_c00378{bottom:351.346667pt;}
.y3b_c00378{bottom:366.413333pt;}
.y1b_c00378{bottom:367.613333pt;}
.y3a_c00378{bottom:382.280000pt;}
.y1a_c00378{bottom:383.746667pt;}
.y39_c00378{bottom:399.080000pt;}
.y19_c00378{bottom:400.280000pt;}
.y38_c00378{bottom:414.413333pt;}
.y18_c00378{bottom:415.480000pt;}
.y37_c00378{bottom:431.480000pt;}
.y17_c00378{bottom:432.013333pt;}
.y36_c00378{bottom:447.613333pt;}
.y16_c00378{bottom:448.013333pt;}
.y15_c00378{bottom:463.480000pt;}
.y35_c00378{bottom:479.080000pt;}
.y14_c00378{bottom:479.480000pt;}
.y34_c00378{bottom:495.880000pt;}
.y13_c00378{bottom:496.013333pt;}
.y33_c00378{bottom:511.613333pt;}
.y12_c00378{bottom:512.413333pt;}
.y32_c00378{bottom:528.280000pt;}
.y11_c00378{bottom:528.413333pt;}
.y10_c00378{bottom:543.880000pt;}
.y31_c00378{bottom:544.013333pt;}
.ye_c00378{bottom:544.546667pt;}
.y30_c00378{bottom:559.613333pt;}
.yd_c00378{bottom:560.680000pt;}
.yc_c00378{bottom:576.280000pt;}
.yb_c00378{bottom:592.280000pt;}
.y6_c00378{bottom:608.680000pt;}
.ya_c00378{bottom:608.813333pt;}
.y5_c00378{bottom:625.213333pt;}
.y4_c00378{bottom:640.813333pt;}
.y9_c00378{bottom:641.480000pt;}
.y3_c00378{bottom:657.346667pt;}
.y8_c00378{bottom:657.880000pt;}
.y7_c00378{bottom:673.480000pt;}
.y2_c00378{bottom:673.880000pt;}
.yf_c00378{bottom:683.080000pt;}
.y1_c00378{bottom:689.480000pt;}
.h9_c00378{height:11.733399pt;}
.h4_c00378{height:24.968750pt;}
.h5_c00378{height:27.010417pt;}
.ha_c00378{height:38.937500pt;}
.h2_c00378{height:55.893333pt;}
.h7_c00378{height:56.906667pt;}
.h8_c00378{height:58.688000pt;}
.h3_c00378{height:61.482667pt;}
.h6_c00378{height:67.526042pt;}
.h1_c00378{height:750.666667pt;}
.h0_c00378{height:750.733333pt;}
.w1_c00378{width:93.222667pt;}
.w0_c00378{width:522.000000pt;}
.x0_c00378{left:0.000000pt;}
.x1_c00378{left:16.133333pt;}
.x5_c00378{left:69.866667pt;}
.xb_c00378{left:70.828000pt;}
.x4_c00378{left:72.000000pt;}
.xc_c00378{left:73.252000pt;}
.xf_c00378{left:74.666667pt;}
.x10_c00378{left:76.266667pt;}
.x12_c00378{left:77.200000pt;}
.x11_c00378{left:78.400000pt;}
.x13_c00378{left:79.466667pt;}
.x14_c00378{left:80.800000pt;}
.x15_c00378{left:82.000000pt;}
.x3_c00378{left:94.266667pt;}
.xe_c00378{left:175.866667pt;}
.x20_c00378{left:218.168213pt;}
.x2_c00378{left:266.666667pt;}
.x16_c00378{left:267.866667pt;}
.x17_c00378{left:269.466667pt;}
.x18_c00378{left:270.800000pt;}
.x19_c00378{left:272.400000pt;}
.x1a_c00378{left:273.600000pt;}
.x1b_c00378{left:275.066667pt;}
.x1c_c00378{left:276.000000pt;}
.x1d_c00378{left:276.933333pt;}
.x6_c00378{left:291.333333pt;}
.x7_c00378{left:294.533333pt;}
.x8_c00378{left:339.066667pt;}
.x9_c00378{left:348.666667pt;}
.xa_c00378{left:391.200000pt;}
.x1e_c00378{left:422.000000pt;}
.x1f_c00378{left:454.800000pt;}
.xd_c00378{left:455.705333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_027d700bf224309508bc68d3.woff2')format("woff");}.ff1_c00379{font-family:ff1_c00379;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00379;src:url('chunks/assets/font_0be5e58bd69ea22fed82b06c.woff2')format("woff");}.ff2_c00379{font-family:ff2_c00379;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00379;src:url('chunks/assets/font_ae8e24b87a33754a98043de0.woff2')format("woff");}.ff3_c00379{font-family:ff3_c00379;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00379;src:url('chunks/assets/font_b4414b3393c236d9cf47a2c7.woff2')format("woff");}.ff4_c00379{font-family:ff4_c00379;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00379;src:url('chunks/assets/font_c074edc51c1ed467703cd40f.woff2')format("woff");}.ff5_c00379{font-family:ff5_c00379;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00379;src:url('chunks/assets/font_3239b28c06925381bf969a39.woff2')format("woff");}.ff6_c00379{font-family:ff6_c00379;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00379;src:url('chunks/assets/font_b0d47ea98ae7896a8ae21da0.woff2')format("woff");}.ff7_c00379{font-family:ff7_c00379;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00379;src:url('chunks/assets/font_87a179f37e3416d0ccf59184.woff2')format("woff");}.ff8_c00379{font-family:ff8_c00379;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00379;src:url('chunks/assets/font_bc1875cf3355bce530c08cc7.woff2')format("woff");}.ff9_c00379{font-family:ff9_c00379;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00379;src:url('chunks/assets/font_7a4efc7b7bb8f6f94becb8a8.woff2')format("woff");}.ffa_c00379{font-family:ffa_c00379;line-height:1.575000;font-style:normal;font-weight: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_c00379;src:url('chunks/assets/font_a659d6bcae54062c5d77d436.woff2')format("woff");}.ffb_c00379{font-family:ffb_c00379;line-height:1.575000;font-style:normal;font-weight: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_c00379;src:url('chunks/assets/font_2daa966155294ad30e2d9644.woff2')format("woff");}.ffc_c00379{font-family:ffc_c00379;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd_c00379;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ffd_c00379{font-family:ffd_c00379;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00379{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00379{vertical-align:0.000000px;}
.v1_c00379{vertical-align:1.200000px;}
.v2_c00379{vertical-align:108.000000px;}
.lsb_c00379{letter-spacing:0.000000px;}
.ls4_c00379{letter-spacing:0.150000px;}
.ls9_c00379{letter-spacing:0.300000px;}
.ls5_c00379{letter-spacing:3.000000px;}
.ls1_c00379{letter-spacing:3.405000px;}
.ls8_c00379{letter-spacing:3.900000px;}
.lsa_c00379{letter-spacing:4.008000px;}
.ls7_c00379{letter-spacing:6.000000px;}
.ls0_c00379{letter-spacing:6.900000px;}
.ls3_c00379{letter-spacing:7.236000px;}
.ls2_c00379{letter-spacing:18.531000px;}
.ls6_c00379{letter-spacing:80.940000px;}
.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;}
}
.ws8_c00379{word-spacing:-35.295000px;}
.ws2_c00379{word-spacing:-31.374000px;}
.ws6_c00379{word-spacing:-20.340000px;}
.ws7_c00379{word-spacing:-20.307000px;}
.ws1_c00379{word-spacing:-18.060000px;}
.ws0_c00379{word-spacing:-14.160000px;}
.ws4_c00379{word-spacing:-13.800000px;}
.ws5_c00379{word-spacing:-13.452000px;}
.ws9_c00379{word-spacing:0.000000px;}
.ws3_c00379{word-spacing:15.540000px;}
._2a_c00379{margin-left:-22.053000px;}
._28_c00379{margin-left:-19.587000px;}
._2f_c00379{margin-left:-17.376000px;}
._26_c00379{margin-left:-14.751000px;}
._13_c00379{margin-left:-13.176000px;}
._2d_c00379{margin-left:-11.820000px;}
._1b_c00379{margin-left:-10.419000px;}
._23_c00379{margin-left:-8.412000px;}
._17_c00379{margin-left:-6.972000px;}
._a_c00379{margin-left:-5.418000px;}
._10_c00379{margin-left:-4.020000px;}
._9_c00379{margin-left:-2.835000px;}
._c_c00379{margin-left:-1.545000px;}
._0_c00379{width:1.680000px;}
._1_c00379{width:2.880000px;}
._7_c00379{width:4.644000px;}
._3_c00379{width:5.985000px;}
._4_c00379{width:7.938000px;}
._5_c00379{width:8.964000px;}
._8_c00379{width:10.773000px;}
._d_c00379{width:12.855000px;}
._11_c00379{width:14.460000px;}
._b_c00379{width:15.669000px;}
._22_c00379{width:16.980000px;}
._19_c00379{width:20.160000px;}
._f_c00379{width:21.729000px;}
._24_c00379{width:23.058000px;}
._12_c00379{width:24.660000px;}
._1a_c00379{width:27.279000px;}
._6_c00379{width:30.177000px;}
._1c_c00379{width:34.134000px;}
._25_c00379{width:39.228000px;}
._15_c00379{width:45.432000px;}
._29_c00379{width:47.619000px;}
._1d_c00379{width:70.854000px;}
._2e_c00379{width:73.320000px;}
._2c_c00379{width:74.916000px;}
._e_c00379{width:76.545000px;}
._20_c00379{width:81.084000px;}
._1f_c00379{width:83.283000px;}
._21_c00379{width:85.683000px;}
._18_c00379{width:90.411000px;}
._2b_c00379{width:94.845000px;}
._1e_c00379{width:101.415000px;}
._27_c00379{width:127.779000px;}
._2_c00379{width:205.008000px;}
._14_c00379{width:230.400000px;}
._16_c00379{width:314.307000px;}
._30_c00379{width:982.140000px;}
.fc2_c00379{color:transparent;}
.fc1_c00379{color:rgb(128,128,128);}
.fc0_c00379{color:rgb(0,0,0);}
.fs4_c00379{font-size:45.000000px;}
.fs9_c00379{font-size:48.000000px;}
.fsa_c00379{font-size:51.000000px;}
.fs8_c00379{font-size:54.000000px;}
.fs7_c00379{font-size:55.200000px;}
.fs2_c00379{font-size:57.000000px;}
.fs0_c00379{font-size:60.000000px;}
.fs1_c00379{font-size:63.000000px;}
.fs6_c00379{font-size:69.000000px;}
.fs3_c00379{font-size:72.000000px;}
.fs5_c00379{font-size:207.000000px;}
.y0_c00379{bottom:0.000000px;}
.y4a_c00379{bottom:3.105000px;}
.y49_c00379{bottom:7.228357px;}
.y48_c00379{bottom:32.730000px;}
.y47_c00379{bottom:47.580000px;}
.y3d_c00379{bottom:64.830000px;}
.y44_c00379{bottom:67.830000px;}
.y3c_c00379{bottom:82.980000px;}
.y43_c00379{bottom:86.430000px;}
.y3b_c00379{bottom:100.980000px;}
.y42_c00379{bottom:105.630000px;}
.y3a_c00379{bottom:119.130000px;}
.y41_c00379{bottom:122.280000px;}
.y39_c00379{bottom:136.680000px;}
.y40_c00379{bottom:140.430000px;}
.y38_c00379{bottom:155.580000px;}
.y3f_c00379{bottom:158.280000px;}
.y46_c00379{bottom:160.380000px;}
.y37_c00379{bottom:173.580000px;}
.y3e_c00379{bottom:176.280000px;}
.y45_c00379{bottom:180.630000px;}
.y36_c00379{bottom:191.130000px;}
.y34_c00379{bottom:194.730000px;}
.y35_c00379{bottom:209.280000px;}
.y33_c00379{bottom:211.680000px;}
.y32_c00379{bottom:229.230000px;}
.y31_c00379{bottom:246.780000px;}
.y2b_c00379{bottom:262.980000px;}
.y30_c00379{bottom:266.730000px;}
.y2a_c00379{bottom:281.130000px;}
.y2_c00379{bottom:282.930000px;}
.y29_c00379{bottom:298.380000px;}
.y2f_c00379{bottom:300.330000px;}
.y1_c00379{bottom:302.730000px;}
.y28_c00379{bottom:316.530000px;}
.y2e_c00379{bottom:318.930000px;}
.y27_c00379{bottom:334.530000px;}
.y2d_c00379{bottom:336.930000px;}
.y26_c00379{bottom:352.680000px;}
.y2c_c00379{bottom:354.780000px;}
.y25_c00379{bottom:372.630000px;}
.y24_c00379{bottom:389.880000px;}
.y23_c00379{bottom:407.730000px;}
.y22_c00379{bottom:426.330000px;}
.y21_c00379{bottom:444.180000px;}
.y1a_c00379{bottom:460.680000px;}
.y20_c00379{bottom:463.380000px;}
.y18_c00379{bottom:469.830000px;}
.y19_c00379{bottom:478.980000px;}
.y1f_c00379{bottom:481.380000px;}
.y1e_c00379{bottom:499.530000px;}
.y1d_c00379{bottom:517.830000px;}
.y1c_c00379{bottom:535.980000px;}
.y17_c00379{bottom:551.430000px;}
.y1b_c00379{bottom:553.530000px;}
.y16_c00379{bottom:571.080000px;}
.y15_c00379{bottom:589.980000px;}
.y14_c00379{bottom:608.280000px;}
.y13_c00379{bottom:626.430000px;}
.yb_c00379{bottom:641.280000px;}
.y12_c00379{bottom:643.680000px;}
.ya_c00379{bottom:659.130000px;}
.y11_c00379{bottom:662.130000px;}
.y9_c00379{bottom:677.730000px;}
.y10_c00379{bottom:680.130000px;}
.y8_c00379{bottom:696.630000px;}
.yf_c00379{bottom:697.980000px;}
.y7_c00379{bottom:714.180000px;}
.ye_c00379{bottom:716.280000px;}
.y6_c00379{bottom:732.480000px;}
.yd_c00379{bottom:734.430000px;}
.y5_c00379{bottom:751.230000px;}
.yc_c00379{bottom:753.030000px;}
.y4_c00379{bottom:770.130000px;}
.y3_c00379{bottom:789.180000px;}
.hb_c00379{height:13.200074px;}
.hc_c00379{height:43.804688px;}
.h8_c00379{height:59.736000px;}
.h2_c00379{height:62.880000px;}
.ha_c00379{height:64.020000px;}
.h4_c00379{height:64.080000px;}
.h3_c00379{height:66.024000px;}
.h9_c00379{height:66.713379px;}
.h6_c00379{height:68.292000px;}
.h5_c00379{height:70.664062px;}
.h7_c00379{height:203.159180px;}
.h0_c00379{height:841.350000px;}
.h1_c00379{height:841.500000px;}
.w2_c00379{width:104.875500px;}
.w0_c00379{width:571.350000px;}
.w1_c00379{width:571.500000px;}
.x0_c00379{left:0.000000px;}
.x1_c00379{left:26.250000px;}
.x17_c00379{left:85.950000px;}
.x12_c00379{left:87.000000px;}
.x11_c00379{left:90.000000px;}
.xc_c00379{left:91.500000px;}
.x5_c00379{left:92.550000px;}
.x4_c00379{left:94.500000px;}
.x3_c00379{left:95.850000px;}
.x2_c00379{left:96.900000px;}
.xb_c00379{left:104.250000px;}
.xa_c00379{left:129.150000px;}
.xd_c00379{left:130.650000px;}
.x1a_c00379{left:185.700000px;}
.x1b_c00379{left:237.489258px;}
.x14_c00379{left:305.400000px;}
.x15_c00379{left:306.450000px;}
.x13_c00379{left:308.400000px;}
.x10_c00379{left:309.450000px;}
.xf_c00379{left:310.800000px;}
.x9_c00379{left:311.850000px;}
.xe_c00379{left:312.900000px;}
.x8_c00379{left:313.950000px;}
.x7_c00379{left:315.900000px;}
.x6_c00379{left:317.250000px;}
.x16_c00379{left:326.700000px;}
.x18_c00379{left:514.350000px;}
.x19_c00379{left:515.400000px;}
@media print{
.v0_c00379{vertical-align:0.000000pt;}
.v1_c00379{vertical-align:1.066667pt;}
.v2_c00379{vertical-align:96.000000pt;}
.lsb_c00379{letter-spacing:0.000000pt;}
.ls4_c00379{letter-spacing:0.133333pt;}
.ls9_c00379{letter-spacing:0.266667pt;}
.ls5_c00379{letter-spacing:2.666667pt;}
.ls1_c00379{letter-spacing:3.026667pt;}
.ls8_c00379{letter-spacing:3.466667pt;}
.lsa_c00379{letter-spacing:3.562667pt;}
.ls7_c00379{letter-spacing:5.333333pt;}
.ls0_c00379{letter-spacing:6.133333pt;}
.ls3_c00379{letter-spacing:6.432000pt;}
.ls2_c00379{letter-spacing:16.472000pt;}
.ls6_c00379{letter-spacing:71.946667pt;}
.ws8_c00379{word-spacing:-31.373333pt;}
.ws2_c00379{word-spacing:-27.888000pt;}
.ws6_c00379{word-spacing:-18.080000pt;}
.ws7_c00379{word-spacing:-18.050667pt;}
.ws1_c00379{word-spacing:-16.053333pt;}
.ws0_c00379{word-spacing:-12.586667pt;}
.ws4_c00379{word-spacing:-12.266667pt;}
.ws5_c00379{word-spacing:-11.957333pt;}
.ws9_c00379{word-spacing:0.000000pt;}
.ws3_c00379{word-spacing:13.813333pt;}
._2a_c00379{margin-left:-19.602667pt;}
._28_c00379{margin-left:-17.410667pt;}
._2f_c00379{margin-left:-15.445333pt;}
._26_c00379{margin-left:-13.112000pt;}
._13_c00379{margin-left:-11.712000pt;}
._2d_c00379{margin-left:-10.506667pt;}
._1b_c00379{margin-left:-9.261333pt;}
._23_c00379{margin-left:-7.477333pt;}
._17_c00379{margin-left:-6.197333pt;}
._a_c00379{margin-left:-4.816000pt;}
._10_c00379{margin-left:-3.573333pt;}
._9_c00379{margin-left:-2.520000pt;}
._c_c00379{margin-left:-1.373333pt;}
._0_c00379{width:1.493333pt;}
._1_c00379{width:2.560000pt;}
._7_c00379{width:4.128000pt;}
._3_c00379{width:5.320000pt;}
._4_c00379{width:7.056000pt;}
._5_c00379{width:7.968000pt;}
._8_c00379{width:9.576000pt;}
._d_c00379{width:11.426667pt;}
._11_c00379{width:12.853333pt;}
._b_c00379{width:13.928000pt;}
._22_c00379{width:15.093333pt;}
._19_c00379{width:17.920000pt;}
._f_c00379{width:19.314667pt;}
._24_c00379{width:20.496000pt;}
._12_c00379{width:21.920000pt;}
._1a_c00379{width:24.248000pt;}
._6_c00379{width:26.824000pt;}
._1c_c00379{width:30.341333pt;}
._25_c00379{width:34.869333pt;}
._15_c00379{width:40.384000pt;}
._29_c00379{width:42.328000pt;}
._1d_c00379{width:62.981333pt;}
._2e_c00379{width:65.173333pt;}
._2c_c00379{width:66.592000pt;}
._e_c00379{width:68.040000pt;}
._20_c00379{width:72.074667pt;}
._1f_c00379{width:74.029333pt;}
._21_c00379{width:76.162667pt;}
._18_c00379{width:80.365333pt;}
._2b_c00379{width:84.306667pt;}
._1e_c00379{width:90.146667pt;}
._27_c00379{width:113.581333pt;}
._2_c00379{width:182.229333pt;}
._14_c00379{width:204.800000pt;}
._16_c00379{width:279.384000pt;}
._30_c00379{width:873.013333pt;}
.fs4_c00379{font-size:40.000000pt;}
.fs9_c00379{font-size:42.666667pt;}
.fsa_c00379{font-size:45.333333pt;}
.fs8_c00379{font-size:48.000000pt;}
.fs7_c00379{font-size:49.066667pt;}
.fs2_c00379{font-size:50.666667pt;}
.fs0_c00379{font-size:53.333333pt;}
.fs1_c00379{font-size:56.000000pt;}
.fs6_c00379{font-size:61.333333pt;}
.fs3_c00379{font-size:64.000000pt;}
.fs5_c00379{font-size:184.000000pt;}
.y0_c00379{bottom:0.000000pt;}
.y4a_c00379{bottom:2.760000pt;}
.y49_c00379{bottom:6.425206pt;}
.y48_c00379{bottom:29.093333pt;}
.y47_c00379{bottom:42.293333pt;}
.y3d_c00379{bottom:57.626667pt;}
.y44_c00379{bottom:60.293333pt;}
.y3c_c00379{bottom:73.760000pt;}
.y43_c00379{bottom:76.826667pt;}
.y3b_c00379{bottom:89.760000pt;}
.y42_c00379{bottom:93.893333pt;}
.y3a_c00379{bottom:105.893333pt;}
.y41_c00379{bottom:108.693333pt;}
.y39_c00379{bottom:121.493333pt;}
.y40_c00379{bottom:124.826667pt;}
.y38_c00379{bottom:138.293333pt;}
.y3f_c00379{bottom:140.693333pt;}
.y46_c00379{bottom:142.560000pt;}
.y37_c00379{bottom:154.293333pt;}
.y3e_c00379{bottom:156.693333pt;}
.y45_c00379{bottom:160.560000pt;}
.y36_c00379{bottom:169.893333pt;}
.y34_c00379{bottom:173.093333pt;}
.y35_c00379{bottom:186.026667pt;}
.y33_c00379{bottom:188.160000pt;}
.y32_c00379{bottom:203.760000pt;}
.y31_c00379{bottom:219.360000pt;}
.y2b_c00379{bottom:233.760000pt;}
.y30_c00379{bottom:237.093333pt;}
.y2a_c00379{bottom:249.893333pt;}
.y2_c00379{bottom:251.493333pt;}
.y29_c00379{bottom:265.226667pt;}
.y2f_c00379{bottom:266.960000pt;}
.y1_c00379{bottom:269.093333pt;}
.y28_c00379{bottom:281.360000pt;}
.y2e_c00379{bottom:283.493333pt;}
.y27_c00379{bottom:297.360000pt;}
.y2d_c00379{bottom:299.493333pt;}
.y26_c00379{bottom:313.493333pt;}
.y2c_c00379{bottom:315.360000pt;}
.y25_c00379{bottom:331.226667pt;}
.y24_c00379{bottom:346.560000pt;}
.y23_c00379{bottom:362.426667pt;}
.y22_c00379{bottom:378.960000pt;}
.y21_c00379{bottom:394.826667pt;}
.y1a_c00379{bottom:409.493333pt;}
.y20_c00379{bottom:411.893333pt;}
.y18_c00379{bottom:417.626667pt;}
.y19_c00379{bottom:425.760000pt;}
.y1f_c00379{bottom:427.893333pt;}
.y1e_c00379{bottom:444.026667pt;}
.y1d_c00379{bottom:460.293333pt;}
.y1c_c00379{bottom:476.426667pt;}
.y17_c00379{bottom:490.160000pt;}
.y1b_c00379{bottom:492.026667pt;}
.y16_c00379{bottom:507.626667pt;}
.y15_c00379{bottom:524.426667pt;}
.y14_c00379{bottom:540.693333pt;}
.y13_c00379{bottom:556.826667pt;}
.yb_c00379{bottom:570.026667pt;}
.y12_c00379{bottom:572.160000pt;}
.ya_c00379{bottom:585.893333pt;}
.y11_c00379{bottom:588.560000pt;}
.y9_c00379{bottom:602.426667pt;}
.y10_c00379{bottom:604.560000pt;}
.y8_c00379{bottom:619.226667pt;}
.yf_c00379{bottom:620.426667pt;}
.y7_c00379{bottom:634.826667pt;}
.ye_c00379{bottom:636.693333pt;}
.y6_c00379{bottom:651.093333pt;}
.yd_c00379{bottom:652.826667pt;}
.y5_c00379{bottom:667.760000pt;}
.yc_c00379{bottom:669.360000pt;}
.y4_c00379{bottom:684.560000pt;}
.y3_c00379{bottom:701.493333pt;}
.hb_c00379{height:11.733399pt;}
.hc_c00379{height:38.937500pt;}
.h8_c00379{height:53.098667pt;}
.h2_c00379{height:55.893333pt;}
.ha_c00379{height:56.906667pt;}
.h4_c00379{height:56.960000pt;}
.h3_c00379{height:58.688000pt;}
.h9_c00379{height:59.300781pt;}
.h6_c00379{height:60.704000pt;}
.h5_c00379{height:62.812500pt;}
.h7_c00379{height:180.585938pt;}
.h0_c00379{height:747.866667pt;}
.h1_c00379{height:748.000000pt;}
.w2_c00379{width:93.222667pt;}
.w0_c00379{width:507.866667pt;}
.w1_c00379{width:508.000000pt;}
.x0_c00379{left:0.000000pt;}
.x1_c00379{left:23.333333pt;}
.x17_c00379{left:76.400000pt;}
.x12_c00379{left:77.333333pt;}
.x11_c00379{left:80.000000pt;}
.xc_c00379{left:81.333333pt;}
.x5_c00379{left:82.266667pt;}
.x4_c00379{left:84.000000pt;}
.x3_c00379{left:85.200000pt;}
.x2_c00379{left:86.133333pt;}
.xb_c00379{left:92.666667pt;}
.xa_c00379{left:114.800000pt;}
.xd_c00379{left:116.133333pt;}
.x1a_c00379{left:165.066667pt;}
.x1b_c00379{left:211.101563pt;}
.x14_c00379{left:271.466667pt;}
.x15_c00379{left:272.400000pt;}
.x13_c00379{left:274.133333pt;}
.x10_c00379{left:275.066667pt;}
.xf_c00379{left:276.266667pt;}
.x9_c00379{left:277.200000pt;}
.xe_c00379{left:278.133333pt;}
.x8_c00379{left:279.066667pt;}
.x7_c00379{left:280.800000pt;}
.x6_c00379{left:282.000000pt;}
.x16_c00379{left:290.400000pt;}
.x18_c00379{left:457.200000pt;}
.x19_c00379{left:458.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_9b5b2998c38a9ba2bee08b7e.woff2')format("woff");}.ff1_c00380{font-family:ff1_c00380;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00380;src:url('chunks/assets/font_67781602bef48cfe776a93a8.woff2')format("woff");}.ff2_c00380{font-family:ff2_c00380;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00380;src:url('chunks/assets/font_a6f9c9ea1de481e4aa30122a.woff2')format("woff");}.ff3_c00380{font-family:ff3_c00380;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00380;src:url('chunks/assets/font_33bd2e8fe247300c085dc623.woff2')format("woff");}.ff4_c00380{font-family:ff4_c00380;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00380;src:url('chunks/assets/font_1b4d5b474fa28609ef9e15dd.woff2')format("woff");}.ff5_c00380{font-family:ff5_c00380;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00380;src:url('chunks/assets/font_0ce391de997f24f9f9dd37f4.woff2')format("woff");}.ff6_c00380{font-family:ff6_c00380;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00380;src:url('chunks/assets/font_6e97d84f6eb592bcf78d3193.woff2')format("woff");}.ff7_c00380{font-family:ff7_c00380;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00380;src:url('chunks/assets/font_ae8e6222b35359ead9c2761a.woff2')format("woff");}.ff8_c00380{font-family:ff8_c00380;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00380;src:url('chunks/assets/font_d020244b4170ef3e62ff4ae1.woff2')format("woff");}.ff9_c00380{font-family:ff9_c00380;line-height:1.012793;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00380;src:url('chunks/assets/font_c92b65f150de907a72d97327.woff2')format("woff");}.ffa_c00380{font-family:ffa_c00380;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00380;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ffb_c00380{font-family:ffb_c00380;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc_c00380;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ffc_c00380{font-family:ffc_c00380;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00380{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00380{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.v0_c00380{vertical-align:0.000000px;}
.v1_c00380{vertical-align:110.400000px;}
.ls9_c00380{letter-spacing:0.000000px;}
.ls1_c00380{letter-spacing:3.000000px;}
.ls0_c00380{letter-spacing:6.000000px;}
.ls2_c00380{letter-spacing:7.680000px;}
.ls3_c00380{letter-spacing:8.805000px;}
.ls4_c00380{letter-spacing:8.940000px;}
.ls8_c00380{letter-spacing:18.540000px;}
.ls5_c00380{letter-spacing:64.740000px;}
.ls7_c00380{letter-spacing:80.940000px;}
.ls6_c00380{letter-spacing:250.140000px;}
.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;}
}
.wsa_c00380{word-spacing:-48.852000px;}
.ws9_c00380{word-spacing:-35.295000px;}
.ws6_c00380{word-spacing:-32.424000px;}
.ws1_c00380{word-spacing:-29.700000px;}
.ws2_c00380{word-spacing:-23.760000px;}
.wsb_c00380{word-spacing:-20.340000px;}
.ws7_c00380{word-spacing:-18.060000px;}
.wsf_c00380{word-spacing:-17.160000px;}
.ws4_c00380{word-spacing:-16.491000px;}
.ws5_c00380{word-spacing:-15.801000px;}
.wse_c00380{word-spacing:-14.679000px;}
.ws3_c00380{word-spacing:-14.160000px;}
.ws0_c00380{word-spacing:-11.760000px;}
.wsd_c00380{word-spacing:-0.960000px;}
.ws8_c00380{word-spacing:-0.720000px;}
.wsc_c00380{word-spacing:-0.051000px;}
.ws10_c00380{word-spacing:0.000000px;}
._1a_c00380{margin-left:-21.915000px;}
._1d_c00380{margin-left:-19.152000px;}
._1c_c00380{margin-left:-17.934000px;}
._12_c00380{margin-left:-16.260000px;}
._2a_c00380{margin-left:-14.877000px;}
._1e_c00380{margin-left:-13.680000px;}
._29_c00380{margin-left:-12.147000px;}
._28_c00380{margin-left:-10.098000px;}
._23_c00380{margin-left:-9.063000px;}
._a_c00380{margin-left:-7.935000px;}
._c_c00380{margin-left:-5.991000px;}
._b_c00380{margin-left:-4.416000px;}
._10_c00380{margin-left:-3.255000px;}
._1_c00380{margin-left:-2.220000px;}
._13_c00380{margin-left:-1.218000px;}
._3_c00380{width:1.680000px;}
._2_c00380{width:3.600000px;}
._6_c00380{width:4.680000px;}
._4_c00380{width:6.000000px;}
._e_c00380{width:7.140000px;}
._7_c00380{width:8.784000px;}
._9_c00380{width:10.608000px;}
._5_c00380{width:11.700000px;}
._0_c00380{width:13.200000px;}
._d_c00380{width:14.520000px;}
._11_c00380{width:16.260000px;}
._1b_c00380{width:18.270000px;}
._18_c00380{width:19.935000px;}
._14_c00380{width:22.059000px;}
._22_c00380{width:23.712000px;}
._16_c00380{width:25.080000px;}
._19_c00380{width:27.120000px;}
._17_c00380{width:29.340000px;}
._1f_c00380{width:32.067000px;}
._2b_c00380{width:34.599000px;}
._21_c00380{width:39.780000px;}
._25_c00380{width:59.472000px;}
._2d_c00380{width:61.233000px;}
._24_c00380{width:63.534000px;}
._2c_c00380{width:65.865000px;}
._20_c00380{width:67.692000px;}
._27_c00380{width:71.190000px;}
._f_c00380{width:73.152000px;}
._8_c00380{width:74.832000px;}
._26_c00380{width:93.996000px;}
._15_c00380{width:107.655000px;}
._2e_c00380{width:222.840000px;}
.fc2_c00380{color:transparent;}
.fc1_c00380{color:rgb(128,128,128);}
.fc0_c00380{color:rgb(0,0,0);}
.fs4_c00380{font-size:45.000000px;}
.fs0_c00380{font-size:48.000000px;}
.fs3_c00380{font-size:51.000000px;}
.fs6_c00380{font-size:54.000000px;}
.fs1_c00380{font-size:60.000000px;}
.fs7_c00380{font-size:63.000000px;}
.fs2_c00380{font-size:69.000000px;}
.fs5_c00380{font-size:207.000000px;}
.y0_c00380{bottom:0.000000px;}
.y4d_c00380{bottom:3.105000px;}
.y4c_c00380{bottom:7.228371px;}
.y4b_c00380{bottom:37.815000px;}
.y4a_c00380{bottom:56.415000px;}
.y49_c00380{bottom:75.015000px;}
.y48_c00380{bottom:93.615000px;}
.y47_c00380{bottom:111.165000px;}
.y46_c00380{bottom:129.915000px;}
.y45_c00380{bottom:146.865000px;}
.y5_c00380{bottom:150.315000px;}
.y44_c00380{bottom:164.415000px;}
.y3f_c00380{bottom:166.515000px;}
.y4_c00380{bottom:168.465000px;}
.y43_c00380{bottom:182.265000px;}
.y3e_c00380{bottom:184.665000px;}
.y3_c00380{bottom:186.315000px;}
.y42_c00380{bottom:199.215000px;}
.y3d_c00380{bottom:202.215000px;}
.y41_c00380{bottom:218.415000px;}
.y3c_c00380{bottom:220.065000px;}
.y40_c00380{bottom:236.265000px;}
.y3b_c00380{bottom:237.915000px;}
.y3a_c00380{bottom:254.865000px;}
.y39_c00380{bottom:273.165000px;}
.y38_c00380{bottom:289.215000px;}
.y31_c00380{bottom:292.065000px;}
.y37_c00380{bottom:308.565000px;}
.y30_c00380{bottom:309.915000px;}
.y36_c00380{bottom:326.115000px;}
.y2f_c00380{bottom:327.765000px;}
.y35_c00380{bottom:344.565000px;}
.y2e_c00380{bottom:345.915000px;}
.y34_c00380{bottom:362.865000px;}
.y2d_c00380{bottom:364.215000px;}
.y33_c00380{bottom:380.415000px;}
.y2c_c00380{bottom:382.065000px;}
.y32_c00380{bottom:397.965000px;}
.y2b_c00380{bottom:399.615000px;}
.y2a_c00380{bottom:417.165000px;}
.y2_c00380{bottom:417.465000px;}
.y29_c00380{bottom:434.415000px;}
.y1_c00380{bottom:435.015000px;}
.y19_c00380{bottom:436.065000px;}
.y28_c00380{bottom:452.265000px;}
.y18_c00380{bottom:453.615000px;}
.y27_c00380{bottom:470.565000px;}
.y17_c00380{bottom:471.465000px;}
.y26_c00380{bottom:487.815000px;}
.y16_c00380{bottom:489.465000px;}
.y25_c00380{bottom:505.665000px;}
.y15_c00380{bottom:506.565000px;}
.y24_c00380{bottom:523.515000px;}
.y14_c00380{bottom:524.115000px;}
.y22_c00380{bottom:532.365000px;}
.y13_c00380{bottom:542.115000px;}
.y23_c00380{bottom:542.415000px;}
.y12_c00380{bottom:560.265000px;}
.y11_c00380{bottom:578.115000px;}
.y10_c00380{bottom:596.115000px;}
.y21_c00380{bottom:597.165000px;}
.yf_c00380{bottom:613.965000px;}
.y20_c00380{bottom:615.015000px;}
.ye_c00380{bottom:632.265000px;}
.y1f_c00380{bottom:633.165000px;}
.yd_c00380{bottom:650.115000px;}
.y1e_c00380{bottom:651.165000px;}
.yc_c00380{bottom:667.965000px;}
.yb_c00380{bottom:684.915000px;}
.y1d_c00380{bottom:686.565000px;}
.ya_c00380{bottom:703.365000px;}
.y9_c00380{bottom:721.365000px;}
.y1c_c00380{bottom:721.665000px;}
.y8_c00380{bottom:739.815000px;}
.y1b_c00380{bottom:740.865000px;}
.y7_c00380{bottom:757.815000px;}
.y1a_c00380{bottom:759.165000px;}
.y6_c00380{bottom:776.565000px;}
.h9_c00380{height:13.200074px;}
.ha_c00380{height:43.804688px;}
.h4_c00380{height:53.448000px;}
.h6_c00380{height:56.592000px;}
.h2_c00380{height:62.880000px;}
.h7_c00380{height:64.571777px;}
.h8_c00380{height:66.024000px;}
.h3_c00380{height:72.312000px;}
.h5_c00380{height:216.936000px;}
.h1_c00380{height:844.500000px;}
.h0_c00380{height:844.575000px;}
.w1_c00380{width:104.875500px;}
.w0_c00380{width:587.250000px;}
.x0_c00380{left:0.000000px;}
.x3_c00380{left:25.050000px;}
.x2_c00380{left:27.000000px;}
.x1_c00380{left:29.400000px;}
.x14_c00380{left:82.650000px;}
.x16_c00380{left:83.700000px;}
.x15_c00380{left:85.050000px;}
.x13_c00380{left:86.850000px;}
.x4_c00380{left:88.050000px;}
.x11_c00380{left:90.150000px;}
.x8_c00380{left:91.500000px;}
.x7_c00380{left:92.850000px;}
.x6_c00380{left:94.050000px;}
.x18_c00380{left:245.439240px;}
.xe_c00380{left:306.750000px;}
.x12_c00380{left:307.800000px;}
.x10_c00380{left:309.150000px;}
.xa_c00380{left:311.250000px;}
.x9_c00380{left:312.600000px;}
.xc_c00380{left:323.250000px;}
.xd_c00380{left:343.500000px;}
.xf_c00380{left:360.750000px;}
.xb_c00380{left:375.750000px;}
.x17_c00380{left:395.850000px;}
.x5_c00380{left:428.400000px;}
@media print{
.v0_c00380{vertical-align:0.000000pt;}
.v1_c00380{vertical-align:98.133333pt;}
.ls9_c00380{letter-spacing:0.000000pt;}
.ls1_c00380{letter-spacing:2.666667pt;}
.ls0_c00380{letter-spacing:5.333333pt;}
.ls2_c00380{letter-spacing:6.826667pt;}
.ls3_c00380{letter-spacing:7.826667pt;}
.ls4_c00380{letter-spacing:7.946667pt;}
.ls8_c00380{letter-spacing:16.480000pt;}
.ls5_c00380{letter-spacing:57.546667pt;}
.ls7_c00380{letter-spacing:71.946667pt;}
.ls6_c00380{letter-spacing:222.346667pt;}
.wsa_c00380{word-spacing:-43.424000pt;}
.ws9_c00380{word-spacing:-31.373333pt;}
.ws6_c00380{word-spacing:-28.821333pt;}
.ws1_c00380{word-spacing:-26.400000pt;}
.ws2_c00380{word-spacing:-21.120000pt;}
.wsb_c00380{word-spacing:-18.080000pt;}
.ws7_c00380{word-spacing:-16.053333pt;}
.wsf_c00380{word-spacing:-15.253333pt;}
.ws4_c00380{word-spacing:-14.658667pt;}
.ws5_c00380{word-spacing:-14.045333pt;}
.wse_c00380{word-spacing:-13.048000pt;}
.ws3_c00380{word-spacing:-12.586667pt;}
.ws0_c00380{word-spacing:-10.453333pt;}
.wsd_c00380{word-spacing:-0.853333pt;}
.ws8_c00380{word-spacing:-0.640000pt;}
.wsc_c00380{word-spacing:-0.045333pt;}
.ws10_c00380{word-spacing:0.000000pt;}
._1a_c00380{margin-left:-19.480000pt;}
._1d_c00380{margin-left:-17.024000pt;}
._1c_c00380{margin-left:-15.941333pt;}
._12_c00380{margin-left:-14.453333pt;}
._2a_c00380{margin-left:-13.224000pt;}
._1e_c00380{margin-left:-12.160000pt;}
._29_c00380{margin-left:-10.797333pt;}
._28_c00380{margin-left:-8.976000pt;}
._23_c00380{margin-left:-8.056000pt;}
._a_c00380{margin-left:-7.053333pt;}
._c_c00380{margin-left:-5.325333pt;}
._b_c00380{margin-left:-3.925333pt;}
._10_c00380{margin-left:-2.893333pt;}
._1_c00380{margin-left:-1.973333pt;}
._13_c00380{margin-left:-1.082667pt;}
._3_c00380{width:1.493333pt;}
._2_c00380{width:3.200000pt;}
._6_c00380{width:4.160000pt;}
._4_c00380{width:5.333333pt;}
._e_c00380{width:6.346667pt;}
._7_c00380{width:7.808000pt;}
._9_c00380{width:9.429333pt;}
._5_c00380{width:10.400000pt;}
._0_c00380{width:11.733333pt;}
._d_c00380{width:12.906667pt;}
._11_c00380{width:14.453333pt;}
._1b_c00380{width:16.240000pt;}
._18_c00380{width:17.720000pt;}
._14_c00380{width:19.608000pt;}
._22_c00380{width:21.077333pt;}
._16_c00380{width:22.293333pt;}
._19_c00380{width:24.106667pt;}
._17_c00380{width:26.080000pt;}
._1f_c00380{width:28.504000pt;}
._2b_c00380{width:30.754667pt;}
._21_c00380{width:35.360000pt;}
._25_c00380{width:52.864000pt;}
._2d_c00380{width:54.429333pt;}
._24_c00380{width:56.474667pt;}
._2c_c00380{width:58.546667pt;}
._20_c00380{width:60.170667pt;}
._27_c00380{width:63.280000pt;}
._f_c00380{width:65.024000pt;}
._8_c00380{width:66.517333pt;}
._26_c00380{width:83.552000pt;}
._15_c00380{width:95.693333pt;}
._2e_c00380{width:198.080000pt;}
.fs4_c00380{font-size:40.000000pt;}
.fs0_c00380{font-size:42.666667pt;}
.fs3_c00380{font-size:45.333333pt;}
.fs6_c00380{font-size:48.000000pt;}
.fs1_c00380{font-size:53.333333pt;}
.fs7_c00380{font-size:56.000000pt;}
.fs2_c00380{font-size:61.333333pt;}
.fs5_c00380{font-size:184.000000pt;}
.y0_c00380{bottom:0.000000pt;}
.y4d_c00380{bottom:2.760000pt;}
.y4c_c00380{bottom:6.425219pt;}
.y4b_c00380{bottom:33.613333pt;}
.y4a_c00380{bottom:50.146667pt;}
.y49_c00380{bottom:66.680000pt;}
.y48_c00380{bottom:83.213333pt;}
.y47_c00380{bottom:98.813333pt;}
.y46_c00380{bottom:115.480000pt;}
.y45_c00380{bottom:130.546667pt;}
.y5_c00380{bottom:133.613333pt;}
.y44_c00380{bottom:146.146667pt;}
.y3f_c00380{bottom:148.013333pt;}
.y4_c00380{bottom:149.746667pt;}
.y43_c00380{bottom:162.013333pt;}
.y3e_c00380{bottom:164.146667pt;}
.y3_c00380{bottom:165.613333pt;}
.y42_c00380{bottom:177.080000pt;}
.y3d_c00380{bottom:179.746667pt;}
.y41_c00380{bottom:194.146667pt;}
.y3c_c00380{bottom:195.613333pt;}
.y40_c00380{bottom:210.013333pt;}
.y3b_c00380{bottom:211.480000pt;}
.y3a_c00380{bottom:226.546667pt;}
.y39_c00380{bottom:242.813333pt;}
.y38_c00380{bottom:257.080000pt;}
.y31_c00380{bottom:259.613333pt;}
.y37_c00380{bottom:274.280000pt;}
.y30_c00380{bottom:275.480000pt;}
.y36_c00380{bottom:289.880000pt;}
.y2f_c00380{bottom:291.346667pt;}
.y35_c00380{bottom:306.280000pt;}
.y2e_c00380{bottom:307.480000pt;}
.y34_c00380{bottom:322.546667pt;}
.y2d_c00380{bottom:323.746667pt;}
.y33_c00380{bottom:338.146667pt;}
.y2c_c00380{bottom:339.613333pt;}
.y32_c00380{bottom:353.746667pt;}
.y2b_c00380{bottom:355.213333pt;}
.y2a_c00380{bottom:370.813333pt;}
.y2_c00380{bottom:371.080000pt;}
.y29_c00380{bottom:386.146667pt;}
.y1_c00380{bottom:386.680000pt;}
.y19_c00380{bottom:387.613333pt;}
.y28_c00380{bottom:402.013333pt;}
.y18_c00380{bottom:403.213333pt;}
.y27_c00380{bottom:418.280000pt;}
.y17_c00380{bottom:419.080000pt;}
.y26_c00380{bottom:433.613333pt;}
.y16_c00380{bottom:435.080000pt;}
.y25_c00380{bottom:449.480000pt;}
.y15_c00380{bottom:450.280000pt;}
.y24_c00380{bottom:465.346667pt;}
.y14_c00380{bottom:465.880000pt;}
.y22_c00380{bottom:473.213333pt;}
.y13_c00380{bottom:481.880000pt;}
.y23_c00380{bottom:482.146667pt;}
.y12_c00380{bottom:498.013333pt;}
.y11_c00380{bottom:513.880000pt;}
.y10_c00380{bottom:529.880000pt;}
.y21_c00380{bottom:530.813333pt;}
.yf_c00380{bottom:545.746667pt;}
.y20_c00380{bottom:546.680000pt;}
.ye_c00380{bottom:562.013333pt;}
.y1f_c00380{bottom:562.813333pt;}
.yd_c00380{bottom:577.880000pt;}
.y1e_c00380{bottom:578.813333pt;}
.yc_c00380{bottom:593.746667pt;}
.yb_c00380{bottom:608.813333pt;}
.y1d_c00380{bottom:610.280000pt;}
.ya_c00380{bottom:625.213333pt;}
.y9_c00380{bottom:641.213333pt;}
.y1c_c00380{bottom:641.480000pt;}
.y8_c00380{bottom:657.613333pt;}
.y1b_c00380{bottom:658.546667pt;}
.y7_c00380{bottom:673.613333pt;}
.y1a_c00380{bottom:674.813333pt;}
.y6_c00380{bottom:690.280000pt;}
.h9_c00380{height:11.733399pt;}
.ha_c00380{height:38.937500pt;}
.h4_c00380{height:47.509333pt;}
.h6_c00380{height:50.304000pt;}
.h2_c00380{height:55.893333pt;}
.h7_c00380{height:57.397135pt;}
.h8_c00380{height:58.688000pt;}
.h3_c00380{height:64.277333pt;}
.h5_c00380{height:192.832000pt;}
.h1_c00380{height:750.666667pt;}
.h0_c00380{height:750.733333pt;}
.w1_c00380{width:93.222667pt;}
.w0_c00380{width:522.000000pt;}
.x0_c00380{left:0.000000pt;}
.x3_c00380{left:22.266667pt;}
.x2_c00380{left:24.000000pt;}
.x1_c00380{left:26.133333pt;}
.x14_c00380{left:73.466667pt;}
.x16_c00380{left:74.400000pt;}
.x15_c00380{left:75.600000pt;}
.x13_c00380{left:77.200000pt;}
.x4_c00380{left:78.266667pt;}
.x11_c00380{left:80.133333pt;}
.x8_c00380{left:81.333333pt;}
.x7_c00380{left:82.533333pt;}
.x6_c00380{left:83.600000pt;}
.x18_c00380{left:218.168213pt;}
.xe_c00380{left:272.666667pt;}
.x12_c00380{left:273.600000pt;}
.x10_c00380{left:274.800000pt;}
.xa_c00380{left:276.666667pt;}
.x9_c00380{left:277.866667pt;}
.xc_c00380{left:287.333333pt;}
.xd_c00380{left:305.333333pt;}
.xf_c00380{left:320.666667pt;}
.xb_c00380{left:334.000000pt;}
.x17_c00380{left:351.866667pt;}
.x5_c00380{left:380.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_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_1209ca8da10710e5f1b4fd2e.woff2')format("woff");}.ff1_c00381{font-family:ff1_c00381;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00381;src:url('chunks/assets/font_1f178d1de6478089a3893d1f.woff2')format("woff");}.ff2_c00381{font-family:ff2_c00381;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00381;src:url('chunks/assets/font_9744e464f3a93d521b628ebb.woff2')format("woff");}.ff3_c00381{font-family:ff3_c00381;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00381;src:url('chunks/assets/font_25ec57006ddb4a3281776b8c.woff2')format("woff");}.ff4_c00381{font-family:ff4_c00381;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00381;src:url('chunks/assets/font_1b6d41bf494bdd062211e738.woff2')format("woff");}.ff5_c00381{font-family:ff5_c00381;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00381;src:url('chunks/assets/font_afec72faa2267a0b476c3ed8.woff2')format("woff");}.ff6_c00381{font-family:ff6_c00381;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00381;src:url('chunks/assets/font_5f65d82dc892bf5104fd49f8.woff2')format("woff");}.ff7_c00381{font-family:ff7_c00381;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00381;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff8_c00381{font-family:ff8_c00381;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00381{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00381{vertical-align:0.000000px;}
.ls7_c00381{letter-spacing:-3.000000px;}
.ls6_c00381{letter-spacing:0.000000px;}
.ls4_c00381{letter-spacing:0.840000px;}
.ls3_c00381{letter-spacing:1.605000px;}
.ls1_c00381{letter-spacing:3.000000px;}
.ls2_c00381{letter-spacing:3.600000px;}
.ls0_c00381{letter-spacing:6.000000px;}
.ls5_c00381{letter-spacing:8.340000px;}
.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:-35.295000px;}
.ws4_c00381{word-spacing:-18.060000px;}
.ws5_c00381{word-spacing:-18.000000px;}
.ws2_c00381{word-spacing:-16.500000px;}
.ws7_c00381{word-spacing:-15.048000px;}
.ws1_c00381{word-spacing:-14.160000px;}
.ws3_c00381{word-spacing:-10.500000px;}
.ws8_c00381{word-spacing:0.000000px;}
.ws6_c00381{word-spacing:2.820000px;}
._1b_c00381{margin-left:-20.055000px;}
._1f_c00381{margin-left:-14.520000px;}
._28_c00381{margin-left:-13.260000px;}
._f_c00381{margin-left:-11.280000px;}
._4_c00381{margin-left:-9.360000px;}
._0_c00381{margin-left:-7.440000px;}
._2_c00381{margin-left:-6.360000px;}
._9_c00381{margin-left:-5.160000px;}
._1_c00381{margin-left:-4.140000px;}
._8_c00381{margin-left:-3.060000px;}
._7_c00381{margin-left:-1.620000px;}
._3_c00381{width:1.440000px;}
._13_c00381{width:3.120000px;}
._d_c00381{width:4.200000px;}
._a_c00381{width:5.400000px;}
._17_c00381{width:6.780000px;}
._5_c00381{width:7.860000px;}
._c_c00381{width:9.660000px;}
._6_c00381{width:11.100000px;}
._12_c00381{width:13.020000px;}
._11_c00381{width:14.340000px;}
._22_c00381{width:15.900000px;}
._24_c00381{width:18.720000px;}
._18_c00381{width:19.740000px;}
._b_c00381{width:22.200000px;}
._10_c00381{width:24.240000px;}
._e_c00381{width:26.280000px;}
._29_c00381{width:27.600000px;}
._1c_c00381{width:29.520000px;}
._1d_c00381{width:31.680000px;}
._1e_c00381{width:33.480000px;}
._14_c00381{width:35.940000px;}
._25_c00381{width:36.960000px;}
._21_c00381{width:38.028000px;}
._23_c00381{width:40.260000px;}
._27_c00381{width:42.060000px;}
._15_c00381{width:49.980000px;}
._20_c00381{width:51.780000px;}
._1a_c00381{width:114.060000px;}
._16_c00381{width:218.040000px;}
._26_c00381{width:284.340000px;}
._19_c00381{width:495.480000px;}
.fc2_c00381{color:transparent;}
.fc1_c00381{color:rgb(128,128,128);}
.fc0_c00381{color:rgb(0,0,0);}
.fs1_c00381{font-size:45.000000px;}
.fs3_c00381{font-size:48.000000px;}
.fs2_c00381{font-size:54.000000px;}
.fs0_c00381{font-size:60.000000px;}
.y0_c00381{bottom:0.000000px;}
.y55_c00381{bottom:3.105000px;}
.y54_c00381{bottom:7.228371px;}
.y53_c00381{bottom:39.915000px;}
.y52_c00381{bottom:58.815000px;}
.y29_c00381{bottom:59.715000px;}
.y51_c00381{bottom:77.265000px;}
.y28_c00381{bottom:77.715000px;}
.y50_c00381{bottom:95.265000px;}
.y27_c00381{bottom:95.865000px;}
.y26_c00381{bottom:112.515000px;}
.y4f_c00381{bottom:113.115000px;}
.y4e_c00381{bottom:131.265000px;}
.y25_c00381{bottom:132.015000px;}
.y24_c00381{bottom:148.515000px;}
.y4d_c00381{bottom:149.265000px;}
.y4c_c00381{bottom:167.115000px;}
.y23_c00381{bottom:167.415000px;}
.y4b_c00381{bottom:185.265000px;}
.y22_c00381{bottom:186.015000px;}
.y4a_c00381{bottom:203.265000px;}
.y21_c00381{bottom:203.865000px;}
.y20_c00381{bottom:221.415000px;}
.y49_c00381{bottom:221.715000px;}
.y48_c00381{bottom:239.415000px;}
.y1f_c00381{bottom:240.015000px;}
.y47_c00381{bottom:257.265000px;}
.y1e_c00381{bottom:257.565000px;}
.y1d_c00381{bottom:274.515000px;}
.y46_c00381{bottom:275.415000px;}
.y45_c00381{bottom:292.365000px;}
.y1c_c00381{bottom:292.965000px;}
.y44_c00381{bottom:309.915000px;}
.y1b_c00381{bottom:311.565000px;}
.y43_c00381{bottom:328.365000px;}
.y1a_c00381{bottom:329.415000px;}
.y42_c00381{bottom:346.065000px;}
.y19_c00381{bottom:347.415000px;}
.y41_c00381{bottom:364.515000px;}
.y18_c00381{bottom:365.565000px;}
.y40_c00381{bottom:382.365000px;}
.y17_c00381{bottom:383.115000px;}
.y3f_c00381{bottom:400.065000px;}
.y16_c00381{bottom:402.765000px;}
.y3e_c00381{bottom:417.615000px;}
.y15_c00381{bottom:418.815000px;}
.y3d_c00381{bottom:435.765000px;}
.y14_c00381{bottom:436.515000px;}
.y3c_c00381{bottom:453.915000px;}
.y13_c00381{bottom:454.065000px;}
.y3b_c00381{bottom:471.615000px;}
.y12_c00381{bottom:472.965000px;}
.y3a_c00381{bottom:489.465000px;}
.y11_c00381{bottom:490.515000px;}
.y39_c00381{bottom:507.615000px;}
.y10_c00381{bottom:508.965000px;}
.y38_c00381{bottom:525.615000px;}
.yf_c00381{bottom:526.515000px;}
.y37_c00381{bottom:543.165000px;}
.ye_c00381{bottom:544.815000px;}
.y36_c00381{bottom:561.615000px;}
.yd_c00381{bottom:562.665000px;}
.y35_c00381{bottom:579.165000px;}
.yc_c00381{bottom:580.815000px;}
.y34_c00381{bottom:597.165000px;}
.yb_c00381{bottom:598.515000px;}
.y33_c00381{bottom:615.015000px;}
.ya_c00381{bottom:616.965000px;}
.y32_c00381{bottom:633.165000px;}
.y9_c00381{bottom:634.815000px;}
.y31_c00381{bottom:651.465000px;}
.y8_c00381{bottom:652.815000px;}
.y30_c00381{bottom:669.615000px;}
.y7_c00381{bottom:670.965000px;}
.y2f_c00381{bottom:686.265000px;}
.y6_c00381{bottom:688.515000px;}
.y2e_c00381{bottom:704.715000px;}
.y5_c00381{bottom:706.515000px;}
.y2d_c00381{bottom:722.565000px;}
.y4_c00381{bottom:725.415000px;}
.y2c_c00381{bottom:739.815000px;}
.y3_c00381{bottom:742.965000px;}
.y2b_c00381{bottom:757.665000px;}
.y2_c00381{bottom:760.515000px;}
.y2a_c00381{bottom:777.015000px;}
.y1_c00381{bottom:778.965000px;}
.h5_c00381{height:13.200074px;}
.h6_c00381{height:43.804688px;}
.h3_c00381{height:58.536000px;}
.h2_c00381{height:62.880000px;}
.h4_c00381{height:64.020000px;}
.h0_c00381{height:839.175000px;}
.h1_c00381{height:839.250000px;}
.w2_c00381{width:104.875500px;}
.w0_c00381{width:569.700000px;}
.w1_c00381{width:570.000000px;}
.x0_c00381{left:0.000000px;}
.x6_c00381{left:24.600000px;}
.x7_c00381{left:25.650000px;}
.x4_c00381{left:27.600000px;}
.x2_c00381{left:86.850000px;}
.x1_c00381{left:88.800000px;}
.x5_c00381{left:90.450000px;}
.x8_c00381{left:91.500000px;}
.x9_c00381{left:92.700000px;}
.x3_c00381{left:108.900000px;}
.x12_c00381{left:236.664230px;}
.xa_c00381{left:305.850000px;}
.xb_c00381{left:307.350000px;}
.xc_c00381{left:308.550000px;}
.xd_c00381{left:309.600000px;}
.xe_c00381{left:310.950000px;}
.xf_c00381{left:312.300000px;}
.x10_c00381{left:313.650000px;}
.x11_c00381{left:473.850000px;}
@media print{
.v0_c00381{vertical-align:0.000000pt;}
.ls7_c00381{letter-spacing:-2.666667pt;}
.ls6_c00381{letter-spacing:0.000000pt;}
.ls4_c00381{letter-spacing:0.746667pt;}
.ls3_c00381{letter-spacing:1.426667pt;}
.ls1_c00381{letter-spacing:2.666667pt;}
.ls2_c00381{letter-spacing:3.200000pt;}
.ls0_c00381{letter-spacing:5.333333pt;}
.ls5_c00381{letter-spacing:7.413333pt;}
.ws0_c00381{word-spacing:-31.373333pt;}
.ws4_c00381{word-spacing:-16.053333pt;}
.ws5_c00381{word-spacing:-16.000000pt;}
.ws2_c00381{word-spacing:-14.666667pt;}
.ws7_c00381{word-spacing:-13.376000pt;}
.ws1_c00381{word-spacing:-12.586667pt;}
.ws3_c00381{word-spacing:-9.333333pt;}
.ws8_c00381{word-spacing:0.000000pt;}
.ws6_c00381{word-spacing:2.506667pt;}
._1b_c00381{margin-left:-17.826667pt;}
._1f_c00381{margin-left:-12.906667pt;}
._28_c00381{margin-left:-11.786667pt;}
._f_c00381{margin-left:-10.026667pt;}
._4_c00381{margin-left:-8.320000pt;}
._0_c00381{margin-left:-6.613333pt;}
._2_c00381{margin-left:-5.653333pt;}
._9_c00381{margin-left:-4.586667pt;}
._1_c00381{margin-left:-3.680000pt;}
._8_c00381{margin-left:-2.720000pt;}
._7_c00381{margin-left:-1.440000pt;}
._3_c00381{width:1.280000pt;}
._13_c00381{width:2.773333pt;}
._d_c00381{width:3.733333pt;}
._a_c00381{width:4.800000pt;}
._17_c00381{width:6.026667pt;}
._5_c00381{width:6.986667pt;}
._c_c00381{width:8.586667pt;}
._6_c00381{width:9.866667pt;}
._12_c00381{width:11.573333pt;}
._11_c00381{width:12.746667pt;}
._22_c00381{width:14.133333pt;}
._24_c00381{width:16.640000pt;}
._18_c00381{width:17.546667pt;}
._b_c00381{width:19.733333pt;}
._10_c00381{width:21.546667pt;}
._e_c00381{width:23.360000pt;}
._29_c00381{width:24.533333pt;}
._1c_c00381{width:26.240000pt;}
._1d_c00381{width:28.160000pt;}
._1e_c00381{width:29.760000pt;}
._14_c00381{width:31.946667pt;}
._25_c00381{width:32.853333pt;}
._21_c00381{width:33.802667pt;}
._23_c00381{width:35.786667pt;}
._27_c00381{width:37.386667pt;}
._15_c00381{width:44.426667pt;}
._20_c00381{width:46.026667pt;}
._1a_c00381{width:101.386667pt;}
._16_c00381{width:193.813333pt;}
._26_c00381{width:252.746667pt;}
._19_c00381{width:440.426667pt;}
.fs1_c00381{font-size:40.000000pt;}
.fs3_c00381{font-size:42.666667pt;}
.fs2_c00381{font-size:48.000000pt;}
.fs0_c00381{font-size:53.333333pt;}
.y0_c00381{bottom:0.000000pt;}
.y55_c00381{bottom:2.760000pt;}
.y54_c00381{bottom:6.425219pt;}
.y53_c00381{bottom:35.480000pt;}
.y52_c00381{bottom:52.280000pt;}
.y29_c00381{bottom:53.080000pt;}
.y51_c00381{bottom:68.680000pt;}
.y28_c00381{bottom:69.080000pt;}
.y50_c00381{bottom:84.680000pt;}
.y27_c00381{bottom:85.213333pt;}
.y26_c00381{bottom:100.013333pt;}
.y4f_c00381{bottom:100.546667pt;}
.y4e_c00381{bottom:116.680000pt;}
.y25_c00381{bottom:117.346667pt;}
.y24_c00381{bottom:132.013333pt;}
.y4d_c00381{bottom:132.680000pt;}
.y4c_c00381{bottom:148.546667pt;}
.y23_c00381{bottom:148.813333pt;}
.y4b_c00381{bottom:164.680000pt;}
.y22_c00381{bottom:165.346667pt;}
.y4a_c00381{bottom:180.680000pt;}
.y21_c00381{bottom:181.213333pt;}
.y20_c00381{bottom:196.813333pt;}
.y49_c00381{bottom:197.080000pt;}
.y48_c00381{bottom:212.813333pt;}
.y1f_c00381{bottom:213.346667pt;}
.y47_c00381{bottom:228.680000pt;}
.y1e_c00381{bottom:228.946667pt;}
.y1d_c00381{bottom:244.013333pt;}
.y46_c00381{bottom:244.813333pt;}
.y45_c00381{bottom:259.880000pt;}
.y1c_c00381{bottom:260.413333pt;}
.y44_c00381{bottom:275.480000pt;}
.y1b_c00381{bottom:276.946667pt;}
.y43_c00381{bottom:291.880000pt;}
.y1a_c00381{bottom:292.813333pt;}
.y42_c00381{bottom:307.613333pt;}
.y19_c00381{bottom:308.813333pt;}
.y41_c00381{bottom:324.013333pt;}
.y18_c00381{bottom:324.946667pt;}
.y40_c00381{bottom:339.880000pt;}
.y17_c00381{bottom:340.546667pt;}
.y3f_c00381{bottom:355.613333pt;}
.y16_c00381{bottom:358.013333pt;}
.y3e_c00381{bottom:371.213333pt;}
.y15_c00381{bottom:372.280000pt;}
.y3d_c00381{bottom:387.346667pt;}
.y14_c00381{bottom:388.013333pt;}
.y3c_c00381{bottom:403.480000pt;}
.y13_c00381{bottom:403.613333pt;}
.y3b_c00381{bottom:419.213333pt;}
.y12_c00381{bottom:420.413333pt;}
.y3a_c00381{bottom:435.080000pt;}
.y11_c00381{bottom:436.013333pt;}
.y39_c00381{bottom:451.213333pt;}
.y10_c00381{bottom:452.413333pt;}
.y38_c00381{bottom:467.213333pt;}
.yf_c00381{bottom:468.013333pt;}
.y37_c00381{bottom:482.813333pt;}
.ye_c00381{bottom:484.280000pt;}
.y36_c00381{bottom:499.213333pt;}
.yd_c00381{bottom:500.146667pt;}
.y35_c00381{bottom:514.813333pt;}
.yc_c00381{bottom:516.280000pt;}
.y34_c00381{bottom:530.813333pt;}
.yb_c00381{bottom:532.013333pt;}
.y33_c00381{bottom:546.680000pt;}
.ya_c00381{bottom:548.413333pt;}
.y32_c00381{bottom:562.813333pt;}
.y9_c00381{bottom:564.280000pt;}
.y31_c00381{bottom:579.080000pt;}
.y8_c00381{bottom:580.280000pt;}
.y30_c00381{bottom:595.213333pt;}
.y7_c00381{bottom:596.413333pt;}
.y2f_c00381{bottom:610.013333pt;}
.y6_c00381{bottom:612.013333pt;}
.y2e_c00381{bottom:626.413333pt;}
.y5_c00381{bottom:628.013333pt;}
.y2d_c00381{bottom:642.280000pt;}
.y4_c00381{bottom:644.813333pt;}
.y2c_c00381{bottom:657.613333pt;}
.y3_c00381{bottom:660.413333pt;}
.y2b_c00381{bottom:673.480000pt;}
.y2_c00381{bottom:676.013333pt;}
.y2a_c00381{bottom:690.680000pt;}
.y1_c00381{bottom:692.413333pt;}
.h5_c00381{height:11.733399pt;}
.h6_c00381{height:38.937500pt;}
.h3_c00381{height:52.032000pt;}
.h2_c00381{height:55.893333pt;}
.h4_c00381{height:56.906667pt;}
.h0_c00381{height:745.933333pt;}
.h1_c00381{height:746.000000pt;}
.w2_c00381{width:93.222667pt;}
.w0_c00381{width:506.400000pt;}
.w1_c00381{width:506.666667pt;}
.x0_c00381{left:0.000000pt;}
.x6_c00381{left:21.866667pt;}
.x7_c00381{left:22.800000pt;}
.x4_c00381{left:24.533333pt;}
.x2_c00381{left:77.200000pt;}
.x1_c00381{left:78.933333pt;}
.x5_c00381{left:80.400000pt;}
.x8_c00381{left:81.333333pt;}
.x9_c00381{left:82.400000pt;}
.x3_c00381{left:96.800000pt;}
.x12_c00381{left:210.368205pt;}
.xa_c00381{left:271.866667pt;}
.xb_c00381{left:273.200000pt;}
.xc_c00381{left:274.266667pt;}
.xd_c00381{left:275.200000pt;}
.xe_c00381{left:276.400000pt;}
.xf_c00381{left:277.600000pt;}
.x10_c00381{left:278.800000pt;}
.x11_c00381{left:421.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_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_48183fbcb8f5dcbf57bde502.woff2')format("woff");}.ff1_c00382{font-family:ff1_c00382;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00382;src:url('chunks/assets/font_741ad2c55fece823fdb1e7e1.woff2')format("woff");}.ff2_c00382{font-family:ff2_c00382;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00382;src:url('chunks/assets/font_267d47f2c7e59850cbe2f47c.woff2')format("woff");}.ff3_c00382{font-family:ff3_c00382;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00382;src:url('chunks/assets/font_d2e5deeceb2cc6e6391dc664.woff2')format("woff");}.ff4_c00382{font-family:ff4_c00382;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00382;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff5_c00382{font-family:ff5_c00382;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00382{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00382{vertical-align:-6.600000px;}
.v0_c00382{vertical-align:0.000000px;}
.ls1_c00382{letter-spacing:0.000000px;}
.ls0_c00382{letter-spacing:3.000000px;}
.ls2_c00382{letter-spacing:21.000000px;}
.sc__c00382{text-shadow:none;}
.sc0_c00382{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00382{-webkit-text-stroke:0px transparent;}
.sc0_c00382{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00382{word-spacing:-33.540000px;}
.ws1_c00382{word-spacing:-30.540000px;}
.ws3_c00382{word-spacing:-19.941000px;}
.ws4_c00382{word-spacing:0.000000px;}
.ws2_c00382{word-spacing:324.618000px;}
._1e_c00382{margin-left:-30.303000px;}
._1b_c00382{margin-left:-9.513000px;}
._10_c00382{margin-left:-8.127000px;}
._13_c00382{margin-left:-6.930000px;}
._12_c00382{margin-left:-5.922000px;}
._2_c00382{margin-left:-4.095000px;}
._4_c00382{margin-left:-2.520000px;}
._5_c00382{margin-left:-1.323000px;}
._3_c00382{width:1.008000px;}
._0_c00382{width:2.520000px;}
._1_c00382{width:3.843000px;}
._d_c00382{width:5.292000px;}
._c_c00382{width:6.489000px;}
._7_c00382{width:7.833000px;}
._b_c00382{width:9.261000px;}
._8_c00382{width:10.962000px;}
._a_c00382{width:12.033000px;}
._6_c00382{width:13.545000px;}
._11_c00382{width:14.553000px;}
._18_c00382{width:17.199000px;}
._9_c00382{width:21.231000px;}
._f_c00382{width:22.428000px;}
._19_c00382{width:24.129000px;}
._1c_c00382{width:25.770000px;}
._14_c00382{width:27.090000px;}
._15_c00382{width:30.429000px;}
._16_c00382{width:33.327000px;}
._e_c00382{width:36.540000px;}
._1a_c00382{width:43.722000px;}
._17_c00382{width:61.425000px;}
._1d_c00382{width:64.869000px;}
.fc2_c00382{color:transparent;}
.fc1_c00382{color:rgb(128,128,128);}
.fc0_c00382{color:rgb(0,0,0);}
.fs4_c00382{font-size:48.000000px;}
.fs1_c00382{font-size:51.000000px;}
.fs2_c00382{font-size:60.000000px;}
.fs0_c00382{font-size:63.000000px;}
.fs3_c00382{font-size:69.000000px;}
.y0_c00382{bottom:0.000000px;}
.y32_c00382{bottom:3.105000px;}
.y31_c00382{bottom:7.228357px;}
.y30_c00382{bottom:52.980000px;}
.y2f_c00382{bottom:366.480000px;}
.y18_c00382{bottom:367.980000px;}
.y2e_c00382{bottom:384.030000px;}
.y17_c00382{bottom:386.430000px;}
.y2d_c00382{bottom:401.730000px;}
.y16_c00382{bottom:404.280000px;}
.y2c_c00382{bottom:420.180000px;}
.y15_c00382{bottom:421.980000px;}
.y2b_c00382{bottom:437.730000px;}
.y14_c00382{bottom:440.130000px;}
.y2a_c00382{bottom:456.030000px;}
.y13_c00382{bottom:457.680000px;}
.y29_c00382{bottom:474.180000px;}
.y12_c00382{bottom:474.930000px;}
.y28_c00382{bottom:491.730000px;}
.y11_c00382{bottom:492.780000px;}
.y27_c00382{bottom:509.580000px;}
.y10_c00382{bottom:510.330000px;}
.y26_c00382{bottom:527.580000px;}
.yf_c00382{bottom:527.880000px;}
.y25_c00382{bottom:545.430000px;}
.ye_c00382{bottom:545.730000px;}
.y24_c00382{bottom:561.930000px;}
.yd_c00382{bottom:563.730000px;}
.y23_c00382{bottom:581.130000px;}
.yc_c00382{bottom:581.280000px;}
.y22_c00382{bottom:598.680000px;}
.yb_c00382{bottom:599.130000px;}
.y21_c00382{bottom:616.980000px;}
.ya_c00382{bottom:617.130000px;}
.y9_c00382{bottom:635.130000px;}
.y20_c00382{bottom:635.280000px;}
.y1f_c00382{bottom:652.830000px;}
.y8_c00382{bottom:653.130000px;}
.y1e_c00382{bottom:670.830000px;}
.y7_c00382{bottom:670.980000px;}
.y6_c00382{bottom:688.830000px;}
.y1d_c00382{bottom:689.130000px;}
.y5_c00382{bottom:706.680000px;}
.y1c_c00382{bottom:707.430000px;}
.y4_c00382{bottom:724.230000px;}
.y3_c00382{bottom:742.230000px;}
.y1b_c00382{bottom:742.530000px;}
.y2_c00382{bottom:760.080000px;}
.y1a_c00382{bottom:761.130000px;}
.y1_c00382{bottom:777.930000px;}
.y19_c00382{bottom:779.280000px;}
.h4_c00382{height:13.200074px;}
.h5_c00382{height:43.804688px;}
.h2_c00382{height:62.880000px;}
.h1_c00382{height:66.024000px;}
.h3_c00382{height:67.023000px;}
.h0_c00382{height:833.250000px;}
.w2_c00382{width:104.875500px;}
.w0_c00382{width:578.850000px;}
.w1_c00382{width:579.000000px;}
.x0_c00382{left:0.000000px;}
.x4_c00382{left:70.500000px;}
.x3_c00382{left:71.550000px;}
.x2_c00382{left:72.600000px;}
.x1_c00382{left:73.800000px;}
.xb_c00382{left:241.239258px;}
.x7_c00382{left:284.550000px;}
.x5_c00382{left:285.900000px;}
.x6_c00382{left:287.550000px;}
.xa_c00382{left:307.200000px;}
.x8_c00382{left:308.250000px;}
.x9_c00382{left:339.900000px;}
@media print{
.v1_c00382{vertical-align:-5.866667pt;}
.v0_c00382{vertical-align:0.000000pt;}
.ls1_c00382{letter-spacing:0.000000pt;}
.ls0_c00382{letter-spacing:2.666667pt;}
.ls2_c00382{letter-spacing:18.666667pt;}
.ws0_c00382{word-spacing:-29.813333pt;}
.ws1_c00382{word-spacing:-27.146667pt;}
.ws3_c00382{word-spacing:-17.725333pt;}
.ws4_c00382{word-spacing:0.000000pt;}
.ws2_c00382{word-spacing:288.549333pt;}
._1e_c00382{margin-left:-26.936000pt;}
._1b_c00382{margin-left:-8.456000pt;}
._10_c00382{margin-left:-7.224000pt;}
._13_c00382{margin-left:-6.160000pt;}
._12_c00382{margin-left:-5.264000pt;}
._2_c00382{margin-left:-3.640000pt;}
._4_c00382{margin-left:-2.240000pt;}
._5_c00382{margin-left:-1.176000pt;}
._3_c00382{width:0.896000pt;}
._0_c00382{width:2.240000pt;}
._1_c00382{width:3.416000pt;}
._d_c00382{width:4.704000pt;}
._c_c00382{width:5.768000pt;}
._7_c00382{width:6.962667pt;}
._b_c00382{width:8.232000pt;}
._8_c00382{width:9.744000pt;}
._a_c00382{width:10.696000pt;}
._6_c00382{width:12.040000pt;}
._11_c00382{width:12.936000pt;}
._18_c00382{width:15.288000pt;}
._9_c00382{width:18.872000pt;}
._f_c00382{width:19.936000pt;}
._19_c00382{width:21.448000pt;}
._1c_c00382{width:22.906667pt;}
._14_c00382{width:24.080000pt;}
._15_c00382{width:27.048000pt;}
._16_c00382{width:29.624000pt;}
._e_c00382{width:32.480000pt;}
._1a_c00382{width:38.864000pt;}
._17_c00382{width:54.600000pt;}
._1d_c00382{width:57.661333pt;}
.fs4_c00382{font-size:42.666667pt;}
.fs1_c00382{font-size:45.333333pt;}
.fs2_c00382{font-size:53.333333pt;}
.fs0_c00382{font-size:56.000000pt;}
.fs3_c00382{font-size:61.333333pt;}
.y0_c00382{bottom:0.000000pt;}
.y32_c00382{bottom:2.760000pt;}
.y31_c00382{bottom:6.425206pt;}
.y30_c00382{bottom:47.093333pt;}
.y2f_c00382{bottom:325.760000pt;}
.y18_c00382{bottom:327.093333pt;}
.y2e_c00382{bottom:341.360000pt;}
.y17_c00382{bottom:343.493333pt;}
.y2d_c00382{bottom:357.093333pt;}
.y16_c00382{bottom:359.360000pt;}
.y2c_c00382{bottom:373.493333pt;}
.y15_c00382{bottom:375.093333pt;}
.y2b_c00382{bottom:389.093333pt;}
.y14_c00382{bottom:391.226667pt;}
.y2a_c00382{bottom:405.360000pt;}
.y13_c00382{bottom:406.826667pt;}
.y29_c00382{bottom:421.493333pt;}
.y12_c00382{bottom:422.160000pt;}
.y28_c00382{bottom:437.093333pt;}
.y11_c00382{bottom:438.026667pt;}
.y27_c00382{bottom:452.960000pt;}
.y10_c00382{bottom:453.626667pt;}
.y26_c00382{bottom:468.960000pt;}
.yf_c00382{bottom:469.226667pt;}
.y25_c00382{bottom:484.826667pt;}
.ye_c00382{bottom:485.093333pt;}
.y24_c00382{bottom:499.493333pt;}
.yd_c00382{bottom:501.093333pt;}
.y23_c00382{bottom:516.560000pt;}
.yc_c00382{bottom:516.693333pt;}
.y22_c00382{bottom:532.160000pt;}
.yb_c00382{bottom:532.560000pt;}
.y21_c00382{bottom:548.426667pt;}
.ya_c00382{bottom:548.560000pt;}
.y9_c00382{bottom:564.560000pt;}
.y20_c00382{bottom:564.693333pt;}
.y1f_c00382{bottom:580.293333pt;}
.y8_c00382{bottom:580.560000pt;}
.y1e_c00382{bottom:596.293333pt;}
.y7_c00382{bottom:596.426667pt;}
.y6_c00382{bottom:612.293333pt;}
.y1d_c00382{bottom:612.560000pt;}
.y5_c00382{bottom:628.160000pt;}
.y1c_c00382{bottom:628.826667pt;}
.y4_c00382{bottom:643.760000pt;}
.y3_c00382{bottom:659.760000pt;}
.y1b_c00382{bottom:660.026667pt;}
.y2_c00382{bottom:675.626667pt;}
.y1a_c00382{bottom:676.560000pt;}
.y1_c00382{bottom:691.493333pt;}
.y19_c00382{bottom:692.693333pt;}
.h4_c00382{height:11.733399pt;}
.h5_c00382{height:38.937500pt;}
.h2_c00382{height:55.893333pt;}
.h1_c00382{height:58.688000pt;}
.h3_c00382{height:59.576000pt;}
.h0_c00382{height:740.666667pt;}
.w2_c00382{width:93.222667pt;}
.w0_c00382{width:514.533333pt;}
.w1_c00382{width:514.666667pt;}
.x0_c00382{left:0.000000pt;}
.x4_c00382{left:62.666667pt;}
.x3_c00382{left:63.600000pt;}
.x2_c00382{left:64.533333pt;}
.x1_c00382{left:65.600000pt;}
.xb_c00382{left:214.434896pt;}
.x7_c00382{left:252.933333pt;}
.x5_c00382{left:254.133333pt;}
.x6_c00382{left:255.600000pt;}
.xa_c00382{left:273.066667pt;}
.x8_c00382{left:274.000000pt;}
.x9_c00382{left:302.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_75e423a172902e096fbeda6c.woff2')format("woff");}.ff1_c00383{font-family:ff1_c00383;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00383;src:url('chunks/assets/font_46cebfd64f112da66102add1.woff2')format("woff");}.ff2_c00383{font-family:ff2_c00383;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00383;src:url('chunks/assets/font_8b063ff2fdcb81bd184a262e.woff2')format("woff");}.ff3_c00383{font-family:ff3_c00383;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00383;src:url('chunks/assets/font_daa1723f50f04bc6ad24491a.woff2')format("woff");}.ff4_c00383{font-family:ff4_c00383;line-height:1.012793;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00383;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff5_c00383{font-family:ff5_c00383;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00383{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00383{vertical-align:0.000000px;}
.ls1_c00383{letter-spacing:0.000000px;}
.ls0_c00383{letter-spacing:3.000000px;}
.ls2_c00383{letter-spacing:6.000000px;}
.sc__c00383{text-shadow:none;}
.sc0_c00383{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00383{-webkit-text-stroke:0px transparent;}
.sc0_c00383{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00383{word-spacing:-18.060000px;}
.ws1_c00383{word-spacing:-18.000000px;}
.ws0_c00383{word-spacing:-14.160000px;}
.ws3_c00383{word-spacing:0.000000px;}
._23_c00383{margin-left:-19.665000px;}
._1f_c00383{margin-left:-15.900000px;}
._2_c00383{margin-left:-13.260000px;}
._22_c00383{margin-left:-11.160000px;}
._19_c00383{margin-left:-9.435000px;}
._0_c00383{margin-left:-7.620000px;}
._1e_c00383{margin-left:-6.240000px;}
._1_c00383{margin-left:-5.220000px;}
._21_c00383{margin-left:-4.215000px;}
._a_c00383{margin-left:-3.120000px;}
._b_c00383{margin-left:-1.950000px;}
._15_c00383{width:1.020000px;}
._14_c00383{width:2.220000px;}
._8_c00383{width:4.095000px;}
._13_c00383{width:5.745000px;}
._3_c00383{width:7.020000px;}
._4_c00383{width:8.190000px;}
._5_c00383{width:9.555000px;}
._7_c00383{width:10.920000px;}
._6_c00383{width:12.285000px;}
._9_c00383{width:14.040000px;}
._e_c00383{width:15.720000px;}
._f_c00383{width:16.875000px;}
._18_c00383{width:17.940000px;}
._10_c00383{width:19.290000px;}
._1a_c00383{width:20.940000px;}
._12_c00383{width:22.260000px;}
._11_c00383{width:23.460000px;}
._1d_c00383{width:25.320000px;}
._1b_c00383{width:27.060000px;}
._c_c00383{width:29.100000px;}
._d_c00383{width:30.405000px;}
._1c_c00383{width:31.440000px;}
._17_c00383{width:34.965000px;}
._16_c00383{width:87.180000px;}
._20_c00383{width:411.840000px;}
.fc2_c00383{color:transparent;}
.fc1_c00383{color:rgb(128,128,128);}
.fc0_c00383{color:rgb(0,0,0);}
.fs2_c00383{font-size:48.000000px;}
.fs0_c00383{font-size:60.000000px;}
.fs3_c00383{font-size:69.000000px;}
.fs1_c00383{font-size:195.000000px;}
.y0_c00383{bottom:0.000000px;}
.y28_c00383{bottom:3.105000px;}
.y27_c00383{bottom:7.228357px;}
.y26_c00383{bottom:57.480000px;}
.y25_c00383{bottom:77.580000px;}
.y24_c00383{bottom:95.880000px;}
.y23_c00383{bottom:114.180000px;}
.y22_c00383{bottom:132.030000px;}
.y21_c00383{bottom:151.230000px;}
.y20_c00383{bottom:168.030000px;}
.y1f_c00383{bottom:185.730000px;}
.y1e_c00383{bottom:204.180000px;}
.y1d_c00383{bottom:222.780000px;}
.y1c_c00383{bottom:241.380000px;}
.y1b_c00383{bottom:258.630000px;}
.y1a_c00383{bottom:276.480000px;}
.y19_c00383{bottom:293.730000px;}
.y18_c00383{bottom:311.280000px;}
.y17_c00383{bottom:330.030000px;}
.y16_c00383{bottom:347.280000px;}
.y15_c00383{bottom:366.180000px;}
.y14_c00383{bottom:383.730000px;}
.y13_c00383{bottom:401.730000px;}
.y12_c00383{bottom:419.580000px;}
.y11_c00383{bottom:438.480000px;}
.y10_c00383{bottom:455.730000px;}
.yf_c00383{bottom:474.480000px;}
.ye_c00383{bottom:492.180000px;}
.yd_c00383{bottom:510.330000px;}
.yc_c00383{bottom:528.180000px;}
.yb_c00383{bottom:546.030000px;}
.ya_c00383{bottom:582.480000px;}
.y9_c00383{bottom:600.480000px;}
.y1_c00383{bottom:610.530000px;}
.y8_c00383{bottom:618.630000px;}
.y7_c00383{bottom:636.480000px;}
.y6_c00383{bottom:671.580000px;}
.y5_c00383{bottom:689.880000px;}
.y4_c00383{bottom:708.480000px;}
.y3_c00383{bottom:725.730000px;}
.y2_c00383{bottom:758.430000px;}
.h6_c00383{height:13.200074px;}
.h7_c00383{height:43.804688px;}
.h2_c00383{height:62.880000px;}
.h4_c00383{height:64.020000px;}
.h5_c00383{height:72.312000px;}
.h3_c00383{height:208.065000px;}
.h0_c00383{height:841.350000px;}
.h1_c00383{height:841.500000px;}
.w2_c00383{width:104.875500px;}
.w0_c00383{width:571.350000px;}
.w1_c00383{width:571.500000px;}
.x0_c00383{left:0.000000px;}
.x1_c00383{left:43.650000px;}
.x3_c00383{left:103.050000px;}
.xc_c00383{left:104.250000px;}
.xd_c00383{left:105.600000px;}
.xe_c00383{left:106.650000px;}
.xf_c00383{left:108.300000px;}
.x6_c00383{left:119.850000px;}
.x2_c00383{left:121.500000px;}
.x4_c00383{left:129.600000px;}
.xb_c00383{left:131.250000px;}
.x7_c00383{left:186.750000px;}
.x5_c00383{left:210.300000px;}
.x8_c00383{left:237.600000px;}
.x9_c00383{left:238.650000px;}
.xa_c00383{left:240.000000px;}
@media print{
.v0_c00383{vertical-align:0.000000pt;}
.ls1_c00383{letter-spacing:0.000000pt;}
.ls0_c00383{letter-spacing:2.666667pt;}
.ls2_c00383{letter-spacing:5.333333pt;}
.ws2_c00383{word-spacing:-16.053333pt;}
.ws1_c00383{word-spacing:-16.000000pt;}
.ws0_c00383{word-spacing:-12.586667pt;}
.ws3_c00383{word-spacing:0.000000pt;}
._23_c00383{margin-left:-17.480000pt;}
._1f_c00383{margin-left:-14.133333pt;}
._2_c00383{margin-left:-11.786667pt;}
._22_c00383{margin-left:-9.920000pt;}
._19_c00383{margin-left:-8.386667pt;}
._0_c00383{margin-left:-6.773333pt;}
._1e_c00383{margin-left:-5.546667pt;}
._1_c00383{margin-left:-4.640000pt;}
._21_c00383{margin-left:-3.746667pt;}
._a_c00383{margin-left:-2.773333pt;}
._b_c00383{margin-left:-1.733333pt;}
._15_c00383{width:0.906667pt;}
._14_c00383{width:1.973333pt;}
._8_c00383{width:3.640000pt;}
._13_c00383{width:5.106667pt;}
._3_c00383{width:6.240000pt;}
._4_c00383{width:7.280000pt;}
._5_c00383{width:8.493333pt;}
._7_c00383{width:9.706667pt;}
._6_c00383{width:10.920000pt;}
._9_c00383{width:12.480000pt;}
._e_c00383{width:13.973333pt;}
._f_c00383{width:15.000000pt;}
._18_c00383{width:15.946667pt;}
._10_c00383{width:17.146667pt;}
._1a_c00383{width:18.613333pt;}
._12_c00383{width:19.786667pt;}
._11_c00383{width:20.853333pt;}
._1d_c00383{width:22.506667pt;}
._1b_c00383{width:24.053333pt;}
._c_c00383{width:25.866667pt;}
._d_c00383{width:27.026667pt;}
._1c_c00383{width:27.946667pt;}
._17_c00383{width:31.080000pt;}
._16_c00383{width:77.493333pt;}
._20_c00383{width:366.080000pt;}
.fs2_c00383{font-size:42.666667pt;}
.fs0_c00383{font-size:53.333333pt;}
.fs3_c00383{font-size:61.333333pt;}
.fs1_c00383{font-size:173.333333pt;}
.y0_c00383{bottom:0.000000pt;}
.y28_c00383{bottom:2.760000pt;}
.y27_c00383{bottom:6.425206pt;}
.y26_c00383{bottom:51.093333pt;}
.y25_c00383{bottom:68.960000pt;}
.y24_c00383{bottom:85.226667pt;}
.y23_c00383{bottom:101.493333pt;}
.y22_c00383{bottom:117.360000pt;}
.y21_c00383{bottom:134.426667pt;}
.y20_c00383{bottom:149.360000pt;}
.y1f_c00383{bottom:165.093333pt;}
.y1e_c00383{bottom:181.493333pt;}
.y1d_c00383{bottom:198.026667pt;}
.y1c_c00383{bottom:214.560000pt;}
.y1b_c00383{bottom:229.893333pt;}
.y1a_c00383{bottom:245.760000pt;}
.y19_c00383{bottom:261.093333pt;}
.y18_c00383{bottom:276.693333pt;}
.y17_c00383{bottom:293.360000pt;}
.y16_c00383{bottom:308.693333pt;}
.y15_c00383{bottom:325.493333pt;}
.y14_c00383{bottom:341.093333pt;}
.y13_c00383{bottom:357.093333pt;}
.y12_c00383{bottom:372.960000pt;}
.y11_c00383{bottom:389.760000pt;}
.y10_c00383{bottom:405.093333pt;}
.yf_c00383{bottom:421.760000pt;}
.ye_c00383{bottom:437.493333pt;}
.yd_c00383{bottom:453.626667pt;}
.yc_c00383{bottom:469.493333pt;}
.yb_c00383{bottom:485.360000pt;}
.ya_c00383{bottom:517.760000pt;}
.y9_c00383{bottom:533.760000pt;}
.y1_c00383{bottom:542.693333pt;}
.y8_c00383{bottom:549.893333pt;}
.y7_c00383{bottom:565.760000pt;}
.y6_c00383{bottom:596.960000pt;}
.y5_c00383{bottom:613.226667pt;}
.y4_c00383{bottom:629.760000pt;}
.y3_c00383{bottom:645.093333pt;}
.y2_c00383{bottom:674.160000pt;}
.h6_c00383{height:11.733399pt;}
.h7_c00383{height:38.937500pt;}
.h2_c00383{height:55.893333pt;}
.h4_c00383{height:56.906667pt;}
.h5_c00383{height:64.277333pt;}
.h3_c00383{height:184.946667pt;}
.h0_c00383{height:747.866667pt;}
.h1_c00383{height:748.000000pt;}
.w2_c00383{width:93.222667pt;}
.w0_c00383{width:507.866667pt;}
.w1_c00383{width:508.000000pt;}
.x0_c00383{left:0.000000pt;}
.x1_c00383{left:38.800000pt;}
.x3_c00383{left:91.600000pt;}
.xc_c00383{left:92.666667pt;}
.xd_c00383{left:93.866667pt;}
.xe_c00383{left:94.800000pt;}
.xf_c00383{left:96.266667pt;}
.x6_c00383{left:106.533333pt;}
.x2_c00383{left:108.000000pt;}
.x4_c00383{left:115.200000pt;}
.xb_c00383{left:116.666667pt;}
.x7_c00383{left:166.000000pt;}
.x5_c00383{left:186.933333pt;}
.x8_c00383{left:211.200000pt;}
.x9_c00383{left:212.133333pt;}
.xa_c00383{left:213.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_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_ad533b4eb140c673d6598d9b.woff2')format("woff");}.ff1_c00384{font-family:ff1_c00384;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00384;src:url('chunks/assets/font_67c3fbe4f6ba3a44fa635d83.woff2')format("woff");}.ff2_c00384{font-family:ff2_c00384;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00384;src:url('chunks/assets/font_81ede89086cc89cd37e7362a.woff2')format("woff");}.ff3_c00384{font-family:ff3_c00384;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00384;src:url('chunks/assets/font_a05d4587deb74520e61d854c.woff2')format("woff");}.ff4_c00384{font-family:ff4_c00384;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00384;src:url('chunks/assets/font_ddaf37c7c662b51c3ed02d0f.woff2')format("woff");}.ff5_c00384{font-family:ff5_c00384;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00384;src:url('chunks/assets/font_53970840027122674b0aca81.woff2')format("woff");}.ff6_c00384{font-family:ff6_c00384;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00384;src:url('chunks/assets/font_3de8bff2552841380be83236.woff2')format("woff");}.ff7_c00384{font-family:ff7_c00384;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00384;src:url('chunks/assets/font_9b903963da776918b8805394.woff2')format("woff");}.ff8_c00384{font-family:ff8_c00384;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00384;src:url('chunks/assets/font_b0f3e9874f3775645882f395.woff2')format("woff");}.ff9_c00384{font-family:ff9_c00384;line-height:1.575000;font-style:normal;font-weight: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_c00384;src:url('chunks/assets/font_ab99a30a53258170a75f44f5.woff2')format("woff");}.ffa_c00384{font-family:ffa_c00384;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00384;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ffb_c00384{font-family:ffb_c00384;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00384{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00384{vertical-align:0.000000px;}
.v2_c00384{vertical-align:82.200000px;}
.v1_c00384{vertical-align:110.400000px;}
.ls8_c00384{letter-spacing:-27.000000px;}
.ls7_c00384{letter-spacing:0.000000px;}
.ls0_c00384{letter-spacing:1.200000px;}
.ls4_c00384{letter-spacing:1.860000px;}
.ls5_c00384{letter-spacing:3.000000px;}
.ls2_c00384{letter-spacing:5.400000px;}
.ls6_c00384{letter-spacing:6.000000px;}
.ls3_c00384{letter-spacing:9.000000px;}
.ls1_c00384{letter-spacing:25.605000px;}
.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:-51.957000px;}
.ws5_c00384{word-spacing:-31.746000px;}
.ws6_c00384{word-spacing:-26.463000px;}
.ws2_c00384{word-spacing:-20.340000px;}
.ws3_c00384{word-spacing:-16.020000px;}
.ws4_c00384{word-spacing:-14.160000px;}
.ws7_c00384{word-spacing:0.000000px;}
.ws1_c00384{word-spacing:0.888000px;}
._1e_c00384{margin-left:-24.240000px;}
._12_c00384{margin-left:-17.880000px;}
._1a_c00384{margin-left:-15.240000px;}
._2b_c00384{margin-left:-12.720000px;}
._18_c00384{margin-left:-10.500000px;}
._20_c00384{margin-left:-8.847000px;}
._1b_c00384{margin-left:-7.800000px;}
._9_c00384{margin-left:-5.973000px;}
._17_c00384{margin-left:-4.260000px;}
._8_c00384{margin-left:-2.760000px;}
._7_c00384{margin-left:-1.320000px;}
._4_c00384{width:1.080000px;}
._2_c00384{width:2.340000px;}
._1_c00384{width:3.480000px;}
._0_c00384{width:4.500000px;}
._3_c00384{width:5.820000px;}
._6_c00384{width:7.020000px;}
._d_c00384{width:8.520000px;}
._11_c00384{width:9.756000px;}
._5_c00384{width:11.040000px;}
._a_c00384{width:12.900000px;}
._1c_c00384{width:14.064000px;}
._c_c00384{width:15.180000px;}
._25_c00384{width:16.920000px;}
._e_c00384{width:18.840000px;}
._21_c00384{width:19.968000px;}
._15_c00384{width:21.780000px;}
._b_c00384{width:23.340000px;}
._13_c00384{width:25.593000px;}
._16_c00384{width:26.913000px;}
._14_c00384{width:29.304000px;}
._26_c00384{width:31.200000px;}
._30_c00384{width:32.280000px;}
._19_c00384{width:33.480000px;}
._10_c00384{width:35.532000px;}
._f_c00384{width:36.840000px;}
._27_c00384{width:38.646000px;}
._28_c00384{width:41.280000px;}
._2f_c00384{width:44.580000px;}
._2c_c00384{width:46.080000px;}
._2d_c00384{width:47.880000px;}
._2e_c00384{width:51.048000px;}
._1f_c00384{width:62.400000px;}
._22_c00384{width:68.580000px;}
._29_c00384{width:72.540000px;}
._31_c00384{width:131.562000px;}
._24_c00384{width:143.340000px;}
._23_c00384{width:183.372000px;}
._1d_c00384{width:270.912000px;}
._2a_c00384{width:281.628000px;}
.fc2_c00384{color:transparent;}
.fc1_c00384{color:rgb(128,128,128);}
.fc0_c00384{color:rgb(0,0,0);}
.fs2_c00384{font-size:24.000000px;}
.fs3_c00384{font-size:45.000000px;}
.fs9_c00384{font-size:48.000000px;}
.fs5_c00384{font-size:54.000000px;}
.fs4_c00384{font-size:57.000000px;}
.fs0_c00384{font-size:60.000000px;}
.fs7_c00384{font-size:63.000000px;}
.fs6_c00384{font-size:66.000000px;}
.fs1_c00384{font-size:207.000000px;}
.fs8_c00384{font-size:213.000000px;}
.y0_c00384{bottom:0.000000px;}
.y4d_c00384{bottom:3.105000px;}
.y4c_c00384{bottom:7.228369px;}
.y4b_c00384{bottom:25.620000px;}
.y4a_c00384{bottom:43.920000px;}
.y27_c00384{bottom:44.820000px;}
.y49_c00384{bottom:62.370000px;}
.y26_c00384{bottom:63.420000px;}
.y48_c00384{bottom:80.370000px;}
.y25_c00384{bottom:81.570000px;}
.y47_c00384{bottom:97.920000px;}
.y24_c00384{bottom:100.170000px;}
.y46_c00384{bottom:116.070000px;}
.y23_c00384{bottom:118.020000px;}
.y45_c00384{bottom:134.370000px;}
.y22_c00384{bottom:134.970000px;}
.y44_c00384{bottom:152.220000px;}
.y21_c00384{bottom:153.870000px;}
.y43_c00384{bottom:170.370000px;}
.y20_c00384{bottom:172.170000px;}
.y42_c00384{bottom:188.220000px;}
.y1f_c00384{bottom:191.370000px;}
.y41_c00384{bottom:206.220000px;}
.y1e_c00384{bottom:207.270000px;}
.y40_c00384{bottom:223.770000px;}
.y1d_c00384{bottom:226.020000px;}
.y3f_c00384{bottom:242.220000px;}
.y1c_c00384{bottom:244.020000px;}
.y3e_c00384{bottom:261.120000px;}
.y1b_c00384{bottom:261.570000px;}
.y3d_c00384{bottom:278.670000px;}
.y1a_c00384{bottom:279.720000px;}
.y3c_c00384{bottom:295.620000px;}
.y19_c00384{bottom:297.720000px;}
.y3b_c00384{bottom:315.120000px;}
.y18_c00384{bottom:315.570000px;}
.y3a_c00384{bottom:332.820000px;}
.y17_c00384{bottom:333.120000px;}
.y39_c00384{bottom:350.370000px;}
.y16_c00384{bottom:351.720000px;}
.y38_c00384{bottom:367.770000px;}
.y15_c00384{bottom:369.570000px;}
.y37_c00384{bottom:386.070000px;}
.y14_c00384{bottom:387.420000px;}
.y36_c00384{bottom:404.220000px;}
.y13_c00384{bottom:405.420000px;}
.y35_c00384{bottom:422.220000px;}
.y12_c00384{bottom:423.270000px;}
.y33_c00384{bottom:437.370000px;}
.y34_c00384{bottom:440.370000px;}
.y11_c00384{bottom:441.120000px;}
.y10_c00384{bottom:458.970000px;}
.yf_c00384{bottom:476.820000px;}
.ye_c00384{bottom:494.370000px;}
.y32_c00384{bottom:494.670000px;}
.yd_c00384{bottom:511.320000px;}
.y31_c00384{bottom:512.670000px;}
.yc_c00384{bottom:528.870000px;}
.y30_c00384{bottom:529.920000px;}
.yb_c00384{bottom:547.470000px;}
.y2f_c00384{bottom:548.670000px;}
.ya_c00384{bottom:565.320000px;}
.y2e_c00384{bottom:566.670000px;}
.y9_c00384{bottom:583.170000px;}
.y2d_c00384{bottom:584.820000px;}
.y8_c00384{bottom:601.020000px;}
.y2c_c00384{bottom:602.370000px;}
.y7_c00384{bottom:619.320000px;}
.y6_c00384{bottom:636.870000px;}
.y2b_c00384{bottom:637.770000px;}
.y5_c00384{bottom:655.320000px;}
.y4_c00384{bottom:672.870000px;}
.y2a_c00384{bottom:673.020000px;}
.y2_c00384{bottom:681.420000px;}
.y3_c00384{bottom:691.470000px;}
.y29_c00384{bottom:692.220000px;}
.y28_c00384{bottom:710.370000px;}
.y1_c00384{bottom:745.470000px;}
.h9_c00384{height:13.200073px;}
.h4_c00384{height:30.386719px;}
.ha_c00384{height:43.804688px;}
.h2_c00384{height:62.880000px;}
.h5_c00384{height:64.020000px;}
.h8_c00384{height:69.168000px;}
.h6_c00384{height:70.422000px;}
.h3_c00384{height:216.936000px;}
.h7_c00384{height:223.224000px;}
.h1_c00384{height:810.750000px;}
.h0_c00384{height:811.050000px;}
.w2_c00384{width:104.875500px;}
.w0_c00384{width:563.775000px;}
.w1_c00384{width:564.000000px;}
.x0_c00384{left:0.000000px;}
.x6_c00384{left:17.250000px;}
.x5_c00384{left:18.300000px;}
.x9_c00384{left:77.850000px;}
.x8_c00384{left:78.900000px;}
.x7_c00384{left:80.250000px;}
.x2_c00384{left:81.300000px;}
.x4_c00384{left:82.350000px;}
.x3_c00384{left:109.350000px;}
.x1_c00384{left:143.850000px;}
.x15_c00384{left:233.701767px;}
.x13_c00384{left:294.000000px;}
.x11_c00384{left:296.550000px;}
.xa_c00384{left:297.600000px;}
.xb_c00384{left:298.650000px;}
.xd_c00384{left:315.900000px;}
.xe_c00384{left:333.750000px;}
.x12_c00384{left:337.800000px;}
.xf_c00384{left:359.400000px;}
.xc_c00384{left:379.350000px;}
.x10_c00384{left:384.900000px;}
.x14_c00384{left:396.150000px;}
@media print{
.v0_c00384{vertical-align:0.000000pt;}
.v2_c00384{vertical-align:73.066667pt;}
.v1_c00384{vertical-align:98.133333pt;}
.ls8_c00384{letter-spacing:-24.000000pt;}
.ls7_c00384{letter-spacing:0.000000pt;}
.ls0_c00384{letter-spacing:1.066667pt;}
.ls4_c00384{letter-spacing:1.653333pt;}
.ls5_c00384{letter-spacing:2.666667pt;}
.ls2_c00384{letter-spacing:4.800000pt;}
.ls6_c00384{letter-spacing:5.333333pt;}
.ls3_c00384{letter-spacing:8.000000pt;}
.ls1_c00384{letter-spacing:22.760000pt;}
.ws0_c00384{word-spacing:-46.184000pt;}
.ws5_c00384{word-spacing:-28.218667pt;}
.ws6_c00384{word-spacing:-23.522667pt;}
.ws2_c00384{word-spacing:-18.080000pt;}
.ws3_c00384{word-spacing:-14.240000pt;}
.ws4_c00384{word-spacing:-12.586667pt;}
.ws7_c00384{word-spacing:0.000000pt;}
.ws1_c00384{word-spacing:0.789333pt;}
._1e_c00384{margin-left:-21.546667pt;}
._12_c00384{margin-left:-15.893333pt;}
._1a_c00384{margin-left:-13.546667pt;}
._2b_c00384{margin-left:-11.306667pt;}
._18_c00384{margin-left:-9.333333pt;}
._20_c00384{margin-left:-7.864000pt;}
._1b_c00384{margin-left:-6.933333pt;}
._9_c00384{margin-left:-5.309333pt;}
._17_c00384{margin-left:-3.786667pt;}
._8_c00384{margin-left:-2.453333pt;}
._7_c00384{margin-left:-1.173333pt;}
._4_c00384{width:0.960000pt;}
._2_c00384{width:2.080000pt;}
._1_c00384{width:3.093333pt;}
._0_c00384{width:4.000000pt;}
._3_c00384{width:5.173333pt;}
._6_c00384{width:6.240000pt;}
._d_c00384{width:7.573333pt;}
._11_c00384{width:8.672000pt;}
._5_c00384{width:9.813333pt;}
._a_c00384{width:11.466667pt;}
._1c_c00384{width:12.501333pt;}
._c_c00384{width:13.493333pt;}
._25_c00384{width:15.040000pt;}
._e_c00384{width:16.746667pt;}
._21_c00384{width:17.749333pt;}
._15_c00384{width:19.360000pt;}
._b_c00384{width:20.746667pt;}
._13_c00384{width:22.749333pt;}
._16_c00384{width:23.922667pt;}
._14_c00384{width:26.048000pt;}
._26_c00384{width:27.733333pt;}
._30_c00384{width:28.693333pt;}
._19_c00384{width:29.760000pt;}
._10_c00384{width:31.584000pt;}
._f_c00384{width:32.746667pt;}
._27_c00384{width:34.352000pt;}
._28_c00384{width:36.693333pt;}
._2f_c00384{width:39.626667pt;}
._2c_c00384{width:40.960000pt;}
._2d_c00384{width:42.560000pt;}
._2e_c00384{width:45.376000pt;}
._1f_c00384{width:55.466667pt;}
._22_c00384{width:60.960000pt;}
._29_c00384{width:64.480000pt;}
._31_c00384{width:116.944000pt;}
._24_c00384{width:127.413333pt;}
._23_c00384{width:162.997333pt;}
._1d_c00384{width:240.810667pt;}
._2a_c00384{width:250.336000pt;}
.fs2_c00384{font-size:21.333333pt;}
.fs3_c00384{font-size:40.000000pt;}
.fs9_c00384{font-size:42.666667pt;}
.fs5_c00384{font-size:48.000000pt;}
.fs4_c00384{font-size:50.666667pt;}
.fs0_c00384{font-size:53.333333pt;}
.fs7_c00384{font-size:56.000000pt;}
.fs6_c00384{font-size:58.666667pt;}
.fs1_c00384{font-size:184.000000pt;}
.fs8_c00384{font-size:189.333333pt;}
.y0_c00384{bottom:0.000000pt;}
.y4d_c00384{bottom:2.760000pt;}
.y4c_c00384{bottom:6.425217pt;}
.y4b_c00384{bottom:22.773333pt;}
.y4a_c00384{bottom:39.040000pt;}
.y27_c00384{bottom:39.840000pt;}
.y49_c00384{bottom:55.440000pt;}
.y26_c00384{bottom:56.373333pt;}
.y48_c00384{bottom:71.440000pt;}
.y25_c00384{bottom:72.506667pt;}
.y47_c00384{bottom:87.040000pt;}
.y24_c00384{bottom:89.040000pt;}
.y46_c00384{bottom:103.173333pt;}
.y23_c00384{bottom:104.906667pt;}
.y45_c00384{bottom:119.440000pt;}
.y22_c00384{bottom:119.973333pt;}
.y44_c00384{bottom:135.306667pt;}
.y21_c00384{bottom:136.773333pt;}
.y43_c00384{bottom:151.440000pt;}
.y20_c00384{bottom:153.040000pt;}
.y42_c00384{bottom:167.306667pt;}
.y1f_c00384{bottom:170.106667pt;}
.y41_c00384{bottom:183.306667pt;}
.y1e_c00384{bottom:184.240000pt;}
.y40_c00384{bottom:198.906667pt;}
.y1d_c00384{bottom:200.906667pt;}
.y3f_c00384{bottom:215.306667pt;}
.y1c_c00384{bottom:216.906667pt;}
.y3e_c00384{bottom:232.106667pt;}
.y1b_c00384{bottom:232.506667pt;}
.y3d_c00384{bottom:247.706667pt;}
.y1a_c00384{bottom:248.640000pt;}
.y3c_c00384{bottom:262.773333pt;}
.y19_c00384{bottom:264.640000pt;}
.y3b_c00384{bottom:280.106667pt;}
.y18_c00384{bottom:280.506667pt;}
.y3a_c00384{bottom:295.840000pt;}
.y17_c00384{bottom:296.106667pt;}
.y39_c00384{bottom:311.440000pt;}
.y16_c00384{bottom:312.640000pt;}
.y38_c00384{bottom:326.906667pt;}
.y15_c00384{bottom:328.506667pt;}
.y37_c00384{bottom:343.173333pt;}
.y14_c00384{bottom:344.373333pt;}
.y36_c00384{bottom:359.306667pt;}
.y13_c00384{bottom:360.373333pt;}
.y35_c00384{bottom:375.306667pt;}
.y12_c00384{bottom:376.240000pt;}
.y33_c00384{bottom:388.773333pt;}
.y34_c00384{bottom:391.440000pt;}
.y11_c00384{bottom:392.106667pt;}
.y10_c00384{bottom:407.973333pt;}
.yf_c00384{bottom:423.840000pt;}
.ye_c00384{bottom:439.440000pt;}
.y32_c00384{bottom:439.706667pt;}
.yd_c00384{bottom:454.506667pt;}
.y31_c00384{bottom:455.706667pt;}
.yc_c00384{bottom:470.106667pt;}
.y30_c00384{bottom:471.040000pt;}
.yb_c00384{bottom:486.640000pt;}
.y2f_c00384{bottom:487.706667pt;}
.ya_c00384{bottom:502.506667pt;}
.y2e_c00384{bottom:503.706667pt;}
.y9_c00384{bottom:518.373333pt;}
.y2d_c00384{bottom:519.840000pt;}
.y8_c00384{bottom:534.240000pt;}
.y2c_c00384{bottom:535.440000pt;}
.y7_c00384{bottom:550.506667pt;}
.y6_c00384{bottom:566.106667pt;}
.y2b_c00384{bottom:566.906667pt;}
.y5_c00384{bottom:582.506667pt;}
.y4_c00384{bottom:598.106667pt;}
.y2a_c00384{bottom:598.240000pt;}
.y2_c00384{bottom:605.706667pt;}
.y3_c00384{bottom:614.640000pt;}
.y29_c00384{bottom:615.306667pt;}
.y28_c00384{bottom:631.440000pt;}
.y1_c00384{bottom:662.640000pt;}
.h9_c00384{height:11.733399pt;}
.h4_c00384{height:27.010417pt;}
.ha_c00384{height:38.937500pt;}
.h2_c00384{height:55.893333pt;}
.h5_c00384{height:56.906667pt;}
.h8_c00384{height:61.482667pt;}
.h6_c00384{height:62.597333pt;}
.h3_c00384{height:192.832000pt;}
.h7_c00384{height:198.421333pt;}
.h1_c00384{height:720.666667pt;}
.h0_c00384{height:720.933333pt;}
.w2_c00384{width:93.222667pt;}
.w0_c00384{width:501.133333pt;}
.w1_c00384{width:501.333333pt;}
.x0_c00384{left:0.000000pt;}
.x6_c00384{left:15.333333pt;}
.x5_c00384{left:16.266667pt;}
.x9_c00384{left:69.200000pt;}
.x8_c00384{left:70.133333pt;}
.x7_c00384{left:71.333333pt;}
.x2_c00384{left:72.266667pt;}
.x4_c00384{left:73.200000pt;}
.x3_c00384{left:97.200000pt;}
.x1_c00384{left:127.866667pt;}
.x15_c00384{left:207.734904pt;}
.x13_c00384{left:261.333333pt;}
.x11_c00384{left:263.600000pt;}
.xa_c00384{left:264.533333pt;}
.xb_c00384{left:265.466667pt;}
.xd_c00384{left:280.800000pt;}
.xe_c00384{left:296.666667pt;}
.x12_c00384{left:300.266667pt;}
.xf_c00384{left:319.466667pt;}
.xc_c00384{left:337.200000pt;}
.x10_c00384{left:342.133333pt;}
.x14_c00384{left:352.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_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_4305357c54991c36eb2f927c.woff2')format("woff");}.ff1_c00385{font-family:ff1_c00385;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00385;src:url('chunks/assets/font_a1cfd9742bdbd7d2b5fa3282.woff2')format("woff");}.ff2_c00385{font-family:ff2_c00385;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00385;src:url('chunks/assets/font_081a32c9a1b9d7a7527d47e6.woff2')format("woff");}.ff3_c00385{font-family:ff3_c00385;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00385;src:url('chunks/assets/font_089510d0d6d8c3460deb1b9c.woff2')format("woff");}.ff4_c00385{font-family:ff4_c00385;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00385;src:url('chunks/assets/font_c0e8b332b467c4324ebc69c7.woff2')format("woff");}.ff5_c00385{font-family:ff5_c00385;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00385;src:url('chunks/assets/font_b26023aef2fdf7cfa6da0400.woff2')format("woff");}.ff6_c00385{font-family:ff6_c00385;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00385;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff7_c00385{font-family:ff7_c00385;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00385{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00385{vertical-align:0.000000px;}
.ls5_c00385{letter-spacing:0.000000px;}
.ls0_c00385{letter-spacing:3.000000px;}
.ls4_c00385{letter-spacing:6.000000px;}
.ls1_c00385{letter-spacing:7.800000px;}
.ls2_c00385{letter-spacing:12.000000px;}
.ls3_c00385{letter-spacing:29.850000px;}
.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;}
}
.ws2_c00385{word-spacing:-27.576000px;}
.ws3_c00385{word-spacing:-20.340000px;}
.ws6_c00385{word-spacing:-18.060000px;}
.ws1_c00385{word-spacing:-15.576000px;}
.ws5_c00385{word-spacing:-14.160000px;}
.ws0_c00385{word-spacing:-13.452000px;}
.ws4_c00385{word-spacing:-4.020000px;}
.ws7_c00385{word-spacing:0.000000px;}
._1b_c00385{margin-left:-20.406000px;}
._24_c00385{margin-left:-17.337000px;}
._19_c00385{margin-left:-16.212000px;}
._1a_c00385{margin-left:-14.412000px;}
._17_c00385{margin-left:-13.398000px;}
._18_c00385{margin-left:-12.246000px;}
._11_c00385{margin-left:-10.317000px;}
._10_c00385{margin-left:-9.234000px;}
._13_c00385{margin-left:-8.103000px;}
._e_c00385{margin-left:-6.105000px;}
._d_c00385{margin-left:-4.575000px;}
._a_c00385{margin-left:-3.105000px;}
._5_c00385{margin-left:-1.440000px;}
._7_c00385{width:1.710000px;}
._f_c00385{width:3.384000px;}
._14_c00385{width:4.932000px;}
._b_c00385{width:6.042000px;}
._9_c00385{width:7.584000px;}
._c_c00385{width:9.204000px;}
._15_c00385{width:10.467000px;}
._23_c00385{width:11.700000px;}
._12_c00385{width:12.780000px;}
._6_c00385{width:14.040000px;}
._8_c00385{width:15.390000px;}
._0_c00385{width:16.800000px;}
._3_c00385{width:19.380000px;}
._1_c00385{width:21.120000px;}
._20_c00385{width:22.662000px;}
._4_c00385{width:24.060000px;}
._22_c00385{width:25.203000px;}
._2_c00385{width:28.800000px;}
._26_c00385{width:30.498000px;}
._1e_c00385{width:33.504000px;}
._28_c00385{width:35.415000px;}
._1d_c00385{width:36.660000px;}
._21_c00385{width:39.012000px;}
._1f_c00385{width:45.180000px;}
._25_c00385{width:47.346000px;}
._1c_c00385{width:54.936000px;}
._16_c00385{width:96.768000px;}
._27_c00385{width:113.373000px;}
.fc2_c00385{color:transparent;}
.fc1_c00385{color:rgb(128,128,128);}
.fc0_c00385{color:rgb(0,0,0);}
.fs6_c00385{font-size:48.000000px;}
.fs2_c00385{font-size:54.000000px;}
.fs1_c00385{font-size:57.000000px;}
.fs0_c00385{font-size:60.000000px;}
.fs4_c00385{font-size:63.000000px;}
.fs3_c00385{font-size:66.000000px;}
.fs5_c00385{font-size:75.000000px;}
.y0_c00385{bottom:0.000000px;}
.y57_c00385{bottom:3.105000px;}
.y56_c00385{bottom:7.228369px;}
.y55_c00385{bottom:34.470000px;}
.y54_c00385{bottom:51.870000px;}
.y2a_c00385{bottom:54.270000px;}
.y53_c00385{bottom:70.470000px;}
.y29_c00385{bottom:73.170000px;}
.y52_c00385{bottom:88.770000px;}
.y28_c00385{bottom:90.420000px;}
.y51_c00385{bottom:106.320000px;}
.y27_c00385{bottom:109.320000px;}
.y50_c00385{bottom:124.770000px;}
.y26_c00385{bottom:128.220000px;}
.y4f_c00385{bottom:142.470000px;}
.y25_c00385{bottom:145.620000px;}
.y4e_c00385{bottom:160.920000px;}
.y24_c00385{bottom:163.620000px;}
.y4d_c00385{bottom:178.470000px;}
.y23_c00385{bottom:181.620000px;}
.y4c_c00385{bottom:196.470000px;}
.y22_c00385{bottom:199.770000px;}
.y4b_c00385{bottom:215.220000px;}
.y21_c00385{bottom:218.970000px;}
.y4a_c00385{bottom:232.920000px;}
.y20_c00385{bottom:236.220000px;}
.y49_c00385{bottom:251.070000px;}
.y1f_c00385{bottom:254.370000px;}
.y48_c00385{bottom:269.220000px;}
.y1e_c00385{bottom:272.370000px;}
.y47_c00385{bottom:286.770000px;}
.y1d_c00385{bottom:289.920000px;}
.y46_c00385{bottom:304.020000px;}
.y1c_c00385{bottom:308.070000px;}
.y45_c00385{bottom:322.020000px;}
.y1b_c00385{bottom:326.670000px;}
.y44_c00385{bottom:340.920000px;}
.y1a_c00385{bottom:344.820000px;}
.y43_c00385{bottom:358.770000px;}
.y19_c00385{bottom:362.520000px;}
.y42_c00385{bottom:376.920000px;}
.y18_c00385{bottom:380.670000px;}
.y41_c00385{bottom:395.220000px;}
.y17_c00385{bottom:398.220000px;}
.y40_c00385{bottom:413.070000px;}
.y16_c00385{bottom:416.820000px;}
.y3f_c00385{bottom:430.920000px;}
.y15_c00385{bottom:434.670000px;}
.y3e_c00385{bottom:448.770000px;}
.y14_c00385{bottom:452.820000px;}
.y3d_c00385{bottom:466.770000px;}
.y13_c00385{bottom:470.820000px;}
.y3c_c00385{bottom:484.770000px;}
.y12_c00385{bottom:489.270000px;}
.y3b_c00385{bottom:502.920000px;}
.y11_c00385{bottom:506.970000px;}
.y3a_c00385{bottom:521.070000px;}
.y10_c00385{bottom:525.120000px;}
.y39_c00385{bottom:539.220000px;}
.yf_c00385{bottom:542.970000px;}
.y38_c00385{bottom:556.770000px;}
.ye_c00385{bottom:560.820000px;}
.y37_c00385{bottom:575.670000px;}
.yd_c00385{bottom:577.770000px;}
.y36_c00385{bottom:592.920000px;}
.yc_c00385{bottom:596.970000px;}
.y35_c00385{bottom:612.120000px;}
.yb_c00385{bottom:614.820000px;}
.y34_c00385{bottom:629.670000px;}
.ya_c00385{bottom:632.520000px;}
.y33_c00385{bottom:647.970000px;}
.y9_c00385{bottom:650.070000px;}
.y32_c00385{bottom:666.570000px;}
.y8_c00385{bottom:668.820000px;}
.y31_c00385{bottom:684.420000px;}
.y7_c00385{bottom:686.820000px;}
.y30_c00385{bottom:702.270000px;}
.y6_c00385{bottom:703.620000px;}
.y2f_c00385{bottom:720.870000px;}
.y5_c00385{bottom:722.220000px;}
.y2e_c00385{bottom:737.820000px;}
.y4_c00385{bottom:740.070000px;}
.y2d_c00385{bottom:756.570000px;}
.y3_c00385{bottom:758.370000px;}
.y2c_c00385{bottom:775.170000px;}
.y2_c00385{bottom:775.620000px;}
.y2b_c00385{bottom:793.020000px;}
.y1_c00385{bottom:796.170000px;}
.h8_c00385{height:13.200073px;}
.h9_c00385{height:43.804688px;}
.h4_c00385{height:56.592000px;}
.h3_c00385{height:59.736000px;}
.h2_c00385{height:62.880000px;}
.h6_c00385{height:64.020000px;}
.h5_c00385{height:69.168000px;}
.h7_c00385{height:78.600000px;}
.h0_c00385{height:835.350000px;}
.h1_c00385{height:835.500000px;}
.w1_c00385{width:104.875500px;}
.w0_c00385{width:567.000000px;}
.x0_c00385{left:0.000000px;}
.x5_c00385{left:15.600000px;}
.x9_c00385{left:46.950000px;}
.x7_c00385{left:73.200000px;}
.x8_c00385{left:74.550000px;}
.x6_c00385{left:76.050000px;}
.x3_c00385{left:77.250000px;}
.xa_c00385{left:78.600000px;}
.x2_c00385{left:79.650000px;}
.x4_c00385{left:102.600000px;}
.x1_c00385{left:165.450000px;}
.x12_c00385{left:235.314240px;}
.xb_c00385{left:275.850000px;}
.xd_c00385{left:285.150000px;}
.xf_c00385{left:295.950000px;}
.xe_c00385{left:297.000000px;}
.xc_c00385{left:298.350000px;}
.x10_c00385{left:323.400000px;}
.x11_c00385{left:468.150000px;}
@media print{
.v0_c00385{vertical-align:0.000000pt;}
.ls5_c00385{letter-spacing:0.000000pt;}
.ls0_c00385{letter-spacing:2.666667pt;}
.ls4_c00385{letter-spacing:5.333333pt;}
.ls1_c00385{letter-spacing:6.933333pt;}
.ls2_c00385{letter-spacing:10.666667pt;}
.ls3_c00385{letter-spacing:26.533333pt;}
.ws2_c00385{word-spacing:-24.512000pt;}
.ws3_c00385{word-spacing:-18.080000pt;}
.ws6_c00385{word-spacing:-16.053333pt;}
.ws1_c00385{word-spacing:-13.845333pt;}
.ws5_c00385{word-spacing:-12.586667pt;}
.ws0_c00385{word-spacing:-11.957333pt;}
.ws4_c00385{word-spacing:-3.573333pt;}
.ws7_c00385{word-spacing:0.000000pt;}
._1b_c00385{margin-left:-18.138667pt;}
._24_c00385{margin-left:-15.410667pt;}
._19_c00385{margin-left:-14.410667pt;}
._1a_c00385{margin-left:-12.810667pt;}
._17_c00385{margin-left:-11.909333pt;}
._18_c00385{margin-left:-10.885333pt;}
._11_c00385{margin-left:-9.170667pt;}
._10_c00385{margin-left:-8.208000pt;}
._13_c00385{margin-left:-7.202667pt;}
._e_c00385{margin-left:-5.426667pt;}
._d_c00385{margin-left:-4.066667pt;}
._a_c00385{margin-left:-2.760000pt;}
._5_c00385{margin-left:-1.280000pt;}
._7_c00385{width:1.520000pt;}
._f_c00385{width:3.008000pt;}
._14_c00385{width:4.384000pt;}
._b_c00385{width:5.370667pt;}
._9_c00385{width:6.741333pt;}
._c_c00385{width:8.181333pt;}
._15_c00385{width:9.304000pt;}
._23_c00385{width:10.400000pt;}
._12_c00385{width:11.360000pt;}
._6_c00385{width:12.480000pt;}
._8_c00385{width:13.680000pt;}
._0_c00385{width:14.933333pt;}
._3_c00385{width:17.226667pt;}
._1_c00385{width:18.773333pt;}
._20_c00385{width:20.144000pt;}
._4_c00385{width:21.386667pt;}
._22_c00385{width:22.402667pt;}
._2_c00385{width:25.600000pt;}
._26_c00385{width:27.109333pt;}
._1e_c00385{width:29.781333pt;}
._28_c00385{width:31.480000pt;}
._1d_c00385{width:32.586667pt;}
._21_c00385{width:34.677333pt;}
._1f_c00385{width:40.160000pt;}
._25_c00385{width:42.085333pt;}
._1c_c00385{width:48.832000pt;}
._16_c00385{width:86.016000pt;}
._27_c00385{width:100.776000pt;}
.fs6_c00385{font-size:42.666667pt;}
.fs2_c00385{font-size:48.000000pt;}
.fs1_c00385{font-size:50.666667pt;}
.fs0_c00385{font-size:53.333333pt;}
.fs4_c00385{font-size:56.000000pt;}
.fs3_c00385{font-size:58.666667pt;}
.fs5_c00385{font-size:66.666667pt;}
.y0_c00385{bottom:0.000000pt;}
.y57_c00385{bottom:2.760000pt;}
.y56_c00385{bottom:6.425217pt;}
.y55_c00385{bottom:30.640000pt;}
.y54_c00385{bottom:46.106667pt;}
.y2a_c00385{bottom:48.240000pt;}
.y53_c00385{bottom:62.640000pt;}
.y29_c00385{bottom:65.040000pt;}
.y52_c00385{bottom:78.906667pt;}
.y28_c00385{bottom:80.373333pt;}
.y51_c00385{bottom:94.506667pt;}
.y27_c00385{bottom:97.173333pt;}
.y50_c00385{bottom:110.906667pt;}
.y26_c00385{bottom:113.973333pt;}
.y4f_c00385{bottom:126.640000pt;}
.y25_c00385{bottom:129.440000pt;}
.y4e_c00385{bottom:143.040000pt;}
.y24_c00385{bottom:145.440000pt;}
.y4d_c00385{bottom:158.640000pt;}
.y23_c00385{bottom:161.440000pt;}
.y4c_c00385{bottom:174.640000pt;}
.y22_c00385{bottom:177.573333pt;}
.y4b_c00385{bottom:191.306667pt;}
.y21_c00385{bottom:194.640000pt;}
.y4a_c00385{bottom:207.040000pt;}
.y20_c00385{bottom:209.973333pt;}
.y49_c00385{bottom:223.173333pt;}
.y1f_c00385{bottom:226.106667pt;}
.y48_c00385{bottom:239.306667pt;}
.y1e_c00385{bottom:242.106667pt;}
.y47_c00385{bottom:254.906667pt;}
.y1d_c00385{bottom:257.706667pt;}
.y46_c00385{bottom:270.240000pt;}
.y1c_c00385{bottom:273.840000pt;}
.y45_c00385{bottom:286.240000pt;}
.y1b_c00385{bottom:290.373333pt;}
.y44_c00385{bottom:303.040000pt;}
.y1a_c00385{bottom:306.506667pt;}
.y43_c00385{bottom:318.906667pt;}
.y19_c00385{bottom:322.240000pt;}
.y42_c00385{bottom:335.040000pt;}
.y18_c00385{bottom:338.373333pt;}
.y41_c00385{bottom:351.306667pt;}
.y17_c00385{bottom:353.973333pt;}
.y40_c00385{bottom:367.173333pt;}
.y16_c00385{bottom:370.506667pt;}
.y3f_c00385{bottom:383.040000pt;}
.y15_c00385{bottom:386.373333pt;}
.y3e_c00385{bottom:398.906667pt;}
.y14_c00385{bottom:402.506667pt;}
.y3d_c00385{bottom:414.906667pt;}
.y13_c00385{bottom:418.506667pt;}
.y3c_c00385{bottom:430.906667pt;}
.y12_c00385{bottom:434.906667pt;}
.y3b_c00385{bottom:447.040000pt;}
.y11_c00385{bottom:450.640000pt;}
.y3a_c00385{bottom:463.173333pt;}
.y10_c00385{bottom:466.773333pt;}
.y39_c00385{bottom:479.306667pt;}
.yf_c00385{bottom:482.640000pt;}
.y38_c00385{bottom:494.906667pt;}
.ye_c00385{bottom:498.506667pt;}
.y37_c00385{bottom:511.706667pt;}
.yd_c00385{bottom:513.573333pt;}
.y36_c00385{bottom:527.040000pt;}
.yc_c00385{bottom:530.640000pt;}
.y35_c00385{bottom:544.106667pt;}
.yb_c00385{bottom:546.506667pt;}
.y34_c00385{bottom:559.706667pt;}
.ya_c00385{bottom:562.240000pt;}
.y33_c00385{bottom:575.973333pt;}
.y9_c00385{bottom:577.840000pt;}
.y32_c00385{bottom:592.506667pt;}
.y8_c00385{bottom:594.506667pt;}
.y31_c00385{bottom:608.373333pt;}
.y7_c00385{bottom:610.506667pt;}
.y30_c00385{bottom:624.240000pt;}
.y6_c00385{bottom:625.440000pt;}
.y2f_c00385{bottom:640.773333pt;}
.y5_c00385{bottom:641.973333pt;}
.y2e_c00385{bottom:655.840000pt;}
.y4_c00385{bottom:657.840000pt;}
.y2d_c00385{bottom:672.506667pt;}
.y3_c00385{bottom:674.106667pt;}
.y2c_c00385{bottom:689.040000pt;}
.y2_c00385{bottom:689.440000pt;}
.y2b_c00385{bottom:704.906667pt;}
.y1_c00385{bottom:707.706667pt;}
.h8_c00385{height:11.733399pt;}
.h9_c00385{height:38.937500pt;}
.h4_c00385{height:50.304000pt;}
.h3_c00385{height:53.098667pt;}
.h2_c00385{height:55.893333pt;}
.h6_c00385{height:56.906667pt;}
.h5_c00385{height:61.482667pt;}
.h7_c00385{height:69.866667pt;}
.h0_c00385{height:742.533333pt;}
.h1_c00385{height:742.666667pt;}
.w1_c00385{width:93.222667pt;}
.w0_c00385{width:504.000000pt;}
.x0_c00385{left:0.000000pt;}
.x5_c00385{left:13.866667pt;}
.x9_c00385{left:41.733333pt;}
.x7_c00385{left:65.066667pt;}
.x8_c00385{left:66.266667pt;}
.x6_c00385{left:67.600000pt;}
.x3_c00385{left:68.666667pt;}
.xa_c00385{left:69.866667pt;}
.x2_c00385{left:70.800000pt;}
.x4_c00385{left:91.200000pt;}
.x1_c00385{left:147.066667pt;}
.x12_c00385{left:209.168213pt;}
.xb_c00385{left:245.200000pt;}
.xd_c00385{left:253.466667pt;}
.xf_c00385{left:263.066667pt;}
.xe_c00385{left:264.000000pt;}
.xc_c00385{left:265.200000pt;}
.x10_c00385{left:287.466667pt;}
.x11_c00385{left:416.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_542af77b71b98b2ae3256cf6.woff2')format("woff");}.ff1_c00386{font-family:ff1_c00386;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00386;src:url('chunks/assets/font_2e21f3bcd002f74b7b4b160f.woff2')format("woff");}.ff2_c00386{font-family:ff2_c00386;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00386;src:url('chunks/assets/font_80550e4d073e80e507166ae5.woff2')format("woff");}.ff3_c00386{font-family:ff3_c00386;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00386;src:url('chunks/assets/font_a74d9139ae836cc98497c189.woff2')format("woff");}.ff4_c00386{font-family:ff4_c00386;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00386;src:url('chunks/assets/font_0a36b1d80562df25dcbe7013.woff2')format("woff");}.ff5_c00386{font-family:ff5_c00386;line-height:1.575000;font-style:normal;font-weight:normal;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_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff6_c00386{font-family:ff6_c00386;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00386{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00386{vertical-align:0.000000px;}
.ls5_c00386{letter-spacing:0.000000px;}
.ls3_c00386{letter-spacing:3.000000px;}
.ls1_c00386{letter-spacing:6.000000px;}
.ls4_c00386{letter-spacing:6.900000px;}
.ls2_c00386{letter-spacing:11.100000px;}
.ls0_c00386{letter-spacing:23.700000px;}
.sc__c00386{text-shadow:none;}
.sc0_c00386{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00386{-webkit-text-stroke:0px transparent;}
.sc0_c00386{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00386{word-spacing:-28.974000px;}
.ws2_c00386{word-spacing:-20.340000px;}
.ws3_c00386{word-spacing:-15.744000px;}
.ws4_c00386{word-spacing:-14.160000px;}
.ws0_c00386{word-spacing:-13.452000px;}
.ws5_c00386{word-spacing:-2.640000px;}
.ws6_c00386{word-spacing:0.000000px;}
._23_c00386{margin-left:-28.200000px;}
._2b_c00386{margin-left:-21.834000px;}
._26_c00386{margin-left:-17.736000px;}
._22_c00386{margin-left:-16.173000px;}
._1b_c00386{margin-left:-15.072000px;}
._16_c00386{margin-left:-13.575000px;}
._21_c00386{margin-left:-12.393000px;}
._1a_c00386{margin-left:-11.373000px;}
._20_c00386{margin-left:-9.720000px;}
._14_c00386{margin-left:-8.277000px;}
._10_c00386{margin-left:-7.053000px;}
._a_c00386{margin-left:-5.817000px;}
._c_c00386{margin-left:-4.560000px;}
._0_c00386{margin-left:-3.360000px;}
._f_c00386{margin-left:-2.325000px;}
._2_c00386{margin-left:-1.200000px;}
._5_c00386{width:1.077000px;}
._4_c00386{width:2.514000px;}
._e_c00386{width:3.591000px;}
._d_c00386{width:5.568000px;}
._13_c00386{width:6.570000px;}
._3_c00386{width:8.580000px;}
._11_c00386{width:9.768000px;}
._12_c00386{width:11.046000px;}
._6_c00386{width:12.117000px;}
._1e_c00386{width:13.395000px;}
._7_c00386{width:15.303000px;}
._17_c00386{width:16.530000px;}
._1f_c00386{width:18.180000px;}
._15_c00386{width:19.392000px;}
._27_c00386{width:21.174000px;}
._8_c00386{width:22.434000px;}
._18_c00386{width:25.239000px;}
._24_c00386{width:26.400000px;}
._9_c00386{width:29.184000px;}
._b_c00386{width:30.723000px;}
._19_c00386{width:31.770000px;}
._1c_c00386{width:36.483000px;}
._25_c00386{width:38.049000px;}
._29_c00386{width:39.825000px;}
._1d_c00386{width:47.265000px;}
._1_c00386{width:55.440000px;}
._28_c00386{width:59.520000px;}
._2a_c00386{width:122.652000px;}
.fc2_c00386{color:transparent;}
.fc1_c00386{color:rgb(128,128,128);}
.fc0_c00386{color:rgb(0,0,0);}
.fs2_c00386{font-size:39.000000px;}
.fs5_c00386{font-size:48.000000px;}
.fs3_c00386{font-size:51.000000px;}
.fs4_c00386{font-size:54.000000px;}
.fs1_c00386{font-size:57.000000px;}
.fs0_c00386{font-size:60.000000px;}
.y0_c00386{bottom:0.000000px;}
.y50_c00386{bottom:3.105000px;}
.y4f_c00386{bottom:7.228369px;}
.y4e_c00386{bottom:41.820000px;}
.y29_c00386{bottom:63.120000px;}
.y4d_c00386{bottom:81.570000px;}
.y28_c00386{bottom:81.720000px;}
.y4c_c00386{bottom:99.570000px;}
.y27_c00386{bottom:100.170000px;}
.y4b_c00386{bottom:116.820000px;}
.y26_c00386{bottom:118.020000px;}
.y4a_c00386{bottom:135.570000px;}
.y25_c00386{bottom:136.020000px;}
.y24_c00386{bottom:153.870000px;}
.y49_c00386{bottom:172.020000px;}
.y23_c00386{bottom:172.470000px;}
.y48_c00386{bottom:190.020000px;}
.y22_c00386{bottom:190.620000px;}
.y21_c00386{bottom:208.170000px;}
.y47_c00386{bottom:226.020000px;}
.y20_c00386{bottom:226.170000px;}
.y1f_c00386{bottom:243.570000px;}
.y46_c00386{bottom:244.020000px;}
.y1e_c00386{bottom:262.170000px;}
.y45_c00386{bottom:262.470000px;}
.y1d_c00386{bottom:280.020000px;}
.y44_c00386{bottom:280.470000px;}
.y1c_c00386{bottom:298.320000px;}
.y1b_c00386{bottom:316.470000px;}
.y1a_c00386{bottom:333.720000px;}
.y43_c00386{bottom:334.770000px;}
.y19_c00386{bottom:351.720000px;}
.y42_c00386{bottom:352.020000px;}
.y18_c00386{bottom:369.870000px;}
.y41_c00386{bottom:370.620000px;}
.y17_c00386{bottom:387.720000px;}
.y40_c00386{bottom:388.470000px;}
.y16_c00386{bottom:406.320000px;}
.y3f_c00386{bottom:406.920000px;}
.y15_c00386{bottom:423.270000px;}
.y3e_c00386{bottom:424.920000px;}
.y14_c00386{bottom:442.020000px;}
.y3d_c00386{bottom:443.070000px;}
.y13_c00386{bottom:460.320000px;}
.y3c_c00386{bottom:461.070000px;}
.y12_c00386{bottom:478.170000px;}
.y3b_c00386{bottom:478.920000px;}
.y11_c00386{bottom:495.420000px;}
.y3a_c00386{bottom:496.170000px;}
.y10_c00386{bottom:512.970000px;}
.y39_c00386{bottom:514.620000px;}
.yf_c00386{bottom:530.220000px;}
.y38_c00386{bottom:531.570000px;}
.ye_c00386{bottom:548.370000px;}
.y37_c00386{bottom:550.170000px;}
.yd_c00386{bottom:565.920000px;}
.y36_c00386{bottom:567.570000px;}
.yc_c00386{bottom:583.770000px;}
.y35_c00386{bottom:586.170000px;}
.yb_c00386{bottom:601.470000px;}
.y34_c00386{bottom:604.020000px;}
.ya_c00386{bottom:619.620000px;}
.y33_c00386{bottom:621.720000px;}
.y9_c00386{bottom:637.920000px;}
.y32_c00386{bottom:639.570000px;}
.y8_c00386{bottom:656.070000px;}
.y31_c00386{bottom:658.020000px;}
.y7_c00386{bottom:674.220000px;}
.y30_c00386{bottom:675.720000px;}
.y6_c00386{bottom:691.470000px;}
.y2f_c00386{bottom:694.470000px;}
.y5_c00386{bottom:710.070000px;}
.y2e_c00386{bottom:712.170000px;}
.y4_c00386{bottom:727.320000px;}
.y2d_c00386{bottom:730.020000px;}
.y3_c00386{bottom:745.320000px;}
.y2c_c00386{bottom:748.920000px;}
.y2_c00386{bottom:763.320000px;}
.y2b_c00386{bottom:766.170000px;}
.y1_c00386{bottom:781.320000px;}
.y2a_c00386{bottom:784.920000px;}
.h5_c00386{height:13.200073px;}
.h6_c00386{height:43.804688px;}
.h3_c00386{height:59.736000px;}
.h2_c00386{height:62.880000px;}
.h4_c00386{height:64.020000px;}
.h0_c00386{height:835.350000px;}
.h1_c00386{height:835.500000px;}
.w1_c00386{width:104.875500px;}
.w0_c00386{width:580.500000px;}
.x0_c00386{left:0.000000px;}
.x5_c00386{left:15.450000px;}
.x4_c00386{left:16.800000px;}
.x1_c00386{left:54.000000px;}
.x7_c00386{left:71.250000px;}
.x3_c00386{left:72.900000px;}
.x2_c00386{left:74.850000px;}
.x6_c00386{left:75.900000px;}
.xf_c00386{left:242.064240px;}
.xb_c00386{left:288.600000px;}
.xc_c00386{left:290.250000px;}
.xd_c00386{left:291.900000px;}
.xa_c00386{left:292.950000px;}
.x9_c00386{left:294.000000px;}
.x8_c00386{left:295.350000px;}
.xe_c00386{left:384.450000px;}
@media print{
.v0_c00386{vertical-align:0.000000pt;}
.ls5_c00386{letter-spacing:0.000000pt;}
.ls3_c00386{letter-spacing:2.666667pt;}
.ls1_c00386{letter-spacing:5.333333pt;}
.ls4_c00386{letter-spacing:6.133333pt;}
.ls2_c00386{letter-spacing:9.866667pt;}
.ls0_c00386{letter-spacing:21.066667pt;}
.ws1_c00386{word-spacing:-25.754667pt;}
.ws2_c00386{word-spacing:-18.080000pt;}
.ws3_c00386{word-spacing:-13.994667pt;}
.ws4_c00386{word-spacing:-12.586667pt;}
.ws0_c00386{word-spacing:-11.957333pt;}
.ws5_c00386{word-spacing:-2.346667pt;}
.ws6_c00386{word-spacing:0.000000pt;}
._23_c00386{margin-left:-25.066667pt;}
._2b_c00386{margin-left:-19.408000pt;}
._26_c00386{margin-left:-15.765333pt;}
._22_c00386{margin-left:-14.376000pt;}
._1b_c00386{margin-left:-13.397333pt;}
._16_c00386{margin-left:-12.066667pt;}
._21_c00386{margin-left:-11.016000pt;}
._1a_c00386{margin-left:-10.109333pt;}
._20_c00386{margin-left:-8.640000pt;}
._14_c00386{margin-left:-7.357333pt;}
._10_c00386{margin-left:-6.269333pt;}
._a_c00386{margin-left:-5.170667pt;}
._c_c00386{margin-left:-4.053333pt;}
._0_c00386{margin-left:-2.986667pt;}
._f_c00386{margin-left:-2.066667pt;}
._2_c00386{margin-left:-1.066667pt;}
._5_c00386{width:0.957333pt;}
._4_c00386{width:2.234667pt;}
._e_c00386{width:3.192000pt;}
._d_c00386{width:4.949333pt;}
._13_c00386{width:5.840000pt;}
._3_c00386{width:7.626667pt;}
._11_c00386{width:8.682667pt;}
._12_c00386{width:9.818667pt;}
._6_c00386{width:10.770667pt;}
._1e_c00386{width:11.906667pt;}
._7_c00386{width:13.602667pt;}
._17_c00386{width:14.693333pt;}
._1f_c00386{width:16.160000pt;}
._15_c00386{width:17.237333pt;}
._27_c00386{width:18.821333pt;}
._8_c00386{width:19.941333pt;}
._18_c00386{width:22.434667pt;}
._24_c00386{width:23.466667pt;}
._9_c00386{width:25.941333pt;}
._b_c00386{width:27.309333pt;}
._19_c00386{width:28.240000pt;}
._1c_c00386{width:32.429333pt;}
._25_c00386{width:33.821333pt;}
._29_c00386{width:35.400000pt;}
._1d_c00386{width:42.013333pt;}
._1_c00386{width:49.280000pt;}
._28_c00386{width:52.906667pt;}
._2a_c00386{width:109.024000pt;}
.fs2_c00386{font-size:34.666667pt;}
.fs5_c00386{font-size:42.666667pt;}
.fs3_c00386{font-size:45.333333pt;}
.fs4_c00386{font-size:48.000000pt;}
.fs1_c00386{font-size:50.666667pt;}
.fs0_c00386{font-size:53.333333pt;}
.y0_c00386{bottom:0.000000pt;}
.y50_c00386{bottom:2.760000pt;}
.y4f_c00386{bottom:6.425217pt;}
.y4e_c00386{bottom:37.173333pt;}
.y29_c00386{bottom:56.106667pt;}
.y4d_c00386{bottom:72.506667pt;}
.y28_c00386{bottom:72.640000pt;}
.y4c_c00386{bottom:88.506667pt;}
.y27_c00386{bottom:89.040000pt;}
.y4b_c00386{bottom:103.840000pt;}
.y26_c00386{bottom:104.906667pt;}
.y4a_c00386{bottom:120.506667pt;}
.y25_c00386{bottom:120.906667pt;}
.y24_c00386{bottom:136.773333pt;}
.y49_c00386{bottom:152.906667pt;}
.y23_c00386{bottom:153.306667pt;}
.y48_c00386{bottom:168.906667pt;}
.y22_c00386{bottom:169.440000pt;}
.y21_c00386{bottom:185.040000pt;}
.y47_c00386{bottom:200.906667pt;}
.y20_c00386{bottom:201.040000pt;}
.y1f_c00386{bottom:216.506667pt;}
.y46_c00386{bottom:216.906667pt;}
.y1e_c00386{bottom:233.040000pt;}
.y45_c00386{bottom:233.306667pt;}
.y1d_c00386{bottom:248.906667pt;}
.y44_c00386{bottom:249.306667pt;}
.y1c_c00386{bottom:265.173333pt;}
.y1b_c00386{bottom:281.306667pt;}
.y1a_c00386{bottom:296.640000pt;}
.y43_c00386{bottom:297.573333pt;}
.y19_c00386{bottom:312.640000pt;}
.y42_c00386{bottom:312.906667pt;}
.y18_c00386{bottom:328.773333pt;}
.y41_c00386{bottom:329.440000pt;}
.y17_c00386{bottom:344.640000pt;}
.y40_c00386{bottom:345.306667pt;}
.y16_c00386{bottom:361.173333pt;}
.y3f_c00386{bottom:361.706667pt;}
.y15_c00386{bottom:376.240000pt;}
.y3e_c00386{bottom:377.706667pt;}
.y14_c00386{bottom:392.906667pt;}
.y3d_c00386{bottom:393.840000pt;}
.y13_c00386{bottom:409.173333pt;}
.y3c_c00386{bottom:409.840000pt;}
.y12_c00386{bottom:425.040000pt;}
.y3b_c00386{bottom:425.706667pt;}
.y11_c00386{bottom:440.373333pt;}
.y3a_c00386{bottom:441.040000pt;}
.y10_c00386{bottom:455.973333pt;}
.y39_c00386{bottom:457.440000pt;}
.yf_c00386{bottom:471.306667pt;}
.y38_c00386{bottom:472.506667pt;}
.ye_c00386{bottom:487.440000pt;}
.y37_c00386{bottom:489.040000pt;}
.yd_c00386{bottom:503.040000pt;}
.y36_c00386{bottom:504.506667pt;}
.yc_c00386{bottom:518.906667pt;}
.y35_c00386{bottom:521.040000pt;}
.yb_c00386{bottom:534.640000pt;}
.y34_c00386{bottom:536.906667pt;}
.ya_c00386{bottom:550.773333pt;}
.y33_c00386{bottom:552.640000pt;}
.y9_c00386{bottom:567.040000pt;}
.y32_c00386{bottom:568.506667pt;}
.y8_c00386{bottom:583.173333pt;}
.y31_c00386{bottom:584.906667pt;}
.y7_c00386{bottom:599.306667pt;}
.y30_c00386{bottom:600.640000pt;}
.y6_c00386{bottom:614.640000pt;}
.y2f_c00386{bottom:617.306667pt;}
.y5_c00386{bottom:631.173333pt;}
.y2e_c00386{bottom:633.040000pt;}
.y4_c00386{bottom:646.506667pt;}
.y2d_c00386{bottom:648.906667pt;}
.y3_c00386{bottom:662.506667pt;}
.y2c_c00386{bottom:665.706667pt;}
.y2_c00386{bottom:678.506667pt;}
.y2b_c00386{bottom:681.040000pt;}
.y1_c00386{bottom:694.506667pt;}
.y2a_c00386{bottom:697.706667pt;}
.h5_c00386{height:11.733399pt;}
.h6_c00386{height:38.937500pt;}
.h3_c00386{height:53.098667pt;}
.h2_c00386{height:55.893333pt;}
.h4_c00386{height:56.906667pt;}
.h0_c00386{height:742.533333pt;}
.h1_c00386{height:742.666667pt;}
.w1_c00386{width:93.222667pt;}
.w0_c00386{width:516.000000pt;}
.x0_c00386{left:0.000000pt;}
.x5_c00386{left:13.733333pt;}
.x4_c00386{left:14.933333pt;}
.x1_c00386{left:48.000000pt;}
.x7_c00386{left:63.333333pt;}
.x3_c00386{left:64.800000pt;}
.x2_c00386{left:66.533333pt;}
.x6_c00386{left:67.466667pt;}
.xf_c00386{left:215.168213pt;}
.xb_c00386{left:256.533333pt;}
.xc_c00386{left:258.000000pt;}
.xd_c00386{left:259.466667pt;}
.xa_c00386{left:260.400000pt;}
.x9_c00386{left:261.333333pt;}
.x8_c00386{left:262.533333pt;}
.xe_c00386{left:341.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_517965096eb224b44cea113c.woff2')format("woff");}.ff1_c00387{font-family:ff1_c00387;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00387;src:url('chunks/assets/font_4774532e6323290aa7cf18ca.woff2')format("woff");}.ff2_c00387{font-family:ff2_c00387;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00387;src:url('chunks/assets/font_13ca4fbe260733887986a4ae.woff2')format("woff");}.ff3_c00387{font-family:ff3_c00387;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00387;src:url('chunks/assets/font_4fc03abffba2d13e466d0439.woff2')format("woff");}.ff4_c00387{font-family:ff4_c00387;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00387;src:url('chunks/assets/font_e486641e78576c1ecd8c9c42.woff2')format("woff");}.ff5_c00387{font-family:ff5_c00387;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00387;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff6_c00387{font-family:ff6_c00387;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.v1_c00387{vertical-align:12.600000px;}
.ls6_c00387{letter-spacing:0.000000px;}
.ls1_c00387{letter-spacing:2.805000px;}
.ls4_c00387{letter-spacing:3.000000px;}
.ls2_c00387{letter-spacing:3.405000px;}
.ls0_c00387{letter-spacing:6.000000px;}
.ls3_c00387{letter-spacing:22.620000px;}
.ls5_c00387{letter-spacing:98.940000px;}
.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;}
}
.ws4_c00387{word-spacing:-35.295000px;}
.ws3_c00387{word-spacing:-20.340000px;}
.ws5_c00387{word-spacing:-18.060000px;}
.ws2_c00387{word-spacing:-17.472000px;}
.ws1_c00387{word-spacing:-14.160000px;}
.ws0_c00387{word-spacing:0.000000px;}
._15_c00387{margin-left:-21.000000px;}
._25_c00387{margin-left:-17.400000px;}
._16_c00387{margin-left:-14.325000px;}
._2b_c00387{margin-left:-13.140000px;}
._17_c00387{margin-left:-12.000000px;}
._1c_c00387{margin-left:-10.980000px;}
._19_c00387{margin-left:-9.492000px;}
._0_c00387{margin-left:-8.100000px;}
._1a_c00387{margin-left:-6.960000px;}
._6_c00387{margin-left:-5.640000px;}
._11_c00387{margin-left:-4.320000px;}
._14_c00387{margin-left:-3.120000px;}
._13_c00387{margin-left:-1.500000px;}
._3_c00387{width:1.620000px;}
._1_c00387{width:2.940000px;}
._2_c00387{width:4.200000px;}
._12_c00387{width:6.060000px;}
._7_c00387{width:7.080000px;}
._5_c00387{width:8.100000px;}
._4_c00387{width:9.600000px;}
._1b_c00387{width:10.620000px;}
._f_c00387{width:11.640000px;}
._10_c00387{width:13.500000px;}
._9_c00387{width:14.700000px;}
._a_c00387{width:16.140000px;}
._1f_c00387{width:17.580000px;}
._29_c00387{width:19.680000px;}
._d_c00387{width:20.760000px;}
._c_c00387{width:21.960000px;}
._b_c00387{width:23.880000px;}
._18_c00387{width:24.900000px;}
._24_c00387{width:26.520000px;}
._2a_c00387{width:27.780000px;}
._e_c00387{width:29.640000px;}
._1e_c00387{width:31.800000px;}
._22_c00387{width:33.300000px;}
._20_c00387{width:34.440000px;}
._2c_c00387{width:36.000000px;}
._28_c00387{width:38.340000px;}
._27_c00387{width:41.040000px;}
._23_c00387{width:46.980000px;}
._26_c00387{width:49.500000px;}
._21_c00387{width:145.200000px;}
._1d_c00387{width:165.720000px;}
._8_c00387{width:190.440000px;}
.fc2_c00387{color:transparent;}
.fc1_c00387{color:rgb(128,128,128);}
.fc0_c00387{color:rgb(0,0,0);}
.fs3_c00387{font-size:45.000000px;}
.fs2_c00387{font-size:48.000000px;}
.fs0_c00387{font-size:60.000000px;}
.fs1_c00387{font-size:75.000000px;}
.y0_c00387{bottom:0.000000px;}
.y57_c00387{bottom:3.105000px;}
.y56_c00387{bottom:7.228355px;}
.y53_c00387{bottom:47.235000px;}
.y2d_c00387{bottom:64.035000px;}
.y52_c00387{bottom:65.685000px;}
.y2c_c00387{bottom:82.635000px;}
.y51_c00387{bottom:83.385000px;}
.y2b_c00387{bottom:100.485000px;}
.y50_c00387{bottom:102.285000px;}
.y2a_c00387{bottom:118.785000px;}
.y4f_c00387{bottom:120.135000px;}
.y29_c00387{bottom:137.385000px;}
.y4e_c00387{bottom:137.985000px;}
.y28_c00387{bottom:155.235000px;}
.y4d_c00387{bottom:155.835000px;}
.y27_c00387{bottom:173.835000px;}
.y4c_c00387{bottom:174.435000px;}
.y26_c00387{bottom:191.235000px;}
.y4b_c00387{bottom:192.285000px;}
.y4a_c00387{bottom:209.835000px;}
.y25_c00387{bottom:210.135000px;}
.y24_c00387{bottom:227.835000px;}
.y49_c00387{bottom:228.735000px;}
.y48_c00387{bottom:245.685000px;}
.y23_c00387{bottom:245.985000px;}
.y22_c00387{bottom:264.585000px;}
.y47_c00387{bottom:264.885000px;}
.y21_c00387{bottom:281.685000px;}
.y46_c00387{bottom:283.185000px;}
.y45_c00387{bottom:300.585000px;}
.y20_c00387{bottom:300.735000px;}
.y1f_c00387{bottom:318.285000px;}
.y55_c00387{bottom:335.085000px;}
.y1e_c00387{bottom:336.435000px;}
.y44_c00387{bottom:337.035000px;}
.y3_c00387{bottom:353.385000px;}
.y1d_c00387{bottom:353.685000px;}
.y43_c00387{bottom:354.585000px;}
.y54_c00387{bottom:355.035000px;}
.y2_c00387{bottom:371.835000px;}
.y1c_c00387{bottom:372.135000px;}
.y1b_c00387{bottom:390.135000px;}
.y1_c00387{bottom:390.435000px;}
.y42_c00387{bottom:391.035000px;}
.y1a_c00387{bottom:407.385000px;}
.y41_c00387{bottom:408.285000px;}
.y19_c00387{bottom:425.835000px;}
.y40_c00387{bottom:426.885000px;}
.y18_c00387{bottom:444.135000px;}
.y3f_c00387{bottom:445.035000px;}
.y17_c00387{bottom:461.985000px;}
.y3e_c00387{bottom:463.035000px;}
.y16_c00387{bottom:480.285000px;}
.y3d_c00387{bottom:480.885000px;}
.y15_c00387{bottom:498.435000px;}
.y3c_c00387{bottom:499.035000px;}
.y3b_c00387{bottom:513.885000px;}
.y14_c00387{bottom:516.285000px;}
.y13_c00387{bottom:533.835000px;}
.y12_c00387{bottom:552.435000px;}
.y11_c00387{bottom:570.585000px;}
.y3a_c00387{bottom:573.435000px;}
.y10_c00387{bottom:588.285000px;}
.y39_c00387{bottom:590.835000px;}
.yf_c00387{bottom:606.135000px;}
.y38_c00387{bottom:608.385000px;}
.ye_c00387{bottom:623.985000px;}
.y37_c00387{bottom:625.335000px;}
.yd_c00387{bottom:642.885000px;}
.y36_c00387{bottom:643.635000px;}
.yc_c00387{bottom:661.485000px;}
.y35_c00387{bottom:661.785000px;}
.y34_c00387{bottom:679.635000px;}
.yb_c00387{bottom:680.385000px;}
.y33_c00387{bottom:698.535000px;}
.ya_c00387{bottom:699.585000px;}
.y32_c00387{bottom:716.535000px;}
.y9_c00387{bottom:717.135000px;}
.y31_c00387{bottom:733.935000px;}
.y8_c00387{bottom:734.985000px;}
.y30_c00387{bottom:751.935000px;}
.y7_c00387{bottom:752.835000px;}
.y2f_c00387{bottom:769.785000px;}
.y6_c00387{bottom:770.835000px;}
.y2e_c00387{bottom:787.635000px;}
.y5_c00387{bottom:789.435000px;}
.y4_c00387{bottom:808.935000px;}
.h6_c00387{height:13.200074px;}
.h7_c00387{height:43.804688px;}
.h2_c00387{height:62.880000px;}
.h4_c00387{height:64.020000px;}
.h5_c00387{height:75.480000px;}
.h3_c00387{height:78.600000px;}
.h1_c00387{height:846.750000px;}
.h0_c00387{height:846.975000px;}
.w2_c00387{width:104.875500px;}
.w1_c00387{width:561.750000px;}
.w0_c00387{width:561.900000px;}
.x0_c00387{left:0.000000px;}
.x1_c00387{left:13.500000px;}
.x6_c00387{left:74.550000px;}
.x5_c00387{left:75.900000px;}
.x3_c00387{left:76.950000px;}
.x4_c00387{left:78.000000px;}
.x7_c00387{left:79.200000px;}
.x2_c00387{left:80.550000px;}
.x14_c00387{left:232.764267px;}
.x8_c00387{left:298.350000px;}
.x9_c00387{left:299.700000px;}
.x10_c00387{left:301.650000px;}
.x11_c00387{left:303.300000px;}
.xc_c00387{left:309.750000px;}
.xd_c00387{left:328.350000px;}
.xb_c00387{left:331.800000px;}
.xf_c00387{left:338.850000px;}
.xa_c00387{left:369.000000px;}
.xe_c00387{left:376.950000px;}
.x12_c00387{left:469.800000px;}
.x13_c00387{left:504.150000px;}
@media print{
.v0_c00387{vertical-align:0.000000pt;}
.v1_c00387{vertical-align:11.200000pt;}
.ls6_c00387{letter-spacing:0.000000pt;}
.ls1_c00387{letter-spacing:2.493333pt;}
.ls4_c00387{letter-spacing:2.666667pt;}
.ls2_c00387{letter-spacing:3.026667pt;}
.ls0_c00387{letter-spacing:5.333333pt;}
.ls3_c00387{letter-spacing:20.106667pt;}
.ls5_c00387{letter-spacing:87.946667pt;}
.ws4_c00387{word-spacing:-31.373333pt;}
.ws3_c00387{word-spacing:-18.080000pt;}
.ws5_c00387{word-spacing:-16.053333pt;}
.ws2_c00387{word-spacing:-15.530667pt;}
.ws1_c00387{word-spacing:-12.586667pt;}
.ws0_c00387{word-spacing:0.000000pt;}
._15_c00387{margin-left:-18.666667pt;}
._25_c00387{margin-left:-15.466667pt;}
._16_c00387{margin-left:-12.733333pt;}
._2b_c00387{margin-left:-11.680000pt;}
._17_c00387{margin-left:-10.666667pt;}
._1c_c00387{margin-left:-9.760000pt;}
._19_c00387{margin-left:-8.437333pt;}
._0_c00387{margin-left:-7.200000pt;}
._1a_c00387{margin-left:-6.186667pt;}
._6_c00387{margin-left:-5.013333pt;}
._11_c00387{margin-left:-3.840000pt;}
._14_c00387{margin-left:-2.773333pt;}
._13_c00387{margin-left:-1.333333pt;}
._3_c00387{width:1.440000pt;}
._1_c00387{width:2.613333pt;}
._2_c00387{width:3.733333pt;}
._12_c00387{width:5.386667pt;}
._7_c00387{width:6.293333pt;}
._5_c00387{width:7.200000pt;}
._4_c00387{width:8.533333pt;}
._1b_c00387{width:9.440000pt;}
._f_c00387{width:10.346667pt;}
._10_c00387{width:12.000000pt;}
._9_c00387{width:13.066667pt;}
._a_c00387{width:14.346667pt;}
._1f_c00387{width:15.626667pt;}
._29_c00387{width:17.493333pt;}
._d_c00387{width:18.453333pt;}
._c_c00387{width:19.520000pt;}
._b_c00387{width:21.226667pt;}
._18_c00387{width:22.133333pt;}
._24_c00387{width:23.573333pt;}
._2a_c00387{width:24.693333pt;}
._e_c00387{width:26.346667pt;}
._1e_c00387{width:28.266667pt;}
._22_c00387{width:29.600000pt;}
._20_c00387{width:30.613333pt;}
._2c_c00387{width:32.000000pt;}
._28_c00387{width:34.080000pt;}
._27_c00387{width:36.480000pt;}
._23_c00387{width:41.760000pt;}
._26_c00387{width:44.000000pt;}
._21_c00387{width:129.066667pt;}
._1d_c00387{width:147.306667pt;}
._8_c00387{width:169.280000pt;}
.fs3_c00387{font-size:40.000000pt;}
.fs2_c00387{font-size:42.666667pt;}
.fs0_c00387{font-size:53.333333pt;}
.fs1_c00387{font-size:66.666667pt;}
.y0_c00387{bottom:0.000000pt;}
.y57_c00387{bottom:2.760000pt;}
.y56_c00387{bottom:6.425204pt;}
.y53_c00387{bottom:41.986667pt;}
.y2d_c00387{bottom:56.920000pt;}
.y52_c00387{bottom:58.386667pt;}
.y2c_c00387{bottom:73.453333pt;}
.y51_c00387{bottom:74.120000pt;}
.y2b_c00387{bottom:89.320000pt;}
.y50_c00387{bottom:90.920000pt;}
.y2a_c00387{bottom:105.586667pt;}
.y4f_c00387{bottom:106.786667pt;}
.y29_c00387{bottom:122.120000pt;}
.y4e_c00387{bottom:122.653333pt;}
.y28_c00387{bottom:137.986667pt;}
.y4d_c00387{bottom:138.520000pt;}
.y27_c00387{bottom:154.520000pt;}
.y4c_c00387{bottom:155.053333pt;}
.y26_c00387{bottom:169.986667pt;}
.y4b_c00387{bottom:170.920000pt;}
.y4a_c00387{bottom:186.520000pt;}
.y25_c00387{bottom:186.786667pt;}
.y24_c00387{bottom:202.520000pt;}
.y49_c00387{bottom:203.320000pt;}
.y48_c00387{bottom:218.386667pt;}
.y23_c00387{bottom:218.653333pt;}
.y22_c00387{bottom:235.186667pt;}
.y47_c00387{bottom:235.453333pt;}
.y21_c00387{bottom:250.386667pt;}
.y46_c00387{bottom:251.720000pt;}
.y45_c00387{bottom:267.186667pt;}
.y20_c00387{bottom:267.320000pt;}
.y1f_c00387{bottom:282.920000pt;}
.y55_c00387{bottom:297.853333pt;}
.y1e_c00387{bottom:299.053333pt;}
.y44_c00387{bottom:299.586667pt;}
.y3_c00387{bottom:314.120000pt;}
.y1d_c00387{bottom:314.386667pt;}
.y43_c00387{bottom:315.186667pt;}
.y54_c00387{bottom:315.586667pt;}
.y2_c00387{bottom:330.520000pt;}
.y1c_c00387{bottom:330.786667pt;}
.y1b_c00387{bottom:346.786667pt;}
.y1_c00387{bottom:347.053333pt;}
.y42_c00387{bottom:347.586667pt;}
.y1a_c00387{bottom:362.120000pt;}
.y41_c00387{bottom:362.920000pt;}
.y19_c00387{bottom:378.520000pt;}
.y40_c00387{bottom:379.453333pt;}
.y18_c00387{bottom:394.786667pt;}
.y3f_c00387{bottom:395.586667pt;}
.y17_c00387{bottom:410.653333pt;}
.y3e_c00387{bottom:411.586667pt;}
.y16_c00387{bottom:426.920000pt;}
.y3d_c00387{bottom:427.453333pt;}
.y15_c00387{bottom:443.053333pt;}
.y3c_c00387{bottom:443.586667pt;}
.y3b_c00387{bottom:456.786667pt;}
.y14_c00387{bottom:458.920000pt;}
.y13_c00387{bottom:474.520000pt;}
.y12_c00387{bottom:491.053333pt;}
.y11_c00387{bottom:507.186667pt;}
.y3a_c00387{bottom:509.720000pt;}
.y10_c00387{bottom:522.920000pt;}
.y39_c00387{bottom:525.186667pt;}
.yf_c00387{bottom:538.786667pt;}
.y38_c00387{bottom:540.786667pt;}
.ye_c00387{bottom:554.653333pt;}
.y37_c00387{bottom:555.853333pt;}
.yd_c00387{bottom:571.453333pt;}
.y36_c00387{bottom:572.120000pt;}
.yc_c00387{bottom:587.986667pt;}
.y35_c00387{bottom:588.253333pt;}
.y34_c00387{bottom:604.120000pt;}
.yb_c00387{bottom:604.786667pt;}
.y33_c00387{bottom:620.920000pt;}
.ya_c00387{bottom:621.853333pt;}
.y32_c00387{bottom:636.920000pt;}
.y9_c00387{bottom:637.453333pt;}
.y31_c00387{bottom:652.386667pt;}
.y8_c00387{bottom:653.320000pt;}
.y30_c00387{bottom:668.386667pt;}
.y7_c00387{bottom:669.186667pt;}
.y2f_c00387{bottom:684.253333pt;}
.y6_c00387{bottom:685.186667pt;}
.y2e_c00387{bottom:700.120000pt;}
.y5_c00387{bottom:701.720000pt;}
.y4_c00387{bottom:719.053333pt;}
.h6_c00387{height:11.733399pt;}
.h7_c00387{height:38.937500pt;}
.h2_c00387{height:55.893333pt;}
.h4_c00387{height:56.906667pt;}
.h5_c00387{height:67.093333pt;}
.h3_c00387{height:69.866667pt;}
.h1_c00387{height:752.666667pt;}
.h0_c00387{height:752.866667pt;}
.w2_c00387{width:93.222667pt;}
.w1_c00387{width:499.333333pt;}
.w0_c00387{width:499.466667pt;}
.x0_c00387{left:0.000000pt;}
.x1_c00387{left:12.000000pt;}
.x6_c00387{left:66.266667pt;}
.x5_c00387{left:67.466667pt;}
.x3_c00387{left:68.400000pt;}
.x4_c00387{left:69.333333pt;}
.x7_c00387{left:70.400000pt;}
.x2_c00387{left:71.600000pt;}
.x14_c00387{left:206.901571pt;}
.x8_c00387{left:265.200000pt;}
.x9_c00387{left:266.400000pt;}
.x10_c00387{left:268.133333pt;}
.x11_c00387{left:269.600000pt;}
.xc_c00387{left:275.333333pt;}
.xd_c00387{left:291.866667pt;}
.xb_c00387{left:294.933333pt;}
.xf_c00387{left:301.200000pt;}
.xa_c00387{left:328.000000pt;}
.xe_c00387{left:335.066667pt;}
.x12_c00387{left:417.600000pt;}
.x13_c00387{left:448.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_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_31ffc811e5a832108450ccc0.woff2')format("woff");}.ff1_c00388{font-family:ff1_c00388;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00388;src:url('chunks/assets/font_ca1761dcb815a0e7a8a4dd55.woff2')format("woff");}.ff2_c00388{font-family:ff2_c00388;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00388;src:url('chunks/assets/font_c91b90aaf0db6fea11bcba12.woff2')format("woff");}.ff3_c00388{font-family:ff3_c00388;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00388;src:url('chunks/assets/font_27486a3ab671ed3d5c32a910.woff2')format("woff");}.ff4_c00388{font-family:ff4_c00388;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00388;src:url('chunks/assets/font_91784e90d736b2076084dfd3.woff2')format("woff");}.ff5_c00388{font-family:ff5_c00388;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00388;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff6_c00388{font-family:ff6_c00388;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00388{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00388{vertical-align:0.000000px;}
.ls8_c00388{letter-spacing:0.000000px;}
.ls1_c00388{letter-spacing:0.405000px;}
.ls0_c00388{letter-spacing:1.320000px;}
.ls7_c00388{letter-spacing:3.000000px;}
.ls3_c00388{letter-spacing:4.800000px;}
.ls4_c00388{letter-spacing:6.000000px;}
.ls5_c00388{letter-spacing:9.660000px;}
.ls2_c00388{letter-spacing:13.200000px;}
.ls6_c00388{letter-spacing:37.800000px;}
.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;}
}
.ws5_c00388{word-spacing:-35.295000px;}
.ws4_c00388{word-spacing:-20.340000px;}
.ws6_c00388{word-spacing:-18.060000px;}
.ws2_c00388{word-spacing:-15.480000px;}
.ws1_c00388{word-spacing:-14.160000px;}
.ws3_c00388{word-spacing:-2.340000px;}
.ws7_c00388{word-spacing:0.000000px;}
.ws0_c00388{word-spacing:3.720000px;}
._29_c00388{margin-left:-26.760000px;}
._25_c00388{margin-left:-15.615000px;}
._2e_c00388{margin-left:-14.160000px;}
._2d_c00388{margin-left:-12.000000px;}
._15_c00388{margin-left:-10.800000px;}
._10_c00388{margin-left:-8.040000px;}
._a_c00388{margin-left:-6.180000px;}
._12_c00388{margin-left:-5.100000px;}
._1b_c00388{margin-left:-3.900000px;}
._b_c00388{margin-left:-2.760000px;}
._6_c00388{margin-left:-1.620000px;}
._4_c00388{width:1.200000px;}
._5_c00388{width:2.580000px;}
._7_c00388{width:4.140000px;}
._f_c00388{width:5.820000px;}
._13_c00388{width:7.080000px;}
._1a_c00388{width:8.280000px;}
._1_c00388{width:10.140000px;}
._17_c00388{width:11.580000px;}
._0_c00388{width:12.840000px;}
._21_c00388{width:13.980000px;}
._26_c00388{width:15.300000px;}
._3_c00388{width:16.560000px;}
._1f_c00388{width:18.540000px;}
._27_c00388{width:19.680000px;}
._1e_c00388{width:20.820000px;}
._11_c00388{width:22.140000px;}
._1c_c00388{width:23.220000px;}
._e_c00388{width:24.600000px;}
._d_c00388{width:26.100000px;}
._22_c00388{width:27.120000px;}
._2c_c00388{width:28.140000px;}
._16_c00388{width:29.640000px;}
._2_c00388{width:31.740000px;}
._1d_c00388{width:33.000000px;}
._c_c00388{width:35.400000px;}
._2b_c00388{width:36.900000px;}
._9_c00388{width:39.180000px;}
._23_c00388{width:40.200000px;}
._2a_c00388{width:41.460000px;}
._19_c00388{width:42.600000px;}
._8_c00388{width:44.040000px;}
._20_c00388{width:46.500000px;}
._18_c00388{width:51.600000px;}
._2f_c00388{width:54.300000px;}
._14_c00388{width:78.240000px;}
._28_c00388{width:200.580000px;}
._24_c00388{width:480.960000px;}
.fc2_c00388{color:transparent;}
.fc1_c00388{color:rgb(128,128,128);}
.fc0_c00388{color:rgb(0,0,0);}
.fs1_c00388{font-size:45.000000px;}
.fs3_c00388{font-size:48.000000px;}
.fs2_c00388{font-size:54.000000px;}
.fs0_c00388{font-size:60.000000px;}
.y0_c00388{bottom:0.000000px;}
.y54_c00388{bottom:3.105000px;}
.y53_c00388{bottom:7.228371px;}
.y52_c00388{bottom:31.515000px;}
.y51_c00388{bottom:51.315000px;}
.y2a_c00388{bottom:51.615000px;}
.y50_c00388{bottom:69.615000px;}
.y29_c00388{bottom:70.665000px;}
.y4f_c00388{bottom:87.765000px;}
.y28_c00388{bottom:88.815000px;}
.y4e_c00388{bottom:106.065000px;}
.y27_c00388{bottom:106.665000px;}
.y26_c00388{bottom:124.515000px;}
.y4d_c00388{bottom:140.715000px;}
.y25_c00388{bottom:142.515000px;}
.y4c_c00388{bottom:160.665000px;}
.y24_c00388{bottom:161.415000px;}
.y4b_c00388{bottom:178.515000px;}
.y23_c00388{bottom:179.265000px;}
.y4a_c00388{bottom:196.815000px;}
.y22_c00388{bottom:197.115000px;}
.y21_c00388{bottom:214.665000px;}
.y49_c00388{bottom:215.115000px;}
.y20_c00388{bottom:233.565000px;}
.y48_c00388{bottom:250.815000px;}
.y1f_c00388{bottom:251.865000px;}
.y1e_c00388{bottom:269.115000px;}
.y47_c00388{bottom:286.965000px;}
.y1d_c00388{bottom:287.865000px;}
.y46_c00388{bottom:305.115000px;}
.y1c_c00388{bottom:306.165000px;}
.y45_c00388{bottom:321.615000px;}
.y1b_c00388{bottom:323.415000px;}
.y44_c00388{bottom:338.865000px;}
.y1a_c00388{bottom:340.965000px;}
.y43_c00388{bottom:358.215000px;}
.y19_c00388{bottom:359.565000px;}
.y42_c00388{bottom:376.965000px;}
.y18_c00388{bottom:377.715000px;}
.y41_c00388{bottom:394.515000px;}
.y17_c00388{bottom:396.015000px;}
.y40_c00388{bottom:413.115000px;}
.y16_c00388{bottom:413.865000px;}
.y3f_c00388{bottom:430.065000px;}
.y15_c00388{bottom:432.015000px;}
.y3e_c00388{bottom:449.265000px;}
.y14_c00388{bottom:450.315000px;}
.y3d_c00388{bottom:467.415000px;}
.y13_c00388{bottom:468.765000px;}
.y3c_c00388{bottom:484.965000px;}
.y12_c00388{bottom:486.315000px;}
.y3b_c00388{bottom:502.965000px;}
.y11_c00388{bottom:503.565000px;}
.y3a_c00388{bottom:520.815000px;}
.y10_c00388{bottom:521.115000px;}
.y39_c00388{bottom:537.315000px;}
.yf_c00388{bottom:538.965000px;}
.ye_c00388{bottom:556.515000px;}
.y38_c00388{bottom:557.265000px;}
.y37_c00388{bottom:574.215000px;}
.yd_c00388{bottom:574.515000px;}
.yc_c00388{bottom:592.365000px;}
.y36_c00388{bottom:593.115000px;}
.yb_c00388{bottom:610.215000px;}
.y35_c00388{bottom:611.265000px;}
.ya_c00388{bottom:628.215000px;}
.y34_c00388{bottom:629.115000px;}
.y9_c00388{bottom:646.665000px;}
.y33_c00388{bottom:647.415000px;}
.y8_c00388{bottom:664.215000px;}
.y32_c00388{bottom:664.665000px;}
.y7_c00388{bottom:682.515000px;}
.y31_c00388{bottom:683.415000px;}
.y6_c00388{bottom:700.365000px;}
.y30_c00388{bottom:702.015000px;}
.y5_c00388{bottom:718.665000px;}
.y2f_c00388{bottom:719.865000px;}
.y4_c00388{bottom:736.815000px;}
.y2e_c00388{bottom:738.765000px;}
.y3_c00388{bottom:755.715000px;}
.y2d_c00388{bottom:757.065000px;}
.y2_c00388{bottom:773.265000px;}
.y2c_c00388{bottom:774.015000px;}
.y1_c00388{bottom:795.165000px;}
.y2b_c00388{bottom:795.465000px;}
.h4_c00388{height:13.200074px;}
.h5_c00388{height:43.804688px;}
.h2_c00388{height:62.880000px;}
.h3_c00388{height:64.020000px;}
.h1_c00388{height:844.500000px;}
.h0_c00388{height:844.575000px;}
.w1_c00388{width:104.875500px;}
.w0_c00388{width:587.250000px;}
.x0_c00388{left:0.000000px;}
.x5_c00388{left:19.200000px;}
.x6_c00388{left:52.950000px;}
.x2_c00388{left:78.900000px;}
.x3_c00388{left:79.950000px;}
.x4_c00388{left:81.900000px;}
.x7_c00388{left:83.400000px;}
.x8_c00388{left:85.050000px;}
.xa_c00388{left:86.700000px;}
.x9_c00388{left:111.750000px;}
.x1_c00388{left:209.550000px;}
.x15_c00388{left:245.439240px;}
.xb_c00388{left:291.900000px;}
.xd_c00388{left:296.700000px;}
.xc_c00388{left:300.750000px;}
.xe_c00388{left:301.950000px;}
.xf_c00388{left:303.000000px;}
.x10_c00388{left:304.350000px;}
.x12_c00388{left:305.400000px;}
.x13_c00388{left:306.450000px;}
.x11_c00388{left:337.200000px;}
.x14_c00388{left:468.750000px;}
@media print{
.v0_c00388{vertical-align:0.000000pt;}
.ls8_c00388{letter-spacing:0.000000pt;}
.ls1_c00388{letter-spacing:0.360000pt;}
.ls0_c00388{letter-spacing:1.173333pt;}
.ls7_c00388{letter-spacing:2.666667pt;}
.ls3_c00388{letter-spacing:4.266667pt;}
.ls4_c00388{letter-spacing:5.333333pt;}
.ls5_c00388{letter-spacing:8.586667pt;}
.ls2_c00388{letter-spacing:11.733333pt;}
.ls6_c00388{letter-spacing:33.600000pt;}
.ws5_c00388{word-spacing:-31.373333pt;}
.ws4_c00388{word-spacing:-18.080000pt;}
.ws6_c00388{word-spacing:-16.053333pt;}
.ws2_c00388{word-spacing:-13.760000pt;}
.ws1_c00388{word-spacing:-12.586667pt;}
.ws3_c00388{word-spacing:-2.080000pt;}
.ws7_c00388{word-spacing:0.000000pt;}
.ws0_c00388{word-spacing:3.306667pt;}
._29_c00388{margin-left:-23.786667pt;}
._25_c00388{margin-left:-13.880000pt;}
._2e_c00388{margin-left:-12.586667pt;}
._2d_c00388{margin-left:-10.666667pt;}
._15_c00388{margin-left:-9.600000pt;}
._10_c00388{margin-left:-7.146667pt;}
._a_c00388{margin-left:-5.493333pt;}
._12_c00388{margin-left:-4.533333pt;}
._1b_c00388{margin-left:-3.466667pt;}
._b_c00388{margin-left:-2.453333pt;}
._6_c00388{margin-left:-1.440000pt;}
._4_c00388{width:1.066667pt;}
._5_c00388{width:2.293333pt;}
._7_c00388{width:3.680000pt;}
._f_c00388{width:5.173333pt;}
._13_c00388{width:6.293333pt;}
._1a_c00388{width:7.360000pt;}
._1_c00388{width:9.013333pt;}
._17_c00388{width:10.293333pt;}
._0_c00388{width:11.413333pt;}
._21_c00388{width:12.426667pt;}
._26_c00388{width:13.600000pt;}
._3_c00388{width:14.720000pt;}
._1f_c00388{width:16.480000pt;}
._27_c00388{width:17.493333pt;}
._1e_c00388{width:18.506667pt;}
._11_c00388{width:19.680000pt;}
._1c_c00388{width:20.640000pt;}
._e_c00388{width:21.866667pt;}
._d_c00388{width:23.200000pt;}
._22_c00388{width:24.106667pt;}
._2c_c00388{width:25.013333pt;}
._16_c00388{width:26.346667pt;}
._2_c00388{width:28.213333pt;}
._1d_c00388{width:29.333333pt;}
._c_c00388{width:31.466667pt;}
._2b_c00388{width:32.800000pt;}
._9_c00388{width:34.826667pt;}
._23_c00388{width:35.733333pt;}
._2a_c00388{width:36.853333pt;}
._19_c00388{width:37.866667pt;}
._8_c00388{width:39.146667pt;}
._20_c00388{width:41.333333pt;}
._18_c00388{width:45.866667pt;}
._2f_c00388{width:48.266667pt;}
._14_c00388{width:69.546667pt;}
._28_c00388{width:178.293333pt;}
._24_c00388{width:427.520000pt;}
.fs1_c00388{font-size:40.000000pt;}
.fs3_c00388{font-size:42.666667pt;}
.fs2_c00388{font-size:48.000000pt;}
.fs0_c00388{font-size:53.333333pt;}
.y0_c00388{bottom:0.000000pt;}
.y54_c00388{bottom:2.760000pt;}
.y53_c00388{bottom:6.425219pt;}
.y52_c00388{bottom:28.013333pt;}
.y51_c00388{bottom:45.613333pt;}
.y2a_c00388{bottom:45.880000pt;}
.y50_c00388{bottom:61.880000pt;}
.y29_c00388{bottom:62.813333pt;}
.y4f_c00388{bottom:78.013333pt;}
.y28_c00388{bottom:78.946667pt;}
.y4e_c00388{bottom:94.280000pt;}
.y27_c00388{bottom:94.813333pt;}
.y26_c00388{bottom:110.680000pt;}
.y4d_c00388{bottom:125.080000pt;}
.y25_c00388{bottom:126.680000pt;}
.y4c_c00388{bottom:142.813333pt;}
.y24_c00388{bottom:143.480000pt;}
.y4b_c00388{bottom:158.680000pt;}
.y23_c00388{bottom:159.346667pt;}
.y4a_c00388{bottom:174.946667pt;}
.y22_c00388{bottom:175.213333pt;}
.y21_c00388{bottom:190.813333pt;}
.y49_c00388{bottom:191.213333pt;}
.y20_c00388{bottom:207.613333pt;}
.y48_c00388{bottom:222.946667pt;}
.y1f_c00388{bottom:223.880000pt;}
.y1e_c00388{bottom:239.213333pt;}
.y47_c00388{bottom:255.080000pt;}
.y1d_c00388{bottom:255.880000pt;}
.y46_c00388{bottom:271.213333pt;}
.y1c_c00388{bottom:272.146667pt;}
.y45_c00388{bottom:285.880000pt;}
.y1b_c00388{bottom:287.480000pt;}
.y44_c00388{bottom:301.213333pt;}
.y1a_c00388{bottom:303.080000pt;}
.y43_c00388{bottom:318.413333pt;}
.y19_c00388{bottom:319.613333pt;}
.y42_c00388{bottom:335.080000pt;}
.y18_c00388{bottom:335.746667pt;}
.y41_c00388{bottom:350.680000pt;}
.y17_c00388{bottom:352.013333pt;}
.y40_c00388{bottom:367.213333pt;}
.y16_c00388{bottom:367.880000pt;}
.y3f_c00388{bottom:382.280000pt;}
.y15_c00388{bottom:384.013333pt;}
.y3e_c00388{bottom:399.346667pt;}
.y14_c00388{bottom:400.280000pt;}
.y3d_c00388{bottom:415.480000pt;}
.y13_c00388{bottom:416.680000pt;}
.y3c_c00388{bottom:431.080000pt;}
.y12_c00388{bottom:432.280000pt;}
.y3b_c00388{bottom:447.080000pt;}
.y11_c00388{bottom:447.613333pt;}
.y3a_c00388{bottom:462.946667pt;}
.y10_c00388{bottom:463.213333pt;}
.y39_c00388{bottom:477.613333pt;}
.yf_c00388{bottom:479.080000pt;}
.ye_c00388{bottom:494.680000pt;}
.y38_c00388{bottom:495.346667pt;}
.y37_c00388{bottom:510.413333pt;}
.yd_c00388{bottom:510.680000pt;}
.yc_c00388{bottom:526.546667pt;}
.y36_c00388{bottom:527.213333pt;}
.yb_c00388{bottom:542.413333pt;}
.y35_c00388{bottom:543.346667pt;}
.ya_c00388{bottom:558.413333pt;}
.y34_c00388{bottom:559.213333pt;}
.y9_c00388{bottom:574.813333pt;}
.y33_c00388{bottom:575.480000pt;}
.y8_c00388{bottom:590.413333pt;}
.y32_c00388{bottom:590.813333pt;}
.y7_c00388{bottom:606.680000pt;}
.y31_c00388{bottom:607.480000pt;}
.y6_c00388{bottom:622.546667pt;}
.y30_c00388{bottom:624.013333pt;}
.y5_c00388{bottom:638.813333pt;}
.y2f_c00388{bottom:639.880000pt;}
.y4_c00388{bottom:654.946667pt;}
.y2e_c00388{bottom:656.680000pt;}
.y3_c00388{bottom:671.746667pt;}
.y2d_c00388{bottom:672.946667pt;}
.y2_c00388{bottom:687.346667pt;}
.y2c_c00388{bottom:688.013333pt;}
.y1_c00388{bottom:706.813333pt;}
.y2b_c00388{bottom:707.080000pt;}
.h4_c00388{height:11.733399pt;}
.h5_c00388{height:38.937500pt;}
.h2_c00388{height:55.893333pt;}
.h3_c00388{height:56.906667pt;}
.h1_c00388{height:750.666667pt;}
.h0_c00388{height:750.733333pt;}
.w1_c00388{width:93.222667pt;}
.w0_c00388{width:522.000000pt;}
.x0_c00388{left:0.000000pt;}
.x5_c00388{left:17.066667pt;}
.x6_c00388{left:47.066667pt;}
.x2_c00388{left:70.133333pt;}
.x3_c00388{left:71.066667pt;}
.x4_c00388{left:72.800000pt;}
.x7_c00388{left:74.133333pt;}
.x8_c00388{left:75.600000pt;}
.xa_c00388{left:77.066667pt;}
.x9_c00388{left:99.333333pt;}
.x1_c00388{left:186.266667pt;}
.x15_c00388{left:218.168213pt;}
.xb_c00388{left:259.466667pt;}
.xd_c00388{left:263.733333pt;}
.xc_c00388{left:267.333333pt;}
.xe_c00388{left:268.400000pt;}
.xf_c00388{left:269.333333pt;}
.x10_c00388{left:270.533333pt;}
.x12_c00388{left:271.466667pt;}
.x13_c00388{left:272.400000pt;}
.x11_c00388{left:299.733333pt;}
.x14_c00388{left:416.666667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3e038d563d067d72bc0df132.woff2')format("woff");}.ff1_c00389{font-family:ff1_c00389;line-height:1.437000;font-style:normal;font-weight:normal;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_d19b4091e3e48bd2aa18f569.woff2')format("woff");}.ff2_c00389{font-family:ff2_c00389;line-height:1.437000;font-style:normal;font-weight:normal;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_b69619bf64d63ec5d163abd8.woff2')format("woff");}.ff3_c00389{font-family:ff3_c00389;line-height:1.575000;font-style:normal;font-weight:normal;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_3a46ec0212d294be3c8c5d26.woff2')format("woff");}.ff4_c00389{font-family:ff4_c00389;line-height:1.575000;font-style:normal;font-weight:normal;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_2321a07e347c9ea3adebcc9e.woff2')format("woff");}.ff5_c00389{font-family:ff5_c00389;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00389;src:url('chunks/assets/font_0ce391de997f24f9f9dd37f4.woff2')format("woff");}.ff6_c00389{font-family:ff6_c00389;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00389;src:url('chunks/assets/font_ca8287a10f4e8122e666cab8.woff2')format("woff");}.ff7_c00389{font-family:ff7_c00389;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00389;src:url('chunks/assets/font_cbed595851db776c874fe1cb.woff2')format("woff");}.ff8_c00389{font-family:ff8_c00389;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00389;src:url('chunks/assets/font_dd2c6d5816a4226f1051f15f.woff2')format("woff");}.ff9_c00389{font-family:ff9_c00389;line-height:1.437000;font-style:normal;font-weight: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_c00389;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ffa_c00389{font-family:ffa_c00389;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00389{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00389{vertical-align:0.000000px;}
.v1_c00389{vertical-align:93.000000px;}
.ls9_c00389{letter-spacing:0.000000px;}
.ls2_c00389{letter-spacing:2.700000px;}
.ls0_c00389{letter-spacing:3.000000px;}
.ls5_c00389{letter-spacing:4.005000px;}
.lsa_c00389{letter-spacing:6.000000px;}
.ls7_c00389{letter-spacing:6.600000px;}
.ls1_c00389{letter-spacing:6.651000px;}
.ls6_c00389{letter-spacing:7.740000px;}
.ls4_c00389{letter-spacing:9.000000px;}
.ls3_c00389{letter-spacing:12.135000px;}
.ls8_c00389{letter-spacing:54.693000px;}
.sc__c00389{text-shadow:none;}
.sc0_c00389{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00389{-webkit-text-stroke:0px transparent;}
.sc0_c00389{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00389{word-spacing:-142.071000px;}
.ws2_c00389{word-spacing:-27.417000px;}
.ws8_c00389{word-spacing:-24.759000px;}
.ws3_c00389{word-spacing:-21.744000px;}
.ws0_c00389{word-spacing:-20.340000px;}
.ws6_c00389{word-spacing:-18.813000px;}
.ws1_c00389{word-spacing:-14.427000px;}
.ws4_c00389{word-spacing:-14.160000px;}
.ws7_c00389{word-spacing:-13.452000px;}
.ws9_c00389{word-spacing:0.000000px;}
._14_c00389{margin-left:-27.720000px;}
._22_c00389{margin-left:-17.706000px;}
._27_c00389{margin-left:-15.264000px;}
._28_c00389{margin-left:-13.860000px;}
._17_c00389{margin-left:-12.120000px;}
._18_c00389{margin-left:-9.900000px;}
._2b_c00389{margin-left:-8.868000px;}
._20_c00389{margin-left:-7.842000px;}
._1b_c00389{margin-left:-6.459000px;}
._12_c00389{margin-left:-5.385000px;}
._d_c00389{margin-left:-3.717000px;}
._e_c00389{margin-left:-2.457000px;}
._b_c00389{margin-left:-1.260000px;}
._11_c00389{width:1.008000px;}
._f_c00389{width:2.079000px;}
._13_c00389{width:3.210000px;}
._8_c00389{width:4.284000px;}
._16_c00389{width:6.150000px;}
._7_c00389{width:8.127000px;}
._a_c00389{width:9.513000px;}
._6_c00389{width:10.584000px;}
._9_c00389{width:12.033000px;}
._0_c00389{width:13.167000px;}
._1_c00389{width:14.427000px;}
._2_c00389{width:15.750000px;}
._1e_c00389{width:17.052000px;}
._4_c00389{width:19.845000px;}
._3_c00389{width:21.861000px;}
._1d_c00389{width:23.622000px;}
._5_c00389{width:24.657000px;}
._24_c00389{width:25.767000px;}
._1c_c00389{width:28.233000px;}
._19_c00389{width:30.138000px;}
._2c_c00389{width:31.764000px;}
._c_c00389{width:33.138000px;}
._1f_c00389{width:34.587000px;}
._21_c00389{width:38.586000px;}
._2d_c00389{width:39.822000px;}
._29_c00389{width:48.957000px;}
._1a_c00389{width:52.479000px;}
._25_c00389{width:56.103000px;}
._26_c00389{width:58.980000px;}
._10_c00389{width:68.292000px;}
._23_c00389{width:83.406000px;}
._15_c00389{width:86.940000px;}
._2a_c00389{width:189.273000px;}
.fc2_c00389{color:transparent;}
.fc1_c00389{color:rgb(128,128,128);}
.fc0_c00389{color:rgb(0,0,0);}
.fs7_c00389{font-size:39.000000px;}
.fs4_c00389{font-size:45.000000px;}
.fs8_c00389{font-size:48.000000px;}
.fs3_c00389{font-size:54.000000px;}
.fs2_c00389{font-size:57.000000px;}
.fs1_c00389{font-size:60.000000px;}
.fs0_c00389{font-size:63.000000px;}
.fs6_c00389{font-size:72.000000px;}
.fs5_c00389{font-size:213.000000px;}
.y0_c00389{bottom:0.000000px;}
.y4e_c00389{bottom:3.105000px;}
.y4d_c00389{bottom:7.228355px;}
.y4c_c00389{bottom:37.785000px;}
.y27_c00389{bottom:54.285000px;}
.y4b_c00389{bottom:55.335000px;}
.y25_c00389{bottom:67.185000px;}
.y26_c00389{bottom:72.885000px;}
.y4a_c00389{bottom:73.785000px;}
.y49_c00389{bottom:92.085000px;}
.y48_c00389{bottom:109.935000px;}
.y24_c00389{bottom:127.785000px;}
.y47_c00389{bottom:127.935000px;}
.y23_c00389{bottom:144.735000px;}
.y46_c00389{bottom:146.385000px;}
.y22_c00389{bottom:162.885000px;}
.y45_c00389{bottom:163.935000px;}
.y21_c00389{bottom:181.185000px;}
.y44_c00389{bottom:182.235000px;}
.y43_c00389{bottom:200.685000px;}
.y20_c00389{bottom:215.985000px;}
.y42_c00389{bottom:218.985000px;}
.y41_c00389{bottom:236.235000px;}
.y1f_c00389{bottom:250.635000px;}
.y40_c00389{bottom:254.685000px;}
.y1e_c00389{bottom:270.285000px;}
.y3f_c00389{bottom:272.385000px;}
.y1d_c00389{bottom:288.135000px;}
.y3e_c00389{bottom:289.935000px;}
.y1c_c00389{bottom:306.435000px;}
.y3d_c00389{bottom:307.035000px;}
.y1b_c00389{bottom:324.285000px;}
.y3c_c00389{bottom:325.035000px;}
.y1a_c00389{bottom:342.585000px;}
.y19_c00389{bottom:360.435000px;}
.y3b_c00389{bottom:361.035000px;}
.y18_c00389{bottom:378.585000px;}
.y3a_c00389{bottom:378.885000px;}
.y17_c00389{bottom:396.435000px;}
.y39_c00389{bottom:396.585000px;}
.y16_c00389{bottom:415.035000px;}
.y15_c00389{bottom:432.585000px;}
.y38_c00389{bottom:432.885000px;}
.y37_c00389{bottom:451.185000px;}
.y14_c00389{bottom:451.785000px;}
.y13_c00389{bottom:468.735000px;}
.y36_c00389{bottom:469.335000px;}
.y12_c00389{bottom:486.885000px;}
.y35_c00389{bottom:487.335000px;}
.y11_c00389{bottom:505.185000px;}
.y34_c00389{bottom:505.485000px;}
.y33_c00389{bottom:523.335000px;}
.y10_c00389{bottom:524.385000px;}
.yf_c00389{bottom:541.035000px;}
.y32_c00389{bottom:541.635000px;}
.ye_c00389{bottom:559.485000px;}
.yd_c00389{bottom:577.485000px;}
.y31_c00389{bottom:577.785000px;}
.yc_c00389{bottom:595.335000px;}
.y30_c00389{bottom:595.935000px;}
.y2f_c00389{bottom:612.435000px;}
.yb_c00389{bottom:613.485000px;}
.ya_c00389{bottom:631.485000px;}
.y2e_c00389{bottom:648.585000px;}
.y9_c00389{bottom:650.985000px;}
.y2d_c00389{bottom:666.885000px;}
.y8_c00389{bottom:668.535000px;}
.y2c_c00389{bottom:685.335000px;}
.y7_c00389{bottom:685.785000px;}
.y2b_c00389{bottom:703.335000px;}
.y6_c00389{bottom:704.385000px;}
.y2a_c00389{bottom:720.885000px;}
.y5_c00389{bottom:723.585000px;}
.y29_c00389{bottom:739.035000px;}
.y4_c00389{bottom:741.135000px;}
.y28_c00389{bottom:756.885000px;}
.y3_c00389{bottom:758.985000px;}
.y2_c00389{bottom:775.935000px;}
.y1_c00389{bottom:795.435000px;}
.h8_c00389{height:13.200074px;}
.h9_c00389{height:43.804688px;}
.h7_c00389{height:59.736000px;}
.h3_c00389{height:62.880000px;}
.h4_c00389{height:64.020000px;}
.h2_c00389{height:66.024000px;}
.h6_c00389{height:70.664062px;}
.h5_c00389{height:208.943848px;}
.h1_c00389{height:846.750000px;}
.h0_c00389{height:846.975000px;}
.w2_c00389{width:104.875500px;}
.w0_c00389{width:568.875000px;}
.w1_c00389{width:569.250000px;}
.x0_c00389{left:0.000000px;}
.x6_c00389{left:15.300000px;}
.x7_c00389{left:16.500000px;}
.x9_c00389{left:46.950000px;}
.x4_c00389{left:54.300000px;}
.xe_c00389{left:70.650000px;}
.x8_c00389{left:74.550000px;}
.x5_c00389{left:76.650000px;}
.xb_c00389{left:78.000000px;}
.xa_c00389{left:79.950000px;}
.x3_c00389{left:81.750000px;}
.x2_c00389{left:83.250000px;}
.x10_c00389{left:106.950000px;}
.xd_c00389{left:109.350000px;}
.xf_c00389{left:119.100000px;}
.xc_c00389{left:146.100000px;}
.x1_c00389{left:167.400000px;}
.x1b_c00389{left:236.251740px;}
.x19_c00389{left:288.150000px;}
.x16_c00389{left:291.600000px;}
.x15_c00389{left:293.250000px;}
.x14_c00389{left:294.300000px;}
.x11_c00389{left:295.950000px;}
.x12_c00389{left:297.300000px;}
.x18_c00389{left:339.900000px;}
.x17_c00389{left:355.050000px;}
.x13_c00389{left:367.500000px;}
.x1a_c00389{left:457.350000px;}
@media print{
.v0_c00389{vertical-align:0.000000pt;}
.v1_c00389{vertical-align:82.666667pt;}
.ls9_c00389{letter-spacing:0.000000pt;}
.ls2_c00389{letter-spacing:2.400000pt;}
.ls0_c00389{letter-spacing:2.666667pt;}
.ls5_c00389{letter-spacing:3.560000pt;}
.lsa_c00389{letter-spacing:5.333333pt;}
.ls7_c00389{letter-spacing:5.866667pt;}
.ls1_c00389{letter-spacing:5.912000pt;}
.ls6_c00389{letter-spacing:6.880000pt;}
.ls4_c00389{letter-spacing:8.000000pt;}
.ls3_c00389{letter-spacing:10.786667pt;}
.ls8_c00389{letter-spacing:48.616000pt;}
.ws5_c00389{word-spacing:-126.285333pt;}
.ws2_c00389{word-spacing:-24.370667pt;}
.ws8_c00389{word-spacing:-22.008000pt;}
.ws3_c00389{word-spacing:-19.328000pt;}
.ws0_c00389{word-spacing:-18.080000pt;}
.ws6_c00389{word-spacing:-16.722667pt;}
.ws1_c00389{word-spacing:-12.824000pt;}
.ws4_c00389{word-spacing:-12.586667pt;}
.ws7_c00389{word-spacing:-11.957333pt;}
.ws9_c00389{word-spacing:0.000000pt;}
._14_c00389{margin-left:-24.640000pt;}
._22_c00389{margin-left:-15.738667pt;}
._27_c00389{margin-left:-13.568000pt;}
._28_c00389{margin-left:-12.320000pt;}
._17_c00389{margin-left:-10.773333pt;}
._18_c00389{margin-left:-8.800000pt;}
._2b_c00389{margin-left:-7.882667pt;}
._20_c00389{margin-left:-6.970667pt;}
._1b_c00389{margin-left:-5.741333pt;}
._12_c00389{margin-left:-4.786667pt;}
._d_c00389{margin-left:-3.304000pt;}
._e_c00389{margin-left:-2.184000pt;}
._b_c00389{margin-left:-1.120000pt;}
._11_c00389{width:0.896000pt;}
._f_c00389{width:1.848000pt;}
._13_c00389{width:2.853333pt;}
._8_c00389{width:3.808000pt;}
._16_c00389{width:5.466667pt;}
._7_c00389{width:7.224000pt;}
._a_c00389{width:8.456000pt;}
._6_c00389{width:9.408000pt;}
._9_c00389{width:10.696000pt;}
._0_c00389{width:11.704000pt;}
._1_c00389{width:12.824000pt;}
._2_c00389{width:14.000000pt;}
._1e_c00389{width:15.157333pt;}
._4_c00389{width:17.640000pt;}
._3_c00389{width:19.432000pt;}
._1d_c00389{width:20.997333pt;}
._5_c00389{width:21.917333pt;}
._24_c00389{width:22.904000pt;}
._1c_c00389{width:25.096000pt;}
._19_c00389{width:26.789333pt;}
._2c_c00389{width:28.234667pt;}
._c_c00389{width:29.456000pt;}
._1f_c00389{width:30.744000pt;}
._21_c00389{width:34.298667pt;}
._2d_c00389{width:35.397333pt;}
._29_c00389{width:43.517333pt;}
._1a_c00389{width:46.648000pt;}
._25_c00389{width:49.869333pt;}
._26_c00389{width:52.426667pt;}
._10_c00389{width:60.704000pt;}
._23_c00389{width:74.138667pt;}
._15_c00389{width:77.280000pt;}
._2a_c00389{width:168.242667pt;}
.fs7_c00389{font-size:34.666667pt;}
.fs4_c00389{font-size:40.000000pt;}
.fs8_c00389{font-size:42.666667pt;}
.fs3_c00389{font-size:48.000000pt;}
.fs2_c00389{font-size:50.666667pt;}
.fs1_c00389{font-size:53.333333pt;}
.fs0_c00389{font-size:56.000000pt;}
.fs6_c00389{font-size:64.000000pt;}
.fs5_c00389{font-size:189.333333pt;}
.y0_c00389{bottom:0.000000pt;}
.y4e_c00389{bottom:2.760000pt;}
.y4d_c00389{bottom:6.425204pt;}
.y4c_c00389{bottom:33.586667pt;}
.y27_c00389{bottom:48.253333pt;}
.y4b_c00389{bottom:49.186667pt;}
.y25_c00389{bottom:59.720000pt;}
.y26_c00389{bottom:64.786667pt;}
.y4a_c00389{bottom:65.586667pt;}
.y49_c00389{bottom:81.853333pt;}
.y48_c00389{bottom:97.720000pt;}
.y24_c00389{bottom:113.586667pt;}
.y47_c00389{bottom:113.720000pt;}
.y23_c00389{bottom:128.653333pt;}
.y46_c00389{bottom:130.120000pt;}
.y22_c00389{bottom:144.786667pt;}
.y45_c00389{bottom:145.720000pt;}
.y21_c00389{bottom:161.053333pt;}
.y44_c00389{bottom:161.986667pt;}
.y43_c00389{bottom:178.386667pt;}
.y20_c00389{bottom:191.986667pt;}
.y42_c00389{bottom:194.653333pt;}
.y41_c00389{bottom:209.986667pt;}
.y1f_c00389{bottom:222.786667pt;}
.y40_c00389{bottom:226.386667pt;}
.y1e_c00389{bottom:240.253333pt;}
.y3f_c00389{bottom:242.120000pt;}
.y1d_c00389{bottom:256.120000pt;}
.y3e_c00389{bottom:257.720000pt;}
.y1c_c00389{bottom:272.386667pt;}
.y3d_c00389{bottom:272.920000pt;}
.y1b_c00389{bottom:288.253333pt;}
.y3c_c00389{bottom:288.920000pt;}
.y1a_c00389{bottom:304.520000pt;}
.y19_c00389{bottom:320.386667pt;}
.y3b_c00389{bottom:320.920000pt;}
.y18_c00389{bottom:336.520000pt;}
.y3a_c00389{bottom:336.786667pt;}
.y17_c00389{bottom:352.386667pt;}
.y39_c00389{bottom:352.520000pt;}
.y16_c00389{bottom:368.920000pt;}
.y15_c00389{bottom:384.520000pt;}
.y38_c00389{bottom:384.786667pt;}
.y37_c00389{bottom:401.053333pt;}
.y14_c00389{bottom:401.586667pt;}
.y13_c00389{bottom:416.653333pt;}
.y36_c00389{bottom:417.186667pt;}
.y12_c00389{bottom:432.786667pt;}
.y35_c00389{bottom:433.186667pt;}
.y11_c00389{bottom:449.053333pt;}
.y34_c00389{bottom:449.320000pt;}
.y33_c00389{bottom:465.186667pt;}
.y10_c00389{bottom:466.120000pt;}
.yf_c00389{bottom:480.920000pt;}
.y32_c00389{bottom:481.453333pt;}
.ye_c00389{bottom:497.320000pt;}
.yd_c00389{bottom:513.320000pt;}
.y31_c00389{bottom:513.586667pt;}
.yc_c00389{bottom:529.186667pt;}
.y30_c00389{bottom:529.720000pt;}
.y2f_c00389{bottom:544.386667pt;}
.yb_c00389{bottom:545.320000pt;}
.ya_c00389{bottom:561.320000pt;}
.y2e_c00389{bottom:576.520000pt;}
.y9_c00389{bottom:578.653333pt;}
.y2d_c00389{bottom:592.786667pt;}
.y8_c00389{bottom:594.253333pt;}
.y2c_c00389{bottom:609.186667pt;}
.y7_c00389{bottom:609.586667pt;}
.y2b_c00389{bottom:625.186667pt;}
.y6_c00389{bottom:626.120000pt;}
.y2a_c00389{bottom:640.786667pt;}
.y5_c00389{bottom:643.186667pt;}
.y29_c00389{bottom:656.920000pt;}
.y4_c00389{bottom:658.786667pt;}
.y28_c00389{bottom:672.786667pt;}
.y3_c00389{bottom:674.653333pt;}
.y2_c00389{bottom:689.720000pt;}
.y1_c00389{bottom:707.053333pt;}
.h8_c00389{height:11.733399pt;}
.h9_c00389{height:38.937500pt;}
.h7_c00389{height:53.098667pt;}
.h3_c00389{height:55.893333pt;}
.h4_c00389{height:56.906667pt;}
.h2_c00389{height:58.688000pt;}
.h6_c00389{height:62.812500pt;}
.h5_c00389{height:185.727865pt;}
.h1_c00389{height:752.666667pt;}
.h0_c00389{height:752.866667pt;}
.w2_c00389{width:93.222667pt;}
.w0_c00389{width:505.666667pt;}
.w1_c00389{width:506.000000pt;}
.x0_c00389{left:0.000000pt;}
.x6_c00389{left:13.600000pt;}
.x7_c00389{left:14.666667pt;}
.x9_c00389{left:41.733333pt;}
.x4_c00389{left:48.266667pt;}
.xe_c00389{left:62.800000pt;}
.x8_c00389{left:66.266667pt;}
.x5_c00389{left:68.133333pt;}
.xb_c00389{left:69.333333pt;}
.xa_c00389{left:71.066667pt;}
.x3_c00389{left:72.666667pt;}
.x2_c00389{left:74.000000pt;}
.x10_c00389{left:95.066667pt;}
.xd_c00389{left:97.200000pt;}
.xf_c00389{left:105.866667pt;}
.xc_c00389{left:129.866667pt;}
.x1_c00389{left:148.800000pt;}
.x1b_c00389{left:210.001546pt;}
.x19_c00389{left:256.133333pt;}
.x16_c00389{left:259.200000pt;}
.x15_c00389{left:260.666667pt;}
.x14_c00389{left:261.600000pt;}
.x11_c00389{left:263.066667pt;}
.x12_c00389{left:264.266667pt;}
.x18_c00389{left:302.133333pt;}
.x17_c00389{left:315.600000pt;}
.x13_c00389{left:326.666667pt;}
.x1a_c00389{left:406.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_dd85ad3cdfe0719afd820531.woff2')format("woff");}.ff1_c00390{font-family:ff1_c00390;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00390;src:url('chunks/assets/font_3a0317e37be29e149435d2b9.woff2')format("woff");}.ff2_c00390{font-family:ff2_c00390;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00390;src:url('chunks/assets/font_fcbdac546e7ed3caec864773.woff2')format("woff");}.ff3_c00390{font-family:ff3_c00390;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00390;src:url('chunks/assets/font_f3e884eabb1771d9448f81b7.woff2')format("woff");}.ff4_c00390{font-family:ff4_c00390;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00390;src:url('chunks/assets/font_3eab0ca007dd4865911ce39a.woff2')format("woff");}.ff5_c00390{font-family:ff5_c00390;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00390;src:url('chunks/assets/font_0ce391de997f24f9f9dd37f4.woff2')format("woff");}.ff6_c00390{font-family:ff6_c00390;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00390;src:url('chunks/assets/font_7c7b114d6d8510036cb24ad0.woff2')format("woff");}.ff7_c00390{font-family:ff7_c00390;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00390;src:url('chunks/assets/font_1825460603b6ec2f6ec20e03.woff2')format("woff");}.ff8_c00390{font-family:ff8_c00390;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00390;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff9_c00390{font-family:ff9_c00390;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00390{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00390{vertical-align:0.000000px;}
.ls9_c00390{letter-spacing:0.000000px;}
.ls3_c00390{letter-spacing:0.300000px;}
.ls1_c00390{letter-spacing:1.500000px;}
.ls6_c00390{letter-spacing:2.460000px;}
.ls8_c00390{letter-spacing:3.000000px;}
.ls5_c00390{letter-spacing:3.900000px;}
.ls4_c00390{letter-spacing:4.260000px;}
.ls2_c00390{letter-spacing:4.740000px;}
.ls0_c00390{letter-spacing:6.000000px;}
.lsa_c00390{letter-spacing:9.000000px;}
.ls7_c00390{letter-spacing:19.920000px;}
.sc__c00390{text-shadow:none;}
.sc0_c00390{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00390{-webkit-text-stroke:0px transparent;}
.sc0_c00390{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00390{word-spacing:-35.295000px;}
.ws0_c00390{word-spacing:-23.739000px;}
.ws4_c00390{word-spacing:-20.340000px;}
.ws3_c00390{word-spacing:-18.060000px;}
.ws1_c00390{word-spacing:-14.160000px;}
.ws7_c00390{word-spacing:-13.452000px;}
.ws5_c00390{word-spacing:-0.969000px;}
.ws2_c00390{word-spacing:-0.063000px;}
.ws8_c00390{word-spacing:0.000000px;}
._11_c00390{margin-left:-24.240000px;}
._17_c00390{margin-left:-21.120000px;}
._14_c00390{margin-left:-18.420000px;}
._12_c00390{margin-left:-17.160000px;}
._15_c00390{margin-left:-15.840000px;}
._16_c00390{margin-left:-14.700000px;}
._13_c00390{margin-left:-13.140000px;}
._8_c00390{margin-left:-11.640000px;}
._e_c00390{margin-left:-10.020000px;}
._0_c00390{margin-left:-8.580000px;}
._6_c00390{margin-left:-7.140000px;}
._7_c00390{margin-left:-6.120000px;}
._a_c00390{margin-left:-4.440000px;}
._9_c00390{margin-left:-2.760000px;}
._5_c00390{margin-left:-1.080000px;}
._3_c00390{width:1.020000px;}
._d_c00390{width:2.100000px;}
._18_c00390{width:3.120000px;}
._1f_c00390{width:4.440000px;}
._f_c00390{width:6.420000px;}
._c_c00390{width:7.740000px;}
._1c_c00390{width:9.360000px;}
._2b_c00390{width:10.860000px;}
._10_c00390{width:12.060000px;}
._b_c00390{width:14.220000px;}
._4_c00390{width:16.080000px;}
._2_c00390{width:17.220000px;}
._1a_c00390{width:19.140000px;}
._19_c00390{width:21.120000px;}
._1b_c00390{width:22.560000px;}
._1d_c00390{width:24.840000px;}
._22_c00390{width:26.640000px;}
._25_c00390{width:28.440000px;}
._21_c00390{width:29.520000px;}
._2e_c00390{width:31.620000px;}
._32_c00390{width:32.814000px;}
._29_c00390{width:33.960000px;}
._2d_c00390{width:35.616000px;}
._2a_c00390{width:36.780000px;}
._26_c00390{width:37.860000px;}
._30_c00390{width:41.925000px;}
._28_c00390{width:43.020000px;}
._1e_c00390{width:45.420000px;}
._2f_c00390{width:48.090000px;}
._27_c00390{width:49.140000px;}
._31_c00390{width:58.593000px;}
._24_c00390{width:63.480000px;}
._20_c00390{width:65.820000px;}
._23_c00390{width:90.120000px;}
._1_c00390{width:256.260000px;}
._2c_c00390{width:415.920000px;}
.fc2_c00390{color:transparent;}
.fc1_c00390{color:rgb(128,128,128);}
.fc0_c00390{color:rgb(0,0,0);}
.fs5_c00390{font-size:36.000000px;}
.fs4_c00390{font-size:45.000000px;}
.fs6_c00390{font-size:48.000000px;}
.fs1_c00390{font-size:51.000000px;}
.fs3_c00390{font-size:57.000000px;}
.fs0_c00390{font-size:60.000000px;}
.fs2_c00390{font-size:63.000000px;}
.y0_c00390{bottom:0.000000px;}
.y55_c00390{bottom:3.105000px;}
.y54_c00390{bottom:7.228371px;}
.y53_c00390{bottom:35.865000px;}
.y52_c00390{bottom:54.315000px;}
.y29_c00390{bottom:56.115000px;}
.y51_c00390{bottom:73.215000px;}
.y28_c00390{bottom:74.715000px;}
.y50_c00390{bottom:90.915000px;}
.y27_c00390{bottom:92.865000px;}
.y4f_c00390{bottom:108.315000px;}
.y26_c00390{bottom:110.715000px;}
.y4e_c00390{bottom:126.315000px;}
.y25_c00390{bottom:128.565000px;}
.y4d_c00390{bottom:143.415000px;}
.y24_c00390{bottom:146.565000px;}
.y4c_c00390{bottom:162.015000px;}
.y23_c00390{bottom:164.715000px;}
.y4b_c00390{bottom:179.265000px;}
.y22_c00390{bottom:182.715000px;}
.y4a_c00390{bottom:196.215000px;}
.y21_c00390{bottom:201.165000px;}
.y49_c00390{bottom:216.315000px;}
.y20_c00390{bottom:219.165000px;}
.y48_c00390{bottom:233.865000px;}
.y1f_c00390{bottom:237.015000px;}
.y47_c00390{bottom:251.865000px;}
.y1e_c00390{bottom:255.615000px;}
.y46_c00390{bottom:270.015000px;}
.y1d_c00390{bottom:273.465000px;}
.y45_c00390{bottom:287.265000px;}
.y1c_c00390{bottom:291.315000px;}
.y44_c00390{bottom:305.115000px;}
.y1b_c00390{bottom:309.165000px;}
.y43_c00390{bottom:323.715000px;}
.y1a_c00390{bottom:327.015000px;}
.y42_c00390{bottom:342.315000px;}
.y19_c00390{bottom:345.015000px;}
.y41_c00390{bottom:360.765000px;}
.y18_c00390{bottom:362.865000px;}
.y40_c00390{bottom:378.465000px;}
.y17_c00390{bottom:381.015000px;}
.y3f_c00390{bottom:396.915000px;}
.y16_c00390{bottom:397.965000px;}
.y3e_c00390{bottom:414.765000px;}
.y15_c00390{bottom:416.115000px;}
.y3d_c00390{bottom:433.365000px;}
.y14_c00390{bottom:434.715000px;}
.y3c_c00390{bottom:451.215000px;}
.y13_c00390{bottom:452.265000px;}
.y3b_c00390{bottom:469.215000px;}
.y12_c00390{bottom:469.815000px;}
.y3a_c00390{bottom:486.765000px;}
.y11_c00390{bottom:487.365000px;}
.y39_c00390{bottom:504.315000px;}
.y10_c00390{bottom:504.915000px;}
.y38_c00390{bottom:522.165000px;}
.yf_c00390{bottom:522.465000px;}
.ye_c00390{bottom:539.715000px;}
.y37_c00390{bottom:540.765000px;}
.yd_c00390{bottom:558.015000px;}
.y36_c00390{bottom:558.615000px;}
.yc_c00390{bottom:576.165000px;}
.y35_c00390{bottom:576.765000px;}
.yb_c00390{bottom:594.015000px;}
.y34_c00390{bottom:594.765000px;}
.ya_c00390{bottom:611.865000px;}
.y33_c00390{bottom:612.315000px;}
.y9_c00390{bottom:629.865000px;}
.y32_c00390{bottom:630.765000px;}
.y8_c00390{bottom:648.465000px;}
.y31_c00390{bottom:649.065000px;}
.y7_c00390{bottom:665.865000px;}
.y30_c00390{bottom:666.915000px;}
.y6_c00390{bottom:684.015000px;}
.y2f_c00390{bottom:684.765000px;}
.y5_c00390{bottom:702.015000px;}
.y2e_c00390{bottom:702.465000px;}
.y4_c00390{bottom:720.015000px;}
.y2d_c00390{bottom:720.765000px;}
.y3_c00390{bottom:738.765000px;}
.y2c_c00390{bottom:738.915000px;}
.y2_c00390{bottom:756.315000px;}
.y2b_c00390{bottom:757.065000px;}
.y1_c00390{bottom:774.915000px;}
.y2a_c00390{bottom:775.215000px;}
.h6_c00390{height:13.200074px;}
.h7_c00390{height:43.804688px;}
.h5_c00390{height:59.736000px;}
.h2_c00390{height:62.880000px;}
.h3_c00390{height:64.020000px;}
.h4_c00390{height:66.024000px;}
.h1_c00390{height:844.500000px;}
.h0_c00390{height:844.575000px;}
.w1_c00390{width:104.875500px;}
.w0_c00390{width:587.250000px;}
.x0_c00390{left:0.000000px;}
.x5_c00390{left:22.200000px;}
.x6_c00390{left:23.550000px;}
.x1_c00390{left:76.950000px;}
.x2_c00390{left:82.800000px;}
.x3_c00390{left:84.300000px;}
.x7_c00390{left:85.650000px;}
.x8_c00390{left:87.000000px;}
.x4_c00390{left:127.500000px;}
.x12_c00390{left:245.439240px;}
.x9_c00390{left:300.750000px;}
.xa_c00390{left:301.950000px;}
.xb_c00390{left:303.750000px;}
.xd_c00390{left:305.100000px;}
.xe_c00390{left:306.150000px;}
.xf_c00390{left:307.350000px;}
.x10_c00390{left:308.400000px;}
.xc_c00390{left:322.650000px;}
.x11_c00390{left:480.000000px;}
@media print{
.v0_c00390{vertical-align:0.000000pt;}
.ls9_c00390{letter-spacing:0.000000pt;}
.ls3_c00390{letter-spacing:0.266667pt;}
.ls1_c00390{letter-spacing:1.333333pt;}
.ls6_c00390{letter-spacing:2.186667pt;}
.ls8_c00390{letter-spacing:2.666667pt;}
.ls5_c00390{letter-spacing:3.466667pt;}
.ls4_c00390{letter-spacing:3.786667pt;}
.ls2_c00390{letter-spacing:4.213333pt;}
.ls0_c00390{letter-spacing:5.333333pt;}
.lsa_c00390{letter-spacing:8.000000pt;}
.ls7_c00390{letter-spacing:17.706667pt;}
.ws6_c00390{word-spacing:-31.373333pt;}
.ws0_c00390{word-spacing:-21.101333pt;}
.ws4_c00390{word-spacing:-18.080000pt;}
.ws3_c00390{word-spacing:-16.053333pt;}
.ws1_c00390{word-spacing:-12.586667pt;}
.ws7_c00390{word-spacing:-11.957333pt;}
.ws5_c00390{word-spacing:-0.861333pt;}
.ws2_c00390{word-spacing:-0.056000pt;}
.ws8_c00390{word-spacing:0.000000pt;}
._11_c00390{margin-left:-21.546667pt;}
._17_c00390{margin-left:-18.773333pt;}
._14_c00390{margin-left:-16.373333pt;}
._12_c00390{margin-left:-15.253333pt;}
._15_c00390{margin-left:-14.080000pt;}
._16_c00390{margin-left:-13.066667pt;}
._13_c00390{margin-left:-11.680000pt;}
._8_c00390{margin-left:-10.346667pt;}
._e_c00390{margin-left:-8.906667pt;}
._0_c00390{margin-left:-7.626667pt;}
._6_c00390{margin-left:-6.346667pt;}
._7_c00390{margin-left:-5.440000pt;}
._a_c00390{margin-left:-3.946667pt;}
._9_c00390{margin-left:-2.453333pt;}
._5_c00390{margin-left:-0.960000pt;}
._3_c00390{width:0.906667pt;}
._d_c00390{width:1.866667pt;}
._18_c00390{width:2.773333pt;}
._1f_c00390{width:3.946667pt;}
._f_c00390{width:5.706667pt;}
._c_c00390{width:6.880000pt;}
._1c_c00390{width:8.320000pt;}
._2b_c00390{width:9.653333pt;}
._10_c00390{width:10.720000pt;}
._b_c00390{width:12.640000pt;}
._4_c00390{width:14.293333pt;}
._2_c00390{width:15.306667pt;}
._1a_c00390{width:17.013333pt;}
._19_c00390{width:18.773333pt;}
._1b_c00390{width:20.053333pt;}
._1d_c00390{width:22.080000pt;}
._22_c00390{width:23.680000pt;}
._25_c00390{width:25.280000pt;}
._21_c00390{width:26.240000pt;}
._2e_c00390{width:28.106667pt;}
._32_c00390{width:29.168000pt;}
._29_c00390{width:30.186667pt;}
._2d_c00390{width:31.658667pt;}
._2a_c00390{width:32.693333pt;}
._26_c00390{width:33.653333pt;}
._30_c00390{width:37.266667pt;}
._28_c00390{width:38.240000pt;}
._1e_c00390{width:40.373333pt;}
._2f_c00390{width:42.746667pt;}
._27_c00390{width:43.680000pt;}
._31_c00390{width:52.082667pt;}
._24_c00390{width:56.426667pt;}
._20_c00390{width:58.506667pt;}
._23_c00390{width:80.106667pt;}
._1_c00390{width:227.786667pt;}
._2c_c00390{width:369.706667pt;}
.fs5_c00390{font-size:32.000000pt;}
.fs4_c00390{font-size:40.000000pt;}
.fs6_c00390{font-size:42.666667pt;}
.fs1_c00390{font-size:45.333333pt;}
.fs3_c00390{font-size:50.666667pt;}
.fs0_c00390{font-size:53.333333pt;}
.fs2_c00390{font-size:56.000000pt;}
.y0_c00390{bottom:0.000000pt;}
.y55_c00390{bottom:2.760000pt;}
.y54_c00390{bottom:6.425219pt;}
.y53_c00390{bottom:31.880000pt;}
.y52_c00390{bottom:48.280000pt;}
.y29_c00390{bottom:49.880000pt;}
.y51_c00390{bottom:65.080000pt;}
.y28_c00390{bottom:66.413333pt;}
.y50_c00390{bottom:80.813333pt;}
.y27_c00390{bottom:82.546667pt;}
.y4f_c00390{bottom:96.280000pt;}
.y26_c00390{bottom:98.413333pt;}
.y4e_c00390{bottom:112.280000pt;}
.y25_c00390{bottom:114.280000pt;}
.y4d_c00390{bottom:127.480000pt;}
.y24_c00390{bottom:130.280000pt;}
.y4c_c00390{bottom:144.013333pt;}
.y23_c00390{bottom:146.413333pt;}
.y4b_c00390{bottom:159.346667pt;}
.y22_c00390{bottom:162.413333pt;}
.y4a_c00390{bottom:174.413333pt;}
.y21_c00390{bottom:178.813333pt;}
.y49_c00390{bottom:192.280000pt;}
.y20_c00390{bottom:194.813333pt;}
.y48_c00390{bottom:207.880000pt;}
.y1f_c00390{bottom:210.680000pt;}
.y47_c00390{bottom:223.880000pt;}
.y1e_c00390{bottom:227.213333pt;}
.y46_c00390{bottom:240.013333pt;}
.y1d_c00390{bottom:243.080000pt;}
.y45_c00390{bottom:255.346667pt;}
.y1c_c00390{bottom:258.946667pt;}
.y44_c00390{bottom:271.213333pt;}
.y1b_c00390{bottom:274.813333pt;}
.y43_c00390{bottom:287.746667pt;}
.y1a_c00390{bottom:290.680000pt;}
.y42_c00390{bottom:304.280000pt;}
.y19_c00390{bottom:306.680000pt;}
.y41_c00390{bottom:320.680000pt;}
.y18_c00390{bottom:322.546667pt;}
.y40_c00390{bottom:336.413333pt;}
.y17_c00390{bottom:338.680000pt;}
.y3f_c00390{bottom:352.813333pt;}
.y16_c00390{bottom:353.746667pt;}
.y3e_c00390{bottom:368.680000pt;}
.y15_c00390{bottom:369.880000pt;}
.y3d_c00390{bottom:385.213333pt;}
.y14_c00390{bottom:386.413333pt;}
.y3c_c00390{bottom:401.080000pt;}
.y13_c00390{bottom:402.013333pt;}
.y3b_c00390{bottom:417.080000pt;}
.y12_c00390{bottom:417.613333pt;}
.y3a_c00390{bottom:432.680000pt;}
.y11_c00390{bottom:433.213333pt;}
.y39_c00390{bottom:448.280000pt;}
.y10_c00390{bottom:448.813333pt;}
.y38_c00390{bottom:464.146667pt;}
.yf_c00390{bottom:464.413333pt;}
.ye_c00390{bottom:479.746667pt;}
.y37_c00390{bottom:480.680000pt;}
.yd_c00390{bottom:496.013333pt;}
.y36_c00390{bottom:496.546667pt;}
.yc_c00390{bottom:512.146667pt;}
.y35_c00390{bottom:512.680000pt;}
.yb_c00390{bottom:528.013333pt;}
.y34_c00390{bottom:528.680000pt;}
.ya_c00390{bottom:543.880000pt;}
.y33_c00390{bottom:544.280000pt;}
.y9_c00390{bottom:559.880000pt;}
.y32_c00390{bottom:560.680000pt;}
.y8_c00390{bottom:576.413333pt;}
.y31_c00390{bottom:576.946667pt;}
.y7_c00390{bottom:591.880000pt;}
.y30_c00390{bottom:592.813333pt;}
.y6_c00390{bottom:608.013333pt;}
.y2f_c00390{bottom:608.680000pt;}
.y5_c00390{bottom:624.013333pt;}
.y2e_c00390{bottom:624.413333pt;}
.y4_c00390{bottom:640.013333pt;}
.y2d_c00390{bottom:640.680000pt;}
.y3_c00390{bottom:656.680000pt;}
.y2c_c00390{bottom:656.813333pt;}
.y2_c00390{bottom:672.280000pt;}
.y2b_c00390{bottom:672.946667pt;}
.y1_c00390{bottom:688.813333pt;}
.y2a_c00390{bottom:689.080000pt;}
.h6_c00390{height:11.733399pt;}
.h7_c00390{height:38.937500pt;}
.h5_c00390{height:53.098667pt;}
.h2_c00390{height:55.893333pt;}
.h3_c00390{height:56.906667pt;}
.h4_c00390{height:58.688000pt;}
.h1_c00390{height:750.666667pt;}
.h0_c00390{height:750.733333pt;}
.w1_c00390{width:93.222667pt;}
.w0_c00390{width:522.000000pt;}
.x0_c00390{left:0.000000pt;}
.x5_c00390{left:19.733333pt;}
.x6_c00390{left:20.933333pt;}
.x1_c00390{left:68.400000pt;}
.x2_c00390{left:73.600000pt;}
.x3_c00390{left:74.933333pt;}
.x7_c00390{left:76.133333pt;}
.x8_c00390{left:77.333333pt;}
.x4_c00390{left:113.333333pt;}
.x12_c00390{left:218.168213pt;}
.x9_c00390{left:267.333333pt;}
.xa_c00390{left:268.400000pt;}
.xb_c00390{left:270.000000pt;}
.xd_c00390{left:271.200000pt;}
.xe_c00390{left:272.133333pt;}
.xf_c00390{left:273.200000pt;}
.x10_c00390{left:274.133333pt;}
.xc_c00390{left:286.800000pt;}
.x11_c00390{left:426.666667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_761c707425a8201c9fbdf918.woff2')format("woff");}.ff1_c00391{font-family:ff1_c00391;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00391;src:url('chunks/assets/font_244787b90037f4acaa255de6.woff2')format("woff");}.ff2_c00391{font-family:ff2_c00391;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00391;src:url('chunks/assets/font_f24e19c2cd0d96070800e0b0.woff2')format("woff");}.ff3_c00391{font-family:ff3_c00391;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00391;src:url('chunks/assets/font_bdb4c06402bde049d05dd8a8.woff2')format("woff");}.ff4_c00391{font-family:ff4_c00391;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00391;src:url('chunks/assets/font_23ef5f37bbf4bfe111f2a2b8.woff2')format("woff");}.ff5_c00391{font-family:ff5_c00391;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00391;src:url('chunks/assets/font_8b2abba736a78bbae5f6866a.woff2')format("woff");}.ff6_c00391{font-family:ff6_c00391;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00391;src:url('chunks/assets/font_16dc23d1d4041c8e577c2e3a.woff2')format("woff");}.ff7_c00391{font-family:ff7_c00391;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00391;src:url('chunks/assets/font_0ce391de997f24f9f9dd37f4.woff2')format("woff");}.ff8_c00391{font-family:ff8_c00391;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00391;src:url('chunks/assets/font_5352f407598458c33a45bcfe.woff2')format("woff");}.ff9_c00391{font-family:ff9_c00391;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00391;src:url('chunks/assets/font_85dc65a208dbff341cd1e1c5.woff2')format("woff");}.ffa_c00391{font-family:ffa_c00391;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00391;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ffb_c00391{font-family:ffb_c00391;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00391{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00391{vertical-align:0.000000px;}
.ls8_c00391{letter-spacing:-3.000000px;}
.ls7_c00391{letter-spacing:0.000000px;}
.ls6_c00391{letter-spacing:2.481000px;}
.ls4_c00391{letter-spacing:3.000000px;}
.ls1_c00391{letter-spacing:6.000000px;}
.ls5_c00391{letter-spacing:36.000000px;}
.ls0_c00391{letter-spacing:75.177000px;}
.ls2_c00391{letter-spacing:80.448000px;}
.ls3_c00391{letter-spacing:81.450000px;}
.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;}
}
.ws7_c00391{word-spacing:-49.452000px;}
.ws5_c00391{word-spacing:-35.295000px;}
.ws9_c00391{word-spacing:-32.808000px;}
.ws0_c00391{word-spacing:-20.340000px;}
.ws3_c00391{word-spacing:-20.307000px;}
.ws8_c00391{word-spacing:-20.250000px;}
.ws1_c00391{word-spacing:-19.491000px;}
.wsa_c00391{word-spacing:-15.060000px;}
.ws6_c00391{word-spacing:-14.160000px;}
.ws2_c00391{word-spacing:-13.452000px;}
.wsb_c00391{word-spacing:0.000000px;}
.ws4_c00391{word-spacing:3.156000px;}
._28_c00391{margin-left:-19.005000px;}
._12_c00391{margin-left:-15.180000px;}
._11_c00391{margin-left:-12.987000px;}
._2a_c00391{margin-left:-11.661000px;}
._1b_c00391{margin-left:-9.792000px;}
._d_c00391{margin-left:-8.340000px;}
._1a_c00391{margin-left:-6.828000px;}
._c_c00391{margin-left:-5.808000px;}
._b_c00391{margin-left:-4.728000px;}
._f_c00391{margin-left:-3.720000px;}
._10_c00391{margin-left:-2.460000px;}
._e_c00391{margin-left:-1.041000px;}
._a_c00391{width:1.782000px;}
._0_c00391{width:3.087000px;}
._1_c00391{width:4.347000px;}
._15_c00391{width:6.348000px;}
._9_c00391{width:8.064000px;}
._8_c00391{width:10.017000px;}
._3_c00391{width:11.340000px;}
._4_c00391{width:12.915000px;}
._5_c00391{width:14.238000px;}
._6_c00391{width:16.302000px;}
._14_c00391{width:18.000000px;}
._16_c00391{width:19.986000px;}
._19_c00391{width:21.618000px;}
._1c_c00391{width:22.665000px;}
._1e_c00391{width:24.009000px;}
._34_c00391{width:25.776000px;}
._1d_c00391{width:27.114000px;}
._7_c00391{width:28.602000px;}
._2e_c00391{width:29.625000px;}
._17_c00391{width:34.098000px;}
._37_c00391{width:36.465000px;}
._13_c00391{width:37.584000px;}
._22_c00391{width:38.796000px;}
._2b_c00391{width:58.020000px;}
._20_c00391{width:72.822000px;}
._1f_c00391{width:74.076000px;}
._21_c00391{width:78.570000px;}
._23_c00391{width:81.600000px;}
._27_c00391{width:84.087000px;}
._29_c00391{width:89.628000px;}
._25_c00391{width:91.056000px;}
._33_c00391{width:92.808000px;}
._31_c00391{width:95.754000px;}
._32_c00391{width:97.503000px;}
._30_c00391{width:101.139000px;}
._35_c00391{width:102.165000px;}
._36_c00391{width:104.325000px;}
._2d_c00391{width:111.669000px;}
._2c_c00391{width:137.280000px;}
._2f_c00391{width:192.420000px;}
._26_c00391{width:194.385000px;}
._24_c00391{width:196.311000px;}
._2_c00391{width:209.412000px;}
._18_c00391{width:263.574000px;}
.fc2_c00391{color:transparent;}
.fc1_c00391{color:rgb(128,128,128);}
.fc0_c00391{color:rgb(0,0,0);}
.fsa_c00391{font-size:36.000000px;}
.fs7_c00391{font-size:39.000000px;}
.fs8_c00391{font-size:45.000000px;}
.fsc_c00391{font-size:48.000000px;}
.fs4_c00391{font-size:51.000000px;}
.fs1_c00391{font-size:54.000000px;}
.fs2_c00391{font-size:57.000000px;}
.fs3_c00391{font-size:60.000000px;}
.fs0_c00391{font-size:63.000000px;}
.fs5_c00391{font-size:66.000000px;}
.fs6_c00391{font-size:69.000000px;}
.fsb_c00391{font-size:72.000000px;}
.fs9_c00391{font-size:81.000000px;}
.y0_c00391{bottom:0.000000px;}
.y3b_c00391{bottom:3.105000px;}
.y3a_c00391{bottom:7.228355px;}
.y39_c00391{bottom:48.885000px;}
.y38_c00391{bottom:64.785000px;}
.y37_c00391{bottom:83.385000px;}
.y36_c00391{bottom:101.535000px;}
.y35_c00391{bottom:119.835000px;}
.y34_c00391{bottom:137.385000px;}
.y33_c00391{bottom:155.985000px;}
.y32_c00391{bottom:173.835000px;}
.y31_c00391{bottom:191.685000px;}
.y30_c00391{bottom:210.285000px;}
.y25_c00391{bottom:227.385000px;}
.y2f_c00391{bottom:229.035000px;}
.y24_c00391{bottom:245.685000px;}
.y2e_c00391{bottom:246.735000px;}
.y23_c00391{bottom:263.535000px;}
.y2d_c00391{bottom:264.585000px;}
.y22_c00391{bottom:281.385000px;}
.y2c_c00391{bottom:282.435000px;}
.y21_c00391{bottom:298.935000px;}
.y2b_c00391{bottom:300.735000px;}
.y20_c00391{bottom:316.785000px;}
.y2a_c00391{bottom:318.285000px;}
.y1f_c00391{bottom:335.085000px;}
.y29_c00391{bottom:336.135000px;}
.y1e_c00391{bottom:352.935000px;}
.y28_c00391{bottom:353.685000px;}
.y1d_c00391{bottom:370.935000px;}
.y27_c00391{bottom:371.535000px;}
.y1c_c00391{bottom:388.785000px;}
.y26_c00391{bottom:389.085000px;}
.y1b_c00391{bottom:406.935000px;}
.y1a_c00391{bottom:424.485000px;}
.y19_c00391{bottom:443.085000px;}
.y18_c00391{bottom:461.235000px;}
.y17_c00391{bottom:478.935000px;}
.y16_c00391{bottom:497.085000px;}
.y15_c00391{bottom:514.935000px;}
.y14_c00391{bottom:532.935000px;}
.y13_c00391{bottom:551.085000px;}
.y12_c00391{bottom:569.235000px;}
.y11_c00391{bottom:587.235000px;}
.y10_c00391{bottom:605.085000px;}
.yb_c00391{bottom:623.385000px;}
.ya_c00391{bottom:640.935000px;}
.yf_c00391{bottom:641.235000px;}
.y9_c00391{bottom:659.085000px;}
.ye_c00391{bottom:659.685000px;}
.y8_c00391{bottom:677.235000px;}
.y7_c00391{bottom:695.235000px;}
.yd_c00391{bottom:713.385000px;}
.y6_c00391{bottom:713.685000px;}
.yc_c00391{bottom:731.385000px;}
.y5_c00391{bottom:731.685000px;}
.y4_c00391{bottom:749.235000px;}
.y3_c00391{bottom:767.685000px;}
.y2_c00391{bottom:785.685000px;}
.y1_c00391{bottom:804.285000px;}
.ha_c00391{height:13.200074px;}
.hb_c00391{height:43.804688px;}
.h8_c00391{height:47.160000px;}
.h6_c00391{height:59.736000px;}
.h3_c00391{height:62.880000px;}
.h2_c00391{height:66.024000px;}
.h4_c00391{height:69.168000px;}
.h5_c00391{height:72.312000px;}
.h9_c00391{height:75.456000px;}
.h7_c00391{height:87.804000px;}
.h1_c00391{height:846.750000px;}
.h0_c00391{height:846.975000px;}
.w2_c00391{width:104.875500px;}
.w0_c00391{width:568.875000px;}
.w1_c00391{width:569.250000px;}
.x0_c00391{left:0.000000px;}
.xf_c00391{left:75.900000px;}
.xe_c00391{left:77.400000px;}
.xa_c00391{left:78.600000px;}
.xb_c00391{left:79.650000px;}
.x9_c00391{left:80.700000px;}
.x7_c00391{left:82.050000px;}
.x4_c00391{left:83.400000px;}
.x3_c00391{left:84.600000px;}
.x1_c00391{left:88.800000px;}
.x8_c00391{left:100.950000px;}
.x2_c00391{left:135.300000px;}
.x11_c00391{left:236.251740px;}
.xd_c00391{left:297.450000px;}
.xc_c00391{left:298.650000px;}
.x5_c00391{left:302.100000px;}
.x6_c00391{left:303.450000px;}
.x10_c00391{left:459.300000px;}
@media print{
.v0_c00391{vertical-align:0.000000pt;}
.ls8_c00391{letter-spacing:-2.666667pt;}
.ls7_c00391{letter-spacing:0.000000pt;}
.ls6_c00391{letter-spacing:2.205333pt;}
.ls4_c00391{letter-spacing:2.666667pt;}
.ls1_c00391{letter-spacing:5.333333pt;}
.ls5_c00391{letter-spacing:32.000000pt;}
.ls0_c00391{letter-spacing:66.824000pt;}
.ls2_c00391{letter-spacing:71.509333pt;}
.ls3_c00391{letter-spacing:72.400000pt;}
.ws7_c00391{word-spacing:-43.957333pt;}
.ws5_c00391{word-spacing:-31.373333pt;}
.ws9_c00391{word-spacing:-29.162667pt;}
.ws0_c00391{word-spacing:-18.080000pt;}
.ws3_c00391{word-spacing:-18.050667pt;}
.ws8_c00391{word-spacing:-18.000000pt;}
.ws1_c00391{word-spacing:-17.325333pt;}
.wsa_c00391{word-spacing:-13.386667pt;}
.ws6_c00391{word-spacing:-12.586667pt;}
.ws2_c00391{word-spacing:-11.957333pt;}
.wsb_c00391{word-spacing:0.000000pt;}
.ws4_c00391{word-spacing:2.805333pt;}
._28_c00391{margin-left:-16.893333pt;}
._12_c00391{margin-left:-13.493333pt;}
._11_c00391{margin-left:-11.544000pt;}
._2a_c00391{margin-left:-10.365333pt;}
._1b_c00391{margin-left:-8.704000pt;}
._d_c00391{margin-left:-7.413333pt;}
._1a_c00391{margin-left:-6.069333pt;}
._c_c00391{margin-left:-5.162667pt;}
._b_c00391{margin-left:-4.202667pt;}
._f_c00391{margin-left:-3.306667pt;}
._10_c00391{margin-left:-2.186667pt;}
._e_c00391{margin-left:-0.925333pt;}
._a_c00391{width:1.584000pt;}
._0_c00391{width:2.744000pt;}
._1_c00391{width:3.864000pt;}
._15_c00391{width:5.642667pt;}
._9_c00391{width:7.168000pt;}
._8_c00391{width:8.904000pt;}
._3_c00391{width:10.080000pt;}
._4_c00391{width:11.480000pt;}
._5_c00391{width:12.656000pt;}
._6_c00391{width:14.490667pt;}
._14_c00391{width:16.000000pt;}
._16_c00391{width:17.765333pt;}
._19_c00391{width:19.216000pt;}
._1c_c00391{width:20.146667pt;}
._1e_c00391{width:21.341333pt;}
._34_c00391{width:22.912000pt;}
._1d_c00391{width:24.101333pt;}
._7_c00391{width:25.424000pt;}
._2e_c00391{width:26.333333pt;}
._17_c00391{width:30.309333pt;}
._37_c00391{width:32.413333pt;}
._13_c00391{width:33.408000pt;}
._22_c00391{width:34.485333pt;}
._2b_c00391{width:51.573333pt;}
._20_c00391{width:64.730667pt;}
._1f_c00391{width:65.845333pt;}
._21_c00391{width:69.840000pt;}
._23_c00391{width:72.533333pt;}
._27_c00391{width:74.744000pt;}
._29_c00391{width:79.669333pt;}
._25_c00391{width:80.938667pt;}
._33_c00391{width:82.496000pt;}
._31_c00391{width:85.114667pt;}
._32_c00391{width:86.669333pt;}
._30_c00391{width:89.901333pt;}
._35_c00391{width:90.813333pt;}
._36_c00391{width:92.733333pt;}
._2d_c00391{width:99.261333pt;}
._2c_c00391{width:122.026667pt;}
._2f_c00391{width:171.040000pt;}
._26_c00391{width:172.786667pt;}
._24_c00391{width:174.498667pt;}
._2_c00391{width:186.144000pt;}
._18_c00391{width:234.288000pt;}
.fsa_c00391{font-size:32.000000pt;}
.fs7_c00391{font-size:34.666667pt;}
.fs8_c00391{font-size:40.000000pt;}
.fsc_c00391{font-size:42.666667pt;}
.fs4_c00391{font-size:45.333333pt;}
.fs1_c00391{font-size:48.000000pt;}
.fs2_c00391{font-size:50.666667pt;}
.fs3_c00391{font-size:53.333333pt;}
.fs0_c00391{font-size:56.000000pt;}
.fs5_c00391{font-size:58.666667pt;}
.fs6_c00391{font-size:61.333333pt;}
.fsb_c00391{font-size:64.000000pt;}
.fs9_c00391{font-size:72.000000pt;}
.y0_c00391{bottom:0.000000pt;}
.y3b_c00391{bottom:2.760000pt;}
.y3a_c00391{bottom:6.425204pt;}
.y39_c00391{bottom:43.453333pt;}
.y38_c00391{bottom:57.586667pt;}
.y37_c00391{bottom:74.120000pt;}
.y36_c00391{bottom:90.253333pt;}
.y35_c00391{bottom:106.520000pt;}
.y34_c00391{bottom:122.120000pt;}
.y33_c00391{bottom:138.653333pt;}
.y32_c00391{bottom:154.520000pt;}
.y31_c00391{bottom:170.386667pt;}
.y30_c00391{bottom:186.920000pt;}
.y25_c00391{bottom:202.120000pt;}
.y2f_c00391{bottom:203.586667pt;}
.y24_c00391{bottom:218.386667pt;}
.y2e_c00391{bottom:219.320000pt;}
.y23_c00391{bottom:234.253333pt;}
.y2d_c00391{bottom:235.186667pt;}
.y22_c00391{bottom:250.120000pt;}
.y2c_c00391{bottom:251.053333pt;}
.y21_c00391{bottom:265.720000pt;}
.y2b_c00391{bottom:267.320000pt;}
.y20_c00391{bottom:281.586667pt;}
.y2a_c00391{bottom:282.920000pt;}
.y1f_c00391{bottom:297.853333pt;}
.y29_c00391{bottom:298.786667pt;}
.y1e_c00391{bottom:313.720000pt;}
.y28_c00391{bottom:314.386667pt;}
.y1d_c00391{bottom:329.720000pt;}
.y27_c00391{bottom:330.253333pt;}
.y1c_c00391{bottom:345.586667pt;}
.y26_c00391{bottom:345.853333pt;}
.y1b_c00391{bottom:361.720000pt;}
.y1a_c00391{bottom:377.320000pt;}
.y19_c00391{bottom:393.853333pt;}
.y18_c00391{bottom:409.986667pt;}
.y17_c00391{bottom:425.720000pt;}
.y16_c00391{bottom:441.853333pt;}
.y15_c00391{bottom:457.720000pt;}
.y14_c00391{bottom:473.720000pt;}
.y13_c00391{bottom:489.853333pt;}
.y12_c00391{bottom:505.986667pt;}
.y11_c00391{bottom:521.986667pt;}
.y10_c00391{bottom:537.853333pt;}
.yb_c00391{bottom:554.120000pt;}
.ya_c00391{bottom:569.720000pt;}
.yf_c00391{bottom:569.986667pt;}
.y9_c00391{bottom:585.853333pt;}
.ye_c00391{bottom:586.386667pt;}
.y8_c00391{bottom:601.986667pt;}
.y7_c00391{bottom:617.986667pt;}
.yd_c00391{bottom:634.120000pt;}
.y6_c00391{bottom:634.386667pt;}
.yc_c00391{bottom:650.120000pt;}
.y5_c00391{bottom:650.386667pt;}
.y4_c00391{bottom:665.986667pt;}
.y3_c00391{bottom:682.386667pt;}
.y2_c00391{bottom:698.386667pt;}
.y1_c00391{bottom:714.920000pt;}
.ha_c00391{height:11.733399pt;}
.hb_c00391{height:38.937500pt;}
.h8_c00391{height:41.920000pt;}
.h6_c00391{height:53.098667pt;}
.h3_c00391{height:55.893333pt;}
.h2_c00391{height:58.688000pt;}
.h4_c00391{height:61.482667pt;}
.h5_c00391{height:64.277333pt;}
.h9_c00391{height:67.072000pt;}
.h7_c00391{height:78.048000pt;}
.h1_c00391{height:752.666667pt;}
.h0_c00391{height:752.866667pt;}
.w2_c00391{width:93.222667pt;}
.w0_c00391{width:505.666667pt;}
.w1_c00391{width:506.000000pt;}
.x0_c00391{left:0.000000pt;}
.xf_c00391{left:67.466667pt;}
.xe_c00391{left:68.800000pt;}
.xa_c00391{left:69.866667pt;}
.xb_c00391{left:70.800000pt;}
.x9_c00391{left:71.733333pt;}
.x7_c00391{left:72.933333pt;}
.x4_c00391{left:74.133333pt;}
.x3_c00391{left:75.200000pt;}
.x1_c00391{left:78.933333pt;}
.x8_c00391{left:89.733333pt;}
.x2_c00391{left:120.266667pt;}
.x11_c00391{left:210.001546pt;}
.xd_c00391{left:264.400000pt;}
.xc_c00391{left:265.466667pt;}
.x5_c00391{left:268.533333pt;}
.x6_c00391{left:269.733333pt;}
.x10_c00391{left:408.266667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e7856663a99e12e02f2baede.woff2')format("woff");}.ff1_c00392{font-family:ff1_c00392;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00392;src:url('chunks/assets/font_efc2bed915c74a16b8c79628.woff2')format("woff");}.ff2_c00392{font-family:ff2_c00392;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00392;src:url('chunks/assets/font_b9e7e6b6b45666dd039c01cd.woff2')format("woff");}.ff3_c00392{font-family:ff3_c00392;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00392;src:url('chunks/assets/font_2321ebe6d332ff6504146b0e.woff2')format("woff");}.ff4_c00392{font-family:ff4_c00392;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00392;src:url('chunks/assets/font_b0ba0178b347720bb773609d.woff2')format("woff");}.ff5_c00392{font-family:ff5_c00392;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00392;src:url('chunks/assets/font_73626e6535e336a8abcb97c8.woff2')format("woff");}.ff6_c00392{font-family:ff6_c00392;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00392;src:url('chunks/assets/font_d58a32fa632a580ae15441dd.woff2')format("woff");}.ff7_c00392{font-family:ff7_c00392;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00392;src:url('chunks/assets/font_a3056775acfedb32ddd544fe.woff2')format("woff");}.ff8_c00392{font-family:ff8_c00392;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00392;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff9_c00392{font-family:ff9_c00392;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00392{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00392{vertical-align:-79.800000px;}
.v0_c00392{vertical-align:0.000000px;}
.v2_c00392{vertical-align:96.600000px;}
.ls7_c00392{letter-spacing:0.000000px;}
.ls3_c00392{letter-spacing:0.600000px;}
.ls2_c00392{letter-spacing:3.000000px;}
.ls0_c00392{letter-spacing:6.000000px;}
.ls8_c00392{letter-spacing:9.000000px;}
.ls4_c00392{letter-spacing:9.546000px;}
.ls6_c00392{letter-spacing:12.000000px;}
.ls5_c00392{letter-spacing:17.694000px;}
.ls1_c00392{letter-spacing:22.014000px;}
.sc__c00392{text-shadow:none;}
.sc0_c00392{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00392{-webkit-text-stroke:0px transparent;}
.sc0_c00392{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00392{word-spacing:-24.888000px;}
.ws0_c00392{word-spacing:-24.570000px;}
.ws2_c00392{word-spacing:-21.750000px;}
.ws1_c00392{word-spacing:-20.340000px;}
.ws8_c00392{word-spacing:-18.060000px;}
.ws6_c00392{word-spacing:-17.160000px;}
.ws5_c00392{word-spacing:-14.427000px;}
.ws3_c00392{word-spacing:-14.160000px;}
.ws7_c00392{word-spacing:-13.053000px;}
.ws9_c00392{word-spacing:0.000000px;}
._20_c00392{margin-left:-20.961000px;}
._24_c00392{margin-left:-18.309000px;}
._1d_c00392{margin-left:-16.215000px;}
._1b_c00392{margin-left:-13.941000px;}
._19_c00392{margin-left:-12.936000px;}
._11_c00392{margin-left:-11.781000px;}
._e_c00392{margin-left:-10.080000px;}
._12_c00392{margin-left:-8.583000px;}
._13_c00392{margin-left:-7.080000px;}
._6_c00392{margin-left:-5.985000px;}
._d_c00392{margin-left:-4.410000px;}
._8_c00392{margin-left:-2.835000px;}
._7_c00392{margin-left:-1.764000px;}
._b_c00392{width:1.197000px;}
._0_c00392{width:2.709000px;}
._f_c00392{width:4.032000px;}
._3_c00392{width:5.040000px;}
._16_c00392{width:6.354000px;}
._2_c00392{width:7.434000px;}
._4_c00392{width:8.757000px;}
._17_c00392{width:10.110000px;}
._10_c00392{width:11.250000px;}
._15_c00392{width:12.315000px;}
._1e_c00392{width:13.605000px;}
._14_c00392{width:14.709000px;}
._1a_c00392{width:16.980000px;}
._28_c00392{width:19.182000px;}
._29_c00392{width:20.319000px;}
._2a_c00392{width:21.576000px;}
._21_c00392{width:23.931000px;}
._18_c00392{width:25.965000px;}
._1c_c00392{width:26.979000px;}
._23_c00392{width:28.200000px;}
._1f_c00392{width:30.129000px;}
._25_c00392{width:31.875000px;}
._22_c00392{width:34.140000px;}
._1_c00392{width:35.343000px;}
._26_c00392{width:40.449000px;}
._a_c00392{width:52.605000px;}
._9_c00392{width:64.008000px;}
._2b_c00392{width:79.725000px;}
._c_c00392{width:105.147000px;}
._27_c00392{width:131.100000px;}
._5_c00392{width:463.050000px;}
.fc2_c00392{color:transparent;}
.fc1_c00392{color:rgb(128,128,128);}
.fc0_c00392{color:rgb(0,0,0);}
.fs8_c00392{font-size:39.000000px;}
.fs2_c00392{font-size:45.000000px;}
.fs9_c00392{font-size:48.000000px;}
.fs3_c00392{font-size:51.000000px;}
.fs5_c00392{font-size:54.000000px;}
.fs4_c00392{font-size:57.000000px;}
.fs1_c00392{font-size:60.000000px;}
.fs0_c00392{font-size:63.000000px;}
.fs6_c00392{font-size:66.000000px;}
.fs7_c00392{font-size:189.000000px;}
.y0_c00392{bottom:0.000000px;}
.y53_c00392{bottom:3.105000px;}
.y52_c00392{bottom:7.228371px;}
.y51_c00392{bottom:38.265000px;}
.y50_c00392{bottom:59.115000px;}
.y4f_c00392{bottom:76.665000px;}
.y29_c00392{bottom:79.065000px;}
.y4e_c00392{bottom:93.915000px;}
.y28_c00392{bottom:96.915000px;}
.y4d_c00392{bottom:112.365000px;}
.y27_c00392{bottom:115.215000px;}
.y4c_c00392{bottom:130.665000px;}
.y26_c00392{bottom:133.065000px;}
.y4b_c00392{bottom:147.615000px;}
.y25_c00392{bottom:151.215000px;}
.y4a_c00392{bottom:166.515000px;}
.y24_c00392{bottom:169.065000px;}
.y49_c00392{bottom:184.365000px;}
.y23_c00392{bottom:187.065000px;}
.y48_c00392{bottom:200.865000px;}
.y22_c00392{bottom:205.515000px;}
.y47_c00392{bottom:220.065000px;}
.y21_c00392{bottom:222.465000px;}
.y46_c00392{bottom:238.065000px;}
.y20_c00392{bottom:240.765000px;}
.y45_c00392{bottom:256.515000px;}
.y1f_c00392{bottom:258.615000px;}
.y44_c00392{bottom:274.065000px;}
.y1e_c00392{bottom:277.515000px;}
.y43_c00392{bottom:291.315000px;}
.y1d_c00392{bottom:295.365000px;}
.y42_c00392{bottom:309.915000px;}
.y1c_c00392{bottom:312.615000px;}
.y41_c00392{bottom:326.715000px;}
.y1b_c00392{bottom:331.065000px;}
.y40_c00392{bottom:345.015000px;}
.y1a_c00392{bottom:348.315000px;}
.y3f_c00392{bottom:362.865000px;}
.y19_c00392{bottom:366.615000px;}
.y3e_c00392{bottom:382.365000px;}
.y18_c00392{bottom:384.765000px;}
.y3d_c00392{bottom:400.365000px;}
.y17_c00392{bottom:402.315000px;}
.y3c_c00392{bottom:418.215000px;}
.y16_c00392{bottom:420.165000px;}
.y3b_c00392{bottom:435.015000px;}
.y15_c00392{bottom:438.465000px;}
.y3a_c00392{bottom:454.065000px;}
.y14_c00392{bottom:456.015000px;}
.y39_c00392{bottom:471.165000px;}
.y13_c00392{bottom:474.165000px;}
.y38_c00392{bottom:489.465000px;}
.y12_c00392{bottom:491.715000px;}
.y36_c00392{bottom:500.715000px;}
.y37_c00392{bottom:506.715000px;}
.y11_c00392{bottom:508.965000px;}
.y10_c00392{bottom:526.215000px;}
.yf_c00392{bottom:544.365000px;}
.y35_c00392{bottom:544.515000px;}
.y34_c00392{bottom:561.615000px;}
.ye_c00392{bottom:562.665000px;}
.y33_c00392{bottom:578.865000px;}
.yd_c00392{bottom:580.515000px;}
.y32_c00392{bottom:597.465000px;}
.yc_c00392{bottom:598.365000px;}
.yb_c00392{bottom:616.365000px;}
.ya_c00392{bottom:634.215000px;}
.y31_c00392{bottom:634.515000px;}
.y30_c00392{bottom:650.715000px;}
.y9_c00392{bottom:652.365000px;}
.y2f_c00392{bottom:668.715000px;}
.y8_c00392{bottom:670.365000px;}
.y2e_c00392{bottom:686.115000px;}
.y7_c00392{bottom:688.515000px;}
.y2d_c00392{bottom:704.115000px;}
.y6_c00392{bottom:706.365000px;}
.y2c_c00392{bottom:721.965000px;}
.y5_c00392{bottom:724.365000px;}
.y2b_c00392{bottom:741.165000px;}
.y4_c00392{bottom:742.215000px;}
.y2a_c00392{bottom:758.415000px;}
.y3_c00392{bottom:760.515000px;}
.y2_c00392{bottom:776.265000px;}
.y1_c00392{bottom:798.315000px;}
.h8_c00392{height:13.200074px;}
.h9_c00392{height:43.804688px;}
.h7_c00392{height:59.736000px;}
.h3_c00392{height:62.880000px;}
.h6_c00392{height:64.020000px;}
.h2_c00392{height:67.221000px;}
.h4_c00392{height:69.168000px;}
.h5_c00392{height:198.072000px;}
.h1_c00392{height:844.500000px;}
.h0_c00392{height:844.575000px;}
.w1_c00392{width:104.875500px;}
.w0_c00392{width:587.250000px;}
.x0_c00392{left:0.000000px;}
.x2_c00392{left:58.650000px;}
.x3_c00392{left:60.000000px;}
.x4_c00392{left:61.050000px;}
.x5_c00392{left:62.400000px;}
.x6_c00392{left:63.450000px;}
.x7_c00392{left:64.800000px;}
.x8_c00392{left:65.850000px;}
.x9_c00392{left:67.200000px;}
.xa_c00392{left:68.400000px;}
.x1_c00392{left:183.300000px;}
.x18_c00392{left:245.439240px;}
.x13_c00392{left:273.450000px;}
.xd_c00392{left:274.650000px;}
.x14_c00392{left:278.850000px;}
.xc_c00392{left:283.050000px;}
.xb_c00392{left:284.100000px;}
.x15_c00392{left:285.150000px;}
.x16_c00392{left:286.500000px;}
.xe_c00392{left:290.250000px;}
.x12_c00392{left:320.250000px;}
.x11_c00392{left:327.150000px;}
.xf_c00392{left:328.650000px;}
.x10_c00392{left:357.450000px;}
.x17_c00392{left:451.200000px;}
@media print{
.v1_c00392{vertical-align:-70.933333pt;}
.v0_c00392{vertical-align:0.000000pt;}
.v2_c00392{vertical-align:85.866667pt;}
.ls7_c00392{letter-spacing:0.000000pt;}
.ls3_c00392{letter-spacing:0.533333pt;}
.ls2_c00392{letter-spacing:2.666667pt;}
.ls0_c00392{letter-spacing:5.333333pt;}
.ls8_c00392{letter-spacing:8.000000pt;}
.ls4_c00392{letter-spacing:8.485333pt;}
.ls6_c00392{letter-spacing:10.666667pt;}
.ls5_c00392{letter-spacing:15.728000pt;}
.ls1_c00392{letter-spacing:19.568000pt;}
.ws4_c00392{word-spacing:-22.122667pt;}
.ws0_c00392{word-spacing:-21.840000pt;}
.ws2_c00392{word-spacing:-19.333333pt;}
.ws1_c00392{word-spacing:-18.080000pt;}
.ws8_c00392{word-spacing:-16.053333pt;}
.ws6_c00392{word-spacing:-15.253333pt;}
.ws5_c00392{word-spacing:-12.824000pt;}
.ws3_c00392{word-spacing:-12.586667pt;}
.ws7_c00392{word-spacing:-11.602667pt;}
.ws9_c00392{word-spacing:0.000000pt;}
._20_c00392{margin-left:-18.632000pt;}
._24_c00392{margin-left:-16.274667pt;}
._1d_c00392{margin-left:-14.413333pt;}
._1b_c00392{margin-left:-12.392000pt;}
._19_c00392{margin-left:-11.498667pt;}
._11_c00392{margin-left:-10.472000pt;}
._e_c00392{margin-left:-8.960000pt;}
._12_c00392{margin-left:-7.629333pt;}
._13_c00392{margin-left:-6.293333pt;}
._6_c00392{margin-left:-5.320000pt;}
._d_c00392{margin-left:-3.920000pt;}
._8_c00392{margin-left:-2.520000pt;}
._7_c00392{margin-left:-1.568000pt;}
._b_c00392{width:1.064000pt;}
._0_c00392{width:2.408000pt;}
._f_c00392{width:3.584000pt;}
._3_c00392{width:4.480000pt;}
._16_c00392{width:5.648000pt;}
._2_c00392{width:6.608000pt;}
._4_c00392{width:7.784000pt;}
._17_c00392{width:8.986667pt;}
._10_c00392{width:10.000000pt;}
._15_c00392{width:10.946667pt;}
._1e_c00392{width:12.093333pt;}
._14_c00392{width:13.074667pt;}
._1a_c00392{width:15.093333pt;}
._28_c00392{width:17.050667pt;}
._29_c00392{width:18.061333pt;}
._2a_c00392{width:19.178667pt;}
._21_c00392{width:21.272000pt;}
._18_c00392{width:23.080000pt;}
._1c_c00392{width:23.981333pt;}
._23_c00392{width:25.066667pt;}
._1f_c00392{width:26.781333pt;}
._25_c00392{width:28.333333pt;}
._22_c00392{width:30.346667pt;}
._1_c00392{width:31.416000pt;}
._26_c00392{width:35.954667pt;}
._a_c00392{width:46.760000pt;}
._9_c00392{width:56.896000pt;}
._2b_c00392{width:70.866667pt;}
._c_c00392{width:93.464000pt;}
._27_c00392{width:116.533333pt;}
._5_c00392{width:411.600000pt;}
.fs8_c00392{font-size:34.666667pt;}
.fs2_c00392{font-size:40.000000pt;}
.fs9_c00392{font-size:42.666667pt;}
.fs3_c00392{font-size:45.333333pt;}
.fs5_c00392{font-size:48.000000pt;}
.fs4_c00392{font-size:50.666667pt;}
.fs1_c00392{font-size:53.333333pt;}
.fs0_c00392{font-size:56.000000pt;}
.fs6_c00392{font-size:58.666667pt;}
.fs7_c00392{font-size:168.000000pt;}
.y0_c00392{bottom:0.000000pt;}
.y53_c00392{bottom:2.760000pt;}
.y52_c00392{bottom:6.425219pt;}
.y51_c00392{bottom:34.013333pt;}
.y50_c00392{bottom:52.546667pt;}
.y4f_c00392{bottom:68.146667pt;}
.y29_c00392{bottom:70.280000pt;}
.y4e_c00392{bottom:83.480000pt;}
.y28_c00392{bottom:86.146667pt;}
.y4d_c00392{bottom:99.880000pt;}
.y27_c00392{bottom:102.413333pt;}
.y4c_c00392{bottom:116.146667pt;}
.y26_c00392{bottom:118.280000pt;}
.y4b_c00392{bottom:131.213333pt;}
.y25_c00392{bottom:134.413333pt;}
.y4a_c00392{bottom:148.013333pt;}
.y24_c00392{bottom:150.280000pt;}
.y49_c00392{bottom:163.880000pt;}
.y23_c00392{bottom:166.280000pt;}
.y48_c00392{bottom:178.546667pt;}
.y22_c00392{bottom:182.680000pt;}
.y47_c00392{bottom:195.613333pt;}
.y21_c00392{bottom:197.746667pt;}
.y46_c00392{bottom:211.613333pt;}
.y20_c00392{bottom:214.013333pt;}
.y45_c00392{bottom:228.013333pt;}
.y1f_c00392{bottom:229.880000pt;}
.y44_c00392{bottom:243.613333pt;}
.y1e_c00392{bottom:246.680000pt;}
.y43_c00392{bottom:258.946667pt;}
.y1d_c00392{bottom:262.546667pt;}
.y42_c00392{bottom:275.480000pt;}
.y1c_c00392{bottom:277.880000pt;}
.y41_c00392{bottom:290.413333pt;}
.y1b_c00392{bottom:294.280000pt;}
.y40_c00392{bottom:306.680000pt;}
.y1a_c00392{bottom:309.613333pt;}
.y3f_c00392{bottom:322.546667pt;}
.y19_c00392{bottom:325.880000pt;}
.y3e_c00392{bottom:339.880000pt;}
.y18_c00392{bottom:342.013333pt;}
.y3d_c00392{bottom:355.880000pt;}
.y17_c00392{bottom:357.613333pt;}
.y3c_c00392{bottom:371.746667pt;}
.y16_c00392{bottom:373.480000pt;}
.y3b_c00392{bottom:386.680000pt;}
.y15_c00392{bottom:389.746667pt;}
.y3a_c00392{bottom:403.613333pt;}
.y14_c00392{bottom:405.346667pt;}
.y39_c00392{bottom:418.813333pt;}
.y13_c00392{bottom:421.480000pt;}
.y38_c00392{bottom:435.080000pt;}
.y12_c00392{bottom:437.080000pt;}
.y36_c00392{bottom:445.080000pt;}
.y37_c00392{bottom:450.413333pt;}
.y11_c00392{bottom:452.413333pt;}
.y10_c00392{bottom:467.746667pt;}
.yf_c00392{bottom:483.880000pt;}
.y35_c00392{bottom:484.013333pt;}
.y34_c00392{bottom:499.213333pt;}
.ye_c00392{bottom:500.146667pt;}
.y33_c00392{bottom:514.546667pt;}
.yd_c00392{bottom:516.013333pt;}
.y32_c00392{bottom:531.080000pt;}
.yc_c00392{bottom:531.880000pt;}
.yb_c00392{bottom:547.880000pt;}
.ya_c00392{bottom:563.746667pt;}
.y31_c00392{bottom:564.013333pt;}
.y30_c00392{bottom:578.413333pt;}
.y9_c00392{bottom:579.880000pt;}
.y2f_c00392{bottom:594.413333pt;}
.y8_c00392{bottom:595.880000pt;}
.y2e_c00392{bottom:609.880000pt;}
.y7_c00392{bottom:612.013333pt;}
.y2d_c00392{bottom:625.880000pt;}
.y6_c00392{bottom:627.880000pt;}
.y2c_c00392{bottom:641.746667pt;}
.y5_c00392{bottom:643.880000pt;}
.y2b_c00392{bottom:658.813333pt;}
.y4_c00392{bottom:659.746667pt;}
.y2a_c00392{bottom:674.146667pt;}
.y3_c00392{bottom:676.013333pt;}
.y2_c00392{bottom:690.013333pt;}
.y1_c00392{bottom:709.613333pt;}
.h8_c00392{height:11.733399pt;}
.h9_c00392{height:38.937500pt;}
.h7_c00392{height:53.098667pt;}
.h3_c00392{height:55.893333pt;}
.h6_c00392{height:56.906667pt;}
.h2_c00392{height:59.752000pt;}
.h4_c00392{height:61.482667pt;}
.h5_c00392{height:176.064000pt;}
.h1_c00392{height:750.666667pt;}
.h0_c00392{height:750.733333pt;}
.w1_c00392{width:93.222667pt;}
.w0_c00392{width:522.000000pt;}
.x0_c00392{left:0.000000pt;}
.x2_c00392{left:52.133333pt;}
.x3_c00392{left:53.333333pt;}
.x4_c00392{left:54.266667pt;}
.x5_c00392{left:55.466667pt;}
.x6_c00392{left:56.400000pt;}
.x7_c00392{left:57.600000pt;}
.x8_c00392{left:58.533333pt;}
.x9_c00392{left:59.733333pt;}
.xa_c00392{left:60.800000pt;}
.x1_c00392{left:162.933333pt;}
.x18_c00392{left:218.168213pt;}
.x13_c00392{left:243.066667pt;}
.xd_c00392{left:244.133333pt;}
.x14_c00392{left:247.866667pt;}
.xc_c00392{left:251.600000pt;}
.xb_c00392{left:252.533333pt;}
.x15_c00392{left:253.466667pt;}
.x16_c00392{left:254.666667pt;}
.xe_c00392{left:258.000000pt;}
.x12_c00392{left:284.666667pt;}
.x11_c00392{left:290.800000pt;}
.xf_c00392{left:292.133333pt;}
.x10_c00392{left:317.733333pt;}
.x17_c00392{left:401.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3425572aa5a31c40974c5f7d.woff2')format("woff");}.ff1_c00393{font-family:ff1_c00393;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00393;src:url('chunks/assets/font_c044e6a209cda2edab465547.woff2')format("woff");}.ff2_c00393{font-family:ff2_c00393;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00393;src:url('chunks/assets/font_f530d73717e54610689c29a1.woff2')format("woff");}.ff3_c00393{font-family:ff3_c00393;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00393;src:url('chunks/assets/font_f3790c11fa1b72b5ebd5d0f3.woff2')format("woff");}.ff4_c00393{font-family:ff4_c00393;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00393;src:url('chunks/assets/font_354884a41f9085149e14fa8a.woff2')format("woff");}.ff5_c00393{font-family:ff5_c00393;line-height:1.575000;font-style:normal;font-weight:normal;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_7c6187d90f3c5997eb4bb6f1.woff2')format("woff");}.ff6_c00393{font-family:ff6_c00393;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00393;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff7_c00393{font-family:ff7_c00393;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00393{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00393{vertical-align:0.000000px;}
.ls6_c00393{letter-spacing:-3.000000px;}
.ls4_c00393{letter-spacing:0.000000px;}
.ls3_c00393{letter-spacing:1.440000px;}
.ls1_c00393{letter-spacing:3.000000px;}
.ls2_c00393{letter-spacing:3.600000px;}
.ls5_c00393{letter-spacing:6.000000px;}
.ls0_c00393{letter-spacing:8.850000px;}
.sc__c00393{text-shadow:none;}
.sc0_c00393{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00393{-webkit-text-stroke:0px transparent;}
.sc0_c00393{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00393{word-spacing:-35.295000px;}
.ws5_c00393{word-spacing:-20.340000px;}
.ws4_c00393{word-spacing:-18.813000px;}
.ws6_c00393{word-spacing:-18.060000px;}
.ws1_c00393{word-spacing:-16.200000px;}
.ws0_c00393{word-spacing:-14.160000px;}
.ws7_c00393{word-spacing:-13.452000px;}
.ws8_c00393{word-spacing:0.000000px;}
.ws3_c00393{word-spacing:0.600000px;}
._1b_c00393{margin-left:-13.395000px;}
._1e_c00393{margin-left:-12.300000px;}
._13_c00393{margin-left:-10.755000px;}
._20_c00393{margin-left:-8.463000px;}
._17_c00393{margin-left:-6.840000px;}
._a_c00393{margin-left:-5.040000px;}
._f_c00393{margin-left:-3.840000px;}
._10_c00393{margin-left:-2.700000px;}
._b_c00393{margin-left:-1.620000px;}
._8_c00393{width:1.380000px;}
._0_c00393{width:3.300000px;}
._9_c00393{width:4.320000px;}
._1_c00393{width:6.120000px;}
._c_c00393{width:7.860000px;}
._14_c00393{width:9.060000px;}
._d_c00393{width:10.920000px;}
._e_c00393{width:12.420000px;}
._3_c00393{width:14.400000px;}
._4_c00393{width:16.140000px;}
._1c_c00393{width:18.960000px;}
._7_c00393{width:20.460000px;}
._6_c00393{width:21.960000px;}
._5_c00393{width:23.580000px;}
._1d_c00393{width:24.600000px;}
._25_c00393{width:25.740000px;}
._23_c00393{width:26.940000px;}
._15_c00393{width:28.200000px;}
._22_c00393{width:31.020000px;}
._24_c00393{width:32.700000px;}
._18_c00393{width:35.640000px;}
._1f_c00393{width:36.780000px;}
._16_c00393{width:39.120000px;}
._1a_c00393{width:78.360000px;}
._11_c00393{width:81.660000px;}
._21_c00393{width:114.207000px;}
._12_c00393{width:162.840000px;}
._2_c00393{width:202.740000px;}
._19_c00393{width:268.740000px;}
.fc2_c00393{color:transparent;}
.fc1_c00393{color:rgb(128,128,128);}
.fc0_c00393{color:rgb(0,0,0);}
.fs1_c00393{font-size:40.800000px;}
.fs3_c00393{font-size:45.000000px;}
.fs7_c00393{font-size:48.000000px;}
.fs2_c00393{font-size:51.000000px;}
.fs5_c00393{font-size:54.000000px;}
.fs6_c00393{font-size:57.000000px;}
.fs0_c00393{font-size:60.000000px;}
.fs4_c00393{font-size:63.000000px;}
.y0_c00393{bottom:0.000000px;}
.y58_c00393{bottom:3.105000px;}
.y57_c00393{bottom:7.228355px;}
.y55_c00393{bottom:48.285000px;}
.y2a_c00393{bottom:64.035000px;}
.y54_c00393{bottom:66.735000px;}
.y29_c00393{bottom:82.335000px;}
.y53_c00393{bottom:83.685000px;}
.y28_c00393{bottom:100.485000px;}
.y52_c00393{bottom:102.585000px;}
.y27_c00393{bottom:118.335000px;}
.y51_c00393{bottom:119.835000px;}
.y26_c00393{bottom:136.035000px;}
.y50_c00393{bottom:138.285000px;}
.y25_c00393{bottom:154.785000px;}
.y4f_c00393{bottom:155.535000px;}
.y24_c00393{bottom:172.335000px;}
.y4e_c00393{bottom:173.685000px;}
.y23_c00393{bottom:190.335000px;}
.y4d_c00393{bottom:191.985000px;}
.y22_c00393{bottom:208.485000px;}
.y4c_c00393{bottom:209.835000px;}
.y21_c00393{bottom:226.485000px;}
.y4b_c00393{bottom:227.685000px;}
.y20_c00393{bottom:244.035000px;}
.y4a_c00393{bottom:245.985000px;}
.y1f_c00393{bottom:262.485000px;}
.y49_c00393{bottom:263.835000px;}
.y1e_c00393{bottom:280.035000px;}
.y48_c00393{bottom:282.135000px;}
.y1d_c00393{bottom:297.585000px;}
.y47_c00393{bottom:299.685000px;}
.y1c_c00393{bottom:314.835000px;}
.y46_c00393{bottom:316.935000px;}
.y1b_c00393{bottom:333.135000px;}
.y45_c00393{bottom:335.085000px;}
.y1a_c00393{bottom:350.685000px;}
.y44_c00393{bottom:353.235000px;}
.y19_c00393{bottom:369.135000px;}
.y43_c00393{bottom:370.935000px;}
.y18_c00393{bottom:386.985000px;}
.y42_c00393{bottom:389.085000px;}
.y17_c00393{bottom:405.285000px;}
.y41_c00393{bottom:406.635000px;}
.y16_c00393{bottom:423.435000px;}
.y40_c00393{bottom:424.785000px;}
.y15_c00393{bottom:441.135000px;}
.y3f_c00393{bottom:443.685000px;}
.y14_c00393{bottom:458.685000px;}
.y56_c00393{bottom:458.985000px;}
.y3e_c00393{bottom:461.235000px;}
.y13_c00393{bottom:476.535000px;}
.y3d_c00393{bottom:479.535000px;}
.y12_c00393{bottom:494.685000px;}
.y3c_c00393{bottom:496.785000px;}
.y11_c00393{bottom:512.685000px;}
.y3b_c00393{bottom:514.635000px;}
.y10_c00393{bottom:531.135000px;}
.y3a_c00393{bottom:532.785000px;}
.yf_c00393{bottom:548.985000px;}
.y39_c00393{bottom:550.485000px;}
.ye_c00393{bottom:566.685000px;}
.y38_c00393{bottom:568.635000px;}
.yd_c00393{bottom:584.535000px;}
.y37_c00393{bottom:586.485000px;}
.yc_c00393{bottom:603.135000px;}
.y36_c00393{bottom:604.485000px;}
.yb_c00393{bottom:619.935000px;}
.y35_c00393{bottom:622.335000px;}
.ya_c00393{bottom:637.785000px;}
.y34_c00393{bottom:640.485000px;}
.y9_c00393{bottom:656.685000px;}
.y33_c00393{bottom:658.335000px;}
.y8_c00393{bottom:674.685000px;}
.y32_c00393{bottom:676.635000px;}
.y7_c00393{bottom:692.835000px;}
.y31_c00393{bottom:694.185000px;}
.y6_c00393{bottom:710.685000px;}
.y30_c00393{bottom:712.335000px;}
.y5_c00393{bottom:728.535000px;}
.y2f_c00393{bottom:730.035000px;}
.y4_c00393{bottom:746.835000px;}
.y2e_c00393{bottom:747.885000px;}
.y3_c00393{bottom:764.385000px;}
.y2d_c00393{bottom:766.035000px;}
.y2_c00393{bottom:782.985000px;}
.y2c_c00393{bottom:784.035000px;}
.y2b_c00393{bottom:802.785000px;}
.y1_c00393{bottom:803.235000px;}
.h6_c00393{height:13.200074px;}
.h7_c00393{height:43.804688px;}
.h5_c00393{height:59.736000px;}
.h2_c00393{height:62.880000px;}
.h3_c00393{height:64.020000px;}
.h4_c00393{height:66.024000px;}
.h1_c00393{height:846.750000px;}
.h0_c00393{height:846.975000px;}
.w2_c00393{width:104.875500px;}
.w0_c00393{width:568.875000px;}
.w1_c00393{width:569.250000px;}
.x0_c00393{left:0.000000px;}
.x4_c00393{left:20.550000px;}
.x5_c00393{left:22.950000px;}
.x7_c00393{left:79.350000px;}
.x6_c00393{left:80.400000px;}
.x2_c00393{left:82.050000px;}
.x3_c00393{left:83.400000px;}
.x1_c00393{left:84.750000px;}
.x13_c00393{left:236.251740px;}
.x8_c00393{left:279.450000px;}
.x10_c00393{left:295.950000px;}
.xf_c00393{left:297.000000px;}
.xd_c00393{left:298.800000px;}
.xe_c00393{left:300.150000px;}
.x9_c00393{left:301.500000px;}
.xb_c00393{left:302.850000px;}
.xa_c00393{left:304.050000px;}
.xc_c00393{left:329.400000px;}
.x11_c00393{left:450.300000px;}
.x12_c00393{left:502.950000px;}
@media print{
.v0_c00393{vertical-align:0.000000pt;}
.ls6_c00393{letter-spacing:-2.666667pt;}
.ls4_c00393{letter-spacing:0.000000pt;}
.ls3_c00393{letter-spacing:1.280000pt;}
.ls1_c00393{letter-spacing:2.666667pt;}
.ls2_c00393{letter-spacing:3.200000pt;}
.ls5_c00393{letter-spacing:5.333333pt;}
.ls0_c00393{letter-spacing:7.866667pt;}
.ws2_c00393{word-spacing:-31.373333pt;}
.ws5_c00393{word-spacing:-18.080000pt;}
.ws4_c00393{word-spacing:-16.722667pt;}
.ws6_c00393{word-spacing:-16.053333pt;}
.ws1_c00393{word-spacing:-14.400000pt;}
.ws0_c00393{word-spacing:-12.586667pt;}
.ws7_c00393{word-spacing:-11.957333pt;}
.ws8_c00393{word-spacing:0.000000pt;}
.ws3_c00393{word-spacing:0.533333pt;}
._1b_c00393{margin-left:-11.906667pt;}
._1e_c00393{margin-left:-10.933333pt;}
._13_c00393{margin-left:-9.560000pt;}
._20_c00393{margin-left:-7.522667pt;}
._17_c00393{margin-left:-6.080000pt;}
._a_c00393{margin-left:-4.480000pt;}
._f_c00393{margin-left:-3.413333pt;}
._10_c00393{margin-left:-2.400000pt;}
._b_c00393{margin-left:-1.440000pt;}
._8_c00393{width:1.226667pt;}
._0_c00393{width:2.933333pt;}
._9_c00393{width:3.840000pt;}
._1_c00393{width:5.440000pt;}
._c_c00393{width:6.986667pt;}
._14_c00393{width:8.053333pt;}
._d_c00393{width:9.706667pt;}
._e_c00393{width:11.040000pt;}
._3_c00393{width:12.800000pt;}
._4_c00393{width:14.346667pt;}
._1c_c00393{width:16.853333pt;}
._7_c00393{width:18.186667pt;}
._6_c00393{width:19.520000pt;}
._5_c00393{width:20.960000pt;}
._1d_c00393{width:21.866667pt;}
._25_c00393{width:22.880000pt;}
._23_c00393{width:23.946667pt;}
._15_c00393{width:25.066667pt;}
._22_c00393{width:27.573333pt;}
._24_c00393{width:29.066667pt;}
._18_c00393{width:31.680000pt;}
._1f_c00393{width:32.693333pt;}
._16_c00393{width:34.773333pt;}
._1a_c00393{width:69.653333pt;}
._11_c00393{width:72.586667pt;}
._21_c00393{width:101.517333pt;}
._12_c00393{width:144.746667pt;}
._2_c00393{width:180.213333pt;}
._19_c00393{width:238.880000pt;}
.fs1_c00393{font-size:36.266667pt;}
.fs3_c00393{font-size:40.000000pt;}
.fs7_c00393{font-size:42.666667pt;}
.fs2_c00393{font-size:45.333333pt;}
.fs5_c00393{font-size:48.000000pt;}
.fs6_c00393{font-size:50.666667pt;}
.fs0_c00393{font-size:53.333333pt;}
.fs4_c00393{font-size:56.000000pt;}
.y0_c00393{bottom:0.000000pt;}
.y58_c00393{bottom:2.760000pt;}
.y57_c00393{bottom:6.425204pt;}
.y55_c00393{bottom:42.920000pt;}
.y2a_c00393{bottom:56.920000pt;}
.y54_c00393{bottom:59.320000pt;}
.y29_c00393{bottom:73.186667pt;}
.y53_c00393{bottom:74.386667pt;}
.y28_c00393{bottom:89.320000pt;}
.y52_c00393{bottom:91.186667pt;}
.y27_c00393{bottom:105.186667pt;}
.y51_c00393{bottom:106.520000pt;}
.y26_c00393{bottom:120.920000pt;}
.y50_c00393{bottom:122.920000pt;}
.y25_c00393{bottom:137.586667pt;}
.y4f_c00393{bottom:138.253333pt;}
.y24_c00393{bottom:153.186667pt;}
.y4e_c00393{bottom:154.386667pt;}
.y23_c00393{bottom:169.186667pt;}
.y4d_c00393{bottom:170.653333pt;}
.y22_c00393{bottom:185.320000pt;}
.y4c_c00393{bottom:186.520000pt;}
.y21_c00393{bottom:201.320000pt;}
.y4b_c00393{bottom:202.386667pt;}
.y20_c00393{bottom:216.920000pt;}
.y4a_c00393{bottom:218.653333pt;}
.y1f_c00393{bottom:233.320000pt;}
.y49_c00393{bottom:234.520000pt;}
.y1e_c00393{bottom:248.920000pt;}
.y48_c00393{bottom:250.786667pt;}
.y1d_c00393{bottom:264.520000pt;}
.y47_c00393{bottom:266.386667pt;}
.y1c_c00393{bottom:279.853333pt;}
.y46_c00393{bottom:281.720000pt;}
.y1b_c00393{bottom:296.120000pt;}
.y45_c00393{bottom:297.853333pt;}
.y1a_c00393{bottom:311.720000pt;}
.y44_c00393{bottom:313.986667pt;}
.y19_c00393{bottom:328.120000pt;}
.y43_c00393{bottom:329.720000pt;}
.y18_c00393{bottom:343.986667pt;}
.y42_c00393{bottom:345.853333pt;}
.y17_c00393{bottom:360.253333pt;}
.y41_c00393{bottom:361.453333pt;}
.y16_c00393{bottom:376.386667pt;}
.y40_c00393{bottom:377.586667pt;}
.y15_c00393{bottom:392.120000pt;}
.y3f_c00393{bottom:394.386667pt;}
.y14_c00393{bottom:407.720000pt;}
.y56_c00393{bottom:407.986667pt;}
.y3e_c00393{bottom:409.986667pt;}
.y13_c00393{bottom:423.586667pt;}
.y3d_c00393{bottom:426.253333pt;}
.y12_c00393{bottom:439.720000pt;}
.y3c_c00393{bottom:441.586667pt;}
.y11_c00393{bottom:455.720000pt;}
.y3b_c00393{bottom:457.453333pt;}
.y10_c00393{bottom:472.120000pt;}
.y3a_c00393{bottom:473.586667pt;}
.yf_c00393{bottom:487.986667pt;}
.y39_c00393{bottom:489.320000pt;}
.ye_c00393{bottom:503.720000pt;}
.y38_c00393{bottom:505.453333pt;}
.yd_c00393{bottom:519.586667pt;}
.y37_c00393{bottom:521.320000pt;}
.yc_c00393{bottom:536.120000pt;}
.y36_c00393{bottom:537.320000pt;}
.yb_c00393{bottom:551.053333pt;}
.y35_c00393{bottom:553.186667pt;}
.ya_c00393{bottom:566.920000pt;}
.y34_c00393{bottom:569.320000pt;}
.y9_c00393{bottom:583.720000pt;}
.y33_c00393{bottom:585.186667pt;}
.y8_c00393{bottom:599.720000pt;}
.y32_c00393{bottom:601.453333pt;}
.y7_c00393{bottom:615.853333pt;}
.y31_c00393{bottom:617.053333pt;}
.y6_c00393{bottom:631.720000pt;}
.y30_c00393{bottom:633.186667pt;}
.y5_c00393{bottom:647.586667pt;}
.y2f_c00393{bottom:648.920000pt;}
.y4_c00393{bottom:663.853333pt;}
.y2e_c00393{bottom:664.786667pt;}
.y3_c00393{bottom:679.453333pt;}
.y2d_c00393{bottom:680.920000pt;}
.y2_c00393{bottom:695.986667pt;}
.y2c_c00393{bottom:696.920000pt;}
.y2b_c00393{bottom:713.586667pt;}
.y1_c00393{bottom:713.986667pt;}
.h6_c00393{height:11.733399pt;}
.h7_c00393{height:38.937500pt;}
.h5_c00393{height:53.098667pt;}
.h2_c00393{height:55.893333pt;}
.h3_c00393{height:56.906667pt;}
.h4_c00393{height:58.688000pt;}
.h1_c00393{height:752.666667pt;}
.h0_c00393{height:752.866667pt;}
.w2_c00393{width:93.222667pt;}
.w0_c00393{width:505.666667pt;}
.w1_c00393{width:506.000000pt;}
.x0_c00393{left:0.000000pt;}
.x4_c00393{left:18.266667pt;}
.x5_c00393{left:20.400000pt;}
.x7_c00393{left:70.533333pt;}
.x6_c00393{left:71.466667pt;}
.x2_c00393{left:72.933333pt;}
.x3_c00393{left:74.133333pt;}
.x1_c00393{left:75.333333pt;}
.x13_c00393{left:210.001546pt;}
.x8_c00393{left:248.400000pt;}
.x10_c00393{left:263.066667pt;}
.xf_c00393{left:264.000000pt;}
.xd_c00393{left:265.600000pt;}
.xe_c00393{left:266.800000pt;}
.x9_c00393{left:268.000000pt;}
.xb_c00393{left:269.200000pt;}
.xa_c00393{left:270.266667pt;}
.xc_c00393{left:292.800000pt;}
.x11_c00393{left:400.266667pt;}
.x12_c00393{left:447.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_208900a9a8744ec2ea4c41fe.woff2')format("woff");}.ff1_c00394{font-family:ff1_c00394;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00394;src:url('chunks/assets/font_a560d15c762a4d1837bf5adf.woff2')format("woff");}.ff2_c00394{font-family:ff2_c00394;line-height:1.437000;font-style:normal;font-weight:normal;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_ae22c65cc821bb9a98a759da.woff2')format("woff");}.ff3_c00394{font-family:ff3_c00394;line-height:1.437000;font-style:normal;font-weight:normal;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_7e32d7b023c7db49031b35f6.woff2')format("woff");}.ff4_c00394{font-family:ff4_c00394;line-height:1.437000;font-style:normal;font-weight:normal;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_4ab9159d9a8e225418d52c48.woff2')format("woff");}.ff5_c00394{font-family:ff5_c00394;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00394;src:url('chunks/assets/font_dfee60ac0e757bbb94a94ed3.woff2')format("woff");}.ff6_c00394{font-family:ff6_c00394;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00394;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff7_c00394{font-family:ff7_c00394;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00394;src:url('chunks/assets/font_bcdbc549da305b6c24dcbed9.woff2')format("woff");}.ff8_c00394{font-family:ff8_c00394;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00394;src:url('chunks/assets/font_896b2b9fcebdbece3d932a4a.woff2')format("woff");}.ff9_c00394{font-family:ff9_c00394;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00394;src:url('chunks/assets/font_257ac1259988513f19f72de5.woff2')format("woff");}.ffa_c00394{font-family:ffa_c00394;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00394;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ffb_c00394{font-family:ffb_c00394;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00394{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00394{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.v0_c00394{vertical-align:0.000000px;}
.ls3_c00394{letter-spacing:0.000000px;}
.ls0_c00394{letter-spacing:3.000000px;}
.ls1_c00394{letter-spacing:6.000000px;}
.ls2_c00394{letter-spacing:8.940000px;}
.sc__c00394{text-shadow:none;}
.sc0_c00394{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00394{-webkit-text-stroke:0px transparent;}
.sc0_c00394{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00394{word-spacing:-35.295000px;}
.ws6_c00394{word-spacing:-20.340000px;}
.ws7_c00394{word-spacing:-18.813000px;}
.ws2_c00394{word-spacing:-18.060000px;}
.ws1_c00394{word-spacing:-14.160000px;}
.ws0_c00394{word-spacing:-12.291000px;}
.ws4_c00394{word-spacing:-0.063000px;}
.ws3_c00394{word-spacing:-0.050400px;}
.ws8_c00394{word-spacing:0.000000px;}
._26_c00394{margin-left:-17.883000px;}
._23_c00394{margin-left:-16.077000px;}
._1c_c00394{margin-left:-13.614000px;}
._1b_c00394{margin-left:-12.099000px;}
._9_c00394{margin-left:-10.416000px;}
._17_c00394{margin-left:-8.826000px;}
._20_c00394{margin-left:-7.752000px;}
._b_c00394{margin-left:-6.615000px;}
._f_c00394{margin-left:-5.154000px;}
._c_c00394{margin-left:-4.149000px;}
._6_c00394{margin-left:-2.517000px;}
._4_c00394{margin-left:-1.200000px;}
._3_c00394{width:1.512000px;}
._0_c00394{width:3.468000px;}
._8_c00394{width:4.662000px;}
._2_c00394{width:6.069000px;}
._13_c00394{width:7.179000px;}
._7_c00394{width:8.547000px;}
._1_c00394{width:10.353000px;}
._12_c00394{width:11.688000px;}
._5_c00394{width:13.587000px;}
._16_c00394{width:15.549000px;}
._19_c00394{width:16.587000px;}
._15_c00394{width:17.610000px;}
._a_c00394{width:18.900000px;}
._21_c00394{width:19.932000px;}
._e_c00394{width:21.537000px;}
._25_c00394{width:23.865000px;}
._d_c00394{width:24.960000px;}
._1d_c00394{width:25.980000px;}
._10_c00394{width:27.828000px;}
._14_c00394{width:28.857000px;}
._1e_c00394{width:30.468000px;}
._11_c00394{width:31.764000px;}
._1a_c00394{width:42.105000px;}
._1f_c00394{width:82.680000px;}
._24_c00394{width:100.467000px;}
._18_c00394{width:105.219000px;}
._22_c00394{width:233.277000px;}
.fc2_c00394{color:transparent;}
.fc1_c00394{color:rgb(128,128,128);}
.fc0_c00394{color:rgb(0,0,0);}
.fs5_c00394{font-size:24.000000px;}
.fs7_c00394{font-size:45.000000px;}
.fs8_c00394{font-size:48.000000px;}
.fs6_c00394{font-size:50.400000px;}
.fs0_c00394{font-size:51.000000px;}
.fs4_c00394{font-size:57.000000px;}
.fs1_c00394{font-size:60.000000px;}
.fs2_c00394{font-size:63.000000px;}
.fs3_c00394{font-size:66.000000px;}
.y0_c00394{bottom:0.000000px;}
.y57_c00394{bottom:3.105000px;}
.y56_c00394{bottom:7.228357px;}
.y55_c00394{bottom:27.780000px;}
.y54_c00394{bottom:47.580000px;}
.y2c_c00394{bottom:51.630000px;}
.y53_c00394{bottom:63.480000px;}
.y2b_c00394{bottom:70.530000px;}
.y52_c00394{bottom:83.730000px;}
.y2a_c00394{bottom:88.380000px;}
.y51_c00394{bottom:101.880000px;}
.y29_c00394{bottom:105.930000px;}
.y50_c00394{bottom:118.830000px;}
.y28_c00394{bottom:123.480000px;}
.y4f_c00394{bottom:138.030000px;}
.y27_c00394{bottom:141.480000px;}
.y4e_c00394{bottom:155.880000px;}
.y26_c00394{bottom:159.630000px;}
.y4d_c00394{bottom:174.180000px;}
.y25_c00394{bottom:177.630000px;}
.y4c_c00394{bottom:190.980000px;}
.y24_c00394{bottom:195.780000px;}
.y4b_c00394{bottom:209.580000px;}
.y23_c00394{bottom:213.630000px;}
.y4a_c00394{bottom:226.530000px;}
.y22_c00394{bottom:231.180000px;}
.y49_c00394{bottom:245.430000px;}
.y21_c00394{bottom:249.480000px;}
.y48_c00394{bottom:263.580000px;}
.y20_c00394{bottom:267.630000px;}
.y47_c00394{bottom:279.780000px;}
.y1f_c00394{bottom:285.180000px;}
.y46_c00394{bottom:299.730000px;}
.y1e_c00394{bottom:303.030000px;}
.y45_c00394{bottom:317.280000px;}
.y1d_c00394{bottom:320.730000px;}
.y44_c00394{bottom:335.880000px;}
.y1c_c00394{bottom:338.280000px;}
.y3_c00394{bottom:341.580000px;}
.y43_c00394{bottom:353.130000px;}
.y1b_c00394{bottom:356.730000px;}
.y2_c00394{bottom:359.730000px;}
.y42_c00394{bottom:372.330000px;}
.y1a_c00394{bottom:374.280000px;}
.y1_c00394{bottom:377.730000px;}
.y41_c00394{bottom:388.830000px;}
.y19_c00394{bottom:391.830000px;}
.y40_c00394{bottom:405.780000px;}
.y18_c00394{bottom:409.830000px;}
.y3f_c00394{bottom:423.930000px;}
.y17_c00394{bottom:427.680000px;}
.y3e_c00394{bottom:442.830000px;}
.y16_c00394{bottom:445.530000px;}
.y3d_c00394{bottom:460.680000px;}
.y15_c00394{bottom:462.780000px;}
.y3c_c00394{bottom:478.230000px;}
.y14_c00394{bottom:480.930000px;}
.y3b_c00394{bottom:496.830000px;}
.y13_c00394{bottom:498.480000px;}
.y3a_c00394{bottom:514.680000px;}
.y12_c00394{bottom:516.030000px;}
.y39_c00394{bottom:532.530000px;}
.y11_c00394{bottom:533.580000px;}
.y38_c00394{bottom:550.230000px;}
.y10_c00394{bottom:551.580000px;}
.y37_c00394{bottom:568.080000px;}
.yf_c00394{bottom:569.730000px;}
.y36_c00394{bottom:586.230000px;}
.ye_c00394{bottom:587.280000px;}
.y35_c00394{bottom:604.530000px;}
.yd_c00394{bottom:605.580000px;}
.y34_c00394{bottom:622.380000px;}
.yc_c00394{bottom:623.430000px;}
.y33_c00394{bottom:639.930000px;}
.yb_c00394{bottom:641.580000px;}
.y32_c00394{bottom:657.480000px;}
.ya_c00394{bottom:659.130000px;}
.y31_c00394{bottom:676.080000px;}
.y9_c00394{bottom:676.980000px;}
.y30_c00394{bottom:694.230000px;}
.y8_c00394{bottom:696.330000px;}
.y2f_c00394{bottom:712.230000px;}
.y7_c00394{bottom:713.580000px;}
.y2e_c00394{bottom:730.380000px;}
.y6_c00394{bottom:731.430000px;}
.y2d_c00394{bottom:748.680000px;}
.y5_c00394{bottom:749.580000px;}
.y4_c00394{bottom:767.130000px;}
.h7_c00394{height:13.200074px;}
.h8_c00394{height:43.804688px;}
.h1_c00394{height:59.690918px;}
.h2_c00394{height:62.880000px;}
.h6_c00394{height:64.020000px;}
.h5_c00394{height:64.571777px;}
.h4_c00394{height:66.024000px;}
.h3_c00394{height:71.544000px;}
.h0_c00394{height:833.250000px;}
.w2_c00394{width:104.875500px;}
.w0_c00394{width:578.850000px;}
.w1_c00394{width:579.000000px;}
.x0_c00394{left:0.000000px;}
.x1_c00394{left:19.950000px;}
.x3_c00394{left:75.300000px;}
.x6_c00394{left:77.550000px;}
.x7_c00394{left:78.900000px;}
.x8_c00394{left:79.950000px;}
.x9_c00394{left:81.000000px;}
.xa_c00394{left:82.350000px;}
.xb_c00394{left:83.400000px;}
.x2_c00394{left:90.150000px;}
.x13_c00394{left:241.239258px;}
.x10_c00394{left:292.950000px;}
.xc_c00394{left:294.900000px;}
.xd_c00394{left:295.950000px;}
.xe_c00394{left:297.300000px;}
.xf_c00394{left:298.650000px;}
.x11_c00394{left:363.450000px;}
.x4_c00394{left:366.900000px;}
.x5_c00394{left:400.200000px;}
.x12_c00394{left:460.050000px;}
@media print{
.v0_c00394{vertical-align:0.000000pt;}
.ls3_c00394{letter-spacing:0.000000pt;}
.ls0_c00394{letter-spacing:2.666667pt;}
.ls1_c00394{letter-spacing:5.333333pt;}
.ls2_c00394{letter-spacing:7.946667pt;}
.ws5_c00394{word-spacing:-31.373333pt;}
.ws6_c00394{word-spacing:-18.080000pt;}
.ws7_c00394{word-spacing:-16.722667pt;}
.ws2_c00394{word-spacing:-16.053333pt;}
.ws1_c00394{word-spacing:-12.586667pt;}
.ws0_c00394{word-spacing:-10.925333pt;}
.ws4_c00394{word-spacing:-0.056000pt;}
.ws3_c00394{word-spacing:-0.044800pt;}
.ws8_c00394{word-spacing:0.000000pt;}
._26_c00394{margin-left:-15.896000pt;}
._23_c00394{margin-left:-14.290667pt;}
._1c_c00394{margin-left:-12.101333pt;}
._1b_c00394{margin-left:-10.754667pt;}
._9_c00394{margin-left:-9.258667pt;}
._17_c00394{margin-left:-7.845333pt;}
._20_c00394{margin-left:-6.890667pt;}
._b_c00394{margin-left:-5.880000pt;}
._f_c00394{margin-left:-4.581333pt;}
._c_c00394{margin-left:-3.688000pt;}
._6_c00394{margin-left:-2.237333pt;}
._4_c00394{margin-left:-1.066667pt;}
._3_c00394{width:1.344000pt;}
._0_c00394{width:3.082667pt;}
._8_c00394{width:4.144000pt;}
._2_c00394{width:5.394667pt;}
._13_c00394{width:6.381333pt;}
._7_c00394{width:7.597333pt;}
._1_c00394{width:9.202667pt;}
._12_c00394{width:10.389333pt;}
._5_c00394{width:12.077333pt;}
._16_c00394{width:13.821333pt;}
._19_c00394{width:14.744000pt;}
._15_c00394{width:15.653333pt;}
._a_c00394{width:16.800000pt;}
._21_c00394{width:17.717333pt;}
._e_c00394{width:19.144000pt;}
._25_c00394{width:21.213333pt;}
._d_c00394{width:22.186667pt;}
._1d_c00394{width:23.093333pt;}
._10_c00394{width:24.736000pt;}
._14_c00394{width:25.650667pt;}
._1e_c00394{width:27.082667pt;}
._11_c00394{width:28.234667pt;}
._1a_c00394{width:37.426667pt;}
._1f_c00394{width:73.493333pt;}
._24_c00394{width:89.304000pt;}
._18_c00394{width:93.528000pt;}
._22_c00394{width:207.357333pt;}
.fs5_c00394{font-size:21.333333pt;}
.fs7_c00394{font-size:40.000000pt;}
.fs8_c00394{font-size:42.666667pt;}
.fs6_c00394{font-size:44.800000pt;}
.fs0_c00394{font-size:45.333333pt;}
.fs4_c00394{font-size:50.666667pt;}
.fs1_c00394{font-size:53.333333pt;}
.fs2_c00394{font-size:56.000000pt;}
.fs3_c00394{font-size:58.666667pt;}
.y0_c00394{bottom:0.000000pt;}
.y57_c00394{bottom:2.760000pt;}
.y56_c00394{bottom:6.425206pt;}
.y55_c00394{bottom:24.693333pt;}
.y54_c00394{bottom:42.293333pt;}
.y2c_c00394{bottom:45.893333pt;}
.y53_c00394{bottom:56.426667pt;}
.y2b_c00394{bottom:62.693333pt;}
.y52_c00394{bottom:74.426667pt;}
.y2a_c00394{bottom:78.560000pt;}
.y51_c00394{bottom:90.560000pt;}
.y29_c00394{bottom:94.160000pt;}
.y50_c00394{bottom:105.626667pt;}
.y28_c00394{bottom:109.760000pt;}
.y4f_c00394{bottom:122.693333pt;}
.y27_c00394{bottom:125.760000pt;}
.y4e_c00394{bottom:138.560000pt;}
.y26_c00394{bottom:141.893333pt;}
.y4d_c00394{bottom:154.826667pt;}
.y25_c00394{bottom:157.893333pt;}
.y4c_c00394{bottom:169.760000pt;}
.y24_c00394{bottom:174.026667pt;}
.y4b_c00394{bottom:186.293333pt;}
.y23_c00394{bottom:189.893333pt;}
.y4a_c00394{bottom:201.360000pt;}
.y22_c00394{bottom:205.493333pt;}
.y49_c00394{bottom:218.160000pt;}
.y21_c00394{bottom:221.760000pt;}
.y48_c00394{bottom:234.293333pt;}
.y20_c00394{bottom:237.893333pt;}
.y47_c00394{bottom:248.693333pt;}
.y1f_c00394{bottom:253.493333pt;}
.y46_c00394{bottom:266.426667pt;}
.y1e_c00394{bottom:269.360000pt;}
.y45_c00394{bottom:282.026667pt;}
.y1d_c00394{bottom:285.093333pt;}
.y44_c00394{bottom:298.560000pt;}
.y1c_c00394{bottom:300.693333pt;}
.y3_c00394{bottom:303.626667pt;}
.y43_c00394{bottom:313.893333pt;}
.y1b_c00394{bottom:317.093333pt;}
.y2_c00394{bottom:319.760000pt;}
.y42_c00394{bottom:330.960000pt;}
.y1a_c00394{bottom:332.693333pt;}
.y1_c00394{bottom:335.760000pt;}
.y41_c00394{bottom:345.626667pt;}
.y19_c00394{bottom:348.293333pt;}
.y40_c00394{bottom:360.693333pt;}
.y18_c00394{bottom:364.293333pt;}
.y3f_c00394{bottom:376.826667pt;}
.y17_c00394{bottom:380.160000pt;}
.y3e_c00394{bottom:393.626667pt;}
.y16_c00394{bottom:396.026667pt;}
.y3d_c00394{bottom:409.493333pt;}
.y15_c00394{bottom:411.360000pt;}
.y3c_c00394{bottom:425.093333pt;}
.y14_c00394{bottom:427.493333pt;}
.y3b_c00394{bottom:441.626667pt;}
.y13_c00394{bottom:443.093333pt;}
.y3a_c00394{bottom:457.493333pt;}
.y12_c00394{bottom:458.693333pt;}
.y39_c00394{bottom:473.360000pt;}
.y11_c00394{bottom:474.293333pt;}
.y38_c00394{bottom:489.093333pt;}
.y10_c00394{bottom:490.293333pt;}
.y37_c00394{bottom:504.960000pt;}
.yf_c00394{bottom:506.426667pt;}
.y36_c00394{bottom:521.093333pt;}
.ye_c00394{bottom:522.026667pt;}
.y35_c00394{bottom:537.360000pt;}
.yd_c00394{bottom:538.293333pt;}
.y34_c00394{bottom:553.226667pt;}
.yc_c00394{bottom:554.160000pt;}
.y33_c00394{bottom:568.826667pt;}
.yb_c00394{bottom:570.293333pt;}
.y32_c00394{bottom:584.426667pt;}
.ya_c00394{bottom:585.893333pt;}
.y31_c00394{bottom:600.960000pt;}
.y9_c00394{bottom:601.760000pt;}
.y30_c00394{bottom:617.093333pt;}
.y8_c00394{bottom:618.960000pt;}
.y2f_c00394{bottom:633.093333pt;}
.y7_c00394{bottom:634.293333pt;}
.y2e_c00394{bottom:649.226667pt;}
.y6_c00394{bottom:650.160000pt;}
.y2d_c00394{bottom:665.493333pt;}
.y5_c00394{bottom:666.293333pt;}
.y4_c00394{bottom:681.893333pt;}
.h7_c00394{height:11.733399pt;}
.h8_c00394{height:38.937500pt;}
.h1_c00394{height:53.058594pt;}
.h2_c00394{height:55.893333pt;}
.h6_c00394{height:56.906667pt;}
.h5_c00394{height:57.397135pt;}
.h4_c00394{height:58.688000pt;}
.h3_c00394{height:63.594667pt;}
.h0_c00394{height:740.666667pt;}
.w2_c00394{width:93.222667pt;}
.w0_c00394{width:514.533333pt;}
.w1_c00394{width:514.666667pt;}
.x0_c00394{left:0.000000pt;}
.x1_c00394{left:17.733333pt;}
.x3_c00394{left:66.933333pt;}
.x6_c00394{left:68.933333pt;}
.x7_c00394{left:70.133333pt;}
.x8_c00394{left:71.066667pt;}
.x9_c00394{left:72.000000pt;}
.xa_c00394{left:73.200000pt;}
.xb_c00394{left:74.133333pt;}
.x2_c00394{left:80.133333pt;}
.x13_c00394{left:214.434896pt;}
.x10_c00394{left:260.400000pt;}
.xc_c00394{left:262.133333pt;}
.xd_c00394{left:263.066667pt;}
.xe_c00394{left:264.266667pt;}
.xf_c00394{left:265.466667pt;}
.x11_c00394{left:323.066667pt;}
.x4_c00394{left:326.133333pt;}
.x5_c00394{left:355.733333pt;}
.x12_c00394{left:408.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_db4ac1c894051b9ff55596c7.woff2')format("woff");}.ff1_c00395{font-family:ff1_c00395;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00395;src:url('chunks/assets/font_92d49778fed2d610c90e3966.woff2')format("woff");}.ff2_c00395{font-family:ff2_c00395;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00395;src:url('chunks/assets/font_86e254629ed1b7c30c6bee5f.woff2')format("woff");}.ff3_c00395{font-family:ff3_c00395;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00395;src:url('chunks/assets/font_be5b90d5d9da9fa73e762276.woff2')format("woff");}.ff4_c00395{font-family:ff4_c00395;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00395;src:url('chunks/assets/font_51a4da319663646def9f971d.woff2')format("woff");}.ff5_c00395{font-family:ff5_c00395;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00395;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff6_c00395{font-family:ff6_c00395;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00395{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00395{vertical-align:0.000000px;}
.lsa_c00395{letter-spacing:0.000000px;}
.ls1_c00395{letter-spacing:0.405000px;}
.ls3_c00395{letter-spacing:1.200000px;}
.ls4_c00395{letter-spacing:3.000000px;}
.ls5_c00395{letter-spacing:6.000000px;}
.ls6_c00395{letter-spacing:8.460000px;}
.ls0_c00395{letter-spacing:8.805000px;}
.lsb_c00395{letter-spacing:9.000000px;}
.ls8_c00395{letter-spacing:10.680000px;}
.ls2_c00395{letter-spacing:11.400000px;}
.ls9_c00395{letter-spacing:11.475000px;}
.ls7_c00395{letter-spacing:23.475000px;}
.sc__c00395{text-shadow:none;}
.sc0_c00395{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00395{-webkit-text-stroke:0px transparent;}
.sc0_c00395{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00395{word-spacing:-23.739000px;}
.ws1_c00395{word-spacing:-20.340000px;}
.ws2_c00395{word-spacing:-18.060000px;}
.ws4_c00395{word-spacing:-17.160000px;}
.ws5_c00395{word-spacing:-14.160000px;}
.ws6_c00395{word-spacing:-12.744000px;}
.ws7_c00395{word-spacing:0.000000px;}
.ws0_c00395{word-spacing:2.040000px;}
._44_c00395{margin-left:-23.160000px;}
._35_c00395{margin-left:-20.328000px;}
._11_c00395{margin-left:-18.720000px;}
._13_c00395{margin-left:-14.580000px;}
._2c_c00395{margin-left:-13.560000px;}
._1c_c00395{margin-left:-12.300000px;}
._1e_c00395{margin-left:-10.320000px;}
._25_c00395{margin-left:-8.700000px;}
._19_c00395{margin-left:-7.560000px;}
._18_c00395{margin-left:-5.820000px;}
._17_c00395{margin-left:-4.620000px;}
._16_c00395{margin-left:-2.940000px;}
._f_c00395{margin-left:-1.380000px;}
._c_c00395{width:1.260000px;}
._b_c00395{width:2.400000px;}
._e_c00395{width:3.420000px;}
._d_c00395{width:4.800000px;}
._9_c00395{width:6.660000px;}
._22_c00395{width:7.680000px;}
._0_c00395{width:8.880000px;}
._a_c00395{width:10.140000px;}
._8_c00395{width:11.940000px;}
._2_c00395{width:13.200000px;}
._3_c00395{width:14.940000px;}
._4_c00395{width:16.140000px;}
._20_c00395{width:17.400000px;}
._1f_c00395{width:18.840000px;}
._6_c00395{width:20.160000px;}
._5_c00395{width:22.500000px;}
._27_c00395{width:24.480000px;}
._33_c00395{width:25.800000px;}
._3b_c00395{width:26.820000px;}
._34_c00395{width:27.840000px;}
._37_c00395{width:29.100000px;}
._7_c00395{width:30.240000px;}
._28_c00395{width:32.460000px;}
._32_c00395{width:33.720000px;}
._2f_c00395{width:35.820000px;}
._15_c00395{width:37.320000px;}
._24_c00395{width:43.140000px;}
._42_c00395{width:53.340000px;}
._26_c00395{width:55.380000px;}
._29_c00395{width:57.480000px;}
._1a_c00395{width:58.920000px;}
._2a_c00395{width:61.380000px;}
._2b_c00395{width:62.400000px;}
._30_c00395{width:64.560000px;}
._31_c00395{width:66.120000px;}
._2d_c00395{width:68.520000px;}
._3c_c00395{width:73.620000px;}
._21_c00395{width:79.860000px;}
._38_c00395{width:81.180000px;}
._3a_c00395{width:82.500000px;}
._39_c00395{width:83.940000px;}
._2e_c00395{width:127.260000px;}
._36_c00395{width:136.140000px;}
._3e_c00395{width:143.160000px;}
._23_c00395{width:144.420000px;}
._3d_c00395{width:158.040000px;}
._1_c00395{width:207.840000px;}
._1b_c00395{width:258.000000px;}
._3f_c00395{width:298.260000px;}
._45_c00395{width:313.560000px;}
._14_c00395{width:346.200000px;}
._1d_c00395{width:354.180000px;}
._40_c00395{width:426.240000px;}
._10_c00395{width:432.240000px;}
._12_c00395{width:440.940000px;}
._43_c00395{width:658.860000px;}
._46_c00395{width:777.300000px;}
._41_c00395{width:866.160000px;}
.fc2_c00395{color:transparent;}
.fc1_c00395{color:rgb(128,128,128);}
.fc0_c00395{color:rgb(0,0,0);}
.fs0_c00395{font-size:45.000000px;}
.fs7_c00395{font-size:48.000000px;}
.fs2_c00395{font-size:51.000000px;}
.fs4_c00395{font-size:54.000000px;}
.fs6_c00395{font-size:57.000000px;}
.fs1_c00395{font-size:60.000000px;}
.fs3_c00395{font-size:72.000000px;}
.fs5_c00395{font-size:75.000000px;}
.y0_c00395{bottom:0.000000px;}
.y2d_c00395{bottom:3.105000px;}
.y2c_c00395{bottom:7.228371px;}
.y2b_c00395{bottom:32.115000px;}
.y2a_c00395{bottom:51.615000px;}
.y29_c00395{bottom:69.615000px;}
.y28_c00395{bottom:87.165000px;}
.y27_c00395{bottom:105.615000px;}
.y26_c00395{bottom:123.315000px;}
.y25_c00395{bottom:141.165000px;}
.y24_c00395{bottom:158.715000px;}
.y23_c00395{bottom:176.865000px;}
.y22_c00395{bottom:194.865000px;}
.y21_c00395{bottom:212.715000px;}
.y20_c00395{bottom:231.165000px;}
.y1f_c00395{bottom:248.865000px;}
.y1e_c00395{bottom:266.715000px;}
.y1d_c00395{bottom:284.265000px;}
.y1c_c00395{bottom:301.065000px;}
.y1b_c00395{bottom:319.965000px;}
.y1a_c00395{bottom:337.815000px;}
.y19_c00395{bottom:356.115000px;}
.y18_c00395{bottom:373.965000px;}
.y17_c00395{bottom:391.815000px;}
.y16_c00395{bottom:409.515000px;}
.y15_c00395{bottom:427.365000px;}
.y14_c00395{bottom:445.215000px;}
.y13_c00395{bottom:463.515000px;}
.y12_c00395{bottom:481.665000px;}
.y11_c00395{bottom:499.515000px;}
.y10_c00395{bottom:517.815000px;}
.yf_c00395{bottom:535.065000px;}
.ye_c00395{bottom:553.815000px;}
.yd_c00395{bottom:571.515000px;}
.yc_c00395{bottom:589.065000px;}
.yb_c00395{bottom:607.515000px;}
.ya_c00395{bottom:625.065000px;}
.y9_c00395{bottom:643.065000px;}
.y8_c00395{bottom:660.165000px;}
.y7_c00395{bottom:679.365000px;}
.y6_c00395{bottom:697.065000px;}
.y5_c00395{bottom:714.915000px;}
.y4_c00395{bottom:732.765000px;}
.y3_c00395{bottom:751.065000px;}
.y2_c00395{bottom:769.815000px;}
.y1_c00395{bottom:788.115000px;}
.h6_c00395{height:13.200074px;}
.h7_c00395{height:43.804688px;}
.h2_c00395{height:62.880000px;}
.h3_c00395{height:64.020000px;}
.h4_c00395{height:75.456000px;}
.h5_c00395{height:78.600000px;}
.h0_c00395{height:839.175000px;}
.h1_c00395{height:839.250000px;}
.w1_c00395{width:104.875500px;}
.w0_c00395{width:563.250000px;}
.x0_c00395{left:0.000000px;}
.x7_c00395{left:23.250000px;}
.xb_c00395{left:80.400000px;}
.x9_c00395{left:81.450000px;}
.xa_c00395{left:83.100000px;}
.x8_c00395{left:84.150000px;}
.x5_c00395{left:85.800000px;}
.x6_c00395{left:87.450000px;}
.x4_c00395{left:88.500000px;}
.x3_c00395{left:90.750000px;}
.x2_c00395{left:92.100000px;}
.x1_c00395{left:94.800000px;}
.x10_c00395{left:104.700000px;}
.xf_c00395{left:107.700000px;}
.xc_c00395{left:135.450000px;}
.xd_c00395{left:165.450000px;}
.x11_c00395{left:233.439240px;}
.xe_c00395{left:300.150000px;}
@media print{
.v0_c00395{vertical-align:0.000000pt;}
.lsa_c00395{letter-spacing:0.000000pt;}
.ls1_c00395{letter-spacing:0.360000pt;}
.ls3_c00395{letter-spacing:1.066667pt;}
.ls4_c00395{letter-spacing:2.666667pt;}
.ls5_c00395{letter-spacing:5.333333pt;}
.ls6_c00395{letter-spacing:7.520000pt;}
.ls0_c00395{letter-spacing:7.826667pt;}
.lsb_c00395{letter-spacing:8.000000pt;}
.ls8_c00395{letter-spacing:9.493333pt;}
.ls2_c00395{letter-spacing:10.133333pt;}
.ls9_c00395{letter-spacing:10.200000pt;}
.ls7_c00395{letter-spacing:20.866667pt;}
.ws3_c00395{word-spacing:-21.101333pt;}
.ws1_c00395{word-spacing:-18.080000pt;}
.ws2_c00395{word-spacing:-16.053333pt;}
.ws4_c00395{word-spacing:-15.253333pt;}
.ws5_c00395{word-spacing:-12.586667pt;}
.ws6_c00395{word-spacing:-11.328000pt;}
.ws7_c00395{word-spacing:0.000000pt;}
.ws0_c00395{word-spacing:1.813333pt;}
._44_c00395{margin-left:-20.586667pt;}
._35_c00395{margin-left:-18.069333pt;}
._11_c00395{margin-left:-16.640000pt;}
._13_c00395{margin-left:-12.960000pt;}
._2c_c00395{margin-left:-12.053333pt;}
._1c_c00395{margin-left:-10.933333pt;}
._1e_c00395{margin-left:-9.173333pt;}
._25_c00395{margin-left:-7.733333pt;}
._19_c00395{margin-left:-6.720000pt;}
._18_c00395{margin-left:-5.173333pt;}
._17_c00395{margin-left:-4.106667pt;}
._16_c00395{margin-left:-2.613333pt;}
._f_c00395{margin-left:-1.226667pt;}
._c_c00395{width:1.120000pt;}
._b_c00395{width:2.133333pt;}
._e_c00395{width:3.040000pt;}
._d_c00395{width:4.266667pt;}
._9_c00395{width:5.920000pt;}
._22_c00395{width:6.826667pt;}
._0_c00395{width:7.893333pt;}
._a_c00395{width:9.013333pt;}
._8_c00395{width:10.613333pt;}
._2_c00395{width:11.733333pt;}
._3_c00395{width:13.280000pt;}
._4_c00395{width:14.346667pt;}
._20_c00395{width:15.466667pt;}
._1f_c00395{width:16.746667pt;}
._6_c00395{width:17.920000pt;}
._5_c00395{width:20.000000pt;}
._27_c00395{width:21.760000pt;}
._33_c00395{width:22.933333pt;}
._3b_c00395{width:23.840000pt;}
._34_c00395{width:24.746667pt;}
._37_c00395{width:25.866667pt;}
._7_c00395{width:26.880000pt;}
._28_c00395{width:28.853333pt;}
._32_c00395{width:29.973333pt;}
._2f_c00395{width:31.840000pt;}
._15_c00395{width:33.173333pt;}
._24_c00395{width:38.346667pt;}
._42_c00395{width:47.413333pt;}
._26_c00395{width:49.226667pt;}
._29_c00395{width:51.093333pt;}
._1a_c00395{width:52.373333pt;}
._2a_c00395{width:54.560000pt;}
._2b_c00395{width:55.466667pt;}
._30_c00395{width:57.386667pt;}
._31_c00395{width:58.773333pt;}
._2d_c00395{width:60.906667pt;}
._3c_c00395{width:65.440000pt;}
._21_c00395{width:70.986667pt;}
._38_c00395{width:72.160000pt;}
._3a_c00395{width:73.333333pt;}
._39_c00395{width:74.613333pt;}
._2e_c00395{width:113.120000pt;}
._36_c00395{width:121.013333pt;}
._3e_c00395{width:127.253333pt;}
._23_c00395{width:128.373333pt;}
._3d_c00395{width:140.480000pt;}
._1_c00395{width:184.746667pt;}
._1b_c00395{width:229.333333pt;}
._3f_c00395{width:265.120000pt;}
._45_c00395{width:278.720000pt;}
._14_c00395{width:307.733333pt;}
._1d_c00395{width:314.826667pt;}
._40_c00395{width:378.880000pt;}
._10_c00395{width:384.213333pt;}
._12_c00395{width:391.946667pt;}
._43_c00395{width:585.653333pt;}
._46_c00395{width:690.933333pt;}
._41_c00395{width:769.920000pt;}
.fs0_c00395{font-size:40.000000pt;}
.fs7_c00395{font-size:42.666667pt;}
.fs2_c00395{font-size:45.333333pt;}
.fs4_c00395{font-size:48.000000pt;}
.fs6_c00395{font-size:50.666667pt;}
.fs1_c00395{font-size:53.333333pt;}
.fs3_c00395{font-size:64.000000pt;}
.fs5_c00395{font-size:66.666667pt;}
.y0_c00395{bottom:0.000000pt;}
.y2d_c00395{bottom:2.760000pt;}
.y2c_c00395{bottom:6.425219pt;}
.y2b_c00395{bottom:28.546667pt;}
.y2a_c00395{bottom:45.880000pt;}
.y29_c00395{bottom:61.880000pt;}
.y28_c00395{bottom:77.480000pt;}
.y27_c00395{bottom:93.880000pt;}
.y26_c00395{bottom:109.613333pt;}
.y25_c00395{bottom:125.480000pt;}
.y24_c00395{bottom:141.080000pt;}
.y23_c00395{bottom:157.213333pt;}
.y22_c00395{bottom:173.213333pt;}
.y21_c00395{bottom:189.080000pt;}
.y20_c00395{bottom:205.480000pt;}
.y1f_c00395{bottom:221.213333pt;}
.y1e_c00395{bottom:237.080000pt;}
.y1d_c00395{bottom:252.680000pt;}
.y1c_c00395{bottom:267.613333pt;}
.y1b_c00395{bottom:284.413333pt;}
.y1a_c00395{bottom:300.280000pt;}
.y19_c00395{bottom:316.546667pt;}
.y18_c00395{bottom:332.413333pt;}
.y17_c00395{bottom:348.280000pt;}
.y16_c00395{bottom:364.013333pt;}
.y15_c00395{bottom:379.880000pt;}
.y14_c00395{bottom:395.746667pt;}
.y13_c00395{bottom:412.013333pt;}
.y12_c00395{bottom:428.146667pt;}
.y11_c00395{bottom:444.013333pt;}
.y10_c00395{bottom:460.280000pt;}
.yf_c00395{bottom:475.613333pt;}
.ye_c00395{bottom:492.280000pt;}
.yd_c00395{bottom:508.013333pt;}
.yc_c00395{bottom:523.613333pt;}
.yb_c00395{bottom:540.013333pt;}
.ya_c00395{bottom:555.613333pt;}
.y9_c00395{bottom:571.613333pt;}
.y8_c00395{bottom:586.813333pt;}
.y7_c00395{bottom:603.880000pt;}
.y6_c00395{bottom:619.613333pt;}
.y5_c00395{bottom:635.480000pt;}
.y4_c00395{bottom:651.346667pt;}
.y3_c00395{bottom:667.613333pt;}
.y2_c00395{bottom:684.280000pt;}
.y1_c00395{bottom:700.546667pt;}
.h6_c00395{height:11.733399pt;}
.h7_c00395{height:38.937500pt;}
.h2_c00395{height:55.893333pt;}
.h3_c00395{height:56.906667pt;}
.h4_c00395{height:67.072000pt;}
.h5_c00395{height:69.866667pt;}
.h0_c00395{height:745.933333pt;}
.h1_c00395{height:746.000000pt;}
.w1_c00395{width:93.222667pt;}
.w0_c00395{width:500.666667pt;}
.x0_c00395{left:0.000000pt;}
.x7_c00395{left:20.666667pt;}
.xb_c00395{left:71.466667pt;}
.x9_c00395{left:72.400000pt;}
.xa_c00395{left:73.866667pt;}
.x8_c00395{left:74.800000pt;}
.x5_c00395{left:76.266667pt;}
.x6_c00395{left:77.733333pt;}
.x4_c00395{left:78.666667pt;}
.x3_c00395{left:80.666667pt;}
.x2_c00395{left:81.866667pt;}
.x1_c00395{left:84.266667pt;}
.x10_c00395{left:93.066667pt;}
.xf_c00395{left:95.733333pt;}
.xc_c00395{left:120.400000pt;}
.xd_c00395{left:147.066667pt;}
.x11_c00395{left:207.501546pt;}
.xe_c00395{left:266.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_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_a04f7ff64cc58a3cd92259b1.woff2')format("woff");}.ff1_c00396{font-family:ff1_c00396;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00396;src:url('chunks/assets/font_da656ace62aa102b319f6c0e.woff2')format("woff");}.ff2_c00396{font-family:ff2_c00396;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00396;src:url('chunks/assets/font_5f2468a99c670cc6ba91bef3.woff2')format("woff");}.ff3_c00396{font-family:ff3_c00396;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00396;src:url('chunks/assets/font_3e2d2bf06b5467ded0d401ba.woff2')format("woff");}.ff4_c00396{font-family:ff4_c00396;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00396;src:url('chunks/assets/font_f3790c11fa1b72b5ebd5d0f3.woff2')format("woff");}.ff5_c00396{font-family:ff5_c00396;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00396;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff6_c00396{font-family:ff6_c00396;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00396{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00396{vertical-align:0.000000px;}
.ls5_c00396{letter-spacing:0.000000px;}
.ls3_c00396{letter-spacing:2.205000px;}
.ls4_c00396{letter-spacing:3.000000px;}
.ls0_c00396{letter-spacing:6.000000px;}
.ls1_c00396{letter-spacing:17.340000px;}
.ls2_c00396{letter-spacing:25.893000px;}
.sc__c00396{text-shadow:none;}
.sc0_c00396{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00396{-webkit-text-stroke:0px transparent;}
.sc0_c00396{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00396{word-spacing:-35.295000px;}
.ws1_c00396{word-spacing:-17.232000px;}
.ws3_c00396{word-spacing:-14.160000px;}
.ws2_c00396{word-spacing:-13.452000px;}
.ws0_c00396{word-spacing:-4.152000px;}
.ws6_c00396{word-spacing:0.000000px;}
.ws5_c00396{word-spacing:3.300000px;}
._1a_c00396{margin-left:-13.929000px;}
._1b_c00396{margin-left:-12.234000px;}
._24_c00396{margin-left:-10.824000px;}
._29_c00396{margin-left:-9.600000px;}
._28_c00396{margin-left:-8.256000px;}
._26_c00396{margin-left:-7.251000px;}
._19_c00396{margin-left:-5.565000px;}
._16_c00396{margin-left:-4.113000px;}
._17_c00396{margin-left:-2.856000px;}
._e_c00396{margin-left:-1.224000px;}
._15_c00396{width:1.584000px;}
._5_c00396{width:2.880000px;}
._8_c00396{width:4.848000px;}
._25_c00396{width:5.856000px;}
._b_c00396{width:6.864000px;}
._a_c00396{width:8.544000px;}
._11_c00396{width:9.576000px;}
._9_c00396{width:10.608000px;}
._12_c00396{width:11.904000px;}
._0_c00396{width:13.320000px;}
._7_c00396{width:14.688000px;}
._4_c00396{width:16.176000px;}
._1_c00396{width:17.952000px;}
._6_c00396{width:19.728000px;}
._3_c00396{width:20.808000px;}
._d_c00396{width:21.960000px;}
._2_c00396{width:23.712000px;}
._1d_c00396{width:25.056000px;}
._23_c00396{width:26.112000px;}
._c_c00396{width:27.312000px;}
._1c_c00396{width:28.338000px;}
._10_c00396{width:30.288000px;}
._1e_c00396{width:31.776000px;}
._21_c00396{width:33.960000px;}
._1f_c00396{width:35.472000px;}
._20_c00396{width:37.710000px;}
._22_c00396{width:40.896000px;}
._27_c00396{width:42.024000px;}
._f_c00396{width:46.368000px;}
._14_c00396{width:116.097000px;}
._13_c00396{width:132.012000px;}
._2a_c00396{width:160.632000px;}
._18_c00396{width:185.793000px;}
.fc2_c00396{color:transparent;}
.fc1_c00396{color:rgb(128,128,128);}
.fc0_c00396{color:rgb(0,0,0);}
.fs0_c00396{font-size:24.000000px;}
.fs4_c00396{font-size:45.000000px;}
.fs1_c00396{font-size:48.000000px;}
.fs2_c00396{font-size:57.000000px;}
.fs3_c00396{font-size:60.000000px;}
.y0_c00396{bottom:0.000000px;}
.y52_c00396{bottom:3.105000px;}
.y51_c00396{bottom:7.228371px;}
.y50_c00396{bottom:65.265000px;}
.y28_c00396{bottom:81.765000px;}
.y4f_c00396{bottom:83.115000px;}
.y27_c00396{bottom:100.215000px;}
.y4e_c00396{bottom:101.715000px;}
.y26_c00396{bottom:118.215000px;}
.y4d_c00396{bottom:119.265000px;}
.y25_c00396{bottom:136.065000px;}
.y24_c00396{bottom:154.665000px;}
.y4c_c00396{bottom:155.715000px;}
.y23_c00396{bottom:172.515000px;}
.y4b_c00396{bottom:173.565000px;}
.y22_c00396{bottom:190.815000px;}
.y4a_c00396{bottom:192.165000px;}
.y21_c00396{bottom:209.265000px;}
.y49_c00396{bottom:209.565000px;}
.y20_c00396{bottom:227.115000px;}
.y48_c00396{bottom:227.565000px;}
.y47_c00396{bottom:244.815000px;}
.y1f_c00396{bottom:245.115000px;}
.y1e_c00396{bottom:262.965000px;}
.y46_c00396{bottom:263.565000px;}
.y1d_c00396{bottom:281.265000px;}
.y45_c00396{bottom:281.865000px;}
.y1c_c00396{bottom:299.115000px;}
.y44_c00396{bottom:300.015000px;}
.y1b_c00396{bottom:317.265000px;}
.y43_c00396{bottom:317.565000px;}
.y1a_c00396{bottom:335.265000px;}
.y42_c00396{bottom:336.165000px;}
.y19_c00396{bottom:353.415000px;}
.y41_c00396{bottom:354.165000px;}
.y18_c00396{bottom:371.265000px;}
.y40_c00396{bottom:372.465000px;}
.y17_c00396{bottom:389.565000px;}
.y3f_c00396{bottom:390.465000px;}
.y16_c00396{bottom:408.015000px;}
.y3e_c00396{bottom:408.465000px;}
.y15_c00396{bottom:425.565000px;}
.y3d_c00396{bottom:426.615000px;}
.y14_c00396{bottom:443.865000px;}
.y3c_c00396{bottom:444.465000px;}
.y13_c00396{bottom:462.015000px;}
.y3b_c00396{bottom:463.365000px;}
.y12_c00396{bottom:479.265000px;}
.y3a_c00396{bottom:480.915000px;}
.y11_c00396{bottom:496.515000px;}
.y39_c00396{bottom:498.915000px;}
.y10_c00396{bottom:514.815000px;}
.y38_c00396{bottom:517.065000px;}
.yf_c00396{bottom:531.915000px;}
.y37_c00396{bottom:534.315000px;}
.ye_c00396{bottom:548.865000px;}
.y36_c00396{bottom:553.215000px;}
.yd_c00396{bottom:568.065000px;}
.y35_c00396{bottom:571.065000px;}
.yc_c00396{bottom:587.865000px;}
.y34_c00396{bottom:589.365000px;}
.yb_c00396{bottom:604.815000px;}
.y33_c00396{bottom:607.515000px;}
.ya_c00396{bottom:621.765000px;}
.y32_c00396{bottom:625.515000px;}
.y9_c00396{bottom:641.265000px;}
.y31_c00396{bottom:643.065000px;}
.y8_c00396{bottom:658.815000px;}
.y30_c00396{bottom:661.515000px;}
.y7_c00396{bottom:678.465000px;}
.y2f_c00396{bottom:679.515000px;}
.y6_c00396{bottom:695.265000px;}
.y2e_c00396{bottom:697.965000px;}
.y5_c00396{bottom:712.815000px;}
.y2d_c00396{bottom:715.815000px;}
.y4_c00396{bottom:732.765000px;}
.y2c_c00396{bottom:734.715000px;}
.y3_c00396{bottom:750.315000px;}
.y2b_c00396{bottom:752.265000px;}
.y2_c00396{bottom:767.115000px;}
.y2a_c00396{bottom:769.815000px;}
.y1_c00396{bottom:785.115000px;}
.y29_c00396{bottom:788.115000px;}
.h6_c00396{height:13.200074px;}
.h2_c00396{height:30.386719px;}
.h7_c00396{height:43.804688px;}
.h3_c00396{height:50.304000px;}
.h4_c00396{height:59.736000px;}
.h5_c00396{height:62.880000px;}
.h1_c00396{height:844.500000px;}
.h0_c00396{height:844.575000px;}
.w1_c00396{width:104.875500px;}
.w0_c00396{width:587.250000px;}
.x0_c00396{left:0.000000px;}
.x6_c00396{left:16.950000px;}
.x3_c00396{left:74.250000px;}
.x2_c00396{left:75.300000px;}
.x4_c00396{left:76.350000px;}
.x1_c00396{left:77.550000px;}
.x5_c00396{left:78.750000px;}
.xc_c00396{left:245.439240px;}
.x7_c00396{left:289.650000px;}
.x8_c00396{left:290.850000px;}
.x9_c00396{left:292.200000px;}
.xa_c00396{left:293.250000px;}
.xb_c00396{left:396.600000px;}
@media print{
.v0_c00396{vertical-align:0.000000pt;}
.ls5_c00396{letter-spacing:0.000000pt;}
.ls3_c00396{letter-spacing:1.960000pt;}
.ls4_c00396{letter-spacing:2.666667pt;}
.ls0_c00396{letter-spacing:5.333333pt;}
.ls1_c00396{letter-spacing:15.413333pt;}
.ls2_c00396{letter-spacing:23.016000pt;}
.ws4_c00396{word-spacing:-31.373333pt;}
.ws1_c00396{word-spacing:-15.317333pt;}
.ws3_c00396{word-spacing:-12.586667pt;}
.ws2_c00396{word-spacing:-11.957333pt;}
.ws0_c00396{word-spacing:-3.690667pt;}
.ws6_c00396{word-spacing:0.000000pt;}
.ws5_c00396{word-spacing:2.933333pt;}
._1a_c00396{margin-left:-12.381333pt;}
._1b_c00396{margin-left:-10.874667pt;}
._24_c00396{margin-left:-9.621333pt;}
._29_c00396{margin-left:-8.533333pt;}
._28_c00396{margin-left:-7.338667pt;}
._26_c00396{margin-left:-6.445333pt;}
._19_c00396{margin-left:-4.946667pt;}
._16_c00396{margin-left:-3.656000pt;}
._17_c00396{margin-left:-2.538667pt;}
._e_c00396{margin-left:-1.088000pt;}
._15_c00396{width:1.408000pt;}
._5_c00396{width:2.560000pt;}
._8_c00396{width:4.309333pt;}
._25_c00396{width:5.205333pt;}
._b_c00396{width:6.101333pt;}
._a_c00396{width:7.594667pt;}
._11_c00396{width:8.512000pt;}
._9_c00396{width:9.429333pt;}
._12_c00396{width:10.581333pt;}
._0_c00396{width:11.840000pt;}
._7_c00396{width:13.056000pt;}
._4_c00396{width:14.378667pt;}
._1_c00396{width:15.957333pt;}
._6_c00396{width:17.536000pt;}
._3_c00396{width:18.496000pt;}
._d_c00396{width:19.520000pt;}
._2_c00396{width:21.077333pt;}
._1d_c00396{width:22.272000pt;}
._23_c00396{width:23.210667pt;}
._c_c00396{width:24.277333pt;}
._1c_c00396{width:25.189333pt;}
._10_c00396{width:26.922667pt;}
._1e_c00396{width:28.245333pt;}
._21_c00396{width:30.186667pt;}
._1f_c00396{width:31.530667pt;}
._20_c00396{width:33.520000pt;}
._22_c00396{width:36.352000pt;}
._27_c00396{width:37.354667pt;}
._f_c00396{width:41.216000pt;}
._14_c00396{width:103.197333pt;}
._13_c00396{width:117.344000pt;}
._2a_c00396{width:142.784000pt;}
._18_c00396{width:165.149333pt;}
.fs0_c00396{font-size:21.333333pt;}
.fs4_c00396{font-size:40.000000pt;}
.fs1_c00396{font-size:42.666667pt;}
.fs2_c00396{font-size:50.666667pt;}
.fs3_c00396{font-size:53.333333pt;}
.y0_c00396{bottom:0.000000pt;}
.y52_c00396{bottom:2.760000pt;}
.y51_c00396{bottom:6.425219pt;}
.y50_c00396{bottom:58.013333pt;}
.y28_c00396{bottom:72.680000pt;}
.y4f_c00396{bottom:73.880000pt;}
.y27_c00396{bottom:89.080000pt;}
.y4e_c00396{bottom:90.413333pt;}
.y26_c00396{bottom:105.080000pt;}
.y4d_c00396{bottom:106.013333pt;}
.y25_c00396{bottom:120.946667pt;}
.y24_c00396{bottom:137.480000pt;}
.y4c_c00396{bottom:138.413333pt;}
.y23_c00396{bottom:153.346667pt;}
.y4b_c00396{bottom:154.280000pt;}
.y22_c00396{bottom:169.613333pt;}
.y4a_c00396{bottom:170.813333pt;}
.y21_c00396{bottom:186.013333pt;}
.y49_c00396{bottom:186.280000pt;}
.y20_c00396{bottom:201.880000pt;}
.y48_c00396{bottom:202.280000pt;}
.y47_c00396{bottom:217.613333pt;}
.y1f_c00396{bottom:217.880000pt;}
.y1e_c00396{bottom:233.746667pt;}
.y46_c00396{bottom:234.280000pt;}
.y1d_c00396{bottom:250.013333pt;}
.y45_c00396{bottom:250.546667pt;}
.y1c_c00396{bottom:265.880000pt;}
.y44_c00396{bottom:266.680000pt;}
.y1b_c00396{bottom:282.013333pt;}
.y43_c00396{bottom:282.280000pt;}
.y1a_c00396{bottom:298.013333pt;}
.y42_c00396{bottom:298.813333pt;}
.y19_c00396{bottom:314.146667pt;}
.y41_c00396{bottom:314.813333pt;}
.y18_c00396{bottom:330.013333pt;}
.y40_c00396{bottom:331.080000pt;}
.y17_c00396{bottom:346.280000pt;}
.y3f_c00396{bottom:347.080000pt;}
.y16_c00396{bottom:362.680000pt;}
.y3e_c00396{bottom:363.080000pt;}
.y15_c00396{bottom:378.280000pt;}
.y3d_c00396{bottom:379.213333pt;}
.y14_c00396{bottom:394.546667pt;}
.y3c_c00396{bottom:395.080000pt;}
.y13_c00396{bottom:410.680000pt;}
.y3b_c00396{bottom:411.880000pt;}
.y12_c00396{bottom:426.013333pt;}
.y3a_c00396{bottom:427.480000pt;}
.y11_c00396{bottom:441.346667pt;}
.y39_c00396{bottom:443.480000pt;}
.y10_c00396{bottom:457.613333pt;}
.y38_c00396{bottom:459.613333pt;}
.yf_c00396{bottom:472.813333pt;}
.y37_c00396{bottom:474.946667pt;}
.ye_c00396{bottom:487.880000pt;}
.y36_c00396{bottom:491.746667pt;}
.yd_c00396{bottom:504.946667pt;}
.y35_c00396{bottom:507.613333pt;}
.yc_c00396{bottom:522.546667pt;}
.y34_c00396{bottom:523.880000pt;}
.yb_c00396{bottom:537.613333pt;}
.y33_c00396{bottom:540.013333pt;}
.ya_c00396{bottom:552.680000pt;}
.y32_c00396{bottom:556.013333pt;}
.y9_c00396{bottom:570.013333pt;}
.y31_c00396{bottom:571.613333pt;}
.y8_c00396{bottom:585.613333pt;}
.y30_c00396{bottom:588.013333pt;}
.y7_c00396{bottom:603.080000pt;}
.y2f_c00396{bottom:604.013333pt;}
.y6_c00396{bottom:618.013333pt;}
.y2e_c00396{bottom:620.413333pt;}
.y5_c00396{bottom:633.613333pt;}
.y2d_c00396{bottom:636.280000pt;}
.y4_c00396{bottom:651.346667pt;}
.y2c_c00396{bottom:653.080000pt;}
.y3_c00396{bottom:666.946667pt;}
.y2b_c00396{bottom:668.680000pt;}
.y2_c00396{bottom:681.880000pt;}
.y2a_c00396{bottom:684.280000pt;}
.y1_c00396{bottom:697.880000pt;}
.y29_c00396{bottom:700.546667pt;}
.h6_c00396{height:11.733399pt;}
.h2_c00396{height:27.010417pt;}
.h7_c00396{height:38.937500pt;}
.h3_c00396{height:44.714667pt;}
.h4_c00396{height:53.098667pt;}
.h5_c00396{height:55.893333pt;}
.h1_c00396{height:750.666667pt;}
.h0_c00396{height:750.733333pt;}
.w1_c00396{width:93.222667pt;}
.w0_c00396{width:522.000000pt;}
.x0_c00396{left:0.000000pt;}
.x6_c00396{left:15.066667pt;}
.x3_c00396{left:66.000000pt;}
.x2_c00396{left:66.933333pt;}
.x4_c00396{left:67.866667pt;}
.x1_c00396{left:68.933333pt;}
.x5_c00396{left:70.000000pt;}
.xc_c00396{left:218.168213pt;}
.x7_c00396{left:257.466667pt;}
.x8_c00396{left:258.533333pt;}
.x9_c00396{left:259.733333pt;}
.xa_c00396{left:260.666667pt;}
.xb_c00396{left:352.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_02764833e3fa8bd90c2e4732.woff2')format("woff");}.ff1_c00397{font-family:ff1_c00397;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00397;src:url('chunks/assets/font_8521d6a17436dc39f7a0f567.woff2')format("woff");}.ff2_c00397{font-family:ff2_c00397;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00397;src:url('chunks/assets/font_f3790c11fa1b72b5ebd5d0f3.woff2')format("woff");}.ff3_c00397{font-family:ff3_c00397;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00397;src:url('chunks/assets/font_ad44018cc668bf1c1672cddf.woff2')format("woff");}.ff4_c00397{font-family:ff4_c00397;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00397;src:url('chunks/assets/font_2873bd9ff9a7a5ed222f21ff.woff2')format("woff");}.ff5_c00397{font-family:ff5_c00397;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00397;src:url('chunks/assets/font_f0a0e2bc60fec06ba10e85c3.woff2')format("woff");}.ff6_c00397{font-family:ff6_c00397;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00397;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff7_c00397{font-family:ff7_c00397;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00397{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00397{vertical-align:0.000000px;}
.ls5_c00397{letter-spacing:0.000000px;}
.ls3_c00397{letter-spacing:2.805000px;}
.ls4_c00397{letter-spacing:3.000000px;}
.ls1_c00397{letter-spacing:6.000000px;}
.ls2_c00397{letter-spacing:7.800000px;}
.ls0_c00397{letter-spacing:14.640000px;}
.sc__c00397{text-shadow:none;}
.sc0_c00397{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00397{-webkit-text-stroke:0px transparent;}
.sc0_c00397{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00397{word-spacing:-43.920000px;}
.ws1_c00397{word-spacing:-35.295000px;}
.ws3_c00397{word-spacing:-18.060000px;}
.ws0_c00397{word-spacing:-14.160000px;}
.ws4_c00397{word-spacing:0.000000px;}
._1b_c00397{margin-left:-21.360000px;}
._1f_c00397{margin-left:-17.220000px;}
._20_c00397{margin-left:-13.260000px;}
._33_c00397{margin-left:-9.660000px;}
._18_c00397{margin-left:-8.160000px;}
._13_c00397{margin-left:-7.020000px;}
._e_c00397{margin-left:-5.760000px;}
._a_c00397{margin-left:-4.440000px;}
._9_c00397{margin-left:-2.760000px;}
._8_c00397{margin-left:-1.260000px;}
._0_c00397{width:1.080000px;}
._2_c00397{width:2.340000px;}
._4_c00397{width:3.720000px;}
._10_c00397{width:4.980000px;}
._3_c00397{width:6.240000px;}
._11_c00397{width:7.620000px;}
._1_c00397{width:9.600000px;}
._d_c00397{width:11.280000px;}
._12_c00397{width:13.200000px;}
._23_c00397{width:14.580000px;}
._17_c00397{width:16.500000px;}
._21_c00397{width:18.000000px;}
._7_c00397{width:19.140000px;}
._29_c00397{width:20.280000px;}
._1e_c00397{width:21.960000px;}
._22_c00397{width:23.640000px;}
._1d_c00397{width:25.080000px;}
._39_c00397{width:26.220000px;}
._5_c00397{width:27.240000px;}
._16_c00397{width:28.860000px;}
._15_c00397{width:30.360000px;}
._19_c00397{width:32.820000px;}
._1a_c00397{width:36.960000px;}
._3a_c00397{width:38.280000px;}
._2c_c00397{width:67.560000px;}
._32_c00397{width:73.320000px;}
._2b_c00397{width:84.660000px;}
._36_c00397{width:86.580000px;}
._38_c00397{width:88.260000px;}
._30_c00397{width:91.920000px;}
._2f_c00397{width:93.240000px;}
._2e_c00397{width:94.440000px;}
._2d_c00397{width:95.940000px;}
._31_c00397{width:97.260000px;}
._24_c00397{width:99.180000px;}
._27_c00397{width:100.800000px;}
._28_c00397{width:103.440000px;}
._2a_c00397{width:104.520000px;}
._14_c00397{width:107.400000px;}
._f_c00397{width:108.420000px;}
._b_c00397{width:110.940000px;}
._25_c00397{width:112.860000px;}
._c_c00397{width:114.600000px;}
._6_c00397{width:115.620000px;}
._37_c00397{width:117.360000px;}
._35_c00397{width:123.900000px;}
._34_c00397{width:131.700000px;}
._1c_c00397{width:218.040000px;}
._26_c00397{width:724.380000px;}
.fc2_c00397{color:transparent;}
.fc1_c00397{color:rgb(128,128,128);}
.fc0_c00397{color:rgb(0,0,0);}
.fs1_c00397{font-size:45.000000px;}
.fs4_c00397{font-size:48.000000px;}
.fs2_c00397{font-size:51.000000px;}
.fs0_c00397{font-size:60.000000px;}
.fs3_c00397{font-size:66.000000px;}
.y0_c00397{bottom:0.000000px;}
.y2c_c00397{bottom:3.105000px;}
.y2b_c00397{bottom:7.228355px;}
.y2a_c00397{bottom:39.435000px;}
.y29_c00397{bottom:58.035000px;}
.y28_c00397{bottom:76.485000px;}
.y27_c00397{bottom:94.035000px;}
.y26_c00397{bottom:112.335000px;}
.y25_c00397{bottom:130.635000px;}
.y24_c00397{bottom:149.085000px;}
.y23_c00397{bottom:167.085000px;}
.y22_c00397{bottom:184.935000px;}
.y21_c00397{bottom:203.085000px;}
.y20_c00397{bottom:221.085000px;}
.y1f_c00397{bottom:239.985000px;}
.y1e_c00397{bottom:257.535000px;}
.y1d_c00397{bottom:275.385000px;}
.y1c_c00397{bottom:293.235000px;}
.y1b_c00397{bottom:311.385000px;}
.y1a_c00397{bottom:329.385000px;}
.y19_c00397{bottom:347.235000px;}
.y18_c00397{bottom:365.385000px;}
.y17_c00397{bottom:384.285000px;}
.y16_c00397{bottom:401.835000px;}
.y15_c00397{bottom:419.835000px;}
.y14_c00397{bottom:437.685000px;}
.y13_c00397{bottom:455.235000px;}
.y12_c00397{bottom:473.835000px;}
.y11_c00397{bottom:492.435000px;}
.y10_c00397{bottom:510.285000px;}
.yf_c00397{bottom:528.135000px;}
.ye_c00397{bottom:545.985000px;}
.yd_c00397{bottom:563.235000px;}
.yc_c00397{bottom:581.835000px;}
.yb_c00397{bottom:600.285000px;}
.ya_c00397{bottom:618.285000px;}
.y9_c00397{bottom:636.885000px;}
.y8_c00397{bottom:655.035000px;}
.y7_c00397{bottom:673.185000px;}
.y6_c00397{bottom:691.185000px;}
.y5_c00397{bottom:709.035000px;}
.y4_c00397{bottom:727.335000px;}
.y3_c00397{bottom:745.185000px;}
.y2_c00397{bottom:763.635000px;}
.y1_c00397{bottom:781.335000px;}
.h5_c00397{height:13.200074px;}
.h6_c00397{height:43.804688px;}
.h2_c00397{height:62.880000px;}
.h3_c00397{height:64.020000px;}
.h4_c00397{height:69.168000px;}
.h1_c00397{height:846.750000px;}
.h0_c00397{height:846.975000px;}
.w2_c00397{width:104.875500px;}
.w0_c00397{width:568.875000px;}
.w1_c00397{width:569.250000px;}
.x0_c00397{left:0.000000px;}
.x5_c00397{left:32.400000px;}
.x7_c00397{left:33.450000px;}
.x2_c00397{left:73.650000px;}
.x1_c00397{left:91.800000px;}
.x3_c00397{left:93.450000px;}
.x6_c00397{left:94.800000px;}
.x8_c00397{left:96.150000px;}
.x9_c00397{left:98.100000px;}
.xa_c00397{left:99.150000px;}
.xb_c00397{left:100.200000px;}
.x4_c00397{left:113.100000px;}
.xd_c00397{left:236.251740px;}
.xc_c00397{left:486.300000px;}
@media print{
.v0_c00397{vertical-align:0.000000pt;}
.ls5_c00397{letter-spacing:0.000000pt;}
.ls3_c00397{letter-spacing:2.493333pt;}
.ls4_c00397{letter-spacing:2.666667pt;}
.ls1_c00397{letter-spacing:5.333333pt;}
.ls2_c00397{letter-spacing:6.933333pt;}
.ls0_c00397{letter-spacing:13.013333pt;}
.ws2_c00397{word-spacing:-39.040000pt;}
.ws1_c00397{word-spacing:-31.373333pt;}
.ws3_c00397{word-spacing:-16.053333pt;}
.ws0_c00397{word-spacing:-12.586667pt;}
.ws4_c00397{word-spacing:0.000000pt;}
._1b_c00397{margin-left:-18.986667pt;}
._1f_c00397{margin-left:-15.306667pt;}
._20_c00397{margin-left:-11.786667pt;}
._33_c00397{margin-left:-8.586667pt;}
._18_c00397{margin-left:-7.253333pt;}
._13_c00397{margin-left:-6.240000pt;}
._e_c00397{margin-left:-5.120000pt;}
._a_c00397{margin-left:-3.946667pt;}
._9_c00397{margin-left:-2.453333pt;}
._8_c00397{margin-left:-1.120000pt;}
._0_c00397{width:0.960000pt;}
._2_c00397{width:2.080000pt;}
._4_c00397{width:3.306667pt;}
._10_c00397{width:4.426667pt;}
._3_c00397{width:5.546667pt;}
._11_c00397{width:6.773333pt;}
._1_c00397{width:8.533333pt;}
._d_c00397{width:10.026667pt;}
._12_c00397{width:11.733333pt;}
._23_c00397{width:12.960000pt;}
._17_c00397{width:14.666667pt;}
._21_c00397{width:16.000000pt;}
._7_c00397{width:17.013333pt;}
._29_c00397{width:18.026667pt;}
._1e_c00397{width:19.520000pt;}
._22_c00397{width:21.013333pt;}
._1d_c00397{width:22.293333pt;}
._39_c00397{width:23.306667pt;}
._5_c00397{width:24.213333pt;}
._16_c00397{width:25.653333pt;}
._15_c00397{width:26.986667pt;}
._19_c00397{width:29.173333pt;}
._1a_c00397{width:32.853333pt;}
._3a_c00397{width:34.026667pt;}
._2c_c00397{width:60.053333pt;}
._32_c00397{width:65.173333pt;}
._2b_c00397{width:75.253333pt;}
._36_c00397{width:76.960000pt;}
._38_c00397{width:78.453333pt;}
._30_c00397{width:81.706667pt;}
._2f_c00397{width:82.880000pt;}
._2e_c00397{width:83.946667pt;}
._2d_c00397{width:85.280000pt;}
._31_c00397{width:86.453333pt;}
._24_c00397{width:88.160000pt;}
._27_c00397{width:89.600000pt;}
._28_c00397{width:91.946667pt;}
._2a_c00397{width:92.906667pt;}
._14_c00397{width:95.466667pt;}
._f_c00397{width:96.373333pt;}
._b_c00397{width:98.613333pt;}
._25_c00397{width:100.320000pt;}
._c_c00397{width:101.866667pt;}
._6_c00397{width:102.773333pt;}
._37_c00397{width:104.320000pt;}
._35_c00397{width:110.133333pt;}
._34_c00397{width:117.066667pt;}
._1c_c00397{width:193.813333pt;}
._26_c00397{width:643.893333pt;}
.fs1_c00397{font-size:40.000000pt;}
.fs4_c00397{font-size:42.666667pt;}
.fs2_c00397{font-size:45.333333pt;}
.fs0_c00397{font-size:53.333333pt;}
.fs3_c00397{font-size:58.666667pt;}
.y0_c00397{bottom:0.000000pt;}
.y2c_c00397{bottom:2.760000pt;}
.y2b_c00397{bottom:6.425204pt;}
.y2a_c00397{bottom:35.053333pt;}
.y29_c00397{bottom:51.586667pt;}
.y28_c00397{bottom:67.986667pt;}
.y27_c00397{bottom:83.586667pt;}
.y26_c00397{bottom:99.853333pt;}
.y25_c00397{bottom:116.120000pt;}
.y24_c00397{bottom:132.520000pt;}
.y23_c00397{bottom:148.520000pt;}
.y22_c00397{bottom:164.386667pt;}
.y21_c00397{bottom:180.520000pt;}
.y20_c00397{bottom:196.520000pt;}
.y1f_c00397{bottom:213.320000pt;}
.y1e_c00397{bottom:228.920000pt;}
.y1d_c00397{bottom:244.786667pt;}
.y1c_c00397{bottom:260.653333pt;}
.y1b_c00397{bottom:276.786667pt;}
.y1a_c00397{bottom:292.786667pt;}
.y19_c00397{bottom:308.653333pt;}
.y18_c00397{bottom:324.786667pt;}
.y17_c00397{bottom:341.586667pt;}
.y16_c00397{bottom:357.186667pt;}
.y15_c00397{bottom:373.186667pt;}
.y14_c00397{bottom:389.053333pt;}
.y13_c00397{bottom:404.653333pt;}
.y12_c00397{bottom:421.186667pt;}
.y11_c00397{bottom:437.720000pt;}
.y10_c00397{bottom:453.586667pt;}
.yf_c00397{bottom:469.453333pt;}
.ye_c00397{bottom:485.320000pt;}
.yd_c00397{bottom:500.653333pt;}
.yc_c00397{bottom:517.186667pt;}
.yb_c00397{bottom:533.586667pt;}
.ya_c00397{bottom:549.586667pt;}
.y9_c00397{bottom:566.120000pt;}
.y8_c00397{bottom:582.253333pt;}
.y7_c00397{bottom:598.386667pt;}
.y6_c00397{bottom:614.386667pt;}
.y5_c00397{bottom:630.253333pt;}
.y4_c00397{bottom:646.520000pt;}
.y3_c00397{bottom:662.386667pt;}
.y2_c00397{bottom:678.786667pt;}
.y1_c00397{bottom:694.520000pt;}
.h5_c00397{height:11.733399pt;}
.h6_c00397{height:38.937500pt;}
.h2_c00397{height:55.893333pt;}
.h3_c00397{height:56.906667pt;}
.h4_c00397{height:61.482667pt;}
.h1_c00397{height:752.666667pt;}
.h0_c00397{height:752.866667pt;}
.w2_c00397{width:93.222667pt;}
.w0_c00397{width:505.666667pt;}
.w1_c00397{width:506.000000pt;}
.x0_c00397{left:0.000000pt;}
.x5_c00397{left:28.800000pt;}
.x7_c00397{left:29.733333pt;}
.x2_c00397{left:65.466667pt;}
.x1_c00397{left:81.600000pt;}
.x3_c00397{left:83.066667pt;}
.x6_c00397{left:84.266667pt;}
.x8_c00397{left:85.466667pt;}
.x9_c00397{left:87.200000pt;}
.xa_c00397{left:88.133333pt;}
.xb_c00397{left:89.066667pt;}
.x4_c00397{left:100.533333pt;}
.xd_c00397{left:210.001546pt;}
.xc_c00397{left:432.266667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e82a8d0c9a231d90d0317e36.woff2')format("woff");}.ff1_c00398{font-family:ff1_c00398;line-height:1.437000;font-style:normal;font-weight:normal;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_96816125d9e082ca8289c8aa.woff2')format("woff");}.ff2_c00398{font-family:ff2_c00398;line-height:1.575000;font-style:normal;font-weight:normal;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_a7ef49be14c497e8002d63c7.woff2')format("woff");}.ff3_c00398{font-family:ff3_c00398;line-height:1.437000;font-style:normal;font-weight:normal;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_67730926c537ec602265715b.woff2')format("woff");}.ff4_c00398{font-family:ff4_c00398;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00398;src:url('chunks/assets/font_629d2271eb11d47911de7174.woff2')format("woff");}.ff5_c00398{font-family:ff5_c00398;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00398;src:url('chunks/assets/font_7c7b114d6d8510036cb24ad0.woff2')format("woff");}.ff6_c00398{font-family:ff6_c00398;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00398;src:url('chunks/assets/font_cccb828dcdf485deabc801d2.woff2')format("woff");}.ff7_c00398{font-family:ff7_c00398;line-height:1.012793;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00398;src:url('chunks/assets/font_63845a80d654ec86bd3a0048.woff2')format("woff");}.ff8_c00398{font-family:ff8_c00398;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00398;src:url('chunks/assets/font_b3123c50e135ac622b544268.woff2')format("woff");}.ff9_c00398{font-family:ff9_c00398;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00398;src:url('chunks/assets/font_a60b09c23dbdb940767ad8a9.woff2')format("woff");}.ffa_c00398{font-family:ffa_c00398;line-height:1.437000;font-style:normal;font-weight: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_c00398;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ffb_c00398{font-family:ffb_c00398;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00398{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00398{vertical-align:0.000000px;}
.lsa_c00398{letter-spacing:-6.000000px;}
.ls9_c00398{letter-spacing:0.000000px;}
.ls1_c00398{letter-spacing:0.405000px;}
.ls6_c00398{letter-spacing:2.400000px;}
.ls0_c00398{letter-spacing:3.000000px;}
.ls5_c00398{letter-spacing:6.000000px;}
.ls8_c00398{letter-spacing:6.600000px;}
.ls2_c00398{letter-spacing:10.005000px;}
.ls7_c00398{letter-spacing:10.800000px;}
.ls4_c00398{letter-spacing:21.777000px;}
.ls3_c00398{letter-spacing:40.377000px;}
.sc__c00398{text-shadow:none;}
.sc0_c00398{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00398{-webkit-text-stroke:0px transparent;}
.sc0_c00398{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00398{word-spacing:-35.295000px;}
.ws4_c00398{word-spacing:-25.389000px;}
.ws3_c00398{word-spacing:-20.340000px;}
.ws7_c00398{word-spacing:-18.060000px;}
.ws6_c00398{word-spacing:-18.000000px;}
.ws0_c00398{word-spacing:-16.416000px;}
.ws1_c00398{word-spacing:-14.160000px;}
.ws2_c00398{word-spacing:-13.452000px;}
.ws8_c00398{word-spacing:0.000000px;}
._12_c00398{margin-left:-29.055000px;}
._2f_c00398{margin-left:-26.520000px;}
._30_c00398{margin-left:-20.982000px;}
._24_c00398{margin-left:-18.420000px;}
._25_c00398{margin-left:-14.880000px;}
._2a_c00398{margin-left:-12.330000px;}
._1b_c00398{margin-left:-11.109000px;}
._29_c00398{margin-left:-10.011000px;}
._1d_c00398{margin-left:-8.247000px;}
._1c_c00398{margin-left:-6.393000px;}
._17_c00398{margin-left:-5.310000px;}
._28_c00398{margin-left:-4.203000px;}
._a_c00398{margin-left:-3.036000px;}
._c_c00398{margin-left:-1.080000px;}
._1_c00398{width:1.104000px;}
._0_c00398{width:2.484000px;}
._8_c00398{width:3.933000px;}
._5_c00398{width:5.037000px;}
._d_c00398{width:6.051000px;}
._7_c00398{width:7.107000px;}
._3_c00398{width:8.418000px;}
._4_c00398{width:9.522000px;}
._6_c00398{width:11.316000px;}
._27_c00398{width:12.741000px;}
._1e_c00398{width:15.180000px;}
._2_c00398{width:16.560000px;}
._19_c00398{width:18.000000px;}
._1f_c00398{width:19.173000px;}
._1a_c00398{width:20.964000px;}
._13_c00398{width:22.740000px;}
._f_c00398{width:24.156000px;}
._14_c00398{width:25.500000px;}
._e_c00398{width:26.562000px;}
._33_c00398{width:27.861000px;}
._31_c00398{width:29.811000px;}
._2b_c00398{width:31.278000px;}
._15_c00398{width:33.993000px;}
._2d_c00398{width:35.364000px;}
._23_c00398{width:37.980000px;}
._36_c00398{width:39.348000px;}
._10_c00398{width:43.449000px;}
._32_c00398{width:44.457000px;}
._11_c00398{width:48.888000px;}
._35_c00398{width:53.673000px;}
._21_c00398{width:63.180000px;}
._20_c00398{width:69.672000px;}
._22_c00398{width:79.920000px;}
._b_c00398{width:101.184000px;}
._18_c00398{width:115.983000px;}
._26_c00398{width:118.041000px;}
._2e_c00398{width:128.784000px;}
._34_c00398{width:150.996000px;}
._16_c00398{width:173.376000px;}
._37_c00398{width:181.338000px;}
._2c_c00398{width:183.996000px;}
._9_c00398{width:464.784000px;}
.fc2_c00398{color:transparent;}
.fc1_c00398{color:rgb(128,128,128);}
.fc0_c00398{color:rgb(0,0,0);}
.fs6_c00398{font-size:39.000000px;}
.fs3_c00398{font-size:45.000000px;}
.fs1_c00398{font-size:48.000000px;}
.fs8_c00398{font-size:51.000000px;}
.fs5_c00398{font-size:54.000000px;}
.fs4_c00398{font-size:57.000000px;}
.fs2_c00398{font-size:60.000000px;}
.fs7_c00398{font-size:63.000000px;}
.fs0_c00398{font-size:69.000000px;}
.y0_c00398{bottom:0.000000px;}
.y52_c00398{bottom:3.105000px;}
.y51_c00398{bottom:7.228357px;}
.y50_c00398{bottom:31.680000px;}
.y2a_c00398{bottom:48.330000px;}
.y4f_c00398{bottom:49.980000px;}
.y29_c00398{bottom:67.230000px;}
.y4e_c00398{bottom:68.580000px;}
.y28_c00398{bottom:85.080000px;}
.y4d_c00398{bottom:86.730000px;}
.y27_c00398{bottom:103.980000px;}
.y4c_c00398{bottom:104.580000px;}
.y26_c00398{bottom:121.830000px;}
.y4b_c00398{bottom:122.580000px;}
.y25_c00398{bottom:139.830000px;}
.y4a_c00398{bottom:140.730000px;}
.y24_c00398{bottom:157.680000px;}
.y49_c00398{bottom:158.730000px;}
.y23_c00398{bottom:176.130000px;}
.y22_c00398{bottom:193.830000px;}
.y48_c00398{bottom:194.430000px;}
.y21_c00398{bottom:212.280000px;}
.y47_c00398{bottom:212.730000px;}
.y20_c00398{bottom:230.280000px;}
.y1f_c00398{bottom:248.130000px;}
.y46_c00398{bottom:266.730000px;}
.y1e_c00398{bottom:267.030000px;}
.y1d_c00398{bottom:283.530000px;}
.y45_c00398{bottom:284.880000px;}
.y1c_c00398{bottom:302.130000px;}
.y44_c00398{bottom:302.430000px;}
.y1b_c00398{bottom:319.380000px;}
.y43_c00398{bottom:321.330000px;}
.y1a_c00398{bottom:338.280000px;}
.y42_c00398{bottom:339.480000px;}
.y19_c00398{bottom:356.430000px;}
.y41_c00398{bottom:357.480000px;}
.y18_c00398{bottom:374.580000px;}
.y40_c00398{bottom:375.030000px;}
.y17_c00398{bottom:392.280000px;}
.y3f_c00398{bottom:393.930000px;}
.y16_c00398{bottom:410.430000px;}
.y3e_c00398{bottom:411.030000px;}
.y15_c00398{bottom:428.580000px;}
.y3d_c00398{bottom:429.930000px;}
.y14_c00398{bottom:446.280000px;}
.y3c_c00398{bottom:447.630000px;}
.y13_c00398{bottom:463.680000px;}
.y3b_c00398{bottom:465.480000px;}
.y12_c00398{bottom:482.280000px;}
.y3a_c00398{bottom:483.930000px;}
.y11_c00398{bottom:499.830000px;}
.y39_c00398{bottom:501.480000px;}
.y10_c00398{bottom:516.480000px;}
.y38_c00398{bottom:519.780000px;}
.yf_c00398{bottom:534.630000px;}
.y37_c00398{bottom:537.330000px;}
.ye_c00398{bottom:552.480000px;}
.y36_c00398{bottom:555.930000px;}
.yd_c00398{bottom:570.030000px;}
.y35_c00398{bottom:573.180000px;}
.yc_c00398{bottom:588.630000px;}
.y34_c00398{bottom:591.630000px;}
.yb_c00398{bottom:606.180000px;}
.y33_c00398{bottom:609.930000px;}
.ya_c00398{bottom:624.480000px;}
.y32_c00398{bottom:627.480000px;}
.y9_c00398{bottom:642.030000px;}
.y31_c00398{bottom:645.930000px;}
.y8_c00398{bottom:660.180000px;}
.y30_c00398{bottom:663.630000px;}
.y7_c00398{bottom:677.730000px;}
.y2f_c00398{bottom:681.780000px;}
.y6_c00398{bottom:695.280000px;}
.y2e_c00398{bottom:699.030000px;}
.y5_c00398{bottom:713.130000px;}
.y2d_c00398{bottom:717.180000px;}
.y4_c00398{bottom:730.680000px;}
.y2c_c00398{bottom:736.080000px;}
.y3_c00398{bottom:748.680000px;}
.y2b_c00398{bottom:753.330000px;}
.y2_c00398{bottom:768.930000px;}
.y1_c00398{bottom:789.180000px;}
.h7_c00398{height:13.200074px;}
.h8_c00398{height:43.804688px;}
.h6_c00398{height:53.448000px;}
.h3_c00398{height:59.736000px;}
.h2_c00398{height:62.880000px;}
.h4_c00398{height:64.020000px;}
.h5_c00398{height:67.221000px;}
.h1_c00398{height:72.312000px;}
.h0_c00398{height:833.250000px;}
.w2_c00398{width:104.875500px;}
.w0_c00398{width:578.850000px;}
.w1_c00398{width:579.000000px;}
.x0_c00398{left:0.000000px;}
.x3_c00398{left:11.550000px;}
.x4_c00398{left:12.750000px;}
.x9_c00398{left:71.850000px;}
.x6_c00398{left:73.200000px;}
.xa_c00398{left:74.250000px;}
.x8_c00398{left:75.300000px;}
.x2_c00398{left:76.350000px;}
.x5_c00398{left:77.550000px;}
.x7_c00398{left:103.350000px;}
.x1_c00398{left:209.400000px;}
.x11_c00398{left:241.239258px;}
.xf_c00398{left:289.500000px;}
.xd_c00398{left:291.150000px;}
.xe_c00398{left:293.550000px;}
.xb_c00398{left:295.350000px;}
.xc_c00398{left:296.550000px;}
.x10_c00398{left:388.050000px;}
@media print{
.v0_c00398{vertical-align:0.000000pt;}
.lsa_c00398{letter-spacing:-5.333333pt;}
.ls9_c00398{letter-spacing:0.000000pt;}
.ls1_c00398{letter-spacing:0.360000pt;}
.ls6_c00398{letter-spacing:2.133333pt;}
.ls0_c00398{letter-spacing:2.666667pt;}
.ls5_c00398{letter-spacing:5.333333pt;}
.ls8_c00398{letter-spacing:5.866667pt;}
.ls2_c00398{letter-spacing:8.893333pt;}
.ls7_c00398{letter-spacing:9.600000pt;}
.ls4_c00398{letter-spacing:19.357333pt;}
.ls3_c00398{letter-spacing:35.890667pt;}
.ws5_c00398{word-spacing:-31.373333pt;}
.ws4_c00398{word-spacing:-22.568000pt;}
.ws3_c00398{word-spacing:-18.080000pt;}
.ws7_c00398{word-spacing:-16.053333pt;}
.ws6_c00398{word-spacing:-16.000000pt;}
.ws0_c00398{word-spacing:-14.592000pt;}
.ws1_c00398{word-spacing:-12.586667pt;}
.ws2_c00398{word-spacing:-11.957333pt;}
.ws8_c00398{word-spacing:0.000000pt;}
._12_c00398{margin-left:-25.826667pt;}
._2f_c00398{margin-left:-23.573333pt;}
._30_c00398{margin-left:-18.650667pt;}
._24_c00398{margin-left:-16.373333pt;}
._25_c00398{margin-left:-13.226667pt;}
._2a_c00398{margin-left:-10.960000pt;}
._1b_c00398{margin-left:-9.874667pt;}
._29_c00398{margin-left:-8.898667pt;}
._1d_c00398{margin-left:-7.330667pt;}
._1c_c00398{margin-left:-5.682667pt;}
._17_c00398{margin-left:-4.720000pt;}
._28_c00398{margin-left:-3.736000pt;}
._a_c00398{margin-left:-2.698667pt;}
._c_c00398{margin-left:-0.960000pt;}
._1_c00398{width:0.981333pt;}
._0_c00398{width:2.208000pt;}
._8_c00398{width:3.496000pt;}
._5_c00398{width:4.477333pt;}
._d_c00398{width:5.378667pt;}
._7_c00398{width:6.317333pt;}
._3_c00398{width:7.482667pt;}
._4_c00398{width:8.464000pt;}
._6_c00398{width:10.058667pt;}
._27_c00398{width:11.325333pt;}
._1e_c00398{width:13.493333pt;}
._2_c00398{width:14.720000pt;}
._19_c00398{width:16.000000pt;}
._1f_c00398{width:17.042667pt;}
._1a_c00398{width:18.634667pt;}
._13_c00398{width:20.213333pt;}
._f_c00398{width:21.472000pt;}
._14_c00398{width:22.666667pt;}
._e_c00398{width:23.610667pt;}
._33_c00398{width:24.765333pt;}
._31_c00398{width:26.498667pt;}
._2b_c00398{width:27.802667pt;}
._15_c00398{width:30.216000pt;}
._2d_c00398{width:31.434667pt;}
._23_c00398{width:33.760000pt;}
._36_c00398{width:34.976000pt;}
._10_c00398{width:38.621333pt;}
._32_c00398{width:39.517333pt;}
._11_c00398{width:43.456000pt;}
._35_c00398{width:47.709333pt;}
._21_c00398{width:56.160000pt;}
._20_c00398{width:61.930667pt;}
._22_c00398{width:71.040000pt;}
._b_c00398{width:89.941333pt;}
._18_c00398{width:103.096000pt;}
._26_c00398{width:104.925333pt;}
._2e_c00398{width:114.474667pt;}
._34_c00398{width:134.218667pt;}
._16_c00398{width:154.112000pt;}
._37_c00398{width:161.189333pt;}
._2c_c00398{width:163.552000pt;}
._9_c00398{width:413.141333pt;}
.fs6_c00398{font-size:34.666667pt;}
.fs3_c00398{font-size:40.000000pt;}
.fs1_c00398{font-size:42.666667pt;}
.fs8_c00398{font-size:45.333333pt;}
.fs5_c00398{font-size:48.000000pt;}
.fs4_c00398{font-size:50.666667pt;}
.fs2_c00398{font-size:53.333333pt;}
.fs7_c00398{font-size:56.000000pt;}
.fs0_c00398{font-size:61.333333pt;}
.y0_c00398{bottom:0.000000pt;}
.y52_c00398{bottom:2.760000pt;}
.y51_c00398{bottom:6.425206pt;}
.y50_c00398{bottom:28.160000pt;}
.y2a_c00398{bottom:42.960000pt;}
.y4f_c00398{bottom:44.426667pt;}
.y29_c00398{bottom:59.760000pt;}
.y4e_c00398{bottom:60.960000pt;}
.y28_c00398{bottom:75.626667pt;}
.y4d_c00398{bottom:77.093333pt;}
.y27_c00398{bottom:92.426667pt;}
.y4c_c00398{bottom:92.960000pt;}
.y26_c00398{bottom:108.293333pt;}
.y4b_c00398{bottom:108.960000pt;}
.y25_c00398{bottom:124.293333pt;}
.y4a_c00398{bottom:125.093333pt;}
.y24_c00398{bottom:140.160000pt;}
.y49_c00398{bottom:141.093333pt;}
.y23_c00398{bottom:156.560000pt;}
.y22_c00398{bottom:172.293333pt;}
.y48_c00398{bottom:172.826667pt;}
.y21_c00398{bottom:188.693333pt;}
.y47_c00398{bottom:189.093333pt;}
.y20_c00398{bottom:204.693333pt;}
.y1f_c00398{bottom:220.560000pt;}
.y46_c00398{bottom:237.093333pt;}
.y1e_c00398{bottom:237.360000pt;}
.y1d_c00398{bottom:252.026667pt;}
.y45_c00398{bottom:253.226667pt;}
.y1c_c00398{bottom:268.560000pt;}
.y44_c00398{bottom:268.826667pt;}
.y1b_c00398{bottom:283.893333pt;}
.y43_c00398{bottom:285.626667pt;}
.y1a_c00398{bottom:300.693333pt;}
.y42_c00398{bottom:301.760000pt;}
.y19_c00398{bottom:316.826667pt;}
.y41_c00398{bottom:317.760000pt;}
.y18_c00398{bottom:332.960000pt;}
.y40_c00398{bottom:333.360000pt;}
.y17_c00398{bottom:348.693333pt;}
.y3f_c00398{bottom:350.160000pt;}
.y16_c00398{bottom:364.826667pt;}
.y3e_c00398{bottom:365.360000pt;}
.y15_c00398{bottom:380.960000pt;}
.y3d_c00398{bottom:382.160000pt;}
.y14_c00398{bottom:396.693333pt;}
.y3c_c00398{bottom:397.893333pt;}
.y13_c00398{bottom:412.160000pt;}
.y3b_c00398{bottom:413.760000pt;}
.y12_c00398{bottom:428.693333pt;}
.y3a_c00398{bottom:430.160000pt;}
.y11_c00398{bottom:444.293333pt;}
.y39_c00398{bottom:445.760000pt;}
.y10_c00398{bottom:459.093333pt;}
.y38_c00398{bottom:462.026667pt;}
.yf_c00398{bottom:475.226667pt;}
.y37_c00398{bottom:477.626667pt;}
.ye_c00398{bottom:491.093333pt;}
.y36_c00398{bottom:494.160000pt;}
.yd_c00398{bottom:506.693333pt;}
.y35_c00398{bottom:509.493333pt;}
.yc_c00398{bottom:523.226667pt;}
.y34_c00398{bottom:525.893333pt;}
.yb_c00398{bottom:538.826667pt;}
.y33_c00398{bottom:542.160000pt;}
.ya_c00398{bottom:555.093333pt;}
.y32_c00398{bottom:557.760000pt;}
.y9_c00398{bottom:570.693333pt;}
.y31_c00398{bottom:574.160000pt;}
.y8_c00398{bottom:586.826667pt;}
.y30_c00398{bottom:589.893333pt;}
.y7_c00398{bottom:602.426667pt;}
.y2f_c00398{bottom:606.026667pt;}
.y6_c00398{bottom:618.026667pt;}
.y2e_c00398{bottom:621.360000pt;}
.y5_c00398{bottom:633.893333pt;}
.y2d_c00398{bottom:637.493333pt;}
.y4_c00398{bottom:649.493333pt;}
.y2c_c00398{bottom:654.293333pt;}
.y3_c00398{bottom:665.493333pt;}
.y2b_c00398{bottom:669.626667pt;}
.y2_c00398{bottom:683.493333pt;}
.y1_c00398{bottom:701.493333pt;}
.h7_c00398{height:11.733399pt;}
.h8_c00398{height:38.937500pt;}
.h6_c00398{height:47.509333pt;}
.h3_c00398{height:53.098667pt;}
.h2_c00398{height:55.893333pt;}
.h4_c00398{height:56.906667pt;}
.h5_c00398{height:59.752000pt;}
.h1_c00398{height:64.277333pt;}
.h0_c00398{height:740.666667pt;}
.w2_c00398{width:93.222667pt;}
.w0_c00398{width:514.533333pt;}
.w1_c00398{width:514.666667pt;}
.x0_c00398{left:0.000000pt;}
.x3_c00398{left:10.266667pt;}
.x4_c00398{left:11.333333pt;}
.x9_c00398{left:63.866667pt;}
.x6_c00398{left:65.066667pt;}
.xa_c00398{left:66.000000pt;}
.x8_c00398{left:66.933333pt;}
.x2_c00398{left:67.866667pt;}
.x5_c00398{left:68.933333pt;}
.x7_c00398{left:91.866667pt;}
.x1_c00398{left:186.133333pt;}
.x11_c00398{left:214.434896pt;}
.xf_c00398{left:257.333333pt;}
.xd_c00398{left:258.800000pt;}
.xe_c00398{left:260.933333pt;}
.xb_c00398{left:262.533333pt;}
.xc_c00398{left:263.600000pt;}
.x10_c00398{left:344.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_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_55212765dba85d4c8e0d295a.woff2')format("woff");}.ff1_c00399{font-family:ff1_c00399;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00399;src:url('chunks/assets/font_9d04d438eca3b4f4b1f90419.woff2')format("woff");}.ff2_c00399{font-family:ff2_c00399;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00399;src:url('chunks/assets/font_df6b37dd9b6367ff467d0324.woff2')format("woff");}.ff3_c00399{font-family:ff3_c00399;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00399;src:url('chunks/assets/font_d292e254763a00f8fe7b4df6.woff2')format("woff");}.ff4_c00399{font-family:ff4_c00399;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00399;src:url('chunks/assets/font_5c170781208c06c876e926dc.woff2')format("woff");}.ff5_c00399{font-family:ff5_c00399;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00399;src:url('chunks/assets/font_0ce391de997f24f9f9dd37f4.woff2')format("woff");}.ff6_c00399{font-family:ff6_c00399;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00399;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff7_c00399{font-family:ff7_c00399;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00399{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00399{vertical-align:0.000000px;}
.lsc_c00399{letter-spacing:-27.000000px;}
.lsb_c00399{letter-spacing:0.000000px;}
.lsa_c00399{letter-spacing:1.080000px;}
.ls0_c00399{letter-spacing:2.400000px;}
.ls5_c00399{letter-spacing:3.000000px;}
.ls6_c00399{letter-spacing:4.005000px;}
.ls3_c00399{letter-spacing:6.000000px;}
.ls2_c00399{letter-spacing:6.600000px;}
.ls4_c00399{letter-spacing:8.880000px;}
.ls1_c00399{letter-spacing:10.680000px;}
.ls8_c00399{letter-spacing:13.245000px;}
.ls7_c00399{letter-spacing:40.140000px;}
.ls9_c00399{letter-spacing:58.845000px;}
.sc__c00399{text-shadow:none;}
.sc0_c00399{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00399{-webkit-text-stroke:0px transparent;}
.sc0_c00399{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00399{word-spacing:-77.455200px;}
.ws4_c00399{word-spacing:-35.295000px;}
.ws3_c00399{word-spacing:-21.774000px;}
.ws2_c00399{word-spacing:-20.340000px;}
.ws5_c00399{word-spacing:-18.060000px;}
.ws0_c00399{word-spacing:-14.160000px;}
.ws6_c00399{word-spacing:0.000000px;}
._28_c00399{margin-left:-20.400000px;}
._f_c00399{margin-left:-15.600000px;}
._13_c00399{margin-left:-14.040000px;}
._10_c00399{margin-left:-12.420000px;}
._1f_c00399{margin-left:-11.400000px;}
._22_c00399{margin-left:-10.080000px;}
._6_c00399{margin-left:-8.880000px;}
._14_c00399{margin-left:-7.620000px;}
._3_c00399{margin-left:-6.300000px;}
._1b_c00399{margin-left:-5.100000px;}
._e_c00399{margin-left:-4.020000px;}
._8_c00399{margin-left:-2.280000px;}
._7_c00399{margin-left:-1.020000px;}
._5_c00399{width:1.320000px;}
._0_c00399{width:2.640000px;}
._1_c00399{width:4.080000px;}
._20_c00399{width:5.220000px;}
._b_c00399{width:6.600000px;}
._a_c00399{width:7.680000px;}
._11_c00399{width:9.540000px;}
._1d_c00399{width:11.280000px;}
._d_c00399{width:12.300000px;}
._1c_c00399{width:13.680000px;}
._1e_c00399{width:14.820000px;}
._16_c00399{width:16.560000px;}
._c_c00399{width:18.720000px;}
._24_c00399{width:20.520000px;}
._9_c00399{width:22.200000px;}
._21_c00399{width:23.400000px;}
._2_c00399{width:24.720000px;}
._18_c00399{width:26.220000px;}
._26_c00399{width:27.540000px;}
._27_c00399{width:30.540000px;}
._12_c00399{width:32.820000px;}
._17_c00399{width:34.800000px;}
._1a_c00399{width:36.180000px;}
._15_c00399{width:40.200000px;}
._19_c00399{width:47.940000px;}
._23_c00399{width:86.940000px;}
._25_c00399{width:191.460000px;}
._4_c00399{width:252.540000px;}
.fc2_c00399{color:transparent;}
.fc1_c00399{color:rgb(128,128,128);}
.fc0_c00399{color:rgb(0,0,0);}
.fs4_c00399{font-size:45.000000px;}
.fs6_c00399{font-size:48.000000px;}
.fs0_c00399{font-size:60.000000px;}
.fs3_c00399{font-size:66.000000px;}
.fs5_c00399{font-size:69.000000px;}
.fs1_c00399{font-size:170.400000px;}
.fs2_c00399{font-size:213.000000px;}
.y0_c00399{bottom:0.000000px;}
.y54_c00399{bottom:3.105000px;}
.y53_c00399{bottom:7.228355px;}
.y52_c00399{bottom:35.685000px;}
.y51_c00399{bottom:55.035000px;}
.y27_c00399{bottom:56.385000px;}
.y50_c00399{bottom:73.935000px;}
.y26_c00399{bottom:75.135000px;}
.y4f_c00399{bottom:92.085000px;}
.y25_c00399{bottom:93.435000px;}
.y4e_c00399{bottom:109.935000px;}
.y24_c00399{bottom:111.285000px;}
.y4d_c00399{bottom:127.935000px;}
.y23_c00399{bottom:129.135000px;}
.y4c_c00399{bottom:146.385000px;}
.y22_c00399{bottom:147.435000px;}
.y4b_c00399{bottom:164.235000px;}
.y21_c00399{bottom:165.585000px;}
.y4a_c00399{bottom:182.235000px;}
.y20_c00399{bottom:183.135000px;}
.y49_c00399{bottom:200.685000px;}
.y1f_c00399{bottom:201.135000px;}
.y48_c00399{bottom:218.685000px;}
.y1e_c00399{bottom:218.985000px;}
.y47_c00399{bottom:237.135000px;}
.y1d_c00399{bottom:237.285000px;}
.y46_c00399{bottom:254.685000px;}
.y1c_c00399{bottom:255.735000px;}
.y45_c00399{bottom:272.685000px;}
.y1b_c00399{bottom:273.285000px;}
.y18_c00399{bottom:285.435000px;}
.y44_c00399{bottom:290.535000px;}
.y1a_c00399{bottom:292.635000px;}
.y43_c00399{bottom:308.385000px;}
.y19_c00399{bottom:310.185000px;}
.y42_c00399{bottom:326.235000px;}
.y41_c00399{bottom:344.835000px;}
.y17_c00399{bottom:345.885000px;}
.y40_c00399{bottom:362.685000px;}
.y16_c00399{bottom:364.185000px;}
.y3f_c00399{bottom:380.385000px;}
.y15_c00399{bottom:381.735000px;}
.y3e_c00399{bottom:398.535000px;}
.y14_c00399{bottom:400.635000px;}
.y3d_c00399{bottom:416.385000px;}
.y13_c00399{bottom:418.485000px;}
.y3c_c00399{bottom:435.285000px;}
.y3b_c00399{bottom:452.835000px;}
.y12_c00399{bottom:453.285000px;}
.y3a_c00399{bottom:471.435000px;}
.y39_c00399{bottom:488.985000px;}
.y11_c00399{bottom:489.735000px;}
.y38_c00399{bottom:507.585000px;}
.y10_c00399{bottom:508.935000px;}
.y37_c00399{bottom:525.435000px;}
.yf_c00399{bottom:527.385000px;}
.y36_c00399{bottom:543.585000px;}
.ye_c00399{bottom:545.385000px;}
.y35_c00399{bottom:561.585000px;}
.yd_c00399{bottom:563.985000px;}
.y34_c00399{bottom:579.435000px;}
.yc_c00399{bottom:581.535000px;}
.y33_c00399{bottom:597.735000px;}
.yb_c00399{bottom:598.935000px;}
.y32_c00399{bottom:615.885000px;}
.ya_c00399{bottom:617.535000px;}
.y31_c00399{bottom:633.735000px;}
.y9_c00399{bottom:635.385000px;}
.y30_c00399{bottom:651.735000px;}
.y8_c00399{bottom:652.035000px;}
.y2f_c00399{bottom:669.285000px;}
.y7_c00399{bottom:672.285000px;}
.y2e_c00399{bottom:688.185000px;}
.y6_c00399{bottom:689.835000px;}
.y2d_c00399{bottom:706.635000px;}
.y5_c00399{bottom:708.735000px;}
.y2c_c00399{bottom:724.185000px;}
.y4_c00399{bottom:725.835000px;}
.y2b_c00399{bottom:741.585000px;}
.y3_c00399{bottom:743.535000px;}
.y2a_c00399{bottom:759.585000px;}
.y2_c00399{bottom:761.985000px;}
.y29_c00399{bottom:777.585000px;}
.y1_c00399{bottom:779.535000px;}
.y28_c00399{bottom:797.385000px;}
.h7_c00399{height:13.200074px;}
.h8_c00399{height:43.804688px;}
.h2_c00399{height:62.880000px;}
.h3_c00399{height:64.020000px;}
.h5_c00399{height:69.168000px;}
.h6_c00399{height:72.312000px;}
.h4_c00399{height:223.224000px;}
.h1_c00399{height:846.750000px;}
.h0_c00399{height:846.975000px;}
.w2_c00399{width:104.875500px;}
.w0_c00399{width:568.875000px;}
.w1_c00399{width:569.250000px;}
.x0_c00399{left:0.000000px;}
.xc_c00399{left:14.550000px;}
.xd_c00399{left:28.950000px;}
.x2_c00399{left:71.250000px;}
.x5_c00399{left:75.600000px;}
.x4_c00399{left:76.650000px;}
.x1_c00399{left:77.700000px;}
.x3_c00399{left:78.900000px;}
.xa_c00399{left:104.250000px;}
.x8_c00399{left:109.650000px;}
.xb_c00399{left:129.150000px;}
.x7_c00399{left:132.300000px;}
.x6_c00399{left:145.800000px;}
.x9_c00399{left:160.650000px;}
.x15_c00399{left:236.251740px;}
.xe_c00399{left:272.700000px;}
.x13_c00399{left:286.950000px;}
.x12_c00399{left:288.150000px;}
.x11_c00399{left:289.350000px;}
.x10_c00399{left:290.550000px;}
.xf_c00399{left:291.900000px;}
.x14_c00399{left:456.600000px;}
@media print{
.v0_c00399{vertical-align:0.000000pt;}
.lsc_c00399{letter-spacing:-24.000000pt;}
.lsb_c00399{letter-spacing:0.000000pt;}
.lsa_c00399{letter-spacing:0.960000pt;}
.ls0_c00399{letter-spacing:2.133333pt;}
.ls5_c00399{letter-spacing:2.666667pt;}
.ls6_c00399{letter-spacing:3.560000pt;}
.ls3_c00399{letter-spacing:5.333333pt;}
.ls2_c00399{letter-spacing:5.866667pt;}
.ls4_c00399{letter-spacing:7.893333pt;}
.ls1_c00399{letter-spacing:9.493333pt;}
.ls8_c00399{letter-spacing:11.773333pt;}
.ls7_c00399{letter-spacing:35.680000pt;}
.ls9_c00399{letter-spacing:52.306667pt;}
.ws1_c00399{word-spacing:-68.849067pt;}
.ws4_c00399{word-spacing:-31.373333pt;}
.ws3_c00399{word-spacing:-19.354667pt;}
.ws2_c00399{word-spacing:-18.080000pt;}
.ws5_c00399{word-spacing:-16.053333pt;}
.ws0_c00399{word-spacing:-12.586667pt;}
.ws6_c00399{word-spacing:0.000000pt;}
._28_c00399{margin-left:-18.133333pt;}
._f_c00399{margin-left:-13.866667pt;}
._13_c00399{margin-left:-12.480000pt;}
._10_c00399{margin-left:-11.040000pt;}
._1f_c00399{margin-left:-10.133333pt;}
._22_c00399{margin-left:-8.960000pt;}
._6_c00399{margin-left:-7.893333pt;}
._14_c00399{margin-left:-6.773333pt;}
._3_c00399{margin-left:-5.600000pt;}
._1b_c00399{margin-left:-4.533333pt;}
._e_c00399{margin-left:-3.573333pt;}
._8_c00399{margin-left:-2.026667pt;}
._7_c00399{margin-left:-0.906667pt;}
._5_c00399{width:1.173333pt;}
._0_c00399{width:2.346667pt;}
._1_c00399{width:3.626667pt;}
._20_c00399{width:4.640000pt;}
._b_c00399{width:5.866667pt;}
._a_c00399{width:6.826667pt;}
._11_c00399{width:8.480000pt;}
._1d_c00399{width:10.026667pt;}
._d_c00399{width:10.933333pt;}
._1c_c00399{width:12.160000pt;}
._1e_c00399{width:13.173333pt;}
._16_c00399{width:14.720000pt;}
._c_c00399{width:16.640000pt;}
._24_c00399{width:18.240000pt;}
._9_c00399{width:19.733333pt;}
._21_c00399{width:20.800000pt;}
._2_c00399{width:21.973333pt;}
._18_c00399{width:23.306667pt;}
._26_c00399{width:24.480000pt;}
._27_c00399{width:27.146667pt;}
._12_c00399{width:29.173333pt;}
._17_c00399{width:30.933333pt;}
._1a_c00399{width:32.160000pt;}
._15_c00399{width:35.733333pt;}
._19_c00399{width:42.613333pt;}
._23_c00399{width:77.280000pt;}
._25_c00399{width:170.186667pt;}
._4_c00399{width:224.480000pt;}
.fs4_c00399{font-size:40.000000pt;}
.fs6_c00399{font-size:42.666667pt;}
.fs0_c00399{font-size:53.333333pt;}
.fs3_c00399{font-size:58.666667pt;}
.fs5_c00399{font-size:61.333333pt;}
.fs1_c00399{font-size:151.466667pt;}
.fs2_c00399{font-size:189.333333pt;}
.y0_c00399{bottom:0.000000pt;}
.y54_c00399{bottom:2.760000pt;}
.y53_c00399{bottom:6.425204pt;}
.y52_c00399{bottom:31.720000pt;}
.y51_c00399{bottom:48.920000pt;}
.y27_c00399{bottom:50.120000pt;}
.y50_c00399{bottom:65.720000pt;}
.y26_c00399{bottom:66.786667pt;}
.y4f_c00399{bottom:81.853333pt;}
.y25_c00399{bottom:83.053333pt;}
.y4e_c00399{bottom:97.720000pt;}
.y24_c00399{bottom:98.920000pt;}
.y4d_c00399{bottom:113.720000pt;}
.y23_c00399{bottom:114.786667pt;}
.y4c_c00399{bottom:130.120000pt;}
.y22_c00399{bottom:131.053333pt;}
.y4b_c00399{bottom:145.986667pt;}
.y21_c00399{bottom:147.186667pt;}
.y4a_c00399{bottom:161.986667pt;}
.y20_c00399{bottom:162.786667pt;}
.y49_c00399{bottom:178.386667pt;}
.y1f_c00399{bottom:178.786667pt;}
.y48_c00399{bottom:194.386667pt;}
.y1e_c00399{bottom:194.653333pt;}
.y47_c00399{bottom:210.786667pt;}
.y1d_c00399{bottom:210.920000pt;}
.y46_c00399{bottom:226.386667pt;}
.y1c_c00399{bottom:227.320000pt;}
.y45_c00399{bottom:242.386667pt;}
.y1b_c00399{bottom:242.920000pt;}
.y18_c00399{bottom:253.720000pt;}
.y44_c00399{bottom:258.253333pt;}
.y1a_c00399{bottom:260.120000pt;}
.y43_c00399{bottom:274.120000pt;}
.y19_c00399{bottom:275.720000pt;}
.y42_c00399{bottom:289.986667pt;}
.y41_c00399{bottom:306.520000pt;}
.y17_c00399{bottom:307.453333pt;}
.y40_c00399{bottom:322.386667pt;}
.y16_c00399{bottom:323.720000pt;}
.y3f_c00399{bottom:338.120000pt;}
.y15_c00399{bottom:339.320000pt;}
.y3e_c00399{bottom:354.253333pt;}
.y14_c00399{bottom:356.120000pt;}
.y3d_c00399{bottom:370.120000pt;}
.y13_c00399{bottom:371.986667pt;}
.y3c_c00399{bottom:386.920000pt;}
.y3b_c00399{bottom:402.520000pt;}
.y12_c00399{bottom:402.920000pt;}
.y3a_c00399{bottom:419.053333pt;}
.y39_c00399{bottom:434.653333pt;}
.y11_c00399{bottom:435.320000pt;}
.y38_c00399{bottom:451.186667pt;}
.y10_c00399{bottom:452.386667pt;}
.y37_c00399{bottom:467.053333pt;}
.yf_c00399{bottom:468.786667pt;}
.y36_c00399{bottom:483.186667pt;}
.ye_c00399{bottom:484.786667pt;}
.y35_c00399{bottom:499.186667pt;}
.yd_c00399{bottom:501.320000pt;}
.y34_c00399{bottom:515.053333pt;}
.yc_c00399{bottom:516.920000pt;}
.y33_c00399{bottom:531.320000pt;}
.yb_c00399{bottom:532.386667pt;}
.y32_c00399{bottom:547.453333pt;}
.ya_c00399{bottom:548.920000pt;}
.y31_c00399{bottom:563.320000pt;}
.y9_c00399{bottom:564.786667pt;}
.y30_c00399{bottom:579.320000pt;}
.y8_c00399{bottom:579.586667pt;}
.y2f_c00399{bottom:594.920000pt;}
.y7_c00399{bottom:597.586667pt;}
.y2e_c00399{bottom:611.720000pt;}
.y6_c00399{bottom:613.186667pt;}
.y2d_c00399{bottom:628.120000pt;}
.y5_c00399{bottom:629.986667pt;}
.y2c_c00399{bottom:643.720000pt;}
.y4_c00399{bottom:645.186667pt;}
.y2b_c00399{bottom:659.186667pt;}
.y3_c00399{bottom:660.920000pt;}
.y2a_c00399{bottom:675.186667pt;}
.y2_c00399{bottom:677.320000pt;}
.y29_c00399{bottom:691.186667pt;}
.y1_c00399{bottom:692.920000pt;}
.y28_c00399{bottom:708.786667pt;}
.h7_c00399{height:11.733399pt;}
.h8_c00399{height:38.937500pt;}
.h2_c00399{height:55.893333pt;}
.h3_c00399{height:56.906667pt;}
.h5_c00399{height:61.482667pt;}
.h6_c00399{height:64.277333pt;}
.h4_c00399{height:198.421333pt;}
.h1_c00399{height:752.666667pt;}
.h0_c00399{height:752.866667pt;}
.w2_c00399{width:93.222667pt;}
.w0_c00399{width:505.666667pt;}
.w1_c00399{width:506.000000pt;}
.x0_c00399{left:0.000000pt;}
.xc_c00399{left:12.933333pt;}
.xd_c00399{left:25.733333pt;}
.x2_c00399{left:63.333333pt;}
.x5_c00399{left:67.200000pt;}
.x4_c00399{left:68.133333pt;}
.x1_c00399{left:69.066667pt;}
.x3_c00399{left:70.133333pt;}
.xa_c00399{left:92.666667pt;}
.x8_c00399{left:97.466667pt;}
.xb_c00399{left:114.800000pt;}
.x7_c00399{left:117.600000pt;}
.x6_c00399{left:129.600000pt;}
.x9_c00399{left:142.800000pt;}
.x15_c00399{left:210.001546pt;}
.xe_c00399{left:242.400000pt;}
.x13_c00399{left:255.066667pt;}
.x12_c00399{left:256.133333pt;}
.x11_c00399{left:257.200000pt;}
.x10_c00399{left:258.266667pt;}
.xf_c00399{left:259.466667pt;}
.x14_c00399{left:405.866667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f8bb8b957004068c8cc55850.woff2')format("woff");}.ff1_c00400{font-family:ff1_c00400;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00400;src:url('chunks/assets/font_9ad6e738ec299938eeea9813.woff2')format("woff");}.ff2_c00400{font-family:ff2_c00400;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00400;src:url('chunks/assets/font_0b672c482df77d126c7f845b.woff2')format("woff");}.ff3_c00400{font-family:ff3_c00400;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00400;src:url('chunks/assets/font_81a70105ac6ba6bc8e04da64.woff2')format("woff");}.ff4_c00400{font-family:ff4_c00400;line-height:1.575000;font-style:normal;font-weight:normal;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_12a027cf65328bbfd269a337.woff2')format("woff");}.ff5_c00400{font-family:ff5_c00400;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00400;src:url('chunks/assets/font_b9e77c2bda518d5e5c3cde6a.woff2')format("woff");}.ff6_c00400{font-family:ff6_c00400;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00400;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff7_c00400{font-family:ff7_c00400;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00400{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00400{vertical-align:0.000000px;}
.ls4_c00400{letter-spacing:0.000000px;}
.ls2_c00400{letter-spacing:3.000000px;}
.ls1_c00400{letter-spacing:5.100000px;}
.ls5_c00400{letter-spacing:6.000000px;}
.ls0_c00400{letter-spacing:7.005000px;}
.ls3_c00400{letter-spacing:15.081000px;}
.sc__c00400{text-shadow:none;}
.sc0_c00400{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00400{-webkit-text-stroke:0px transparent;}
.sc0_c00400{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00400{word-spacing:-38.961000px;}
.ws2_c00400{word-spacing:-35.295000px;}
.ws1_c00400{word-spacing:-19.260000px;}
.ws5_c00400{word-spacing:-18.060000px;}
.ws3_c00400{word-spacing:-18.000000px;}
.ws7_c00400{word-spacing:-14.427000px;}
.ws0_c00400{word-spacing:-14.160000px;}
.ws8_c00400{word-spacing:0.000000px;}
.ws6_c00400{word-spacing:64.020000px;}
._32_c00400{margin-left:-20.715000px;}
._29_c00400{margin-left:-18.900000px;}
._17_c00400{margin-left:-16.815000px;}
._31_c00400{margin-left:-15.594000px;}
._22_c00400{margin-left:-14.220000px;}
._2c_c00400{margin-left:-12.465000px;}
._1a_c00400{margin-left:-10.566000px;}
._23_c00400{margin-left:-9.420000px;}
._1e_c00400{margin-left:-8.100000px;}
._13_c00400{margin-left:-6.960000px;}
._18_c00400{margin-left:-5.520000px;}
._9_c00400{margin-left:-3.720000px;}
._a_c00400{margin-left:-2.460000px;}
._3_c00400{margin-left:-1.140000px;}
._4_c00400{width:1.440000px;}
._0_c00400{width:3.120000px;}
._1_c00400{width:4.800000px;}
._2_c00400{width:6.240000px;}
._8_c00400{width:7.380000px;}
._7_c00400{width:9.060000px;}
._b_c00400{width:11.040000px;}
._1d_c00400{width:12.720000px;}
._5_c00400{width:14.040000px;}
._6_c00400{width:15.240000px;}
._19_c00400{width:16.620000px;}
._2e_c00400{width:17.640000px;}
._15_c00400{width:18.720000px;}
._24_c00400{width:19.980000px;}
._1b_c00400{width:21.300000px;}
._c_c00400{width:23.100000px;}
._27_c00400{width:24.720000px;}
._d_c00400{width:26.040000px;}
._1c_c00400{width:27.060000px;}
._21_c00400{width:28.320000px;}
._16_c00400{width:29.820000px;}
._2b_c00400{width:31.860000px;}
._11_c00400{width:33.600000px;}
._10_c00400{width:35.520000px;}
._2a_c00400{width:36.900000px;}
._1f_c00400{width:38.460000px;}
._20_c00400{width:44.040000px;}
._e_c00400{width:46.260000px;}
._12_c00400{width:52.680000px;}
._28_c00400{width:54.000000px;}
._25_c00400{width:61.200000px;}
._30_c00400{width:79.380000px;}
._f_c00400{width:89.580000px;}
._2f_c00400{width:92.580000px;}
._2d_c00400{width:133.620000px;}
._14_c00400{width:170.340000px;}
._26_c00400{width:176.700000px;}
._33_c00400{width:204.456000px;}
.fc2_c00400{color:transparent;}
.fc1_c00400{color:rgb(128,128,128);}
.fc0_c00400{color:rgb(0,0,0);}
.fs1_c00400{font-size:45.000000px;}
.fs5_c00400{font-size:48.000000px;}
.fs0_c00400{font-size:60.000000px;}
.fs4_c00400{font-size:63.000000px;}
.fs2_c00400{font-size:69.000000px;}
.fs3_c00400{font-size:81.000000px;}
.y0_c00400{bottom:0.000000px;}
.y53_c00400{bottom:3.105000px;}
.y52_c00400{bottom:7.228371px;}
.y51_c00400{bottom:34.215000px;}
.y50_c00400{bottom:52.065000px;}
.y29_c00400{bottom:52.365000px;}
.y28_c00400{bottom:70.665000px;}
.y4f_c00400{bottom:89.115000px;}
.y27_c00400{bottom:89.565000px;}
.y4e_c00400{bottom:106.665000px;}
.y26_c00400{bottom:107.415000px;}
.y4d_c00400{bottom:124.515000px;}
.y25_c00400{bottom:124.965000px;}
.y4c_c00400{bottom:142.815000px;}
.y24_c00400{bottom:143.415000px;}
.y4b_c00400{bottom:160.965000px;}
.y23_c00400{bottom:161.415000px;}
.y4a_c00400{bottom:178.965000px;}
.y22_c00400{bottom:179.565000px;}
.y49_c00400{bottom:197.115000px;}
.y21_c00400{bottom:197.865000px;}
.y48_c00400{bottom:215.115000px;}
.y20_c00400{bottom:216.015000px;}
.y47_c00400{bottom:232.665000px;}
.y1f_c00400{bottom:233.865000px;}
.y46_c00400{bottom:250.815000px;}
.y1e_c00400{bottom:251.415000px;}
.y45_c00400{bottom:268.665000px;}
.y1d_c00400{bottom:269.715000px;}
.y44_c00400{bottom:287.265000px;}
.y1c_c00400{bottom:288.315000px;}
.y43_c00400{bottom:304.815000px;}
.y1b_c00400{bottom:305.415000px;}
.y1a_c00400{bottom:323.115000px;}
.y42_c00400{bottom:340.965000px;}
.y19_c00400{bottom:341.415000px;}
.y41_c00400{bottom:358.515000px;}
.y18_c00400{bottom:359.415000px;}
.y40_c00400{bottom:376.065000px;}
.y17_c00400{bottom:377.415000px;}
.y3f_c00400{bottom:393.915000px;}
.y16_c00400{bottom:395.265000px;}
.y3e_c00400{bottom:412.515000px;}
.y15_c00400{bottom:413.115000px;}
.y14_c00400{bottom:429.765000px;}
.y3d_c00400{bottom:430.665000px;}
.y3c_c00400{bottom:447.315000px;}
.y13_c00400{bottom:448.965000px;}
.y3b_c00400{bottom:466.065000px;}
.y12_c00400{bottom:466.815000px;}
.y3a_c00400{bottom:484.365000px;}
.y11_c00400{bottom:484.965000px;}
.y39_c00400{bottom:501.915000px;}
.y10_c00400{bottom:502.515000px;}
.y38_c00400{bottom:519.765000px;}
.yf_c00400{bottom:520.065000px;}
.ye_c00400{bottom:537.615000px;}
.y37_c00400{bottom:537.765000px;}
.y36_c00400{bottom:555.315000px;}
.yd_c00400{bottom:555.615000px;}
.y35_c00400{bottom:573.765000px;}
.yc_c00400{bottom:574.065000px;}
.y34_c00400{bottom:591.315000px;}
.yb_c00400{bottom:592.065000px;}
.y33_c00400{bottom:609.615000px;}
.ya_c00400{bottom:609.915000px;}
.y32_c00400{bottom:627.465000px;}
.y9_c00400{bottom:627.765000px;}
.y8_c00400{bottom:645.015000px;}
.y31_c00400{bottom:645.615000px;}
.y7_c00400{bottom:663.165000px;}
.y30_c00400{bottom:663.615000px;}
.y6_c00400{bottom:680.865000px;}
.y2f_c00400{bottom:682.065000px;}
.y5_c00400{bottom:698.715000px;}
.y2e_c00400{bottom:699.765000px;}
.y4_c00400{bottom:716.865000px;}
.y2d_c00400{bottom:717.315000px;}
.y3_c00400{bottom:734.415000px;}
.y2c_c00400{bottom:735.465000px;}
.y2_c00400{bottom:752.415000px;}
.y2b_c00400{bottom:753.615000px;}
.y1_c00400{bottom:770.565000px;}
.y2a_c00400{bottom:771.915000px;}
.h7_c00400{height:13.200074px;}
.h8_c00400{height:43.804688px;}
.h2_c00400{height:62.880000px;}
.h4_c00400{height:64.020000px;}
.h6_c00400{height:66.024000px;}
.h3_c00400{height:72.312000px;}
.h5_c00400{height:86.427000px;}
.h1_c00400{height:844.500000px;}
.h0_c00400{height:844.575000px;}
.w1_c00400{width:104.875500px;}
.w0_c00400{width:587.250000px;}
.x0_c00400{left:0.000000px;}
.x4_c00400{left:20.850000px;}
.x5_c00400{left:33.300000px;}
.x8_c00400{left:67.050000px;}
.x3_c00400{left:80.400000px;}
.x7_c00400{left:82.350000px;}
.x6_c00400{left:83.400000px;}
.x2_c00400{left:84.450000px;}
.x1_c00400{left:85.500000px;}
.x11_c00400{left:245.439240px;}
.xf_c00400{left:297.600000px;}
.xb_c00400{left:298.650000px;}
.xe_c00400{left:299.700000px;}
.xc_c00400{left:300.750000px;}
.xa_c00400{left:302.100000px;}
.x9_c00400{left:303.300000px;}
.xd_c00400{left:315.900000px;}
.x10_c00400{left:398.550000px;}
@media print{
.v0_c00400{vertical-align:0.000000pt;}
.ls4_c00400{letter-spacing:0.000000pt;}
.ls2_c00400{letter-spacing:2.666667pt;}
.ls1_c00400{letter-spacing:4.533333pt;}
.ls5_c00400{letter-spacing:5.333333pt;}
.ls0_c00400{letter-spacing:6.226667pt;}
.ls3_c00400{letter-spacing:13.405333pt;}
.ws4_c00400{word-spacing:-34.632000pt;}
.ws2_c00400{word-spacing:-31.373333pt;}
.ws1_c00400{word-spacing:-17.120000pt;}
.ws5_c00400{word-spacing:-16.053333pt;}
.ws3_c00400{word-spacing:-16.000000pt;}
.ws7_c00400{word-spacing:-12.824000pt;}
.ws0_c00400{word-spacing:-12.586667pt;}
.ws8_c00400{word-spacing:0.000000pt;}
.ws6_c00400{word-spacing:56.906667pt;}
._32_c00400{margin-left:-18.413333pt;}
._29_c00400{margin-left:-16.800000pt;}
._17_c00400{margin-left:-14.946667pt;}
._31_c00400{margin-left:-13.861333pt;}
._22_c00400{margin-left:-12.640000pt;}
._2c_c00400{margin-left:-11.080000pt;}
._1a_c00400{margin-left:-9.392000pt;}
._23_c00400{margin-left:-8.373333pt;}
._1e_c00400{margin-left:-7.200000pt;}
._13_c00400{margin-left:-6.186667pt;}
._18_c00400{margin-left:-4.906667pt;}
._9_c00400{margin-left:-3.306667pt;}
._a_c00400{margin-left:-2.186667pt;}
._3_c00400{margin-left:-1.013333pt;}
._4_c00400{width:1.280000pt;}
._0_c00400{width:2.773333pt;}
._1_c00400{width:4.266667pt;}
._2_c00400{width:5.546667pt;}
._8_c00400{width:6.560000pt;}
._7_c00400{width:8.053333pt;}
._b_c00400{width:9.813333pt;}
._1d_c00400{width:11.306667pt;}
._5_c00400{width:12.480000pt;}
._6_c00400{width:13.546667pt;}
._19_c00400{width:14.773333pt;}
._2e_c00400{width:15.680000pt;}
._15_c00400{width:16.640000pt;}
._24_c00400{width:17.760000pt;}
._1b_c00400{width:18.933333pt;}
._c_c00400{width:20.533333pt;}
._27_c00400{width:21.973333pt;}
._d_c00400{width:23.146667pt;}
._1c_c00400{width:24.053333pt;}
._21_c00400{width:25.173333pt;}
._16_c00400{width:26.506667pt;}
._2b_c00400{width:28.320000pt;}
._11_c00400{width:29.866667pt;}
._10_c00400{width:31.573333pt;}
._2a_c00400{width:32.800000pt;}
._1f_c00400{width:34.186667pt;}
._20_c00400{width:39.146667pt;}
._e_c00400{width:41.120000pt;}
._12_c00400{width:46.826667pt;}
._28_c00400{width:48.000000pt;}
._25_c00400{width:54.400000pt;}
._30_c00400{width:70.560000pt;}
._f_c00400{width:79.626667pt;}
._2f_c00400{width:82.293333pt;}
._2d_c00400{width:118.773333pt;}
._14_c00400{width:151.413333pt;}
._26_c00400{width:157.066667pt;}
._33_c00400{width:181.738667pt;}
.fs1_c00400{font-size:40.000000pt;}
.fs5_c00400{font-size:42.666667pt;}
.fs0_c00400{font-size:53.333333pt;}
.fs4_c00400{font-size:56.000000pt;}
.fs2_c00400{font-size:61.333333pt;}
.fs3_c00400{font-size:72.000000pt;}
.y0_c00400{bottom:0.000000pt;}
.y53_c00400{bottom:2.760000pt;}
.y52_c00400{bottom:6.425219pt;}
.y51_c00400{bottom:30.413333pt;}
.y50_c00400{bottom:46.280000pt;}
.y29_c00400{bottom:46.546667pt;}
.y28_c00400{bottom:62.813333pt;}
.y4f_c00400{bottom:79.213333pt;}
.y27_c00400{bottom:79.613333pt;}
.y4e_c00400{bottom:94.813333pt;}
.y26_c00400{bottom:95.480000pt;}
.y4d_c00400{bottom:110.680000pt;}
.y25_c00400{bottom:111.080000pt;}
.y4c_c00400{bottom:126.946667pt;}
.y24_c00400{bottom:127.480000pt;}
.y4b_c00400{bottom:143.080000pt;}
.y23_c00400{bottom:143.480000pt;}
.y4a_c00400{bottom:159.080000pt;}
.y22_c00400{bottom:159.613333pt;}
.y49_c00400{bottom:175.213333pt;}
.y21_c00400{bottom:175.880000pt;}
.y48_c00400{bottom:191.213333pt;}
.y20_c00400{bottom:192.013333pt;}
.y47_c00400{bottom:206.813333pt;}
.y1f_c00400{bottom:207.880000pt;}
.y46_c00400{bottom:222.946667pt;}
.y1e_c00400{bottom:223.480000pt;}
.y45_c00400{bottom:238.813333pt;}
.y1d_c00400{bottom:239.746667pt;}
.y44_c00400{bottom:255.346667pt;}
.y1c_c00400{bottom:256.280000pt;}
.y43_c00400{bottom:270.946667pt;}
.y1b_c00400{bottom:271.480000pt;}
.y1a_c00400{bottom:287.213333pt;}
.y42_c00400{bottom:303.080000pt;}
.y19_c00400{bottom:303.480000pt;}
.y41_c00400{bottom:318.680000pt;}
.y18_c00400{bottom:319.480000pt;}
.y40_c00400{bottom:334.280000pt;}
.y17_c00400{bottom:335.480000pt;}
.y3f_c00400{bottom:350.146667pt;}
.y16_c00400{bottom:351.346667pt;}
.y3e_c00400{bottom:366.680000pt;}
.y15_c00400{bottom:367.213333pt;}
.y14_c00400{bottom:382.013333pt;}
.y3d_c00400{bottom:382.813333pt;}
.y3c_c00400{bottom:397.613333pt;}
.y13_c00400{bottom:399.080000pt;}
.y3b_c00400{bottom:414.280000pt;}
.y12_c00400{bottom:414.946667pt;}
.y3a_c00400{bottom:430.546667pt;}
.y11_c00400{bottom:431.080000pt;}
.y39_c00400{bottom:446.146667pt;}
.y10_c00400{bottom:446.680000pt;}
.y38_c00400{bottom:462.013333pt;}
.yf_c00400{bottom:462.280000pt;}
.ye_c00400{bottom:477.880000pt;}
.y37_c00400{bottom:478.013333pt;}
.y36_c00400{bottom:493.613333pt;}
.yd_c00400{bottom:493.880000pt;}
.y35_c00400{bottom:510.013333pt;}
.yc_c00400{bottom:510.280000pt;}
.y34_c00400{bottom:525.613333pt;}
.yb_c00400{bottom:526.280000pt;}
.y33_c00400{bottom:541.880000pt;}
.ya_c00400{bottom:542.146667pt;}
.y32_c00400{bottom:557.746667pt;}
.y9_c00400{bottom:558.013333pt;}
.y8_c00400{bottom:573.346667pt;}
.y31_c00400{bottom:573.880000pt;}
.y7_c00400{bottom:589.480000pt;}
.y30_c00400{bottom:589.880000pt;}
.y6_c00400{bottom:605.213333pt;}
.y2f_c00400{bottom:606.280000pt;}
.y5_c00400{bottom:621.080000pt;}
.y2e_c00400{bottom:622.013333pt;}
.y4_c00400{bottom:637.213333pt;}
.y2d_c00400{bottom:637.613333pt;}
.y3_c00400{bottom:652.813333pt;}
.y2c_c00400{bottom:653.746667pt;}
.y2_c00400{bottom:668.813333pt;}
.y2b_c00400{bottom:669.880000pt;}
.y1_c00400{bottom:684.946667pt;}
.y2a_c00400{bottom:686.146667pt;}
.h7_c00400{height:11.733399pt;}
.h8_c00400{height:38.937500pt;}
.h2_c00400{height:55.893333pt;}
.h4_c00400{height:56.906667pt;}
.h6_c00400{height:58.688000pt;}
.h3_c00400{height:64.277333pt;}
.h5_c00400{height:76.824000pt;}
.h1_c00400{height:750.666667pt;}
.h0_c00400{height:750.733333pt;}
.w1_c00400{width:93.222667pt;}
.w0_c00400{width:522.000000pt;}
.x0_c00400{left:0.000000pt;}
.x4_c00400{left:18.533333pt;}
.x5_c00400{left:29.600000pt;}
.x8_c00400{left:59.600000pt;}
.x3_c00400{left:71.466667pt;}
.x7_c00400{left:73.200000pt;}
.x6_c00400{left:74.133333pt;}
.x2_c00400{left:75.066667pt;}
.x1_c00400{left:76.000000pt;}
.x11_c00400{left:218.168213pt;}
.xf_c00400{left:264.533333pt;}
.xb_c00400{left:265.466667pt;}
.xe_c00400{left:266.400000pt;}
.xc_c00400{left:267.333333pt;}
.xa_c00400{left:268.533333pt;}
.x9_c00400{left:269.600000pt;}
.xd_c00400{left:280.800000pt;}
.x10_c00400{left:354.266667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_1c9c7e2f026c2c4971edb069.woff2')format("woff");}.ff1_c00401{font-family:ff1_c00401;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00401;src:url('chunks/assets/font_67ffe5969a7c271e7b17a708.woff2')format("woff");}.ff2_c00401{font-family:ff2_c00401;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00401;src:url('chunks/assets/font_41f50adc115a584f6dd3a369.woff2')format("woff");}.ff3_c00401{font-family:ff3_c00401;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00401;src:url('chunks/assets/font_25e8429fb26e9f263adf4957.woff2')format("woff");}.ff4_c00401{font-family:ff4_c00401;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00401;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff5_c00401{font-family:ff5_c00401;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00401;src:url('chunks/assets/font_c36140fa57e10a55da07fa03.woff2')format("woff");}.ff6_c00401{font-family:ff6_c00401;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00401;src:url('chunks/assets/font_f18ca7bfe29ed677b1fed717.woff2')format("woff");}.ff7_c00401{font-family:ff7_c00401;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00401;src:url('chunks/assets/font_0ce391de997f24f9f9dd37f4.woff2')format("woff");}.ff8_c00401{font-family:ff8_c00401;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00401;src:url('chunks/assets/font_9297e531d1d4b4eabe25e8ff.woff2')format("woff");}.ff9_c00401{font-family:ff9_c00401;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00401;src:url('chunks/assets/font_567697dc4c1fb2e9d909ead0.woff2')format("woff");}.ffa_c00401{font-family:ffa_c00401;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00401;src:url('chunks/assets/font_6c63ef2f2e089b9246cebbf6.woff2')format("woff");}.ffb_c00401{font-family:ffb_c00401;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc_c00401;src:url('chunks/assets/font_9d7acf7df6072ff9f49d8072.woff2')format("woff");}.ffc_c00401{font-family:ffc_c00401;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd_c00401;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ffd_c00401{font-family:ffd_c00401;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00401{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00401{vertical-align:0.000000px;}
.ls8_c00401{letter-spacing:0.000000px;}
.ls5_c00401{letter-spacing:2.280000px;}
.ls4_c00401{letter-spacing:3.000000px;}
.ls6_c00401{letter-spacing:6.000000px;}
.ls3_c00401{letter-spacing:11.400000px;}
.ls9_c00401{letter-spacing:12.000000px;}
.ls1_c00401{letter-spacing:12.723000px;}
.ls0_c00401{letter-spacing:16.200000px;}
.ls2_c00401{letter-spacing:18.300000px;}
.ls7_c00401{letter-spacing:24.420000px;}
.sc__c00401{text-shadow:none;}
.sc0_c00401{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00401{-webkit-text-stroke:0px transparent;}
.sc0_c00401{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9_c00401{word-spacing:-39.780000px;}
.wsa_c00401{word-spacing:-32.424000px;}
.ws5_c00401{word-spacing:-26.160000px;}
.ws7_c00401{word-spacing:-20.340000px;}
.ws0_c00401{word-spacing:-18.060000px;}
.ws8_c00401{word-spacing:-17.250000px;}
.wsc_c00401{word-spacing:-17.160000px;}
.ws6_c00401{word-spacing:-16.440000px;}
.ws1_c00401{word-spacing:-15.576000px;}
.ws4_c00401{word-spacing:-14.160000px;}
.ws2_c00401{word-spacing:-12.291000px;}
.ws3_c00401{word-spacing:-0.040800px;}
.wsd_c00401{word-spacing:0.000000px;}
.wsb_c00401{word-spacing:1.200000px;}
._13_c00401{margin-left:-17.085000px;}
._f_c00401{margin-left:-15.939000px;}
._16_c00401{margin-left:-14.166000px;}
._10_c00401{margin-left:-13.071000px;}
._15_c00401{margin-left:-11.298000px;}
._8_c00401{margin-left:-9.840000px;}
._6_c00401{margin-left:-8.160000px;}
._12_c00401{margin-left:-6.666000px;}
._11_c00401{margin-left:-4.695000px;}
._4_c00401{margin-left:-3.240000px;}
._3_c00401{margin-left:-2.160000px;}
._c_c00401{margin-left:-1.131000px;}
._5_c00401{width:1.740000px;}
._a_c00401{width:2.982000px;}
._0_c00401{width:4.260000px;}
._2_c00401{width:5.880000px;}
._9_c00401{width:7.308000px;}
._28_c00401{width:8.466000px;}
._b_c00401{width:9.474000px;}
._e_c00401{width:10.599000px;}
._1d_c00401{width:12.447000px;}
._1e_c00401{width:13.530000px;}
._2c_c00401{width:14.670000px;}
._1b_c00401{width:16.152000px;}
._24_c00401{width:17.280000px;}
._1_c00401{width:18.660000px;}
._19_c00401{width:20.610000px;}
._35_c00401{width:22.326000px;}
._d_c00401{width:24.339000px;}
._25_c00401{width:25.620000px;}
._18_c00401{width:27.231000px;}
._2e_c00401{width:28.296000px;}
._20_c00401{width:31.713000px;}
._2f_c00401{width:34.578000px;}
._31_c00401{width:35.580000px;}
._30_c00401{width:37.533000px;}
._26_c00401{width:38.760000px;}
._17_c00401{width:41.640000px;}
._36_c00401{width:44.262000px;}
._37_c00401{width:45.576000px;}
._38_c00401{width:51.027000px;}
._32_c00401{width:52.893000px;}
._33_c00401{width:55.305000px;}
._7_c00401{width:62.040000px;}
._34_c00401{width:64.836000px;}
._23_c00401{width:70.944000px;}
._2b_c00401{width:76.905000px;}
._2a_c00401{width:77.976000px;}
._22_c00401{width:79.971000px;}
._27_c00401{width:81.243000px;}
._1f_c00401{width:88.017000px;}
._1a_c00401{width:96.864000px;}
._21_c00401{width:103.413000px;}
._1c_c00401{width:129.006000px;}
._14_c00401{width:208.320000px;}
._29_c00401{width:255.084000px;}
._2d_c00401{width:258.720000px;}
.fc2_c00401{color:transparent;}
.fc1_c00401{color:rgb(128,128,128);}
.fc0_c00401{color:rgb(0,0,0);}
.fs5_c00401{font-size:40.800000px;}
.fs6_c00401{font-size:45.000000px;}
.fs9_c00401{font-size:48.000000px;}
.fs2_c00401{font-size:51.000000px;}
.fs7_c00401{font-size:54.000000px;}
.fs1_c00401{font-size:57.000000px;}
.fs0_c00401{font-size:60.000000px;}
.fs4_c00401{font-size:63.000000px;}
.fs3_c00401{font-size:66.000000px;}
.fs8_c00401{font-size:69.000000px;}
.fsa_c00401{font-size:72.000000px;}
.y0_c00401{bottom:0.000000px;}
.y41_c00401{bottom:3.105000px;}
.y40_c00401{bottom:7.228355px;}
.y3f_c00401{bottom:32.085000px;}
.y36_c00401{bottom:48.585000px;}
.y3e_c00401{bottom:49.935000px;}
.y35_c00401{bottom:67.485000px;}
.y3d_c00401{bottom:68.835000px;}
.y34_c00401{bottom:85.935000px;}
.y3c_c00401{bottom:86.685000px;}
.y33_c00401{bottom:103.635000px;}
.y3b_c00401{bottom:104.235000px;}
.y32_c00401{bottom:121.485000px;}
.y3a_c00401{bottom:123.135000px;}
.y31_c00401{bottom:139.635000px;}
.y39_c00401{bottom:141.285000px;}
.y30_c00401{bottom:157.485000px;}
.y38_c00401{bottom:158.835000px;}
.y2f_c00401{bottom:176.535000px;}
.y37_c00401{bottom:177.135000px;}
.y2e_c00401{bottom:194.385000px;}
.y2d_c00401{bottom:212.985000px;}
.y2c_c00401{bottom:231.135000px;}
.y2b_c00401{bottom:249.285000px;}
.y2a_c00401{bottom:267.285000px;}
.y29_c00401{bottom:284.385000px;}
.y28_c00401{bottom:302.685000px;}
.y27_c00401{bottom:320.535000px;}
.y20_c00401{bottom:338.835000px;}
.y1f_c00401{bottom:356.685000px;}
.y26_c00401{bottom:357.285000px;}
.y1e_c00401{bottom:374.985000px;}
.y25_c00401{bottom:375.285000px;}
.y1d_c00401{bottom:392.085000px;}
.y24_c00401{bottom:393.435000px;}
.y1c_c00401{bottom:410.085000px;}
.y23_c00401{bottom:411.285000px;}
.y1b_c00401{bottom:428.535000px;}
.y22_c00401{bottom:428.835000px;}
.y1a_c00401{bottom:446.835000px;}
.y21_c00401{bottom:447.435000px;}
.y19_c00401{bottom:465.285000px;}
.y18_c00401{bottom:483.285000px;}
.y17_c00401{bottom:500.835000px;}
.y16_c00401{bottom:519.435000px;}
.y15_c00401{bottom:537.285000px;}
.y14_c00401{bottom:555.735000px;}
.y13_c00401{bottom:574.035000px;}
.y12_c00401{bottom:591.585000px;}
.y11_c00401{bottom:609.735000px;}
.y10_c00401{bottom:628.635000px;}
.yf_c00401{bottom:646.335000px;}
.ya_c00401{bottom:646.635000px;}
.y9_c00401{bottom:664.485000px;}
.ye_c00401{bottom:682.035000px;}
.y8_c00401{bottom:682.785000px;}
.yd_c00401{bottom:699.585000px;}
.y7_c00401{bottom:700.935000px;}
.yc_c00401{bottom:717.735000px;}
.y6_c00401{bottom:718.485000px;}
.y2_c00401{bottom:728.685000px;}
.yb_c00401{bottom:735.285000px;}
.y5_c00401{bottom:737.385000px;}
.y1_c00401{bottom:753.285000px;}
.y4_c00401{bottom:755.235000px;}
.y3_c00401{bottom:773.085000px;}
.ha_c00401{height:13.200074px;}
.hb_c00401{height:43.804688px;}
.h4_c00401{height:59.736000px;}
.h2_c00401{height:62.880000px;}
.h3_c00401{height:64.020000px;}
.h6_c00401{height:64.571777px;}
.h5_c00401{height:69.168000px;}
.h7_c00401{height:70.422000px;}
.h9_c00401{height:70.664062px;}
.h8_c00401{height:73.623000px;}
.h1_c00401{height:846.750000px;}
.h0_c00401{height:846.975000px;}
.w2_c00401{width:104.875500px;}
.w0_c00401{width:568.875000px;}
.w1_c00401{width:569.250000px;}
.x0_c00401{left:0.000000px;}
.x1_c00401{left:18.600000px;}
.x2_c00401{left:19.800000px;}
.xe_c00401{left:33.450000px;}
.xf_c00401{left:34.800000px;}
.x3_c00401{left:85.350000px;}
.x4_c00401{left:87.150000px;}
.x7_c00401{left:88.500000px;}
.x8_c00401{left:89.850000px;}
.xb_c00401{left:91.800000px;}
.xd_c00401{left:92.850000px;}
.xc_c00401{left:93.900000px;}
.x13_c00401{left:236.251740px;}
.x5_c00401{left:301.500000px;}
.x6_c00401{left:303.150000px;}
.x9_c00401{left:305.850000px;}
.xa_c00401{left:306.900000px;}
.x10_c00401{left:310.800000px;}
.x11_c00401{left:312.150000px;}
.x12_c00401{left:481.950000px;}
@media print{
.v0_c00401{vertical-align:0.000000pt;}
.ls8_c00401{letter-spacing:0.000000pt;}
.ls5_c00401{letter-spacing:2.026667pt;}
.ls4_c00401{letter-spacing:2.666667pt;}
.ls6_c00401{letter-spacing:5.333333pt;}
.ls3_c00401{letter-spacing:10.133333pt;}
.ls9_c00401{letter-spacing:10.666667pt;}
.ls1_c00401{letter-spacing:11.309333pt;}
.ls0_c00401{letter-spacing:14.400000pt;}
.ls2_c00401{letter-spacing:16.266667pt;}
.ls7_c00401{letter-spacing:21.706667pt;}
.ws9_c00401{word-spacing:-35.360000pt;}
.wsa_c00401{word-spacing:-28.821333pt;}
.ws5_c00401{word-spacing:-23.253333pt;}
.ws7_c00401{word-spacing:-18.080000pt;}
.ws0_c00401{word-spacing:-16.053333pt;}
.ws8_c00401{word-spacing:-15.333333pt;}
.wsc_c00401{word-spacing:-15.253333pt;}
.ws6_c00401{word-spacing:-14.613333pt;}
.ws1_c00401{word-spacing:-13.845333pt;}
.ws4_c00401{word-spacing:-12.586667pt;}
.ws2_c00401{word-spacing:-10.925333pt;}
.ws3_c00401{word-spacing:-0.036267pt;}
.wsd_c00401{word-spacing:0.000000pt;}
.wsb_c00401{word-spacing:1.066667pt;}
._13_c00401{margin-left:-15.186667pt;}
._f_c00401{margin-left:-14.168000pt;}
._16_c00401{margin-left:-12.592000pt;}
._10_c00401{margin-left:-11.618667pt;}
._15_c00401{margin-left:-10.042667pt;}
._8_c00401{margin-left:-8.746667pt;}
._6_c00401{margin-left:-7.253333pt;}
._12_c00401{margin-left:-5.925333pt;}
._11_c00401{margin-left:-4.173333pt;}
._4_c00401{margin-left:-2.880000pt;}
._3_c00401{margin-left:-1.920000pt;}
._c_c00401{margin-left:-1.005333pt;}
._5_c00401{width:1.546667pt;}
._a_c00401{width:2.650667pt;}
._0_c00401{width:3.786667pt;}
._2_c00401{width:5.226667pt;}
._9_c00401{width:6.496000pt;}
._28_c00401{width:7.525333pt;}
._b_c00401{width:8.421333pt;}
._e_c00401{width:9.421333pt;}
._1d_c00401{width:11.064000pt;}
._1e_c00401{width:12.026667pt;}
._2c_c00401{width:13.040000pt;}
._1b_c00401{width:14.357333pt;}
._24_c00401{width:15.360000pt;}
._1_c00401{width:16.586667pt;}
._19_c00401{width:18.320000pt;}
._35_c00401{width:19.845333pt;}
._d_c00401{width:21.634667pt;}
._25_c00401{width:22.773333pt;}
._18_c00401{width:24.205333pt;}
._2e_c00401{width:25.152000pt;}
._20_c00401{width:28.189333pt;}
._2f_c00401{width:30.736000pt;}
._31_c00401{width:31.626667pt;}
._30_c00401{width:33.362667pt;}
._26_c00401{width:34.453333pt;}
._17_c00401{width:37.013333pt;}
._36_c00401{width:39.344000pt;}
._37_c00401{width:40.512000pt;}
._38_c00401{width:45.357333pt;}
._32_c00401{width:47.016000pt;}
._33_c00401{width:49.160000pt;}
._7_c00401{width:55.146667pt;}
._34_c00401{width:57.632000pt;}
._23_c00401{width:63.061333pt;}
._2b_c00401{width:68.360000pt;}
._2a_c00401{width:69.312000pt;}
._22_c00401{width:71.085333pt;}
._27_c00401{width:72.216000pt;}
._1f_c00401{width:78.237333pt;}
._1a_c00401{width:86.101333pt;}
._21_c00401{width:91.922667pt;}
._1c_c00401{width:114.672000pt;}
._14_c00401{width:185.173333pt;}
._29_c00401{width:226.741333pt;}
._2d_c00401{width:229.973333pt;}
.fs5_c00401{font-size:36.266667pt;}
.fs6_c00401{font-size:40.000000pt;}
.fs9_c00401{font-size:42.666667pt;}
.fs2_c00401{font-size:45.333333pt;}
.fs7_c00401{font-size:48.000000pt;}
.fs1_c00401{font-size:50.666667pt;}
.fs0_c00401{font-size:53.333333pt;}
.fs4_c00401{font-size:56.000000pt;}
.fs3_c00401{font-size:58.666667pt;}
.fs8_c00401{font-size:61.333333pt;}
.fsa_c00401{font-size:64.000000pt;}
.y0_c00401{bottom:0.000000pt;}
.y41_c00401{bottom:2.760000pt;}
.y40_c00401{bottom:6.425204pt;}
.y3f_c00401{bottom:28.520000pt;}
.y36_c00401{bottom:43.186667pt;}
.y3e_c00401{bottom:44.386667pt;}
.y35_c00401{bottom:59.986667pt;}
.y3d_c00401{bottom:61.186667pt;}
.y34_c00401{bottom:76.386667pt;}
.y3c_c00401{bottom:77.053333pt;}
.y33_c00401{bottom:92.120000pt;}
.y3b_c00401{bottom:92.653333pt;}
.y32_c00401{bottom:107.986667pt;}
.y3a_c00401{bottom:109.453333pt;}
.y31_c00401{bottom:124.120000pt;}
.y39_c00401{bottom:125.586667pt;}
.y30_c00401{bottom:139.986667pt;}
.y38_c00401{bottom:141.186667pt;}
.y2f_c00401{bottom:156.920000pt;}
.y37_c00401{bottom:157.453333pt;}
.y2e_c00401{bottom:172.786667pt;}
.y2d_c00401{bottom:189.320000pt;}
.y2c_c00401{bottom:205.453333pt;}
.y2b_c00401{bottom:221.586667pt;}
.y2a_c00401{bottom:237.586667pt;}
.y29_c00401{bottom:252.786667pt;}
.y28_c00401{bottom:269.053333pt;}
.y27_c00401{bottom:284.920000pt;}
.y20_c00401{bottom:301.186667pt;}
.y1f_c00401{bottom:317.053333pt;}
.y26_c00401{bottom:317.586667pt;}
.y1e_c00401{bottom:333.320000pt;}
.y25_c00401{bottom:333.586667pt;}
.y1d_c00401{bottom:348.520000pt;}
.y24_c00401{bottom:349.720000pt;}
.y1c_c00401{bottom:364.520000pt;}
.y23_c00401{bottom:365.586667pt;}
.y1b_c00401{bottom:380.920000pt;}
.y22_c00401{bottom:381.186667pt;}
.y1a_c00401{bottom:397.186667pt;}
.y21_c00401{bottom:397.720000pt;}
.y19_c00401{bottom:413.586667pt;}
.y18_c00401{bottom:429.586667pt;}
.y17_c00401{bottom:445.186667pt;}
.y16_c00401{bottom:461.720000pt;}
.y15_c00401{bottom:477.586667pt;}
.y14_c00401{bottom:493.986667pt;}
.y13_c00401{bottom:510.253333pt;}
.y12_c00401{bottom:525.853333pt;}
.y11_c00401{bottom:541.986667pt;}
.y10_c00401{bottom:558.786667pt;}
.yf_c00401{bottom:574.520000pt;}
.ya_c00401{bottom:574.786667pt;}
.y9_c00401{bottom:590.653333pt;}
.ye_c00401{bottom:606.253333pt;}
.y8_c00401{bottom:606.920000pt;}
.yd_c00401{bottom:621.853333pt;}
.y7_c00401{bottom:623.053333pt;}
.yc_c00401{bottom:637.986667pt;}
.y6_c00401{bottom:638.653333pt;}
.y2_c00401{bottom:647.720000pt;}
.yb_c00401{bottom:653.586667pt;}
.y5_c00401{bottom:655.453333pt;}
.y1_c00401{bottom:669.586667pt;}
.y4_c00401{bottom:671.320000pt;}
.y3_c00401{bottom:687.186667pt;}
.ha_c00401{height:11.733399pt;}
.hb_c00401{height:38.937500pt;}
.h4_c00401{height:53.098667pt;}
.h2_c00401{height:55.893333pt;}
.h3_c00401{height:56.906667pt;}
.h6_c00401{height:57.397135pt;}
.h5_c00401{height:61.482667pt;}
.h7_c00401{height:62.597333pt;}
.h9_c00401{height:62.812500pt;}
.h8_c00401{height:65.442667pt;}
.h1_c00401{height:752.666667pt;}
.h0_c00401{height:752.866667pt;}
.w2_c00401{width:93.222667pt;}
.w0_c00401{width:505.666667pt;}
.w1_c00401{width:506.000000pt;}
.x0_c00401{left:0.000000pt;}
.x1_c00401{left:16.533333pt;}
.x2_c00401{left:17.600000pt;}
.xe_c00401{left:29.733333pt;}
.xf_c00401{left:30.933333pt;}
.x3_c00401{left:75.866667pt;}
.x4_c00401{left:77.466667pt;}
.x7_c00401{left:78.666667pt;}
.x8_c00401{left:79.866667pt;}
.xb_c00401{left:81.600000pt;}
.xd_c00401{left:82.533333pt;}
.xc_c00401{left:83.466667pt;}
.x13_c00401{left:210.001546pt;}
.x5_c00401{left:268.000000pt;}
.x6_c00401{left:269.466667pt;}
.x9_c00401{left:271.866667pt;}
.xa_c00401{left:272.800000pt;}
.x10_c00401{left:276.266667pt;}
.x11_c00401{left:277.466667pt;}
.x12_c00401{left:428.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3afb19f4e1a3938619762d33.woff2')format("woff");}.ff1_c00402{font-family:ff1_c00402;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00402;src:url('chunks/assets/font_8a7f39eba907d63eccf4e748.woff2')format("woff");}.ff2_c00402{font-family:ff2_c00402;line-height:1.437000;font-style:normal;font-weight:normal;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_a614baccd1a2e8943d699f3d.woff2')format("woff");}.ff3_c00402{font-family:ff3_c00402;line-height:1.437000;font-style:normal;font-weight:normal;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_e8586f8d4901130aff893d17.woff2')format("woff");}.ff4_c00402{font-family:ff4_c00402;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00402;src:url('chunks/assets/font_fb1639c49ff41d7ba5f83665.woff2')format("woff");}.ff5_c00402{font-family:ff5_c00402;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00402;src:url('chunks/assets/font_3a29468b7cd139b14469e60c.woff2')format("woff");}.ff6_c00402{font-family:ff6_c00402;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00402;src:url('chunks/assets/font_b997d2f6d449d047b3aa9833.woff2')format("woff");}.ff7_c00402{font-family:ff7_c00402;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00402;src:url('chunks/assets/font_03dbca31b6a3b789c0f32a9e.woff2')format("woff");}.ff8_c00402{font-family:ff8_c00402;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00402;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff9_c00402{font-family:ff9_c00402;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00402{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00402{vertical-align:0.000000px;}
.ls4_c00402{letter-spacing:-9.000000px;}
.ls5_c00402{letter-spacing:-6.000000px;}
.ls3_c00402{letter-spacing:0.000000px;}
.ls0_c00402{letter-spacing:3.000000px;}
.ls2_c00402{letter-spacing:4.377600px;}
.ls6_c00402{letter-spacing:6.000000px;}
.ls1_c00402{letter-spacing:10.881000px;}
.sc__c00402{text-shadow:none;}
.sc0_c00402{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00402{-webkit-text-stroke:0px transparent;}
.sc0_c00402{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00402{word-spacing:-21.672000px;}
.ws6_c00402{word-spacing:-20.478000px;}
.ws0_c00402{word-spacing:-14.427000px;}
.ws5_c00402{word-spacing:-14.160000px;}
.ws4_c00402{word-spacing:-13.452000px;}
.ws2_c00402{word-spacing:-12.672000px;}
.ws3_c00402{word-spacing:-9.813000px;}
.ws7_c00402{word-spacing:0.000000px;}
._8_c00402{margin-left:-22.176000px;}
._44_c00402{margin-left:-20.670000px;}
._37_c00402{margin-left:-19.446000px;}
._2e_c00402{margin-left:-18.369000px;}
._25_c00402{margin-left:-15.729000px;}
._42_c00402{margin-left:-14.385000px;}
._3f_c00402{margin-left:-12.510000px;}
._24_c00402{margin-left:-11.496000px;}
._1f_c00402{margin-left:-10.152000px;}
._21_c00402{margin-left:-8.847000px;}
._d_c00402{margin-left:-7.434000px;}
._e_c00402{margin-left:-6.147000px;}
._20_c00402{margin-left:-5.040000px;}
._c_c00402{margin-left:-3.906000px;}
._10_c00402{margin-left:-2.835000px;}
._15_c00402{margin-left:-1.107000px;}
._0_c00402{width:1.440000px;}
._a_c00402{width:3.150000px;}
._6_c00402{width:4.536000px;}
._3_c00402{width:6.408000px;}
._18_c00402{width:7.458000px;}
._29_c00402{width:8.550000px;}
._5_c00402{width:10.080000px;}
._23_c00402{width:11.097000px;}
._2_c00402{width:13.392000px;}
._33_c00402{width:14.640000px;}
._4_c00402{width:16.056000px;}
._39_c00402{width:17.724000px;}
._f_c00402{width:20.097000px;}
._1_c00402{width:22.032000px;}
._11_c00402{width:23.310000px;}
._1a_c00402{width:24.399000px;}
._2b_c00402{width:26.307000px;}
._3e_c00402{width:27.321000px;}
._1d_c00402{width:28.917000px;}
._48_c00402{width:31.155000px;}
._34_c00402{width:36.720000px;}
._19_c00402{width:40.509000px;}
._40_c00402{width:42.507000px;}
._b_c00402{width:48.159000px;}
._1c_c00402{width:51.912000px;}
._2c_c00402{width:69.399000px;}
._35_c00402{width:74.037000px;}
._22_c00402{width:77.574000px;}
._30_c00402{width:86.175000px;}
._2d_c00402{width:88.011000px;}
._36_c00402{width:89.292000px;}
._31_c00402{width:92.406000px;}
._32_c00402{width:94.029000px;}
._3b_c00402{width:95.820000px;}
._26_c00402{width:97.107000px;}
._1e_c00402{width:99.513000px;}
._17_c00402{width:100.596000px;}
._38_c00402{width:101.958000px;}
._3d_c00402{width:103.494000px;}
._3a_c00402{width:108.771000px;}
._3c_c00402{width:111.411000px;}
._2f_c00402{width:112.446000px;}
._14_c00402{width:113.505000px;}
._45_c00402{width:173.907000px;}
._9_c00402{width:191.736000px;}
._4a_c00402{width:212.010000px;}
._43_c00402{width:215.955000px;}
._27_c00402{width:224.616000px;}
._41_c00402{width:228.744000px;}
._7_c00402{width:256.464000px;}
._12_c00402{width:306.384000px;}
._28_c00402{width:329.604000px;}
._46_c00402{width:333.063000px;}
._47_c00402{width:348.240000px;}
._49_c00402{width:443.079000px;}
._16_c00402{width:496.269000px;}
._13_c00402{width:497.637000px;}
._2a_c00402{width:526.656000px;}
._1b_c00402{width:723.771000px;}
.fc2_c00402{color:transparent;}
.fc1_c00402{color:rgb(128,128,128);}
.fc0_c00402{color:rgb(0,0,0);}
.fs5_c00402{font-size:48.000000px;}
.fs2_c00402{font-size:50.400000px;}
.fs4_c00402{font-size:57.000000px;}
.fs3_c00402{font-size:60.000000px;}
.fs1_c00402{font-size:63.000000px;}
.fs0_c00402{font-size:72.000000px;}
.y0_c00402{bottom:0.000000px;}
.y2d_c00402{bottom:3.105000px;}
.y2c_c00402{bottom:7.228371px;}
.y2b_c00402{bottom:39.615000px;}
.y2a_c00402{bottom:58.065000px;}
.y29_c00402{bottom:76.365000px;}
.y28_c00402{bottom:94.215000px;}
.y27_c00402{bottom:112.065000px;}
.y26_c00402{bottom:130.965000px;}
.y25_c00402{bottom:147.465000px;}
.y24_c00402{bottom:166.365000px;}
.y23_c00402{bottom:183.915000px;}
.y22_c00402{bottom:202.515000px;}
.y21_c00402{bottom:220.065000px;}
.y20_c00402{bottom:238.365000px;}
.y1f_c00402{bottom:256.815000px;}
.y1e_c00402{bottom:274.515000px;}
.y1d_c00402{bottom:292.665000px;}
.y1c_c00402{bottom:310.515000px;}
.y1b_c00402{bottom:328.365000px;}
.y1a_c00402{bottom:346.665000px;}
.y19_c00402{bottom:364.215000px;}
.y18_c00402{bottom:382.365000px;}
.y17_c00402{bottom:400.365000px;}
.y16_c00402{bottom:418.215000px;}
.y15_c00402{bottom:436.365000px;}
.y14_c00402{bottom:454.665000px;}
.y13_c00402{bottom:471.915000px;}
.y12_c00402{bottom:490.065000px;}
.y11_c00402{bottom:508.365000px;}
.y10_c00402{bottom:525.915000px;}
.yf_c00402{bottom:543.765000px;}
.ye_c00402{bottom:561.615000px;}
.yd_c00402{bottom:579.915000px;}
.yc_c00402{bottom:598.065000px;}
.yb_c00402{bottom:615.615000px;}
.ya_c00402{bottom:634.215000px;}
.y9_c00402{bottom:652.065000px;}
.y8_c00402{bottom:670.065000px;}
.y7_c00402{bottom:688.215000px;}
.y6_c00402{bottom:706.515000px;}
.y5_c00402{bottom:724.365000px;}
.y4_c00402{bottom:741.465000px;}
.y3_c00402{bottom:759.765000px;}
.y2_c00402{bottom:778.065000px;}
.y1_c00402{bottom:798.165000px;}
.h8_c00402{height:13.200074px;}
.h9_c00402{height:43.804688px;}
.h6_c00402{height:59.736000px;}
.h5_c00402{height:62.880000px;}
.h3_c00402{height:66.024000px;}
.h7_c00402{height:66.713379px;}
.h2_c00402{height:70.664062px;}
.h4_c00402{height:78.048000px;}
.h1_c00402{height:844.500000px;}
.h0_c00402{height:844.575000px;}
.w1_c00402{width:104.875500px;}
.w0_c00402{width:587.250000px;}
.x0_c00402{left:0.000000px;}
.x2_c00402{left:14.850000px;}
.xc_c00402{left:70.800000px;}
.xb_c00402{left:72.450000px;}
.x8_c00402{left:73.500000px;}
.x4_c00402{left:75.150000px;}
.x5_c00402{left:76.350000px;}
.x6_c00402{left:77.850000px;}
.xd_c00402{left:85.050000px;}
.x7_c00402{left:87.300000px;}
.x3_c00402{left:89.100000px;}
.xa_c00402{left:96.150000px;}
.x9_c00402{left:99.900000px;}
.xe_c00402{left:101.850000px;}
.xf_c00402{left:127.200000px;}
.x10_c00402{left:138.300000px;}
.x11_c00402{left:160.350000px;}
.x1_c00402{left:210.150000px;}
.x14_c00402{left:245.439240px;}
.x12_c00402{left:294.900000px;}
.x13_c00402{left:388.050000px;}
@media print{
.v0_c00402{vertical-align:0.000000pt;}
.ls4_c00402{letter-spacing:-8.000000pt;}
.ls5_c00402{letter-spacing:-5.333333pt;}
.ls3_c00402{letter-spacing:0.000000pt;}
.ls0_c00402{letter-spacing:2.666667pt;}
.ls2_c00402{letter-spacing:3.891200pt;}
.ls6_c00402{letter-spacing:5.333333pt;}
.ls1_c00402{letter-spacing:9.672000pt;}
.ws1_c00402{word-spacing:-19.264000pt;}
.ws6_c00402{word-spacing:-18.202667pt;}
.ws0_c00402{word-spacing:-12.824000pt;}
.ws5_c00402{word-spacing:-12.586667pt;}
.ws4_c00402{word-spacing:-11.957333pt;}
.ws2_c00402{word-spacing:-11.264000pt;}
.ws3_c00402{word-spacing:-8.722667pt;}
.ws7_c00402{word-spacing:0.000000pt;}
._8_c00402{margin-left:-19.712000pt;}
._44_c00402{margin-left:-18.373333pt;}
._37_c00402{margin-left:-17.285333pt;}
._2e_c00402{margin-left:-16.328000pt;}
._25_c00402{margin-left:-13.981333pt;}
._42_c00402{margin-left:-12.786667pt;}
._3f_c00402{margin-left:-11.120000pt;}
._24_c00402{margin-left:-10.218667pt;}
._1f_c00402{margin-left:-9.024000pt;}
._21_c00402{margin-left:-7.864000pt;}
._d_c00402{margin-left:-6.608000pt;}
._e_c00402{margin-left:-5.464000pt;}
._20_c00402{margin-left:-4.480000pt;}
._c_c00402{margin-left:-3.472000pt;}
._10_c00402{margin-left:-2.520000pt;}
._15_c00402{margin-left:-0.984000pt;}
._0_c00402{width:1.280000pt;}
._a_c00402{width:2.800000pt;}
._6_c00402{width:4.032000pt;}
._3_c00402{width:5.696000pt;}
._18_c00402{width:6.629333pt;}
._29_c00402{width:7.600000pt;}
._5_c00402{width:8.960000pt;}
._23_c00402{width:9.864000pt;}
._2_c00402{width:11.904000pt;}
._33_c00402{width:13.013333pt;}
._4_c00402{width:14.272000pt;}
._39_c00402{width:15.754667pt;}
._f_c00402{width:17.864000pt;}
._1_c00402{width:19.584000pt;}
._11_c00402{width:20.720000pt;}
._1a_c00402{width:21.688000pt;}
._2b_c00402{width:23.384000pt;}
._3e_c00402{width:24.285333pt;}
._1d_c00402{width:25.704000pt;}
._48_c00402{width:27.693333pt;}
._34_c00402{width:32.640000pt;}
._19_c00402{width:36.008000pt;}
._40_c00402{width:37.784000pt;}
._b_c00402{width:42.808000pt;}
._1c_c00402{width:46.144000pt;}
._2c_c00402{width:61.688000pt;}
._35_c00402{width:65.810667pt;}
._22_c00402{width:68.954667pt;}
._30_c00402{width:76.600000pt;}
._2d_c00402{width:78.232000pt;}
._36_c00402{width:79.370667pt;}
._31_c00402{width:82.138667pt;}
._32_c00402{width:83.581333pt;}
._3b_c00402{width:85.173333pt;}
._26_c00402{width:86.317333pt;}
._1e_c00402{width:88.456000pt;}
._17_c00402{width:89.418667pt;}
._38_c00402{width:90.629333pt;}
._3d_c00402{width:91.994667pt;}
._3a_c00402{width:96.685333pt;}
._3c_c00402{width:99.032000pt;}
._2f_c00402{width:99.952000pt;}
._14_c00402{width:100.893333pt;}
._45_c00402{width:154.584000pt;}
._9_c00402{width:170.432000pt;}
._4a_c00402{width:188.453333pt;}
._43_c00402{width:191.960000pt;}
._27_c00402{width:199.658667pt;}
._41_c00402{width:203.328000pt;}
._7_c00402{width:227.968000pt;}
._12_c00402{width:272.341333pt;}
._28_c00402{width:292.981333pt;}
._46_c00402{width:296.056000pt;}
._47_c00402{width:309.546667pt;}
._49_c00402{width:393.848000pt;}
._16_c00402{width:441.128000pt;}
._13_c00402{width:442.344000pt;}
._2a_c00402{width:468.138667pt;}
._1b_c00402{width:643.352000pt;}
.fs5_c00402{font-size:42.666667pt;}
.fs2_c00402{font-size:44.800000pt;}
.fs4_c00402{font-size:50.666667pt;}
.fs3_c00402{font-size:53.333333pt;}
.fs1_c00402{font-size:56.000000pt;}
.fs0_c00402{font-size:64.000000pt;}
.y0_c00402{bottom:0.000000pt;}
.y2d_c00402{bottom:2.760000pt;}
.y2c_c00402{bottom:6.425219pt;}
.y2b_c00402{bottom:35.213333pt;}
.y2a_c00402{bottom:51.613333pt;}
.y29_c00402{bottom:67.880000pt;}
.y28_c00402{bottom:83.746667pt;}
.y27_c00402{bottom:99.613333pt;}
.y26_c00402{bottom:116.413333pt;}
.y25_c00402{bottom:131.080000pt;}
.y24_c00402{bottom:147.880000pt;}
.y23_c00402{bottom:163.480000pt;}
.y22_c00402{bottom:180.013333pt;}
.y21_c00402{bottom:195.613333pt;}
.y20_c00402{bottom:211.880000pt;}
.y1f_c00402{bottom:228.280000pt;}
.y1e_c00402{bottom:244.013333pt;}
.y1d_c00402{bottom:260.146667pt;}
.y1c_c00402{bottom:276.013333pt;}
.y1b_c00402{bottom:291.880000pt;}
.y1a_c00402{bottom:308.146667pt;}
.y19_c00402{bottom:323.746667pt;}
.y18_c00402{bottom:339.880000pt;}
.y17_c00402{bottom:355.880000pt;}
.y16_c00402{bottom:371.746667pt;}
.y15_c00402{bottom:387.880000pt;}
.y14_c00402{bottom:404.146667pt;}
.y13_c00402{bottom:419.480000pt;}
.y12_c00402{bottom:435.613333pt;}
.y11_c00402{bottom:451.880000pt;}
.y10_c00402{bottom:467.480000pt;}
.yf_c00402{bottom:483.346667pt;}
.ye_c00402{bottom:499.213333pt;}
.yd_c00402{bottom:515.480000pt;}
.yc_c00402{bottom:531.613333pt;}
.yb_c00402{bottom:547.213333pt;}
.ya_c00402{bottom:563.746667pt;}
.y9_c00402{bottom:579.613333pt;}
.y8_c00402{bottom:595.613333pt;}
.y7_c00402{bottom:611.746667pt;}
.y6_c00402{bottom:628.013333pt;}
.y5_c00402{bottom:643.880000pt;}
.y4_c00402{bottom:659.080000pt;}
.y3_c00402{bottom:675.346667pt;}
.y2_c00402{bottom:691.613333pt;}
.y1_c00402{bottom:709.480000pt;}
.h8_c00402{height:11.733399pt;}
.h9_c00402{height:38.937500pt;}
.h6_c00402{height:53.098667pt;}
.h5_c00402{height:55.893333pt;}
.h3_c00402{height:58.688000pt;}
.h7_c00402{height:59.300781pt;}
.h2_c00402{height:62.812500pt;}
.h4_c00402{height:69.376000pt;}
.h1_c00402{height:750.666667pt;}
.h0_c00402{height:750.733333pt;}
.w1_c00402{width:93.222667pt;}
.w0_c00402{width:522.000000pt;}
.x0_c00402{left:0.000000pt;}
.x2_c00402{left:13.200000pt;}
.xc_c00402{left:62.933333pt;}
.xb_c00402{left:64.400000pt;}
.x8_c00402{left:65.333333pt;}
.x4_c00402{left:66.800000pt;}
.x5_c00402{left:67.866667pt;}
.x6_c00402{left:69.200000pt;}
.xd_c00402{left:75.600000pt;}
.x7_c00402{left:77.600000pt;}
.x3_c00402{left:79.200000pt;}
.xa_c00402{left:85.466667pt;}
.x9_c00402{left:88.800000pt;}
.xe_c00402{left:90.533333pt;}
.xf_c00402{left:113.066667pt;}
.x10_c00402{left:122.933333pt;}
.x11_c00402{left:142.533333pt;}
.x1_c00402{left:186.800000pt;}
.x14_c00402{left:218.168213pt;}
.x12_c00402{left:262.133333pt;}
.x13_c00402{left:344.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_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_14f1d81465bac96c634ebc2a.woff2')format("woff");}.ff1_c00403{font-family:ff1_c00403;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00403;src:url('chunks/assets/font_ea59772a336f2bd6e43ce89d.woff2')format("woff");}.ff2_c00403{font-family:ff2_c00403;line-height:1.437000;font-style:normal;font-weight:normal;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_af4a1e3f4c437b883112b5c4.woff2')format("woff");}.ff3_c00403{font-family:ff3_c00403;line-height:1.437000;font-style:normal;font-weight:normal;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_63965030e225538dc09346c7.woff2')format("woff");}.ff4_c00403{font-family:ff4_c00403;line-height:1.437000;font-style:normal;font-weight:normal;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_f0cb3ad597e9475a49af22cd.woff2')format("woff");}.ff5_c00403{font-family:ff5_c00403;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00403;src:url('chunks/assets/font_01d4af8d654d6f0a8b65b4fa.woff2')format("woff");}.ff6_c00403{font-family:ff6_c00403;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00403;src:url('chunks/assets/font_1913ff917feb0ffc0a5e0f7e.woff2')format("woff");}.ff7_c00403{font-family:ff7_c00403;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00403;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff8_c00403{font-family:ff8_c00403;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00403{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00403{vertical-align:0.000000px;}
.ls5_c00403{letter-spacing:0.000000px;}
.ls4_c00403{letter-spacing:2.280000px;}
.ls0_c00403{letter-spacing:3.000000px;}
.ls3_c00403{letter-spacing:4.080000px;}
.ls2_c00403{letter-spacing:6.000000px;}
.ls1_c00403{letter-spacing:9.000000px;}
.sc__c00403{text-shadow:none;}
.sc0_c00403{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00403{-webkit-text-stroke:0px transparent;}
.sc0_c00403{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00403{word-spacing:-47.859000px;}
.ws0_c00403{word-spacing:-35.295000px;}
.ws2_c00403{word-spacing:-23.868000px;}
.ws4_c00403{word-spacing:-20.340000px;}
.ws5_c00403{word-spacing:-18.060000px;}
.ws6_c00403{word-spacing:-17.160000px;}
.ws1_c00403{word-spacing:-14.160000px;}
.ws7_c00403{word-spacing:0.000000px;}
._2c_c00403{margin-left:-24.165000px;}
._2b_c00403{margin-left:-17.820000px;}
._2a_c00403{margin-left:-15.735000px;}
._24_c00403{margin-left:-14.025000px;}
._25_c00403{margin-left:-12.345000px;}
._1c_c00403{margin-left:-10.440000px;}
._12_c00403{margin-left:-8.580000px;}
._14_c00403{margin-left:-6.795000px;}
._10_c00403{margin-left:-5.040000px;}
._f_c00403{margin-left:-3.645000px;}
._13_c00403{margin-left:-2.415000px;}
._15_c00403{margin-left:-1.275000px;}
._0_c00403{width:1.305000px;}
._1_c00403{width:2.310000px;}
._e_c00403{width:3.540000px;}
._19_c00403{width:4.605000px;}
._1e_c00403{width:5.775000px;}
._11_c00403{width:7.200000px;}
._18_c00403{width:8.280000px;}
._17_c00403{width:9.300000px;}
._2f_c00403{width:10.350000px;}
._1b_c00403{width:11.370000px;}
._a_c00403{width:12.960000px;}
._d_c00403{width:14.460000px;}
._1f_c00403{width:15.900000px;}
._2d_c00403{width:17.085000px;}
._23_c00403{width:18.240000px;}
._5_c00403{width:19.620000px;}
._3_c00403{width:20.700000px;}
._c_c00403{width:22.140000px;}
._4_c00403{width:24.360000px;}
._28_c00403{width:25.530000px;}
._7_c00403{width:26.940000px;}
._8_c00403{width:28.680000px;}
._9_c00403{width:32.640000px;}
._b_c00403{width:34.440000px;}
._20_c00403{width:36.000000px;}
._2e_c00403{width:38.100000px;}
._29_c00403{width:39.360000px;}
._6_c00403{width:42.240000px;}
._22_c00403{width:43.455000px;}
._21_c00403{width:50.520000px;}
._16_c00403{width:78.780000px;}
._1a_c00403{width:126.570000px;}
._1d_c00403{width:165.735000px;}
._27_c00403{width:178.980000px;}
._2_c00403{width:197.040000px;}
._26_c00403{width:386.700000px;}
.fc2_c00403{color:transparent;}
.fc1_c00403{color:rgb(128,128,128);}
.fc0_c00403{color:rgb(0,0,0);}
.fs0_c00403{font-size:45.000000px;}
.fs5_c00403{font-size:48.000000px;}
.fs3_c00403{font-size:57.000000px;}
.fs1_c00403{font-size:60.000000px;}
.fs2_c00403{font-size:63.000000px;}
.fs4_c00403{font-size:147.000000px;}
.y0_c00403{bottom:0.000000px;}
.y5a_c00403{bottom:3.105000px;}
.y59_c00403{bottom:7.228355px;}
.y58_c00403{bottom:37.785000px;}
.y8_c00403{bottom:50.985000px;}
.y30_c00403{bottom:54.585000px;}
.y57_c00403{bottom:55.935000px;}
.y7_c00403{bottom:71.085000px;}
.y2f_c00403{bottom:72.585000px;}
.y56_c00403{bottom:74.235000px;}
.y2e_c00403{bottom:91.035000px;}
.y55_c00403{bottom:92.085000px;}
.y6_c00403{bottom:107.685000px;}
.y2d_c00403{bottom:109.935000px;}
.y54_c00403{bottom:110.235000px;}
.y2c_c00403{bottom:127.485000px;}
.y5_c00403{bottom:127.785000px;}
.y53_c00403{bottom:128.835000px;}
.y2b_c00403{bottom:145.485000px;}
.y52_c00403{bottom:146.685000px;}
.y2a_c00403{bottom:163.635000px;}
.y51_c00403{bottom:164.685000px;}
.y29_c00403{bottom:181.485000px;}
.y50_c00403{bottom:182.835000px;}
.y28_c00403{bottom:200.085000px;}
.y4f_c00403{bottom:201.435000px;}
.y27_c00403{bottom:218.235000px;}
.y4e_c00403{bottom:219.735000px;}
.y26_c00403{bottom:236.235000px;}
.y4d_c00403{bottom:237.885000px;}
.y25_c00403{bottom:254.835000px;}
.y4c_c00403{bottom:256.035000px;}
.y24_c00403{bottom:273.285000px;}
.y4b_c00403{bottom:274.035000px;}
.y23_c00403{bottom:290.835000px;}
.y4a_c00403{bottom:292.185000px;}
.y22_c00403{bottom:309.135000px;}
.y49_c00403{bottom:310.035000px;}
.y21_c00403{bottom:327.285000px;}
.y48_c00403{bottom:327.585000px;}
.y47_c00403{bottom:345.135000px;}
.y20_c00403{bottom:345.885000px;}
.y4_c00403{bottom:363.435000px;}
.y1f_c00403{bottom:363.735000px;}
.y3_c00403{bottom:381.285000px;}
.y46_c00403{bottom:381.585000px;}
.y1e_c00403{bottom:382.335000px;}
.y1d_c00403{bottom:399.885000px;}
.y45_c00403{bottom:400.185000px;}
.y44_c00403{bottom:418.035000px;}
.y1c_c00403{bottom:418.185000px;}
.y1b_c00403{bottom:436.185000px;}
.y43_c00403{bottom:436.335000px;}
.y42_c00403{bottom:453.885000px;}
.y1a_c00403{bottom:454.185000px;}
.y19_c00403{bottom:472.185000px;}
.y41_c00403{bottom:472.485000px;}
.y18_c00403{bottom:490.635000px;}
.y40_c00403{bottom:490.935000px;}
.y3f_c00403{bottom:508.935000px;}
.y17_c00403{bottom:509.835000px;}
.y16_c00403{bottom:526.785000px;}
.y3e_c00403{bottom:528.135000px;}
.y15_c00403{bottom:544.935000px;}
.y3d_c00403{bottom:545.535000px;}
.y14_c00403{bottom:561.885000px;}
.y3c_c00403{bottom:563.835000px;}
.y13_c00403{bottom:580.785000px;}
.y3b_c00403{bottom:582.135000px;}
.y12_c00403{bottom:598.935000px;}
.y3a_c00403{bottom:600.435000px;}
.y11_c00403{bottom:617.235000px;}
.y39_c00403{bottom:618.585000px;}
.y10_c00403{bottom:635.085000px;}
.y38_c00403{bottom:637.185000px;}
.yf_c00403{bottom:652.935000px;}
.y37_c00403{bottom:654.735000px;}
.ye_c00403{bottom:670.935000px;}
.y36_c00403{bottom:673.635000px;}
.yd_c00403{bottom:689.385000px;}
.y35_c00403{bottom:690.885000px;}
.yc_c00403{bottom:707.385000px;}
.y34_c00403{bottom:709.335000px;}
.yb_c00403{bottom:725.535000px;}
.y33_c00403{bottom:727.635000px;}
.ya_c00403{bottom:743.535000px;}
.y32_c00403{bottom:745.185000px;}
.y9_c00403{bottom:762.285000px;}
.y31_c00403{bottom:762.435000px;}
.y2_c00403{bottom:780.885000px;}
.y1_c00403{bottom:800.235000px;}
.h6_c00403{height:13.200074px;}
.h7_c00403{height:43.804688px;}
.h2_c00403{height:62.880000px;}
.h5_c00403{height:64.020000px;}
.h3_c00403{height:66.024000px;}
.h4_c00403{height:159.348000px;}
.h1_c00403{height:846.750000px;}
.h0_c00403{height:846.975000px;}
.w2_c00403{width:104.875500px;}
.w0_c00403{width:568.875000px;}
.w1_c00403{width:569.250000px;}
.x0_c00403{left:0.000000px;}
.x3_c00403{left:17.850000px;}
.x4_c00403{left:21.150000px;}
.x5_c00403{left:22.500000px;}
.x6_c00403{left:24.300000px;}
.x9_c00403{left:74.700000px;}
.x8_c00403{left:75.900000px;}
.x7_c00403{left:76.950000px;}
.x2_c00403{left:78.600000px;}
.xb_c00403{left:79.650000px;}
.x1_c00403{left:81.000000px;}
.xa_c00403{left:104.400000px;}
.x14_c00403{left:236.251740px;}
.x11_c00403{left:289.950000px;}
.x10_c00403{left:292.350000px;}
.xe_c00403{left:295.350000px;}
.xc_c00403{left:296.700000px;}
.xd_c00403{left:298.050000px;}
.x12_c00403{left:299.400000px;}
.xf_c00403{left:323.100000px;}
.x13_c00403{left:466.800000px;}
@media print{
.v0_c00403{vertical-align:0.000000pt;}
.ls5_c00403{letter-spacing:0.000000pt;}
.ls4_c00403{letter-spacing:2.026667pt;}
.ls0_c00403{letter-spacing:2.666667pt;}
.ls3_c00403{letter-spacing:3.626667pt;}
.ls2_c00403{letter-spacing:5.333333pt;}
.ls1_c00403{letter-spacing:8.000000pt;}
.ws3_c00403{word-spacing:-42.541333pt;}
.ws0_c00403{word-spacing:-31.373333pt;}
.ws2_c00403{word-spacing:-21.216000pt;}
.ws4_c00403{word-spacing:-18.080000pt;}
.ws5_c00403{word-spacing:-16.053333pt;}
.ws6_c00403{word-spacing:-15.253333pt;}
.ws1_c00403{word-spacing:-12.586667pt;}
.ws7_c00403{word-spacing:0.000000pt;}
._2c_c00403{margin-left:-21.480000pt;}
._2b_c00403{margin-left:-15.840000pt;}
._2a_c00403{margin-left:-13.986667pt;}
._24_c00403{margin-left:-12.466667pt;}
._25_c00403{margin-left:-10.973333pt;}
._1c_c00403{margin-left:-9.280000pt;}
._12_c00403{margin-left:-7.626667pt;}
._14_c00403{margin-left:-6.040000pt;}
._10_c00403{margin-left:-4.480000pt;}
._f_c00403{margin-left:-3.240000pt;}
._13_c00403{margin-left:-2.146667pt;}
._15_c00403{margin-left:-1.133333pt;}
._0_c00403{width:1.160000pt;}
._1_c00403{width:2.053333pt;}
._e_c00403{width:3.146667pt;}
._19_c00403{width:4.093333pt;}
._1e_c00403{width:5.133333pt;}
._11_c00403{width:6.400000pt;}
._18_c00403{width:7.360000pt;}
._17_c00403{width:8.266667pt;}
._2f_c00403{width:9.200000pt;}
._1b_c00403{width:10.106667pt;}
._a_c00403{width:11.520000pt;}
._d_c00403{width:12.853333pt;}
._1f_c00403{width:14.133333pt;}
._2d_c00403{width:15.186667pt;}
._23_c00403{width:16.213333pt;}
._5_c00403{width:17.440000pt;}
._3_c00403{width:18.400000pt;}
._c_c00403{width:19.680000pt;}
._4_c00403{width:21.653333pt;}
._28_c00403{width:22.693333pt;}
._7_c00403{width:23.946667pt;}
._8_c00403{width:25.493333pt;}
._9_c00403{width:29.013333pt;}
._b_c00403{width:30.613333pt;}
._20_c00403{width:32.000000pt;}
._2e_c00403{width:33.866667pt;}
._29_c00403{width:34.986667pt;}
._6_c00403{width:37.546667pt;}
._22_c00403{width:38.626667pt;}
._21_c00403{width:44.906667pt;}
._16_c00403{width:70.026667pt;}
._1a_c00403{width:112.506667pt;}
._1d_c00403{width:147.320000pt;}
._27_c00403{width:159.093333pt;}
._2_c00403{width:175.146667pt;}
._26_c00403{width:343.733333pt;}
.fs0_c00403{font-size:40.000000pt;}
.fs5_c00403{font-size:42.666667pt;}
.fs3_c00403{font-size:50.666667pt;}
.fs1_c00403{font-size:53.333333pt;}
.fs2_c00403{font-size:56.000000pt;}
.fs4_c00403{font-size:130.666667pt;}
.y0_c00403{bottom:0.000000pt;}
.y5a_c00403{bottom:2.760000pt;}
.y59_c00403{bottom:6.425204pt;}
.y58_c00403{bottom:33.586667pt;}
.y8_c00403{bottom:45.320000pt;}
.y30_c00403{bottom:48.520000pt;}
.y57_c00403{bottom:49.720000pt;}
.y7_c00403{bottom:63.186667pt;}
.y2f_c00403{bottom:64.520000pt;}
.y56_c00403{bottom:65.986667pt;}
.y2e_c00403{bottom:80.920000pt;}
.y55_c00403{bottom:81.853333pt;}
.y6_c00403{bottom:95.720000pt;}
.y2d_c00403{bottom:97.720000pt;}
.y54_c00403{bottom:97.986667pt;}
.y2c_c00403{bottom:113.320000pt;}
.y5_c00403{bottom:113.586667pt;}
.y53_c00403{bottom:114.520000pt;}
.y2b_c00403{bottom:129.320000pt;}
.y52_c00403{bottom:130.386667pt;}
.y2a_c00403{bottom:145.453333pt;}
.y51_c00403{bottom:146.386667pt;}
.y29_c00403{bottom:161.320000pt;}
.y50_c00403{bottom:162.520000pt;}
.y28_c00403{bottom:177.853333pt;}
.y4f_c00403{bottom:179.053333pt;}
.y27_c00403{bottom:193.986667pt;}
.y4e_c00403{bottom:195.320000pt;}
.y26_c00403{bottom:209.986667pt;}
.y4d_c00403{bottom:211.453333pt;}
.y25_c00403{bottom:226.520000pt;}
.y4c_c00403{bottom:227.586667pt;}
.y24_c00403{bottom:242.920000pt;}
.y4b_c00403{bottom:243.586667pt;}
.y23_c00403{bottom:258.520000pt;}
.y4a_c00403{bottom:259.720000pt;}
.y22_c00403{bottom:274.786667pt;}
.y49_c00403{bottom:275.586667pt;}
.y21_c00403{bottom:290.920000pt;}
.y48_c00403{bottom:291.186667pt;}
.y47_c00403{bottom:306.786667pt;}
.y20_c00403{bottom:307.453333pt;}
.y4_c00403{bottom:323.053333pt;}
.y1f_c00403{bottom:323.320000pt;}
.y3_c00403{bottom:338.920000pt;}
.y46_c00403{bottom:339.186667pt;}
.y1e_c00403{bottom:339.853333pt;}
.y1d_c00403{bottom:355.453333pt;}
.y45_c00403{bottom:355.720000pt;}
.y44_c00403{bottom:371.586667pt;}
.y1c_c00403{bottom:371.720000pt;}
.y1b_c00403{bottom:387.720000pt;}
.y43_c00403{bottom:387.853333pt;}
.y42_c00403{bottom:403.453333pt;}
.y1a_c00403{bottom:403.720000pt;}
.y19_c00403{bottom:419.720000pt;}
.y41_c00403{bottom:419.986667pt;}
.y18_c00403{bottom:436.120000pt;}
.y40_c00403{bottom:436.386667pt;}
.y3f_c00403{bottom:452.386667pt;}
.y17_c00403{bottom:453.186667pt;}
.y16_c00403{bottom:468.253333pt;}
.y3e_c00403{bottom:469.453333pt;}
.y15_c00403{bottom:484.386667pt;}
.y3d_c00403{bottom:484.920000pt;}
.y14_c00403{bottom:499.453333pt;}
.y3c_c00403{bottom:501.186667pt;}
.y13_c00403{bottom:516.253333pt;}
.y3b_c00403{bottom:517.453333pt;}
.y12_c00403{bottom:532.386667pt;}
.y3a_c00403{bottom:533.720000pt;}
.y11_c00403{bottom:548.653333pt;}
.y39_c00403{bottom:549.853333pt;}
.y10_c00403{bottom:564.520000pt;}
.y38_c00403{bottom:566.386667pt;}
.yf_c00403{bottom:580.386667pt;}
.y37_c00403{bottom:581.986667pt;}
.ye_c00403{bottom:596.386667pt;}
.y36_c00403{bottom:598.786667pt;}
.yd_c00403{bottom:612.786667pt;}
.y35_c00403{bottom:614.120000pt;}
.yc_c00403{bottom:628.786667pt;}
.y34_c00403{bottom:630.520000pt;}
.yb_c00403{bottom:644.920000pt;}
.y33_c00403{bottom:646.786667pt;}
.ya_c00403{bottom:660.920000pt;}
.y32_c00403{bottom:662.386667pt;}
.y9_c00403{bottom:677.586667pt;}
.y31_c00403{bottom:677.720000pt;}
.y2_c00403{bottom:694.120000pt;}
.y1_c00403{bottom:711.320000pt;}
.h6_c00403{height:11.733399pt;}
.h7_c00403{height:38.937500pt;}
.h2_c00403{height:55.893333pt;}
.h5_c00403{height:56.906667pt;}
.h3_c00403{height:58.688000pt;}
.h4_c00403{height:141.642667pt;}
.h1_c00403{height:752.666667pt;}
.h0_c00403{height:752.866667pt;}
.w2_c00403{width:93.222667pt;}
.w0_c00403{width:505.666667pt;}
.w1_c00403{width:506.000000pt;}
.x0_c00403{left:0.000000pt;}
.x3_c00403{left:15.866667pt;}
.x4_c00403{left:18.800000pt;}
.x5_c00403{left:20.000000pt;}
.x6_c00403{left:21.600000pt;}
.x9_c00403{left:66.400000pt;}
.x8_c00403{left:67.466667pt;}
.x7_c00403{left:68.400000pt;}
.x2_c00403{left:69.866667pt;}
.xb_c00403{left:70.800000pt;}
.x1_c00403{left:72.000000pt;}
.xa_c00403{left:92.800000pt;}
.x14_c00403{left:210.001546pt;}
.x11_c00403{left:257.733333pt;}
.x10_c00403{left:259.866667pt;}
.xe_c00403{left:262.533333pt;}
.xc_c00403{left:263.733333pt;}
.xd_c00403{left:264.933333pt;}
.x12_c00403{left:266.133333pt;}
.xf_c00403{left:287.200000pt;}
.x13_c00403{left:414.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_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_683888960371bc712c4ec197.woff2')format("woff");}.ff1_c00404{font-family:ff1_c00404;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00404;src:url('chunks/assets/font_5d487d05744c3582bfc4a0ee.woff2')format("woff");}.ff2_c00404{font-family:ff2_c00404;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00404;src:url('chunks/assets/font_f3790c11fa1b72b5ebd5d0f3.woff2')format("woff");}.ff3_c00404{font-family:ff3_c00404;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00404;src:url('chunks/assets/font_b134d7f9f4de69c2840a2672.woff2')format("woff");}.ff4_c00404{font-family:ff4_c00404;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00404;src:url('chunks/assets/font_adc4b782e3915428ed0c901c.woff2')format("woff");}.ff5_c00404{font-family:ff5_c00404;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00404;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff6_c00404{font-family:ff6_c00404;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00404{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00404{vertical-align:-9.600000px;}
.v0_c00404{vertical-align:0.000000px;}
.ls8_c00404{letter-spacing:0.000000px;}
.ls7_c00404{letter-spacing:1.560000px;}
.ls0_c00404{letter-spacing:1.605000px;}
.ls5_c00404{letter-spacing:3.000000px;}
.ls6_c00404{letter-spacing:3.240000px;}
.ls3_c00404{letter-spacing:6.000000px;}
.ls1_c00404{letter-spacing:9.420000px;}
.ls4_c00404{letter-spacing:12.000000px;}
.ls2_c00404{letter-spacing:40.605000px;}
.sc__c00404{text-shadow:none;}
.sc0_c00404{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00404{-webkit-text-stroke:0px transparent;}
.sc0_c00404{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00404{word-spacing:-35.295000px;}
.ws4_c00404{word-spacing:-18.060000px;}
.ws2_c00404{word-spacing:-17.160000px;}
.ws3_c00404{word-spacing:-15.720000px;}
.ws1_c00404{word-spacing:-14.160000px;}
.ws5_c00404{word-spacing:0.000000px;}
._21_c00404{margin-left:-18.225000px;}
._2a_c00404{margin-left:-14.760000px;}
._25_c00404{margin-left:-12.360000px;}
._15_c00404{margin-left:-10.500000px;}
._24_c00404{margin-left:-8.880000px;}
._d_c00404{margin-left:-7.800000px;}
._2_c00404{margin-left:-6.300000px;}
._3_c00404{margin-left:-5.040000px;}
._7_c00404{margin-left:-3.960000px;}
._4_c00404{margin-left:-2.700000px;}
._8_c00404{margin-left:-1.380000px;}
._c_c00404{width:1.020000px;}
._0_c00404{width:2.040000px;}
._a_c00404{width:3.060000px;}
._6_c00404{width:4.560000px;}
._14_c00404{width:5.580000px;}
._12_c00404{width:7.560000px;}
._27_c00404{width:8.580000px;}
._5_c00404{width:9.660000px;}
._b_c00404{width:11.625000px;}
._f_c00404{width:12.960000px;}
._11_c00404{width:14.055000px;}
._2b_c00404{width:15.105000px;}
._19_c00404{width:16.140000px;}
._e_c00404{width:18.300000px;}
._1f_c00404{width:19.440000px;}
._20_c00404{width:20.880000px;}
._17_c00404{width:22.380000px;}
._10_c00404{width:24.000000px;}
._1a_c00404{width:25.635000px;}
._1d_c00404{width:26.820000px;}
._22_c00404{width:28.080000px;}
._1b_c00404{width:29.160000px;}
._29_c00404{width:30.615000px;}
._23_c00404{width:32.340000px;}
._2c_c00404{width:34.980000px;}
._18_c00404{width:37.860000px;}
._1c_c00404{width:42.825000px;}
._1e_c00404{width:50.160000px;}
._2d_c00404{width:51.375000px;}
._28_c00404{width:55.125000px;}
._26_c00404{width:63.600000px;}
._1_c00404{width:72.960000px;}
._13_c00404{width:99.435000px;}
._9_c00404{width:128.940000px;}
._16_c00404{width:175.740000px;}
.fc2_c00404{color:transparent;}
.fc1_c00404{color:rgb(128,128,128);}
.fc0_c00404{color:rgb(0,0,0);}
.fs1_c00404{font-size:45.000000px;}
.fs2_c00404{font-size:48.000000px;}
.fs0_c00404{font-size:60.000000px;}
.y0_c00404{bottom:0.000000px;}
.y52_c00404{bottom:3.105000px;}
.y51_c00404{bottom:7.228371px;}
.y50_c00404{bottom:38.265000px;}
.y29_c00404{bottom:56.415000px;}
.y4f_c00404{bottom:56.715000px;}
.y28_c00404{bottom:75.315000px;}
.y4e_c00404{bottom:75.915000px;}
.y4d_c00404{bottom:93.465000px;}
.y27_c00404{bottom:93.615000px;}
.y26_c00404{bottom:111.465000px;}
.y25_c00404{bottom:130.365000px;}
.y4c_c00404{bottom:147.915000px;}
.y24_c00404{bottom:148.515000px;}
.y4b_c00404{bottom:165.765000px;}
.y23_c00404{bottom:167.115000px;}
.y4a_c00404{bottom:183.915000px;}
.y22_c00404{bottom:184.365000px;}
.y49_c00404{bottom:201.615000px;}
.y21_c00404{bottom:202.215000px;}
.y48_c00404{bottom:219.765000px;}
.y20_c00404{bottom:220.515000px;}
.y47_c00404{bottom:237.915000px;}
.y1f_c00404{bottom:238.365000px;}
.y46_c00404{bottom:255.915000px;}
.y1e_c00404{bottom:256.515000px;}
.y45_c00404{bottom:274.365000px;}
.y1d_c00404{bottom:274.815000px;}
.y44_c00404{bottom:292.065000px;}
.y1c_c00404{bottom:292.665000px;}
.y43_c00404{bottom:310.515000px;}
.y1b_c00404{bottom:312.915000px;}
.y42_c00404{bottom:328.515000px;}
.y1a_c00404{bottom:328.815000px;}
.y19_c00404{bottom:346.665000px;}
.y41_c00404{bottom:346.965000px;}
.y40_c00404{bottom:364.515000px;}
.y18_c00404{bottom:364.815000px;}
.y17_c00404{bottom:382.815000px;}
.y3f_c00404{bottom:383.115000px;}
.y16_c00404{bottom:400.965000px;}
.y3e_c00404{bottom:401.415000px;}
.y3d_c00404{bottom:418.815000px;}
.y15_c00404{bottom:418.965000px;}
.y3c_c00404{bottom:436.815000px;}
.y14_c00404{bottom:437.115000px;}
.y3b_c00404{bottom:454.065000px;}
.y13_c00404{bottom:455.265000px;}
.y3a_c00404{bottom:472.965000px;}
.y12_c00404{bottom:473.265000px;}
.y11_c00404{bottom:491.115000px;}
.y10_c00404{bottom:508.965000px;}
.y39_c00404{bottom:509.265000px;}
.yf_c00404{bottom:525.915000px;}
.y38_c00404{bottom:526.965000px;}
.ye_c00404{bottom:544.065000px;}
.y37_c00404{bottom:545.115000px;}
.yd_c00404{bottom:561.915000px;}
.y36_c00404{bottom:562.965000px;}
.yc_c00404{bottom:579.915000px;}
.y35_c00404{bottom:580.965000px;}
.yb_c00404{bottom:598.065000px;}
.y34_c00404{bottom:599.415000px;}
.ya_c00404{bottom:616.365000px;}
.y33_c00404{bottom:617.415000px;}
.y9_c00404{bottom:634.215000px;}
.y32_c00404{bottom:635.265000px;}
.y8_c00404{bottom:652.065000px;}
.y31_c00404{bottom:653.865000px;}
.y7_c00404{bottom:671.265000px;}
.y30_c00404{bottom:671.715000px;}
.y6_c00404{bottom:688.515000px;}
.y2f_c00404{bottom:689.865000px;}
.y5_c00404{bottom:706.065000px;}
.y2e_c00404{bottom:707.865000px;}
.y4_c00404{bottom:724.065000px;}
.y2d_c00404{bottom:725.715000px;}
.y3_c00404{bottom:741.615000px;}
.y2c_c00404{bottom:744.315000px;}
.y2_c00404{bottom:759.465000px;}
.y2b_c00404{bottom:763.215000px;}
.y1_c00404{bottom:777.315000px;}
.y2a_c00404{bottom:780.615000px;}
.h4_c00404{height:13.200074px;}
.h5_c00404{height:43.804688px;}
.h2_c00404{height:62.880000px;}
.h3_c00404{height:64.020000px;}
.h1_c00404{height:844.500000px;}
.h0_c00404{height:844.575000px;}
.w1_c00404{width:104.875500px;}
.w0_c00404{width:587.250000px;}
.x0_c00404{left:0.000000px;}
.x1_c00404{left:12.900000px;}
.x7_c00404{left:15.750000px;}
.x8_c00404{left:20.250000px;}
.x4_c00404{left:23.700000px;}
.x2_c00404{left:76.350000px;}
.x3_c00404{left:77.400000px;}
.x5_c00404{left:78.600000px;}
.x6_c00404{left:79.650000px;}
.x9_c00404{left:81.000000px;}
.x14_c00404{left:245.439240px;}
.xa_c00404{left:293.550000px;}
.xb_c00404{left:295.350000px;}
.xc_c00404{left:296.550000px;}
.xd_c00404{left:297.600000px;}
.xe_c00404{left:298.650000px;}
.xf_c00404{left:300.000000px;}
.x10_c00404{left:301.050000px;}
.x11_c00404{left:302.100000px;}
.x12_c00404{left:303.450000px;}
.x13_c00404{left:479.850000px;}
@media print{
.v1_c00404{vertical-align:-8.533333pt;}
.v0_c00404{vertical-align:0.000000pt;}
.ls8_c00404{letter-spacing:0.000000pt;}
.ls7_c00404{letter-spacing:1.386667pt;}
.ls0_c00404{letter-spacing:1.426667pt;}
.ls5_c00404{letter-spacing:2.666667pt;}
.ls6_c00404{letter-spacing:2.880000pt;}
.ls3_c00404{letter-spacing:5.333333pt;}
.ls1_c00404{letter-spacing:8.373333pt;}
.ls4_c00404{letter-spacing:10.666667pt;}
.ls2_c00404{letter-spacing:36.093333pt;}
.ws0_c00404{word-spacing:-31.373333pt;}
.ws4_c00404{word-spacing:-16.053333pt;}
.ws2_c00404{word-spacing:-15.253333pt;}
.ws3_c00404{word-spacing:-13.973333pt;}
.ws1_c00404{word-spacing:-12.586667pt;}
.ws5_c00404{word-spacing:0.000000pt;}
._21_c00404{margin-left:-16.200000pt;}
._2a_c00404{margin-left:-13.120000pt;}
._25_c00404{margin-left:-10.986667pt;}
._15_c00404{margin-left:-9.333333pt;}
._24_c00404{margin-left:-7.893333pt;}
._d_c00404{margin-left:-6.933333pt;}
._2_c00404{margin-left:-5.600000pt;}
._3_c00404{margin-left:-4.480000pt;}
._7_c00404{margin-left:-3.520000pt;}
._4_c00404{margin-left:-2.400000pt;}
._8_c00404{margin-left:-1.226667pt;}
._c_c00404{width:0.906667pt;}
._0_c00404{width:1.813333pt;}
._a_c00404{width:2.720000pt;}
._6_c00404{width:4.053333pt;}
._14_c00404{width:4.960000pt;}
._12_c00404{width:6.720000pt;}
._27_c00404{width:7.626667pt;}
._5_c00404{width:8.586667pt;}
._b_c00404{width:10.333333pt;}
._f_c00404{width:11.520000pt;}
._11_c00404{width:12.493333pt;}
._2b_c00404{width:13.426667pt;}
._19_c00404{width:14.346667pt;}
._e_c00404{width:16.266667pt;}
._1f_c00404{width:17.280000pt;}
._20_c00404{width:18.560000pt;}
._17_c00404{width:19.893333pt;}
._10_c00404{width:21.333333pt;}
._1a_c00404{width:22.786667pt;}
._1d_c00404{width:23.840000pt;}
._22_c00404{width:24.960000pt;}
._1b_c00404{width:25.920000pt;}
._29_c00404{width:27.213333pt;}
._23_c00404{width:28.746667pt;}
._2c_c00404{width:31.093333pt;}
._18_c00404{width:33.653333pt;}
._1c_c00404{width:38.066667pt;}
._1e_c00404{width:44.586667pt;}
._2d_c00404{width:45.666667pt;}
._28_c00404{width:49.000000pt;}
._26_c00404{width:56.533333pt;}
._1_c00404{width:64.853333pt;}
._13_c00404{width:88.386667pt;}
._9_c00404{width:114.613333pt;}
._16_c00404{width:156.213333pt;}
.fs1_c00404{font-size:40.000000pt;}
.fs2_c00404{font-size:42.666667pt;}
.fs0_c00404{font-size:53.333333pt;}
.y0_c00404{bottom:0.000000pt;}
.y52_c00404{bottom:2.760000pt;}
.y51_c00404{bottom:6.425219pt;}
.y50_c00404{bottom:34.013333pt;}
.y29_c00404{bottom:50.146667pt;}
.y4f_c00404{bottom:50.413333pt;}
.y28_c00404{bottom:66.946667pt;}
.y4e_c00404{bottom:67.480000pt;}
.y4d_c00404{bottom:83.080000pt;}
.y27_c00404{bottom:83.213333pt;}
.y26_c00404{bottom:99.080000pt;}
.y25_c00404{bottom:115.880000pt;}
.y4c_c00404{bottom:131.480000pt;}
.y24_c00404{bottom:132.013333pt;}
.y4b_c00404{bottom:147.346667pt;}
.y23_c00404{bottom:148.546667pt;}
.y4a_c00404{bottom:163.480000pt;}
.y22_c00404{bottom:163.880000pt;}
.y49_c00404{bottom:179.213333pt;}
.y21_c00404{bottom:179.746667pt;}
.y48_c00404{bottom:195.346667pt;}
.y20_c00404{bottom:196.013333pt;}
.y47_c00404{bottom:211.480000pt;}
.y1f_c00404{bottom:211.880000pt;}
.y46_c00404{bottom:227.480000pt;}
.y1e_c00404{bottom:228.013333pt;}
.y45_c00404{bottom:243.880000pt;}
.y1d_c00404{bottom:244.280000pt;}
.y44_c00404{bottom:259.613333pt;}
.y1c_c00404{bottom:260.146667pt;}
.y43_c00404{bottom:276.013333pt;}
.y1b_c00404{bottom:278.146667pt;}
.y42_c00404{bottom:292.013333pt;}
.y1a_c00404{bottom:292.280000pt;}
.y19_c00404{bottom:308.146667pt;}
.y41_c00404{bottom:308.413333pt;}
.y40_c00404{bottom:324.013333pt;}
.y18_c00404{bottom:324.280000pt;}
.y17_c00404{bottom:340.280000pt;}
.y3f_c00404{bottom:340.546667pt;}
.y16_c00404{bottom:356.413333pt;}
.y3e_c00404{bottom:356.813333pt;}
.y3d_c00404{bottom:372.280000pt;}
.y15_c00404{bottom:372.413333pt;}
.y3c_c00404{bottom:388.280000pt;}
.y14_c00404{bottom:388.546667pt;}
.y3b_c00404{bottom:403.613333pt;}
.y13_c00404{bottom:404.680000pt;}
.y3a_c00404{bottom:420.413333pt;}
.y12_c00404{bottom:420.680000pt;}
.y11_c00404{bottom:436.546667pt;}
.y10_c00404{bottom:452.413333pt;}
.y39_c00404{bottom:452.680000pt;}
.yf_c00404{bottom:467.480000pt;}
.y38_c00404{bottom:468.413333pt;}
.ye_c00404{bottom:483.613333pt;}
.y37_c00404{bottom:484.546667pt;}
.yd_c00404{bottom:499.480000pt;}
.y36_c00404{bottom:500.413333pt;}
.yc_c00404{bottom:515.480000pt;}
.y35_c00404{bottom:516.413333pt;}
.yb_c00404{bottom:531.613333pt;}
.y34_c00404{bottom:532.813333pt;}
.ya_c00404{bottom:547.880000pt;}
.y33_c00404{bottom:548.813333pt;}
.y9_c00404{bottom:563.746667pt;}
.y32_c00404{bottom:564.680000pt;}
.y8_c00404{bottom:579.613333pt;}
.y31_c00404{bottom:581.213333pt;}
.y7_c00404{bottom:596.680000pt;}
.y30_c00404{bottom:597.080000pt;}
.y6_c00404{bottom:612.013333pt;}
.y2f_c00404{bottom:613.213333pt;}
.y5_c00404{bottom:627.613333pt;}
.y2e_c00404{bottom:629.213333pt;}
.y4_c00404{bottom:643.613333pt;}
.y2d_c00404{bottom:645.080000pt;}
.y3_c00404{bottom:659.213333pt;}
.y2c_c00404{bottom:661.613333pt;}
.y2_c00404{bottom:675.080000pt;}
.y2b_c00404{bottom:678.413333pt;}
.y1_c00404{bottom:690.946667pt;}
.y2a_c00404{bottom:693.880000pt;}
.h4_c00404{height:11.733399pt;}
.h5_c00404{height:38.937500pt;}
.h2_c00404{height:55.893333pt;}
.h3_c00404{height:56.906667pt;}
.h1_c00404{height:750.666667pt;}
.h0_c00404{height:750.733333pt;}
.w1_c00404{width:93.222667pt;}
.w0_c00404{width:522.000000pt;}
.x0_c00404{left:0.000000pt;}
.x1_c00404{left:11.466667pt;}
.x7_c00404{left:14.000000pt;}
.x8_c00404{left:18.000000pt;}
.x4_c00404{left:21.066667pt;}
.x2_c00404{left:67.866667pt;}
.x3_c00404{left:68.800000pt;}
.x5_c00404{left:69.866667pt;}
.x6_c00404{left:70.800000pt;}
.x9_c00404{left:72.000000pt;}
.x14_c00404{left:218.168213pt;}
.xa_c00404{left:260.933333pt;}
.xb_c00404{left:262.533333pt;}
.xc_c00404{left:263.600000pt;}
.xd_c00404{left:264.533333pt;}
.xe_c00404{left:265.466667pt;}
.xf_c00404{left:266.666667pt;}
.x10_c00404{left:267.600000pt;}
.x11_c00404{left:268.533333pt;}
.x12_c00404{left:269.733333pt;}
.x13_c00404{left:426.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_8fb62e0ea8b61614fc3faa48.woff2')format("woff");}.ff1_c00405{font-family:ff1_c00405;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00405;src:url('chunks/assets/font_fc332f0018d2e8f74511e159.woff2')format("woff");}.ff2_c00405{font-family:ff2_c00405;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00405;src:url('chunks/assets/font_2c75a5b958b788e656d9fefa.woff2')format("woff");}.ff3_c00405{font-family:ff3_c00405;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00405;src:url('chunks/assets/font_04220a8f11f87b31c604488c.woff2')format("woff");}.ff4_c00405{font-family:ff4_c00405;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00405;src:url('chunks/assets/font_8b8d3d2eae65886cdc78dc51.woff2')format("woff");}.ff5_c00405{font-family:ff5_c00405;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00405;src:url('chunks/assets/font_164144be587d363e8d22d49a.woff2')format("woff");}.ff6_c00405{font-family:ff6_c00405;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00405;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff7_c00405{font-family:ff7_c00405;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00405{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00405{vertical-align:0.000000px;}
.v1_c00405{vertical-align:108.000000px;}
.lsb_c00405{letter-spacing:0.000000px;}
.ls0_c00405{letter-spacing:1.200000px;}
.ls8_c00405{letter-spacing:3.000000px;}
.ls4_c00405{letter-spacing:3.600000px;}
.ls2_c00405{letter-spacing:6.000000px;}
.ls9_c00405{letter-spacing:13.800000px;}
.lsa_c00405{letter-spacing:18.000000px;}
.ls1_c00405{letter-spacing:29.241000px;}
.ls5_c00405{letter-spacing:30.060000px;}
.ls3_c00405{letter-spacing:30.504000px;}
.ls7_c00405{letter-spacing:46.260000px;}
.ls6_c00405{letter-spacing:49.260000px;}
.sc__c00405{text-shadow:none;}
.sc0_c00405{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00405{-webkit-text-stroke:0px transparent;}
.sc0_c00405{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00405{word-spacing:-72.684000px;}
.ws2_c00405{word-spacing:-18.813000px;}
.ws0_c00405{word-spacing:-18.060000px;}
.ws3_c00405{word-spacing:-14.160000px;}
.ws4_c00405{word-spacing:0.000000px;}
._14_c00405{margin-left:-20.412000px;}
._1d_c00405{margin-left:-18.993000px;}
._15_c00405{margin-left:-17.760000px;}
._2d_c00405{margin-left:-16.383000px;}
._18_c00405{margin-left:-14.664000px;}
._1e_c00405{margin-left:-13.632000px;}
._2f_c00405{margin-left:-12.420000px;}
._2e_c00405{margin-left:-11.391000px;}
._2a_c00405{margin-left:-10.245000px;}
._1b_c00405{margin-left:-7.740000px;}
._24_c00405{margin-left:-5.814000px;}
._f_c00405{margin-left:-4.560000px;}
._10_c00405{margin-left:-3.453000px;}
._13_c00405{margin-left:-2.430000px;}
._11_c00405{margin-left:-1.014000px;}
._d_c00405{width:1.134000px;}
._e_c00405{width:2.634000px;}
._0_c00405{width:3.906000px;}
._a_c00405{width:5.607000px;}
._c_c00405{width:7.434000px;}
._9_c00405{width:9.261000px;}
._b_c00405{width:10.773000px;}
._8_c00405{width:11.781000px;}
._2_c00405{width:13.167000px;}
._3_c00405{width:14.679000px;}
._4_c00405{width:16.380000px;}
._17_c00405{width:17.886000px;}
._27_c00405{width:19.089000px;}
._6_c00405{width:20.160000px;}
._20_c00405{width:21.330000px;}
._5_c00405{width:22.428000px;}
._23_c00405{width:23.622000px;}
._30_c00405{width:25.077000px;}
._19_c00405{width:26.352000px;}
._1f_c00405{width:28.215000px;}
._21_c00405{width:30.726000px;}
._7_c00405{width:34.926000px;}
._1c_c00405{width:36.273000px;}
._1a_c00405{width:38.916000px;}
._25_c00405{width:40.701000px;}
._2c_c00405{width:42.303000px;}
._26_c00405{width:44.304000px;}
._2b_c00405{width:46.365000px;}
._28_c00405{width:47.424000px;}
._12_c00405{width:48.480000px;}
._22_c00405{width:62.820000px;}
._31_c00405{width:157.980000px;}
._29_c00405{width:168.288000px;}
._1_c00405{width:199.521000px;}
._16_c00405{width:273.732000px;}
.fc2_c00405{color:transparent;}
.fc1_c00405{color:rgb(128,128,128);}
.fc0_c00405{color:rgb(0,0,0);}
.fs4_c00405{font-size:24.000000px;}
.fs6_c00405{font-size:48.000000px;}
.fs1_c00405{font-size:60.000000px;}
.fs0_c00405{font-size:63.000000px;}
.fs3_c00405{font-size:81.000000px;}
.fs2_c00405{font-size:84.000000px;}
.fs5_c00405{font-size:204.000000px;}
.y0_c00405{bottom:0.000000px;}
.y3c_c00405{bottom:3.105000px;}
.y3b_c00405{bottom:7.228357px;}
.y3a_c00405{bottom:29.730000px;}
.y39_c00405{bottom:46.530000px;}
.y38_c00405{bottom:65.580000px;}
.y37_c00405{bottom:84.480000px;}
.y36_c00405{bottom:102.030000px;}
.y35_c00405{bottom:120.180000px;}
.y34_c00405{bottom:138.330000px;}
.y2b_c00405{bottom:154.230000px;}
.y33_c00405{bottom:156.630000px;}
.y2a_c00405{bottom:172.230000px;}
.y32_c00405{bottom:173.880000px;}
.y29_c00405{bottom:190.680000px;}
.y31_c00405{bottom:192.480000px;}
.y28_c00405{bottom:208.680000px;}
.y30_c00405{bottom:210.630000px;}
.y27_c00405{bottom:226.380000px;}
.y2f_c00405{bottom:228.780000px;}
.y26_c00405{bottom:244.680000px;}
.y2e_c00405{bottom:247.080000px;}
.y25_c00405{bottom:262.980000px;}
.y2d_c00405{bottom:265.230000px;}
.y24_c00405{bottom:280.830000px;}
.y2c_c00405{bottom:283.230000px;}
.y23_c00405{bottom:299.730000px;}
.y22_c00405{bottom:317.580000px;}
.y21_c00405{bottom:335.880000px;}
.y20_c00405{bottom:353.430000px;}
.y1f_c00405{bottom:372.330000px;}
.y1e_c00405{bottom:390.180000px;}
.y1d_c00405{bottom:408.330000px;}
.y1c_c00405{bottom:426.030000px;}
.y1b_c00405{bottom:444.480000px;}
.y1a_c00405{bottom:462.330000px;}
.y19_c00405{bottom:480.030000px;}
.y18_c00405{bottom:498.180000px;}
.y17_c00405{bottom:516.330000px;}
.y16_c00405{bottom:534.630000px;}
.y15_c00405{bottom:552.930000px;}
.y14_c00405{bottom:570.330000px;}
.y13_c00405{bottom:579.780000px;}
.yc_c00405{bottom:588.630000px;}
.yb_c00405{bottom:605.880000px;}
.ya_c00405{bottom:624.480000px;}
.y9_c00405{bottom:642.330000px;}
.y12_c00405{bottom:643.380000px;}
.y8_c00405{bottom:660.930000px;}
.y11_c00405{bottom:662.580000px;}
.y7_c00405{bottom:678.780000px;}
.y10_c00405{bottom:680.430000px;}
.y6_c00405{bottom:696.930000px;}
.yf_c00405{bottom:698.280000px;}
.y5_c00405{bottom:714.780000px;}
.ye_c00405{bottom:715.530000px;}
.y4_c00405{bottom:733.080000px;}
.yd_c00405{bottom:749.280000px;}
.y3_c00405{bottom:751.230000px;}
.y2_c00405{bottom:770.130000px;}
.y1_c00405{bottom:789.030000px;}
.h7_c00405{height:13.200074px;}
.h8_c00405{height:43.804688px;}
.h4_c00405{height:62.880000px;}
.h3_c00405{height:64.020000px;}
.h2_c00405{height:66.024000px;}
.h5_c00405{height:91.056000px;}
.h6_c00405{height:213.792000px;}
.h0_c00405{height:841.350000px;}
.h1_c00405{height:841.500000px;}
.w2_c00405{width:104.875500px;}
.w1_c00405{width:564.750000px;}
.w0_c00405{width:564.825000px;}
.x0_c00405{left:0.000000px;}
.xd_c00405{left:11.400000px;}
.xc_c00405{left:12.450000px;}
.x3_c00405{left:71.100000px;}
.xf_c00405{left:72.150000px;}
.x2_c00405{left:73.350000px;}
.x10_c00405{left:74.850000px;}
.xe_c00405{left:76.950000px;}
.x1_c00405{left:78.300000px;}
.xb_c00405{left:82.050000px;}
.x11_c00405{left:88.350000px;}
.x12_c00405{left:108.600000px;}
.x13_c00405{left:156.300000px;}
.x19_c00405{left:234.226730px;}
.x16_c00405{left:289.650000px;}
.x15_c00405{left:290.700000px;}
.xa_c00405{left:293.850000px;}
.x14_c00405{left:294.900000px;}
.x17_c00405{left:295.950000px;}
.x6_c00405{left:305.100000px;}
.x7_c00405{left:323.250000px;}
.x5_c00405{left:331.350000px;}
.x8_c00405{left:338.400000px;}
.x4_c00405{left:355.950000px;}
.x9_c00405{left:363.750000px;}
.x18_c00405{left:447.300000px;}
@media print{
.v0_c00405{vertical-align:0.000000pt;}
.v1_c00405{vertical-align:96.000000pt;}
.lsb_c00405{letter-spacing:0.000000pt;}
.ls0_c00405{letter-spacing:1.066667pt;}
.ls8_c00405{letter-spacing:2.666667pt;}
.ls4_c00405{letter-spacing:3.200000pt;}
.ls2_c00405{letter-spacing:5.333333pt;}
.ls9_c00405{letter-spacing:12.266667pt;}
.lsa_c00405{letter-spacing:16.000000pt;}
.ls1_c00405{letter-spacing:25.992000pt;}
.ls5_c00405{letter-spacing:26.720000pt;}
.ls3_c00405{letter-spacing:27.114667pt;}
.ls7_c00405{letter-spacing:41.120000pt;}
.ls6_c00405{letter-spacing:43.786667pt;}
.ws1_c00405{word-spacing:-64.608000pt;}
.ws2_c00405{word-spacing:-16.722667pt;}
.ws0_c00405{word-spacing:-16.053333pt;}
.ws3_c00405{word-spacing:-12.586667pt;}
.ws4_c00405{word-spacing:0.000000pt;}
._14_c00405{margin-left:-18.144000pt;}
._1d_c00405{margin-left:-16.882667pt;}
._15_c00405{margin-left:-15.786667pt;}
._2d_c00405{margin-left:-14.562667pt;}
._18_c00405{margin-left:-13.034667pt;}
._1e_c00405{margin-left:-12.117333pt;}
._2f_c00405{margin-left:-11.040000pt;}
._2e_c00405{margin-left:-10.125333pt;}
._2a_c00405{margin-left:-9.106667pt;}
._1b_c00405{margin-left:-6.880000pt;}
._24_c00405{margin-left:-5.168000pt;}
._f_c00405{margin-left:-4.053333pt;}
._10_c00405{margin-left:-3.069333pt;}
._13_c00405{margin-left:-2.160000pt;}
._11_c00405{margin-left:-0.901333pt;}
._d_c00405{width:1.008000pt;}
._e_c00405{width:2.341333pt;}
._0_c00405{width:3.472000pt;}
._a_c00405{width:4.984000pt;}
._c_c00405{width:6.608000pt;}
._9_c00405{width:8.232000pt;}
._b_c00405{width:9.576000pt;}
._8_c00405{width:10.472000pt;}
._2_c00405{width:11.704000pt;}
._3_c00405{width:13.048000pt;}
._4_c00405{width:14.560000pt;}
._17_c00405{width:15.898667pt;}
._27_c00405{width:16.968000pt;}
._6_c00405{width:17.920000pt;}
._20_c00405{width:18.960000pt;}
._5_c00405{width:19.936000pt;}
._23_c00405{width:20.997333pt;}
._30_c00405{width:22.290667pt;}
._19_c00405{width:23.424000pt;}
._1f_c00405{width:25.080000pt;}
._21_c00405{width:27.312000pt;}
._7_c00405{width:31.045333pt;}
._1c_c00405{width:32.242667pt;}
._1a_c00405{width:34.592000pt;}
._25_c00405{width:36.178667pt;}
._2c_c00405{width:37.602667pt;}
._26_c00405{width:39.381333pt;}
._2b_c00405{width:41.213333pt;}
._28_c00405{width:42.154667pt;}
._12_c00405{width:43.093333pt;}
._22_c00405{width:55.840000pt;}
._31_c00405{width:140.426667pt;}
._29_c00405{width:149.589333pt;}
._1_c00405{width:177.352000pt;}
._16_c00405{width:243.317333pt;}
.fs4_c00405{font-size:21.333333pt;}
.fs6_c00405{font-size:42.666667pt;}
.fs1_c00405{font-size:53.333333pt;}
.fs0_c00405{font-size:56.000000pt;}
.fs3_c00405{font-size:72.000000pt;}
.fs2_c00405{font-size:74.666667pt;}
.fs5_c00405{font-size:181.333333pt;}
.y0_c00405{bottom:0.000000pt;}
.y3c_c00405{bottom:2.760000pt;}
.y3b_c00405{bottom:6.425206pt;}
.y3a_c00405{bottom:26.426667pt;}
.y39_c00405{bottom:41.360000pt;}
.y38_c00405{bottom:58.293333pt;}
.y37_c00405{bottom:75.093333pt;}
.y36_c00405{bottom:90.693333pt;}
.y35_c00405{bottom:106.826667pt;}
.y34_c00405{bottom:122.960000pt;}
.y2b_c00405{bottom:137.093333pt;}
.y33_c00405{bottom:139.226667pt;}
.y2a_c00405{bottom:153.093333pt;}
.y32_c00405{bottom:154.560000pt;}
.y29_c00405{bottom:169.493333pt;}
.y31_c00405{bottom:171.093333pt;}
.y28_c00405{bottom:185.493333pt;}
.y30_c00405{bottom:187.226667pt;}
.y27_c00405{bottom:201.226667pt;}
.y2f_c00405{bottom:203.360000pt;}
.y26_c00405{bottom:217.493333pt;}
.y2e_c00405{bottom:219.626667pt;}
.y25_c00405{bottom:233.760000pt;}
.y2d_c00405{bottom:235.760000pt;}
.y24_c00405{bottom:249.626667pt;}
.y2c_c00405{bottom:251.760000pt;}
.y23_c00405{bottom:266.426667pt;}
.y22_c00405{bottom:282.293333pt;}
.y21_c00405{bottom:298.560000pt;}
.y20_c00405{bottom:314.160000pt;}
.y1f_c00405{bottom:330.960000pt;}
.y1e_c00405{bottom:346.826667pt;}
.y1d_c00405{bottom:362.960000pt;}
.y1c_c00405{bottom:378.693333pt;}
.y1b_c00405{bottom:395.093333pt;}
.y1a_c00405{bottom:410.960000pt;}
.y19_c00405{bottom:426.693333pt;}
.y18_c00405{bottom:442.826667pt;}
.y17_c00405{bottom:458.960000pt;}
.y16_c00405{bottom:475.226667pt;}
.y15_c00405{bottom:491.493333pt;}
.y14_c00405{bottom:506.960000pt;}
.y13_c00405{bottom:515.360000pt;}
.yc_c00405{bottom:523.226667pt;}
.yb_c00405{bottom:538.560000pt;}
.ya_c00405{bottom:555.093333pt;}
.y9_c00405{bottom:570.960000pt;}
.y12_c00405{bottom:571.893333pt;}
.y8_c00405{bottom:587.493333pt;}
.y11_c00405{bottom:588.960000pt;}
.y7_c00405{bottom:603.360000pt;}
.y10_c00405{bottom:604.826667pt;}
.y6_c00405{bottom:619.493333pt;}
.yf_c00405{bottom:620.693333pt;}
.y5_c00405{bottom:635.360000pt;}
.ye_c00405{bottom:636.026667pt;}
.y4_c00405{bottom:651.626667pt;}
.yd_c00405{bottom:666.026667pt;}
.y3_c00405{bottom:667.760000pt;}
.y2_c00405{bottom:684.560000pt;}
.y1_c00405{bottom:701.360000pt;}
.h7_c00405{height:11.733399pt;}
.h8_c00405{height:38.937500pt;}
.h4_c00405{height:55.893333pt;}
.h3_c00405{height:56.906667pt;}
.h2_c00405{height:58.688000pt;}
.h5_c00405{height:80.938667pt;}
.h6_c00405{height:190.037333pt;}
.h0_c00405{height:747.866667pt;}
.h1_c00405{height:748.000000pt;}
.w2_c00405{width:93.222667pt;}
.w1_c00405{width:502.000000pt;}
.w0_c00405{width:502.066667pt;}
.x0_c00405{left:0.000000pt;}
.xd_c00405{left:10.133333pt;}
.xc_c00405{left:11.066667pt;}
.x3_c00405{left:63.200000pt;}
.xf_c00405{left:64.133333pt;}
.x2_c00405{left:65.200000pt;}
.x10_c00405{left:66.533333pt;}
.xe_c00405{left:68.400000pt;}
.x1_c00405{left:69.600000pt;}
.xb_c00405{left:72.933333pt;}
.x11_c00405{left:78.533333pt;}
.x12_c00405{left:96.533333pt;}
.x13_c00405{left:138.933333pt;}
.x19_c00405{left:208.201538pt;}
.x16_c00405{left:257.466667pt;}
.x15_c00405{left:258.400000pt;}
.xa_c00405{left:261.200000pt;}
.x14_c00405{left:262.133333pt;}
.x17_c00405{left:263.066667pt;}
.x6_c00405{left:271.200000pt;}
.x7_c00405{left:287.333333pt;}
.x5_c00405{left:294.533333pt;}
.x8_c00405{left:300.800000pt;}
.x4_c00405{left:316.400000pt;}
.x9_c00405{left:323.333333pt;}
.x18_c00405{left:397.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_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_28b0992f8e51540264a22654.woff2')format("woff");}.ff1_c00406{font-family:ff1_c00406;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00406;src:url('chunks/assets/font_1e6caaaff6a2c099c40a08ce.woff2')format("woff");}.ff2_c00406{font-family:ff2_c00406;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00406;src:url('chunks/assets/font_05411fa9b4a5793d821d0c46.woff2')format("woff");}.ff3_c00406{font-family:ff3_c00406;line-height:1.575000;font-style:normal;font-weight:normal;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_5cf9ac81951f82b25d94ad5a.woff2')format("woff");}.ff4_c00406{font-family:ff4_c00406;line-height:1.575000;font-style:normal;font-weight:normal;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_e21271e86ff7a635292058dd.woff2')format("woff");}.ff5_c00406{font-family:ff5_c00406;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00406;src:url('chunks/assets/font_f1de4376fec56a6c621e0826.woff2')format("woff");}.ff6_c00406{font-family:ff6_c00406;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00406;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff7_c00406{font-family:ff7_c00406;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00406;src:url('chunks/assets/font_7063f47acae520498956b759.woff2')format("woff");}.ff8_c00406{font-family:ff8_c00406;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00406;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff9_c00406{font-family:ff9_c00406;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00406{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00406{vertical-align:0.000000px;}
.lsc_c00406{letter-spacing:0.000000px;}
.ls5_c00406{letter-spacing:3.000000px;}
.ls8_c00406{letter-spacing:6.000000px;}
.ls7_c00406{letter-spacing:6.600000px;}
.ls1_c00406{letter-spacing:6.660000px;}
.ls6_c00406{letter-spacing:7.800000px;}
.ls0_c00406{letter-spacing:9.600000px;}
.lsa_c00406{letter-spacing:10.800000px;}
.lsb_c00406{letter-spacing:18.600000px;}
.ls4_c00406{letter-spacing:44.850000px;}
.ls2_c00406{letter-spacing:63.750000px;}
.ls3_c00406{letter-spacing:64.350000px;}
.ls9_c00406{letter-spacing:95.562000px;}
.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;}
}
.ws7_c00406{word-spacing:-20.340000px;}
.ws1_c00406{word-spacing:-18.060000px;}
.ws6_c00406{word-spacing:-18.000000px;}
.ws2_c00406{word-spacing:-15.000000px;}
.ws0_c00406{word-spacing:-14.160000px;}
.ws5_c00406{word-spacing:-1.020000px;}
.ws4_c00406{word-spacing:-0.816000px;}
.ws8_c00406{word-spacing:-0.684000px;}
.ws9_c00406{word-spacing:0.000000px;}
.ws3_c00406{word-spacing:1.200000px;}
._34_c00406{margin-left:-18.960000px;}
._1a_c00406{margin-left:-15.903000px;}
._19_c00406{margin-left:-14.820000px;}
._2c_c00406{margin-left:-13.680000px;}
._14_c00406{margin-left:-12.180000px;}
._1b_c00406{margin-left:-10.320000px;}
._2b_c00406{margin-left:-9.180000px;}
._d_c00406{margin-left:-7.920000px;}
._1c_c00406{margin-left:-6.240000px;}
._21_c00406{margin-left:-5.100000px;}
._1d_c00406{margin-left:-3.600000px;}
._5_c00406{margin-left:-2.160000px;}
._6_c00406{margin-left:-1.020000px;}
._0_c00406{width:1.500000px;}
._1_c00406{width:2.640000px;}
._3_c00406{width:4.140000px;}
._2_c00406{width:5.340000px;}
._8_c00406{width:6.900000px;}
._15_c00406{width:8.460000px;}
._4_c00406{width:10.320000px;}
._e_c00406{width:11.760000px;}
._b_c00406{width:12.780000px;}
._29_c00406{width:14.940000px;}
._2a_c00406{width:16.380000px;}
._23_c00406{width:17.409000px;}
._17_c00406{width:18.480000px;}
._f_c00406{width:20.400000px;}
._c_c00406{width:21.960000px;}
._26_c00406{width:23.340000px;}
._12_c00406{width:25.080000px;}
._13_c00406{width:27.780000px;}
._10_c00406{width:29.400000px;}
._28_c00406{width:32.580000px;}
._2f_c00406{width:34.500000px;}
._27_c00406{width:36.780000px;}
._2e_c00406{width:46.740000px;}
._31_c00406{width:50.520000px;}
._25_c00406{width:59.073000px;}
._24_c00406{width:60.957000px;}
._9_c00406{width:70.860000px;}
._a_c00406{width:72.444000px;}
._16_c00406{width:73.980000px;}
._22_c00406{width:76.320000px;}
._2d_c00406{width:83.040000px;}
._32_c00406{width:85.080000px;}
._33_c00406{width:87.000000px;}
._1e_c00406{width:90.900000px;}
._18_c00406{width:118.599000px;}
._7_c00406{width:188.760000px;}
._1f_c00406{width:282.240000px;}
._30_c00406{width:385.260000px;}
._11_c00406{width:428.640000px;}
._20_c00406{width:435.960000px;}
.fc2_c00406{color:transparent;}
.fc1_c00406{color:rgb(128,128,128);}
.fc0_c00406{color:rgb(0,0,0);}
.fs5_c00406{font-size:42.000000px;}
.fs2_c00406{font-size:48.000000px;}
.fs3_c00406{font-size:51.000000px;}
.fs1_c00406{font-size:57.000000px;}
.fs0_c00406{font-size:60.000000px;}
.fs4_c00406{font-size:66.000000px;}
.y0_c00406{bottom:0.000000px;}
.y45_c00406{bottom:3.105000px;}
.y44_c00406{bottom:7.228371px;}
.y43_c00406{bottom:30.465000px;}
.y42_c00406{bottom:50.415000px;}
.y3c_c00406{bottom:51.615000px;}
.y41_c00406{bottom:68.265000px;}
.y3b_c00406{bottom:69.615000px;}
.y40_c00406{bottom:86.865000px;}
.y3a_c00406{bottom:88.515000px;}
.y3f_c00406{bottom:105.015000px;}
.y39_c00406{bottom:106.365000px;}
.y3e_c00406{bottom:122.565000px;}
.y38_c00406{bottom:124.515000px;}
.y3d_c00406{bottom:139.815000px;}
.y37_c00406{bottom:142.815000px;}
.y36_c00406{bottom:160.065000px;}
.y35_c00406{bottom:178.215000px;}
.y34_c00406{bottom:196.065000px;}
.y32_c00406{bottom:212.715000px;}
.y33_c00406{bottom:214.665000px;}
.y31_c00406{bottom:231.315000px;}
.y28_c00406{bottom:232.965000px;}
.y30_c00406{bottom:250.065000px;}
.y27_c00406{bottom:251.115000px;}
.y2f_c00406{bottom:268.065000px;}
.y26_c00406{bottom:270.015000px;}
.y2e_c00406{bottom:285.615000px;}
.y25_c00406{bottom:287.265000px;}
.y2d_c00406{bottom:303.465000px;}
.y24_c00406{bottom:305.115000px;}
.y2c_c00406{bottom:321.015000px;}
.y23_c00406{bottom:322.965000px;}
.y2b_c00406{bottom:339.915000px;}
.y22_c00406{bottom:341.265000px;}
.y2a_c00406{bottom:357.765000px;}
.y21_c00406{bottom:359.415000px;}
.y29_c00406{bottom:376.065000px;}
.y20_c00406{bottom:377.415000px;}
.y1f_c00406{bottom:394.215000px;}
.y1e_c00406{bottom:412.815000px;}
.y1d_c00406{bottom:430.065000px;}
.y18_c00406{bottom:431.415000px;}
.y1c_c00406{bottom:448.515000px;}
.y17_c00406{bottom:449.865000px;}
.y1b_c00406{bottom:467.115000px;}
.y16_c00406{bottom:467.565000px;}
.y15_c00406{bottom:485.415000px;}
.y1a_c00406{bottom:485.715000px;}
.y14_c00406{bottom:503.265000px;}
.y13_c00406{bottom:521.115000px;}
.y19_c00406{bottom:538.365000px;}
.y12_c00406{bottom:538.665000px;}
.yf_c00406{bottom:556.515000px;}
.ye_c00406{bottom:575.415000px;}
.yd_c00406{bottom:593.415000px;}
.yc_c00406{bottom:610.965000px;}
.yb_c00406{bottom:628.815000px;}
.y2_c00406{bottom:643.665000px;}
.ya_c00406{bottom:646.665000px;}
.y1_c00406{bottom:661.815000px;}
.y11_c00406{bottom:663.915000px;}
.y9_c00406{bottom:664.965000px;}
.y10_c00406{bottom:682.815000px;}
.y8_c00406{bottom:684.465000px;}
.y7_c00406{bottom:700.665000px;}
.y6_c00406{bottom:719.265000px;}
.y5_c00406{bottom:737.415000px;}
.y4_c00406{bottom:754.665000px;}
.y3_c00406{bottom:773.265000px;}
.h6_c00406{height:13.200074px;}
.h7_c00406{height:43.804688px;}
.h2_c00406{height:62.880000px;}
.h3_c00406{height:64.020000px;}
.h4_c00406{height:64.571777px;}
.h5_c00406{height:70.422000px;}
.h1_c00406{height:844.500000px;}
.h0_c00406{height:844.575000px;}
.w1_c00406{width:104.875500px;}
.w0_c00406{width:587.250000px;}
.x0_c00406{left:0.000000px;}
.x1_c00406{left:19.950000px;}
.x11_c00406{left:27.450000px;}
.x2_c00406{left:76.200000px;}
.x3_c00406{left:78.600000px;}
.x5_c00406{left:80.400000px;}
.x6_c00406{left:81.450000px;}
.x7_c00406{left:83.100000px;}
.x9_c00406{left:85.050000px;}
.xd_c00406{left:86.400000px;}
.x12_c00406{left:87.450000px;}
.x13_c00406{left:88.500000px;}
.x4_c00406{left:132.000000px;}
.x17_c00406{left:245.439240px;}
.xa_c00406{left:300.150000px;}
.xb_c00406{left:301.350000px;}
.xc_c00406{left:302.400000px;}
.xe_c00406{left:303.450000px;}
.xf_c00406{left:304.500000px;}
.x10_c00406{left:305.850000px;}
.x14_c00406{left:307.200000px;}
.x15_c00406{left:308.550000px;}
.x16_c00406{left:470.550000px;}
.x8_c00406{left:503.550000px;}
@media print{
.v0_c00406{vertical-align:0.000000pt;}
.lsc_c00406{letter-spacing:0.000000pt;}
.ls5_c00406{letter-spacing:2.666667pt;}
.ls8_c00406{letter-spacing:5.333333pt;}
.ls7_c00406{letter-spacing:5.866667pt;}
.ls1_c00406{letter-spacing:5.920000pt;}
.ls6_c00406{letter-spacing:6.933333pt;}
.ls0_c00406{letter-spacing:8.533333pt;}
.lsa_c00406{letter-spacing:9.600000pt;}
.lsb_c00406{letter-spacing:16.533333pt;}
.ls4_c00406{letter-spacing:39.866667pt;}
.ls2_c00406{letter-spacing:56.666667pt;}
.ls3_c00406{letter-spacing:57.200000pt;}
.ls9_c00406{letter-spacing:84.944000pt;}
.ws7_c00406{word-spacing:-18.080000pt;}
.ws1_c00406{word-spacing:-16.053333pt;}
.ws6_c00406{word-spacing:-16.000000pt;}
.ws2_c00406{word-spacing:-13.333333pt;}
.ws0_c00406{word-spacing:-12.586667pt;}
.ws5_c00406{word-spacing:-0.906667pt;}
.ws4_c00406{word-spacing:-0.725333pt;}
.ws8_c00406{word-spacing:-0.608000pt;}
.ws9_c00406{word-spacing:0.000000pt;}
.ws3_c00406{word-spacing:1.066667pt;}
._34_c00406{margin-left:-16.853333pt;}
._1a_c00406{margin-left:-14.136000pt;}
._19_c00406{margin-left:-13.173333pt;}
._2c_c00406{margin-left:-12.160000pt;}
._14_c00406{margin-left:-10.826667pt;}
._1b_c00406{margin-left:-9.173333pt;}
._2b_c00406{margin-left:-8.160000pt;}
._d_c00406{margin-left:-7.040000pt;}
._1c_c00406{margin-left:-5.546667pt;}
._21_c00406{margin-left:-4.533333pt;}
._1d_c00406{margin-left:-3.200000pt;}
._5_c00406{margin-left:-1.920000pt;}
._6_c00406{margin-left:-0.906667pt;}
._0_c00406{width:1.333333pt;}
._1_c00406{width:2.346667pt;}
._3_c00406{width:3.680000pt;}
._2_c00406{width:4.746667pt;}
._8_c00406{width:6.133333pt;}
._15_c00406{width:7.520000pt;}
._4_c00406{width:9.173333pt;}
._e_c00406{width:10.453333pt;}
._b_c00406{width:11.360000pt;}
._29_c00406{width:13.280000pt;}
._2a_c00406{width:14.560000pt;}
._23_c00406{width:15.474667pt;}
._17_c00406{width:16.426667pt;}
._f_c00406{width:18.133333pt;}
._c_c00406{width:19.520000pt;}
._26_c00406{width:20.746667pt;}
._12_c00406{width:22.293333pt;}
._13_c00406{width:24.693333pt;}
._10_c00406{width:26.133333pt;}
._28_c00406{width:28.960000pt;}
._2f_c00406{width:30.666667pt;}
._27_c00406{width:32.693333pt;}
._2e_c00406{width:41.546667pt;}
._31_c00406{width:44.906667pt;}
._25_c00406{width:52.509333pt;}
._24_c00406{width:54.184000pt;}
._9_c00406{width:62.986667pt;}
._a_c00406{width:64.394667pt;}
._16_c00406{width:65.760000pt;}
._22_c00406{width:67.840000pt;}
._2d_c00406{width:73.813333pt;}
._32_c00406{width:75.626667pt;}
._33_c00406{width:77.333333pt;}
._1e_c00406{width:80.800000pt;}
._18_c00406{width:105.421333pt;}
._7_c00406{width:167.786667pt;}
._1f_c00406{width:250.880000pt;}
._30_c00406{width:342.453333pt;}
._11_c00406{width:381.013333pt;}
._20_c00406{width:387.520000pt;}
.fs5_c00406{font-size:37.333333pt;}
.fs2_c00406{font-size:42.666667pt;}
.fs3_c00406{font-size:45.333333pt;}
.fs1_c00406{font-size:50.666667pt;}
.fs0_c00406{font-size:53.333333pt;}
.fs4_c00406{font-size:58.666667pt;}
.y0_c00406{bottom:0.000000pt;}
.y45_c00406{bottom:2.760000pt;}
.y44_c00406{bottom:6.425219pt;}
.y43_c00406{bottom:27.080000pt;}
.y42_c00406{bottom:44.813333pt;}
.y3c_c00406{bottom:45.880000pt;}
.y41_c00406{bottom:60.680000pt;}
.y3b_c00406{bottom:61.880000pt;}
.y40_c00406{bottom:77.213333pt;}
.y3a_c00406{bottom:78.680000pt;}
.y3f_c00406{bottom:93.346667pt;}
.y39_c00406{bottom:94.546667pt;}
.y3e_c00406{bottom:108.946667pt;}
.y38_c00406{bottom:110.680000pt;}
.y3d_c00406{bottom:124.280000pt;}
.y37_c00406{bottom:126.946667pt;}
.y36_c00406{bottom:142.280000pt;}
.y35_c00406{bottom:158.413333pt;}
.y34_c00406{bottom:174.280000pt;}
.y32_c00406{bottom:189.080000pt;}
.y33_c00406{bottom:190.813333pt;}
.y31_c00406{bottom:205.613333pt;}
.y28_c00406{bottom:207.080000pt;}
.y30_c00406{bottom:222.280000pt;}
.y27_c00406{bottom:223.213333pt;}
.y2f_c00406{bottom:238.280000pt;}
.y26_c00406{bottom:240.013333pt;}
.y2e_c00406{bottom:253.880000pt;}
.y25_c00406{bottom:255.346667pt;}
.y2d_c00406{bottom:269.746667pt;}
.y24_c00406{bottom:271.213333pt;}
.y2c_c00406{bottom:285.346667pt;}
.y23_c00406{bottom:287.080000pt;}
.y2b_c00406{bottom:302.146667pt;}
.y22_c00406{bottom:303.346667pt;}
.y2a_c00406{bottom:318.013333pt;}
.y21_c00406{bottom:319.480000pt;}
.y29_c00406{bottom:334.280000pt;}
.y20_c00406{bottom:335.480000pt;}
.y1f_c00406{bottom:350.413333pt;}
.y1e_c00406{bottom:366.946667pt;}
.y1d_c00406{bottom:382.280000pt;}
.y18_c00406{bottom:383.480000pt;}
.y1c_c00406{bottom:398.680000pt;}
.y17_c00406{bottom:399.880000pt;}
.y1b_c00406{bottom:415.213333pt;}
.y16_c00406{bottom:415.613333pt;}
.y15_c00406{bottom:431.480000pt;}
.y1a_c00406{bottom:431.746667pt;}
.y14_c00406{bottom:447.346667pt;}
.y13_c00406{bottom:463.213333pt;}
.y19_c00406{bottom:478.546667pt;}
.y12_c00406{bottom:478.813333pt;}
.yf_c00406{bottom:494.680000pt;}
.ye_c00406{bottom:511.480000pt;}
.yd_c00406{bottom:527.480000pt;}
.yc_c00406{bottom:543.080000pt;}
.yb_c00406{bottom:558.946667pt;}
.y2_c00406{bottom:572.146667pt;}
.ya_c00406{bottom:574.813333pt;}
.y1_c00406{bottom:588.280000pt;}
.y11_c00406{bottom:590.146667pt;}
.y9_c00406{bottom:591.080000pt;}
.y10_c00406{bottom:606.946667pt;}
.y8_c00406{bottom:608.413333pt;}
.y7_c00406{bottom:622.813333pt;}
.y6_c00406{bottom:639.346667pt;}
.y5_c00406{bottom:655.480000pt;}
.y4_c00406{bottom:670.813333pt;}
.y3_c00406{bottom:687.346667pt;}
.h6_c00406{height:11.733399pt;}
.h7_c00406{height:38.937500pt;}
.h2_c00406{height:55.893333pt;}
.h3_c00406{height:56.906667pt;}
.h4_c00406{height:57.397135pt;}
.h5_c00406{height:62.597333pt;}
.h1_c00406{height:750.666667pt;}
.h0_c00406{height:750.733333pt;}
.w1_c00406{width:93.222667pt;}
.w0_c00406{width:522.000000pt;}
.x0_c00406{left:0.000000pt;}
.x1_c00406{left:17.733333pt;}
.x11_c00406{left:24.400000pt;}
.x2_c00406{left:67.733333pt;}
.x3_c00406{left:69.866667pt;}
.x5_c00406{left:71.466667pt;}
.x6_c00406{left:72.400000pt;}
.x7_c00406{left:73.866667pt;}
.x9_c00406{left:75.600000pt;}
.xd_c00406{left:76.800000pt;}
.x12_c00406{left:77.733333pt;}
.x13_c00406{left:78.666667pt;}
.x4_c00406{left:117.333333pt;}
.x17_c00406{left:218.168213pt;}
.xa_c00406{left:266.800000pt;}
.xb_c00406{left:267.866667pt;}
.xc_c00406{left:268.800000pt;}
.xe_c00406{left:269.733333pt;}
.xf_c00406{left:270.666667pt;}
.x10_c00406{left:271.866667pt;}
.x14_c00406{left:273.066667pt;}
.x15_c00406{left:274.266667pt;}
.x16_c00406{left:418.266667pt;}
.x8_c00406{left:447.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_7d82d3d6f2ff3489f4eeb4bf.woff2')format("woff");}.ff1_c00407{font-family:ff1_c00407;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00407;src:url('chunks/assets/font_21b0fb3d96e8f7e367908aab.woff2')format("woff");}.ff2_c00407{font-family:ff2_c00407;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00407;src:url('chunks/assets/font_97cd7a999024288b15f09abe.woff2')format("woff");}.ff3_c00407{font-family:ff3_c00407;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00407;src:url('chunks/assets/font_e1c314d7966062c41fd41128.woff2')format("woff");}.ff4_c00407{font-family:ff4_c00407;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00407;src:url('chunks/assets/font_2a031a43d6a6a1f4afeace0b.woff2')format("woff");}.ff5_c00407{font-family:ff5_c00407;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00407;src:url('chunks/assets/font_721bfb119da4c51049d165e5.woff2')format("woff");}.ff6_c00407{font-family:ff6_c00407;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00407;src:url('chunks/assets/font_e1fb1fb036df6b474b096171.woff2')format("woff");}.ff7_c00407{font-family:ff7_c00407;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:ff8_c00407;src:url('chunks/assets/font_b5ebef10bf47f4993fa6267f.woff2')format("woff");}.ff8_c00407{font-family:ff8_c00407;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00407;src:url('chunks/assets/font_55eb9db8683fc23c726f566e.woff2')format("woff");}.ff9_c00407{font-family:ff9_c00407;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00407;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ffa_c00407{font-family:ffa_c00407;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00407{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00407{vertical-align:0.000000px;}
.v1_c00407{vertical-align:106.800000px;}
.ls5_c00407{letter-spacing:0.000000px;}
.ls4_c00407{letter-spacing:1.005000px;}
.ls0_c00407{letter-spacing:3.000000px;}
.ls6_c00407{letter-spacing:6.000000px;}
.ls3_c00407{letter-spacing:13.200000px;}
.ls1_c00407{letter-spacing:100.350000px;}
.ls2_c00407{letter-spacing:207.750000px;}
.sc__c00407{text-shadow:none;}
.sc0_c00407{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00407{-webkit-text-stroke:0px transparent;}
.sc0_c00407{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00407{word-spacing:-119.910000px;}
.ws0_c00407{word-spacing:-32.424000px;}
.ws3_c00407{word-spacing:-25.854000px;}
.ws1_c00407{word-spacing:-20.340000px;}
.ws5_c00407{word-spacing:-14.160000px;}
.ws2_c00407{word-spacing:-0.420000px;}
.ws6_c00407{word-spacing:0.000000px;}
._2b_c00407{margin-left:-22.599000px;}
._2c_c00407{margin-left:-21.303000px;}
._2d_c00407{margin-left:-19.716000px;}
._1e_c00407{margin-left:-18.000000px;}
._3c_c00407{margin-left:-14.580000px;}
._2a_c00407{margin-left:-12.648000px;}
._39_c00407{margin-left:-10.920000px;}
._26_c00407{margin-left:-9.480000px;}
._3b_c00407{margin-left:-8.460000px;}
._19_c00407{margin-left:-7.140000px;}
._1a_c00407{margin-left:-5.760000px;}
._3a_c00407{margin-left:-4.680000px;}
._e_c00407{margin-left:-3.540000px;}
._12_c00407{margin-left:-2.520000px;}
._2_c00407{margin-left:-1.500000px;}
._3_c00407{width:1.020000px;}
._0_c00407{width:2.100000px;}
._6_c00407{width:3.420000px;}
._b_c00407{width:5.280000px;}
._1b_c00407{width:6.420000px;}
._a_c00407{width:7.560000px;}
._13_c00407{width:9.060000px;}
._8_c00407{width:10.680000px;}
._1_c00407{width:11.880000px;}
._c_c00407{width:13.560000px;}
._5_c00407{width:14.940000px;}
._1d_c00407{width:16.320000px;}
._21_c00407{width:19.140000px;}
._9_c00407{width:21.060000px;}
._38_c00407{width:22.380000px;}
._f_c00407{width:23.820000px;}
._15_c00407{width:25.980000px;}
._10_c00407{width:27.060000px;}
._14_c00407{width:28.200000px;}
._31_c00407{width:34.320000px;}
._36_c00407{width:35.460000px;}
._34_c00407{width:41.340000px;}
._35_c00407{width:42.900000px;}
._3d_c00407{width:43.980000px;}
._30_c00407{width:45.600000px;}
._2f_c00407{width:46.800000px;}
._27_c00407{width:49.260000px;}
._4_c00407{width:76.620000px;}
._20_c00407{width:77.961000px;}
._25_c00407{width:81.960000px;}
._d_c00407{width:84.180000px;}
._11_c00407{width:86.340000px;}
._23_c00407{width:87.360000px;}
._7_c00407{width:90.300000px;}
._33_c00407{width:91.380000px;}
._24_c00407{width:93.000000px;}
._18_c00407{width:94.380000px;}
._1c_c00407{width:95.580000px;}
._22_c00407{width:96.660000px;}
._32_c00407{width:97.980000px;}
._37_c00407{width:102.840000px;}
._17_c00407{width:122.820000px;}
._29_c00407{width:189.624000px;}
._1f_c00407{width:285.360000px;}
._2e_c00407{width:329.973000px;}
._28_c00407{width:363.420000px;}
._16_c00407{width:573.900000px;}
.fc2_c00407{color:transparent;}
.fc1_c00407{color:rgb(128,128,128);}
.fc0_c00407{color:rgb(0,0,0);}
.fs7_c00407{font-size:45.000000px;}
.fs1_c00407{font-size:48.000000px;}
.fs3_c00407{font-size:54.000000px;}
.fs2_c00407{font-size:57.000000px;}
.fs0_c00407{font-size:60.000000px;}
.fs4_c00407{font-size:72.000000px;}
.fs5_c00407{font-size:93.000000px;}
.fs6_c00407{font-size:210.000000px;}
.y0_c00407{bottom:0.000000px;}
.y2b_c00407{bottom:3.105000px;}
.y2a_c00407{bottom:7.228355px;}
.y29_c00407{bottom:44.835000px;}
.y28_c00407{bottom:62.985000px;}
.y27_c00407{bottom:80.985000px;}
.y26_c00407{bottom:98.835000px;}
.y25_c00407{bottom:116.985000px;}
.y24_c00407{bottom:134.835000px;}
.y23_c00407{bottom:152.535000px;}
.y22_c00407{bottom:171.735000px;}
.y21_c00407{bottom:189.885000px;}
.y20_c00407{bottom:207.735000px;}
.y1f_c00407{bottom:225.735000px;}
.y1d_c00407{bottom:240.285000px;}
.y1e_c00407{bottom:249.435000px;}
.y1c_c00407{bottom:285.435000px;}
.y1b_c00407{bottom:302.985000px;}
.y1a_c00407{bottom:320.835000px;}
.y19_c00407{bottom:338.835000px;}
.y18_c00407{bottom:357.285000px;}
.y17_c00407{bottom:375.585000px;}
.y16_c00407{bottom:392.835000px;}
.y15_c00407{bottom:411.285000px;}
.y14_c00407{bottom:428.835000px;}
.y13_c00407{bottom:447.435000px;}
.y12_c00407{bottom:466.035000px;}
.y11_c00407{bottom:484.335000px;}
.y10_c00407{bottom:501.735000px;}
.yf_c00407{bottom:519.735000px;}
.ye_c00407{bottom:538.185000px;}
.yd_c00407{bottom:555.885000px;}
.yc_c00407{bottom:574.035000px;}
.yb_c00407{bottom:592.185000px;}
.ya_c00407{bottom:609.435000px;}
.y9_c00407{bottom:628.335000px;}
.y8_c00407{bottom:645.885000px;}
.y7_c00407{bottom:663.885000px;}
.y6_c00407{bottom:681.735000px;}
.y5_c00407{bottom:700.185000px;}
.y4_c00407{bottom:718.185000px;}
.y3_c00407{bottom:736.335000px;}
.y2_c00407{bottom:754.935000px;}
.y1_c00407{bottom:772.485000px;}
.h6_c00407{height:13.200074px;}
.h7_c00407{height:43.804688px;}
.h2_c00407{height:62.880000px;}
.h3_c00407{height:64.020000px;}
.h4_c00407{height:96.996094px;}
.h5_c00407{height:224.070000px;}
.h1_c00407{height:846.750000px;}
.h0_c00407{height:846.975000px;}
.w2_c00407{width:104.875500px;}
.w0_c00407{width:568.875000px;}
.w1_c00407{width:569.250000px;}
.x0_c00407{left:0.000000px;}
.x4_c00407{left:63.150000px;}
.xd_c00407{left:67.500000px;}
.x9_c00407{left:68.550000px;}
.xe_c00407{left:71.850000px;}
.xb_c00407{left:73.200000px;}
.x2_c00407{left:75.000000px;}
.x3_c00407{left:76.200000px;}
.x1_c00407{left:77.700000px;}
.x8_c00407{left:102.300000px;}
.xc_c00407{left:112.350000px;}
.x6_c00407{left:144.450000px;}
.xf_c00407{left:236.251740px;}
.x5_c00407{left:280.800000px;}
.xa_c00407{left:290.250000px;}
.x7_c00407{left:291.600000px;}
@media print{
.v0_c00407{vertical-align:0.000000pt;}
.v1_c00407{vertical-align:94.933333pt;}
.ls5_c00407{letter-spacing:0.000000pt;}
.ls4_c00407{letter-spacing:0.893333pt;}
.ls0_c00407{letter-spacing:2.666667pt;}
.ls6_c00407{letter-spacing:5.333333pt;}
.ls3_c00407{letter-spacing:11.733333pt;}
.ls1_c00407{letter-spacing:89.200000pt;}
.ls2_c00407{letter-spacing:184.666667pt;}
.ws4_c00407{word-spacing:-106.586667pt;}
.ws0_c00407{word-spacing:-28.821333pt;}
.ws3_c00407{word-spacing:-22.981333pt;}
.ws1_c00407{word-spacing:-18.080000pt;}
.ws5_c00407{word-spacing:-12.586667pt;}
.ws2_c00407{word-spacing:-0.373333pt;}
.ws6_c00407{word-spacing:0.000000pt;}
._2b_c00407{margin-left:-20.088000pt;}
._2c_c00407{margin-left:-18.936000pt;}
._2d_c00407{margin-left:-17.525333pt;}
._1e_c00407{margin-left:-16.000000pt;}
._3c_c00407{margin-left:-12.960000pt;}
._2a_c00407{margin-left:-11.242667pt;}
._39_c00407{margin-left:-9.706667pt;}
._26_c00407{margin-left:-8.426667pt;}
._3b_c00407{margin-left:-7.520000pt;}
._19_c00407{margin-left:-6.346667pt;}
._1a_c00407{margin-left:-5.120000pt;}
._3a_c00407{margin-left:-4.160000pt;}
._e_c00407{margin-left:-3.146667pt;}
._12_c00407{margin-left:-2.240000pt;}
._2_c00407{margin-left:-1.333333pt;}
._3_c00407{width:0.906667pt;}
._0_c00407{width:1.866667pt;}
._6_c00407{width:3.040000pt;}
._b_c00407{width:4.693333pt;}
._1b_c00407{width:5.706667pt;}
._a_c00407{width:6.720000pt;}
._13_c00407{width:8.053333pt;}
._8_c00407{width:9.493333pt;}
._1_c00407{width:10.560000pt;}
._c_c00407{width:12.053333pt;}
._5_c00407{width:13.280000pt;}
._1d_c00407{width:14.506667pt;}
._21_c00407{width:17.013333pt;}
._9_c00407{width:18.720000pt;}
._38_c00407{width:19.893333pt;}
._f_c00407{width:21.173333pt;}
._15_c00407{width:23.093333pt;}
._10_c00407{width:24.053333pt;}
._14_c00407{width:25.066667pt;}
._31_c00407{width:30.506667pt;}
._36_c00407{width:31.520000pt;}
._34_c00407{width:36.746667pt;}
._35_c00407{width:38.133333pt;}
._3d_c00407{width:39.093333pt;}
._30_c00407{width:40.533333pt;}
._2f_c00407{width:41.600000pt;}
._27_c00407{width:43.786667pt;}
._4_c00407{width:68.106667pt;}
._20_c00407{width:69.298667pt;}
._25_c00407{width:72.853333pt;}
._d_c00407{width:74.826667pt;}
._11_c00407{width:76.746667pt;}
._23_c00407{width:77.653333pt;}
._7_c00407{width:80.266667pt;}
._33_c00407{width:81.226667pt;}
._24_c00407{width:82.666667pt;}
._18_c00407{width:83.893333pt;}
._1c_c00407{width:84.960000pt;}
._22_c00407{width:85.920000pt;}
._32_c00407{width:87.093333pt;}
._37_c00407{width:91.413333pt;}
._17_c00407{width:109.173333pt;}
._29_c00407{width:168.554667pt;}
._1f_c00407{width:253.653333pt;}
._2e_c00407{width:293.309333pt;}
._28_c00407{width:323.040000pt;}
._16_c00407{width:510.133333pt;}
.fs7_c00407{font-size:40.000000pt;}
.fs1_c00407{font-size:42.666667pt;}
.fs3_c00407{font-size:48.000000pt;}
.fs2_c00407{font-size:50.666667pt;}
.fs0_c00407{font-size:53.333333pt;}
.fs4_c00407{font-size:64.000000pt;}
.fs5_c00407{font-size:82.666667pt;}
.fs6_c00407{font-size:186.666667pt;}
.y0_c00407{bottom:0.000000pt;}
.y2b_c00407{bottom:2.760000pt;}
.y2a_c00407{bottom:6.425204pt;}
.y29_c00407{bottom:39.853333pt;}
.y28_c00407{bottom:55.986667pt;}
.y27_c00407{bottom:71.986667pt;}
.y26_c00407{bottom:87.853333pt;}
.y25_c00407{bottom:103.986667pt;}
.y24_c00407{bottom:119.853333pt;}
.y23_c00407{bottom:135.586667pt;}
.y22_c00407{bottom:152.653333pt;}
.y21_c00407{bottom:168.786667pt;}
.y20_c00407{bottom:184.653333pt;}
.y1f_c00407{bottom:200.653333pt;}
.y1d_c00407{bottom:213.586667pt;}
.y1e_c00407{bottom:221.720000pt;}
.y1c_c00407{bottom:253.720000pt;}
.y1b_c00407{bottom:269.320000pt;}
.y1a_c00407{bottom:285.186667pt;}
.y19_c00407{bottom:301.186667pt;}
.y18_c00407{bottom:317.586667pt;}
.y17_c00407{bottom:333.853333pt;}
.y16_c00407{bottom:349.186667pt;}
.y15_c00407{bottom:365.586667pt;}
.y14_c00407{bottom:381.186667pt;}
.y13_c00407{bottom:397.720000pt;}
.y12_c00407{bottom:414.253333pt;}
.y11_c00407{bottom:430.520000pt;}
.y10_c00407{bottom:445.986667pt;}
.yf_c00407{bottom:461.986667pt;}
.ye_c00407{bottom:478.386667pt;}
.yd_c00407{bottom:494.120000pt;}
.yc_c00407{bottom:510.253333pt;}
.yb_c00407{bottom:526.386667pt;}
.ya_c00407{bottom:541.720000pt;}
.y9_c00407{bottom:558.520000pt;}
.y8_c00407{bottom:574.120000pt;}
.y7_c00407{bottom:590.120000pt;}
.y6_c00407{bottom:605.986667pt;}
.y5_c00407{bottom:622.386667pt;}
.y4_c00407{bottom:638.386667pt;}
.y3_c00407{bottom:654.520000pt;}
.y2_c00407{bottom:671.053333pt;}
.y1_c00407{bottom:686.653333pt;}
.h6_c00407{height:11.733399pt;}
.h7_c00407{height:38.937500pt;}
.h2_c00407{height:55.893333pt;}
.h3_c00407{height:56.906667pt;}
.h4_c00407{height:86.218750pt;}
.h5_c00407{height:199.173333pt;}
.h1_c00407{height:752.666667pt;}
.h0_c00407{height:752.866667pt;}
.w2_c00407{width:93.222667pt;}
.w0_c00407{width:505.666667pt;}
.w1_c00407{width:506.000000pt;}
.x0_c00407{left:0.000000pt;}
.x4_c00407{left:56.133333pt;}
.xd_c00407{left:60.000000pt;}
.x9_c00407{left:60.933333pt;}
.xe_c00407{left:63.866667pt;}
.xb_c00407{left:65.066667pt;}
.x2_c00407{left:66.666667pt;}
.x3_c00407{left:67.733333pt;}
.x1_c00407{left:69.066667pt;}
.x8_c00407{left:90.933333pt;}
.xc_c00407{left:99.866667pt;}
.x6_c00407{left:128.400000pt;}
.xf_c00407{left:210.001546pt;}
.x5_c00407{left:249.600000pt;}
.xa_c00407{left:258.000000pt;}
.x7_c00407{left:259.200000pt;}
}





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

.ir_c00408:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00408{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00408;src:url('chunks/assets/font_fa66678c7b8f11ac32b99275.woff2')format("woff");}.ff1_c00408{font-family:ff1_c00408;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00408;src:url('chunks/assets/font_5fa67c6d50e489c6605321ba.woff2')format("woff");}.ff2_c00408{font-family:ff2_c00408;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00408;src:url('chunks/assets/font_b6666964beab192e3ab14709.woff2')format("woff");}.ff3_c00408{font-family:ff3_c00408;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00408;src:url('chunks/assets/font_159fb37d54631936ea32a085.woff2')format("woff");}.ff4_c00408{font-family:ff4_c00408;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00408;src:url('chunks/assets/font_0ce391de997f24f9f9dd37f4.woff2')format("woff");}.ff5_c00408{font-family:ff5_c00408;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00408;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff6_c00408{font-family:ff6_c00408;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00408{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00408{vertical-align:0.000000px;}
.ls4_c00408{letter-spacing:0.000000px;}
.ls1_c00408{letter-spacing:3.000000px;}
.ls0_c00408{letter-spacing:4.200000px;}
.ls5_c00408{letter-spacing:6.000000px;}
.ls3_c00408{letter-spacing:12.000000px;}
.ls2_c00408{letter-spacing:14.805000px;}
.sc__c00408{text-shadow:none;}
.sc0_c00408{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00408{-webkit-text-stroke:0px transparent;}
.sc0_c00408{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00408{word-spacing:-20.340000px;}
.ws2_c00408{word-spacing:-18.060000px;}
.ws0_c00408{word-spacing:-14.160000px;}
.ws3_c00408{word-spacing:0.000000px;}
._25_c00408{margin-left:-19.920000px;}
._15_c00408{margin-left:-18.900000px;}
._1d_c00408{margin-left:-15.120000px;}
._c_c00408{margin-left:-13.200000px;}
._14_c00408{margin-left:-11.220000px;}
._28_c00408{margin-left:-9.900000px;}
._11_c00408{margin-left:-8.880000px;}
._e_c00408{margin-left:-7.860000px;}
._18_c00408{margin-left:-6.780000px;}
._6_c00408{margin-left:-5.760000px;}
._f_c00408{margin-left:-4.080000px;}
._d_c00408{margin-left:-3.060000px;}
._3_c00408{margin-left:-1.680000px;}
._8_c00408{width:1.740000px;}
._0_c00408{width:3.480000px;}
._a_c00408{width:4.500000px;}
._10_c00408{width:6.240000px;}
._1c_c00408{width:7.380000px;}
._19_c00408{width:8.400000px;}
._1_c00408{width:9.600000px;}
._1a_c00408{width:11.040000px;}
._7_c00408{width:12.480000px;}
._20_c00408{width:13.680000px;}
._4_c00408{width:15.300000px;}
._1b_c00408{width:16.980000px;}
._23_c00408{width:19.200000px;}
._17_c00408{width:20.640000px;}
._21_c00408{width:21.660000px;}
._5_c00408{width:23.580000px;}
._2_c00408{width:24.840000px;}
._12_c00408{width:26.400000px;}
._16_c00408{width:28.380000px;}
._22_c00408{width:33.420000px;}
._13_c00408{width:34.860000px;}
._1e_c00408{width:37.200000px;}
._1f_c00408{width:40.680000px;}
._9_c00408{width:42.060000px;}
._29_c00408{width:45.300000px;}
._2a_c00408{width:47.400000px;}
._24_c00408{width:50.520000px;}
._2c_c00408{width:51.960000px;}
._2b_c00408{width:53.700000px;}
._26_c00408{width:104.940000px;}
._b_c00408{width:166.140000px;}
._27_c00408{width:182.880000px;}
.fc2_c00408{color:transparent;}
.fc1_c00408{color:rgb(128,128,128);}
.fc0_c00408{color:rgb(0,0,0);}
.fs2_c00408{font-size:45.000000px;}
.fs3_c00408{font-size:48.000000px;}
.fs1_c00408{font-size:54.000000px;}
.fs0_c00408{font-size:60.000000px;}
.y0_c00408{bottom:0.000000px;}
.y51_c00408{bottom:3.105000px;}
.y50_c00408{bottom:7.228371px;}
.y4f_c00408{bottom:45.915000px;}
.y2c_c00408{bottom:48.915000px;}
.y4e_c00408{bottom:64.815000px;}
.y2b_c00408{bottom:67.515000px;}
.y4d_c00408{bottom:82.815000px;}
.y2a_c00408{bottom:85.365000px;}
.y4c_c00408{bottom:100.965000px;}
.y29_c00408{bottom:101.715000px;}
.y4b_c00408{bottom:119.115000px;}
.y28_c00408{bottom:121.515000px;}
.y4a_c00408{bottom:137.415000px;}
.y27_c00408{bottom:139.365000px;}
.y49_c00408{bottom:154.965000px;}
.y26_c00408{bottom:157.965000px;}
.y48_c00408{bottom:173.565000px;}
.y25_c00408{bottom:176.265000px;}
.y47_c00408{bottom:191.415000px;}
.y24_c00408{bottom:194.865000px;}
.y46_c00408{bottom:209.565000px;}
.y23_c00408{bottom:212.415000px;}
.y45_c00408{bottom:227.565000px;}
.y22_c00408{bottom:230.565000px;}
.y44_c00408{bottom:245.715000px;}
.y21_c00408{bottom:248.865000px;}
.y43_c00408{bottom:263.715000px;}
.y20_c00408{bottom:265.365000px;}
.y42_c00408{bottom:282.465000px;}
.y1f_c00408{bottom:284.565000px;}
.y41_c00408{bottom:300.015000px;}
.y1e_c00408{bottom:302.415000px;}
.y40_c00408{bottom:318.615000px;}
.y1d_c00408{bottom:319.965000px;}
.y1c_c00408{bottom:338.565000px;}
.y3f_c00408{bottom:354.165000px;}
.y1b_c00408{bottom:357.465000px;}
.y3e_c00408{bottom:372.615000px;}
.y1a_c00408{bottom:375.015000px;}
.y3d_c00408{bottom:390.165000px;}
.y19_c00408{bottom:392.865000px;}
.y3c_c00408{bottom:408.165000px;}
.y18_c00408{bottom:410.715000px;}
.y3b_c00408{bottom:426.615000px;}
.y17_c00408{bottom:429.015000px;}
.y3a_c00408{bottom:444.615000px;}
.y16_c00408{bottom:446.865000px;}
.y39_c00408{bottom:462.465000px;}
.y15_c00408{bottom:464.865000px;}
.y38_c00408{bottom:481.365000px;}
.y14_c00408{bottom:483.015000px;}
.y37_c00408{bottom:497.865000px;}
.y13_c00408{bottom:500.865000px;}
.y36_c00408{bottom:516.165000px;}
.y12_c00408{bottom:518.415000px;}
.y35_c00408{bottom:535.365000px;}
.y11_c00408{bottom:535.965000px;}
.y34_c00408{bottom:553.515000px;}
.y10_c00408{bottom:554.265000px;}
.yf_c00408{bottom:571.815000px;}
.y33_c00408{bottom:588.315000px;}
.ye_c00408{bottom:590.715000px;}
.y32_c00408{bottom:607.515000px;}
.yd_c00408{bottom:607.815000px;}
.y31_c00408{bottom:625.815000px;}
.yc_c00408{bottom:626.265000px;}
.yb_c00408{bottom:644.415000px;}
.y30_c00408{bottom:644.715000px;}
.ya_c00408{bottom:662.565000px;}
.y2f_c00408{bottom:680.415000px;}
.y9_c00408{bottom:680.715000px;}
.y2e_c00408{bottom:697.965000px;}
.y8_c00408{bottom:699.015000px;}
.y2d_c00408{bottom:715.815000px;}
.y4_c00408{bottom:716.565000px;}
.y7_c00408{bottom:716.865000px;}
.y3_c00408{bottom:734.865000px;}
.y6_c00408{bottom:735.165000px;}
.y2_c00408{bottom:752.265000px;}
.y5_c00408{bottom:753.315000px;}
.y1_c00408{bottom:770.565000px;}
.h5_c00408{height:13.200074px;}
.h6_c00408{height:43.804688px;}
.h4_c00408{height:56.592000px;}
.h3_c00408{height:62.880000px;}
.h2_c00408{height:64.020000px;}
.h1_c00408{height:844.500000px;}
.h0_c00408{height:844.575000px;}
.w1_c00408{width:104.875500px;}
.w0_c00408{width:587.250000px;}
.x0_c00408{left:0.000000px;}
.x5_c00408{left:77.250000px;}
.x4_c00408{left:79.350000px;}
.x3_c00408{left:81.900000px;}
.x6_c00408{left:83.250000px;}
.x7_c00408{left:84.300000px;}
.x8_c00408{left:85.350000px;}
.x1_c00408{left:119.100000px;}
.xf_c00408{left:245.439240px;}
.x2_c00408{left:300.300000px;}
.xb_c00408{left:301.350000px;}
.xc_c00408{left:302.400000px;}
.xd_c00408{left:303.450000px;}
.xa_c00408{left:327.750000px;}
.xe_c00408{left:332.700000px;}
.x9_c00408{left:356.700000px;}
@media print{
.v0_c00408{vertical-align:0.000000pt;}
.ls4_c00408{letter-spacing:0.000000pt;}
.ls1_c00408{letter-spacing:2.666667pt;}
.ls0_c00408{letter-spacing:3.733333pt;}
.ls5_c00408{letter-spacing:5.333333pt;}
.ls3_c00408{letter-spacing:10.666667pt;}
.ls2_c00408{letter-spacing:13.160000pt;}
.ws1_c00408{word-spacing:-18.080000pt;}
.ws2_c00408{word-spacing:-16.053333pt;}
.ws0_c00408{word-spacing:-12.586667pt;}
.ws3_c00408{word-spacing:0.000000pt;}
._25_c00408{margin-left:-17.706667pt;}
._15_c00408{margin-left:-16.800000pt;}
._1d_c00408{margin-left:-13.440000pt;}
._c_c00408{margin-left:-11.733333pt;}
._14_c00408{margin-left:-9.973333pt;}
._28_c00408{margin-left:-8.800000pt;}
._11_c00408{margin-left:-7.893333pt;}
._e_c00408{margin-left:-6.986667pt;}
._18_c00408{margin-left:-6.026667pt;}
._6_c00408{margin-left:-5.120000pt;}
._f_c00408{margin-left:-3.626667pt;}
._d_c00408{margin-left:-2.720000pt;}
._3_c00408{margin-left:-1.493333pt;}
._8_c00408{width:1.546667pt;}
._0_c00408{width:3.093333pt;}
._a_c00408{width:4.000000pt;}
._10_c00408{width:5.546667pt;}
._1c_c00408{width:6.560000pt;}
._19_c00408{width:7.466667pt;}
._1_c00408{width:8.533333pt;}
._1a_c00408{width:9.813333pt;}
._7_c00408{width:11.093333pt;}
._20_c00408{width:12.160000pt;}
._4_c00408{width:13.600000pt;}
._1b_c00408{width:15.093333pt;}
._23_c00408{width:17.066667pt;}
._17_c00408{width:18.346667pt;}
._21_c00408{width:19.253333pt;}
._5_c00408{width:20.960000pt;}
._2_c00408{width:22.080000pt;}
._12_c00408{width:23.466667pt;}
._16_c00408{width:25.226667pt;}
._22_c00408{width:29.706667pt;}
._13_c00408{width:30.986667pt;}
._1e_c00408{width:33.066667pt;}
._1f_c00408{width:36.160000pt;}
._9_c00408{width:37.386667pt;}
._29_c00408{width:40.266667pt;}
._2a_c00408{width:42.133333pt;}
._24_c00408{width:44.906667pt;}
._2c_c00408{width:46.186667pt;}
._2b_c00408{width:47.733333pt;}
._26_c00408{width:93.280000pt;}
._b_c00408{width:147.680000pt;}
._27_c00408{width:162.560000pt;}
.fs2_c00408{font-size:40.000000pt;}
.fs3_c00408{font-size:42.666667pt;}
.fs1_c00408{font-size:48.000000pt;}
.fs0_c00408{font-size:53.333333pt;}
.y0_c00408{bottom:0.000000pt;}
.y51_c00408{bottom:2.760000pt;}
.y50_c00408{bottom:6.425219pt;}
.y4f_c00408{bottom:40.813333pt;}
.y2c_c00408{bottom:43.480000pt;}
.y4e_c00408{bottom:57.613333pt;}
.y2b_c00408{bottom:60.013333pt;}
.y4d_c00408{bottom:73.613333pt;}
.y2a_c00408{bottom:75.880000pt;}
.y4c_c00408{bottom:89.746667pt;}
.y29_c00408{bottom:90.413333pt;}
.y4b_c00408{bottom:105.880000pt;}
.y28_c00408{bottom:108.013333pt;}
.y4a_c00408{bottom:122.146667pt;}
.y27_c00408{bottom:123.880000pt;}
.y49_c00408{bottom:137.746667pt;}
.y26_c00408{bottom:140.413333pt;}
.y48_c00408{bottom:154.280000pt;}
.y25_c00408{bottom:156.680000pt;}
.y47_c00408{bottom:170.146667pt;}
.y24_c00408{bottom:173.213333pt;}
.y46_c00408{bottom:186.280000pt;}
.y23_c00408{bottom:188.813333pt;}
.y45_c00408{bottom:202.280000pt;}
.y22_c00408{bottom:204.946667pt;}
.y44_c00408{bottom:218.413333pt;}
.y21_c00408{bottom:221.213333pt;}
.y43_c00408{bottom:234.413333pt;}
.y20_c00408{bottom:235.880000pt;}
.y42_c00408{bottom:251.080000pt;}
.y1f_c00408{bottom:252.946667pt;}
.y41_c00408{bottom:266.680000pt;}
.y1e_c00408{bottom:268.813333pt;}
.y40_c00408{bottom:283.213333pt;}
.y1d_c00408{bottom:284.413333pt;}
.y1c_c00408{bottom:300.946667pt;}
.y3f_c00408{bottom:314.813333pt;}
.y1b_c00408{bottom:317.746667pt;}
.y3e_c00408{bottom:331.213333pt;}
.y1a_c00408{bottom:333.346667pt;}
.y3d_c00408{bottom:346.813333pt;}
.y19_c00408{bottom:349.213333pt;}
.y3c_c00408{bottom:362.813333pt;}
.y18_c00408{bottom:365.080000pt;}
.y3b_c00408{bottom:379.213333pt;}
.y17_c00408{bottom:381.346667pt;}
.y3a_c00408{bottom:395.213333pt;}
.y16_c00408{bottom:397.213333pt;}
.y39_c00408{bottom:411.080000pt;}
.y15_c00408{bottom:413.213333pt;}
.y38_c00408{bottom:427.880000pt;}
.y14_c00408{bottom:429.346667pt;}
.y37_c00408{bottom:442.546667pt;}
.y13_c00408{bottom:445.213333pt;}
.y36_c00408{bottom:458.813333pt;}
.y12_c00408{bottom:460.813333pt;}
.y35_c00408{bottom:475.880000pt;}
.y11_c00408{bottom:476.413333pt;}
.y34_c00408{bottom:492.013333pt;}
.y10_c00408{bottom:492.680000pt;}
.yf_c00408{bottom:508.280000pt;}
.y33_c00408{bottom:522.946667pt;}
.ye_c00408{bottom:525.080000pt;}
.y32_c00408{bottom:540.013333pt;}
.yd_c00408{bottom:540.280000pt;}
.y31_c00408{bottom:556.280000pt;}
.yc_c00408{bottom:556.680000pt;}
.yb_c00408{bottom:572.813333pt;}
.y30_c00408{bottom:573.080000pt;}
.ya_c00408{bottom:588.946667pt;}
.y2f_c00408{bottom:604.813333pt;}
.y9_c00408{bottom:605.080000pt;}
.y2e_c00408{bottom:620.413333pt;}
.y8_c00408{bottom:621.346667pt;}
.y2d_c00408{bottom:636.280000pt;}
.y4_c00408{bottom:636.946667pt;}
.y7_c00408{bottom:637.213333pt;}
.y3_c00408{bottom:653.213333pt;}
.y6_c00408{bottom:653.480000pt;}
.y2_c00408{bottom:668.680000pt;}
.y5_c00408{bottom:669.613333pt;}
.y1_c00408{bottom:684.946667pt;}
.h5_c00408{height:11.733399pt;}
.h6_c00408{height:38.937500pt;}
.h4_c00408{height:50.304000pt;}
.h3_c00408{height:55.893333pt;}
.h2_c00408{height:56.906667pt;}
.h1_c00408{height:750.666667pt;}
.h0_c00408{height:750.733333pt;}
.w1_c00408{width:93.222667pt;}
.w0_c00408{width:522.000000pt;}
.x0_c00408{left:0.000000pt;}
.x5_c00408{left:68.666667pt;}
.x4_c00408{left:70.533333pt;}
.x3_c00408{left:72.800000pt;}
.x6_c00408{left:74.000000pt;}
.x7_c00408{left:74.933333pt;}
.x8_c00408{left:75.866667pt;}
.x1_c00408{left:105.866667pt;}
.xf_c00408{left:218.168213pt;}
.x2_c00408{left:266.933333pt;}
.xb_c00408{left:267.866667pt;}
.xc_c00408{left:268.800000pt;}
.xd_c00408{left:269.733333pt;}
.xa_c00408{left:291.333333pt;}
.xe_c00408{left:295.733333pt;}
.x9_c00408{left:317.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_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_e39113df1adb67e03afa38e8.woff2')format("woff");}.ff1_c00409{font-family:ff1_c00409;line-height:1.437000;font-style:normal;font-weight:normal;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_1fd69adb70d7dbd133ff67f0.woff2')format("woff");}.ff2_c00409{font-family:ff2_c00409;line-height:1.437000;font-style:normal;font-weight:normal;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_e28f068035013dbbed18f9a7.woff2')format("woff");}.ff3_c00409{font-family:ff3_c00409;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00409;src:url('chunks/assets/font_abc7c832a61e20137531d019.woff2')format("woff");}.ff4_c00409{font-family:ff4_c00409;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00409;src:url('chunks/assets/font_c91b90aaf0db6fea11bcba12.woff2')format("woff");}.ff5_c00409{font-family:ff5_c00409;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00409;src:url('chunks/assets/font_26dbc67dc638344b27328884.woff2')format("woff");}.ff6_c00409{font-family:ff6_c00409;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00409;src:url('chunks/assets/font_dcbda81cb91d4dc2610fae0c.woff2')format("woff");}.ff7_c00409{font-family:ff7_c00409;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00409;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff8_c00409{font-family:ff8_c00409;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00409{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00409{vertical-align:0.000000px;}
.ls9_c00409{letter-spacing:-6.000000px;}
.lsa_c00409{letter-spacing:-3.000000px;}
.ls6_c00409{letter-spacing:0.000000px;}
.ls4_c00409{letter-spacing:0.405000px;}
.ls5_c00409{letter-spacing:2.400000px;}
.ls0_c00409{letter-spacing:3.000000px;}
.ls2_c00409{letter-spacing:4.800000px;}
.ls8_c00409{letter-spacing:6.000000px;}
.ls3_c00409{letter-spacing:6.300000px;}
.ls1_c00409{letter-spacing:9.480000px;}
.ls7_c00409{letter-spacing:15.000000px;}
.sc__c00409{text-shadow:none;}
.sc0_c00409{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00409{-webkit-text-stroke:0px transparent;}
.sc0_c00409{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00409{word-spacing:-42.720000px;}
.ws2_c00409{word-spacing:-35.295000px;}
.ws1_c00409{word-spacing:-29.160000px;}
.ws3_c00409{word-spacing:-18.774000px;}
.ws5_c00409{word-spacing:-16.359000px;}
.ws0_c00409{word-spacing:-14.160000px;}
.ws6_c00409{word-spacing:0.000000px;}
._20_c00409{margin-left:-25.320000px;}
._1d_c00409{margin-left:-19.920000px;}
._25_c00409{margin-left:-17.280000px;}
._2d_c00409{margin-left:-14.910000px;}
._1c_c00409{margin-left:-12.960000px;}
._10_c00409{margin-left:-11.040000px;}
._6_c00409{margin-left:-9.780000px;}
._f_c00409{margin-left:-8.340000px;}
._c_c00409{margin-left:-7.320000px;}
._5_c00409{margin-left:-5.880000px;}
._7_c00409{margin-left:-4.380000px;}
._8_c00409{margin-left:-2.940000px;}
._2_c00409{margin-left:-1.560000px;}
._1_c00409{width:1.020000px;}
._0_c00409{width:2.160000px;}
._3_c00409{width:3.540000px;}
._4_c00409{width:5.400000px;}
._b_c00409{width:6.480000px;}
._d_c00409{width:8.040000px;}
._13_c00409{width:9.300000px;}
._1b_c00409{width:10.440000px;}
._12_c00409{width:11.640000px;}
._9_c00409{width:12.660000px;}
._a_c00409{width:13.920000px;}
._1e_c00409{width:16.320000px;}
._18_c00409{width:17.640000px;}
._23_c00409{width:19.440000px;}
._e_c00409{width:21.180000px;}
._11_c00409{width:22.260000px;}
._26_c00409{width:23.760000px;}
._14_c00409{width:25.380000px;}
._19_c00409{width:26.580000px;}
._29_c00409{width:29.520000px;}
._24_c00409{width:30.600000px;}
._15_c00409{width:35.700000px;}
._16_c00409{width:37.620000px;}
._2a_c00409{width:39.840000px;}
._21_c00409{width:42.300000px;}
._2c_c00409{width:48.120000px;}
._1f_c00409{width:49.620000px;}
._2b_c00409{width:61.740000px;}
._1a_c00409{width:65.760000px;}
._17_c00409{width:82.440000px;}
._27_c00409{width:86.040000px;}
._22_c00409{width:103.680000px;}
._28_c00409{width:150.900000px;}
.fc2_c00409{color:transparent;}
.fc1_c00409{color:rgb(128,128,128);}
.fc0_c00409{color:rgb(0,0,0);}
.fs3_c00409{font-size:24.000000px;}
.fs2_c00409{font-size:45.000000px;}
.fs6_c00409{font-size:48.000000px;}
.fs0_c00409{font-size:60.000000px;}
.fs1_c00409{font-size:66.000000px;}
.fs5_c00409{font-size:81.000000px;}
.fs4_c00409{font-size:105.000000px;}
.y0_c00409{bottom:0.000000px;}
.y4b_c00409{bottom:3.105000px;}
.y4a_c00409{bottom:7.228355px;}
.y49_c00409{bottom:35.985000px;}
.y29_c00409{bottom:53.835000px;}
.y28_c00409{bottom:72.585000px;}
.y27_c00409{bottom:91.335000px;}
.y48_c00409{bottom:103.935000px;}
.y26_c00409{bottom:108.885000px;}
.y25_c00409{bottom:126.435000px;}
.y24_c00409{bottom:144.435000px;}
.y47_c00409{bottom:160.635000px;}
.y23_c00409{bottom:163.035000px;}
.y22_c00409{bottom:180.435000px;}
.y46_c00409{bottom:199.335000px;}
.y21_c00409{bottom:199.485000px;}
.y45_c00409{bottom:216.885000px;}
.y20_c00409{bottom:217.335000px;}
.y1f_c00409{bottom:235.785000px;}
.y1e_c00409{bottom:253.035000px;}
.y44_c00409{bottom:253.485000px;}
.y1d_c00409{bottom:271.335000px;}
.y43_c00409{bottom:289.185000px;}
.y1c_c00409{bottom:289.785000px;}
.y42_c00409{bottom:307.035000px;}
.y1b_c00409{bottom:308.085000px;}
.y41_c00409{bottom:325.335000px;}
.y1a_c00409{bottom:325.635000px;}
.y40_c00409{bottom:343.185000px;}
.y19_c00409{bottom:343.785000px;}
.y3f_c00409{bottom:361.335000px;}
.y18_c00409{bottom:361.485000px;}
.y3e_c00409{bottom:378.885000px;}
.y17_c00409{bottom:379.335000px;}
.y16_c00409{bottom:397.485000px;}
.y15_c00409{bottom:415.485000px;}
.y3d_c00409{bottom:433.335000px;}
.y14_c00409{bottom:434.235000px;}
.y3c_c00409{bottom:451.785000px;}
.y13_c00409{bottom:452.535000px;}
.y3b_c00409{bottom:469.485000px;}
.y12_c00409{bottom:471.135000px;}
.y3a_c00409{bottom:487.635000px;}
.y11_c00409{bottom:488.985000px;}
.y39_c00409{bottom:505.785000px;}
.y10_c00409{bottom:506.835000px;}
.y38_c00409{bottom:523.485000px;}
.yf_c00409{bottom:525.135000px;}
.y37_c00409{bottom:541.935000px;}
.ye_c00409{bottom:542.985000px;}
.y36_c00409{bottom:559.785000px;}
.yd_c00409{bottom:561.135000px;}
.y35_c00409{bottom:577.485000px;}
.yc_c00409{bottom:577.785000px;}
.y34_c00409{bottom:595.935000px;}
.yb_c00409{bottom:596.235000px;}
.ya_c00409{bottom:614.235000px;}
.y33_c00409{bottom:632.385000px;}
.y9_c00409{bottom:632.685000px;}
.y32_c00409{bottom:650.235000px;}
.y8_c00409{bottom:650.985000px;}
.y31_c00409{bottom:668.535000px;}
.y7_c00409{bottom:668.835000px;}
.y30_c00409{bottom:686.685000px;}
.y6_c00409{bottom:686.835000px;}
.y2f_c00409{bottom:704.385000px;}
.y5_c00409{bottom:705.285000px;}
.y2e_c00409{bottom:722.535000px;}
.y4_c00409{bottom:723.285000px;}
.y2d_c00409{bottom:740.085000px;}
.y3_c00409{bottom:741.135000px;}
.y2c_c00409{bottom:757.935000px;}
.y2_c00409{bottom:759.285000px;}
.y2b_c00409{bottom:776.235000px;}
.y1_c00409{bottom:777.135000px;}
.y2a_c00409{bottom:795.435000px;}
.h7_c00409{height:13.200074px;}
.h8_c00409{height:43.804688px;}
.h2_c00409{height:62.880000px;}
.h3_c00409{height:64.020000px;}
.h4_c00409{height:69.168000px;}
.h6_c00409{height:84.888000px;}
.h5_c00409{height:110.040000px;}
.h1_c00409{height:846.750000px;}
.h0_c00409{height:846.975000px;}
.w2_c00409{width:104.875500px;}
.w0_c00409{width:568.875000px;}
.w1_c00409{width:569.250000px;}
.x0_c00409{left:0.000000px;}
.x7_c00409{left:15.900000px;}
.x6_c00409{left:18.300000px;}
.x5_c00409{left:19.950000px;}
.xa_c00409{left:66.750000px;}
.x9_c00409{left:70.500000px;}
.xf_c00409{left:74.700000px;}
.xe_c00409{left:75.900000px;}
.xc_c00409{left:76.950000px;}
.xb_c00409{left:78.000000px;}
.x8_c00409{left:79.350000px;}
.x4_c00409{left:80.700000px;}
.x3_c00409{left:82.050000px;}
.x2_c00409{left:83.400000px;}
.x1_c00409{left:85.350000px;}
.xd_c00409{left:125.850000px;}
.x1b_c00409{left:236.251740px;}
.x10_c00409{left:285.600000px;}
.x15_c00409{left:294.750000px;}
.x14_c00409{left:296.100000px;}
.x13_c00409{left:298.050000px;}
.x12_c00409{left:299.400000px;}
.x11_c00409{left:300.750000px;}
.x16_c00409{left:312.900000px;}
.x17_c00409{left:322.950000px;}
.x19_c00409{left:365.850000px;}
.x18_c00409{left:376.650000px;}
.x1a_c00409{left:445.800000px;}
@media print{
.v0_c00409{vertical-align:0.000000pt;}
.ls9_c00409{letter-spacing:-5.333333pt;}
.lsa_c00409{letter-spacing:-2.666667pt;}
.ls6_c00409{letter-spacing:0.000000pt;}
.ls4_c00409{letter-spacing:0.360000pt;}
.ls5_c00409{letter-spacing:2.133333pt;}
.ls0_c00409{letter-spacing:2.666667pt;}
.ls2_c00409{letter-spacing:4.266667pt;}
.ls8_c00409{letter-spacing:5.333333pt;}
.ls3_c00409{letter-spacing:5.600000pt;}
.ls1_c00409{letter-spacing:8.426667pt;}
.ls7_c00409{letter-spacing:13.333333pt;}
.ws4_c00409{word-spacing:-37.973333pt;}
.ws2_c00409{word-spacing:-31.373333pt;}
.ws1_c00409{word-spacing:-25.920000pt;}
.ws3_c00409{word-spacing:-16.688000pt;}
.ws5_c00409{word-spacing:-14.541333pt;}
.ws0_c00409{word-spacing:-12.586667pt;}
.ws6_c00409{word-spacing:0.000000pt;}
._20_c00409{margin-left:-22.506667pt;}
._1d_c00409{margin-left:-17.706667pt;}
._25_c00409{margin-left:-15.360000pt;}
._2d_c00409{margin-left:-13.253333pt;}
._1c_c00409{margin-left:-11.520000pt;}
._10_c00409{margin-left:-9.813333pt;}
._6_c00409{margin-left:-8.693333pt;}
._f_c00409{margin-left:-7.413333pt;}
._c_c00409{margin-left:-6.506667pt;}
._5_c00409{margin-left:-5.226667pt;}
._7_c00409{margin-left:-3.893333pt;}
._8_c00409{margin-left:-2.613333pt;}
._2_c00409{margin-left:-1.386667pt;}
._1_c00409{width:0.906667pt;}
._0_c00409{width:1.920000pt;}
._3_c00409{width:3.146667pt;}
._4_c00409{width:4.800000pt;}
._b_c00409{width:5.760000pt;}
._d_c00409{width:7.146667pt;}
._13_c00409{width:8.266667pt;}
._1b_c00409{width:9.280000pt;}
._12_c00409{width:10.346667pt;}
._9_c00409{width:11.253333pt;}
._a_c00409{width:12.373333pt;}
._1e_c00409{width:14.506667pt;}
._18_c00409{width:15.680000pt;}
._23_c00409{width:17.280000pt;}
._e_c00409{width:18.826667pt;}
._11_c00409{width:19.786667pt;}
._26_c00409{width:21.120000pt;}
._14_c00409{width:22.560000pt;}
._19_c00409{width:23.626667pt;}
._29_c00409{width:26.240000pt;}
._24_c00409{width:27.200000pt;}
._15_c00409{width:31.733333pt;}
._16_c00409{width:33.440000pt;}
._2a_c00409{width:35.413333pt;}
._21_c00409{width:37.600000pt;}
._2c_c00409{width:42.773333pt;}
._1f_c00409{width:44.106667pt;}
._2b_c00409{width:54.880000pt;}
._1a_c00409{width:58.453333pt;}
._17_c00409{width:73.280000pt;}
._27_c00409{width:76.480000pt;}
._22_c00409{width:92.160000pt;}
._28_c00409{width:134.133333pt;}
.fs3_c00409{font-size:21.333333pt;}
.fs2_c00409{font-size:40.000000pt;}
.fs6_c00409{font-size:42.666667pt;}
.fs0_c00409{font-size:53.333333pt;}
.fs1_c00409{font-size:58.666667pt;}
.fs5_c00409{font-size:72.000000pt;}
.fs4_c00409{font-size:93.333333pt;}
.y0_c00409{bottom:0.000000pt;}
.y4b_c00409{bottom:2.760000pt;}
.y4a_c00409{bottom:6.425204pt;}
.y49_c00409{bottom:31.986667pt;}
.y29_c00409{bottom:47.853333pt;}
.y28_c00409{bottom:64.520000pt;}
.y27_c00409{bottom:81.186667pt;}
.y48_c00409{bottom:92.386667pt;}
.y26_c00409{bottom:96.786667pt;}
.y25_c00409{bottom:112.386667pt;}
.y24_c00409{bottom:128.386667pt;}
.y47_c00409{bottom:142.786667pt;}
.y23_c00409{bottom:144.920000pt;}
.y22_c00409{bottom:160.386667pt;}
.y46_c00409{bottom:177.186667pt;}
.y21_c00409{bottom:177.320000pt;}
.y45_c00409{bottom:192.786667pt;}
.y20_c00409{bottom:193.186667pt;}
.y1f_c00409{bottom:209.586667pt;}
.y1e_c00409{bottom:224.920000pt;}
.y44_c00409{bottom:225.320000pt;}
.y1d_c00409{bottom:241.186667pt;}
.y43_c00409{bottom:257.053333pt;}
.y1c_c00409{bottom:257.586667pt;}
.y42_c00409{bottom:272.920000pt;}
.y1b_c00409{bottom:273.853333pt;}
.y41_c00409{bottom:289.186667pt;}
.y1a_c00409{bottom:289.453333pt;}
.y40_c00409{bottom:305.053333pt;}
.y19_c00409{bottom:305.586667pt;}
.y3f_c00409{bottom:321.186667pt;}
.y18_c00409{bottom:321.320000pt;}
.y3e_c00409{bottom:336.786667pt;}
.y17_c00409{bottom:337.186667pt;}
.y16_c00409{bottom:353.320000pt;}
.y15_c00409{bottom:369.320000pt;}
.y3d_c00409{bottom:385.186667pt;}
.y14_c00409{bottom:385.986667pt;}
.y3c_c00409{bottom:401.586667pt;}
.y13_c00409{bottom:402.253333pt;}
.y3b_c00409{bottom:417.320000pt;}
.y12_c00409{bottom:418.786667pt;}
.y3a_c00409{bottom:433.453333pt;}
.y11_c00409{bottom:434.653333pt;}
.y39_c00409{bottom:449.586667pt;}
.y10_c00409{bottom:450.520000pt;}
.y38_c00409{bottom:465.320000pt;}
.yf_c00409{bottom:466.786667pt;}
.y37_c00409{bottom:481.720000pt;}
.ye_c00409{bottom:482.653333pt;}
.y36_c00409{bottom:497.586667pt;}
.yd_c00409{bottom:498.786667pt;}
.y35_c00409{bottom:513.320000pt;}
.yc_c00409{bottom:513.586667pt;}
.y34_c00409{bottom:529.720000pt;}
.yb_c00409{bottom:529.986667pt;}
.ya_c00409{bottom:545.986667pt;}
.y33_c00409{bottom:562.120000pt;}
.y9_c00409{bottom:562.386667pt;}
.y32_c00409{bottom:577.986667pt;}
.y8_c00409{bottom:578.653333pt;}
.y31_c00409{bottom:594.253333pt;}
.y7_c00409{bottom:594.520000pt;}
.y30_c00409{bottom:610.386667pt;}
.y6_c00409{bottom:610.520000pt;}
.y2f_c00409{bottom:626.120000pt;}
.y5_c00409{bottom:626.920000pt;}
.y2e_c00409{bottom:642.253333pt;}
.y4_c00409{bottom:642.920000pt;}
.y2d_c00409{bottom:657.853333pt;}
.y3_c00409{bottom:658.786667pt;}
.y2c_c00409{bottom:673.720000pt;}
.y2_c00409{bottom:674.920000pt;}
.y2b_c00409{bottom:689.986667pt;}
.y1_c00409{bottom:690.786667pt;}
.y2a_c00409{bottom:707.053333pt;}
.h7_c00409{height:11.733399pt;}
.h8_c00409{height:38.937500pt;}
.h2_c00409{height:55.893333pt;}
.h3_c00409{height:56.906667pt;}
.h4_c00409{height:61.482667pt;}
.h6_c00409{height:75.456000pt;}
.h5_c00409{height:97.813333pt;}
.h1_c00409{height:752.666667pt;}
.h0_c00409{height:752.866667pt;}
.w2_c00409{width:93.222667pt;}
.w0_c00409{width:505.666667pt;}
.w1_c00409{width:506.000000pt;}
.x0_c00409{left:0.000000pt;}
.x7_c00409{left:14.133333pt;}
.x6_c00409{left:16.266667pt;}
.x5_c00409{left:17.733333pt;}
.xa_c00409{left:59.333333pt;}
.x9_c00409{left:62.666667pt;}
.xf_c00409{left:66.400000pt;}
.xe_c00409{left:67.466667pt;}
.xc_c00409{left:68.400000pt;}
.xb_c00409{left:69.333333pt;}
.x8_c00409{left:70.533333pt;}
.x4_c00409{left:71.733333pt;}
.x3_c00409{left:72.933333pt;}
.x2_c00409{left:74.133333pt;}
.x1_c00409{left:75.866667pt;}
.xd_c00409{left:111.866667pt;}
.x1b_c00409{left:210.001546pt;}
.x10_c00409{left:253.866667pt;}
.x15_c00409{left:262.000000pt;}
.x14_c00409{left:263.200000pt;}
.x13_c00409{left:264.933333pt;}
.x12_c00409{left:266.133333pt;}
.x11_c00409{left:267.333333pt;}
.x16_c00409{left:278.133333pt;}
.x17_c00409{left:287.066667pt;}
.x19_c00409{left:325.200000pt;}
.x18_c00409{left:334.800000pt;}
.x1a_c00409{left:396.266667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_02945006a1d68de149357e6e.woff2')format("woff");}.ff1_c00410{font-family:ff1_c00410;line-height:1.437000;font-style:normal;font-weight:normal;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_e3aa85d7663e6b1da47e6c52.woff2')format("woff");}.ff2_c00410{font-family:ff2_c00410;line-height:1.437000;font-style:normal;font-weight:normal;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_321b31af6b5478f7703c0b92.woff2')format("woff");}.ff3_c00410{font-family:ff3_c00410;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00410;src:url('chunks/assets/font_91253e2a83e1d420ebce4cce.woff2')format("woff");}.ff4_c00410{font-family:ff4_c00410;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00410;src:url('chunks/assets/font_0ce391de997f24f9f9dd37f4.woff2')format("woff");}.ff5_c00410{font-family:ff5_c00410;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00410;src:url('chunks/assets/font_d617e790d3fdaf568583a983.woff2')format("woff");}.ff6_c00410{font-family:ff6_c00410;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00410;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff7_c00410{font-family:ff7_c00410;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00410{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00410{vertical-align:0.000000px;}
.ls4_c00410{letter-spacing:0.000000px;}
.ls1_c00410{letter-spacing:0.840000px;}
.ls2_c00410{letter-spacing:1.005000px;}
.ls3_c00410{letter-spacing:3.000000px;}
.ls5_c00410{letter-spacing:6.000000px;}
.ls0_c00410{letter-spacing:37.848000px;}
.sc__c00410{text-shadow:none;}
.sc0_c00410{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00410{-webkit-text-stroke:0px transparent;}
.sc0_c00410{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00410{word-spacing:-20.340000px;}
.ws0_c00410{word-spacing:-18.060000px;}
.ws1_c00410{word-spacing:-14.160000px;}
.ws3_c00410{word-spacing:0.000000px;}
._1b_c00410{margin-left:-24.660000px;}
._19_c00410{margin-left:-18.720000px;}
._17_c00410{margin-left:-17.460000px;}
._16_c00410{margin-left:-15.480000px;}
._22_c00410{margin-left:-14.400000px;}
._21_c00410{margin-left:-12.060000px;}
._23_c00410{margin-left:-10.920000px;}
._13_c00410{margin-left:-8.820000px;}
._1f_c00410{margin-left:-7.260000px;}
._15_c00410{margin-left:-6.240000px;}
._12_c00410{margin-left:-5.040000px;}
._e_c00410{margin-left:-3.960000px;}
._14_c00410{margin-left:-2.940000px;}
._11_c00410{margin-left:-1.500000px;}
._d_c00410{width:1.140000px;}
._10_c00410{width:2.160000px;}
._0_c00410{width:3.300000px;}
._f_c00410{width:5.160000px;}
._b_c00410{width:6.360000px;}
._7_c00410{width:7.980000px;}
._8_c00410{width:9.360000px;}
._6_c00410{width:11.040000px;}
._c_c00410{width:12.480000px;}
._20_c00410{width:13.980000px;}
._4_c00410{width:15.000000px;}
._2_c00410{width:16.440000px;}
._3_c00410{width:19.560000px;}
._a_c00410{width:22.440000px;}
._5_c00410{width:28.140000px;}
._27_c00410{width:31.080000px;}
._1d_c00410{width:32.700000px;}
._26_c00410{width:35.820000px;}
._24_c00410{width:37.380000px;}
._9_c00410{width:43.920000px;}
._18_c00410{width:48.840000px;}
._1_c00410{width:60.300000px;}
._25_c00410{width:163.680000px;}
._1a_c00410{width:195.540000px;}
._1c_c00410{width:291.900000px;}
._1e_c00410{width:915.000000px;}
.fc2_c00410{color:transparent;}
.fc1_c00410{color:rgb(128,128,128);}
.fc0_c00410{color:rgb(0,0,0);}
.fs2_c00410{font-size:45.000000px;}
.fs1_c00410{font-size:48.000000px;}
.fs0_c00410{font-size:60.000000px;}
.y0_c00410{bottom:0.000000px;}
.y26_c00410{bottom:3.105000px;}
.y25_c00410{bottom:7.228371px;}
.y24_c00410{bottom:59.115000px;}
.y23_c00410{bottom:75.315000px;}
.y22_c00410{bottom:95.565000px;}
.y21_c00410{bottom:113.865000px;}
.y20_c00410{bottom:132.315000px;}
.y1f_c00410{bottom:149.865000px;}
.y1e_c00410{bottom:167.115000px;}
.y1d_c00410{bottom:186.315000px;}
.y1c_c00410{bottom:204.615000px;}
.y1b_c00410{bottom:222.465000px;}
.y1a_c00410{bottom:240.315000px;}
.y19_c00410{bottom:258.165000px;}
.y18_c00410{bottom:277.065000px;}
.y17_c00410{bottom:295.065000px;}
.y16_c00410{bottom:310.965000px;}
.y15_c00410{bottom:331.065000px;}
.y14_c00410{bottom:348.765000px;}
.y13_c00410{bottom:365.565000px;}
.y12_c00410{bottom:385.065000px;}
.y11_c00410{bottom:402.615000px;}
.y10_c00410{bottom:420.315000px;}
.yf_c00410{bottom:438.465000px;}
.ye_c00410{bottom:456.015000px;}
.yd_c00410{bottom:474.315000px;}
.yc_c00410{bottom:491.865000px;}
.yb_c00410{bottom:510.315000px;}
.ya_c00410{bottom:528.165000px;}
.y9_c00410{bottom:546.165000px;}
.y8_c00410{bottom:563.415000px;}
.y7_c00410{bottom:602.115000px;}
.y6_c00410{bottom:617.415000px;}
.y5_c00410{bottom:636.615000px;}
.y4_c00410{bottom:653.715000px;}
.y3_c00410{bottom:671.715000px;}
.y2_c00410{bottom:691.215000px;}
.y1_c00410{bottom:709.065000px;}
.h4_c00410{height:13.200074px;}
.h5_c00410{height:43.804688px;}
.h2_c00410{height:62.880000px;}
.h3_c00410{height:64.020000px;}
.h1_c00410{height:844.500000px;}
.h0_c00410{height:844.575000px;}
.w1_c00410{width:104.875500px;}
.w0_c00410{width:587.250000px;}
.x0_c00410{left:0.000000px;}
.x1_c00410{left:71.250000px;}
.x2_c00410{left:75.600000px;}
.xa_c00410{left:77.700000px;}
.xb_c00410{left:78.750000px;}
.xc_c00410{left:79.950000px;}
.xd_c00410{left:81.300000px;}
.xe_c00410{left:83.100000px;}
.x6_c00410{left:94.200000px;}
.x3_c00410{left:120.150000px;}
.x5_c00410{left:164.550000px;}
.x7_c00410{left:190.050000px;}
.x8_c00410{left:196.350000px;}
.x9_c00410{left:198.900000px;}
.x4_c00410{left:207.600000px;}
.xf_c00410{left:245.439240px;}
@media print{
.v0_c00410{vertical-align:0.000000pt;}
.ls4_c00410{letter-spacing:0.000000pt;}
.ls1_c00410{letter-spacing:0.746667pt;}
.ls2_c00410{letter-spacing:0.893333pt;}
.ls3_c00410{letter-spacing:2.666667pt;}
.ls5_c00410{letter-spacing:5.333333pt;}
.ls0_c00410{letter-spacing:33.642667pt;}
.ws2_c00410{word-spacing:-18.080000pt;}
.ws0_c00410{word-spacing:-16.053333pt;}
.ws1_c00410{word-spacing:-12.586667pt;}
.ws3_c00410{word-spacing:0.000000pt;}
._1b_c00410{margin-left:-21.920000pt;}
._19_c00410{margin-left:-16.640000pt;}
._17_c00410{margin-left:-15.520000pt;}
._16_c00410{margin-left:-13.760000pt;}
._22_c00410{margin-left:-12.800000pt;}
._21_c00410{margin-left:-10.720000pt;}
._23_c00410{margin-left:-9.706667pt;}
._13_c00410{margin-left:-7.840000pt;}
._1f_c00410{margin-left:-6.453333pt;}
._15_c00410{margin-left:-5.546667pt;}
._12_c00410{margin-left:-4.480000pt;}
._e_c00410{margin-left:-3.520000pt;}
._14_c00410{margin-left:-2.613333pt;}
._11_c00410{margin-left:-1.333333pt;}
._d_c00410{width:1.013333pt;}
._10_c00410{width:1.920000pt;}
._0_c00410{width:2.933333pt;}
._f_c00410{width:4.586667pt;}
._b_c00410{width:5.653333pt;}
._7_c00410{width:7.093333pt;}
._8_c00410{width:8.320000pt;}
._6_c00410{width:9.813333pt;}
._c_c00410{width:11.093333pt;}
._20_c00410{width:12.426667pt;}
._4_c00410{width:13.333333pt;}
._2_c00410{width:14.613333pt;}
._3_c00410{width:17.386667pt;}
._a_c00410{width:19.946667pt;}
._5_c00410{width:25.013333pt;}
._27_c00410{width:27.626667pt;}
._1d_c00410{width:29.066667pt;}
._26_c00410{width:31.840000pt;}
._24_c00410{width:33.226667pt;}
._9_c00410{width:39.040000pt;}
._18_c00410{width:43.413333pt;}
._1_c00410{width:53.600000pt;}
._25_c00410{width:145.493333pt;}
._1a_c00410{width:173.813333pt;}
._1c_c00410{width:259.466667pt;}
._1e_c00410{width:813.333333pt;}
.fs2_c00410{font-size:40.000000pt;}
.fs1_c00410{font-size:42.666667pt;}
.fs0_c00410{font-size:53.333333pt;}
.y0_c00410{bottom:0.000000pt;}
.y26_c00410{bottom:2.760000pt;}
.y25_c00410{bottom:6.425219pt;}
.y24_c00410{bottom:52.546667pt;}
.y23_c00410{bottom:66.946667pt;}
.y22_c00410{bottom:84.946667pt;}
.y21_c00410{bottom:101.213333pt;}
.y20_c00410{bottom:117.613333pt;}
.y1f_c00410{bottom:133.213333pt;}
.y1e_c00410{bottom:148.546667pt;}
.y1d_c00410{bottom:165.613333pt;}
.y1c_c00410{bottom:181.880000pt;}
.y1b_c00410{bottom:197.746667pt;}
.y1a_c00410{bottom:213.613333pt;}
.y19_c00410{bottom:229.480000pt;}
.y18_c00410{bottom:246.280000pt;}
.y17_c00410{bottom:262.280000pt;}
.y16_c00410{bottom:276.413333pt;}
.y15_c00410{bottom:294.280000pt;}
.y14_c00410{bottom:310.013333pt;}
.y13_c00410{bottom:324.946667pt;}
.y12_c00410{bottom:342.280000pt;}
.y11_c00410{bottom:357.880000pt;}
.y10_c00410{bottom:373.613333pt;}
.yf_c00410{bottom:389.746667pt;}
.ye_c00410{bottom:405.346667pt;}
.yd_c00410{bottom:421.613333pt;}
.yc_c00410{bottom:437.213333pt;}
.yb_c00410{bottom:453.613333pt;}
.ya_c00410{bottom:469.480000pt;}
.y9_c00410{bottom:485.480000pt;}
.y8_c00410{bottom:500.813333pt;}
.y7_c00410{bottom:535.213333pt;}
.y6_c00410{bottom:548.813333pt;}
.y5_c00410{bottom:565.880000pt;}
.y4_c00410{bottom:581.080000pt;}
.y3_c00410{bottom:597.080000pt;}
.y2_c00410{bottom:614.413333pt;}
.y1_c00410{bottom:630.280000pt;}
.h4_c00410{height:11.733399pt;}
.h5_c00410{height:38.937500pt;}
.h2_c00410{height:55.893333pt;}
.h3_c00410{height:56.906667pt;}
.h1_c00410{height:750.666667pt;}
.h0_c00410{height:750.733333pt;}
.w1_c00410{width:93.222667pt;}
.w0_c00410{width:522.000000pt;}
.x0_c00410{left:0.000000pt;}
.x1_c00410{left:63.333333pt;}
.x2_c00410{left:67.200000pt;}
.xa_c00410{left:69.066667pt;}
.xb_c00410{left:70.000000pt;}
.xc_c00410{left:71.066667pt;}
.xd_c00410{left:72.266667pt;}
.xe_c00410{left:73.866667pt;}
.x6_c00410{left:83.733333pt;}
.x3_c00410{left:106.800000pt;}
.x5_c00410{left:146.266667pt;}
.x7_c00410{left:168.933333pt;}
.x8_c00410{left:174.533333pt;}
.x9_c00410{left:176.800000pt;}
.x4_c00410{left:184.533333pt;}
.xf_c00410{left:218.168213pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_404fb6dcea879a1d359d7740.woff2')format("woff");}.ff1_c00411{font-family:ff1_c00411;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00411;src:url('chunks/assets/font_5d62c9c6d60708a645c1c87c.woff2')format("woff");}.ff2_c00411{font-family:ff2_c00411;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00411;src:url('chunks/assets/font_507a79ffc13f65e2391a93dc.woff2')format("woff");}.ff3_c00411{font-family:ff3_c00411;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00411;src:url('chunks/assets/font_d90e5f000d05da8a65fb4d7c.woff2')format("woff");}.ff4_c00411{font-family:ff4_c00411;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00411;src:url('chunks/assets/font_f7964d69b5efbc091d8b0162.woff2')format("woff");}.ff5_c00411{font-family:ff5_c00411;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00411;src:url('chunks/assets/font_28411c9d4b9c9c72aa40f5e3.woff2')format("woff");}.ff6_c00411{font-family:ff6_c00411;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00411;src:url('chunks/assets/font_164144be587d363e8d22d49a.woff2')format("woff");}.ff7_c00411{font-family:ff7_c00411;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00411;src:url('chunks/assets/font_7f43ca22bed6cdd383a89d00.woff2')format("woff");}.ff8_c00411{font-family:ff8_c00411;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00411;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff9_c00411{font-family:ff9_c00411;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00411{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00411{vertical-align:-66.000000px;}
.v0_c00411{vertical-align:0.000000px;}
.v2_c00411{vertical-align:12.600000px;}
.ls9_c00411{letter-spacing:0.000000px;}
.ls7_c00411{letter-spacing:3.000000px;}
.ls4_c00411{letter-spacing:3.840000px;}
.ls8_c00411{letter-spacing:6.000000px;}
.ls5_c00411{letter-spacing:6.240000px;}
.ls0_c00411{letter-spacing:7.200000px;}
.ls6_c00411{letter-spacing:10.026000px;}
.ls2_c00411{letter-spacing:17.400000px;}
.ls3_c00411{letter-spacing:19.020000px;}
.ls1_c00411{letter-spacing:77.880000px;}
.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:-42.876000px;}
.ws6_c00411{word-spacing:-35.295000px;}
.ws1_c00411{word-spacing:-18.060000px;}
.ws5_c00411{word-spacing:-18.000000px;}
.ws2_c00411{word-spacing:-14.160000px;}
.ws4_c00411{word-spacing:-13.452000px;}
.ws7_c00411{word-spacing:0.000000px;}
.ws3_c00411{word-spacing:46.860000px;}
._25_c00411{margin-left:-25.740000px;}
._20_c00411{margin-left:-12.057000px;}
._14_c00411{margin-left:-10.422000px;}
._1a_c00411{margin-left:-8.892000px;}
._12_c00411{margin-left:-6.960000px;}
._11_c00411{margin-left:-5.820000px;}
._d_c00411{margin-left:-4.260000px;}
._f_c00411{margin-left:-2.280000px;}
._10_c00411{margin-left:-1.134000px;}
._e_c00411{width:1.140000px;}
._c_c00411{width:2.220000px;}
._b_c00411{width:4.080000px;}
._15_c00411{width:5.160000px;}
._1_c00411{width:6.174000px;}
._0_c00411{width:7.812000px;}
._a_c00411{width:9.576000px;}
._22_c00411{width:10.680000px;}
._9_c00411{width:11.781000px;}
._3_c00411{width:13.482000px;}
._4_c00411{width:14.994000px;}
._5_c00411{width:16.632000px;}
._7_c00411{width:20.412000px;}
._1e_c00411{width:21.780000px;}
._6_c00411{width:22.806000px;}
._16_c00411{width:24.633000px;}
._21_c00411{width:25.794000px;}
._8_c00411{width:26.799000px;}
._1f_c00411{width:30.312000px;}
._13_c00411{width:31.560000px;}
._23_c00411{width:33.180000px;}
._19_c00411{width:34.428000px;}
._26_c00411{width:37.200000px;}
._24_c00411{width:57.960000px;}
._1c_c00411{width:61.872000px;}
._1b_c00411{width:76.176000px;}
._2_c00411{width:198.387000px;}
._1d_c00411{width:204.516000px;}
._18_c00411{width:228.060000px;}
._17_c00411{width:240.504000px;}
.fc2_c00411{color:transparent;}
.fc1_c00411{color:rgb(128,128,128);}
.fc0_c00411{color:rgb(0,0,0);}
.fs5_c00411{font-size:24.000000px;}
.fs6_c00411{font-size:45.000000px;}
.fs3_c00411{font-size:48.000000px;}
.fs4_c00411{font-size:54.000000px;}
.fs2_c00411{font-size:57.000000px;}
.fs1_c00411{font-size:60.000000px;}
.fs0_c00411{font-size:63.000000px;}
.fs7_c00411{font-size:66.000000px;}
.fs8_c00411{font-size:132.000000px;}
.y0_c00411{bottom:0.000000px;}
.y49_c00411{bottom:3.105000px;}
.y48_c00411{bottom:7.228355px;}
.y47_c00411{bottom:33.285000px;}
.y29_c00411{bottom:50.835000px;}
.y46_c00411{bottom:54.285000px;}
.y28_c00411{bottom:70.185000px;}
.y45_c00411{bottom:71.835000px;}
.y27_c00411{bottom:87.735000px;}
.y44_c00411{bottom:90.135000px;}
.y26_c00411{bottom:106.185000px;}
.y43_c00411{bottom:108.285000px;}
.y25_c00411{bottom:123.735000px;}
.y42_c00411{bottom:126.585000px;}
.y24_c00411{bottom:142.035000px;}
.y41_c00411{bottom:145.335000px;}
.y23_c00411{bottom:160.185000px;}
.y40_c00411{bottom:163.635000px;}
.y22_c00411{bottom:178.485000px;}
.y3f_c00411{bottom:180.585000px;}
.y21_c00411{bottom:196.635000px;}
.y3e_c00411{bottom:198.435000px;}
.y20_c00411{bottom:215.535000px;}
.y3d_c00411{bottom:217.035000px;}
.y1f_c00411{bottom:233.085000px;}
.y3c_c00411{bottom:234.585000px;}
.y1e_c00411{bottom:250.635000px;}
.y1d_c00411{bottom:268.635000px;}
.y3b_c00411{bottom:271.035000px;}
.y1c_c00411{bottom:286.485000px;}
.y3a_c00411{bottom:288.585000px;}
.y1b_c00411{bottom:304.635000px;}
.y39_c00411{bottom:306.435000px;}
.y1a_c00411{bottom:322.185000px;}
.y38_c00411{bottom:324.885000px;}
.y19_c00411{bottom:340.185000px;}
.y37_c00411{bottom:345.285000px;}
.y36_c00411{bottom:355.635000px;}
.y18_c00411{bottom:357.735000px;}
.y17_c00411{bottom:376.185000px;}
.y16_c00411{bottom:394.785000px;}
.y35_c00411{bottom:395.535000px;}
.y15_c00411{bottom:412.785000px;}
.y34_c00411{bottom:414.735000px;}
.y14_c00411{bottom:430.635000px;}
.y33_c00411{bottom:433.635000px;}
.y13_c00411{bottom:449.085000px;}
.y32_c00411{bottom:451.485000px;}
.y12_c00411{bottom:467.085000px;}
.y31_c00411{bottom:469.785000px;}
.y11_c00411{bottom:485.235000px;}
.y30_c00411{bottom:487.935000px;}
.y10_c00411{bottom:503.535000px;}
.y2f_c00411{bottom:505.785000px;}
.yf_c00411{bottom:521.685000px;}
.y2e_c00411{bottom:523.485000px;}
.ye_c00411{bottom:539.235000px;}
.y2d_c00411{bottom:541.035000px;}
.yd_c00411{bottom:556.785000px;}
.y2c_c00411{bottom:559.485000px;}
.yc_c00411{bottom:575.685000px;}
.y2b_c00411{bottom:577.335000px;}
.yb_c00411{bottom:593.685000px;}
.y2a_c00411{bottom:595.035000px;}
.ya_c00411{bottom:606.735000px;}
.y9_c00411{bottom:630.435000px;}
.y8_c00411{bottom:664.485000px;}
.y7_c00411{bottom:685.335000px;}
.y6_c00411{bottom:702.885000px;}
.y5_c00411{bottom:721.485000px;}
.y4_c00411{bottom:739.035000px;}
.y3_c00411{bottom:757.635000px;}
.y2_c00411{bottom:775.185000px;}
.y1_c00411{bottom:794.835000px;}
.h9_c00411{height:13.200074px;}
.h5_c00411{height:30.386719px;}
.ha_c00411{height:43.804688px;}
.h3_c00411{height:62.880000px;}
.h4_c00411{height:64.020000px;}
.h2_c00411{height:66.024000px;}
.h7_c00411{height:69.168000px;}
.h6_c00411{height:75.480000px;}
.h8_c00411{height:138.336000px;}
.h1_c00411{height:846.750000px;}
.h0_c00411{height:846.975000px;}
.w2_c00411{width:104.875500px;}
.w0_c00411{width:568.875000px;}
.w1_c00411{width:569.250000px;}
.x0_c00411{left:0.000000px;}
.x9_c00411{left:87.450000px;}
.x8_c00411{left:88.800000px;}
.x7_c00411{left:90.150000px;}
.x5_c00411{left:91.200000px;}
.x3_c00411{left:93.450000px;}
.x2_c00411{left:94.500000px;}
.x1_c00411{left:95.550000px;}
.x6_c00411{left:121.800000px;}
.x4_c00411{left:182.550000px;}
.x16_c00411{left:236.251740px;}
.xe_c00411{left:296.400000px;}
.xc_c00411{left:300.750000px;}
.xd_c00411{left:304.350000px;}
.xa_c00411{left:305.550000px;}
.xb_c00411{left:307.350000px;}
.x11_c00411{left:317.550000px;}
.x14_c00411{left:329.700000px;}
.x12_c00411{left:353.250000px;}
.x13_c00411{left:367.800000px;}
.xf_c00411{left:386.400000px;}
.x10_c00411{left:417.450000px;}
.x15_c00411{left:492.750000px;}
@media print{
.v1_c00411{vertical-align:-58.666667pt;}
.v0_c00411{vertical-align:0.000000pt;}
.v2_c00411{vertical-align:11.200000pt;}
.ls9_c00411{letter-spacing:0.000000pt;}
.ls7_c00411{letter-spacing:2.666667pt;}
.ls4_c00411{letter-spacing:3.413333pt;}
.ls8_c00411{letter-spacing:5.333333pt;}
.ls5_c00411{letter-spacing:5.546667pt;}
.ls0_c00411{letter-spacing:6.400000pt;}
.ls6_c00411{letter-spacing:8.912000pt;}
.ls2_c00411{letter-spacing:15.466667pt;}
.ls3_c00411{letter-spacing:16.906667pt;}
.ls1_c00411{letter-spacing:69.226667pt;}
.ws0_c00411{word-spacing:-38.112000pt;}
.ws6_c00411{word-spacing:-31.373333pt;}
.ws1_c00411{word-spacing:-16.053333pt;}
.ws5_c00411{word-spacing:-16.000000pt;}
.ws2_c00411{word-spacing:-12.586667pt;}
.ws4_c00411{word-spacing:-11.957333pt;}
.ws7_c00411{word-spacing:0.000000pt;}
.ws3_c00411{word-spacing:41.653333pt;}
._25_c00411{margin-left:-22.880000pt;}
._20_c00411{margin-left:-10.717333pt;}
._14_c00411{margin-left:-9.264000pt;}
._1a_c00411{margin-left:-7.904000pt;}
._12_c00411{margin-left:-6.186667pt;}
._11_c00411{margin-left:-5.173333pt;}
._d_c00411{margin-left:-3.786667pt;}
._f_c00411{margin-left:-2.026667pt;}
._10_c00411{margin-left:-1.008000pt;}
._e_c00411{width:1.013333pt;}
._c_c00411{width:1.973333pt;}
._b_c00411{width:3.626667pt;}
._15_c00411{width:4.586667pt;}
._1_c00411{width:5.488000pt;}
._0_c00411{width:6.944000pt;}
._a_c00411{width:8.512000pt;}
._22_c00411{width:9.493333pt;}
._9_c00411{width:10.472000pt;}
._3_c00411{width:11.984000pt;}
._4_c00411{width:13.328000pt;}
._5_c00411{width:14.784000pt;}
._7_c00411{width:18.144000pt;}
._1e_c00411{width:19.360000pt;}
._6_c00411{width:20.272000pt;}
._16_c00411{width:21.896000pt;}
._21_c00411{width:22.928000pt;}
._8_c00411{width:23.821333pt;}
._1f_c00411{width:26.944000pt;}
._13_c00411{width:28.053333pt;}
._23_c00411{width:29.493333pt;}
._19_c00411{width:30.602667pt;}
._26_c00411{width:33.066667pt;}
._24_c00411{width:51.520000pt;}
._1c_c00411{width:54.997333pt;}
._1b_c00411{width:67.712000pt;}
._2_c00411{width:176.344000pt;}
._1d_c00411{width:181.792000pt;}
._18_c00411{width:202.720000pt;}
._17_c00411{width:213.781333pt;}
.fs5_c00411{font-size:21.333333pt;}
.fs6_c00411{font-size:40.000000pt;}
.fs3_c00411{font-size:42.666667pt;}
.fs4_c00411{font-size:48.000000pt;}
.fs2_c00411{font-size:50.666667pt;}
.fs1_c00411{font-size:53.333333pt;}
.fs0_c00411{font-size:56.000000pt;}
.fs7_c00411{font-size:58.666667pt;}
.fs8_c00411{font-size:117.333333pt;}
.y0_c00411{bottom:0.000000pt;}
.y49_c00411{bottom:2.760000pt;}
.y48_c00411{bottom:6.425204pt;}
.y47_c00411{bottom:29.586667pt;}
.y29_c00411{bottom:45.186667pt;}
.y46_c00411{bottom:48.253333pt;}
.y28_c00411{bottom:62.386667pt;}
.y45_c00411{bottom:63.853333pt;}
.y27_c00411{bottom:77.986667pt;}
.y44_c00411{bottom:80.120000pt;}
.y26_c00411{bottom:94.386667pt;}
.y43_c00411{bottom:96.253333pt;}
.y25_c00411{bottom:109.986667pt;}
.y42_c00411{bottom:112.520000pt;}
.y24_c00411{bottom:126.253333pt;}
.y41_c00411{bottom:129.186667pt;}
.y23_c00411{bottom:142.386667pt;}
.y40_c00411{bottom:145.453333pt;}
.y22_c00411{bottom:158.653333pt;}
.y3f_c00411{bottom:160.520000pt;}
.y21_c00411{bottom:174.786667pt;}
.y3e_c00411{bottom:176.386667pt;}
.y20_c00411{bottom:191.586667pt;}
.y3d_c00411{bottom:192.920000pt;}
.y1f_c00411{bottom:207.186667pt;}
.y3c_c00411{bottom:208.520000pt;}
.y1e_c00411{bottom:222.786667pt;}
.y1d_c00411{bottom:238.786667pt;}
.y3b_c00411{bottom:240.920000pt;}
.y1c_c00411{bottom:254.653333pt;}
.y3a_c00411{bottom:256.520000pt;}
.y1b_c00411{bottom:270.786667pt;}
.y39_c00411{bottom:272.386667pt;}
.y1a_c00411{bottom:286.386667pt;}
.y38_c00411{bottom:288.786667pt;}
.y19_c00411{bottom:302.386667pt;}
.y37_c00411{bottom:306.920000pt;}
.y36_c00411{bottom:316.120000pt;}
.y18_c00411{bottom:317.986667pt;}
.y17_c00411{bottom:334.386667pt;}
.y16_c00411{bottom:350.920000pt;}
.y35_c00411{bottom:351.586667pt;}
.y15_c00411{bottom:366.920000pt;}
.y34_c00411{bottom:368.653333pt;}
.y14_c00411{bottom:382.786667pt;}
.y33_c00411{bottom:385.453333pt;}
.y13_c00411{bottom:399.186667pt;}
.y32_c00411{bottom:401.320000pt;}
.y12_c00411{bottom:415.186667pt;}
.y31_c00411{bottom:417.586667pt;}
.y11_c00411{bottom:431.320000pt;}
.y30_c00411{bottom:433.720000pt;}
.y10_c00411{bottom:447.586667pt;}
.y2f_c00411{bottom:449.586667pt;}
.yf_c00411{bottom:463.720000pt;}
.y2e_c00411{bottom:465.320000pt;}
.ye_c00411{bottom:479.320000pt;}
.y2d_c00411{bottom:480.920000pt;}
.yd_c00411{bottom:494.920000pt;}
.y2c_c00411{bottom:497.320000pt;}
.yc_c00411{bottom:511.720000pt;}
.y2b_c00411{bottom:513.186667pt;}
.yb_c00411{bottom:527.720000pt;}
.y2a_c00411{bottom:528.920000pt;}
.ya_c00411{bottom:539.320000pt;}
.y9_c00411{bottom:560.386667pt;}
.y8_c00411{bottom:590.653333pt;}
.y7_c00411{bottom:609.186667pt;}
.y6_c00411{bottom:624.786667pt;}
.y5_c00411{bottom:641.320000pt;}
.y4_c00411{bottom:656.920000pt;}
.y3_c00411{bottom:673.453333pt;}
.y2_c00411{bottom:689.053333pt;}
.y1_c00411{bottom:706.520000pt;}
.h9_c00411{height:11.733399pt;}
.h5_c00411{height:27.010417pt;}
.ha_c00411{height:38.937500pt;}
.h3_c00411{height:55.893333pt;}
.h4_c00411{height:56.906667pt;}
.h2_c00411{height:58.688000pt;}
.h7_c00411{height:61.482667pt;}
.h6_c00411{height:67.093333pt;}
.h8_c00411{height:122.965333pt;}
.h1_c00411{height:752.666667pt;}
.h0_c00411{height:752.866667pt;}
.w2_c00411{width:93.222667pt;}
.w0_c00411{width:505.666667pt;}
.w1_c00411{width:506.000000pt;}
.x0_c00411{left:0.000000pt;}
.x9_c00411{left:77.733333pt;}
.x8_c00411{left:78.933333pt;}
.x7_c00411{left:80.133333pt;}
.x5_c00411{left:81.066667pt;}
.x3_c00411{left:83.066667pt;}
.x2_c00411{left:84.000000pt;}
.x1_c00411{left:84.933333pt;}
.x6_c00411{left:108.266667pt;}
.x4_c00411{left:162.266667pt;}
.x16_c00411{left:210.001546pt;}
.xe_c00411{left:263.466667pt;}
.xc_c00411{left:267.333333pt;}
.xd_c00411{left:270.533333pt;}
.xa_c00411{left:271.600000pt;}
.xb_c00411{left:273.200000pt;}
.x11_c00411{left:282.266667pt;}
.x14_c00411{left:293.066667pt;}
.x12_c00411{left:314.000000pt;}
.x13_c00411{left:326.933333pt;}
.xf_c00411{left:343.466667pt;}
.x10_c00411{left:371.066667pt;}
.x15_c00411{left:438.000000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_7ab346787be87ab5ca167063.woff2')format("woff");}.ff1_c00412{font-family:ff1_c00412;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00412;src:url('chunks/assets/font_7c5b09047040460bc6ebb37c.woff2')format("woff");}.ff2_c00412{font-family:ff2_c00412;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00412;src:url('chunks/assets/font_d50dbf3f1be0bbac11c7da66.woff2')format("woff");}.ff3_c00412{font-family:ff3_c00412;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00412;src:url('chunks/assets/font_398d474c85e96767b8528f3e.woff2')format("woff");}.ff4_c00412{font-family:ff4_c00412;line-height:1.575000;font-style:normal;font-weight:normal;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_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff5_c00412{font-family:ff5_c00412;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00412{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00412{vertical-align:0.000000px;}
.ls7_c00412{letter-spacing:-3.000000px;}
.ls5_c00412{letter-spacing:0.000000px;}
.ls4_c00412{letter-spacing:0.300000px;}
.ls1_c00412{letter-spacing:3.000000px;}
.ls0_c00412{letter-spacing:6.000000px;}
.ls2_c00412{letter-spacing:8.100000px;}
.ls3_c00412{letter-spacing:8.700000px;}
.ls6_c00412{letter-spacing:9.000000px;}
.sc__c00412{text-shadow:none;}
.sc0_c00412{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00412{-webkit-text-stroke:0px transparent;}
.sc0_c00412{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00412{word-spacing:-21.750000px;}
.ws5_c00412{word-spacing:-20.340000px;}
.ws3_c00412{word-spacing:-20.307000px;}
.ws1_c00412{word-spacing:-16.452000px;}
.ws0_c00412{word-spacing:-14.160000px;}
.ws6_c00412{word-spacing:-13.452000px;}
.ws4_c00412{word-spacing:-12.000000px;}
.ws7_c00412{word-spacing:0.000000px;}
._17_c00412{margin-left:-29.925000px;}
._1a_c00412{margin-left:-27.759000px;}
._1d_c00412{margin-left:-25.281000px;}
._16_c00412{margin-left:-23.394000px;}
._29_c00412{margin-left:-20.139000px;}
._2b_c00412{margin-left:-18.960000px;}
._2a_c00412{margin-left:-17.721000px;}
._1b_c00412{margin-left:-15.723000px;}
._28_c00412{margin-left:-13.980000px;}
._c_c00412{margin-left:-12.540000px;}
._11_c00412{margin-left:-11.460000px;}
._7_c00412{margin-left:-10.320000px;}
._d_c00412{margin-left:-9.000000px;}
._2_c00412{margin-left:-7.860000px;}
._6_c00412{margin-left:-6.240000px;}
._3_c00412{margin-left:-5.220000px;}
._5_c00412{margin-left:-3.840000px;}
._0_c00412{margin-left:-2.820000px;}
._b_c00412{margin-left:-1.140000px;}
._e_c00412{width:1.140000px;}
._18_c00412{width:2.160000px;}
._10_c00412{width:3.360000px;}
._1c_c00412{width:4.680000px;}
._12_c00412{width:5.820000px;}
._15_c00412{width:7.080000px;}
._f_c00412{width:8.400000px;}
._1_c00412{width:9.480000px;}
._4_c00412{width:10.620000px;}
._9_c00412{width:12.420000px;}
._2d_c00412{width:13.638000px;}
._a_c00412{width:14.640000px;}
._19_c00412{width:16.260000px;}
._21_c00412{width:17.943000px;}
._23_c00412{width:19.560000px;}
._13_c00412{width:21.540000px;}
._1e_c00412{width:22.590000px;}
._8_c00412{width:24.000000px;}
._25_c00412{width:25.680000px;}
._27_c00412{width:27.120000px;}
._33_c00412{width:28.800000px;}
._1f_c00412{width:32.277000px;}
._2e_c00412{width:33.678000px;}
._2c_c00412{width:36.060000px;}
._14_c00412{width:38.760000px;}
._20_c00412{width:46.860000px;}
._22_c00412{width:68.460000px;}
._32_c00412{width:97.020000px;}
._30_c00412{width:101.280000px;}
._31_c00412{width:112.161000px;}
._26_c00412{width:124.740000px;}
._24_c00412{width:130.740000px;}
._2f_c00412{width:255.564000px;}
.fc2_c00412{color:transparent;}
.fc1_c00412{color:rgb(128,128,128);}
.fc0_c00412{color:rgb(0,0,0);}
.fs4_c00412{font-size:48.000000px;}
.fs3_c00412{font-size:51.000000px;}
.fs1_c00412{font-size:57.000000px;}
.fs0_c00412{font-size:60.000000px;}
.fs2_c00412{font-size:171.000000px;}
.y0_c00412{bottom:0.000000px;}
.y54_c00412{bottom:3.105000px;}
.y53_c00412{bottom:7.228371px;}
.y52_c00412{bottom:24.765000px;}
.y51_c00412{bottom:48.015000px;}
.y29_c00412{bottom:49.065000px;}
.y50_c00412{bottom:66.615000px;}
.y28_c00412{bottom:67.515000px;}
.y4f_c00412{bottom:84.465000px;}
.y27_c00412{bottom:86.715000px;}
.y4e_c00412{bottom:102.915000px;}
.y26_c00412{bottom:103.665000px;}
.y4d_c00412{bottom:120.165000px;}
.y25_c00412{bottom:122.265000px;}
.y4c_c00412{bottom:138.165000px;}
.y24_c00412{bottom:141.465000px;}
.y4b_c00412{bottom:155.565000px;}
.y23_c00412{bottom:159.615000px;}
.y4a_c00412{bottom:174.615000px;}
.y22_c00412{bottom:177.915000px;}
.y49_c00412{bottom:193.515000px;}
.y21_c00412{bottom:196.215000px;}
.y48_c00412{bottom:211.365000px;}
.y20_c00412{bottom:214.665000px;}
.y47_c00412{bottom:229.515000px;}
.y1f_c00412{bottom:234.315000px;}
.y46_c00412{bottom:247.065000px;}
.y1e_c00412{bottom:250.515000px;}
.y45_c00412{bottom:265.665000px;}
.y1d_c00412{bottom:269.115000px;}
.y44_c00412{bottom:283.815000px;}
.y1c_c00412{bottom:286.665000px;}
.y43_c00412{bottom:302.115000px;}
.y1b_c00412{bottom:303.465000px;}
.y42_c00412{bottom:320.265000px;}
.y1a_c00412{bottom:322.665000px;}
.y41_c00412{bottom:338.565000px;}
.y19_c00412{bottom:340.665000px;}
.y40_c00412{bottom:356.715000px;}
.y18_c00412{bottom:359.115000px;}
.y3f_c00412{bottom:374.265000px;}
.y17_c00412{bottom:377.115000px;}
.y3e_c00412{bottom:393.165000px;}
.y16_c00412{bottom:394.515000px;}
.y3d_c00412{bottom:411.165000px;}
.y15_c00412{bottom:413.415000px;}
.y3c_c00412{bottom:429.315000px;}
.y14_c00412{bottom:431.415000px;}
.y3b_c00412{bottom:447.165000px;}
.y13_c00412{bottom:449.565000px;}
.y3a_c00412{bottom:465.465000px;}
.y12_c00412{bottom:467.865000px;}
.y39_c00412{bottom:483.315000px;}
.y11_c00412{bottom:485.715000px;}
.y38_c00412{bottom:501.315000px;}
.y10_c00412{bottom:503.265000px;}
.y37_c00412{bottom:519.765000px;}
.yf_c00412{bottom:520.515000px;}
.y36_c00412{bottom:537.615000px;}
.ye_c00412{bottom:538.365000px;}
.y35_c00412{bottom:555.615000px;}
.yd_c00412{bottom:556.665000px;}
.y34_c00412{bottom:573.765000px;}
.yc_c00412{bottom:575.115000px;}
.y33_c00412{bottom:592.665000px;}
.yb_c00412{bottom:593.115000px;}
.y32_c00412{bottom:610.515000px;}
.ya_c00412{bottom:611.265000px;}
.y31_c00412{bottom:628.515000px;}
.y9_c00412{bottom:629.415000px;}
.y30_c00412{bottom:646.365000px;}
.y8_c00412{bottom:647.415000px;}
.y7_c00412{bottom:664.665000px;}
.y2f_c00412{bottom:665.115000px;}
.y6_c00412{bottom:683.115000px;}
.y2e_c00412{bottom:701.115000px;}
.y5_c00412{bottom:701.415000px;}
.y2d_c00412{bottom:719.865000px;}
.y4_c00412{bottom:720.015000px;}
.y3_c00412{bottom:737.865000px;}
.y2c_c00412{bottom:738.765000px;}
.y2_c00412{bottom:756.015000px;}
.y2b_c00412{bottom:756.315000px;}
.y1_c00412{bottom:774.315000px;}
.y2a_c00412{bottom:774.615000px;}
.h6_c00412{height:13.200074px;}
.h7_c00412{height:43.804688px;}
.h4_c00412{height:59.736000px;}
.h2_c00412{height:62.880000px;}
.h5_c00412{height:64.020000px;}
.h3_c00412{height:182.457000px;}
.h1_c00412{height:844.500000px;}
.h0_c00412{height:844.575000px;}
.w1_c00412{width:104.875500px;}
.w0_c00412{width:587.250000px;}
.x0_c00412{left:0.000000px;}
.x6_c00412{left:23.850000px;}
.x5_c00412{left:67.500000px;}
.x8_c00412{left:85.050000px;}
.x7_c00412{left:86.100000px;}
.x4_c00412{left:87.150000px;}
.x3_c00412{left:88.500000px;}
.x1_c00412{left:90.150000px;}
.x2_c00412{left:113.100000px;}
.x14_c00412{left:245.439240px;}
.x11_c00412{left:304.500000px;}
.xf_c00412{left:305.700000px;}
.xe_c00412{left:307.200000px;}
.xd_c00412{left:308.550000px;}
.xc_c00412{left:309.900000px;}
.xb_c00412{left:311.100000px;}
.xa_c00412{left:312.750000px;}
.x9_c00412{left:313.800000px;}
.x12_c00412{left:320.250000px;}
.x13_c00412{left:396.600000px;}
.x10_c00412{left:401.400000px;}
@media print{
.v0_c00412{vertical-align:0.000000pt;}
.ls7_c00412{letter-spacing:-2.666667pt;}
.ls5_c00412{letter-spacing:0.000000pt;}
.ls4_c00412{letter-spacing:0.266667pt;}
.ls1_c00412{letter-spacing:2.666667pt;}
.ls0_c00412{letter-spacing:5.333333pt;}
.ls2_c00412{letter-spacing:7.200000pt;}
.ls3_c00412{letter-spacing:7.733333pt;}
.ls6_c00412{letter-spacing:8.000000pt;}
.ws2_c00412{word-spacing:-19.333333pt;}
.ws5_c00412{word-spacing:-18.080000pt;}
.ws3_c00412{word-spacing:-18.050667pt;}
.ws1_c00412{word-spacing:-14.624000pt;}
.ws0_c00412{word-spacing:-12.586667pt;}
.ws6_c00412{word-spacing:-11.957333pt;}
.ws4_c00412{word-spacing:-10.666667pt;}
.ws7_c00412{word-spacing:0.000000pt;}
._17_c00412{margin-left:-26.600000pt;}
._1a_c00412{margin-left:-24.674667pt;}
._1d_c00412{margin-left:-22.472000pt;}
._16_c00412{margin-left:-20.794667pt;}
._29_c00412{margin-left:-17.901333pt;}
._2b_c00412{margin-left:-16.853333pt;}
._2a_c00412{margin-left:-15.752000pt;}
._1b_c00412{margin-left:-13.976000pt;}
._28_c00412{margin-left:-12.426667pt;}
._c_c00412{margin-left:-11.146667pt;}
._11_c00412{margin-left:-10.186667pt;}
._7_c00412{margin-left:-9.173333pt;}
._d_c00412{margin-left:-8.000000pt;}
._2_c00412{margin-left:-6.986667pt;}
._6_c00412{margin-left:-5.546667pt;}
._3_c00412{margin-left:-4.640000pt;}
._5_c00412{margin-left:-3.413333pt;}
._0_c00412{margin-left:-2.506667pt;}
._b_c00412{margin-left:-1.013333pt;}
._e_c00412{width:1.013333pt;}
._18_c00412{width:1.920000pt;}
._10_c00412{width:2.986667pt;}
._1c_c00412{width:4.160000pt;}
._12_c00412{width:5.173333pt;}
._15_c00412{width:6.293333pt;}
._f_c00412{width:7.466667pt;}
._1_c00412{width:8.426667pt;}
._4_c00412{width:9.440000pt;}
._9_c00412{width:11.040000pt;}
._2d_c00412{width:12.122667pt;}
._a_c00412{width:13.013333pt;}
._19_c00412{width:14.453333pt;}
._21_c00412{width:15.949333pt;}
._23_c00412{width:17.386667pt;}
._13_c00412{width:19.146667pt;}
._1e_c00412{width:20.080000pt;}
._8_c00412{width:21.333333pt;}
._25_c00412{width:22.826667pt;}
._27_c00412{width:24.106667pt;}
._33_c00412{width:25.600000pt;}
._1f_c00412{width:28.690667pt;}
._2e_c00412{width:29.936000pt;}
._2c_c00412{width:32.053333pt;}
._14_c00412{width:34.453333pt;}
._20_c00412{width:41.653333pt;}
._22_c00412{width:60.853333pt;}
._32_c00412{width:86.240000pt;}
._30_c00412{width:90.026667pt;}
._31_c00412{width:99.698667pt;}
._26_c00412{width:110.880000pt;}
._24_c00412{width:116.213333pt;}
._2f_c00412{width:227.168000pt;}
.fs4_c00412{font-size:42.666667pt;}
.fs3_c00412{font-size:45.333333pt;}
.fs1_c00412{font-size:50.666667pt;}
.fs0_c00412{font-size:53.333333pt;}
.fs2_c00412{font-size:152.000000pt;}
.y0_c00412{bottom:0.000000pt;}
.y54_c00412{bottom:2.760000pt;}
.y53_c00412{bottom:6.425219pt;}
.y52_c00412{bottom:22.013333pt;}
.y51_c00412{bottom:42.680000pt;}
.y29_c00412{bottom:43.613333pt;}
.y50_c00412{bottom:59.213333pt;}
.y28_c00412{bottom:60.013333pt;}
.y4f_c00412{bottom:75.080000pt;}
.y27_c00412{bottom:77.080000pt;}
.y4e_c00412{bottom:91.480000pt;}
.y26_c00412{bottom:92.146667pt;}
.y4d_c00412{bottom:106.813333pt;}
.y25_c00412{bottom:108.680000pt;}
.y4c_c00412{bottom:122.813333pt;}
.y24_c00412{bottom:125.746667pt;}
.y4b_c00412{bottom:138.280000pt;}
.y23_c00412{bottom:141.880000pt;}
.y4a_c00412{bottom:155.213333pt;}
.y22_c00412{bottom:158.146667pt;}
.y49_c00412{bottom:172.013333pt;}
.y21_c00412{bottom:174.413333pt;}
.y48_c00412{bottom:187.880000pt;}
.y20_c00412{bottom:190.813333pt;}
.y47_c00412{bottom:204.013333pt;}
.y1f_c00412{bottom:208.280000pt;}
.y46_c00412{bottom:219.613333pt;}
.y1e_c00412{bottom:222.680000pt;}
.y45_c00412{bottom:236.146667pt;}
.y1d_c00412{bottom:239.213333pt;}
.y44_c00412{bottom:252.280000pt;}
.y1c_c00412{bottom:254.813333pt;}
.y43_c00412{bottom:268.546667pt;}
.y1b_c00412{bottom:269.746667pt;}
.y42_c00412{bottom:284.680000pt;}
.y1a_c00412{bottom:286.813333pt;}
.y41_c00412{bottom:300.946667pt;}
.y19_c00412{bottom:302.813333pt;}
.y40_c00412{bottom:317.080000pt;}
.y18_c00412{bottom:319.213333pt;}
.y3f_c00412{bottom:332.680000pt;}
.y17_c00412{bottom:335.213333pt;}
.y3e_c00412{bottom:349.480000pt;}
.y16_c00412{bottom:350.680000pt;}
.y3d_c00412{bottom:365.480000pt;}
.y15_c00412{bottom:367.480000pt;}
.y3c_c00412{bottom:381.613333pt;}
.y14_c00412{bottom:383.480000pt;}
.y3b_c00412{bottom:397.480000pt;}
.y13_c00412{bottom:399.613333pt;}
.y3a_c00412{bottom:413.746667pt;}
.y12_c00412{bottom:415.880000pt;}
.y39_c00412{bottom:429.613333pt;}
.y11_c00412{bottom:431.746667pt;}
.y38_c00412{bottom:445.613333pt;}
.y10_c00412{bottom:447.346667pt;}
.y37_c00412{bottom:462.013333pt;}
.yf_c00412{bottom:462.680000pt;}
.y36_c00412{bottom:477.880000pt;}
.ye_c00412{bottom:478.546667pt;}
.y35_c00412{bottom:493.880000pt;}
.yd_c00412{bottom:494.813333pt;}
.y34_c00412{bottom:510.013333pt;}
.yc_c00412{bottom:511.213333pt;}
.y33_c00412{bottom:526.813333pt;}
.yb_c00412{bottom:527.213333pt;}
.y32_c00412{bottom:542.680000pt;}
.ya_c00412{bottom:543.346667pt;}
.y31_c00412{bottom:558.680000pt;}
.y9_c00412{bottom:559.480000pt;}
.y30_c00412{bottom:574.546667pt;}
.y8_c00412{bottom:575.480000pt;}
.y7_c00412{bottom:590.813333pt;}
.y2f_c00412{bottom:591.213333pt;}
.y6_c00412{bottom:607.213333pt;}
.y2e_c00412{bottom:623.213333pt;}
.y5_c00412{bottom:623.480000pt;}
.y2d_c00412{bottom:639.880000pt;}
.y4_c00412{bottom:640.013333pt;}
.y3_c00412{bottom:655.880000pt;}
.y2c_c00412{bottom:656.680000pt;}
.y2_c00412{bottom:672.013333pt;}
.y2b_c00412{bottom:672.280000pt;}
.y1_c00412{bottom:688.280000pt;}
.y2a_c00412{bottom:688.546667pt;}
.h6_c00412{height:11.733399pt;}
.h7_c00412{height:38.937500pt;}
.h4_c00412{height:53.098667pt;}
.h2_c00412{height:55.893333pt;}
.h5_c00412{height:56.906667pt;}
.h3_c00412{height:162.184000pt;}
.h1_c00412{height:750.666667pt;}
.h0_c00412{height:750.733333pt;}
.w1_c00412{width:93.222667pt;}
.w0_c00412{width:522.000000pt;}
.x0_c00412{left:0.000000pt;}
.x6_c00412{left:21.200000pt;}
.x5_c00412{left:60.000000pt;}
.x8_c00412{left:75.600000pt;}
.x7_c00412{left:76.533333pt;}
.x4_c00412{left:77.466667pt;}
.x3_c00412{left:78.666667pt;}
.x1_c00412{left:80.133333pt;}
.x2_c00412{left:100.533333pt;}
.x14_c00412{left:218.168213pt;}
.x11_c00412{left:270.666667pt;}
.xf_c00412{left:271.733333pt;}
.xe_c00412{left:273.066667pt;}
.xd_c00412{left:274.266667pt;}
.xc_c00412{left:275.466667pt;}
.xb_c00412{left:276.533333pt;}
.xa_c00412{left:278.000000pt;}
.x9_c00412{left:278.933333pt;}
.x12_c00412{left:284.666667pt;}
.x13_c00412{left:352.533333pt;}
.x10_c00412{left:356.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_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_e7f1754857d1ee6cac915f17.woff2')format("woff");}.ff1_c00413{font-family:ff1_c00413;line-height:1.437000;font-style:normal;font-weight:normal;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_8f36b6bf8361da237149115c.woff2')format("woff");}.ff2_c00413{font-family:ff2_c00413;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00413;src:url('chunks/assets/font_51d4d2eba74864b60d296811.woff2')format("woff");}.ff3_c00413{font-family:ff3_c00413;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00413;src:url('chunks/assets/font_3edb17fac6655e9689daa76d.woff2')format("woff");}.ff4_c00413{font-family:ff4_c00413;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00413;src:url('chunks/assets/font_62e019a016f5ca7803b8f3a8.woff2')format("woff");}.ff5_c00413{font-family:ff5_c00413;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00413;src:url('chunks/assets/font_62aec5f3f8a1efca22fbf8d1.woff2')format("woff");}.ff6_c00413{font-family:ff6_c00413;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00413;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff7_c00413{font-family:ff7_c00413;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls6_c00413{letter-spacing:0.000000px;}
.ls2_c00413{letter-spacing:3.000000px;}
.ls1_c00413{letter-spacing:4.500000px;}
.ls0_c00413{letter-spacing:6.000000px;}
.ls4_c00413{letter-spacing:9.000000px;}
.ls5_c00413{letter-spacing:32.460000px;}
.ls3_c00413{letter-spacing:305.940000px;}
.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;}
}
.ws3_c00413{word-spacing:-28.860000px;}
.ws0_c00413{word-spacing:-20.340000px;}
.ws4_c00413{word-spacing:-18.060000px;}
.ws2_c00413{word-spacing:-14.160000px;}
.ws1_c00413{word-spacing:-13.452000px;}
.ws5_c00413{word-spacing:0.000000px;}
._20_c00413{margin-left:-24.558000px;}
._30_c00413{margin-left:-23.220000px;}
._2f_c00413{margin-left:-21.522000px;}
._19_c00413{margin-left:-19.860000px;}
._1d_c00413{margin-left:-18.462000px;}
._d_c00413{margin-left:-16.632000px;}
._e_c00413{margin-left:-15.000000px;}
._6_c00413{margin-left:-12.882000px;}
._c_c00413{margin-left:-11.298000px;}
._b_c00413{margin-left:-9.840000px;}
._16_c00413{margin-left:-8.505000px;}
._3_c00413{margin-left:-7.182000px;}
._f_c00413{margin-left:-6.105000px;}
._0_c00413{margin-left:-5.073000px;}
._2_c00413{margin-left:-3.819000px;}
._4_c00413{margin-left:-2.508000px;}
._9_c00413{margin-left:-1.272000px;}
._18_c00413{width:1.404000px;}
._10_c00413{width:2.619000px;}
._15_c00413{width:4.617000px;}
._13_c00413{width:5.982000px;}
._1a_c00413{width:7.584000px;}
._17_c00413{width:9.027000px;}
._27_c00413{width:10.203000px;}
._5_c00413{width:11.286000px;}
._1c_c00413{width:12.363000px;}
._14_c00413{width:13.458000px;}
._21_c00413{width:14.460000px;}
._35_c00413{width:15.819000px;}
._2a_c00413{width:16.884000px;}
._26_c00413{width:18.948000px;}
._24_c00413{width:20.592000px;}
._8_c00413{width:21.912000px;}
._25_c00413{width:23.376000px;}
._7_c00413{width:25.095000px;}
._34_c00413{width:26.124000px;}
._1b_c00413{width:27.135000px;}
._12_c00413{width:28.332000px;}
._2b_c00413{width:30.024000px;}
._11_c00413{width:31.557000px;}
._29_c00413{width:34.728000px;}
._2c_c00413{width:36.324000px;}
._a_c00413{width:37.848000px;}
._1e_c00413{width:40.044000px;}
._2d_c00413{width:41.097000px;}
._2e_c00413{width:45.669000px;}
._22_c00413{width:56.598000px;}
._31_c00413{width:70.260000px;}
._32_c00413{width:75.498000px;}
._23_c00413{width:81.582000px;}
._1f_c00413{width:90.852000px;}
._28_c00413{width:109.653000px;}
._1_c00413{width:111.207000px;}
._33_c00413{width:572.484000px;}
.fc2_c00413{color:transparent;}
.fc1_c00413{color:rgb(128,128,128);}
.fc0_c00413{color:rgb(0,0,0);}
.fs3_c00413{font-size:24.000000px;}
.fs4_c00413{font-size:48.000000px;}
.fs2_c00413{font-size:51.000000px;}
.fs0_c00413{font-size:57.000000px;}
.fs1_c00413{font-size:60.000000px;}
.y0_c00413{bottom:0.000000px;}
.y4e_c00413{bottom:3.105000px;}
.y4d_c00413{bottom:7.228355px;}
.y4c_c00413{bottom:32.085000px;}
.y29_c00413{bottom:49.935000px;}
.y28_c00413{bottom:67.785000px;}
.y4b_c00413{bottom:68.385000px;}
.y4a_c00413{bottom:86.085000px;}
.y27_c00413{bottom:86.685000px;}
.y49_c00413{bottom:103.635000px;}
.y26_c00413{bottom:105.285000px;}
.y48_c00413{bottom:123.135000px;}
.y25_c00413{bottom:123.435000px;}
.y47_c00413{bottom:141.285000px;}
.y24_c00413{bottom:141.435000px;}
.y46_c00413{bottom:159.285000px;}
.y23_c00413{bottom:159.885000px;}
.y45_c00413{bottom:177.435000px;}
.y22_c00413{bottom:178.485000px;}
.y44_c00413{bottom:195.435000px;}
.y21_c00413{bottom:195.735000px;}
.y20_c00413{bottom:213.885000px;}
.y43_c00413{bottom:214.185000px;}
.y1f_c00413{bottom:232.485000px;}
.y1e_c00413{bottom:250.785000px;}
.y1d_c00413{bottom:268.635000px;}
.y42_c00413{bottom:286.785000px;}
.y1c_c00413{bottom:287.085000px;}
.y41_c00413{bottom:304.335000px;}
.y1b_c00413{bottom:304.785000px;}
.y40_c00413{bottom:322.635000px;}
.y1a_c00413{bottom:323.535000px;}
.y3f_c00413{bottom:340.785000px;}
.y19_c00413{bottom:341.535000px;}
.y3e_c00413{bottom:358.635000px;}
.y18_c00413{bottom:359.685000px;}
.y17_c00413{bottom:377.535000px;}
.y3d_c00413{bottom:377.685000px;}
.y16_c00413{bottom:395.235000px;}
.y15_c00413{bottom:413.385000px;}
.y3c_c00413{bottom:413.685000px;}
.y3b_c00413{bottom:431.685000px;}
.y14_c00413{bottom:431.985000px;}
.y3a_c00413{bottom:449.835000px;}
.y13_c00413{bottom:450.135000px;}
.y12_c00413{bottom:468.135000px;}
.y11_c00413{bottom:486.285000px;}
.y39_c00413{bottom:504.435000px;}
.y10_c00413{bottom:504.885000px;}
.y38_c00413{bottom:522.585000px;}
.yf_c00413{bottom:522.735000px;}
.y37_c00413{bottom:540.585000px;}
.ye_c00413{bottom:540.885000px;}
.y36_c00413{bottom:558.585000px;}
.yd_c00413{bottom:558.885000px;}
.y35_c00413{bottom:576.735000px;}
.yc_c00413{bottom:577.785000px;}
.y34_c00413{bottom:594.585000px;}
.yb_c00413{bottom:595.635000px;}
.y33_c00413{bottom:613.185000px;}
.ya_c00413{bottom:613.785000px;}
.y32_c00413{bottom:631.335000px;}
.y9_c00413{bottom:632.085000px;}
.y31_c00413{bottom:649.335000px;}
.y8_c00413{bottom:650.235000px;}
.y30_c00413{bottom:667.485000px;}
.y7_c00413{bottom:669.585000px;}
.y2f_c00413{bottom:685.785000px;}
.y6_c00413{bottom:686.835000px;}
.y2e_c00413{bottom:703.935000px;}
.y5_c00413{bottom:705.585000px;}
.y2d_c00413{bottom:722.835000px;}
.y4_c00413{bottom:723.135000px;}
.y2c_c00413{bottom:740.085000px;}
.y3_c00413{bottom:741.735000px;}
.y2b_c00413{bottom:758.385000px;}
.y2_c00413{bottom:760.035000px;}
.y2a_c00413{bottom:776.835000px;}
.y1_c00413{bottom:777.885000px;}
.h5_c00413{height:13.200074px;}
.h6_c00413{height:43.804688px;}
.h3_c00413{height:59.736000px;}
.h2_c00413{height:62.880000px;}
.h4_c00413{height:64.020000px;}
.h1_c00413{height:846.750000px;}
.h0_c00413{height:846.975000px;}
.w2_c00413{width:104.875500px;}
.w0_c00413{width:568.875000px;}
.w1_c00413{width:569.250000px;}
.x0_c00413{left:0.000000px;}
.x4_c00413{left:22.200000px;}
.x3_c00413{left:84.300000px;}
.x2_c00413{left:85.350000px;}
.x5_c00413{left:86.700000px;}
.x6_c00413{left:87.750000px;}
.x1_c00413{left:91.800000px;}
.xe_c00413{left:236.251740px;}
.x9_c00413{left:303.000000px;}
.x8_c00413{left:304.350000px;}
.x7_c00413{left:305.400000px;}
.xc_c00413{left:306.450000px;}
.xa_c00413{left:317.550000px;}
.xb_c00413{left:321.000000px;}
.xd_c00413{left:478.800000px;}
@media print{
.v0_c00413{vertical-align:0.000000pt;}
.ls6_c00413{letter-spacing:0.000000pt;}
.ls2_c00413{letter-spacing:2.666667pt;}
.ls1_c00413{letter-spacing:4.000000pt;}
.ls0_c00413{letter-spacing:5.333333pt;}
.ls4_c00413{letter-spacing:8.000000pt;}
.ls5_c00413{letter-spacing:28.853333pt;}
.ls3_c00413{letter-spacing:271.946667pt;}
.ws3_c00413{word-spacing:-25.653333pt;}
.ws0_c00413{word-spacing:-18.080000pt;}
.ws4_c00413{word-spacing:-16.053333pt;}
.ws2_c00413{word-spacing:-12.586667pt;}
.ws1_c00413{word-spacing:-11.957333pt;}
.ws5_c00413{word-spacing:0.000000pt;}
._20_c00413{margin-left:-21.829333pt;}
._30_c00413{margin-left:-20.640000pt;}
._2f_c00413{margin-left:-19.130667pt;}
._19_c00413{margin-left:-17.653333pt;}
._1d_c00413{margin-left:-16.410667pt;}
._d_c00413{margin-left:-14.784000pt;}
._e_c00413{margin-left:-13.333333pt;}
._6_c00413{margin-left:-11.450667pt;}
._c_c00413{margin-left:-10.042667pt;}
._b_c00413{margin-left:-8.746667pt;}
._16_c00413{margin-left:-7.560000pt;}
._3_c00413{margin-left:-6.384000pt;}
._f_c00413{margin-left:-5.426667pt;}
._0_c00413{margin-left:-4.509333pt;}
._2_c00413{margin-left:-3.394667pt;}
._4_c00413{margin-left:-2.229333pt;}
._9_c00413{margin-left:-1.130667pt;}
._18_c00413{width:1.248000pt;}
._10_c00413{width:2.328000pt;}
._15_c00413{width:4.104000pt;}
._13_c00413{width:5.317333pt;}
._1a_c00413{width:6.741333pt;}
._17_c00413{width:8.024000pt;}
._27_c00413{width:9.069333pt;}
._5_c00413{width:10.032000pt;}
._1c_c00413{width:10.989333pt;}
._14_c00413{width:11.962667pt;}
._21_c00413{width:12.853333pt;}
._35_c00413{width:14.061333pt;}
._2a_c00413{width:15.008000pt;}
._26_c00413{width:16.842667pt;}
._24_c00413{width:18.304000pt;}
._8_c00413{width:19.477333pt;}
._25_c00413{width:20.778667pt;}
._7_c00413{width:22.306667pt;}
._34_c00413{width:23.221333pt;}
._1b_c00413{width:24.120000pt;}
._12_c00413{width:25.184000pt;}
._2b_c00413{width:26.688000pt;}
._11_c00413{width:28.050667pt;}
._29_c00413{width:30.869333pt;}
._2c_c00413{width:32.288000pt;}
._a_c00413{width:33.642667pt;}
._1e_c00413{width:35.594667pt;}
._2d_c00413{width:36.530667pt;}
._2e_c00413{width:40.594667pt;}
._22_c00413{width:50.309333pt;}
._31_c00413{width:62.453333pt;}
._32_c00413{width:67.109333pt;}
._23_c00413{width:72.517333pt;}
._1f_c00413{width:80.757333pt;}
._28_c00413{width:97.469333pt;}
._1_c00413{width:98.850667pt;}
._33_c00413{width:508.874667pt;}
.fs3_c00413{font-size:21.333333pt;}
.fs4_c00413{font-size:42.666667pt;}
.fs2_c00413{font-size:45.333333pt;}
.fs0_c00413{font-size:50.666667pt;}
.fs1_c00413{font-size:53.333333pt;}
.y0_c00413{bottom:0.000000pt;}
.y4e_c00413{bottom:2.760000pt;}
.y4d_c00413{bottom:6.425204pt;}
.y4c_c00413{bottom:28.520000pt;}
.y29_c00413{bottom:44.386667pt;}
.y28_c00413{bottom:60.253333pt;}
.y4b_c00413{bottom:60.786667pt;}
.y4a_c00413{bottom:76.520000pt;}
.y27_c00413{bottom:77.053333pt;}
.y49_c00413{bottom:92.120000pt;}
.y26_c00413{bottom:93.586667pt;}
.y48_c00413{bottom:109.453333pt;}
.y25_c00413{bottom:109.720000pt;}
.y47_c00413{bottom:125.586667pt;}
.y24_c00413{bottom:125.720000pt;}
.y46_c00413{bottom:141.586667pt;}
.y23_c00413{bottom:142.120000pt;}
.y45_c00413{bottom:157.720000pt;}
.y22_c00413{bottom:158.653333pt;}
.y44_c00413{bottom:173.720000pt;}
.y21_c00413{bottom:173.986667pt;}
.y20_c00413{bottom:190.120000pt;}
.y43_c00413{bottom:190.386667pt;}
.y1f_c00413{bottom:206.653333pt;}
.y1e_c00413{bottom:222.920000pt;}
.y1d_c00413{bottom:238.786667pt;}
.y42_c00413{bottom:254.920000pt;}
.y1c_c00413{bottom:255.186667pt;}
.y41_c00413{bottom:270.520000pt;}
.y1b_c00413{bottom:270.920000pt;}
.y40_c00413{bottom:286.786667pt;}
.y1a_c00413{bottom:287.586667pt;}
.y3f_c00413{bottom:302.920000pt;}
.y19_c00413{bottom:303.586667pt;}
.y3e_c00413{bottom:318.786667pt;}
.y18_c00413{bottom:319.720000pt;}
.y17_c00413{bottom:335.586667pt;}
.y3d_c00413{bottom:335.720000pt;}
.y16_c00413{bottom:351.320000pt;}
.y15_c00413{bottom:367.453333pt;}
.y3c_c00413{bottom:367.720000pt;}
.y3b_c00413{bottom:383.720000pt;}
.y14_c00413{bottom:383.986667pt;}
.y3a_c00413{bottom:399.853333pt;}
.y13_c00413{bottom:400.120000pt;}
.y12_c00413{bottom:416.120000pt;}
.y11_c00413{bottom:432.253333pt;}
.y39_c00413{bottom:448.386667pt;}
.y10_c00413{bottom:448.786667pt;}
.y38_c00413{bottom:464.520000pt;}
.yf_c00413{bottom:464.653333pt;}
.y37_c00413{bottom:480.520000pt;}
.ye_c00413{bottom:480.786667pt;}
.y36_c00413{bottom:496.520000pt;}
.yd_c00413{bottom:496.786667pt;}
.y35_c00413{bottom:512.653333pt;}
.yc_c00413{bottom:513.586667pt;}
.y34_c00413{bottom:528.520000pt;}
.yb_c00413{bottom:529.453333pt;}
.y33_c00413{bottom:545.053333pt;}
.ya_c00413{bottom:545.586667pt;}
.y32_c00413{bottom:561.186667pt;}
.y9_c00413{bottom:561.853333pt;}
.y31_c00413{bottom:577.186667pt;}
.y8_c00413{bottom:577.986667pt;}
.y30_c00413{bottom:593.320000pt;}
.y7_c00413{bottom:595.186667pt;}
.y2f_c00413{bottom:609.586667pt;}
.y6_c00413{bottom:610.520000pt;}
.y2e_c00413{bottom:625.720000pt;}
.y5_c00413{bottom:627.186667pt;}
.y2d_c00413{bottom:642.520000pt;}
.y4_c00413{bottom:642.786667pt;}
.y2c_c00413{bottom:657.853333pt;}
.y3_c00413{bottom:659.320000pt;}
.y2b_c00413{bottom:674.120000pt;}
.y2_c00413{bottom:675.586667pt;}
.y2a_c00413{bottom:690.520000pt;}
.y1_c00413{bottom:691.453333pt;}
.h5_c00413{height:11.733399pt;}
.h6_c00413{height:38.937500pt;}
.h3_c00413{height:53.098667pt;}
.h2_c00413{height:55.893333pt;}
.h4_c00413{height:56.906667pt;}
.h1_c00413{height:752.666667pt;}
.h0_c00413{height:752.866667pt;}
.w2_c00413{width:93.222667pt;}
.w0_c00413{width:505.666667pt;}
.w1_c00413{width:506.000000pt;}
.x0_c00413{left:0.000000pt;}
.x4_c00413{left:19.733333pt;}
.x3_c00413{left:74.933333pt;}
.x2_c00413{left:75.866667pt;}
.x5_c00413{left:77.066667pt;}
.x6_c00413{left:78.000000pt;}
.x1_c00413{left:81.600000pt;}
.xe_c00413{left:210.001546pt;}
.x9_c00413{left:269.333333pt;}
.x8_c00413{left:270.533333pt;}
.x7_c00413{left:271.466667pt;}
.xc_c00413{left:272.400000pt;}
.xa_c00413{left:282.266667pt;}
.xb_c00413{left:285.333333pt;}
.xd_c00413{left:425.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_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_c3169510544270dfc1b4143f.woff2')format("woff");}.ff1_c00414{font-family:ff1_c00414;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00414;src:url('chunks/assets/font_1248b5f4c444e242d8c5335b.woff2')format("woff");}.ff2_c00414{font-family:ff2_c00414;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00414;src:url('chunks/assets/font_953a468c6774cd4f97064ca3.woff2')format("woff");}.ff3_c00414{font-family:ff3_c00414;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00414;src:url('chunks/assets/font_dd0742b4f209c54f59ccc44a.woff2')format("woff");}.ff4_c00414{font-family:ff4_c00414;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00414;src:url('chunks/assets/font_d10c728020154997df6960c6.woff2')format("woff");}.ff5_c00414{font-family:ff5_c00414;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00414;src:url('chunks/assets/font_e49f7a00f2c53d081868f7ee.woff2')format("woff");}.ff6_c00414{font-family:ff6_c00414;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00414;src:url('chunks/assets/font_fb1639c49ff41d7ba5f83665.woff2')format("woff");}.ff7_c00414{font-family:ff7_c00414;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00414;src:url('chunks/assets/font_0ab38b47d0eef82449f2dc3c.woff2')format("woff");}.ff8_c00414{font-family:ff8_c00414;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00414;src:url('chunks/assets/font_3eab0ca007dd4865911ce39a.woff2')format("woff");}.ff9_c00414{font-family:ff9_c00414;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00414;src:url('chunks/assets/font_aaff8f9cebe790b106764a2a.woff2')format("woff");}.ffa_c00414{font-family:ffa_c00414;line-height:1.575000;font-style:normal;font-weight: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_c00414;src:url('chunks/assets/font_ee942030fcd6466170cd79ba.woff2')format("woff");}.ffb_c00414{font-family:ffb_c00414;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc_c00414;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ffc_c00414{font-family:ffc_c00414;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00414{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00414{vertical-align:0.000000px;}
.v1_c00414{vertical-align:94.800000px;}
.ls10_c00414{letter-spacing:-3.000000px;}
.lsf_c00414{letter-spacing:0.000000px;}
.lsc_c00414{letter-spacing:2.400000px;}
.ls5_c00414{letter-spacing:2.895000px;}
.ls2_c00414{letter-spacing:3.000000px;}
.ls7_c00414{letter-spacing:3.900000px;}
.ls3_c00414{letter-spacing:4.800000px;}
.lse_c00414{letter-spacing:6.000000px;}
.ls4_c00414{letter-spacing:6.768000px;}
.ls6_c00414{letter-spacing:8.388000px;}
.lsb_c00414{letter-spacing:8.550000px;}
.ls0_c00414{letter-spacing:8.694000px;}
.ls9_c00414{letter-spacing:8.700000px;}
.lsd_c00414{letter-spacing:9.000000px;}
.ls1_c00414{letter-spacing:12.000000px;}
.lsa_c00414{letter-spacing:21.819000px;}
.ls8_c00414{letter-spacing:29.520000px;}
.sc__c00414{text-shadow:none;}
.sc0_c00414{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00414{-webkit-text-stroke:0px transparent;}
.sc0_c00414{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00414{word-spacing:-31.293000px;}
.ws4_c00414{word-spacing:-27.576000px;}
.ws6_c00414{word-spacing:-19.860000px;}
.wsc_c00414{word-spacing:-18.060000px;}
.ws5_c00414{word-spacing:-18.000000px;}
.ws1_c00414{word-spacing:-17.208000px;}
.wsa_c00414{word-spacing:-15.000000px;}
.ws2_c00414{word-spacing:-14.160000px;}
.ws8_c00414{word-spacing:-13.452000px;}
.ws0_c00414{word-spacing:-12.906000px;}
.wsb_c00414{word-spacing:-12.750000px;}
.ws9_c00414{word-spacing:-12.000000px;}
.ws7_c00414{word-spacing:-6.045000px;}
.wsd_c00414{word-spacing:0.000000px;}
._31_c00414{margin-left:-23.772000px;}
._1b_c00414{margin-left:-19.890000px;}
._25_c00414{margin-left:-18.735000px;}
._19_c00414{margin-left:-15.918000px;}
._15_c00414{margin-left:-14.478000px;}
._27_c00414{margin-left:-13.437000px;}
._24_c00414{margin-left:-12.216000px;}
._5_c00414{margin-left:-10.764000px;}
._26_c00414{margin-left:-8.742000px;}
._16_c00414{margin-left:-7.710000px;}
._10_c00414{margin-left:-6.300000px;}
._0_c00414{margin-left:-4.698000px;}
._1_c00414{margin-left:-3.186000px;}
._4_c00414{margin-left:-1.386000px;}
._13_c00414{width:1.020000px;}
._3_c00414{width:2.214000px;}
._2_c00414{width:4.050000px;}
._8_c00414{width:5.832000px;}
._a_c00414{width:7.380000px;}
._1f_c00414{width:8.748000px;}
._33_c00414{width:10.176000px;}
._1e_c00414{width:11.334000px;}
._11_c00414{width:12.726000px;}
._12_c00414{width:14.034000px;}
._1c_c00414{width:15.540000px;}
._14_c00414{width:17.052000px;}
._28_c00414{width:18.132000px;}
._2c_c00414{width:19.860000px;}
._7_c00414{width:20.940000px;}
._f_c00414{width:22.140000px;}
._d_c00414{width:23.160000px;}
._b_c00414{width:24.684000px;}
._2e_c00414{width:26.046000px;}
._23_c00414{width:27.432000px;}
._9_c00414{width:28.824000px;}
._c_c00414{width:29.892000px;}
._2b_c00414{width:31.791000px;}
._e_c00414{width:33.936000px;}
._29_c00414{width:35.340000px;}
._1d_c00414{width:36.678000px;}
._20_c00414{width:37.980000px;}
._21_c00414{width:39.240000px;}
._2a_c00414{width:45.822000px;}
._22_c00414{width:48.498000px;}
._1a_c00414{width:58.380000px;}
._18_c00414{width:68.748000px;}
._30_c00414{width:77.436000px;}
._32_c00414{width:102.054000px;}
._6_c00414{width:114.144000px;}
._2f_c00414{width:158.907000px;}
._17_c00414{width:195.540000px;}
._2d_c00414{width:201.078000px;}
.fc2_c00414{color:transparent;}
.fc1_c00414{color:rgb(128,128,128);}
.fc0_c00414{color:rgb(0,0,0);}
.fs6_c00414{font-size:36.000000px;}
.fsa_c00414{font-size:39.000000px;}
.fs3_c00414{font-size:42.000000px;}
.fs7_c00414{font-size:45.000000px;}
.fsb_c00414{font-size:48.000000px;}
.fsc_c00414{font-size:51.000000px;}
.fs0_c00414{font-size:54.000000px;}
.fs4_c00414{font-size:57.000000px;}
.fs2_c00414{font-size:60.000000px;}
.fs8_c00414{font-size:63.000000px;}
.fs5_c00414{font-size:66.000000px;}
.fs1_c00414{font-size:72.000000px;}
.fs9_c00414{font-size:195.000000px;}
.y0_c00414{bottom:0.000000px;}
.y51_c00414{bottom:3.105000px;}
.y50_c00414{bottom:7.228371px;}
.y4e_c00414{bottom:45.315000px;}
.y28_c00414{bottom:61.215000px;}
.y4d_c00414{bottom:63.465000px;}
.y27_c00414{bottom:79.965000px;}
.y4c_c00414{bottom:82.065000px;}
.y26_c00414{bottom:98.565000px;}
.y4b_c00414{bottom:99.615000px;}
.y25_c00414{bottom:116.415000px;}
.y24_c00414{bottom:134.715000px;}
.y4a_c00414{bottom:136.815000px;}
.y23_c00414{bottom:153.315000px;}
.y49_c00414{bottom:154.965000px;}
.y22_c00414{bottom:171.765000px;}
.y48_c00414{bottom:172.215000px;}
.y21_c00414{bottom:189.465000px;}
.y47_c00414{bottom:190.815000px;}
.y20_c00414{bottom:208.365000px;}
.y46_c00414{bottom:209.565000px;}
.y1f_c00414{bottom:225.465000px;}
.y45_c00414{bottom:227.265000px;}
.y1d_c00414{bottom:238.665000px;}
.y1e_c00414{bottom:243.765000px;}
.y44_c00414{bottom:245.415000px;}
.y43_c00414{bottom:263.565000px;}
.y4f_c00414{bottom:272.715000px;}
.y42_c00414{bottom:281.865000px;}
.y1c_c00414{bottom:298.365000px;}
.y41_c00414{bottom:300.015000px;}
.y1b_c00414{bottom:316.365000px;}
.y40_c00414{bottom:318.915000px;}
.y1a_c00414{bottom:334.215000px;}
.y3f_c00414{bottom:336.165000px;}
.y19_c00414{bottom:352.665000px;}
.y3e_c00414{bottom:354.015000px;}
.y18_c00414{bottom:370.665000px;}
.y3d_c00414{bottom:372.315000px;}
.y17_c00414{bottom:388.515000px;}
.y3c_c00414{bottom:390.165000px;}
.y3b_c00414{bottom:408.015000px;}
.y16_c00414{bottom:423.615000px;}
.y3a_c00414{bottom:426.315000px;}
.y39_c00414{bottom:444.315000px;}
.y15_c00414{bottom:460.815000px;}
.y38_c00414{bottom:462.465000px;}
.y14_c00414{bottom:478.965000px;}
.y37_c00414{bottom:480.615000px;}
.y13_c00414{bottom:497.265000px;}
.y36_c00414{bottom:498.165000px;}
.y12_c00414{bottom:515.115000px;}
.y35_c00414{bottom:516.765000px;}
.y11_c00414{bottom:532.365000px;}
.y34_c00414{bottom:534.915000px;}
.y10_c00414{bottom:550.215000px;}
.y33_c00414{bottom:552.615000px;}
.yf_c00414{bottom:568.365000px;}
.y32_c00414{bottom:570.765000px;}
.ye_c00414{bottom:586.365000px;}
.y31_c00414{bottom:588.915000px;}
.yd_c00414{bottom:604.515000px;}
.y30_c00414{bottom:607.215000px;}
.yc_c00414{bottom:622.665000px;}
.y2f_c00414{bottom:625.365000px;}
.yb_c00414{bottom:641.265000px;}
.y2e_c00414{bottom:643.665000px;}
.ya_c00414{bottom:658.815000px;}
.y2d_c00414{bottom:662.265000px;}
.y9_c00414{bottom:677.415000px;}
.y2c_c00414{bottom:680.415000px;}
.y8_c00414{bottom:695.715000px;}
.y2b_c00414{bottom:698.415000px;}
.y7_c00414{bottom:713.565000px;}
.y2a_c00414{bottom:716.865000px;}
.y6_c00414{bottom:731.715000px;}
.y29_c00414{bottom:734.715000px;}
.y5_c00414{bottom:749.265000px;}
.y3_c00414{bottom:753.315000px;}
.y4_c00414{bottom:768.165000px;}
.y2_c00414{bottom:771.615000px;}
.y1_c00414{bottom:788.865000px;}
.hd_c00414{height:13.200074px;}
.he_c00414{height:43.804688px;}
.hb_c00414{height:54.417000px;}
.ha_c00414{height:56.592000px;}
.h8_c00414{height:59.736000px;}
.h4_c00414{height:62.880000px;}
.h5_c00414{height:64.020000px;}
.h9_c00414{height:64.620000px;}
.hc_c00414{height:66.024000px;}
.h6_c00414{height:66.713379px;}
.h3_c00414{height:69.168000px;}
.h2_c00414{height:75.456000px;}
.h7_c00414{height:208.065000px;}
.h1_c00414{height:844.500000px;}
.h0_c00414{height:844.575000px;}
.w1_c00414{width:104.875500px;}
.w0_c00414{width:587.250000px;}
.x0_c00414{left:0.000000px;}
.xd_c00414{left:20.250000px;}
.x1_c00414{left:65.700000px;}
.x4_c00414{left:77.250000px;}
.x5_c00414{left:78.600000px;}
.x6_c00414{left:79.650000px;}
.x9_c00414{left:90.450000px;}
.xa_c00414{left:106.200000px;}
.x8_c00414{left:114.300000px;}
.xb_c00414{left:133.050000px;}
.xc_c00414{left:163.350000px;}
.x7_c00414{left:177.900000px;}
.x13_c00414{left:245.439240px;}
.x3_c00414{left:295.350000px;}
.x10_c00414{left:297.000000px;}
.x2_c00414{left:298.650000px;}
.xe_c00414{left:300.000000px;}
.xf_c00414{left:301.350000px;}
.x11_c00414{left:394.650000px;}
.x12_c00414{left:558.300000px;}
@media print{
.v0_c00414{vertical-align:0.000000pt;}
.v1_c00414{vertical-align:84.266667pt;}
.ls10_c00414{letter-spacing:-2.666667pt;}
.lsf_c00414{letter-spacing:0.000000pt;}
.lsc_c00414{letter-spacing:2.133333pt;}
.ls5_c00414{letter-spacing:2.573333pt;}
.ls2_c00414{letter-spacing:2.666667pt;}
.ls7_c00414{letter-spacing:3.466667pt;}
.ls3_c00414{letter-spacing:4.266667pt;}
.lse_c00414{letter-spacing:5.333333pt;}
.ls4_c00414{letter-spacing:6.016000pt;}
.ls6_c00414{letter-spacing:7.456000pt;}
.lsb_c00414{letter-spacing:7.600000pt;}
.ls0_c00414{letter-spacing:7.728000pt;}
.ls9_c00414{letter-spacing:7.733333pt;}
.lsd_c00414{letter-spacing:8.000000pt;}
.ls1_c00414{letter-spacing:10.666667pt;}
.lsa_c00414{letter-spacing:19.394667pt;}
.ls8_c00414{letter-spacing:26.240000pt;}
.ws3_c00414{word-spacing:-27.816000pt;}
.ws4_c00414{word-spacing:-24.512000pt;}
.ws6_c00414{word-spacing:-17.653333pt;}
.wsc_c00414{word-spacing:-16.053333pt;}
.ws5_c00414{word-spacing:-16.000000pt;}
.ws1_c00414{word-spacing:-15.296000pt;}
.wsa_c00414{word-spacing:-13.333333pt;}
.ws2_c00414{word-spacing:-12.586667pt;}
.ws8_c00414{word-spacing:-11.957333pt;}
.ws0_c00414{word-spacing:-11.472000pt;}
.wsb_c00414{word-spacing:-11.333333pt;}
.ws9_c00414{word-spacing:-10.666667pt;}
.ws7_c00414{word-spacing:-5.373333pt;}
.wsd_c00414{word-spacing:0.000000pt;}
._31_c00414{margin-left:-21.130667pt;}
._1b_c00414{margin-left:-17.680000pt;}
._25_c00414{margin-left:-16.653333pt;}
._19_c00414{margin-left:-14.149333pt;}
._15_c00414{margin-left:-12.869333pt;}
._27_c00414{margin-left:-11.944000pt;}
._24_c00414{margin-left:-10.858667pt;}
._5_c00414{margin-left:-9.568000pt;}
._26_c00414{margin-left:-7.770667pt;}
._16_c00414{margin-left:-6.853333pt;}
._10_c00414{margin-left:-5.600000pt;}
._0_c00414{margin-left:-4.176000pt;}
._1_c00414{margin-left:-2.832000pt;}
._4_c00414{margin-left:-1.232000pt;}
._13_c00414{width:0.906667pt;}
._3_c00414{width:1.968000pt;}
._2_c00414{width:3.600000pt;}
._8_c00414{width:5.184000pt;}
._a_c00414{width:6.560000pt;}
._1f_c00414{width:7.776000pt;}
._33_c00414{width:9.045333pt;}
._1e_c00414{width:10.074667pt;}
._11_c00414{width:11.312000pt;}
._12_c00414{width:12.474667pt;}
._1c_c00414{width:13.813333pt;}
._14_c00414{width:15.157333pt;}
._28_c00414{width:16.117333pt;}
._2c_c00414{width:17.653333pt;}
._7_c00414{width:18.613333pt;}
._f_c00414{width:19.680000pt;}
._d_c00414{width:20.586667pt;}
._b_c00414{width:21.941333pt;}
._2e_c00414{width:23.152000pt;}
._23_c00414{width:24.384000pt;}
._9_c00414{width:25.621333pt;}
._c_c00414{width:26.570667pt;}
._2b_c00414{width:28.258667pt;}
._e_c00414{width:30.165333pt;}
._29_c00414{width:31.413333pt;}
._1d_c00414{width:32.602667pt;}
._20_c00414{width:33.760000pt;}
._21_c00414{width:34.880000pt;}
._2a_c00414{width:40.730667pt;}
._22_c00414{width:43.109333pt;}
._1a_c00414{width:51.893333pt;}
._18_c00414{width:61.109333pt;}
._30_c00414{width:68.832000pt;}
._32_c00414{width:90.714667pt;}
._6_c00414{width:101.461333pt;}
._2f_c00414{width:141.250667pt;}
._17_c00414{width:173.813333pt;}
._2d_c00414{width:178.736000pt;}
.fs6_c00414{font-size:32.000000pt;}
.fsa_c00414{font-size:34.666667pt;}
.fs3_c00414{font-size:37.333333pt;}
.fs7_c00414{font-size:40.000000pt;}
.fsb_c00414{font-size:42.666667pt;}
.fsc_c00414{font-size:45.333333pt;}
.fs0_c00414{font-size:48.000000pt;}
.fs4_c00414{font-size:50.666667pt;}
.fs2_c00414{font-size:53.333333pt;}
.fs8_c00414{font-size:56.000000pt;}
.fs5_c00414{font-size:58.666667pt;}
.fs1_c00414{font-size:64.000000pt;}
.fs9_c00414{font-size:173.333333pt;}
.y0_c00414{bottom:0.000000pt;}
.y51_c00414{bottom:2.760000pt;}
.y50_c00414{bottom:6.425219pt;}
.y4e_c00414{bottom:40.280000pt;}
.y28_c00414{bottom:54.413333pt;}
.y4d_c00414{bottom:56.413333pt;}
.y27_c00414{bottom:71.080000pt;}
.y4c_c00414{bottom:72.946667pt;}
.y26_c00414{bottom:87.613333pt;}
.y4b_c00414{bottom:88.546667pt;}
.y25_c00414{bottom:103.480000pt;}
.y24_c00414{bottom:119.746667pt;}
.y4a_c00414{bottom:121.613333pt;}
.y23_c00414{bottom:136.280000pt;}
.y49_c00414{bottom:137.746667pt;}
.y22_c00414{bottom:152.680000pt;}
.y48_c00414{bottom:153.080000pt;}
.y21_c00414{bottom:168.413333pt;}
.y47_c00414{bottom:169.613333pt;}
.y20_c00414{bottom:185.213333pt;}
.y46_c00414{bottom:186.280000pt;}
.y1f_c00414{bottom:200.413333pt;}
.y45_c00414{bottom:202.013333pt;}
.y1d_c00414{bottom:212.146667pt;}
.y1e_c00414{bottom:216.680000pt;}
.y44_c00414{bottom:218.146667pt;}
.y43_c00414{bottom:234.280000pt;}
.y4f_c00414{bottom:242.413333pt;}
.y42_c00414{bottom:250.546667pt;}
.y1c_c00414{bottom:265.213333pt;}
.y41_c00414{bottom:266.680000pt;}
.y1b_c00414{bottom:281.213333pt;}
.y40_c00414{bottom:283.480000pt;}
.y1a_c00414{bottom:297.080000pt;}
.y3f_c00414{bottom:298.813333pt;}
.y19_c00414{bottom:313.480000pt;}
.y3e_c00414{bottom:314.680000pt;}
.y18_c00414{bottom:329.480000pt;}
.y3d_c00414{bottom:330.946667pt;}
.y17_c00414{bottom:345.346667pt;}
.y3c_c00414{bottom:346.813333pt;}
.y3b_c00414{bottom:362.680000pt;}
.y16_c00414{bottom:376.546667pt;}
.y3a_c00414{bottom:378.946667pt;}
.y39_c00414{bottom:394.946667pt;}
.y15_c00414{bottom:409.613333pt;}
.y38_c00414{bottom:411.080000pt;}
.y14_c00414{bottom:425.746667pt;}
.y37_c00414{bottom:427.213333pt;}
.y13_c00414{bottom:442.013333pt;}
.y36_c00414{bottom:442.813333pt;}
.y12_c00414{bottom:457.880000pt;}
.y35_c00414{bottom:459.346667pt;}
.y11_c00414{bottom:473.213333pt;}
.y34_c00414{bottom:475.480000pt;}
.y10_c00414{bottom:489.080000pt;}
.y33_c00414{bottom:491.213333pt;}
.yf_c00414{bottom:505.213333pt;}
.y32_c00414{bottom:507.346667pt;}
.ye_c00414{bottom:521.213333pt;}
.y31_c00414{bottom:523.480000pt;}
.yd_c00414{bottom:537.346667pt;}
.y30_c00414{bottom:539.746667pt;}
.yc_c00414{bottom:553.480000pt;}
.y2f_c00414{bottom:555.880000pt;}
.yb_c00414{bottom:570.013333pt;}
.y2e_c00414{bottom:572.146667pt;}
.ya_c00414{bottom:585.613333pt;}
.y2d_c00414{bottom:588.680000pt;}
.y9_c00414{bottom:602.146667pt;}
.y2c_c00414{bottom:604.813333pt;}
.y8_c00414{bottom:618.413333pt;}
.y2b_c00414{bottom:620.813333pt;}
.y7_c00414{bottom:634.280000pt;}
.y2a_c00414{bottom:637.213333pt;}
.y6_c00414{bottom:650.413333pt;}
.y29_c00414{bottom:653.080000pt;}
.y5_c00414{bottom:666.013333pt;}
.y3_c00414{bottom:669.613333pt;}
.y4_c00414{bottom:682.813333pt;}
.y2_c00414{bottom:685.880000pt;}
.y1_c00414{bottom:701.213333pt;}
.hd_c00414{height:11.733399pt;}
.he_c00414{height:38.937500pt;}
.hb_c00414{height:48.370667pt;}
.ha_c00414{height:50.304000pt;}
.h8_c00414{height:53.098667pt;}
.h4_c00414{height:55.893333pt;}
.h5_c00414{height:56.906667pt;}
.h9_c00414{height:57.440000pt;}
.hc_c00414{height:58.688000pt;}
.h6_c00414{height:59.300781pt;}
.h3_c00414{height:61.482667pt;}
.h2_c00414{height:67.072000pt;}
.h7_c00414{height:184.946667pt;}
.h1_c00414{height:750.666667pt;}
.h0_c00414{height:750.733333pt;}
.w1_c00414{width:93.222667pt;}
.w0_c00414{width:522.000000pt;}
.x0_c00414{left:0.000000pt;}
.xd_c00414{left:18.000000pt;}
.x1_c00414{left:58.400000pt;}
.x4_c00414{left:68.666667pt;}
.x5_c00414{left:69.866667pt;}
.x6_c00414{left:70.800000pt;}
.x9_c00414{left:80.400000pt;}
.xa_c00414{left:94.400000pt;}
.x8_c00414{left:101.600000pt;}
.xb_c00414{left:118.266667pt;}
.xc_c00414{left:145.200000pt;}
.x7_c00414{left:158.133333pt;}
.x13_c00414{left:218.168213pt;}
.x3_c00414{left:262.533333pt;}
.x10_c00414{left:264.000000pt;}
.x2_c00414{left:265.466667pt;}
.xe_c00414{left:266.666667pt;}
.xf_c00414{left:267.866667pt;}
.x11_c00414{left:350.800000pt;}
.x12_c00414{left:496.266667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f0da3524d77261ffa2fa5b09.woff2')format("woff");}.ff1_c00415{font-family:ff1_c00415;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00415;src:url('chunks/assets/font_f847c7a793fd21d29387fff5.woff2')format("woff");}.ff2_c00415{font-family:ff2_c00415;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00415;src:url('chunks/assets/font_62f1de4b41385d9c6cd88584.woff2')format("woff");}.ff3_c00415{font-family:ff3_c00415;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00415;src:url('chunks/assets/font_10d5b45cfa4eacbe228c7254.woff2')format("woff");}.ff4_c00415{font-family:ff4_c00415;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00415;src:url('chunks/assets/font_27738e504a54b5595d511647.woff2')format("woff");}.ff5_c00415{font-family:ff5_c00415;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00415;src:url('chunks/assets/font_7b6f1a2232e067096726c6fc.woff2')format("woff");}.ff6_c00415{font-family:ff6_c00415;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00415;src:url('chunks/assets/font_7164f7fc20c479aacf7b7c04.woff2')format("woff");}.ff7_c00415{font-family:ff7_c00415;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00415;src:url('chunks/assets/font_a05a0f345232252c753a0b35.woff2')format("woff");}.ff8_c00415{font-family:ff8_c00415;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00415;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff9_c00415{font-family:ff9_c00415;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00415{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00415{vertical-align:0.000000px;}
.v1_c00415{vertical-align:13.800000px;}
.ls9_c00415{letter-spacing:0.000000px;}
.ls5_c00415{letter-spacing:0.480000px;}
.ls6_c00415{letter-spacing:1.320000px;}
.ls7_c00415{letter-spacing:1.440000px;}
.ls4_c00415{letter-spacing:2.580000px;}
.ls1_c00415{letter-spacing:3.000000px;}
.ls0_c00415{letter-spacing:4.140000px;}
.ls2_c00415{letter-spacing:6.000000px;}
.ls3_c00415{letter-spacing:18.777000px;}
.ls8_c00415{letter-spacing:113.160000px;}
.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;}
}
.ws6_c00415{word-spacing:-35.295000px;}
.ws8_c00415{word-spacing:-31.968000px;}
.ws2_c00415{word-spacing:-20.340000px;}
.ws0_c00415{word-spacing:-20.307000px;}
.ws7_c00415{word-spacing:-18.060000px;}
.ws3_c00415{word-spacing:-16.898400px;}
.ws4_c00415{word-spacing:-16.740000px;}
.ws5_c00415{word-spacing:-15.480000px;}
.ws1_c00415{word-spacing:-14.160000px;}
.ws9_c00415{word-spacing:0.000000px;}
._6_c00415{margin-left:-14.364000px;}
._22_c00415{margin-left:-10.200000px;}
._11_c00415{margin-left:-8.334000px;}
._7_c00415{margin-left:-7.296000px;}
._5_c00415{margin-left:-6.213000px;}
._b_c00415{margin-left:-4.731000px;}
._3_c00415{margin-left:-3.648000px;}
._0_c00415{margin-left:-1.938000px;}
._2_c00415{width:1.710000px;}
._1_c00415{width:2.736000px;}
._4_c00415{width:4.104000px;}
._10_c00415{width:6.060000px;}
._d_c00415{width:7.695000px;}
._e_c00415{width:9.120000px;}
._a_c00415{width:11.115000px;}
._8_c00415{width:12.882000px;}
._f_c00415{width:14.877000px;}
._21_c00415{width:15.990000px;}
._9_c00415{width:17.100000px;}
._18_c00415{width:20.202000px;}
._1c_c00415{width:21.468000px;}
._17_c00415{width:22.680000px;}
._c_c00415{width:23.826000px;}
._15_c00415{width:26.031000px;}
._1b_c00415{width:27.093000px;}
._23_c00415{width:28.950000px;}
._13_c00415{width:30.174000px;}
._19_c00415{width:31.194000px;}
._1a_c00415{width:33.486000px;}
._12_c00415{width:39.690000px;}
._1d_c00415{width:48.180000px;}
._1e_c00415{width:51.576000px;}
._14_c00415{width:52.764000px;}
._16_c00415{width:70.278000px;}
._20_c00415{width:78.462000px;}
._1f_c00415{width:117.546000px;}
.fc2_c00415{color:transparent;}
.fc1_c00415{color:rgb(128,128,128);}
.fc0_c00415{color:rgb(0,0,0);}
.fs4_c00415{font-size:45.000000px;}
.fs2_c00415{font-size:45.600000px;}
.fs3_c00415{font-size:48.000000px;}
.fs0_c00415{font-size:57.000000px;}
.fs1_c00415{font-size:60.000000px;}
.fs5_c00415{font-size:63.000000px;}
.fs6_c00415{font-size:72.000000px;}
.y0_c00415{bottom:0.000000px;}
.y53_c00415{bottom:3.105000px;}
.y52_c00415{bottom:7.228355px;}
.y51_c00415{bottom:28.035000px;}
.y50_c00415{bottom:46.785000px;}
.y29_c00415{bottom:48.285000px;}
.y4f_c00415{bottom:65.385000px;}
.y28_c00415{bottom:67.185000px;}
.y4e_c00415{bottom:83.685000px;}
.y27_c00415{bottom:85.635000px;}
.y4d_c00415{bottom:101.535000px;}
.y26_c00415{bottom:104.235000px;}
.y4c_c00415{bottom:120.135000px;}
.y25_c00415{bottom:122.385000px;}
.y4b_c00415{bottom:138.285000px;}
.y24_c00415{bottom:140.385000px;}
.y4a_c00415{bottom:156.585000px;}
.y23_c00415{bottom:158.835000px;}
.y49_c00415{bottom:174.735000px;}
.y22_c00415{bottom:177.135000px;}
.y48_c00415{bottom:193.635000px;}
.y21_c00415{bottom:195.435000px;}
.y47_c00415{bottom:211.185000px;}
.y20_c00415{bottom:213.885000px;}
.y46_c00415{bottom:230.085000px;}
.y1f_c00415{bottom:231.435000px;}
.y45_c00415{bottom:248.385000px;}
.y1e_c00415{bottom:249.735000px;}
.y44_c00415{bottom:266.535000px;}
.y1d_c00415{bottom:267.285000px;}
.y43_c00415{bottom:283.485000px;}
.y1c_c00415{bottom:286.185000px;}
.y42_c00415{bottom:301.935000px;}
.y1b_c00415{bottom:304.035000px;}
.y41_c00415{bottom:319.935000px;}
.y1a_c00415{bottom:322.185000px;}
.y40_c00415{bottom:338.385000px;}
.y19_c00415{bottom:340.485000px;}
.y3f_c00415{bottom:353.235000px;}
.y18_c00415{bottom:358.335000px;}
.y17_c00415{bottom:376.335000px;}
.y3e_c00415{bottom:393.435000px;}
.y16_c00415{bottom:395.235000px;}
.y3d_c00415{bottom:411.285000px;}
.y15_c00415{bottom:413.085000px;}
.y3c_c00415{bottom:429.885000px;}
.y14_c00415{bottom:431.685000px;}
.y13_c00415{bottom:449.085000px;}
.y3b_c00415{bottom:465.735000px;}
.y12_c00415{bottom:467.385000px;}
.y11_c00415{bottom:485.535000px;}
.y3a_c00415{bottom:503.085000px;}
.y10_c00415{bottom:503.835000px;}
.y39_c00415{bottom:520.335000px;}
.yf_c00415{bottom:521.985000px;}
.y38_c00415{bottom:538.335000px;}
.ye_c00415{bottom:539.685000px;}
.y37_c00415{bottom:556.785000px;}
.yd_c00415{bottom:557.835000px;}
.y36_c00415{bottom:574.785000px;}
.yc_c00415{bottom:576.735000px;}
.y35_c00415{bottom:592.635000px;}
.yb_c00415{bottom:595.335000px;}
.y34_c00415{bottom:611.235000px;}
.ya_c00415{bottom:612.585000px;}
.y33_c00415{bottom:629.385000px;}
.y9_c00415{bottom:630.435000px;}
.y32_c00415{bottom:647.685000px;}
.y8_c00415{bottom:649.335000px;}
.y31_c00415{bottom:665.535000px;}
.y7_c00415{bottom:667.185000px;}
.y30_c00415{bottom:684.135000px;}
.y6_c00415{bottom:685.785000px;}
.y2f_c00415{bottom:702.285000px;}
.y5_c00415{bottom:703.935000px;}
.y2e_c00415{bottom:720.435000px;}
.y4_c00415{bottom:722.535000px;}
.y2d_c00415{bottom:739.035000px;}
.y3_c00415{bottom:740.385000px;}
.y2c_c00415{bottom:756.585000px;}
.y2_c00415{bottom:758.985000px;}
.y2b_c00415{bottom:774.885000px;}
.y1_c00415{bottom:777.285000px;}
.y2a_c00415{bottom:795.435000px;}
.h8_c00415{height:13.200074px;}
.h9_c00415{height:43.804688px;}
.h2_c00415{height:59.736000px;}
.h3_c00415{height:62.880000px;}
.h4_c00415{height:64.020000px;}
.h5_c00415{height:66.024000px;}
.h7_c00415{height:70.664062px;}
.h6_c00415{height:76.680000px;}
.h0_c00415{height:837.525000px;}
.h1_c00415{height:837.750000px;}
.w2_c00415{width:104.875500px;}
.w0_c00415{width:562.125000px;}
.w1_c00415{width:562.500000px;}
.x0_c00415{left:0.000000px;}
.x4_c00415{left:19.200000px;}
.x9_c00415{left:20.850000px;}
.x6_c00415{left:81.000000px;}
.x1_c00415{left:82.350000px;}
.x5_c00415{left:83.400000px;}
.x7_c00415{left:85.350000px;}
.x8_c00415{left:86.400000px;}
.xa_c00415{left:88.050000px;}
.x2_c00415{left:97.800000px;}
.x3_c00415{left:109.650000px;}
.x17_c00415{left:232.876740px;}
.xb_c00415{left:287.550000px;}
.xd_c00415{left:301.050000px;}
.xc_c00415{left:302.700000px;}
.xe_c00415{left:304.050000px;}
.x10_c00415{left:306.150000px;}
.x14_c00415{left:307.350000px;}
.x15_c00415{left:308.400000px;}
.x11_c00415{left:340.500000px;}
.x13_c00415{left:351.600000px;}
.x12_c00415{left:379.950000px;}
.xf_c00415{left:402.000000px;}
.x16_c00415{left:469.350000px;}
@media print{
.v0_c00415{vertical-align:0.000000pt;}
.v1_c00415{vertical-align:12.266667pt;}
.ls9_c00415{letter-spacing:0.000000pt;}
.ls5_c00415{letter-spacing:0.426667pt;}
.ls6_c00415{letter-spacing:1.173333pt;}
.ls7_c00415{letter-spacing:1.280000pt;}
.ls4_c00415{letter-spacing:2.293333pt;}
.ls1_c00415{letter-spacing:2.666667pt;}
.ls0_c00415{letter-spacing:3.680000pt;}
.ls2_c00415{letter-spacing:5.333333pt;}
.ls3_c00415{letter-spacing:16.690667pt;}
.ls8_c00415{letter-spacing:100.586667pt;}
.ws6_c00415{word-spacing:-31.373333pt;}
.ws8_c00415{word-spacing:-28.416000pt;}
.ws2_c00415{word-spacing:-18.080000pt;}
.ws0_c00415{word-spacing:-18.050667pt;}
.ws7_c00415{word-spacing:-16.053333pt;}
.ws3_c00415{word-spacing:-15.020800pt;}
.ws4_c00415{word-spacing:-14.880000pt;}
.ws5_c00415{word-spacing:-13.760000pt;}
.ws1_c00415{word-spacing:-12.586667pt;}
.ws9_c00415{word-spacing:0.000000pt;}
._6_c00415{margin-left:-12.768000pt;}
._22_c00415{margin-left:-9.066667pt;}
._11_c00415{margin-left:-7.408000pt;}
._7_c00415{margin-left:-6.485333pt;}
._5_c00415{margin-left:-5.522667pt;}
._b_c00415{margin-left:-4.205333pt;}
._3_c00415{margin-left:-3.242667pt;}
._0_c00415{margin-left:-1.722667pt;}
._2_c00415{width:1.520000pt;}
._1_c00415{width:2.432000pt;}
._4_c00415{width:3.648000pt;}
._10_c00415{width:5.386667pt;}
._d_c00415{width:6.840000pt;}
._e_c00415{width:8.106667pt;}
._a_c00415{width:9.880000pt;}
._8_c00415{width:11.450667pt;}
._f_c00415{width:13.224000pt;}
._21_c00415{width:14.213333pt;}
._9_c00415{width:15.200000pt;}
._18_c00415{width:17.957333pt;}
._1c_c00415{width:19.082667pt;}
._17_c00415{width:20.160000pt;}
._c_c00415{width:21.178667pt;}
._15_c00415{width:23.138667pt;}
._1b_c00415{width:24.082667pt;}
._23_c00415{width:25.733333pt;}
._13_c00415{width:26.821333pt;}
._19_c00415{width:27.728000pt;}
._1a_c00415{width:29.765333pt;}
._12_c00415{width:35.280000pt;}
._1d_c00415{width:42.826667pt;}
._1e_c00415{width:45.845333pt;}
._14_c00415{width:46.901333pt;}
._16_c00415{width:62.469333pt;}
._20_c00415{width:69.744000pt;}
._1f_c00415{width:104.485333pt;}
.fs4_c00415{font-size:40.000000pt;}
.fs2_c00415{font-size:40.533333pt;}
.fs3_c00415{font-size:42.666667pt;}
.fs0_c00415{font-size:50.666667pt;}
.fs1_c00415{font-size:53.333333pt;}
.fs5_c00415{font-size:56.000000pt;}
.fs6_c00415{font-size:64.000000pt;}
.y0_c00415{bottom:0.000000pt;}
.y53_c00415{bottom:2.760000pt;}
.y52_c00415{bottom:6.425204pt;}
.y51_c00415{bottom:24.920000pt;}
.y50_c00415{bottom:41.586667pt;}
.y29_c00415{bottom:42.920000pt;}
.y4f_c00415{bottom:58.120000pt;}
.y28_c00415{bottom:59.720000pt;}
.y4e_c00415{bottom:74.386667pt;}
.y27_c00415{bottom:76.120000pt;}
.y4d_c00415{bottom:90.253333pt;}
.y26_c00415{bottom:92.653333pt;}
.y4c_c00415{bottom:106.786667pt;}
.y25_c00415{bottom:108.786667pt;}
.y4b_c00415{bottom:122.920000pt;}
.y24_c00415{bottom:124.786667pt;}
.y4a_c00415{bottom:139.186667pt;}
.y23_c00415{bottom:141.186667pt;}
.y49_c00415{bottom:155.320000pt;}
.y22_c00415{bottom:157.453333pt;}
.y48_c00415{bottom:172.120000pt;}
.y21_c00415{bottom:173.720000pt;}
.y47_c00415{bottom:187.720000pt;}
.y20_c00415{bottom:190.120000pt;}
.y46_c00415{bottom:204.520000pt;}
.y1f_c00415{bottom:205.720000pt;}
.y45_c00415{bottom:220.786667pt;}
.y1e_c00415{bottom:221.986667pt;}
.y44_c00415{bottom:236.920000pt;}
.y1d_c00415{bottom:237.586667pt;}
.y43_c00415{bottom:251.986667pt;}
.y1c_c00415{bottom:254.386667pt;}
.y42_c00415{bottom:268.386667pt;}
.y1b_c00415{bottom:270.253333pt;}
.y41_c00415{bottom:284.386667pt;}
.y1a_c00415{bottom:286.386667pt;}
.y40_c00415{bottom:300.786667pt;}
.y19_c00415{bottom:302.653333pt;}
.y3f_c00415{bottom:313.986667pt;}
.y18_c00415{bottom:318.520000pt;}
.y17_c00415{bottom:334.520000pt;}
.y3e_c00415{bottom:349.720000pt;}
.y16_c00415{bottom:351.320000pt;}
.y3d_c00415{bottom:365.586667pt;}
.y15_c00415{bottom:367.186667pt;}
.y3c_c00415{bottom:382.120000pt;}
.y14_c00415{bottom:383.720000pt;}
.y13_c00415{bottom:399.186667pt;}
.y3b_c00415{bottom:413.986667pt;}
.y12_c00415{bottom:415.453333pt;}
.y11_c00415{bottom:431.586667pt;}
.y3a_c00415{bottom:447.186667pt;}
.y10_c00415{bottom:447.853333pt;}
.y39_c00415{bottom:462.520000pt;}
.yf_c00415{bottom:463.986667pt;}
.y38_c00415{bottom:478.520000pt;}
.ye_c00415{bottom:479.720000pt;}
.y37_c00415{bottom:494.920000pt;}
.yd_c00415{bottom:495.853333pt;}
.y36_c00415{bottom:510.920000pt;}
.yc_c00415{bottom:512.653333pt;}
.y35_c00415{bottom:526.786667pt;}
.yb_c00415{bottom:529.186667pt;}
.y34_c00415{bottom:543.320000pt;}
.ya_c00415{bottom:544.520000pt;}
.y33_c00415{bottom:559.453333pt;}
.y9_c00415{bottom:560.386667pt;}
.y32_c00415{bottom:575.720000pt;}
.y8_c00415{bottom:577.186667pt;}
.y31_c00415{bottom:591.586667pt;}
.y7_c00415{bottom:593.053333pt;}
.y30_c00415{bottom:608.120000pt;}
.y6_c00415{bottom:609.586667pt;}
.y2f_c00415{bottom:624.253333pt;}
.y5_c00415{bottom:625.720000pt;}
.y2e_c00415{bottom:640.386667pt;}
.y4_c00415{bottom:642.253333pt;}
.y2d_c00415{bottom:656.920000pt;}
.y3_c00415{bottom:658.120000pt;}
.y2c_c00415{bottom:672.520000pt;}
.y2_c00415{bottom:674.653333pt;}
.y2b_c00415{bottom:688.786667pt;}
.y1_c00415{bottom:690.920000pt;}
.y2a_c00415{bottom:707.053333pt;}
.h8_c00415{height:11.733399pt;}
.h9_c00415{height:38.937500pt;}
.h2_c00415{height:53.098667pt;}
.h3_c00415{height:55.893333pt;}
.h4_c00415{height:56.906667pt;}
.h5_c00415{height:58.688000pt;}
.h7_c00415{height:62.812500pt;}
.h6_c00415{height:68.160000pt;}
.h0_c00415{height:744.466667pt;}
.h1_c00415{height:744.666667pt;}
.w2_c00415{width:93.222667pt;}
.w0_c00415{width:499.666667pt;}
.w1_c00415{width:500.000000pt;}
.x0_c00415{left:0.000000pt;}
.x4_c00415{left:17.066667pt;}
.x9_c00415{left:18.533333pt;}
.x6_c00415{left:72.000000pt;}
.x1_c00415{left:73.200000pt;}
.x5_c00415{left:74.133333pt;}
.x7_c00415{left:75.866667pt;}
.x8_c00415{left:76.800000pt;}
.xa_c00415{left:78.266667pt;}
.x2_c00415{left:86.933333pt;}
.x3_c00415{left:97.466667pt;}
.x17_c00415{left:207.001546pt;}
.xb_c00415{left:255.600000pt;}
.xd_c00415{left:267.600000pt;}
.xc_c00415{left:269.066667pt;}
.xe_c00415{left:270.266667pt;}
.x10_c00415{left:272.133333pt;}
.x14_c00415{left:273.200000pt;}
.x15_c00415{left:274.133333pt;}
.x11_c00415{left:302.666667pt;}
.x13_c00415{left:312.533333pt;}
.x12_c00415{left:337.733333pt;}
.xf_c00415{left:357.333333pt;}
.x16_c00415{left:417.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_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_d0b88e5ae5ee732af015a139.woff2')format("woff");}.ff1_c00416{font-family:ff1_c00416;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00416;src:url('chunks/assets/font_ba9e1002dfd22656ff136148.woff2')format("woff");}.ff2_c00416{font-family:ff2_c00416;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00416;src:url('chunks/assets/font_84fd10324498d7322669c60b.woff2')format("woff");}.ff3_c00416{font-family:ff3_c00416;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00416;src:url('chunks/assets/font_f08cee0f76d7fce8e09a95ec.woff2')format("woff");}.ff4_c00416{font-family:ff4_c00416;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00416;src:url('chunks/assets/font_998e519f91ef3939fbcbfe78.woff2')format("woff");}.ff5_c00416{font-family:ff5_c00416;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00416;src:url('chunks/assets/font_4796141c1b1c9fd738f6ef06.woff2')format("woff");}.ff6_c00416{font-family:ff6_c00416;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00416;src:url('chunks/assets/font_df7b6154e90c1f9bf8a4af6c.woff2')format("woff");}.ff7_c00416{font-family:ff7_c00416;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00416;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff8_c00416{font-family:ff8_c00416;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00416;src:url('chunks/assets/font_44c8a20b2aeefc55cbb4107f.woff2')format("woff");}.ff9_c00416{font-family:ff9_c00416;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00416;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ffa_c00416{font-family:ffa_c00416;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00416{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00416{vertical-align:0.000000px;}
.ls7_c00416{letter-spacing:0.000000px;}
.ls1_c00416{letter-spacing:3.000000px;}
.ls4_c00416{letter-spacing:3.300000px;}
.ls0_c00416{letter-spacing:6.000000px;}
.ls3_c00416{letter-spacing:8.046000px;}
.ls9_c00416{letter-spacing:9.000000px;}
.ls6_c00416{letter-spacing:17.700000px;}
.ls2_c00416{letter-spacing:20.046000px;}
.ls8_c00416{letter-spacing:24.000000px;}
.ls5_c00416{letter-spacing:38.646000px;}
.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;}
}
.ws4_c00416{word-spacing:-27.432000px;}
.ws2_c00416{word-spacing:-24.642000px;}
.wsb_c00416{word-spacing:-23.739000px;}
.ws0_c00416{word-spacing:-20.340000px;}
.ws5_c00416{word-spacing:-20.307000px;}
.ws9_c00416{word-spacing:-19.554000px;}
.wsa_c00416{word-spacing:-18.060000px;}
.ws8_c00416{word-spacing:-15.744000px;}
.ws1_c00416{word-spacing:-14.427000px;}
.ws6_c00416{word-spacing:-14.160000px;}
.ws3_c00416{word-spacing:-13.452000px;}
.ws7_c00416{word-spacing:-4.380000px;}
.wsc_c00416{word-spacing:0.000000px;}
._30_c00416{margin-left:-30.174000px;}
._2c_c00416{margin-left:-23.046000px;}
._8_c00416{margin-left:-22.020000px;}
._2f_c00416{margin-left:-20.520000px;}
._2e_c00416{margin-left:-18.114000px;}
._1d_c00416{margin-left:-16.716000px;}
._1c_c00416{margin-left:-15.030000px;}
._1e_c00416{margin-left:-13.968000px;}
._d_c00416{margin-left:-12.300000px;}
._13_c00416{margin-left:-11.100000px;}
._1f_c00416{margin-left:-9.924000px;}
._10_c00416{margin-left:-8.640000px;}
._e_c00416{margin-left:-6.780000px;}
._14_c00416{margin-left:-5.760000px;}
._f_c00416{margin-left:-4.680000px;}
._16_c00416{margin-left:-3.660000px;}
._b_c00416{margin-left:-2.460000px;}
._c_c00416{margin-left:-1.380000px;}
._a_c00416{width:1.500000px;}
._17_c00416{width:2.544000px;}
._18_c00416{width:3.939000px;}
._1a_c00416{width:5.166000px;}
._27_c00416{width:6.645000px;}
._6_c00416{width:7.740000px;}
._11_c00416{width:9.720000px;}
._1_c00416{width:10.740000px;}
._20_c00416{width:12.513000px;}
._0_c00416{width:13.740000px;}
._5_c00416{width:15.300000px;}
._32_c00416{width:16.707000px;}
._24_c00416{width:18.744000px;}
._22_c00416{width:19.980000px;}
._3_c00416{width:21.660000px;}
._3f_c00416{width:23.019000px;}
._4_c00416{width:24.360000px;}
._19_c00416{width:25.866000px;}
._36_c00416{width:27.267000px;}
._15_c00416{width:28.860000px;}
._2a_c00416{width:31.065000px;}
._33_c00416{width:32.580000px;}
._28_c00416{width:34.455000px;}
._2_c00416{width:35.940000px;}
._40_c00416{width:40.026000px;}
._21_c00416{width:41.649000px;}
._3a_c00416{width:43.443000px;}
._2d_c00416{width:45.012000px;}
._29_c00416{width:47.145000px;}
._38_c00416{width:48.600000px;}
._39_c00416{width:52.560000px;}
._3b_c00416{width:56.820000px;}
._9_c00416{width:72.840000px;}
._35_c00416{width:76.941000px;}
._23_c00416{width:80.160000px;}
._41_c00416{width:82.536000px;}
._12_c00416{width:85.200000px;}
._2b_c00416{width:87.654000px;}
._37_c00416{width:90.378000px;}
._3d_c00416{width:91.632000px;}
._3c_c00416{width:93.780000px;}
._34_c00416{width:98.625000px;}
._43_c00416{width:101.712000px;}
._31_c00416{width:103.989000px;}
._26_c00416{width:155.880000px;}
._3e_c00416{width:162.798000px;}
._25_c00416{width:178.143000px;}
._42_c00416{width:185.322000px;}
._1b_c00416{width:276.261000px;}
._7_c00416{width:366.540000px;}
.fc2_c00416{color:transparent;}
.fc1_c00416{color:rgb(128,128,128);}
.fc0_c00416{color:rgb(0,0,0);}
.fs5_c00416{font-size:48.000000px;}
.fs6_c00416{font-size:51.000000px;}
.fs3_c00416{font-size:54.000000px;}
.fs4_c00416{font-size:57.000000px;}
.fs0_c00416{font-size:60.000000px;}
.fs1_c00416{font-size:63.000000px;}
.fs2_c00416{font-size:78.000000px;}
.fs7_c00416{font-size:108.000000px;}
.y0_c00416{bottom:0.000000px;}
.y49_c00416{bottom:3.105000px;}
.y48_c00416{bottom:7.228371px;}
.y47_c00416{bottom:36.915000px;}
.y46_c00416{bottom:55.665000px;}
.y40_c00416{bottom:56.115000px;}
.y45_c00416{bottom:73.965000px;}
.y3f_c00416{bottom:74.715000px;}
.y44_c00416{bottom:92.115000px;}
.y3e_c00416{bottom:93.165000px;}
.y43_c00416{bottom:109.815000px;}
.y3d_c00416{bottom:111.165000px;}
.y42_c00416{bottom:128.715000px;}
.y3c_c00416{bottom:129.915000px;}
.y41_c00416{bottom:146.265000px;}
.y3b_c00416{bottom:147.615000px;}
.y3a_c00416{bottom:165.165000px;}
.y39_c00416{bottom:183.015000px;}
.y38_c00416{bottom:200.265000px;}
.y32_c00416{bottom:202.515000px;}
.y37_c00416{bottom:219.015000px;}
.y31_c00416{bottom:220.815000px;}
.y36_c00416{bottom:236.565000px;}
.y30_c00416{bottom:239.265000px;}
.y35_c00416{bottom:255.165000px;}
.y2f_c00416{bottom:257.565000px;}
.y34_c00416{bottom:273.765000px;}
.y2e_c00416{bottom:274.515000px;}
.y25_c00416{bottom:279.765000px;}
.y33_c00416{bottom:292.065000px;}
.y2d_c00416{bottom:293.415000px;}
.y24_c00416{bottom:297.465000px;}
.y2c_c00416{bottom:310.215000px;}
.y2b_c00416{bottom:328.365000px;}
.y2a_c00416{bottom:346.665000px;}
.y29_c00416{bottom:364.815000px;}
.y28_c00416{bottom:382.815000px;}
.y27_c00416{bottom:401.415000px;}
.y26_c00416{bottom:419.265000px;}
.y23_c00416{bottom:437.865000px;}
.y20_c00416{bottom:438.165000px;}
.y22_c00416{bottom:455.265000px;}
.y1f_c00416{bottom:456.615000px;}
.y1e_c00416{bottom:473.865000px;}
.y21_c00416{bottom:490.515000px;}
.y1d_c00416{bottom:491.715000px;}
.y1c_c00416{bottom:510.015000px;}
.y1b_c00416{bottom:527.265000px;}
.y13_c00416{bottom:544.365000px;}
.y1a_c00416{bottom:545.715000px;}
.y12_c00416{bottom:562.365000px;}
.y19_c00416{bottom:563.715000px;}
.y11_c00416{bottom:580.965000px;}
.y18_c00416{bottom:582.165000px;}
.y10_c00416{bottom:599.715000px;}
.y17_c00416{bottom:601.065000px;}
.yf_c00416{bottom:617.265000px;}
.y16_c00416{bottom:618.765000px;}
.ye_c00416{bottom:635.565000px;}
.y15_c00416{bottom:636.615000px;}
.yd_c00416{bottom:653.715000px;}
.y14_c00416{bottom:655.065000px;}
.yc_c00416{bottom:672.315000px;}
.yb_c00416{bottom:690.915000px;}
.y6_c00416{bottom:708.165000px;}
.ya_c00416{bottom:709.515000px;}
.y5_c00416{bottom:726.615000px;}
.y9_c00416{bottom:727.965000px;}
.y4_c00416{bottom:744.615000px;}
.y8_c00416{bottom:745.665000px;}
.y3_c00416{bottom:763.215000px;}
.y7_c00416{bottom:764.565000px;}
.y2_c00416{bottom:781.665000px;}
.y1_c00416{bottom:801.315000px;}
.hb_c00416{height:13.200074px;}
.hc_c00416{height:43.804688px;}
.h8_c00416{height:53.448000px;}
.h6_c00416{height:56.592000px;}
.h7_c00416{height:59.736000px;}
.h3_c00416{height:62.880000px;}
.h2_c00416{height:64.020000px;}
.h4_c00416{height:66.024000px;}
.ha_c00416{height:67.221000px;}
.h5_c00416{height:81.744000px;}
.h9_c00416{height:136.740234px;}
.h1_c00416{height:844.500000px;}
.h0_c00416{height:844.575000px;}
.w1_c00416{width:104.875500px;}
.w0_c00416{width:587.250000px;}
.x0_c00416{left:0.000000px;}
.x9_c00416{left:20.250000px;}
.x6_c00416{left:24.300000px;}
.xa_c00416{left:81.750000px;}
.x2_c00416{left:83.250000px;}
.x3_c00416{left:85.050000px;}
.x8_c00416{left:86.400000px;}
.x7_c00416{left:168.300000px;}
.x1_c00416{left:216.150000px;}
.xf_c00416{left:245.439240px;}
.xc_c00416{left:300.450000px;}
.xd_c00416{left:301.800000px;}
.xb_c00416{left:303.150000px;}
.x5_c00416{left:304.800000px;}
.x4_c00416{left:306.150000px;}
.xe_c00416{left:386.100000px;}
@media print{
.v0_c00416{vertical-align:0.000000pt;}
.ls7_c00416{letter-spacing:0.000000pt;}
.ls1_c00416{letter-spacing:2.666667pt;}
.ls4_c00416{letter-spacing:2.933333pt;}
.ls0_c00416{letter-spacing:5.333333pt;}
.ls3_c00416{letter-spacing:7.152000pt;}
.ls9_c00416{letter-spacing:8.000000pt;}
.ls6_c00416{letter-spacing:15.733333pt;}
.ls2_c00416{letter-spacing:17.818667pt;}
.ls8_c00416{letter-spacing:21.333333pt;}
.ls5_c00416{letter-spacing:34.352000pt;}
.ws4_c00416{word-spacing:-24.384000pt;}
.ws2_c00416{word-spacing:-21.904000pt;}
.wsb_c00416{word-spacing:-21.101333pt;}
.ws0_c00416{word-spacing:-18.080000pt;}
.ws5_c00416{word-spacing:-18.050667pt;}
.ws9_c00416{word-spacing:-17.381333pt;}
.wsa_c00416{word-spacing:-16.053333pt;}
.ws8_c00416{word-spacing:-13.994667pt;}
.ws1_c00416{word-spacing:-12.824000pt;}
.ws6_c00416{word-spacing:-12.586667pt;}
.ws3_c00416{word-spacing:-11.957333pt;}
.ws7_c00416{word-spacing:-3.893333pt;}
.wsc_c00416{word-spacing:0.000000pt;}
._30_c00416{margin-left:-26.821333pt;}
._2c_c00416{margin-left:-20.485333pt;}
._8_c00416{margin-left:-19.573333pt;}
._2f_c00416{margin-left:-18.240000pt;}
._2e_c00416{margin-left:-16.101333pt;}
._1d_c00416{margin-left:-14.858667pt;}
._1c_c00416{margin-left:-13.360000pt;}
._1e_c00416{margin-left:-12.416000pt;}
._d_c00416{margin-left:-10.933333pt;}
._13_c00416{margin-left:-9.866667pt;}
._1f_c00416{margin-left:-8.821333pt;}
._10_c00416{margin-left:-7.680000pt;}
._e_c00416{margin-left:-6.026667pt;}
._14_c00416{margin-left:-5.120000pt;}
._f_c00416{margin-left:-4.160000pt;}
._16_c00416{margin-left:-3.253333pt;}
._b_c00416{margin-left:-2.186667pt;}
._c_c00416{margin-left:-1.226667pt;}
._a_c00416{width:1.333333pt;}
._17_c00416{width:2.261333pt;}
._18_c00416{width:3.501333pt;}
._1a_c00416{width:4.592000pt;}
._27_c00416{width:5.906667pt;}
._6_c00416{width:6.880000pt;}
._11_c00416{width:8.640000pt;}
._1_c00416{width:9.546667pt;}
._20_c00416{width:11.122667pt;}
._0_c00416{width:12.213333pt;}
._5_c00416{width:13.600000pt;}
._32_c00416{width:14.850667pt;}
._24_c00416{width:16.661333pt;}
._22_c00416{width:17.760000pt;}
._3_c00416{width:19.253333pt;}
._3f_c00416{width:20.461333pt;}
._4_c00416{width:21.653333pt;}
._19_c00416{width:22.992000pt;}
._36_c00416{width:24.237333pt;}
._15_c00416{width:25.653333pt;}
._2a_c00416{width:27.613333pt;}
._33_c00416{width:28.960000pt;}
._28_c00416{width:30.626667pt;}
._2_c00416{width:31.946667pt;}
._40_c00416{width:35.578667pt;}
._21_c00416{width:37.021333pt;}
._3a_c00416{width:38.616000pt;}
._2d_c00416{width:40.010667pt;}
._29_c00416{width:41.906667pt;}
._38_c00416{width:43.200000pt;}
._39_c00416{width:46.720000pt;}
._3b_c00416{width:50.506667pt;}
._9_c00416{width:64.746667pt;}
._35_c00416{width:68.392000pt;}
._23_c00416{width:71.253333pt;}
._41_c00416{width:73.365333pt;}
._12_c00416{width:75.733333pt;}
._2b_c00416{width:77.914667pt;}
._37_c00416{width:80.336000pt;}
._3d_c00416{width:81.450667pt;}
._3c_c00416{width:83.360000pt;}
._34_c00416{width:87.666667pt;}
._43_c00416{width:90.410667pt;}
._31_c00416{width:92.434667pt;}
._26_c00416{width:138.560000pt;}
._3e_c00416{width:144.709333pt;}
._25_c00416{width:158.349333pt;}
._42_c00416{width:164.730667pt;}
._1b_c00416{width:245.565333pt;}
._7_c00416{width:325.813333pt;}
.fs5_c00416{font-size:42.666667pt;}
.fs6_c00416{font-size:45.333333pt;}
.fs3_c00416{font-size:48.000000pt;}
.fs4_c00416{font-size:50.666667pt;}
.fs0_c00416{font-size:53.333333pt;}
.fs1_c00416{font-size:56.000000pt;}
.fs2_c00416{font-size:69.333333pt;}
.fs7_c00416{font-size:96.000000pt;}
.y0_c00416{bottom:0.000000pt;}
.y49_c00416{bottom:2.760000pt;}
.y48_c00416{bottom:6.425219pt;}
.y47_c00416{bottom:32.813333pt;}
.y46_c00416{bottom:49.480000pt;}
.y40_c00416{bottom:49.880000pt;}
.y45_c00416{bottom:65.746667pt;}
.y3f_c00416{bottom:66.413333pt;}
.y44_c00416{bottom:81.880000pt;}
.y3e_c00416{bottom:82.813333pt;}
.y43_c00416{bottom:97.613333pt;}
.y3d_c00416{bottom:98.813333pt;}
.y42_c00416{bottom:114.413333pt;}
.y3c_c00416{bottom:115.480000pt;}
.y41_c00416{bottom:130.013333pt;}
.y3b_c00416{bottom:131.213333pt;}
.y3a_c00416{bottom:146.813333pt;}
.y39_c00416{bottom:162.680000pt;}
.y38_c00416{bottom:178.013333pt;}
.y32_c00416{bottom:180.013333pt;}
.y37_c00416{bottom:194.680000pt;}
.y31_c00416{bottom:196.280000pt;}
.y36_c00416{bottom:210.280000pt;}
.y30_c00416{bottom:212.680000pt;}
.y35_c00416{bottom:226.813333pt;}
.y2f_c00416{bottom:228.946667pt;}
.y34_c00416{bottom:243.346667pt;}
.y2e_c00416{bottom:244.013333pt;}
.y25_c00416{bottom:248.680000pt;}
.y33_c00416{bottom:259.613333pt;}
.y2d_c00416{bottom:260.813333pt;}
.y24_c00416{bottom:264.413333pt;}
.y2c_c00416{bottom:275.746667pt;}
.y2b_c00416{bottom:291.880000pt;}
.y2a_c00416{bottom:308.146667pt;}
.y29_c00416{bottom:324.280000pt;}
.y28_c00416{bottom:340.280000pt;}
.y27_c00416{bottom:356.813333pt;}
.y26_c00416{bottom:372.680000pt;}
.y23_c00416{bottom:389.213333pt;}
.y20_c00416{bottom:389.480000pt;}
.y22_c00416{bottom:404.680000pt;}
.y1f_c00416{bottom:405.880000pt;}
.y1e_c00416{bottom:421.213333pt;}
.y21_c00416{bottom:436.013333pt;}
.y1d_c00416{bottom:437.080000pt;}
.y1c_c00416{bottom:453.346667pt;}
.y1b_c00416{bottom:468.680000pt;}
.y13_c00416{bottom:483.880000pt;}
.y1a_c00416{bottom:485.080000pt;}
.y12_c00416{bottom:499.880000pt;}
.y19_c00416{bottom:501.080000pt;}
.y11_c00416{bottom:516.413333pt;}
.y18_c00416{bottom:517.480000pt;}
.y10_c00416{bottom:533.080000pt;}
.y17_c00416{bottom:534.280000pt;}
.yf_c00416{bottom:548.680000pt;}
.y16_c00416{bottom:550.013333pt;}
.ye_c00416{bottom:564.946667pt;}
.y15_c00416{bottom:565.880000pt;}
.yd_c00416{bottom:581.080000pt;}
.y14_c00416{bottom:582.280000pt;}
.yc_c00416{bottom:597.613333pt;}
.yb_c00416{bottom:614.146667pt;}
.y6_c00416{bottom:629.480000pt;}
.ya_c00416{bottom:630.680000pt;}
.y5_c00416{bottom:645.880000pt;}
.y9_c00416{bottom:647.080000pt;}
.y4_c00416{bottom:661.880000pt;}
.y8_c00416{bottom:662.813333pt;}
.y3_c00416{bottom:678.413333pt;}
.y7_c00416{bottom:679.613333pt;}
.y2_c00416{bottom:694.813333pt;}
.y1_c00416{bottom:712.280000pt;}
.hb_c00416{height:11.733399pt;}
.hc_c00416{height:38.937500pt;}
.h8_c00416{height:47.509333pt;}
.h6_c00416{height:50.304000pt;}
.h7_c00416{height:53.098667pt;}
.h3_c00416{height:55.893333pt;}
.h2_c00416{height:56.906667pt;}
.h4_c00416{height:58.688000pt;}
.ha_c00416{height:59.752000pt;}
.h5_c00416{height:72.661333pt;}
.h9_c00416{height:121.546875pt;}
.h1_c00416{height:750.666667pt;}
.h0_c00416{height:750.733333pt;}
.w1_c00416{width:93.222667pt;}
.w0_c00416{width:522.000000pt;}
.x0_c00416{left:0.000000pt;}
.x9_c00416{left:18.000000pt;}
.x6_c00416{left:21.600000pt;}
.xa_c00416{left:72.666667pt;}
.x2_c00416{left:74.000000pt;}
.x3_c00416{left:75.600000pt;}
.x8_c00416{left:76.800000pt;}
.x7_c00416{left:149.600000pt;}
.x1_c00416{left:192.133333pt;}
.xf_c00416{left:218.168213pt;}
.xc_c00416{left:267.066667pt;}
.xd_c00416{left:268.266667pt;}
.xb_c00416{left:269.466667pt;}
.x5_c00416{left:270.933333pt;}
.x4_c00416{left:272.133333pt;}
.xe_c00416{left:343.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_360558da99755b07dc7e7a85.woff2')format("woff");}.ff1_c00417{font-family:ff1_c00417;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00417;src:url('chunks/assets/font_2c0b4b10446948a9fac7713b.woff2')format("woff");}.ff2_c00417{font-family:ff2_c00417;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00417;src:url('chunks/assets/font_7901ddd956da816b524a908d.woff2')format("woff");}.ff3_c00417{font-family:ff3_c00417;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00417;src:url('chunks/assets/font_3b5068383772383ba51917c2.woff2')format("woff");}.ff4_c00417{font-family:ff4_c00417;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00417;src:url('chunks/assets/font_524da7fd63011bca065091b0.woff2')format("woff");}.ff5_c00417{font-family:ff5_c00417;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00417;src:url('chunks/assets/font_abaf2949ef359ca5a49b3486.woff2')format("woff");}.ff6_c00417{font-family:ff6_c00417;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00417;src:url('chunks/assets/font_f5ff37c1084b277911464808.woff2')format("woff");}.ff7_c00417{font-family:ff7_c00417;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00417;src:url('chunks/assets/font_2e63ba0309ce0a88ba9839b8.woff2')format("woff");}.ff8_c00417{font-family:ff8_c00417;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00417;src:url('chunks/assets/font_5799e4c54f7fabf855d493eb.woff2')format("woff");}.ff9_c00417{font-family:ff9_c00417;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:ffa_c00417;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ffa_c00417{font-family:ffa_c00417;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00417{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m0_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;}
.ls6_c00417{letter-spacing:0.000000px;}
.ls2_c00417{letter-spacing:3.000000px;}
.ls3_c00417{letter-spacing:5.445000px;}
.ls1_c00417{letter-spacing:6.000000px;}
.ls0_c00417{letter-spacing:9.000000px;}
.ls4_c00417{letter-spacing:18.000000px;}
.ls5_c00417{letter-spacing:34.845000px;}
.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;}
}
.ws8_c00417{word-spacing:-32.160000px;}
.wsa_c00417{word-spacing:-31.854000px;}
.ws1_c00417{word-spacing:-24.057000px;}
.ws6_c00417{word-spacing:-23.427000px;}
.ws5_c00417{word-spacing:-20.340000px;}
.ws9_c00417{word-spacing:-18.060000px;}
.ws0_c00417{word-spacing:-14.160000px;}
.ws2_c00417{word-spacing:-13.755000px;}
.ws4_c00417{word-spacing:-6.057000px;}
.ws3_c00417{word-spacing:-6.045600px;}
.ws7_c00417{word-spacing:-3.600000px;}
.wsb_c00417{word-spacing:0.000000px;}
._1e_c00417{margin-left:-27.360000px;}
._25_c00417{margin-left:-16.971000px;}
._10_c00417{margin-left:-13.620000px;}
._12_c00417{margin-left:-12.111000px;}
._19_c00417{margin-left:-10.980000px;}
._14_c00417{margin-left:-9.480000px;}
._d_c00417{margin-left:-8.160000px;}
._c_c00417{margin-left:-6.540000px;}
._e_c00417{margin-left:-5.340000px;}
._b_c00417{margin-left:-4.260000px;}
._f_c00417{margin-left:-3.240000px;}
._4_c00417{margin-left:-2.100000px;}
._18_c00417{margin-left:-1.080000px;}
._5_c00417{width:1.020000px;}
._1_c00417{width:2.040000px;}
._0_c00417{width:3.600000px;}
._2_c00417{width:5.100000px;}
._8_c00417{width:6.171000px;}
._6_c00417{width:7.380000px;}
._7_c00417{width:9.060000px;}
._1b_c00417{width:10.107000px;}
._a_c00417{width:11.760000px;}
._1d_c00417{width:13.389000px;}
._1a_c00417{width:15.120000px;}
._15_c00417{width:16.509000px;}
._1c_c00417{width:17.580000px;}
._20_c00417{width:18.960000px;}
._13_c00417{width:20.940000px;}
._16_c00417{width:22.440000px;}
._27_c00417{width:23.973000px;}
._1f_c00417{width:25.860000px;}
._24_c00417{width:26.871000px;}
._26_c00417{width:28.140000px;}
._9_c00417{width:31.578000px;}
._22_c00417{width:34.971000px;}
._23_c00417{width:36.720000px;}
._17_c00417{width:38.520000px;}
._2a_c00417{width:46.440000px;}
._28_c00417{width:47.649000px;}
._29_c00417{width:53.580000px;}
._11_c00417{width:55.320000px;}
._3_c00417{width:56.640000px;}
._21_c00417{width:104.511000px;}
.fc2_c00417{color:transparent;}
.fc1_c00417{color:rgb(128,128,128);}
.fc0_c00417{color:rgb(0,0,0);}
.fs2_c00417{font-size:45.000000px;}
.fs4_c00417{font-size:45.600000px;}
.fs5_c00417{font-size:48.000000px;}
.fs3_c00417{font-size:57.000000px;}
.fs0_c00417{font-size:60.000000px;}
.fs1_c00417{font-size:63.000000px;}
.fs6_c00417{font-size:69.000000px;}
.fs7_c00417{font-size:93.000000px;}
.y0_c00417{bottom:0.000000px;}
.y5b_c00417{bottom:3.105000px;}
.y5a_c00417{bottom:7.228355px;}
.y59_c00417{bottom:37.785000px;}
.y58_c00417{bottom:55.635000px;}
.y31_c00417{bottom:57.735000px;}
.y57_c00417{bottom:74.685000px;}
.y30_c00417{bottom:76.935000px;}
.y56_c00417{bottom:93.135000px;}
.y2f_c00417{bottom:95.085000px;}
.y55_c00417{bottom:111.585000px;}
.y2e_c00417{bottom:113.385000px;}
.y54_c00417{bottom:129.585000px;}
.y2d_c00417{bottom:131.235000px;}
.y53_c00417{bottom:148.485000px;}
.y2c_c00417{bottom:149.835000px;}
.y52_c00417{bottom:166.335000px;}
.y2b_c00417{bottom:167.685000px;}
.y51_c00417{bottom:184.635000px;}
.y2a_c00417{bottom:186.285000px;}
.y50_c00417{bottom:202.785000px;}
.y29_c00417{bottom:204.735000px;}
.y7_c00417{bottom:206.535000px;}
.y28_c00417{bottom:222.735000px;}
.y6_c00417{bottom:224.685000px;}
.y4f_c00417{bottom:239.835000px;}
.y27_c00417{bottom:241.635000px;}
.y5_c00417{bottom:243.585000px;}
.y4e_c00417{bottom:257.535000px;}
.y26_c00417{bottom:258.735000px;}
.y4d_c00417{bottom:275.985000px;}
.y25_c00417{bottom:277.035000px;}
.y4c_c00417{bottom:293.985000px;}
.y24_c00417{bottom:295.635000px;}
.y4b_c00417{bottom:311.085000px;}
.y23_c00417{bottom:313.785000px;}
.y22_c00417{bottom:332.385000px;}
.y4a_c00417{bottom:347.235000px;}
.y21_c00417{bottom:350.685000px;}
.y20_c00417{bottom:368.835000px;}
.y49_c00417{bottom:385.335000px;}
.y1f_c00417{bottom:386.385000px;}
.y48_c00417{bottom:402.885000px;}
.y1e_c00417{bottom:404.685000px;}
.y4_c00417{bottom:405.585000px;}
.y47_c00417{bottom:420.885000px;}
.y1d_c00417{bottom:423.135000px;}
.y3_c00417{bottom:423.435000px;}
.y46_c00417{bottom:439.335000px;}
.y1c_c00417{bottom:440.985000px;}
.y2_c00417{bottom:442.335000px;}
.y45_c00417{bottom:457.335000px;}
.y1b_c00417{bottom:458.985000px;}
.y1_c00417{bottom:460.635000px;}
.y44_c00417{bottom:476.085000px;}
.y1a_c00417{bottom:477.585000px;}
.y43_c00417{bottom:494.235000px;}
.y19_c00417{bottom:495.435000px;}
.y42_c00417{bottom:512.535000px;}
.y18_c00417{bottom:513.885000px;}
.y41_c00417{bottom:530.835000px;}
.y17_c00417{bottom:532.485000px;}
.y40_c00417{bottom:547.785000px;}
.y16_c00417{bottom:550.335000px;}
.y3f_c00417{bottom:566.685000px;}
.y15_c00417{bottom:568.035000px;}
.y3e_c00417{bottom:584.535000px;}
.y14_c00417{bottom:586.785000px;}
.y3d_c00417{bottom:602.685000px;}
.y13_c00417{bottom:604.785000px;}
.y3c_c00417{bottom:620.685000px;}
.y12_c00417{bottom:623.235000px;}
.y3b_c00417{bottom:638.835000px;}
.y11_c00417{bottom:641.535000px;}
.y3a_c00417{bottom:657.435000px;}
.y10_c00417{bottom:660.435000px;}
.y39_c00417{bottom:675.885000px;}
.yf_c00417{bottom:678.585000px;}
.y38_c00417{bottom:693.885000px;}
.ye_c00417{bottom:696.585000px;}
.y37_c00417{bottom:712.335000px;}
.yd_c00417{bottom:715.185000px;}
.y36_c00417{bottom:730.335000px;}
.yc_c00417{bottom:732.735000px;}
.y35_c00417{bottom:747.885000px;}
.yb_c00417{bottom:751.185000px;}
.y34_c00417{bottom:766.485000px;}
.ya_c00417{bottom:769.785000px;}
.y33_c00417{bottom:784.335000px;}
.y9_c00417{bottom:787.935000px;}
.y32_c00417{bottom:804.135000px;}
.y8_c00417{bottom:806.235000px;}
.h8_c00417{height:13.200074px;}
.h9_c00417{height:43.804688px;}
.h2_c00417{height:62.880000px;}
.h4_c00417{height:64.020000px;}
.h3_c00417{height:66.024000px;}
.h5_c00417{height:66.713379px;}
.h6_c00417{height:72.312000px;}
.h7_c00417{height:96.996094px;}
.h1_c00417{height:846.750000px;}
.h0_c00417{height:846.975000px;}
.w2_c00417{width:104.875500px;}
.w0_c00417{width:568.875000px;}
.w1_c00417{width:569.250000px;}
.x0_c00417{left:0.000000px;}
.x3_c00417{left:17.250000px;}
.x2_c00417{left:18.600000px;}
.x1_c00417{left:19.650000px;}
.xd_c00417{left:74.250000px;}
.xe_c00417{left:76.950000px;}
.x7_c00417{left:78.300000px;}
.xc_c00417{left:79.650000px;}
.xb_c00417{left:81.000000px;}
.xa_c00417{left:82.800000px;}
.x8_c00417{left:85.050000px;}
.x4_c00417{left:87.000000px;}
.x9_c00417{left:151.200000px;}
.x5_c00417{left:177.450000px;}
.x6_c00417{left:181.350000px;}
.x1b_c00417{left:236.251740px;}
.xf_c00417{left:285.600000px;}
.x13_c00417{left:300.000000px;}
.x12_c00417{left:301.050000px;}
.x11_c00417{left:302.100000px;}
.x10_c00417{left:303.750000px;}
.x15_c00417{left:318.900000px;}
.x19_c00417{left:328.350000px;}
.x16_c00417{left:340.950000px;}
.x18_c00417{left:343.950000px;}
.x17_c00417{left:383.100000px;}
.x14_c00417{left:401.700000px;}
.x1a_c00417{left:454.950000px;}
@media print{
.v0_c00417{vertical-align:0.000000pt;}
.ls6_c00417{letter-spacing:0.000000pt;}
.ls2_c00417{letter-spacing:2.666667pt;}
.ls3_c00417{letter-spacing:4.840000pt;}
.ls1_c00417{letter-spacing:5.333333pt;}
.ls0_c00417{letter-spacing:8.000000pt;}
.ls4_c00417{letter-spacing:16.000000pt;}
.ls5_c00417{letter-spacing:30.973333pt;}
.ws8_c00417{word-spacing:-28.586667pt;}
.wsa_c00417{word-spacing:-28.314667pt;}
.ws1_c00417{word-spacing:-21.384000pt;}
.ws6_c00417{word-spacing:-20.824000pt;}
.ws5_c00417{word-spacing:-18.080000pt;}
.ws9_c00417{word-spacing:-16.053333pt;}
.ws0_c00417{word-spacing:-12.586667pt;}
.ws2_c00417{word-spacing:-12.226667pt;}
.ws4_c00417{word-spacing:-5.384000pt;}
.ws3_c00417{word-spacing:-5.373867pt;}
.ws7_c00417{word-spacing:-3.200000pt;}
.wsb_c00417{word-spacing:0.000000pt;}
._1e_c00417{margin-left:-24.320000pt;}
._25_c00417{margin-left:-15.085333pt;}
._10_c00417{margin-left:-12.106667pt;}
._12_c00417{margin-left:-10.765333pt;}
._19_c00417{margin-left:-9.760000pt;}
._14_c00417{margin-left:-8.426667pt;}
._d_c00417{margin-left:-7.253333pt;}
._c_c00417{margin-left:-5.813333pt;}
._e_c00417{margin-left:-4.746667pt;}
._b_c00417{margin-left:-3.786667pt;}
._f_c00417{margin-left:-2.880000pt;}
._4_c00417{margin-left:-1.866667pt;}
._18_c00417{margin-left:-0.960000pt;}
._5_c00417{width:0.906667pt;}
._1_c00417{width:1.813333pt;}
._0_c00417{width:3.200000pt;}
._2_c00417{width:4.533333pt;}
._8_c00417{width:5.485333pt;}
._6_c00417{width:6.560000pt;}
._7_c00417{width:8.053333pt;}
._1b_c00417{width:8.984000pt;}
._a_c00417{width:10.453333pt;}
._1d_c00417{width:11.901333pt;}
._1a_c00417{width:13.440000pt;}
._15_c00417{width:14.674667pt;}
._1c_c00417{width:15.626667pt;}
._20_c00417{width:16.853333pt;}
._13_c00417{width:18.613333pt;}
._16_c00417{width:19.946667pt;}
._27_c00417{width:21.309333pt;}
._1f_c00417{width:22.986667pt;}
._24_c00417{width:23.885333pt;}
._26_c00417{width:25.013333pt;}
._9_c00417{width:28.069333pt;}
._22_c00417{width:31.085333pt;}
._23_c00417{width:32.640000pt;}
._17_c00417{width:34.240000pt;}
._2a_c00417{width:41.280000pt;}
._28_c00417{width:42.354667pt;}
._29_c00417{width:47.626667pt;}
._11_c00417{width:49.173333pt;}
._3_c00417{width:50.346667pt;}
._21_c00417{width:92.898667pt;}
.fs2_c00417{font-size:40.000000pt;}
.fs4_c00417{font-size:40.533333pt;}
.fs5_c00417{font-size:42.666667pt;}
.fs3_c00417{font-size:50.666667pt;}
.fs0_c00417{font-size:53.333333pt;}
.fs1_c00417{font-size:56.000000pt;}
.fs6_c00417{font-size:61.333333pt;}
.fs7_c00417{font-size:82.666667pt;}
.y0_c00417{bottom:0.000000pt;}
.y5b_c00417{bottom:2.760000pt;}
.y5a_c00417{bottom:6.425204pt;}
.y59_c00417{bottom:33.586667pt;}
.y58_c00417{bottom:49.453333pt;}
.y31_c00417{bottom:51.320000pt;}
.y57_c00417{bottom:66.386667pt;}
.y30_c00417{bottom:68.386667pt;}
.y56_c00417{bottom:82.786667pt;}
.y2f_c00417{bottom:84.520000pt;}
.y55_c00417{bottom:99.186667pt;}
.y2e_c00417{bottom:100.786667pt;}
.y54_c00417{bottom:115.186667pt;}
.y2d_c00417{bottom:116.653333pt;}
.y53_c00417{bottom:131.986667pt;}
.y2c_c00417{bottom:133.186667pt;}
.y52_c00417{bottom:147.853333pt;}
.y2b_c00417{bottom:149.053333pt;}
.y51_c00417{bottom:164.120000pt;}
.y2a_c00417{bottom:165.586667pt;}
.y50_c00417{bottom:180.253333pt;}
.y29_c00417{bottom:181.986667pt;}
.y7_c00417{bottom:183.586667pt;}
.y28_c00417{bottom:197.986667pt;}
.y6_c00417{bottom:199.720000pt;}
.y4f_c00417{bottom:213.186667pt;}
.y27_c00417{bottom:214.786667pt;}
.y5_c00417{bottom:216.520000pt;}
.y4e_c00417{bottom:228.920000pt;}
.y26_c00417{bottom:229.986667pt;}
.y4d_c00417{bottom:245.320000pt;}
.y25_c00417{bottom:246.253333pt;}
.y4c_c00417{bottom:261.320000pt;}
.y24_c00417{bottom:262.786667pt;}
.y4b_c00417{bottom:276.520000pt;}
.y23_c00417{bottom:278.920000pt;}
.y22_c00417{bottom:295.453333pt;}
.y4a_c00417{bottom:308.653333pt;}
.y21_c00417{bottom:311.720000pt;}
.y20_c00417{bottom:327.853333pt;}
.y49_c00417{bottom:342.520000pt;}
.y1f_c00417{bottom:343.453333pt;}
.y48_c00417{bottom:358.120000pt;}
.y1e_c00417{bottom:359.720000pt;}
.y4_c00417{bottom:360.520000pt;}
.y47_c00417{bottom:374.120000pt;}
.y1d_c00417{bottom:376.120000pt;}
.y3_c00417{bottom:376.386667pt;}
.y46_c00417{bottom:390.520000pt;}
.y1c_c00417{bottom:391.986667pt;}
.y2_c00417{bottom:393.186667pt;}
.y45_c00417{bottom:406.520000pt;}
.y1b_c00417{bottom:407.986667pt;}
.y1_c00417{bottom:409.453333pt;}
.y44_c00417{bottom:423.186667pt;}
.y1a_c00417{bottom:424.520000pt;}
.y43_c00417{bottom:439.320000pt;}
.y19_c00417{bottom:440.386667pt;}
.y42_c00417{bottom:455.586667pt;}
.y18_c00417{bottom:456.786667pt;}
.y41_c00417{bottom:471.853333pt;}
.y17_c00417{bottom:473.320000pt;}
.y40_c00417{bottom:486.920000pt;}
.y16_c00417{bottom:489.186667pt;}
.y3f_c00417{bottom:503.720000pt;}
.y15_c00417{bottom:504.920000pt;}
.y3e_c00417{bottom:519.586667pt;}
.y14_c00417{bottom:521.586667pt;}
.y3d_c00417{bottom:535.720000pt;}
.y13_c00417{bottom:537.586667pt;}
.y3c_c00417{bottom:551.720000pt;}
.y12_c00417{bottom:553.986667pt;}
.y3b_c00417{bottom:567.853333pt;}
.y11_c00417{bottom:570.253333pt;}
.y3a_c00417{bottom:584.386667pt;}
.y10_c00417{bottom:587.053333pt;}
.y39_c00417{bottom:600.786667pt;}
.yf_c00417{bottom:603.186667pt;}
.y38_c00417{bottom:616.786667pt;}
.ye_c00417{bottom:619.186667pt;}
.y37_c00417{bottom:633.186667pt;}
.yd_c00417{bottom:635.720000pt;}
.y36_c00417{bottom:649.186667pt;}
.yc_c00417{bottom:651.320000pt;}
.y35_c00417{bottom:664.786667pt;}
.yb_c00417{bottom:667.720000pt;}
.y34_c00417{bottom:681.320000pt;}
.ya_c00417{bottom:684.253333pt;}
.y33_c00417{bottom:697.186667pt;}
.y9_c00417{bottom:700.386667pt;}
.y32_c00417{bottom:714.786667pt;}
.y8_c00417{bottom:716.653333pt;}
.h8_c00417{height:11.733399pt;}
.h9_c00417{height:38.937500pt;}
.h2_c00417{height:55.893333pt;}
.h4_c00417{height:56.906667pt;}
.h3_c00417{height:58.688000pt;}
.h5_c00417{height:59.300781pt;}
.h6_c00417{height:64.277333pt;}
.h7_c00417{height:86.218750pt;}
.h1_c00417{height:752.666667pt;}
.h0_c00417{height:752.866667pt;}
.w2_c00417{width:93.222667pt;}
.w0_c00417{width:505.666667pt;}
.w1_c00417{width:506.000000pt;}
.x0_c00417{left:0.000000pt;}
.x3_c00417{left:15.333333pt;}
.x2_c00417{left:16.533333pt;}
.x1_c00417{left:17.466667pt;}
.xd_c00417{left:66.000000pt;}
.xe_c00417{left:68.400000pt;}
.x7_c00417{left:69.600000pt;}
.xc_c00417{left:70.800000pt;}
.xb_c00417{left:72.000000pt;}
.xa_c00417{left:73.600000pt;}
.x8_c00417{left:75.600000pt;}
.x4_c00417{left:77.333333pt;}
.x9_c00417{left:134.400000pt;}
.x5_c00417{left:157.733333pt;}
.x6_c00417{left:161.200000pt;}
.x1b_c00417{left:210.001546pt;}
.xf_c00417{left:253.866667pt;}
.x13_c00417{left:266.666667pt;}
.x12_c00417{left:267.600000pt;}
.x11_c00417{left:268.533333pt;}
.x10_c00417{left:270.000000pt;}
.x15_c00417{left:283.466667pt;}
.x19_c00417{left:291.866667pt;}
.x16_c00417{left:303.066667pt;}
.x18_c00417{left:305.733333pt;}
.x17_c00417{left:340.533333pt;}
.x14_c00417{left:357.066667pt;}
.x1a_c00417{left:404.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2f78c8cedb2f253cc2effa26.woff2')format("woff");}.ff1_c00418{font-family:ff1_c00418;line-height:1.437000;font-style:normal;font-weight:normal;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_bf43d8ee2a46db44e415c24b.woff2')format("woff");}.ff2_c00418{font-family:ff2_c00418;line-height:1.437000;font-style:normal;font-weight:normal;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_91bca7cafb47fe04e8d7239c.woff2')format("woff");}.ff3_c00418{font-family:ff3_c00418;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00418;src:url('chunks/assets/font_014c5afe08ca9767ca4b0f40.woff2')format("woff");}.ff4_c00418{font-family:ff4_c00418;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00418;src:url('chunks/assets/font_de4ebc46c3d2a5661c1c36d9.woff2')format("woff");}.ff5_c00418{font-family:ff5_c00418;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00418;src:url('chunks/assets/font_282e79b49c05e95c15458796.woff2')format("woff");}.ff6_c00418{font-family:ff6_c00418;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00418;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff7_c00418{font-family:ff7_c00418;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00418{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00418{vertical-align:0.000000px;}
.lsa_c00418{letter-spacing:0.000000px;}
.ls8_c00418{letter-spacing:1.200000px;}
.ls4_c00418{letter-spacing:2.340000px;}
.ls7_c00418{letter-spacing:3.000000px;}
.ls3_c00418{letter-spacing:5.940000px;}
.ls0_c00418{letter-spacing:6.000000px;}
.ls5_c00418{letter-spacing:6.600000px;}
.lsb_c00418{letter-spacing:9.000000px;}
.ls1_c00418{letter-spacing:16.950000px;}
.ls6_c00418{letter-spacing:20.340000px;}
.ls9_c00418{letter-spacing:20.646000px;}
.ls2_c00418{letter-spacing:63.750000px;}
.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;}
}
.ws6_c00418{word-spacing:-21.000000px;}
.ws1_c00418{word-spacing:-20.340000px;}
.ws0_c00418{word-spacing:-18.060000px;}
.ws5_c00418{word-spacing:-18.000000px;}
.ws2_c00418{word-spacing:-17.160000px;}
.ws7_c00418{word-spacing:-15.744000px;}
.ws3_c00418{word-spacing:-15.000000px;}
.ws4_c00418{word-spacing:-14.160000px;}
.ws8_c00418{word-spacing:0.000000px;}
._29_c00418{margin-left:-20.070000px;}
._2d_c00418{margin-left:-18.828000px;}
._6_c00418{margin-left:-16.080000px;}
._18_c00418{margin-left:-14.820000px;}
._2a_c00418{margin-left:-13.620000px;}
._17_c00418{margin-left:-12.378000px;}
._b_c00418{margin-left:-10.980000px;}
._4_c00418{margin-left:-9.660000px;}
._5_c00418{margin-left:-8.400000px;}
._0_c00418{margin-left:-7.260000px;}
._1_c00418{margin-left:-5.340000px;}
._3_c00418{margin-left:-4.140000px;}
._13_c00418{margin-left:-3.120000px;}
._9_c00418{margin-left:-2.100000px;}
._1e_c00418{margin-left:-1.080000px;}
._7_c00418{width:1.020000px;}
._e_c00418{width:2.430000px;}
._8_c00418{width:3.780000px;}
._a_c00418{width:4.920000px;}
._d_c00418{width:6.480000px;}
._1d_c00418{width:7.560000px;}
._2_c00418{width:9.540000px;}
._19_c00418{width:10.620000px;}
._1f_c00418{width:12.600000px;}
._c_c00418{width:13.620000px;}
._20_c00418{width:14.760000px;}
._12_c00418{width:17.100000px;}
._1a_c00418{width:18.120000px;}
._14_c00418{width:19.410000px;}
._f_c00418{width:22.368000px;}
._21_c00418{width:24.180000px;}
._2c_c00418{width:25.920000px;}
._28_c00418{width:27.840000px;}
._22_c00418{width:29.880000px;}
._23_c00418{width:30.900000px;}
._1b_c00418{width:33.300000px;}
._2b_c00418{width:35.640000px;}
._10_c00418{width:36.660000px;}
._24_c00418{width:37.692000px;}
._11_c00418{width:39.492000px;}
._1c_c00418{width:43.110000px;}
._25_c00418{width:58.980000px;}
._15_c00418{width:63.840000px;}
._16_c00418{width:97.350000px;}
._26_c00418{width:120.639000px;}
._27_c00418{width:468.120000px;}
.fc2_c00418{color:transparent;}
.fc1_c00418{color:rgb(128,128,128);}
.fc0_c00418{color:rgb(0,0,0);}
.fs3_c00418{font-size:48.000000px;}
.fs5_c00418{font-size:51.000000px;}
.fs1_c00418{font-size:54.000000px;}
.fs2_c00418{font-size:57.000000px;}
.fs0_c00418{font-size:60.000000px;}
.fs4_c00418{font-size:63.000000px;}
.y0_c00418{bottom:0.000000px;}
.y56_c00418{bottom:3.105000px;}
.y55_c00418{bottom:7.228371px;}
.y54_c00418{bottom:34.065000px;}
.y29_c00418{bottom:52.365000px;}
.y53_c00418{bottom:53.415000px;}
.y28_c00418{bottom:71.265000px;}
.y52_c00418{bottom:71.865000px;}
.y27_c00418{bottom:89.415000px;}
.y51_c00418{bottom:89.865000px;}
.y26_c00418{bottom:107.115000px;}
.y50_c00418{bottom:108.465000px;}
.y25_c00418{bottom:125.865000px;}
.y4f_c00418{bottom:127.215000px;}
.y24_c00418{bottom:143.865000px;}
.y4e_c00418{bottom:145.215000px;}
.y23_c00418{bottom:161.715000px;}
.y4d_c00418{bottom:163.365000px;}
.y22_c00418{bottom:179.865000px;}
.y4c_c00418{bottom:181.665000px;}
.y21_c00418{bottom:198.765000px;}
.y4b_c00418{bottom:199.815000px;}
.y20_c00418{bottom:217.065000px;}
.y4a_c00418{bottom:218.115000px;}
.y1f_c00418{bottom:235.665000px;}
.y49_c00418{bottom:235.965000px;}
.y1e_c00418{bottom:252.915000px;}
.y48_c00418{bottom:254.265000px;}
.y1d_c00418{bottom:270.765000px;}
.y47_c00418{bottom:272.415000px;}
.y1c_c00418{bottom:289.215000px;}
.y46_c00418{bottom:290.265000px;}
.y1b_c00418{bottom:307.215000px;}
.y45_c00418{bottom:308.565000px;}
.y1a_c00418{bottom:325.365000px;}
.y44_c00418{bottom:326.115000px;}
.y19_c00418{bottom:343.965000px;}
.y43_c00418{bottom:344.715000px;}
.y18_c00418{bottom:361.815000px;}
.y42_c00418{bottom:362.865000px;}
.y17_c00418{bottom:379.815000px;}
.y41_c00418{bottom:380.715000px;}
.y16_c00418{bottom:397.965000px;}
.y40_c00418{bottom:398.715000px;}
.y15_c00418{bottom:416.115000px;}
.y3f_c00418{bottom:416.865000px;}
.y14_c00418{bottom:434.415000px;}
.y3e_c00418{bottom:436.065000px;}
.y13_c00418{bottom:452.265000px;}
.y3d_c00418{bottom:453.615000px;}
.y12_c00418{bottom:470.565000px;}
.y3c_c00418{bottom:471.615000px;}
.y11_c00418{bottom:488.715000px;}
.y3b_c00418{bottom:489.765000px;}
.y10_c00418{bottom:506.265000px;}
.y3a_c00418{bottom:507.315000px;}
.yf_c00418{bottom:524.115000px;}
.y39_c00418{bottom:525.915000px;}
.ye_c00418{bottom:541.065000px;}
.y38_c00418{bottom:543.765000px;}
.yd_c00418{bottom:559.365000px;}
.y37_c00418{bottom:562.365000px;}
.yc_c00418{bottom:577.815000px;}
.y36_c00418{bottom:580.815000px;}
.yb_c00418{bottom:596.715000px;}
.y35_c00418{bottom:598.365000px;}
.ya_c00418{bottom:614.265000px;}
.y34_c00418{bottom:616.665000px;}
.y9_c00418{bottom:632.265000px;}
.y33_c00418{bottom:634.515000px;}
.y8_c00418{bottom:650.415000px;}
.y32_c00418{bottom:653.115000px;}
.y7_c00418{bottom:668.265000px;}
.y31_c00418{bottom:672.315000px;}
.y6_c00418{bottom:686.565000px;}
.y30_c00418{bottom:689.565000px;}
.y5_c00418{bottom:704.415000px;}
.y2f_c00418{bottom:708.165000px;}
.y4_c00418{bottom:722.715000px;}
.y2e_c00418{bottom:726.615000px;}
.y3_c00418{bottom:741.165000px;}
.y2d_c00418{bottom:743.865000px;}
.y2_c00418{bottom:759.165000px;}
.y2c_c00418{bottom:763.065000px;}
.y1_c00418{bottom:776.715000px;}
.y2b_c00418{bottom:782.415000px;}
.y2a_c00418{bottom:798.165000px;}
.h9_c00418{height:13.200074px;}
.ha_c00418{height:43.804688px;}
.h6_c00418{height:56.592000px;}
.h7_c00418{height:58.536000px;}
.h8_c00418{height:59.736000px;}
.h2_c00418{height:62.880000px;}
.h4_c00418{height:64.020000px;}
.h3_c00418{height:65.040000px;}
.h5_c00418{height:66.024000px;}
.h1_c00418{height:844.500000px;}
.h0_c00418{height:844.575000px;}
.w1_c00418{width:104.875500px;}
.w0_c00418{width:587.250000px;}
.x0_c00418{left:0.000000px;}
.x5_c00418{left:27.450000px;}
.x4_c00418{left:28.650000px;}
.x7_c00418{left:30.150000px;}
.x3_c00418{left:31.800000px;}
.x8_c00418{left:87.750000px;}
.x2_c00418{left:88.800000px;}
.x1_c00418{left:90.000000px;}
.x6_c00418{left:117.150000px;}
.x10_c00418{left:245.439240px;}
.x9_c00418{left:293.550000px;}
.xe_c00418{left:303.300000px;}
.xd_c00418{left:306.450000px;}
.xc_c00418{left:307.500000px;}
.xb_c00418{left:308.700000px;}
.xa_c00418{left:378.300000px;}
.xf_c00418{left:459.300000px;}
@media print{
.v0_c00418{vertical-align:0.000000pt;}
.lsa_c00418{letter-spacing:0.000000pt;}
.ls8_c00418{letter-spacing:1.066667pt;}
.ls4_c00418{letter-spacing:2.080000pt;}
.ls7_c00418{letter-spacing:2.666667pt;}
.ls3_c00418{letter-spacing:5.280000pt;}
.ls0_c00418{letter-spacing:5.333333pt;}
.ls5_c00418{letter-spacing:5.866667pt;}
.lsb_c00418{letter-spacing:8.000000pt;}
.ls1_c00418{letter-spacing:15.066667pt;}
.ls6_c00418{letter-spacing:18.080000pt;}
.ls9_c00418{letter-spacing:18.352000pt;}
.ls2_c00418{letter-spacing:56.666667pt;}
.ws6_c00418{word-spacing:-18.666667pt;}
.ws1_c00418{word-spacing:-18.080000pt;}
.ws0_c00418{word-spacing:-16.053333pt;}
.ws5_c00418{word-spacing:-16.000000pt;}
.ws2_c00418{word-spacing:-15.253333pt;}
.ws7_c00418{word-spacing:-13.994667pt;}
.ws3_c00418{word-spacing:-13.333333pt;}
.ws4_c00418{word-spacing:-12.586667pt;}
.ws8_c00418{word-spacing:0.000000pt;}
._29_c00418{margin-left:-17.840000pt;}
._2d_c00418{margin-left:-16.736000pt;}
._6_c00418{margin-left:-14.293333pt;}
._18_c00418{margin-left:-13.173333pt;}
._2a_c00418{margin-left:-12.106667pt;}
._17_c00418{margin-left:-11.002667pt;}
._b_c00418{margin-left:-9.760000pt;}
._4_c00418{margin-left:-8.586667pt;}
._5_c00418{margin-left:-7.466667pt;}
._0_c00418{margin-left:-6.453333pt;}
._1_c00418{margin-left:-4.746667pt;}
._3_c00418{margin-left:-3.680000pt;}
._13_c00418{margin-left:-2.773333pt;}
._9_c00418{margin-left:-1.866667pt;}
._1e_c00418{margin-left:-0.960000pt;}
._7_c00418{width:0.906667pt;}
._e_c00418{width:2.160000pt;}
._8_c00418{width:3.360000pt;}
._a_c00418{width:4.373333pt;}
._d_c00418{width:5.760000pt;}
._1d_c00418{width:6.720000pt;}
._2_c00418{width:8.480000pt;}
._19_c00418{width:9.440000pt;}
._1f_c00418{width:11.200000pt;}
._c_c00418{width:12.106667pt;}
._20_c00418{width:13.120000pt;}
._12_c00418{width:15.200000pt;}
._1a_c00418{width:16.106667pt;}
._14_c00418{width:17.253333pt;}
._f_c00418{width:19.882667pt;}
._21_c00418{width:21.493333pt;}
._2c_c00418{width:23.040000pt;}
._28_c00418{width:24.746667pt;}
._22_c00418{width:26.560000pt;}
._23_c00418{width:27.466667pt;}
._1b_c00418{width:29.600000pt;}
._2b_c00418{width:31.680000pt;}
._10_c00418{width:32.586667pt;}
._24_c00418{width:33.504000pt;}
._11_c00418{width:35.104000pt;}
._1c_c00418{width:38.320000pt;}
._25_c00418{width:52.426667pt;}
._15_c00418{width:56.746667pt;}
._16_c00418{width:86.533333pt;}
._26_c00418{width:107.234667pt;}
._27_c00418{width:416.106667pt;}
.fs3_c00418{font-size:42.666667pt;}
.fs5_c00418{font-size:45.333333pt;}
.fs1_c00418{font-size:48.000000pt;}
.fs2_c00418{font-size:50.666667pt;}
.fs0_c00418{font-size:53.333333pt;}
.fs4_c00418{font-size:56.000000pt;}
.y0_c00418{bottom:0.000000pt;}
.y56_c00418{bottom:2.760000pt;}
.y55_c00418{bottom:6.425219pt;}
.y54_c00418{bottom:30.280000pt;}
.y29_c00418{bottom:46.546667pt;}
.y53_c00418{bottom:47.480000pt;}
.y28_c00418{bottom:63.346667pt;}
.y52_c00418{bottom:63.880000pt;}
.y27_c00418{bottom:79.480000pt;}
.y51_c00418{bottom:79.880000pt;}
.y26_c00418{bottom:95.213333pt;}
.y50_c00418{bottom:96.413333pt;}
.y25_c00418{bottom:111.880000pt;}
.y4f_c00418{bottom:113.080000pt;}
.y24_c00418{bottom:127.880000pt;}
.y4e_c00418{bottom:129.080000pt;}
.y23_c00418{bottom:143.746667pt;}
.y4d_c00418{bottom:145.213333pt;}
.y22_c00418{bottom:159.880000pt;}
.y4c_c00418{bottom:161.480000pt;}
.y21_c00418{bottom:176.680000pt;}
.y4b_c00418{bottom:177.613333pt;}
.y20_c00418{bottom:192.946667pt;}
.y4a_c00418{bottom:193.880000pt;}
.y1f_c00418{bottom:209.480000pt;}
.y49_c00418{bottom:209.746667pt;}
.y1e_c00418{bottom:224.813333pt;}
.y48_c00418{bottom:226.013333pt;}
.y1d_c00418{bottom:240.680000pt;}
.y47_c00418{bottom:242.146667pt;}
.y1c_c00418{bottom:257.080000pt;}
.y46_c00418{bottom:258.013333pt;}
.y1b_c00418{bottom:273.080000pt;}
.y45_c00418{bottom:274.280000pt;}
.y1a_c00418{bottom:289.213333pt;}
.y44_c00418{bottom:289.880000pt;}
.y19_c00418{bottom:305.746667pt;}
.y43_c00418{bottom:306.413333pt;}
.y18_c00418{bottom:321.613333pt;}
.y42_c00418{bottom:322.546667pt;}
.y17_c00418{bottom:337.613333pt;}
.y41_c00418{bottom:338.413333pt;}
.y16_c00418{bottom:353.746667pt;}
.y40_c00418{bottom:354.413333pt;}
.y15_c00418{bottom:369.880000pt;}
.y3f_c00418{bottom:370.546667pt;}
.y14_c00418{bottom:386.146667pt;}
.y3e_c00418{bottom:387.613333pt;}
.y13_c00418{bottom:402.013333pt;}
.y3d_c00418{bottom:403.213333pt;}
.y12_c00418{bottom:418.280000pt;}
.y3c_c00418{bottom:419.213333pt;}
.y11_c00418{bottom:434.413333pt;}
.y3b_c00418{bottom:435.346667pt;}
.y10_c00418{bottom:450.013333pt;}
.y3a_c00418{bottom:450.946667pt;}
.yf_c00418{bottom:465.880000pt;}
.y39_c00418{bottom:467.480000pt;}
.ye_c00418{bottom:480.946667pt;}
.y38_c00418{bottom:483.346667pt;}
.yd_c00418{bottom:497.213333pt;}
.y37_c00418{bottom:499.880000pt;}
.yc_c00418{bottom:513.613333pt;}
.y36_c00418{bottom:516.280000pt;}
.yb_c00418{bottom:530.413333pt;}
.y35_c00418{bottom:531.880000pt;}
.ya_c00418{bottom:546.013333pt;}
.y34_c00418{bottom:548.146667pt;}
.y9_c00418{bottom:562.013333pt;}
.y33_c00418{bottom:564.013333pt;}
.y8_c00418{bottom:578.146667pt;}
.y32_c00418{bottom:580.546667pt;}
.y7_c00418{bottom:594.013333pt;}
.y31_c00418{bottom:597.613333pt;}
.y6_c00418{bottom:610.280000pt;}
.y30_c00418{bottom:612.946667pt;}
.y5_c00418{bottom:626.146667pt;}
.y2f_c00418{bottom:629.480000pt;}
.y4_c00418{bottom:642.413333pt;}
.y2e_c00418{bottom:645.880000pt;}
.y3_c00418{bottom:658.813333pt;}
.y2d_c00418{bottom:661.213333pt;}
.y2_c00418{bottom:674.813333pt;}
.y2c_c00418{bottom:678.280000pt;}
.y1_c00418{bottom:690.413333pt;}
.y2b_c00418{bottom:695.480000pt;}
.y2a_c00418{bottom:709.480000pt;}
.h9_c00418{height:11.733399pt;}
.ha_c00418{height:38.937500pt;}
.h6_c00418{height:50.304000pt;}
.h7_c00418{height:52.032000pt;}
.h8_c00418{height:53.098667pt;}
.h2_c00418{height:55.893333pt;}
.h4_c00418{height:56.906667pt;}
.h3_c00418{height:57.813333pt;}
.h5_c00418{height:58.688000pt;}
.h1_c00418{height:750.666667pt;}
.h0_c00418{height:750.733333pt;}
.w1_c00418{width:93.222667pt;}
.w0_c00418{width:522.000000pt;}
.x0_c00418{left:0.000000pt;}
.x5_c00418{left:24.400000pt;}
.x4_c00418{left:25.466667pt;}
.x7_c00418{left:26.800000pt;}
.x3_c00418{left:28.266667pt;}
.x8_c00418{left:78.000000pt;}
.x2_c00418{left:78.933333pt;}
.x1_c00418{left:80.000000pt;}
.x6_c00418{left:104.133333pt;}
.x10_c00418{left:218.168213pt;}
.x9_c00418{left:260.933333pt;}
.xe_c00418{left:269.600000pt;}
.xd_c00418{left:272.400000pt;}
.xc_c00418{left:273.333333pt;}
.xb_c00418{left:274.400000pt;}
.xa_c00418{left:336.266667pt;}
.xf_c00418{left:408.266667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_2261e1e1895f888dc6c9f33e.woff2')format("woff");}.ff1_c00419{font-family:ff1_c00419;line-height:1.575000;font-style:normal;font-weight:normal;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_a005ad16412a31c138012f56.woff2')format("woff");}.ff2_c00419{font-family:ff2_c00419;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00419;src:url('chunks/assets/font_1b5dc9758dcecb032a65b01e.woff2')format("woff");}.ff3_c00419{font-family:ff3_c00419;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00419;src:url('chunks/assets/font_505329e41029f521025e9091.woff2')format("woff");}.ff4_c00419{font-family:ff4_c00419;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00419;src:url('chunks/assets/font_41430598b3a109b7373e2139.woff2')format("woff");}.ff5_c00419{font-family:ff5_c00419;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00419;src:url('chunks/assets/font_5ed069e54971a220dc6604fe.woff2')format("woff");}.ff6_c00419{font-family:ff6_c00419;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00419;src:url('chunks/assets/font_f1c75150f40dee7b44470f9f.woff2')format("woff");}.ff7_c00419{font-family:ff7_c00419;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00419;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff8_c00419{font-family:ff8_c00419;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00419{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00419{vertical-align:0.000000px;}
.ls5_c00419{letter-spacing:0.000000px;}
.ls4_c00419{letter-spacing:3.000000px;}
.ls0_c00419{letter-spacing:6.000000px;}
.ls2_c00419{letter-spacing:8.868000px;}
.ls3_c00419{letter-spacing:17.550000px;}
.ls1_c00419{letter-spacing:28.950000px;}
.sc__c00419{text-shadow:none;}
.sc0_c00419{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00419{-webkit-text-stroke:0px transparent;}
.sc0_c00419{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00419{word-spacing:-30.540000px;}
.ws0_c00419{word-spacing:-29.013000px;}
.ws4_c00419{word-spacing:-23.760000px;}
.ws2_c00419{word-spacing:-20.340000px;}
.ws6_c00419{word-spacing:-18.060000px;}
.ws5_c00419{word-spacing:-18.000000px;}
.ws3_c00419{word-spacing:-15.000000px;}
.ws7_c00419{word-spacing:0.000000px;}
._17_c00419{margin-left:-18.495000px;}
._20_c00419{margin-left:-17.052000px;}
._1e_c00419{margin-left:-15.687000px;}
._11_c00419{margin-left:-14.373000px;}
._1a_c00419{margin-left:-12.807000px;}
._1f_c00419{margin-left:-11.586000px;}
._0_c00419{margin-left:-10.500000px;}
._1b_c00419{margin-left:-9.045000px;}
._14_c00419{margin-left:-7.917000px;}
._13_c00419{margin-left:-6.765000px;}
._19_c00419{margin-left:-5.106000px;}
._12_c00419{margin-left:-4.104000px;}
._15_c00419{margin-left:-2.859000px;}
._1_c00419{margin-left:-1.800000px;}
._c_c00419{width:1.980000px;}
._b_c00419{width:3.480000px;}
._a_c00419{width:4.740000px;}
._9_c00419{width:6.420000px;}
._e_c00419{width:7.971000px;}
._2_c00419{width:9.900000px;}
._16_c00419{width:11.247000px;}
._4_c00419{width:12.600000px;}
._5_c00419{width:14.040000px;}
._6_c00419{width:15.240000px;}
._27_c00419{width:16.440000px;}
._1c_c00419{width:17.508000px;}
._8_c00419{width:19.260000px;}
._7_c00419{width:21.300000px;}
._18_c00419{width:22.995000px;}
._1d_c00419{width:24.894000px;}
._f_c00419{width:26.679000px;}
._23_c00419{width:28.827000px;}
._10_c00419{width:30.753000px;}
._d_c00419{width:31.992000px;}
._21_c00419{width:33.564000px;}
._26_c00419{width:34.980000px;}
._24_c00419{width:39.033000px;}
._22_c00419{width:86.907000px;}
._25_c00419{width:140.802000px;}
._3_c00419{width:206.640000px;}
.fc2_c00419{color:transparent;}
.fc1_c00419{color:rgb(128,128,128);}
.fc0_c00419{color:rgb(0,0,0);}
.fs2_c00419{font-size:48.000000px;}
.fs1_c00419{font-size:57.000000px;}
.fs0_c00419{font-size:60.000000px;}
.y0_c00419{bottom:0.000000px;}
.y56_c00419{bottom:3.105000px;}
.y55_c00419{bottom:7.228369px;}
.y54_c00419{bottom:19.470000px;}
.y2b_c00419{bottom:36.420000px;}
.y53_c00419{bottom:38.070000px;}
.y2a_c00419{bottom:55.320000px;}
.y52_c00419{bottom:56.670000px;}
.y29_c00419{bottom:73.470000px;}
.y51_c00419{bottom:75.270000px;}
.y28_c00419{bottom:92.370000px;}
.y50_c00419{bottom:93.120000px;}
.y27_c00419{bottom:110.370000px;}
.y4f_c00419{bottom:111.420000px;}
.y26_c00419{bottom:128.220000px;}
.y4e_c00419{bottom:129.270000px;}
.y25_c00419{bottom:146.370000px;}
.y4d_c00419{bottom:147.870000px;}
.y24_c00419{bottom:165.270000px;}
.y4c_c00419{bottom:165.720000px;}
.y23_c00419{bottom:182.220000px;}
.y4b_c00419{bottom:184.620000px;}
.y22_c00419{bottom:201.120000px;}
.y4a_c00419{bottom:202.770000px;}
.y21_c00419{bottom:218.970000px;}
.y49_c00419{bottom:221.070000px;}
.y20_c00419{bottom:237.270000px;}
.y48_c00419{bottom:239.220000px;}
.y1f_c00419{bottom:255.870000px;}
.y47_c00419{bottom:257.820000px;}
.y1e_c00419{bottom:273.720000px;}
.y46_c00419{bottom:276.120000px;}
.y1d_c00419{bottom:292.170000px;}
.y45_c00419{bottom:293.670000px;}
.y1c_c00419{bottom:311.070000px;}
.y44_c00419{bottom:311.220000px;}
.y1b_c00419{bottom:329.070000px;}
.y1a_c00419{bottom:346.920000px;}
.y43_c00419{bottom:347.520000px;}
.y19_c00419{bottom:365.520000px;}
.y42_c00419{bottom:366.420000px;}
.y18_c00419{bottom:383.070000px;}
.y41_c00419{bottom:383.970000px;}
.y17_c00419{bottom:401.970000px;}
.y40_c00419{bottom:402.870000px;}
.y16_c00419{bottom:419.520000px;}
.y3f_c00419{bottom:420.570000px;}
.y15_c00419{bottom:438.120000px;}
.y3e_c00419{bottom:439.470000px;}
.y14_c00419{bottom:455.970000px;}
.y3d_c00419{bottom:457.620000px;}
.y13_c00419{bottom:474.420000px;}
.y3c_c00419{bottom:475.770000px;}
.y12_c00419{bottom:492.720000px;}
.y3b_c00419{bottom:493.320000px;}
.y11_c00419{bottom:510.570000px;}
.y3a_c00419{bottom:511.620000px;}
.y10_c00419{bottom:528.870000px;}
.y39_c00419{bottom:529.470000px;}
.yf_c00419{bottom:547.320000px;}
.y38_c00419{bottom:548.070000px;}
.ye_c00419{bottom:565.620000px;}
.y37_c00419{bottom:565.920000px;}
.yd_c00419{bottom:583.770000px;}
.y36_c00419{bottom:583.920000px;}
.yc_c00419{bottom:601.770000px;}
.y35_c00419{bottom:602.370000px;}
.yb_c00419{bottom:620.370000px;}
.y34_c00419{bottom:620.670000px;}
.ya_c00419{bottom:638.520000px;}
.y33_c00419{bottom:638.820000px;}
.y9_c00419{bottom:656.370000px;}
.y32_c00419{bottom:657.120000px;}
.y31_c00419{bottom:674.970000px;}
.y8_c00419{bottom:675.270000px;}
.y30_c00419{bottom:693.120000px;}
.y7_c00419{bottom:693.870000px;}
.y2f_c00419{bottom:711.420000px;}
.y6_c00419{bottom:711.720000px;}
.y2e_c00419{bottom:729.270000px;}
.y5_c00419{bottom:730.020000px;}
.y2d_c00419{bottom:747.120000px;}
.y4_c00419{bottom:748.170000px;}
.y3_c00419{bottom:766.020000px;}
.y2c_c00419{bottom:784.020000px;}
.y2_c00419{bottom:784.320000px;}
.y1_c00419{bottom:803.820000px;}
.h6_c00419{height:13.200073px;}
.h7_c00419{height:43.804688px;}
.h5_c00419{height:59.736000px;}
.h4_c00419{height:60.819000px;}
.h3_c00419{height:62.880000px;}
.h2_c00419{height:64.020000px;}
.h0_c00419{height:850.200000px;}
.h1_c00419{height:850.500000px;}
.w2_c00419{width:104.875500px;}
.w0_c00419{width:568.875000px;}
.w1_c00419{width:569.250000px;}
.x0_c00419{left:0.000000px;}
.x7_c00419{left:73.500000px;}
.x5_c00419{left:74.550000px;}
.x4_c00419{left:76.200000px;}
.x3_c00419{left:77.550000px;}
.x2_c00419{left:79.050000px;}
.x1_c00419{left:86.700000px;}
.x6_c00419{left:100.950000px;}
.xd_c00419{left:236.251740px;}
.x8_c00419{left:277.050000px;}
.xb_c00419{left:293.550000px;}
.x9_c00419{left:295.200000px;}
.xa_c00419{left:296.550000px;}
.xc_c00419{left:462.000000px;}
@media print{
.v0_c00419{vertical-align:0.000000pt;}
.ls5_c00419{letter-spacing:0.000000pt;}
.ls4_c00419{letter-spacing:2.666667pt;}
.ls0_c00419{letter-spacing:5.333333pt;}
.ls2_c00419{letter-spacing:7.882667pt;}
.ls3_c00419{letter-spacing:15.600000pt;}
.ls1_c00419{letter-spacing:25.733333pt;}
.ws1_c00419{word-spacing:-27.146667pt;}
.ws0_c00419{word-spacing:-25.789333pt;}
.ws4_c00419{word-spacing:-21.120000pt;}
.ws2_c00419{word-spacing:-18.080000pt;}
.ws6_c00419{word-spacing:-16.053333pt;}
.ws5_c00419{word-spacing:-16.000000pt;}
.ws3_c00419{word-spacing:-13.333333pt;}
.ws7_c00419{word-spacing:0.000000pt;}
._17_c00419{margin-left:-16.440000pt;}
._20_c00419{margin-left:-15.157333pt;}
._1e_c00419{margin-left:-13.944000pt;}
._11_c00419{margin-left:-12.776000pt;}
._1a_c00419{margin-left:-11.384000pt;}
._1f_c00419{margin-left:-10.298667pt;}
._0_c00419{margin-left:-9.333333pt;}
._1b_c00419{margin-left:-8.040000pt;}
._14_c00419{margin-left:-7.037333pt;}
._13_c00419{margin-left:-6.013333pt;}
._19_c00419{margin-left:-4.538667pt;}
._12_c00419{margin-left:-3.648000pt;}
._15_c00419{margin-left:-2.541333pt;}
._1_c00419{margin-left:-1.600000pt;}
._c_c00419{width:1.760000pt;}
._b_c00419{width:3.093333pt;}
._a_c00419{width:4.213333pt;}
._9_c00419{width:5.706667pt;}
._e_c00419{width:7.085333pt;}
._2_c00419{width:8.800000pt;}
._16_c00419{width:9.997333pt;}
._4_c00419{width:11.200000pt;}
._5_c00419{width:12.480000pt;}
._6_c00419{width:13.546667pt;}
._27_c00419{width:14.613333pt;}
._1c_c00419{width:15.562667pt;}
._8_c00419{width:17.120000pt;}
._7_c00419{width:18.933333pt;}
._18_c00419{width:20.440000pt;}
._1d_c00419{width:22.128000pt;}
._f_c00419{width:23.714667pt;}
._23_c00419{width:25.624000pt;}
._10_c00419{width:27.336000pt;}
._d_c00419{width:28.437333pt;}
._21_c00419{width:29.834667pt;}
._26_c00419{width:31.093333pt;}
._24_c00419{width:34.696000pt;}
._22_c00419{width:77.250667pt;}
._25_c00419{width:125.157333pt;}
._3_c00419{width:183.680000pt;}
.fs2_c00419{font-size:42.666667pt;}
.fs1_c00419{font-size:50.666667pt;}
.fs0_c00419{font-size:53.333333pt;}
.y0_c00419{bottom:0.000000pt;}
.y56_c00419{bottom:2.760000pt;}
.y55_c00419{bottom:6.425217pt;}
.y54_c00419{bottom:17.306667pt;}
.y2b_c00419{bottom:32.373333pt;}
.y53_c00419{bottom:33.840000pt;}
.y2a_c00419{bottom:49.173333pt;}
.y52_c00419{bottom:50.373333pt;}
.y29_c00419{bottom:65.306667pt;}
.y51_c00419{bottom:66.906667pt;}
.y28_c00419{bottom:82.106667pt;}
.y50_c00419{bottom:82.773333pt;}
.y27_c00419{bottom:98.106667pt;}
.y4f_c00419{bottom:99.040000pt;}
.y26_c00419{bottom:113.973333pt;}
.y4e_c00419{bottom:114.906667pt;}
.y25_c00419{bottom:130.106667pt;}
.y4d_c00419{bottom:131.440000pt;}
.y24_c00419{bottom:146.906667pt;}
.y4c_c00419{bottom:147.306667pt;}
.y23_c00419{bottom:161.973333pt;}
.y4b_c00419{bottom:164.106667pt;}
.y22_c00419{bottom:178.773333pt;}
.y4a_c00419{bottom:180.240000pt;}
.y21_c00419{bottom:194.640000pt;}
.y49_c00419{bottom:196.506667pt;}
.y20_c00419{bottom:210.906667pt;}
.y48_c00419{bottom:212.640000pt;}
.y1f_c00419{bottom:227.440000pt;}
.y47_c00419{bottom:229.173333pt;}
.y1e_c00419{bottom:243.306667pt;}
.y46_c00419{bottom:245.440000pt;}
.y1d_c00419{bottom:259.706667pt;}
.y45_c00419{bottom:261.040000pt;}
.y1c_c00419{bottom:276.506667pt;}
.y44_c00419{bottom:276.640000pt;}
.y1b_c00419{bottom:292.506667pt;}
.y1a_c00419{bottom:308.373333pt;}
.y43_c00419{bottom:308.906667pt;}
.y19_c00419{bottom:324.906667pt;}
.y42_c00419{bottom:325.706667pt;}
.y18_c00419{bottom:340.506667pt;}
.y41_c00419{bottom:341.306667pt;}
.y17_c00419{bottom:357.306667pt;}
.y40_c00419{bottom:358.106667pt;}
.y16_c00419{bottom:372.906667pt;}
.y3f_c00419{bottom:373.840000pt;}
.y15_c00419{bottom:389.440000pt;}
.y3e_c00419{bottom:390.640000pt;}
.y14_c00419{bottom:405.306667pt;}
.y3d_c00419{bottom:406.773333pt;}
.y13_c00419{bottom:421.706667pt;}
.y3c_c00419{bottom:422.906667pt;}
.y12_c00419{bottom:437.973333pt;}
.y3b_c00419{bottom:438.506667pt;}
.y11_c00419{bottom:453.840000pt;}
.y3a_c00419{bottom:454.773333pt;}
.y10_c00419{bottom:470.106667pt;}
.y39_c00419{bottom:470.640000pt;}
.yf_c00419{bottom:486.506667pt;}
.y38_c00419{bottom:487.173333pt;}
.ye_c00419{bottom:502.773333pt;}
.y37_c00419{bottom:503.040000pt;}
.yd_c00419{bottom:518.906667pt;}
.y36_c00419{bottom:519.040000pt;}
.yc_c00419{bottom:534.906667pt;}
.y35_c00419{bottom:535.440000pt;}
.yb_c00419{bottom:551.440000pt;}
.y34_c00419{bottom:551.706667pt;}
.ya_c00419{bottom:567.573333pt;}
.y33_c00419{bottom:567.840000pt;}
.y9_c00419{bottom:583.440000pt;}
.y32_c00419{bottom:584.106667pt;}
.y31_c00419{bottom:599.973333pt;}
.y8_c00419{bottom:600.240000pt;}
.y30_c00419{bottom:616.106667pt;}
.y7_c00419{bottom:616.773333pt;}
.y2f_c00419{bottom:632.373333pt;}
.y6_c00419{bottom:632.640000pt;}
.y2e_c00419{bottom:648.240000pt;}
.y5_c00419{bottom:648.906667pt;}
.y2d_c00419{bottom:664.106667pt;}
.y4_c00419{bottom:665.040000pt;}
.y3_c00419{bottom:680.906667pt;}
.y2c_c00419{bottom:696.906667pt;}
.y2_c00419{bottom:697.173333pt;}
.y1_c00419{bottom:714.506667pt;}
.h6_c00419{height:11.733399pt;}
.h7_c00419{height:38.937500pt;}
.h5_c00419{height:53.098667pt;}
.h4_c00419{height:54.061333pt;}
.h3_c00419{height:55.893333pt;}
.h2_c00419{height:56.906667pt;}
.h0_c00419{height:755.733333pt;}
.h1_c00419{height:756.000000pt;}
.w2_c00419{width:93.222667pt;}
.w0_c00419{width:505.666667pt;}
.w1_c00419{width:506.000000pt;}
.x0_c00419{left:0.000000pt;}
.x7_c00419{left:65.333333pt;}
.x5_c00419{left:66.266667pt;}
.x4_c00419{left:67.733333pt;}
.x3_c00419{left:68.933333pt;}
.x2_c00419{left:70.266667pt;}
.x1_c00419{left:77.066667pt;}
.x6_c00419{left:89.733333pt;}
.xd_c00419{left:210.001546pt;}
.x8_c00419{left:246.266667pt;}
.xb_c00419{left:260.933333pt;}
.x9_c00419{left:262.400000pt;}
.xa_c00419{left:263.600000pt;}
.xc_c00419{left:410.666667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ab86e81e6c24477db98c89e4.woff2')format("woff");}.ff1_c00420{font-family:ff1_c00420;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00420;src:url('chunks/assets/font_55aff14214ac5693bef154fc.woff2')format("woff");}.ff2_c00420{font-family:ff2_c00420;line-height:1.575000;font-style:normal;font-weight:normal;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_5b155cd103a883a05d4ecb33.woff2')format("woff");}.ff3_c00420{font-family:ff3_c00420;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00420;src:url('chunks/assets/font_8b6f5b79c9ff4e0d3d70f62d.woff2')format("woff");}.ff4_c00420{font-family:ff4_c00420;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00420;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff5_c00420{font-family:ff5_c00420;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00420{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00420{vertical-align:0.000000px;}
.ls10_c00420{letter-spacing:0.000000px;}
.ls9_c00420{letter-spacing:1.200000px;}
.lse_c00420{letter-spacing:1.800000px;}
.ls1_c00420{letter-spacing:3.000000px;}
.lsc_c00420{letter-spacing:3.420000px;}
.lsf_c00420{letter-spacing:6.000000px;}
.ls0_c00420{letter-spacing:7.800000px;}
.lsb_c00420{letter-spacing:10.800000px;}
.lsd_c00420{letter-spacing:11.400000px;}
.lsa_c00420{letter-spacing:16.446000px;}
.ls7_c00420{letter-spacing:53.046000px;}
.ls8_c00420{letter-spacing:56.646000px;}
.ls4_c00420{letter-spacing:58.446000px;}
.ls5_c00420{letter-spacing:60.246000px;}
.ls6_c00420{letter-spacing:85.446000px;}
.ls2_c00420{letter-spacing:165.246000px;}
.ls3_c00420{letter-spacing:234.846000px;}
.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:-23.088000px;}
.ws2_c00420{word-spacing:-18.060000px;}
.ws3_c00420{word-spacing:-18.000000px;}
.ws0_c00420{word-spacing:-15.744000px;}
.ws4_c00420{word-spacing:0.000000px;}
._13_c00420{margin-left:-24.420000px;}
._31_c00420{margin-left:-20.778000px;}
._2d_c00420{margin-left:-17.784000px;}
._12_c00420{margin-left:-15.984000px;}
._30_c00420{margin-left:-14.649000px;}
._32_c00420{margin-left:-13.260000px;}
._17_c00420{margin-left:-11.070000px;}
._18_c00420{margin-left:-9.720000px;}
._29_c00420{margin-left:-8.457000px;}
._15_c00420{margin-left:-7.356000px;}
._19_c00420{margin-left:-6.318000px;}
._1b_c00420{margin-left:-4.950000px;}
._1e_c00420{margin-left:-3.804000px;}
._a_c00420{margin-left:-2.700000px;}
._9_c00420{margin-left:-1.680000px;}
._c_c00420{width:1.419000px;}
._b_c00420{width:2.880000px;}
._8_c00420{width:3.900000px;}
._11_c00420{width:5.460000px;}
._10_c00420{width:7.260000px;}
._28_c00420{width:8.262000px;}
._6_c00420{width:9.300000px;}
._1_c00420{width:11.040000px;}
._21_c00420{width:12.444000px;}
._0_c00420{width:14.340000px;}
._16_c00420{width:15.774000px;}
._1f_c00420{width:17.469000px;}
._3_c00420{width:19.860000px;}
._25_c00420{width:20.940000px;}
._4_c00420{width:21.960000px;}
._2f_c00420{width:23.508000px;}
._e_c00420{width:24.585000px;}
._5_c00420{width:25.860000px;}
._20_c00420{width:27.774000px;}
._2a_c00420{width:29.166000px;}
._2e_c00420{width:32.286000px;}
._24_c00420{width:34.326000px;}
._2c_c00420{width:35.898000px;}
._1d_c00420{width:37.995000px;}
._14_c00420{width:39.240000px;}
._26_c00420{width:42.864000px;}
._27_c00420{width:44.007000px;}
._2_c00420{width:45.840000px;}
._22_c00420{width:48.066000px;}
._23_c00420{width:49.524000px;}
._f_c00420{width:57.360000px;}
._d_c00420{width:62.604000px;}
._1a_c00420{width:64.782000px;}
._1c_c00420{width:70.017000px;}
._2b_c00420{width:220.023000px;}
._7_c00420{width:436.440000px;}
.fc2_c00420{color:transparent;}
.fc1_c00420{color:rgb(128,128,128);}
.fc0_c00420{color:rgb(0,0,0);}
.fs3_c00420{font-size:48.000000px;}
.fs2_c00420{font-size:54.000000px;}
.fs1_c00420{font-size:57.000000px;}
.fs0_c00420{font-size:60.000000px;}
.y0_c00420{bottom:0.000000px;}
.y2e_c00420{bottom:3.105000px;}
.y2d_c00420{bottom:7.228355px;}
.y2c_c00420{bottom:19.485000px;}
.y2b_c00420{bottom:37.035000px;}
.y2a_c00420{bottom:56.235000px;}
.y29_c00420{bottom:74.535000px;}
.y28_c00420{bottom:92.835000px;}
.y27_c00420{bottom:110.685000px;}
.y26_c00420{bottom:128.535000px;}
.y25_c00420{bottom:147.135000px;}
.y24_c00420{bottom:165.285000px;}
.y23_c00420{bottom:183.285000px;}
.y22_c00420{bottom:201.135000px;}
.y21_c00420{bottom:220.035000px;}
.y20_c00420{bottom:237.885000px;}
.y1f_c00420{bottom:256.485000px;}
.y1e_c00420{bottom:274.035000px;}
.y1d_c00420{bottom:292.635000px;}
.y1c_c00420{bottom:311.085000px;}
.y1b_c00420{bottom:328.935000px;}
.y1a_c00420{bottom:347.535000px;}
.y19_c00420{bottom:365.535000px;}
.y18_c00420{bottom:383.385000px;}
.y17_c00420{bottom:402.285000px;}
.y16_c00420{bottom:420.435000px;}
.y15_c00420{bottom:438.435000px;}
.y14_c00420{bottom:456.285000px;}
.y13_c00420{bottom:474.735000px;}
.y12_c00420{bottom:492.285000px;}
.y11_c00420{bottom:510.885000px;}
.y10_c00420{bottom:528.735000px;}
.yf_c00420{bottom:546.435000px;}
.ye_c00420{bottom:564.885000px;}
.yd_c00420{bottom:582.735000px;}
.yc_c00420{bottom:601.035000px;}
.yb_c00420{bottom:619.185000px;}
.ya_c00420{bottom:636.885000px;}
.y9_c00420{bottom:655.035000px;}
.y8_c00420{bottom:673.635000px;}
.y7_c00420{bottom:691.785000px;}
.y6_c00420{bottom:709.785000px;}
.y5_c00420{bottom:728.535000px;}
.y4_c00420{bottom:746.835000px;}
.y3_c00420{bottom:764.385000px;}
.y2_c00420{bottom:782.985000px;}
.y1_c00420{bottom:801.885000px;}
.h5_c00420{height:13.200074px;}
.h6_c00420{height:43.804688px;}
.h4_c00420{height:56.592000px;}
.h3_c00420{height:62.880000px;}
.h2_c00420{height:64.020000px;}
.h0_c00420{height:849.675000px;}
.h1_c00420{height:849.750000px;}
.w2_c00420{width:104.875500px;}
.w1_c00420{width:579.750000px;}
.w0_c00420{width:579.975000px;}
.x0_c00420{left:0.000000px;}
.x2_c00420{left:65.550000px;}
.x3_c00420{left:67.200000px;}
.x4_c00420{left:68.550000px;}
.x5_c00420{left:69.600000px;}
.x6_c00420{left:71.250000px;}
.x7_c00420{left:72.300000px;}
.x8_c00420{left:73.800000px;}
.x1_c00420{left:191.400000px;}
.xa_c00420{left:241.801758px;}
.x9_c00420{left:449.100000px;}
@media print{
.v0_c00420{vertical-align:0.000000pt;}
.ls10_c00420{letter-spacing:0.000000pt;}
.ls9_c00420{letter-spacing:1.066667pt;}
.lse_c00420{letter-spacing:1.600000pt;}
.ls1_c00420{letter-spacing:2.666667pt;}
.lsc_c00420{letter-spacing:3.040000pt;}
.lsf_c00420{letter-spacing:5.333333pt;}
.ls0_c00420{letter-spacing:6.933333pt;}
.lsb_c00420{letter-spacing:9.600000pt;}
.lsd_c00420{letter-spacing:10.133333pt;}
.lsa_c00420{letter-spacing:14.618667pt;}
.ls7_c00420{letter-spacing:47.152000pt;}
.ls8_c00420{letter-spacing:50.352000pt;}
.ls4_c00420{letter-spacing:51.952000pt;}
.ls5_c00420{letter-spacing:53.552000pt;}
.ls6_c00420{letter-spacing:75.952000pt;}
.ls2_c00420{letter-spacing:146.885333pt;}
.ls3_c00420{letter-spacing:208.752000pt;}
.ws1_c00420{word-spacing:-20.522667pt;}
.ws2_c00420{word-spacing:-16.053333pt;}
.ws3_c00420{word-spacing:-16.000000pt;}
.ws0_c00420{word-spacing:-13.994667pt;}
.ws4_c00420{word-spacing:0.000000pt;}
._13_c00420{margin-left:-21.706667pt;}
._31_c00420{margin-left:-18.469333pt;}
._2d_c00420{margin-left:-15.808000pt;}
._12_c00420{margin-left:-14.208000pt;}
._30_c00420{margin-left:-13.021333pt;}
._32_c00420{margin-left:-11.786667pt;}
._17_c00420{margin-left:-9.840000pt;}
._18_c00420{margin-left:-8.640000pt;}
._29_c00420{margin-left:-7.517333pt;}
._15_c00420{margin-left:-6.538667pt;}
._19_c00420{margin-left:-5.616000pt;}
._1b_c00420{margin-left:-4.400000pt;}
._1e_c00420{margin-left:-3.381333pt;}
._a_c00420{margin-left:-2.400000pt;}
._9_c00420{margin-left:-1.493333pt;}
._c_c00420{width:1.261333pt;}
._b_c00420{width:2.560000pt;}
._8_c00420{width:3.466667pt;}
._11_c00420{width:4.853333pt;}
._10_c00420{width:6.453333pt;}
._28_c00420{width:7.344000pt;}
._6_c00420{width:8.266667pt;}
._1_c00420{width:9.813333pt;}
._21_c00420{width:11.061333pt;}
._0_c00420{width:12.746667pt;}
._16_c00420{width:14.021333pt;}
._1f_c00420{width:15.528000pt;}
._3_c00420{width:17.653333pt;}
._25_c00420{width:18.613333pt;}
._4_c00420{width:19.520000pt;}
._2f_c00420{width:20.896000pt;}
._e_c00420{width:21.853333pt;}
._5_c00420{width:22.986667pt;}
._20_c00420{width:24.688000pt;}
._2a_c00420{width:25.925333pt;}
._2e_c00420{width:28.698667pt;}
._24_c00420{width:30.512000pt;}
._2c_c00420{width:31.909333pt;}
._1d_c00420{width:33.773333pt;}
._14_c00420{width:34.880000pt;}
._26_c00420{width:38.101333pt;}
._27_c00420{width:39.117333pt;}
._2_c00420{width:40.746667pt;}
._22_c00420{width:42.725333pt;}
._23_c00420{width:44.021333pt;}
._f_c00420{width:50.986667pt;}
._d_c00420{width:55.648000pt;}
._1a_c00420{width:57.584000pt;}
._1c_c00420{width:62.237333pt;}
._2b_c00420{width:195.576000pt;}
._7_c00420{width:387.946667pt;}
.fs3_c00420{font-size:42.666667pt;}
.fs2_c00420{font-size:48.000000pt;}
.fs1_c00420{font-size:50.666667pt;}
.fs0_c00420{font-size:53.333333pt;}
.y0_c00420{bottom:0.000000pt;}
.y2e_c00420{bottom:2.760000pt;}
.y2d_c00420{bottom:6.425204pt;}
.y2c_c00420{bottom:17.320000pt;}
.y2b_c00420{bottom:32.920000pt;}
.y2a_c00420{bottom:49.986667pt;}
.y29_c00420{bottom:66.253333pt;}
.y28_c00420{bottom:82.520000pt;}
.y27_c00420{bottom:98.386667pt;}
.y26_c00420{bottom:114.253333pt;}
.y25_c00420{bottom:130.786667pt;}
.y24_c00420{bottom:146.920000pt;}
.y23_c00420{bottom:162.920000pt;}
.y22_c00420{bottom:178.786667pt;}
.y21_c00420{bottom:195.586667pt;}
.y20_c00420{bottom:211.453333pt;}
.y1f_c00420{bottom:227.986667pt;}
.y1e_c00420{bottom:243.586667pt;}
.y1d_c00420{bottom:260.120000pt;}
.y1c_c00420{bottom:276.520000pt;}
.y1b_c00420{bottom:292.386667pt;}
.y1a_c00420{bottom:308.920000pt;}
.y19_c00420{bottom:324.920000pt;}
.y18_c00420{bottom:340.786667pt;}
.y17_c00420{bottom:357.586667pt;}
.y16_c00420{bottom:373.720000pt;}
.y15_c00420{bottom:389.720000pt;}
.y14_c00420{bottom:405.586667pt;}
.y13_c00420{bottom:421.986667pt;}
.y12_c00420{bottom:437.586667pt;}
.y11_c00420{bottom:454.120000pt;}
.y10_c00420{bottom:469.986667pt;}
.yf_c00420{bottom:485.720000pt;}
.ye_c00420{bottom:502.120000pt;}
.yd_c00420{bottom:517.986667pt;}
.yc_c00420{bottom:534.253333pt;}
.yb_c00420{bottom:550.386667pt;}
.ya_c00420{bottom:566.120000pt;}
.y9_c00420{bottom:582.253333pt;}
.y8_c00420{bottom:598.786667pt;}
.y7_c00420{bottom:614.920000pt;}
.y6_c00420{bottom:630.920000pt;}
.y5_c00420{bottom:647.586667pt;}
.y4_c00420{bottom:663.853333pt;}
.y3_c00420{bottom:679.453333pt;}
.y2_c00420{bottom:695.986667pt;}
.y1_c00420{bottom:712.786667pt;}
.h5_c00420{height:11.733399pt;}
.h6_c00420{height:38.937500pt;}
.h4_c00420{height:50.304000pt;}
.h3_c00420{height:55.893333pt;}
.h2_c00420{height:56.906667pt;}
.h0_c00420{height:755.266667pt;}
.h1_c00420{height:755.333333pt;}
.w2_c00420{width:93.222667pt;}
.w1_c00420{width:515.333333pt;}
.w0_c00420{width:515.533333pt;}
.x0_c00420{left:0.000000pt;}
.x2_c00420{left:58.266667pt;}
.x3_c00420{left:59.733333pt;}
.x4_c00420{left:60.933333pt;}
.x5_c00420{left:61.866667pt;}
.x6_c00420{left:63.333333pt;}
.x7_c00420{left:64.266667pt;}
.x8_c00420{left:65.600000pt;}
.x1_c00420{left:170.133333pt;}
.xa_c00420{left:214.934896pt;}
.x9_c00420{left:399.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_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_f652d1e1e8f0503e872a382d.woff2')format("woff");}.ff1_c00421{font-family:ff1_c00421;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00421;src:url('chunks/assets/font_993770ef7d396fe38c735911.woff2')format("woff");}.ff2_c00421{font-family:ff2_c00421;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00421;src:url('chunks/assets/font_2b807463ffd5b5d36b26af55.woff2')format("woff");}.ff3_c00421{font-family:ff3_c00421;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00421;src:url('chunks/assets/font_c109f0cf575c108fece73e0a.woff2')format("woff");}.ff4_c00421{font-family:ff4_c00421;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00421;src:url('chunks/assets/font_0c95805a8604d2d78d546ad6.woff2')format("woff");}.ff5_c00421{font-family:ff5_c00421;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00421;src:url('chunks/assets/font_51e88c70bb102f5ced4fde70.woff2')format("woff");}.ff6_c00421{font-family:ff6_c00421;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00421;src:url('chunks/assets/font_fd9429bb61f81ae4af63a017.woff2')format("woff");}.ff7_c00421{font-family:ff7_c00421;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00421;src:url('chunks/assets/font_eac1420eb8e496f2ac49310b.woff2')format("woff");}.ff8_c00421{font-family:ff8_c00421;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00421;src:url('chunks/assets/font_0ce391de997f24f9f9dd37f4.woff2')format("woff");}.ff9_c00421{font-family:ff9_c00421;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00421;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ffa_c00421{font-family:ffa_c00421;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00421{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00421{vertical-align:0.000000px;}
.v1_c00421{vertical-align:86.400000px;}
.ls7_c00421{letter-spacing:0.000000px;}
.ls6_c00421{letter-spacing:1.200000px;}
.ls1_c00421{letter-spacing:3.000000px;}
.ls5_c00421{letter-spacing:5.400000px;}
.ls2_c00421{letter-spacing:5.835000px;}
.ls3_c00421{letter-spacing:6.000000px;}
.ls0_c00421{letter-spacing:11.100000px;}
.ls4_c00421{letter-spacing:19.158000px;}
.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;}
}
.ws4_c00421{word-spacing:-35.295000px;}
.ws1_c00421{word-spacing:-20.340000px;}
.ws5_c00421{word-spacing:-18.813000px;}
.ws2_c00421{word-spacing:-18.060000px;}
.ws3_c00421{word-spacing:-18.000000px;}
.ws0_c00421{word-spacing:-14.160000px;}
.ws6_c00421{word-spacing:0.000000px;}
._24_c00421{margin-left:-22.086000px;}
._18_c00421{margin-left:-15.960000px;}
._1a_c00421{margin-left:-11.295000px;}
._19_c00421{margin-left:-10.149000px;}
._15_c00421{margin-left:-8.031000px;}
._14_c00421{margin-left:-6.480000px;}
._10_c00421{margin-left:-5.280000px;}
._11_c00421{margin-left:-3.960000px;}
._d_c00421{margin-left:-2.880000px;}
._f_c00421{margin-left:-1.260000px;}
._9_c00421{width:1.500000px;}
._8_c00421{width:2.640000px;}
._7_c00421{width:3.840000px;}
._0_c00421{width:5.103000px;}
._e_c00421{width:6.840000px;}
._12_c00421{width:8.580000px;}
._c_c00421{width:10.500000px;}
._17_c00421{width:11.574000px;}
._2_c00421{width:12.915000px;}
._3_c00421{width:14.679000px;}
._4_c00421{width:16.065000px;}
._1c_c00421{width:18.063000px;}
._6_c00421{width:19.845000px;}
._5_c00421{width:22.176000px;}
._b_c00421{width:23.460000px;}
._21_c00421{width:24.720000px;}
._a_c00421{width:26.040000px;}
._25_c00421{width:27.138000px;}
._13_c00421{width:28.185000px;}
._29_c00421{width:29.424000px;}
._23_c00421{width:30.957000px;}
._1e_c00421{width:32.535000px;}
._1f_c00421{width:33.600000px;}
._1d_c00421{width:37.605000px;}
._20_c00421{width:38.700000px;}
._27_c00421{width:47.697000px;}
._28_c00421{width:49.020000px;}
._22_c00421{width:51.294000px;}
._16_c00421{width:118.671000px;}
._1b_c00421{width:124.980000px;}
._26_c00421{width:172.740000px;}
._1_c00421{width:196.875000px;}
.fc2_c00421{color:transparent;}
.fc1_c00421{color:rgb(128,128,128);}
.fc0_c00421{color:rgb(0,0,0);}
.fs4_c00421{font-size:45.000000px;}
.fs8_c00421{font-size:48.000000px;}
.fs3_c00421{font-size:54.000000px;}
.fs7_c00421{font-size:57.000000px;}
.fs1_c00421{font-size:60.000000px;}
.fs0_c00421{font-size:63.000000px;}
.fs2_c00421{font-size:69.000000px;}
.fs6_c00421{font-size:78.000000px;}
.fs5_c00421{font-size:213.000000px;}
.y0_c00421{bottom:0.000000px;}
.y52_c00421{bottom:3.105000px;}
.y51_c00421{bottom:7.228369px;}
.y26_c00421{bottom:56.370000px;}
.y50_c00421{bottom:60.420000px;}
.y25_c00421{bottom:75.270000px;}
.y4f_c00421{bottom:77.670000px;}
.y24_c00421{bottom:93.420000px;}
.y4e_c00421{bottom:96.420000px;}
.y23_c00421{bottom:111.420000px;}
.y4d_c00421{bottom:115.320000px;}
.y22_c00421{bottom:129.870000px;}
.y4c_c00421{bottom:132.870000px;}
.y21_c00421{bottom:148.770000px;}
.y4b_c00421{bottom:150.870000px;}
.y20_c00421{bottom:166.320000px;}
.y4a_c00421{bottom:169.020000px;}
.y1f_c00421{bottom:184.320000px;}
.y49_c00421{bottom:187.620000px;}
.y1e_c00421{bottom:202.770000px;}
.y48_c00421{bottom:205.470000px;}
.y1d_c00421{bottom:220.620000px;}
.y47_c00421{bottom:223.770000px;}
.y1c_c00421{bottom:239.220000px;}
.y46_c00421{bottom:242.220000px;}
.y1b_c00421{bottom:257.520000px;}
.y45_c00421{bottom:260.820000px;}
.y1a_c00421{bottom:275.370000px;}
.y44_c00421{bottom:278.670000px;}
.y19_c00421{bottom:293.520000px;}
.y43_c00421{bottom:295.620000px;}
.y18_c00421{bottom:310.470000px;}
.y42_c00421{bottom:313.770000px;}
.y17_c00421{bottom:328.770000px;}
.y41_c00421{bottom:332.370000px;}
.y16_c00421{bottom:347.220000px;}
.y40_c00421{bottom:350.220000px;}
.y15_c00421{bottom:364.470000px;}
.y3f_c00421{bottom:368.220000px;}
.y14_c00421{bottom:382.770000px;}
.y3e_c00421{bottom:385.770000px;}
.y13_c00421{bottom:400.920000px;}
.y3d_c00421{bottom:404.370000px;}
.y12_c00421{bottom:419.220000px;}
.y3c_c00421{bottom:422.820000px;}
.y11_c00421{bottom:437.670000px;}
.y3b_c00421{bottom:440.820000px;}
.y10_c00421{bottom:454.920000px;}
.y3a_c00421{bottom:458.670000px;}
.yf_c00421{bottom:472.770000px;}
.y39_c00421{bottom:477.120000px;}
.ye_c00421{bottom:491.670000px;}
.y38_c00421{bottom:494.820000px;}
.yc_c00421{bottom:506.820000px;}
.yd_c00421{bottom:509.970000px;}
.y37_c00421{bottom:513.570000px;}
.y36_c00421{bottom:531.120000px;}
.y35_c00421{bottom:549.120000px;}
.yb_c00421{bottom:564.870000px;}
.y34_c00421{bottom:567.120000px;}
.ya_c00421{bottom:583.770000px;}
.y33_c00421{bottom:585.270000px;}
.y9_c00421{bottom:601.320000px;}
.y32_c00421{bottom:603.420000px;}
.y8_c00421{bottom:619.020000px;}
.y31_c00421{bottom:622.020000px;}
.y30_c00421{bottom:640.170000px;}
.y7_c00421{bottom:654.420000px;}
.y2f_c00421{bottom:658.470000px;}
.y2e_c00421{bottom:676.620000px;}
.y2d_c00421{bottom:695.220000px;}
.y6_c00421{bottom:711.120000px;}
.y2c_c00421{bottom:713.820000px;}
.y5_c00421{bottom:729.720000px;}
.y2b_c00421{bottom:731.070000px;}
.y4_c00421{bottom:748.920000px;}
.y2a_c00421{bottom:749.520000px;}
.y3_c00421{bottom:766.470000px;}
.y29_c00421{bottom:767.520000px;}
.y2_c00421{bottom:784.320000px;}
.y28_c00421{bottom:786.270000px;}
.y1_c00421{bottom:803.520000px;}
.y27_c00421{bottom:805.320000px;}
.hb_c00421{height:13.200073px;}
.hc_c00421{height:43.804688px;}
.h5_c00421{height:52.998047px;}
.h3_c00421{height:62.880000px;}
.ha_c00421{height:63.480000px;}
.h8_c00421{height:64.020000px;}
.h9_c00421{height:65.040000px;}
.h2_c00421{height:66.024000px;}
.h4_c00421{height:72.312000px;}
.h7_c00421{height:81.744000px;}
.h6_c00421{height:223.224000px;}
.h0_c00421{height:850.200000px;}
.h1_c00421{height:850.500000px;}
.w2_c00421{width:104.875500px;}
.w0_c00421{width:568.875000px;}
.w1_c00421{width:569.250000px;}
.x0_c00421{left:0.000000px;}
.x9_c00421{left:14.850000px;}
.xb_c00421{left:73.950000px;}
.xa_c00421{left:75.000000px;}
.x2_c00421{left:76.200000px;}
.x1_c00421{left:77.250000px;}
.x4_c00421{left:79.350000px;}
.x5_c00421{left:86.400000px;}
.x6_c00421{left:107.700000px;}
.x8_c00421{left:127.650000px;}
.x7_c00421{left:146.850000px;}
.x3_c00421{left:150.450000px;}
.x12_c00421{left:236.251740px;}
.xc_c00421{left:277.050000px;}
.xf_c00421{left:294.000000px;}
.x11_c00421{left:295.200000px;}
.x10_c00421{left:296.250000px;}
.xd_c00421{left:297.300000px;}
.xe_c00421{left:298.650000px;}
@media print{
.v0_c00421{vertical-align:0.000000pt;}
.v1_c00421{vertical-align:76.800000pt;}
.ls7_c00421{letter-spacing:0.000000pt;}
.ls6_c00421{letter-spacing:1.066667pt;}
.ls1_c00421{letter-spacing:2.666667pt;}
.ls5_c00421{letter-spacing:4.800000pt;}
.ls2_c00421{letter-spacing:5.186667pt;}
.ls3_c00421{letter-spacing:5.333333pt;}
.ls0_c00421{letter-spacing:9.866667pt;}
.ls4_c00421{letter-spacing:17.029333pt;}
.ws4_c00421{word-spacing:-31.373333pt;}
.ws1_c00421{word-spacing:-18.080000pt;}
.ws5_c00421{word-spacing:-16.722667pt;}
.ws2_c00421{word-spacing:-16.053333pt;}
.ws3_c00421{word-spacing:-16.000000pt;}
.ws0_c00421{word-spacing:-12.586667pt;}
.ws6_c00421{word-spacing:0.000000pt;}
._24_c00421{margin-left:-19.632000pt;}
._18_c00421{margin-left:-14.186667pt;}
._1a_c00421{margin-left:-10.040000pt;}
._19_c00421{margin-left:-9.021333pt;}
._15_c00421{margin-left:-7.138667pt;}
._14_c00421{margin-left:-5.760000pt;}
._10_c00421{margin-left:-4.693333pt;}
._11_c00421{margin-left:-3.520000pt;}
._d_c00421{margin-left:-2.560000pt;}
._f_c00421{margin-left:-1.120000pt;}
._9_c00421{width:1.333333pt;}
._8_c00421{width:2.346667pt;}
._7_c00421{width:3.413333pt;}
._0_c00421{width:4.536000pt;}
._e_c00421{width:6.080000pt;}
._12_c00421{width:7.626667pt;}
._c_c00421{width:9.333333pt;}
._17_c00421{width:10.288000pt;}
._2_c00421{width:11.480000pt;}
._3_c00421{width:13.048000pt;}
._4_c00421{width:14.280000pt;}
._1c_c00421{width:16.056000pt;}
._6_c00421{width:17.640000pt;}
._5_c00421{width:19.712000pt;}
._b_c00421{width:20.853333pt;}
._21_c00421{width:21.973333pt;}
._a_c00421{width:23.146667pt;}
._25_c00421{width:24.122667pt;}
._13_c00421{width:25.053333pt;}
._29_c00421{width:26.154667pt;}
._23_c00421{width:27.517333pt;}
._1e_c00421{width:28.920000pt;}
._1f_c00421{width:29.866667pt;}
._1d_c00421{width:33.426667pt;}
._20_c00421{width:34.400000pt;}
._27_c00421{width:42.397333pt;}
._28_c00421{width:43.573333pt;}
._22_c00421{width:45.594667pt;}
._16_c00421{width:105.485333pt;}
._1b_c00421{width:111.093333pt;}
._26_c00421{width:153.546667pt;}
._1_c00421{width:175.000000pt;}
.fs4_c00421{font-size:40.000000pt;}
.fs8_c00421{font-size:42.666667pt;}
.fs3_c00421{font-size:48.000000pt;}
.fs7_c00421{font-size:50.666667pt;}
.fs1_c00421{font-size:53.333333pt;}
.fs0_c00421{font-size:56.000000pt;}
.fs2_c00421{font-size:61.333333pt;}
.fs6_c00421{font-size:69.333333pt;}
.fs5_c00421{font-size:189.333333pt;}
.y0_c00421{bottom:0.000000pt;}
.y52_c00421{bottom:2.760000pt;}
.y51_c00421{bottom:6.425217pt;}
.y26_c00421{bottom:50.106667pt;}
.y50_c00421{bottom:53.706667pt;}
.y25_c00421{bottom:66.906667pt;}
.y4f_c00421{bottom:69.040000pt;}
.y24_c00421{bottom:83.040000pt;}
.y4e_c00421{bottom:85.706667pt;}
.y23_c00421{bottom:99.040000pt;}
.y4d_c00421{bottom:102.506667pt;}
.y22_c00421{bottom:115.440000pt;}
.y4c_c00421{bottom:118.106667pt;}
.y21_c00421{bottom:132.240000pt;}
.y4b_c00421{bottom:134.106667pt;}
.y20_c00421{bottom:147.840000pt;}
.y4a_c00421{bottom:150.240000pt;}
.y1f_c00421{bottom:163.840000pt;}
.y49_c00421{bottom:166.773333pt;}
.y1e_c00421{bottom:180.240000pt;}
.y48_c00421{bottom:182.640000pt;}
.y1d_c00421{bottom:196.106667pt;}
.y47_c00421{bottom:198.906667pt;}
.y1c_c00421{bottom:212.640000pt;}
.y46_c00421{bottom:215.306667pt;}
.y1b_c00421{bottom:228.906667pt;}
.y45_c00421{bottom:231.840000pt;}
.y1a_c00421{bottom:244.773333pt;}
.y44_c00421{bottom:247.706667pt;}
.y19_c00421{bottom:260.906667pt;}
.y43_c00421{bottom:262.773333pt;}
.y18_c00421{bottom:275.973333pt;}
.y42_c00421{bottom:278.906667pt;}
.y17_c00421{bottom:292.240000pt;}
.y41_c00421{bottom:295.440000pt;}
.y16_c00421{bottom:308.640000pt;}
.y40_c00421{bottom:311.306667pt;}
.y15_c00421{bottom:323.973333pt;}
.y3f_c00421{bottom:327.306667pt;}
.y14_c00421{bottom:340.240000pt;}
.y3e_c00421{bottom:342.906667pt;}
.y13_c00421{bottom:356.373333pt;}
.y3d_c00421{bottom:359.440000pt;}
.y12_c00421{bottom:372.640000pt;}
.y3c_c00421{bottom:375.840000pt;}
.y11_c00421{bottom:389.040000pt;}
.y3b_c00421{bottom:391.840000pt;}
.y10_c00421{bottom:404.373333pt;}
.y3a_c00421{bottom:407.706667pt;}
.yf_c00421{bottom:420.240000pt;}
.y39_c00421{bottom:424.106667pt;}
.ye_c00421{bottom:437.040000pt;}
.y38_c00421{bottom:439.840000pt;}
.yc_c00421{bottom:450.506667pt;}
.yd_c00421{bottom:453.306667pt;}
.y37_c00421{bottom:456.506667pt;}
.y36_c00421{bottom:472.106667pt;}
.y35_c00421{bottom:488.106667pt;}
.yb_c00421{bottom:502.106667pt;}
.y34_c00421{bottom:504.106667pt;}
.ya_c00421{bottom:518.906667pt;}
.y33_c00421{bottom:520.240000pt;}
.y9_c00421{bottom:534.506667pt;}
.y32_c00421{bottom:536.373333pt;}
.y8_c00421{bottom:550.240000pt;}
.y31_c00421{bottom:552.906667pt;}
.y30_c00421{bottom:569.040000pt;}
.y7_c00421{bottom:581.706667pt;}
.y2f_c00421{bottom:585.306667pt;}
.y2e_c00421{bottom:601.440000pt;}
.y2d_c00421{bottom:617.973333pt;}
.y6_c00421{bottom:632.106667pt;}
.y2c_c00421{bottom:634.506667pt;}
.y5_c00421{bottom:648.640000pt;}
.y2b_c00421{bottom:649.840000pt;}
.y4_c00421{bottom:665.706667pt;}
.y2a_c00421{bottom:666.240000pt;}
.y3_c00421{bottom:681.306667pt;}
.y29_c00421{bottom:682.240000pt;}
.y2_c00421{bottom:697.173333pt;}
.y28_c00421{bottom:698.906667pt;}
.y1_c00421{bottom:714.240000pt;}
.y27_c00421{bottom:715.840000pt;}
.hb_c00421{height:11.733399pt;}
.hc_c00421{height:38.937500pt;}
.h5_c00421{height:47.109375pt;}
.h3_c00421{height:55.893333pt;}
.ha_c00421{height:56.426667pt;}
.h8_c00421{height:56.906667pt;}
.h9_c00421{height:57.813333pt;}
.h2_c00421{height:58.688000pt;}
.h4_c00421{height:64.277333pt;}
.h7_c00421{height:72.661333pt;}
.h6_c00421{height:198.421333pt;}
.h0_c00421{height:755.733333pt;}
.h1_c00421{height:756.000000pt;}
.w2_c00421{width:93.222667pt;}
.w0_c00421{width:505.666667pt;}
.w1_c00421{width:506.000000pt;}
.x0_c00421{left:0.000000pt;}
.x9_c00421{left:13.200000pt;}
.xb_c00421{left:65.733333pt;}
.xa_c00421{left:66.666667pt;}
.x2_c00421{left:67.733333pt;}
.x1_c00421{left:68.666667pt;}
.x4_c00421{left:70.533333pt;}
.x5_c00421{left:76.800000pt;}
.x6_c00421{left:95.733333pt;}
.x8_c00421{left:113.466667pt;}
.x7_c00421{left:130.533333pt;}
.x3_c00421{left:133.733333pt;}
.x12_c00421{left:210.001546pt;}
.xc_c00421{left:246.266667pt;}
.xf_c00421{left:261.333333pt;}
.x11_c00421{left:262.400000pt;}
.x10_c00421{left:263.333333pt;}
.xd_c00421{left:264.266667pt;}
.xe_c00421{left:265.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_c00422 {
    display:none;
  }
  .loading-indicator_c00422.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00422 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00422 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00422" -> "#page-container .classname_c00422")
 */
.pf_c00422 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00422 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00422.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00422 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00422 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00422 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00422 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00422 {overflow:visible;}
  }
}
.c_c00422 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00422 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00422:after { /* webkit #35443 */
  content: '';
}
.t_c00422:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00422 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00422 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00422 { /* info for Javascript */
  display:none;
}
.l_c00422 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00422 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00422 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00422:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00422{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00422;src:url('chunks/assets/font_8bb84bfbc892da793590bb8d.woff2')format("woff");}.ff1_c00422{font-family:ff1_c00422;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00422;src:url('chunks/assets/font_43a10123e5e155a73e7c6bd3.woff2')format("woff");}.ff2_c00422{font-family:ff2_c00422;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00422;src:url('chunks/assets/font_04a910e1c4711bbd662bdf6f.woff2')format("woff");}.ff3_c00422{font-family:ff3_c00422;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00422;src:url('chunks/assets/font_25ceab15daae8ee5056ed7db.woff2')format("woff");}.ff4_c00422{font-family:ff4_c00422;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00422;src:url('chunks/assets/font_44534aa2bfb977eab9b8d53b.woff2')format("woff");}.ff5_c00422{font-family:ff5_c00422;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00422;src:url('chunks/assets/font_3eab0ca007dd4865911ce39a.woff2')format("woff");}.ff6_c00422{font-family:ff6_c00422;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00422;src:url('chunks/assets/font_f771ea89b04afa64fc8a6cbd.woff2')format("woff");}.ff7_c00422{font-family:ff7_c00422;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00422;src:url('chunks/assets/font_5d4f6ff92f77b48dff6d98dd.woff2')format("woff");}.ff8_c00422{font-family:ff8_c00422;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00422;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff9_c00422{font-family:ff9_c00422;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00422{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00422{vertical-align:0.000000px;}
.lsc_c00422{letter-spacing:-12.000000px;}
.ls9_c00422{letter-spacing:0.000000px;}
.ls1_c00422{letter-spacing:3.000000px;}
.ls5_c00422{letter-spacing:3.300000px;}
.lsa_c00422{letter-spacing:6.000000px;}
.ls3_c00422{letter-spacing:7.260000px;}
.ls0_c00422{letter-spacing:7.311000px;}
.lsb_c00422{letter-spacing:9.000000px;}
.ls6_c00422{letter-spacing:14.760000px;}
.ls2_c00422{letter-spacing:29.460000px;}
.ls8_c00422{letter-spacing:29.550000px;}
.ls4_c00422{letter-spacing:45.060000px;}
.ls7_c00422{letter-spacing:265.860000px;}
.sc__c00422{text-shadow:none;}
.sc0_c00422{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00422{-webkit-text-stroke:0px transparent;}
.sc0_c00422{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00422{word-spacing:-18.813000px;}
.ws2_c00422{word-spacing:-18.060000px;}
.ws3_c00422{word-spacing:-18.000000px;}
.ws5_c00422{word-spacing:-15.000000px;}
.ws1_c00422{word-spacing:-14.160000px;}
.ws0_c00422{word-spacing:-0.984000px;}
.ws7_c00422{word-spacing:0.000000px;}
.ws6_c00422{word-spacing:19.560000px;}
._23_c00422{margin-left:-14.712000px;}
._10_c00422{margin-left:-13.680000px;}
._11_c00422{margin-left:-12.540000px;}
._19_c00422{margin-left:-11.025000px;}
._27_c00422{margin-left:-10.017000px;}
._15_c00422{margin-left:-9.000000px;}
._14_c00422{margin-left:-7.800000px;}
._7_c00422{margin-left:-6.360000px;}
._5_c00422{margin-left:-4.380000px;}
._4_c00422{margin-left:-2.700000px;}
._9_c00422{margin-left:-1.620000px;}
._2_c00422{width:1.800000px;}
._3_c00422{width:3.000000px;}
._a_c00422{width:4.848000px;}
._d_c00422{width:6.000000px;}
._17_c00422{width:7.176000px;}
._c_c00422{width:8.880000px;}
._24_c00422{width:10.020000px;}
._8_c00422{width:11.040000px;}
._1c_c00422{width:12.090000px;}
._6_c00422{width:13.380000px;}
._16_c00422{width:15.240000px;}
._1d_c00422{width:16.587000px;}
._26_c00422{width:17.820000px;}
._1_c00422{width:19.152000px;}
._e_c00422{width:20.808000px;}
._25_c00422{width:22.116000px;}
._12_c00422{width:23.940000px;}
._f_c00422{width:25.680000px;}
._1b_c00422{width:26.793000px;}
._b_c00422{width:28.680000px;}
._21_c00422{width:30.162000px;}
._20_c00422{width:32.841000px;}
._1f_c00422{width:33.891000px;}
._22_c00422{width:35.154000px;}
._0_c00422{width:38.040000px;}
._1e_c00422{width:40.374000px;}
._1a_c00422{width:43.911000px;}
._18_c00422{width:47.880000px;}
._13_c00422{width:50.880000px;}
._28_c00422{width:106.050000px;}
.fc2_c00422{color:transparent;}
.fc1_c00422{color:rgb(128,128,128);}
.fc0_c00422{color:rgb(0,0,0);}
.fs4_c00422{font-size:48.000000px;}
.fs3_c00422{font-size:57.000000px;}
.fs2_c00422{font-size:60.000000px;}
.fs1_c00422{font-size:63.000000px;}
.fs0_c00422{font-size:69.000000px;}
.y0_c00422{bottom:0.000000px;}
.y4e_c00422{bottom:3.105000px;}
.y4d_c00422{bottom:7.228355px;}
.y4c_c00422{bottom:37.335000px;}
.y2a_c00422{bottom:53.985000px;}
.y4b_c00422{bottom:55.635000px;}
.y29_c00422{bottom:74.235000px;}
.y28_c00422{bottom:91.785000px;}
.y4a_c00422{bottom:92.085000px;}
.y27_c00422{bottom:109.935000px;}
.y49_c00422{bottom:110.235000px;}
.y26_c00422{bottom:127.935000px;}
.y48_c00422{bottom:146.085000px;}
.y25_c00422{bottom:146.385000px;}
.y47_c00422{bottom:163.935000px;}
.y24_c00422{bottom:164.235000px;}
.y23_c00422{bottom:182.235000px;}
.y46_c00422{bottom:182.535000px;}
.y22_c00422{bottom:200.385000px;}
.y21_c00422{bottom:218.385000px;}
.y20_c00422{bottom:236.835000px;}
.y45_c00422{bottom:237.285000px;}
.y44_c00422{bottom:254.835000px;}
.y1f_c00422{bottom:255.135000px;}
.y1e_c00422{bottom:272.985000px;}
.y43_c00422{bottom:291.135000px;}
.y1d_c00422{bottom:291.285000px;}
.y42_c00422{bottom:308.835000px;}
.y1c_c00422{bottom:309.435000px;}
.y41_c00422{bottom:327.285000px;}
.y1b_c00422{bottom:327.585000px;}
.y40_c00422{bottom:345.585000px;}
.y1a_c00422{bottom:346.185000px;}
.y3f_c00422{bottom:363.435000px;}
.y19_c00422{bottom:364.035000px;}
.y3e_c00422{bottom:381.735000px;}
.y18_c00422{bottom:382.035000px;}
.y3d_c00422{bottom:399.885000px;}
.y17_c00422{bottom:400.185000px;}
.y3c_c00422{bottom:417.735000px;}
.y16_c00422{bottom:418.185000px;}
.y3b_c00422{bottom:435.585000px;}
.y15_c00422{bottom:436.635000px;}
.y3a_c00422{bottom:453.885000px;}
.y14_c00422{bottom:454.635000px;}
.y39_c00422{bottom:471.735000px;}
.y13_c00422{bottom:472.785000px;}
.y38_c00422{bottom:489.735000px;}
.y12_c00422{bottom:491.385000px;}
.y37_c00422{bottom:508.485000px;}
.y11_c00422{bottom:508.635000px;}
.y10_c00422{bottom:526.185000px;}
.yf_c00422{bottom:543.735000px;}
.ye_c00422{bottom:561.885000px;}
.y36_c00422{bottom:562.485000px;}
.yd_c00422{bottom:580.035000px;}
.y35_c00422{bottom:581.085000px;}
.yc_c00422{bottom:598.035000px;}
.y34_c00422{bottom:598.635000px;}
.yb_c00422{bottom:616.485000px;}
.y33_c00422{bottom:617.235000px;}
.ya_c00422{bottom:634.785000px;}
.y32_c00422{bottom:635.535000px;}
.y9_c00422{bottom:653.085000px;}
.y31_c00422{bottom:653.385000px;}
.y8_c00422{bottom:670.935000px;}
.y30_c00422{bottom:671.835000px;}
.y7_c00422{bottom:689.535000px;}
.y2f_c00422{bottom:689.835000px;}
.y2e_c00422{bottom:707.685000px;}
.y6_c00422{bottom:708.285000px;}
.y5_c00422{bottom:726.285000px;}
.y2d_c00422{bottom:726.585000px;}
.y4_c00422{bottom:744.735000px;}
.y2c_c00422{bottom:744.885000px;}
.y3_c00422{bottom:762.735000px;}
.y2b_c00422{bottom:781.185000px;}
.y2_c00422{bottom:781.335000px;}
.y1_c00422{bottom:801.435000px;}
.h6_c00422{height:13.200074px;}
.h7_c00422{height:43.804688px;}
.h3_c00422{height:62.880000px;}
.h4_c00422{height:64.020000px;}
.h5_c00422{height:66.024000px;}
.h2_c00422{height:72.312000px;}
.h0_c00422{height:849.675000px;}
.h1_c00422{height:849.750000px;}
.w2_c00422{width:104.875500px;}
.w1_c00422{width:579.750000px;}
.w0_c00422{width:579.975000px;}
.x0_c00422{left:0.000000px;}
.x8_c00422{left:26.400000px;}
.x9_c00422{left:69.150000px;}
.x2_c00422{left:80.100000px;}
.x3_c00422{left:82.350000px;}
.x4_c00422{left:84.450000px;}
.x5_c00422{left:85.500000px;}
.x7_c00422{left:86.700000px;}
.xa_c00422{left:88.500000px;}
.xb_c00422{left:89.550000px;}
.xc_c00422{left:91.200000px;}
.xd_c00422{left:92.850000px;}
.xe_c00422{left:93.900000px;}
.xf_c00422{left:95.250000px;}
.x6_c00422{left:101.250000px;}
.x1_c00422{left:210.150000px;}
.x18_c00422{left:241.801758px;}
.x10_c00422{left:304.200000px;}
.x11_c00422{left:305.550000px;}
.x12_c00422{left:306.750000px;}
.x14_c00422{left:307.800000px;}
.x13_c00422{left:309.600000px;}
.x15_c00422{left:310.950000px;}
.x16_c00422{left:312.300000px;}
.x17_c00422{left:487.350000px;}
@media print{
.v0_c00422{vertical-align:0.000000pt;}
.lsc_c00422{letter-spacing:-10.666667pt;}
.ls9_c00422{letter-spacing:0.000000pt;}
.ls1_c00422{letter-spacing:2.666667pt;}
.ls5_c00422{letter-spacing:2.933333pt;}
.lsa_c00422{letter-spacing:5.333333pt;}
.ls3_c00422{letter-spacing:6.453333pt;}
.ls0_c00422{letter-spacing:6.498667pt;}
.lsb_c00422{letter-spacing:8.000000pt;}
.ls6_c00422{letter-spacing:13.120000pt;}
.ls2_c00422{letter-spacing:26.186667pt;}
.ls8_c00422{letter-spacing:26.266667pt;}
.ls4_c00422{letter-spacing:40.053333pt;}
.ls7_c00422{letter-spacing:236.320000pt;}
.ws4_c00422{word-spacing:-16.722667pt;}
.ws2_c00422{word-spacing:-16.053333pt;}
.ws3_c00422{word-spacing:-16.000000pt;}
.ws5_c00422{word-spacing:-13.333333pt;}
.ws1_c00422{word-spacing:-12.586667pt;}
.ws0_c00422{word-spacing:-0.874667pt;}
.ws7_c00422{word-spacing:0.000000pt;}
.ws6_c00422{word-spacing:17.386667pt;}
._23_c00422{margin-left:-13.077333pt;}
._10_c00422{margin-left:-12.160000pt;}
._11_c00422{margin-left:-11.146667pt;}
._19_c00422{margin-left:-9.800000pt;}
._27_c00422{margin-left:-8.904000pt;}
._15_c00422{margin-left:-8.000000pt;}
._14_c00422{margin-left:-6.933333pt;}
._7_c00422{margin-left:-5.653333pt;}
._5_c00422{margin-left:-3.893333pt;}
._4_c00422{margin-left:-2.400000pt;}
._9_c00422{margin-left:-1.440000pt;}
._2_c00422{width:1.600000pt;}
._3_c00422{width:2.666667pt;}
._a_c00422{width:4.309333pt;}
._d_c00422{width:5.333333pt;}
._17_c00422{width:6.378667pt;}
._c_c00422{width:7.893333pt;}
._24_c00422{width:8.906667pt;}
._8_c00422{width:9.813333pt;}
._1c_c00422{width:10.746667pt;}
._6_c00422{width:11.893333pt;}
._16_c00422{width:13.546667pt;}
._1d_c00422{width:14.744000pt;}
._26_c00422{width:15.840000pt;}
._1_c00422{width:17.024000pt;}
._e_c00422{width:18.496000pt;}
._25_c00422{width:19.658667pt;}
._12_c00422{width:21.280000pt;}
._f_c00422{width:22.826667pt;}
._1b_c00422{width:23.816000pt;}
._b_c00422{width:25.493333pt;}
._21_c00422{width:26.810667pt;}
._20_c00422{width:29.192000pt;}
._1f_c00422{width:30.125333pt;}
._22_c00422{width:31.248000pt;}
._0_c00422{width:33.813333pt;}
._1e_c00422{width:35.888000pt;}
._1a_c00422{width:39.032000pt;}
._18_c00422{width:42.560000pt;}
._13_c00422{width:45.226667pt;}
._28_c00422{width:94.266667pt;}
.fs4_c00422{font-size:42.666667pt;}
.fs3_c00422{font-size:50.666667pt;}
.fs2_c00422{font-size:53.333333pt;}
.fs1_c00422{font-size:56.000000pt;}
.fs0_c00422{font-size:61.333333pt;}
.y0_c00422{bottom:0.000000pt;}
.y4e_c00422{bottom:2.760000pt;}
.y4d_c00422{bottom:6.425204pt;}
.y4c_c00422{bottom:33.186667pt;}
.y2a_c00422{bottom:47.986667pt;}
.y4b_c00422{bottom:49.453333pt;}
.y29_c00422{bottom:65.986667pt;}
.y28_c00422{bottom:81.586667pt;}
.y4a_c00422{bottom:81.853333pt;}
.y27_c00422{bottom:97.720000pt;}
.y49_c00422{bottom:97.986667pt;}
.y26_c00422{bottom:113.720000pt;}
.y48_c00422{bottom:129.853333pt;}
.y25_c00422{bottom:130.120000pt;}
.y47_c00422{bottom:145.720000pt;}
.y24_c00422{bottom:145.986667pt;}
.y23_c00422{bottom:161.986667pt;}
.y46_c00422{bottom:162.253333pt;}
.y22_c00422{bottom:178.120000pt;}
.y21_c00422{bottom:194.120000pt;}
.y20_c00422{bottom:210.520000pt;}
.y45_c00422{bottom:210.920000pt;}
.y44_c00422{bottom:226.520000pt;}
.y1f_c00422{bottom:226.786667pt;}
.y1e_c00422{bottom:242.653333pt;}
.y43_c00422{bottom:258.786667pt;}
.y1d_c00422{bottom:258.920000pt;}
.y42_c00422{bottom:274.520000pt;}
.y1c_c00422{bottom:275.053333pt;}
.y41_c00422{bottom:290.920000pt;}
.y1b_c00422{bottom:291.186667pt;}
.y40_c00422{bottom:307.186667pt;}
.y1a_c00422{bottom:307.720000pt;}
.y3f_c00422{bottom:323.053333pt;}
.y19_c00422{bottom:323.586667pt;}
.y3e_c00422{bottom:339.320000pt;}
.y18_c00422{bottom:339.586667pt;}
.y3d_c00422{bottom:355.453333pt;}
.y17_c00422{bottom:355.720000pt;}
.y3c_c00422{bottom:371.320000pt;}
.y16_c00422{bottom:371.720000pt;}
.y3b_c00422{bottom:387.186667pt;}
.y15_c00422{bottom:388.120000pt;}
.y3a_c00422{bottom:403.453333pt;}
.y14_c00422{bottom:404.120000pt;}
.y39_c00422{bottom:419.320000pt;}
.y13_c00422{bottom:420.253333pt;}
.y38_c00422{bottom:435.320000pt;}
.y12_c00422{bottom:436.786667pt;}
.y37_c00422{bottom:451.986667pt;}
.y11_c00422{bottom:452.120000pt;}
.y10_c00422{bottom:467.720000pt;}
.yf_c00422{bottom:483.320000pt;}
.ye_c00422{bottom:499.453333pt;}
.y36_c00422{bottom:499.986667pt;}
.yd_c00422{bottom:515.586667pt;}
.y35_c00422{bottom:516.520000pt;}
.yc_c00422{bottom:531.586667pt;}
.y34_c00422{bottom:532.120000pt;}
.yb_c00422{bottom:547.986667pt;}
.y33_c00422{bottom:548.653333pt;}
.ya_c00422{bottom:564.253333pt;}
.y32_c00422{bottom:564.920000pt;}
.y9_c00422{bottom:580.520000pt;}
.y31_c00422{bottom:580.786667pt;}
.y8_c00422{bottom:596.386667pt;}
.y30_c00422{bottom:597.186667pt;}
.y7_c00422{bottom:612.920000pt;}
.y2f_c00422{bottom:613.186667pt;}
.y2e_c00422{bottom:629.053333pt;}
.y6_c00422{bottom:629.586667pt;}
.y5_c00422{bottom:645.586667pt;}
.y2d_c00422{bottom:645.853333pt;}
.y4_c00422{bottom:661.986667pt;}
.y2c_c00422{bottom:662.120000pt;}
.y3_c00422{bottom:677.986667pt;}
.y2b_c00422{bottom:694.386667pt;}
.y2_c00422{bottom:694.520000pt;}
.y1_c00422{bottom:712.386667pt;}
.h6_c00422{height:11.733399pt;}
.h7_c00422{height:38.937500pt;}
.h3_c00422{height:55.893333pt;}
.h4_c00422{height:56.906667pt;}
.h5_c00422{height:58.688000pt;}
.h2_c00422{height:64.277333pt;}
.h0_c00422{height:755.266667pt;}
.h1_c00422{height:755.333333pt;}
.w2_c00422{width:93.222667pt;}
.w1_c00422{width:515.333333pt;}
.w0_c00422{width:515.533333pt;}
.x0_c00422{left:0.000000pt;}
.x8_c00422{left:23.466667pt;}
.x9_c00422{left:61.466667pt;}
.x2_c00422{left:71.200000pt;}
.x3_c00422{left:73.200000pt;}
.x4_c00422{left:75.066667pt;}
.x5_c00422{left:76.000000pt;}
.x7_c00422{left:77.066667pt;}
.xa_c00422{left:78.666667pt;}
.xb_c00422{left:79.600000pt;}
.xc_c00422{left:81.066667pt;}
.xd_c00422{left:82.533333pt;}
.xe_c00422{left:83.466667pt;}
.xf_c00422{left:84.666667pt;}
.x6_c00422{left:90.000000pt;}
.x1_c00422{left:186.800000pt;}
.x18_c00422{left:214.934896pt;}
.x10_c00422{left:270.400000pt;}
.x11_c00422{left:271.600000pt;}
.x12_c00422{left:272.666667pt;}
.x14_c00422{left:273.600000pt;}
.x13_c00422{left:275.200000pt;}
.x15_c00422{left:276.400000pt;}
.x16_c00422{left:277.600000pt;}
.x17_c00422{left:433.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_016e17c0c6f0b01b588c66ae.woff2')format("woff");}.ff1_c00423{font-family:ff1_c00423;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00423;src:url('chunks/assets/font_0c750210e138c0cd87ca0214.woff2')format("woff");}.ff2_c00423{font-family:ff2_c00423;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00423;src:url('chunks/assets/font_36503dcc69d538fb068bc61b.woff2')format("woff");}.ff3_c00423{font-family:ff3_c00423;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00423;src:url('chunks/assets/font_0ce391de997f24f9f9dd37f4.woff2')format("woff");}.ff4_c00423{font-family:ff4_c00423;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00423;src:url('chunks/assets/font_dc2837d0c4b88d6477d7594a.woff2')format("woff");}.ff5_c00423{font-family:ff5_c00423;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00423;src:url('chunks/assets/font_cbeb8909e6e74afb2e4bdb67.woff2')format("woff");}.ff6_c00423{font-family:ff6_c00423;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00423;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff7_c00423{font-family:ff7_c00423;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00423{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00423{vertical-align:0.000000px;}
.v1_c00423{vertical-align:74.400000px;}
.ls5_c00423{letter-spacing:0.000000px;}
.ls1_c00423{letter-spacing:1.440000px;}
.ls2_c00423{letter-spacing:3.000000px;}
.ls6_c00423{letter-spacing:6.000000px;}
.ls0_c00423{letter-spacing:10.200000px;}
.ls3_c00423{letter-spacing:12.405000px;}
.ls4_c00423{letter-spacing:20.094000px;}
.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;}
}
.ws5_c00423{word-spacing:-50.022000px;}
.ws0_c00423{word-spacing:-30.540000px;}
.ws2_c00423{word-spacing:-20.307000px;}
.ws3_c00423{word-spacing:-18.060000px;}
.ws1_c00423{word-spacing:-18.000000px;}
.ws4_c00423{word-spacing:-15.000000px;}
.ws6_c00423{word-spacing:0.000000px;}
._18_c00423{margin-left:-17.160000px;}
._1b_c00423{margin-left:-14.040000px;}
._1d_c00423{margin-left:-12.918000px;}
._1c_c00423{margin-left:-10.131000px;}
._16_c00423{margin-left:-8.880000px;}
._1e_c00423{margin-left:-7.860000px;}
._f_c00423{margin-left:-6.780000px;}
._17_c00423{margin-left:-4.740000px;}
._5_c00423{margin-left:-2.820000px;}
._2_c00423{margin-left:-1.800000px;}
._0_c00423{width:1.740000px;}
._4_c00423{width:3.060000px;}
._3_c00423{width:4.560000px;}
._11_c00423{width:5.820000px;}
._b_c00423{width:7.260000px;}
._6_c00423{width:9.240000px;}
._10_c00423{width:10.260000px;}
._1_c00423{width:11.940000px;}
._12_c00423{width:12.966000px;}
._c_c00423{width:15.060000px;}
._14_c00423{width:16.740000px;}
._21_c00423{width:18.720000px;}
._7_c00423{width:19.740000px;}
._1f_c00423{width:20.865000px;}
._d_c00423{width:22.140000px;}
._e_c00423{width:23.160000px;}
._a_c00423{width:24.600000px;}
._13_c00423{width:26.220000px;}
._1a_c00423{width:29.280000px;}
._20_c00423{width:31.548000px;}
._19_c00423{width:33.540000px;}
._8_c00423{width:38.760000px;}
._9_c00423{width:43.860000px;}
._22_c00423{width:48.900000px;}
._24_c00423{width:68.604000px;}
._25_c00423{width:72.258000px;}
._26_c00423{width:74.193000px;}
._23_c00423{width:93.093000px;}
._15_c00423{width:95.340000px;}
.fc2_c00423{color:transparent;}
.fc1_c00423{color:rgb(128,128,128);}
.fc0_c00423{color:rgb(0,0,0);}
.fs3_c00423{font-size:45.000000px;}
.fs5_c00423{font-size:48.000000px;}
.fs2_c00423{font-size:57.000000px;}
.fs0_c00423{font-size:60.000000px;}
.fs1_c00423{font-size:63.000000px;}
.fs4_c00423{font-size:162.000000px;}
.y0_c00423{bottom:0.000000px;}
.y45_c00423{bottom:3.105000px;}
.y44_c00423{bottom:7.228369px;}
.y43_c00423{bottom:39.420000px;}
.y42_c00423{bottom:57.720000px;}
.y41_c00423{bottom:76.620000px;}
.y40_c00423{bottom:94.770000px;}
.y3f_c00423{bottom:112.770000px;}
.y26_c00423{bottom:131.220000px;}
.y3e_c00423{bottom:148.770000px;}
.y25_c00423{bottom:149.220000px;}
.y24_c00423{bottom:167.370000px;}
.y23_c00423{bottom:185.520000px;}
.y22_c00423{bottom:203.820000px;}
.y21_c00423{bottom:221.970000px;}
.y3d_c00423{bottom:222.120000px;}
.y20_c00423{bottom:239.970000px;}
.y3c_c00423{bottom:258.120000px;}
.y1f_c00423{bottom:258.570000px;}
.y1e_c00423{bottom:276.720000px;}
.y1d_c00423{bottom:293.970000px;}
.y3b_c00423{bottom:311.820000px;}
.y1c_c00423{bottom:312.120000px;}
.y1b_c00423{bottom:330.120000px;}
.y39_c00423{bottom:347.520000px;}
.y1a_c00423{bottom:347.970000px;}
.y3a_c00423{bottom:348.570000px;}
.y19_c00423{bottom:366.870000px;}
.y18_c00423{bottom:385.020000px;}
.y17_c00423{bottom:402.870000px;}
.y38_c00423{bottom:403.020000px;}
.y37_c00423{bottom:420.870000px;}
.y16_c00423{bottom:421.170000px;}
.y36_c00423{bottom:439.020000px;}
.y15_c00423{bottom:439.320000px;}
.y35_c00423{bottom:456.870000px;}
.y14_c00423{bottom:457.620000px;}
.y34_c00423{bottom:474.870000px;}
.y13_c00423{bottom:475.470000px;}
.y12_c00423{bottom:493.770000px;}
.y33_c00423{bottom:509.520000px;}
.y11_c00423{bottom:512.220000px;}
.y10_c00423{bottom:529.920000px;}
.y32_c00423{bottom:547.320000px;}
.yf_c00423{bottom:548.070000px;}
.y31_c00423{bottom:565.920000px;}
.ye_c00423{bottom:566.370000px;}
.y30_c00423{bottom:583.770000px;}
.yd_c00423{bottom:584.220000px;}
.y2f_c00423{bottom:601.770000px;}
.yc_c00423{bottom:602.370000px;}
.y2e_c00423{bottom:619.920000px;}
.yb_c00423{bottom:620.370000px;}
.y2d_c00423{bottom:638.220000px;}
.ya_c00423{bottom:638.820000px;}
.y2c_c00423{bottom:656.370000px;}
.y9_c00423{bottom:656.820000px;}
.y2b_c00423{bottom:674.970000px;}
.y8_c00423{bottom:675.270000px;}
.y2a_c00423{bottom:692.820000px;}
.y7_c00423{bottom:693.120000px;}
.y29_c00423{bottom:710.670000px;}
.y6_c00423{bottom:711.720000px;}
.y28_c00423{bottom:729.270000px;}
.y5_c00423{bottom:729.570000px;}
.y4_c00423{bottom:747.270000px;}
.y3_c00423{bottom:765.720000px;}
.y2_c00423{bottom:783.570000px;}
.y27_c00423{bottom:783.720000px;}
.y1_c00423{bottom:805.170000px;}
.h6_c00423{height:13.200073px;}
.h7_c00423{height:43.804688px;}
.h3_c00423{height:62.880000px;}
.h2_c00423{height:64.020000px;}
.h4_c00423{height:66.024000px;}
.h5_c00423{height:169.776000px;}
.h0_c00423{height:850.200000px;}
.h1_c00423{height:850.500000px;}
.w2_c00423{width:104.875500px;}
.w0_c00423{width:568.875000px;}
.w1_c00423{width:569.250000px;}
.x0_c00423{left:0.000000px;}
.x16_c00423{left:76.200000px;}
.x7_c00423{left:77.550000px;}
.x6_c00423{left:78.750000px;}
.x5_c00423{left:80.550000px;}
.x4_c00423{left:81.750000px;}
.x3_c00423{left:82.800000px;}
.x2_c00423{left:84.000000px;}
.x1_c00423{left:87.000000px;}
.x18_c00423{left:236.251740px;}
.x15_c00423{left:295.350000px;}
.x14_c00423{left:296.550000px;}
.xf_c00423{left:298.050000px;}
.xd_c00423{left:300.300000px;}
.xc_c00423{left:301.650000px;}
.x8_c00423{left:303.000000px;}
.xb_c00423{left:304.050000px;}
.xa_c00423{left:305.100000px;}
.x9_c00423{left:306.450000px;}
.x10_c00423{left:310.500000px;}
.x11_c00423{left:327.750000px;}
.x13_c00423{left:330.000000px;}
.x12_c00423{left:355.350000px;}
.xe_c00423{left:370.950000px;}
.x17_c00423{left:466.350000px;}
@media print{
.v0_c00423{vertical-align:0.000000pt;}
.v1_c00423{vertical-align:66.133333pt;}
.ls5_c00423{letter-spacing:0.000000pt;}
.ls1_c00423{letter-spacing:1.280000pt;}
.ls2_c00423{letter-spacing:2.666667pt;}
.ls6_c00423{letter-spacing:5.333333pt;}
.ls0_c00423{letter-spacing:9.066667pt;}
.ls3_c00423{letter-spacing:11.026667pt;}
.ls4_c00423{letter-spacing:17.861333pt;}
.ws5_c00423{word-spacing:-44.464000pt;}
.ws0_c00423{word-spacing:-27.146667pt;}
.ws2_c00423{word-spacing:-18.050667pt;}
.ws3_c00423{word-spacing:-16.053333pt;}
.ws1_c00423{word-spacing:-16.000000pt;}
.ws4_c00423{word-spacing:-13.333333pt;}
.ws6_c00423{word-spacing:0.000000pt;}
._18_c00423{margin-left:-15.253333pt;}
._1b_c00423{margin-left:-12.480000pt;}
._1d_c00423{margin-left:-11.482667pt;}
._1c_c00423{margin-left:-9.005333pt;}
._16_c00423{margin-left:-7.893333pt;}
._1e_c00423{margin-left:-6.986667pt;}
._f_c00423{margin-left:-6.026667pt;}
._17_c00423{margin-left:-4.213333pt;}
._5_c00423{margin-left:-2.506667pt;}
._2_c00423{margin-left:-1.600000pt;}
._0_c00423{width:1.546667pt;}
._4_c00423{width:2.720000pt;}
._3_c00423{width:4.053333pt;}
._11_c00423{width:5.173333pt;}
._b_c00423{width:6.453333pt;}
._6_c00423{width:8.213333pt;}
._10_c00423{width:9.120000pt;}
._1_c00423{width:10.613333pt;}
._12_c00423{width:11.525333pt;}
._c_c00423{width:13.386667pt;}
._14_c00423{width:14.880000pt;}
._21_c00423{width:16.640000pt;}
._7_c00423{width:17.546667pt;}
._1f_c00423{width:18.546667pt;}
._d_c00423{width:19.680000pt;}
._e_c00423{width:20.586667pt;}
._a_c00423{width:21.866667pt;}
._13_c00423{width:23.306667pt;}
._1a_c00423{width:26.026667pt;}
._20_c00423{width:28.042667pt;}
._19_c00423{width:29.813333pt;}
._8_c00423{width:34.453333pt;}
._9_c00423{width:38.986667pt;}
._22_c00423{width:43.466667pt;}
._24_c00423{width:60.981333pt;}
._25_c00423{width:64.229333pt;}
._26_c00423{width:65.949333pt;}
._23_c00423{width:82.749333pt;}
._15_c00423{width:84.746667pt;}
.fs3_c00423{font-size:40.000000pt;}
.fs5_c00423{font-size:42.666667pt;}
.fs2_c00423{font-size:50.666667pt;}
.fs0_c00423{font-size:53.333333pt;}
.fs1_c00423{font-size:56.000000pt;}
.fs4_c00423{font-size:144.000000pt;}
.y0_c00423{bottom:0.000000pt;}
.y45_c00423{bottom:2.760000pt;}
.y44_c00423{bottom:6.425217pt;}
.y43_c00423{bottom:35.040000pt;}
.y42_c00423{bottom:51.306667pt;}
.y41_c00423{bottom:68.106667pt;}
.y40_c00423{bottom:84.240000pt;}
.y3f_c00423{bottom:100.240000pt;}
.y26_c00423{bottom:116.640000pt;}
.y3e_c00423{bottom:132.240000pt;}
.y25_c00423{bottom:132.640000pt;}
.y24_c00423{bottom:148.773333pt;}
.y23_c00423{bottom:164.906667pt;}
.y22_c00423{bottom:181.173333pt;}
.y21_c00423{bottom:197.306667pt;}
.y3d_c00423{bottom:197.440000pt;}
.y20_c00423{bottom:213.306667pt;}
.y3c_c00423{bottom:229.440000pt;}
.y1f_c00423{bottom:229.840000pt;}
.y1e_c00423{bottom:245.973333pt;}
.y1d_c00423{bottom:261.306667pt;}
.y3b_c00423{bottom:277.173333pt;}
.y1c_c00423{bottom:277.440000pt;}
.y1b_c00423{bottom:293.440000pt;}
.y39_c00423{bottom:308.906667pt;}
.y1a_c00423{bottom:309.306667pt;}
.y3a_c00423{bottom:309.840000pt;}
.y19_c00423{bottom:326.106667pt;}
.y18_c00423{bottom:342.240000pt;}
.y17_c00423{bottom:358.106667pt;}
.y38_c00423{bottom:358.240000pt;}
.y37_c00423{bottom:374.106667pt;}
.y16_c00423{bottom:374.373333pt;}
.y36_c00423{bottom:390.240000pt;}
.y15_c00423{bottom:390.506667pt;}
.y35_c00423{bottom:406.106667pt;}
.y14_c00423{bottom:406.773333pt;}
.y34_c00423{bottom:422.106667pt;}
.y13_c00423{bottom:422.640000pt;}
.y12_c00423{bottom:438.906667pt;}
.y33_c00423{bottom:452.906667pt;}
.y11_c00423{bottom:455.306667pt;}
.y10_c00423{bottom:471.040000pt;}
.y32_c00423{bottom:486.506667pt;}
.yf_c00423{bottom:487.173333pt;}
.y31_c00423{bottom:503.040000pt;}
.ye_c00423{bottom:503.440000pt;}
.y30_c00423{bottom:518.906667pt;}
.yd_c00423{bottom:519.306667pt;}
.y2f_c00423{bottom:534.906667pt;}
.yc_c00423{bottom:535.440000pt;}
.y2e_c00423{bottom:551.040000pt;}
.yb_c00423{bottom:551.440000pt;}
.y2d_c00423{bottom:567.306667pt;}
.ya_c00423{bottom:567.840000pt;}
.y2c_c00423{bottom:583.440000pt;}
.y9_c00423{bottom:583.840000pt;}
.y2b_c00423{bottom:599.973333pt;}
.y8_c00423{bottom:600.240000pt;}
.y2a_c00423{bottom:615.840000pt;}
.y7_c00423{bottom:616.106667pt;}
.y29_c00423{bottom:631.706667pt;}
.y6_c00423{bottom:632.640000pt;}
.y28_c00423{bottom:648.240000pt;}
.y5_c00423{bottom:648.506667pt;}
.y4_c00423{bottom:664.240000pt;}
.y3_c00423{bottom:680.640000pt;}
.y2_c00423{bottom:696.506667pt;}
.y27_c00423{bottom:696.640000pt;}
.y1_c00423{bottom:715.706667pt;}
.h6_c00423{height:11.733399pt;}
.h7_c00423{height:38.937500pt;}
.h3_c00423{height:55.893333pt;}
.h2_c00423{height:56.906667pt;}
.h4_c00423{height:58.688000pt;}
.h5_c00423{height:150.912000pt;}
.h0_c00423{height:755.733333pt;}
.h1_c00423{height:756.000000pt;}
.w2_c00423{width:93.222667pt;}
.w0_c00423{width:505.666667pt;}
.w1_c00423{width:506.000000pt;}
.x0_c00423{left:0.000000pt;}
.x16_c00423{left:67.733333pt;}
.x7_c00423{left:68.933333pt;}
.x6_c00423{left:70.000000pt;}
.x5_c00423{left:71.600000pt;}
.x4_c00423{left:72.666667pt;}
.x3_c00423{left:73.600000pt;}
.x2_c00423{left:74.666667pt;}
.x1_c00423{left:77.333333pt;}
.x18_c00423{left:210.001546pt;}
.x15_c00423{left:262.533333pt;}
.x14_c00423{left:263.600000pt;}
.xf_c00423{left:264.933333pt;}
.xd_c00423{left:266.933333pt;}
.xc_c00423{left:268.133333pt;}
.x8_c00423{left:269.333333pt;}
.xb_c00423{left:270.266667pt;}
.xa_c00423{left:271.200000pt;}
.x9_c00423{left:272.400000pt;}
.x10_c00423{left:276.000000pt;}
.x11_c00423{left:291.333333pt;}
.x13_c00423{left:293.333333pt;}
.x12_c00423{left:315.866667pt;}
.xe_c00423{left:329.733333pt;}
.x17_c00423{left:414.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_6ed10ba63ae932af1218afa2.woff2')format("woff");}.ff1_c00424{font-family:ff1_c00424;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00424;src:url('chunks/assets/font_2bfc6077891041e94cffad86.woff2')format("woff");}.ff2_c00424{font-family:ff2_c00424;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00424;src:url('chunks/assets/font_32bfc72954a60bd09a0f4117.woff2')format("woff");}.ff3_c00424{font-family:ff3_c00424;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00424;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff4_c00424{font-family:ff4_c00424;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00424;src:url('chunks/assets/font_f7fffc0cb2bde610f8150ae7.woff2')format("woff");}.ff5_c00424{font-family:ff5_c00424;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00424;src:url('chunks/assets/font_ecd31f37b18875836fe4d223.woff2')format("woff");}.ff6_c00424{font-family:ff6_c00424;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00424;src:url('chunks/assets/font_1918a632fcafdf4520d57692.woff2')format("woff");}.ff7_c00424{font-family:ff7_c00424;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00424;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff8_c00424{font-family:ff8_c00424;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00424{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00424{vertical-align:0.000000px;}
.ls2_c00424{letter-spacing:0.000000px;}
.ls1_c00424{letter-spacing:3.000000px;}
.ls0_c00424{letter-spacing:6.000000px;}
.ls3_c00424{letter-spacing:9.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;}
}
.ws3_c00424{word-spacing:-47.019000px;}
.ws2_c00424{word-spacing:-18.774000px;}
.ws1_c00424{word-spacing:-18.060000px;}
.ws0_c00424{word-spacing:-14.160000px;}
.ws4_c00424{word-spacing:0.000000px;}
._4_c00424{margin-left:-12.180000px;}
._20_c00424{margin-left:-10.260000px;}
._25_c00424{margin-left:-8.220000px;}
._d_c00424{margin-left:-6.720000px;}
._12_c00424{margin-left:-5.700000px;}
._e_c00424{margin-left:-4.500000px;}
._6_c00424{margin-left:-2.640000px;}
._7_c00424{margin-left:-1.440000px;}
._a_c00424{width:1.140000px;}
._9_c00424{width:2.280000px;}
._c_c00424{width:3.300000px;}
._b_c00424{width:4.440000px;}
._1d_c00424{width:5.880000px;}
._10_c00424{width:7.380000px;}
._1e_c00424{width:8.940000px;}
._1_c00424{width:10.140000px;}
._8_c00424{width:11.460000px;}
._0_c00424{width:13.140000px;}
._3_c00424{width:15.060000px;}
._19_c00424{width:16.320000px;}
._27_c00424{width:17.580000px;}
._21_c00424{width:18.780000px;}
._16_c00424{width:20.160000px;}
._23_c00424{width:22.080000px;}
._1c_c00424{width:23.220000px;}
._17_c00424{width:24.540000px;}
._11_c00424{width:25.860000px;}
._f_c00424{width:28.680000px;}
._1f_c00424{width:30.540000px;}
._22_c00424{width:33.180000px;}
._15_c00424{width:35.340000px;}
._29_c00424{width:37.320000px;}
._1b_c00424{width:39.600000px;}
._2_c00424{width:43.440000px;}
._13_c00424{width:46.380000px;}
._14_c00424{width:49.560000px;}
._24_c00424{width:53.940000px;}
._1a_c00424{width:129.720000px;}
._26_c00424{width:133.560000px;}
._18_c00424{width:134.940000px;}
._5_c00424{width:210.840000px;}
._28_c00424{width:434.940000px;}
.fc2_c00424{color:transparent;}
.fc1_c00424{color:rgb(128,128,128);}
.fc0_c00424{color:rgb(0,0,0);}
.fs4_c00424{font-size:48.000000px;}
.fs1_c00424{font-size:51.000000px;}
.fs3_c00424{font-size:57.000000px;}
.fs0_c00424{font-size:60.000000px;}
.fs2_c00424{font-size:66.000000px;}
.y0_c00424{bottom:0.000000px;}
.y56_c00424{bottom:3.105000px;}
.y55_c00424{bottom:7.228355px;}
.y54_c00424{bottom:34.335000px;}
.y53_c00424{bottom:53.685000px;}
.y2a_c00424{bottom:55.635000px;}
.y52_c00424{bottom:71.835000px;}
.y29_c00424{bottom:74.535000px;}
.y51_c00424{bottom:91.035000px;}
.y28_c00424{bottom:92.385000px;}
.y50_c00424{bottom:108.585000px;}
.y27_c00424{bottom:110.385000px;}
.y4f_c00424{bottom:126.135000px;}
.y26_c00424{bottom:129.135000px;}
.y4e_c00424{bottom:145.335000px;}
.y25_c00424{bottom:147.735000px;}
.y4d_c00424{bottom:163.335000px;}
.y24_c00424{bottom:165.735000px;}
.y4c_c00424{bottom:182.235000px;}
.y23_c00424{bottom:184.185000px;}
.y4b_c00424{bottom:198.435000px;}
.y22_c00424{bottom:201.735000px;}
.y4a_c00424{bottom:218.985000px;}
.y21_c00424{bottom:220.935000px;}
.y49_c00424{bottom:237.135000px;}
.y20_c00424{bottom:238.185000px;}
.y48_c00424{bottom:254.835000px;}
.y1f_c00424{bottom:257.085000px;}
.y47_c00424{bottom:273.285000px;}
.y1e_c00424{bottom:275.385000px;}
.y46_c00424{bottom:291.285000px;}
.y1d_c00424{bottom:294.285000px;}
.y45_c00424{bottom:310.485000px;}
.y1c_c00424{bottom:311.535000px;}
.y44_c00424{bottom:328.635000px;}
.y1b_c00424{bottom:328.935000px;}
.y1a_c00424{bottom:346.935000px;}
.y43_c00424{bottom:365.385000px;}
.y19_c00424{bottom:365.535000px;}
.y18_c00424{bottom:383.535000px;}
.y42_c00424{bottom:383.685000px;}
.y17_c00424{bottom:401.835000px;}
.y41_c00424{bottom:402.285000px;}
.y16_c00424{bottom:420.135000px;}
.y40_c00424{bottom:420.885000px;}
.y15_c00424{bottom:438.735000px;}
.y3f_c00424{bottom:439.035000px;}
.y14_c00424{bottom:456.585000px;}
.y3e_c00424{bottom:457.335000px;}
.y13_c00424{bottom:474.735000px;}
.y3d_c00424{bottom:475.485000px;}
.y3c_c00424{bottom:493.035000px;}
.y12_c00424{bottom:493.335000px;}
.y11_c00424{bottom:510.585000px;}
.y3b_c00424{bottom:511.335000px;}
.y10_c00424{bottom:528.135000px;}
.y3a_c00424{bottom:530.835000px;}
.yf_c00424{bottom:545.985000px;}
.y39_c00424{bottom:547.635000px;}
.ye_c00424{bottom:564.285000px;}
.y38_c00424{bottom:566.535000px;}
.yd_c00424{bottom:582.885000px;}
.y37_c00424{bottom:583.785000px;}
.yc_c00424{bottom:600.435000px;}
.y36_c00424{bottom:602.085000px;}
.yb_c00424{bottom:619.635000px;}
.y35_c00424{bottom:619.935000px;}
.ya_c00424{bottom:636.885000px;}
.y34_c00424{bottom:638.835000px;}
.y9_c00424{bottom:654.435000px;}
.y33_c00424{bottom:657.135000px;}
.y8_c00424{bottom:672.885000px;}
.y32_c00424{bottom:674.535000px;}
.y7_c00424{bottom:691.185000px;}
.y31_c00424{bottom:692.535000px;}
.y6_c00424{bottom:709.635000px;}
.y30_c00424{bottom:710.985000px;}
.y5_c00424{bottom:727.335000px;}
.y2f_c00424{bottom:728.985000px;}
.y4_c00424{bottom:745.485000px;}
.y2e_c00424{bottom:747.135000px;}
.y3_c00424{bottom:764.385000px;}
.y2d_c00424{bottom:765.435000px;}
.y2_c00424{bottom:782.235000px;}
.y2c_c00424{bottom:783.885000px;}
.y2b_c00424{bottom:802.935000px;}
.y1_c00424{bottom:803.235000px;}
.h6_c00424{height:13.200074px;}
.h7_c00424{height:43.804688px;}
.h4_c00424{height:59.690918px;}
.h2_c00424{height:62.880000px;}
.h3_c00424{height:64.571777px;}
.h5_c00424{height:69.168000px;}
.h0_c00424{height:849.675000px;}
.h1_c00424{height:849.750000px;}
.w2_c00424{width:104.875500px;}
.w1_c00424{width:579.750000px;}
.w0_c00424{width:579.975000px;}
.x0_c00424{left:0.000000px;}
.x6_c00424{left:25.950000px;}
.x9_c00424{left:27.000000px;}
.xd_c00424{left:31.050000px;}
.x2_c00424{left:77.250000px;}
.x3_c00424{left:85.950000px;}
.x4_c00424{left:87.000000px;}
.x5_c00424{left:88.800000px;}
.x7_c00424{left:90.000000px;}
.xb_c00424{left:91.050000px;}
.xc_c00424{left:92.100000px;}
.x8_c00424{left:108.000000px;}
.xa_c00424{left:112.950000px;}
.xe_c00424{left:122.100000px;}
.x1_c00424{left:223.800000px;}
.x1b_c00424{left:241.801758px;}
.x16_c00424{left:301.350000px;}
.xf_c00424{left:303.000000px;}
.x10_c00424{left:304.050000px;}
.x11_c00424{left:306.150000px;}
.x12_c00424{left:308.100000px;}
.x13_c00424{left:309.150000px;}
.x14_c00424{left:310.500000px;}
.x15_c00424{left:311.550000px;}
.x17_c00424{left:312.900000px;}
.x19_c00424{left:314.100000px;}
.x18_c00424{left:315.600000px;}
.x1a_c00424{left:482.550000px;}
@media print{
.v0_c00424{vertical-align:0.000000pt;}
.ls2_c00424{letter-spacing:0.000000pt;}
.ls1_c00424{letter-spacing:2.666667pt;}
.ls0_c00424{letter-spacing:5.333333pt;}
.ls3_c00424{letter-spacing:8.000000pt;}
.ws3_c00424{word-spacing:-41.794667pt;}
.ws2_c00424{word-spacing:-16.688000pt;}
.ws1_c00424{word-spacing:-16.053333pt;}
.ws0_c00424{word-spacing:-12.586667pt;}
.ws4_c00424{word-spacing:0.000000pt;}
._4_c00424{margin-left:-10.826667pt;}
._20_c00424{margin-left:-9.120000pt;}
._25_c00424{margin-left:-7.306667pt;}
._d_c00424{margin-left:-5.973333pt;}
._12_c00424{margin-left:-5.066667pt;}
._e_c00424{margin-left:-4.000000pt;}
._6_c00424{margin-left:-2.346667pt;}
._7_c00424{margin-left:-1.280000pt;}
._a_c00424{width:1.013333pt;}
._9_c00424{width:2.026667pt;}
._c_c00424{width:2.933333pt;}
._b_c00424{width:3.946667pt;}
._1d_c00424{width:5.226667pt;}
._10_c00424{width:6.560000pt;}
._1e_c00424{width:7.946667pt;}
._1_c00424{width:9.013333pt;}
._8_c00424{width:10.186667pt;}
._0_c00424{width:11.680000pt;}
._3_c00424{width:13.386667pt;}
._19_c00424{width:14.506667pt;}
._27_c00424{width:15.626667pt;}
._21_c00424{width:16.693333pt;}
._16_c00424{width:17.920000pt;}
._23_c00424{width:19.626667pt;}
._1c_c00424{width:20.640000pt;}
._17_c00424{width:21.813333pt;}
._11_c00424{width:22.986667pt;}
._f_c00424{width:25.493333pt;}
._1f_c00424{width:27.146667pt;}
._22_c00424{width:29.493333pt;}
._15_c00424{width:31.413333pt;}
._29_c00424{width:33.173333pt;}
._1b_c00424{width:35.200000pt;}
._2_c00424{width:38.613333pt;}
._13_c00424{width:41.226667pt;}
._14_c00424{width:44.053333pt;}
._24_c00424{width:47.946667pt;}
._1a_c00424{width:115.306667pt;}
._26_c00424{width:118.720000pt;}
._18_c00424{width:119.946667pt;}
._5_c00424{width:187.413333pt;}
._28_c00424{width:386.613333pt;}
.fs4_c00424{font-size:42.666667pt;}
.fs1_c00424{font-size:45.333333pt;}
.fs3_c00424{font-size:50.666667pt;}
.fs0_c00424{font-size:53.333333pt;}
.fs2_c00424{font-size:58.666667pt;}
.y0_c00424{bottom:0.000000pt;}
.y56_c00424{bottom:2.760000pt;}
.y55_c00424{bottom:6.425204pt;}
.y54_c00424{bottom:30.520000pt;}
.y53_c00424{bottom:47.720000pt;}
.y2a_c00424{bottom:49.453333pt;}
.y52_c00424{bottom:63.853333pt;}
.y29_c00424{bottom:66.253333pt;}
.y51_c00424{bottom:80.920000pt;}
.y28_c00424{bottom:82.120000pt;}
.y50_c00424{bottom:96.520000pt;}
.y27_c00424{bottom:98.120000pt;}
.y4f_c00424{bottom:112.120000pt;}
.y26_c00424{bottom:114.786667pt;}
.y4e_c00424{bottom:129.186667pt;}
.y25_c00424{bottom:131.320000pt;}
.y4d_c00424{bottom:145.186667pt;}
.y24_c00424{bottom:147.320000pt;}
.y4c_c00424{bottom:161.986667pt;}
.y23_c00424{bottom:163.720000pt;}
.y4b_c00424{bottom:176.386667pt;}
.y22_c00424{bottom:179.320000pt;}
.y4a_c00424{bottom:194.653333pt;}
.y21_c00424{bottom:196.386667pt;}
.y49_c00424{bottom:210.786667pt;}
.y20_c00424{bottom:211.720000pt;}
.y48_c00424{bottom:226.520000pt;}
.y1f_c00424{bottom:228.520000pt;}
.y47_c00424{bottom:242.920000pt;}
.y1e_c00424{bottom:244.786667pt;}
.y46_c00424{bottom:258.920000pt;}
.y1d_c00424{bottom:261.586667pt;}
.y45_c00424{bottom:275.986667pt;}
.y1c_c00424{bottom:276.920000pt;}
.y44_c00424{bottom:292.120000pt;}
.y1b_c00424{bottom:292.386667pt;}
.y1a_c00424{bottom:308.386667pt;}
.y43_c00424{bottom:324.786667pt;}
.y19_c00424{bottom:324.920000pt;}
.y18_c00424{bottom:340.920000pt;}
.y42_c00424{bottom:341.053333pt;}
.y17_c00424{bottom:357.186667pt;}
.y41_c00424{bottom:357.586667pt;}
.y16_c00424{bottom:373.453333pt;}
.y40_c00424{bottom:374.120000pt;}
.y15_c00424{bottom:389.986667pt;}
.y3f_c00424{bottom:390.253333pt;}
.y14_c00424{bottom:405.853333pt;}
.y3e_c00424{bottom:406.520000pt;}
.y13_c00424{bottom:421.986667pt;}
.y3d_c00424{bottom:422.653333pt;}
.y3c_c00424{bottom:438.253333pt;}
.y12_c00424{bottom:438.520000pt;}
.y11_c00424{bottom:453.853333pt;}
.y3b_c00424{bottom:454.520000pt;}
.y10_c00424{bottom:469.453333pt;}
.y3a_c00424{bottom:471.853333pt;}
.yf_c00424{bottom:485.320000pt;}
.y39_c00424{bottom:486.786667pt;}
.ye_c00424{bottom:501.586667pt;}
.y38_c00424{bottom:503.586667pt;}
.yd_c00424{bottom:518.120000pt;}
.y37_c00424{bottom:518.920000pt;}
.yc_c00424{bottom:533.720000pt;}
.y36_c00424{bottom:535.186667pt;}
.yb_c00424{bottom:550.786667pt;}
.y35_c00424{bottom:551.053333pt;}
.ya_c00424{bottom:566.120000pt;}
.y34_c00424{bottom:567.853333pt;}
.y9_c00424{bottom:581.720000pt;}
.y33_c00424{bottom:584.120000pt;}
.y8_c00424{bottom:598.120000pt;}
.y32_c00424{bottom:599.586667pt;}
.y7_c00424{bottom:614.386667pt;}
.y31_c00424{bottom:615.586667pt;}
.y6_c00424{bottom:630.786667pt;}
.y30_c00424{bottom:631.986667pt;}
.y5_c00424{bottom:646.520000pt;}
.y2f_c00424{bottom:647.986667pt;}
.y4_c00424{bottom:662.653333pt;}
.y2e_c00424{bottom:664.120000pt;}
.y3_c00424{bottom:679.453333pt;}
.y2d_c00424{bottom:680.386667pt;}
.y2_c00424{bottom:695.320000pt;}
.y2c_c00424{bottom:696.786667pt;}
.y2b_c00424{bottom:713.720000pt;}
.y1_c00424{bottom:713.986667pt;}
.h6_c00424{height:11.733399pt;}
.h7_c00424{height:38.937500pt;}
.h4_c00424{height:53.058594pt;}
.h2_c00424{height:55.893333pt;}
.h3_c00424{height:57.397135pt;}
.h5_c00424{height:61.482667pt;}
.h0_c00424{height:755.266667pt;}
.h1_c00424{height:755.333333pt;}
.w2_c00424{width:93.222667pt;}
.w1_c00424{width:515.333333pt;}
.w0_c00424{width:515.533333pt;}
.x0_c00424{left:0.000000pt;}
.x6_c00424{left:23.066667pt;}
.x9_c00424{left:24.000000pt;}
.xd_c00424{left:27.600000pt;}
.x2_c00424{left:68.666667pt;}
.x3_c00424{left:76.400000pt;}
.x4_c00424{left:77.333333pt;}
.x5_c00424{left:78.933333pt;}
.x7_c00424{left:80.000000pt;}
.xb_c00424{left:80.933333pt;}
.xc_c00424{left:81.866667pt;}
.x8_c00424{left:96.000000pt;}
.xa_c00424{left:100.400000pt;}
.xe_c00424{left:108.533333pt;}
.x1_c00424{left:198.933333pt;}
.x1b_c00424{left:214.934896pt;}
.x16_c00424{left:267.866667pt;}
.xf_c00424{left:269.333333pt;}
.x10_c00424{left:270.266667pt;}
.x11_c00424{left:272.133333pt;}
.x12_c00424{left:273.866667pt;}
.x13_c00424{left:274.800000pt;}
.x14_c00424{left:276.000000pt;}
.x15_c00424{left:276.933333pt;}
.x17_c00424{left:278.133333pt;}
.x19_c00424{left:279.200000pt;}
.x18_c00424{left:280.533333pt;}
.x1a_c00424{left:428.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_0273ea9a8a517c94bd2968f8.woff2')format("woff");}.ff1_c00425{font-family:ff1_c00425;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00425;src:url('chunks/assets/font_f8a49e1a2bf5c19b069dbdb2.woff2')format("woff");}.ff2_c00425{font-family:ff2_c00425;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00425;src:url('chunks/assets/font_0f5521a6e914f5934fd19acc.woff2')format("woff");}.ff3_c00425{font-family:ff3_c00425;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00425;src:url('chunks/assets/font_4114a7734d5a9ec78a8b67e7.woff2')format("woff");}.ff4_c00425{font-family:ff4_c00425;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00425;src:url('chunks/assets/font_526ac8c17e2b73dd37b28d08.woff2')format("woff");}.ff5_c00425{font-family:ff5_c00425;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00425;src:url('chunks/assets/font_af454e031b00a820691896c7.woff2')format("woff");}.ff6_c00425{font-family:ff6_c00425;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00425;src:url('chunks/assets/font_91011b75e95e5372928b382a.woff2')format("woff");}.ff7_c00425{font-family:ff7_c00425;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00425;src:url('chunks/assets/font_eda5ba9e38dbee4591281f12.woff2')format("woff");}.ff8_c00425{font-family:ff8_c00425;line-height:1.012793;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00425;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff9_c00425{font-family:ff9_c00425;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00425{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00425{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.v0_c00425{vertical-align:0.000000px;}
.v1_c00425{vertical-align:108.000000px;}
.ls9_c00425{letter-spacing:-3.000000px;}
.ls7_c00425{letter-spacing:0.000000px;}
.ls3_c00425{letter-spacing:2.400000px;}
.ls0_c00425{letter-spacing:3.000000px;}
.ls6_c00425{letter-spacing:6.000000px;}
.ls5_c00425{letter-spacing:6.093000px;}
.ls1_c00425{letter-spacing:9.000000px;}
.ls4_c00425{letter-spacing:10.740000px;}
.ls8_c00425{letter-spacing:15.000000px;}
.ls2_c00425{letter-spacing:23.304000px;}
.sc__c00425{text-shadow:none;}
.sc0_c00425{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00425{-webkit-text-stroke:0px transparent;}
.sc0_c00425{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00425{word-spacing:-29.160000px;}
.ws9_c00425{word-spacing:-24.642000px;}
.ws5_c00425{word-spacing:-23.250000px;}
.wsa_c00425{word-spacing:-22.284000px;}
.ws0_c00425{word-spacing:-20.340000px;}
.ws2_c00425{word-spacing:-18.060000px;}
.ws8_c00425{word-spacing:-14.340000px;}
.ws1_c00425{word-spacing:-14.160000px;}
.ws7_c00425{word-spacing:-13.452000px;}
.wsb_c00425{word-spacing:0.000000px;}
.ws6_c00425{word-spacing:1.080000px;}
.ws4_c00425{word-spacing:11.880000px;}
._2b_c00425{margin-left:-27.600000px;}
._2e_c00425{margin-left:-25.920000px;}
._2d_c00425{margin-left:-23.040000px;}
._32_c00425{margin-left:-21.042000px;}
._2c_c00425{margin-left:-18.180000px;}
._34_c00425{margin-left:-16.653000px;}
._23_c00425{margin-left:-15.600000px;}
._1c_c00425{margin-left:-13.620000px;}
._2f_c00425{margin-left:-12.540000px;}
._18_c00425{margin-left:-11.460000px;}
._16_c00425{margin-left:-9.960000px;}
._17_c00425{margin-left:-8.880000px;}
._1a_c00425{margin-left:-7.620000px;}
._14_c00425{margin-left:-6.420000px;}
._27_c00425{margin-left:-5.400000px;}
._1b_c00425{margin-left:-4.380000px;}
._0_c00425{margin-left:-3.300000px;}
._11_c00425{margin-left:-2.100000px;}
._15_c00425{margin-left:-1.020000px;}
._c_c00425{width:1.380000px;}
._d_c00425{width:2.460000px;}
._e_c00425{width:3.600000px;}
._9_c00425{width:5.220000px;}
._13_c00425{width:6.480000px;}
._b_c00425{width:8.160000px;}
._10_c00425{width:9.540000px;}
._a_c00425{width:10.560000px;}
._19_c00425{width:11.580000px;}
._8_c00425{width:13.080000px;}
._2_c00425{width:14.700000px;}
._3_c00425{width:16.440000px;}
._29_c00425{width:17.760000px;}
._1d_c00425{width:19.200000px;}
._6_c00425{width:20.760000px;}
._5_c00425{width:22.260000px;}
._4_c00425{width:24.480000px;}
._21_c00425{width:26.340000px;}
._31_c00425{width:27.402000px;}
._7_c00425{width:28.440000px;}
._1f_c00425{width:31.140000px;}
._20_c00425{width:34.680000px;}
._f_c00425{width:35.940000px;}
._35_c00425{width:37.785000px;}
._1e_c00425{width:40.380000px;}
._30_c00425{width:54.960000px;}
._22_c00425{width:58.500000px;}
._24_c00425{width:68.340000px;}
._12_c00425{width:71.100000px;}
._26_c00425{width:73.740000px;}
._25_c00425{width:76.500000px;}
._2a_c00425{width:92.730000px;}
._28_c00425{width:104.976000px;}
._33_c00425{width:134.796000px;}
._1_c00425{width:213.240000px;}
.fc2_c00425{color:transparent;}
.fc1_c00425{color:rgb(128,128,128);}
.fc0_c00425{color:rgb(0,0,0);}
.fs4_c00425{font-size:45.000000px;}
.fs3_c00425{font-size:48.000000px;}
.fs5_c00425{font-size:54.000000px;}
.fs1_c00425{font-size:57.000000px;}
.fs0_c00425{font-size:60.000000px;}
.fs7_c00425{font-size:69.000000px;}
.fs6_c00425{font-size:78.000000px;}
.fs2_c00425{font-size:204.000000px;}
.y0_c00425{bottom:0.000000px;}
.y4d_c00425{bottom:3.105000px;}
.y4c_c00425{bottom:7.228363px;}
.y48_c00425{bottom:32.850000px;}
.y3b_c00425{bottom:49.950000px;}
.y47_c00425{bottom:51.300000px;}
.y3a_c00425{bottom:69.600000px;}
.y46_c00425{bottom:71.250000px;}
.y39_c00425{bottom:87.750000px;}
.y45_c00425{bottom:88.650000px;}
.y38_c00425{bottom:105.750000px;}
.y44_c00425{bottom:106.650000px;}
.y37_c00425{bottom:124.200000px;}
.y43_c00425{bottom:125.850000px;}
.y36_c00425{bottom:142.050000px;}
.y42_c00425{bottom:143.100000px;}
.y35_c00425{bottom:160.650000px;}
.y41_c00425{bottom:160.950000px;}
.y40_c00425{bottom:179.250000px;}
.y34_c00425{bottom:179.550000px;}
.y3f_c00425{bottom:197.100000px;}
.y33_c00425{bottom:197.400000px;}
.y32_c00425{bottom:214.950000px;}
.y3e_c00425{bottom:215.400000px;}
.y31_c00425{bottom:232.950000px;}
.y3d_c00425{bottom:233.850000px;}
.y30_c00425{bottom:251.850000px;}
.y3c_c00425{bottom:252.450000px;}
.y4b_c00425{bottom:253.800000px;}
.y2f_c00425{bottom:270.000000px;}
.y4a_c00425{bottom:272.100000px;}
.y26_c00425{bottom:287.550000px;}
.y2e_c00425{bottom:287.850000px;}
.y49_c00425{bottom:291.300000px;}
.y24_c00425{bottom:296.700000px;}
.y2d_c00425{bottom:305.400000px;}
.y25_c00425{bottom:305.550000px;}
.y2c_c00425{bottom:323.400000px;}
.y2b_c00425{bottom:342.300000px;}
.y23_c00425{bottom:360.450000px;}
.y2a_c00425{bottom:378.300000px;}
.y22_c00425{bottom:378.450000px;}
.y29_c00425{bottom:396.300000px;}
.y21_c00425{bottom:396.900000px;}
.y20_c00425{bottom:414.750000px;}
.y28_c00425{bottom:414.900000px;}
.y27_c00425{bottom:433.050000px;}
.y1f_c00425{bottom:449.850000px;}
.y1d_c00425{bottom:451.650000px;}
.y1c_c00425{bottom:469.800000px;}
.y1e_c00425{bottom:486.300000px;}
.y1b_c00425{bottom:487.650000px;}
.y1a_c00425{bottom:505.650000px;}
.y19_c00425{bottom:523.500000px;}
.y18_c00425{bottom:541.350000px;}
.y17_c00425{bottom:559.950000px;}
.y16_c00425{bottom:578.100000px;}
.y15_c00425{bottom:579.450000px;}
.yc_c00425{bottom:595.800000px;}
.y14_c00425{bottom:597.450000px;}
.yb_c00425{bottom:614.250000px;}
.y13_c00425{bottom:615.150000px;}
.ya_c00425{bottom:632.850000px;}
.y12_c00425{bottom:633.150000px;}
.y9_c00425{bottom:650.700000px;}
.y11_c00425{bottom:651.150000px;}
.y8_c00425{bottom:668.700000px;}
.y10_c00425{bottom:669.600000px;}
.y7_c00425{bottom:687.450000px;}
.y6_c00425{bottom:705.450000px;}
.yf_c00425{bottom:706.050000px;}
.y5_c00425{bottom:723.900000px;}
.ye_c00425{bottom:741.600000px;}
.y4_c00425{bottom:741.750000px;}
.yd_c00425{bottom:759.450000px;}
.y3_c00425{bottom:760.350000px;}
.y2_c00425{bottom:778.500000px;}
.y1_c00425{bottom:798.150000px;}
.h9_c00425{height:13.200074px;}
.ha_c00425{height:43.804688px;}
.h6_c00425{height:56.592000px;}
.h4_c00425{height:59.736000px;}
.h3_c00425{height:62.880000px;}
.h2_c00425{height:64.020000px;}
.h8_c00425{height:72.312000px;}
.h7_c00425{height:81.744000px;}
.h5_c00425{height:213.792000px;}
.h1_c00425{height:842.250000px;}
.h0_c00425{height:842.400000px;}
.w2_c00425{width:104.875500px;}
.w1_c00425{width:579.750000px;}
.w0_c00425{width:579.975000px;}
.x0_c00425{left:0.000000px;}
.x14_c00425{left:16.650000px;}
.x12_c00425{left:20.700000px;}
.x15_c00425{left:46.650000px;}
.x10_c00425{left:77.250000px;}
.x11_c00425{left:78.750000px;}
.x13_c00425{left:80.100000px;}
.x8_c00425{left:82.350000px;}
.x3_c00425{left:84.000000px;}
.x4_c00425{left:85.350000px;}
.x2_c00425{left:87.300000px;}
.x1_c00425{left:88.800000px;}
.xa_c00425{left:95.250000px;}
.xb_c00425{left:111.000000px;}
.xe_c00425{left:122.550000px;}
.xd_c00425{left:128.700000px;}
.x9_c00425{left:145.800000px;}
.xc_c00425{left:153.900000px;}
.x1a_c00425{left:241.801758px;}
.x17_c00425{left:296.100000px;}
.x16_c00425{left:297.600000px;}
.xf_c00425{left:299.400000px;}
.x6_c00425{left:301.350000px;}
.x5_c00425{left:302.400000px;}
.x18_c00425{left:448.650000px;}
.x19_c00425{left:504.900000px;}
.x7_c00425{left:508.500000px;}
@media print{
.v0_c00425{vertical-align:0.000000pt;}
.v1_c00425{vertical-align:96.000000pt;}
.ls9_c00425{letter-spacing:-2.666667pt;}
.ls7_c00425{letter-spacing:0.000000pt;}
.ls3_c00425{letter-spacing:2.133333pt;}
.ls0_c00425{letter-spacing:2.666667pt;}
.ls6_c00425{letter-spacing:5.333333pt;}
.ls5_c00425{letter-spacing:5.416000pt;}
.ls1_c00425{letter-spacing:8.000000pt;}
.ls4_c00425{letter-spacing:9.546667pt;}
.ls8_c00425{letter-spacing:13.333333pt;}
.ls2_c00425{letter-spacing:20.714667pt;}
.ws3_c00425{word-spacing:-25.920000pt;}
.ws9_c00425{word-spacing:-21.904000pt;}
.ws5_c00425{word-spacing:-20.666667pt;}
.wsa_c00425{word-spacing:-19.808000pt;}
.ws0_c00425{word-spacing:-18.080000pt;}
.ws2_c00425{word-spacing:-16.053333pt;}
.ws8_c00425{word-spacing:-12.746667pt;}
.ws1_c00425{word-spacing:-12.586667pt;}
.ws7_c00425{word-spacing:-11.957333pt;}
.wsb_c00425{word-spacing:0.000000pt;}
.ws6_c00425{word-spacing:0.960000pt;}
.ws4_c00425{word-spacing:10.560000pt;}
._2b_c00425{margin-left:-24.533333pt;}
._2e_c00425{margin-left:-23.040000pt;}
._2d_c00425{margin-left:-20.480000pt;}
._32_c00425{margin-left:-18.704000pt;}
._2c_c00425{margin-left:-16.160000pt;}
._34_c00425{margin-left:-14.802667pt;}
._23_c00425{margin-left:-13.866667pt;}
._1c_c00425{margin-left:-12.106667pt;}
._2f_c00425{margin-left:-11.146667pt;}
._18_c00425{margin-left:-10.186667pt;}
._16_c00425{margin-left:-8.853333pt;}
._17_c00425{margin-left:-7.893333pt;}
._1a_c00425{margin-left:-6.773333pt;}
._14_c00425{margin-left:-5.706667pt;}
._27_c00425{margin-left:-4.800000pt;}
._1b_c00425{margin-left:-3.893333pt;}
._0_c00425{margin-left:-2.933333pt;}
._11_c00425{margin-left:-1.866667pt;}
._15_c00425{margin-left:-0.906667pt;}
._c_c00425{width:1.226667pt;}
._d_c00425{width:2.186667pt;}
._e_c00425{width:3.200000pt;}
._9_c00425{width:4.640000pt;}
._13_c00425{width:5.760000pt;}
._b_c00425{width:7.253333pt;}
._10_c00425{width:8.480000pt;}
._a_c00425{width:9.386667pt;}
._19_c00425{width:10.293333pt;}
._8_c00425{width:11.626667pt;}
._2_c00425{width:13.066667pt;}
._3_c00425{width:14.613333pt;}
._29_c00425{width:15.786667pt;}
._1d_c00425{width:17.066667pt;}
._6_c00425{width:18.453333pt;}
._5_c00425{width:19.786667pt;}
._4_c00425{width:21.760000pt;}
._21_c00425{width:23.413333pt;}
._31_c00425{width:24.357333pt;}
._7_c00425{width:25.280000pt;}
._1f_c00425{width:27.680000pt;}
._20_c00425{width:30.826667pt;}
._f_c00425{width:31.946667pt;}
._35_c00425{width:33.586667pt;}
._1e_c00425{width:35.893333pt;}
._30_c00425{width:48.853333pt;}
._22_c00425{width:52.000000pt;}
._24_c00425{width:60.746667pt;}
._12_c00425{width:63.200000pt;}
._26_c00425{width:65.546667pt;}
._25_c00425{width:68.000000pt;}
._2a_c00425{width:82.426667pt;}
._28_c00425{width:93.312000pt;}
._33_c00425{width:119.818667pt;}
._1_c00425{width:189.546667pt;}
.fs4_c00425{font-size:40.000000pt;}
.fs3_c00425{font-size:42.666667pt;}
.fs5_c00425{font-size:48.000000pt;}
.fs1_c00425{font-size:50.666667pt;}
.fs0_c00425{font-size:53.333333pt;}
.fs7_c00425{font-size:61.333333pt;}
.fs6_c00425{font-size:69.333333pt;}
.fs2_c00425{font-size:181.333333pt;}
.y0_c00425{bottom:0.000000pt;}
.y4d_c00425{bottom:2.760000pt;}
.y4c_c00425{bottom:6.425212pt;}
.y48_c00425{bottom:29.200000pt;}
.y3b_c00425{bottom:44.400000pt;}
.y47_c00425{bottom:45.600000pt;}
.y3a_c00425{bottom:61.866667pt;}
.y46_c00425{bottom:63.333333pt;}
.y39_c00425{bottom:78.000000pt;}
.y45_c00425{bottom:78.800000pt;}
.y38_c00425{bottom:94.000000pt;}
.y44_c00425{bottom:94.800000pt;}
.y37_c00425{bottom:110.400000pt;}
.y43_c00425{bottom:111.866667pt;}
.y36_c00425{bottom:126.266667pt;}
.y42_c00425{bottom:127.200000pt;}
.y35_c00425{bottom:142.800000pt;}
.y41_c00425{bottom:143.066667pt;}
.y40_c00425{bottom:159.333333pt;}
.y34_c00425{bottom:159.600000pt;}
.y3f_c00425{bottom:175.200000pt;}
.y33_c00425{bottom:175.466667pt;}
.y32_c00425{bottom:191.066667pt;}
.y3e_c00425{bottom:191.466667pt;}
.y31_c00425{bottom:207.066667pt;}
.y3d_c00425{bottom:207.866667pt;}
.y30_c00425{bottom:223.866667pt;}
.y3c_c00425{bottom:224.400000pt;}
.y4b_c00425{bottom:225.600000pt;}
.y2f_c00425{bottom:240.000000pt;}
.y4a_c00425{bottom:241.866667pt;}
.y26_c00425{bottom:255.600000pt;}
.y2e_c00425{bottom:255.866667pt;}
.y49_c00425{bottom:258.933333pt;}
.y24_c00425{bottom:263.733333pt;}
.y2d_c00425{bottom:271.466667pt;}
.y25_c00425{bottom:271.600000pt;}
.y2c_c00425{bottom:287.466667pt;}
.y2b_c00425{bottom:304.266667pt;}
.y23_c00425{bottom:320.400000pt;}
.y2a_c00425{bottom:336.266667pt;}
.y22_c00425{bottom:336.400000pt;}
.y29_c00425{bottom:352.266667pt;}
.y21_c00425{bottom:352.800000pt;}
.y20_c00425{bottom:368.666667pt;}
.y28_c00425{bottom:368.800000pt;}
.y27_c00425{bottom:384.933333pt;}
.y1f_c00425{bottom:399.866667pt;}
.y1d_c00425{bottom:401.466667pt;}
.y1c_c00425{bottom:417.600000pt;}
.y1e_c00425{bottom:432.266667pt;}
.y1b_c00425{bottom:433.466667pt;}
.y1a_c00425{bottom:449.466667pt;}
.y19_c00425{bottom:465.333333pt;}
.y18_c00425{bottom:481.200000pt;}
.y17_c00425{bottom:497.733333pt;}
.y16_c00425{bottom:513.866667pt;}
.y15_c00425{bottom:515.066667pt;}
.yc_c00425{bottom:529.600000pt;}
.y14_c00425{bottom:531.066667pt;}
.yb_c00425{bottom:546.000000pt;}
.y13_c00425{bottom:546.800000pt;}
.ya_c00425{bottom:562.533333pt;}
.y12_c00425{bottom:562.800000pt;}
.y9_c00425{bottom:578.400000pt;}
.y11_c00425{bottom:578.800000pt;}
.y8_c00425{bottom:594.400000pt;}
.y10_c00425{bottom:595.200000pt;}
.y7_c00425{bottom:611.066667pt;}
.y6_c00425{bottom:627.066667pt;}
.yf_c00425{bottom:627.600000pt;}
.y5_c00425{bottom:643.466667pt;}
.ye_c00425{bottom:659.200000pt;}
.y4_c00425{bottom:659.333333pt;}
.yd_c00425{bottom:675.066667pt;}
.y3_c00425{bottom:675.866667pt;}
.y2_c00425{bottom:692.000000pt;}
.y1_c00425{bottom:709.466667pt;}
.h9_c00425{height:11.733399pt;}
.ha_c00425{height:38.937500pt;}
.h6_c00425{height:50.304000pt;}
.h4_c00425{height:53.098667pt;}
.h3_c00425{height:55.893333pt;}
.h2_c00425{height:56.906667pt;}
.h8_c00425{height:64.277333pt;}
.h7_c00425{height:72.661333pt;}
.h5_c00425{height:190.037333pt;}
.h1_c00425{height:748.666667pt;}
.h0_c00425{height:748.800000pt;}
.w2_c00425{width:93.222667pt;}
.w1_c00425{width:515.333333pt;}
.w0_c00425{width:515.533333pt;}
.x0_c00425{left:0.000000pt;}
.x14_c00425{left:14.800000pt;}
.x12_c00425{left:18.400000pt;}
.x15_c00425{left:41.466667pt;}
.x10_c00425{left:68.666667pt;}
.x11_c00425{left:70.000000pt;}
.x13_c00425{left:71.200000pt;}
.x8_c00425{left:73.200000pt;}
.x3_c00425{left:74.666667pt;}
.x4_c00425{left:75.866667pt;}
.x2_c00425{left:77.600000pt;}
.x1_c00425{left:78.933333pt;}
.xa_c00425{left:84.666667pt;}
.xb_c00425{left:98.666667pt;}
.xe_c00425{left:108.933333pt;}
.xd_c00425{left:114.400000pt;}
.x9_c00425{left:129.600000pt;}
.xc_c00425{left:136.800000pt;}
.x1a_c00425{left:214.934896pt;}
.x17_c00425{left:263.200000pt;}
.x16_c00425{left:264.533333pt;}
.xf_c00425{left:266.133333pt;}
.x6_c00425{left:267.866667pt;}
.x5_c00425{left:268.800000pt;}
.x18_c00425{left:398.800000pt;}
.x19_c00425{left:448.800000pt;}
.x7_c00425{left:452.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_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_dd0ee0aac61c19e86a4dc191.woff2')format("woff");}.ff1_c00426{font-family:ff1_c00426;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00426;src:url('chunks/assets/font_a76da79f9d204dab19daa73d.woff2')format("woff");}.ff2_c00426{font-family:ff2_c00426;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00426;src:url('chunks/assets/font_e9147bf9c9951dd804302bb6.woff2')format("woff");}.ff3_c00426{font-family:ff3_c00426;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00426;src:url('chunks/assets/font_4a506a57a50a3dbaa2bd3dab.woff2')format("woff");}.ff4_c00426{font-family:ff4_c00426;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00426;src:url('chunks/assets/font_7164f7fc20c479aacf7b7c04.woff2')format("woff");}.ff5_c00426{font-family:ff5_c00426;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00426;src:url('chunks/assets/font_4c48492e1dd0648c2a5bf741.woff2')format("woff");}.ff6_c00426{font-family:ff6_c00426;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00426;src:url('chunks/assets/font_a3444f9efd1096515b861095.woff2')format("woff");}.ff7_c00426{font-family:ff7_c00426;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00426;src:url('chunks/assets/font_897e5d77fe9e5c57a4838753.woff2')format("woff");}.ff8_c00426{font-family:ff8_c00426;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00426;src:url('chunks/assets/font_4f04592c478ff0d81fe11675.woff2')format("woff");}.ff9_c00426{font-family:ff9_c00426;line-height:1.575000;font-style:normal;font-weight: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_c00426;src:url('chunks/assets/font_17837608ceb9135c2441726f.woff2')format("woff");}.ffa_c00426{font-family:ffa_c00426;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00426;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ffb_c00426{font-family:ffb_c00426;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00426{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00426{vertical-align:0.000000px;}
.lsb_c00426{letter-spacing:-6.000000px;}
.ls9_c00426{letter-spacing:0.000000px;}
.ls5_c00426{letter-spacing:1.200000px;}
.ls0_c00426{letter-spacing:2.805000px;}
.ls8_c00426{letter-spacing:3.000000px;}
.ls7_c00426{letter-spacing:6.000000px;}
.ls1_c00426{letter-spacing:7.800000px;}
.lsa_c00426{letter-spacing:9.000000px;}
.ls3_c00426{letter-spacing:12.405000px;}
.ls4_c00426{letter-spacing:16.380000px;}
.ls2_c00426{letter-spacing:20.940000px;}
.ls6_c00426{letter-spacing:55.446000px;}
.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;}
}
.ws5_c00426{word-spacing:-23.160000px;}
.ws3_c00426{word-spacing:-22.284000px;}
.ws1_c00426{word-spacing:-18.060000px;}
.ws6_c00426{word-spacing:-15.744000px;}
.ws8_c00426{word-spacing:-15.000000px;}
.ws2_c00426{word-spacing:-14.160000px;}
.ws7_c00426{word-spacing:-9.000000px;}
.wsa_c00426{word-spacing:0.000000px;}
.ws9_c00426{word-spacing:1.140000px;}
.ws0_c00426{word-spacing:1.896000px;}
.ws4_c00426{word-spacing:2.040000px;}
._1a_c00426{margin-left:-24.660000px;}
._23_c00426{margin-left:-20.940000px;}
._26_c00426{margin-left:-18.480000px;}
._1c_c00426{margin-left:-15.780000px;}
._1b_c00426{margin-left:-14.160000px;}
._30_c00426{margin-left:-13.020000px;}
._21_c00426{margin-left:-11.880000px;}
._20_c00426{margin-left:-10.620000px;}
._1f_c00426{margin-left:-9.120000px;}
._22_c00426{margin-left:-7.560000px;}
._b_c00426{margin-left:-6.480000px;}
._a_c00426{margin-left:-5.400000px;}
._6_c00426{margin-left:-4.260000px;}
._14_c00426{margin-left:-2.880000px;}
._11_c00426{margin-left:-1.680000px;}
._9_c00426{width:1.080000px;}
._8_c00426{width:2.280000px;}
._f_c00426{width:3.600000px;}
._2c_c00426{width:4.620000px;}
._1_c00426{width:5.640000px;}
._0_c00426{width:6.840000px;}
._c_c00426{width:8.280000px;}
._e_c00426{width:9.300000px;}
._18_c00426{width:10.380000px;}
._17_c00426{width:11.400000px;}
._13_c00426{width:13.320000px;}
._19_c00426{width:14.340000px;}
._10_c00426{width:16.020000px;}
._2f_c00426{width:18.471000px;}
._12_c00426{width:19.740000px;}
._27_c00426{width:20.880000px;}
._2b_c00426{width:21.960000px;}
._1d_c00426{width:23.100000px;}
._5_c00426{width:25.464000px;}
._15_c00426{width:27.900000px;}
._1e_c00426{width:30.060000px;}
._2_c00426{width:31.416000px;}
._3_c00426{width:35.184000px;}
._25_c00426{width:36.360000px;}
._4_c00426{width:41.760000px;}
._24_c00426{width:44.280000px;}
._2a_c00426{width:49.080000px;}
._16_c00426{width:51.960000px;}
._28_c00426{width:54.060000px;}
._2d_c00426{width:62.340000px;}
._d_c00426{width:73.080000px;}
._29_c00426{width:80.940000px;}
._2e_c00426{width:111.300000px;}
._7_c00426{width:473.040000px;}
.fc2_c00426{color:transparent;}
.fc1_c00426{color:rgb(128,128,128);}
.fc0_c00426{color:rgb(0,0,0);}
.fs6_c00426{font-size:24.000000px;}
.fs2_c00426{font-size:42.000000px;}
.fs3_c00426{font-size:45.000000px;}
.fs1_c00426{font-size:48.000000px;}
.fs5_c00426{font-size:54.000000px;}
.fs7_c00426{font-size:57.000000px;}
.fs0_c00426{font-size:60.000000px;}
.fs4_c00426{font-size:69.000000px;}
.y0_c00426{bottom:0.000000px;}
.y4a_c00426{bottom:3.105000px;}
.y49_c00426{bottom:7.228355px;}
.y48_c00426{bottom:50.985000px;}
.y40_c00426{bottom:52.635000px;}
.y47_c00426{bottom:69.735000px;}
.y3f_c00426{bottom:72.435000px;}
.y3e_c00426{bottom:90.135000px;}
.y46_c00426{bottom:106.185000px;}
.y3d_c00426{bottom:107.235000px;}
.y45_c00426{bottom:124.485000px;}
.y3c_c00426{bottom:125.535000px;}
.y44_c00426{bottom:142.785000px;}
.y3b_c00426{bottom:143.985000px;}
.y43_c00426{bottom:160.335000px;}
.y3a_c00426{bottom:161.685000px;}
.y42_c00426{bottom:179.085000px;}
.y39_c00426{bottom:180.585000px;}
.y38_c00426{bottom:198.435000px;}
.y41_c00426{bottom:214.635000px;}
.y18_c00426{bottom:215.535000px;}
.y37_c00426{bottom:217.335000px;}
.y17_c00426{bottom:233.235000px;}
.y36_c00426{bottom:235.185000px;}
.y35_c00426{bottom:252.435000px;}
.y34_c00426{bottom:270.285000px;}
.y33_c00426{bottom:287.235000px;}
.y29_c00426{bottom:289.485000px;}
.y32_c00426{bottom:305.985000px;}
.y28_c00426{bottom:306.735000px;}
.y31_c00426{bottom:323.235000px;}
.y27_c00426{bottom:325.035000px;}
.y30_c00426{bottom:341.085000px;}
.y26_c00426{bottom:343.785000px;}
.y2f_c00426{bottom:359.085000px;}
.y25_c00426{bottom:361.035000px;}
.y2e_c00426{bottom:377.985000px;}
.y24_c00426{bottom:379.635000px;}
.y2d_c00426{bottom:395.835000px;}
.y23_c00426{bottom:398.235000px;}
.y2c_c00426{bottom:415.035000px;}
.y22_c00426{bottom:416.385000px;}
.y2b_c00426{bottom:431.685000px;}
.y21_c00426{bottom:433.935000px;}
.y2a_c00426{bottom:450.585000px;}
.y20_c00426{bottom:452.235000px;}
.y1f_c00426{bottom:469.035000px;}
.y1e_c00426{bottom:487.635000px;}
.y1d_c00426{bottom:505.785000px;}
.y1c_c00426{bottom:522.135000px;}
.y1b_c00426{bottom:541.335000px;}
.y1a_c00426{bottom:559.185000px;}
.y16_c00426{bottom:576.435000px;}
.y19_c00426{bottom:577.485000px;}
.yc_c00426{bottom:595.635000px;}
.yb_c00426{bottom:613.785000px;}
.y15_c00426{bottom:613.935000px;}
.y14_c00426{bottom:631.485000px;}
.ya_c00426{bottom:631.785000px;}
.y13_c00426{bottom:649.635000px;}
.y9_c00426{bottom:649.935000px;}
.y12_c00426{bottom:667.935000px;}
.y8_c00426{bottom:668.235000px;}
.y11_c00426{bottom:685.785000px;}
.y7_c00426{bottom:686.385000px;}
.y10_c00426{bottom:703.935000px;}
.y6_c00426{bottom:704.385000px;}
.yf_c00426{bottom:721.935000px;}
.y5_c00426{bottom:723.285000px;}
.ye_c00426{bottom:740.385000px;}
.y4_c00426{bottom:741.435000px;}
.yd_c00426{bottom:758.685000px;}
.y3_c00426{bottom:759.585000px;}
.y2_c00426{bottom:777.585000px;}
.y1_c00426{bottom:797.385000px;}
.h5_c00426{height:13.200074px;}
.h6_c00426{height:43.804688px;}
.h2_c00426{height:62.880000px;}
.h3_c00426{height:64.020000px;}
.h4_c00426{height:72.312000px;}
.h0_c00426{height:849.675000px;}
.h1_c00426{height:849.750000px;}
.w2_c00426{width:104.875500px;}
.w1_c00426{width:579.750000px;}
.w0_c00426{width:579.975000px;}
.x0_c00426{left:0.000000px;}
.xa_c00426{left:20.550000px;}
.x6_c00426{left:21.600000px;}
.xb_c00426{left:24.600000px;}
.x3_c00426{left:78.600000px;}
.x4_c00426{left:79.650000px;}
.x2_c00426{left:81.300000px;}
.xc_c00426{left:82.650000px;}
.xd_c00426{left:83.700000px;}
.xe_c00426{left:84.750000px;}
.xf_c00426{left:86.850000px;}
.x10_c00426{left:88.350000px;}
.x11_c00426{left:90.000000px;}
.x5_c00426{left:99.450000px;}
.x1_c00426{left:213.300000px;}
.x1a_c00426{left:241.801758px;}
.x7_c00426{left:297.000000px;}
.x8_c00426{left:301.950000px;}
.x9_c00426{left:304.350000px;}
.x14_c00426{left:305.400000px;}
.x13_c00426{left:306.450000px;}
.x15_c00426{left:317.250000px;}
.x16_c00426{left:334.350000px;}
.x19_c00426{left:338.100000px;}
.x12_c00426{left:369.600000px;}
.x18_c00426{left:375.300000px;}
.x17_c00426{left:378.600000px;}
@media print{
.v0_c00426{vertical-align:0.000000pt;}
.lsb_c00426{letter-spacing:-5.333333pt;}
.ls9_c00426{letter-spacing:0.000000pt;}
.ls5_c00426{letter-spacing:1.066667pt;}
.ls0_c00426{letter-spacing:2.493333pt;}
.ls8_c00426{letter-spacing:2.666667pt;}
.ls7_c00426{letter-spacing:5.333333pt;}
.ls1_c00426{letter-spacing:6.933333pt;}
.lsa_c00426{letter-spacing:8.000000pt;}
.ls3_c00426{letter-spacing:11.026667pt;}
.ls4_c00426{letter-spacing:14.560000pt;}
.ls2_c00426{letter-spacing:18.613333pt;}
.ls6_c00426{letter-spacing:49.285333pt;}
.ws5_c00426{word-spacing:-20.586667pt;}
.ws3_c00426{word-spacing:-19.808000pt;}
.ws1_c00426{word-spacing:-16.053333pt;}
.ws6_c00426{word-spacing:-13.994667pt;}
.ws8_c00426{word-spacing:-13.333333pt;}
.ws2_c00426{word-spacing:-12.586667pt;}
.ws7_c00426{word-spacing:-8.000000pt;}
.wsa_c00426{word-spacing:0.000000pt;}
.ws9_c00426{word-spacing:1.013333pt;}
.ws0_c00426{word-spacing:1.685333pt;}
.ws4_c00426{word-spacing:1.813333pt;}
._1a_c00426{margin-left:-21.920000pt;}
._23_c00426{margin-left:-18.613333pt;}
._26_c00426{margin-left:-16.426667pt;}
._1c_c00426{margin-left:-14.026667pt;}
._1b_c00426{margin-left:-12.586667pt;}
._30_c00426{margin-left:-11.573333pt;}
._21_c00426{margin-left:-10.560000pt;}
._20_c00426{margin-left:-9.440000pt;}
._1f_c00426{margin-left:-8.106667pt;}
._22_c00426{margin-left:-6.720000pt;}
._b_c00426{margin-left:-5.760000pt;}
._a_c00426{margin-left:-4.800000pt;}
._6_c00426{margin-left:-3.786667pt;}
._14_c00426{margin-left:-2.560000pt;}
._11_c00426{margin-left:-1.493333pt;}
._9_c00426{width:0.960000pt;}
._8_c00426{width:2.026667pt;}
._f_c00426{width:3.200000pt;}
._2c_c00426{width:4.106667pt;}
._1_c00426{width:5.013333pt;}
._0_c00426{width:6.080000pt;}
._c_c00426{width:7.360000pt;}
._e_c00426{width:8.266667pt;}
._18_c00426{width:9.226667pt;}
._17_c00426{width:10.133333pt;}
._13_c00426{width:11.840000pt;}
._19_c00426{width:12.746667pt;}
._10_c00426{width:14.240000pt;}
._2f_c00426{width:16.418667pt;}
._12_c00426{width:17.546667pt;}
._27_c00426{width:18.560000pt;}
._2b_c00426{width:19.520000pt;}
._1d_c00426{width:20.533333pt;}
._5_c00426{width:22.634667pt;}
._15_c00426{width:24.800000pt;}
._1e_c00426{width:26.720000pt;}
._2_c00426{width:27.925333pt;}
._3_c00426{width:31.274667pt;}
._25_c00426{width:32.320000pt;}
._4_c00426{width:37.120000pt;}
._24_c00426{width:39.360000pt;}
._2a_c00426{width:43.626667pt;}
._16_c00426{width:46.186667pt;}
._28_c00426{width:48.053333pt;}
._2d_c00426{width:55.413333pt;}
._d_c00426{width:64.960000pt;}
._29_c00426{width:71.946667pt;}
._2e_c00426{width:98.933333pt;}
._7_c00426{width:420.480000pt;}
.fs6_c00426{font-size:21.333333pt;}
.fs2_c00426{font-size:37.333333pt;}
.fs3_c00426{font-size:40.000000pt;}
.fs1_c00426{font-size:42.666667pt;}
.fs5_c00426{font-size:48.000000pt;}
.fs7_c00426{font-size:50.666667pt;}
.fs0_c00426{font-size:53.333333pt;}
.fs4_c00426{font-size:61.333333pt;}
.y0_c00426{bottom:0.000000pt;}
.y4a_c00426{bottom:2.760000pt;}
.y49_c00426{bottom:6.425204pt;}
.y48_c00426{bottom:45.320000pt;}
.y40_c00426{bottom:46.786667pt;}
.y47_c00426{bottom:61.986667pt;}
.y3f_c00426{bottom:64.386667pt;}
.y3e_c00426{bottom:80.120000pt;}
.y46_c00426{bottom:94.386667pt;}
.y3d_c00426{bottom:95.320000pt;}
.y45_c00426{bottom:110.653333pt;}
.y3c_c00426{bottom:111.586667pt;}
.y44_c00426{bottom:126.920000pt;}
.y3b_c00426{bottom:127.986667pt;}
.y43_c00426{bottom:142.520000pt;}
.y3a_c00426{bottom:143.720000pt;}
.y42_c00426{bottom:159.186667pt;}
.y39_c00426{bottom:160.520000pt;}
.y38_c00426{bottom:176.386667pt;}
.y41_c00426{bottom:190.786667pt;}
.y18_c00426{bottom:191.586667pt;}
.y37_c00426{bottom:193.186667pt;}
.y17_c00426{bottom:207.320000pt;}
.y36_c00426{bottom:209.053333pt;}
.y35_c00426{bottom:224.386667pt;}
.y34_c00426{bottom:240.253333pt;}
.y33_c00426{bottom:255.320000pt;}
.y29_c00426{bottom:257.320000pt;}
.y32_c00426{bottom:271.986667pt;}
.y28_c00426{bottom:272.653333pt;}
.y31_c00426{bottom:287.320000pt;}
.y27_c00426{bottom:288.920000pt;}
.y30_c00426{bottom:303.186667pt;}
.y26_c00426{bottom:305.586667pt;}
.y2f_c00426{bottom:319.186667pt;}
.y25_c00426{bottom:320.920000pt;}
.y2e_c00426{bottom:335.986667pt;}
.y24_c00426{bottom:337.453333pt;}
.y2d_c00426{bottom:351.853333pt;}
.y23_c00426{bottom:353.986667pt;}
.y2c_c00426{bottom:368.920000pt;}
.y22_c00426{bottom:370.120000pt;}
.y2b_c00426{bottom:383.720000pt;}
.y21_c00426{bottom:385.720000pt;}
.y2a_c00426{bottom:400.520000pt;}
.y20_c00426{bottom:401.986667pt;}
.y1f_c00426{bottom:416.920000pt;}
.y1e_c00426{bottom:433.453333pt;}
.y1d_c00426{bottom:449.586667pt;}
.y1c_c00426{bottom:464.120000pt;}
.y1b_c00426{bottom:481.186667pt;}
.y1a_c00426{bottom:497.053333pt;}
.y16_c00426{bottom:512.386667pt;}
.y19_c00426{bottom:513.320000pt;}
.yc_c00426{bottom:529.453333pt;}
.yb_c00426{bottom:545.586667pt;}
.y15_c00426{bottom:545.720000pt;}
.y14_c00426{bottom:561.320000pt;}
.ya_c00426{bottom:561.586667pt;}
.y13_c00426{bottom:577.453333pt;}
.y9_c00426{bottom:577.720000pt;}
.y12_c00426{bottom:593.720000pt;}
.y8_c00426{bottom:593.986667pt;}
.y11_c00426{bottom:609.586667pt;}
.y7_c00426{bottom:610.120000pt;}
.y10_c00426{bottom:625.720000pt;}
.y6_c00426{bottom:626.120000pt;}
.yf_c00426{bottom:641.720000pt;}
.y5_c00426{bottom:642.920000pt;}
.ye_c00426{bottom:658.120000pt;}
.y4_c00426{bottom:659.053333pt;}
.yd_c00426{bottom:674.386667pt;}
.y3_c00426{bottom:675.186667pt;}
.y2_c00426{bottom:691.186667pt;}
.y1_c00426{bottom:708.786667pt;}
.h5_c00426{height:11.733399pt;}
.h6_c00426{height:38.937500pt;}
.h2_c00426{height:55.893333pt;}
.h3_c00426{height:56.906667pt;}
.h4_c00426{height:64.277333pt;}
.h0_c00426{height:755.266667pt;}
.h1_c00426{height:755.333333pt;}
.w2_c00426{width:93.222667pt;}
.w1_c00426{width:515.333333pt;}
.w0_c00426{width:515.533333pt;}
.x0_c00426{left:0.000000pt;}
.xa_c00426{left:18.266667pt;}
.x6_c00426{left:19.200000pt;}
.xb_c00426{left:21.866667pt;}
.x3_c00426{left:69.866667pt;}
.x4_c00426{left:70.800000pt;}
.x2_c00426{left:72.266667pt;}
.xc_c00426{left:73.466667pt;}
.xd_c00426{left:74.400000pt;}
.xe_c00426{left:75.333333pt;}
.xf_c00426{left:77.200000pt;}
.x10_c00426{left:78.533333pt;}
.x11_c00426{left:80.000000pt;}
.x5_c00426{left:88.400000pt;}
.x1_c00426{left:189.600000pt;}
.x1a_c00426{left:214.934896pt;}
.x7_c00426{left:264.000000pt;}
.x8_c00426{left:268.400000pt;}
.x9_c00426{left:270.533333pt;}
.x14_c00426{left:271.466667pt;}
.x13_c00426{left:272.400000pt;}
.x15_c00426{left:282.000000pt;}
.x16_c00426{left:297.200000pt;}
.x19_c00426{left:300.533333pt;}
.x12_c00426{left:328.533333pt;}
.x18_c00426{left:333.600000pt;}
.x17_c00426{left:336.533333pt;}
}





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

.ir_c00427:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00427{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00427;src:url('chunks/assets/font_4a65165ed49d88efe8dd6bfd.woff2')format("woff");}.ff1_c00427{font-family:ff1_c00427;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00427;src:url('chunks/assets/font_ad4f145b50ff0a4410b2eb60.woff2')format("woff");}.ff2_c00427{font-family:ff2_c00427;line-height:1.437000;font-style:normal;font-weight:normal;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_2c583e3039c956a7b27b8ee6.woff2')format("woff");}.ff3_c00427{font-family:ff3_c00427;line-height:1.437000;font-style:normal;font-weight:normal;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_ca8bd925c57641cb411d9b8e.woff2')format("woff");}.ff4_c00427{font-family:ff4_c00427;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00427;src:url('chunks/assets/font_b86543d8596e69454c16ce6e.woff2')format("woff");}.ff5_c00427{font-family:ff5_c00427;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00427;src:url('chunks/assets/font_a1b25737dcb70f349502ab6e.woff2')format("woff");}.ff6_c00427{font-family:ff6_c00427;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00427;src:url('chunks/assets/font_d66f726985ea91e1fcf950fd.woff2')format("woff");}.ff7_c00427{font-family:ff7_c00427;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00427;src:url('chunks/assets/font_ad86f15d8a174723697a4f12.woff2')format("woff");}.ff8_c00427{font-family:ff8_c00427;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00427;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff9_c00427{font-family:ff9_c00427;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00427{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00427{vertical-align:0.000000px;}
.lsc_c00427{letter-spacing:-3.000000px;}
.lsa_c00427{letter-spacing:0.000000px;}
.ls8_c00427{letter-spacing:2.070000px;}
.ls4_c00427{letter-spacing:2.400000px;}
.ls0_c00427{letter-spacing:3.000000px;}
.ls2_c00427{letter-spacing:5.805000px;}
.ls5_c00427{letter-spacing:6.000000px;}
.lsb_c00427{letter-spacing:9.000000px;}
.ls3_c00427{letter-spacing:10.200000px;}
.ls7_c00427{letter-spacing:12.000000px;}
.ls9_c00427{letter-spacing:15.000000px;}
.ls1_c00427{letter-spacing:16.605000px;}
.ls6_c00427{letter-spacing:32.400000px;}
.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;}
}
.ws5_c00427{word-spacing:-35.295000px;}
.ws0_c00427{word-spacing:-33.000000px;}
.ws9_c00427{word-spacing:-26.160000px;}
.ws1_c00427{word-spacing:-23.427000px;}
.wsc_c00427{word-spacing:-20.340000px;}
.ws7_c00427{word-spacing:-18.060000px;}
.ws6_c00427{word-spacing:-18.000000px;}
.ws8_c00427{word-spacing:-15.000000px;}
.wsa_c00427{word-spacing:-14.868000px;}
.ws2_c00427{word-spacing:-14.427000px;}
.ws3_c00427{word-spacing:-14.160000px;}
.wsb_c00427{word-spacing:-11.340000px;}
.wsd_c00427{word-spacing:0.000000px;}
.ws4_c00427{word-spacing:6.540000px;}
._27_c00427{margin-left:-24.396000px;}
._30_c00427{margin-left:-22.185000px;}
._21_c00427{margin-left:-19.920000px;}
._28_c00427{margin-left:-18.105000px;}
._2f_c00427{margin-left:-16.638000px;}
._1a_c00427{margin-left:-15.558000px;}
._16_c00427{margin-left:-14.055000px;}
._d_c00427{margin-left:-12.180000px;}
._17_c00427{margin-left:-10.251000px;}
._2d_c00427{margin-left:-9.045000px;}
._b_c00427{margin-left:-7.980000px;}
._2e_c00427{margin-left:-6.942000px;}
._13_c00427{margin-left:-5.922000px;}
._8_c00427{margin-left:-4.536000px;}
._7_c00427{margin-left:-2.961000px;}
._0_c00427{margin-left:-1.584000px;}
._4_c00427{width:1.800000px;}
._3_c00427{width:3.024000px;}
._2_c00427{width:4.104000px;}
._5_c00427{width:5.616000px;}
._15_c00427{width:6.705000px;}
._1f_c00427{width:8.088000px;}
._f_c00427{width:9.954000px;}
._9_c00427{width:11.577000px;}
._12_c00427{width:12.756000px;}
._14_c00427{width:14.742000px;}
._18_c00427{width:16.128000px;}
._a_c00427{width:17.388000px;}
._19_c00427{width:20.733000px;}
._1e_c00427{width:22.302000px;}
._20_c00427{width:24.360000px;}
._c_c00427{width:26.340000px;}
._1_c00427{width:28.368000px;}
._1b_c00427{width:30.120000px;}
._1c_c00427{width:32.016000px;}
._2c_c00427{width:33.588000px;}
._e_c00427{width:34.740000px;}
._1d_c00427{width:38.184000px;}
._25_c00427{width:41.637000px;}
._29_c00427{width:44.640000px;}
._2b_c00427{width:50.316000px;}
._31_c00427{width:61.017000px;}
._2a_c00427{width:66.216000px;}
._6_c00427{width:77.766000px;}
._26_c00427{width:105.936000px;}
._11_c00427{width:115.560000px;}
._24_c00427{width:128.484000px;}
._10_c00427{width:142.857000px;}
._22_c00427{width:161.940000px;}
._23_c00427{width:235.908000px;}
.fc2_c00427{color:transparent;}
.fc1_c00427{color:rgb(128,128,128);}
.fc0_c00427{color:rgb(0,0,0);}
.fs4_c00427{font-size:45.000000px;}
.fs3_c00427{font-size:48.000000px;}
.fs2_c00427{font-size:60.000000px;}
.fs1_c00427{font-size:63.000000px;}
.fs0_c00427{font-size:72.000000px;}
.fs5_c00427{font-size:108.000000px;}
.y0_c00427{bottom:0.000000px;}
.y53_c00427{bottom:3.105000px;}
.y52_c00427{bottom:7.228363px;}
.y51_c00427{bottom:27.600000px;}
.y35_c00427{bottom:45.150000px;}
.y50_c00427{bottom:45.900000px;}
.y34_c00427{bottom:64.350000px;}
.y4f_c00427{bottom:65.100000px;}
.y33_c00427{bottom:83.250000px;}
.y4e_c00427{bottom:84.300000px;}
.y32_c00427{bottom:100.800000px;}
.y4d_c00427{bottom:101.550000px;}
.y31_c00427{bottom:118.500000px;}
.y4c_c00427{bottom:119.700000px;}
.y30_c00427{bottom:137.250000px;}
.y4b_c00427{bottom:138.000000px;}
.y2f_c00427{bottom:154.950000px;}
.y4a_c00427{bottom:156.150000px;}
.y2e_c00427{bottom:173.100000px;}
.y49_c00427{bottom:174.150000px;}
.y2d_c00427{bottom:191.400000px;}
.y48_c00427{bottom:192.000000px;}
.y47_c00427{bottom:209.850000px;}
.y2c_c00427{bottom:210.150000px;}
.y2b_c00427{bottom:228.450000px;}
.y46_c00427{bottom:246.000000px;}
.y2a_c00427{bottom:247.050000px;}
.y45_c00427{bottom:263.850000px;}
.y29_c00427{bottom:264.600000px;}
.y28_c00427{bottom:281.850000px;}
.y44_c00427{bottom:282.750000px;}
.y27_c00427{bottom:299.700000px;}
.y43_c00427{bottom:300.300000px;}
.y42_c00427{bottom:318.300000px;}
.y26_c00427{bottom:318.600000px;}
.y41_c00427{bottom:337.050000px;}
.y25_c00427{bottom:337.200000px;}
.y24_c00427{bottom:355.050000px;}
.y40_c00427{bottom:355.350000px;}
.y23_c00427{bottom:372.600000px;}
.y3f_c00427{bottom:373.200000px;}
.y22_c00427{bottom:391.200000px;}
.y3e_c00427{bottom:392.100000px;}
.y21_c00427{bottom:408.750000px;}
.y3d_c00427{bottom:410.100000px;}
.y20_c00427{bottom:427.500000px;}
.y1f_c00427{bottom:445.200000px;}
.y3c_c00427{bottom:446.100000px;}
.y1e_c00427{bottom:463.350000px;}
.y3b_c00427{bottom:464.400000px;}
.y1d_c00427{bottom:481.650000px;}
.y3a_c00427{bottom:482.250000px;}
.y1c_c00427{bottom:499.800000px;}
.y39_c00427{bottom:500.100000px;}
.y1b_c00427{bottom:517.950000px;}
.y38_c00427{bottom:518.100000px;}
.y1a_c00427{bottom:535.650000px;}
.y37_c00427{bottom:536.850000px;}
.y19_c00427{bottom:553.800000px;}
.y36_c00427{bottom:554.550000px;}
.y18_c00427{bottom:571.950000px;}
.yd_c00427{bottom:573.300000px;}
.y17_c00427{bottom:590.250000px;}
.yc_c00427{bottom:590.850000px;}
.y16_c00427{bottom:608.550000px;}
.yb_c00427{bottom:609.150000px;}
.y15_c00427{bottom:625.950000px;}
.ya_c00427{bottom:627.450000px;}
.y14_c00427{bottom:643.950000px;}
.y9_c00427{bottom:645.750000px;}
.y13_c00427{bottom:662.100000px;}
.y8_c00427{bottom:663.300000px;}
.y12_c00427{bottom:680.700000px;}
.y7_c00427{bottom:682.050000px;}
.y11_c00427{bottom:698.550000px;}
.y6_c00427{bottom:700.050000px;}
.y10_c00427{bottom:717.150000px;}
.y5_c00427{bottom:717.750000px;}
.yf_c00427{bottom:735.450000px;}
.y4_c00427{bottom:736.350000px;}
.ye_c00427{bottom:753.300000px;}
.y3_c00427{bottom:756.300000px;}
.y2_c00427{bottom:771.900000px;}
.y1_c00427{bottom:791.700000px;}
.h6_c00427{height:13.200074px;}
.h7_c00427{height:43.804688px;}
.h3_c00427{height:62.880000px;}
.h4_c00427{height:64.020000px;}
.h2_c00427{height:66.024000px;}
.h1_c00427{height:70.664062px;}
.h5_c00427{height:115.236000px;}
.h0_c00427{height:837.000000px;}
.w2_c00427{width:104.875500px;}
.w1_c00427{width:576.000000px;}
.w0_c00427{width:576.150000px;}
.x0_c00427{left:0.000000px;}
.xa_c00427{left:31.800000px;}
.xb_c00427{left:33.750000px;}
.xd_c00427{left:37.800000px;}
.xf_c00427{left:54.300000px;}
.x12_c00427{left:59.700000px;}
.x13_c00427{left:63.750000px;}
.x14_c00427{left:65.850000px;}
.x9_c00427{left:86.850000px;}
.x11_c00427{left:89.400000px;}
.x10_c00427{left:90.450000px;}
.xe_c00427{left:91.800000px;}
.xc_c00427{left:93.150000px;}
.x8_c00427{left:94.200000px;}
.x7_c00427{left:96.300000px;}
.x2_c00427{left:99.600000px;}
.x1_c00427{left:180.600000px;}
.x3_c00427{left:198.750000px;}
.x1c_c00427{left:239.889267px;}
.x1a_c00427{left:306.150000px;}
.x19_c00427{left:308.100000px;}
.x18_c00427{left:309.450000px;}
.x17_c00427{left:310.950000px;}
.x16_c00427{left:312.300000px;}
.x15_c00427{left:314.850000px;}
.x6_c00427{left:316.200000px;}
.x5_c00427{left:317.250000px;}
.x4_c00427{left:318.900000px;}
.x1b_c00427{left:463.350000px;}
@media print{
.v0_c00427{vertical-align:0.000000pt;}
.lsc_c00427{letter-spacing:-2.666667pt;}
.lsa_c00427{letter-spacing:0.000000pt;}
.ls8_c00427{letter-spacing:1.840000pt;}
.ls4_c00427{letter-spacing:2.133333pt;}
.ls0_c00427{letter-spacing:2.666667pt;}
.ls2_c00427{letter-spacing:5.160000pt;}
.ls5_c00427{letter-spacing:5.333333pt;}
.lsb_c00427{letter-spacing:8.000000pt;}
.ls3_c00427{letter-spacing:9.066667pt;}
.ls7_c00427{letter-spacing:10.666667pt;}
.ls9_c00427{letter-spacing:13.333333pt;}
.ls1_c00427{letter-spacing:14.760000pt;}
.ls6_c00427{letter-spacing:28.800000pt;}
.ws5_c00427{word-spacing:-31.373333pt;}
.ws0_c00427{word-spacing:-29.333333pt;}
.ws9_c00427{word-spacing:-23.253333pt;}
.ws1_c00427{word-spacing:-20.824000pt;}
.wsc_c00427{word-spacing:-18.080000pt;}
.ws7_c00427{word-spacing:-16.053333pt;}
.ws6_c00427{word-spacing:-16.000000pt;}
.ws8_c00427{word-spacing:-13.333333pt;}
.wsa_c00427{word-spacing:-13.216000pt;}
.ws2_c00427{word-spacing:-12.824000pt;}
.ws3_c00427{word-spacing:-12.586667pt;}
.wsb_c00427{word-spacing:-10.080000pt;}
.wsd_c00427{word-spacing:0.000000pt;}
.ws4_c00427{word-spacing:5.813333pt;}
._27_c00427{margin-left:-21.685333pt;}
._30_c00427{margin-left:-19.720000pt;}
._21_c00427{margin-left:-17.706667pt;}
._28_c00427{margin-left:-16.093333pt;}
._2f_c00427{margin-left:-14.789333pt;}
._1a_c00427{margin-left:-13.829333pt;}
._16_c00427{margin-left:-12.493333pt;}
._d_c00427{margin-left:-10.826667pt;}
._17_c00427{margin-left:-9.112000pt;}
._2d_c00427{margin-left:-8.040000pt;}
._b_c00427{margin-left:-7.093333pt;}
._2e_c00427{margin-left:-6.170667pt;}
._13_c00427{margin-left:-5.264000pt;}
._8_c00427{margin-left:-4.032000pt;}
._7_c00427{margin-left:-2.632000pt;}
._0_c00427{margin-left:-1.408000pt;}
._4_c00427{width:1.600000pt;}
._3_c00427{width:2.688000pt;}
._2_c00427{width:3.648000pt;}
._5_c00427{width:4.992000pt;}
._15_c00427{width:5.960000pt;}
._1f_c00427{width:7.189333pt;}
._f_c00427{width:8.848000pt;}
._9_c00427{width:10.290667pt;}
._12_c00427{width:11.338667pt;}
._14_c00427{width:13.104000pt;}
._18_c00427{width:14.336000pt;}
._a_c00427{width:15.456000pt;}
._19_c00427{width:18.429333pt;}
._1e_c00427{width:19.824000pt;}
._20_c00427{width:21.653333pt;}
._c_c00427{width:23.413333pt;}
._1_c00427{width:25.216000pt;}
._1b_c00427{width:26.773333pt;}
._1c_c00427{width:28.458667pt;}
._2c_c00427{width:29.856000pt;}
._e_c00427{width:30.880000pt;}
._1d_c00427{width:33.941333pt;}
._25_c00427{width:37.010667pt;}
._29_c00427{width:39.680000pt;}
._2b_c00427{width:44.725333pt;}
._31_c00427{width:54.237333pt;}
._2a_c00427{width:58.858667pt;}
._6_c00427{width:69.125333pt;}
._26_c00427{width:94.165333pt;}
._11_c00427{width:102.720000pt;}
._24_c00427{width:114.208000pt;}
._10_c00427{width:126.984000pt;}
._22_c00427{width:143.946667pt;}
._23_c00427{width:209.696000pt;}
.fs4_c00427{font-size:40.000000pt;}
.fs3_c00427{font-size:42.666667pt;}
.fs2_c00427{font-size:53.333333pt;}
.fs1_c00427{font-size:56.000000pt;}
.fs0_c00427{font-size:64.000000pt;}
.fs5_c00427{font-size:96.000000pt;}
.y0_c00427{bottom:0.000000pt;}
.y53_c00427{bottom:2.760000pt;}
.y52_c00427{bottom:6.425212pt;}
.y51_c00427{bottom:24.533333pt;}
.y35_c00427{bottom:40.133333pt;}
.y50_c00427{bottom:40.800000pt;}
.y34_c00427{bottom:57.200000pt;}
.y4f_c00427{bottom:57.866667pt;}
.y33_c00427{bottom:74.000000pt;}
.y4e_c00427{bottom:74.933333pt;}
.y32_c00427{bottom:89.600000pt;}
.y4d_c00427{bottom:90.266667pt;}
.y31_c00427{bottom:105.333333pt;}
.y4c_c00427{bottom:106.400000pt;}
.y30_c00427{bottom:122.000000pt;}
.y4b_c00427{bottom:122.666667pt;}
.y2f_c00427{bottom:137.733333pt;}
.y4a_c00427{bottom:138.800000pt;}
.y2e_c00427{bottom:153.866667pt;}
.y49_c00427{bottom:154.800000pt;}
.y2d_c00427{bottom:170.133333pt;}
.y48_c00427{bottom:170.666667pt;}
.y47_c00427{bottom:186.533333pt;}
.y2c_c00427{bottom:186.800000pt;}
.y2b_c00427{bottom:203.066667pt;}
.y46_c00427{bottom:218.666667pt;}
.y2a_c00427{bottom:219.600000pt;}
.y45_c00427{bottom:234.533333pt;}
.y29_c00427{bottom:235.200000pt;}
.y28_c00427{bottom:250.533333pt;}
.y44_c00427{bottom:251.333333pt;}
.y27_c00427{bottom:266.400000pt;}
.y43_c00427{bottom:266.933333pt;}
.y42_c00427{bottom:282.933333pt;}
.y26_c00427{bottom:283.200000pt;}
.y41_c00427{bottom:299.600000pt;}
.y25_c00427{bottom:299.733333pt;}
.y24_c00427{bottom:315.600000pt;}
.y40_c00427{bottom:315.866667pt;}
.y23_c00427{bottom:331.200000pt;}
.y3f_c00427{bottom:331.733333pt;}
.y22_c00427{bottom:347.733333pt;}
.y3e_c00427{bottom:348.533333pt;}
.y21_c00427{bottom:363.333333pt;}
.y3d_c00427{bottom:364.533333pt;}
.y20_c00427{bottom:380.000000pt;}
.y1f_c00427{bottom:395.733333pt;}
.y3c_c00427{bottom:396.533333pt;}
.y1e_c00427{bottom:411.866667pt;}
.y3b_c00427{bottom:412.800000pt;}
.y1d_c00427{bottom:428.133333pt;}
.y3a_c00427{bottom:428.666667pt;}
.y1c_c00427{bottom:444.266667pt;}
.y39_c00427{bottom:444.533333pt;}
.y1b_c00427{bottom:460.400000pt;}
.y38_c00427{bottom:460.533333pt;}
.y1a_c00427{bottom:476.133333pt;}
.y37_c00427{bottom:477.200000pt;}
.y19_c00427{bottom:492.266667pt;}
.y36_c00427{bottom:492.933333pt;}
.y18_c00427{bottom:508.400000pt;}
.yd_c00427{bottom:509.600000pt;}
.y17_c00427{bottom:524.666667pt;}
.yc_c00427{bottom:525.200000pt;}
.y16_c00427{bottom:540.933333pt;}
.yb_c00427{bottom:541.466667pt;}
.y15_c00427{bottom:556.400000pt;}
.ya_c00427{bottom:557.733333pt;}
.y14_c00427{bottom:572.400000pt;}
.y9_c00427{bottom:574.000000pt;}
.y13_c00427{bottom:588.533333pt;}
.y8_c00427{bottom:589.600000pt;}
.y12_c00427{bottom:605.066667pt;}
.y7_c00427{bottom:606.266667pt;}
.y11_c00427{bottom:620.933333pt;}
.y6_c00427{bottom:622.266667pt;}
.y10_c00427{bottom:637.466667pt;}
.y5_c00427{bottom:638.000000pt;}
.yf_c00427{bottom:653.733333pt;}
.y4_c00427{bottom:654.533333pt;}
.ye_c00427{bottom:669.600000pt;}
.y3_c00427{bottom:672.266667pt;}
.y2_c00427{bottom:686.133333pt;}
.y1_c00427{bottom:703.733333pt;}
.h6_c00427{height:11.733399pt;}
.h7_c00427{height:38.937500pt;}
.h3_c00427{height:55.893333pt;}
.h4_c00427{height:56.906667pt;}
.h2_c00427{height:58.688000pt;}
.h1_c00427{height:62.812500pt;}
.h5_c00427{height:102.432000pt;}
.h0_c00427{height:744.000000pt;}
.w2_c00427{width:93.222667pt;}
.w1_c00427{width:512.000000pt;}
.w0_c00427{width:512.133333pt;}
.x0_c00427{left:0.000000pt;}
.xa_c00427{left:28.266667pt;}
.xb_c00427{left:30.000000pt;}
.xd_c00427{left:33.600000pt;}
.xf_c00427{left:48.266667pt;}
.x12_c00427{left:53.066667pt;}
.x13_c00427{left:56.666667pt;}
.x14_c00427{left:58.533333pt;}
.x9_c00427{left:77.200000pt;}
.x11_c00427{left:79.466667pt;}
.x10_c00427{left:80.400000pt;}
.xe_c00427{left:81.600000pt;}
.xc_c00427{left:82.800000pt;}
.x8_c00427{left:83.733333pt;}
.x7_c00427{left:85.600000pt;}
.x2_c00427{left:88.533333pt;}
.x1_c00427{left:160.533333pt;}
.x3_c00427{left:176.666667pt;}
.x1c_c00427{left:213.234904pt;}
.x1a_c00427{left:272.133333pt;}
.x19_c00427{left:273.866667pt;}
.x18_c00427{left:275.066667pt;}
.x17_c00427{left:276.400000pt;}
.x16_c00427{left:277.600000pt;}
.x15_c00427{left:279.866667pt;}
.x6_c00427{left:281.066667pt;}
.x5_c00427{left:282.000000pt;}
.x4_c00427{left:283.466667pt;}
.x1b_c00427{left:411.866667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_7812c73679b3ce2ca2ff99f4.woff2')format("woff");}.ff1_c00428{font-family:ff1_c00428;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00428;src:url('chunks/assets/font_a66408ec40e6ecbb1245b698.woff2')format("woff");}.ff2_c00428{font-family:ff2_c00428;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00428;src:url('chunks/assets/font_0ce391de997f24f9f9dd37f4.woff2')format("woff");}.ff3_c00428{font-family:ff3_c00428;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00428;src:url('chunks/assets/font_9ea31c23f45349c9fb2fce61.woff2')format("woff");}.ff4_c00428{font-family:ff4_c00428;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00428;src:url('chunks/assets/font_bc164e7b17daf67ace9603d4.woff2')format("woff");}.ff5_c00428{font-family:ff5_c00428;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00428;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff6_c00428{font-family:ff6_c00428;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00428{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00428{vertical-align:0.000000px;}
.ls6_c00428{letter-spacing:0.000000px;}
.ls4_c00428{letter-spacing:2.400000px;}
.ls2_c00428{letter-spacing:3.000000px;}
.ls1_c00428{letter-spacing:10.200000px;}
.ls3_c00428{letter-spacing:18.600000px;}
.ls5_c00428{letter-spacing:24.000000px;}
.ls0_c00428{letter-spacing:25.005000px;}
.sc__c00428{text-shadow:none;}
.sc0_c00428{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00428{-webkit-text-stroke:0px transparent;}
.sc0_c00428{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00428{word-spacing:-39.780000px;}
.ws2_c00428{word-spacing:-32.424000px;}
.ws4_c00428{word-spacing:-20.340000px;}
.ws1_c00428{word-spacing:-18.060000px;}
.ws0_c00428{word-spacing:-14.160000px;}
.ws5_c00428{word-spacing:0.000000px;}
._3a_c00428{margin-left:-26.280000px;}
._1d_c00428{margin-left:-20.460000px;}
._9_c00428{margin-left:-18.660000px;}
._22_c00428{margin-left:-16.680000px;}
._25_c00428{margin-left:-12.720000px;}
._28_c00428{margin-left:-11.520000px;}
._2b_c00428{margin-left:-9.720000px;}
._10_c00428{margin-left:-7.740000px;}
._17_c00428{margin-left:-6.660000px;}
._e_c00428{margin-left:-5.580000px;}
._13_c00428{margin-left:-4.560000px;}
._f_c00428{margin-left:-3.300000px;}
._1c_c00428{margin-left:-2.160000px;}
._14_c00428{margin-left:-1.020000px;}
._8_c00428{width:1.440000px;}
._5_c00428{width:2.460000px;}
._3_c00428{width:4.440000px;}
._4_c00428{width:6.240000px;}
._27_c00428{width:7.380000px;}
._6_c00428{width:8.400000px;}
._0_c00428{width:9.720000px;}
._2a_c00428{width:11.160000px;}
._18_c00428{width:12.240000px;}
._1a_c00428{width:13.260000px;}
._11_c00428{width:14.880000px;}
._1_c00428{width:16.320000px;}
._2_c00428{width:18.480000px;}
._19_c00428{width:19.560000px;}
._15_c00428{width:20.640000px;}
._21_c00428{width:21.660000px;}
._16_c00428{width:23.160000px;}
._b_c00428{width:24.780000px;}
._c_c00428{width:26.400000px;}
._29_c00428{width:27.420000px;}
._1f_c00428{width:28.500000px;}
._32_c00428{width:30.060000px;}
._33_c00428{width:31.320000px;}
._2f_c00428{width:32.700000px;}
._2d_c00428{width:35.220000px;}
._d_c00428{width:36.240000px;}
._23_c00428{width:37.740000px;}
._1e_c00428{width:39.600000px;}
._1b_c00428{width:41.100000px;}
._34_c00428{width:42.240000px;}
._12_c00428{width:44.040000px;}
._31_c00428{width:45.960000px;}
._a_c00428{width:47.100000px;}
._7_c00428{width:48.600000px;}
._37_c00428{width:49.740000px;}
._24_c00428{width:51.120000px;}
._36_c00428{width:52.620000px;}
._39_c00428{width:54.900000px;}
._38_c00428{width:57.180000px;}
._2e_c00428{width:63.240000px;}
._30_c00428{width:80.880000px;}
._2c_c00428{width:163.500000px;}
._35_c00428{width:167.220000px;}
._26_c00428{width:169.140000px;}
._3c_c00428{width:189.000000px;}
._3b_c00428{width:215.340000px;}
._20_c00428{width:503.280000px;}
.fc2_c00428{color:transparent;}
.fc1_c00428{color:rgb(128,128,128);}
.fc0_c00428{color:rgb(0,0,0);}
.fs1_c00428{font-size:45.000000px;}
.fs2_c00428{font-size:48.000000px;}
.fs0_c00428{font-size:60.000000px;}
.fs3_c00428{font-size:63.000000px;}
.y0_c00428{bottom:0.000000px;}
.y36_c00428{bottom:3.105000px;}
.y35_c00428{bottom:7.228363px;}
.y34_c00428{bottom:32.100000px;}
.y2c_c00428{bottom:47.250000px;}
.y33_c00428{bottom:49.950000px;}
.y2b_c00428{bottom:66.450000px;}
.y32_c00428{bottom:68.850000px;}
.y2a_c00428{bottom:84.150000px;}
.y31_c00428{bottom:86.850000px;}
.y29_c00428{bottom:102.300000px;}
.y30_c00428{bottom:105.000000px;}
.y28_c00428{bottom:120.600000px;}
.y2f_c00428{bottom:122.550000px;}
.y27_c00428{bottom:138.450000px;}
.y2e_c00428{bottom:140.850000px;}
.y26_c00428{bottom:157.350000px;}
.y2d_c00428{bottom:159.300000px;}
.y25_c00428{bottom:175.800000px;}
.y22_c00428{bottom:175.950000px;}
.y21_c00428{bottom:194.100000px;}
.y20_c00428{bottom:212.700000px;}
.y1f_c00428{bottom:229.950000px;}
.y1e_c00428{bottom:248.700000px;}
.y1d_c00428{bottom:267.000000px;}
.y1c_c00428{bottom:284.850000px;}
.y1b_c00428{bottom:302.850000px;}
.y1a_c00428{bottom:321.600000px;}
.y19_c00428{bottom:339.150000px;}
.y18_c00428{bottom:357.150000px;}
.y17_c00428{bottom:375.000000px;}
.y16_c00428{bottom:393.300000px;}
.y24_c00428{bottom:405.450000px;}
.y15_c00428{bottom:411.150000px;}
.y14_c00428{bottom:429.000000px;}
.y13_c00428{bottom:447.150000px;}
.y23_c00428{bottom:461.100000px;}
.y12_c00428{bottom:465.150000px;}
.y11_c00428{bottom:483.600000px;}
.y10_c00428{bottom:501.150000px;}
.yf_c00428{bottom:518.400000px;}
.ye_c00428{bottom:536.700000px;}
.yd_c00428{bottom:554.550000px;}
.yc_c00428{bottom:571.800000px;}
.yb_c00428{bottom:590.250000px;}
.ya_c00428{bottom:609.150000px;}
.y9_c00428{bottom:627.150000px;}
.y8_c00428{bottom:645.600000px;}
.y7_c00428{bottom:663.750000px;}
.y6_c00428{bottom:681.000000px;}
.y5_c00428{bottom:699.750000px;}
.y4_c00428{bottom:717.750000px;}
.y3_c00428{bottom:736.500000px;}
.y2_c00428{bottom:754.350000px;}
.y1_c00428{bottom:772.200000px;}
.h5_c00428{height:13.200074px;}
.h6_c00428{height:43.804688px;}
.h2_c00428{height:62.880000px;}
.h3_c00428{height:64.020000px;}
.h4_c00428{height:66.024000px;}
.h0_c00428{height:839.700000px;}
.h1_c00428{height:840.000000px;}
.w2_c00428{width:104.875500px;}
.w0_c00428{width:572.925000px;}
.w1_c00428{width:573.000000px;}
.x0_c00428{left:0.000000px;}
.xd_c00428{left:5.400000px;}
.x9_c00428{left:7.200000px;}
.x8_c00428{left:26.700000px;}
.xf_c00428{left:65.250000px;}
.xb_c00428{left:66.450000px;}
.x5_c00428{left:68.550000px;}
.x1_c00428{left:69.600000px;}
.x3_c00428{left:70.950000px;}
.x4_c00428{left:72.000000px;}
.x7_c00428{left:73.050000px;}
.x6_c00428{left:79.350000px;}
.xe_c00428{left:87.150000px;}
.xa_c00428{left:108.150000px;}
.x2_c00428{left:123.150000px;}
.xc_c00428{left:134.100000px;}
.x13_c00428{left:238.276749px;}
.x11_c00428{left:282.900000px;}
.x10_c00428{left:283.950000px;}
.x12_c00428{left:382.800000px;}
@media print{
.v0_c00428{vertical-align:0.000000pt;}
.ls6_c00428{letter-spacing:0.000000pt;}
.ls4_c00428{letter-spacing:2.133333pt;}
.ls2_c00428{letter-spacing:2.666667pt;}
.ls1_c00428{letter-spacing:9.066667pt;}
.ls3_c00428{letter-spacing:16.533333pt;}
.ls5_c00428{letter-spacing:21.333333pt;}
.ls0_c00428{letter-spacing:22.226667pt;}
.ws3_c00428{word-spacing:-35.360000pt;}
.ws2_c00428{word-spacing:-28.821333pt;}
.ws4_c00428{word-spacing:-18.080000pt;}
.ws1_c00428{word-spacing:-16.053333pt;}
.ws0_c00428{word-spacing:-12.586667pt;}
.ws5_c00428{word-spacing:0.000000pt;}
._3a_c00428{margin-left:-23.360000pt;}
._1d_c00428{margin-left:-18.186667pt;}
._9_c00428{margin-left:-16.586667pt;}
._22_c00428{margin-left:-14.826667pt;}
._25_c00428{margin-left:-11.306667pt;}
._28_c00428{margin-left:-10.240000pt;}
._2b_c00428{margin-left:-8.640000pt;}
._10_c00428{margin-left:-6.880000pt;}
._17_c00428{margin-left:-5.920000pt;}
._e_c00428{margin-left:-4.960000pt;}
._13_c00428{margin-left:-4.053333pt;}
._f_c00428{margin-left:-2.933333pt;}
._1c_c00428{margin-left:-1.920000pt;}
._14_c00428{margin-left:-0.906667pt;}
._8_c00428{width:1.280000pt;}
._5_c00428{width:2.186667pt;}
._3_c00428{width:3.946667pt;}
._4_c00428{width:5.546667pt;}
._27_c00428{width:6.560000pt;}
._6_c00428{width:7.466667pt;}
._0_c00428{width:8.640000pt;}
._2a_c00428{width:9.920000pt;}
._18_c00428{width:10.880000pt;}
._1a_c00428{width:11.786667pt;}
._11_c00428{width:13.226667pt;}
._1_c00428{width:14.506667pt;}
._2_c00428{width:16.426667pt;}
._19_c00428{width:17.386667pt;}
._15_c00428{width:18.346667pt;}
._21_c00428{width:19.253333pt;}
._16_c00428{width:20.586667pt;}
._b_c00428{width:22.026667pt;}
._c_c00428{width:23.466667pt;}
._29_c00428{width:24.373333pt;}
._1f_c00428{width:25.333333pt;}
._32_c00428{width:26.720000pt;}
._33_c00428{width:27.840000pt;}
._2f_c00428{width:29.066667pt;}
._2d_c00428{width:31.306667pt;}
._d_c00428{width:32.213333pt;}
._23_c00428{width:33.546667pt;}
._1e_c00428{width:35.200000pt;}
._1b_c00428{width:36.533333pt;}
._34_c00428{width:37.546667pt;}
._12_c00428{width:39.146667pt;}
._31_c00428{width:40.853333pt;}
._a_c00428{width:41.866667pt;}
._7_c00428{width:43.200000pt;}
._37_c00428{width:44.213333pt;}
._24_c00428{width:45.440000pt;}
._36_c00428{width:46.773333pt;}
._39_c00428{width:48.800000pt;}
._38_c00428{width:50.826667pt;}
._2e_c00428{width:56.213333pt;}
._30_c00428{width:71.893333pt;}
._2c_c00428{width:145.333333pt;}
._35_c00428{width:148.640000pt;}
._26_c00428{width:150.346667pt;}
._3c_c00428{width:168.000000pt;}
._3b_c00428{width:191.413333pt;}
._20_c00428{width:447.360000pt;}
.fs1_c00428{font-size:40.000000pt;}
.fs2_c00428{font-size:42.666667pt;}
.fs0_c00428{font-size:53.333333pt;}
.fs3_c00428{font-size:56.000000pt;}
.y0_c00428{bottom:0.000000pt;}
.y36_c00428{bottom:2.760000pt;}
.y35_c00428{bottom:6.425212pt;}
.y34_c00428{bottom:28.533333pt;}
.y2c_c00428{bottom:42.000000pt;}
.y33_c00428{bottom:44.400000pt;}
.y2b_c00428{bottom:59.066667pt;}
.y32_c00428{bottom:61.200000pt;}
.y2a_c00428{bottom:74.800000pt;}
.y31_c00428{bottom:77.200000pt;}
.y29_c00428{bottom:90.933333pt;}
.y30_c00428{bottom:93.333333pt;}
.y28_c00428{bottom:107.200000pt;}
.y2f_c00428{bottom:108.933333pt;}
.y27_c00428{bottom:123.066667pt;}
.y2e_c00428{bottom:125.200000pt;}
.y26_c00428{bottom:139.866667pt;}
.y2d_c00428{bottom:141.600000pt;}
.y25_c00428{bottom:156.266667pt;}
.y22_c00428{bottom:156.400000pt;}
.y21_c00428{bottom:172.533333pt;}
.y20_c00428{bottom:189.066667pt;}
.y1f_c00428{bottom:204.400000pt;}
.y1e_c00428{bottom:221.066667pt;}
.y1d_c00428{bottom:237.333333pt;}
.y1c_c00428{bottom:253.200000pt;}
.y1b_c00428{bottom:269.200000pt;}
.y1a_c00428{bottom:285.866667pt;}
.y19_c00428{bottom:301.466667pt;}
.y18_c00428{bottom:317.466667pt;}
.y17_c00428{bottom:333.333333pt;}
.y16_c00428{bottom:349.600000pt;}
.y24_c00428{bottom:360.400000pt;}
.y15_c00428{bottom:365.466667pt;}
.y14_c00428{bottom:381.333333pt;}
.y13_c00428{bottom:397.466667pt;}
.y23_c00428{bottom:409.866667pt;}
.y12_c00428{bottom:413.466667pt;}
.y11_c00428{bottom:429.866667pt;}
.y10_c00428{bottom:445.466667pt;}
.yf_c00428{bottom:460.800000pt;}
.ye_c00428{bottom:477.066667pt;}
.yd_c00428{bottom:492.933333pt;}
.yc_c00428{bottom:508.266667pt;}
.yb_c00428{bottom:524.666667pt;}
.ya_c00428{bottom:541.466667pt;}
.y9_c00428{bottom:557.466667pt;}
.y8_c00428{bottom:573.866667pt;}
.y7_c00428{bottom:590.000000pt;}
.y6_c00428{bottom:605.333333pt;}
.y5_c00428{bottom:622.000000pt;}
.y4_c00428{bottom:638.000000pt;}
.y3_c00428{bottom:654.666667pt;}
.y2_c00428{bottom:670.533333pt;}
.y1_c00428{bottom:686.400000pt;}
.h5_c00428{height:11.733399pt;}
.h6_c00428{height:38.937500pt;}
.h2_c00428{height:55.893333pt;}
.h3_c00428{height:56.906667pt;}
.h4_c00428{height:58.688000pt;}
.h0_c00428{height:746.400000pt;}
.h1_c00428{height:746.666667pt;}
.w2_c00428{width:93.222667pt;}
.w0_c00428{width:509.266667pt;}
.w1_c00428{width:509.333333pt;}
.x0_c00428{left:0.000000pt;}
.xd_c00428{left:4.800000pt;}
.x9_c00428{left:6.400000pt;}
.x8_c00428{left:23.733333pt;}
.xf_c00428{left:58.000000pt;}
.xb_c00428{left:59.066667pt;}
.x5_c00428{left:60.933333pt;}
.x1_c00428{left:61.866667pt;}
.x3_c00428{left:63.066667pt;}
.x4_c00428{left:64.000000pt;}
.x7_c00428{left:64.933333pt;}
.x6_c00428{left:70.533333pt;}
.xe_c00428{left:77.466667pt;}
.xa_c00428{left:96.133333pt;}
.x2_c00428{left:109.466667pt;}
.xc_c00428{left:119.200000pt;}
.x13_c00428{left:211.801554pt;}
.x11_c00428{left:251.466667pt;}
.x10_c00428{left:252.400000pt;}
.x12_c00428{left:340.266667pt;}
}





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

.ir_c00429:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00429{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00429;src:url('chunks/assets/font_23ef694c4ee3e3371bc9dde6.woff2')format("woff");}.ff1_c00429{font-family:ff1_c00429;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00429;src:url('chunks/assets/font_d1c2dca60c42b95b07298aaf.woff2')format("woff");}.ff2_c00429{font-family:ff2_c00429;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00429;src:url('chunks/assets/font_d5189049e6117d9a89da1c1e.woff2')format("woff");}.ff3_c00429{font-family:ff3_c00429;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00429;src:url('chunks/assets/font_dee41c6726f7c94e386de757.woff2')format("woff");}.ff4_c00429{font-family:ff4_c00429;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00429;src:url('chunks/assets/font_65e646c94ba69b827829670b.woff2')format("woff");}.ff5_c00429{font-family:ff5_c00429;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_c00429;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff6_c00429{font-family:ff6_c00429;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:ff7_c00429;src:url('chunks/assets/font_106b3688e72a55b9fd3a7125.woff2')format("woff");}.ff7_c00429{font-family:ff7_c00429;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00429;src:url('chunks/assets/font_83a06e0c633628ee88da9559.woff2')format("woff");}.ff8_c00429{font-family:ff8_c00429;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00429;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff9_c00429{font-family:ff9_c00429;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00429{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00429{vertical-align:0.000000px;}
.v1_c00429{vertical-align:61.800000px;}
.ls7_c00429{letter-spacing:0.000000px;}
.ls4_c00429{letter-spacing:1.245000px;}
.ls2_c00429{letter-spacing:1.800000px;}
.ls1_c00429{letter-spacing:3.000000px;}
.ls8_c00429{letter-spacing:6.000000px;}
.ls0_c00429{letter-spacing:6.600000px;}
.ls6_c00429{letter-spacing:14.946000px;}
.ls5_c00429{letter-spacing:21.600000px;}
.ls3_c00429{letter-spacing:29.172000px;}
.sc__c00429{text-shadow:none;}
.sc0_c00429{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00429{-webkit-text-stroke:0px transparent;}
.sc0_c00429{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00429{word-spacing:-25.854000px;}
.ws3_c00429{word-spacing:-18.060000px;}
.ws1_c00429{word-spacing:-18.000000px;}
.ws2_c00429{word-spacing:-17.250000px;}
.ws6_c00429{word-spacing:-14.160000px;}
.ws4_c00429{word-spacing:-13.755000px;}
.ws5_c00429{word-spacing:-13.053000px;}
.ws7_c00429{word-spacing:-3.024000px;}
.ws8_c00429{word-spacing:0.000000px;}
._34_c00429{margin-left:-37.794000px;}
._19_c00429{margin-left:-33.228000px;}
._31_c00429{margin-left:-30.654000px;}
._30_c00429{margin-left:-28.677000px;}
._1b_c00429{margin-left:-26.877000px;}
._1a_c00429{margin-left:-25.203000px;}
._20_c00429{margin-left:-24.180000px;}
._1e_c00429{margin-left:-22.971000px;}
._21_c00429{margin-left:-21.762000px;}
._12_c00429{margin-left:-19.902000px;}
._13_c00429{margin-left:-17.856000px;}
._25_c00429{margin-left:-15.867000px;}
._1f_c00429{margin-left:-14.043000px;}
._1d_c00429{margin-left:-12.777000px;}
._1c_c00429{margin-left:-11.532000px;}
._26_c00429{margin-left:-10.134000px;}
._10_c00429{margin-left:-9.081000px;}
._c_c00429{margin-left:-7.836000px;}
._11_c00429{margin-left:-6.519000px;}
._18_c00429{margin-left:-5.370000px;}
._d_c00429{margin-left:-4.278000px;}
._e_c00429{margin-left:-2.574000px;}
._0_c00429{margin-left:-1.320000px;}
._a_c00429{width:1.038000px;}
._9_c00429{width:2.172000px;}
._2_c00429{width:3.630000px;}
._15_c00429{width:4.818000px;}
._3_c00429{width:5.874000px;}
._f_c00429{width:7.071000px;}
._7_c00429{width:8.316000px;}
._14_c00429{width:9.480000px;}
._17_c00429{width:10.488000px;}
._6_c00429{width:11.616000px;}
._2a_c00429{width:12.717000px;}
._33_c00429{width:14.046000px;}
._5_c00429{width:15.048000px;}
._16_c00429{width:16.245000px;}
._8_c00429{width:17.490000px;}
._23_c00429{width:20.361000px;}
._32_c00429{width:21.513000px;}
._36_c00429{width:22.902000px;}
._2c_c00429{width:24.426000px;}
._29_c00429{width:25.701000px;}
._28_c00429{width:29.466000px;}
._35_c00429{width:30.618000px;}
._4_c00429{width:34.188000px;}
._2e_c00429{width:36.138000px;}
._2b_c00429{width:38.901000px;}
._22_c00429{width:41.718000px;}
._2f_c00429{width:46.248000px;}
._2d_c00429{width:56.352000px;}
._b_c00429{width:76.746000px;}
._27_c00429{width:88.218000px;}
._24_c00429{width:90.552000px;}
._1_c00429{width:203.544000px;}
.fc2_c00429{color:transparent;}
.fc1_c00429{color:rgb(128,128,128);}
.fc0_c00429{color:rgb(0,0,0);}
.fs6_c00429{font-size:45.000000px;}
.fs9_c00429{font-size:48.000000px;}
.fs5_c00429{font-size:54.000000px;}
.fs7_c00429{font-size:57.000000px;}
.fs2_c00429{font-size:60.000000px;}
.fs1_c00429{font-size:66.000000px;}
.fs4_c00429{font-size:69.000000px;}
.fs0_c00429{font-size:72.000000px;}
.fs3_c00429{font-size:93.000000px;}
.fs8_c00429{font-size:156.000000px;}
.y0_c00429{bottom:0.000000px;}
.y56_c00429{bottom:3.105000px;}
.y55_c00429{bottom:7.228363px;}
.y54_c00429{bottom:30.300000px;}
.y2b_c00429{bottom:45.900000px;}
.y53_c00429{bottom:48.300000px;}
.y2a_c00429{bottom:64.500000px;}
.y52_c00429{bottom:67.050000px;}
.y29_c00429{bottom:82.650000px;}
.y51_c00429{bottom:85.050000px;}
.y28_c00429{bottom:100.950000px;}
.y50_c00429{bottom:103.500000px;}
.y27_c00429{bottom:119.400000px;}
.y4f_c00429{bottom:121.500000px;}
.y26_c00429{bottom:137.400000px;}
.y4e_c00429{bottom:139.950000px;}
.y25_c00429{bottom:156.150000px;}
.y4d_c00429{bottom:157.950000px;}
.y24_c00429{bottom:173.850000px;}
.y4c_c00429{bottom:176.400000px;}
.y23_c00429{bottom:192.000000px;}
.y4b_c00429{bottom:194.700000px;}
.y22_c00429{bottom:210.600000px;}
.y4a_c00429{bottom:212.550000px;}
.y21_c00429{bottom:228.450000px;}
.y49_c00429{bottom:230.400000px;}
.yb_c00429{bottom:245.700000px;}
.y20_c00429{bottom:246.750000px;}
.y48_c00429{bottom:249.300000px;}
.y1f_c00429{bottom:265.950000px;}
.y47_c00429{bottom:267.300000px;}
.y1e_c00429{bottom:283.050000px;}
.y46_c00429{bottom:285.450000px;}
.ya_c00429{bottom:299.700000px;}
.y1d_c00429{bottom:301.050000px;}
.y45_c00429{bottom:302.700000px;}
.y1c_c00429{bottom:319.500000px;}
.y9_c00429{bottom:319.950000px;}
.y44_c00429{bottom:320.550000px;}
.y1b_c00429{bottom:337.500000px;}
.y8_c00429{bottom:337.950000px;}
.y43_c00429{bottom:338.850000px;}
.y1a_c00429{bottom:356.100000px;}
.y42_c00429{bottom:357.450000px;}
.y19_c00429{bottom:374.850000px;}
.y41_c00429{bottom:375.300000px;}
.y18_c00429{bottom:377.100000px;}
.y40_c00429{bottom:393.450000px;}
.y3f_c00429{bottom:412.350000px;}
.y17_c00429{bottom:427.950000px;}
.y3e_c00429{bottom:430.200000px;}
.y16_c00429{bottom:446.100000px;}
.y3d_c00429{bottom:448.500000px;}
.y15_c00429{bottom:465.750000px;}
.y3c_c00429{bottom:466.650000px;}
.y14_c00429{bottom:483.000000px;}
.y3b_c00429{bottom:484.350000px;}
.y3a_c00429{bottom:502.200000px;}
.y13_c00429{bottom:519.000000px;}
.y39_c00429{bottom:520.650000px;}
.y38_c00429{bottom:537.600000px;}
.y12_c00429{bottom:553.500000px;}
.y37_c00429{bottom:557.100000px;}
.y11_c00429{bottom:572.700000px;}
.y36_c00429{bottom:575.400000px;}
.y10_c00429{bottom:590.850000px;}
.y35_c00429{bottom:592.950000px;}
.yf_c00429{bottom:609.750000px;}
.y34_c00429{bottom:611.250000px;}
.ye_c00429{bottom:627.000000px;}
.y33_c00429{bottom:629.400000px;}
.yd_c00429{bottom:645.600000px;}
.y32_c00429{bottom:647.250000px;}
.yc_c00429{bottom:663.900000px;}
.y31_c00429{bottom:666.150000px;}
.y7_c00429{bottom:682.200000px;}
.y30_c00429{bottom:684.150000px;}
.y6_c00429{bottom:700.050000px;}
.y2f_c00429{bottom:702.600000px;}
.y5_c00429{bottom:718.950000px;}
.y2e_c00429{bottom:720.600000px;}
.y4_c00429{bottom:736.800000px;}
.y2d_c00429{bottom:739.350000px;}
.y3_c00429{bottom:756.000000px;}
.y2c_c00429{bottom:756.900000px;}
.y2_c00429{bottom:775.200000px;}
.y1_c00429{bottom:795.450000px;}
.hd_c00429{height:13.200074px;}
.he_c00429{height:43.804688px;}
.h9_c00429{height:47.160000px;}
.h8_c00429{height:56.592000px;}
.hb_c00429{height:59.736000px;}
.h4_c00429{height:62.880000px;}
.h7_c00429{height:64.020000px;}
.ha_c00429{height:69.168000px;}
.h5_c00429{height:70.664062px;}
.h6_c00429{height:73.623000px;}
.h2_c00429{height:76.824000px;}
.h3_c00429{height:96.996094px;}
.hc_c00429{height:163.488000px;}
.h1_c00429{height:842.250000px;}
.h0_c00429{height:842.400000px;}
.w2_c00429{width:104.875500px;}
.w1_c00429{width:579.750000px;}
.w0_c00429{width:579.975000px;}
.x0_c00429{left:0.000000px;}
.x3_c00429{left:29.250000px;}
.x5_c00429{left:31.050000px;}
.x4_c00429{left:32.400000px;}
.x1_c00429{left:91.050000px;}
.x2_c00429{left:92.250000px;}
.x6_c00429{left:94.050000px;}
.xd_c00429{left:95.100000px;}
.xe_c00429{left:97.500000px;}
.x9_c00429{left:107.550000px;}
.x8_c00429{left:125.550000px;}
.xc_c00429{left:127.200000px;}
.xa_c00429{left:151.500000px;}
.x7_c00429{left:166.350000px;}
.xb_c00429{left:179.850000px;}
.x17_c00429{left:241.801758px;}
.x10_c00429{left:308.700000px;}
.xf_c00429{left:310.050000px;}
.x11_c00429{left:311.550000px;}
.x12_c00429{left:312.750000px;}
.x13_c00429{left:314.850000px;}
.x14_c00429{left:316.650000px;}
.x15_c00429{left:317.700000px;}
.x16_c00429{left:496.800000px;}
@media print{
.v0_c00429{vertical-align:0.000000pt;}
.v1_c00429{vertical-align:54.933333pt;}
.ls7_c00429{letter-spacing:0.000000pt;}
.ls4_c00429{letter-spacing:1.106667pt;}
.ls2_c00429{letter-spacing:1.600000pt;}
.ls1_c00429{letter-spacing:2.666667pt;}
.ls8_c00429{letter-spacing:5.333333pt;}
.ls0_c00429{letter-spacing:5.866667pt;}
.ls6_c00429{letter-spacing:13.285333pt;}
.ls5_c00429{letter-spacing:19.200000pt;}
.ls3_c00429{letter-spacing:25.930667pt;}
.ws0_c00429{word-spacing:-22.981333pt;}
.ws3_c00429{word-spacing:-16.053333pt;}
.ws1_c00429{word-spacing:-16.000000pt;}
.ws2_c00429{word-spacing:-15.333333pt;}
.ws6_c00429{word-spacing:-12.586667pt;}
.ws4_c00429{word-spacing:-12.226667pt;}
.ws5_c00429{word-spacing:-11.602667pt;}
.ws7_c00429{word-spacing:-2.688000pt;}
.ws8_c00429{word-spacing:0.000000pt;}
._34_c00429{margin-left:-33.594667pt;}
._19_c00429{margin-left:-29.536000pt;}
._31_c00429{margin-left:-27.248000pt;}
._30_c00429{margin-left:-25.490667pt;}
._1b_c00429{margin-left:-23.890667pt;}
._1a_c00429{margin-left:-22.402667pt;}
._20_c00429{margin-left:-21.493333pt;}
._1e_c00429{margin-left:-20.418667pt;}
._21_c00429{margin-left:-19.344000pt;}
._12_c00429{margin-left:-17.690667pt;}
._13_c00429{margin-left:-15.872000pt;}
._25_c00429{margin-left:-14.104000pt;}
._1f_c00429{margin-left:-12.482667pt;}
._1d_c00429{margin-left:-11.357333pt;}
._1c_c00429{margin-left:-10.250667pt;}
._26_c00429{margin-left:-9.008000pt;}
._10_c00429{margin-left:-8.072000pt;}
._c_c00429{margin-left:-6.965333pt;}
._11_c00429{margin-left:-5.794667pt;}
._18_c00429{margin-left:-4.773333pt;}
._d_c00429{margin-left:-3.802667pt;}
._e_c00429{margin-left:-2.288000pt;}
._0_c00429{margin-left:-1.173333pt;}
._a_c00429{width:0.922667pt;}
._9_c00429{width:1.930667pt;}
._2_c00429{width:3.226667pt;}
._15_c00429{width:4.282667pt;}
._3_c00429{width:5.221333pt;}
._f_c00429{width:6.285333pt;}
._7_c00429{width:7.392000pt;}
._14_c00429{width:8.426667pt;}
._17_c00429{width:9.322667pt;}
._6_c00429{width:10.325333pt;}
._2a_c00429{width:11.304000pt;}
._33_c00429{width:12.485333pt;}
._5_c00429{width:13.376000pt;}
._16_c00429{width:14.440000pt;}
._8_c00429{width:15.546667pt;}
._23_c00429{width:18.098667pt;}
._32_c00429{width:19.122667pt;}
._36_c00429{width:20.357333pt;}
._2c_c00429{width:21.712000pt;}
._29_c00429{width:22.845333pt;}
._28_c00429{width:26.192000pt;}
._35_c00429{width:27.216000pt;}
._4_c00429{width:30.389333pt;}
._2e_c00429{width:32.122667pt;}
._2b_c00429{width:34.578667pt;}
._22_c00429{width:37.082667pt;}
._2f_c00429{width:41.109333pt;}
._2d_c00429{width:50.090667pt;}
._b_c00429{width:68.218667pt;}
._27_c00429{width:78.416000pt;}
._24_c00429{width:80.490667pt;}
._1_c00429{width:180.928000pt;}
.fs6_c00429{font-size:40.000000pt;}
.fs9_c00429{font-size:42.666667pt;}
.fs5_c00429{font-size:48.000000pt;}
.fs7_c00429{font-size:50.666667pt;}
.fs2_c00429{font-size:53.333333pt;}
.fs1_c00429{font-size:58.666667pt;}
.fs4_c00429{font-size:61.333333pt;}
.fs0_c00429{font-size:64.000000pt;}
.fs3_c00429{font-size:82.666667pt;}
.fs8_c00429{font-size:138.666667pt;}
.y0_c00429{bottom:0.000000pt;}
.y56_c00429{bottom:2.760000pt;}
.y55_c00429{bottom:6.425212pt;}
.y54_c00429{bottom:26.933333pt;}
.y2b_c00429{bottom:40.800000pt;}
.y53_c00429{bottom:42.933333pt;}
.y2a_c00429{bottom:57.333333pt;}
.y52_c00429{bottom:59.600000pt;}
.y29_c00429{bottom:73.466667pt;}
.y51_c00429{bottom:75.600000pt;}
.y28_c00429{bottom:89.733333pt;}
.y50_c00429{bottom:92.000000pt;}
.y27_c00429{bottom:106.133333pt;}
.y4f_c00429{bottom:108.000000pt;}
.y26_c00429{bottom:122.133333pt;}
.y4e_c00429{bottom:124.400000pt;}
.y25_c00429{bottom:138.800000pt;}
.y4d_c00429{bottom:140.400000pt;}
.y24_c00429{bottom:154.533333pt;}
.y4c_c00429{bottom:156.800000pt;}
.y23_c00429{bottom:170.666667pt;}
.y4b_c00429{bottom:173.066667pt;}
.y22_c00429{bottom:187.200000pt;}
.y4a_c00429{bottom:188.933333pt;}
.y21_c00429{bottom:203.066667pt;}
.y49_c00429{bottom:204.800000pt;}
.yb_c00429{bottom:218.400000pt;}
.y20_c00429{bottom:219.333333pt;}
.y48_c00429{bottom:221.600000pt;}
.y1f_c00429{bottom:236.400000pt;}
.y47_c00429{bottom:237.600000pt;}
.y1e_c00429{bottom:251.600000pt;}
.y46_c00429{bottom:253.733333pt;}
.ya_c00429{bottom:266.400000pt;}
.y1d_c00429{bottom:267.600000pt;}
.y45_c00429{bottom:269.066667pt;}
.y1c_c00429{bottom:284.000000pt;}
.y9_c00429{bottom:284.400000pt;}
.y44_c00429{bottom:284.933333pt;}
.y1b_c00429{bottom:300.000000pt;}
.y8_c00429{bottom:300.400000pt;}
.y43_c00429{bottom:301.200000pt;}
.y1a_c00429{bottom:316.533333pt;}
.y42_c00429{bottom:317.733333pt;}
.y19_c00429{bottom:333.200000pt;}
.y41_c00429{bottom:333.600000pt;}
.y18_c00429{bottom:335.200000pt;}
.y40_c00429{bottom:349.733333pt;}
.y3f_c00429{bottom:366.533333pt;}
.y17_c00429{bottom:380.400000pt;}
.y3e_c00429{bottom:382.400000pt;}
.y16_c00429{bottom:396.533333pt;}
.y3d_c00429{bottom:398.666667pt;}
.y15_c00429{bottom:414.000000pt;}
.y3c_c00429{bottom:414.800000pt;}
.y14_c00429{bottom:429.333333pt;}
.y3b_c00429{bottom:430.533333pt;}
.y3a_c00429{bottom:446.400000pt;}
.y13_c00429{bottom:461.333333pt;}
.y39_c00429{bottom:462.800000pt;}
.y38_c00429{bottom:477.866667pt;}
.y12_c00429{bottom:492.000000pt;}
.y37_c00429{bottom:495.200000pt;}
.y11_c00429{bottom:509.066667pt;}
.y36_c00429{bottom:511.466667pt;}
.y10_c00429{bottom:525.200000pt;}
.y35_c00429{bottom:527.066667pt;}
.yf_c00429{bottom:542.000000pt;}
.y34_c00429{bottom:543.333333pt;}
.ye_c00429{bottom:557.333333pt;}
.y33_c00429{bottom:559.466667pt;}
.yd_c00429{bottom:573.866667pt;}
.y32_c00429{bottom:575.333333pt;}
.yc_c00429{bottom:590.133333pt;}
.y31_c00429{bottom:592.133333pt;}
.y7_c00429{bottom:606.400000pt;}
.y30_c00429{bottom:608.133333pt;}
.y6_c00429{bottom:622.266667pt;}
.y2f_c00429{bottom:624.533333pt;}
.y5_c00429{bottom:639.066667pt;}
.y2e_c00429{bottom:640.533333pt;}
.y4_c00429{bottom:654.933333pt;}
.y2d_c00429{bottom:657.200000pt;}
.y3_c00429{bottom:672.000000pt;}
.y2c_c00429{bottom:672.800000pt;}
.y2_c00429{bottom:689.066667pt;}
.y1_c00429{bottom:707.066667pt;}
.hd_c00429{height:11.733399pt;}
.he_c00429{height:38.937500pt;}
.h9_c00429{height:41.920000pt;}
.h8_c00429{height:50.304000pt;}
.hb_c00429{height:53.098667pt;}
.h4_c00429{height:55.893333pt;}
.h7_c00429{height:56.906667pt;}
.ha_c00429{height:61.482667pt;}
.h5_c00429{height:62.812500pt;}
.h6_c00429{height:65.442667pt;}
.h2_c00429{height:68.288000pt;}
.h3_c00429{height:86.218750pt;}
.hc_c00429{height:145.322667pt;}
.h1_c00429{height:748.666667pt;}
.h0_c00429{height:748.800000pt;}
.w2_c00429{width:93.222667pt;}
.w1_c00429{width:515.333333pt;}
.w0_c00429{width:515.533333pt;}
.x0_c00429{left:0.000000pt;}
.x3_c00429{left:26.000000pt;}
.x5_c00429{left:27.600000pt;}
.x4_c00429{left:28.800000pt;}
.x1_c00429{left:80.933333pt;}
.x2_c00429{left:82.000000pt;}
.x6_c00429{left:83.600000pt;}
.xd_c00429{left:84.533333pt;}
.xe_c00429{left:86.666667pt;}
.x9_c00429{left:95.600000pt;}
.x8_c00429{left:111.600000pt;}
.xc_c00429{left:113.066667pt;}
.xa_c00429{left:134.666667pt;}
.x7_c00429{left:147.866667pt;}
.xb_c00429{left:159.866667pt;}
.x17_c00429{left:214.934896pt;}
.x10_c00429{left:274.400000pt;}
.xf_c00429{left:275.600000pt;}
.x11_c00429{left:276.933333pt;}
.x12_c00429{left:278.000000pt;}
.x13_c00429{left:279.866667pt;}
.x14_c00429{left:281.466667pt;}
.x15_c00429{left:282.400000pt;}
.x16_c00429{left:441.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_782f3a47ad9140fa646f2252.woff2')format("woff");}.ff1_c00430{font-family:ff1_c00430;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00430;src:url('chunks/assets/font_77e1aec8354674366f7d7088.woff2')format("woff");}.ff2_c00430{font-family:ff2_c00430;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00430;src:url('chunks/assets/font_03913dcc9b290e491f63597d.woff2')format("woff");}.ff3_c00430{font-family:ff3_c00430;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00430;src:url('chunks/assets/font_859bfea0b522796dffb983fb.woff2')format("woff");}.ff4_c00430{font-family:ff4_c00430;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00430;src:url('chunks/assets/font_bd3fc61e6138c14c599bc55c.woff2')format("woff");}.ff5_c00430{font-family:ff5_c00430;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00430;src:url('chunks/assets/font_f3790c11fa1b72b5ebd5d0f3.woff2')format("woff");}.ff6_c00430{font-family:ff6_c00430;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00430;src:url('chunks/assets/font_e7516125cedbece2d5cff5ba.woff2')format("woff");}.ff7_c00430{font-family:ff7_c00430;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00430;src:url('chunks/assets/font_3fc24b0be1df4391a547b9d8.woff2')format("woff");}.ff8_c00430{font-family:ff8_c00430;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00430;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff9_c00430{font-family:ff9_c00430;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00430{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00430{vertical-align:-78.000000px;}
.v0_c00430{vertical-align:0.000000px;}
.ls7_c00430{letter-spacing:-3.000000px;}
.ls5_c00430{letter-spacing:0.000000px;}
.ls0_c00430{letter-spacing:2.205000px;}
.ls2_c00430{letter-spacing:3.000000px;}
.ls1_c00430{letter-spacing:3.405000px;}
.ls6_c00430{letter-spacing:6.000000px;}
.ls3_c00430{letter-spacing:7.200000px;}
.ls9_c00430{letter-spacing:12.000000px;}
.ls8_c00430{letter-spacing:15.000000px;}
.ls4_c00430{letter-spacing:77.160000px;}
.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;}
}
.ws6_c00430{word-spacing:-30.060000px;}
.ws8_c00430{word-spacing:-27.576000px;}
.ws0_c00430{word-spacing:-17.250000px;}
.ws5_c00430{word-spacing:-14.160000px;}
.ws1_c00430{word-spacing:-13.452000px;}
.ws3_c00430{word-spacing:-10.452000px;}
.ws2_c00430{word-spacing:-0.410400px;}
.ws9_c00430{word-spacing:0.000000px;}
.ws7_c00430{word-spacing:0.120000px;}
.ws4_c00430{word-spacing:3.540000px;}
._27_c00430{margin-left:-19.674000px;}
._26_c00430{margin-left:-14.460000px;}
._1a_c00430{margin-left:-12.780000px;}
._17_c00430{margin-left:-11.280000px;}
._20_c00430{margin-left:-10.053000px;}
._13_c00430{margin-left:-8.940000px;}
._18_c00430{margin-left:-7.800000px;}
._24_c00430{margin-left:-6.555000px;}
._16_c00430{margin-left:-5.100000px;}
._19_c00430{margin-left:-3.540000px;}
._5_c00430{margin-left:-2.160000px;}
._15_c00430{margin-left:-1.020000px;}
._b_c00430{width:1.560000px;}
._3_c00430{width:2.820000px;}
._7_c00430{width:3.900000px;}
._0_c00430{width:4.920000px;}
._1_c00430{width:6.600000px;}
._8_c00430{width:8.580000px;}
._f_c00430{width:10.380000px;}
._1d_c00430{width:11.460000px;}
._d_c00430{width:12.480000px;}
._e_c00430{width:13.680000px;}
._1c_c00430{width:14.700000px;}
._11_c00430{width:15.708000px;}
._2_c00430{width:19.440000px;}
._1f_c00430{width:20.700000px;}
._22_c00430{width:21.720000px;}
._10_c00430{width:22.800000px;}
._9_c00430{width:24.240000px;}
._a_c00430{width:25.920000px;}
._12_c00430{width:27.718800px;}
._4_c00430{width:29.580000px;}
._23_c00430{width:31.800000px;}
._c_c00430{width:34.440000px;}
._6_c00430{width:38.940000px;}
._1b_c00430{width:50.340000px;}
._25_c00430{width:93.720000px;}
._21_c00430{width:167.316000px;}
._28_c00430{width:199.704000px;}
._14_c00430{width:318.240000px;}
._1e_c00430{width:354.540000px;}
.fc2_c00430{color:transparent;}
.fc1_c00430{color:rgb(128,128,128);}
.fc0_c00430{color:rgb(0,0,0);}
.fs2_c00430{font-size:24.000000px;}
.fs5_c00430{font-size:45.000000px;}
.fs4_c00430{font-size:45.600000px;}
.fs9_c00430{font-size:48.000000px;}
.fs8_c00430{font-size:54.000000px;}
.fs3_c00430{font-size:57.000000px;}
.fs0_c00430{font-size:60.000000px;}
.fs7_c00430{font-size:63.000000px;}
.fs6_c00430{font-size:66.000000px;}
.fs1_c00430{font-size:69.000000px;}
.y0_c00430{bottom:0.000000px;}
.y52_c00430{bottom:3.105000px;}
.y51_c00430{bottom:7.228363px;}
.y50_c00430{bottom:29.400000px;}
.y29_c00430{bottom:49.050000px;}
.y4f_c00430{bottom:49.950000px;}
.y4e_c00430{bottom:68.550000px;}
.y28_c00430{bottom:69.300000px;}
.y4d_c00430{bottom:86.700000px;}
.y27_c00430{bottom:86.850000px;}
.y4c_c00430{bottom:104.250000px;}
.y26_c00430{bottom:105.300000px;}
.y4b_c00430{bottom:121.950000px;}
.y25_c00430{bottom:123.150000px;}
.y24_c00430{bottom:142.200000px;}
.y23_c00430{bottom:160.050000px;}
.y4a_c00430{bottom:160.200000px;}
.y49_c00430{bottom:177.150000px;}
.y22_c00430{bottom:177.600000px;}
.y48_c00430{bottom:195.300000px;}
.y21_c00430{bottom:196.500000px;}
.y47_c00430{bottom:213.600000px;}
.y20_c00430{bottom:214.500000px;}
.y46_c00430{bottom:231.450000px;}
.y1f_c00430{bottom:232.950000px;}
.y45_c00430{bottom:249.750000px;}
.y1e_c00430{bottom:251.400000px;}
.y44_c00430{bottom:267.900000px;}
.y1d_c00430{bottom:269.100000px;}
.y43_c00430{bottom:286.500000px;}
.y1c_c00430{bottom:286.650000px;}
.y42_c00430{bottom:304.200000px;}
.y1b_c00430{bottom:305.550000px;}
.y41_c00430{bottom:322.350000px;}
.y1a_c00430{bottom:323.100000px;}
.y40_c00430{bottom:339.900000px;}
.y19_c00430{bottom:341.550000px;}
.y3f_c00430{bottom:358.800000px;}
.y18_c00430{bottom:359.400000px;}
.y3e_c00430{bottom:376.650000px;}
.y17_c00430{bottom:377.700000px;}
.y3d_c00430{bottom:394.950000px;}
.y16_c00430{bottom:395.850000px;}
.y3c_c00430{bottom:413.100000px;}
.y15_c00430{bottom:413.550000px;}
.y3b_c00430{bottom:431.100000px;}
.y14_c00430{bottom:432.450000px;}
.y3a_c00430{bottom:449.250000px;}
.y13_c00430{bottom:450.300000px;}
.y39_c00430{bottom:467.850000px;}
.y12_c00430{bottom:468.450000px;}
.y38_c00430{bottom:485.100000px;}
.y11_c00430{bottom:486.300000px;}
.y37_c00430{bottom:503.550000px;}
.y10_c00430{bottom:504.000000px;}
.yf_c00430{bottom:521.100000px;}
.y36_c00430{bottom:521.850000px;}
.ye_c00430{bottom:538.950000px;}
.y35_c00430{bottom:539.400000px;}
.yd_c00430{bottom:557.550000px;}
.yc_c00430{bottom:575.100000px;}
.y34_c00430{bottom:575.400000px;}
.yb_c00430{bottom:593.550000px;}
.y33_c00430{bottom:594.600000px;}
.ya_c00430{bottom:611.250000px;}
.y32_c00430{bottom:612.450000px;}
.y9_c00430{bottom:630.450000px;}
.y8_c00430{bottom:648.000000px;}
.y31_c00430{bottom:649.350000px;}
.y7_c00430{bottom:666.450000px;}
.y30_c00430{bottom:667.200000px;}
.y6_c00430{bottom:684.000000px;}
.y2f_c00430{bottom:686.250000px;}
.y5_c00430{bottom:703.650000px;}
.y2e_c00430{bottom:703.800000px;}
.y4_c00430{bottom:720.450000px;}
.y2d_c00430{bottom:722.550000px;}
.y3_c00430{bottom:739.350000px;}
.y2c_c00430{bottom:740.550000px;}
.y2_c00430{bottom:757.350000px;}
.y2b_c00430{bottom:759.150000px;}
.y1_c00430{bottom:775.200000px;}
.y2a_c00430{bottom:777.000000px;}
.h5_c00430{height:13.200074px;}
.h6_c00430{height:43.804688px;}
.h4_c00430{height:59.736000px;}
.h2_c00430{height:62.880000px;}
.h3_c00430{height:73.623000px;}
.h0_c00430{height:839.700000px;}
.h1_c00430{height:840.000000px;}
.w2_c00430{width:104.875500px;}
.w0_c00430{width:572.925000px;}
.w1_c00430{width:573.000000px;}
.x0_c00430{left:0.000000px;}
.x6_c00430{left:15.900000px;}
.x5_c00430{left:17.850000px;}
.x9_c00430{left:19.950000px;}
.x3_c00430{left:75.300000px;}
.x2_c00430{left:77.400000px;}
.x1_c00430{left:78.600000px;}
.x7_c00430{left:79.950000px;}
.x8_c00430{left:82.350000px;}
.x4_c00430{left:92.100000px;}
.xb_c00430{left:95.850000px;}
.xa_c00430{left:104.700000px;}
.x17_c00430{left:238.276749px;}
.x12_c00430{left:289.350000px;}
.x11_c00430{left:291.000000px;}
.xe_c00430{left:292.950000px;}
.xf_c00430{left:295.050000px;}
.x10_c00430{left:296.250000px;}
.xc_c00430{left:297.600000px;}
.xd_c00430{left:299.400000px;}
.x13_c00430{left:305.550000px;}
.x15_c00430{left:327.750000px;}
.x14_c00430{left:345.300000px;}
.x16_c00430{left:385.050000px;}
@media print{
.v1_c00430{vertical-align:-69.333333pt;}
.v0_c00430{vertical-align:0.000000pt;}
.ls7_c00430{letter-spacing:-2.666667pt;}
.ls5_c00430{letter-spacing:0.000000pt;}
.ls0_c00430{letter-spacing:1.960000pt;}
.ls2_c00430{letter-spacing:2.666667pt;}
.ls1_c00430{letter-spacing:3.026667pt;}
.ls6_c00430{letter-spacing:5.333333pt;}
.ls3_c00430{letter-spacing:6.400000pt;}
.ls9_c00430{letter-spacing:10.666667pt;}
.ls8_c00430{letter-spacing:13.333333pt;}
.ls4_c00430{letter-spacing:68.586667pt;}
.ws6_c00430{word-spacing:-26.720000pt;}
.ws8_c00430{word-spacing:-24.512000pt;}
.ws0_c00430{word-spacing:-15.333333pt;}
.ws5_c00430{word-spacing:-12.586667pt;}
.ws1_c00430{word-spacing:-11.957333pt;}
.ws3_c00430{word-spacing:-9.290667pt;}
.ws2_c00430{word-spacing:-0.364800pt;}
.ws9_c00430{word-spacing:0.000000pt;}
.ws7_c00430{word-spacing:0.106667pt;}
.ws4_c00430{word-spacing:3.146667pt;}
._27_c00430{margin-left:-17.488000pt;}
._26_c00430{margin-left:-12.853333pt;}
._1a_c00430{margin-left:-11.360000pt;}
._17_c00430{margin-left:-10.026667pt;}
._20_c00430{margin-left:-8.936000pt;}
._13_c00430{margin-left:-7.946667pt;}
._18_c00430{margin-left:-6.933333pt;}
._24_c00430{margin-left:-5.826667pt;}
._16_c00430{margin-left:-4.533333pt;}
._19_c00430{margin-left:-3.146667pt;}
._5_c00430{margin-left:-1.920000pt;}
._15_c00430{margin-left:-0.906667pt;}
._b_c00430{width:1.386667pt;}
._3_c00430{width:2.506667pt;}
._7_c00430{width:3.466667pt;}
._0_c00430{width:4.373333pt;}
._1_c00430{width:5.866667pt;}
._8_c00430{width:7.626667pt;}
._f_c00430{width:9.226667pt;}
._1d_c00430{width:10.186667pt;}
._d_c00430{width:11.093333pt;}
._e_c00430{width:12.160000pt;}
._1c_c00430{width:13.066667pt;}
._11_c00430{width:13.962667pt;}
._2_c00430{width:17.280000pt;}
._1f_c00430{width:18.400000pt;}
._22_c00430{width:19.306667pt;}
._10_c00430{width:20.266667pt;}
._9_c00430{width:21.546667pt;}
._a_c00430{width:23.040000pt;}
._12_c00430{width:24.638933pt;}
._4_c00430{width:26.293333pt;}
._23_c00430{width:28.266667pt;}
._c_c00430{width:30.613333pt;}
._6_c00430{width:34.613333pt;}
._1b_c00430{width:44.746667pt;}
._25_c00430{width:83.306667pt;}
._21_c00430{width:148.725333pt;}
._28_c00430{width:177.514667pt;}
._14_c00430{width:282.880000pt;}
._1e_c00430{width:315.146667pt;}
.fs2_c00430{font-size:21.333333pt;}
.fs5_c00430{font-size:40.000000pt;}
.fs4_c00430{font-size:40.533333pt;}
.fs9_c00430{font-size:42.666667pt;}
.fs8_c00430{font-size:48.000000pt;}
.fs3_c00430{font-size:50.666667pt;}
.fs0_c00430{font-size:53.333333pt;}
.fs7_c00430{font-size:56.000000pt;}
.fs6_c00430{font-size:58.666667pt;}
.fs1_c00430{font-size:61.333333pt;}
.y0_c00430{bottom:0.000000pt;}
.y52_c00430{bottom:2.760000pt;}
.y51_c00430{bottom:6.425212pt;}
.y50_c00430{bottom:26.133333pt;}
.y29_c00430{bottom:43.600000pt;}
.y4f_c00430{bottom:44.400000pt;}
.y4e_c00430{bottom:60.933333pt;}
.y28_c00430{bottom:61.600000pt;}
.y4d_c00430{bottom:77.066667pt;}
.y27_c00430{bottom:77.200000pt;}
.y4c_c00430{bottom:92.666667pt;}
.y26_c00430{bottom:93.600000pt;}
.y4b_c00430{bottom:108.400000pt;}
.y25_c00430{bottom:109.466667pt;}
.y24_c00430{bottom:126.400000pt;}
.y23_c00430{bottom:142.266667pt;}
.y4a_c00430{bottom:142.400000pt;}
.y49_c00430{bottom:157.466667pt;}
.y22_c00430{bottom:157.866667pt;}
.y48_c00430{bottom:173.600000pt;}
.y21_c00430{bottom:174.666667pt;}
.y47_c00430{bottom:189.866667pt;}
.y20_c00430{bottom:190.666667pt;}
.y46_c00430{bottom:205.733333pt;}
.y1f_c00430{bottom:207.066667pt;}
.y45_c00430{bottom:222.000000pt;}
.y1e_c00430{bottom:223.466667pt;}
.y44_c00430{bottom:238.133333pt;}
.y1d_c00430{bottom:239.200000pt;}
.y43_c00430{bottom:254.666667pt;}
.y1c_c00430{bottom:254.800000pt;}
.y42_c00430{bottom:270.400000pt;}
.y1b_c00430{bottom:271.600000pt;}
.y41_c00430{bottom:286.533333pt;}
.y1a_c00430{bottom:287.200000pt;}
.y40_c00430{bottom:302.133333pt;}
.y19_c00430{bottom:303.600000pt;}
.y3f_c00430{bottom:318.933333pt;}
.y18_c00430{bottom:319.466667pt;}
.y3e_c00430{bottom:334.800000pt;}
.y17_c00430{bottom:335.733333pt;}
.y3d_c00430{bottom:351.066667pt;}
.y16_c00430{bottom:351.866667pt;}
.y3c_c00430{bottom:367.200000pt;}
.y15_c00430{bottom:367.600000pt;}
.y3b_c00430{bottom:383.200000pt;}
.y14_c00430{bottom:384.400000pt;}
.y3a_c00430{bottom:399.333333pt;}
.y13_c00430{bottom:400.266667pt;}
.y39_c00430{bottom:415.866667pt;}
.y12_c00430{bottom:416.400000pt;}
.y38_c00430{bottom:431.200000pt;}
.y11_c00430{bottom:432.266667pt;}
.y37_c00430{bottom:447.600000pt;}
.y10_c00430{bottom:448.000000pt;}
.yf_c00430{bottom:463.200000pt;}
.y36_c00430{bottom:463.866667pt;}
.ye_c00430{bottom:479.066667pt;}
.y35_c00430{bottom:479.466667pt;}
.yd_c00430{bottom:495.600000pt;}
.yc_c00430{bottom:511.200000pt;}
.y34_c00430{bottom:511.466667pt;}
.yb_c00430{bottom:527.600000pt;}
.y33_c00430{bottom:528.533333pt;}
.ya_c00430{bottom:543.333333pt;}
.y32_c00430{bottom:544.400000pt;}
.y9_c00430{bottom:560.400000pt;}
.y8_c00430{bottom:576.000000pt;}
.y31_c00430{bottom:577.200000pt;}
.y7_c00430{bottom:592.400000pt;}
.y30_c00430{bottom:593.066667pt;}
.y6_c00430{bottom:608.000000pt;}
.y2f_c00430{bottom:610.000000pt;}
.y5_c00430{bottom:625.466667pt;}
.y2e_c00430{bottom:625.600000pt;}
.y4_c00430{bottom:640.400000pt;}
.y2d_c00430{bottom:642.266667pt;}
.y3_c00430{bottom:657.200000pt;}
.y2c_c00430{bottom:658.266667pt;}
.y2_c00430{bottom:673.200000pt;}
.y2b_c00430{bottom:674.800000pt;}
.y1_c00430{bottom:689.066667pt;}
.y2a_c00430{bottom:690.666667pt;}
.h5_c00430{height:11.733399pt;}
.h6_c00430{height:38.937500pt;}
.h4_c00430{height:53.098667pt;}
.h2_c00430{height:55.893333pt;}
.h3_c00430{height:65.442667pt;}
.h0_c00430{height:746.400000pt;}
.h1_c00430{height:746.666667pt;}
.w2_c00430{width:93.222667pt;}
.w0_c00430{width:509.266667pt;}
.w1_c00430{width:509.333333pt;}
.x0_c00430{left:0.000000pt;}
.x6_c00430{left:14.133333pt;}
.x5_c00430{left:15.866667pt;}
.x9_c00430{left:17.733333pt;}
.x3_c00430{left:66.933333pt;}
.x2_c00430{left:68.800000pt;}
.x1_c00430{left:69.866667pt;}
.x7_c00430{left:71.066667pt;}
.x8_c00430{left:73.200000pt;}
.x4_c00430{left:81.866667pt;}
.xb_c00430{left:85.200000pt;}
.xa_c00430{left:93.066667pt;}
.x17_c00430{left:211.801554pt;}
.x12_c00430{left:257.200000pt;}
.x11_c00430{left:258.666667pt;}
.xe_c00430{left:260.400000pt;}
.xf_c00430{left:262.266667pt;}
.x10_c00430{left:263.333333pt;}
.xc_c00430{left:264.533333pt;}
.xd_c00430{left:266.133333pt;}
.x13_c00430{left:271.600000pt;}
.x15_c00430{left:291.333333pt;}
.x14_c00430{left:306.933333pt;}
.x16_c00430{left:342.266667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_91942016a4c3648a9099836a.woff2')format("woff");}.ff1_c00431{font-family:ff1_c00431;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00431;src:url('chunks/assets/font_3981cc01421919c929a42b57.woff2')format("woff");}.ff2_c00431{font-family:ff2_c00431;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00431;src:url('chunks/assets/font_1ea210b718faac96ba5a91db.woff2')format("woff");}.ff3_c00431{font-family:ff3_c00431;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00431;src:url('chunks/assets/font_1570719578c1bb4380e33479.woff2')format("woff");}.ff4_c00431{font-family:ff4_c00431;line-height:1.575000;font-style:normal;font-weight:normal;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_bb345f1038b5a91af8e42a71.woff2')format("woff");}.ff5_c00431{font-family:ff5_c00431;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00431;src:url('chunks/assets/font_3a44535200ecb93d063656e0.woff2')format("woff");}.ff6_c00431{font-family:ff6_c00431;line-height:1.575000;font-style:normal;font-weight:normal;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_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff7_c00431{font-family:ff7_c00431;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00431{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00431{vertical-align:0.000000px;}
.ls6_c00431{letter-spacing:0.000000px;}
.ls4_c00431{letter-spacing:0.900000px;}
.ls2_c00431{letter-spacing:3.000000px;}
.ls8_c00431{letter-spacing:6.000000px;}
.ls1_c00431{letter-spacing:7.800000px;}
.ls7_c00431{letter-spacing:9.000000px;}
.ls0_c00431{letter-spacing:10.605000px;}
.ls3_c00431{letter-spacing:36.693000px;}
.ls5_c00431{letter-spacing:46.893000px;}
.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;}
}
.ws3_c00431{word-spacing:-23.427000px;}
.ws5_c00431{word-spacing:-18.813000px;}
.ws1_c00431{word-spacing:-18.060000px;}
.ws2_c00431{word-spacing:-14.427000px;}
.ws0_c00431{word-spacing:-14.160000px;}
.ws4_c00431{word-spacing:-13.452000px;}
.ws6_c00431{word-spacing:0.000000px;}
._1e_c00431{margin-left:-24.618000px;}
._21_c00431{margin-left:-17.133000px;}
._18_c00431{margin-left:-15.063000px;}
._10_c00431{margin-left:-12.780000px;}
._13_c00431{margin-left:-11.277000px;}
._2_c00431{margin-left:-9.240000px;}
._5_c00431{margin-left:-8.220000px;}
._0_c00431{margin-left:-6.960000px;}
._4_c00431{margin-left:-4.980000px;}
._1_c00431{margin-left:-3.480000px;}
._3_c00431{margin-left:-2.340000px;}
._8_c00431{margin-left:-1.320000px;}
._6_c00431{width:1.620000px;}
._7_c00431{width:2.880000px;}
._d_c00431{width:4.680000px;}
._a_c00431{width:6.060000px;}
._e_c00431{width:7.320000px;}
._b_c00431{width:8.880000px;}
._9_c00431{width:10.320000px;}
._c_c00431{width:11.400000px;}
._12_c00431{width:12.912000px;}
._f_c00431{width:14.040000px;}
._11_c00431{width:15.672000px;}
._20_c00431{width:18.705000px;}
._1d_c00431{width:20.334000px;}
._1f_c00431{width:21.546000px;}
._1a_c00431{width:23.934000px;}
._22_c00431{width:25.476000px;}
._1c_c00431{width:27.270000px;}
._17_c00431{width:29.406000px;}
._1b_c00431{width:65.028000px;}
._19_c00431{width:70.413000px;}
._16_c00431{width:112.455000px;}
._15_c00431{width:121.212000px;}
._14_c00431{width:178.590000px;}
.fc2_c00431{color:transparent;}
.fc1_c00431{color:rgb(128,128,128);}
.fc0_c00431{color:rgb(0,0,0);}
.fs4_c00431{font-size:39.000000px;}
.fs1_c00431{font-size:45.000000px;}
.fs5_c00431{font-size:48.000000px;}
.fs3_c00431{font-size:57.000000px;}
.fs0_c00431{font-size:60.000000px;}
.fs2_c00431{font-size:63.000000px;}
.y0_c00431{bottom:0.000000px;}
.y50_c00431{bottom:3.105000px;}
.y4f_c00431{bottom:7.228363px;}
.y4d_c00431{bottom:33.450000px;}
.y2b_c00431{bottom:51.750000px;}
.y4c_c00431{bottom:52.950000px;}
.y4b_c00431{bottom:70.650000px;}
.y2a_c00431{bottom:70.950000px;}
.y4a_c00431{bottom:89.400000px;}
.y29_c00431{bottom:89.850000px;}
.y28_c00431{bottom:108.000000px;}
.y27_c00431{bottom:126.600000px;}
.y26_c00431{bottom:144.750000px;}
.y25_c00431{bottom:163.350000px;}
.y24_c00431{bottom:180.900000px;}
.y49_c00431{bottom:181.200000px;}
.y23_c00431{bottom:198.900000px;}
.y48_c00431{bottom:199.800000px;}
.y47_c00431{bottom:217.800000px;}
.y22_c00431{bottom:218.100000px;}
.y21_c00431{bottom:235.950000px;}
.y46_c00431{bottom:236.700000px;}
.y20_c00431{bottom:253.800000px;}
.y45_c00431{bottom:255.150000px;}
.y1f_c00431{bottom:272.700000px;}
.y44_c00431{bottom:273.150000px;}
.y1e_c00431{bottom:290.700000px;}
.y43_c00431{bottom:308.100000px;}
.y1d_c00431{bottom:309.150000px;}
.y42_c00431{bottom:327.000000px;}
.y1c_c00431{bottom:327.750000px;}
.y41_c00431{bottom:344.550000px;}
.y1b_c00431{bottom:346.050000px;}
.y40_c00431{bottom:363.150000px;}
.y1a_c00431{bottom:363.900000px;}
.y3f_c00431{bottom:382.050000px;}
.y19_c00431{bottom:382.350000px;}
.y3e_c00431{bottom:399.600000px;}
.y18_c00431{bottom:400.350000px;}
.y3d_c00431{bottom:416.550000px;}
.y17_c00431{bottom:418.200000px;}
.y3c_c00431{bottom:436.050000px;}
.y16_c00431{bottom:436.650000px;}
.y15_c00431{bottom:454.650000px;}
.y3b_c00431{bottom:472.800000px;}
.y14_c00431{bottom:473.100000px;}
.y3a_c00431{bottom:490.500000px;}
.y13_c00431{bottom:491.100000px;}
.y4e_c00431{bottom:495.150000px;}
.y39_c00431{bottom:508.350000px;}
.y12_c00431{bottom:509.400000px;}
.y38_c00431{bottom:525.900000px;}
.y11_c00431{bottom:529.200000px;}
.y37_c00431{bottom:544.800000px;}
.y10_c00431{bottom:545.400000px;}
.y36_c00431{bottom:561.900000px;}
.yf_c00431{bottom:564.000000px;}
.y35_c00431{bottom:581.550000px;}
.ye_c00431{bottom:582.750000px;}
.y2_c00431{bottom:585.900000px;}
.y34_c00431{bottom:600.450000px;}
.yd_c00431{bottom:600.750000px;}
.y1_c00431{bottom:606.900000px;}
.y33_c00431{bottom:618.750000px;}
.yc_c00431{bottom:619.050000px;}
.y32_c00431{bottom:636.900000px;}
.yb_c00431{bottom:637.200000px;}
.y31_c00431{bottom:654.450000px;}
.ya_c00431{bottom:655.200000px;}
.y9_c00431{bottom:673.350000px;}
.y8_c00431{bottom:691.500000px;}
.y30_c00431{bottom:691.650000px;}
.y2f_c00431{bottom:709.500000px;}
.y7_c00431{bottom:710.100000px;}
.y6_c00431{bottom:728.100000px;}
.y2e_c00431{bottom:729.300000px;}
.y5_c00431{bottom:746.550000px;}
.y2d_c00431{bottom:747.000000px;}
.y2c_c00431{bottom:765.450000px;}
.y4_c00431{bottom:765.750000px;}
.y3_c00431{bottom:783.300000px;}
.h6_c00431{height:13.200074px;}
.h7_c00431{height:43.804688px;}
.h5_c00431{height:59.736000px;}
.h2_c00431{height:62.880000px;}
.h3_c00431{height:64.020000px;}
.h4_c00431{height:66.024000px;}
.h1_c00431{height:842.250000px;}
.h0_c00431{height:842.400000px;}
.w2_c00431{width:104.875500px;}
.w1_c00431{width:579.750000px;}
.w0_c00431{width:579.975000px;}
.x0_c00431{left:0.000000px;}
.x2_c00431{left:28.050000px;}
.x1_c00431{left:30.150000px;}
.x6_c00431{left:46.200000px;}
.x3_c00431{left:92.100000px;}
.x7_c00431{left:93.150000px;}
.x8_c00431{left:94.500000px;}
.x5_c00431{left:95.550000px;}
.x4_c00431{left:97.800000px;}
.x11_c00431{left:241.801758px;}
.xd_c00431{left:310.050000px;}
.x9_c00431{left:311.250000px;}
.xb_c00431{left:312.900000px;}
.xa_c00431{left:314.250000px;}
.xe_c00431{left:331.350000px;}
.xc_c00431{left:371.250000px;}
.xf_c00431{left:474.300000px;}
.x10_c00431{left:515.700000px;}
@media print{
.v0_c00431{vertical-align:0.000000pt;}
.ls6_c00431{letter-spacing:0.000000pt;}
.ls4_c00431{letter-spacing:0.800000pt;}
.ls2_c00431{letter-spacing:2.666667pt;}
.ls8_c00431{letter-spacing:5.333333pt;}
.ls1_c00431{letter-spacing:6.933333pt;}
.ls7_c00431{letter-spacing:8.000000pt;}
.ls0_c00431{letter-spacing:9.426667pt;}
.ls3_c00431{letter-spacing:32.616000pt;}
.ls5_c00431{letter-spacing:41.682667pt;}
.ws3_c00431{word-spacing:-20.824000pt;}
.ws5_c00431{word-spacing:-16.722667pt;}
.ws1_c00431{word-spacing:-16.053333pt;}
.ws2_c00431{word-spacing:-12.824000pt;}
.ws0_c00431{word-spacing:-12.586667pt;}
.ws4_c00431{word-spacing:-11.957333pt;}
.ws6_c00431{word-spacing:0.000000pt;}
._1e_c00431{margin-left:-21.882667pt;}
._21_c00431{margin-left:-15.229333pt;}
._18_c00431{margin-left:-13.389333pt;}
._10_c00431{margin-left:-11.360000pt;}
._13_c00431{margin-left:-10.024000pt;}
._2_c00431{margin-left:-8.213333pt;}
._5_c00431{margin-left:-7.306667pt;}
._0_c00431{margin-left:-6.186667pt;}
._4_c00431{margin-left:-4.426667pt;}
._1_c00431{margin-left:-3.093333pt;}
._3_c00431{margin-left:-2.080000pt;}
._8_c00431{margin-left:-1.173333pt;}
._6_c00431{width:1.440000pt;}
._7_c00431{width:2.560000pt;}
._d_c00431{width:4.160000pt;}
._a_c00431{width:5.386667pt;}
._e_c00431{width:6.506667pt;}
._b_c00431{width:7.893333pt;}
._9_c00431{width:9.173333pt;}
._c_c00431{width:10.133333pt;}
._12_c00431{width:11.477333pt;}
._f_c00431{width:12.480000pt;}
._11_c00431{width:13.930667pt;}
._20_c00431{width:16.626667pt;}
._1d_c00431{width:18.074667pt;}
._1f_c00431{width:19.152000pt;}
._1a_c00431{width:21.274667pt;}
._22_c00431{width:22.645333pt;}
._1c_c00431{width:24.240000pt;}
._17_c00431{width:26.138667pt;}
._1b_c00431{width:57.802667pt;}
._19_c00431{width:62.589333pt;}
._16_c00431{width:99.960000pt;}
._15_c00431{width:107.744000pt;}
._14_c00431{width:158.746667pt;}
.fs4_c00431{font-size:34.666667pt;}
.fs1_c00431{font-size:40.000000pt;}
.fs5_c00431{font-size:42.666667pt;}
.fs3_c00431{font-size:50.666667pt;}
.fs0_c00431{font-size:53.333333pt;}
.fs2_c00431{font-size:56.000000pt;}
.y0_c00431{bottom:0.000000pt;}
.y50_c00431{bottom:2.760000pt;}
.y4f_c00431{bottom:6.425212pt;}
.y4d_c00431{bottom:29.733333pt;}
.y2b_c00431{bottom:46.000000pt;}
.y4c_c00431{bottom:47.066667pt;}
.y4b_c00431{bottom:62.800000pt;}
.y2a_c00431{bottom:63.066667pt;}
.y4a_c00431{bottom:79.466667pt;}
.y29_c00431{bottom:79.866667pt;}
.y28_c00431{bottom:96.000000pt;}
.y27_c00431{bottom:112.533333pt;}
.y26_c00431{bottom:128.666667pt;}
.y25_c00431{bottom:145.200000pt;}
.y24_c00431{bottom:160.800000pt;}
.y49_c00431{bottom:161.066667pt;}
.y23_c00431{bottom:176.800000pt;}
.y48_c00431{bottom:177.600000pt;}
.y47_c00431{bottom:193.600000pt;}
.y22_c00431{bottom:193.866667pt;}
.y21_c00431{bottom:209.733333pt;}
.y46_c00431{bottom:210.400000pt;}
.y20_c00431{bottom:225.600000pt;}
.y45_c00431{bottom:226.800000pt;}
.y1f_c00431{bottom:242.400000pt;}
.y44_c00431{bottom:242.800000pt;}
.y1e_c00431{bottom:258.400000pt;}
.y43_c00431{bottom:273.866667pt;}
.y1d_c00431{bottom:274.800000pt;}
.y42_c00431{bottom:290.666667pt;}
.y1c_c00431{bottom:291.333333pt;}
.y41_c00431{bottom:306.266667pt;}
.y1b_c00431{bottom:307.600000pt;}
.y40_c00431{bottom:322.800000pt;}
.y1a_c00431{bottom:323.466667pt;}
.y3f_c00431{bottom:339.600000pt;}
.y19_c00431{bottom:339.866667pt;}
.y3e_c00431{bottom:355.200000pt;}
.y18_c00431{bottom:355.866667pt;}
.y3d_c00431{bottom:370.266667pt;}
.y17_c00431{bottom:371.733333pt;}
.y3c_c00431{bottom:387.600000pt;}
.y16_c00431{bottom:388.133333pt;}
.y15_c00431{bottom:404.133333pt;}
.y3b_c00431{bottom:420.266667pt;}
.y14_c00431{bottom:420.533333pt;}
.y3a_c00431{bottom:436.000000pt;}
.y13_c00431{bottom:436.533333pt;}
.y4e_c00431{bottom:440.133333pt;}
.y39_c00431{bottom:451.866667pt;}
.y12_c00431{bottom:452.800000pt;}
.y38_c00431{bottom:467.466667pt;}
.y11_c00431{bottom:470.400000pt;}
.y37_c00431{bottom:484.266667pt;}
.y10_c00431{bottom:484.800000pt;}
.y36_c00431{bottom:499.466667pt;}
.yf_c00431{bottom:501.333333pt;}
.y35_c00431{bottom:516.933333pt;}
.ye_c00431{bottom:518.000000pt;}
.y2_c00431{bottom:520.800000pt;}
.y34_c00431{bottom:533.733333pt;}
.yd_c00431{bottom:534.000000pt;}
.y1_c00431{bottom:539.466667pt;}
.y33_c00431{bottom:550.000000pt;}
.yc_c00431{bottom:550.266667pt;}
.y32_c00431{bottom:566.133333pt;}
.yb_c00431{bottom:566.400000pt;}
.y31_c00431{bottom:581.733333pt;}
.ya_c00431{bottom:582.400000pt;}
.y9_c00431{bottom:598.533333pt;}
.y8_c00431{bottom:614.666667pt;}
.y30_c00431{bottom:614.800000pt;}
.y2f_c00431{bottom:630.666667pt;}
.y7_c00431{bottom:631.200000pt;}
.y6_c00431{bottom:647.200000pt;}
.y2e_c00431{bottom:648.266667pt;}
.y5_c00431{bottom:663.600000pt;}
.y2d_c00431{bottom:664.000000pt;}
.y2c_c00431{bottom:680.400000pt;}
.y4_c00431{bottom:680.666667pt;}
.y3_c00431{bottom:696.266667pt;}
.h6_c00431{height:11.733399pt;}
.h7_c00431{height:38.937500pt;}
.h5_c00431{height:53.098667pt;}
.h2_c00431{height:55.893333pt;}
.h3_c00431{height:56.906667pt;}
.h4_c00431{height:58.688000pt;}
.h1_c00431{height:748.666667pt;}
.h0_c00431{height:748.800000pt;}
.w2_c00431{width:93.222667pt;}
.w1_c00431{width:515.333333pt;}
.w0_c00431{width:515.533333pt;}
.x0_c00431{left:0.000000pt;}
.x2_c00431{left:24.933333pt;}
.x1_c00431{left:26.800000pt;}
.x6_c00431{left:41.066667pt;}
.x3_c00431{left:81.866667pt;}
.x7_c00431{left:82.800000pt;}
.x8_c00431{left:84.000000pt;}
.x5_c00431{left:84.933333pt;}
.x4_c00431{left:86.933333pt;}
.x11_c00431{left:214.934896pt;}
.xd_c00431{left:275.600000pt;}
.x9_c00431{left:276.666667pt;}
.xb_c00431{left:278.133333pt;}
.xa_c00431{left:279.333333pt;}
.xe_c00431{left:294.533333pt;}
.xc_c00431{left:330.000000pt;}
.xf_c00431{left:421.600000pt;}
.x10_c00431{left:458.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_6b4e37f8b2d21ba4e7357f86.woff2')format("woff");}.ff1_c00432{font-family:ff1_c00432;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00432;src:url('chunks/assets/font_6c220c439ee94b7491f3c08d.woff2')format("woff");}.ff2_c00432{font-family:ff2_c00432;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00432;src:url('chunks/assets/font_fb362478a3d2b51afcd67d12.woff2')format("woff");}.ff3_c00432{font-family:ff3_c00432;line-height:1.575000;font-style:normal;font-weight:normal;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_f77113b4ef992e22e1d4af6f.woff2')format("woff");}.ff4_c00432{font-family:ff4_c00432;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00432;src:url('chunks/assets/font_c3d008548712816c13a13736.woff2')format("woff");}.ff5_c00432{font-family:ff5_c00432;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00432;src:url('chunks/assets/font_ec6a3ba0a36856bc01df3b4b.woff2')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_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff7_c00432{font-family:ff7_c00432;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00432{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00432{vertical-align:0.000000px;}
.ls4_c00432{letter-spacing:0.000000px;}
.ls0_c00432{letter-spacing:1.680000px;}
.ls2_c00432{letter-spacing:3.000000px;}
.ls5_c00432{letter-spacing:6.000000px;}
.ls1_c00432{letter-spacing:11.304000px;}
.ls6_c00432{letter-spacing:12.000000px;}
.ls3_c00432{letter-spacing:20.880000px;}
.sc__c00432{text-shadow:none;}
.sc0_c00432{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00432{-webkit-text-stroke:0px transparent;}
.sc0_c00432{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00432{word-spacing:-20.478000px;}
.ws3_c00432{word-spacing:-18.060000px;}
.ws0_c00432{word-spacing:-14.160000px;}
.ws2_c00432{word-spacing:-13.452000px;}
.ws4_c00432{word-spacing:0.000000px;}
._24_c00432{margin-left:-24.669000px;}
._d_c00432{margin-left:-23.040000px;}
._22_c00432{margin-left:-17.178000px;}
._1e_c00432{margin-left:-11.220000px;}
._15_c00432{margin-left:-9.960000px;}
._c_c00432{margin-left:-7.320000px;}
._b_c00432{margin-left:-5.340000px;}
._a_c00432{margin-left:-4.020000px;}
._3_c00432{margin-left:-2.160000px;}
._f_c00432{margin-left:-1.020000px;}
._6_c00432{width:1.800000px;}
._1_c00432{width:3.600000px;}
._12_c00432{width:4.740000px;}
._0_c00432{width:5.940000px;}
._10_c00432{width:7.380000px;}
._e_c00432{width:9.300000px;}
._2_c00432{width:11.340000px;}
._11_c00432{width:12.480000px;}
._4_c00432{width:13.680000px;}
._14_c00432{width:15.120000px;}
._13_c00432{width:16.320000px;}
._5_c00432{width:20.460000px;}
._16_c00432{width:21.480000px;}
._1c_c00432{width:23.280000px;}
._18_c00432{width:24.720000px;}
._1a_c00432{width:26.760000px;}
._19_c00432{width:29.160000px;}
._17_c00432{width:31.260000px;}
._1b_c00432{width:33.960000px;}
._8_c00432{width:35.940000px;}
._9_c00432{width:37.740000px;}
._23_c00432{width:41.412000px;}
._20_c00432{width:43.329000px;}
._7_c00432{width:44.580000px;}
._25_c00432{width:51.408000px;}
._1d_c00432{width:54.660000px;}
._1f_c00432{width:98.520000px;}
._21_c00432{width:193.416000px;}
._26_c00432{width:205.920000px;}
.fc2_c00432{color:transparent;}
.fc1_c00432{color:rgb(128,128,128);}
.fc0_c00432{color:rgb(0,0,0);}
.fs2_c00432{font-size:48.000000px;}
.fs1_c00432{font-size:57.000000px;}
.fs0_c00432{font-size:60.000000px;}
.fs3_c00432{font-size:63.000000px;}
.y0_c00432{bottom:0.000000px;}
.y53_c00432{bottom:3.105000px;}
.y52_c00432{bottom:7.228371px;}
.y51_c00432{bottom:34.215000px;}
.y50_c00432{bottom:52.965000px;}
.y29_c00432{bottom:53.115000px;}
.y4f_c00432{bottom:71.565000px;}
.y28_c00432{bottom:72.315000px;}
.y4e_c00432{bottom:89.565000px;}
.y27_c00432{bottom:90.765000px;}
.y4d_c00432{bottom:107.715000px;}
.y26_c00432{bottom:108.765000px;}
.y4c_c00432{bottom:125.865000px;}
.y25_c00432{bottom:127.215000px;}
.y4b_c00432{bottom:144.465000px;}
.y24_c00432{bottom:145.515000px;}
.y4a_c00432{bottom:162.465000px;}
.y23_c00432{bottom:163.065000px;}
.y49_c00432{bottom:180.615000px;}
.y22_c00432{bottom:181.365000px;}
.y48_c00432{bottom:198.765000px;}
.y21_c00432{bottom:199.215000px;}
.y47_c00432{bottom:217.065000px;}
.y20_c00432{bottom:218.115000px;}
.y46_c00432{bottom:234.315000px;}
.y1f_c00432{bottom:235.215000px;}
.y45_c00432{bottom:253.215000px;}
.y1e_c00432{bottom:254.115000px;}
.y44_c00432{bottom:271.665000px;}
.y1d_c00432{bottom:272.415000px;}
.y43_c00432{bottom:289.665000px;}
.y1c_c00432{bottom:289.965000px;}
.y42_c00432{bottom:307.515000px;}
.y1b_c00432{bottom:308.115000px;}
.y1a_c00432{bottom:325.665000px;}
.y41_c00432{bottom:343.665000px;}
.y19_c00432{bottom:343.815000px;}
.y18_c00432{bottom:361.965000px;}
.y40_c00432{bottom:362.265000px;}
.y17_c00432{bottom:380.115000px;}
.y16_c00432{bottom:398.265000px;}
.y3f_c00432{bottom:398.565000px;}
.y15_c00432{bottom:416.265000px;}
.y3e_c00432{bottom:434.115000px;}
.y14_c00432{bottom:434.415000px;}
.y13_c00432{bottom:452.265000px;}
.y3d_c00432{bottom:452.565000px;}
.y3c_c00432{bottom:469.815000px;}
.y12_c00432{bottom:470.115000px;}
.y11_c00432{bottom:488.115000px;}
.y3b_c00432{bottom:488.415000px;}
.y10_c00432{bottom:505.665000px;}
.y3a_c00432{bottom:506.565000px;}
.yf_c00432{bottom:522.915000px;}
.y39_c00432{bottom:524.265000px;}
.ye_c00432{bottom:540.465000px;}
.y38_c00432{bottom:541.815000px;}
.yd_c00432{bottom:558.915000px;}
.y37_c00432{bottom:559.365000px;}
.yc_c00432{bottom:576.915000px;}
.y36_c00432{bottom:577.815000px;}
.yb_c00432{bottom:594.765000px;}
.y35_c00432{bottom:595.815000px;}
.ya_c00432{bottom:613.215000px;}
.y34_c00432{bottom:613.365000px;}
.y9_c00432{bottom:630.915000px;}
.y33_c00432{bottom:631.815000px;}
.y8_c00432{bottom:649.065000px;}
.y32_c00432{bottom:650.115000px;}
.y7_c00432{bottom:667.665000px;}
.y31_c00432{bottom:667.965000px;}
.y6_c00432{bottom:685.665000px;}
.y30_c00432{bottom:686.265000px;}
.y5_c00432{bottom:703.815000px;}
.y2f_c00432{bottom:704.715000px;}
.y4_c00432{bottom:721.965000px;}
.y2e_c00432{bottom:722.715000px;}
.y3_c00432{bottom:740.265000px;}
.y2d_c00432{bottom:740.865000px;}
.y2_c00432{bottom:758.415000px;}
.y2c_c00432{bottom:759.015000px;}
.y1_c00432{bottom:776.565000px;}
.y2b_c00432{bottom:777.315000px;}
.y2a_c00432{bottom:798.315000px;}
.h6_c00432{height:13.200074px;}
.h7_c00432{height:43.804688px;}
.h3_c00432{height:59.736000px;}
.h2_c00432{height:62.880000px;}
.h5_c00432{height:66.024000px;}
.h4_c00432{height:66.713379px;}
.h0_c00432{height:841.875000px;}
.h1_c00432{height:842.250000px;}
.w2_c00432{width:104.875500px;}
.w1_c00432{width:574.500000px;}
.w0_c00432{width:574.575000px;}
.x0_c00432{left:0.000000px;}
.x5_c00432{left:72.600000px;}
.x3_c00432{left:74.550000px;}
.x2_c00432{left:76.050000px;}
.x1_c00432{left:77.550000px;}
.x4_c00432{left:96.300000px;}
.xd_c00432{left:239.101730px;}
.x6_c00432{left:276.450000px;}
.xb_c00432{left:287.550000px;}
.xa_c00432{left:289.350000px;}
.x7_c00432{left:290.550000px;}
.x9_c00432{left:291.600000px;}
.x8_c00432{left:292.650000px;}
.xc_c00432{left:368.550000px;}
@media print{
.v0_c00432{vertical-align:0.000000pt;}
.ls4_c00432{letter-spacing:0.000000pt;}
.ls0_c00432{letter-spacing:1.493333pt;}
.ls2_c00432{letter-spacing:2.666667pt;}
.ls5_c00432{letter-spacing:5.333333pt;}
.ls1_c00432{letter-spacing:10.048000pt;}
.ls6_c00432{letter-spacing:10.666667pt;}
.ls3_c00432{letter-spacing:18.560000pt;}
.ws1_c00432{word-spacing:-18.202667pt;}
.ws3_c00432{word-spacing:-16.053333pt;}
.ws0_c00432{word-spacing:-12.586667pt;}
.ws2_c00432{word-spacing:-11.957333pt;}
.ws4_c00432{word-spacing:0.000000pt;}
._24_c00432{margin-left:-21.928000pt;}
._d_c00432{margin-left:-20.480000pt;}
._22_c00432{margin-left:-15.269333pt;}
._1e_c00432{margin-left:-9.973333pt;}
._15_c00432{margin-left:-8.853333pt;}
._c_c00432{margin-left:-6.506667pt;}
._b_c00432{margin-left:-4.746667pt;}
._a_c00432{margin-left:-3.573333pt;}
._3_c00432{margin-left:-1.920000pt;}
._f_c00432{margin-left:-0.906667pt;}
._6_c00432{width:1.600000pt;}
._1_c00432{width:3.200000pt;}
._12_c00432{width:4.213333pt;}
._0_c00432{width:5.280000pt;}
._10_c00432{width:6.560000pt;}
._e_c00432{width:8.266667pt;}
._2_c00432{width:10.080000pt;}
._11_c00432{width:11.093333pt;}
._4_c00432{width:12.160000pt;}
._14_c00432{width:13.440000pt;}
._13_c00432{width:14.506667pt;}
._5_c00432{width:18.186667pt;}
._16_c00432{width:19.093333pt;}
._1c_c00432{width:20.693333pt;}
._18_c00432{width:21.973333pt;}
._1a_c00432{width:23.786667pt;}
._19_c00432{width:25.920000pt;}
._17_c00432{width:27.786667pt;}
._1b_c00432{width:30.186667pt;}
._8_c00432{width:31.946667pt;}
._9_c00432{width:33.546667pt;}
._23_c00432{width:36.810667pt;}
._20_c00432{width:38.514667pt;}
._7_c00432{width:39.626667pt;}
._25_c00432{width:45.696000pt;}
._1d_c00432{width:48.586667pt;}
._1f_c00432{width:87.573333pt;}
._21_c00432{width:171.925333pt;}
._26_c00432{width:183.040000pt;}
.fs2_c00432{font-size:42.666667pt;}
.fs1_c00432{font-size:50.666667pt;}
.fs0_c00432{font-size:53.333333pt;}
.fs3_c00432{font-size:56.000000pt;}
.y0_c00432{bottom:0.000000pt;}
.y53_c00432{bottom:2.760000pt;}
.y52_c00432{bottom:6.425219pt;}
.y51_c00432{bottom:30.413333pt;}
.y50_c00432{bottom:47.080000pt;}
.y29_c00432{bottom:47.213333pt;}
.y4f_c00432{bottom:63.613333pt;}
.y28_c00432{bottom:64.280000pt;}
.y4e_c00432{bottom:79.613333pt;}
.y27_c00432{bottom:80.680000pt;}
.y4d_c00432{bottom:95.746667pt;}
.y26_c00432{bottom:96.680000pt;}
.y4c_c00432{bottom:111.880000pt;}
.y25_c00432{bottom:113.080000pt;}
.y4b_c00432{bottom:128.413333pt;}
.y24_c00432{bottom:129.346667pt;}
.y4a_c00432{bottom:144.413333pt;}
.y23_c00432{bottom:144.946667pt;}
.y49_c00432{bottom:160.546667pt;}
.y22_c00432{bottom:161.213333pt;}
.y48_c00432{bottom:176.680000pt;}
.y21_c00432{bottom:177.080000pt;}
.y47_c00432{bottom:192.946667pt;}
.y20_c00432{bottom:193.880000pt;}
.y46_c00432{bottom:208.280000pt;}
.y1f_c00432{bottom:209.080000pt;}
.y45_c00432{bottom:225.080000pt;}
.y1e_c00432{bottom:225.880000pt;}
.y44_c00432{bottom:241.480000pt;}
.y1d_c00432{bottom:242.146667pt;}
.y43_c00432{bottom:257.480000pt;}
.y1c_c00432{bottom:257.746667pt;}
.y42_c00432{bottom:273.346667pt;}
.y1b_c00432{bottom:273.880000pt;}
.y1a_c00432{bottom:289.480000pt;}
.y41_c00432{bottom:305.480000pt;}
.y19_c00432{bottom:305.613333pt;}
.y18_c00432{bottom:321.746667pt;}
.y40_c00432{bottom:322.013333pt;}
.y17_c00432{bottom:337.880000pt;}
.y16_c00432{bottom:354.013333pt;}
.y3f_c00432{bottom:354.280000pt;}
.y15_c00432{bottom:370.013333pt;}
.y3e_c00432{bottom:385.880000pt;}
.y14_c00432{bottom:386.146667pt;}
.y13_c00432{bottom:402.013333pt;}
.y3d_c00432{bottom:402.280000pt;}
.y3c_c00432{bottom:417.613333pt;}
.y12_c00432{bottom:417.880000pt;}
.y11_c00432{bottom:433.880000pt;}
.y3b_c00432{bottom:434.146667pt;}
.y10_c00432{bottom:449.480000pt;}
.y3a_c00432{bottom:450.280000pt;}
.yf_c00432{bottom:464.813333pt;}
.y39_c00432{bottom:466.013333pt;}
.ye_c00432{bottom:480.413333pt;}
.y38_c00432{bottom:481.613333pt;}
.yd_c00432{bottom:496.813333pt;}
.y37_c00432{bottom:497.213333pt;}
.yc_c00432{bottom:512.813333pt;}
.y36_c00432{bottom:513.613333pt;}
.yb_c00432{bottom:528.680000pt;}
.y35_c00432{bottom:529.613333pt;}
.ya_c00432{bottom:545.080000pt;}
.y34_c00432{bottom:545.213333pt;}
.y9_c00432{bottom:560.813333pt;}
.y33_c00432{bottom:561.613333pt;}
.y8_c00432{bottom:576.946667pt;}
.y32_c00432{bottom:577.880000pt;}
.y7_c00432{bottom:593.480000pt;}
.y31_c00432{bottom:593.746667pt;}
.y6_c00432{bottom:609.480000pt;}
.y30_c00432{bottom:610.013333pt;}
.y5_c00432{bottom:625.613333pt;}
.y2f_c00432{bottom:626.413333pt;}
.y4_c00432{bottom:641.746667pt;}
.y2e_c00432{bottom:642.413333pt;}
.y3_c00432{bottom:658.013333pt;}
.y2d_c00432{bottom:658.546667pt;}
.y2_c00432{bottom:674.146667pt;}
.y2c_c00432{bottom:674.680000pt;}
.y1_c00432{bottom:690.280000pt;}
.y2b_c00432{bottom:690.946667pt;}
.y2a_c00432{bottom:709.613333pt;}
.h6_c00432{height:11.733399pt;}
.h7_c00432{height:38.937500pt;}
.h3_c00432{height:53.098667pt;}
.h2_c00432{height:55.893333pt;}
.h5_c00432{height:58.688000pt;}
.h4_c00432{height:59.300781pt;}
.h0_c00432{height:748.333333pt;}
.h1_c00432{height:748.666667pt;}
.w2_c00432{width:93.222667pt;}
.w1_c00432{width:510.666667pt;}
.w0_c00432{width:510.733333pt;}
.x0_c00432{left:0.000000pt;}
.x5_c00432{left:64.533333pt;}
.x3_c00432{left:66.266667pt;}
.x2_c00432{left:67.600000pt;}
.x1_c00432{left:68.933333pt;}
.x4_c00432{left:85.600000pt;}
.xd_c00432{left:212.534871pt;}
.x6_c00432{left:245.733333pt;}
.xb_c00432{left:255.600000pt;}
.xa_c00432{left:257.200000pt;}
.x7_c00432{left:258.266667pt;}
.x9_c00432{left:259.200000pt;}
.x8_c00432{left:260.133333pt;}
.xc_c00432{left:327.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_dd6ea97401c499ea5ca83085.woff2')format("woff");}.ff1_c00433{font-family:ff1_c00433;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00433;src:url('chunks/assets/font_01d192c01eae088e4f4eb96d.woff2')format("woff");}.ff2_c00433{font-family:ff2_c00433;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00433;src:url('chunks/assets/font_aecfacbde17ac3007b2a7942.woff2')format("woff");}.ff3_c00433{font-family:ff3_c00433;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00433;src:url('chunks/assets/font_8086b23b771424cd3e70f51c.woff2')format("woff");}.ff4_c00433{font-family:ff4_c00433;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00433;src:url('chunks/assets/font_62828c403f3963f2e13911f6.woff2')format("woff");}.ff5_c00433{font-family:ff5_c00433;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00433;src:url('chunks/assets/font_82c779db3f6337996074b0b9.woff2')format("woff");}.ff6_c00433{font-family:ff6_c00433;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00433;src:url('chunks/assets/font_6cd0654851c2f3c8b1d7b3bc.woff2')format("woff");}.ff7_c00433{font-family:ff7_c00433;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00433;src:url('chunks/assets/font_c9bed2306c1592b460414688.woff2')format("woff");}.ff8_c00433{font-family:ff8_c00433;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00433;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff9_c00433{font-family:ff9_c00433;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00433{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00433{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.v1_c00433{vertical-align:-2.400000px;}
.v0_c00433{vertical-align:0.000000px;}
.lsa_c00433{letter-spacing:0.000000px;}
.ls2_c00433{letter-spacing:0.072000px;}
.ls4_c00433{letter-spacing:3.000000px;}
.lsb_c00433{letter-spacing:6.000000px;}
.ls3_c00433{letter-spacing:7.800000px;}
.ls1_c00433{letter-spacing:9.230400px;}
.ls0_c00433{letter-spacing:12.000000px;}
.ls5_c00433{letter-spacing:14.940000px;}
.ls6_c00433{letter-spacing:66.540000px;}
.ls8_c00433{letter-spacing:70.740000px;}
.ls9_c00433{letter-spacing:78.177000px;}
.ls7_c00433{letter-spacing:90.900000px;}
.sc__c00433{text-shadow:none;}
.sc0_c00433{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00433{-webkit-text-stroke:0px transparent;}
.sc0_c00433{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00433{word-spacing:-50.022000px;}
.ws5_c00433{word-spacing:-35.973000px;}
.ws2_c00433{word-spacing:-18.813000px;}
.ws1_c00433{word-spacing:-18.060000px;}
.ws3_c00433{word-spacing:-14.160000px;}
.ws4_c00433{word-spacing:-13.452000px;}
.ws6_c00433{word-spacing:0.000000px;}
._23_c00433{margin-left:-17.388000px;}
._25_c00433{margin-left:-13.953000px;}
._21_c00433{margin-left:-12.348000px;}
._22_c00433{margin-left:-10.137000px;}
._13_c00433{margin-left:-8.919000px;}
._e_c00433{margin-left:-7.320000px;}
._8_c00433{margin-left:-5.223000px;}
._1_c00433{margin-left:-3.906000px;}
._0_c00433{margin-left:-2.394000px;}
._2_c00433{margin-left:-1.140000px;}
._6_c00433{width:1.071000px;}
._4_c00433{width:2.142000px;}
._3_c00433{width:3.717000px;}
._9_c00433{width:4.920000px;}
._1d_c00433{width:6.057000px;}
._a_c00433{width:7.119000px;}
._20_c00433{width:8.184000px;}
._5_c00433{width:9.198000px;}
._f_c00433{width:11.295000px;}
._14_c00433{width:12.318000px;}
._10_c00433{width:13.845000px;}
._11_c00433{width:15.093000px;}
._12_c00433{width:16.917000px;}
._18_c00433{width:18.849000px;}
._15_c00433{width:20.526000px;}
._1e_c00433{width:21.834000px;}
._19_c00433{width:22.944000px;}
._1c_c00433{width:24.072000px;}
._1b_c00433{width:26.070000px;}
._27_c00433{width:28.173000px;}
._16_c00433{width:29.421000px;}
._28_c00433{width:30.567000px;}
._1f_c00433{width:31.638000px;}
._1a_c00433{width:33.177000px;}
._26_c00433{width:38.889000px;}
._7_c00433{width:59.787000px;}
._d_c00433{width:67.599000px;}
._2a_c00433{width:69.372000px;}
._24_c00433{width:71.001000px;}
._29_c00433{width:76.821000px;}
._17_c00433{width:181.227000px;}
._b_c00433{width:205.065000px;}
._c_c00433{width:245.859000px;}
._2b_c00433{width:789.762000px;}
.fc2_c00433{color:transparent;}
.fc1_c00433{color:rgb(128,128,128);}
.fc0_c00433{color:rgb(0,0,0);}
.fs5_c00433{font-size:48.000000px;}
.fs2_c00433{font-size:50.400000px;}
.fs3_c00433{font-size:54.000000px;}
.fs4_c00433{font-size:57.000000px;}
.fs1_c00433{font-size:60.000000px;}
.fs0_c00433{font-size:63.000000px;}
.y0_c00433{bottom:0.000000px;}
.y4e_c00433{bottom:3.105000px;}
.y4d_c00433{bottom:7.228363px;}
.y4c_c00433{bottom:34.350000px;}
.y4b_c00433{bottom:53.550000px;}
.y4a_c00433{bottom:72.150000px;}
.y49_c00433{bottom:90.150000px;}
.y48_c00433{bottom:108.900000px;}
.y47_c00433{bottom:126.600000px;}
.y46_c00433{bottom:145.050000px;}
.y32_c00433{bottom:163.050000px;}
.y45_c00433{bottom:181.500000px;}
.y31_c00433{bottom:181.800000px;}
.y2_c00433{bottom:182.700000px;}
.y30_c00433{bottom:199.500000px;}
.y1_c00433{bottom:202.200000px;}
.y2f_c00433{bottom:217.650000px;}
.y44_c00433{bottom:218.250000px;}
.y2e_c00433{bottom:235.800000px;}
.y43_c00433{bottom:236.250000px;}
.y2d_c00433{bottom:254.100000px;}
.y42_c00433{bottom:254.400000px;}
.y2c_c00433{bottom:272.250000px;}
.y41_c00433{bottom:272.400000px;}
.y40_c00433{bottom:289.950000px;}
.y2b_c00433{bottom:290.250000px;}
.y3f_c00433{bottom:307.800000px;}
.y2a_c00433{bottom:308.400000px;}
.y3e_c00433{bottom:325.950000px;}
.y29_c00433{bottom:326.700000px;}
.y3d_c00433{bottom:343.950000px;}
.y28_c00433{bottom:345.150000px;}
.y3c_c00433{bottom:362.100000px;}
.y27_c00433{bottom:362.850000px;}
.y3b_c00433{bottom:380.400000px;}
.y26_c00433{bottom:381.300000px;}
.y3a_c00433{bottom:398.550000px;}
.y25_c00433{bottom:416.400000px;}
.y39_c00433{bottom:416.850000px;}
.y24_c00433{bottom:434.400000px;}
.y38_c00433{bottom:435.300000px;}
.y23_c00433{bottom:452.850000px;}
.y37_c00433{bottom:453.600000px;}
.y22_c00433{bottom:471.150000px;}
.y12_c00433{bottom:488.700000px;}
.y21_c00433{bottom:489.300000px;}
.y20_c00433{bottom:507.900000px;}
.y11_c00433{bottom:524.100000px;}
.y1f_c00433{bottom:525.750000px;}
.y1e_c00433{bottom:544.050000px;}
.y10_c00433{bottom:558.450000px;}
.y1d_c00433{bottom:561.600000px;}
.yf_c00433{bottom:578.400000px;}
.y1c_c00433{bottom:579.750000px;}
.ye_c00433{bottom:596.700000px;}
.y1b_c00433{bottom:597.750000px;}
.yd_c00433{bottom:614.850000px;}
.y1a_c00433{bottom:616.500000px;}
.y36_c00433{bottom:632.400000px;}
.yc_c00433{bottom:633.150000px;}
.y19_c00433{bottom:634.200000px;}
.y35_c00433{bottom:651.000000px;}
.yb_c00433{bottom:651.600000px;}
.y18_c00433{bottom:651.750000px;}
.y34_c00433{bottom:669.300000px;}
.ya_c00433{bottom:669.600000px;}
.y17_c00433{bottom:670.500000px;}
.y33_c00433{bottom:686.850000px;}
.y9_c00433{bottom:687.450000px;}
.y16_c00433{bottom:688.500000px;}
.y8_c00433{bottom:705.600000px;}
.y15_c00433{bottom:706.650000px;}
.y7_c00433{bottom:724.200000px;}
.y14_c00433{bottom:724.650000px;}
.y6_c00433{bottom:741.750000px;}
.y13_c00433{bottom:743.850000px;}
.y5_c00433{bottom:760.050000px;}
.y4_c00433{bottom:763.350000px;}
.y3_c00433{bottom:778.950000px;}
.h9_c00433{height:13.200074px;}
.ha_c00433{height:43.804688px;}
.h4_c00433{height:56.592000px;}
.h5_c00433{height:59.736000px;}
.h3_c00433{height:62.880000px;}
.h6_c00433{height:63.624000px;}
.h7_c00433{height:65.040000px;}
.h2_c00433{height:66.024000px;}
.h8_c00433{height:67.221000px;}
.h1_c00433{height:842.250000px;}
.h0_c00433{height:842.400000px;}
.w2_c00433{width:104.875500px;}
.w1_c00433{width:579.750000px;}
.w0_c00433{width:579.975000px;}
.x0_c00433{left:0.000000px;}
.x2_c00433{left:30.450000px;}
.x1_c00433{left:32.400000px;}
.x7_c00433{left:91.500000px;}
.x3_c00433{left:93.150000px;}
.x4_c00433{left:94.500000px;}
.xe_c00433{left:96.900000px;}
.xb_c00433{left:105.900000px;}
.xc_c00433{left:123.750000px;}
.xf_c00433{left:132.900000px;}
.xd_c00433{left:148.050000px;}
.x8_c00433{left:165.600000px;}
.x15_c00433{left:241.801758px;}
.x5_c00433{left:278.700000px;}
.x6_c00433{left:286.500000px;}
.x14_c00433{left:290.850000px;}
.xa_c00433{left:307.350000px;}
.x9_c00433{left:308.700000px;}
.x12_c00433{left:309.750000px;}
.x13_c00433{left:312.450000px;}
.x10_c00433{left:511.650000px;}
.x11_c00433{left:515.250000px;}
@media print{
.v1_c00433{vertical-align:-2.133333pt;}
.v0_c00433{vertical-align:0.000000pt;}
.lsa_c00433{letter-spacing:0.000000pt;}
.ls2_c00433{letter-spacing:0.064000pt;}
.ls4_c00433{letter-spacing:2.666667pt;}
.lsb_c00433{letter-spacing:5.333333pt;}
.ls3_c00433{letter-spacing:6.933333pt;}
.ls1_c00433{letter-spacing:8.204800pt;}
.ls0_c00433{letter-spacing:10.666667pt;}
.ls5_c00433{letter-spacing:13.280000pt;}
.ls6_c00433{letter-spacing:59.146667pt;}
.ls8_c00433{letter-spacing:62.880000pt;}
.ls9_c00433{letter-spacing:69.490667pt;}
.ls7_c00433{letter-spacing:80.800000pt;}
.ws0_c00433{word-spacing:-44.464000pt;}
.ws5_c00433{word-spacing:-31.976000pt;}
.ws2_c00433{word-spacing:-16.722667pt;}
.ws1_c00433{word-spacing:-16.053333pt;}
.ws3_c00433{word-spacing:-12.586667pt;}
.ws4_c00433{word-spacing:-11.957333pt;}
.ws6_c00433{word-spacing:0.000000pt;}
._23_c00433{margin-left:-15.456000pt;}
._25_c00433{margin-left:-12.402667pt;}
._21_c00433{margin-left:-10.976000pt;}
._22_c00433{margin-left:-9.010667pt;}
._13_c00433{margin-left:-7.928000pt;}
._e_c00433{margin-left:-6.506667pt;}
._8_c00433{margin-left:-4.642667pt;}
._1_c00433{margin-left:-3.472000pt;}
._0_c00433{margin-left:-2.128000pt;}
._2_c00433{margin-left:-1.013333pt;}
._6_c00433{width:0.952000pt;}
._4_c00433{width:1.904000pt;}
._3_c00433{width:3.304000pt;}
._9_c00433{width:4.373333pt;}
._1d_c00433{width:5.384000pt;}
._a_c00433{width:6.328000pt;}
._20_c00433{width:7.274667pt;}
._5_c00433{width:8.176000pt;}
._f_c00433{width:10.040000pt;}
._14_c00433{width:10.949333pt;}
._10_c00433{width:12.306667pt;}
._11_c00433{width:13.416000pt;}
._12_c00433{width:15.037333pt;}
._18_c00433{width:16.754667pt;}
._15_c00433{width:18.245333pt;}
._1e_c00433{width:19.408000pt;}
._19_c00433{width:20.394667pt;}
._1c_c00433{width:21.397333pt;}
._1b_c00433{width:23.173333pt;}
._27_c00433{width:25.042667pt;}
._16_c00433{width:26.152000pt;}
._28_c00433{width:27.170667pt;}
._1f_c00433{width:28.122667pt;}
._1a_c00433{width:29.490667pt;}
._26_c00433{width:34.568000pt;}
._7_c00433{width:53.144000pt;}
._d_c00433{width:60.088000pt;}
._2a_c00433{width:61.664000pt;}
._24_c00433{width:63.112000pt;}
._29_c00433{width:68.285333pt;}
._17_c00433{width:161.090667pt;}
._b_c00433{width:182.280000pt;}
._c_c00433{width:218.541333pt;}
._2b_c00433{width:702.010667pt;}
.fs5_c00433{font-size:42.666667pt;}
.fs2_c00433{font-size:44.800000pt;}
.fs3_c00433{font-size:48.000000pt;}
.fs4_c00433{font-size:50.666667pt;}
.fs1_c00433{font-size:53.333333pt;}
.fs0_c00433{font-size:56.000000pt;}
.y0_c00433{bottom:0.000000pt;}
.y4e_c00433{bottom:2.760000pt;}
.y4d_c00433{bottom:6.425212pt;}
.y4c_c00433{bottom:30.533333pt;}
.y4b_c00433{bottom:47.600000pt;}
.y4a_c00433{bottom:64.133333pt;}
.y49_c00433{bottom:80.133333pt;}
.y48_c00433{bottom:96.800000pt;}
.y47_c00433{bottom:112.533333pt;}
.y46_c00433{bottom:128.933333pt;}
.y32_c00433{bottom:144.933333pt;}
.y45_c00433{bottom:161.333333pt;}
.y31_c00433{bottom:161.600000pt;}
.y2_c00433{bottom:162.400000pt;}
.y30_c00433{bottom:177.333333pt;}
.y1_c00433{bottom:179.733333pt;}
.y2f_c00433{bottom:193.466667pt;}
.y44_c00433{bottom:194.000000pt;}
.y2e_c00433{bottom:209.600000pt;}
.y43_c00433{bottom:210.000000pt;}
.y2d_c00433{bottom:225.866667pt;}
.y42_c00433{bottom:226.133333pt;}
.y2c_c00433{bottom:242.000000pt;}
.y41_c00433{bottom:242.133333pt;}
.y40_c00433{bottom:257.733333pt;}
.y2b_c00433{bottom:258.000000pt;}
.y3f_c00433{bottom:273.600000pt;}
.y2a_c00433{bottom:274.133333pt;}
.y3e_c00433{bottom:289.733333pt;}
.y29_c00433{bottom:290.400000pt;}
.y3d_c00433{bottom:305.733333pt;}
.y28_c00433{bottom:306.800000pt;}
.y3c_c00433{bottom:321.866667pt;}
.y27_c00433{bottom:322.533333pt;}
.y3b_c00433{bottom:338.133333pt;}
.y26_c00433{bottom:338.933333pt;}
.y3a_c00433{bottom:354.266667pt;}
.y25_c00433{bottom:370.133333pt;}
.y39_c00433{bottom:370.533333pt;}
.y24_c00433{bottom:386.133333pt;}
.y38_c00433{bottom:386.933333pt;}
.y23_c00433{bottom:402.533333pt;}
.y37_c00433{bottom:403.200000pt;}
.y22_c00433{bottom:418.800000pt;}
.y12_c00433{bottom:434.400000pt;}
.y21_c00433{bottom:434.933333pt;}
.y20_c00433{bottom:451.466667pt;}
.y11_c00433{bottom:465.866667pt;}
.y1f_c00433{bottom:467.333333pt;}
.y1e_c00433{bottom:483.600000pt;}
.y10_c00433{bottom:496.400000pt;}
.y1d_c00433{bottom:499.200000pt;}
.yf_c00433{bottom:514.133333pt;}
.y1c_c00433{bottom:515.333333pt;}
.ye_c00433{bottom:530.400000pt;}
.y1b_c00433{bottom:531.333333pt;}
.yd_c00433{bottom:546.533333pt;}
.y1a_c00433{bottom:548.000000pt;}
.y36_c00433{bottom:562.133333pt;}
.yc_c00433{bottom:562.800000pt;}
.y19_c00433{bottom:563.733333pt;}
.y35_c00433{bottom:578.666667pt;}
.yb_c00433{bottom:579.200000pt;}
.y18_c00433{bottom:579.333333pt;}
.y34_c00433{bottom:594.933333pt;}
.ya_c00433{bottom:595.200000pt;}
.y17_c00433{bottom:596.000000pt;}
.y33_c00433{bottom:610.533333pt;}
.y9_c00433{bottom:611.066667pt;}
.y16_c00433{bottom:612.000000pt;}
.y8_c00433{bottom:627.200000pt;}
.y15_c00433{bottom:628.133333pt;}
.y7_c00433{bottom:643.733333pt;}
.y14_c00433{bottom:644.133333pt;}
.y6_c00433{bottom:659.333333pt;}
.y13_c00433{bottom:661.200000pt;}
.y5_c00433{bottom:675.600000pt;}
.y4_c00433{bottom:678.533333pt;}
.y3_c00433{bottom:692.400000pt;}
.h9_c00433{height:11.733399pt;}
.ha_c00433{height:38.937500pt;}
.h4_c00433{height:50.304000pt;}
.h5_c00433{height:53.098667pt;}
.h3_c00433{height:55.893333pt;}
.h6_c00433{height:56.554667pt;}
.h7_c00433{height:57.813333pt;}
.h2_c00433{height:58.688000pt;}
.h8_c00433{height:59.752000pt;}
.h1_c00433{height:748.666667pt;}
.h0_c00433{height:748.800000pt;}
.w2_c00433{width:93.222667pt;}
.w1_c00433{width:515.333333pt;}
.w0_c00433{width:515.533333pt;}
.x0_c00433{left:0.000000pt;}
.x2_c00433{left:27.066667pt;}
.x1_c00433{left:28.800000pt;}
.x7_c00433{left:81.333333pt;}
.x3_c00433{left:82.800000pt;}
.x4_c00433{left:84.000000pt;}
.xe_c00433{left:86.133333pt;}
.xb_c00433{left:94.133333pt;}
.xc_c00433{left:110.000000pt;}
.xf_c00433{left:118.133333pt;}
.xd_c00433{left:131.600000pt;}
.x8_c00433{left:147.200000pt;}
.x15_c00433{left:214.934896pt;}
.x5_c00433{left:247.733333pt;}
.x6_c00433{left:254.666667pt;}
.x14_c00433{left:258.533333pt;}
.xa_c00433{left:273.200000pt;}
.x9_c00433{left:274.400000pt;}
.x12_c00433{left:275.333333pt;}
.x13_c00433{left:277.733333pt;}
.x10_c00433{left:454.800000pt;}
.x11_c00433{left:458.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_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_1fddac7000a1041180d78175.woff2')format("woff");}.ff1_c00434{font-family:ff1_c00434;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00434;src:url('chunks/assets/font_ab232fbf340e6b02a55eecee.woff2')format("woff");}.ff2_c00434{font-family:ff2_c00434;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00434;src:url('chunks/assets/font_041cb8daeac0e8924ec71bb9.woff2')format("woff");}.ff3_c00434{font-family:ff3_c00434;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00434;src:url('chunks/assets/font_080e906445012bd01d62e5b3.woff2')format("woff");}.ff4_c00434{font-family:ff4_c00434;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00434;src:url('chunks/assets/font_6fbcdf4a62811d6588558790.woff2')format("woff");}.ff5_c00434{font-family:ff5_c00434;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00434;src:url('chunks/assets/font_369193ad934c28943f3122ad.woff2')format("woff");}.ff6_c00434{font-family:ff6_c00434;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00434;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff7_c00434{font-family:ff7_c00434;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00434{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00434{vertical-align:0.000000px;}
.ls1_c00434{letter-spacing:0.000000px;}
.ls0_c00434{letter-spacing:8.400000px;}
.sc__c00434{text-shadow:none;}
.sc0_c00434{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00434{-webkit-text-stroke:0px transparent;}
.sc0_c00434{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00434{word-spacing:-15.000000px;}
.ws1_c00434{word-spacing:-14.340000px;}
.ws0_c00434{word-spacing:-14.160000px;}
.ws4_c00434{word-spacing:0.000000px;}
.ws2_c00434{word-spacing:0.540000px;}
._23_c00434{margin-left:-16.500000px;}
._18_c00434{margin-left:-13.200000px;}
._16_c00434{margin-left:-11.340000px;}
._14_c00434{margin-left:-9.480000px;}
._15_c00434{margin-left:-7.920000px;}
._11_c00434{margin-left:-6.240000px;}
._1c_c00434{margin-left:-4.800000px;}
._a_c00434{margin-left:-3.780000px;}
._10_c00434{margin-left:-2.580000px;}
._7_c00434{margin-left:-1.380000px;}
._17_c00434{width:1.080000px;}
._4_c00434{width:2.100000px;}
._5_c00434{width:3.180000px;}
._d_c00434{width:4.560000px;}
._12_c00434{width:5.880000px;}
._e_c00434{width:6.960000px;}
._20_c00434{width:7.980000px;}
._c_c00434{width:9.000000px;}
._1a_c00434{width:10.320000px;}
._f_c00434{width:11.460000px;}
._b_c00434{width:13.320000px;}
._1b_c00434{width:16.260000px;}
._0_c00434{width:18.300000px;}
._2_c00434{width:19.860000px;}
._19_c00434{width:20.940000px;}
._3_c00434{width:22.140000px;}
._28_c00434{width:23.280000px;}
._8_c00434{width:24.660000px;}
._27_c00434{width:25.680000px;}
._1e_c00434{width:27.300000px;}
._13_c00434{width:28.800000px;}
._1f_c00434{width:32.040000px;}
._9_c00434{width:34.080000px;}
._1d_c00434{width:36.000000px;}
._6_c00434{width:38.760000px;}
._1_c00434{width:40.200000px;}
._26_c00434{width:68.640000px;}
._21_c00434{width:79.980000px;}
._22_c00434{width:125.340000px;}
._25_c00434{width:149.940000px;}
._24_c00434{width:213.900000px;}
._29_c00434{width:219.900000px;}
.fc2_c00434{color:transparent;}
.fc1_c00434{color:rgb(128,128,128);}
.fc0_c00434{color:rgb(0,0,0);}
.fs3_c00434{font-size:48.000000px;}
.fs1_c00434{font-size:57.000000px;}
.fs0_c00434{font-size:60.000000px;}
.fs2_c00434{font-size:66.000000px;}
.y0_c00434{bottom:0.000000px;}
.y55_c00434{bottom:3.105000px;}
.y54_c00434{bottom:7.228357px;}
.y53_c00434{bottom:42.180000px;}
.y2a_c00434{bottom:61.080000px;}
.y52_c00434{bottom:61.830000px;}
.y29_c00434{bottom:79.980000px;}
.y51_c00434{bottom:80.430000px;}
.y28_c00434{bottom:98.280000px;}
.y50_c00434{bottom:98.880000px;}
.y4f_c00434{bottom:116.730000px;}
.y27_c00434{bottom:117.180000px;}
.y26_c00434{bottom:134.730000px;}
.y4e_c00434{bottom:135.030000px;}
.y25_c00434{bottom:152.880000px;}
.y4d_c00434{bottom:153.180000px;}
.y24_c00434{bottom:170.880000px;}
.y4c_c00434{bottom:189.330000px;}
.y23_c00434{bottom:189.630000px;}
.y4b_c00434{bottom:207.330000px;}
.y22_c00434{bottom:207.930000px;}
.y4a_c00434{bottom:224.880000px;}
.y21_c00434{bottom:226.080000px;}
.y49_c00434{bottom:243.030000px;}
.y20_c00434{bottom:244.380000px;}
.y48_c00434{bottom:261.630000px;}
.y1f_c00434{bottom:262.980000px;}
.y47_c00434{bottom:279.480000px;}
.y1e_c00434{bottom:281.130000px;}
.y46_c00434{bottom:298.080000px;}
.y1d_c00434{bottom:298.380000px;}
.y45_c00434{bottom:315.630000px;}
.y1c_c00434{bottom:316.680000px;}
.y44_c00434{bottom:334.230000px;}
.y1b_c00434{bottom:334.530000px;}
.y43_c00434{bottom:352.680000px;}
.y1a_c00434{bottom:352.980000px;}
.y19_c00434{bottom:370.230000px;}
.y42_c00434{bottom:370.680000px;}
.y18_c00434{bottom:387.480000px;}
.y41_c00434{bottom:388.530000px;}
.y17_c00434{bottom:405.780000px;}
.y40_c00434{bottom:406.980000px;}
.y16_c00434{bottom:423.630000px;}
.y3f_c00434{bottom:424.980000px;}
.y15_c00434{bottom:441.780000px;}
.y3e_c00434{bottom:442.830000px;}
.y14_c00434{bottom:460.080000px;}
.y3d_c00434{bottom:461.130000px;}
.y13_c00434{bottom:478.230000px;}
.y3c_c00434{bottom:479.280000px;}
.y12_c00434{bottom:496.080000px;}
.y3b_c00434{bottom:497.130000px;}
.y11_c00434{bottom:513.030000px;}
.y3a_c00434{bottom:514.980000px;}
.y10_c00434{bottom:530.280000px;}
.y39_c00434{bottom:532.980000px;}
.yf_c00434{bottom:548.430000px;}
.y38_c00434{bottom:550.530000px;}
.ye_c00434{bottom:566.280000px;}
.y37_c00434{bottom:568.680000px;}
.yd_c00434{bottom:584.580000px;}
.y36_c00434{bottom:586.980000px;}
.yc_c00434{bottom:602.430000px;}
.y35_c00434{bottom:604.530000px;}
.yb_c00434{bottom:620.730000px;}
.y34_c00434{bottom:622.680000px;}
.ya_c00434{bottom:638.880000px;}
.y33_c00434{bottom:640.530000px;}
.y9_c00434{bottom:657.180000px;}
.y32_c00434{bottom:659.430000px;}
.y8_c00434{bottom:674.730000px;}
.y31_c00434{bottom:677.430000px;}
.y7_c00434{bottom:693.330000px;}
.y30_c00434{bottom:695.280000px;}
.y6_c00434{bottom:711.480000px;}
.y2f_c00434{bottom:713.880000px;}
.y5_c00434{bottom:729.630000px;}
.y2e_c00434{bottom:731.430000px;}
.y4_c00434{bottom:747.630000px;}
.y2d_c00434{bottom:749.880000px;}
.y3_c00434{bottom:766.530000px;}
.y2c_c00434{bottom:768.480000px;}
.y2_c00434{bottom:784.080000px;}
.y2b_c00434{bottom:786.780000px;}
.y1_c00434{bottom:806.280000px;}
.h5_c00434{height:13.200074px;}
.h6_c00434{height:43.804688px;}
.h2_c00434{height:62.880000px;}
.h3_c00434{height:65.040000px;}
.h4_c00434{height:70.422000px;}
.h1_c00434{height:843.750000px;}
.h0_c00434{height:844.050000px;}
.w2_c00434{width:104.875500px;}
.w1_c00434{width:576.000000px;}
.w0_c00434{width:576.150000px;}
.x0_c00434{left:0.000000px;}
.x7_c00434{left:21.300000px;}
.x8_c00434{left:23.250000px;}
.x3_c00434{left:76.950000px;}
.x2_c00434{left:79.650000px;}
.x4_c00434{left:81.300000px;}
.x6_c00434{left:82.350000px;}
.x5_c00434{left:100.800000px;}
.xa_c00434{left:143.400000px;}
.x9_c00434{left:147.750000px;}
.x1_c00434{left:211.650000px;}
.x11_c00434{left:239.889267px;}
.xb_c00434{left:296.550000px;}
.xe_c00434{left:298.650000px;}
.xd_c00434{left:299.700000px;}
.xf_c00434{left:300.750000px;}
.xc_c00434{left:322.350000px;}
.x10_c00434{left:380.250000px;}
@media print{
.v0_c00434{vertical-align:0.000000pt;}
.ls1_c00434{letter-spacing:0.000000pt;}
.ls0_c00434{letter-spacing:7.466667pt;}
.ws3_c00434{word-spacing:-13.333333pt;}
.ws1_c00434{word-spacing:-12.746667pt;}
.ws0_c00434{word-spacing:-12.586667pt;}
.ws4_c00434{word-spacing:0.000000pt;}
.ws2_c00434{word-spacing:0.480000pt;}
._23_c00434{margin-left:-14.666667pt;}
._18_c00434{margin-left:-11.733333pt;}
._16_c00434{margin-left:-10.080000pt;}
._14_c00434{margin-left:-8.426667pt;}
._15_c00434{margin-left:-7.040000pt;}
._11_c00434{margin-left:-5.546667pt;}
._1c_c00434{margin-left:-4.266667pt;}
._a_c00434{margin-left:-3.360000pt;}
._10_c00434{margin-left:-2.293333pt;}
._7_c00434{margin-left:-1.226667pt;}
._17_c00434{width:0.960000pt;}
._4_c00434{width:1.866667pt;}
._5_c00434{width:2.826667pt;}
._d_c00434{width:4.053333pt;}
._12_c00434{width:5.226667pt;}
._e_c00434{width:6.186667pt;}
._20_c00434{width:7.093333pt;}
._c_c00434{width:8.000000pt;}
._1a_c00434{width:9.173333pt;}
._f_c00434{width:10.186667pt;}
._b_c00434{width:11.840000pt;}
._1b_c00434{width:14.453333pt;}
._0_c00434{width:16.266667pt;}
._2_c00434{width:17.653333pt;}
._19_c00434{width:18.613333pt;}
._3_c00434{width:19.680000pt;}
._28_c00434{width:20.693333pt;}
._8_c00434{width:21.920000pt;}
._27_c00434{width:22.826667pt;}
._1e_c00434{width:24.266667pt;}
._13_c00434{width:25.600000pt;}
._1f_c00434{width:28.480000pt;}
._9_c00434{width:30.293333pt;}
._1d_c00434{width:32.000000pt;}
._6_c00434{width:34.453333pt;}
._1_c00434{width:35.733333pt;}
._26_c00434{width:61.013333pt;}
._21_c00434{width:71.093333pt;}
._22_c00434{width:111.413333pt;}
._25_c00434{width:133.280000pt;}
._24_c00434{width:190.133333pt;}
._29_c00434{width:195.466667pt;}
.fs3_c00434{font-size:42.666667pt;}
.fs1_c00434{font-size:50.666667pt;}
.fs0_c00434{font-size:53.333333pt;}
.fs2_c00434{font-size:58.666667pt;}
.y0_c00434{bottom:0.000000pt;}
.y55_c00434{bottom:2.760000pt;}
.y54_c00434{bottom:6.425206pt;}
.y53_c00434{bottom:37.493333pt;}
.y2a_c00434{bottom:54.293333pt;}
.y52_c00434{bottom:54.960000pt;}
.y29_c00434{bottom:71.093333pt;}
.y51_c00434{bottom:71.493333pt;}
.y28_c00434{bottom:87.360000pt;}
.y50_c00434{bottom:87.893333pt;}
.y4f_c00434{bottom:103.760000pt;}
.y27_c00434{bottom:104.160000pt;}
.y26_c00434{bottom:119.760000pt;}
.y4e_c00434{bottom:120.026667pt;}
.y25_c00434{bottom:135.893333pt;}
.y4d_c00434{bottom:136.160000pt;}
.y24_c00434{bottom:151.893333pt;}
.y4c_c00434{bottom:168.293333pt;}
.y23_c00434{bottom:168.560000pt;}
.y4b_c00434{bottom:184.293333pt;}
.y22_c00434{bottom:184.826667pt;}
.y4a_c00434{bottom:199.893333pt;}
.y21_c00434{bottom:200.960000pt;}
.y49_c00434{bottom:216.026667pt;}
.y20_c00434{bottom:217.226667pt;}
.y48_c00434{bottom:232.560000pt;}
.y1f_c00434{bottom:233.760000pt;}
.y47_c00434{bottom:248.426667pt;}
.y1e_c00434{bottom:249.893333pt;}
.y46_c00434{bottom:264.960000pt;}
.y1d_c00434{bottom:265.226667pt;}
.y45_c00434{bottom:280.560000pt;}
.y1c_c00434{bottom:281.493333pt;}
.y44_c00434{bottom:297.093333pt;}
.y1b_c00434{bottom:297.360000pt;}
.y43_c00434{bottom:313.493333pt;}
.y1a_c00434{bottom:313.760000pt;}
.y19_c00434{bottom:329.093333pt;}
.y42_c00434{bottom:329.493333pt;}
.y18_c00434{bottom:344.426667pt;}
.y41_c00434{bottom:345.360000pt;}
.y17_c00434{bottom:360.693333pt;}
.y40_c00434{bottom:361.760000pt;}
.y16_c00434{bottom:376.560000pt;}
.y3f_c00434{bottom:377.760000pt;}
.y15_c00434{bottom:392.693333pt;}
.y3e_c00434{bottom:393.626667pt;}
.y14_c00434{bottom:408.960000pt;}
.y3d_c00434{bottom:409.893333pt;}
.y13_c00434{bottom:425.093333pt;}
.y3c_c00434{bottom:426.026667pt;}
.y12_c00434{bottom:440.960000pt;}
.y3b_c00434{bottom:441.893333pt;}
.y11_c00434{bottom:456.026667pt;}
.y3a_c00434{bottom:457.760000pt;}
.y10_c00434{bottom:471.360000pt;}
.y39_c00434{bottom:473.760000pt;}
.yf_c00434{bottom:487.493333pt;}
.y38_c00434{bottom:489.360000pt;}
.ye_c00434{bottom:503.360000pt;}
.y37_c00434{bottom:505.493333pt;}
.yd_c00434{bottom:519.626667pt;}
.y36_c00434{bottom:521.760000pt;}
.yc_c00434{bottom:535.493333pt;}
.y35_c00434{bottom:537.360000pt;}
.yb_c00434{bottom:551.760000pt;}
.y34_c00434{bottom:553.493333pt;}
.ya_c00434{bottom:567.893333pt;}
.y33_c00434{bottom:569.360000pt;}
.y9_c00434{bottom:584.160000pt;}
.y32_c00434{bottom:586.160000pt;}
.y8_c00434{bottom:599.760000pt;}
.y31_c00434{bottom:602.160000pt;}
.y7_c00434{bottom:616.293333pt;}
.y30_c00434{bottom:618.026667pt;}
.y6_c00434{bottom:632.426667pt;}
.y2f_c00434{bottom:634.560000pt;}
.y5_c00434{bottom:648.560000pt;}
.y2e_c00434{bottom:650.160000pt;}
.y4_c00434{bottom:664.560000pt;}
.y2d_c00434{bottom:666.560000pt;}
.y3_c00434{bottom:681.360000pt;}
.y2c_c00434{bottom:683.093333pt;}
.y2_c00434{bottom:696.960000pt;}
.y2b_c00434{bottom:699.360000pt;}
.y1_c00434{bottom:716.693333pt;}
.h5_c00434{height:11.733399pt;}
.h6_c00434{height:38.937500pt;}
.h2_c00434{height:55.893333pt;}
.h3_c00434{height:57.813333pt;}
.h4_c00434{height:62.597333pt;}
.h1_c00434{height:750.000000pt;}
.h0_c00434{height:750.266667pt;}
.w2_c00434{width:93.222667pt;}
.w1_c00434{width:512.000000pt;}
.w0_c00434{width:512.133333pt;}
.x0_c00434{left:0.000000pt;}
.x7_c00434{left:18.933333pt;}
.x8_c00434{left:20.666667pt;}
.x3_c00434{left:68.400000pt;}
.x2_c00434{left:70.800000pt;}
.x4_c00434{left:72.266667pt;}
.x6_c00434{left:73.200000pt;}
.x5_c00434{left:89.600000pt;}
.xa_c00434{left:127.466667pt;}
.x9_c00434{left:131.333333pt;}
.x1_c00434{left:188.133333pt;}
.x11_c00434{left:213.234904pt;}
.xb_c00434{left:263.600000pt;}
.xe_c00434{left:265.466667pt;}
.xd_c00434{left:266.400000pt;}
.xf_c00434{left:267.333333pt;}
.xc_c00434{left:286.533333pt;}
.x10_c00434{left:338.000000pt;}
}





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

.ir_c00435:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00435{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00435;src:url('chunks/assets/font_2e1c6e5a2b89b40079d254b4.woff2')format("woff");}.ff1_c00435{font-family:ff1_c00435;line-height:1.437000;font-style:normal;font-weight:normal;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_390fe72f4d109bac08dec8dd.woff2')format("woff");}.ff2_c00435{font-family:ff2_c00435;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00435;src:url('chunks/assets/font_2b1d19da6e180af37ac2d302.woff2')format("woff");}.ff3_c00435{font-family:ff3_c00435;line-height:1.437000;font-style:normal;font-weight:normal;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_7d9903ee097d31680be31a14.woff2')format("woff");}.ff4_c00435{font-family:ff4_c00435;line-height:1.437000;font-style:normal;font-weight:normal;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_18142a6f7ee899e85eeda6db.woff2')format("woff");}.ff5_c00435{font-family:ff5_c00435;line-height:1.437000;font-style:normal;font-weight:normal;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_117e16220997eecdc176ab4c.woff2')format("woff");}.ff6_c00435{font-family:ff6_c00435;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00435;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff7_c00435{font-family:ff7_c00435;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00435{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00435{vertical-align:0.000000px;}
.ls2_c00435{letter-spacing:0.000000px;}
.ls3_c00435{letter-spacing:3.000000px;}
.ls1_c00435{letter-spacing:14.400000px;}
.ls0_c00435{letter-spacing:16.050000px;}
.sc__c00435{text-shadow:none;}
.sc0_c00435{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00435{-webkit-text-stroke:0px transparent;}
.sc0_c00435{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00435{word-spacing:-50.022000px;}
.ws4_c00435{word-spacing:-36.267000px;}
.ws1_c00435{word-spacing:-18.750000px;}
.ws2_c00435{word-spacing:-18.642000px;}
.ws0_c00435{word-spacing:-15.576000px;}
.ws5_c00435{word-spacing:-15.060000px;}
.ws6_c00435{word-spacing:-14.160000px;}
.ws7_c00435{word-spacing:0.000000px;}
._11_c00435{margin-left:-15.990000px;}
._d_c00435{margin-left:-11.622000px;}
._18_c00435{margin-left:-9.666000px;}
._0_c00435{margin-left:-7.854000px;}
._e_c00435{margin-left:-6.540000px;}
._1_c00435{margin-left:-4.884000px;}
._2_c00435{margin-left:-3.366000px;}
._6_c00435{margin-left:-1.323000px;}
._8_c00435{width:1.386000px;}
._c_c00435{width:2.646000px;}
._4_c00435{width:3.843000px;}
._3_c00435{width:5.481000px;}
._17_c00435{width:6.582000px;}
._5_c00435{width:8.127000px;}
._15_c00435{width:9.450000px;}
._b_c00435{width:10.569000px;}
._24_c00435{width:11.655000px;}
._10_c00435{width:13.005000px;}
._a_c00435{width:14.235000px;}
._9_c00435{width:15.687000px;}
._1a_c00435{width:17.178000px;}
._1e_c00435{width:18.201000px;}
._1c_c00435{width:19.404000px;}
._20_c00435{width:20.937000px;}
._14_c00435{width:22.239000px;}
._1d_c00435{width:24.444000px;}
._19_c00435{width:26.523000px;}
._1f_c00435{width:27.993000px;}
._1b_c00435{width:32.067000px;}
._21_c00435{width:33.720000px;}
._25_c00435{width:35.847000px;}
._13_c00435{width:37.473000px;}
._16_c00435{width:39.255000px;}
._22_c00435{width:41.121000px;}
._23_c00435{width:44.982000px;}
._26_c00435{width:69.426000px;}
._7_c00435{width:73.386000px;}
._12_c00435{width:75.066000px;}
._f_c00435{width:79.257000px;}
.fc2_c00435{color:transparent;}
.fc1_c00435{color:rgb(128,128,128);}
.fc0_c00435{color:rgb(0,0,0);}
.fs4_c00435{font-size:48.000000px;}
.fs3_c00435{font-size:60.000000px;}
.fs1_c00435{font-size:63.000000px;}
.fs0_c00435{font-size:66.000000px;}
.fs2_c00435{font-size:78.000000px;}
.y0_c00435{bottom:0.000000px;}
.y52_c00435{bottom:3.105000px;}
.y51_c00435{bottom:7.228363px;}
.y50_c00435{bottom:55.050000px;}
.y2b_c00435{bottom:57.000000px;}
.y2_c00435{bottom:58.350000px;}
.y4f_c00435{bottom:74.250000px;}
.y2a_c00435{bottom:76.350000px;}
.y1_c00435{bottom:76.950000px;}
.y4e_c00435{bottom:92.550000px;}
.y29_c00435{bottom:93.900000px;}
.y4d_c00435{bottom:110.700000px;}
.y28_c00435{bottom:112.500000px;}
.y4c_c00435{bottom:128.700000px;}
.y27_c00435{bottom:130.950000px;}
.y4b_c00435{bottom:146.850000px;}
.y26_c00435{bottom:148.950000px;}
.y4a_c00435{bottom:164.700000px;}
.y25_c00435{bottom:167.400000px;}
.y49_c00435{bottom:183.000000px;}
.y24_c00435{bottom:185.700000px;}
.y48_c00435{bottom:201.150000px;}
.y23_c00435{bottom:204.150000px;}
.y47_c00435{bottom:219.150000px;}
.y22_c00435{bottom:221.700000px;}
.y46_c00435{bottom:238.050000px;}
.y21_c00435{bottom:240.600000px;}
.y45_c00435{bottom:255.900000px;}
.y20_c00435{bottom:259.200000px;}
.y44_c00435{bottom:274.350000px;}
.y1f_c00435{bottom:277.050000px;}
.y43_c00435{bottom:291.900000px;}
.y1e_c00435{bottom:294.750000px;}
.y42_c00435{bottom:310.200000px;}
.y1d_c00435{bottom:312.600000px;}
.y41_c00435{bottom:328.350000px;}
.y1c_c00435{bottom:330.750000px;}
.y40_c00435{bottom:346.650000px;}
.y1b_c00435{bottom:348.600000px;}
.y3f_c00435{bottom:364.200000px;}
.y1a_c00435{bottom:367.500000px;}
.y3e_c00435{bottom:382.350000px;}
.y19_c00435{bottom:385.200000px;}
.y3d_c00435{bottom:400.950000px;}
.y18_c00435{bottom:403.950000px;}
.y3c_c00435{bottom:418.500000px;}
.y17_c00435{bottom:421.650000px;}
.y3b_c00435{bottom:436.800000px;}
.y16_c00435{bottom:439.500000px;}
.y3a_c00435{bottom:455.700000px;}
.y15_c00435{bottom:458.700000px;}
.y39_c00435{bottom:472.950000px;}
.y14_c00435{bottom:476.550000px;}
.y38_c00435{bottom:491.700000px;}
.y13_c00435{bottom:494.550000px;}
.y37_c00435{bottom:509.700000px;}
.y12_c00435{bottom:513.000000px;}
.y36_c00435{bottom:528.150000px;}
.y11_c00435{bottom:530.550000px;}
.y35_c00435{bottom:544.800000px;}
.y10_c00435{bottom:549.150000px;}
.y34_c00435{bottom:563.850000px;}
.yf_c00435{bottom:567.000000px;}
.y33_c00435{bottom:581.850000px;}
.ye_c00435{bottom:584.550000px;}
.y32_c00435{bottom:599.850000px;}
.yd_c00435{bottom:603.150000px;}
.y31_c00435{bottom:618.300000px;}
.yc_c00435{bottom:621.300000px;}
.y30_c00435{bottom:637.200000px;}
.yb_c00435{bottom:639.000000px;}
.y2f_c00435{bottom:655.200000px;}
.ya_c00435{bottom:657.000000px;}
.y2e_c00435{bottom:673.650000px;}
.y9_c00435{bottom:675.750000px;}
.y2d_c00435{bottom:691.500000px;}
.y8_c00435{bottom:693.000000px;}
.y2c_c00435{bottom:709.500000px;}
.y7_c00435{bottom:711.900000px;}
.y6_c00435{bottom:729.300000px;}
.y5_c00435{bottom:748.500000px;}
.y4_c00435{bottom:765.750000px;}
.y3_c00435{bottom:784.050000px;}
.h7_c00435{height:13.200074px;}
.h8_c00435{height:43.804688px;}
.h4_c00435{height:61.831055px;}
.h6_c00435{height:62.880000px;}
.h5_c00435{height:66.024000px;}
.h2_c00435{height:69.168000px;}
.h3_c00435{height:81.744000px;}
.h1_c00435{height:842.250000px;}
.h0_c00435{height:842.400000px;}
.w2_c00435{width:104.875500px;}
.w1_c00435{width:579.750000px;}
.w0_c00435{width:579.975000px;}
.x0_c00435{left:0.000000px;}
.x1_c00435{left:38.850000px;}
.x3_c00435{left:94.200000px;}
.xa_c00435{left:95.400000px;}
.x2_c00435{left:96.600000px;}
.x9_c00435{left:97.800000px;}
.xb_c00435{left:100.200000px;}
.xc_c00435{left:241.801758px;}
.x4_c00435{left:312.900000px;}
.x6_c00435{left:314.100000px;}
.x7_c00435{left:315.150000px;}
.x8_c00435{left:316.800000px;}
.x5_c00435{left:369.900000px;}
@media print{
.v0_c00435{vertical-align:0.000000pt;}
.ls2_c00435{letter-spacing:0.000000pt;}
.ls3_c00435{letter-spacing:2.666667pt;}
.ls1_c00435{letter-spacing:12.800000pt;}
.ls0_c00435{letter-spacing:14.266667pt;}
.ws3_c00435{word-spacing:-44.464000pt;}
.ws4_c00435{word-spacing:-32.237333pt;}
.ws1_c00435{word-spacing:-16.666667pt;}
.ws2_c00435{word-spacing:-16.570667pt;}
.ws0_c00435{word-spacing:-13.845333pt;}
.ws5_c00435{word-spacing:-13.386667pt;}
.ws6_c00435{word-spacing:-12.586667pt;}
.ws7_c00435{word-spacing:0.000000pt;}
._11_c00435{margin-left:-14.213333pt;}
._d_c00435{margin-left:-10.330667pt;}
._18_c00435{margin-left:-8.592000pt;}
._0_c00435{margin-left:-6.981333pt;}
._e_c00435{margin-left:-5.813333pt;}
._1_c00435{margin-left:-4.341333pt;}
._2_c00435{margin-left:-2.992000pt;}
._6_c00435{margin-left:-1.176000pt;}
._8_c00435{width:1.232000pt;}
._c_c00435{width:2.352000pt;}
._4_c00435{width:3.416000pt;}
._3_c00435{width:4.872000pt;}
._17_c00435{width:5.850667pt;}
._5_c00435{width:7.224000pt;}
._15_c00435{width:8.400000pt;}
._b_c00435{width:9.394667pt;}
._24_c00435{width:10.360000pt;}
._10_c00435{width:11.560000pt;}
._a_c00435{width:12.653333pt;}
._9_c00435{width:13.944000pt;}
._1a_c00435{width:15.269333pt;}
._1e_c00435{width:16.178667pt;}
._1c_c00435{width:17.248000pt;}
._20_c00435{width:18.610667pt;}
._14_c00435{width:19.768000pt;}
._1d_c00435{width:21.728000pt;}
._19_c00435{width:23.576000pt;}
._1f_c00435{width:24.882667pt;}
._1b_c00435{width:28.504000pt;}
._21_c00435{width:29.973333pt;}
._25_c00435{width:31.864000pt;}
._13_c00435{width:33.309333pt;}
._16_c00435{width:34.893333pt;}
._22_c00435{width:36.552000pt;}
._23_c00435{width:39.984000pt;}
._26_c00435{width:61.712000pt;}
._7_c00435{width:65.232000pt;}
._12_c00435{width:66.725333pt;}
._f_c00435{width:70.450667pt;}
.fs4_c00435{font-size:42.666667pt;}
.fs3_c00435{font-size:53.333333pt;}
.fs1_c00435{font-size:56.000000pt;}
.fs0_c00435{font-size:58.666667pt;}
.fs2_c00435{font-size:69.333333pt;}
.y0_c00435{bottom:0.000000pt;}
.y52_c00435{bottom:2.760000pt;}
.y51_c00435{bottom:6.425212pt;}
.y50_c00435{bottom:48.933333pt;}
.y2b_c00435{bottom:50.666667pt;}
.y2_c00435{bottom:51.866667pt;}
.y4f_c00435{bottom:66.000000pt;}
.y2a_c00435{bottom:67.866667pt;}
.y1_c00435{bottom:68.400000pt;}
.y4e_c00435{bottom:82.266667pt;}
.y29_c00435{bottom:83.466667pt;}
.y4d_c00435{bottom:98.400000pt;}
.y28_c00435{bottom:100.000000pt;}
.y4c_c00435{bottom:114.400000pt;}
.y27_c00435{bottom:116.400000pt;}
.y4b_c00435{bottom:130.533333pt;}
.y26_c00435{bottom:132.400000pt;}
.y4a_c00435{bottom:146.400000pt;}
.y25_c00435{bottom:148.800000pt;}
.y49_c00435{bottom:162.666667pt;}
.y24_c00435{bottom:165.066667pt;}
.y48_c00435{bottom:178.800000pt;}
.y23_c00435{bottom:181.466667pt;}
.y47_c00435{bottom:194.800000pt;}
.y22_c00435{bottom:197.066667pt;}
.y46_c00435{bottom:211.600000pt;}
.y21_c00435{bottom:213.866667pt;}
.y45_c00435{bottom:227.466667pt;}
.y20_c00435{bottom:230.400000pt;}
.y44_c00435{bottom:243.866667pt;}
.y1f_c00435{bottom:246.266667pt;}
.y43_c00435{bottom:259.466667pt;}
.y1e_c00435{bottom:262.000000pt;}
.y42_c00435{bottom:275.733333pt;}
.y1d_c00435{bottom:277.866667pt;}
.y41_c00435{bottom:291.866667pt;}
.y1c_c00435{bottom:294.000000pt;}
.y40_c00435{bottom:308.133333pt;}
.y1b_c00435{bottom:309.866667pt;}
.y3f_c00435{bottom:323.733333pt;}
.y1a_c00435{bottom:326.666667pt;}
.y3e_c00435{bottom:339.866667pt;}
.y19_c00435{bottom:342.400000pt;}
.y3d_c00435{bottom:356.400000pt;}
.y18_c00435{bottom:359.066667pt;}
.y3c_c00435{bottom:372.000000pt;}
.y17_c00435{bottom:374.800000pt;}
.y3b_c00435{bottom:388.266667pt;}
.y16_c00435{bottom:390.666667pt;}
.y3a_c00435{bottom:405.066667pt;}
.y15_c00435{bottom:407.733333pt;}
.y39_c00435{bottom:420.400000pt;}
.y14_c00435{bottom:423.600000pt;}
.y38_c00435{bottom:437.066667pt;}
.y13_c00435{bottom:439.600000pt;}
.y37_c00435{bottom:453.066667pt;}
.y12_c00435{bottom:456.000000pt;}
.y36_c00435{bottom:469.466667pt;}
.y11_c00435{bottom:471.600000pt;}
.y35_c00435{bottom:484.266667pt;}
.y10_c00435{bottom:488.133333pt;}
.y34_c00435{bottom:501.200000pt;}
.yf_c00435{bottom:504.000000pt;}
.y33_c00435{bottom:517.200000pt;}
.ye_c00435{bottom:519.600000pt;}
.y32_c00435{bottom:533.200000pt;}
.yd_c00435{bottom:536.133333pt;}
.y31_c00435{bottom:549.600000pt;}
.yc_c00435{bottom:552.266667pt;}
.y30_c00435{bottom:566.400000pt;}
.yb_c00435{bottom:568.000000pt;}
.y2f_c00435{bottom:582.400000pt;}
.ya_c00435{bottom:584.000000pt;}
.y2e_c00435{bottom:598.800000pt;}
.y9_c00435{bottom:600.666667pt;}
.y2d_c00435{bottom:614.666667pt;}
.y8_c00435{bottom:616.000000pt;}
.y2c_c00435{bottom:630.666667pt;}
.y7_c00435{bottom:632.800000pt;}
.y6_c00435{bottom:648.266667pt;}
.y5_c00435{bottom:665.333333pt;}
.y4_c00435{bottom:680.666667pt;}
.y3_c00435{bottom:696.933333pt;}
.h7_c00435{height:11.733399pt;}
.h8_c00435{height:38.937500pt;}
.h4_c00435{height:54.960938pt;}
.h6_c00435{height:55.893333pt;}
.h5_c00435{height:58.688000pt;}
.h2_c00435{height:61.482667pt;}
.h3_c00435{height:72.661333pt;}
.h1_c00435{height:748.666667pt;}
.h0_c00435{height:748.800000pt;}
.w2_c00435{width:93.222667pt;}
.w1_c00435{width:515.333333pt;}
.w0_c00435{width:515.533333pt;}
.x0_c00435{left:0.000000pt;}
.x1_c00435{left:34.533333pt;}
.x3_c00435{left:83.733333pt;}
.xa_c00435{left:84.800000pt;}
.x2_c00435{left:85.866667pt;}
.x9_c00435{left:86.933333pt;}
.xb_c00435{left:89.066667pt;}
.xc_c00435{left:214.934896pt;}
.x4_c00435{left:278.133333pt;}
.x6_c00435{left:279.200000pt;}
.x7_c00435{left:280.133333pt;}
.x8_c00435{left:281.600000pt;}
.x5_c00435{left:328.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_82994dfaaa2ad622dd921dc0.woff2')format("woff");}.ff1_c00436{font-family:ff1_c00436;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00436;src:url('chunks/assets/font_b29e502032f214075fb4f396.woff2')format("woff");}.ff2_c00436{font-family:ff2_c00436;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00436;src:url('chunks/assets/font_fe5e3dc67c1961c82c39629e.woff2')format("woff");}.ff3_c00436{font-family:ff3_c00436;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00436;src:url('chunks/assets/font_51c167a32211b4364882da43.woff2')format("woff");}.ff4_c00436{font-family:ff4_c00436;line-height:1.575000;font-style:normal;font-weight:normal;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_abb784838285fcb4554880e2.woff2')format("woff");}.ff5_c00436{font-family:ff5_c00436;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00436;src:url('chunks/assets/font_46089359db3ac7d5e88db84c.woff2')format("woff");}.ff6_c00436{font-family:ff6_c00436;line-height:1.575000;font-style:normal;font-weight:normal;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_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff7_c00436{font-family:ff7_c00436;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00436;src:url('chunks/assets/font_76eab44b70d461589fd91256.woff2')format("woff");}.ff8_c00436{font-family:ff8_c00436;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00436;src:url('chunks/assets/font_b471d199c476b510e2da1fbf.woff2')format("woff");}.ff9_c00436{font-family:ff9_c00436;line-height:1.575000;font-style:normal;font-weight: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_c00436;src:url('chunks/assets/font_7c7b114d6d8510036cb24ad0.woff2')format("woff");}.ffa_c00436{font-family:ffa_c00436;line-height:1.575000;font-style:normal;font-weight: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_c00436;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ffb_c00436{font-family:ffb_c00436;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00436{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00436{vertical-align:0.000000px;}
.v1_c00436{vertical-align:58.200000px;}
.ls5_c00436{letter-spacing:-6.000000px;}
.ls3_c00436{letter-spacing:0.000000px;}
.ls4_c00436{letter-spacing:3.000000px;}
.ls2_c00436{letter-spacing:6.177000px;}
.ls0_c00436{letter-spacing:7.878000px;}
.ls1_c00436{letter-spacing:24.894000px;}
.sc__c00436{text-shadow:none;}
.sc0_c00436{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00436{-webkit-text-stroke:0px transparent;}
.sc0_c00436{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00436{word-spacing:-31.122000px;}
.ws1_c00436{word-spacing:-15.750000px;}
.ws3_c00436{word-spacing:-13.452000px;}
.ws2_c00436{word-spacing:-13.053000px;}
.ws5_c00436{word-spacing:-12.291000px;}
.ws6_c00436{word-spacing:0.000000px;}
.ws0_c00436{word-spacing:0.300000px;}
._29_c00436{margin-left:-24.207000px;}
._13_c00436{margin-left:-13.560000px;}
._2b_c00436{margin-left:-12.084000px;}
._1a_c00436{margin-left:-10.980000px;}
._24_c00436{margin-left:-9.672000px;}
._b_c00436{margin-left:-8.400000px;}
._20_c00436{margin-left:-6.783000px;}
._c_c00436{margin-left:-5.700000px;}
._10_c00436{margin-left:-4.680000px;}
._4_c00436{margin-left:-3.180000px;}
._8_c00436{margin-left:-1.620000px;}
._6_c00436{width:1.740000px;}
._5_c00436{width:2.820000px;}
._d_c00436{width:4.620000px;}
._a_c00436{width:5.940000px;}
._9_c00436{width:7.380000px;}
._1f_c00436{width:8.394000px;}
._17_c00436{width:9.501000px;}
._7_c00436{width:11.100000px;}
._0_c00436{width:12.474000px;}
._16_c00436{width:13.545000px;}
._23_c00436{width:15.138000px;}
._2_c00436{width:17.514000px;}
._3_c00436{width:19.089000px;}
._1b_c00436{width:20.610000px;}
._f_c00436{width:22.140000px;}
._18_c00436{width:23.730000px;}
._1e_c00436{width:25.287000px;}
._15_c00436{width:26.703000px;}
._14_c00436{width:27.720000px;}
._19_c00436{width:29.352000px;}
._28_c00436{width:32.022000px;}
._11_c00436{width:33.465000px;}
._27_c00436{width:35.376000px;}
._12_c00436{width:36.657000px;}
._25_c00436{width:38.841000px;}
._1d_c00436{width:40.101000px;}
._22_c00436{width:41.178000px;}
._21_c00436{width:44.802000px;}
._2a_c00436{width:45.900000px;}
._1_c00436{width:50.211000px;}
._e_c00436{width:104.160000px;}
._1c_c00436{width:168.837000px;}
._26_c00436{width:228.342000px;}
.fc2_c00436{color:transparent;}
.fc1_c00436{color:rgb(128,128,128);}
.fc0_c00436{color:rgb(0,0,0);}
.fs6_c00436{font-size:48.000000px;}
.fs2_c00436{font-size:51.000000px;}
.fs4_c00436{font-size:54.000000px;}
.fs5_c00436{font-size:57.000000px;}
.fs1_c00436{font-size:60.000000px;}
.fs0_c00436{font-size:63.000000px;}
.fs3_c00436{font-size:138.000000px;}
.y0_c00436{bottom:0.000000px;}
.y4e_c00436{bottom:3.105000px;}
.y4d_c00436{bottom:7.228355px;}
.y4c_c00436{bottom:36.735000px;}
.y27_c00436{bottom:56.235000px;}
.y4b_c00436{bottom:56.985000px;}
.y4a_c00436{bottom:75.585000px;}
.y26_c00436{bottom:75.885000px;}
.y49_c00436{bottom:93.435000px;}
.y25_c00436{bottom:94.035000px;}
.y48_c00436{bottom:111.735000px;}
.y24_c00436{bottom:112.035000px;}
.y23_c00436{bottom:130.185000px;}
.y47_c00436{bottom:130.485000px;}
.y46_c00436{bottom:146.835000px;}
.y22_c00436{bottom:148.785000px;}
.y21_c00436{bottom:166.935000px;}
.y20_c00436{bottom:185.235000px;}
.y45_c00436{bottom:203.385000px;}
.y1f_c00436{bottom:204.435000px;}
.y44_c00436{bottom:221.685000px;}
.y1e_c00436{bottom:222.435000px;}
.y1d_c00436{bottom:239.835000px;}
.y1c_c00436{bottom:257.835000px;}
.y43_c00436{bottom:258.135000px;}
.y1b_c00436{bottom:276.435000px;}
.y1a_c00436{bottom:294.585000px;}
.y42_c00436{bottom:295.335000px;}
.y19_c00436{bottom:312.135000px;}
.y41_c00436{bottom:312.885000px;}
.y40_c00436{bottom:330.285000px;}
.y18_c00436{bottom:330.735000px;}
.y17_c00436{bottom:334.335000px;}
.y3f_c00436{bottom:347.535000px;}
.y3e_c00436{bottom:367.785000px;}
.y16_c00436{bottom:385.335000px;}
.y3d_c00436{bottom:386.385000px;}
.y15_c00436{bottom:403.185000px;}
.y3c_c00436{bottom:403.635000px;}
.y3b_c00436{bottom:420.435000px;}
.y14_c00436{bottom:421.485000px;}
.y13_c00436{bottom:439.635000px;}
.y3a_c00436{bottom:457.335000px;}
.y12_c00436{bottom:457.635000px;}
.y39_c00436{bottom:477.135000px;}
.y11_c00436{bottom:493.335000px;}
.y38_c00436{bottom:494.685000px;}
.y37_c00436{bottom:511.185000px;}
.y10_c00436{bottom:527.085000px;}
.y36_c00436{bottom:530.835000px;}
.yf_c00436{bottom:546.735000px;}
.y35_c00436{bottom:548.685000px;}
.ye_c00436{bottom:563.835000px;}
.y34_c00436{bottom:567.585000px;}
.yd_c00436{bottom:584.235000px;}
.y33_c00436{bottom:584.835000px;}
.yc_c00436{bottom:598.335000px;}
.y32_c00436{bottom:602.385000px;}
.yb_c00436{bottom:617.535000px;}
.y31_c00436{bottom:620.685000px;}
.ya_c00436{bottom:637.485000px;}
.y30_c00436{bottom:639.435000px;}
.y9_c00436{bottom:655.335000px;}
.y2f_c00436{bottom:657.135000px;}
.y8_c00436{bottom:670.635000px;}
.y2e_c00436{bottom:675.585000px;}
.y7_c00436{bottom:689.085000px;}
.y2d_c00436{bottom:693.435000px;}
.y6_c00436{bottom:709.035000px;}
.y2c_c00436{bottom:712.335000px;}
.y5_c00436{bottom:727.185000px;}
.y2b_c00436{bottom:729.885000px;}
.y4_c00436{bottom:745.185000px;}
.y2a_c00436{bottom:748.485000px;}
.y3_c00436{bottom:764.985000px;}
.y29_c00436{bottom:766.485000px;}
.y2_c00436{bottom:783.285000px;}
.y28_c00436{bottom:784.335000px;}
.y1_c00436{bottom:806.835000px;}
.hb_c00436{height:13.200074px;}
.hc_c00436{height:43.804688px;}
.h8_c00436{height:56.592000px;}
.h6_c00436{height:59.690918px;}
.h9_c00436{height:59.736000px;}
.ha_c00436{height:60.819000px;}
.h3_c00436{height:62.880000px;}
.h5_c00436{height:64.571777px;}
.h2_c00436{height:66.024000px;}
.h4_c00436{height:67.221000px;}
.h7_c00436{height:144.624000px;}
.h0_c00436{height:849.675000px;}
.h1_c00436{height:849.750000px;}
.w2_c00436{width:104.875500px;}
.w1_c00436{width:579.750000px;}
.w0_c00436{width:579.975000px;}
.x0_c00436{left:0.000000px;}
.xb_c00436{left:17.850000px;}
.x3_c00436{left:46.950000px;}
.x6_c00436{left:77.250000px;}
.x4_c00436{left:78.600000px;}
.x2_c00436{left:80.100000px;}
.x7_c00436{left:96.300000px;}
.x8_c00436{left:109.050000px;}
.xa_c00436{left:113.100000px;}
.x9_c00436{left:150.450000px;}
.x5_c00436{left:169.800000px;}
.x1_c00436{left:212.250000px;}
.x13_c00436{left:241.801758px;}
.x10_c00436{left:294.000000px;}
.xc_c00436{left:295.950000px;}
.xf_c00436{left:297.300000px;}
.xe_c00436{left:298.950000px;}
.xd_c00436{left:300.000000px;}
.x11_c00436{left:388.350000px;}
.x12_c00436{left:454.950000px;}
@media print{
.v0_c00436{vertical-align:0.000000pt;}
.v1_c00436{vertical-align:51.733333pt;}
.ls5_c00436{letter-spacing:-5.333333pt;}
.ls3_c00436{letter-spacing:0.000000pt;}
.ls4_c00436{letter-spacing:2.666667pt;}
.ls2_c00436{letter-spacing:5.490667pt;}
.ls0_c00436{letter-spacing:7.002667pt;}
.ls1_c00436{letter-spacing:22.128000pt;}
.ws4_c00436{word-spacing:-27.664000pt;}
.ws1_c00436{word-spacing:-14.000000pt;}
.ws3_c00436{word-spacing:-11.957333pt;}
.ws2_c00436{word-spacing:-11.602667pt;}
.ws5_c00436{word-spacing:-10.925333pt;}
.ws6_c00436{word-spacing:0.000000pt;}
.ws0_c00436{word-spacing:0.266667pt;}
._29_c00436{margin-left:-21.517333pt;}
._13_c00436{margin-left:-12.053333pt;}
._2b_c00436{margin-left:-10.741333pt;}
._1a_c00436{margin-left:-9.760000pt;}
._24_c00436{margin-left:-8.597333pt;}
._b_c00436{margin-left:-7.466667pt;}
._20_c00436{margin-left:-6.029333pt;}
._c_c00436{margin-left:-5.066667pt;}
._10_c00436{margin-left:-4.160000pt;}
._4_c00436{margin-left:-2.826667pt;}
._8_c00436{margin-left:-1.440000pt;}
._6_c00436{width:1.546667pt;}
._5_c00436{width:2.506667pt;}
._d_c00436{width:4.106667pt;}
._a_c00436{width:5.280000pt;}
._9_c00436{width:6.560000pt;}
._1f_c00436{width:7.461333pt;}
._17_c00436{width:8.445333pt;}
._7_c00436{width:9.866667pt;}
._0_c00436{width:11.088000pt;}
._16_c00436{width:12.040000pt;}
._23_c00436{width:13.456000pt;}
._2_c00436{width:15.568000pt;}
._3_c00436{width:16.968000pt;}
._1b_c00436{width:18.320000pt;}
._f_c00436{width:19.680000pt;}
._18_c00436{width:21.093333pt;}
._1e_c00436{width:22.477333pt;}
._15_c00436{width:23.736000pt;}
._14_c00436{width:24.640000pt;}
._19_c00436{width:26.090667pt;}
._28_c00436{width:28.464000pt;}
._11_c00436{width:29.746667pt;}
._27_c00436{width:31.445333pt;}
._12_c00436{width:32.584000pt;}
._25_c00436{width:34.525333pt;}
._1d_c00436{width:35.645333pt;}
._22_c00436{width:36.602667pt;}
._21_c00436{width:39.824000pt;}
._2a_c00436{width:40.800000pt;}
._1_c00436{width:44.632000pt;}
._e_c00436{width:92.586667pt;}
._1c_c00436{width:150.077333pt;}
._26_c00436{width:202.970667pt;}
.fs6_c00436{font-size:42.666667pt;}
.fs2_c00436{font-size:45.333333pt;}
.fs4_c00436{font-size:48.000000pt;}
.fs5_c00436{font-size:50.666667pt;}
.fs1_c00436{font-size:53.333333pt;}
.fs0_c00436{font-size:56.000000pt;}
.fs3_c00436{font-size:122.666667pt;}
.y0_c00436{bottom:0.000000pt;}
.y4e_c00436{bottom:2.760000pt;}
.y4d_c00436{bottom:6.425204pt;}
.y4c_c00436{bottom:32.653333pt;}
.y27_c00436{bottom:49.986667pt;}
.y4b_c00436{bottom:50.653333pt;}
.y4a_c00436{bottom:67.186667pt;}
.y26_c00436{bottom:67.453333pt;}
.y49_c00436{bottom:83.053333pt;}
.y25_c00436{bottom:83.586667pt;}
.y48_c00436{bottom:99.320000pt;}
.y24_c00436{bottom:99.586667pt;}
.y23_c00436{bottom:115.720000pt;}
.y47_c00436{bottom:115.986667pt;}
.y46_c00436{bottom:130.520000pt;}
.y22_c00436{bottom:132.253333pt;}
.y21_c00436{bottom:148.386667pt;}
.y20_c00436{bottom:164.653333pt;}
.y45_c00436{bottom:180.786667pt;}
.y1f_c00436{bottom:181.720000pt;}
.y44_c00436{bottom:197.053333pt;}
.y1e_c00436{bottom:197.720000pt;}
.y1d_c00436{bottom:213.186667pt;}
.y1c_c00436{bottom:229.186667pt;}
.y43_c00436{bottom:229.453333pt;}
.y1b_c00436{bottom:245.720000pt;}
.y1a_c00436{bottom:261.853333pt;}
.y42_c00436{bottom:262.520000pt;}
.y19_c00436{bottom:277.453333pt;}
.y41_c00436{bottom:278.120000pt;}
.y40_c00436{bottom:293.586667pt;}
.y18_c00436{bottom:293.986667pt;}
.y17_c00436{bottom:297.186667pt;}
.y3f_c00436{bottom:308.920000pt;}
.y3e_c00436{bottom:326.920000pt;}
.y16_c00436{bottom:342.520000pt;}
.y3d_c00436{bottom:343.453333pt;}
.y15_c00436{bottom:358.386667pt;}
.y3c_c00436{bottom:358.786667pt;}
.y3b_c00436{bottom:373.720000pt;}
.y14_c00436{bottom:374.653333pt;}
.y13_c00436{bottom:390.786667pt;}
.y3a_c00436{bottom:406.520000pt;}
.y12_c00436{bottom:406.786667pt;}
.y39_c00436{bottom:424.120000pt;}
.y11_c00436{bottom:438.520000pt;}
.y38_c00436{bottom:439.720000pt;}
.y37_c00436{bottom:454.386667pt;}
.y10_c00436{bottom:468.520000pt;}
.y36_c00436{bottom:471.853333pt;}
.yf_c00436{bottom:485.986667pt;}
.y35_c00436{bottom:487.720000pt;}
.ye_c00436{bottom:501.186667pt;}
.y34_c00436{bottom:504.520000pt;}
.yd_c00436{bottom:519.320000pt;}
.y33_c00436{bottom:519.853333pt;}
.yc_c00436{bottom:531.853333pt;}
.y32_c00436{bottom:535.453333pt;}
.yb_c00436{bottom:548.920000pt;}
.y31_c00436{bottom:551.720000pt;}
.ya_c00436{bottom:566.653333pt;}
.y30_c00436{bottom:568.386667pt;}
.y9_c00436{bottom:582.520000pt;}
.y2f_c00436{bottom:584.120000pt;}
.y8_c00436{bottom:596.120000pt;}
.y2e_c00436{bottom:600.520000pt;}
.y7_c00436{bottom:612.520000pt;}
.y2d_c00436{bottom:616.386667pt;}
.y6_c00436{bottom:630.253333pt;}
.y2c_c00436{bottom:633.186667pt;}
.y5_c00436{bottom:646.386667pt;}
.y2b_c00436{bottom:648.786667pt;}
.y4_c00436{bottom:662.386667pt;}
.y2a_c00436{bottom:665.320000pt;}
.y3_c00436{bottom:679.986667pt;}
.y29_c00436{bottom:681.320000pt;}
.y2_c00436{bottom:696.253333pt;}
.y28_c00436{bottom:697.186667pt;}
.y1_c00436{bottom:717.186667pt;}
.hb_c00436{height:11.733399pt;}
.hc_c00436{height:38.937500pt;}
.h8_c00436{height:50.304000pt;}
.h6_c00436{height:53.058594pt;}
.h9_c00436{height:53.098667pt;}
.ha_c00436{height:54.061333pt;}
.h3_c00436{height:55.893333pt;}
.h5_c00436{height:57.397135pt;}
.h2_c00436{height:58.688000pt;}
.h4_c00436{height:59.752000pt;}
.h7_c00436{height:128.554667pt;}
.h0_c00436{height:755.266667pt;}
.h1_c00436{height:755.333333pt;}
.w2_c00436{width:93.222667pt;}
.w1_c00436{width:515.333333pt;}
.w0_c00436{width:515.533333pt;}
.x0_c00436{left:0.000000pt;}
.xb_c00436{left:15.866667pt;}
.x3_c00436{left:41.733333pt;}
.x6_c00436{left:68.666667pt;}
.x4_c00436{left:69.866667pt;}
.x2_c00436{left:71.200000pt;}
.x7_c00436{left:85.600000pt;}
.x8_c00436{left:96.933333pt;}
.xa_c00436{left:100.533333pt;}
.x9_c00436{left:133.733333pt;}
.x5_c00436{left:150.933333pt;}
.x1_c00436{left:188.666667pt;}
.x13_c00436{left:214.934896pt;}
.x10_c00436{left:261.333333pt;}
.xc_c00436{left:263.066667pt;}
.xf_c00436{left:264.266667pt;}
.xe_c00436{left:265.733333pt;}
.xd_c00436{left:266.666667pt;}
.x11_c00436{left:345.200000pt;}
.x12_c00436{left:404.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_948a53cabb5927b86bd15444.woff2')format("woff");}.ff1_c00437{font-family:ff1_c00437;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00437;src:url('chunks/assets/font_29f48684ae6291dfa2da2b97.woff2')format("woff");}.ff2_c00437{font-family:ff2_c00437;line-height:1.437000;font-style:normal;font-weight:normal;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_1a1abf866c9531d8c380906a.woff2')format("woff");}.ff3_c00437{font-family:ff3_c00437;line-height:1.437000;font-style:normal;font-weight:normal;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_3ab30ae1674efda1d6658cac.woff2')format("woff");}.ff4_c00437{font-family:ff4_c00437;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00437;src:url('chunks/assets/font_5a910c540c00238c24a0ae76.woff2')format("woff");}.ff5_c00437{font-family:ff5_c00437;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00437;src:url('chunks/assets/font_095555e4ac771cf1c3d01d5c.woff2')format("woff");}.ff6_c00437{font-family:ff6_c00437;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00437;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff7_c00437{font-family:ff7_c00437;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00437;src:url('chunks/assets/font_8b7dc94ebcdef51f9d447da6.woff2')format("woff");}.ff8_c00437{font-family:ff8_c00437;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00437;src:url('chunks/assets/font_ab641b7e78617e536f1ae0ef.woff2')format("woff");}.ff9_c00437{font-family:ff9_c00437;line-height:1.575000;font-style:normal;font-weight: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_c00437;src:url('chunks/assets/font_81444a34a03d090821ca2790.woff2')format("woff");}.ffa_c00437{font-family:ffa_c00437;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00437;src:url('chunks/assets/font_95aca8443aefb87351e2976a.woff2')format("woff");}.ffb_c00437{font-family:ffb_c00437;line-height:1.575000;font-style:normal;font-weight: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_c00437;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ffc_c00437{font-family:ffc_c00437;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00437{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00437{vertical-align:0.000000px;}
.ls7_c00437{letter-spacing:0.000000px;}
.ls6_c00437{letter-spacing:0.600000px;}
.ls4_c00437{letter-spacing:1.860000px;}
.ls8_c00437{letter-spacing:3.000000px;}
.ls2_c00437{letter-spacing:4.800000px;}
.ls3_c00437{letter-spacing:5.400000px;}
.ls5_c00437{letter-spacing:6.000000px;}
.ls1_c00437{letter-spacing:9.000000px;}
.ls0_c00437{letter-spacing:92.250000px;}
.sc__c00437{text-shadow:none;}
.sc0_c00437{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00437{-webkit-text-stroke:0px transparent;}
.sc0_c00437{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00437{word-spacing:-22.500000px;}
.ws2_c00437{word-spacing:-22.452000px;}
.ws7_c00437{word-spacing:-18.774000px;}
.ws8_c00437{word-spacing:-17.319000px;}
.ws4_c00437{word-spacing:-15.000000px;}
.ws1_c00437{word-spacing:-14.340000px;}
.ws3_c00437{word-spacing:-14.160000px;}
.ws0_c00437{word-spacing:-12.291000px;}
.ws5_c00437{word-spacing:-0.048000px;}
.ws9_c00437{word-spacing:0.000000px;}
._1d_c00437{margin-left:-16.275000px;}
._16_c00437{margin-left:-12.567000px;}
._1c_c00437{margin-left:-8.637000px;}
._18_c00437{margin-left:-6.735000px;}
._1a_c00437{margin-left:-5.358000px;}
._14_c00437{margin-left:-4.020000px;}
._a_c00437{margin-left:-2.706000px;}
._b_c00437{margin-left:-1.188000px;}
._4_c00437{width:1.299000px;}
._f_c00437{width:2.679000px;}
._3_c00437{width:4.233000px;}
._2_c00437{width:5.508000px;}
._1f_c00437{width:6.543000px;}
._5_c00437{width:7.680000px;}
._1_c00437{width:9.384000px;}
._0_c00437{width:10.455000px;}
._7_c00437{width:11.940000px;}
._13_c00437{width:13.122000px;}
._9_c00437{width:15.960000px;}
._8_c00437{width:16.980000px;}
._10_c00437{width:18.252000px;}
._11_c00437{width:20.502000px;}
._22_c00437{width:21.522000px;}
._15_c00437{width:22.596000px;}
._17_c00437{width:24.363000px;}
._19_c00437{width:25.380000px;}
._12_c00437{width:26.901000px;}
._24_c00437{width:28.635000px;}
._c_c00437{width:30.426000px;}
._6_c00437{width:33.366000px;}
._21_c00437{width:38.736000px;}
._e_c00437{width:40.917000px;}
._23_c00437{width:42.213000px;}
._d_c00437{width:45.033000px;}
._1e_c00437{width:49.128000px;}
._1b_c00437{width:123.219000px;}
._20_c00437{width:171.468000px;}
.fc2_c00437{color:transparent;}
.fc1_c00437{color:rgb(128,128,128);}
.fc0_c00437{color:rgb(0,0,0);}
.fs6_c00437{font-size:48.000000px;}
.fs0_c00437{font-size:51.000000px;}
.fs5_c00437{font-size:57.000000px;}
.fs1_c00437{font-size:60.000000px;}
.fs3_c00437{font-size:63.000000px;}
.fs2_c00437{font-size:66.000000px;}
.fs4_c00437{font-size:69.000000px;}
.y0_c00437{bottom:0.000000px;}
.y4e_c00437{bottom:3.105000px;}
.y4d_c00437{bottom:7.228363px;}
.y4c_c00437{bottom:43.200000px;}
.y4b_c00437{bottom:75.600000px;}
.y2c_c00437{bottom:149.250000px;}
.y2b_c00437{bottom:168.450000px;}
.y4a_c00437{bottom:170.400000px;}
.y2a_c00437{bottom:186.600000px;}
.y49_c00437{bottom:189.000000px;}
.y29_c00437{bottom:204.300000px;}
.y48_c00437{bottom:207.000000px;}
.y28_c00437{bottom:223.050000px;}
.y47_c00437{bottom:225.150000px;}
.y27_c00437{bottom:241.350000px;}
.y46_c00437{bottom:243.450000px;}
.y26_c00437{bottom:259.500000px;}
.y2_c00437{bottom:260.850000px;}
.y45_c00437{bottom:261.900000px;}
.y25_c00437{bottom:277.200000px;}
.y44_c00437{bottom:279.750000px;}
.y1_c00437{bottom:281.100000px;}
.y24_c00437{bottom:295.650000px;}
.y43_c00437{bottom:297.450000px;}
.y23_c00437{bottom:313.650000px;}
.y42_c00437{bottom:315.300000px;}
.y22_c00437{bottom:332.100000px;}
.y41_c00437{bottom:333.150000px;}
.y21_c00437{bottom:350.100000px;}
.y40_c00437{bottom:352.050000px;}
.y20_c00437{bottom:368.550000px;}
.y3f_c00437{bottom:369.900000px;}
.y1f_c00437{bottom:386.550000px;}
.y3e_c00437{bottom:388.200000px;}
.y1e_c00437{bottom:404.100000px;}
.y3d_c00437{bottom:406.350000px;}
.y1d_c00437{bottom:422.550000px;}
.y3c_c00437{bottom:424.350000px;}
.y1c_c00437{bottom:441.150000px;}
.y3b_c00437{bottom:442.800000px;}
.y1b_c00437{bottom:459.000000px;}
.y3a_c00437{bottom:460.800000px;}
.y1a_c00437{bottom:476.850000px;}
.y39_c00437{bottom:479.250000px;}
.y19_c00437{bottom:495.450000px;}
.y38_c00437{bottom:497.250000px;}
.y18_c00437{bottom:513.300000px;}
.y37_c00437{bottom:514.950000px;}
.y17_c00437{bottom:531.300000px;}
.y36_c00437{bottom:532.950000px;}
.y16_c00437{bottom:549.450000px;}
.y35_c00437{bottom:550.800000px;}
.y15_c00437{bottom:567.300000px;}
.y34_c00437{bottom:568.950000px;}
.y14_c00437{bottom:585.600000px;}
.y33_c00437{bottom:586.950000px;}
.y13_c00437{bottom:603.750000px;}
.y32_c00437{bottom:605.100000px;}
.y12_c00437{bottom:621.450000px;}
.y31_c00437{bottom:623.400000px;}
.y11_c00437{bottom:639.900000px;}
.y30_c00437{bottom:641.250000px;}
.y10_c00437{bottom:657.900000px;}
.y2f_c00437{bottom:659.550000px;}
.yf_c00437{bottom:676.050000px;}
.y2e_c00437{bottom:677.700000px;}
.ye_c00437{bottom:694.200000px;}
.y2d_c00437{bottom:694.950000px;}
.y9_c00437{bottom:696.300000px;}
.yd_c00437{bottom:712.500000px;}
.y8_c00437{bottom:713.250000px;}
.yc_c00437{bottom:730.350000px;}
.y7_c00437{bottom:732.000000px;}
.yb_c00437{bottom:748.950000px;}
.y6_c00437{bottom:749.250000px;}
.ya_c00437{bottom:767.100000px;}
.y5_c00437{bottom:767.700000px;}
.y4_c00437{bottom:785.700000px;}
.y3_c00437{bottom:806.250000px;}
.hb_c00437{height:13.200074px;}
.hc_c00437{height:43.804688px;}
.h2_c00437{height:59.690918px;}
.h6_c00437{height:59.736000px;}
.h3_c00437{height:62.880000px;}
.h5_c00437{height:64.571777px;}
.h7_c00437{height:65.040000px;}
.h9_c00437{height:69.168000px;}
.h8_c00437{height:71.544000px;}
.ha_c00437{height:72.312000px;}
.h4_c00437{height:73.623000px;}
.h1_c00437{height:842.250000px;}
.h0_c00437{height:842.400000px;}
.w2_c00437{width:104.875500px;}
.w1_c00437{width:579.750000px;}
.w0_c00437{width:579.975000px;}
.x0_c00437{left:0.000000px;}
.x2_c00437{left:27.750000px;}
.x1_c00437{left:30.750000px;}
.x7_c00437{left:90.000000px;}
.x8_c00437{left:91.050000px;}
.xa_c00437{left:92.700000px;}
.x9_c00437{left:103.500000px;}
.x4_c00437{left:140.850000px;}
.x3_c00437{left:185.250000px;}
.x12_c00437{left:241.801758px;}
.xb_c00437{left:308.400000px;}
.x5_c00437{left:310.500000px;}
.xc_c00437{left:311.550000px;}
.xd_c00437{left:322.650000px;}
.xe_c00437{left:337.500000px;}
.xf_c00437{left:355.350000px;}
.x10_c00437{left:390.750000px;}
.x6_c00437{left:448.500000px;}
.x11_c00437{left:463.050000px;}
@media print{
.v0_c00437{vertical-align:0.000000pt;}
.ls7_c00437{letter-spacing:0.000000pt;}
.ls6_c00437{letter-spacing:0.533333pt;}
.ls4_c00437{letter-spacing:1.653333pt;}
.ls8_c00437{letter-spacing:2.666667pt;}
.ls2_c00437{letter-spacing:4.266667pt;}
.ls3_c00437{letter-spacing:4.800000pt;}
.ls5_c00437{letter-spacing:5.333333pt;}
.ls1_c00437{letter-spacing:8.000000pt;}
.ls0_c00437{letter-spacing:82.000000pt;}
.ws6_c00437{word-spacing:-20.000000pt;}
.ws2_c00437{word-spacing:-19.957333pt;}
.ws7_c00437{word-spacing:-16.688000pt;}
.ws8_c00437{word-spacing:-15.394667pt;}
.ws4_c00437{word-spacing:-13.333333pt;}
.ws1_c00437{word-spacing:-12.746667pt;}
.ws3_c00437{word-spacing:-12.586667pt;}
.ws0_c00437{word-spacing:-10.925333pt;}
.ws5_c00437{word-spacing:-0.042667pt;}
.ws9_c00437{word-spacing:0.000000pt;}
._1d_c00437{margin-left:-14.466667pt;}
._16_c00437{margin-left:-11.170667pt;}
._1c_c00437{margin-left:-7.677333pt;}
._18_c00437{margin-left:-5.986667pt;}
._1a_c00437{margin-left:-4.762667pt;}
._14_c00437{margin-left:-3.573333pt;}
._a_c00437{margin-left:-2.405333pt;}
._b_c00437{margin-left:-1.056000pt;}
._4_c00437{width:1.154667pt;}
._f_c00437{width:2.381333pt;}
._3_c00437{width:3.762667pt;}
._2_c00437{width:4.896000pt;}
._1f_c00437{width:5.816000pt;}
._5_c00437{width:6.826667pt;}
._1_c00437{width:8.341333pt;}
._0_c00437{width:9.293333pt;}
._7_c00437{width:10.613333pt;}
._13_c00437{width:11.664000pt;}
._9_c00437{width:14.186667pt;}
._8_c00437{width:15.093333pt;}
._10_c00437{width:16.224000pt;}
._11_c00437{width:18.224000pt;}
._22_c00437{width:19.130667pt;}
._15_c00437{width:20.085333pt;}
._17_c00437{width:21.656000pt;}
._19_c00437{width:22.560000pt;}
._12_c00437{width:23.912000pt;}
._24_c00437{width:25.453333pt;}
._c_c00437{width:27.045333pt;}
._6_c00437{width:29.658667pt;}
._21_c00437{width:34.432000pt;}
._e_c00437{width:36.370667pt;}
._23_c00437{width:37.522667pt;}
._d_c00437{width:40.029333pt;}
._1e_c00437{width:43.669333pt;}
._1b_c00437{width:109.528000pt;}
._20_c00437{width:152.416000pt;}
.fs6_c00437{font-size:42.666667pt;}
.fs0_c00437{font-size:45.333333pt;}
.fs5_c00437{font-size:50.666667pt;}
.fs1_c00437{font-size:53.333333pt;}
.fs3_c00437{font-size:56.000000pt;}
.fs2_c00437{font-size:58.666667pt;}
.fs4_c00437{font-size:61.333333pt;}
.y0_c00437{bottom:0.000000pt;}
.y4e_c00437{bottom:2.760000pt;}
.y4d_c00437{bottom:6.425212pt;}
.y4c_c00437{bottom:38.400000pt;}
.y4b_c00437{bottom:67.200000pt;}
.y2c_c00437{bottom:132.666667pt;}
.y2b_c00437{bottom:149.733333pt;}
.y4a_c00437{bottom:151.466667pt;}
.y2a_c00437{bottom:165.866667pt;}
.y49_c00437{bottom:168.000000pt;}
.y29_c00437{bottom:181.600000pt;}
.y48_c00437{bottom:184.000000pt;}
.y28_c00437{bottom:198.266667pt;}
.y47_c00437{bottom:200.133333pt;}
.y27_c00437{bottom:214.533333pt;}
.y46_c00437{bottom:216.400000pt;}
.y26_c00437{bottom:230.666667pt;}
.y2_c00437{bottom:231.866667pt;}
.y45_c00437{bottom:232.800000pt;}
.y25_c00437{bottom:246.400000pt;}
.y44_c00437{bottom:248.666667pt;}
.y1_c00437{bottom:249.866667pt;}
.y24_c00437{bottom:262.800000pt;}
.y43_c00437{bottom:264.400000pt;}
.y23_c00437{bottom:278.800000pt;}
.y42_c00437{bottom:280.266667pt;}
.y22_c00437{bottom:295.200000pt;}
.y41_c00437{bottom:296.133333pt;}
.y21_c00437{bottom:311.200000pt;}
.y40_c00437{bottom:312.933333pt;}
.y20_c00437{bottom:327.600000pt;}
.y3f_c00437{bottom:328.800000pt;}
.y1f_c00437{bottom:343.600000pt;}
.y3e_c00437{bottom:345.066667pt;}
.y1e_c00437{bottom:359.200000pt;}
.y3d_c00437{bottom:361.200000pt;}
.y1d_c00437{bottom:375.600000pt;}
.y3c_c00437{bottom:377.200000pt;}
.y1c_c00437{bottom:392.133333pt;}
.y3b_c00437{bottom:393.600000pt;}
.y1b_c00437{bottom:408.000000pt;}
.y3a_c00437{bottom:409.600000pt;}
.y1a_c00437{bottom:423.866667pt;}
.y39_c00437{bottom:426.000000pt;}
.y19_c00437{bottom:440.400000pt;}
.y38_c00437{bottom:442.000000pt;}
.y18_c00437{bottom:456.266667pt;}
.y37_c00437{bottom:457.733333pt;}
.y17_c00437{bottom:472.266667pt;}
.y36_c00437{bottom:473.733333pt;}
.y16_c00437{bottom:488.400000pt;}
.y35_c00437{bottom:489.600000pt;}
.y15_c00437{bottom:504.266667pt;}
.y34_c00437{bottom:505.733333pt;}
.y14_c00437{bottom:520.533333pt;}
.y33_c00437{bottom:521.733333pt;}
.y13_c00437{bottom:536.666667pt;}
.y32_c00437{bottom:537.866667pt;}
.y12_c00437{bottom:552.400000pt;}
.y31_c00437{bottom:554.133333pt;}
.y11_c00437{bottom:568.800000pt;}
.y30_c00437{bottom:570.000000pt;}
.y10_c00437{bottom:584.800000pt;}
.y2f_c00437{bottom:586.266667pt;}
.yf_c00437{bottom:600.933333pt;}
.y2e_c00437{bottom:602.400000pt;}
.ye_c00437{bottom:617.066667pt;}
.y2d_c00437{bottom:617.733333pt;}
.y9_c00437{bottom:618.933333pt;}
.yd_c00437{bottom:633.333333pt;}
.y8_c00437{bottom:634.000000pt;}
.yc_c00437{bottom:649.200000pt;}
.y7_c00437{bottom:650.666667pt;}
.yb_c00437{bottom:665.733333pt;}
.y6_c00437{bottom:666.000000pt;}
.ya_c00437{bottom:681.866667pt;}
.y5_c00437{bottom:682.400000pt;}
.y4_c00437{bottom:698.400000pt;}
.y3_c00437{bottom:716.666667pt;}
.hb_c00437{height:11.733399pt;}
.hc_c00437{height:38.937500pt;}
.h2_c00437{height:53.058594pt;}
.h6_c00437{height:53.098667pt;}
.h3_c00437{height:55.893333pt;}
.h5_c00437{height:57.397135pt;}
.h7_c00437{height:57.813333pt;}
.h9_c00437{height:61.482667pt;}
.h8_c00437{height:63.594667pt;}
.ha_c00437{height:64.277333pt;}
.h4_c00437{height:65.442667pt;}
.h1_c00437{height:748.666667pt;}
.h0_c00437{height:748.800000pt;}
.w2_c00437{width:93.222667pt;}
.w1_c00437{width:515.333333pt;}
.w0_c00437{width:515.533333pt;}
.x0_c00437{left:0.000000pt;}
.x2_c00437{left:24.666667pt;}
.x1_c00437{left:27.333333pt;}
.x7_c00437{left:80.000000pt;}
.x8_c00437{left:80.933333pt;}
.xa_c00437{left:82.400000pt;}
.x9_c00437{left:92.000000pt;}
.x4_c00437{left:125.200000pt;}
.x3_c00437{left:164.666667pt;}
.x12_c00437{left:214.934896pt;}
.xb_c00437{left:274.133333pt;}
.x5_c00437{left:276.000000pt;}
.xc_c00437{left:276.933333pt;}
.xd_c00437{left:286.800000pt;}
.xe_c00437{left:300.000000pt;}
.xf_c00437{left:315.866667pt;}
.x10_c00437{left:347.333333pt;}
.x6_c00437{left:398.666667pt;}
.x11_c00437{left:411.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e543dd8a54f351cd7b53f8ee.woff2')format("woff");}.ff1_c00438{font-family:ff1_c00438;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00438;src:url('chunks/assets/font_11d3df88aadc6e3c95198480.woff2')format("woff");}.ff2_c00438{font-family:ff2_c00438;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00438;src:url('chunks/assets/font_58713fa4d707199e32c7f1af.woff2')format("woff");}.ff3_c00438{font-family:ff3_c00438;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00438;src:url('chunks/assets/font_e863358a270739fc8d915b95.woff2')format("woff");}.ff4_c00438{font-family:ff4_c00438;line-height:1.575000;font-style:normal;font-weight:normal;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_089510d0d6d8c3460deb1b9c.woff2')format("woff");}.ff5_c00438{font-family:ff5_c00438;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00438;src:url('chunks/assets/font_c4b78fe257f653d73c9acb85.woff2')format("woff");}.ff6_c00438{font-family:ff6_c00438;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00438;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff7_c00438{font-family:ff7_c00438;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00438{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00438{vertical-align:0.000000px;}
.ls2_c00438{letter-spacing:-3.000000px;}
.ls3_c00438{letter-spacing:0.000000px;}
.ls1_c00438{letter-spacing:12.000000px;}
.ls0_c00438{letter-spacing:21.000000px;}
.sc__c00438{text-shadow:none;}
.sc0_c00438{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00438{-webkit-text-stroke:0px transparent;}
.sc0_c00438{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00438{word-spacing:-30.540000px;}
.ws2_c00438{word-spacing:-15.057000px;}
.ws0_c00438{word-spacing:-15.000000px;}
.ws3_c00438{word-spacing:0.000000px;}
._2_c00438{margin-left:-12.900000px;}
._9_c00438{margin-left:-10.404000px;}
._8_c00438{margin-left:-8.976000px;}
._6_c00438{margin-left:-6.936000px;}
._5_c00438{margin-left:-5.712000px;}
._3_c00438{margin-left:-4.386000px;}
._16_c00438{margin-left:-3.330000px;}
._0_c00438{margin-left:-1.950000px;}
._17_c00438{width:1.026000px;}
._b_c00438{width:2.040000px;}
._c_c00438{width:4.032000px;}
._10_c00438{width:5.352000px;}
._f_c00438{width:7.320000px;}
._e_c00438{width:8.838000px;}
._13_c00438{width:10.044000px;}
._12_c00438{width:12.648000px;}
._19_c00438{width:16.434000px;}
._7_c00438{width:17.748000px;}
._1b_c00438{width:19.560000px;}
._11_c00438{width:22.356000px;}
._d_c00438{width:27.792000px;}
._a_c00438{width:30.600000px;}
._4_c00438{width:32.028000px;}
._1_c00438{width:53.550000px;}
._1a_c00438{width:72.714000px;}
._18_c00438{width:91.818000px;}
._15_c00438{width:93.102000px;}
._14_c00438{width:118.236000px;}
.fc2_c00438{color:transparent;}
.fc1_c00438{color:rgb(128,128,128);}
.fc0_c00438{color:rgb(0,0,0);}
.fs6_c00438{font-size:48.000000px;}
.fs4_c00438{font-size:57.000000px;}
.fs3_c00438{font-size:60.000000px;}
.fs5_c00438{font-size:63.000000px;}
.fs2_c00438{font-size:84.000000px;}
.fs1_c00438{font-size:102.000000px;}
.fs0_c00438{font-size:150.000000px;}
.y0_c00438{bottom:0.000000px;}
.y24_c00438{bottom:3.105000px;}
.y23_c00438{bottom:7.228357px;}
.y22_c00438{bottom:27.330000px;}
.y21_c00438{bottom:48.330000px;}
.y20_c00438{bottom:67.530000px;}
.y1f_c00438{bottom:84.030000px;}
.y1e_c00438{bottom:104.280000px;}
.y1d_c00438{bottom:122.280000px;}
.y1c_c00438{bottom:139.680000px;}
.y1b_c00438{bottom:159.030000px;}
.y1a_c00438{bottom:176.730000px;}
.y19_c00438{bottom:195.180000px;}
.y18_c00438{bottom:213.630000px;}
.y17_c00438{bottom:231.930000px;}
.y16_c00438{bottom:249.480000px;}
.y15_c00438{bottom:268.380000px;}
.y14_c00438{bottom:286.830000px;}
.y13_c00438{bottom:304.530000px;}
.y12_c00438{bottom:322.080000px;}
.y11_c00438{bottom:339.930000px;}
.y10_c00438{bottom:358.080000px;}
.yf_c00438{bottom:376.380000px;}
.ye_c00438{bottom:394.530000px;}
.yd_c00438{bottom:413.130000px;}
.yc_c00438{bottom:430.080000px;}
.yb_c00438{bottom:449.280000px;}
.ya_c00438{bottom:487.080000px;}
.y9_c00438{bottom:503.580000px;}
.y8_c00438{bottom:521.880000px;}
.y7_c00438{bottom:538.680000px;}
.y6_c00438{bottom:575.730000px;}
.y5_c00438{bottom:604.230000px;}
.y4_c00438{bottom:632.130000px;}
.y3_c00438{bottom:661.230000px;}
.y2_c00438{bottom:689.280000px;}
.y1_c00438{bottom:738.780000px;}
.h9_c00438{height:13.200074px;}
.ha_c00438{height:43.804688px;}
.h6_c00438{height:62.880000px;}
.h7_c00438{height:63.480000px;}
.h5_c00438{height:65.040000px;}
.h8_c00438{height:66.024000px;}
.h4_c00438{height:88.032000px;}
.h3_c00438{height:106.896000px;}
.h2_c00438{height:157.200000px;}
.h1_c00438{height:843.750000px;}
.h0_c00438{height:844.050000px;}
.w2_c00438{width:104.875500px;}
.w1_c00438{width:576.000000px;}
.w0_c00438{width:576.150000px;}
.x0_c00438{left:0.000000px;}
.x2_c00438{left:67.200000px;}
.x8_c00438{left:69.600000px;}
.xe_c00438{left:70.800000px;}
.xd_c00438{left:71.850000px;}
.xf_c00438{left:73.800000px;}
.x10_c00438{left:75.300000px;}
.x3_c00438{left:82.050000px;}
.x7_c00438{left:84.450000px;}
.x6_c00438{left:116.400000px;}
.x1_c00438{left:120.600000px;}
.x4_c00438{left:170.400000px;}
.x9_c00438{left:182.250000px;}
.xc_c00438{left:186.000000px;}
.xb_c00438{left:189.900000px;}
.xa_c00438{left:190.950000px;}
.x12_c00438{left:239.889267px;}
.x5_c00438{left:241.350000px;}
.x11_c00438{left:454.650000px;}
@media print{
.v0_c00438{vertical-align:0.000000pt;}
.ls2_c00438{letter-spacing:-2.666667pt;}
.ls3_c00438{letter-spacing:0.000000pt;}
.ls1_c00438{letter-spacing:10.666667pt;}
.ls0_c00438{letter-spacing:18.666667pt;}
.ws1_c00438{word-spacing:-27.146667pt;}
.ws2_c00438{word-spacing:-13.384000pt;}
.ws0_c00438{word-spacing:-13.333333pt;}
.ws3_c00438{word-spacing:0.000000pt;}
._2_c00438{margin-left:-11.466667pt;}
._9_c00438{margin-left:-9.248000pt;}
._8_c00438{margin-left:-7.978667pt;}
._6_c00438{margin-left:-6.165333pt;}
._5_c00438{margin-left:-5.077333pt;}
._3_c00438{margin-left:-3.898667pt;}
._16_c00438{margin-left:-2.960000pt;}
._0_c00438{margin-left:-1.733333pt;}
._17_c00438{width:0.912000pt;}
._b_c00438{width:1.813333pt;}
._c_c00438{width:3.584000pt;}
._10_c00438{width:4.757333pt;}
._f_c00438{width:6.506667pt;}
._e_c00438{width:7.856000pt;}
._13_c00438{width:8.928000pt;}
._12_c00438{width:11.242667pt;}
._19_c00438{width:14.608000pt;}
._7_c00438{width:15.776000pt;}
._1b_c00438{width:17.386667pt;}
._11_c00438{width:19.872000pt;}
._d_c00438{width:24.704000pt;}
._a_c00438{width:27.200000pt;}
._4_c00438{width:28.469333pt;}
._1_c00438{width:47.600000pt;}
._1a_c00438{width:64.634667pt;}
._18_c00438{width:81.616000pt;}
._15_c00438{width:82.757333pt;}
._14_c00438{width:105.098667pt;}
.fs6_c00438{font-size:42.666667pt;}
.fs4_c00438{font-size:50.666667pt;}
.fs3_c00438{font-size:53.333333pt;}
.fs5_c00438{font-size:56.000000pt;}
.fs2_c00438{font-size:74.666667pt;}
.fs1_c00438{font-size:90.666667pt;}
.fs0_c00438{font-size:133.333333pt;}
.y0_c00438{bottom:0.000000pt;}
.y24_c00438{bottom:2.760000pt;}
.y23_c00438{bottom:6.425206pt;}
.y22_c00438{bottom:24.293333pt;}
.y21_c00438{bottom:42.960000pt;}
.y20_c00438{bottom:60.026667pt;}
.y1f_c00438{bottom:74.693333pt;}
.y1e_c00438{bottom:92.693333pt;}
.y1d_c00438{bottom:108.693333pt;}
.y1c_c00438{bottom:124.160000pt;}
.y1b_c00438{bottom:141.360000pt;}
.y1a_c00438{bottom:157.093333pt;}
.y19_c00438{bottom:173.493333pt;}
.y18_c00438{bottom:189.893333pt;}
.y17_c00438{bottom:206.160000pt;}
.y16_c00438{bottom:221.760000pt;}
.y15_c00438{bottom:238.560000pt;}
.y14_c00438{bottom:254.960000pt;}
.y13_c00438{bottom:270.693333pt;}
.y12_c00438{bottom:286.293333pt;}
.y11_c00438{bottom:302.160000pt;}
.y10_c00438{bottom:318.293333pt;}
.yf_c00438{bottom:334.560000pt;}
.ye_c00438{bottom:350.693333pt;}
.yd_c00438{bottom:367.226667pt;}
.yc_c00438{bottom:382.293333pt;}
.yb_c00438{bottom:399.360000pt;}
.ya_c00438{bottom:432.960000pt;}
.y9_c00438{bottom:447.626667pt;}
.y8_c00438{bottom:463.893333pt;}
.y7_c00438{bottom:478.826667pt;}
.y6_c00438{bottom:511.760000pt;}
.y5_c00438{bottom:537.093333pt;}
.y4_c00438{bottom:561.893333pt;}
.y3_c00438{bottom:587.760000pt;}
.y2_c00438{bottom:612.693333pt;}
.y1_c00438{bottom:656.693333pt;}
.h9_c00438{height:11.733399pt;}
.ha_c00438{height:38.937500pt;}
.h6_c00438{height:55.893333pt;}
.h7_c00438{height:56.426667pt;}
.h5_c00438{height:57.813333pt;}
.h8_c00438{height:58.688000pt;}
.h4_c00438{height:78.250667pt;}
.h3_c00438{height:95.018667pt;}
.h2_c00438{height:139.733333pt;}
.h1_c00438{height:750.000000pt;}
.h0_c00438{height:750.266667pt;}
.w2_c00438{width:93.222667pt;}
.w1_c00438{width:512.000000pt;}
.w0_c00438{width:512.133333pt;}
.x0_c00438{left:0.000000pt;}
.x2_c00438{left:59.733333pt;}
.x8_c00438{left:61.866667pt;}
.xe_c00438{left:62.933333pt;}
.xd_c00438{left:63.866667pt;}
.xf_c00438{left:65.600000pt;}
.x10_c00438{left:66.933333pt;}
.x3_c00438{left:72.933333pt;}
.x7_c00438{left:75.066667pt;}
.x6_c00438{left:103.466667pt;}
.x1_c00438{left:107.200000pt;}
.x4_c00438{left:151.466667pt;}
.x9_c00438{left:162.000000pt;}
.xc_c00438{left:165.333333pt;}
.xb_c00438{left:168.800000pt;}
.xa_c00438{left:169.733333pt;}
.x12_c00438{left:213.234904pt;}
.x5_c00438{left:214.533333pt;}
.x11_c00438{left:404.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_2f531b1330c8395c1e5fd08e.woff2')format("woff");}.ff1_c00439{font-family:ff1_c00439;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00439;src:url('chunks/assets/font_e43c6e3629e0b94e84cf6943.woff2')format("woff");}.ff2_c00439{font-family:ff2_c00439;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00439;src:url('chunks/assets/font_ecd748a3e8c8338693e48fcf.woff2')format("woff");}.ff3_c00439{font-family:ff3_c00439;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00439;src:url('chunks/assets/font_fd10ab855a9d13878abe8bc3.woff2')format("woff");}.ff4_c00439{font-family:ff4_c00439;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00439;src:url('chunks/assets/font_79550703f9ddbb74c322f3ce.woff2')format("woff");}.ff5_c00439{font-family:ff5_c00439;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_c00439;src:url('chunks/assets/font_6a7fe9270ada58e6515300db.woff2')format("woff");}.ff6_c00439{font-family:ff6_c00439;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00439;src:url('chunks/assets/font_aabc5ce6de2b859b32bd7ecb.woff2')format("woff");}.ff7_c00439{font-family:ff7_c00439;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00439;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff8_c00439{font-family:ff8_c00439;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00439{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00439{vertical-align:0.000000px;}
.v1_c00439{vertical-align:15.600000px;}
.v2_c00439{vertical-align:76.200000px;}
.ls7_c00439{letter-spacing:0.000000px;}
.ls1_c00439{letter-spacing:1.020000px;}
.ls2_c00439{letter-spacing:3.000000px;}
.ls0_c00439{letter-spacing:5.400000px;}
.ls6_c00439{letter-spacing:9.000000px;}
.ls4_c00439{letter-spacing:10.212000px;}
.ls3_c00439{letter-spacing:12.285000px;}
.ls5_c00439{letter-spacing:19.200000px;}
.sc__c00439{text-shadow:none;}
.sc0_c00439{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00439{-webkit-text-stroke:0px transparent;}
.sc0_c00439{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00439{word-spacing:-25.854000px;}
.ws3_c00439{word-spacing:-19.500000px;}
.ws4_c00439{word-spacing:-16.500000px;}
.ws6_c00439{word-spacing:-14.340000px;}
.ws2_c00439{word-spacing:-14.160000px;}
.ws0_c00439{word-spacing:-9.063000px;}
.ws7_c00439{word-spacing:0.000000px;}
.ws5_c00439{word-spacing:271.029000px;}
._11_c00439{margin-left:-22.698000px;}
._1b_c00439{margin-left:-20.331000px;}
._e_c00439{margin-left:-19.020000px;}
._18_c00439{margin-left:-17.067000px;}
._16_c00439{margin-left:-14.679000px;}
._1a_c00439{margin-left:-12.729000px;}
._15_c00439{margin-left:-11.700000px;}
._32_c00439{margin-left:-10.518000px;}
._17_c00439{margin-left:-9.480000px;}
._2d_c00439{margin-left:-8.139000px;}
._f_c00439{margin-left:-6.816000px;}
._c_c00439{margin-left:-4.881000px;}
._10_c00439{margin-left:-3.360000px;}
._0_c00439{margin-left:-2.079000px;}
._12_c00439{margin-left:-1.026000px;}
._9_c00439{width:1.512000px;}
._a_c00439{width:2.784000px;}
._b_c00439{width:4.170000px;}
._d_c00439{width:6.096000px;}
._14_c00439{width:7.242000px;}
._2_c00439{width:8.280000px;}
._3_c00439{width:9.780000px;}
._4_c00439{width:11.100000px;}
._7_c00439{width:12.240000px;}
._1c_c00439{width:13.548000px;}
._6_c00439{width:15.600000px;}
._8_c00439{width:17.760000px;}
._13_c00439{width:20.058000px;}
._29_c00439{width:21.969000px;}
._19_c00439{width:25.149000px;}
._1f_c00439{width:26.685000px;}
._34_c00439{width:27.918000px;}
._2b_c00439{width:29.574000px;}
._5_c00439{width:31.380000px;}
._1e_c00439{width:37.134000px;}
._35_c00439{width:39.669000px;}
._22_c00439{width:57.675000px;}
._21_c00439{width:59.931000px;}
._20_c00439{width:62.808000px;}
._36_c00439{width:72.039000px;}
._31_c00439{width:73.392000px;}
._27_c00439{width:75.201000px;}
._1d_c00439{width:78.702000px;}
._33_c00439{width:124.551000px;}
._26_c00439{width:134.070000px;}
._2c_c00439{width:149.889000px;}
._28_c00439{width:158.817000px;}
._1_c00439{width:195.318000px;}
._2a_c00439{width:202.740000px;}
._23_c00439{width:234.888000px;}
._2e_c00439{width:246.120000px;}
._25_c00439{width:252.177000px;}
._30_c00439{width:285.588000px;}
._2f_c00439{width:413.877000px;}
._24_c00439{width:432.852000px;}
.fc2_c00439{color:transparent;}
.fc1_c00439{color:rgb(128,128,128);}
.fc0_c00439{color:rgb(0,0,0);}
.fs6_c00439{font-size:39.000000px;}
.fs8_c00439{font-size:48.000000px;}
.fs1_c00439{font-size:60.000000px;}
.fs0_c00439{font-size:63.000000px;}
.fs4_c00439{font-size:66.000000px;}
.fs2_c00439{font-size:72.000000px;}
.fs5_c00439{font-size:81.000000px;}
.fs3_c00439{font-size:93.000000px;}
.fs7_c00439{font-size:165.000000px;}
.y0_c00439{bottom:0.000000px;}
.y2b_c00439{bottom:3.105000px;}
.y2a_c00439{bottom:7.228363px;}
.y29_c00439{bottom:40.950000px;}
.y28_c00439{bottom:57.150000px;}
.y27_c00439{bottom:76.050000px;}
.y26_c00439{bottom:94.200000px;}
.y25_c00439{bottom:113.100000px;}
.y24_c00439{bottom:129.600000px;}
.y23_c00439{bottom:147.900000px;}
.y22_c00439{bottom:166.500000px;}
.y21_c00439{bottom:185.700000px;}
.y20_c00439{bottom:203.850000px;}
.y1f_c00439{bottom:221.850000px;}
.y1e_c00439{bottom:239.700000px;}
.y1d_c00439{bottom:257.850000px;}
.y1c_c00439{bottom:275.700000px;}
.y1b_c00439{bottom:293.700000px;}
.y1a_c00439{bottom:311.550000px;}
.y19_c00439{bottom:329.400000px;}
.y18_c00439{bottom:348.300000px;}
.y16_c00439{bottom:365.400000px;}
.y17_c00439{bottom:366.300000px;}
.y15_c00439{bottom:416.250000px;}
.y14_c00439{bottom:456.000000px;}
.y13_c00439{bottom:475.200000px;}
.y12_c00439{bottom:492.750000px;}
.y11_c00439{bottom:511.350000px;}
.y10_c00439{bottom:529.500000px;}
.yf_c00439{bottom:547.200000px;}
.ye_c00439{bottom:565.650000px;}
.yd_c00439{bottom:583.500000px;}
.yc_c00439{bottom:601.500000px;}
.yb_c00439{bottom:619.350000px;}
.ya_c00439{bottom:638.550000px;}
.y9_c00439{bottom:656.550000px;}
.y8_c00439{bottom:674.400000px;}
.y7_c00439{bottom:693.000000px;}
.y6_c00439{bottom:710.550000px;}
.y5_c00439{bottom:729.000000px;}
.y4_c00439{bottom:747.000000px;}
.y3_c00439{bottom:765.750000px;}
.y2_c00439{bottom:784.350000px;}
.y1_c00439{bottom:803.550000px;}
.h9_c00439{height:13.200074px;}
.ha_c00439{height:43.804688px;}
.h2_c00439{height:62.880000px;}
.h4_c00439{height:70.422000px;}
.h8_c00439{height:70.664062px;}
.h6_c00439{height:78.480000px;}
.h5_c00439{height:84.888000px;}
.h3_c00439{height:96.996094px;}
.h7_c00439{height:172.920000px;}
.h1_c00439{height:842.250000px;}
.h0_c00439{height:842.400000px;}
.w2_c00439{width:104.875500px;}
.w1_c00439{width:579.750000px;}
.w0_c00439{width:579.975000px;}
.x0_c00439{left:0.000000px;}
.xb_c00439{left:89.100000px;}
.xa_c00439{left:90.450000px;}
.x9_c00439{left:91.800000px;}
.x8_c00439{left:92.850000px;}
.x7_c00439{left:93.900000px;}
.x5_c00439{left:96.150000px;}
.x4_c00439{left:97.200000px;}
.x3_c00439{left:99.000000px;}
.x2_c00439{left:100.200000px;}
.x1_c00439{left:103.200000px;}
.x6_c00439{left:130.050000px;}
.xd_c00439{left:241.801758px;}
.xc_c00439{left:483.000000px;}
@media print{
.v0_c00439{vertical-align:0.000000pt;}
.v1_c00439{vertical-align:13.866667pt;}
.v2_c00439{vertical-align:67.733333pt;}
.ls7_c00439{letter-spacing:0.000000pt;}
.ls1_c00439{letter-spacing:0.906667pt;}
.ls2_c00439{letter-spacing:2.666667pt;}
.ls0_c00439{letter-spacing:4.800000pt;}
.ls6_c00439{letter-spacing:8.000000pt;}
.ls4_c00439{letter-spacing:9.077333pt;}
.ls3_c00439{letter-spacing:10.920000pt;}
.ls5_c00439{letter-spacing:17.066667pt;}
.ws1_c00439{word-spacing:-22.981333pt;}
.ws3_c00439{word-spacing:-17.333333pt;}
.ws4_c00439{word-spacing:-14.666667pt;}
.ws6_c00439{word-spacing:-12.746667pt;}
.ws2_c00439{word-spacing:-12.586667pt;}
.ws0_c00439{word-spacing:-8.056000pt;}
.ws7_c00439{word-spacing:0.000000pt;}
.ws5_c00439{word-spacing:240.914667pt;}
._11_c00439{margin-left:-20.176000pt;}
._1b_c00439{margin-left:-18.072000pt;}
._e_c00439{margin-left:-16.906667pt;}
._18_c00439{margin-left:-15.170667pt;}
._16_c00439{margin-left:-13.048000pt;}
._1a_c00439{margin-left:-11.314667pt;}
._15_c00439{margin-left:-10.400000pt;}
._32_c00439{margin-left:-9.349333pt;}
._17_c00439{margin-left:-8.426667pt;}
._2d_c00439{margin-left:-7.234667pt;}
._f_c00439{margin-left:-6.058667pt;}
._c_c00439{margin-left:-4.338667pt;}
._10_c00439{margin-left:-2.986667pt;}
._0_c00439{margin-left:-1.848000pt;}
._12_c00439{margin-left:-0.912000pt;}
._9_c00439{width:1.344000pt;}
._a_c00439{width:2.474667pt;}
._b_c00439{width:3.706667pt;}
._d_c00439{width:5.418667pt;}
._14_c00439{width:6.437333pt;}
._2_c00439{width:7.360000pt;}
._3_c00439{width:8.693333pt;}
._4_c00439{width:9.866667pt;}
._7_c00439{width:10.880000pt;}
._1c_c00439{width:12.042667pt;}
._6_c00439{width:13.866667pt;}
._8_c00439{width:15.786667pt;}
._13_c00439{width:17.829333pt;}
._29_c00439{width:19.528000pt;}
._19_c00439{width:22.354667pt;}
._1f_c00439{width:23.720000pt;}
._34_c00439{width:24.816000pt;}
._2b_c00439{width:26.288000pt;}
._5_c00439{width:27.893333pt;}
._1e_c00439{width:33.008000pt;}
._35_c00439{width:35.261333pt;}
._22_c00439{width:51.266667pt;}
._21_c00439{width:53.272000pt;}
._20_c00439{width:55.829333pt;}
._36_c00439{width:64.034667pt;}
._31_c00439{width:65.237333pt;}
._27_c00439{width:66.845333pt;}
._1d_c00439{width:69.957333pt;}
._33_c00439{width:110.712000pt;}
._26_c00439{width:119.173333pt;}
._2c_c00439{width:133.234667pt;}
._28_c00439{width:141.170667pt;}
._1_c00439{width:173.616000pt;}
._2a_c00439{width:180.213333pt;}
._23_c00439{width:208.789333pt;}
._2e_c00439{width:218.773333pt;}
._25_c00439{width:224.157333pt;}
._30_c00439{width:253.856000pt;}
._2f_c00439{width:367.890667pt;}
._24_c00439{width:384.757333pt;}
.fs6_c00439{font-size:34.666667pt;}
.fs8_c00439{font-size:42.666667pt;}
.fs1_c00439{font-size:53.333333pt;}
.fs0_c00439{font-size:56.000000pt;}
.fs4_c00439{font-size:58.666667pt;}
.fs2_c00439{font-size:64.000000pt;}
.fs5_c00439{font-size:72.000000pt;}
.fs3_c00439{font-size:82.666667pt;}
.fs7_c00439{font-size:146.666667pt;}
.y0_c00439{bottom:0.000000pt;}
.y2b_c00439{bottom:2.760000pt;}
.y2a_c00439{bottom:6.425212pt;}
.y29_c00439{bottom:36.400000pt;}
.y28_c00439{bottom:50.800000pt;}
.y27_c00439{bottom:67.600000pt;}
.y26_c00439{bottom:83.733333pt;}
.y25_c00439{bottom:100.533333pt;}
.y24_c00439{bottom:115.200000pt;}
.y23_c00439{bottom:131.466667pt;}
.y22_c00439{bottom:148.000000pt;}
.y21_c00439{bottom:165.066667pt;}
.y20_c00439{bottom:181.200000pt;}
.y1f_c00439{bottom:197.200000pt;}
.y1e_c00439{bottom:213.066667pt;}
.y1d_c00439{bottom:229.200000pt;}
.y1c_c00439{bottom:245.066667pt;}
.y1b_c00439{bottom:261.066667pt;}
.y1a_c00439{bottom:276.933333pt;}
.y19_c00439{bottom:292.800000pt;}
.y18_c00439{bottom:309.600000pt;}
.y16_c00439{bottom:324.800000pt;}
.y17_c00439{bottom:325.600000pt;}
.y15_c00439{bottom:370.000000pt;}
.y14_c00439{bottom:405.333333pt;}
.y13_c00439{bottom:422.400000pt;}
.y12_c00439{bottom:438.000000pt;}
.y11_c00439{bottom:454.533333pt;}
.y10_c00439{bottom:470.666667pt;}
.yf_c00439{bottom:486.400000pt;}
.ye_c00439{bottom:502.800000pt;}
.yd_c00439{bottom:518.666667pt;}
.yc_c00439{bottom:534.666667pt;}
.yb_c00439{bottom:550.533333pt;}
.ya_c00439{bottom:567.600000pt;}
.y9_c00439{bottom:583.600000pt;}
.y8_c00439{bottom:599.466667pt;}
.y7_c00439{bottom:616.000000pt;}
.y6_c00439{bottom:631.600000pt;}
.y5_c00439{bottom:648.000000pt;}
.y4_c00439{bottom:664.000000pt;}
.y3_c00439{bottom:680.666667pt;}
.y2_c00439{bottom:697.200000pt;}
.y1_c00439{bottom:714.266667pt;}
.h9_c00439{height:11.733399pt;}
.ha_c00439{height:38.937500pt;}
.h2_c00439{height:55.893333pt;}
.h4_c00439{height:62.597333pt;}
.h8_c00439{height:62.812500pt;}
.h6_c00439{height:69.760000pt;}
.h5_c00439{height:75.456000pt;}
.h3_c00439{height:86.218750pt;}
.h7_c00439{height:153.706667pt;}
.h1_c00439{height:748.666667pt;}
.h0_c00439{height:748.800000pt;}
.w2_c00439{width:93.222667pt;}
.w1_c00439{width:515.333333pt;}
.w0_c00439{width:515.533333pt;}
.x0_c00439{left:0.000000pt;}
.xb_c00439{left:79.200000pt;}
.xa_c00439{left:80.400000pt;}
.x9_c00439{left:81.600000pt;}
.x8_c00439{left:82.533333pt;}
.x7_c00439{left:83.466667pt;}
.x5_c00439{left:85.466667pt;}
.x4_c00439{left:86.400000pt;}
.x3_c00439{left:88.000000pt;}
.x2_c00439{left:89.066667pt;}
.x1_c00439{left:91.733333pt;}
.x6_c00439{left:115.600000pt;}
.xd_c00439{left:214.934896pt;}
.xc_c00439{left:429.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_fb8d50e86f4c1fe16974817e.woff2')format("woff");}.ff1_c00440{font-family:ff1_c00440;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00440;src:url('chunks/assets/font_d5ecd75e2c03bf5680eb8ed2.woff2')format("woff");}.ff2_c00440{font-family:ff2_c00440;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00440;src:url('chunks/assets/font_f7362a35c480e5d8393a5ee5.woff2')format("woff");}.ff3_c00440{font-family:ff3_c00440;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00440;src:url('chunks/assets/font_d06b2882c4b95a9071b1ef3a.woff2')format("woff");}.ff4_c00440{font-family:ff4_c00440;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00440;src:url('chunks/assets/font_0ce391de997f24f9f9dd37f4.woff2')format("woff");}.ff5_c00440{font-family:ff5_c00440;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00440;src:url('chunks/assets/font_07d4ce58bdd5bd34e3e30945.woff2')format("woff");}.ff6_c00440{font-family:ff6_c00440;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00440;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff7_c00440{font-family:ff7_c00440;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00440;src:url('chunks/assets/font_48e17d7d76146f3081b013eb.woff2')format("woff");}.ff8_c00440{font-family:ff8_c00440;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00440;src:url('chunks/assets/font_3657054dcb39e51d4b967211.woff2')format("woff");}.ff9_c00440{font-family:ff9_c00440;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:ffa_c00440;src:url('chunks/assets/font_5a27ca4705bb5a34dbdc3b52.woff2')format("woff");}.ffa_c00440{font-family:ffa_c00440;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00440;src:url('chunks/assets/font_8f6071793eb09fc31a9e8073.woff2')format("woff");}.ffb_c00440{font-family:ffb_c00440;line-height:1.575000;font-style:normal;font-weight: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_c00440;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ffc_c00440{font-family:ffc_c00440;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00440{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00440{vertical-align:0.000000px;}
.ls7_c00440{letter-spacing:0.000000px;}
.ls6_c00440{letter-spacing:1.200000px;}
.ls3_c00440{letter-spacing:1.800000px;}
.ls1_c00440{letter-spacing:2.271000px;}
.ls8_c00440{letter-spacing:3.000000px;}
.ls0_c00440{letter-spacing:7.200000px;}
.ls5_c00440{letter-spacing:13.446000px;}
.ls4_c00440{letter-spacing:20.046000px;}
.ls2_c00440{letter-spacing:25.245000px;}
.sc__c00440{text-shadow:none;}
.sc0_c00440{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00440{-webkit-text-stroke:0px transparent;}
.sc0_c00440{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00440{word-spacing:-19.500000px;}
.wsa_c00440{word-spacing:-16.500000px;}
.ws1_c00440{word-spacing:-15.057000px;}
.ws5_c00440{word-spacing:-14.178000px;}
.ws0_c00440{word-spacing:-14.160000px;}
.ws7_c00440{word-spacing:-12.291000px;}
.ws8_c00440{word-spacing:-0.231000px;}
.ws6_c00440{word-spacing:-0.066000px;}
.ws3_c00440{word-spacing:-0.051000px;}
.ws4_c00440{word-spacing:-0.040800px;}
.wsb_c00440{word-spacing:0.000000px;}
.ws9_c00440{word-spacing:2.871000px;}
._2f_c00440{margin-left:-23.160000px;}
._38_c00440{margin-left:-19.020000px;}
._20_c00440{margin-left:-16.350000px;}
._28_c00440{margin-left:-13.620000px;}
._2b_c00440{margin-left:-11.880000px;}
._21_c00440{margin-left:-10.605000px;}
._19_c00440{margin-left:-8.940000px;}
._29_c00440{margin-left:-7.380000px;}
._17_c00440{margin-left:-6.240000px;}
._d_c00440{margin-left:-5.100000px;}
._12_c00440{margin-left:-3.120000px;}
._f_c00440{margin-left:-1.680000px;}
._a_c00440{width:1.980000px;}
._10_c00440{width:3.000000px;}
._0_c00440{width:4.020000px;}
._16_c00440{width:5.760000px;}
._c_c00440{width:7.080000px;}
._e_c00440{width:8.400000px;}
._15_c00440{width:9.720000px;}
._8_c00440{width:10.740000px;}
._14_c00440{width:12.480000px;}
._2d_c00440{width:13.587000px;}
._b_c00440{width:15.420000px;}
._1b_c00440{width:16.437000px;}
._3_c00440{width:17.580000px;}
._23_c00440{width:18.660000px;}
._24_c00440{width:19.776000px;}
._30_c00440{width:20.943000px;}
._1c_c00440{width:22.542000px;}
._2_c00440{width:24.300000px;}
._1_c00440{width:25.740000px;}
._9_c00440{width:26.940000px;}
._5_c00440{width:28.740000px;}
._18_c00440{width:30.540000px;}
._26_c00440{width:31.680000px;}
._4_c00440{width:33.240000px;}
._2c_c00440{width:34.668000px;}
._6_c00440{width:36.060000px;}
._27_c00440{width:37.131000px;}
._25_c00440{width:38.460000px;}
._37_c00440{width:39.525000px;}
._7_c00440{width:41.340000px;}
._34_c00440{width:45.108000px;}
._3a_c00440{width:47.061000px;}
._31_c00440{width:48.420000px;}
._36_c00440{width:49.920000px;}
._39_c00440{width:55.170000px;}
._35_c00440{width:56.340000px;}
._1f_c00440{width:60.180000px;}
._11_c00440{width:75.360000px;}
._3d_c00440{width:77.616000px;}
._13_c00440{width:80.640000px;}
._1d_c00440{width:82.590000px;}
._3b_c00440{width:83.937000px;}
._3c_c00440{width:86.937000px;}
._1a_c00440{width:118.680000px;}
._22_c00440{width:126.963000px;}
._33_c00440{width:137.943000px;}
._32_c00440{width:228.795000px;}
._2e_c00440{width:241.080000px;}
._1e_c00440{width:345.531000px;}
._2a_c00440{width:351.240000px;}
.fc2_c00440{color:transparent;}
.fc1_c00440{color:rgb(128,128,128);}
.fc0_c00440{color:rgb(0,0,0);}
.fs9_c00440{font-size:33.000000px;}
.fs5_c00440{font-size:39.000000px;}
.fs7_c00440{font-size:40.800000px;}
.fs3_c00440{font-size:45.000000px;}
.fsa_c00440{font-size:48.000000px;}
.fs6_c00440{font-size:51.000000px;}
.fs8_c00440{font-size:54.000000px;}
.fs4_c00440{font-size:57.000000px;}
.fs0_c00440{font-size:60.000000px;}
.fs1_c00440{font-size:63.000000px;}
.fs2_c00440{font-size:66.000000px;}
.y0_c00440{bottom:0.000000px;}
.y4e_c00440{bottom:3.105000px;}
.y4d_c00440{bottom:7.228357px;}
.y4c_c00440{bottom:31.380000px;}
.y4b_c00440{bottom:51.630000px;}
.y4a_c00440{bottom:70.830000px;}
.y49_c00440{bottom:88.380000px;}
.y48_c00440{bottom:106.980000px;}
.y47_c00440{bottom:124.980000px;}
.y3f_c00440{bottom:126.480000px;}
.y46_c00440{bottom:142.830000px;}
.y3e_c00440{bottom:144.780000px;}
.y45_c00440{bottom:160.980000px;}
.y3d_c00440{bottom:163.080000px;}
.y44_c00440{bottom:178.830000px;}
.y3c_c00440{bottom:181.230000px;}
.y43_c00440{bottom:197.880000px;}
.y3b_c00440{bottom:199.230000px;}
.y42_c00440{bottom:216.030000px;}
.y3a_c00440{bottom:218.130000px;}
.y41_c00440{bottom:231.930000px;}
.y39_c00440{bottom:235.230000px;}
.y40_c00440{bottom:253.080000px;}
.y38_c00440{bottom:254.580000px;}
.y37_c00440{bottom:271.680000px;}
.y36_c00440{bottom:288.330000px;}
.y1d_c00440{bottom:290.280000px;}
.y35_c00440{bottom:307.080000px;}
.y1c_c00440{bottom:308.430000px;}
.y34_c00440{bottom:324.780000px;}
.y1b_c00440{bottom:326.430000px;}
.y33_c00440{bottom:343.230000px;}
.y1a_c00440{bottom:343.980000px;}
.y32_c00440{bottom:360.780000px;}
.y19_c00440{bottom:362.580000px;}
.y31_c00440{bottom:379.680000px;}
.y18_c00440{bottom:380.730000px;}
.y30_c00440{bottom:397.980000px;}
.y17_c00440{bottom:398.580000px;}
.y2f_c00440{bottom:415.530000px;}
.y16_c00440{bottom:416.580000px;}
.y2e_c00440{bottom:433.980000px;}
.y15_c00440{bottom:435.030000px;}
.y2d_c00440{bottom:451.680000px;}
.y14_c00440{bottom:452.880000px;}
.y2c_c00440{bottom:469.530000px;}
.y13_c00440{bottom:471.180000px;}
.y2b_c00440{bottom:488.130000px;}
.y12_c00440{bottom:489.480000px;}
.y2a_c00440{bottom:505.230000px;}
.y11_c00440{bottom:506.880000px;}
.y29_c00440{bottom:523.830000px;}
.y10_c00440{bottom:524.580000px;}
.y28_c00440{bottom:541.380000px;}
.yf_c00440{bottom:541.980000px;}
.y27_c00440{bottom:559.230000px;}
.ye_c00440{bottom:559.980000px;}
.y26_c00440{bottom:577.530000px;}
.yd_c00440{bottom:578.430000px;}
.yc_c00440{bottom:596.130000px;}
.y25_c00440{bottom:596.430000px;}
.y24_c00440{bottom:613.980000px;}
.yb_c00440{bottom:614.280000px;}
.y23_c00440{bottom:632.430000px;}
.ya_c00440{bottom:632.880000px;}
.y22_c00440{bottom:649.980000px;}
.y9_c00440{bottom:650.730000px;}
.y21_c00440{bottom:668.580000px;}
.y8_c00440{bottom:669.330000px;}
.y20_c00440{bottom:686.580000px;}
.y7_c00440{bottom:687.180000px;}
.y6_c00440{bottom:705.330000px;}
.y1f_c00440{bottom:723.030000px;}
.y5_c00440{bottom:723.630000px;}
.y1e_c00440{bottom:741.180000px;}
.y4_c00440{bottom:741.930000px;}
.y3_c00440{bottom:760.380000px;}
.y2_c00440{bottom:777.930000px;}
.y1_c00440{bottom:800.580000px;}
.hb_c00440{height:13.200074px;}
.ha_c00440{height:35.211000px;}
.hc_c00440{height:43.804688px;}
.h8_c00440{height:59.690918px;}
.h6_c00440{height:59.736000px;}
.h2_c00440{height:62.880000px;}
.h3_c00440{height:64.020000px;}
.h7_c00440{height:64.571777px;}
.h4_c00440{height:66.024000px;}
.h5_c00440{height:70.422000px;}
.h9_c00440{height:71.544000px;}
.h1_c00440{height:843.750000px;}
.h0_c00440{height:844.050000px;}
.w2_c00440{width:104.875500px;}
.w1_c00440{width:576.000000px;}
.w0_c00440{width:576.150000px;}
.x0_c00440{left:0.000000px;}
.x5_c00440{left:11.850000px;}
.x4_c00440{left:13.800000px;}
.x6_c00440{left:36.000000px;}
.x7_c00440{left:38.700000px;}
.xc_c00440{left:60.450000px;}
.x2_c00440{left:70.950000px;}
.x3_c00440{left:72.900000px;}
.x8_c00440{left:74.700000px;}
.xa_c00440{left:76.500000px;}
.xb_c00440{left:78.300000px;}
.x14_c00440{left:79.950000px;}
.x15_c00440{left:81.300000px;}
.x9_c00440{left:118.800000px;}
.x1_c00440{left:204.900000px;}
.x17_c00440{left:239.889267px;}
.xf_c00440{left:285.450000px;}
.xe_c00440{left:293.400000px;}
.xd_c00440{left:294.600000px;}
.x10_c00440{left:295.650000px;}
.x11_c00440{left:297.300000px;}
.x12_c00440{left:298.950000px;}
.x13_c00440{left:300.300000px;}
.x16_c00440{left:457.650000px;}
@media print{
.v0_c00440{vertical-align:0.000000pt;}
.ls7_c00440{letter-spacing:0.000000pt;}
.ls6_c00440{letter-spacing:1.066667pt;}
.ls3_c00440{letter-spacing:1.600000pt;}
.ls1_c00440{letter-spacing:2.018667pt;}
.ls8_c00440{letter-spacing:2.666667pt;}
.ls0_c00440{letter-spacing:6.400000pt;}
.ls5_c00440{letter-spacing:11.952000pt;}
.ls4_c00440{letter-spacing:17.818667pt;}
.ls2_c00440{letter-spacing:22.440000pt;}
.ws2_c00440{word-spacing:-17.333333pt;}
.wsa_c00440{word-spacing:-14.666667pt;}
.ws1_c00440{word-spacing:-13.384000pt;}
.ws5_c00440{word-spacing:-12.602667pt;}
.ws0_c00440{word-spacing:-12.586667pt;}
.ws7_c00440{word-spacing:-10.925333pt;}
.ws8_c00440{word-spacing:-0.205333pt;}
.ws6_c00440{word-spacing:-0.058667pt;}
.ws3_c00440{word-spacing:-0.045333pt;}
.ws4_c00440{word-spacing:-0.036267pt;}
.wsb_c00440{word-spacing:0.000000pt;}
.ws9_c00440{word-spacing:2.552000pt;}
._2f_c00440{margin-left:-20.586667pt;}
._38_c00440{margin-left:-16.906667pt;}
._20_c00440{margin-left:-14.533333pt;}
._28_c00440{margin-left:-12.106667pt;}
._2b_c00440{margin-left:-10.560000pt;}
._21_c00440{margin-left:-9.426667pt;}
._19_c00440{margin-left:-7.946667pt;}
._29_c00440{margin-left:-6.560000pt;}
._17_c00440{margin-left:-5.546667pt;}
._d_c00440{margin-left:-4.533333pt;}
._12_c00440{margin-left:-2.773333pt;}
._f_c00440{margin-left:-1.493333pt;}
._a_c00440{width:1.760000pt;}
._10_c00440{width:2.666667pt;}
._0_c00440{width:3.573333pt;}
._16_c00440{width:5.120000pt;}
._c_c00440{width:6.293333pt;}
._e_c00440{width:7.466667pt;}
._15_c00440{width:8.640000pt;}
._8_c00440{width:9.546667pt;}
._14_c00440{width:11.093333pt;}
._2d_c00440{width:12.077333pt;}
._b_c00440{width:13.706667pt;}
._1b_c00440{width:14.610667pt;}
._3_c00440{width:15.626667pt;}
._23_c00440{width:16.586667pt;}
._24_c00440{width:17.578667pt;}
._30_c00440{width:18.616000pt;}
._1c_c00440{width:20.037333pt;}
._2_c00440{width:21.600000pt;}
._1_c00440{width:22.880000pt;}
._9_c00440{width:23.946667pt;}
._5_c00440{width:25.546667pt;}
._18_c00440{width:27.146667pt;}
._26_c00440{width:28.160000pt;}
._4_c00440{width:29.546667pt;}
._2c_c00440{width:30.816000pt;}
._6_c00440{width:32.053333pt;}
._27_c00440{width:33.005333pt;}
._25_c00440{width:34.186667pt;}
._37_c00440{width:35.133333pt;}
._7_c00440{width:36.746667pt;}
._34_c00440{width:40.096000pt;}
._3a_c00440{width:41.832000pt;}
._31_c00440{width:43.040000pt;}
._36_c00440{width:44.373333pt;}
._39_c00440{width:49.040000pt;}
._35_c00440{width:50.080000pt;}
._1f_c00440{width:53.493333pt;}
._11_c00440{width:66.986667pt;}
._3d_c00440{width:68.992000pt;}
._13_c00440{width:71.680000pt;}
._1d_c00440{width:73.413333pt;}
._3b_c00440{width:74.610667pt;}
._3c_c00440{width:77.277333pt;}
._1a_c00440{width:105.493333pt;}
._22_c00440{width:112.856000pt;}
._33_c00440{width:122.616000pt;}
._32_c00440{width:203.373333pt;}
._2e_c00440{width:214.293333pt;}
._1e_c00440{width:307.138667pt;}
._2a_c00440{width:312.213333pt;}
.fs9_c00440{font-size:29.333333pt;}
.fs5_c00440{font-size:34.666667pt;}
.fs7_c00440{font-size:36.266667pt;}
.fs3_c00440{font-size:40.000000pt;}
.fsa_c00440{font-size:42.666667pt;}
.fs6_c00440{font-size:45.333333pt;}
.fs8_c00440{font-size:48.000000pt;}
.fs4_c00440{font-size:50.666667pt;}
.fs0_c00440{font-size:53.333333pt;}
.fs1_c00440{font-size:56.000000pt;}
.fs2_c00440{font-size:58.666667pt;}
.y0_c00440{bottom:0.000000pt;}
.y4e_c00440{bottom:2.760000pt;}
.y4d_c00440{bottom:6.425206pt;}
.y4c_c00440{bottom:27.893333pt;}
.y4b_c00440{bottom:45.893333pt;}
.y4a_c00440{bottom:62.960000pt;}
.y49_c00440{bottom:78.560000pt;}
.y48_c00440{bottom:95.093333pt;}
.y47_c00440{bottom:111.093333pt;}
.y3f_c00440{bottom:112.426667pt;}
.y46_c00440{bottom:126.960000pt;}
.y3e_c00440{bottom:128.693333pt;}
.y45_c00440{bottom:143.093333pt;}
.y3d_c00440{bottom:144.960000pt;}
.y44_c00440{bottom:158.960000pt;}
.y3c_c00440{bottom:161.093333pt;}
.y43_c00440{bottom:175.893333pt;}
.y3b_c00440{bottom:177.093333pt;}
.y42_c00440{bottom:192.026667pt;}
.y3a_c00440{bottom:193.893333pt;}
.y41_c00440{bottom:206.160000pt;}
.y39_c00440{bottom:209.093333pt;}
.y40_c00440{bottom:224.960000pt;}
.y38_c00440{bottom:226.293333pt;}
.y37_c00440{bottom:241.493333pt;}
.y36_c00440{bottom:256.293333pt;}
.y1d_c00440{bottom:258.026667pt;}
.y35_c00440{bottom:272.960000pt;}
.y1c_c00440{bottom:274.160000pt;}
.y34_c00440{bottom:288.693333pt;}
.y1b_c00440{bottom:290.160000pt;}
.y33_c00440{bottom:305.093333pt;}
.y1a_c00440{bottom:305.760000pt;}
.y32_c00440{bottom:320.693333pt;}
.y19_c00440{bottom:322.293333pt;}
.y31_c00440{bottom:337.493333pt;}
.y18_c00440{bottom:338.426667pt;}
.y30_c00440{bottom:353.760000pt;}
.y17_c00440{bottom:354.293333pt;}
.y2f_c00440{bottom:369.360000pt;}
.y16_c00440{bottom:370.293333pt;}
.y2e_c00440{bottom:385.760000pt;}
.y15_c00440{bottom:386.693333pt;}
.y2d_c00440{bottom:401.493333pt;}
.y14_c00440{bottom:402.560000pt;}
.y2c_c00440{bottom:417.360000pt;}
.y13_c00440{bottom:418.826667pt;}
.y2b_c00440{bottom:433.893333pt;}
.y12_c00440{bottom:435.093333pt;}
.y2a_c00440{bottom:449.093333pt;}
.y11_c00440{bottom:450.560000pt;}
.y29_c00440{bottom:465.626667pt;}
.y10_c00440{bottom:466.293333pt;}
.y28_c00440{bottom:481.226667pt;}
.yf_c00440{bottom:481.760000pt;}
.y27_c00440{bottom:497.093333pt;}
.ye_c00440{bottom:497.760000pt;}
.y26_c00440{bottom:513.360000pt;}
.yd_c00440{bottom:514.160000pt;}
.yc_c00440{bottom:529.893333pt;}
.y25_c00440{bottom:530.160000pt;}
.y24_c00440{bottom:545.760000pt;}
.yb_c00440{bottom:546.026667pt;}
.y23_c00440{bottom:562.160000pt;}
.ya_c00440{bottom:562.560000pt;}
.y22_c00440{bottom:577.760000pt;}
.y9_c00440{bottom:578.426667pt;}
.y21_c00440{bottom:594.293333pt;}
.y8_c00440{bottom:594.960000pt;}
.y20_c00440{bottom:610.293333pt;}
.y7_c00440{bottom:610.826667pt;}
.y6_c00440{bottom:626.960000pt;}
.y1f_c00440{bottom:642.693333pt;}
.y5_c00440{bottom:643.226667pt;}
.y1e_c00440{bottom:658.826667pt;}
.y4_c00440{bottom:659.493333pt;}
.y3_c00440{bottom:675.893333pt;}
.y2_c00440{bottom:691.493333pt;}
.y1_c00440{bottom:711.626667pt;}
.hb_c00440{height:11.733399pt;}
.ha_c00440{height:31.298667pt;}
.hc_c00440{height:38.937500pt;}
.h8_c00440{height:53.058594pt;}
.h6_c00440{height:53.098667pt;}
.h2_c00440{height:55.893333pt;}
.h3_c00440{height:56.906667pt;}
.h7_c00440{height:57.397135pt;}
.h4_c00440{height:58.688000pt;}
.h5_c00440{height:62.597333pt;}
.h9_c00440{height:63.594667pt;}
.h1_c00440{height:750.000000pt;}
.h0_c00440{height:750.266667pt;}
.w2_c00440{width:93.222667pt;}
.w1_c00440{width:512.000000pt;}
.w0_c00440{width:512.133333pt;}
.x0_c00440{left:0.000000pt;}
.x5_c00440{left:10.533333pt;}
.x4_c00440{left:12.266667pt;}
.x6_c00440{left:32.000000pt;}
.x7_c00440{left:34.400000pt;}
.xc_c00440{left:53.733333pt;}
.x2_c00440{left:63.066667pt;}
.x3_c00440{left:64.800000pt;}
.x8_c00440{left:66.400000pt;}
.xa_c00440{left:68.000000pt;}
.xb_c00440{left:69.600000pt;}
.x14_c00440{left:71.066667pt;}
.x15_c00440{left:72.266667pt;}
.x9_c00440{left:105.600000pt;}
.x1_c00440{left:182.133333pt;}
.x17_c00440{left:213.234904pt;}
.xf_c00440{left:253.733333pt;}
.xe_c00440{left:260.800000pt;}
.xd_c00440{left:261.866667pt;}
.x10_c00440{left:262.800000pt;}
.x11_c00440{left:264.266667pt;}
.x12_c00440{left:265.733333pt;}
.x13_c00440{left:266.933333pt;}
.x16_c00440{left:406.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a7a3707994b4c42960f7ad43.woff2')format("woff");}.ff1_c00441{font-family:ff1_c00441;line-height:1.437000;font-style:normal;font-weight:normal;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_2187f97265d604e0a69216cb.woff2')format("woff");}.ff2_c00441{font-family:ff2_c00441;line-height:1.437000;font-style:normal;font-weight:normal;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_01b4b27f1fd0497097476f2a.woff2')format("woff");}.ff3_c00441{font-family:ff3_c00441;line-height:1.437000;font-style:normal;font-weight:normal;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_ecec7cf4b9bcd7152efff5b1.woff2')format("woff");}.ff4_c00441{font-family:ff4_c00441;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00441;src:url('chunks/assets/font_fe18d9a215ac10030f0c32e8.woff2')format("woff");}.ff5_c00441{font-family:ff5_c00441;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00441;src:url('chunks/assets/font_6b8751acc78d23bc4946e4da.woff2')format("woff");}.ff6_c00441{font-family:ff6_c00441;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00441;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff7_c00441{font-family:ff7_c00441;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00441{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00441{vertical-align:0.000000px;}
.ls2_c00441{letter-spacing:0.000000px;}
.ls3_c00441{letter-spacing:3.000000px;}
.ls4_c00441{letter-spacing:6.000000px;}
.ls0_c00441{letter-spacing:6.600000px;}
.ls1_c00441{letter-spacing:12.000000px;}
.sc__c00441{text-shadow:none;}
.sc0_c00441{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00441{-webkit-text-stroke:0px transparent;}
.sc0_c00441{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00441{word-spacing:-37.746000px;}
.ws1_c00441{word-spacing:-26.160000px;}
.ws6_c00441{word-spacing:-23.760000px;}
.ws5_c00441{word-spacing:-19.500000px;}
.ws2_c00441{word-spacing:-15.060000px;}
.ws3_c00441{word-spacing:-14.160000px;}
.ws0_c00441{word-spacing:-11.460000px;}
.ws8_c00441{word-spacing:0.000000px;}
.ws4_c00441{word-spacing:0.480000px;}
._2f_c00441{margin-left:-18.660000px;}
._20_c00441{margin-left:-14.340000px;}
._b_c00441{margin-left:-13.320000px;}
._1a_c00441{margin-left:-9.660000px;}
._28_c00441{margin-left:-8.520000px;}
._1e_c00441{margin-left:-6.660000px;}
._1f_c00441{margin-left:-5.400000px;}
._12_c00441{margin-left:-3.840000px;}
._17_c00441{margin-left:-2.460000px;}
._13_c00441{margin-left:-1.440000px;}
._c_c00441{width:1.980000px;}
._8_c00441{width:3.420000px;}
._9_c00441{width:5.040000px;}
._6_c00441{width:6.840000px;}
._19_c00441{width:7.860000px;}
._11_c00441{width:8.880000px;}
._2_c00441{width:9.900000px;}
._e_c00441{width:11.160000px;}
._3_c00441{width:12.480000px;}
._4_c00441{width:14.040000px;}
._25_c00441{width:15.360000px;}
._0_c00441{width:17.220000px;}
._7_c00441{width:18.900000px;}
._d_c00441{width:20.880000px;}
._10_c00441{width:22.320000px;}
._5_c00441{width:23.940000px;}
._a_c00441{width:24.960000px;}
._f_c00441{width:28.860000px;}
._14_c00441{width:30.180000px;}
._18_c00441{width:31.740000px;}
._1d_c00441{width:33.480000px;}
._15_c00441{width:35.700000px;}
._21_c00441{width:36.840000px;}
._16_c00441{width:40.500000px;}
._24_c00441{width:43.020000px;}
._22_c00441{width:44.880000px;}
._26_c00441{width:46.560000px;}
._27_c00441{width:50.040000px;}
._23_c00441{width:52.200000px;}
._29_c00441{width:54.360000px;}
._2b_c00441{width:57.240000px;}
._31_c00441{width:59.520000px;}
._32_c00441{width:60.840000px;}
._2d_c00441{width:61.980000px;}
._33_c00441{width:67.560000px;}
._2c_c00441{width:68.880000px;}
._2e_c00441{width:81.240000px;}
._30_c00441{width:125.160000px;}
._2a_c00441{width:151.680000px;}
._1b_c00441{width:205.440000px;}
._1_c00441{width:245.340000px;}
._1c_c00441{width:425.280000px;}
.fc2_c00441{color:transparent;}
.fc1_c00441{color:rgb(128,128,128);}
.fc0_c00441{color:rgb(0,0,0);}
.fs2_c00441{font-size:48.000000px;}
.fs0_c00441{font-size:60.000000px;}
.fs1_c00441{font-size:66.000000px;}
.y0_c00441{bottom:0.000000px;}
.y2d_c00441{bottom:3.105000px;}
.y2c_c00441{bottom:7.228363px;}
.y2b_c00441{bottom:40.200000px;}
.y2a_c00441{bottom:58.050000px;}
.y29_c00441{bottom:76.950000px;}
.y28_c00441{bottom:95.550000px;}
.y27_c00441{bottom:113.100000px;}
.y26_c00441{bottom:131.550000px;}
.y25_c00441{bottom:149.850000px;}
.y24_c00441{bottom:167.400000px;}
.y23_c00441{bottom:186.300000px;}
.y22_c00441{bottom:204.450000px;}
.y21_c00441{bottom:222.450000px;}
.y20_c00441{bottom:240.600000px;}
.y1f_c00441{bottom:258.900000px;}
.y1e_c00441{bottom:277.050000px;}
.y1d_c00441{bottom:295.200000px;}
.y1c_c00441{bottom:312.900000px;}
.y1b_c00441{bottom:329.700000px;}
.y1a_c00441{bottom:348.600000px;}
.y19_c00441{bottom:367.500000px;}
.y18_c00441{bottom:385.050000px;}
.y17_c00441{bottom:403.650000px;}
.y16_c00441{bottom:422.100000px;}
.y15_c00441{bottom:440.100000px;}
.y14_c00441{bottom:457.650000px;}
.y13_c00441{bottom:476.100000px;}
.y12_c00441{bottom:494.700000px;}
.y11_c00441{bottom:513.000000px;}
.y10_c00441{bottom:530.550000px;}
.yf_c00441{bottom:548.700000px;}
.ye_c00441{bottom:567.600000px;}
.yd_c00441{bottom:585.000000px;}
.yc_c00441{bottom:603.450000px;}
.yb_c00441{bottom:621.750000px;}
.ya_c00441{bottom:639.000000px;}
.y9_c00441{bottom:657.150000px;}
.y8_c00441{bottom:676.350000px;}
.y7_c00441{bottom:694.950000px;}
.y6_c00441{bottom:713.100000px;}
.y5_c00441{bottom:730.950000px;}
.y4_c00441{bottom:749.850000px;}
.y3_c00441{bottom:767.850000px;}
.y2_c00441{bottom:786.450000px;}
.y1_c00441{bottom:806.250000px;}
.h4_c00441{height:13.200074px;}
.h5_c00441{height:43.804688px;}
.h2_c00441{height:62.880000px;}
.h3_c00441{height:70.422000px;}
.h1_c00441{height:842.250000px;}
.h0_c00441{height:842.400000px;}
.w2_c00441{width:104.875500px;}
.w1_c00441{width:579.750000px;}
.w0_c00441{width:579.975000px;}
.x0_c00441{left:0.000000px;}
.xa_c00441{left:24.750000px;}
.x9_c00441{left:26.400000px;}
.xb_c00441{left:27.750000px;}
.xc_c00441{left:83.700000px;}
.x6_c00441{left:85.950000px;}
.x7_c00441{left:87.450000px;}
.x5_c00441{left:89.400000px;}
.x4_c00441{left:91.050000px;}
.x3_c00441{left:93.750000px;}
.x2_c00441{left:95.550000px;}
.x1_c00441{left:96.600000px;}
.x8_c00441{left:103.650000px;}
.xe_c00441{left:241.801758px;}
.xd_c00441{left:484.050000px;}
@media print{
.v0_c00441{vertical-align:0.000000pt;}
.ls2_c00441{letter-spacing:0.000000pt;}
.ls3_c00441{letter-spacing:2.666667pt;}
.ls4_c00441{letter-spacing:5.333333pt;}
.ls0_c00441{letter-spacing:5.866667pt;}
.ls1_c00441{letter-spacing:10.666667pt;}
.ws7_c00441{word-spacing:-33.552000pt;}
.ws1_c00441{word-spacing:-23.253333pt;}
.ws6_c00441{word-spacing:-21.120000pt;}
.ws5_c00441{word-spacing:-17.333333pt;}
.ws2_c00441{word-spacing:-13.386667pt;}
.ws3_c00441{word-spacing:-12.586667pt;}
.ws0_c00441{word-spacing:-10.186667pt;}
.ws8_c00441{word-spacing:0.000000pt;}
.ws4_c00441{word-spacing:0.426667pt;}
._2f_c00441{margin-left:-16.586667pt;}
._20_c00441{margin-left:-12.746667pt;}
._b_c00441{margin-left:-11.840000pt;}
._1a_c00441{margin-left:-8.586667pt;}
._28_c00441{margin-left:-7.573333pt;}
._1e_c00441{margin-left:-5.920000pt;}
._1f_c00441{margin-left:-4.800000pt;}
._12_c00441{margin-left:-3.413333pt;}
._17_c00441{margin-left:-2.186667pt;}
._13_c00441{margin-left:-1.280000pt;}
._c_c00441{width:1.760000pt;}
._8_c00441{width:3.040000pt;}
._9_c00441{width:4.480000pt;}
._6_c00441{width:6.080000pt;}
._19_c00441{width:6.986667pt;}
._11_c00441{width:7.893333pt;}
._2_c00441{width:8.800000pt;}
._e_c00441{width:9.920000pt;}
._3_c00441{width:11.093333pt;}
._4_c00441{width:12.480000pt;}
._25_c00441{width:13.653333pt;}
._0_c00441{width:15.306667pt;}
._7_c00441{width:16.800000pt;}
._d_c00441{width:18.560000pt;}
._10_c00441{width:19.840000pt;}
._5_c00441{width:21.280000pt;}
._a_c00441{width:22.186667pt;}
._f_c00441{width:25.653333pt;}
._14_c00441{width:26.826667pt;}
._18_c00441{width:28.213333pt;}
._1d_c00441{width:29.760000pt;}
._15_c00441{width:31.733333pt;}
._21_c00441{width:32.746667pt;}
._16_c00441{width:36.000000pt;}
._24_c00441{width:38.240000pt;}
._22_c00441{width:39.893333pt;}
._26_c00441{width:41.386667pt;}
._27_c00441{width:44.480000pt;}
._23_c00441{width:46.400000pt;}
._29_c00441{width:48.320000pt;}
._2b_c00441{width:50.880000pt;}
._31_c00441{width:52.906667pt;}
._32_c00441{width:54.080000pt;}
._2d_c00441{width:55.093333pt;}
._33_c00441{width:60.053333pt;}
._2c_c00441{width:61.226667pt;}
._2e_c00441{width:72.213333pt;}
._30_c00441{width:111.253333pt;}
._2a_c00441{width:134.826667pt;}
._1b_c00441{width:182.613333pt;}
._1_c00441{width:218.080000pt;}
._1c_c00441{width:378.026667pt;}
.fs2_c00441{font-size:42.666667pt;}
.fs0_c00441{font-size:53.333333pt;}
.fs1_c00441{font-size:58.666667pt;}
.y0_c00441{bottom:0.000000pt;}
.y2d_c00441{bottom:2.760000pt;}
.y2c_c00441{bottom:6.425212pt;}
.y2b_c00441{bottom:35.733333pt;}
.y2a_c00441{bottom:51.600000pt;}
.y29_c00441{bottom:68.400000pt;}
.y28_c00441{bottom:84.933333pt;}
.y27_c00441{bottom:100.533333pt;}
.y26_c00441{bottom:116.933333pt;}
.y25_c00441{bottom:133.200000pt;}
.y24_c00441{bottom:148.800000pt;}
.y23_c00441{bottom:165.600000pt;}
.y22_c00441{bottom:181.733333pt;}
.y21_c00441{bottom:197.733333pt;}
.y20_c00441{bottom:213.866667pt;}
.y1f_c00441{bottom:230.133333pt;}
.y1e_c00441{bottom:246.266667pt;}
.y1d_c00441{bottom:262.400000pt;}
.y1c_c00441{bottom:278.133333pt;}
.y1b_c00441{bottom:293.066667pt;}
.y1a_c00441{bottom:309.866667pt;}
.y19_c00441{bottom:326.666667pt;}
.y18_c00441{bottom:342.266667pt;}
.y17_c00441{bottom:358.800000pt;}
.y16_c00441{bottom:375.200000pt;}
.y15_c00441{bottom:391.200000pt;}
.y14_c00441{bottom:406.800000pt;}
.y13_c00441{bottom:423.200000pt;}
.y12_c00441{bottom:439.733333pt;}
.y11_c00441{bottom:456.000000pt;}
.y10_c00441{bottom:471.600000pt;}
.yf_c00441{bottom:487.733333pt;}
.ye_c00441{bottom:504.533333pt;}
.yd_c00441{bottom:520.000000pt;}
.yc_c00441{bottom:536.400000pt;}
.yb_c00441{bottom:552.666667pt;}
.ya_c00441{bottom:568.000000pt;}
.y9_c00441{bottom:584.133333pt;}
.y8_c00441{bottom:601.200000pt;}
.y7_c00441{bottom:617.733333pt;}
.y6_c00441{bottom:633.866667pt;}
.y5_c00441{bottom:649.733333pt;}
.y4_c00441{bottom:666.533333pt;}
.y3_c00441{bottom:682.533333pt;}
.y2_c00441{bottom:699.066667pt;}
.y1_c00441{bottom:716.666667pt;}
.h4_c00441{height:11.733399pt;}
.h5_c00441{height:38.937500pt;}
.h2_c00441{height:55.893333pt;}
.h3_c00441{height:62.597333pt;}
.h1_c00441{height:748.666667pt;}
.h0_c00441{height:748.800000pt;}
.w2_c00441{width:93.222667pt;}
.w1_c00441{width:515.333333pt;}
.w0_c00441{width:515.533333pt;}
.x0_c00441{left:0.000000pt;}
.xa_c00441{left:22.000000pt;}
.x9_c00441{left:23.466667pt;}
.xb_c00441{left:24.666667pt;}
.xc_c00441{left:74.400000pt;}
.x6_c00441{left:76.400000pt;}
.x7_c00441{left:77.733333pt;}
.x5_c00441{left:79.466667pt;}
.x4_c00441{left:80.933333pt;}
.x3_c00441{left:83.333333pt;}
.x2_c00441{left:84.933333pt;}
.x1_c00441{left:85.866667pt;}
.x8_c00441{left:92.133333pt;}
.xe_c00441{left:214.934896pt;}
.xd_c00441{left:430.266667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_6b13cdbf0479ca517f258908.woff2')format("woff");}.ff1_c00442{font-family:ff1_c00442;line-height:1.437000;font-style:normal;font-weight:normal;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_54f1443f1e75f76d5809d0e7.woff2')format("woff");}.ff2_c00442{font-family:ff2_c00442;line-height:1.437000;font-style:normal;font-weight:normal;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_169f72216dbc1b9a606212c6.woff2')format("woff");}.ff3_c00442{font-family:ff3_c00442;line-height:1.437000;font-style:normal;font-weight:normal;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_742d6ba17f0a409530f1998e.woff2')format("woff");}.ff4_c00442{font-family:ff4_c00442;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00442;src:url('chunks/assets/font_d961ae856d17340fdfaa30aa.woff2')format("woff");}.ff5_c00442{font-family:ff5_c00442;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00442;src:url('chunks/assets/font_27a042e15472c3c6a36b9062.woff2')format("woff");}.ff6_c00442{font-family:ff6_c00442;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00442;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff7_c00442{font-family:ff7_c00442;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00442{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00442{vertical-align:0.000000px;}
.ls4_c00442{letter-spacing:-3.000000px;}
.ls3_c00442{letter-spacing:0.000000px;}
.ls1_c00442{letter-spacing:1.500000px;}
.ls5_c00442{letter-spacing:9.000000px;}
.ls2_c00442{letter-spacing:22.587000px;}
.ls0_c00442{letter-spacing:74.187000px;}
.sc__c00442{text-shadow:none;}
.sc0_c00442{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00442{-webkit-text-stroke:0px transparent;}
.sc0_c00442{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00442{word-spacing:-24.750000px;}
.ws3_c00442{word-spacing:-23.868000px;}
.ws0_c00442{word-spacing:-17.250000px;}
.ws1_c00442{word-spacing:-14.868000px;}
.ws4_c00442{word-spacing:0.000000px;}
._30_c00442{margin-left:-27.945000px;}
._3c_c00442{margin-left:-17.262000px;}
._15_c00442{margin-left:-15.525000px;}
._14_c00442{margin-left:-13.662000px;}
._c_c00442{margin-left:-11.907000px;}
._21_c00442{margin-left:-10.533000px;}
._b_c00442{margin-left:-9.303000px;}
._f_c00442{margin-left:-8.151000px;}
._6_c00442{margin-left:-6.783000px;}
._d_c00442{margin-left:-5.598000px;}
._7_c00442{margin-left:-4.218000px;}
._4_c00442{margin-left:-2.622000px;}
._3_c00442{margin-left:-1.311000px;}
._9_c00442{width:1.083000px;}
._0_c00442{width:2.223000px;}
._11_c00442{width:3.906000px;}
._12_c00442{width:5.433000px;}
._16_c00442{width:6.642000px;}
._1a_c00442{width:7.860000px;}
._5_c00442{width:9.120000px;}
._2_c00442{width:10.317000px;}
._1_c00442{width:11.514000px;}
._17_c00442{width:12.594000px;}
._1c_c00442{width:13.944000px;}
._22_c00442{width:15.111000px;}
._a_c00442{width:16.494000px;}
._39_c00442{width:17.730000px;}
._1e_c00442{width:18.954000px;}
._13_c00442{width:21.582000px;}
._1b_c00442{width:23.271000px;}
._34_c00442{width:24.618000px;}
._2c_c00442{width:25.782000px;}
._2d_c00442{width:31.866000px;}
._1f_c00442{width:34.776000px;}
._24_c00442{width:40.467000px;}
._3d_c00442{width:43.230000px;}
._32_c00442{width:46.059000px;}
._3b_c00442{width:47.535000px;}
._2f_c00442{width:50.145000px;}
._2a_c00442{width:53.139000px;}
._20_c00442{width:54.804000px;}
._23_c00442{width:58.095000px;}
._29_c00442{width:59.763000px;}
._8_c00442{width:61.218000px;}
._18_c00442{width:62.739000px;}
._33_c00442{width:65.673000px;}
._10_c00442{width:67.008000px;}
._3a_c00442{width:68.352000px;}
._e_c00442{width:69.414000px;}
._2e_c00442{width:71.229000px;}
._2b_c00442{width:73.419000px;}
._19_c00442{width:116.166000px;}
._28_c00442{width:129.300000px;}
._35_c00442{width:138.882000px;}
._38_c00442{width:169.617000px;}
._25_c00442{width:182.640000px;}
._37_c00442{width:192.819000px;}
._36_c00442{width:234.069000px;}
._26_c00442{width:236.598000px;}
._1d_c00442{width:365.319000px;}
._27_c00442{width:385.092000px;}
._31_c00442{width:523.380000px;}
.fc2_c00442{color:transparent;}
.fc1_c00442{color:rgb(128,128,128);}
.fc0_c00442{color:rgb(0,0,0);}
.fs6_c00442{font-size:48.000000px;}
.fs1_c00442{font-size:54.000000px;}
.fs0_c00442{font-size:57.000000px;}
.fs5_c00442{font-size:60.000000px;}
.fs4_c00442{font-size:63.000000px;}
.fs2_c00442{font-size:69.000000px;}
.fs3_c00442{font-size:81.000000px;}
.y0_c00442{bottom:0.000000px;}
.y2c_c00442{bottom:3.105000px;}
.y2b_c00442{bottom:7.228355px;}
.y2a_c00442{bottom:37.785000px;}
.y29_c00442{bottom:56.235000px;}
.y28_c00442{bottom:75.885000px;}
.y27_c00442{bottom:94.035000px;}
.y26_c00442{bottom:111.585000px;}
.y25_c00442{bottom:130.185000px;}
.y24_c00442{bottom:148.785000px;}
.y23_c00442{bottom:166.635000px;}
.y22_c00442{bottom:184.185000px;}
.y21_c00442{bottom:203.385000px;}
.y20_c00442{bottom:221.385000px;}
.y1f_c00442{bottom:239.535000px;}
.y1e_c00442{bottom:257.535000px;}
.y1d_c00442{bottom:276.285000px;}
.y1c_c00442{bottom:293.835000px;}
.y1b_c00442{bottom:312.735000px;}
.y1a_c00442{bottom:330.285000px;}
.y19_c00442{bottom:347.985000px;}
.y18_c00442{bottom:366.885000px;}
.y17_c00442{bottom:385.335000px;}
.y16_c00442{bottom:403.335000px;}
.y15_c00442{bottom:420.885000px;}
.y14_c00442{bottom:439.335000px;}
.y13_c00442{bottom:457.335000px;}
.y12_c00442{bottom:475.485000px;}
.y11_c00442{bottom:493.785000px;}
.y10_c00442{bottom:511.935000px;}
.yf_c00442{bottom:528.735000px;}
.ye_c00442{bottom:546.435000px;}
.yd_c00442{bottom:564.885000px;}
.yc_c00442{bottom:582.885000px;}
.yb_c00442{bottom:600.735000px;}
.ya_c00442{bottom:619.185000px;}
.y9_c00442{bottom:637.185000px;}
.y8_c00442{bottom:655.785000px;}
.y7_c00442{bottom:673.485000px;}
.y6_c00442{bottom:691.785000px;}
.y5_c00442{bottom:710.085000px;}
.y4_c00442{bottom:728.685000px;}
.y3_c00442{bottom:746.535000px;}
.y2_c00442{bottom:764.385000px;}
.y1_c00442{bottom:783.285000px;}
.h9_c00442{height:13.200074px;}
.ha_c00442{height:43.804688px;}
.h2_c00442{height:59.736000px;}
.h8_c00442{height:62.880000px;}
.h5_c00442{height:66.024000px;}
.h7_c00442{height:67.221000px;}
.h4_c00442{height:72.312000px;}
.h6_c00442{height:74.796000px;}
.h3_c00442{height:87.804000px;}
.h0_c00442{height:849.675000px;}
.h1_c00442{height:849.750000px;}
.w2_c00442{width:104.875500px;}
.w1_c00442{width:579.750000px;}
.w0_c00442{width:579.975000px;}
.x0_c00442{left:0.000000px;}
.x6_c00442{left:18.000000px;}
.x2_c00442{left:72.150000px;}
.x1_c00442{left:73.200000px;}
.x4_c00442{left:75.300000px;}
.x5_c00442{left:77.400000px;}
.x3_c00442{left:104.850000px;}
.x8_c00442{left:241.801758px;}
.x7_c00442{left:474.300000px;}
@media print{
.v0_c00442{vertical-align:0.000000pt;}
.ls4_c00442{letter-spacing:-2.666667pt;}
.ls3_c00442{letter-spacing:0.000000pt;}
.ls1_c00442{letter-spacing:1.333333pt;}
.ls5_c00442{letter-spacing:8.000000pt;}
.ls2_c00442{letter-spacing:20.077333pt;}
.ls0_c00442{letter-spacing:65.944000pt;}
.ws2_c00442{word-spacing:-22.000000pt;}
.ws3_c00442{word-spacing:-21.216000pt;}
.ws0_c00442{word-spacing:-15.333333pt;}
.ws1_c00442{word-spacing:-13.216000pt;}
.ws4_c00442{word-spacing:0.000000pt;}
._30_c00442{margin-left:-24.840000pt;}
._3c_c00442{margin-left:-15.344000pt;}
._15_c00442{margin-left:-13.800000pt;}
._14_c00442{margin-left:-12.144000pt;}
._c_c00442{margin-left:-10.584000pt;}
._21_c00442{margin-left:-9.362667pt;}
._b_c00442{margin-left:-8.269333pt;}
._f_c00442{margin-left:-7.245333pt;}
._6_c00442{margin-left:-6.029333pt;}
._d_c00442{margin-left:-4.976000pt;}
._7_c00442{margin-left:-3.749333pt;}
._4_c00442{margin-left:-2.330667pt;}
._3_c00442{margin-left:-1.165333pt;}
._9_c00442{width:0.962667pt;}
._0_c00442{width:1.976000pt;}
._11_c00442{width:3.472000pt;}
._12_c00442{width:4.829333pt;}
._16_c00442{width:5.904000pt;}
._1a_c00442{width:6.986667pt;}
._5_c00442{width:8.106667pt;}
._2_c00442{width:9.170667pt;}
._1_c00442{width:10.234667pt;}
._17_c00442{width:11.194667pt;}
._1c_c00442{width:12.394667pt;}
._22_c00442{width:13.432000pt;}
._a_c00442{width:14.661333pt;}
._39_c00442{width:15.760000pt;}
._1e_c00442{width:16.848000pt;}
._13_c00442{width:19.184000pt;}
._1b_c00442{width:20.685333pt;}
._34_c00442{width:21.882667pt;}
._2c_c00442{width:22.917333pt;}
._2d_c00442{width:28.325333pt;}
._1f_c00442{width:30.912000pt;}
._24_c00442{width:35.970667pt;}
._3d_c00442{width:38.426667pt;}
._32_c00442{width:40.941333pt;}
._3b_c00442{width:42.253333pt;}
._2f_c00442{width:44.573333pt;}
._2a_c00442{width:47.234667pt;}
._20_c00442{width:48.714667pt;}
._23_c00442{width:51.640000pt;}
._29_c00442{width:53.122667pt;}
._8_c00442{width:54.416000pt;}
._18_c00442{width:55.768000pt;}
._33_c00442{width:58.376000pt;}
._10_c00442{width:59.562667pt;}
._3a_c00442{width:60.757333pt;}
._e_c00442{width:61.701333pt;}
._2e_c00442{width:63.314667pt;}
._2b_c00442{width:65.261333pt;}
._19_c00442{width:103.258667pt;}
._28_c00442{width:114.933333pt;}
._35_c00442{width:123.450667pt;}
._38_c00442{width:150.770667pt;}
._25_c00442{width:162.346667pt;}
._37_c00442{width:171.394667pt;}
._36_c00442{width:208.061333pt;}
._26_c00442{width:210.309333pt;}
._1d_c00442{width:324.728000pt;}
._27_c00442{width:342.304000pt;}
._31_c00442{width:465.226667pt;}
.fs6_c00442{font-size:42.666667pt;}
.fs1_c00442{font-size:48.000000pt;}
.fs0_c00442{font-size:50.666667pt;}
.fs5_c00442{font-size:53.333333pt;}
.fs4_c00442{font-size:56.000000pt;}
.fs2_c00442{font-size:61.333333pt;}
.fs3_c00442{font-size:72.000000pt;}
.y0_c00442{bottom:0.000000pt;}
.y2c_c00442{bottom:2.760000pt;}
.y2b_c00442{bottom:6.425204pt;}
.y2a_c00442{bottom:33.586667pt;}
.y29_c00442{bottom:49.986667pt;}
.y28_c00442{bottom:67.453333pt;}
.y27_c00442{bottom:83.586667pt;}
.y26_c00442{bottom:99.186667pt;}
.y25_c00442{bottom:115.720000pt;}
.y24_c00442{bottom:132.253333pt;}
.y23_c00442{bottom:148.120000pt;}
.y22_c00442{bottom:163.720000pt;}
.y21_c00442{bottom:180.786667pt;}
.y20_c00442{bottom:196.786667pt;}
.y1f_c00442{bottom:212.920000pt;}
.y1e_c00442{bottom:228.920000pt;}
.y1d_c00442{bottom:245.586667pt;}
.y1c_c00442{bottom:261.186667pt;}
.y1b_c00442{bottom:277.986667pt;}
.y1a_c00442{bottom:293.586667pt;}
.y19_c00442{bottom:309.320000pt;}
.y18_c00442{bottom:326.120000pt;}
.y17_c00442{bottom:342.520000pt;}
.y16_c00442{bottom:358.520000pt;}
.y15_c00442{bottom:374.120000pt;}
.y14_c00442{bottom:390.520000pt;}
.y13_c00442{bottom:406.520000pt;}
.y12_c00442{bottom:422.653333pt;}
.y11_c00442{bottom:438.920000pt;}
.y10_c00442{bottom:455.053333pt;}
.yf_c00442{bottom:469.986667pt;}
.ye_c00442{bottom:485.720000pt;}
.yd_c00442{bottom:502.120000pt;}
.yc_c00442{bottom:518.120000pt;}
.yb_c00442{bottom:533.986667pt;}
.ya_c00442{bottom:550.386667pt;}
.y9_c00442{bottom:566.386667pt;}
.y8_c00442{bottom:582.920000pt;}
.y7_c00442{bottom:598.653333pt;}
.y6_c00442{bottom:614.920000pt;}
.y5_c00442{bottom:631.186667pt;}
.y4_c00442{bottom:647.720000pt;}
.y3_c00442{bottom:663.586667pt;}
.y2_c00442{bottom:679.453333pt;}
.y1_c00442{bottom:696.253333pt;}
.h9_c00442{height:11.733399pt;}
.ha_c00442{height:38.937500pt;}
.h2_c00442{height:53.098667pt;}
.h8_c00442{height:55.893333pt;}
.h5_c00442{height:58.688000pt;}
.h7_c00442{height:59.752000pt;}
.h4_c00442{height:64.277333pt;}
.h6_c00442{height:66.485333pt;}
.h3_c00442{height:78.048000pt;}
.h0_c00442{height:755.266667pt;}
.h1_c00442{height:755.333333pt;}
.w2_c00442{width:93.222667pt;}
.w1_c00442{width:515.333333pt;}
.w0_c00442{width:515.533333pt;}
.x0_c00442{left:0.000000pt;}
.x6_c00442{left:16.000000pt;}
.x2_c00442{left:64.133333pt;}
.x1_c00442{left:65.066667pt;}
.x4_c00442{left:66.933333pt;}
.x5_c00442{left:68.800000pt;}
.x3_c00442{left:93.200000pt;}
.x8_c00442{left:214.934896pt;}
.x7_c00442{left:421.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_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_941ef09968f123ace7082ef1.woff2')format("woff");}.ff1_c00443{font-family:ff1_c00443;line-height:1.437000;font-style:normal;font-weight:normal;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_b090bd6adddce801625e86a0.woff2')format("woff");}.ff2_c00443{font-family:ff2_c00443;line-height:1.437000;font-style:normal;font-weight:normal;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_c211a73c6ea380099589ec09.woff2')format("woff");}.ff3_c00443{font-family:ff3_c00443;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00443;src:url('chunks/assets/font_b9f0daa79f9885e74d2c9c54.woff2')format("woff");}.ff4_c00443{font-family:ff4_c00443;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00443;src:url('chunks/assets/font_3db61d4270835cef93ec4026.woff2')format("woff");}.ff5_c00443{font-family:ff5_c00443;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00443;src:url('chunks/assets/font_7c7b114d6d8510036cb24ad0.woff2')format("woff");}.ff6_c00443{font-family:ff6_c00443;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00443;src:url('chunks/assets/font_c899f8da4edf6cea9458a3e5.woff2')format("woff");}.ff7_c00443{font-family:ff7_c00443;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00443;src:url('chunks/assets/font_f0f057f53ca4b0969240d5e1.woff2')format("woff");}.ff8_c00443{font-family:ff8_c00443;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00443;src:url('chunks/assets/font_72871e629951d6a9960b44e6.woff2')format("woff");}.ff9_c00443{font-family:ff9_c00443;line-height:1.437000;font-style:normal;font-weight: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_c00443;src:url('chunks/assets/font_796488d46653b7b8398f3732.woff2')format("woff");}.ffa_c00443{font-family:ffa_c00443;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00443;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ffb_c00443{font-family:ffb_c00443;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc_c00443;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ffc_c00443{font-family:ffc_c00443;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00443{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00443{vertical-align:-63.600000px;}
.v0_c00443{vertical-align:0.000000px;}
.ls8_c00443{letter-spacing:-6.000000px;}
.ls6_c00443{letter-spacing:-3.000000px;}
.ls5_c00443{letter-spacing:0.000000px;}
.ls2_c00443{letter-spacing:2.100000px;}
.ls9_c00443{letter-spacing:3.000000px;}
.ls3_c00443{letter-spacing:3.600000px;}
.ls7_c00443{letter-spacing:6.000000px;}
.ls4_c00443{letter-spacing:8.400000px;}
.ls0_c00443{letter-spacing:11.100000px;}
.ls1_c00443{letter-spacing:12.000000px;}
.sc__c00443{text-shadow:none;}
.sc0_c00443{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00443{-webkit-text-stroke:0px transparent;}
.sc0_c00443{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00443{word-spacing:-37.746000px;}
.ws1_c00443{word-spacing:-35.961000px;}
.ws6_c00443{word-spacing:-22.074000px;}
.ws7_c00443{word-spacing:-17.808000px;}
.ws3_c00443{word-spacing:-14.340000px;}
.ws0_c00443{word-spacing:-14.160000px;}
.ws9_c00443{word-spacing:-13.740000px;}
.ws8_c00443{word-spacing:-12.291000px;}
.ws5_c00443{word-spacing:-11.679000px;}
.ws4_c00443{word-spacing:-7.452000px;}
.wsa_c00443{word-spacing:-4.704000px;}
.wsb_c00443{word-spacing:0.000000px;}
._32_c00443{margin-left:-24.738000px;}
._39_c00443{margin-left:-21.216000px;}
._1f_c00443{margin-left:-19.320000px;}
._2f_c00443{margin-left:-16.893000px;}
._2d_c00443{margin-left:-15.636000px;}
._1a_c00443{margin-left:-13.842000px;}
._15_c00443{margin-left:-12.780000px;}
._14_c00443{margin-left:-10.800000px;}
._10_c00443{margin-left:-8.418000px;}
._f_c00443{margin-left:-7.404000px;}
._27_c00443{margin-left:-5.904000px;}
._c_c00443{margin-left:-4.590000px;}
._18_c00443{margin-left:-3.378000px;}
._e_c00443{margin-left:-2.277000px;}
._d_c00443{margin-left:-1.242000px;}
._1_c00443{width:1.080000px;}
._0_c00443{width:2.820000px;}
._2_c00443{width:4.560000px;}
._a_c00443{width:5.940000px;}
._7_c00443{width:7.383000px;}
._4_c00443{width:8.538000px;}
._8_c00443{width:9.540000px;}
._3_c00443{width:10.707000px;}
._6_c00443{width:11.730000px;}
._5_c00443{width:13.380000px;}
._25_c00443{width:14.466000px;}
._11_c00443{width:15.810000px;}
._23_c00443{width:16.989000px;}
._9_c00443{width:18.090000px;}
._16_c00443{width:20.520000px;}
._1c_c00443{width:21.705000px;}
._37_c00443{width:22.809000px;}
._1b_c00443{width:24.300000px;}
._21_c00443{width:25.437000px;}
._35_c00443{width:27.306000px;}
._38_c00443{width:31.752000px;}
._31_c00443{width:34.356000px;}
._33_c00443{width:36.276000px;}
._1d_c00443{width:39.753000px;}
._19_c00443{width:45.348000px;}
._2e_c00443{width:49.428000px;}
._29_c00443{width:55.119000px;}
._2c_c00443{width:56.472000px;}
._34_c00443{width:59.565000px;}
._12_c00443{width:64.635000px;}
._26_c00443{width:80.841000px;}
._22_c00443{width:87.804000px;}
._3a_c00443{width:90.357000px;}
._24_c00443{width:91.623000px;}
._36_c00443{width:104.157000px;}
._20_c00443{width:118.608000px;}
._17_c00443{width:135.900000px;}
._28_c00443{width:148.860000px;}
._1e_c00443{width:205.260000px;}
._2b_c00443{width:210.342000px;}
._30_c00443{width:470.124000px;}
._b_c00443{width:478.140000px;}
._2a_c00443{width:521.340000px;}
._13_c00443{width:640.377000px;}
.fc2_c00443{color:transparent;}
.fc1_c00443{color:rgb(128,128,128);}
.fc0_c00443{color:rgb(0,0,0);}
.fs4_c00443{font-size:48.000000px;}
.fs5_c00443{font-size:51.000000px;}
.fs8_c00443{font-size:54.000000px;}
.fs6_c00443{font-size:57.000000px;}
.fs0_c00443{font-size:60.000000px;}
.fs3_c00443{font-size:66.000000px;}
.fs1_c00443{font-size:69.000000px;}
.fs7_c00443{font-size:72.000000px;}
.fs2_c00443{font-size:81.000000px;}
.y0_c00443{bottom:0.000000px;}
.y41_c00443{bottom:3.105000px;}
.y40_c00443{bottom:7.228363px;}
.y3f_c00443{bottom:53.250000px;}
.y35_c00443{bottom:70.500000px;}
.y3e_c00443{bottom:72.900000px;}
.y34_c00443{bottom:88.800000px;}
.y3d_c00443{bottom:92.400000px;}
.y33_c00443{bottom:107.550000px;}
.y3c_c00443{bottom:110.400000px;}
.y32_c00443{bottom:125.250000px;}
.y3b_c00443{bottom:127.500000px;}
.y31_c00443{bottom:143.400000px;}
.y3a_c00443{bottom:146.400000px;}
.y30_c00443{bottom:162.300000px;}
.y2f_c00443{bottom:179.850000px;}
.y39_c00443{bottom:182.850000px;}
.y2e_c00443{bottom:198.450000px;}
.y38_c00443{bottom:202.800000px;}
.y2d_c00443{bottom:216.000000px;}
.y2c_c00443{bottom:234.600000px;}
.y37_c00443{bottom:236.250000px;}
.y2b_c00443{bottom:253.050000px;}
.y36_c00443{bottom:255.150000px;}
.y2a_c00443{bottom:272.400000px;}
.y29_c00443{bottom:290.250000px;}
.y28_c00443{bottom:307.800000px;}
.y27_c00443{bottom:326.250000px;}
.y26_c00443{bottom:344.850000px;}
.y25_c00443{bottom:362.850000px;}
.y24_c00443{bottom:381.300000px;}
.y23_c00443{bottom:398.550000px;}
.y22_c00443{bottom:418.200000px;}
.y21_c00443{bottom:435.300000px;}
.y20_c00443{bottom:453.150000px;}
.y1f_c00443{bottom:471.750000px;}
.y1e_c00443{bottom:490.050000px;}
.y1d_c00443{bottom:508.500000px;}
.y2_c00443{bottom:522.450000px;}
.y1c_c00443{bottom:526.500000px;}
.y1_c00443{bottom:539.700000px;}
.y1b_c00443{bottom:544.500000px;}
.y1a_c00443{bottom:562.650000px;}
.yf_c00443{bottom:579.450000px;}
.y19_c00443{bottom:580.800000px;}
.ye_c00443{bottom:596.700000px;}
.y18_c00443{bottom:599.400000px;}
.yd_c00443{bottom:615.600000px;}
.y17_c00443{bottom:616.950000px;}
.yc_c00443{bottom:634.050000px;}
.y16_c00443{bottom:635.850000px;}
.yb_c00443{bottom:652.050000px;}
.y15_c00443{bottom:654.000000px;}
.ya_c00443{bottom:670.200000px;}
.y14_c00443{bottom:672.000000px;}
.y9_c00443{bottom:689.550000px;}
.y13_c00443{bottom:690.450000px;}
.y8_c00443{bottom:708.000000px;}
.y12_c00443{bottom:708.450000px;}
.y7_c00443{bottom:726.000000px;}
.y11_c00443{bottom:727.350000px;}
.y6_c00443{bottom:742.500000px;}
.y10_c00443{bottom:745.500000px;}
.y5_c00443{bottom:762.300000px;}
.y4_c00443{bottom:780.000000px;}
.y3_c00443{bottom:800.550000px;}
.hd_c00443{height:13.200074px;}
.he_c00443{height:43.804688px;}
.h6_c00443{height:51.216000px;}
.h7_c00443{height:52.419963px;}
.h9_c00443{height:53.448000px;}
.hc_c00443{height:59.690918px;}
.h2_c00443{height:62.880000px;}
.hb_c00443{height:64.571777px;}
.h8_c00443{height:70.422000px;}
.h5_c00443{height:71.544000px;}
.h3_c00443{height:72.312000px;}
.ha_c00443{height:76.824000px;}
.h4_c00443{height:87.804000px;}
.h1_c00443{height:842.250000px;}
.h0_c00443{height:842.400000px;}
.w2_c00443{width:104.875500px;}
.w1_c00443{width:579.750000px;}
.w0_c00443{width:579.975000px;}
.x0_c00443{left:0.000000px;}
.x11_c00443{left:24.900000px;}
.x10_c00443{left:27.000000px;}
.x1_c00443{left:30.150000px;}
.xd_c00443{left:44.250000px;}
.xf_c00443{left:88.050000px;}
.x12_c00443{left:89.400000px;}
.xe_c00443{left:90.900000px;}
.xb_c00443{left:92.100000px;}
.x5_c00443{left:93.750000px;}
.x3_c00443{left:95.400000px;}
.x4_c00443{left:96.450000px;}
.x2_c00443{left:180.900000px;}
.x19_c00443{left:241.801758px;}
.x14_c00443{left:295.350000px;}
.x18_c00443{left:296.550000px;}
.x16_c00443{left:297.900000px;}
.x15_c00443{left:308.850000px;}
.x17_c00443{left:310.050000px;}
.x13_c00443{left:312.150000px;}
.x9_c00443{left:313.800000px;}
.x8_c00443{left:314.850000px;}
.x7_c00443{left:315.900000px;}
.xa_c00443{left:319.200000px;}
.x6_c00443{left:335.700000px;}
.xc_c00443{left:457.650000px;}
@media print{
.v1_c00443{vertical-align:-56.533333pt;}
.v0_c00443{vertical-align:0.000000pt;}
.ls8_c00443{letter-spacing:-5.333333pt;}
.ls6_c00443{letter-spacing:-2.666667pt;}
.ls5_c00443{letter-spacing:0.000000pt;}
.ls2_c00443{letter-spacing:1.866667pt;}
.ls9_c00443{letter-spacing:2.666667pt;}
.ls3_c00443{letter-spacing:3.200000pt;}
.ls7_c00443{letter-spacing:5.333333pt;}
.ls4_c00443{letter-spacing:7.466667pt;}
.ls0_c00443{letter-spacing:9.866667pt;}
.ls1_c00443{letter-spacing:10.666667pt;}
.ws2_c00443{word-spacing:-33.552000pt;}
.ws1_c00443{word-spacing:-31.965333pt;}
.ws6_c00443{word-spacing:-19.621333pt;}
.ws7_c00443{word-spacing:-15.829333pt;}
.ws3_c00443{word-spacing:-12.746667pt;}
.ws0_c00443{word-spacing:-12.586667pt;}
.ws9_c00443{word-spacing:-12.213333pt;}
.ws8_c00443{word-spacing:-10.925333pt;}
.ws5_c00443{word-spacing:-10.381333pt;}
.ws4_c00443{word-spacing:-6.624000pt;}
.wsa_c00443{word-spacing:-4.181333pt;}
.wsb_c00443{word-spacing:0.000000pt;}
._32_c00443{margin-left:-21.989333pt;}
._39_c00443{margin-left:-18.858667pt;}
._1f_c00443{margin-left:-17.173333pt;}
._2f_c00443{margin-left:-15.016000pt;}
._2d_c00443{margin-left:-13.898667pt;}
._1a_c00443{margin-left:-12.304000pt;}
._15_c00443{margin-left:-11.360000pt;}
._14_c00443{margin-left:-9.600000pt;}
._10_c00443{margin-left:-7.482667pt;}
._f_c00443{margin-left:-6.581333pt;}
._27_c00443{margin-left:-5.248000pt;}
._c_c00443{margin-left:-4.080000pt;}
._18_c00443{margin-left:-3.002667pt;}
._e_c00443{margin-left:-2.024000pt;}
._d_c00443{margin-left:-1.104000pt;}
._1_c00443{width:0.960000pt;}
._0_c00443{width:2.506667pt;}
._2_c00443{width:4.053333pt;}
._a_c00443{width:5.280000pt;}
._7_c00443{width:6.562667pt;}
._4_c00443{width:7.589333pt;}
._8_c00443{width:8.480000pt;}
._3_c00443{width:9.517333pt;}
._6_c00443{width:10.426667pt;}
._5_c00443{width:11.893333pt;}
._25_c00443{width:12.858667pt;}
._11_c00443{width:14.053333pt;}
._23_c00443{width:15.101333pt;}
._9_c00443{width:16.080000pt;}
._16_c00443{width:18.240000pt;}
._1c_c00443{width:19.293333pt;}
._37_c00443{width:20.274667pt;}
._1b_c00443{width:21.600000pt;}
._21_c00443{width:22.610667pt;}
._35_c00443{width:24.272000pt;}
._38_c00443{width:28.224000pt;}
._31_c00443{width:30.538667pt;}
._33_c00443{width:32.245333pt;}
._1d_c00443{width:35.336000pt;}
._19_c00443{width:40.309333pt;}
._2e_c00443{width:43.936000pt;}
._29_c00443{width:48.994667pt;}
._2c_c00443{width:50.197333pt;}
._34_c00443{width:52.946667pt;}
._12_c00443{width:57.453333pt;}
._26_c00443{width:71.858667pt;}
._22_c00443{width:78.048000pt;}
._3a_c00443{width:80.317333pt;}
._24_c00443{width:81.442667pt;}
._36_c00443{width:92.584000pt;}
._20_c00443{width:105.429333pt;}
._17_c00443{width:120.800000pt;}
._28_c00443{width:132.320000pt;}
._1e_c00443{width:182.453333pt;}
._2b_c00443{width:186.970667pt;}
._30_c00443{width:417.888000pt;}
._b_c00443{width:425.013333pt;}
._2a_c00443{width:463.413333pt;}
._13_c00443{width:569.224000pt;}
.fs4_c00443{font-size:42.666667pt;}
.fs5_c00443{font-size:45.333333pt;}
.fs8_c00443{font-size:48.000000pt;}
.fs6_c00443{font-size:50.666667pt;}
.fs0_c00443{font-size:53.333333pt;}
.fs3_c00443{font-size:58.666667pt;}
.fs1_c00443{font-size:61.333333pt;}
.fs7_c00443{font-size:64.000000pt;}
.fs2_c00443{font-size:72.000000pt;}
.y0_c00443{bottom:0.000000pt;}
.y41_c00443{bottom:2.760000pt;}
.y40_c00443{bottom:6.425212pt;}
.y3f_c00443{bottom:47.333333pt;}
.y35_c00443{bottom:62.666667pt;}
.y3e_c00443{bottom:64.800000pt;}
.y34_c00443{bottom:78.933333pt;}
.y3d_c00443{bottom:82.133333pt;}
.y33_c00443{bottom:95.600000pt;}
.y3c_c00443{bottom:98.133333pt;}
.y32_c00443{bottom:111.333333pt;}
.y3b_c00443{bottom:113.333333pt;}
.y31_c00443{bottom:127.466667pt;}
.y3a_c00443{bottom:130.133333pt;}
.y30_c00443{bottom:144.266667pt;}
.y2f_c00443{bottom:159.866667pt;}
.y39_c00443{bottom:162.533333pt;}
.y2e_c00443{bottom:176.400000pt;}
.y38_c00443{bottom:180.266667pt;}
.y2d_c00443{bottom:192.000000pt;}
.y2c_c00443{bottom:208.533333pt;}
.y37_c00443{bottom:210.000000pt;}
.y2b_c00443{bottom:224.933333pt;}
.y36_c00443{bottom:226.800000pt;}
.y2a_c00443{bottom:242.133333pt;}
.y29_c00443{bottom:258.000000pt;}
.y28_c00443{bottom:273.600000pt;}
.y27_c00443{bottom:290.000000pt;}
.y26_c00443{bottom:306.533333pt;}
.y25_c00443{bottom:322.533333pt;}
.y24_c00443{bottom:338.933333pt;}
.y23_c00443{bottom:354.266667pt;}
.y22_c00443{bottom:371.733333pt;}
.y21_c00443{bottom:386.933333pt;}
.y20_c00443{bottom:402.800000pt;}
.y1f_c00443{bottom:419.333333pt;}
.y1e_c00443{bottom:435.600000pt;}
.y1d_c00443{bottom:452.000000pt;}
.y2_c00443{bottom:464.400000pt;}
.y1c_c00443{bottom:468.000000pt;}
.y1_c00443{bottom:479.733333pt;}
.y1b_c00443{bottom:484.000000pt;}
.y1a_c00443{bottom:500.133333pt;}
.yf_c00443{bottom:515.066667pt;}
.y19_c00443{bottom:516.266667pt;}
.ye_c00443{bottom:530.400000pt;}
.y18_c00443{bottom:532.800000pt;}
.yd_c00443{bottom:547.200000pt;}
.y17_c00443{bottom:548.400000pt;}
.yc_c00443{bottom:563.600000pt;}
.y16_c00443{bottom:565.200000pt;}
.yb_c00443{bottom:579.600000pt;}
.y15_c00443{bottom:581.333333pt;}
.ya_c00443{bottom:595.733333pt;}
.y14_c00443{bottom:597.333333pt;}
.y9_c00443{bottom:612.933333pt;}
.y13_c00443{bottom:613.733333pt;}
.y8_c00443{bottom:629.333333pt;}
.y12_c00443{bottom:629.733333pt;}
.y7_c00443{bottom:645.333333pt;}
.y11_c00443{bottom:646.533333pt;}
.y6_c00443{bottom:660.000000pt;}
.y10_c00443{bottom:662.666667pt;}
.y5_c00443{bottom:677.600000pt;}
.y4_c00443{bottom:693.333333pt;}
.y3_c00443{bottom:711.600000pt;}
.hd_c00443{height:11.733399pt;}
.he_c00443{height:38.937500pt;}
.h6_c00443{height:45.525333pt;}
.h7_c00443{height:46.595523pt;}
.h9_c00443{height:47.509333pt;}
.hc_c00443{height:53.058594pt;}
.h2_c00443{height:55.893333pt;}
.hb_c00443{height:57.397135pt;}
.h8_c00443{height:62.597333pt;}
.h5_c00443{height:63.594667pt;}
.h3_c00443{height:64.277333pt;}
.ha_c00443{height:68.288000pt;}
.h4_c00443{height:78.048000pt;}
.h1_c00443{height:748.666667pt;}
.h0_c00443{height:748.800000pt;}
.w2_c00443{width:93.222667pt;}
.w1_c00443{width:515.333333pt;}
.w0_c00443{width:515.533333pt;}
.x0_c00443{left:0.000000pt;}
.x11_c00443{left:22.133333pt;}
.x10_c00443{left:24.000000pt;}
.x1_c00443{left:26.800000pt;}
.xd_c00443{left:39.333333pt;}
.xf_c00443{left:78.266667pt;}
.x12_c00443{left:79.466667pt;}
.xe_c00443{left:80.800000pt;}
.xb_c00443{left:81.866667pt;}
.x5_c00443{left:83.333333pt;}
.x3_c00443{left:84.800000pt;}
.x4_c00443{left:85.733333pt;}
.x2_c00443{left:160.800000pt;}
.x19_c00443{left:214.934896pt;}
.x14_c00443{left:262.533333pt;}
.x18_c00443{left:263.600000pt;}
.x16_c00443{left:264.800000pt;}
.x15_c00443{left:274.533333pt;}
.x17_c00443{left:275.600000pt;}
.x13_c00443{left:277.466667pt;}
.x9_c00443{left:278.933333pt;}
.x8_c00443{left:279.866667pt;}
.x7_c00443{left:280.800000pt;}
.xa_c00443{left:283.733333pt;}
.x6_c00443{left:298.400000pt;}
.xc_c00443{left:406.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_39ffc9dc02508dfabbe10751.woff2')format("woff");}.ff1_c00444{font-family:ff1_c00444;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00444;src:url('chunks/assets/font_2564b22d63c6d206e219b1b0.woff2')format("woff");}.ff2_c00444{font-family:ff2_c00444;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00444;src:url('chunks/assets/font_d0ac7c58f00817744639879a.woff2')format("woff");}.ff3_c00444{font-family:ff3_c00444;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00444;src:url('chunks/assets/font_461f779106207c716ebc61f0.woff2')format("woff");}.ff4_c00444{font-family:ff4_c00444;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00444;src:url('chunks/assets/font_946550dc4cc4e6c6937b2a0d.woff2')format("woff");}.ff5_c00444{font-family:ff5_c00444;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00444;src:url('chunks/assets/font_37d6b5a42d57aa5a511d14d5.woff2')format("woff");}.ff6_c00444{font-family:ff6_c00444;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00444;src:url('chunks/assets/font_bac52f69c28ea0865057987b.woff2')format("woff");}.ff7_c00444{font-family:ff7_c00444;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00444;src:url('chunks/assets/font_64b48f47019d1f90f0c37f03.woff2')format("woff");}.ff8_c00444{font-family:ff8_c00444;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:ff9_c00444;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff9_c00444{font-family:ff9_c00444;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00444{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00444{vertical-align:0.000000px;}
.ls6_c00444{letter-spacing:-6.000000px;}
.ls5_c00444{letter-spacing:0.000000px;}
.ls1_c00444{letter-spacing:1.920000px;}
.ls7_c00444{letter-spacing:3.000000px;}
.ls4_c00444{letter-spacing:13.377000px;}
.ls2_c00444{letter-spacing:20.577000px;}
.ls3_c00444{letter-spacing:22.377000px;}
.ls0_c00444{letter-spacing:30.387000px;}
.sc__c00444{text-shadow:none;}
.sc0_c00444{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00444{-webkit-text-stroke:0px transparent;}
.sc0_c00444{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00444{word-spacing:-22.074000px;}
.ws7_c00444{word-spacing:-15.057000px;}
.ws6_c00444{word-spacing:-14.427000px;}
.ws4_c00444{word-spacing:-14.340000px;}
.ws1_c00444{word-spacing:-14.160000px;}
.ws3_c00444{word-spacing:-13.452000px;}
.ws8_c00444{word-spacing:-1.395000px;}
.ws2_c00444{word-spacing:-1.080000px;}
.ws9_c00444{word-spacing:0.000000px;}
.ws0_c00444{word-spacing:14.592000px;}
._24_c00444{margin-left:-15.129000px;}
._25_c00444{margin-left:-13.875000px;}
._22_c00444{margin-left:-12.072000px;}
._18_c00444{margin-left:-8.907000px;}
._28_c00444{margin-left:-7.617000px;}
._b_c00444{margin-left:-6.615000px;}
._15_c00444{margin-left:-5.481000px;}
._a_c00444{margin-left:-3.843000px;}
._11_c00444{margin-left:-2.283000px;}
._12_c00444{margin-left:-1.197000px;}
._d_c00444{width:1.638000px;}
._17_c00444{width:2.868000px;}
._e_c00444{width:3.954000px;}
._20_c00444{width:4.989000px;}
._9_c00444{width:6.000000px;}
._21_c00444{width:7.242000px;}
._7_c00444{width:8.253000px;}
._1d_c00444{width:9.306000px;}
._5_c00444{width:10.395000px;}
._13_c00444{width:12.063000px;}
._1_c00444{width:13.797000px;}
._c_c00444{width:15.624000px;}
._0_c00444{width:17.766000px;}
._19_c00444{width:19.848000px;}
._3_c00444{width:21.420000px;}
._4_c00444{width:23.310000px;}
._1f_c00444{width:25.101000px;}
._1c_c00444{width:26.967000px;}
._6_c00444{width:28.476000px;}
._1e_c00444{width:29.544000px;}
._f_c00444{width:32.376000px;}
._27_c00444{width:36.945000px;}
._1a_c00444{width:44.616000px;}
._2_c00444{width:45.738000px;}
._14_c00444{width:77.022000px;}
._10_c00444{width:79.443000px;}
._1b_c00444{width:108.981000px;}
._23_c00444{width:110.598000px;}
._16_c00444{width:127.386000px;}
._29_c00444{width:145.398000px;}
._2a_c00444{width:155.790000px;}
._26_c00444{width:174.807000px;}
._8_c00444{width:407.466000px;}
.fc2_c00444{color:transparent;}
.fc1_c00444{color:rgb(128,128,128);}
.fc0_c00444{color:rgb(0,0,0);}
.fs3_c00444{font-size:33.000000px;}
.fs1_c00444{font-size:48.000000px;}
.fs4_c00444{font-size:57.000000px;}
.fs2_c00444{font-size:60.000000px;}
.fs0_c00444{font-size:63.000000px;}
.fs5_c00444{font-size:66.000000px;}
.fs7_c00444{font-size:93.000000px;}
.fs6_c00444{font-size:138.000000px;}
.y0_c00444{bottom:0.000000px;}
.y54_c00444{bottom:3.105000px;}
.y53_c00444{bottom:7.228357px;}
.y52_c00444{bottom:27.330000px;}
.y2a_c00444{bottom:44.580000px;}
.y51_c00444{bottom:50.580000px;}
.y29_c00444{bottom:63.780000px;}
.y50_c00444{bottom:67.230000px;}
.y28_c00444{bottom:81.780000px;}
.y4f_c00444{bottom:86.430000px;}
.y27_c00444{bottom:100.230000px;}
.y4e_c00444{bottom:104.580000px;}
.y26_c00444{bottom:118.230000px;}
.y4d_c00444{bottom:121.830000px;}
.y25_c00444{bottom:136.080000px;}
.y4c_c00444{bottom:139.830000px;}
.y24_c00444{bottom:154.530000px;}
.y4b_c00444{bottom:158.280000px;}
.y23_c00444{bottom:172.530000px;}
.y4a_c00444{bottom:176.130000px;}
.y22_c00444{bottom:190.980000px;}
.y49_c00444{bottom:194.130000px;}
.y21_c00444{bottom:209.280000px;}
.y48_c00444{bottom:212.730000px;}
.y20_c00444{bottom:227.130000px;}
.y47_c00444{bottom:230.580000px;}
.y1f_c00444{bottom:244.980000px;}
.y46_c00444{bottom:248.130000px;}
.y1e_c00444{bottom:263.580000px;}
.y45_c00444{bottom:266.280000px;}
.y1d_c00444{bottom:281.430000px;}
.y44_c00444{bottom:284.280000px;}
.y1c_c00444{bottom:298.680000px;}
.y43_c00444{bottom:302.130000px;}
.y1b_c00444{bottom:316.680000px;}
.y42_c00444{bottom:321.330000px;}
.y1a_c00444{bottom:334.530000px;}
.y41_c00444{bottom:338.280000px;}
.y19_c00444{bottom:352.680000px;}
.y40_c00444{bottom:356.130000px;}
.y18_c00444{bottom:371.280000px;}
.y3f_c00444{bottom:374.580000px;}
.y17_c00444{bottom:388.830000px;}
.y3e_c00444{bottom:392.580000px;}
.y16_c00444{bottom:406.680000px;}
.y3d_c00444{bottom:410.430000px;}
.y15_c00444{bottom:424.680000px;}
.y3c_c00444{bottom:429.630000px;}
.y2b_c00444{bottom:429.930000px;}
.y14_c00444{bottom:442.230000px;}
.y3b_c00444{bottom:447.180000px;}
.y13_c00444{bottom:460.680000px;}
.y3a_c00444{bottom:464.130000px;}
.y12_c00444{bottom:477.930000px;}
.y39_c00444{bottom:482.280000px;}
.y11_c00444{bottom:496.080000px;}
.y38_c00444{bottom:500.880000px;}
.y10_c00444{bottom:513.330000px;}
.y37_c00444{bottom:516.780000px;}
.yf_c00444{bottom:529.830000px;}
.y36_c00444{bottom:535.680000px;}
.ye_c00444{bottom:548.130000px;}
.y35_c00444{bottom:553.530000px;}
.yd_c00444{bottom:565.980000px;}
.yc_c00444{bottom:583.830000px;}
.y34_c00444{bottom:587.880000px;}
.yb_c00444{bottom:602.430000px;}
.ya_c00444{bottom:619.380000px;}
.y33_c00444{bottom:623.730000px;}
.y9_c00444{bottom:638.280000px;}
.y32_c00444{bottom:642.330000px;}
.y8_c00444{bottom:655.830000px;}
.y31_c00444{bottom:660.780000px;}
.y7_c00444{bottom:675.330000px;}
.y30_c00444{bottom:678.480000px;}
.y6_c00444{bottom:691.980000px;}
.y2f_c00444{bottom:696.630000px;}
.y5_c00444{bottom:709.830000px;}
.y2e_c00444{bottom:714.930000px;}
.y4_c00444{bottom:727.080000px;}
.y2d_c00444{bottom:732.480000px;}
.y3_c00444{bottom:745.830000px;}
.y2c_c00444{bottom:750.630000px;}
.y2_c00444{bottom:766.530000px;}
.y1_c00444{bottom:785.730000px;}
.ha_c00444{height:13.200074px;}
.h4_c00444{height:35.211000px;}
.hb_c00444{height:43.804688px;}
.h5_c00444{height:59.736000px;}
.h3_c00444{height:62.880000px;}
.h8_c00444{height:64.020000px;}
.h2_c00444{height:66.024000px;}
.h6_c00444{height:70.422000px;}
.h9_c00444{height:96.996094px;}
.h7_c00444{height:147.246000px;}
.h0_c00444{height:835.950000px;}
.h1_c00444{height:836.250000px;}
.w2_c00444{width:104.875500px;}
.w1_c00444{width:570.000000px;}
.w0_c00444{width:570.225000px;}
.x0_c00444{left:0.000000px;}
.x3_c00444{left:17.250000px;}
.x4_c00444{left:18.300000px;}
.x6_c00444{left:19.950000px;}
.xa_c00444{left:28.650000px;}
.xb_c00444{left:77.550000px;}
.x9_c00444{left:78.600000px;}
.x5_c00444{left:79.950000px;}
.x2_c00444{left:81.300000px;}
.x8_c00444{left:82.650000px;}
.x7_c00444{left:83.700000px;}
.x1_c00444{left:217.050000px;}
.x18_c00444{left:236.926758px;}
.x16_c00444{left:293.850000px;}
.x15_c00444{left:295.200000px;}
.x14_c00444{left:297.000000px;}
.x10_c00444{left:298.050000px;}
.xc_c00444{left:300.000000px;}
.xd_c00444{left:301.050000px;}
.x11_c00444{left:307.350000px;}
.x13_c00444{left:325.650000px;}
.xf_c00444{left:330.150000px;}
.x12_c00444{left:350.250000px;}
.xe_c00444{left:372.900000px;}
.x17_c00444{left:395.550000px;}
@media print{
.v0_c00444{vertical-align:0.000000pt;}
.ls6_c00444{letter-spacing:-5.333333pt;}
.ls5_c00444{letter-spacing:0.000000pt;}
.ls1_c00444{letter-spacing:1.706667pt;}
.ls7_c00444{letter-spacing:2.666667pt;}
.ls4_c00444{letter-spacing:11.890667pt;}
.ls2_c00444{letter-spacing:18.290667pt;}
.ls3_c00444{letter-spacing:19.890667pt;}
.ls0_c00444{letter-spacing:27.010667pt;}
.ws5_c00444{word-spacing:-19.621333pt;}
.ws7_c00444{word-spacing:-13.384000pt;}
.ws6_c00444{word-spacing:-12.824000pt;}
.ws4_c00444{word-spacing:-12.746667pt;}
.ws1_c00444{word-spacing:-12.586667pt;}
.ws3_c00444{word-spacing:-11.957333pt;}
.ws8_c00444{word-spacing:-1.240000pt;}
.ws2_c00444{word-spacing:-0.960000pt;}
.ws9_c00444{word-spacing:0.000000pt;}
.ws0_c00444{word-spacing:12.970667pt;}
._24_c00444{margin-left:-13.448000pt;}
._25_c00444{margin-left:-12.333333pt;}
._22_c00444{margin-left:-10.730667pt;}
._18_c00444{margin-left:-7.917333pt;}
._28_c00444{margin-left:-6.770667pt;}
._b_c00444{margin-left:-5.880000pt;}
._15_c00444{margin-left:-4.872000pt;}
._a_c00444{margin-left:-3.416000pt;}
._11_c00444{margin-left:-2.029333pt;}
._12_c00444{margin-left:-1.064000pt;}
._d_c00444{width:1.456000pt;}
._17_c00444{width:2.549333pt;}
._e_c00444{width:3.514667pt;}
._20_c00444{width:4.434667pt;}
._9_c00444{width:5.333333pt;}
._21_c00444{width:6.437333pt;}
._7_c00444{width:7.336000pt;}
._1d_c00444{width:8.272000pt;}
._5_c00444{width:9.240000pt;}
._13_c00444{width:10.722667pt;}
._1_c00444{width:12.264000pt;}
._c_c00444{width:13.888000pt;}
._0_c00444{width:15.792000pt;}
._19_c00444{width:17.642667pt;}
._3_c00444{width:19.040000pt;}
._4_c00444{width:20.720000pt;}
._1f_c00444{width:22.312000pt;}
._1c_c00444{width:23.970667pt;}
._6_c00444{width:25.312000pt;}
._1e_c00444{width:26.261333pt;}
._f_c00444{width:28.778667pt;}
._27_c00444{width:32.840000pt;}
._1a_c00444{width:39.658667pt;}
._2_c00444{width:40.656000pt;}
._14_c00444{width:68.464000pt;}
._10_c00444{width:70.616000pt;}
._1b_c00444{width:96.872000pt;}
._23_c00444{width:98.309333pt;}
._16_c00444{width:113.232000pt;}
._29_c00444{width:129.242667pt;}
._2a_c00444{width:138.480000pt;}
._26_c00444{width:155.384000pt;}
._8_c00444{width:362.192000pt;}
.fs3_c00444{font-size:29.333333pt;}
.fs1_c00444{font-size:42.666667pt;}
.fs4_c00444{font-size:50.666667pt;}
.fs2_c00444{font-size:53.333333pt;}
.fs0_c00444{font-size:56.000000pt;}
.fs5_c00444{font-size:58.666667pt;}
.fs7_c00444{font-size:82.666667pt;}
.fs6_c00444{font-size:122.666667pt;}
.y0_c00444{bottom:0.000000pt;}
.y54_c00444{bottom:2.760000pt;}
.y53_c00444{bottom:6.425206pt;}
.y52_c00444{bottom:24.293333pt;}
.y2a_c00444{bottom:39.626667pt;}
.y51_c00444{bottom:44.960000pt;}
.y29_c00444{bottom:56.693333pt;}
.y50_c00444{bottom:59.760000pt;}
.y28_c00444{bottom:72.693333pt;}
.y4f_c00444{bottom:76.826667pt;}
.y27_c00444{bottom:89.093333pt;}
.y4e_c00444{bottom:92.960000pt;}
.y26_c00444{bottom:105.093333pt;}
.y4d_c00444{bottom:108.293333pt;}
.y25_c00444{bottom:120.960000pt;}
.y4c_c00444{bottom:124.293333pt;}
.y24_c00444{bottom:137.360000pt;}
.y4b_c00444{bottom:140.693333pt;}
.y23_c00444{bottom:153.360000pt;}
.y4a_c00444{bottom:156.560000pt;}
.y22_c00444{bottom:169.760000pt;}
.y49_c00444{bottom:172.560000pt;}
.y21_c00444{bottom:186.026667pt;}
.y48_c00444{bottom:189.093333pt;}
.y20_c00444{bottom:201.893333pt;}
.y47_c00444{bottom:204.960000pt;}
.y1f_c00444{bottom:217.760000pt;}
.y46_c00444{bottom:220.560000pt;}
.y1e_c00444{bottom:234.293333pt;}
.y45_c00444{bottom:236.693333pt;}
.y1d_c00444{bottom:250.160000pt;}
.y44_c00444{bottom:252.693333pt;}
.y1c_c00444{bottom:265.493333pt;}
.y43_c00444{bottom:268.560000pt;}
.y1b_c00444{bottom:281.493333pt;}
.y42_c00444{bottom:285.626667pt;}
.y1a_c00444{bottom:297.360000pt;}
.y41_c00444{bottom:300.693333pt;}
.y19_c00444{bottom:313.493333pt;}
.y40_c00444{bottom:316.560000pt;}
.y18_c00444{bottom:330.026667pt;}
.y3f_c00444{bottom:332.960000pt;}
.y17_c00444{bottom:345.626667pt;}
.y3e_c00444{bottom:348.960000pt;}
.y16_c00444{bottom:361.493333pt;}
.y3d_c00444{bottom:364.826667pt;}
.y15_c00444{bottom:377.493333pt;}
.y3c_c00444{bottom:381.893333pt;}
.y2b_c00444{bottom:382.160000pt;}
.y14_c00444{bottom:393.093333pt;}
.y3b_c00444{bottom:397.493333pt;}
.y13_c00444{bottom:409.493333pt;}
.y3a_c00444{bottom:412.560000pt;}
.y12_c00444{bottom:424.826667pt;}
.y39_c00444{bottom:428.693333pt;}
.y11_c00444{bottom:440.960000pt;}
.y38_c00444{bottom:445.226667pt;}
.y10_c00444{bottom:456.293333pt;}
.y37_c00444{bottom:459.360000pt;}
.yf_c00444{bottom:470.960000pt;}
.y36_c00444{bottom:476.160000pt;}
.ye_c00444{bottom:487.226667pt;}
.y35_c00444{bottom:492.026667pt;}
.yd_c00444{bottom:503.093333pt;}
.yc_c00444{bottom:518.960000pt;}
.y34_c00444{bottom:522.560000pt;}
.yb_c00444{bottom:535.493333pt;}
.ya_c00444{bottom:550.560000pt;}
.y33_c00444{bottom:554.426667pt;}
.y9_c00444{bottom:567.360000pt;}
.y32_c00444{bottom:570.960000pt;}
.y8_c00444{bottom:582.960000pt;}
.y31_c00444{bottom:587.360000pt;}
.y7_c00444{bottom:600.293333pt;}
.y30_c00444{bottom:603.093333pt;}
.y6_c00444{bottom:615.093333pt;}
.y2f_c00444{bottom:619.226667pt;}
.y5_c00444{bottom:630.960000pt;}
.y2e_c00444{bottom:635.493333pt;}
.y4_c00444{bottom:646.293333pt;}
.y2d_c00444{bottom:651.093333pt;}
.y3_c00444{bottom:662.960000pt;}
.y2c_c00444{bottom:667.226667pt;}
.y2_c00444{bottom:681.360000pt;}
.y1_c00444{bottom:698.426667pt;}
.ha_c00444{height:11.733399pt;}
.h4_c00444{height:31.298667pt;}
.hb_c00444{height:38.937500pt;}
.h5_c00444{height:53.098667pt;}
.h3_c00444{height:55.893333pt;}
.h8_c00444{height:56.906667pt;}
.h2_c00444{height:58.688000pt;}
.h6_c00444{height:62.597333pt;}
.h9_c00444{height:86.218750pt;}
.h7_c00444{height:130.885333pt;}
.h0_c00444{height:743.066667pt;}
.h1_c00444{height:743.333333pt;}
.w2_c00444{width:93.222667pt;}
.w1_c00444{width:506.666667pt;}
.w0_c00444{width:506.866667pt;}
.x0_c00444{left:0.000000pt;}
.x3_c00444{left:15.333333pt;}
.x4_c00444{left:16.266667pt;}
.x6_c00444{left:17.733333pt;}
.xa_c00444{left:25.466667pt;}
.xb_c00444{left:68.933333pt;}
.x9_c00444{left:69.866667pt;}
.x5_c00444{left:71.066667pt;}
.x2_c00444{left:72.266667pt;}
.x8_c00444{left:73.466667pt;}
.x7_c00444{left:74.400000pt;}
.x1_c00444{left:192.933333pt;}
.x18_c00444{left:210.601563pt;}
.x16_c00444{left:261.200000pt;}
.x15_c00444{left:262.400000pt;}
.x14_c00444{left:264.000000pt;}
.x10_c00444{left:264.933333pt;}
.xc_c00444{left:266.666667pt;}
.xd_c00444{left:267.600000pt;}
.x11_c00444{left:273.200000pt;}
.x13_c00444{left:289.466667pt;}
.xf_c00444{left:293.466667pt;}
.x12_c00444{left:311.333333pt;}
.xe_c00444{left:331.466667pt;}
.x17_c00444{left:351.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_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_855e3178341309e4ee6f0b40.woff2')format("woff");}.ff1_c00445{font-family:ff1_c00445;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00445;src:url('chunks/assets/font_7f9b41cc8058dd7b99e72a6a.woff2')format("woff");}.ff2_c00445{font-family:ff2_c00445;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00445;src:url('chunks/assets/font_d9d2ae34f72cf19753e344bc.woff2')format("woff");}.ff3_c00445{font-family:ff3_c00445;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00445;src:url('chunks/assets/font_099f943af59f185e825521c5.woff2')format("woff");}.ff4_c00445{font-family:ff4_c00445;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00445;src:url('chunks/assets/font_31b9176b743f8dec251426c9.woff2')format("woff");}.ff5_c00445{font-family:ff5_c00445;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00445;src:url('chunks/assets/font_d2eca3de46de78128c284d5e.woff2')format("woff");}.ff6_c00445{font-family:ff6_c00445;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00445;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff7_c00445{font-family:ff7_c00445;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00445;src:url('chunks/assets/font_c9645068d822a25b5f08d446.woff2')format("woff");}.ff8_c00445{font-family:ff8_c00445;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00445;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff9_c00445{font-family:ff9_c00445;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00445{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00445{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.v0_c00445{vertical-align:0.000000px;}
.lsb_c00445{letter-spacing:-12.000000px;}
.lsa_c00445{letter-spacing:-3.000000px;}
.ls8_c00445{letter-spacing:0.000000px;}
.ls4_c00445{letter-spacing:0.840000px;}
.ls9_c00445{letter-spacing:3.000000px;}
.ls2_c00445{letter-spacing:5.040000px;}
.ls5_c00445{letter-spacing:11.187000px;}
.ls0_c00445{letter-spacing:15.534000px;}
.ls1_c00445{letter-spacing:18.300000px;}
.ls7_c00445{letter-spacing:20.046000px;}
.ls6_c00445{letter-spacing:22.446000px;}
.ls3_c00445{letter-spacing:49.893000px;}
.sc__c00445{text-shadow:none;}
.sc0_c00445{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00445{-webkit-text-stroke:0px transparent;}
.sc0_c00445{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00445{word-spacing:-14.340000px;}
.ws5_c00445{word-spacing:-14.160000px;}
.ws0_c00445{word-spacing:-13.452000px;}
.ws4_c00445{word-spacing:-12.291000px;}
.ws3_c00445{word-spacing:-8.793000px;}
.ws1_c00445{word-spacing:-2.577000px;}
.ws6_c00445{word-spacing:0.000000px;}
._28_c00445{margin-left:-27.330000px;}
._2c_c00445{margin-left:-21.207000px;}
._1e_c00445{margin-left:-18.126000px;}
._18_c00445{margin-left:-15.894000px;}
._1a_c00445{margin-left:-14.748000px;}
._24_c00445{margin-left:-10.773000px;}
._e_c00445{margin-left:-9.009000px;}
._c_c00445{margin-left:-7.875000px;}
._f_c00445{margin-left:-6.237000px;}
._d_c00445{margin-left:-5.229000px;}
._b_c00445{margin-left:-4.032000px;}
._a_c00445{margin-left:-2.898000px;}
._16_c00445{margin-left:-1.167000px;}
._15_c00445{width:1.197000px;}
._14_c00445{width:2.331000px;}
._11_c00445{width:4.284000px;}
._13_c00445{width:5.292000px;}
._1_c00445{width:6.741000px;}
._3_c00445{width:7.749000px;}
._0_c00445{width:9.765000px;}
._7_c00445{width:11.340000px;}
._4_c00445{width:12.978000px;}
._17_c00445{width:15.069000px;}
._6_c00445{width:16.884000px;}
._9_c00445{width:18.081000px;}
._2b_c00445{width:19.239000px;}
._8_c00445{width:20.601000px;}
._29_c00445{width:22.260000px;}
._10_c00445{width:23.373000px;}
._19_c00445{width:24.801000px;}
._20_c00445{width:26.472000px;}
._1b_c00445{width:28.356000px;}
._23_c00445{width:30.429000px;}
._5_c00445{width:31.626000px;}
._22_c00445{width:32.814000px;}
._25_c00445{width:34.425000px;}
._1d_c00445{width:36.360000px;}
._2a_c00445{width:39.330000px;}
._26_c00445{width:40.761000px;}
._21_c00445{width:43.665000px;}
._27_c00445{width:46.719000px;}
._12_c00445{width:61.800000px;}
._1f_c00445{width:93.117000px;}
._2_c00445{width:245.511000px;}
._1c_c00445{width:361.806000px;}
.fc2_c00445{color:transparent;}
.fc1_c00445{color:rgb(128,128,128);}
.fc0_c00445{color:rgb(0,0,0);}
.fs2_c00445{font-size:39.000000px;}
.fs8_c00445{font-size:48.000000px;}
.fs5_c00445{font-size:51.000000px;}
.fs6_c00445{font-size:54.000000px;}
.fs1_c00445{font-size:57.000000px;}
.fs3_c00445{font-size:60.000000px;}
.fs0_c00445{font-size:63.000000px;}
.fs4_c00445{font-size:69.000000px;}
.fs7_c00445{font-size:87.000000px;}
.y0_c00445{bottom:0.000000px;}
.y51_c00445{bottom:3.105000px;}
.y50_c00445{bottom:7.228363px;}
.y4f_c00445{bottom:30.450000px;}
.y2a_c00445{bottom:47.250000px;}
.y4e_c00445{bottom:49.350000px;}
.y29_c00445{bottom:66.150000px;}
.y4d_c00445{bottom:67.950000px;}
.y28_c00445{bottom:85.050000px;}
.y4c_c00445{bottom:86.850000px;}
.y27_c00445{bottom:103.350000px;}
.y4b_c00445{bottom:104.700000px;}
.y26_c00445{bottom:121.800000px;}
.y4a_c00445{bottom:122.850000px;}
.y25_c00445{bottom:139.800000px;}
.y49_c00445{bottom:141.450000px;}
.y24_c00445{bottom:158.400000px;}
.y48_c00445{bottom:159.750000px;}
.y23_c00445{bottom:176.850000px;}
.y47_c00445{bottom:177.900000px;}
.y22_c00445{bottom:194.700000px;}
.y46_c00445{bottom:196.200000px;}
.y21_c00445{bottom:212.700000px;}
.y45_c00445{bottom:215.100000px;}
.y20_c00445{bottom:231.300000px;}
.y44_c00445{bottom:232.650000px;}
.y1f_c00445{bottom:249.750000px;}
.y43_c00445{bottom:250.800000px;}
.y1e_c00445{bottom:268.350000px;}
.y42_c00445{bottom:269.100000px;}
.y1d_c00445{bottom:285.300000px;}
.y41_c00445{bottom:286.500000px;}
.y1c_c00445{bottom:303.750000px;}
.y40_c00445{bottom:304.050000px;}
.y1b_c00445{bottom:322.050000px;}
.y3f_c00445{bottom:322.350000px;}
.y1a_c00445{bottom:340.200000px;}
.y3e_c00445{bottom:340.650000px;}
.y19_c00445{bottom:357.450000px;}
.y3d_c00445{bottom:358.650000px;}
.y18_c00445{bottom:376.950000px;}
.y17_c00445{bottom:394.650000px;}
.y3c_c00445{bottom:395.250000px;}
.y3b_c00445{bottom:413.400000px;}
.y16_c00445{bottom:413.550000px;}
.y15_c00445{bottom:431.100000px;}
.y3a_c00445{bottom:431.400000px;}
.y14_c00445{bottom:449.850000px;}
.y39_c00445{bottom:450.900000px;}
.y13_c00445{bottom:467.550000px;}
.y38_c00445{bottom:468.150000px;}
.y12_c00445{bottom:486.000000px;}
.y11_c00445{bottom:504.000000px;}
.y37_c00445{bottom:504.600000px;}
.y10_c00445{bottom:521.550000px;}
.y36_c00445{bottom:522.450000px;}
.yf_c00445{bottom:540.000000px;}
.y35_c00445{bottom:540.450000px;}
.ye_c00445{bottom:558.000000px;}
.y34_c00445{bottom:575.550000px;}
.yd_c00445{bottom:576.150000px;}
.y33_c00445{bottom:594.300000px;}
.yc_c00445{bottom:594.750000px;}
.y32_c00445{bottom:612.300000px;}
.yb_c00445{bottom:612.600000px;}
.ya_c00445{bottom:630.450000px;}
.y9_c00445{bottom:648.300000px;}
.y31_c00445{bottom:648.750000px;}
.y8_c00445{bottom:666.600000px;}
.y30_c00445{bottom:667.200000px;}
.y7_c00445{bottom:684.450000px;}
.y2f_c00445{bottom:685.500000px;}
.y6_c00445{bottom:703.050000px;}
.y2e_c00445{bottom:703.350000px;}
.y5_c00445{bottom:721.200000px;}
.y2d_c00445{bottom:721.650000px;}
.y4_c00445{bottom:738.900000px;}
.y2c_c00445{bottom:739.200000px;}
.y3_c00445{bottom:757.350000px;}
.y2b_c00445{bottom:757.800000px;}
.y2_c00445{bottom:775.800000px;}
.y1_c00445{bottom:796.050000px;}
.ha_c00445{height:13.200074px;}
.hb_c00445{height:43.804688px;}
.h7_c00445{height:57.618000px;}
.h8_c00445{height:59.690918px;}
.h3_c00445{height:59.736000px;}
.h4_c00445{height:62.880000px;}
.h9_c00445{height:64.571777px;}
.h2_c00445{height:66.024000px;}
.h5_c00445{height:72.312000px;}
.h6_c00445{height:91.176000px;}
.h1_c00445{height:842.250000px;}
.h0_c00445{height:842.400000px;}
.w2_c00445{width:104.875500px;}
.w1_c00445{width:579.750000px;}
.w0_c00445{width:579.975000px;}
.x0_c00445{left:0.000000px;}
.x7_c00445{left:33.750000px;}
.x8_c00445{left:36.150000px;}
.x9_c00445{left:73.200000px;}
.x1_c00445{left:93.150000px;}
.x4_c00445{left:95.550000px;}
.x3_c00445{left:96.750000px;}
.x5_c00445{left:98.100000px;}
.x6_c00445{left:99.600000px;}
.xa_c00445{left:101.250000px;}
.xb_c00445{left:102.600000px;}
.xc_c00445{left:103.950000px;}
.xd_c00445{left:105.600000px;}
.xe_c00445{left:133.650000px;}
.x2_c00445{left:136.350000px;}
.x1c_c00445{left:241.801758px;}
.xf_c00445{left:317.250000px;}
.x10_c00445{left:318.600000px;}
.x11_c00445{left:319.650000px;}
.x13_c00445{left:320.850000px;}
.x14_c00445{left:321.900000px;}
.x15_c00445{left:323.250000px;}
.x19_c00445{left:324.300000px;}
.x1a_c00445{left:325.350000px;}
.x12_c00445{left:341.250000px;}
.x18_c00445{left:349.350000px;}
.x1b_c00445{left:488.250000px;}
.x16_c00445{left:535.950000px;}
.x17_c00445{left:545.700000px;}
@media print{
.v0_c00445{vertical-align:0.000000pt;}
.lsb_c00445{letter-spacing:-10.666667pt;}
.lsa_c00445{letter-spacing:-2.666667pt;}
.ls8_c00445{letter-spacing:0.000000pt;}
.ls4_c00445{letter-spacing:0.746667pt;}
.ls9_c00445{letter-spacing:2.666667pt;}
.ls2_c00445{letter-spacing:4.480000pt;}
.ls5_c00445{letter-spacing:9.944000pt;}
.ls0_c00445{letter-spacing:13.808000pt;}
.ls1_c00445{letter-spacing:16.266667pt;}
.ls7_c00445{letter-spacing:17.818667pt;}
.ls6_c00445{letter-spacing:19.952000pt;}
.ls3_c00445{letter-spacing:44.349333pt;}
.ws2_c00445{word-spacing:-12.746667pt;}
.ws5_c00445{word-spacing:-12.586667pt;}
.ws0_c00445{word-spacing:-11.957333pt;}
.ws4_c00445{word-spacing:-10.925333pt;}
.ws3_c00445{word-spacing:-7.816000pt;}
.ws1_c00445{word-spacing:-2.290667pt;}
.ws6_c00445{word-spacing:0.000000pt;}
._28_c00445{margin-left:-24.293333pt;}
._2c_c00445{margin-left:-18.850667pt;}
._1e_c00445{margin-left:-16.112000pt;}
._18_c00445{margin-left:-14.128000pt;}
._1a_c00445{margin-left:-13.109333pt;}
._24_c00445{margin-left:-9.576000pt;}
._e_c00445{margin-left:-8.008000pt;}
._c_c00445{margin-left:-7.000000pt;}
._f_c00445{margin-left:-5.544000pt;}
._d_c00445{margin-left:-4.648000pt;}
._b_c00445{margin-left:-3.584000pt;}
._a_c00445{margin-left:-2.576000pt;}
._16_c00445{margin-left:-1.037333pt;}
._15_c00445{width:1.064000pt;}
._14_c00445{width:2.072000pt;}
._11_c00445{width:3.808000pt;}
._13_c00445{width:4.704000pt;}
._1_c00445{width:5.992000pt;}
._3_c00445{width:6.888000pt;}
._0_c00445{width:8.680000pt;}
._7_c00445{width:10.080000pt;}
._4_c00445{width:11.536000pt;}
._17_c00445{width:13.394667pt;}
._6_c00445{width:15.008000pt;}
._9_c00445{width:16.072000pt;}
._2b_c00445{width:17.101333pt;}
._8_c00445{width:18.312000pt;}
._29_c00445{width:19.786667pt;}
._10_c00445{width:20.776000pt;}
._19_c00445{width:22.045333pt;}
._20_c00445{width:23.530667pt;}
._1b_c00445{width:25.205333pt;}
._23_c00445{width:27.048000pt;}
._5_c00445{width:28.112000pt;}
._22_c00445{width:29.168000pt;}
._25_c00445{width:30.600000pt;}
._1d_c00445{width:32.320000pt;}
._2a_c00445{width:34.960000pt;}
._26_c00445{width:36.232000pt;}
._21_c00445{width:38.813333pt;}
._27_c00445{width:41.528000pt;}
._12_c00445{width:54.933333pt;}
._1f_c00445{width:82.770667pt;}
._2_c00445{width:218.232000pt;}
._1c_c00445{width:321.605333pt;}
.fs2_c00445{font-size:34.666667pt;}
.fs8_c00445{font-size:42.666667pt;}
.fs5_c00445{font-size:45.333333pt;}
.fs6_c00445{font-size:48.000000pt;}
.fs1_c00445{font-size:50.666667pt;}
.fs3_c00445{font-size:53.333333pt;}
.fs0_c00445{font-size:56.000000pt;}
.fs4_c00445{font-size:61.333333pt;}
.fs7_c00445{font-size:77.333333pt;}
.y0_c00445{bottom:0.000000pt;}
.y51_c00445{bottom:2.760000pt;}
.y50_c00445{bottom:6.425212pt;}
.y4f_c00445{bottom:27.066667pt;}
.y2a_c00445{bottom:42.000000pt;}
.y4e_c00445{bottom:43.866667pt;}
.y29_c00445{bottom:58.800000pt;}
.y4d_c00445{bottom:60.400000pt;}
.y28_c00445{bottom:75.600000pt;}
.y4c_c00445{bottom:77.200000pt;}
.y27_c00445{bottom:91.866667pt;}
.y4b_c00445{bottom:93.066667pt;}
.y26_c00445{bottom:108.266667pt;}
.y4a_c00445{bottom:109.200000pt;}
.y25_c00445{bottom:124.266667pt;}
.y49_c00445{bottom:125.733333pt;}
.y24_c00445{bottom:140.800000pt;}
.y48_c00445{bottom:142.000000pt;}
.y23_c00445{bottom:157.200000pt;}
.y47_c00445{bottom:158.133333pt;}
.y22_c00445{bottom:173.066667pt;}
.y46_c00445{bottom:174.400000pt;}
.y21_c00445{bottom:189.066667pt;}
.y45_c00445{bottom:191.200000pt;}
.y20_c00445{bottom:205.600000pt;}
.y44_c00445{bottom:206.800000pt;}
.y1f_c00445{bottom:222.000000pt;}
.y43_c00445{bottom:222.933333pt;}
.y1e_c00445{bottom:238.533333pt;}
.y42_c00445{bottom:239.200000pt;}
.y1d_c00445{bottom:253.600000pt;}
.y41_c00445{bottom:254.666667pt;}
.y1c_c00445{bottom:270.000000pt;}
.y40_c00445{bottom:270.266667pt;}
.y1b_c00445{bottom:286.266667pt;}
.y3f_c00445{bottom:286.533333pt;}
.y1a_c00445{bottom:302.400000pt;}
.y3e_c00445{bottom:302.800000pt;}
.y19_c00445{bottom:317.733333pt;}
.y3d_c00445{bottom:318.800000pt;}
.y18_c00445{bottom:335.066667pt;}
.y17_c00445{bottom:350.800000pt;}
.y3c_c00445{bottom:351.333333pt;}
.y3b_c00445{bottom:367.466667pt;}
.y16_c00445{bottom:367.600000pt;}
.y15_c00445{bottom:383.200000pt;}
.y3a_c00445{bottom:383.466667pt;}
.y14_c00445{bottom:399.866667pt;}
.y39_c00445{bottom:400.800000pt;}
.y13_c00445{bottom:415.600000pt;}
.y38_c00445{bottom:416.133333pt;}
.y12_c00445{bottom:432.000000pt;}
.y11_c00445{bottom:448.000000pt;}
.y37_c00445{bottom:448.533333pt;}
.y10_c00445{bottom:463.600000pt;}
.y36_c00445{bottom:464.400000pt;}
.yf_c00445{bottom:480.000000pt;}
.y35_c00445{bottom:480.400000pt;}
.ye_c00445{bottom:496.000000pt;}
.y34_c00445{bottom:511.600000pt;}
.yd_c00445{bottom:512.133333pt;}
.y33_c00445{bottom:528.266667pt;}
.yc_c00445{bottom:528.666667pt;}
.y32_c00445{bottom:544.266667pt;}
.yb_c00445{bottom:544.533333pt;}
.ya_c00445{bottom:560.400000pt;}
.y9_c00445{bottom:576.266667pt;}
.y31_c00445{bottom:576.666667pt;}
.y8_c00445{bottom:592.533333pt;}
.y30_c00445{bottom:593.066667pt;}
.y7_c00445{bottom:608.400000pt;}
.y2f_c00445{bottom:609.333333pt;}
.y6_c00445{bottom:624.933333pt;}
.y2e_c00445{bottom:625.200000pt;}
.y5_c00445{bottom:641.066667pt;}
.y2d_c00445{bottom:641.466667pt;}
.y4_c00445{bottom:656.800000pt;}
.y2c_c00445{bottom:657.066667pt;}
.y3_c00445{bottom:673.200000pt;}
.y2b_c00445{bottom:673.600000pt;}
.y2_c00445{bottom:689.600000pt;}
.y1_c00445{bottom:707.600000pt;}
.ha_c00445{height:11.733399pt;}
.hb_c00445{height:38.937500pt;}
.h7_c00445{height:51.216000pt;}
.h8_c00445{height:53.058594pt;}
.h3_c00445{height:53.098667pt;}
.h4_c00445{height:55.893333pt;}
.h9_c00445{height:57.397135pt;}
.h2_c00445{height:58.688000pt;}
.h5_c00445{height:64.277333pt;}
.h6_c00445{height:81.045333pt;}
.h1_c00445{height:748.666667pt;}
.h0_c00445{height:748.800000pt;}
.w2_c00445{width:93.222667pt;}
.w1_c00445{width:515.333333pt;}
.w0_c00445{width:515.533333pt;}
.x0_c00445{left:0.000000pt;}
.x7_c00445{left:30.000000pt;}
.x8_c00445{left:32.133333pt;}
.x9_c00445{left:65.066667pt;}
.x1_c00445{left:82.800000pt;}
.x4_c00445{left:84.933333pt;}
.x3_c00445{left:86.000000pt;}
.x5_c00445{left:87.200000pt;}
.x6_c00445{left:88.533333pt;}
.xa_c00445{left:90.000000pt;}
.xb_c00445{left:91.200000pt;}
.xc_c00445{left:92.400000pt;}
.xd_c00445{left:93.866667pt;}
.xe_c00445{left:118.800000pt;}
.x2_c00445{left:121.200000pt;}
.x1c_c00445{left:214.934896pt;}
.xf_c00445{left:282.000000pt;}
.x10_c00445{left:283.200000pt;}
.x11_c00445{left:284.133333pt;}
.x13_c00445{left:285.200000pt;}
.x14_c00445{left:286.133333pt;}
.x15_c00445{left:287.333333pt;}
.x19_c00445{left:288.266667pt;}
.x1a_c00445{left:289.200000pt;}
.x12_c00445{left:303.333333pt;}
.x18_c00445{left:310.533333pt;}
.x1b_c00445{left:434.000000pt;}
.x16_c00445{left:476.400000pt;}
.x17_c00445{left:485.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_27fbbf6559e32f9d40ae4461.woff2')format("woff");}.ff1_c00446{font-family:ff1_c00446;line-height:1.437000;font-style:normal;font-weight:normal;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_0bfec6995cb2a58e2dbc1e05.woff2')format("woff");}.ff2_c00446{font-family:ff2_c00446;line-height:1.437000;font-style:normal;font-weight:normal;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_0a73244fe7599da0cd970351.woff2')format("woff");}.ff3_c00446{font-family:ff3_c00446;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00446;src:url('chunks/assets/font_6a35b82a408324f938f7b26d.woff2')format("woff");}.ff4_c00446{font-family:ff4_c00446;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00446;src:url('chunks/assets/font_62d7ac2172c46820a82e3cfd.woff2')format("woff");}.ff5_c00446{font-family:ff5_c00446;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00446;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff6_c00446{font-family:ff6_c00446;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00446;src:url('chunks/assets/font_86c8b2bbb7562bac1df556f9.woff2')format("woff");}.ff7_c00446{font-family:ff7_c00446;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00446;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff8_c00446{font-family:ff8_c00446;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00446{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00446{vertical-align:0.000000px;}
.lsa_c00446{letter-spacing:-6.000000px;}
.ls9_c00446{letter-spacing:-3.000000px;}
.ls7_c00446{letter-spacing:0.000000px;}
.ls8_c00446{letter-spacing:3.000000px;}
.ls0_c00446{letter-spacing:8.082000px;}
.ls3_c00446{letter-spacing:9.900000px;}
.ls4_c00446{letter-spacing:12.300000px;}
.ls1_c00446{letter-spacing:12.750000px;}
.ls2_c00446{letter-spacing:15.660000px;}
.ls5_c00446{letter-spacing:16.860000px;}
.ls6_c00446{letter-spacing:18.060000px;}
.sc__c00446{text-shadow:none;}
.sc0_c00446{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00446{-webkit-text-stroke:0px transparent;}
.sc0_c00446{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00446{word-spacing:-28.860000px;}
.ws0_c00446{word-spacing:-17.319000px;}
.ws1_c00446{word-spacing:-15.813000px;}
.ws3_c00446{word-spacing:-14.427000px;}
.ws6_c00446{word-spacing:-14.340000px;}
.ws5_c00446{word-spacing:-14.160000px;}
.ws2_c00446{word-spacing:-13.452000px;}
.ws8_c00446{word-spacing:0.000000px;}
.ws7_c00446{word-spacing:1.008000px;}
._2a_c00446{margin-left:-21.603000px;}
._25_c00446{margin-left:-19.089000px;}
._29_c00446{margin-left:-15.996000px;}
._27_c00446{margin-left:-14.970000px;}
._18_c00446{margin-left:-13.695000px;}
._f_c00446{margin-left:-12.639000px;}
._9_c00446{margin-left:-9.891000px;}
._19_c00446{margin-left:-8.472000px;}
._a_c00446{margin-left:-6.804000px;}
._16_c00446{margin-left:-5.208000px;}
._b_c00446{margin-left:-3.876000px;}
._8_c00446{margin-left:-2.583000px;}
._13_c00446{margin-left:-1.506000px;}
._7_c00446{width:1.365000px;}
._6_c00446{width:2.553000px;}
._d_c00446{width:4.347000px;}
._12_c00446{width:5.787000px;}
._c_c00446{width:6.804000px;}
._e_c00446{width:7.938000px;}
._1d_c00446{width:9.150000px;}
._1_c00446{width:10.350000px;}
._14_c00446{width:11.361000px;}
._0_c00446{width:13.248000px;}
._17_c00446{width:14.643000px;}
._1a_c00446{width:16.887000px;}
._1f_c00446{width:18.351000px;}
._1e_c00446{width:20.475000px;}
._3_c00446{width:21.735000px;}
._24_c00446{width:22.887000px;}
._4_c00446{width:23.940000px;}
._20_c00446{width:25.095000px;}
._11_c00446{width:26.922000px;}
._5_c00446{width:29.403000px;}
._1c_c00446{width:30.675000px;}
._28_c00446{width:32.559000px;}
._1b_c00446{width:37.215000px;}
._23_c00446{width:41.676000px;}
._2_c00446{width:44.175000px;}
._22_c00446{width:50.568000px;}
._21_c00446{width:58.494000px;}
._10_c00446{width:82.089000px;}
._15_c00446{width:150.822000px;}
._26_c00446{width:152.955000px;}
.fc2_c00446{color:transparent;}
.fc1_c00446{color:rgb(128,128,128);}
.fc0_c00446{color:rgb(0,0,0);}
.fs5_c00446{font-size:48.000000px;}
.fs4_c00446{font-size:51.000000px;}
.fs2_c00446{font-size:57.000000px;}
.fs3_c00446{font-size:60.000000px;}
.fs1_c00446{font-size:63.000000px;}
.fs0_c00446{font-size:69.000000px;}
.y0_c00446{bottom:0.000000px;}
.y55_c00446{bottom:3.105000px;}
.y54_c00446{bottom:7.228363px;}
.y53_c00446{bottom:39.450000px;}
.y2a_c00446{bottom:54.300000px;}
.y52_c00446{bottom:58.650000px;}
.y29_c00446{bottom:73.800000px;}
.y51_c00446{bottom:76.950000px;}
.y28_c00446{bottom:91.350000px;}
.y50_c00446{bottom:94.800000px;}
.y27_c00446{bottom:110.250000px;}
.y4f_c00446{bottom:112.950000px;}
.y26_c00446{bottom:128.550000px;}
.y4e_c00446{bottom:132.000000px;}
.y25_c00446{bottom:146.850000px;}
.y4d_c00446{bottom:149.850000px;}
.y24_c00446{bottom:165.300000px;}
.y4c_c00446{bottom:168.000000px;}
.y23_c00446{bottom:183.300000px;}
.y4b_c00446{bottom:185.850000px;}
.y22_c00446{bottom:201.150000px;}
.y4a_c00446{bottom:203.850000px;}
.y21_c00446{bottom:219.750000px;}
.y49_c00446{bottom:222.300000px;}
.y20_c00446{bottom:238.200000px;}
.y48_c00446{bottom:240.000000px;}
.y1f_c00446{bottom:256.050000px;}
.y47_c00446{bottom:258.450000px;}
.y1e_c00446{bottom:274.350000px;}
.y46_c00446{bottom:276.000000px;}
.y1d_c00446{bottom:292.500000px;}
.y45_c00446{bottom:294.900000px;}
.y1c_c00446{bottom:310.050000px;}
.y44_c00446{bottom:312.750000px;}
.y1b_c00446{bottom:327.750000px;}
.y43_c00446{bottom:331.050000px;}
.y1a_c00446{bottom:345.900000px;}
.y42_c00446{bottom:348.600000px;}
.y19_c00446{bottom:364.050000px;}
.y41_c00446{bottom:366.750000px;}
.y18_c00446{bottom:382.050000px;}
.y40_c00446{bottom:385.050000px;}
.y17_c00446{bottom:399.900000px;}
.y3f_c00446{bottom:402.900000px;}
.y16_c00446{bottom:417.750000px;}
.y3e_c00446{bottom:420.900000px;}
.y15_c00446{bottom:436.350000px;}
.y3d_c00446{bottom:439.050000px;}
.y14_c00446{bottom:453.900000px;}
.y3c_c00446{bottom:457.200000px;}
.y13_c00446{bottom:472.200000px;}
.y3b_c00446{bottom:474.750000px;}
.y12_c00446{bottom:490.050000px;}
.y3a_c00446{bottom:493.350000px;}
.y11_c00446{bottom:507.600000px;}
.y39_c00446{bottom:511.650000px;}
.y10_c00446{bottom:524.850000px;}
.y38_c00446{bottom:529.500000px;}
.yf_c00446{bottom:542.400000px;}
.y37_c00446{bottom:546.750000px;}
.ye_c00446{bottom:560.250000px;}
.y36_c00446{bottom:564.600000px;}
.yd_c00446{bottom:578.550000px;}
.y35_c00446{bottom:582.900000px;}
.yc_c00446{bottom:597.000000px;}
.y34_c00446{bottom:601.050000px;}
.yb_c00446{bottom:614.550000px;}
.y33_c00446{bottom:618.900000px;}
.ya_c00446{bottom:632.250000px;}
.y32_c00446{bottom:637.800000px;}
.y9_c00446{bottom:651.150000px;}
.y31_c00446{bottom:655.050000px;}
.y8_c00446{bottom:669.000000px;}
.y30_c00446{bottom:672.900000px;}
.y7_c00446{bottom:687.150000px;}
.y2f_c00446{bottom:691.800000px;}
.y6_c00446{bottom:705.450000px;}
.y2e_c00446{bottom:710.700000px;}
.y5_c00446{bottom:723.300000px;}
.y2d_c00446{bottom:727.950000px;}
.y4_c00446{bottom:741.750000px;}
.y2c_c00446{bottom:746.100000px;}
.y3_c00446{bottom:759.750000px;}
.y2b_c00446{bottom:763.650000px;}
.y2_c00446{bottom:780.750000px;}
.y1_c00446{bottom:799.950000px;}
.h6_c00446{height:13.200074px;}
.h7_c00446{height:43.804688px;}
.h3_c00446{height:59.736000px;}
.h5_c00446{height:62.880000px;}
.h4_c00446{height:65.040000px;}
.h2_c00446{height:66.024000px;}
.h1_c00446{height:72.312000px;}
.h0_c00446{height:843.750000px;}
.w2_c00446{width:104.875500px;}
.w1_c00446{width:579.750000px;}
.w0_c00446{width:579.975000px;}
.x0_c00446{left:0.000000px;}
.x5_c00446{left:14.850000px;}
.x4_c00446{left:36.750000px;}
.x6_c00446{left:74.850000px;}
.x2_c00446{left:76.350000px;}
.x3_c00446{left:77.550000px;}
.x7_c00446{left:78.900000px;}
.x9_c00446{left:80.250000px;}
.x8_c00446{left:81.300000px;}
.x1_c00446{left:216.000000px;}
.x13_c00446{left:241.801758px;}
.xf_c00446{left:289.200000px;}
.xe_c00446{left:293.550000px;}
.xc_c00446{left:294.900000px;}
.xd_c00446{left:296.250000px;}
.xa_c00446{left:297.300000px;}
.x10_c00446{left:298.350000px;}
.x11_c00446{left:299.400000px;}
.xb_c00446{left:311.550000px;}
.x12_c00446{left:384.450000px;}
@media print{
.v0_c00446{vertical-align:0.000000pt;}
.lsa_c00446{letter-spacing:-5.333333pt;}
.ls9_c00446{letter-spacing:-2.666667pt;}
.ls7_c00446{letter-spacing:0.000000pt;}
.ls8_c00446{letter-spacing:2.666667pt;}
.ls0_c00446{letter-spacing:7.184000pt;}
.ls3_c00446{letter-spacing:8.800000pt;}
.ls4_c00446{letter-spacing:10.933333pt;}
.ls1_c00446{letter-spacing:11.333333pt;}
.ls2_c00446{letter-spacing:13.920000pt;}
.ls5_c00446{letter-spacing:14.986667pt;}
.ls6_c00446{letter-spacing:16.053333pt;}
.ws4_c00446{word-spacing:-25.653333pt;}
.ws0_c00446{word-spacing:-15.394667pt;}
.ws1_c00446{word-spacing:-14.056000pt;}
.ws3_c00446{word-spacing:-12.824000pt;}
.ws6_c00446{word-spacing:-12.746667pt;}
.ws5_c00446{word-spacing:-12.586667pt;}
.ws2_c00446{word-spacing:-11.957333pt;}
.ws8_c00446{word-spacing:0.000000pt;}
.ws7_c00446{word-spacing:0.896000pt;}
._2a_c00446{margin-left:-19.202667pt;}
._25_c00446{margin-left:-16.968000pt;}
._29_c00446{margin-left:-14.218667pt;}
._27_c00446{margin-left:-13.306667pt;}
._18_c00446{margin-left:-12.173333pt;}
._f_c00446{margin-left:-11.234667pt;}
._9_c00446{margin-left:-8.792000pt;}
._19_c00446{margin-left:-7.530667pt;}
._a_c00446{margin-left:-6.048000pt;}
._16_c00446{margin-left:-4.629333pt;}
._b_c00446{margin-left:-3.445333pt;}
._8_c00446{margin-left:-2.296000pt;}
._13_c00446{margin-left:-1.338667pt;}
._7_c00446{width:1.213333pt;}
._6_c00446{width:2.269333pt;}
._d_c00446{width:3.864000pt;}
._12_c00446{width:5.144000pt;}
._c_c00446{width:6.048000pt;}
._e_c00446{width:7.056000pt;}
._1d_c00446{width:8.133333pt;}
._1_c00446{width:9.200000pt;}
._14_c00446{width:10.098667pt;}
._0_c00446{width:11.776000pt;}
._17_c00446{width:13.016000pt;}
._1a_c00446{width:15.010667pt;}
._1f_c00446{width:16.312000pt;}
._1e_c00446{width:18.200000pt;}
._3_c00446{width:19.320000pt;}
._24_c00446{width:20.344000pt;}
._4_c00446{width:21.280000pt;}
._20_c00446{width:22.306667pt;}
._11_c00446{width:23.930667pt;}
._5_c00446{width:26.136000pt;}
._1c_c00446{width:27.266667pt;}
._28_c00446{width:28.941333pt;}
._1b_c00446{width:33.080000pt;}
._23_c00446{width:37.045333pt;}
._2_c00446{width:39.266667pt;}
._22_c00446{width:44.949333pt;}
._21_c00446{width:51.994667pt;}
._10_c00446{width:72.968000pt;}
._15_c00446{width:134.064000pt;}
._26_c00446{width:135.960000pt;}
.fs5_c00446{font-size:42.666667pt;}
.fs4_c00446{font-size:45.333333pt;}
.fs2_c00446{font-size:50.666667pt;}
.fs3_c00446{font-size:53.333333pt;}
.fs1_c00446{font-size:56.000000pt;}
.fs0_c00446{font-size:61.333333pt;}
.y0_c00446{bottom:0.000000pt;}
.y55_c00446{bottom:2.760000pt;}
.y54_c00446{bottom:6.425212pt;}
.y53_c00446{bottom:35.066667pt;}
.y2a_c00446{bottom:48.266667pt;}
.y52_c00446{bottom:52.133333pt;}
.y29_c00446{bottom:65.600000pt;}
.y51_c00446{bottom:68.400000pt;}
.y28_c00446{bottom:81.200000pt;}
.y50_c00446{bottom:84.266667pt;}
.y27_c00446{bottom:98.000000pt;}
.y4f_c00446{bottom:100.400000pt;}
.y26_c00446{bottom:114.266667pt;}
.y4e_c00446{bottom:117.333333pt;}
.y25_c00446{bottom:130.533333pt;}
.y4d_c00446{bottom:133.200000pt;}
.y24_c00446{bottom:146.933333pt;}
.y4c_c00446{bottom:149.333333pt;}
.y23_c00446{bottom:162.933333pt;}
.y4b_c00446{bottom:165.200000pt;}
.y22_c00446{bottom:178.800000pt;}
.y4a_c00446{bottom:181.200000pt;}
.y21_c00446{bottom:195.333333pt;}
.y49_c00446{bottom:197.600000pt;}
.y20_c00446{bottom:211.733333pt;}
.y48_c00446{bottom:213.333333pt;}
.y1f_c00446{bottom:227.600000pt;}
.y47_c00446{bottom:229.733333pt;}
.y1e_c00446{bottom:243.866667pt;}
.y46_c00446{bottom:245.333333pt;}
.y1d_c00446{bottom:260.000000pt;}
.y45_c00446{bottom:262.133333pt;}
.y1c_c00446{bottom:275.600000pt;}
.y44_c00446{bottom:278.000000pt;}
.y1b_c00446{bottom:291.333333pt;}
.y43_c00446{bottom:294.266667pt;}
.y1a_c00446{bottom:307.466667pt;}
.y42_c00446{bottom:309.866667pt;}
.y19_c00446{bottom:323.600000pt;}
.y41_c00446{bottom:326.000000pt;}
.y18_c00446{bottom:339.600000pt;}
.y40_c00446{bottom:342.266667pt;}
.y17_c00446{bottom:355.466667pt;}
.y3f_c00446{bottom:358.133333pt;}
.y16_c00446{bottom:371.333333pt;}
.y3e_c00446{bottom:374.133333pt;}
.y15_c00446{bottom:387.866667pt;}
.y3d_c00446{bottom:390.266667pt;}
.y14_c00446{bottom:403.466667pt;}
.y3c_c00446{bottom:406.400000pt;}
.y13_c00446{bottom:419.733333pt;}
.y3b_c00446{bottom:422.000000pt;}
.y12_c00446{bottom:435.600000pt;}
.y3a_c00446{bottom:438.533333pt;}
.y11_c00446{bottom:451.200000pt;}
.y39_c00446{bottom:454.800000pt;}
.y10_c00446{bottom:466.533333pt;}
.y38_c00446{bottom:470.666667pt;}
.yf_c00446{bottom:482.133333pt;}
.y37_c00446{bottom:486.000000pt;}
.ye_c00446{bottom:498.000000pt;}
.y36_c00446{bottom:501.866667pt;}
.yd_c00446{bottom:514.266667pt;}
.y35_c00446{bottom:518.133333pt;}
.yc_c00446{bottom:530.666667pt;}
.y34_c00446{bottom:534.266667pt;}
.yb_c00446{bottom:546.266667pt;}
.y33_c00446{bottom:550.133333pt;}
.ya_c00446{bottom:562.000000pt;}
.y32_c00446{bottom:566.933333pt;}
.y9_c00446{bottom:578.800000pt;}
.y31_c00446{bottom:582.266667pt;}
.y8_c00446{bottom:594.666667pt;}
.y30_c00446{bottom:598.133333pt;}
.y7_c00446{bottom:610.800000pt;}
.y2f_c00446{bottom:614.933333pt;}
.y6_c00446{bottom:627.066667pt;}
.y2e_c00446{bottom:631.733333pt;}
.y5_c00446{bottom:642.933333pt;}
.y2d_c00446{bottom:647.066667pt;}
.y4_c00446{bottom:659.333333pt;}
.y2c_c00446{bottom:663.200000pt;}
.y3_c00446{bottom:675.333333pt;}
.y2b_c00446{bottom:678.800000pt;}
.y2_c00446{bottom:694.000000pt;}
.y1_c00446{bottom:711.066667pt;}
.h6_c00446{height:11.733399pt;}
.h7_c00446{height:38.937500pt;}
.h3_c00446{height:53.098667pt;}
.h5_c00446{height:55.893333pt;}
.h4_c00446{height:57.813333pt;}
.h2_c00446{height:58.688000pt;}
.h1_c00446{height:64.277333pt;}
.h0_c00446{height:750.000000pt;}
.w2_c00446{width:93.222667pt;}
.w1_c00446{width:515.333333pt;}
.w0_c00446{width:515.533333pt;}
.x0_c00446{left:0.000000pt;}
.x5_c00446{left:13.200000pt;}
.x4_c00446{left:32.666667pt;}
.x6_c00446{left:66.533333pt;}
.x2_c00446{left:67.866667pt;}
.x3_c00446{left:68.933333pt;}
.x7_c00446{left:70.133333pt;}
.x9_c00446{left:71.333333pt;}
.x8_c00446{left:72.266667pt;}
.x1_c00446{left:192.000000pt;}
.x13_c00446{left:214.934896pt;}
.xf_c00446{left:257.066667pt;}
.xe_c00446{left:260.933333pt;}
.xc_c00446{left:262.133333pt;}
.xd_c00446{left:263.333333pt;}
.xa_c00446{left:264.266667pt;}
.x10_c00446{left:265.200000pt;}
.x11_c00446{left:266.133333pt;}
.xb_c00446{left:276.933333pt;}
.x12_c00446{left:341.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_5a03f55bc8f89994300435de.woff2')format("woff");}.ff1_c00447{font-family:ff1_c00447;line-height:1.437000;font-style:normal;font-weight:normal;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_13827266c9a72a38d7b646af.woff2')format("woff");}.ff2_c00447{font-family:ff2_c00447;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00447;src:url('chunks/assets/font_1c4d3e6a09b56c1a7a1e6be7.woff2')format("woff");}.ff3_c00447{font-family:ff3_c00447;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00447;src:url('chunks/assets/font_71d398fcf0323c5e357b863f.woff2')format("woff");}.ff4_c00447{font-family:ff4_c00447;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00447;src:url('chunks/assets/font_9bf998b0f841e7901514fc8f.woff2')format("woff");}.ff5_c00447{font-family:ff5_c00447;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00447;src:url('chunks/assets/font_3295c284cf1047b8f2fdb623.woff2')format("woff");}.ff6_c00447{font-family:ff6_c00447;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00447;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff7_c00447{font-family:ff7_c00447;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00447{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00447{vertical-align:-1.800000px;}
.v0_c00447{vertical-align:0.000000px;}
.ls8_c00447{letter-spacing:0.000000px;}
.ls2_c00447{letter-spacing:0.360000px;}
.ls9_c00447{letter-spacing:3.000000px;}
.ls3_c00447{letter-spacing:4.800000px;}
.lsa_c00447{letter-spacing:12.000000px;}
.ls0_c00447{letter-spacing:17.493000px;}
.ls7_c00447{letter-spacing:18.777000px;}
.ls4_c00447{letter-spacing:51.360000px;}
.ls5_c00447{letter-spacing:71.577000px;}
.ls6_c00447{letter-spacing:73.977000px;}
.ls1_c00447{letter-spacing:76.977000px;}
.sc__c00447{text-shadow:none;}
.sc0_c00447{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00447{-webkit-text-stroke:0px transparent;}
.sc0_c00447{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00447{word-spacing:-27.417000px;}
.ws1_c00447{word-spacing:-15.813000px;}
.ws0_c00447{word-spacing:-14.427000px;}
.ws5_c00447{word-spacing:-14.340000px;}
.ws2_c00447{word-spacing:-14.160000px;}
.ws7_c00447{word-spacing:-13.623000px;}
.ws3_c00447{word-spacing:-13.452000px;}
.ws8_c00447{word-spacing:0.000000px;}
.ws6_c00447{word-spacing:1.710000px;}
._2a_c00447{margin-left:-13.047000px;}
._1f_c00447{margin-left:-10.458000px;}
._23_c00447{margin-left:-8.898000px;}
._12_c00447{margin-left:-7.812000px;}
._15_c00447{margin-left:-6.111000px;}
._19_c00447{margin-left:-4.536000px;}
._e_c00447{margin-left:-3.150000px;}
._f_c00447{margin-left:-2.142000px;}
._1a_c00447{margin-left:-1.047000px;}
._8_c00447{width:1.449000px;}
._9_c00447{width:2.646000px;}
._a_c00447{width:3.906000px;}
._6_c00447{width:5.544000px;}
._21_c00447{width:6.552000px;}
._0_c00447{width:7.623000px;}
._1_c00447{width:8.883000px;}
._3_c00447{width:10.080000px;}
._7_c00447{width:11.088000px;}
._4_c00447{width:12.663000px;}
._c_c00447{width:14.679000px;}
._22_c00447{width:16.170000px;}
._2f_c00447{width:17.271000px;}
._10_c00447{width:18.468000px;}
._11_c00447{width:19.782000px;}
._1b_c00447{width:21.141000px;}
._14_c00447{width:22.680000px;}
._17_c00447{width:24.759000px;}
._b_c00447{width:26.019000px;}
._18_c00447{width:27.405000px;}
._16_c00447{width:28.728000px;}
._1c_c00447{width:30.732000px;}
._5_c00447{width:33.201000px;}
._27_c00447{width:34.335000px;}
._20_c00447{width:36.036000px;}
._13_c00447{width:37.989000px;}
._2d_c00447{width:39.471000px;}
._25_c00447{width:58.173000px;}
._26_c00447{width:59.508000px;}
._2e_c00447{width:67.443000px;}
._2c_c00447{width:72.126000px;}
._2b_c00447{width:74.214000px;}
._1d_c00447{width:75.222000px;}
._1e_c00447{width:76.914000px;}
._d_c00447{width:81.837000px;}
._24_c00447{width:85.101000px;}
._28_c00447{width:88.488000px;}
._2_c00447{width:250.866000px;}
._29_c00447{width:294.975000px;}
.fc2_c00447{color:transparent;}
.fc1_c00447{color:rgb(128,128,128);}
.fc0_c00447{color:rgb(0,0,0);}
.fs5_c00447{font-size:24.000000px;}
.fs4_c00447{font-size:45.000000px;}
.fs7_c00447{font-size:48.000000px;}
.fs1_c00447{font-size:54.000000px;}
.fs3_c00447{font-size:57.000000px;}
.fs2_c00447{font-size:60.000000px;}
.fs0_c00447{font-size:63.000000px;}
.fs6_c00447{font-size:66.000000px;}
.y0_c00447{bottom:0.000000px;}
.y41_c00447{bottom:3.105000px;}
.y40_c00447{bottom:7.228363px;}
.y3f_c00447{bottom:42.150000px;}
.y3e_c00447{bottom:61.500000px;}
.y3d_c00447{bottom:81.750000px;}
.y3c_c00447{bottom:99.000000px;}
.y34_c00447{bottom:117.150000px;}
.y3b_c00447{bottom:135.300000px;}
.y33_c00447{bottom:138.450000px;}
.y3a_c00447{bottom:153.900000px;}
.y39_c00447{bottom:171.900000px;}
.y38_c00447{bottom:190.800000px;}
.y37_c00447{bottom:208.200000px;}
.y36_c00447{bottom:225.150000px;}
.y32_c00447{bottom:225.450000px;}
.y35_c00447{bottom:244.350000px;}
.y31_c00447{bottom:244.650000px;}
.y30_c00447{bottom:262.350000px;}
.y2c_c00447{bottom:271.650000px;}
.y2b_c00447{bottom:280.200000px;}
.y2a_c00447{bottom:298.050000px;}
.y2f_c00447{bottom:314.850000px;}
.y29_c00447{bottom:315.300000px;}
.y28_c00447{bottom:333.750000px;}
.y27_c00447{bottom:350.700000px;}
.y2e_c00447{bottom:368.850000px;}
.y26_c00447{bottom:370.200000px;}
.y2d_c00447{bottom:387.150000px;}
.y25_c00447{bottom:388.200000px;}
.y24_c00447{bottom:405.450000px;}
.y23_c00447{bottom:423.300000px;}
.y22_c00447{bottom:441.900000px;}
.y21_c00447{bottom:460.050000px;}
.y20_c00447{bottom:478.200000px;}
.y1f_c00447{bottom:496.200000px;}
.y19_c00447{bottom:513.750000px;}
.y1e_c00447{bottom:514.050000px;}
.y18_c00447{bottom:531.600000px;}
.y1d_c00447{bottom:532.500000px;}
.y17_c00447{bottom:549.150000px;}
.y1c_c00447{bottom:550.500000px;}
.y16_c00447{bottom:567.300000px;}
.y1b_c00447{bottom:568.650000px;}
.y15_c00447{bottom:585.300000px;}
.y1a_c00447{bottom:585.900000px;}
.y14_c00447{bottom:603.150000px;}
.y13_c00447{bottom:621.300000px;}
.ya_c00447{bottom:639.300000px;}
.y12_c00447{bottom:640.350000px;}
.y9_c00447{bottom:657.450000px;}
.y11_c00447{bottom:658.200000px;}
.y8_c00447{bottom:675.450000px;}
.y10_c00447{bottom:676.350000px;}
.y7_c00447{bottom:693.300000px;}
.yf_c00447{bottom:694.350000px;}
.y6_c00447{bottom:711.900000px;}
.ye_c00447{bottom:712.200000px;}
.y5_c00447{bottom:730.050000px;}
.yd_c00447{bottom:730.350000px;}
.yc_c00447{bottom:748.200000px;}
.y4_c00447{bottom:748.650000px;}
.y3_c00447{bottom:766.500000px;}
.yb_c00447{bottom:766.800000px;}
.y2_c00447{bottom:784.800000px;}
.y1_c00447{bottom:803.250000px;}
.h8_c00447{height:13.200074px;}
.h5_c00447{height:30.386719px;}
.h9_c00447{height:43.804688px;}
.h4_c00447{height:59.736000px;}
.h3_c00447{height:62.880000px;}
.h7_c00447{height:64.224000px;}
.h2_c00447{height:66.024000px;}
.h6_c00447{height:71.544000px;}
.h1_c00447{height:842.250000px;}
.h0_c00447{height:842.400000px;}
.w2_c00447{width:104.875500px;}
.w1_c00447{width:579.750000px;}
.w0_c00447{width:579.975000px;}
.x0_c00447{left:0.000000px;}
.x10_c00447{left:44.250000px;}
.x11_c00447{left:46.500000px;}
.x1_c00447{left:95.850000px;}
.x3_c00447{left:98.250000px;}
.x2_c00447{left:99.900000px;}
.x6_c00447{left:101.550000px;}
.xa_c00447{left:103.050000px;}
.x15_c00447{left:105.000000px;}
.x17_c00447{left:106.650000px;}
.x13_c00447{left:109.350000px;}
.xd_c00447{left:117.150000px;}
.xb_c00447{left:123.150000px;}
.x14_c00447{left:138.600000px;}
.xe_c00447{left:139.800000px;}
.xc_c00447{left:171.900000px;}
.x16_c00447{left:173.700000px;}
.xf_c00447{left:186.600000px;}
.x18_c00447{left:201.900000px;}
.x7_c00447{left:217.650000px;}
.x1a_c00447{left:241.801758px;}
.x5_c00447{left:314.850000px;}
.x4_c00447{left:316.500000px;}
.x8_c00447{left:317.550000px;}
.x9_c00447{left:318.600000px;}
.x12_c00447{left:320.250000px;}
.x19_c00447{left:490.500000px;}
@media print{
.v1_c00447{vertical-align:-1.600000pt;}
.v0_c00447{vertical-align:0.000000pt;}
.ls8_c00447{letter-spacing:0.000000pt;}
.ls2_c00447{letter-spacing:0.320000pt;}
.ls9_c00447{letter-spacing:2.666667pt;}
.ls3_c00447{letter-spacing:4.266667pt;}
.lsa_c00447{letter-spacing:10.666667pt;}
.ls0_c00447{letter-spacing:15.549333pt;}
.ls7_c00447{letter-spacing:16.690667pt;}
.ls4_c00447{letter-spacing:45.653333pt;}
.ls5_c00447{letter-spacing:63.624000pt;}
.ls6_c00447{letter-spacing:65.757333pt;}
.ls1_c00447{letter-spacing:68.424000pt;}
.ws4_c00447{word-spacing:-24.370667pt;}
.ws1_c00447{word-spacing:-14.056000pt;}
.ws0_c00447{word-spacing:-12.824000pt;}
.ws5_c00447{word-spacing:-12.746667pt;}
.ws2_c00447{word-spacing:-12.586667pt;}
.ws7_c00447{word-spacing:-12.109333pt;}
.ws3_c00447{word-spacing:-11.957333pt;}
.ws8_c00447{word-spacing:0.000000pt;}
.ws6_c00447{word-spacing:1.520000pt;}
._2a_c00447{margin-left:-11.597333pt;}
._1f_c00447{margin-left:-9.296000pt;}
._23_c00447{margin-left:-7.909333pt;}
._12_c00447{margin-left:-6.944000pt;}
._15_c00447{margin-left:-5.432000pt;}
._19_c00447{margin-left:-4.032000pt;}
._e_c00447{margin-left:-2.800000pt;}
._f_c00447{margin-left:-1.904000pt;}
._1a_c00447{margin-left:-0.930667pt;}
._8_c00447{width:1.288000pt;}
._9_c00447{width:2.352000pt;}
._a_c00447{width:3.472000pt;}
._6_c00447{width:4.928000pt;}
._21_c00447{width:5.824000pt;}
._0_c00447{width:6.776000pt;}
._1_c00447{width:7.896000pt;}
._3_c00447{width:8.960000pt;}
._7_c00447{width:9.856000pt;}
._4_c00447{width:11.256000pt;}
._c_c00447{width:13.048000pt;}
._22_c00447{width:14.373333pt;}
._2f_c00447{width:15.352000pt;}
._10_c00447{width:16.416000pt;}
._11_c00447{width:17.584000pt;}
._1b_c00447{width:18.792000pt;}
._14_c00447{width:20.160000pt;}
._17_c00447{width:22.008000pt;}
._b_c00447{width:23.128000pt;}
._18_c00447{width:24.360000pt;}
._16_c00447{width:25.536000pt;}
._1c_c00447{width:27.317333pt;}
._5_c00447{width:29.512000pt;}
._27_c00447{width:30.520000pt;}
._20_c00447{width:32.032000pt;}
._13_c00447{width:33.768000pt;}
._2d_c00447{width:35.085333pt;}
._25_c00447{width:51.709333pt;}
._26_c00447{width:52.896000pt;}
._2e_c00447{width:59.949333pt;}
._2c_c00447{width:64.112000pt;}
._2b_c00447{width:65.968000pt;}
._1d_c00447{width:66.864000pt;}
._1e_c00447{width:68.368000pt;}
._d_c00447{width:72.744000pt;}
._24_c00447{width:75.645333pt;}
._28_c00447{width:78.656000pt;}
._2_c00447{width:222.992000pt;}
._29_c00447{width:262.200000pt;}
.fs5_c00447{font-size:21.333333pt;}
.fs4_c00447{font-size:40.000000pt;}
.fs7_c00447{font-size:42.666667pt;}
.fs1_c00447{font-size:48.000000pt;}
.fs3_c00447{font-size:50.666667pt;}
.fs2_c00447{font-size:53.333333pt;}
.fs0_c00447{font-size:56.000000pt;}
.fs6_c00447{font-size:58.666667pt;}
.y0_c00447{bottom:0.000000pt;}
.y41_c00447{bottom:2.760000pt;}
.y40_c00447{bottom:6.425212pt;}
.y3f_c00447{bottom:37.466667pt;}
.y3e_c00447{bottom:54.666667pt;}
.y3d_c00447{bottom:72.666667pt;}
.y3c_c00447{bottom:88.000000pt;}
.y34_c00447{bottom:104.133333pt;}
.y3b_c00447{bottom:120.266667pt;}
.y33_c00447{bottom:123.066667pt;}
.y3a_c00447{bottom:136.800000pt;}
.y39_c00447{bottom:152.800000pt;}
.y38_c00447{bottom:169.600000pt;}
.y37_c00447{bottom:185.066667pt;}
.y36_c00447{bottom:200.133333pt;}
.y32_c00447{bottom:200.400000pt;}
.y35_c00447{bottom:217.200000pt;}
.y31_c00447{bottom:217.466667pt;}
.y30_c00447{bottom:233.200000pt;}
.y2c_c00447{bottom:241.466667pt;}
.y2b_c00447{bottom:249.066667pt;}
.y2a_c00447{bottom:264.933333pt;}
.y2f_c00447{bottom:279.866667pt;}
.y29_c00447{bottom:280.266667pt;}
.y28_c00447{bottom:296.666667pt;}
.y27_c00447{bottom:311.733333pt;}
.y2e_c00447{bottom:327.866667pt;}
.y26_c00447{bottom:329.066667pt;}
.y2d_c00447{bottom:344.133333pt;}
.y25_c00447{bottom:345.066667pt;}
.y24_c00447{bottom:360.400000pt;}
.y23_c00447{bottom:376.266667pt;}
.y22_c00447{bottom:392.800000pt;}
.y21_c00447{bottom:408.933333pt;}
.y20_c00447{bottom:425.066667pt;}
.y1f_c00447{bottom:441.066667pt;}
.y19_c00447{bottom:456.666667pt;}
.y1e_c00447{bottom:456.933333pt;}
.y18_c00447{bottom:472.533333pt;}
.y1d_c00447{bottom:473.333333pt;}
.y17_c00447{bottom:488.133333pt;}
.y1c_c00447{bottom:489.333333pt;}
.y16_c00447{bottom:504.266667pt;}
.y1b_c00447{bottom:505.466667pt;}
.y15_c00447{bottom:520.266667pt;}
.y1a_c00447{bottom:520.800000pt;}
.y14_c00447{bottom:536.133333pt;}
.y13_c00447{bottom:552.266667pt;}
.ya_c00447{bottom:568.266667pt;}
.y12_c00447{bottom:569.200000pt;}
.y9_c00447{bottom:584.400000pt;}
.y11_c00447{bottom:585.066667pt;}
.y8_c00447{bottom:600.400000pt;}
.y10_c00447{bottom:601.200000pt;}
.y7_c00447{bottom:616.266667pt;}
.yf_c00447{bottom:617.200000pt;}
.y6_c00447{bottom:632.800000pt;}
.ye_c00447{bottom:633.066667pt;}
.y5_c00447{bottom:648.933333pt;}
.yd_c00447{bottom:649.200000pt;}
.yc_c00447{bottom:665.066667pt;}
.y4_c00447{bottom:665.466667pt;}
.y3_c00447{bottom:681.333333pt;}
.yb_c00447{bottom:681.600000pt;}
.y2_c00447{bottom:697.600000pt;}
.y1_c00447{bottom:714.000000pt;}
.h8_c00447{height:11.733399pt;}
.h5_c00447{height:27.010417pt;}
.h9_c00447{height:38.937500pt;}
.h4_c00447{height:53.098667pt;}
.h3_c00447{height:55.893333pt;}
.h7_c00447{height:57.088000pt;}
.h2_c00447{height:58.688000pt;}
.h6_c00447{height:63.594667pt;}
.h1_c00447{height:748.666667pt;}
.h0_c00447{height:748.800000pt;}
.w2_c00447{width:93.222667pt;}
.w1_c00447{width:515.333333pt;}
.w0_c00447{width:515.533333pt;}
.x0_c00447{left:0.000000pt;}
.x10_c00447{left:39.333333pt;}
.x11_c00447{left:41.333333pt;}
.x1_c00447{left:85.200000pt;}
.x3_c00447{left:87.333333pt;}
.x2_c00447{left:88.800000pt;}
.x6_c00447{left:90.266667pt;}
.xa_c00447{left:91.600000pt;}
.x15_c00447{left:93.333333pt;}
.x17_c00447{left:94.800000pt;}
.x13_c00447{left:97.200000pt;}
.xd_c00447{left:104.133333pt;}
.xb_c00447{left:109.466667pt;}
.x14_c00447{left:123.200000pt;}
.xe_c00447{left:124.266667pt;}
.xc_c00447{left:152.800000pt;}
.x16_c00447{left:154.400000pt;}
.xf_c00447{left:165.866667pt;}
.x18_c00447{left:179.466667pt;}
.x7_c00447{left:193.466667pt;}
.x1a_c00447{left:214.934896pt;}
.x5_c00447{left:279.866667pt;}
.x4_c00447{left:281.333333pt;}
.x8_c00447{left:282.266667pt;}
.x9_c00447{left:283.200000pt;}
.x12_c00447{left:284.666667pt;}
.x19_c00447{left:436.000000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_92d0d2a8aedc8fed9a6d8dd8.woff2')format("woff");}.ff1_c00448{font-family:ff1_c00448;line-height:1.437000;font-style:normal;font-weight:normal;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_88896668742b21d3c217c19a.woff2')format("woff");}.ff2_c00448{font-family:ff2_c00448;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00448;src:url('chunks/assets/font_90dfa8c08b579bb6c59f0a4b.woff2')format("woff");}.ff3_c00448{font-family:ff3_c00448;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00448;src:url('chunks/assets/font_0f928bc0c123a2be9f1b03e3.woff2')format("woff");}.ff4_c00448{font-family:ff4_c00448;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00448;src:url('chunks/assets/font_39c35c3706818a221e76a187.woff2')format("woff");}.ff5_c00448{font-family:ff5_c00448;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00448;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff6_c00448{font-family:ff6_c00448;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00448{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00448{vertical-align:0.000000px;}
.ls2_c00448{letter-spacing:0.000000px;}
.ls0_c00448{letter-spacing:1.200000px;}
.ls3_c00448{letter-spacing:3.000000px;}
.ls1_c00448{letter-spacing:16.680000px;}
.sc__c00448{text-shadow:none;}
.sc0_c00448{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00448{-webkit-text-stroke:0px transparent;}
.sc0_c00448{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00448{word-spacing:-14.340000px;}
.ws1_c00448{word-spacing:-14.160000px;}
.ws2_c00448{word-spacing:0.000000px;}
._26_c00448{margin-left:-19.680000px;}
._27_c00448{margin-left:-13.572000px;}
._21_c00448{margin-left:-11.160000px;}
._28_c00448{margin-left:-8.940000px;}
._f_c00448{margin-left:-7.632000px;}
._16_c00448{margin-left:-6.480000px;}
._e_c00448{margin-left:-5.460000px;}
._10_c00448{margin-left:-4.356000px;}
._11_c00448{margin-left:-3.312000px;}
._2_c00448{margin-left:-1.860000px;}
._0_c00448{width:1.500000px;}
._5_c00448{width:2.820000px;}
._a_c00448{width:4.020000px;}
._7_c00448{width:5.280000px;}
._8_c00448{width:7.080000px;}
._d_c00448{width:9.060000px;}
._15_c00448{width:10.380000px;}
._b_c00448{width:11.580000px;}
._3_c00448{width:12.660000px;}
._12_c00448{width:14.256000px;}
._17_c00448{width:15.420000px;}
._14_c00448{width:16.692000px;}
._c_c00448{width:18.120000px;}
._13_c00448{width:19.836000px;}
._1e_c00448{width:21.000000px;}
._1f_c00448{width:22.020000px;}
._6_c00448{width:23.460000px;}
._1b_c00448{width:25.200000px;}
._1_c00448{width:26.400000px;}
._1c_c00448{width:28.800000px;}
._1d_c00448{width:29.928000px;}
._23_c00448{width:31.140000px;}
._1a_c00448{width:33.216000px;}
._9_c00448{width:35.220000px;}
._4_c00448{width:36.960000px;}
._24_c00448{width:38.340000px;}
._25_c00448{width:43.344000px;}
._18_c00448{width:49.620000px;}
._22_c00448{width:51.660000px;}
._20_c00448{width:66.792000px;}
._29_c00448{width:133.080000px;}
._19_c00448{width:176.844000px;}
.fc2_c00448{color:transparent;}
.fc1_c00448{color:rgb(128,128,128);}
.fc0_c00448{color:rgb(0,0,0);}
.fs3_c00448{font-size:48.000000px;}
.fs0_c00448{font-size:60.000000px;}
.fs2_c00448{font-size:66.000000px;}
.fs1_c00448{font-size:72.000000px;}
.y0_c00448{bottom:0.000000px;}
.y56_c00448{bottom:3.105000px;}
.y55_c00448{bottom:7.228357px;}
.y54_c00448{bottom:41.880000px;}
.y29_c00448{bottom:56.430000px;}
.y53_c00448{bottom:60.180000px;}
.y2a_c00448{bottom:68.880000px;}
.y28_c00448{bottom:75.930000px;}
.y52_c00448{bottom:78.630000px;}
.y27_c00448{bottom:94.230000px;}
.y51_c00448{bottom:96.930000px;}
.y26_c00448{bottom:112.680000px;}
.y50_c00448{bottom:115.080000px;}
.y25_c00448{bottom:129.930000px;}
.y4f_c00448{bottom:133.680000px;}
.y24_c00448{bottom:149.130000px;}
.y4e_c00448{bottom:151.530000px;}
.y23_c00448{bottom:167.430000px;}
.y4d_c00448{bottom:169.530000px;}
.y22_c00448{bottom:185.580000px;}
.y4c_c00448{bottom:187.680000px;}
.y21_c00448{bottom:203.580000px;}
.y4b_c00448{bottom:205.980000px;}
.y20_c00448{bottom:221.430000px;}
.y4a_c00448{bottom:223.830000px;}
.y1f_c00448{bottom:240.030000px;}
.y49_c00448{bottom:241.980000px;}
.y1e_c00448{bottom:257.580000px;}
.y48_c00448{bottom:260.280000px;}
.y1d_c00448{bottom:276.180000px;}
.y47_c00448{bottom:278.880000px;}
.y1c_c00448{bottom:293.730000px;}
.y46_c00448{bottom:296.730000px;}
.y1b_c00448{bottom:311.880000px;}
.y45_c00448{bottom:314.580000px;}
.y1a_c00448{bottom:329.130000px;}
.y44_c00448{bottom:332.730000px;}
.y19_c00448{bottom:347.730000px;}
.y43_c00448{bottom:351.030000px;}
.y18_c00448{bottom:365.580000px;}
.y42_c00448{bottom:368.880000px;}
.y17_c00448{bottom:384.030000px;}
.y41_c00448{bottom:387.180000px;}
.y16_c00448{bottom:402.030000px;}
.y40_c00448{bottom:405.030000px;}
.y15_c00448{bottom:419.580000px;}
.y3f_c00448{bottom:423.180000px;}
.y14_c00448{bottom:437.730000px;}
.y3e_c00448{bottom:440.880000px;}
.y13_c00448{bottom:456.030000px;}
.y3d_c00448{bottom:459.330000px;}
.y12_c00448{bottom:474.480000px;}
.y3c_c00448{bottom:477.330000px;}
.y11_c00448{bottom:492.180000px;}
.y3b_c00448{bottom:495.780000px;}
.y10_c00448{bottom:509.580000px;}
.y3a_c00448{bottom:513.780000px;}
.yf_c00448{bottom:526.530000px;}
.y39_c00448{bottom:530.880000px;}
.ye_c00448{bottom:543.780000px;}
.y38_c00448{bottom:548.430000px;}
.yd_c00448{bottom:562.380000px;}
.y37_c00448{bottom:567.630000px;}
.yc_c00448{bottom:580.530000px;}
.y36_c00448{bottom:585.330000px;}
.yb_c00448{bottom:598.380000px;}
.y35_c00448{bottom:602.880000px;}
.ya_c00448{bottom:616.380000px;}
.y34_c00448{bottom:621.030000px;}
.y9_c00448{bottom:634.830000px;}
.y33_c00448{bottom:639.630000px;}
.y8_c00448{bottom:652.830000px;}
.y32_c00448{bottom:657.480000px;}
.y7_c00448{bottom:671.280000px;}
.y31_c00448{bottom:675.780000px;}
.y6_c00448{bottom:689.580000px;}
.y30_c00448{bottom:693.630000px;}
.y5_c00448{bottom:707.430000px;}
.y2f_c00448{bottom:711.480000px;}
.y4_c00448{bottom:726.330000px;}
.y2e_c00448{bottom:730.380000px;}
.y3_c00448{bottom:743.880000px;}
.y2d_c00448{bottom:748.230000px;}
.y2_c00448{bottom:761.730000px;}
.y2c_c00448{bottom:766.080000px;}
.y1_c00448{bottom:780.630000px;}
.y2b_c00448{bottom:784.380000px;}
.h5_c00448{height:13.200074px;}
.h6_c00448{height:43.804688px;}
.h2_c00448{height:62.880000px;}
.h3_c00448{height:70.664062px;}
.h4_c00448{height:71.544000px;}
.h0_c00448{height:835.950000px;}
.h1_c00448{height:836.250000px;}
.w2_c00448{width:104.875500px;}
.w1_c00448{width:574.500000px;}
.w0_c00448{width:574.575000px;}
.x0_c00448{left:0.000000px;}
.xb_c00448{left:18.900000px;}
.x7_c00448{left:22.200000px;}
.x6_c00448{left:23.250000px;}
.x9_c00448{left:61.650000px;}
.xa_c00448{left:68.400000px;}
.x4_c00448{left:74.850000px;}
.x1_c00448{left:82.350000px;}
.x5_c00448{left:84.000000px;}
.x2_c00448{left:85.050000px;}
.x3_c00448{left:86.100000px;}
.x8_c00448{left:131.850000px;}
.x11_c00448{left:239.101730px;}
.xf_c00448{left:298.650000px;}
.xc_c00448{left:300.000000px;}
.xd_c00448{left:301.050000px;}
.xe_c00448{left:327.750000px;}
.x10_c00448{left:408.300000px;}
@media print{
.v0_c00448{vertical-align:0.000000pt;}
.ls2_c00448{letter-spacing:0.000000pt;}
.ls0_c00448{letter-spacing:1.066667pt;}
.ls3_c00448{letter-spacing:2.666667pt;}
.ls1_c00448{letter-spacing:14.826667pt;}
.ws0_c00448{word-spacing:-12.746667pt;}
.ws1_c00448{word-spacing:-12.586667pt;}
.ws2_c00448{word-spacing:0.000000pt;}
._26_c00448{margin-left:-17.493333pt;}
._27_c00448{margin-left:-12.064000pt;}
._21_c00448{margin-left:-9.920000pt;}
._28_c00448{margin-left:-7.946667pt;}
._f_c00448{margin-left:-6.784000pt;}
._16_c00448{margin-left:-5.760000pt;}
._e_c00448{margin-left:-4.853333pt;}
._10_c00448{margin-left:-3.872000pt;}
._11_c00448{margin-left:-2.944000pt;}
._2_c00448{margin-left:-1.653333pt;}
._0_c00448{width:1.333333pt;}
._5_c00448{width:2.506667pt;}
._a_c00448{width:3.573333pt;}
._7_c00448{width:4.693333pt;}
._8_c00448{width:6.293333pt;}
._d_c00448{width:8.053333pt;}
._15_c00448{width:9.226667pt;}
._b_c00448{width:10.293333pt;}
._3_c00448{width:11.253333pt;}
._12_c00448{width:12.672000pt;}
._17_c00448{width:13.706667pt;}
._14_c00448{width:14.837333pt;}
._c_c00448{width:16.106667pt;}
._13_c00448{width:17.632000pt;}
._1e_c00448{width:18.666667pt;}
._1f_c00448{width:19.573333pt;}
._6_c00448{width:20.853333pt;}
._1b_c00448{width:22.400000pt;}
._1_c00448{width:23.466667pt;}
._1c_c00448{width:25.600000pt;}
._1d_c00448{width:26.602667pt;}
._23_c00448{width:27.680000pt;}
._1a_c00448{width:29.525333pt;}
._9_c00448{width:31.306667pt;}
._4_c00448{width:32.853333pt;}
._24_c00448{width:34.080000pt;}
._25_c00448{width:38.528000pt;}
._18_c00448{width:44.106667pt;}
._22_c00448{width:45.920000pt;}
._20_c00448{width:59.370667pt;}
._29_c00448{width:118.293333pt;}
._19_c00448{width:157.194667pt;}
.fs3_c00448{font-size:42.666667pt;}
.fs0_c00448{font-size:53.333333pt;}
.fs2_c00448{font-size:58.666667pt;}
.fs1_c00448{font-size:64.000000pt;}
.y0_c00448{bottom:0.000000pt;}
.y56_c00448{bottom:2.760000pt;}
.y55_c00448{bottom:6.425206pt;}
.y54_c00448{bottom:37.226667pt;}
.y29_c00448{bottom:50.160000pt;}
.y53_c00448{bottom:53.493333pt;}
.y2a_c00448{bottom:61.226667pt;}
.y28_c00448{bottom:67.493333pt;}
.y52_c00448{bottom:69.893333pt;}
.y27_c00448{bottom:83.760000pt;}
.y51_c00448{bottom:86.160000pt;}
.y26_c00448{bottom:100.160000pt;}
.y50_c00448{bottom:102.293333pt;}
.y25_c00448{bottom:115.493333pt;}
.y4f_c00448{bottom:118.826667pt;}
.y24_c00448{bottom:132.560000pt;}
.y4e_c00448{bottom:134.693333pt;}
.y23_c00448{bottom:148.826667pt;}
.y4d_c00448{bottom:150.693333pt;}
.y22_c00448{bottom:164.960000pt;}
.y4c_c00448{bottom:166.826667pt;}
.y21_c00448{bottom:180.960000pt;}
.y4b_c00448{bottom:183.093333pt;}
.y20_c00448{bottom:196.826667pt;}
.y4a_c00448{bottom:198.960000pt;}
.y1f_c00448{bottom:213.360000pt;}
.y49_c00448{bottom:215.093333pt;}
.y1e_c00448{bottom:228.960000pt;}
.y48_c00448{bottom:231.360000pt;}
.y1d_c00448{bottom:245.493333pt;}
.y47_c00448{bottom:247.893333pt;}
.y1c_c00448{bottom:261.093333pt;}
.y46_c00448{bottom:263.760000pt;}
.y1b_c00448{bottom:277.226667pt;}
.y45_c00448{bottom:279.626667pt;}
.y1a_c00448{bottom:292.560000pt;}
.y44_c00448{bottom:295.760000pt;}
.y19_c00448{bottom:309.093333pt;}
.y43_c00448{bottom:312.026667pt;}
.y18_c00448{bottom:324.960000pt;}
.y42_c00448{bottom:327.893333pt;}
.y17_c00448{bottom:341.360000pt;}
.y41_c00448{bottom:344.160000pt;}
.y16_c00448{bottom:357.360000pt;}
.y40_c00448{bottom:360.026667pt;}
.y15_c00448{bottom:372.960000pt;}
.y3f_c00448{bottom:376.160000pt;}
.y14_c00448{bottom:389.093333pt;}
.y3e_c00448{bottom:391.893333pt;}
.y13_c00448{bottom:405.360000pt;}
.y3d_c00448{bottom:408.293333pt;}
.y12_c00448{bottom:421.760000pt;}
.y3c_c00448{bottom:424.293333pt;}
.y11_c00448{bottom:437.493333pt;}
.y3b_c00448{bottom:440.693333pt;}
.y10_c00448{bottom:452.960000pt;}
.y3a_c00448{bottom:456.693333pt;}
.yf_c00448{bottom:468.026667pt;}
.y39_c00448{bottom:471.893333pt;}
.ye_c00448{bottom:483.360000pt;}
.y38_c00448{bottom:487.493333pt;}
.yd_c00448{bottom:499.893333pt;}
.y37_c00448{bottom:504.560000pt;}
.yc_c00448{bottom:516.026667pt;}
.y36_c00448{bottom:520.293333pt;}
.yb_c00448{bottom:531.893333pt;}
.y35_c00448{bottom:535.893333pt;}
.ya_c00448{bottom:547.893333pt;}
.y34_c00448{bottom:552.026667pt;}
.y9_c00448{bottom:564.293333pt;}
.y33_c00448{bottom:568.560000pt;}
.y8_c00448{bottom:580.293333pt;}
.y32_c00448{bottom:584.426667pt;}
.y7_c00448{bottom:596.693333pt;}
.y31_c00448{bottom:600.693333pt;}
.y6_c00448{bottom:612.960000pt;}
.y30_c00448{bottom:616.560000pt;}
.y5_c00448{bottom:628.826667pt;}
.y2f_c00448{bottom:632.426667pt;}
.y4_c00448{bottom:645.626667pt;}
.y2e_c00448{bottom:649.226667pt;}
.y3_c00448{bottom:661.226667pt;}
.y2d_c00448{bottom:665.093333pt;}
.y2_c00448{bottom:677.093333pt;}
.y2c_c00448{bottom:680.960000pt;}
.y1_c00448{bottom:693.893333pt;}
.y2b_c00448{bottom:697.226667pt;}
.h5_c00448{height:11.733399pt;}
.h6_c00448{height:38.937500pt;}
.h2_c00448{height:55.893333pt;}
.h3_c00448{height:62.812500pt;}
.h4_c00448{height:63.594667pt;}
.h0_c00448{height:743.066667pt;}
.h1_c00448{height:743.333333pt;}
.w2_c00448{width:93.222667pt;}
.w1_c00448{width:510.666667pt;}
.w0_c00448{width:510.733333pt;}
.x0_c00448{left:0.000000pt;}
.xb_c00448{left:16.800000pt;}
.x7_c00448{left:19.733333pt;}
.x6_c00448{left:20.666667pt;}
.x9_c00448{left:54.800000pt;}
.xa_c00448{left:60.800000pt;}
.x4_c00448{left:66.533333pt;}
.x1_c00448{left:73.200000pt;}
.x5_c00448{left:74.666667pt;}
.x2_c00448{left:75.600000pt;}
.x3_c00448{left:76.533333pt;}
.x8_c00448{left:117.200000pt;}
.x11_c00448{left:212.534871pt;}
.xf_c00448{left:265.466667pt;}
.xc_c00448{left:266.666667pt;}
.xd_c00448{left:267.600000pt;}
.xe_c00448{left:291.333333pt;}
.x10_c00448{left:362.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_296a5394c3f79593f021b13c.woff2')format("woff");}.ff1_c00449{font-family:ff1_c00449;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00449;src:url('chunks/assets/font_6ff69747049e402e35d82dd5.woff2')format("woff");}.ff2_c00449{font-family:ff2_c00449;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00449;src:url('chunks/assets/font_4be75dc329b02945cb3329d0.woff2')format("woff");}.ff3_c00449{font-family:ff3_c00449;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00449;src:url('chunks/assets/font_798e60ab0d3931cc16d149c7.woff2')format("woff");}.ff4_c00449{font-family:ff4_c00449;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00449;src:url('chunks/assets/font_a5d3d30e9b5cda66e9ed2ffd.woff2')format("woff");}.ff5_c00449{font-family:ff5_c00449;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00449;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff6_c00449{font-family:ff6_c00449;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00449{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00449{vertical-align:0.000000px;}
.ls3_c00449{letter-spacing:0.000000px;}
.ls0_c00449{letter-spacing:2.856000px;}
.ls2_c00449{letter-spacing:4.800000px;}
.ls4_c00449{letter-spacing:6.000000px;}
.ls1_c00449{letter-spacing:21.000000px;}
.sc__c00449{text-shadow:none;}
.sc0_c00449{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00449{-webkit-text-stroke:0px transparent;}
.sc0_c00449{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00449{word-spacing:-37.746000px;}
.ws0_c00449{word-spacing:-17.250000px;}
.ws1_c00449{word-spacing:-14.160000px;}
.ws3_c00449{word-spacing:0.000000px;}
._2a_c00449{margin-left:-14.760000px;}
._3a_c00449{margin-left:-13.200000px;}
._11_c00449{margin-left:-10.800000px;}
._f_c00449{margin-left:-8.820000px;}
._29_c00449{margin-left:-7.020000px;}
._12_c00449{margin-left:-5.280000px;}
._1b_c00449{margin-left:-4.080000px;}
._8_c00449{margin-left:-2.100000px;}
._0_c00449{margin-left:-1.080000px;}
._3_c00449{width:1.500000px;}
._1_c00449{width:3.060000px;}
._10_c00449{width:4.080000px;}
._1f_c00449{width:5.340000px;}
._e_c00449{width:6.720000px;}
._d_c00449{width:8.100000px;}
._7_c00449{width:9.300000px;}
._9_c00449{width:11.280000px;}
._2_c00449{width:12.360000px;}
._c_c00449{width:15.660000px;}
._23_c00449{width:16.740000px;}
._13_c00449{width:17.820000px;}
._14_c00449{width:19.200000px;}
._30_c00449{width:20.580000px;}
._6_c00449{width:21.840000px;}
._19_c00449{width:22.860000px;}
._5_c00449{width:25.080000px;}
._39_c00449{width:26.100000px;}
._b_c00449{width:27.720000px;}
._24_c00449{width:29.400000px;}
._35_c00449{width:31.440000px;}
._1a_c00449{width:33.540000px;}
._16_c00449{width:36.420000px;}
._1e_c00449{width:38.400000px;}
._17_c00449{width:39.960000px;}
._26_c00449{width:41.580000px;}
._34_c00449{width:46.800000px;}
._32_c00449{width:50.340000px;}
._2e_c00449{width:84.180000px;}
._3b_c00449{width:96.000000px;}
._4_c00449{width:100.080000px;}
._3c_c00449{width:101.700000px;}
._38_c00449{width:107.280000px;}
._2f_c00449{width:109.200000px;}
._2d_c00449{width:110.640000px;}
._27_c00449{width:112.200000px;}
._37_c00449{width:113.520000px;}
._22_c00449{width:114.540000px;}
._31_c00449{width:115.620000px;}
._20_c00449{width:118.140000px;}
._21_c00449{width:120.300000px;}
._25_c00449{width:123.060000px;}
._33_c00449{width:124.440000px;}
._18_c00449{width:127.620000px;}
._a_c00449{width:130.260000px;}
._15_c00449{width:136.620000px;}
._2b_c00449{width:170.760000px;}
._1d_c00449{width:198.360000px;}
._2c_c00449{width:218.700000px;}
._36_c00449{width:237.000000px;}
._28_c00449{width:307.020000px;}
._1c_c00449{width:310.560000px;}
.fc2_c00449{color:transparent;}
.fc1_c00449{color:rgb(128,128,128);}
.fc0_c00449{color:rgb(0,0,0);}
.fs2_c00449{font-size:48.000000px;}
.fs0_c00449{font-size:60.000000px;}
.fs3_c00449{font-size:66.000000px;}
.fs1_c00449{font-size:69.000000px;}
.y0_c00449{bottom:0.000000px;}
.y2c_c00449{bottom:3.105000px;}
.y2b_c00449{bottom:7.228355px;}
.y2a_c00449{bottom:28.635000px;}
.y29_c00449{bottom:41.835000px;}
.y28_c00449{bottom:60.735000px;}
.y27_c00449{bottom:78.285000px;}
.y26_c00449{bottom:97.185000px;}
.y25_c00449{bottom:115.785000px;}
.y24_c00449{bottom:133.935000px;}
.y23_c00449{bottom:151.785000px;}
.y22_c00449{bottom:170.985000px;}
.y21_c00449{bottom:188.985000px;}
.y20_c00449{bottom:207.135000px;}
.y1f_c00449{bottom:225.135000px;}
.y1e_c00449{bottom:243.885000px;}
.y1d_c00449{bottom:261.585000px;}
.y1c_c00449{bottom:279.735000px;}
.y1b_c00449{bottom:297.585000px;}
.y1a_c00449{bottom:315.585000px;}
.y19_c00449{bottom:333.735000px;}
.y18_c00449{bottom:352.035000px;}
.y17_c00449{bottom:370.485000px;}
.y16_c00449{bottom:388.485000px;}
.y15_c00449{bottom:407.235000px;}
.y14_c00449{bottom:425.535000px;}
.y13_c00449{bottom:443.835000px;}
.y12_c00449{bottom:461.985000px;}
.y11_c00449{bottom:478.935000px;}
.y10_c00449{bottom:498.435000px;}
.yf_c00449{bottom:516.285000px;}
.ye_c00449{bottom:534.285000px;}
.yd_c00449{bottom:552.735000px;}
.yc_c00449{bottom:570.585000px;}
.yb_c00449{bottom:588.885000px;}
.ya_c00449{bottom:607.035000px;}
.y9_c00449{bottom:625.035000px;}
.y8_c00449{bottom:643.185000px;}
.y7_c00449{bottom:661.485000px;}
.y6_c00449{bottom:680.385000px;}
.y5_c00449{bottom:698.535000px;}
.y4_c00449{bottom:716.535000px;}
.y3_c00449{bottom:734.985000px;}
.y2_c00449{bottom:753.285000px;}
.y1_c00449{bottom:771.735000px;}
.h6_c00449{height:13.200074px;}
.h7_c00449{height:43.804688px;}
.h3_c00449{height:62.880000px;}
.h4_c00449{height:64.020000px;}
.h5_c00449{height:70.422000px;}
.h2_c00449{height:73.623000px;}
.h1_c00449{height:834.750000px;}
.h0_c00449{height:834.825000px;}
.w2_c00449{width:104.875500px;}
.w1_c00449{width:574.500000px;}
.w0_c00449{width:574.575000px;}
.x0_c00449{left:0.000000px;}
.x5_c00449{left:82.650000px;}
.x3_c00449{left:84.000000px;}
.x2_c00449{left:85.050000px;}
.x4_c00449{left:86.400000px;}
.x1_c00449{left:87.750000px;}
.x6_c00449{left:89.700000px;}
.x7_c00449{left:90.750000px;}
.x8_c00449{left:91.800000px;}
.x9_c00449{left:239.101730px;}
@media print{
.v0_c00449{vertical-align:0.000000pt;}
.ls3_c00449{letter-spacing:0.000000pt;}
.ls0_c00449{letter-spacing:2.538667pt;}
.ls2_c00449{letter-spacing:4.266667pt;}
.ls4_c00449{letter-spacing:5.333333pt;}
.ls1_c00449{letter-spacing:18.666667pt;}
.ws2_c00449{word-spacing:-33.552000pt;}
.ws0_c00449{word-spacing:-15.333333pt;}
.ws1_c00449{word-spacing:-12.586667pt;}
.ws3_c00449{word-spacing:0.000000pt;}
._2a_c00449{margin-left:-13.120000pt;}
._3a_c00449{margin-left:-11.733333pt;}
._11_c00449{margin-left:-9.600000pt;}
._f_c00449{margin-left:-7.840000pt;}
._29_c00449{margin-left:-6.240000pt;}
._12_c00449{margin-left:-4.693333pt;}
._1b_c00449{margin-left:-3.626667pt;}
._8_c00449{margin-left:-1.866667pt;}
._0_c00449{margin-left:-0.960000pt;}
._3_c00449{width:1.333333pt;}
._1_c00449{width:2.720000pt;}
._10_c00449{width:3.626667pt;}
._1f_c00449{width:4.746667pt;}
._e_c00449{width:5.973333pt;}
._d_c00449{width:7.200000pt;}
._7_c00449{width:8.266667pt;}
._9_c00449{width:10.026667pt;}
._2_c00449{width:10.986667pt;}
._c_c00449{width:13.920000pt;}
._23_c00449{width:14.880000pt;}
._13_c00449{width:15.840000pt;}
._14_c00449{width:17.066667pt;}
._30_c00449{width:18.293333pt;}
._6_c00449{width:19.413333pt;}
._19_c00449{width:20.320000pt;}
._5_c00449{width:22.293333pt;}
._39_c00449{width:23.200000pt;}
._b_c00449{width:24.640000pt;}
._24_c00449{width:26.133333pt;}
._35_c00449{width:27.946667pt;}
._1a_c00449{width:29.813333pt;}
._16_c00449{width:32.373333pt;}
._1e_c00449{width:34.133333pt;}
._17_c00449{width:35.520000pt;}
._26_c00449{width:36.960000pt;}
._34_c00449{width:41.600000pt;}
._32_c00449{width:44.746667pt;}
._2e_c00449{width:74.826667pt;}
._3b_c00449{width:85.333333pt;}
._4_c00449{width:88.960000pt;}
._3c_c00449{width:90.400000pt;}
._38_c00449{width:95.360000pt;}
._2f_c00449{width:97.066667pt;}
._2d_c00449{width:98.346667pt;}
._27_c00449{width:99.733333pt;}
._37_c00449{width:100.906667pt;}
._22_c00449{width:101.813333pt;}
._31_c00449{width:102.773333pt;}
._20_c00449{width:105.013333pt;}
._21_c00449{width:106.933333pt;}
._25_c00449{width:109.386667pt;}
._33_c00449{width:110.613333pt;}
._18_c00449{width:113.440000pt;}
._a_c00449{width:115.786667pt;}
._15_c00449{width:121.440000pt;}
._2b_c00449{width:151.786667pt;}
._1d_c00449{width:176.320000pt;}
._2c_c00449{width:194.400000pt;}
._36_c00449{width:210.666667pt;}
._28_c00449{width:272.906667pt;}
._1c_c00449{width:276.053333pt;}
.fs2_c00449{font-size:42.666667pt;}
.fs0_c00449{font-size:53.333333pt;}
.fs3_c00449{font-size:58.666667pt;}
.fs1_c00449{font-size:61.333333pt;}
.y0_c00449{bottom:0.000000pt;}
.y2c_c00449{bottom:2.760000pt;}
.y2b_c00449{bottom:6.425204pt;}
.y2a_c00449{bottom:25.453333pt;}
.y29_c00449{bottom:37.186667pt;}
.y28_c00449{bottom:53.986667pt;}
.y27_c00449{bottom:69.586667pt;}
.y26_c00449{bottom:86.386667pt;}
.y25_c00449{bottom:102.920000pt;}
.y24_c00449{bottom:119.053333pt;}
.y23_c00449{bottom:134.920000pt;}
.y22_c00449{bottom:151.986667pt;}
.y21_c00449{bottom:167.986667pt;}
.y20_c00449{bottom:184.120000pt;}
.y1f_c00449{bottom:200.120000pt;}
.y1e_c00449{bottom:216.786667pt;}
.y1d_c00449{bottom:232.520000pt;}
.y1c_c00449{bottom:248.653333pt;}
.y1b_c00449{bottom:264.520000pt;}
.y1a_c00449{bottom:280.520000pt;}
.y19_c00449{bottom:296.653333pt;}
.y18_c00449{bottom:312.920000pt;}
.y17_c00449{bottom:329.320000pt;}
.y16_c00449{bottom:345.320000pt;}
.y15_c00449{bottom:361.986667pt;}
.y14_c00449{bottom:378.253333pt;}
.y13_c00449{bottom:394.520000pt;}
.y12_c00449{bottom:410.653333pt;}
.y11_c00449{bottom:425.720000pt;}
.y10_c00449{bottom:443.053333pt;}
.yf_c00449{bottom:458.920000pt;}
.ye_c00449{bottom:474.920000pt;}
.yd_c00449{bottom:491.320000pt;}
.yc_c00449{bottom:507.186667pt;}
.yb_c00449{bottom:523.453333pt;}
.ya_c00449{bottom:539.586667pt;}
.y9_c00449{bottom:555.586667pt;}
.y8_c00449{bottom:571.720000pt;}
.y7_c00449{bottom:587.986667pt;}
.y6_c00449{bottom:604.786667pt;}
.y5_c00449{bottom:620.920000pt;}
.y4_c00449{bottom:636.920000pt;}
.y3_c00449{bottom:653.320000pt;}
.y2_c00449{bottom:669.586667pt;}
.y1_c00449{bottom:685.986667pt;}
.h6_c00449{height:11.733399pt;}
.h7_c00449{height:38.937500pt;}
.h3_c00449{height:55.893333pt;}
.h4_c00449{height:56.906667pt;}
.h5_c00449{height:62.597333pt;}
.h2_c00449{height:65.442667pt;}
.h1_c00449{height:742.000000pt;}
.h0_c00449{height:742.066667pt;}
.w2_c00449{width:93.222667pt;}
.w1_c00449{width:510.666667pt;}
.w0_c00449{width:510.733333pt;}
.x0_c00449{left:0.000000pt;}
.x5_c00449{left:73.466667pt;}
.x3_c00449{left:74.666667pt;}
.x2_c00449{left:75.600000pt;}
.x4_c00449{left:76.800000pt;}
.x1_c00449{left:78.000000pt;}
.x6_c00449{left:79.733333pt;}
.x7_c00449{left:80.666667pt;}
.x8_c00449{left:81.600000pt;}
.x9_c00449{left:212.534871pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f7cc5e0ed1430d476ce2903f.woff2')format("woff");}.ff1_c00450{font-family:ff1_c00450;line-height:1.437000;font-style:normal;font-weight:normal;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_4f9fa83382ee28485db4216e.woff2')format("woff");}.ff2_c00450{font-family:ff2_c00450;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00450;src:url('chunks/assets/font_bbb0f53016e13e0f7da18e3a.woff2')format("woff");}.ff3_c00450{font-family:ff3_c00450;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00450;src:url('chunks/assets/font_12b281780f47a3ba19c33025.woff2')format("woff");}.ff4_c00450{font-family:ff4_c00450;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00450;src:url('chunks/assets/font_9dbff6b187fc9b0bbea320a6.woff2')format("woff");}.ff5_c00450{font-family:ff5_c00450;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00450;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff6_c00450{font-family:ff6_c00450;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls4_c00450{letter-spacing:-6.000000px;}
.ls2_c00450{letter-spacing:0.000000px;}
.ls3_c00450{letter-spacing:3.000000px;}
.ls1_c00450{letter-spacing:6.000000px;}
.ls0_c00450{letter-spacing:9.000000px;}
.sc__c00450{text-shadow:none;}
.sc0_c00450{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00450{-webkit-text-stroke:0px transparent;}
.sc0_c00450{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00450{word-spacing:-45.258000px;}
.ws0_c00450{word-spacing:-14.160000px;}
.ws2_c00450{word-spacing:-13.452000px;}
.ws3_c00450{word-spacing:0.000000px;}
._22_c00450{margin-left:-17.244000px;}
._23_c00450{margin-left:-15.813000px;}
._12_c00450{margin-left:-14.673000px;}
._d_c00450{margin-left:-11.598000px;}
._1d_c00450{margin-left:-10.152000px;}
._0_c00450{margin-left:-8.829000px;}
._1_c00450{margin-left:-6.723000px;}
._15_c00450{margin-left:-5.493000px;}
._8_c00450{margin-left:-3.720000px;}
._3_c00450{margin-left:-2.268000px;}
._f_c00450{margin-left:-1.140000px;}
._4_c00450{width:1.140000px;}
._5_c00450{width:3.120000px;}
._c_c00450{width:4.647000px;}
._a_c00450{width:5.697000px;}
._10_c00450{width:6.873000px;}
._7_c00450{width:7.980000px;}
._6_c00450{width:9.900000px;}
._9_c00450{width:11.229000px;}
._11_c00450{width:13.317000px;}
._e_c00450{width:16.311000px;}
._b_c00450{width:18.078000px;}
._1b_c00450{width:19.560000px;}
._25_c00450{width:20.640000px;}
._27_c00450{width:21.708000px;}
._13_c00450{width:22.785000px;}
._14_c00450{width:23.940000px;}
._1e_c00450{width:25.296000px;}
._2_c00450{width:26.811000px;}
._26_c00450{width:28.383000px;}
._17_c00450{width:31.560000px;}
._18_c00450{width:35.820000px;}
._1c_c00450{width:36.900000px;}
._20_c00450{width:45.846000px;}
._1f_c00450{width:46.878000px;}
._24_c00450{width:49.149000px;}
._16_c00450{width:63.960000px;}
._1a_c00450{width:76.584000px;}
._19_c00450{width:88.440000px;}
._28_c00450{width:132.954000px;}
._21_c00450{width:420.060000px;}
.fc2_c00450{color:transparent;}
.fc1_c00450{color:rgb(128,128,128);}
.fc0_c00450{color:rgb(0,0,0);}
.fs6_c00450{font-size:48.000000px;}
.fs2_c00450{font-size:57.000000px;}
.fs1_c00450{font-size:60.000000px;}
.fs5_c00450{font-size:63.000000px;}
.fs4_c00450{font-size:66.000000px;}
.fs3_c00450{font-size:69.000000px;}
.fs0_c00450{font-size:81.000000px;}
.y0_c00450{bottom:0.000000px;}
.y57_c00450{bottom:3.105000px;}
.y56_c00450{bottom:7.228369px;}
.y55_c00450{bottom:39.420000px;}
.y2a_c00450{bottom:53.970000px;}
.y54_c00450{bottom:57.720000px;}
.y29_c00450{bottom:73.470000px;}
.y53_c00450{bottom:75.870000px;}
.y28_c00450{bottom:91.470000px;}
.y52_c00450{bottom:94.470000px;}
.y27_c00450{bottom:109.620000px;}
.y51_c00450{bottom:112.320000px;}
.y26_c00450{bottom:127.920000px;}
.y50_c00450{bottom:130.920000px;}
.y25_c00450{bottom:146.070000px;}
.y4f_c00450{bottom:148.770000px;}
.y24_c00450{bottom:164.070000px;}
.y4e_c00450{bottom:166.770000px;}
.y23_c00450{bottom:182.820000px;}
.y4d_c00450{bottom:185.520000px;}
.y22_c00450{bottom:200.820000px;}
.y4c_c00450{bottom:203.220000px;}
.y21_c00450{bottom:218.670000px;}
.y4b_c00450{bottom:221.670000px;}
.y20_c00450{bottom:236.970000px;}
.y4a_c00450{bottom:239.220000px;}
.y1f_c00450{bottom:255.120000px;}
.y49_c00450{bottom:258.120000px;}
.y1e_c00450{bottom:273.420000px;}
.y48_c00450{bottom:276.120000px;}
.y1d_c00450{bottom:290.970000px;}
.y47_c00450{bottom:294.570000px;}
.y1c_c00450{bottom:309.720000px;}
.y46_c00450{bottom:312.120000px;}
.y1b_c00450{bottom:327.720000px;}
.y45_c00450{bottom:330.720000px;}
.y1a_c00450{bottom:345.870000px;}
.y44_c00450{bottom:349.020000px;}
.y19_c00450{bottom:363.870000px;}
.y43_c00450{bottom:367.020000px;}
.y18_c00450{bottom:381.420000px;}
.y42_c00450{bottom:385.320000px;}
.y17_c00450{bottom:399.870000px;}
.y41_c00450{bottom:403.620000px;}
.y16_c00450{bottom:417.870000px;}
.y40_c00450{bottom:421.170000px;}
.y15_c00450{bottom:436.020000px;}
.y3f_c00450{bottom:439.470000px;}
.y14_c00450{bottom:453.570000px;}
.y3e_c00450{bottom:457.320000px;}
.y13_c00450{bottom:471.870000px;}
.y3d_c00450{bottom:475.470000px;}
.y12_c00450{bottom:489.720000px;}
.y3c_c00450{bottom:493.470000px;}
.y11_c00450{bottom:507.570000px;}
.y3b_c00450{bottom:512.670000px;}
.y10_c00450{bottom:524.370000px;}
.y3a_c00450{bottom:529.170000px;}
.yf_c00450{bottom:541.620000px;}
.y39_c00450{bottom:546.720000px;}
.ye_c00450{bottom:560.220000px;}
.y38_c00450{bottom:565.020000px;}
.yd_c00450{bottom:578.520000px;}
.y37_c00450{bottom:583.470000px;}
.yc_c00450{bottom:596.070000px;}
.y36_c00450{bottom:601.470000px;}
.yb_c00450{bottom:614.220000px;}
.y35_c00450{bottom:620.370000px;}
.ya_c00450{bottom:632.520000px;}
.y34_c00450{bottom:637.920000px;}
.y9_c00450{bottom:651.270000px;}
.y33_c00450{bottom:656.370000px;}
.y8_c00450{bottom:670.320000px;}
.y32_c00450{bottom:674.220000px;}
.y7_c00450{bottom:687.120000px;}
.y31_c00450{bottom:692.520000px;}
.y6_c00450{bottom:705.270000px;}
.y30_c00450{bottom:710.670000px;}
.y5_c00450{bottom:723.570000px;}
.y2f_c00450{bottom:728.670000px;}
.y4_c00450{bottom:742.470000px;}
.y2e_c00450{bottom:747.270000px;}
.y3_c00450{bottom:760.770000px;}
.y2d_c00450{bottom:766.020000px;}
.y2_c00450{bottom:778.320000px;}
.y2c_c00450{bottom:783.720000px;}
.y1_c00450{bottom:799.770000px;}
.y2b_c00450{bottom:801.570000px;}
.h8_c00450{height:13.200073px;}
.h9_c00450{height:43.804688px;}
.h4_c00450{height:59.736000px;}
.h3_c00450{height:62.880000px;}
.h6_c00450{height:69.168000px;}
.h7_c00450{height:72.312000px;}
.h5_c00450{height:73.623000px;}
.h2_c00450{height:84.888000px;}
.h0_c00450{height:829.950000px;}
.h1_c00450{height:830.250000px;}
.w2_c00450{width:104.875500px;}
.w1_c00450{width:570.000000px;}
.w0_c00450{width:570.225000px;}
.x0_c00450{left:0.000000px;}
.x7_c00450{left:13.800000px;}
.x6_c00450{left:15.900000px;}
.x9_c00450{left:60.150000px;}
.x2_c00450{left:75.600000px;}
.x3_c00450{left:76.650000px;}
.x4_c00450{left:78.600000px;}
.x5_c00450{left:79.950000px;}
.x8_c00450{left:81.000000px;}
.x1_c00450{left:207.150000px;}
.x12_c00450{left:236.926758px;}
.xa_c00450{left:286.650000px;}
.xd_c00450{left:292.950000px;}
.xc_c00450{left:294.000000px;}
.xb_c00450{left:295.650000px;}
.xe_c00450{left:297.000000px;}
.xf_c00450{left:298.650000px;}
.x10_c00450{left:300.000000px;}
.x11_c00450{left:387.450000px;}
@media print{
.v0_c00450{vertical-align:0.000000pt;}
.ls4_c00450{letter-spacing:-5.333333pt;}
.ls2_c00450{letter-spacing:0.000000pt;}
.ls3_c00450{letter-spacing:2.666667pt;}
.ls1_c00450{letter-spacing:5.333333pt;}
.ls0_c00450{letter-spacing:8.000000pt;}
.ws1_c00450{word-spacing:-40.229333pt;}
.ws0_c00450{word-spacing:-12.586667pt;}
.ws2_c00450{word-spacing:-11.957333pt;}
.ws3_c00450{word-spacing:0.000000pt;}
._22_c00450{margin-left:-15.328000pt;}
._23_c00450{margin-left:-14.056000pt;}
._12_c00450{margin-left:-13.042667pt;}
._d_c00450{margin-left:-10.309333pt;}
._1d_c00450{margin-left:-9.024000pt;}
._0_c00450{margin-left:-7.848000pt;}
._1_c00450{margin-left:-5.976000pt;}
._15_c00450{margin-left:-4.882667pt;}
._8_c00450{margin-left:-3.306667pt;}
._3_c00450{margin-left:-2.016000pt;}
._f_c00450{margin-left:-1.013333pt;}
._4_c00450{width:1.013333pt;}
._5_c00450{width:2.773333pt;}
._c_c00450{width:4.130667pt;}
._a_c00450{width:5.064000pt;}
._10_c00450{width:6.109333pt;}
._7_c00450{width:7.093333pt;}
._6_c00450{width:8.800000pt;}
._9_c00450{width:9.981333pt;}
._11_c00450{width:11.837333pt;}
._e_c00450{width:14.498667pt;}
._b_c00450{width:16.069333pt;}
._1b_c00450{width:17.386667pt;}
._25_c00450{width:18.346667pt;}
._27_c00450{width:19.296000pt;}
._13_c00450{width:20.253333pt;}
._14_c00450{width:21.280000pt;}
._1e_c00450{width:22.485333pt;}
._2_c00450{width:23.832000pt;}
._26_c00450{width:25.229333pt;}
._17_c00450{width:28.053333pt;}
._18_c00450{width:31.840000pt;}
._1c_c00450{width:32.800000pt;}
._20_c00450{width:40.752000pt;}
._1f_c00450{width:41.669333pt;}
._24_c00450{width:43.688000pt;}
._16_c00450{width:56.853333pt;}
._1a_c00450{width:68.074667pt;}
._19_c00450{width:78.613333pt;}
._28_c00450{width:118.181333pt;}
._21_c00450{width:373.386667pt;}
.fs6_c00450{font-size:42.666667pt;}
.fs2_c00450{font-size:50.666667pt;}
.fs1_c00450{font-size:53.333333pt;}
.fs5_c00450{font-size:56.000000pt;}
.fs4_c00450{font-size:58.666667pt;}
.fs3_c00450{font-size:61.333333pt;}
.fs0_c00450{font-size:72.000000pt;}
.y0_c00450{bottom:0.000000pt;}
.y57_c00450{bottom:2.760000pt;}
.y56_c00450{bottom:6.425217pt;}
.y55_c00450{bottom:35.040000pt;}
.y2a_c00450{bottom:47.973333pt;}
.y54_c00450{bottom:51.306667pt;}
.y29_c00450{bottom:65.306667pt;}
.y53_c00450{bottom:67.440000pt;}
.y28_c00450{bottom:81.306667pt;}
.y52_c00450{bottom:83.973333pt;}
.y27_c00450{bottom:97.440000pt;}
.y51_c00450{bottom:99.840000pt;}
.y26_c00450{bottom:113.706667pt;}
.y50_c00450{bottom:116.373333pt;}
.y25_c00450{bottom:129.840000pt;}
.y4f_c00450{bottom:132.240000pt;}
.y24_c00450{bottom:145.840000pt;}
.y4e_c00450{bottom:148.240000pt;}
.y23_c00450{bottom:162.506667pt;}
.y4d_c00450{bottom:164.906667pt;}
.y22_c00450{bottom:178.506667pt;}
.y4c_c00450{bottom:180.640000pt;}
.y21_c00450{bottom:194.373333pt;}
.y4b_c00450{bottom:197.040000pt;}
.y20_c00450{bottom:210.640000pt;}
.y4a_c00450{bottom:212.640000pt;}
.y1f_c00450{bottom:226.773333pt;}
.y49_c00450{bottom:229.440000pt;}
.y1e_c00450{bottom:243.040000pt;}
.y48_c00450{bottom:245.440000pt;}
.y1d_c00450{bottom:258.640000pt;}
.y47_c00450{bottom:261.840000pt;}
.y1c_c00450{bottom:275.306667pt;}
.y46_c00450{bottom:277.440000pt;}
.y1b_c00450{bottom:291.306667pt;}
.y45_c00450{bottom:293.973333pt;}
.y1a_c00450{bottom:307.440000pt;}
.y44_c00450{bottom:310.240000pt;}
.y19_c00450{bottom:323.440000pt;}
.y43_c00450{bottom:326.240000pt;}
.y18_c00450{bottom:339.040000pt;}
.y42_c00450{bottom:342.506667pt;}
.y17_c00450{bottom:355.440000pt;}
.y41_c00450{bottom:358.773333pt;}
.y16_c00450{bottom:371.440000pt;}
.y40_c00450{bottom:374.373333pt;}
.y15_c00450{bottom:387.573333pt;}
.y3f_c00450{bottom:390.640000pt;}
.y14_c00450{bottom:403.173333pt;}
.y3e_c00450{bottom:406.506667pt;}
.y13_c00450{bottom:419.440000pt;}
.y3d_c00450{bottom:422.640000pt;}
.y12_c00450{bottom:435.306667pt;}
.y3c_c00450{bottom:438.640000pt;}
.y11_c00450{bottom:451.173333pt;}
.y3b_c00450{bottom:455.706667pt;}
.y10_c00450{bottom:466.106667pt;}
.y3a_c00450{bottom:470.373333pt;}
.yf_c00450{bottom:481.440000pt;}
.y39_c00450{bottom:485.973333pt;}
.ye_c00450{bottom:497.973333pt;}
.y38_c00450{bottom:502.240000pt;}
.yd_c00450{bottom:514.240000pt;}
.y37_c00450{bottom:518.640000pt;}
.yc_c00450{bottom:529.840000pt;}
.y36_c00450{bottom:534.640000pt;}
.yb_c00450{bottom:545.973333pt;}
.y35_c00450{bottom:551.440000pt;}
.ya_c00450{bottom:562.240000pt;}
.y34_c00450{bottom:567.040000pt;}
.y9_c00450{bottom:578.906667pt;}
.y33_c00450{bottom:583.440000pt;}
.y8_c00450{bottom:595.840000pt;}
.y32_c00450{bottom:599.306667pt;}
.y7_c00450{bottom:610.773333pt;}
.y31_c00450{bottom:615.573333pt;}
.y6_c00450{bottom:626.906667pt;}
.y30_c00450{bottom:631.706667pt;}
.y5_c00450{bottom:643.173333pt;}
.y2f_c00450{bottom:647.706667pt;}
.y4_c00450{bottom:659.973333pt;}
.y2e_c00450{bottom:664.240000pt;}
.y3_c00450{bottom:676.240000pt;}
.y2d_c00450{bottom:680.906667pt;}
.y2_c00450{bottom:691.840000pt;}
.y2c_c00450{bottom:696.640000pt;}
.y1_c00450{bottom:710.906667pt;}
.y2b_c00450{bottom:712.506667pt;}
.h8_c00450{height:11.733399pt;}
.h9_c00450{height:38.937500pt;}
.h4_c00450{height:53.098667pt;}
.h3_c00450{height:55.893333pt;}
.h6_c00450{height:61.482667pt;}
.h7_c00450{height:64.277333pt;}
.h5_c00450{height:65.442667pt;}
.h2_c00450{height:75.456000pt;}
.h0_c00450{height:737.733333pt;}
.h1_c00450{height:738.000000pt;}
.w2_c00450{width:93.222667pt;}
.w1_c00450{width:506.666667pt;}
.w0_c00450{width:506.866667pt;}
.x0_c00450{left:0.000000pt;}
.x7_c00450{left:12.266667pt;}
.x6_c00450{left:14.133333pt;}
.x9_c00450{left:53.466667pt;}
.x2_c00450{left:67.200000pt;}
.x3_c00450{left:68.133333pt;}
.x4_c00450{left:69.866667pt;}
.x5_c00450{left:71.066667pt;}
.x8_c00450{left:72.000000pt;}
.x1_c00450{left:184.133333pt;}
.x12_c00450{left:210.601563pt;}
.xa_c00450{left:254.800000pt;}
.xd_c00450{left:260.400000pt;}
.xc_c00450{left:261.333333pt;}
.xb_c00450{left:262.800000pt;}
.xe_c00450{left:264.000000pt;}
.xf_c00450{left:265.466667pt;}
.x10_c00450{left:266.666667pt;}
.x11_c00450{left:344.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e4a8edd20ea4c2a0d6e5f054.woff2')format("woff");}.ff1_c00451{font-family:ff1_c00451;line-height:1.437000;font-style:normal;font-weight:normal;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_71352b15b5c842caf22d4a44.woff2')format("woff");}.ff2_c00451{font-family:ff2_c00451;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00451;src:url('chunks/assets/font_e584a8ade5f9a617b962518f.woff2')format("woff");}.ff3_c00451{font-family:ff3_c00451;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00451;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff4_c00451{font-family:ff4_c00451;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00451;src:url('chunks/assets/font_e03a07c078d8ebdc7aba1eef.woff2')format("woff");}.ff5_c00451{font-family:ff5_c00451;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00451;src:url('chunks/assets/font_e605c3dc69a2dcea9c578d0a.woff2')format("woff");}.ff6_c00451{font-family:ff6_c00451;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00451;src:url('chunks/assets/font_fe030a29b1bd137ae50286c2.woff2')format("woff");}.ff7_c00451{font-family:ff7_c00451;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00451;src:url('chunks/assets/font_602fb0131a201ffc363ce618.woff2')format("woff");}.ff8_c00451{font-family:ff8_c00451;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00451;src:url('chunks/assets/font_fddd4f4eaac5aa853745a9b1.woff2')format("woff");}.ff9_c00451{font-family:ff9_c00451;line-height:1.575000;font-style:normal;font-weight: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_c00451;src:url('chunks/assets/font_65a1fa896b2a3fa32403c5e6.woff2')format("woff");}.ffa_c00451{font-family:ffa_c00451;line-height:1.437000;font-style:normal;font-weight: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_c00451;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ffb_c00451{font-family:ffb_c00451;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00451{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00451{vertical-align:0.000000px;}
.v1_c00451{vertical-align:56.400000px;}
.ls4_c00451{letter-spacing:0.000000px;}
.ls2_c00451{letter-spacing:1.111200px;}
.ls6_c00451{letter-spacing:3.000000px;}
.ls5_c00451{letter-spacing:6.000000px;}
.ls3_c00451{letter-spacing:8.478000px;}
.ls0_c00451{letter-spacing:10.170000px;}
.ls1_c00451{letter-spacing:14.244000px;}
.sc__c00451{text-shadow:none;}
.sc0_c00451{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00451{-webkit-text-stroke:0px transparent;}
.sc0_c00451{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00451{word-spacing:-37.200000px;}
.ws2_c00451{word-spacing:-22.500000px;}
.ws3_c00451{word-spacing:-15.000000px;}
.ws1_c00451{word-spacing:-14.160000px;}
.ws0_c00451{word-spacing:-0.040800px;}
.ws5_c00451{word-spacing:0.000000px;}
._1b_c00451{margin-left:-14.373000px;}
._26_c00451{margin-left:-11.970000px;}
._12_c00451{margin-left:-10.647000px;}
._21_c00451{margin-left:-8.892000px;}
._13_c00451{margin-left:-7.875000px;}
._14_c00451{margin-left:-6.426000px;}
._7_c00451{margin-left:-5.292000px;}
._11_c00451{margin-left:-3.402000px;}
._a_c00451{margin-left:-1.764000px;}
._6_c00451{width:1.701000px;}
._9_c00451{width:3.024000px;}
._8_c00451{width:4.095000px;}
._5_c00451{width:5.859000px;}
._10_c00451{width:7.308000px;}
._0_c00451{width:9.135000px;}
._2_c00451{width:10.647000px;}
._20_c00451{width:11.907000px;}
._3_c00451{width:12.978000px;}
._15_c00451{width:13.986000px;}
._25_c00451{width:16.947000px;}
._e_c00451{width:18.270000px;}
._d_c00451{width:19.908000px;}
._1e_c00451{width:21.294000px;}
._1d_c00451{width:23.373000px;}
._c_c00451{width:24.507000px;}
._f_c00451{width:25.893000px;}
._16_c00451{width:27.531000px;}
._1f_c00451{width:30.429000px;}
._18_c00451{width:31.559400px;}
._17_c00451{width:33.642000px;}
._27_c00451{width:34.650000px;}
._4_c00451{width:35.658000px;}
._24_c00451{width:37.611000px;}
._22_c00451{width:42.837000px;}
._23_c00451{width:45.423000px;}
._19_c00451{width:49.746000px;}
._1c_c00451{width:58.803000px;}
._28_c00451{width:63.189000px;}
._b_c00451{width:76.293000px;}
._1a_c00451{width:94.059000px;}
._1_c00451{width:253.323000px;}
.fc2_c00451{color:transparent;}
.fc1_c00451{color:rgb(128,128,128);}
.fc0_c00451{color:rgb(0,0,0);}
.fs2_c00451{font-size:40.800000px;}
.fs7_c00451{font-size:48.000000px;}
.fs1_c00451{font-size:51.000000px;}
.fs6_c00451{font-size:57.000000px;}
.fs4_c00451{font-size:60.000000px;}
.fs0_c00451{font-size:63.000000px;}
.fs3_c00451{font-size:66.000000px;}
.fs5_c00451{font-size:138.000000px;}
.y0_c00451{bottom:0.000000px;}
.y4e_c00451{bottom:3.105000px;}
.y4d_c00451{bottom:7.228363px;}
.y4c_c00451{bottom:37.200000px;}
.y4b_c00451{bottom:55.650000px;}
.y4a_c00451{bottom:74.550000px;}
.y28_c00451{bottom:75.300000px;}
.y49_c00451{bottom:92.850000px;}
.y27_c00451{bottom:93.450000px;}
.y48_c00451{bottom:111.150000px;}
.y26_c00451{bottom:112.050000px;}
.y47_c00451{bottom:129.600000px;}
.y25_c00451{bottom:129.900000px;}
.y24_c00451{bottom:133.500000px;}
.y46_c00451{bottom:147.600000px;}
.y45_c00451{bottom:166.050000px;}
.y23_c00451{bottom:166.500000px;}
.y44_c00451{bottom:184.050000px;}
.y22_c00451{bottom:184.650000px;}
.y21_c00451{bottom:202.800000px;}
.y20_c00451{bottom:221.100000px;}
.y43_c00451{bottom:238.650000px;}
.y1f_c00451{bottom:239.250000px;}
.y42_c00451{bottom:257.850000px;}
.y1e_c00451{bottom:274.500000px;}
.y41_c00451{bottom:275.400000px;}
.y1d_c00451{bottom:292.350000px;}
.y40_c00451{bottom:293.250000px;}
.y1c_c00451{bottom:310.800000px;}
.y3f_c00451{bottom:310.950000px;}
.y1b_c00451{bottom:329.400000px;}
.y3e_c00451{bottom:329.700000px;}
.y1a_c00451{bottom:346.500000px;}
.y3d_c00451{bottom:347.400000px;}
.y19_c00451{bottom:365.850000px;}
.y3c_c00451{bottom:366.150000px;}
.y18_c00451{bottom:384.150000px;}
.y17_c00451{bottom:402.000000px;}
.y3b_c00451{bottom:402.600000px;}
.y16_c00451{bottom:420.300000px;}
.y3a_c00451{bottom:420.600000px;}
.y15_c00451{bottom:438.150000px;}
.y39_c00451{bottom:438.750000px;}
.y14_c00451{bottom:456.300000px;}
.y38_c00451{bottom:456.750000px;}
.y13_c00451{bottom:474.750000px;}
.y37_c00451{bottom:475.200000px;}
.y12_c00451{bottom:492.750000px;}
.y36_c00451{bottom:493.050000px;}
.y11_c00451{bottom:510.750000px;}
.y35_c00451{bottom:511.350000px;}
.y10_c00451{bottom:528.300000px;}
.y34_c00451{bottom:529.200000px;}
.yf_c00451{bottom:546.750000px;}
.y33_c00451{bottom:547.050000px;}
.ye_c00451{bottom:564.600000px;}
.y32_c00451{bottom:565.050000px;}
.yd_c00451{bottom:582.900000px;}
.y31_c00451{bottom:583.500000px;}
.yc_c00451{bottom:600.750000px;}
.yb_c00451{bottom:618.000000px;}
.y30_c00451{bottom:619.350000px;}
.ya_c00451{bottom:636.900000px;}
.y2f_c00451{bottom:638.550000px;}
.y9_c00451{bottom:655.500000px;}
.y8_c00451{bottom:673.350000px;}
.y2e_c00451{bottom:674.250000px;}
.y7_c00451{bottom:691.800000px;}
.y2d_c00451{bottom:692.250000px;}
.y6_c00451{bottom:710.400000px;}
.y2c_c00451{bottom:710.550000px;}
.y5_c00451{bottom:727.950000px;}
.y2b_c00451{bottom:728.850000px;}
.y4_c00451{bottom:746.100000px;}
.y2a_c00451{bottom:747.300000px;}
.y3_c00451{bottom:764.100000px;}
.y29_c00451{bottom:765.750000px;}
.y2_c00451{bottom:783.000000px;}
.y1_c00451{bottom:802.200000px;}
.h9_c00451{height:13.200074px;}
.ha_c00451{height:43.804688px;}
.h6_c00451{height:59.690918px;}
.h5_c00451{height:62.880000px;}
.h8_c00451{height:64.020000px;}
.h3_c00451{height:64.571777px;}
.h2_c00451{height:66.024000px;}
.h4_c00451{height:70.422000px;}
.h7_c00451{height:144.624000px;}
.h1_c00451{height:842.250000px;}
.h0_c00451{height:842.400000px;}
.w2_c00451{width:104.875500px;}
.w1_c00451{width:579.750000px;}
.w0_c00451{width:579.975000px;}
.x0_c00451{left:0.000000px;}
.x1_c00451{left:94.200000px;}
.x2_c00451{left:95.550000px;}
.x3_c00451{left:96.600000px;}
.x4_c00451{left:97.950000px;}
.xb_c00451{left:101.550000px;}
.x9_c00451{left:103.350000px;}
.x6_c00451{left:111.000000px;}
.xa_c00451{left:136.350000px;}
.x7_c00451{left:140.400000px;}
.x5_c00451{left:177.300000px;}
.x8_c00451{left:184.950000px;}
.x11_c00451{left:241.801758px;}
.xc_c00451{left:315.150000px;}
.xd_c00451{left:316.650000px;}
.xe_c00451{left:318.150000px;}
.xf_c00451{left:319.500000px;}
.x10_c00451{left:495.150000px;}
@media print{
.v0_c00451{vertical-align:0.000000pt;}
.v1_c00451{vertical-align:50.133333pt;}
.ls4_c00451{letter-spacing:0.000000pt;}
.ls2_c00451{letter-spacing:0.987733pt;}
.ls6_c00451{letter-spacing:2.666667pt;}
.ls5_c00451{letter-spacing:5.333333pt;}
.ls3_c00451{letter-spacing:7.536000pt;}
.ls0_c00451{letter-spacing:9.040000pt;}
.ls1_c00451{letter-spacing:12.661333pt;}
.ws4_c00451{word-spacing:-33.066667pt;}
.ws2_c00451{word-spacing:-20.000000pt;}
.ws3_c00451{word-spacing:-13.333333pt;}
.ws1_c00451{word-spacing:-12.586667pt;}
.ws0_c00451{word-spacing:-0.036267pt;}
.ws5_c00451{word-spacing:0.000000pt;}
._1b_c00451{margin-left:-12.776000pt;}
._26_c00451{margin-left:-10.640000pt;}
._12_c00451{margin-left:-9.464000pt;}
._21_c00451{margin-left:-7.904000pt;}
._13_c00451{margin-left:-7.000000pt;}
._14_c00451{margin-left:-5.712000pt;}
._7_c00451{margin-left:-4.704000pt;}
._11_c00451{margin-left:-3.024000pt;}
._a_c00451{margin-left:-1.568000pt;}
._6_c00451{width:1.512000pt;}
._9_c00451{width:2.688000pt;}
._8_c00451{width:3.640000pt;}
._5_c00451{width:5.208000pt;}
._10_c00451{width:6.496000pt;}
._0_c00451{width:8.120000pt;}
._2_c00451{width:9.464000pt;}
._20_c00451{width:10.584000pt;}
._3_c00451{width:11.536000pt;}
._15_c00451{width:12.432000pt;}
._25_c00451{width:15.064000pt;}
._e_c00451{width:16.240000pt;}
._d_c00451{width:17.696000pt;}
._1e_c00451{width:18.928000pt;}
._1d_c00451{width:20.776000pt;}
._c_c00451{width:21.784000pt;}
._f_c00451{width:23.016000pt;}
._16_c00451{width:24.472000pt;}
._1f_c00451{width:27.048000pt;}
._18_c00451{width:28.052800pt;}
._17_c00451{width:29.904000pt;}
._27_c00451{width:30.800000pt;}
._4_c00451{width:31.696000pt;}
._24_c00451{width:33.432000pt;}
._22_c00451{width:38.077333pt;}
._23_c00451{width:40.376000pt;}
._19_c00451{width:44.218667pt;}
._1c_c00451{width:52.269333pt;}
._28_c00451{width:56.168000pt;}
._b_c00451{width:67.816000pt;}
._1a_c00451{width:83.608000pt;}
._1_c00451{width:225.176000pt;}
.fs2_c00451{font-size:36.266667pt;}
.fs7_c00451{font-size:42.666667pt;}
.fs1_c00451{font-size:45.333333pt;}
.fs6_c00451{font-size:50.666667pt;}
.fs4_c00451{font-size:53.333333pt;}
.fs0_c00451{font-size:56.000000pt;}
.fs3_c00451{font-size:58.666667pt;}
.fs5_c00451{font-size:122.666667pt;}
.y0_c00451{bottom:0.000000pt;}
.y4e_c00451{bottom:2.760000pt;}
.y4d_c00451{bottom:6.425212pt;}
.y4c_c00451{bottom:33.066667pt;}
.y4b_c00451{bottom:49.466667pt;}
.y4a_c00451{bottom:66.266667pt;}
.y28_c00451{bottom:66.933333pt;}
.y49_c00451{bottom:82.533333pt;}
.y27_c00451{bottom:83.066667pt;}
.y48_c00451{bottom:98.800000pt;}
.y26_c00451{bottom:99.600000pt;}
.y47_c00451{bottom:115.200000pt;}
.y25_c00451{bottom:115.466667pt;}
.y24_c00451{bottom:118.666667pt;}
.y46_c00451{bottom:131.200000pt;}
.y45_c00451{bottom:147.600000pt;}
.y23_c00451{bottom:148.000000pt;}
.y44_c00451{bottom:163.600000pt;}
.y22_c00451{bottom:164.133333pt;}
.y21_c00451{bottom:180.266667pt;}
.y20_c00451{bottom:196.533333pt;}
.y43_c00451{bottom:212.133333pt;}
.y1f_c00451{bottom:212.666667pt;}
.y42_c00451{bottom:229.200000pt;}
.y1e_c00451{bottom:244.000000pt;}
.y41_c00451{bottom:244.800000pt;}
.y1d_c00451{bottom:259.866667pt;}
.y40_c00451{bottom:260.666667pt;}
.y1c_c00451{bottom:276.266667pt;}
.y3f_c00451{bottom:276.400000pt;}
.y1b_c00451{bottom:292.800000pt;}
.y3e_c00451{bottom:293.066667pt;}
.y1a_c00451{bottom:308.000000pt;}
.y3d_c00451{bottom:308.800000pt;}
.y19_c00451{bottom:325.200000pt;}
.y3c_c00451{bottom:325.466667pt;}
.y18_c00451{bottom:341.466667pt;}
.y17_c00451{bottom:357.333333pt;}
.y3b_c00451{bottom:357.866667pt;}
.y16_c00451{bottom:373.600000pt;}
.y3a_c00451{bottom:373.866667pt;}
.y15_c00451{bottom:389.466667pt;}
.y39_c00451{bottom:390.000000pt;}
.y14_c00451{bottom:405.600000pt;}
.y38_c00451{bottom:406.000000pt;}
.y13_c00451{bottom:422.000000pt;}
.y37_c00451{bottom:422.400000pt;}
.y12_c00451{bottom:438.000000pt;}
.y36_c00451{bottom:438.266667pt;}
.y11_c00451{bottom:454.000000pt;}
.y35_c00451{bottom:454.533333pt;}
.y10_c00451{bottom:469.600000pt;}
.y34_c00451{bottom:470.400000pt;}
.yf_c00451{bottom:486.000000pt;}
.y33_c00451{bottom:486.266667pt;}
.ye_c00451{bottom:501.866667pt;}
.y32_c00451{bottom:502.266667pt;}
.yd_c00451{bottom:518.133333pt;}
.y31_c00451{bottom:518.666667pt;}
.yc_c00451{bottom:534.000000pt;}
.yb_c00451{bottom:549.333333pt;}
.y30_c00451{bottom:550.533333pt;}
.ya_c00451{bottom:566.133333pt;}
.y2f_c00451{bottom:567.600000pt;}
.y9_c00451{bottom:582.666667pt;}
.y8_c00451{bottom:598.533333pt;}
.y2e_c00451{bottom:599.333333pt;}
.y7_c00451{bottom:614.933333pt;}
.y2d_c00451{bottom:615.333333pt;}
.y6_c00451{bottom:631.466667pt;}
.y2c_c00451{bottom:631.600000pt;}
.y5_c00451{bottom:647.066667pt;}
.y2b_c00451{bottom:647.866667pt;}
.y4_c00451{bottom:663.200000pt;}
.y2a_c00451{bottom:664.266667pt;}
.y3_c00451{bottom:679.200000pt;}
.y29_c00451{bottom:680.666667pt;}
.y2_c00451{bottom:696.000000pt;}
.y1_c00451{bottom:713.066667pt;}
.h9_c00451{height:11.733399pt;}
.ha_c00451{height:38.937500pt;}
.h6_c00451{height:53.058594pt;}
.h5_c00451{height:55.893333pt;}
.h8_c00451{height:56.906667pt;}
.h3_c00451{height:57.397135pt;}
.h2_c00451{height:58.688000pt;}
.h4_c00451{height:62.597333pt;}
.h7_c00451{height:128.554667pt;}
.h1_c00451{height:748.666667pt;}
.h0_c00451{height:748.800000pt;}
.w2_c00451{width:93.222667pt;}
.w1_c00451{width:515.333333pt;}
.w0_c00451{width:515.533333pt;}
.x0_c00451{left:0.000000pt;}
.x1_c00451{left:83.733333pt;}
.x2_c00451{left:84.933333pt;}
.x3_c00451{left:85.866667pt;}
.x4_c00451{left:87.066667pt;}
.xb_c00451{left:90.266667pt;}
.x9_c00451{left:91.866667pt;}
.x6_c00451{left:98.666667pt;}
.xa_c00451{left:121.200000pt;}
.x7_c00451{left:124.800000pt;}
.x5_c00451{left:157.600000pt;}
.x8_c00451{left:164.400000pt;}
.x11_c00451{left:214.934896pt;}
.xc_c00451{left:280.133333pt;}
.xd_c00451{left:281.466667pt;}
.xe_c00451{left:282.800000pt;}
.xf_c00451{left:284.000000pt;}
.x10_c00451{left:440.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_bb02192efc23404ec9d4af20.woff2')format("woff");}.ff1_c00452{font-family:ff1_c00452;line-height:1.437000;font-style:normal;font-weight:normal;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_75098a6992fa522c02b99e31.woff2')format("woff");}.ff2_c00452{font-family:ff2_c00452;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00452;src:url('chunks/assets/font_a641e8a3c9935e0a70601b2a.woff2')format("woff");}.ff3_c00452{font-family:ff3_c00452;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00452;src:url('chunks/assets/font_31ff77b44bc1f4534cb00f99.woff2')format("woff");}.ff4_c00452{font-family:ff4_c00452;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00452;src:url('chunks/assets/font_b8cbd8f3b4352fcf868e97e4.woff2')format("woff");}.ff5_c00452{font-family:ff5_c00452;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00452;src:url('chunks/assets/font_066aa045fd65b602795a11a3.woff2')format("woff");}.ff6_c00452{font-family:ff6_c00452;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00452;src:url('chunks/assets/font_7c7b114d6d8510036cb24ad0.woff2')format("woff");}.ff7_c00452{font-family:ff7_c00452;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00452;src:url('chunks/assets/font_96042f1fcebd46513f8a30c7.woff2')format("woff");}.ff8_c00452{font-family:ff8_c00452;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00452;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff9_c00452{font-family:ff9_c00452;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00452{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00452{vertical-align:0.000000px;}
.ls0_c00452{letter-spacing:0.000000px;}
.ls1_c00452{letter-spacing:3.000000px;}
.sc__c00452{text-shadow:none;}
.sc0_c00452{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00452{-webkit-text-stroke:0px transparent;}
.sc0_c00452{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00452{word-spacing:-50.022000px;}
.ws2_c00452{word-spacing:-19.500000px;}
.ws1_c00452{word-spacing:-15.813000px;}
.ws6_c00452{word-spacing:-14.340000px;}
.ws8_c00452{word-spacing:-14.250000px;}
.ws3_c00452{word-spacing:-14.160000px;}
.ws4_c00452{word-spacing:-13.452000px;}
.ws0_c00452{word-spacing:-1.674000px;}
.ws9_c00452{word-spacing:0.000000px;}
.ws5_c00452{word-spacing:1.740000px;}
._1a_c00452{margin-left:-17.553000px;}
._2f_c00452{margin-left:-14.424000px;}
._29_c00452{margin-left:-11.688000px;}
._20_c00452{margin-left:-10.077000px;}
._1e_c00452{margin-left:-9.021000px;}
._26_c00452{margin-left:-7.620000px;}
._23_c00452{margin-left:-6.510000px;}
._16_c00452{margin-left:-5.145000px;}
._e_c00452{margin-left:-3.303000px;}
._11_c00452{margin-left:-2.160000px;}
._15_c00452{margin-left:-1.011000px;}
._f_c00452{width:1.050000px;}
._d_c00452{width:2.667000px;}
._b_c00452{width:3.900000px;}
._c_c00452{width:5.268000px;}
._a_c00452{width:6.426000px;}
._2c_c00452{width:7.437000px;}
._7_c00452{width:8.505000px;}
._12_c00452{width:9.651000px;}
._5_c00452{width:10.710000px;}
._19_c00452{width:11.781000px;}
._1_c00452{width:12.915000px;}
._1b_c00452{width:14.166000px;}
._28_c00452{width:15.867000px;}
._0_c00452{width:16.884000px;}
._1d_c00452{width:17.985000px;}
._17_c00452{width:19.431000px;}
._25_c00452{width:20.688000px;}
._3_c00452{width:21.735000px;}
._4_c00452{width:23.562000px;}
._14_c00452{width:25.854000px;}
._21_c00452{width:27.681000px;}
._6_c00452{width:28.791000px;}
._2d_c00452{width:30.405000px;}
._1f_c00452{width:31.578000px;}
._1c_c00452{width:33.621000px;}
._18_c00452{width:35.283000px;}
._2_c00452{width:37.296000px;}
._2a_c00452{width:39.303000px;}
._24_c00452{width:43.704000px;}
._22_c00452{width:61.905000px;}
._10_c00452{width:77.295000px;}
._27_c00452{width:89.031000px;}
._2e_c00452{width:95.205000px;}
._8_c00452{width:124.614000px;}
._13_c00452{width:190.896000px;}
._9_c00452{width:243.810000px;}
._2b_c00452{width:412.494000px;}
.fc2_c00452{color:transparent;}
.fc1_c00452{color:rgb(128,128,128);}
.fc0_c00452{color:rgb(0,0,0);}
.fs4_c00452{font-size:36.000000px;}
.fs7_c00452{font-size:48.000000px;}
.fs2_c00452{font-size:54.000000px;}
.fs5_c00452{font-size:57.000000px;}
.fs1_c00452{font-size:60.000000px;}
.fs0_c00452{font-size:63.000000px;}
.fs3_c00452{font-size:66.000000px;}
.fs6_c00452{font-size:69.000000px;}
.y0_c00452{bottom:0.000000px;}
.y55_c00452{bottom:3.105000px;}
.y54_c00452{bottom:7.228363px;}
.y53_c00452{bottom:49.650000px;}
.y44_c00452{bottom:52.650000px;}
.y52_c00452{bottom:68.550000px;}
.y43_c00452{bottom:71.550000px;}
.y51_c00452{bottom:87.450000px;}
.y42_c00452{bottom:90.150000px;}
.y50_c00452{bottom:106.050000px;}
.y41_c00452{bottom:108.450000px;}
.y4f_c00452{bottom:123.600000px;}
.y40_c00452{bottom:126.900000px;}
.y4e_c00452{bottom:142.200000px;}
.y3f_c00452{bottom:145.500000px;}
.y36_c00452{bottom:148.950000px;}
.y4d_c00452{bottom:159.750000px;}
.y3e_c00452{bottom:163.350000px;}
.y4c_c00452{bottom:178.200000px;}
.y3d_c00452{bottom:181.950000px;}
.y4b_c00452{bottom:196.500000px;}
.y3c_c00452{bottom:200.100000px;}
.y4a_c00452{bottom:214.950000px;}
.y3b_c00452{bottom:218.400000px;}
.y49_c00452{bottom:233.550000px;}
.y3a_c00452{bottom:236.700000px;}
.y48_c00452{bottom:251.850000px;}
.y39_c00452{bottom:254.550000px;}
.y47_c00452{bottom:270.750000px;}
.y38_c00452{bottom:273.000000px;}
.y46_c00452{bottom:287.550000px;}
.y37_c00452{bottom:291.300000px;}
.y45_c00452{bottom:306.750000px;}
.y33_c00452{bottom:309.150000px;}
.y35_c00452{bottom:324.300000px;}
.y32_c00452{bottom:327.000000px;}
.y34_c00452{bottom:342.900000px;}
.y31_c00452{bottom:345.300000px;}
.y30_c00452{bottom:361.500000px;}
.y2e_c00452{bottom:379.650000px;}
.y18_c00452{bottom:381.000000px;}
.y2d_c00452{bottom:398.250000px;}
.y17_c00452{bottom:399.300000px;}
.y2c_c00452{bottom:415.500000px;}
.y16_c00452{bottom:417.450000px;}
.y2b_c00452{bottom:434.700000px;}
.y15_c00452{bottom:435.750000px;}
.y2a_c00452{bottom:453.150000px;}
.y14_c00452{bottom:454.050000px;}
.y29_c00452{bottom:471.750000px;}
.y13_c00452{bottom:472.050000px;}
.y28_c00452{bottom:489.600000px;}
.y12_c00452{bottom:490.050000px;}
.y2f_c00452{bottom:491.100000px;}
.y27_c00452{bottom:507.600000px;}
.y11_c00452{bottom:507.900000px;}
.y10_c00452{bottom:525.450000px;}
.y26_c00452{bottom:525.750000px;}
.yf_c00452{bottom:542.250000px;}
.y25_c00452{bottom:544.350000px;}
.ye_c00452{bottom:561.000000px;}
.y24_c00452{bottom:561.900000px;}
.yd_c00452{bottom:579.150000px;}
.y23_c00452{bottom:581.100000px;}
.yc_c00452{bottom:597.000000px;}
.y22_c00452{bottom:598.950000px;}
.yb_c00452{bottom:615.300000px;}
.y21_c00452{bottom:616.950000px;}
.ya_c00452{bottom:633.600000px;}
.y20_c00452{bottom:635.850000px;}
.y9_c00452{bottom:651.750000px;}
.y1f_c00452{bottom:653.100000px;}
.y8_c00452{bottom:670.350000px;}
.y1e_c00452{bottom:672.000000px;}
.y7_c00452{bottom:688.800000px;}
.y1d_c00452{bottom:689.850000px;}
.y6_c00452{bottom:706.650000px;}
.y1c_c00452{bottom:708.300000px;}
.y5_c00452{bottom:724.950000px;}
.y1b_c00452{bottom:726.300000px;}
.y4_c00452{bottom:743.250000px;}
.y1a_c00452{bottom:744.150000px;}
.y3_c00452{bottom:761.400000px;}
.y19_c00452{bottom:763.050000px;}
.y2_c00452{bottom:780.600000px;}
.y1_c00452{bottom:802.500000px;}
.h8_c00452{height:13.200074px;}
.h3_c00452{height:39.024000px;}
.h9_c00452{height:43.804688px;}
.h5_c00452{height:56.592000px;}
.h4_c00452{height:59.736000px;}
.h7_c00452{height:62.880000px;}
.h1_c00452{height:66.024000px;}
.h2_c00452{height:70.422000px;}
.h6_c00452{height:73.623000px;}
.h0_c00452{height:843.750000px;}
.w2_c00452{width:104.875500px;}
.w1_c00452{width:579.750000px;}
.w0_c00452{width:579.975000px;}
.x0_c00452{left:0.000000px;}
.x11_c00452{left:18.150000px;}
.x2_c00452{left:70.650000px;}
.x3_c00452{left:72.000000px;}
.x4_c00452{left:73.350000px;}
.x5_c00452{left:74.550000px;}
.x6_c00452{left:76.200000px;}
.xf_c00452{left:77.250000px;}
.x12_c00452{left:78.600000px;}
.x13_c00452{left:79.950000px;}
.x14_c00452{left:81.900000px;}
.x1_c00452{left:215.400000px;}
.x1a_c00452{left:241.801758px;}
.x7_c00452{left:290.850000px;}
.x8_c00452{left:291.900000px;}
.xa_c00452{left:292.950000px;}
.xb_c00452{left:294.000000px;}
.xc_c00452{left:295.350000px;}
.xd_c00452{left:296.550000px;}
.x10_c00452{left:298.050000px;}
.x15_c00452{left:299.700000px;}
.x16_c00452{left:301.050000px;}
.x18_c00452{left:302.100000px;}
.x9_c00452{left:321.000000px;}
.x17_c00452{left:349.350000px;}
.x19_c00452{left:369.600000px;}
.xe_c00452{left:532.950000px;}
@media print{
.v0_c00452{vertical-align:0.000000pt;}
.ls0_c00452{letter-spacing:0.000000pt;}
.ls1_c00452{letter-spacing:2.666667pt;}
.ws7_c00452{word-spacing:-44.464000pt;}
.ws2_c00452{word-spacing:-17.333333pt;}
.ws1_c00452{word-spacing:-14.056000pt;}
.ws6_c00452{word-spacing:-12.746667pt;}
.ws8_c00452{word-spacing:-12.666667pt;}
.ws3_c00452{word-spacing:-12.586667pt;}
.ws4_c00452{word-spacing:-11.957333pt;}
.ws0_c00452{word-spacing:-1.488000pt;}
.ws9_c00452{word-spacing:0.000000pt;}
.ws5_c00452{word-spacing:1.546667pt;}
._1a_c00452{margin-left:-15.602667pt;}
._2f_c00452{margin-left:-12.821333pt;}
._29_c00452{margin-left:-10.389333pt;}
._20_c00452{margin-left:-8.957333pt;}
._1e_c00452{margin-left:-8.018667pt;}
._26_c00452{margin-left:-6.773333pt;}
._23_c00452{margin-left:-5.786667pt;}
._16_c00452{margin-left:-4.573333pt;}
._e_c00452{margin-left:-2.936000pt;}
._11_c00452{margin-left:-1.920000pt;}
._15_c00452{margin-left:-0.898667pt;}
._f_c00452{width:0.933333pt;}
._d_c00452{width:2.370667pt;}
._b_c00452{width:3.466667pt;}
._c_c00452{width:4.682667pt;}
._a_c00452{width:5.712000pt;}
._2c_c00452{width:6.610667pt;}
._7_c00452{width:7.560000pt;}
._12_c00452{width:8.578667pt;}
._5_c00452{width:9.520000pt;}
._19_c00452{width:10.472000pt;}
._1_c00452{width:11.480000pt;}
._1b_c00452{width:12.592000pt;}
._28_c00452{width:14.104000pt;}
._0_c00452{width:15.008000pt;}
._1d_c00452{width:15.986667pt;}
._17_c00452{width:17.272000pt;}
._25_c00452{width:18.389333pt;}
._3_c00452{width:19.320000pt;}
._4_c00452{width:20.944000pt;}
._14_c00452{width:22.981333pt;}
._21_c00452{width:24.605333pt;}
._6_c00452{width:25.592000pt;}
._2d_c00452{width:27.026667pt;}
._1f_c00452{width:28.069333pt;}
._1c_c00452{width:29.885333pt;}
._18_c00452{width:31.362667pt;}
._2_c00452{width:33.152000pt;}
._2a_c00452{width:34.936000pt;}
._24_c00452{width:38.848000pt;}
._22_c00452{width:55.026667pt;}
._10_c00452{width:68.706667pt;}
._27_c00452{width:79.138667pt;}
._2e_c00452{width:84.626667pt;}
._8_c00452{width:110.768000pt;}
._13_c00452{width:169.685333pt;}
._9_c00452{width:216.720000pt;}
._2b_c00452{width:366.661333pt;}
.fs4_c00452{font-size:32.000000pt;}
.fs7_c00452{font-size:42.666667pt;}
.fs2_c00452{font-size:48.000000pt;}
.fs5_c00452{font-size:50.666667pt;}
.fs1_c00452{font-size:53.333333pt;}
.fs0_c00452{font-size:56.000000pt;}
.fs3_c00452{font-size:58.666667pt;}
.fs6_c00452{font-size:61.333333pt;}
.y0_c00452{bottom:0.000000pt;}
.y55_c00452{bottom:2.760000pt;}
.y54_c00452{bottom:6.425212pt;}
.y53_c00452{bottom:44.133333pt;}
.y44_c00452{bottom:46.800000pt;}
.y52_c00452{bottom:60.933333pt;}
.y43_c00452{bottom:63.600000pt;}
.y51_c00452{bottom:77.733333pt;}
.y42_c00452{bottom:80.133333pt;}
.y50_c00452{bottom:94.266667pt;}
.y41_c00452{bottom:96.400000pt;}
.y4f_c00452{bottom:109.866667pt;}
.y40_c00452{bottom:112.800000pt;}
.y4e_c00452{bottom:126.400000pt;}
.y3f_c00452{bottom:129.333333pt;}
.y36_c00452{bottom:132.400000pt;}
.y4d_c00452{bottom:142.000000pt;}
.y3e_c00452{bottom:145.200000pt;}
.y4c_c00452{bottom:158.400000pt;}
.y3d_c00452{bottom:161.733333pt;}
.y4b_c00452{bottom:174.666667pt;}
.y3c_c00452{bottom:177.866667pt;}
.y4a_c00452{bottom:191.066667pt;}
.y3b_c00452{bottom:194.133333pt;}
.y49_c00452{bottom:207.600000pt;}
.y3a_c00452{bottom:210.400000pt;}
.y48_c00452{bottom:223.866667pt;}
.y39_c00452{bottom:226.266667pt;}
.y47_c00452{bottom:240.666667pt;}
.y38_c00452{bottom:242.666667pt;}
.y46_c00452{bottom:255.600000pt;}
.y37_c00452{bottom:258.933333pt;}
.y45_c00452{bottom:272.666667pt;}
.y33_c00452{bottom:274.800000pt;}
.y35_c00452{bottom:288.266667pt;}
.y32_c00452{bottom:290.666667pt;}
.y34_c00452{bottom:304.800000pt;}
.y31_c00452{bottom:306.933333pt;}
.y30_c00452{bottom:321.333333pt;}
.y2e_c00452{bottom:337.466667pt;}
.y18_c00452{bottom:338.666667pt;}
.y2d_c00452{bottom:354.000000pt;}
.y17_c00452{bottom:354.933333pt;}
.y2c_c00452{bottom:369.333333pt;}
.y16_c00452{bottom:371.066667pt;}
.y2b_c00452{bottom:386.400000pt;}
.y15_c00452{bottom:387.333333pt;}
.y2a_c00452{bottom:402.800000pt;}
.y14_c00452{bottom:403.600000pt;}
.y29_c00452{bottom:419.333333pt;}
.y13_c00452{bottom:419.600000pt;}
.y28_c00452{bottom:435.200000pt;}
.y12_c00452{bottom:435.600000pt;}
.y2f_c00452{bottom:436.533333pt;}
.y27_c00452{bottom:451.200000pt;}
.y11_c00452{bottom:451.466667pt;}
.y10_c00452{bottom:467.066667pt;}
.y26_c00452{bottom:467.333333pt;}
.yf_c00452{bottom:482.000000pt;}
.y25_c00452{bottom:483.866667pt;}
.ye_c00452{bottom:498.666667pt;}
.y24_c00452{bottom:499.466667pt;}
.yd_c00452{bottom:514.800000pt;}
.y23_c00452{bottom:516.533333pt;}
.yc_c00452{bottom:530.666667pt;}
.y22_c00452{bottom:532.400000pt;}
.yb_c00452{bottom:546.933333pt;}
.y21_c00452{bottom:548.400000pt;}
.ya_c00452{bottom:563.200000pt;}
.y20_c00452{bottom:565.200000pt;}
.y9_c00452{bottom:579.333333pt;}
.y1f_c00452{bottom:580.533333pt;}
.y8_c00452{bottom:595.866667pt;}
.y1e_c00452{bottom:597.333333pt;}
.y7_c00452{bottom:612.266667pt;}
.y1d_c00452{bottom:613.200000pt;}
.y6_c00452{bottom:628.133333pt;}
.y1c_c00452{bottom:629.600000pt;}
.y5_c00452{bottom:644.400000pt;}
.y1b_c00452{bottom:645.600000pt;}
.y4_c00452{bottom:660.666667pt;}
.y1a_c00452{bottom:661.466667pt;}
.y3_c00452{bottom:676.800000pt;}
.y19_c00452{bottom:678.266667pt;}
.y2_c00452{bottom:693.866667pt;}
.y1_c00452{bottom:713.333333pt;}
.h8_c00452{height:11.733399pt;}
.h3_c00452{height:34.688000pt;}
.h9_c00452{height:38.937500pt;}
.h5_c00452{height:50.304000pt;}
.h4_c00452{height:53.098667pt;}
.h7_c00452{height:55.893333pt;}
.h1_c00452{height:58.688000pt;}
.h2_c00452{height:62.597333pt;}
.h6_c00452{height:65.442667pt;}
.h0_c00452{height:750.000000pt;}
.w2_c00452{width:93.222667pt;}
.w1_c00452{width:515.333333pt;}
.w0_c00452{width:515.533333pt;}
.x0_c00452{left:0.000000pt;}
.x11_c00452{left:16.133333pt;}
.x2_c00452{left:62.800000pt;}
.x3_c00452{left:64.000000pt;}
.x4_c00452{left:65.200000pt;}
.x5_c00452{left:66.266667pt;}
.x6_c00452{left:67.733333pt;}
.xf_c00452{left:68.666667pt;}
.x12_c00452{left:69.866667pt;}
.x13_c00452{left:71.066667pt;}
.x14_c00452{left:72.800000pt;}
.x1_c00452{left:191.466667pt;}
.x1a_c00452{left:214.934896pt;}
.x7_c00452{left:258.533333pt;}
.x8_c00452{left:259.466667pt;}
.xa_c00452{left:260.400000pt;}
.xb_c00452{left:261.333333pt;}
.xc_c00452{left:262.533333pt;}
.xd_c00452{left:263.600000pt;}
.x10_c00452{left:264.933333pt;}
.x15_c00452{left:266.400000pt;}
.x16_c00452{left:267.600000pt;}
.x18_c00452{left:268.533333pt;}
.x9_c00452{left:285.333333pt;}
.x17_c00452{left:310.533333pt;}
.x19_c00452{left:328.533333pt;}
.xe_c00452{left:473.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_66094af77a49852ab10ce456.woff2')format("woff");}.ff1_c00453{font-family:ff1_c00453;line-height:1.437000;font-style:normal;font-weight:normal;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_548a4aabe04781ab6a6ab4f3.woff2')format("woff");}.ff2_c00453{font-family:ff2_c00453;line-height:1.437000;font-style:normal;font-weight:normal;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_c2641ca5c2bd7abb70bca674.woff2')format("woff");}.ff3_c00453{font-family:ff3_c00453;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00453;src:url('chunks/assets/font_11d737d2833efca1f8727919.woff2')format("woff");}.ff4_c00453{font-family:ff4_c00453;line-height:1.575000;font-style:normal;font-weight:normal;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_87167429ef27408c8f00c6f0.woff2')format("woff");}.ff5_c00453{font-family:ff5_c00453;line-height:1.437000;font-style:normal;font-weight:normal;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_4bb8dd7ed6883833c9177992.woff2')format("woff");}.ff6_c00453{font-family:ff6_c00453;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00453;src:url('chunks/assets/font_e64a8f269e39941c0b733e54.woff2')format("woff");}.ff7_c00453{font-family:ff7_c00453;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00453;src:url('chunks/assets/font_8d9793e524a67309f661f1a0.woff2')format("woff");}.ff8_c00453{font-family:ff8_c00453;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00453;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff9_c00453{font-family:ff9_c00453;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00453{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00453{vertical-align:-6.000000px;}
.v0_c00453{vertical-align:0.000000px;}
.ls9_c00453{letter-spacing:0.000000px;}
.ls7_c00453{letter-spacing:3.000000px;}
.lsa_c00453{letter-spacing:6.000000px;}
.ls6_c00453{letter-spacing:9.000000px;}
.ls2_c00453{letter-spacing:11.094000px;}
.ls1_c00453{letter-spacing:11.346000px;}
.ls8_c00453{letter-spacing:18.480000px;}
.ls0_c00453{letter-spacing:20.694000px;}
.ls4_c00453{letter-spacing:30.294000px;}
.ls5_c00453{letter-spacing:56.760000px;}
.ls3_c00453{letter-spacing:131.694000px;}
.sc__c00453{text-shadow:none;}
.sc0_c00453{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00453{-webkit-text-stroke:0px transparent;}
.sc0_c00453{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00453{word-spacing:-37.746000px;}
.ws4_c00453{word-spacing:-22.074000px;}
.ws3_c00453{word-spacing:-14.340000px;}
.ws0_c00453{word-spacing:-14.160000px;}
.ws2_c00453{word-spacing:-13.053000px;}
.ws5_c00453{word-spacing:0.000000px;}
._24_c00453{margin-left:-20.520000px;}
._19_c00453{margin-left:-18.360000px;}
._b_c00453{margin-left:-16.620000px;}
._27_c00453{margin-left:-14.343000px;}
._1d_c00453{margin-left:-11.580000px;}
._1e_c00453{margin-left:-8.460000px;}
._16_c00453{margin-left:-6.480000px;}
._15_c00453{margin-left:-5.280000px;}
._c_c00453{margin-left:-3.480000px;}
._e_c00453{margin-left:-1.560000px;}
._f_c00453{width:1.020000px;}
._1_c00453{width:2.040000px;}
._0_c00453{width:4.020000px;}
._2_c00453{width:5.340000px;}
._4_c00453{width:7.080000px;}
._5_c00453{width:8.580000px;}
._6_c00453{width:9.900000px;}
._18_c00453{width:11.040000px;}
._7_c00453{width:12.060000px;}
._9_c00453{width:13.200000px;}
._1c_c00453{width:14.319000px;}
._a_c00453{width:15.600000px;}
._22_c00453{width:16.620000px;}
._10_c00453{width:17.640000px;}
._14_c00453{width:19.260000px;}
._1f_c00453{width:21.720000px;}
._1a_c00453{width:23.103000px;}
._12_c00453{width:24.180000px;}
._11_c00453{width:25.680000px;}
._17_c00453{width:26.700000px;}
._21_c00453{width:28.200000px;}
._2a_c00453{width:29.397000px;}
._25_c00453{width:31.860000px;}
._26_c00453{width:35.466000px;}
._8_c00453{width:36.900000px;}
._28_c00453{width:39.000000px;}
._13_c00453{width:55.440000px;}
._d_c00453{width:96.300000px;}
._29_c00453{width:103.140000px;}
._23_c00453{width:121.860000px;}
._20_c00453{width:126.300000px;}
._2b_c00453{width:164.520000px;}
._1b_c00453{width:185.166000px;}
._3_c00453{width:246.960000px;}
.fc2_c00453{color:transparent;}
.fc1_c00453{color:rgb(128,128,128);}
.fc0_c00453{color:rgb(0,0,0);}
.fs4_c00453{font-size:39.000000px;}
.fs6_c00453{font-size:48.000000px;}
.fs3_c00453{font-size:54.000000px;}
.fs2_c00453{font-size:57.000000px;}
.fs0_c00453{font-size:60.000000px;}
.fs1_c00453{font-size:66.000000px;}
.fs5_c00453{font-size:69.000000px;}
.y0_c00453{bottom:0.000000px;}
.y52_c00453{bottom:3.105000px;}
.y51_c00453{bottom:7.228363px;}
.y50_c00453{bottom:38.250000px;}
.y2a_c00453{bottom:52.200000px;}
.y4f_c00453{bottom:56.400000px;}
.y29_c00453{bottom:71.100000px;}
.y4e_c00453{bottom:75.900000px;}
.y28_c00453{bottom:89.100000px;}
.y4d_c00453{bottom:92.850000px;}
.y27_c00453{bottom:107.250000px;}
.y4c_c00453{bottom:111.450000px;}
.y26_c00453{bottom:125.250000px;}
.y4b_c00453{bottom:129.600000px;}
.y25_c00453{bottom:143.700000px;}
.y4a_c00453{bottom:148.200000px;}
.y24_c00453{bottom:161.700000px;}
.y49_c00453{bottom:167.100000px;}
.y23_c00453{bottom:180.450000px;}
.y48_c00453{bottom:184.350000px;}
.y22_c00453{bottom:199.050000px;}
.y47_c00453{bottom:204.150000px;}
.y21_c00453{bottom:217.050000px;}
.y46_c00453{bottom:220.500000px;}
.y20_c00453{bottom:234.600000px;}
.y45_c00453{bottom:240.450000px;}
.y1f_c00453{bottom:253.500000px;}
.y1e_c00453{bottom:271.950000px;}
.y44_c00453{bottom:274.050000px;}
.y1d_c00453{bottom:289.800000px;}
.y43_c00453{bottom:293.400000px;}
.y1c_c00453{bottom:308.100000px;}
.y42_c00453{bottom:310.800000px;}
.y1b_c00453{bottom:326.250000px;}
.y41_c00453{bottom:328.800000px;}
.y1a_c00453{bottom:344.850000px;}
.y19_c00453{bottom:362.850000px;}
.y40_c00453{bottom:364.200000px;}
.y18_c00453{bottom:380.700000px;}
.y17_c00453{bottom:399.150000px;}
.y3f_c00453{bottom:400.350000px;}
.y16_c00453{bottom:417.450000px;}
.y3e_c00453{bottom:418.500000px;}
.y15_c00453{bottom:435.000000px;}
.y3d_c00453{bottom:437.850000px;}
.y14_c00453{bottom:453.300000px;}
.y3c_c00453{bottom:455.700000px;}
.y13_c00453{bottom:471.900000px;}
.y3b_c00453{bottom:474.150000px;}
.y12_c00453{bottom:490.350000px;}
.y3a_c00453{bottom:491.850000px;}
.y11_c00453{bottom:508.650000px;}
.y39_c00453{bottom:510.600000px;}
.y10_c00453{bottom:526.800000px;}
.y38_c00453{bottom:528.600000px;}
.yf_c00453{bottom:544.500000px;}
.y37_c00453{bottom:546.450000px;}
.ye_c00453{bottom:562.200000px;}
.y36_c00453{bottom:564.750000px;}
.yd_c00453{bottom:580.800000px;}
.y35_c00453{bottom:582.600000px;}
.yc_c00453{bottom:598.350000px;}
.y34_c00453{bottom:601.050000px;}
.yb_c00453{bottom:617.250000px;}
.y33_c00453{bottom:619.050000px;}
.ya_c00453{bottom:635.250000px;}
.y32_c00453{bottom:637.500000px;}
.y9_c00453{bottom:654.000000px;}
.y31_c00453{bottom:655.200000px;}
.y8_c00453{bottom:672.000000px;}
.y30_c00453{bottom:674.400000px;}
.y7_c00453{bottom:690.450000px;}
.y2f_c00453{bottom:692.550000px;}
.y6_c00453{bottom:708.450000px;}
.y2e_c00453{bottom:711.450000px;}
.y5_c00453{bottom:726.600000px;}
.y2d_c00453{bottom:729.300000px;}
.y4_c00453{bottom:745.650000px;}
.y2c_c00453{bottom:747.000000px;}
.y3_c00453{bottom:763.500000px;}
.y2b_c00453{bottom:765.450000px;}
.y2_c00453{bottom:783.000000px;}
.y1_c00453{bottom:802.950000px;}
.h9_c00453{height:13.200074px;}
.ha_c00453{height:43.804688px;}
.h5_c00453{height:59.736000px;}
.h2_c00453{height:62.880000px;}
.h4_c00453{height:64.020000px;}
.h7_c00453{height:66.312000px;}
.h6_c00453{height:69.168000px;}
.h8_c00453{height:70.422000px;}
.h3_c00453{height:71.544000px;}
.h1_c00453{height:842.250000px;}
.h0_c00453{height:842.400000px;}
.w2_c00453{width:104.875500px;}
.w1_c00453{width:579.750000px;}
.w0_c00453{width:579.975000px;}
.x0_c00453{left:0.000000px;}
.x7_c00453{left:25.950000px;}
.x8_c00453{left:40.800000px;}
.x6_c00453{left:79.650000px;}
.x1_c00453{left:87.300000px;}
.x9_c00453{left:88.350000px;}
.x2_c00453{left:89.400000px;}
.x3_c00453{left:90.750000px;}
.x5_c00453{left:91.800000px;}
.x4_c00453{left:111.000000px;}
.x18_c00453{left:241.801758px;}
.x16_c00453{left:303.300000px;}
.x10_c00453{left:305.100000px;}
.xf_c00453{left:306.750000px;}
.xe_c00453{left:308.100000px;}
.xd_c00453{left:309.150000px;}
.xc_c00453{left:310.800000px;}
.xb_c00453{left:313.800000px;}
.xa_c00453{left:314.850000px;}
.x13_c00453{left:333.000000px;}
.x15_c00453{left:337.200000px;}
.x12_c00453{left:339.150000px;}
.x14_c00453{left:373.650000px;}
.x11_c00453{left:379.350000px;}
.x17_c00453{left:452.250000px;}
@media print{
.v1_c00453{vertical-align:-5.333333pt;}
.v0_c00453{vertical-align:0.000000pt;}
.ls9_c00453{letter-spacing:0.000000pt;}
.ls7_c00453{letter-spacing:2.666667pt;}
.lsa_c00453{letter-spacing:5.333333pt;}
.ls6_c00453{letter-spacing:8.000000pt;}
.ls2_c00453{letter-spacing:9.861333pt;}
.ls1_c00453{letter-spacing:10.085333pt;}
.ls8_c00453{letter-spacing:16.426667pt;}
.ls0_c00453{letter-spacing:18.394667pt;}
.ls4_c00453{letter-spacing:26.928000pt;}
.ls5_c00453{letter-spacing:50.453333pt;}
.ls3_c00453{letter-spacing:117.061333pt;}
.ws1_c00453{word-spacing:-33.552000pt;}
.ws4_c00453{word-spacing:-19.621333pt;}
.ws3_c00453{word-spacing:-12.746667pt;}
.ws0_c00453{word-spacing:-12.586667pt;}
.ws2_c00453{word-spacing:-11.602667pt;}
.ws5_c00453{word-spacing:0.000000pt;}
._24_c00453{margin-left:-18.240000pt;}
._19_c00453{margin-left:-16.320000pt;}
._b_c00453{margin-left:-14.773333pt;}
._27_c00453{margin-left:-12.749333pt;}
._1d_c00453{margin-left:-10.293333pt;}
._1e_c00453{margin-left:-7.520000pt;}
._16_c00453{margin-left:-5.760000pt;}
._15_c00453{margin-left:-4.693333pt;}
._c_c00453{margin-left:-3.093333pt;}
._e_c00453{margin-left:-1.386667pt;}
._f_c00453{width:0.906667pt;}
._1_c00453{width:1.813333pt;}
._0_c00453{width:3.573333pt;}
._2_c00453{width:4.746667pt;}
._4_c00453{width:6.293333pt;}
._5_c00453{width:7.626667pt;}
._6_c00453{width:8.800000pt;}
._18_c00453{width:9.813333pt;}
._7_c00453{width:10.720000pt;}
._9_c00453{width:11.733333pt;}
._1c_c00453{width:12.728000pt;}
._a_c00453{width:13.866667pt;}
._22_c00453{width:14.773333pt;}
._10_c00453{width:15.680000pt;}
._14_c00453{width:17.120000pt;}
._1f_c00453{width:19.306667pt;}
._1a_c00453{width:20.536000pt;}
._12_c00453{width:21.493333pt;}
._11_c00453{width:22.826667pt;}
._17_c00453{width:23.733333pt;}
._21_c00453{width:25.066667pt;}
._2a_c00453{width:26.130667pt;}
._25_c00453{width:28.320000pt;}
._26_c00453{width:31.525333pt;}
._8_c00453{width:32.800000pt;}
._28_c00453{width:34.666667pt;}
._13_c00453{width:49.280000pt;}
._d_c00453{width:85.600000pt;}
._29_c00453{width:91.680000pt;}
._23_c00453{width:108.320000pt;}
._20_c00453{width:112.266667pt;}
._2b_c00453{width:146.240000pt;}
._1b_c00453{width:164.592000pt;}
._3_c00453{width:219.520000pt;}
.fs4_c00453{font-size:34.666667pt;}
.fs6_c00453{font-size:42.666667pt;}
.fs3_c00453{font-size:48.000000pt;}
.fs2_c00453{font-size:50.666667pt;}
.fs0_c00453{font-size:53.333333pt;}
.fs1_c00453{font-size:58.666667pt;}
.fs5_c00453{font-size:61.333333pt;}
.y0_c00453{bottom:0.000000pt;}
.y52_c00453{bottom:2.760000pt;}
.y51_c00453{bottom:6.425212pt;}
.y50_c00453{bottom:34.000000pt;}
.y2a_c00453{bottom:46.400000pt;}
.y4f_c00453{bottom:50.133333pt;}
.y29_c00453{bottom:63.200000pt;}
.y4e_c00453{bottom:67.466667pt;}
.y28_c00453{bottom:79.200000pt;}
.y4d_c00453{bottom:82.533333pt;}
.y27_c00453{bottom:95.333333pt;}
.y4c_c00453{bottom:99.066667pt;}
.y26_c00453{bottom:111.333333pt;}
.y4b_c00453{bottom:115.200000pt;}
.y25_c00453{bottom:127.733333pt;}
.y4a_c00453{bottom:131.733333pt;}
.y24_c00453{bottom:143.733333pt;}
.y49_c00453{bottom:148.533333pt;}
.y23_c00453{bottom:160.400000pt;}
.y48_c00453{bottom:163.866667pt;}
.y22_c00453{bottom:176.933333pt;}
.y47_c00453{bottom:181.466667pt;}
.y21_c00453{bottom:192.933333pt;}
.y46_c00453{bottom:196.000000pt;}
.y20_c00453{bottom:208.533333pt;}
.y45_c00453{bottom:213.733333pt;}
.y1f_c00453{bottom:225.333333pt;}
.y1e_c00453{bottom:241.733333pt;}
.y44_c00453{bottom:243.600000pt;}
.y1d_c00453{bottom:257.600000pt;}
.y43_c00453{bottom:260.800000pt;}
.y1c_c00453{bottom:273.866667pt;}
.y42_c00453{bottom:276.266667pt;}
.y1b_c00453{bottom:290.000000pt;}
.y41_c00453{bottom:292.266667pt;}
.y1a_c00453{bottom:306.533333pt;}
.y19_c00453{bottom:322.533333pt;}
.y40_c00453{bottom:323.733333pt;}
.y18_c00453{bottom:338.400000pt;}
.y17_c00453{bottom:354.800000pt;}
.y3f_c00453{bottom:355.866667pt;}
.y16_c00453{bottom:371.066667pt;}
.y3e_c00453{bottom:372.000000pt;}
.y15_c00453{bottom:386.666667pt;}
.y3d_c00453{bottom:389.200000pt;}
.y14_c00453{bottom:402.933333pt;}
.y3c_c00453{bottom:405.066667pt;}
.y13_c00453{bottom:419.466667pt;}
.y3b_c00453{bottom:421.466667pt;}
.y12_c00453{bottom:435.866667pt;}
.y3a_c00453{bottom:437.200000pt;}
.y11_c00453{bottom:452.133333pt;}
.y39_c00453{bottom:453.866667pt;}
.y10_c00453{bottom:468.266667pt;}
.y38_c00453{bottom:469.866667pt;}
.yf_c00453{bottom:484.000000pt;}
.y37_c00453{bottom:485.733333pt;}
.ye_c00453{bottom:499.733333pt;}
.y36_c00453{bottom:502.000000pt;}
.yd_c00453{bottom:516.266667pt;}
.y35_c00453{bottom:517.866667pt;}
.yc_c00453{bottom:531.866667pt;}
.y34_c00453{bottom:534.266667pt;}
.yb_c00453{bottom:548.666667pt;}
.y33_c00453{bottom:550.266667pt;}
.ya_c00453{bottom:564.666667pt;}
.y32_c00453{bottom:566.666667pt;}
.y9_c00453{bottom:581.333333pt;}
.y31_c00453{bottom:582.400000pt;}
.y8_c00453{bottom:597.333333pt;}
.y30_c00453{bottom:599.466667pt;}
.y7_c00453{bottom:613.733333pt;}
.y2f_c00453{bottom:615.600000pt;}
.y6_c00453{bottom:629.733333pt;}
.y2e_c00453{bottom:632.400000pt;}
.y5_c00453{bottom:645.866667pt;}
.y2d_c00453{bottom:648.266667pt;}
.y4_c00453{bottom:662.800000pt;}
.y2c_c00453{bottom:664.000000pt;}
.y3_c00453{bottom:678.666667pt;}
.y2b_c00453{bottom:680.400000pt;}
.y2_c00453{bottom:696.000000pt;}
.y1_c00453{bottom:713.733333pt;}
.h9_c00453{height:11.733399pt;}
.ha_c00453{height:38.937500pt;}
.h5_c00453{height:53.098667pt;}
.h2_c00453{height:55.893333pt;}
.h4_c00453{height:56.906667pt;}
.h7_c00453{height:58.944000pt;}
.h6_c00453{height:61.482667pt;}
.h8_c00453{height:62.597333pt;}
.h3_c00453{height:63.594667pt;}
.h1_c00453{height:748.666667pt;}
.h0_c00453{height:748.800000pt;}
.w2_c00453{width:93.222667pt;}
.w1_c00453{width:515.333333pt;}
.w0_c00453{width:515.533333pt;}
.x0_c00453{left:0.000000pt;}
.x7_c00453{left:23.066667pt;}
.x8_c00453{left:36.266667pt;}
.x6_c00453{left:70.800000pt;}
.x1_c00453{left:77.600000pt;}
.x9_c00453{left:78.533333pt;}
.x2_c00453{left:79.466667pt;}
.x3_c00453{left:80.666667pt;}
.x5_c00453{left:81.600000pt;}
.x4_c00453{left:98.666667pt;}
.x18_c00453{left:214.934896pt;}
.x16_c00453{left:269.600000pt;}
.x10_c00453{left:271.200000pt;}
.xf_c00453{left:272.666667pt;}
.xe_c00453{left:273.866667pt;}
.xd_c00453{left:274.800000pt;}
.xc_c00453{left:276.266667pt;}
.xb_c00453{left:278.933333pt;}
.xa_c00453{left:279.866667pt;}
.x13_c00453{left:296.000000pt;}
.x15_c00453{left:299.733333pt;}
.x12_c00453{left:301.466667pt;}
.x14_c00453{left:332.133333pt;}
.x11_c00453{left:337.200000pt;}
.x17_c00453{left:402.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_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_ed839b24af56ad8354b355f7.woff2')format("woff");}.ff1_c00454{font-family:ff1_c00454;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00454;src:url('chunks/assets/font_a936cdd6abb69496e1abfbf5.woff2')format("woff");}.ff2_c00454{font-family:ff2_c00454;line-height:1.575000;font-style:normal;font-weight:normal;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_0b1bd9b6b4e95b75286a1fb6.woff2')format("woff");}.ff3_c00454{font-family:ff3_c00454;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00454;src:url('chunks/assets/font_a13b4fa7e92e729b81dc5e54.woff2')format("woff");}.ff4_c00454{font-family:ff4_c00454;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00454;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff5_c00454{font-family:ff5_c00454;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00454{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00454{vertical-align:0.000000px;}
.ls3_c00454{letter-spacing:0.000000px;}
.ls4_c00454{letter-spacing:3.000000px;}
.ls0_c00454{letter-spacing:6.600000px;}
.ls2_c00454{letter-spacing:7.800000px;}
.ls1_c00454{letter-spacing:19.800000px;}
.sc__c00454{text-shadow:none;}
.sc0_c00454{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00454{-webkit-text-stroke:0px transparent;}
.sc0_c00454{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00454{word-spacing:-22.074000px;}
.ws2_c00454{word-spacing:-14.340000px;}
.ws1_c00454{word-spacing:-14.160000px;}
.ws3_c00454{word-spacing:0.000000px;}
._44_c00454{margin-left:-25.620000px;}
._45_c00454{margin-left:-22.620000px;}
._21_c00454{margin-left:-18.120000px;}
._2f_c00454{margin-left:-14.316000px;}
._10_c00454{margin-left:-13.086000px;}
._3b_c00454{margin-left:-12.072000px;}
._20_c00454{margin-left:-10.914000px;}
._47_c00454{margin-left:-9.906000px;}
._17_c00454{margin-left:-8.298000px;}
._f_c00454{margin-left:-7.194000px;}
._9_c00454{margin-left:-5.700000px;}
._1c_c00454{margin-left:-3.744000px;}
._13_c00454{margin-left:-2.736000px;}
._14_c00454{margin-left:-1.140000px;}
._c_c00454{width:1.782000px;}
._d_c00454{width:3.636000px;}
._6_c00454{width:5.520000px;}
._e_c00454{width:6.660000px;}
._7_c00454{width:8.580000px;}
._15_c00454{width:9.840000px;}
._4_c00454{width:11.040000px;}
._2d_c00454{width:12.120000px;}
._1d_c00454{width:13.302000px;}
._12_c00454{width:15.360000px;}
._18_c00454{width:17.232000px;}
._30_c00454{width:18.234000px;}
._2_c00454{width:19.260000px;}
._3_c00454{width:21.240000px;}
._2c_c00454{width:23.028000px;}
._23_c00454{width:24.174000px;}
._33_c00454{width:25.278000px;}
._5_c00454{width:26.700000px;}
._35_c00454{width:28.644000px;}
._27_c00454{width:31.926000px;}
._34_c00454{width:33.948000px;}
._3d_c00454{width:36.570000px;}
._29_c00454{width:37.734000px;}
._38_c00454{width:41.976000px;}
._2a_c00454{width:43.038000px;}
._3a_c00454{width:45.972000px;}
._1_c00454{width:50.460000px;}
._41_c00454{width:53.814000px;}
._39_c00454{width:54.948000px;}
._3c_c00454{width:56.616000px;}
._3f_c00454{width:57.966000px;}
._0_c00454{width:60.600000px;}
._3e_c00454{width:61.686000px;}
._b_c00454{width:62.700000px;}
._32_c00454{width:64.986000px;}
._36_c00454{width:66.804000px;}
._31_c00454{width:73.056000px;}
._2b_c00454{width:74.214000px;}
._37_c00454{width:76.440000px;}
._28_c00454{width:79.080000px;}
._2e_c00454{width:80.442000px;}
._26_c00454{width:85.968000px;}
._24_c00454{width:87.390000px;}
._46_c00454{width:89.568000px;}
._1a_c00454{width:90.618000px;}
._25_c00454{width:92.454000px;}
._1e_c00454{width:93.558000px;}
._1b_c00454{width:96.198000px;}
._11_c00454{width:99.360000px;}
._16_c00454{width:102.030000px;}
._40_c00454{width:105.774000px;}
._19_c00454{width:107.046000px;}
._1f_c00454{width:114.810000px;}
._43_c00454{width:128.796000px;}
._8_c00454{width:134.460000px;}
._a_c00454{width:136.860000px;}
._48_c00454{width:153.954000px;}
._4b_c00454{width:170.076000px;}
._4a_c00454{width:201.264000px;}
._49_c00454{width:256.332000px;}
._22_c00454{width:330.270000px;}
._42_c00454{width:409.968000px;}
.fc2_c00454{color:transparent;}
.fc1_c00454{color:rgb(128,128,128);}
.fc0_c00454{color:rgb(0,0,0);}
.fs2_c00454{font-size:48.000000px;}
.fs0_c00454{font-size:60.000000px;}
.fs1_c00454{font-size:66.000000px;}
.y0_c00454{bottom:0.000000px;}
.y2d_c00454{bottom:3.105000px;}
.y2c_c00454{bottom:7.228363px;}
.y2b_c00454{bottom:31.350000px;}
.y2a_c00454{bottom:50.850000px;}
.y29_c00454{bottom:69.450000px;}
.y28_c00454{bottom:87.450000px;}
.y27_c00454{bottom:106.350000px;}
.y26_c00454{bottom:124.200000px;}
.y25_c00454{bottom:142.050000px;}
.y24_c00454{bottom:161.250000px;}
.y23_c00454{bottom:179.550000px;}
.y22_c00454{bottom:198.150000px;}
.y21_c00454{bottom:216.000000px;}
.y20_c00454{bottom:233.550000px;}
.y1f_c00454{bottom:252.000000px;}
.y1e_c00454{bottom:270.600000px;}
.y1d_c00454{bottom:288.450000px;}
.y1c_c00454{bottom:306.450000px;}
.y1b_c00454{bottom:324.900000px;}
.y1a_c00454{bottom:342.450000px;}
.y19_c00454{bottom:361.050000px;}
.y18_c00454{bottom:378.900000px;}
.y17_c00454{bottom:396.900000px;}
.y16_c00454{bottom:415.050000px;}
.y15_c00454{bottom:433.950000px;}
.y14_c00454{bottom:451.800000px;}
.y13_c00454{bottom:470.100000px;}
.y12_c00454{bottom:488.250000px;}
.y11_c00454{bottom:505.800000px;}
.y10_c00454{bottom:524.100000px;}
.yf_c00454{bottom:541.950000px;}
.ye_c00454{bottom:559.800000px;}
.yd_c00454{bottom:578.100000px;}
.yc_c00454{bottom:596.400000px;}
.yb_c00454{bottom:614.550000px;}
.ya_c00454{bottom:632.700000px;}
.y9_c00454{bottom:651.000000px;}
.y8_c00454{bottom:669.300000px;}
.y7_c00454{bottom:688.050000px;}
.y6_c00454{bottom:705.750000px;}
.y5_c00454{bottom:724.500000px;}
.y4_c00454{bottom:742.500000px;}
.y3_c00454{bottom:760.950000px;}
.y2_c00454{bottom:779.550000px;}
.y1_c00454{bottom:798.900000px;}
.h3_c00454{height:13.200074px;}
.h4_c00454{height:43.804688px;}
.h2_c00454{height:62.880000px;}
.h1_c00454{height:70.422000px;}
.h0_c00454{height:843.750000px;}
.w2_c00454{width:104.875500px;}
.w1_c00454{width:579.750000px;}
.w0_c00454{width:579.975000px;}
.x0_c00454{left:0.000000px;}
.x12_c00454{left:22.650000px;}
.x11_c00454{left:24.000000px;}
.xe_c00454{left:25.650000px;}
.xf_c00454{left:26.700000px;}
.x5_c00454{left:68.850000px;}
.x7_c00454{left:69.900000px;}
.xa_c00454{left:71.250000px;}
.x4_c00454{left:72.600000px;}
.x3_c00454{left:74.250000px;}
.x2_c00454{left:76.350000px;}
.x6_c00454{left:79.650000px;}
.x8_c00454{left:80.700000px;}
.x9_c00454{left:82.050000px;}
.xb_c00454{left:85.650000px;}
.xc_c00454{left:87.000000px;}
.xd_c00454{left:90.150000px;}
.x10_c00454{left:92.700000px;}
.x13_c00454{left:94.500000px;}
.x1_c00454{left:211.950000px;}
.x15_c00454{left:241.801758px;}
.x14_c00454{left:481.950000px;}
@media print{
.v0_c00454{vertical-align:0.000000pt;}
.ls3_c00454{letter-spacing:0.000000pt;}
.ls4_c00454{letter-spacing:2.666667pt;}
.ls0_c00454{letter-spacing:5.866667pt;}
.ls2_c00454{letter-spacing:6.933333pt;}
.ls1_c00454{letter-spacing:17.600000pt;}
.ws0_c00454{word-spacing:-19.621333pt;}
.ws2_c00454{word-spacing:-12.746667pt;}
.ws1_c00454{word-spacing:-12.586667pt;}
.ws3_c00454{word-spacing:0.000000pt;}
._44_c00454{margin-left:-22.773333pt;}
._45_c00454{margin-left:-20.106667pt;}
._21_c00454{margin-left:-16.106667pt;}
._2f_c00454{margin-left:-12.725333pt;}
._10_c00454{margin-left:-11.632000pt;}
._3b_c00454{margin-left:-10.730667pt;}
._20_c00454{margin-left:-9.701333pt;}
._47_c00454{margin-left:-8.805333pt;}
._17_c00454{margin-left:-7.376000pt;}
._f_c00454{margin-left:-6.394667pt;}
._9_c00454{margin-left:-5.066667pt;}
._1c_c00454{margin-left:-3.328000pt;}
._13_c00454{margin-left:-2.432000pt;}
._14_c00454{margin-left:-1.013333pt;}
._c_c00454{width:1.584000pt;}
._d_c00454{width:3.232000pt;}
._6_c00454{width:4.906667pt;}
._e_c00454{width:5.920000pt;}
._7_c00454{width:7.626667pt;}
._15_c00454{width:8.746667pt;}
._4_c00454{width:9.813333pt;}
._2d_c00454{width:10.773333pt;}
._1d_c00454{width:11.824000pt;}
._12_c00454{width:13.653333pt;}
._18_c00454{width:15.317333pt;}
._30_c00454{width:16.208000pt;}
._2_c00454{width:17.120000pt;}
._3_c00454{width:18.880000pt;}
._2c_c00454{width:20.469333pt;}
._23_c00454{width:21.488000pt;}
._33_c00454{width:22.469333pt;}
._5_c00454{width:23.733333pt;}
._35_c00454{width:25.461333pt;}
._27_c00454{width:28.378667pt;}
._34_c00454{width:30.176000pt;}
._3d_c00454{width:32.506667pt;}
._29_c00454{width:33.541333pt;}
._38_c00454{width:37.312000pt;}
._2a_c00454{width:38.256000pt;}
._3a_c00454{width:40.864000pt;}
._1_c00454{width:44.853333pt;}
._41_c00454{width:47.834667pt;}
._39_c00454{width:48.842667pt;}
._3c_c00454{width:50.325333pt;}
._3f_c00454{width:51.525333pt;}
._0_c00454{width:53.866667pt;}
._3e_c00454{width:54.832000pt;}
._b_c00454{width:55.733333pt;}
._32_c00454{width:57.765333pt;}
._36_c00454{width:59.381333pt;}
._31_c00454{width:64.938667pt;}
._2b_c00454{width:65.968000pt;}
._37_c00454{width:67.946667pt;}
._28_c00454{width:70.293333pt;}
._2e_c00454{width:71.504000pt;}
._26_c00454{width:76.416000pt;}
._24_c00454{width:77.680000pt;}
._46_c00454{width:79.616000pt;}
._1a_c00454{width:80.549333pt;}
._25_c00454{width:82.181333pt;}
._1e_c00454{width:83.162667pt;}
._1b_c00454{width:85.509333pt;}
._11_c00454{width:88.320000pt;}
._16_c00454{width:90.693333pt;}
._40_c00454{width:94.021333pt;}
._19_c00454{width:95.152000pt;}
._1f_c00454{width:102.053333pt;}
._43_c00454{width:114.485333pt;}
._8_c00454{width:119.520000pt;}
._a_c00454{width:121.653333pt;}
._48_c00454{width:136.848000pt;}
._4b_c00454{width:151.178667pt;}
._4a_c00454{width:178.901333pt;}
._49_c00454{width:227.850667pt;}
._22_c00454{width:293.573333pt;}
._42_c00454{width:364.416000pt;}
.fs2_c00454{font-size:42.666667pt;}
.fs0_c00454{font-size:53.333333pt;}
.fs1_c00454{font-size:58.666667pt;}
.y0_c00454{bottom:0.000000pt;}
.y2d_c00454{bottom:2.760000pt;}
.y2c_c00454{bottom:6.425212pt;}
.y2b_c00454{bottom:27.866667pt;}
.y2a_c00454{bottom:45.200000pt;}
.y29_c00454{bottom:61.733333pt;}
.y28_c00454{bottom:77.733333pt;}
.y27_c00454{bottom:94.533333pt;}
.y26_c00454{bottom:110.400000pt;}
.y25_c00454{bottom:126.266667pt;}
.y24_c00454{bottom:143.333333pt;}
.y23_c00454{bottom:159.600000pt;}
.y22_c00454{bottom:176.133333pt;}
.y21_c00454{bottom:192.000000pt;}
.y20_c00454{bottom:207.600000pt;}
.y1f_c00454{bottom:224.000000pt;}
.y1e_c00454{bottom:240.533333pt;}
.y1d_c00454{bottom:256.400000pt;}
.y1c_c00454{bottom:272.400000pt;}
.y1b_c00454{bottom:288.800000pt;}
.y1a_c00454{bottom:304.400000pt;}
.y19_c00454{bottom:320.933333pt;}
.y18_c00454{bottom:336.800000pt;}
.y17_c00454{bottom:352.800000pt;}
.y16_c00454{bottom:368.933333pt;}
.y15_c00454{bottom:385.733333pt;}
.y14_c00454{bottom:401.600000pt;}
.y13_c00454{bottom:417.866667pt;}
.y12_c00454{bottom:434.000000pt;}
.y11_c00454{bottom:449.600000pt;}
.y10_c00454{bottom:465.866667pt;}
.yf_c00454{bottom:481.733333pt;}
.ye_c00454{bottom:497.600000pt;}
.yd_c00454{bottom:513.866667pt;}
.yc_c00454{bottom:530.133333pt;}
.yb_c00454{bottom:546.266667pt;}
.ya_c00454{bottom:562.400000pt;}
.y9_c00454{bottom:578.666667pt;}
.y8_c00454{bottom:594.933333pt;}
.y7_c00454{bottom:611.600000pt;}
.y6_c00454{bottom:627.333333pt;}
.y5_c00454{bottom:644.000000pt;}
.y4_c00454{bottom:660.000000pt;}
.y3_c00454{bottom:676.400000pt;}
.y2_c00454{bottom:692.933333pt;}
.y1_c00454{bottom:710.133333pt;}
.h3_c00454{height:11.733399pt;}
.h4_c00454{height:38.937500pt;}
.h2_c00454{height:55.893333pt;}
.h1_c00454{height:62.597333pt;}
.h0_c00454{height:750.000000pt;}
.w2_c00454{width:93.222667pt;}
.w1_c00454{width:515.333333pt;}
.w0_c00454{width:515.533333pt;}
.x0_c00454{left:0.000000pt;}
.x12_c00454{left:20.133333pt;}
.x11_c00454{left:21.333333pt;}
.xe_c00454{left:22.800000pt;}
.xf_c00454{left:23.733333pt;}
.x5_c00454{left:61.200000pt;}
.x7_c00454{left:62.133333pt;}
.xa_c00454{left:63.333333pt;}
.x4_c00454{left:64.533333pt;}
.x3_c00454{left:66.000000pt;}
.x2_c00454{left:67.866667pt;}
.x6_c00454{left:70.800000pt;}
.x8_c00454{left:71.733333pt;}
.x9_c00454{left:72.933333pt;}
.xb_c00454{left:76.133333pt;}
.xc_c00454{left:77.333333pt;}
.xd_c00454{left:80.133333pt;}
.x10_c00454{left:82.400000pt;}
.x13_c00454{left:84.000000pt;}
.x1_c00454{left:188.400000pt;}
.x15_c00454{left:214.934896pt;}
.x14_c00454{left:428.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0b607b8aeb2e7bc8f08dafcf.woff2')format("woff");}.ff1_c00455{font-family:ff1_c00455;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00455;src:url('chunks/assets/font_e1887515500cfcc465c18eb6.woff2')format("woff");}.ff2_c00455{font-family:ff2_c00455;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00455;src:url('chunks/assets/font_d87296359f469fd9dd0bff40.woff2')format("woff");}.ff3_c00455{font-family:ff3_c00455;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00455;src:url('chunks/assets/font_1f2bca9f597f30bdc1b0b9f4.woff2')format("woff");}.ff4_c00455{font-family:ff4_c00455;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00455;src:url('chunks/assets/font_3b63e6e0a8ff2b0381a6fae4.woff2')format("woff");}.ff5_c00455{font-family:ff5_c00455;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00455;src:url('chunks/assets/font_7b4fb14b73bf06e35c46fb63.woff2')format("woff");}.ff6_c00455{font-family:ff6_c00455;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00455;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff7_c00455{font-family:ff7_c00455;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00455{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00455{vertical-align:0.000000px;}
.ls4_c00455{letter-spacing:0.000000px;}
.ls5_c00455{letter-spacing:3.000000px;}
.ls6_c00455{letter-spacing:6.000000px;}
.ls0_c00455{letter-spacing:6.792000px;}
.ls2_c00455{letter-spacing:9.000000px;}
.ls3_c00455{letter-spacing:14.340000px;}
.ls1_c00455{letter-spacing:26.187000px;}
.sc__c00455{text-shadow:none;}
.sc0_c00455{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00455{-webkit-text-stroke:0px transparent;}
.sc0_c00455{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00455{word-spacing:-22.074000px;}
.ws2_c00455{word-spacing:-18.360000px;}
.ws4_c00455{word-spacing:-15.813000px;}
.ws3_c00455{word-spacing:-14.340000px;}
.ws0_c00455{word-spacing:-14.160000px;}
.ws5_c00455{word-spacing:0.000000px;}
._20_c00455{margin-left:-12.996000px;}
._1e_c00455{margin-left:-10.500000px;}
._1f_c00455{margin-left:-9.240000px;}
._14_c00455{margin-left:-8.100000px;}
._1b_c00455{margin-left:-6.276000px;}
._e_c00455{margin-left:-4.800000px;}
._d_c00455{margin-left:-3.240000px;}
._f_c00455{margin-left:-1.260000px;}
._2_c00455{width:1.140000px;}
._1_c00455{width:3.060000px;}
._0_c00455{width:4.980000px;}
._a_c00455{width:6.000000px;}
._3_c00455{width:7.560000px;}
._19_c00455{width:8.784000px;}
._4_c00455{width:10.056000px;}
._5_c00455{width:12.024000px;}
._b_c00455{width:13.320000px;}
._15_c00455{width:15.456000px;}
._8_c00455{width:16.500000px;}
._18_c00455{width:17.580000px;}
._13_c00455{width:18.636000px;}
._9_c00455{width:20.472000px;}
._16_c00455{width:22.320000px;}
._c_c00455{width:23.424000px;}
._12_c00455{width:25.320000px;}
._1d_c00455{width:27.180000px;}
._1c_c00455{width:28.560000px;}
._7_c00455{width:29.688000px;}
._17_c00455{width:31.848000px;}
._11_c00455{width:35.760000px;}
._1a_c00455{width:49.680000px;}
._10_c00455{width:84.480000px;}
._21_c00455{width:117.120000px;}
._6_c00455{width:217.860000px;}
.fc2_c00455{color:transparent;}
.fc1_c00455{color:rgb(128,128,128);}
.fc0_c00455{color:rgb(0,0,0);}
.fs2_c00455{font-size:24.000000px;}
.fs4_c00455{font-size:48.000000px;}
.fs0_c00455{font-size:60.000000px;}
.fs3_c00455{font-size:63.000000px;}
.fs1_c00455{font-size:66.000000px;}
.y0_c00455{bottom:0.000000px;}
.y59_c00455{bottom:3.105000px;}
.y58_c00455{bottom:7.228363px;}
.y2f_c00455{bottom:49.950000px;}
.y56_c00455{bottom:52.350000px;}
.y2e_c00455{bottom:68.850000px;}
.y55_c00455{bottom:73.200000px;}
.y57_c00455{bottom:79.950000px;}
.y2d_c00455{bottom:88.050000px;}
.y54_c00455{bottom:90.000000px;}
.y2c_c00455{bottom:105.600000px;}
.y53_c00455{bottom:108.900000px;}
.y2b_c00455{bottom:123.750000px;}
.y52_c00455{bottom:127.200000px;}
.y2a_c00455{bottom:142.350000px;}
.y51_c00455{bottom:145.050000px;}
.y29_c00455{bottom:160.200000px;}
.y50_c00455{bottom:163.950000px;}
.y28_c00455{bottom:178.650000px;}
.y4f_c00455{bottom:181.800000px;}
.y27_c00455{bottom:197.100000px;}
.y4e_c00455{bottom:200.100000px;}
.y26_c00455{bottom:215.250000px;}
.y4d_c00455{bottom:218.250000px;}
.y25_c00455{bottom:233.850000px;}
.y4c_c00455{bottom:236.850000px;}
.y24_c00455{bottom:251.700000px;}
.y4b_c00455{bottom:255.150000px;}
.y23_c00455{bottom:270.600000px;}
.y4a_c00455{bottom:273.300000px;}
.y22_c00455{bottom:288.600000px;}
.y49_c00455{bottom:290.850000px;}
.y21_c00455{bottom:306.750000px;}
.y48_c00455{bottom:307.500000px;}
.y20_c00455{bottom:324.900000px;}
.y5_c00455{bottom:326.400000px;}
.y1f_c00455{bottom:342.900000px;}
.y4_c00455{bottom:344.250000px;}
.y47_c00455{bottom:345.300000px;}
.y1e_c00455{bottom:360.750000px;}
.y46_c00455{bottom:362.850000px;}
.y1d_c00455{bottom:379.350000px;}
.y45_c00455{bottom:382.650000px;}
.y1c_c00455{bottom:396.600000px;}
.y44_c00455{bottom:399.900000px;}
.y1b_c00455{bottom:415.350000px;}
.y3_c00455{bottom:416.700000px;}
.y43_c00455{bottom:418.050000px;}
.y1a_c00455{bottom:433.950000px;}
.y42_c00455{bottom:436.350000px;}
.y2_c00455{bottom:437.100000px;}
.y19_c00455{bottom:451.950000px;}
.y41_c00455{bottom:453.900000px;}
.y1_c00455{bottom:454.200000px;}
.y18_c00455{bottom:470.100000px;}
.y40_c00455{bottom:473.100000px;}
.y17_c00455{bottom:488.400000px;}
.y3f_c00455{bottom:491.400000px;}
.y16_c00455{bottom:506.550000px;}
.y3e_c00455{bottom:508.950000px;}
.y15_c00455{bottom:524.550000px;}
.y3d_c00455{bottom:527.850000px;}
.y14_c00455{bottom:543.150000px;}
.y3c_c00455{bottom:546.000000px;}
.y13_c00455{bottom:561.300000px;}
.y3b_c00455{bottom:563.250000px;}
.y12_c00455{bottom:579.750000px;}
.y3a_c00455{bottom:581.100000px;}
.y11_c00455{bottom:597.150000px;}
.y39_c00455{bottom:600.000000px;}
.y10_c00455{bottom:615.600000px;}
.y38_c00455{bottom:618.300000px;}
.yf_c00455{bottom:633.900000px;}
.y37_c00455{bottom:635.850000px;}
.ye_c00455{bottom:652.350000px;}
.y36_c00455{bottom:654.750000px;}
.yd_c00455{bottom:671.250000px;}
.y35_c00455{bottom:672.900000px;}
.yc_c00455{bottom:689.250000px;}
.y34_c00455{bottom:691.500000px;}
.yb_c00455{bottom:707.700000px;}
.y33_c00455{bottom:709.800000px;}
.ya_c00455{bottom:726.300000px;}
.y32_c00455{bottom:727.650000px;}
.y9_c00455{bottom:744.150000px;}
.y31_c00455{bottom:745.800000px;}
.y8_c00455{bottom:762.450000px;}
.y30_c00455{bottom:765.150000px;}
.y7_c00455{bottom:781.950000px;}
.y6_c00455{bottom:801.450000px;}
.h6_c00455{height:13.200074px;}
.h4_c00455{height:28.089844px;}
.h7_c00455{height:43.804688px;}
.h2_c00455{height:62.880000px;}
.h5_c00455{height:66.024000px;}
.h3_c00455{height:70.422000px;}
.h1_c00455{height:842.250000px;}
.h0_c00455{height:842.400000px;}
.w2_c00455{width:104.875500px;}
.w1_c00455{width:579.750000px;}
.w0_c00455{width:579.975000px;}
.x0_c00455{left:0.000000px;}
.x3_c00455{left:22.500000px;}
.x1_c00455{left:23.850000px;}
.x2_c00455{left:26.550000px;}
.x9_c00455{left:81.900000px;}
.xa_c00455{left:84.150000px;}
.x8_c00455{left:85.650000px;}
.x7_c00455{left:87.300000px;}
.x6_c00455{left:88.350000px;}
.x5_c00455{left:89.400000px;}
.x4_c00455{left:91.800000px;}
.x16_c00455{left:241.801758px;}
.x14_c00455{left:301.350000px;}
.x12_c00455{left:302.700000px;}
.x13_c00455{left:304.050000px;}
.xe_c00455{left:305.400000px;}
.x10_c00455{left:307.050000px;}
.x11_c00455{left:308.850000px;}
.xf_c00455{left:311.100000px;}
.xd_c00455{left:312.150000px;}
.xc_c00455{left:313.500000px;}
.xb_c00455{left:315.450000px;}
.x15_c00455{left:514.650000px;}
@media print{
.v0_c00455{vertical-align:0.000000pt;}
.ls4_c00455{letter-spacing:0.000000pt;}
.ls5_c00455{letter-spacing:2.666667pt;}
.ls6_c00455{letter-spacing:5.333333pt;}
.ls0_c00455{letter-spacing:6.037333pt;}
.ls2_c00455{letter-spacing:8.000000pt;}
.ls3_c00455{letter-spacing:12.746667pt;}
.ls1_c00455{letter-spacing:23.277333pt;}
.ws1_c00455{word-spacing:-19.621333pt;}
.ws2_c00455{word-spacing:-16.320000pt;}
.ws4_c00455{word-spacing:-14.056000pt;}
.ws3_c00455{word-spacing:-12.746667pt;}
.ws0_c00455{word-spacing:-12.586667pt;}
.ws5_c00455{word-spacing:0.000000pt;}
._20_c00455{margin-left:-11.552000pt;}
._1e_c00455{margin-left:-9.333333pt;}
._1f_c00455{margin-left:-8.213333pt;}
._14_c00455{margin-left:-7.200000pt;}
._1b_c00455{margin-left:-5.578667pt;}
._e_c00455{margin-left:-4.266667pt;}
._d_c00455{margin-left:-2.880000pt;}
._f_c00455{margin-left:-1.120000pt;}
._2_c00455{width:1.013333pt;}
._1_c00455{width:2.720000pt;}
._0_c00455{width:4.426667pt;}
._a_c00455{width:5.333333pt;}
._3_c00455{width:6.720000pt;}
._19_c00455{width:7.808000pt;}
._4_c00455{width:8.938667pt;}
._5_c00455{width:10.688000pt;}
._b_c00455{width:11.840000pt;}
._15_c00455{width:13.738667pt;}
._8_c00455{width:14.666667pt;}
._18_c00455{width:15.626667pt;}
._13_c00455{width:16.565333pt;}
._9_c00455{width:18.197333pt;}
._16_c00455{width:19.840000pt;}
._c_c00455{width:20.821333pt;}
._12_c00455{width:22.506667pt;}
._1d_c00455{width:24.160000pt;}
._1c_c00455{width:25.386667pt;}
._7_c00455{width:26.389333pt;}
._17_c00455{width:28.309333pt;}
._11_c00455{width:31.786667pt;}
._1a_c00455{width:44.160000pt;}
._10_c00455{width:75.093333pt;}
._21_c00455{width:104.106667pt;}
._6_c00455{width:193.653333pt;}
.fs2_c00455{font-size:21.333333pt;}
.fs4_c00455{font-size:42.666667pt;}
.fs0_c00455{font-size:53.333333pt;}
.fs3_c00455{font-size:56.000000pt;}
.fs1_c00455{font-size:58.666667pt;}
.y0_c00455{bottom:0.000000pt;}
.y59_c00455{bottom:2.760000pt;}
.y58_c00455{bottom:6.425212pt;}
.y2f_c00455{bottom:44.400000pt;}
.y56_c00455{bottom:46.533333pt;}
.y2e_c00455{bottom:61.200000pt;}
.y55_c00455{bottom:65.066667pt;}
.y57_c00455{bottom:71.066667pt;}
.y2d_c00455{bottom:78.266667pt;}
.y54_c00455{bottom:80.000000pt;}
.y2c_c00455{bottom:93.866667pt;}
.y53_c00455{bottom:96.800000pt;}
.y2b_c00455{bottom:110.000000pt;}
.y52_c00455{bottom:113.066667pt;}
.y2a_c00455{bottom:126.533333pt;}
.y51_c00455{bottom:128.933333pt;}
.y29_c00455{bottom:142.400000pt;}
.y50_c00455{bottom:145.733333pt;}
.y28_c00455{bottom:158.800000pt;}
.y4f_c00455{bottom:161.600000pt;}
.y27_c00455{bottom:175.200000pt;}
.y4e_c00455{bottom:177.866667pt;}
.y26_c00455{bottom:191.333333pt;}
.y4d_c00455{bottom:194.000000pt;}
.y25_c00455{bottom:207.866667pt;}
.y4c_c00455{bottom:210.533333pt;}
.y24_c00455{bottom:223.733333pt;}
.y4b_c00455{bottom:226.800000pt;}
.y23_c00455{bottom:240.533333pt;}
.y4a_c00455{bottom:242.933333pt;}
.y22_c00455{bottom:256.533333pt;}
.y49_c00455{bottom:258.533333pt;}
.y21_c00455{bottom:272.666667pt;}
.y48_c00455{bottom:273.333333pt;}
.y20_c00455{bottom:288.800000pt;}
.y5_c00455{bottom:290.133333pt;}
.y1f_c00455{bottom:304.800000pt;}
.y4_c00455{bottom:306.000000pt;}
.y47_c00455{bottom:306.933333pt;}
.y1e_c00455{bottom:320.666667pt;}
.y46_c00455{bottom:322.533333pt;}
.y1d_c00455{bottom:337.200000pt;}
.y45_c00455{bottom:340.133333pt;}
.y1c_c00455{bottom:352.533333pt;}
.y44_c00455{bottom:355.466667pt;}
.y1b_c00455{bottom:369.200000pt;}
.y3_c00455{bottom:370.400000pt;}
.y43_c00455{bottom:371.600000pt;}
.y1a_c00455{bottom:385.733333pt;}
.y42_c00455{bottom:387.866667pt;}
.y2_c00455{bottom:388.533333pt;}
.y19_c00455{bottom:401.733333pt;}
.y41_c00455{bottom:403.466667pt;}
.y1_c00455{bottom:403.733333pt;}
.y18_c00455{bottom:417.866667pt;}
.y40_c00455{bottom:420.533333pt;}
.y17_c00455{bottom:434.133333pt;}
.y3f_c00455{bottom:436.800000pt;}
.y16_c00455{bottom:450.266667pt;}
.y3e_c00455{bottom:452.400000pt;}
.y15_c00455{bottom:466.266667pt;}
.y3d_c00455{bottom:469.200000pt;}
.y14_c00455{bottom:482.800000pt;}
.y3c_c00455{bottom:485.333333pt;}
.y13_c00455{bottom:498.933333pt;}
.y3b_c00455{bottom:500.666667pt;}
.y12_c00455{bottom:515.333333pt;}
.y3a_c00455{bottom:516.533333pt;}
.y11_c00455{bottom:530.800000pt;}
.y39_c00455{bottom:533.333333pt;}
.y10_c00455{bottom:547.200000pt;}
.y38_c00455{bottom:549.600000pt;}
.yf_c00455{bottom:563.466667pt;}
.y37_c00455{bottom:565.200000pt;}
.ye_c00455{bottom:579.866667pt;}
.y36_c00455{bottom:582.000000pt;}
.yd_c00455{bottom:596.666667pt;}
.y35_c00455{bottom:598.133333pt;}
.yc_c00455{bottom:612.666667pt;}
.y34_c00455{bottom:614.666667pt;}
.yb_c00455{bottom:629.066667pt;}
.y33_c00455{bottom:630.933333pt;}
.ya_c00455{bottom:645.600000pt;}
.y32_c00455{bottom:646.800000pt;}
.y9_c00455{bottom:661.466667pt;}
.y31_c00455{bottom:662.933333pt;}
.y8_c00455{bottom:677.733333pt;}
.y30_c00455{bottom:680.133333pt;}
.y7_c00455{bottom:695.066667pt;}
.y6_c00455{bottom:712.400000pt;}
.h6_c00455{height:11.733399pt;}
.h4_c00455{height:24.968750pt;}
.h7_c00455{height:38.937500pt;}
.h2_c00455{height:55.893333pt;}
.h5_c00455{height:58.688000pt;}
.h3_c00455{height:62.597333pt;}
.h1_c00455{height:748.666667pt;}
.h0_c00455{height:748.800000pt;}
.w2_c00455{width:93.222667pt;}
.w1_c00455{width:515.333333pt;}
.w0_c00455{width:515.533333pt;}
.x0_c00455{left:0.000000pt;}
.x3_c00455{left:20.000000pt;}
.x1_c00455{left:21.200000pt;}
.x2_c00455{left:23.600000pt;}
.x9_c00455{left:72.800000pt;}
.xa_c00455{left:74.800000pt;}
.x8_c00455{left:76.133333pt;}
.x7_c00455{left:77.600000pt;}
.x6_c00455{left:78.533333pt;}
.x5_c00455{left:79.466667pt;}
.x4_c00455{left:81.600000pt;}
.x16_c00455{left:214.934896pt;}
.x14_c00455{left:267.866667pt;}
.x12_c00455{left:269.066667pt;}
.x13_c00455{left:270.266667pt;}
.xe_c00455{left:271.466667pt;}
.x10_c00455{left:272.933333pt;}
.x11_c00455{left:274.533333pt;}
.xf_c00455{left:276.533333pt;}
.xd_c00455{left:277.466667pt;}
.xc_c00455{left:278.666667pt;}
.xb_c00455{left:280.400000pt;}
.x15_c00455{left:457.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_cef2ca904c09eed255442b50.woff2')format("woff");}.ff1_c00456{font-family:ff1_c00456;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00456;src:url('chunks/assets/font_69c6a60a740831269b2b0a77.woff2')format("woff");}.ff2_c00456{font-family:ff2_c00456;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00456;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff3_c00456{font-family:ff3_c00456;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00456;src:url('chunks/assets/font_09d464239071e5c06ae8e67b.woff2')format("woff");}.ff4_c00456{font-family:ff4_c00456;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00456;src:url('chunks/assets/font_313013ceecb1ffbd13fc0963.woff2')format("woff");}.ff5_c00456{font-family:ff5_c00456;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00456;src:url('chunks/assets/font_41202fa2635bdab84673c68b.woff2')format("woff");}.ff6_c00456{font-family:ff6_c00456;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00456;src:url('chunks/assets/font_4f5cc6ec9f196d733de57164.woff2')format("woff");}.ff7_c00456{font-family:ff7_c00456;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00456;src:url('chunks/assets/font_d88e1af4432724941ee8a00d.woff2')format("woff");}.ff8_c00456{font-family:ff8_c00456;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00456;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff9_c00456{font-family:ff9_c00456;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00456{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00456{vertical-align:0.000000px;}
.ls6_c00456{letter-spacing:-6.000000px;}
.ls4_c00456{letter-spacing:0.000000px;}
.ls5_c00456{letter-spacing:3.000000px;}
.ls2_c00456{letter-spacing:7.680000px;}
.ls3_c00456{letter-spacing:7.977000px;}
.ls0_c00456{letter-spacing:10.788000px;}
.ls1_c00456{letter-spacing:13.200000px;}
.sc__c00456{text-shadow:none;}
.sc0_c00456{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00456{-webkit-text-stroke:0px transparent;}
.sc0_c00456{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00456{word-spacing:-30.957000px;}
.ws4_c00456{word-spacing:-14.340000px;}
.ws3_c00456{word-spacing:-14.160000px;}
.ws0_c00456{word-spacing:-13.500000px;}
.ws6_c00456{word-spacing:-12.906000px;}
.ws1_c00456{word-spacing:-7.500000px;}
.ws2_c00456{word-spacing:-2.700000px;}
.ws7_c00456{word-spacing:-1.782000px;}
.ws8_c00456{word-spacing:0.000000px;}
._28_c00456{margin-left:-20.589000px;}
._25_c00456{margin-left:-18.198000px;}
._22_c00456{margin-left:-16.830000px;}
._2a_c00456{margin-left:-15.066000px;}
._8_c00456{margin-left:-12.144000px;}
._29_c00456{margin-left:-11.103000px;}
._26_c00456{margin-left:-10.002000px;}
._6_c00456{margin-left:-8.835000px;}
._19_c00456{margin-left:-6.813000px;}
._2_c00456{margin-left:-5.616000px;}
._3_c00456{margin-left:-3.942000px;}
._9_c00456{margin-left:-2.451000px;}
._e_c00456{margin-left:-1.305000px;}
._b_c00456{width:1.020000px;}
._0_c00456{width:2.106000px;}
._1_c00456{width:3.888000px;}
._4_c00456{width:5.076000px;}
._d_c00456{width:6.759000px;}
._5_c00456{width:7.806000px;}
._10_c00456{width:9.000000px;}
._1c_c00456{width:10.122000px;}
._7_c00456{width:11.286000px;}
._17_c00456{width:13.272000px;}
._c_c00456{width:15.024000px;}
._15_c00456{width:17.211000px;}
._16_c00456{width:18.462000px;}
._f_c00456{width:20.004000px;}
._1f_c00456{width:21.222000px;}
._11_c00456{width:22.320000px;}
._2f_c00456{width:24.162000px;}
._13_c00456{width:25.350000px;}
._18_c00456{width:27.390000px;}
._2b_c00456{width:28.707000px;}
._12_c00456{width:30.000000px;}
._14_c00456{width:31.737000px;}
._2e_c00456{width:35.007000px;}
._1e_c00456{width:37.140000px;}
._30_c00456{width:39.288000px;}
._21_c00456{width:40.449000px;}
._1d_c00456{width:41.928000px;}
._2c_c00456{width:43.464000px;}
._2d_c00456{width:44.556000px;}
._20_c00456{width:51.828000px;}
._1b_c00456{width:56.274000px;}
._1a_c00456{width:61.434000px;}
._a_c00456{width:84.153000px;}
._24_c00456{width:103.932000px;}
._27_c00456{width:116.922000px;}
._31_c00456{width:160.116000px;}
._23_c00456{width:201.930000px;}
.fc2_c00456{color:transparent;}
.fc1_c00456{color:rgb(128,128,128);}
.fc0_c00456{color:rgb(0,0,0);}
.fs6_c00456{font-size:48.000000px;}
.fs5_c00456{font-size:51.000000px;}
.fs0_c00456{font-size:54.000000px;}
.fs1_c00456{font-size:57.000000px;}
.fs2_c00456{font-size:60.000000px;}
.fs3_c00456{font-size:63.000000px;}
.fs4_c00456{font-size:66.000000px;}
.y0_c00456{bottom:0.000000px;}
.y4f_c00456{bottom:3.105000px;}
.y4e_c00456{bottom:7.228363px;}
.y4d_c00456{bottom:58.350000px;}
.y26_c00456{bottom:61.050000px;}
.y4c_c00456{bottom:78.750000px;}
.y25_c00456{bottom:80.700000px;}
.y4b_c00456{bottom:96.150000px;}
.y24_c00456{bottom:98.850000px;}
.y4a_c00456{bottom:114.150000px;}
.y23_c00456{bottom:117.150000px;}
.y49_c00456{bottom:132.300000px;}
.y22_c00456{bottom:134.700000px;}
.y48_c00456{bottom:150.600000px;}
.y21_c00456{bottom:153.300000px;}
.y47_c00456{bottom:167.850000px;}
.y20_c00456{bottom:170.850000px;}
.y46_c00456{bottom:186.300000px;}
.y1f_c00456{bottom:189.300000px;}
.y45_c00456{bottom:204.600000px;}
.y1e_c00456{bottom:207.600000px;}
.y44_c00456{bottom:223.200000px;}
.y1d_c00456{bottom:225.450000px;}
.y43_c00456{bottom:240.600000px;}
.y1c_c00456{bottom:243.300000px;}
.y42_c00456{bottom:259.050000px;}
.y41_c00456{bottom:277.200000px;}
.y1b_c00456{bottom:279.900000px;}
.y40_c00456{bottom:295.350000px;}
.y1a_c00456{bottom:297.750000px;}
.y3f_c00456{bottom:313.500000px;}
.y3e_c00456{bottom:331.800000px;}
.y19_c00456{bottom:332.100000px;}
.y3d_c00456{bottom:349.650000px;}
.y3c_c00456{bottom:367.950000px;}
.y18_c00456{bottom:369.600000px;}
.y3b_c00456{bottom:386.550000px;}
.y17_c00456{bottom:386.850000px;}
.y3a_c00456{bottom:403.650000px;}
.y16_c00456{bottom:405.450000px;}
.y39_c00456{bottom:421.950000px;}
.y15_c00456{bottom:423.300000px;}
.y38_c00456{bottom:440.100000px;}
.y14_c00456{bottom:441.000000px;}
.y37_c00456{bottom:457.950000px;}
.y13_c00456{bottom:459.000000px;}
.y36_c00456{bottom:476.550000px;}
.y12_c00456{bottom:477.300000px;}
.y35_c00456{bottom:493.200000px;}
.y11_c00456{bottom:495.150000px;}
.y34_c00456{bottom:511.950000px;}
.y10_c00456{bottom:513.000000px;}
.yf_c00456{bottom:529.650000px;}
.ye_c00456{bottom:547.200000px;}
.y33_c00456{bottom:547.500000px;}
.yd_c00456{bottom:565.050000px;}
.yc_c00456{bottom:583.200000px;}
.y32_c00456{bottom:583.500000px;}
.yb_c00456{bottom:601.050000px;}
.y31_c00456{bottom:601.800000px;}
.ya_c00456{bottom:619.350000px;}
.y30_c00456{bottom:619.950000px;}
.y9_c00456{bottom:637.200000px;}
.y2f_c00456{bottom:637.650000px;}
.y8_c00456{bottom:655.800000px;}
.y2e_c00456{bottom:656.100000px;}
.y7_c00456{bottom:673.650000px;}
.y2d_c00456{bottom:674.100000px;}
.y2c_c00456{bottom:691.650000px;}
.y6_c00456{bottom:692.100000px;}
.y5_c00456{bottom:710.100000px;}
.y2b_c00456{bottom:711.150000px;}
.y2a_c00456{bottom:728.400000px;}
.y4_c00456{bottom:728.700000px;}
.y3_c00456{bottom:746.850000px;}
.y29_c00456{bottom:747.600000px;}
.y2_c00456{bottom:765.150000px;}
.y28_c00456{bottom:765.750000px;}
.y1_c00456{bottom:783.000000px;}
.y27_c00456{bottom:784.350000px;}
.h7_c00456{height:13.200074px;}
.h8_c00456{height:43.804688px;}
.h4_c00456{height:52.971680px;}
.h2_c00456{height:52.998047px;}
.h1_c00456{height:59.736000px;}
.h3_c00456{height:62.880000px;}
.h5_c00456{height:66.024000px;}
.h6_c00456{height:70.422000px;}
.h0_c00456{height:843.750000px;}
.w2_c00456{width:104.875500px;}
.w1_c00456{width:579.750000px;}
.w0_c00456{width:579.975000px;}
.x0_c00456{left:0.000000px;}
.xb_c00456{left:22.500000px;}
.xa_c00456{left:69.750000px;}
.x3_c00456{left:75.900000px;}
.x1_c00456{left:76.950000px;}
.x2_c00456{left:78.900000px;}
.x4_c00456{left:79.950000px;}
.x5_c00456{left:81.300000px;}
.xc_c00456{left:83.250000px;}
.x7_c00456{left:113.400000px;}
.x9_c00456{left:117.000000px;}
.x8_c00456{left:135.000000px;}
.x6_c00456{left:148.800000px;}
.x13_c00456{left:241.801758px;}
.xf_c00456{left:292.500000px;}
.xe_c00456{left:293.850000px;}
.xd_c00456{left:294.900000px;}
.x10_c00456{left:295.950000px;}
.x11_c00456{left:297.600000px;}
.x12_c00456{left:298.950000px;}
@media print{
.v0_c00456{vertical-align:0.000000pt;}
.ls6_c00456{letter-spacing:-5.333333pt;}
.ls4_c00456{letter-spacing:0.000000pt;}
.ls5_c00456{letter-spacing:2.666667pt;}
.ls2_c00456{letter-spacing:6.826667pt;}
.ls3_c00456{letter-spacing:7.090667pt;}
.ls0_c00456{letter-spacing:9.589333pt;}
.ls1_c00456{letter-spacing:11.733333pt;}
.ws5_c00456{word-spacing:-27.517333pt;}
.ws4_c00456{word-spacing:-12.746667pt;}
.ws3_c00456{word-spacing:-12.586667pt;}
.ws0_c00456{word-spacing:-12.000000pt;}
.ws6_c00456{word-spacing:-11.472000pt;}
.ws1_c00456{word-spacing:-6.666667pt;}
.ws2_c00456{word-spacing:-2.400000pt;}
.ws7_c00456{word-spacing:-1.584000pt;}
.ws8_c00456{word-spacing:0.000000pt;}
._28_c00456{margin-left:-18.301333pt;}
._25_c00456{margin-left:-16.176000pt;}
._22_c00456{margin-left:-14.960000pt;}
._2a_c00456{margin-left:-13.392000pt;}
._8_c00456{margin-left:-10.794667pt;}
._29_c00456{margin-left:-9.869333pt;}
._26_c00456{margin-left:-8.890667pt;}
._6_c00456{margin-left:-7.853333pt;}
._19_c00456{margin-left:-6.056000pt;}
._2_c00456{margin-left:-4.992000pt;}
._3_c00456{margin-left:-3.504000pt;}
._9_c00456{margin-left:-2.178667pt;}
._e_c00456{margin-left:-1.160000pt;}
._b_c00456{width:0.906667pt;}
._0_c00456{width:1.872000pt;}
._1_c00456{width:3.456000pt;}
._4_c00456{width:4.512000pt;}
._d_c00456{width:6.008000pt;}
._5_c00456{width:6.938667pt;}
._10_c00456{width:8.000000pt;}
._1c_c00456{width:8.997333pt;}
._7_c00456{width:10.032000pt;}
._17_c00456{width:11.797333pt;}
._c_c00456{width:13.354667pt;}
._15_c00456{width:15.298667pt;}
._16_c00456{width:16.410667pt;}
._f_c00456{width:17.781333pt;}
._1f_c00456{width:18.864000pt;}
._11_c00456{width:19.840000pt;}
._2f_c00456{width:21.477333pt;}
._13_c00456{width:22.533333pt;}
._18_c00456{width:24.346667pt;}
._2b_c00456{width:25.517333pt;}
._12_c00456{width:26.666667pt;}
._14_c00456{width:28.210667pt;}
._2e_c00456{width:31.117333pt;}
._1e_c00456{width:33.013333pt;}
._30_c00456{width:34.922667pt;}
._21_c00456{width:35.954667pt;}
._1d_c00456{width:37.269333pt;}
._2c_c00456{width:38.634667pt;}
._2d_c00456{width:39.605333pt;}
._20_c00456{width:46.069333pt;}
._1b_c00456{width:50.021333pt;}
._1a_c00456{width:54.608000pt;}
._a_c00456{width:74.802667pt;}
._24_c00456{width:92.384000pt;}
._27_c00456{width:103.930667pt;}
._31_c00456{width:142.325333pt;}
._23_c00456{width:179.493333pt;}
.fs6_c00456{font-size:42.666667pt;}
.fs5_c00456{font-size:45.333333pt;}
.fs0_c00456{font-size:48.000000pt;}
.fs1_c00456{font-size:50.666667pt;}
.fs2_c00456{font-size:53.333333pt;}
.fs3_c00456{font-size:56.000000pt;}
.fs4_c00456{font-size:58.666667pt;}
.y0_c00456{bottom:0.000000pt;}
.y4f_c00456{bottom:2.760000pt;}
.y4e_c00456{bottom:6.425212pt;}
.y4d_c00456{bottom:51.866667pt;}
.y26_c00456{bottom:54.266667pt;}
.y4c_c00456{bottom:70.000000pt;}
.y25_c00456{bottom:71.733333pt;}
.y4b_c00456{bottom:85.466667pt;}
.y24_c00456{bottom:87.866667pt;}
.y4a_c00456{bottom:101.466667pt;}
.y23_c00456{bottom:104.133333pt;}
.y49_c00456{bottom:117.600000pt;}
.y22_c00456{bottom:119.733333pt;}
.y48_c00456{bottom:133.866667pt;}
.y21_c00456{bottom:136.266667pt;}
.y47_c00456{bottom:149.200000pt;}
.y20_c00456{bottom:151.866667pt;}
.y46_c00456{bottom:165.600000pt;}
.y1f_c00456{bottom:168.266667pt;}
.y45_c00456{bottom:181.866667pt;}
.y1e_c00456{bottom:184.533333pt;}
.y44_c00456{bottom:198.400000pt;}
.y1d_c00456{bottom:200.400000pt;}
.y43_c00456{bottom:213.866667pt;}
.y1c_c00456{bottom:216.266667pt;}
.y42_c00456{bottom:230.266667pt;}
.y41_c00456{bottom:246.400000pt;}
.y1b_c00456{bottom:248.800000pt;}
.y40_c00456{bottom:262.533333pt;}
.y1a_c00456{bottom:264.666667pt;}
.y3f_c00456{bottom:278.666667pt;}
.y3e_c00456{bottom:294.933333pt;}
.y19_c00456{bottom:295.200000pt;}
.y3d_c00456{bottom:310.800000pt;}
.y3c_c00456{bottom:327.066667pt;}
.y18_c00456{bottom:328.533333pt;}
.y3b_c00456{bottom:343.600000pt;}
.y17_c00456{bottom:343.866667pt;}
.y3a_c00456{bottom:358.800000pt;}
.y16_c00456{bottom:360.400000pt;}
.y39_c00456{bottom:375.066667pt;}
.y15_c00456{bottom:376.266667pt;}
.y38_c00456{bottom:391.200000pt;}
.y14_c00456{bottom:392.000000pt;}
.y37_c00456{bottom:407.066667pt;}
.y13_c00456{bottom:408.000000pt;}
.y36_c00456{bottom:423.600000pt;}
.y12_c00456{bottom:424.266667pt;}
.y35_c00456{bottom:438.400000pt;}
.y11_c00456{bottom:440.133333pt;}
.y34_c00456{bottom:455.066667pt;}
.y10_c00456{bottom:456.000000pt;}
.yf_c00456{bottom:470.800000pt;}
.ye_c00456{bottom:486.400000pt;}
.y33_c00456{bottom:486.666667pt;}
.yd_c00456{bottom:502.266667pt;}
.yc_c00456{bottom:518.400000pt;}
.y32_c00456{bottom:518.666667pt;}
.yb_c00456{bottom:534.266667pt;}
.y31_c00456{bottom:534.933333pt;}
.ya_c00456{bottom:550.533333pt;}
.y30_c00456{bottom:551.066667pt;}
.y9_c00456{bottom:566.400000pt;}
.y2f_c00456{bottom:566.800000pt;}
.y8_c00456{bottom:582.933333pt;}
.y2e_c00456{bottom:583.200000pt;}
.y7_c00456{bottom:598.800000pt;}
.y2d_c00456{bottom:599.200000pt;}
.y2c_c00456{bottom:614.800000pt;}
.y6_c00456{bottom:615.200000pt;}
.y5_c00456{bottom:631.200000pt;}
.y2b_c00456{bottom:632.133333pt;}
.y2a_c00456{bottom:647.466667pt;}
.y4_c00456{bottom:647.733333pt;}
.y3_c00456{bottom:663.866667pt;}
.y29_c00456{bottom:664.533333pt;}
.y2_c00456{bottom:680.133333pt;}
.y28_c00456{bottom:680.666667pt;}
.y1_c00456{bottom:696.000000pt;}
.y27_c00456{bottom:697.200000pt;}
.h7_c00456{height:11.733399pt;}
.h8_c00456{height:38.937500pt;}
.h4_c00456{height:47.085938pt;}
.h2_c00456{height:47.109375pt;}
.h1_c00456{height:53.098667pt;}
.h3_c00456{height:55.893333pt;}
.h5_c00456{height:58.688000pt;}
.h6_c00456{height:62.597333pt;}
.h0_c00456{height:750.000000pt;}
.w2_c00456{width:93.222667pt;}
.w1_c00456{width:515.333333pt;}
.w0_c00456{width:515.533333pt;}
.x0_c00456{left:0.000000pt;}
.xb_c00456{left:20.000000pt;}
.xa_c00456{left:62.000000pt;}
.x3_c00456{left:67.466667pt;}
.x1_c00456{left:68.400000pt;}
.x2_c00456{left:70.133333pt;}
.x4_c00456{left:71.066667pt;}
.x5_c00456{left:72.266667pt;}
.xc_c00456{left:74.000000pt;}
.x7_c00456{left:100.800000pt;}
.x9_c00456{left:104.000000pt;}
.x8_c00456{left:120.000000pt;}
.x6_c00456{left:132.266667pt;}
.x13_c00456{left:214.934896pt;}
.xf_c00456{left:260.000000pt;}
.xe_c00456{left:261.200000pt;}
.xd_c00456{left:262.133333pt;}
.x10_c00456{left:263.066667pt;}
.x11_c00456{left:264.533333pt;}
.x12_c00456{left:265.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_452eb97267f343a0adfaac7c.woff2')format("woff");}.ff1_c00457{font-family:ff1_c00457;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00457;src:url('chunks/assets/font_ba0d364b87a33c18517ac56b.woff2')format("woff");}.ff2_c00457{font-family:ff2_c00457;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00457;src:url('chunks/assets/font_089510d0d6d8c3460deb1b9c.woff2')format("woff");}.ff3_c00457{font-family:ff3_c00457;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00457;src:url('chunks/assets/font_67cf73d8397cd1648dd56ab1.woff2')format("woff");}.ff4_c00457{font-family:ff4_c00457;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00457;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff5_c00457{font-family:ff5_c00457;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00457{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00457{vertical-align:0.000000px;}
.ls6_c00457{letter-spacing:0.000000px;}
.ls0_c00457{letter-spacing:15.987000px;}
.ls1_c00457{letter-spacing:87.750000px;}
.ls5_c00457{letter-spacing:88.350000px;}
.ls2_c00457{letter-spacing:89.550000px;}
.ls3_c00457{letter-spacing:92.550000px;}
.ls4_c00457{letter-spacing:93.150000px;}
.sc__c00457{text-shadow:none;}
.sc0_c00457{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00457{-webkit-text-stroke:0px transparent;}
.sc0_c00457{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00457{word-spacing:-15.813000px;}
.ws0_c00457{word-spacing:-15.000000px;}
.ws1_c00457{word-spacing:-14.427000px;}
.ws3_c00457{word-spacing:0.000000px;}
._1e_c00457{margin-left:-19.104000px;}
._15_c00457{margin-left:-10.968000px;}
._10_c00457{margin-left:-8.622000px;}
._12_c00457{margin-left:-7.389000px;}
._f_c00457{margin-left:-5.607000px;}
._13_c00457{margin-left:-4.446000px;}
._e_c00457{margin-left:-3.297000px;}
._d_c00457{margin-left:-1.620000px;}
._0_c00457{width:1.512000px;}
._9_c00457{width:2.628000px;}
._b_c00457{width:3.648000px;}
._14_c00457{width:4.863000px;}
._6_c00457{width:6.300000px;}
._2_c00457{width:8.064000px;}
._3_c00457{width:9.639000px;}
._28_c00457{width:10.647000px;}
._7_c00457{width:11.655000px;}
._4_c00457{width:12.789000px;}
._16_c00457{width:14.382000px;}
._27_c00457{width:15.633000px;}
._11_c00457{width:17.700000px;}
._8_c00457{width:19.089000px;}
._21_c00457{width:20.526000px;}
._18_c00457{width:21.828000px;}
._17_c00457{width:23.763000px;}
._5_c00457{width:25.956000px;}
._25_c00457{width:29.079000px;}
._2a_c00457{width:30.399000px;}
._26_c00457{width:33.534000px;}
._19_c00457{width:34.581000px;}
._1d_c00457{width:39.528000px;}
._1a_c00457{width:40.830000px;}
._c_c00457{width:46.536000px;}
._1c_c00457{width:51.909000px;}
._20_c00457{width:82.068000px;}
._1f_c00457{width:85.500000px;}
._a_c00457{width:88.062000px;}
._24_c00457{width:91.707000px;}
._23_c00457{width:93.441000px;}
._29_c00457{width:95.442000px;}
._22_c00457{width:175.506000px;}
._1b_c00457{width:192.255000px;}
._1_c00457{width:237.258000px;}
.fc2_c00457{color:transparent;}
.fc1_c00457{color:rgb(128,128,128);}
.fc0_c00457{color:rgb(0,0,0);}
.fs3_c00457{font-size:48.000000px;}
.fs2_c00457{font-size:57.000000px;}
.fs1_c00457{font-size:60.000000px;}
.fs0_c00457{font-size:63.000000px;}
.y0_c00457{bottom:0.000000px;}
.y44_c00457{bottom:3.105000px;}
.y43_c00457{bottom:7.228371px;}
.y37_c00457{bottom:24.015000px;}
.y42_c00457{bottom:39.915000px;}
.y36_c00457{bottom:41.565000px;}
.y41_c00457{bottom:58.515000px;}
.y35_c00457{bottom:59.865000px;}
.y40_c00457{bottom:76.965000px;}
.y34_c00457{bottom:78.765000px;}
.y3f_c00457{bottom:95.565000px;}
.y33_c00457{bottom:96.615000px;}
.y3e_c00457{bottom:114.165000px;}
.y32_c00457{bottom:115.215000px;}
.y3d_c00457{bottom:132.015000px;}
.y31_c00457{bottom:133.665000px;}
.y3c_c00457{bottom:150.315000px;}
.y30_c00457{bottom:151.515000px;}
.y3b_c00457{bottom:168.465000px;}
.y2f_c00457{bottom:170.115000px;}
.y3a_c00457{bottom:186.615000px;}
.y2e_c00457{bottom:187.965000px;}
.y39_c00457{bottom:204.915000px;}
.y2d_c00457{bottom:205.965000px;}
.y38_c00457{bottom:222.765000px;}
.y2c_c00457{bottom:224.415000px;}
.y2b_c00457{bottom:241.965000px;}
.y1e_c00457{bottom:259.215000px;}
.y2a_c00457{bottom:260.865000px;}
.y1d_c00457{bottom:277.515000px;}
.y29_c00457{bottom:278.565000px;}
.y1c_c00457{bottom:295.665000px;}
.y28_c00457{bottom:296.715000px;}
.y1b_c00457{bottom:313.515000px;}
.y27_c00457{bottom:314.565000px;}
.y1a_c00457{bottom:331.815000px;}
.y26_c00457{bottom:332.565000px;}
.y19_c00457{bottom:350.115000px;}
.y25_c00457{bottom:351.315000px;}
.y18_c00457{bottom:368.265000px;}
.y24_c00457{bottom:368.865000px;}
.y17_c00457{bottom:386.415000px;}
.y23_c00457{bottom:387.465000px;}
.y16_c00457{bottom:404.715000px;}
.y22_c00457{bottom:405.465000px;}
.y15_c00457{bottom:422.865000px;}
.y21_c00457{bottom:423.315000px;}
.y14_c00457{bottom:440.865000px;}
.y20_c00457{bottom:441.765000px;}
.y13_c00457{bottom:459.015000px;}
.y1f_c00457{bottom:460.665000px;}
.y12_c00457{bottom:478.215000px;}
.y11_c00457{bottom:496.215000px;}
.y10_c00457{bottom:514.065000px;}
.yf_c00457{bottom:531.915000px;}
.ye_c00457{bottom:550.215000px;}
.yd_c00457{bottom:568.065000px;}
.yc_c00457{bottom:586.665000px;}
.yb_c00457{bottom:603.915000px;}
.ya_c00457{bottom:622.365000px;}
.y9_c00457{bottom:640.965000px;}
.y8_c00457{bottom:659.115000px;}
.y7_c00457{bottom:677.115000px;}
.y6_c00457{bottom:695.265000px;}
.y5_c00457{bottom:713.565000px;}
.y4_c00457{bottom:732.015000px;}
.y3_c00457{bottom:749.715000px;}
.y2_c00457{bottom:768.465000px;}
.y1_c00457{bottom:787.515000px;}
.h4_c00457{height:13.200074px;}
.h5_c00457{height:43.804688px;}
.h3_c00457{height:65.040000px;}
.h2_c00457{height:66.024000px;}
.h1_c00457{height:822.750000px;}
.h0_c00457{height:822.975000px;}
.w2_c00457{width:104.875500px;}
.w1_c00457{width:566.250000px;}
.w0_c00457{width:566.475000px;}
.x0_c00457{left:0.000000px;}
.x5_c00457{left:82.650000px;}
.x6_c00457{left:83.700000px;}
.x4_c00457{left:84.750000px;}
.x3_c00457{left:86.700000px;}
.x2_c00457{left:88.200000px;}
.x1_c00457{left:90.000000px;}
.xe_c00457{left:235.051758px;}
.xc_c00457{left:300.000000px;}
.xb_c00457{left:301.050000px;}
.x9_c00457{left:302.700000px;}
.x8_c00457{left:303.750000px;}
.x7_c00457{left:305.400000px;}
.xa_c00457{left:332.700000px;}
.xd_c00457{left:479.550000px;}
@media print{
.v0_c00457{vertical-align:0.000000pt;}
.ls6_c00457{letter-spacing:0.000000pt;}
.ls0_c00457{letter-spacing:14.210667pt;}
.ls1_c00457{letter-spacing:78.000000pt;}
.ls5_c00457{letter-spacing:78.533333pt;}
.ls2_c00457{letter-spacing:79.600000pt;}
.ls3_c00457{letter-spacing:82.266667pt;}
.ls4_c00457{letter-spacing:82.800000pt;}
.ws2_c00457{word-spacing:-14.056000pt;}
.ws0_c00457{word-spacing:-13.333333pt;}
.ws1_c00457{word-spacing:-12.824000pt;}
.ws3_c00457{word-spacing:0.000000pt;}
._1e_c00457{margin-left:-16.981333pt;}
._15_c00457{margin-left:-9.749333pt;}
._10_c00457{margin-left:-7.664000pt;}
._12_c00457{margin-left:-6.568000pt;}
._f_c00457{margin-left:-4.984000pt;}
._13_c00457{margin-left:-3.952000pt;}
._e_c00457{margin-left:-2.930667pt;}
._d_c00457{margin-left:-1.440000pt;}
._0_c00457{width:1.344000pt;}
._9_c00457{width:2.336000pt;}
._b_c00457{width:3.242667pt;}
._14_c00457{width:4.322667pt;}
._6_c00457{width:5.600000pt;}
._2_c00457{width:7.168000pt;}
._3_c00457{width:8.568000pt;}
._28_c00457{width:9.464000pt;}
._7_c00457{width:10.360000pt;}
._4_c00457{width:11.368000pt;}
._16_c00457{width:12.784000pt;}
._27_c00457{width:13.896000pt;}
._11_c00457{width:15.733333pt;}
._8_c00457{width:16.968000pt;}
._21_c00457{width:18.245333pt;}
._18_c00457{width:19.402667pt;}
._17_c00457{width:21.122667pt;}
._5_c00457{width:23.072000pt;}
._25_c00457{width:25.848000pt;}
._2a_c00457{width:27.021333pt;}
._26_c00457{width:29.808000pt;}
._19_c00457{width:30.738667pt;}
._1d_c00457{width:35.136000pt;}
._1a_c00457{width:36.293333pt;}
._c_c00457{width:41.365333pt;}
._1c_c00457{width:46.141333pt;}
._20_c00457{width:72.949333pt;}
._1f_c00457{width:76.000000pt;}
._a_c00457{width:78.277333pt;}
._24_c00457{width:81.517333pt;}
._23_c00457{width:83.058667pt;}
._29_c00457{width:84.837333pt;}
._22_c00457{width:156.005333pt;}
._1b_c00457{width:170.893333pt;}
._1_c00457{width:210.896000pt;}
.fs3_c00457{font-size:42.666667pt;}
.fs2_c00457{font-size:50.666667pt;}
.fs1_c00457{font-size:53.333333pt;}
.fs0_c00457{font-size:56.000000pt;}
.y0_c00457{bottom:0.000000pt;}
.y44_c00457{bottom:2.760000pt;}
.y43_c00457{bottom:6.425219pt;}
.y37_c00457{bottom:21.346667pt;}
.y42_c00457{bottom:35.480000pt;}
.y36_c00457{bottom:36.946667pt;}
.y41_c00457{bottom:52.013333pt;}
.y35_c00457{bottom:53.213333pt;}
.y40_c00457{bottom:68.413333pt;}
.y34_c00457{bottom:70.013333pt;}
.y3f_c00457{bottom:84.946667pt;}
.y33_c00457{bottom:85.880000pt;}
.y3e_c00457{bottom:101.480000pt;}
.y32_c00457{bottom:102.413333pt;}
.y3d_c00457{bottom:117.346667pt;}
.y31_c00457{bottom:118.813333pt;}
.y3c_c00457{bottom:133.613333pt;}
.y30_c00457{bottom:134.680000pt;}
.y3b_c00457{bottom:149.746667pt;}
.y2f_c00457{bottom:151.213333pt;}
.y3a_c00457{bottom:165.880000pt;}
.y2e_c00457{bottom:167.080000pt;}
.y39_c00457{bottom:182.146667pt;}
.y2d_c00457{bottom:183.080000pt;}
.y38_c00457{bottom:198.013333pt;}
.y2c_c00457{bottom:199.480000pt;}
.y2b_c00457{bottom:215.080000pt;}
.y1e_c00457{bottom:230.413333pt;}
.y2a_c00457{bottom:231.880000pt;}
.y1d_c00457{bottom:246.680000pt;}
.y29_c00457{bottom:247.613333pt;}
.y1c_c00457{bottom:262.813333pt;}
.y28_c00457{bottom:263.746667pt;}
.y1b_c00457{bottom:278.680000pt;}
.y27_c00457{bottom:279.613333pt;}
.y1a_c00457{bottom:294.946667pt;}
.y26_c00457{bottom:295.613333pt;}
.y19_c00457{bottom:311.213333pt;}
.y25_c00457{bottom:312.280000pt;}
.y18_c00457{bottom:327.346667pt;}
.y24_c00457{bottom:327.880000pt;}
.y17_c00457{bottom:343.480000pt;}
.y23_c00457{bottom:344.413333pt;}
.y16_c00457{bottom:359.746667pt;}
.y22_c00457{bottom:360.413333pt;}
.y15_c00457{bottom:375.880000pt;}
.y21_c00457{bottom:376.280000pt;}
.y14_c00457{bottom:391.880000pt;}
.y20_c00457{bottom:392.680000pt;}
.y13_c00457{bottom:408.013333pt;}
.y1f_c00457{bottom:409.480000pt;}
.y12_c00457{bottom:425.080000pt;}
.y11_c00457{bottom:441.080000pt;}
.y10_c00457{bottom:456.946667pt;}
.yf_c00457{bottom:472.813333pt;}
.ye_c00457{bottom:489.080000pt;}
.yd_c00457{bottom:504.946667pt;}
.yc_c00457{bottom:521.480000pt;}
.yb_c00457{bottom:536.813333pt;}
.ya_c00457{bottom:553.213333pt;}
.y9_c00457{bottom:569.746667pt;}
.y8_c00457{bottom:585.880000pt;}
.y7_c00457{bottom:601.880000pt;}
.y6_c00457{bottom:618.013333pt;}
.y5_c00457{bottom:634.280000pt;}
.y4_c00457{bottom:650.680000pt;}
.y3_c00457{bottom:666.413333pt;}
.y2_c00457{bottom:683.080000pt;}
.y1_c00457{bottom:700.013333pt;}
.h4_c00457{height:11.733399pt;}
.h5_c00457{height:38.937500pt;}
.h3_c00457{height:57.813333pt;}
.h2_c00457{height:58.688000pt;}
.h1_c00457{height:731.333333pt;}
.h0_c00457{height:731.533333pt;}
.w2_c00457{width:93.222667pt;}
.w1_c00457{width:503.333333pt;}
.w0_c00457{width:503.533333pt;}
.x0_c00457{left:0.000000pt;}
.x5_c00457{left:73.466667pt;}
.x6_c00457{left:74.400000pt;}
.x4_c00457{left:75.333333pt;}
.x3_c00457{left:77.066667pt;}
.x2_c00457{left:78.400000pt;}
.x1_c00457{left:80.000000pt;}
.xe_c00457{left:208.934896pt;}
.xc_c00457{left:266.666667pt;}
.xb_c00457{left:267.600000pt;}
.x9_c00457{left:269.066667pt;}
.x8_c00457{left:270.000000pt;}
.x7_c00457{left:271.466667pt;}
.xa_c00457{left:295.733333pt;}
.xd_c00457{left:426.266667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a187d4540dc1c4166c00874b.woff2')format("woff");}.ff1_c00458{font-family:ff1_c00458;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00458;src:url('chunks/assets/font_dd7633772bd865ec9860970d.woff2')format("woff");}.ff2_c00458{font-family:ff2_c00458;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00458;src:url('chunks/assets/font_823f03307543ec7a10329a8f.woff2')format("woff");}.ff3_c00458{font-family:ff3_c00458;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00458;src:url('chunks/assets/font_ca5fc9445d02edf401694283.woff2')format("woff");}.ff4_c00458{font-family:ff4_c00458;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00458;src:url('chunks/assets/font_14693fb2c63d986ed77f6ba6.woff2')format("woff");}.ff5_c00458{font-family:ff5_c00458;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00458;src:url('chunks/assets/font_03c460b94ded5ace202757e9.woff2')format("woff");}.ff6_c00458{font-family:ff6_c00458;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00458;src:url('chunks/assets/font_bb231f51992f2cc6e3058cc5.woff2')format("woff");}.ff7_c00458{font-family:ff7_c00458;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00458;src:url('chunks/assets/font_0f614cef1d271f5fa080cab1.woff2')format("woff");}.ff8_c00458{font-family:ff8_c00458;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00458;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff9_c00458{font-family:ff9_c00458;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00458{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00458{vertical-align:-2.400000px;}
.v0_c00458{vertical-align:0.000000px;}
.ls7_c00458{letter-spacing:-9.000000px;}
.ls6_c00458{letter-spacing:0.000000px;}
.ls5_c00458{letter-spacing:3.000000px;}
.ls0_c00458{letter-spacing:7.260000px;}
.ls3_c00458{letter-spacing:10.140000px;}
.ls1_c00458{letter-spacing:12.660000px;}
.ls2_c00458{letter-spacing:21.750000px;}
.ls4_c00458{letter-spacing:73.140000px;}
.sc__c00458{text-shadow:none;}
.sc0_c00458{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00458{-webkit-text-stroke:0px transparent;}
.sc0_c00458{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00458{word-spacing:-50.022000px;}
.ws4_c00458{word-spacing:-16.434000px;}
.ws1_c00458{word-spacing:-15.813000px;}
.ws3_c00458{word-spacing:-15.000000px;}
.ws0_c00458{word-spacing:-14.160000px;}
.ws5_c00458{word-spacing:0.000000px;}
._24_c00458{margin-left:-17.160000px;}
._e_c00458{margin-left:-15.120000px;}
._15_c00458{margin-left:-13.287000px;}
._20_c00458{margin-left:-12.060000px;}
._16_c00458{margin-left:-10.458000px;}
._12_c00458{margin-left:-8.532000px;}
._10_c00458{margin-left:-6.780000px;}
._f_c00458{margin-left:-4.980000px;}
._8_c00458{margin-left:-3.180000px;}
._7_c00458{margin-left:-1.320000px;}
._3_c00458{width:1.200000px;}
._4_c00458{width:2.220000px;}
._6_c00458{width:3.480000px;}
._5_c00458{width:4.860000px;}
._0_c00458{width:6.840000px;}
._a_c00458{width:9.000000px;}
._2_c00458{width:10.728000px;}
._17_c00458{width:11.880000px;}
._9_c00458{width:12.900000px;}
._1a_c00458{width:14.061000px;}
._b_c00458{width:15.480000px;}
._14_c00458{width:16.899000px;}
._18_c00458{width:18.120000px;}
._1d_c00458{width:20.514000px;}
._25_c00458{width:22.380000px;}
._1f_c00458{width:24.000000px;}
._1c_c00458{width:25.917000px;}
._22_c00458{width:27.006000px;}
._1e_c00458{width:28.137000px;}
._21_c00458{width:29.463000px;}
._d_c00458{width:31.812000px;}
._13_c00458{width:34.269000px;}
._1_c00458{width:35.856000px;}
._1b_c00458{width:38.202000px;}
._11_c00458{width:39.267000px;}
._c_c00458{width:79.956000px;}
._23_c00458{width:87.036000px;}
._19_c00458{width:165.759000px;}
.fc2_c00458{color:transparent;}
.fc1_c00458{color:rgb(128,128,128);}
.fc0_c00458{color:rgb(0,0,0);}
.fs6_c00458{font-size:48.000000px;}
.fs4_c00458{font-size:51.000000px;}
.fs5_c00458{font-size:54.000000px;}
.fs2_c00458{font-size:57.000000px;}
.fs1_c00458{font-size:60.000000px;}
.fs3_c00458{font-size:63.000000px;}
.fs0_c00458{font-size:72.000000px;}
.y0_c00458{bottom:0.000000px;}
.y51_c00458{bottom:3.105000px;}
.y50_c00458{bottom:7.228363px;}
.y4f_c00458{bottom:30.000000px;}
.y4e_c00458{bottom:48.150000px;}
.y2a_c00458{bottom:49.950000px;}
.y4d_c00458{bottom:67.050000px;}
.y29_c00458{bottom:69.300000px;}
.y28_c00458{bottom:86.700000px;}
.y4c_c00458{bottom:102.300000px;}
.y27_c00458{bottom:105.600000px;}
.y4b_c00458{bottom:121.200000px;}
.y26_c00458{bottom:124.500000px;}
.y4a_c00458{bottom:139.650000px;}
.y25_c00458{bottom:142.050000px;}
.y49_c00458{bottom:157.500000px;}
.y24_c00458{bottom:160.650000px;}
.y23_c00458{bottom:178.950000px;}
.y48_c00458{bottom:192.750000px;}
.y22_c00458{bottom:196.800000px;}
.y21_c00458{bottom:214.950000px;}
.y47_c00458{bottom:228.750000px;}
.y20_c00458{bottom:233.250000px;}
.y46_c00458{bottom:247.350000px;}
.y1f_c00458{bottom:250.800000px;}
.y45_c00458{bottom:265.500000px;}
.y1e_c00458{bottom:269.100000px;}
.y44_c00458{bottom:283.800000px;}
.y1d_c00458{bottom:286.500000px;}
.y43_c00458{bottom:302.100000px;}
.y1c_c00458{bottom:305.100000px;}
.y42_c00458{bottom:320.250000px;}
.y1b_c00458{bottom:322.650000px;}
.y41_c00458{bottom:338.400000px;}
.y1a_c00458{bottom:340.950000px;}
.y40_c00458{bottom:357.000000px;}
.y19_c00458{bottom:358.800000px;}
.y3f_c00458{bottom:375.000000px;}
.y18_c00458{bottom:377.400000px;}
.y3e_c00458{bottom:393.150000px;}
.y17_c00458{bottom:396.000000px;}
.y3d_c00458{bottom:410.700000px;}
.y16_c00458{bottom:413.100000px;}
.y3c_c00458{bottom:428.850000px;}
.y15_c00458{bottom:430.950000px;}
.y3b_c00458{bottom:447.150000px;}
.y14_c00458{bottom:448.650000px;}
.y3a_c00458{bottom:465.450000px;}
.y13_c00458{bottom:467.100000px;}
.y39_c00458{bottom:483.600000px;}
.y12_c00458{bottom:485.400000px;}
.y38_c00458{bottom:501.750000px;}
.y11_c00458{bottom:503.250000px;}
.y37_c00458{bottom:519.150000px;}
.y10_c00458{bottom:520.350000px;}
.yf_c00458{bottom:537.000000px;}
.y36_c00458{bottom:554.550000px;}
.ye_c00458{bottom:555.300000px;}
.y35_c00458{bottom:573.150000px;}
.yd_c00458{bottom:573.450000px;}
.y34_c00458{bottom:591.300000px;}
.yc_c00458{bottom:591.750000px;}
.y33_c00458{bottom:609.150000px;}
.yb_c00458{bottom:609.900000px;}
.y32_c00458{bottom:627.450000px;}
.ya_c00458{bottom:628.050000px;}
.y31_c00458{bottom:645.750000px;}
.y9_c00458{bottom:646.050000px;}
.y30_c00458{bottom:663.600000px;}
.y8_c00458{bottom:664.200000px;}
.y2f_c00458{bottom:681.750000px;}
.y7_c00458{bottom:682.200000px;}
.y2e_c00458{bottom:699.750000px;}
.y6_c00458{bottom:700.350000px;}
.y2d_c00458{bottom:717.600000px;}
.y5_c00458{bottom:718.200000px;}
.y2c_c00458{bottom:735.750000px;}
.y4_c00458{bottom:737.400000px;}
.y3_c00458{bottom:754.650000px;}
.y2b_c00458{bottom:772.200000px;}
.y2_c00458{bottom:772.950000px;}
.y1_c00458{bottom:794.850000px;}
.h8_c00458{height:13.200074px;}
.h9_c00458{height:43.804688px;}
.h7_c00458{height:58.536000px;}
.h3_c00458{height:59.736000px;}
.h2_c00458{height:62.880000px;}
.h6_c00458{height:63.624000px;}
.h5_c00458{height:65.040000px;}
.h4_c00458{height:66.024000px;}
.h1_c00458{height:70.664062px;}
.h0_c00458{height:843.750000px;}
.w2_c00458{width:104.875500px;}
.w1_c00458{width:579.750000px;}
.w0_c00458{width:579.975000px;}
.x0_c00458{left:0.000000px;}
.x4_c00458{left:19.200000px;}
.x6_c00458{left:20.700000px;}
.x3_c00458{left:80.250000px;}
.x2_c00458{left:82.050000px;}
.x5_c00458{left:83.400000px;}
.x7_c00458{left:84.450000px;}
.x1_c00458{left:206.100000px;}
.x11_c00458{left:241.801758px;}
.xa_c00458{left:294.300000px;}
.x8_c00458{left:295.950000px;}
.x9_c00458{left:297.000000px;}
.xf_c00458{left:298.650000px;}
.xd_c00458{left:314.250000px;}
.xc_c00458{left:328.050000px;}
.xe_c00458{left:347.250000px;}
.xb_c00458{left:362.250000px;}
.x10_c00458{left:472.950000px;}
@media print{
.v1_c00458{vertical-align:-2.133333pt;}
.v0_c00458{vertical-align:0.000000pt;}
.ls7_c00458{letter-spacing:-8.000000pt;}
.ls6_c00458{letter-spacing:0.000000pt;}
.ls5_c00458{letter-spacing:2.666667pt;}
.ls0_c00458{letter-spacing:6.453333pt;}
.ls3_c00458{letter-spacing:9.013333pt;}
.ls1_c00458{letter-spacing:11.253333pt;}
.ls2_c00458{letter-spacing:19.333333pt;}
.ls4_c00458{letter-spacing:65.013333pt;}
.ws2_c00458{word-spacing:-44.464000pt;}
.ws4_c00458{word-spacing:-14.608000pt;}
.ws1_c00458{word-spacing:-14.056000pt;}
.ws3_c00458{word-spacing:-13.333333pt;}
.ws0_c00458{word-spacing:-12.586667pt;}
.ws5_c00458{word-spacing:0.000000pt;}
._24_c00458{margin-left:-15.253333pt;}
._e_c00458{margin-left:-13.440000pt;}
._15_c00458{margin-left:-11.810667pt;}
._20_c00458{margin-left:-10.720000pt;}
._16_c00458{margin-left:-9.296000pt;}
._12_c00458{margin-left:-7.584000pt;}
._10_c00458{margin-left:-6.026667pt;}
._f_c00458{margin-left:-4.426667pt;}
._8_c00458{margin-left:-2.826667pt;}
._7_c00458{margin-left:-1.173333pt;}
._3_c00458{width:1.066667pt;}
._4_c00458{width:1.973333pt;}
._6_c00458{width:3.093333pt;}
._5_c00458{width:4.320000pt;}
._0_c00458{width:6.080000pt;}
._a_c00458{width:8.000000pt;}
._2_c00458{width:9.536000pt;}
._17_c00458{width:10.560000pt;}
._9_c00458{width:11.466667pt;}
._1a_c00458{width:12.498667pt;}
._b_c00458{width:13.760000pt;}
._14_c00458{width:15.021333pt;}
._18_c00458{width:16.106667pt;}
._1d_c00458{width:18.234667pt;}
._25_c00458{width:19.893333pt;}
._1f_c00458{width:21.333333pt;}
._1c_c00458{width:23.037333pt;}
._22_c00458{width:24.005333pt;}
._1e_c00458{width:25.010667pt;}
._21_c00458{width:26.189333pt;}
._d_c00458{width:28.277333pt;}
._13_c00458{width:30.461333pt;}
._1_c00458{width:31.872000pt;}
._1b_c00458{width:33.957333pt;}
._11_c00458{width:34.904000pt;}
._c_c00458{width:71.072000pt;}
._23_c00458{width:77.365333pt;}
._19_c00458{width:147.341333pt;}
.fs6_c00458{font-size:42.666667pt;}
.fs4_c00458{font-size:45.333333pt;}
.fs5_c00458{font-size:48.000000pt;}
.fs2_c00458{font-size:50.666667pt;}
.fs1_c00458{font-size:53.333333pt;}
.fs3_c00458{font-size:56.000000pt;}
.fs0_c00458{font-size:64.000000pt;}
.y0_c00458{bottom:0.000000pt;}
.y51_c00458{bottom:2.760000pt;}
.y50_c00458{bottom:6.425212pt;}
.y4f_c00458{bottom:26.666667pt;}
.y4e_c00458{bottom:42.800000pt;}
.y2a_c00458{bottom:44.400000pt;}
.y4d_c00458{bottom:59.600000pt;}
.y29_c00458{bottom:61.600000pt;}
.y28_c00458{bottom:77.066667pt;}
.y4c_c00458{bottom:90.933333pt;}
.y27_c00458{bottom:93.866667pt;}
.y4b_c00458{bottom:107.733333pt;}
.y26_c00458{bottom:110.666667pt;}
.y4a_c00458{bottom:124.133333pt;}
.y25_c00458{bottom:126.266667pt;}
.y49_c00458{bottom:140.000000pt;}
.y24_c00458{bottom:142.800000pt;}
.y23_c00458{bottom:159.066667pt;}
.y48_c00458{bottom:171.333333pt;}
.y22_c00458{bottom:174.933333pt;}
.y21_c00458{bottom:191.066667pt;}
.y47_c00458{bottom:203.333333pt;}
.y20_c00458{bottom:207.333333pt;}
.y46_c00458{bottom:219.866667pt;}
.y1f_c00458{bottom:222.933333pt;}
.y45_c00458{bottom:236.000000pt;}
.y1e_c00458{bottom:239.200000pt;}
.y44_c00458{bottom:252.266667pt;}
.y1d_c00458{bottom:254.666667pt;}
.y43_c00458{bottom:268.533333pt;}
.y1c_c00458{bottom:271.200000pt;}
.y42_c00458{bottom:284.666667pt;}
.y1b_c00458{bottom:286.800000pt;}
.y41_c00458{bottom:300.800000pt;}
.y1a_c00458{bottom:303.066667pt;}
.y40_c00458{bottom:317.333333pt;}
.y19_c00458{bottom:318.933333pt;}
.y3f_c00458{bottom:333.333333pt;}
.y18_c00458{bottom:335.466667pt;}
.y3e_c00458{bottom:349.466667pt;}
.y17_c00458{bottom:352.000000pt;}
.y3d_c00458{bottom:365.066667pt;}
.y16_c00458{bottom:367.200000pt;}
.y3c_c00458{bottom:381.200000pt;}
.y15_c00458{bottom:383.066667pt;}
.y3b_c00458{bottom:397.466667pt;}
.y14_c00458{bottom:398.800000pt;}
.y3a_c00458{bottom:413.733333pt;}
.y13_c00458{bottom:415.200000pt;}
.y39_c00458{bottom:429.866667pt;}
.y12_c00458{bottom:431.466667pt;}
.y38_c00458{bottom:446.000000pt;}
.y11_c00458{bottom:447.333333pt;}
.y37_c00458{bottom:461.466667pt;}
.y10_c00458{bottom:462.533333pt;}
.yf_c00458{bottom:477.333333pt;}
.y36_c00458{bottom:492.933333pt;}
.ye_c00458{bottom:493.600000pt;}
.y35_c00458{bottom:509.466667pt;}
.yd_c00458{bottom:509.733333pt;}
.y34_c00458{bottom:525.600000pt;}
.yc_c00458{bottom:526.000000pt;}
.y33_c00458{bottom:541.466667pt;}
.yb_c00458{bottom:542.133333pt;}
.y32_c00458{bottom:557.733333pt;}
.ya_c00458{bottom:558.266667pt;}
.y31_c00458{bottom:574.000000pt;}
.y9_c00458{bottom:574.266667pt;}
.y30_c00458{bottom:589.866667pt;}
.y8_c00458{bottom:590.400000pt;}
.y2f_c00458{bottom:606.000000pt;}
.y7_c00458{bottom:606.400000pt;}
.y2e_c00458{bottom:622.000000pt;}
.y6_c00458{bottom:622.533333pt;}
.y2d_c00458{bottom:637.866667pt;}
.y5_c00458{bottom:638.400000pt;}
.y2c_c00458{bottom:654.000000pt;}
.y4_c00458{bottom:655.466667pt;}
.y3_c00458{bottom:670.800000pt;}
.y2b_c00458{bottom:686.400000pt;}
.y2_c00458{bottom:687.066667pt;}
.y1_c00458{bottom:706.533333pt;}
.h8_c00458{height:11.733399pt;}
.h9_c00458{height:38.937500pt;}
.h7_c00458{height:52.032000pt;}
.h3_c00458{height:53.098667pt;}
.h2_c00458{height:55.893333pt;}
.h6_c00458{height:56.554667pt;}
.h5_c00458{height:57.813333pt;}
.h4_c00458{height:58.688000pt;}
.h1_c00458{height:62.812500pt;}
.h0_c00458{height:750.000000pt;}
.w2_c00458{width:93.222667pt;}
.w1_c00458{width:515.333333pt;}
.w0_c00458{width:515.533333pt;}
.x0_c00458{left:0.000000pt;}
.x4_c00458{left:17.066667pt;}
.x6_c00458{left:18.400000pt;}
.x3_c00458{left:71.333333pt;}
.x2_c00458{left:72.933333pt;}
.x5_c00458{left:74.133333pt;}
.x7_c00458{left:75.066667pt;}
.x1_c00458{left:183.200000pt;}
.x11_c00458{left:214.934896pt;}
.xa_c00458{left:261.600000pt;}
.x8_c00458{left:263.066667pt;}
.x9_c00458{left:264.000000pt;}
.xf_c00458{left:265.466667pt;}
.xd_c00458{left:279.333333pt;}
.xc_c00458{left:291.600000pt;}
.xe_c00458{left:308.666667pt;}
.xb_c00458{left:322.000000pt;}
.x10_c00458{left:420.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b6394e814bd1e7ab71a55460.woff2')format("woff");}.ff1_c00459{font-family:ff1_c00459;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00459;src:url('chunks/assets/font_d7f1a9a3bd40d8cb393fb240.woff2')format("woff");}.ff2_c00459{font-family:ff2_c00459;line-height:1.437000;font-style:normal;font-weight:normal;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_5dae71d5fd319e63256ab8fe.woff2')format("woff");}.ff3_c00459{font-family:ff3_c00459;line-height:1.437000;font-style:normal;font-weight:normal;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_c0e6114531de5b562459643b.woff2')format("woff");}.ff4_c00459{font-family:ff4_c00459;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00459;src:url('chunks/assets/font_c9ab3a75dc848303137d5521.woff2')format("woff");}.ff5_c00459{font-family:ff5_c00459;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00459;src:url('chunks/assets/font_2610f8e30e6bc28c0f126075.woff2')format("woff");}.ff6_c00459{font-family:ff6_c00459;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00459;src:url('chunks/assets/font_8b9d52ea7e3e67eddeade8f1.woff2')format("woff");}.ff7_c00459{font-family:ff7_c00459;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00459;src:url('chunks/assets/font_0736512f852fddc8be7ef088.woff2')format("woff");}.ff8_c00459{font-family:ff8_c00459;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00459;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff9_c00459{font-family:ff9_c00459;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00459{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3_c00459{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1_c00459{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m4_c00459{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m2_c00459{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.v0_c00459{vertical-align:0.000000px;}
.ls6_c00459{letter-spacing:-3.000000px;}
.ls5_c00459{letter-spacing:0.000000px;}
.ls4_c00459{letter-spacing:3.000000px;}
.ls2_c00459{letter-spacing:7.776000px;}
.ls1_c00459{letter-spacing:8.616000px;}
.ls7_c00459{letter-spacing:12.000000px;}
.ls8_c00459{letter-spacing:24.000000px;}
.ls0_c00459{letter-spacing:26.094000px;}
.ls3_c00459{letter-spacing:79.758000px;}
.sc__c00459{text-shadow:none;}
.sc0_c00459{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00459{-webkit-text-stroke:0px transparent;}
.sc0_c00459{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00459{word-spacing:-19.500000px;}
.ws6_c00459{word-spacing:-17.784000px;}
.ws2_c00459{word-spacing:-16.554000px;}
.wsb_c00459{word-spacing:-15.813000px;}
.wsa_c00459{word-spacing:-15.060000px;}
.ws1_c00459{word-spacing:-14.340000px;}
.ws3_c00459{word-spacing:-14.160000px;}
.wsc_c00459{word-spacing:-13.452000px;}
.ws7_c00459{word-spacing:-13.053000px;}
.ws4_c00459{word-spacing:-12.291000px;}
.ws5_c00459{word-spacing:-10.554000px;}
.ws8_c00459{word-spacing:-8.250000px;}
.ws9_c00459{word-spacing:-5.784000px;}
.wsd_c00459{word-spacing:0.000000px;}
._2d_c00459{margin-left:-19.290000px;}
._2f_c00459{margin-left:-17.952000px;}
._2e_c00459{margin-left:-16.239000px;}
._21_c00459{margin-left:-14.232000px;}
._23_c00459{margin-left:-12.816000px;}
._20_c00459{margin-left:-11.064000px;}
._15_c00459{margin-left:-9.942000px;}
._25_c00459{margin-left:-8.883000px;}
._14_c00459{margin-left:-7.758000px;}
._d_c00459{margin-left:-6.522000px;}
._16_c00459{margin-left:-4.818000px;}
._8_c00459{margin-left:-3.366000px;}
._e_c00459{margin-left:-1.368000px;}
._a_c00459{width:1.176000px;}
._10_c00459{width:2.274000px;}
._7_c00459{width:3.276000px;}
._9_c00459{width:5.202000px;}
._0_c00459{width:6.930000px;}
._2_c00459{width:7.980000px;}
._3_c00459{width:9.180000px;}
._4_c00459{width:10.500000px;}
._5_c00459{width:11.820000px;}
._1f_c00459{width:13.080000px;}
._b_c00459{width:14.148000px;}
._26_c00459{width:15.588000px;}
._1c_c00459{width:16.710000px;}
._1b_c00459{width:18.228000px;}
._f_c00459{width:20.304000px;}
._32_c00459{width:21.540000px;}
._19_c00459{width:22.938000px;}
._24_c00459{width:24.183000px;}
._17_c00459{width:26.130000px;}
._1e_c00459{width:28.272000px;}
._18_c00459{width:30.468000px;}
._6_c00459{width:32.700000px;}
._35_c00459{width:33.759000px;}
._30_c00459{width:34.968000px;}
._1d_c00459{width:39.900000px;}
._33_c00459{width:46.962000px;}
._c_c00459{width:62.640000px;}
._12_c00459{width:64.374000px;}
._11_c00459{width:66.330000px;}
._13_c00459{width:69.150000px;}
._1a_c00459{width:71.364000px;}
._31_c00459{width:74.784000px;}
._29_c00459{width:82.893000px;}
._2b_c00459{width:87.336000px;}
._2a_c00459{width:89.271000px;}
._2c_c00459{width:102.303000px;}
._27_c00459{width:121.470000px;}
._28_c00459{width:143.232000px;}
._34_c00459{width:196.806000px;}
._1_c00459{width:210.780000px;}
._22_c00459{width:215.328000px;}
.fc2_c00459{color:transparent;}
.fc1_c00459{color:rgb(128,128,128);}
.fc0_c00459{color:rgb(0,0,0);}
.fs7_c00459{font-size:24.000000px;}
.fs8_c00459{font-size:33.000000px;}
.fs5_c00459{font-size:48.000000px;}
.fs6_c00459{font-size:51.000000px;}
.fs2_c00459{font-size:54.000000px;}
.fs3_c00459{font-size:57.000000px;}
.fs1_c00459{font-size:60.000000px;}
.fs9_c00459{font-size:63.000000px;}
.fs0_c00459{font-size:66.000000px;}
.fs4_c00459{font-size:69.000000px;}
.fsa_c00459{font-size:78.000000px;}
.y0_c00459{bottom:0.000000px;}
.y4d_c00459{bottom:3.105000px;}
.y4c_c00459{bottom:7.228363px;}
.y4b_c00459{bottom:27.600000px;}
.y4a_c00459{bottom:43.800000px;}
.y42_c00459{bottom:61.050000px;}
.y49_c00459{bottom:64.350000px;}
.y41_c00459{bottom:79.650000px;}
.y48_c00459{bottom:82.350000px;}
.y40_c00459{bottom:97.800000px;}
.y47_c00459{bottom:100.950000px;}
.y3f_c00459{bottom:115.650000px;}
.y46_c00459{bottom:119.100000px;}
.y3e_c00459{bottom:134.250000px;}
.y45_c00459{bottom:137.400000px;}
.y3d_c00459{bottom:152.100000px;}
.y44_c00459{bottom:155.850000px;}
.y3c_c00459{bottom:170.700000px;}
.y43_c00459{bottom:173.700000px;}
.y3b_c00459{bottom:190.350000px;}
.y3a_c00459{bottom:208.950000px;}
.y32_c00459{bottom:224.550000px;}
.y39_c00459{bottom:227.850000px;}
.y31_c00459{bottom:242.250000px;}
.y38_c00459{bottom:246.600000px;}
.y30_c00459{bottom:260.250000px;}
.y37_c00459{bottom:264.300000px;}
.y2f_c00459{bottom:279.000000px;}
.y36_c00459{bottom:282.450000px;}
.y2e_c00459{bottom:296.250000px;}
.y35_c00459{bottom:299.400000px;}
.y2d_c00459{bottom:314.100000px;}
.y34_c00459{bottom:317.850000px;}
.y2c_c00459{bottom:318.600000px;}
.y2b_c00459{bottom:333.000000px;}
.y33_c00459{bottom:335.850000px;}
.y2a_c00459{bottom:352.650000px;}
.y29_c00459{bottom:370.650000px;}
.y28_c00459{bottom:388.500000px;}
.y27_c00459{bottom:406.050000px;}
.y17_c00459{bottom:422.250000px;}
.y26_c00459{bottom:423.600000px;}
.y25_c00459{bottom:426.150000px;}
.y16_c00459{bottom:441.450000px;}
.y24_c00459{bottom:444.450000px;}
.y15_c00459{bottom:459.000000px;}
.y23_c00459{bottom:462.600000px;}
.y14_c00459{bottom:478.350000px;}
.y22_c00459{bottom:480.600000px;}
.y13_c00459{bottom:495.900000px;}
.y21_c00459{bottom:498.750000px;}
.y12_c00459{bottom:514.650000px;}
.y20_c00459{bottom:516.600000px;}
.y11_c00459{bottom:532.350000px;}
.y1f_c00459{bottom:534.600000px;}
.y10_c00459{bottom:550.200000px;}
.y1e_c00459{bottom:552.750000px;}
.yf_c00459{bottom:568.800000px;}
.y1d_c00459{bottom:570.600000px;}
.ye_c00459{bottom:586.650000px;}
.y1c_c00459{bottom:588.600000px;}
.ya_c00459{bottom:590.400000px;}
.yd_c00459{bottom:604.800000px;}
.y1b_c00459{bottom:606.150000px;}
.yc_c00459{bottom:622.650000px;}
.y1a_c00459{bottom:624.450000px;}
.y9_c00459{bottom:626.700000px;}
.yb_c00459{bottom:641.550000px;}
.y19_c00459{bottom:642.300000px;}
.y18_c00459{bottom:658.800000px;}
.y8_c00459{bottom:660.150000px;}
.y7_c00459{bottom:678.450000px;}
.y6_c00459{bottom:696.900000px;}
.y5_c00459{bottom:714.900000px;}
.y4_c00459{bottom:732.750000px;}
.y3_c00459{bottom:751.500000px;}
.y2_c00459{bottom:769.500000px;}
.y1_c00459{bottom:787.950000px;}
.hd_c00459{height:13.200074px;}
.h8_c00459{height:30.386719px;}
.ha_c00459{height:35.211000px;}
.he_c00459{height:43.804688px;}
.h9_c00459{height:50.304000px;}
.h4_c00459{height:56.592000px;}
.h7_c00459{height:59.690918px;}
.h5_c00459{height:59.736000px;}
.h3_c00459{height:62.880000px;}
.hb_c00459{height:66.024000px;}
.h2_c00459{height:70.422000px;}
.h6_c00459{height:72.312000px;}
.hc_c00459{height:81.744000px;}
.h1_c00459{height:842.250000px;}
.h0_c00459{height:842.400000px;}
.w2_c00459{width:104.875500px;}
.w1_c00459{width:579.750000px;}
.w0_c00459{width:579.975000px;}
.x0_c00459{left:0.000000px;}
.x19_c00459{left:14.250000px;}
.x1a_c00459{left:16.950000px;}
.x3_c00459{left:21.150000px;}
.x16_c00459{left:76.650000px;}
.x15_c00459{left:77.700000px;}
.x13_c00459{left:79.200000px;}
.x7_c00459{left:80.250000px;}
.x8_c00459{left:81.600000px;}
.x6_c00459{left:82.650000px;}
.x4_c00459{left:84.000000px;}
.x2_c00459{left:85.950000px;}
.x1_c00459{left:87.300000px;}
.xf_c00459{left:92.400000px;}
.x14_c00459{left:128.850000px;}
.x5_c00459{left:142.050000px;}
.x1f_c00459{left:241.801758px;}
.x1d_c00459{left:295.950000px;}
.x1c_c00459{left:297.300000px;}
.x1b_c00459{left:298.800000px;}
.x18_c00459{left:300.750000px;}
.x17_c00459{left:302.400000px;}
.xd_c00459{left:303.750000px;}
.xc_c00459{left:305.100000px;}
.xe_c00459{left:340.800000px;}
.x9_c00459{left:346.650000px;}
.x10_c00459{left:368.100000px;}
.x11_c00459{left:380.400000px;}
.x1e_c00459{left:454.650000px;}
.xa_c00459{left:463.950000px;}
.x12_c00459{left:472.650000px;}
.xb_c00459{left:484.050000px;}
@media print{
.v0_c00459{vertical-align:0.000000pt;}
.ls6_c00459{letter-spacing:-2.666667pt;}
.ls5_c00459{letter-spacing:0.000000pt;}
.ls4_c00459{letter-spacing:2.666667pt;}
.ls2_c00459{letter-spacing:6.912000pt;}
.ls1_c00459{letter-spacing:7.658667pt;}
.ls7_c00459{letter-spacing:10.666667pt;}
.ls8_c00459{letter-spacing:21.333333pt;}
.ls0_c00459{letter-spacing:23.194667pt;}
.ls3_c00459{letter-spacing:70.896000pt;}
.ws0_c00459{word-spacing:-17.333333pt;}
.ws6_c00459{word-spacing:-15.808000pt;}
.ws2_c00459{word-spacing:-14.714667pt;}
.wsb_c00459{word-spacing:-14.056000pt;}
.wsa_c00459{word-spacing:-13.386667pt;}
.ws1_c00459{word-spacing:-12.746667pt;}
.ws3_c00459{word-spacing:-12.586667pt;}
.wsc_c00459{word-spacing:-11.957333pt;}
.ws7_c00459{word-spacing:-11.602667pt;}
.ws4_c00459{word-spacing:-10.925333pt;}
.ws5_c00459{word-spacing:-9.381333pt;}
.ws8_c00459{word-spacing:-7.333333pt;}
.ws9_c00459{word-spacing:-5.141333pt;}
.wsd_c00459{word-spacing:0.000000pt;}
._2d_c00459{margin-left:-17.146667pt;}
._2f_c00459{margin-left:-15.957333pt;}
._2e_c00459{margin-left:-14.434667pt;}
._21_c00459{margin-left:-12.650667pt;}
._23_c00459{margin-left:-11.392000pt;}
._20_c00459{margin-left:-9.834667pt;}
._15_c00459{margin-left:-8.837333pt;}
._25_c00459{margin-left:-7.896000pt;}
._14_c00459{margin-left:-6.896000pt;}
._d_c00459{margin-left:-5.797333pt;}
._16_c00459{margin-left:-4.282667pt;}
._8_c00459{margin-left:-2.992000pt;}
._e_c00459{margin-left:-1.216000pt;}
._a_c00459{width:1.045333pt;}
._10_c00459{width:2.021333pt;}
._7_c00459{width:2.912000pt;}
._9_c00459{width:4.624000pt;}
._0_c00459{width:6.160000pt;}
._2_c00459{width:7.093333pt;}
._3_c00459{width:8.160000pt;}
._4_c00459{width:9.333333pt;}
._5_c00459{width:10.506667pt;}
._1f_c00459{width:11.626667pt;}
._b_c00459{width:12.576000pt;}
._26_c00459{width:13.856000pt;}
._1c_c00459{width:14.853333pt;}
._1b_c00459{width:16.202667pt;}
._f_c00459{width:18.048000pt;}
._32_c00459{width:19.146667pt;}
._19_c00459{width:20.389333pt;}
._24_c00459{width:21.496000pt;}
._17_c00459{width:23.226667pt;}
._1e_c00459{width:25.130667pt;}
._18_c00459{width:27.082667pt;}
._6_c00459{width:29.066667pt;}
._35_c00459{width:30.008000pt;}
._30_c00459{width:31.082667pt;}
._1d_c00459{width:35.466667pt;}
._33_c00459{width:41.744000pt;}
._c_c00459{width:55.680000pt;}
._12_c00459{width:57.221333pt;}
._11_c00459{width:58.960000pt;}
._13_c00459{width:61.466667pt;}
._1a_c00459{width:63.434667pt;}
._31_c00459{width:66.474667pt;}
._29_c00459{width:73.682667pt;}
._2b_c00459{width:77.632000pt;}
._2a_c00459{width:79.352000pt;}
._2c_c00459{width:90.936000pt;}
._27_c00459{width:107.973333pt;}
._28_c00459{width:127.317333pt;}
._34_c00459{width:174.938667pt;}
._1_c00459{width:187.360000pt;}
._22_c00459{width:191.402667pt;}
.fs7_c00459{font-size:21.333333pt;}
.fs8_c00459{font-size:29.333333pt;}
.fs5_c00459{font-size:42.666667pt;}
.fs6_c00459{font-size:45.333333pt;}
.fs2_c00459{font-size:48.000000pt;}
.fs3_c00459{font-size:50.666667pt;}
.fs1_c00459{font-size:53.333333pt;}
.fs9_c00459{font-size:56.000000pt;}
.fs0_c00459{font-size:58.666667pt;}
.fs4_c00459{font-size:61.333333pt;}
.fsa_c00459{font-size:69.333333pt;}
.y0_c00459{bottom:0.000000pt;}
.y4d_c00459{bottom:2.760000pt;}
.y4c_c00459{bottom:6.425212pt;}
.y4b_c00459{bottom:24.533333pt;}
.y4a_c00459{bottom:38.933333pt;}
.y42_c00459{bottom:54.266667pt;}
.y49_c00459{bottom:57.200000pt;}
.y41_c00459{bottom:70.800000pt;}
.y48_c00459{bottom:73.200000pt;}
.y40_c00459{bottom:86.933333pt;}
.y47_c00459{bottom:89.733333pt;}
.y3f_c00459{bottom:102.800000pt;}
.y46_c00459{bottom:105.866667pt;}
.y3e_c00459{bottom:119.333333pt;}
.y45_c00459{bottom:122.133333pt;}
.y3d_c00459{bottom:135.200000pt;}
.y44_c00459{bottom:138.533333pt;}
.y3c_c00459{bottom:151.733333pt;}
.y43_c00459{bottom:154.400000pt;}
.y3b_c00459{bottom:169.200000pt;}
.y3a_c00459{bottom:185.733333pt;}
.y32_c00459{bottom:199.600000pt;}
.y39_c00459{bottom:202.533333pt;}
.y31_c00459{bottom:215.333333pt;}
.y38_c00459{bottom:219.200000pt;}
.y30_c00459{bottom:231.333333pt;}
.y37_c00459{bottom:234.933333pt;}
.y2f_c00459{bottom:248.000000pt;}
.y36_c00459{bottom:251.066667pt;}
.y2e_c00459{bottom:263.333333pt;}
.y35_c00459{bottom:266.133333pt;}
.y2d_c00459{bottom:279.200000pt;}
.y34_c00459{bottom:282.533333pt;}
.y2c_c00459{bottom:283.200000pt;}
.y2b_c00459{bottom:296.000000pt;}
.y33_c00459{bottom:298.533333pt;}
.y2a_c00459{bottom:313.466667pt;}
.y29_c00459{bottom:329.466667pt;}
.y28_c00459{bottom:345.333333pt;}
.y27_c00459{bottom:360.933333pt;}
.y17_c00459{bottom:375.333333pt;}
.y26_c00459{bottom:376.533333pt;}
.y25_c00459{bottom:378.800000pt;}
.y16_c00459{bottom:392.400000pt;}
.y24_c00459{bottom:395.066667pt;}
.y15_c00459{bottom:408.000000pt;}
.y23_c00459{bottom:411.200000pt;}
.y14_c00459{bottom:425.200000pt;}
.y22_c00459{bottom:427.200000pt;}
.y13_c00459{bottom:440.800000pt;}
.y21_c00459{bottom:443.333333pt;}
.y12_c00459{bottom:457.466667pt;}
.y20_c00459{bottom:459.200000pt;}
.y11_c00459{bottom:473.200000pt;}
.y1f_c00459{bottom:475.200000pt;}
.y10_c00459{bottom:489.066667pt;}
.y1e_c00459{bottom:491.333333pt;}
.yf_c00459{bottom:505.600000pt;}
.y1d_c00459{bottom:507.200000pt;}
.ye_c00459{bottom:521.466667pt;}
.y1c_c00459{bottom:523.200000pt;}
.ya_c00459{bottom:524.800000pt;}
.yd_c00459{bottom:537.600000pt;}
.y1b_c00459{bottom:538.800000pt;}
.yc_c00459{bottom:553.466667pt;}
.y1a_c00459{bottom:555.066667pt;}
.y9_c00459{bottom:557.066667pt;}
.yb_c00459{bottom:570.266667pt;}
.y19_c00459{bottom:570.933333pt;}
.y18_c00459{bottom:585.600000pt;}
.y8_c00459{bottom:586.800000pt;}
.y7_c00459{bottom:603.066667pt;}
.y6_c00459{bottom:619.466667pt;}
.y5_c00459{bottom:635.466667pt;}
.y4_c00459{bottom:651.333333pt;}
.y3_c00459{bottom:668.000000pt;}
.y2_c00459{bottom:684.000000pt;}
.y1_c00459{bottom:700.400000pt;}
.hd_c00459{height:11.733399pt;}
.h8_c00459{height:27.010417pt;}
.ha_c00459{height:31.298667pt;}
.he_c00459{height:38.937500pt;}
.h9_c00459{height:44.714667pt;}
.h4_c00459{height:50.304000pt;}
.h7_c00459{height:53.058594pt;}
.h5_c00459{height:53.098667pt;}
.h3_c00459{height:55.893333pt;}
.hb_c00459{height:58.688000pt;}
.h2_c00459{height:62.597333pt;}
.h6_c00459{height:64.277333pt;}
.hc_c00459{height:72.661333pt;}
.h1_c00459{height:748.666667pt;}
.h0_c00459{height:748.800000pt;}
.w2_c00459{width:93.222667pt;}
.w1_c00459{width:515.333333pt;}
.w0_c00459{width:515.533333pt;}
.x0_c00459{left:0.000000pt;}
.x19_c00459{left:12.666667pt;}
.x1a_c00459{left:15.066667pt;}
.x3_c00459{left:18.800000pt;}
.x16_c00459{left:68.133333pt;}
.x15_c00459{left:69.066667pt;}
.x13_c00459{left:70.400000pt;}
.x7_c00459{left:71.333333pt;}
.x8_c00459{left:72.533333pt;}
.x6_c00459{left:73.466667pt;}
.x4_c00459{left:74.666667pt;}
.x2_c00459{left:76.400000pt;}
.x1_c00459{left:77.600000pt;}
.xf_c00459{left:82.133333pt;}
.x14_c00459{left:114.533333pt;}
.x5_c00459{left:126.266667pt;}
.x1f_c00459{left:214.934896pt;}
.x1d_c00459{left:263.066667pt;}
.x1c_c00459{left:264.266667pt;}
.x1b_c00459{left:265.600000pt;}
.x18_c00459{left:267.333333pt;}
.x17_c00459{left:268.800000pt;}
.xd_c00459{left:270.000000pt;}
.xc_c00459{left:271.200000pt;}
.xe_c00459{left:302.933333pt;}
.x9_c00459{left:308.133333pt;}
.x10_c00459{left:327.200000pt;}
.x11_c00459{left:338.133333pt;}
.x1e_c00459{left:404.133333pt;}
.xa_c00459{left:412.400000pt;}
.x12_c00459{left:420.133333pt;}
.xb_c00459{left:430.266667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_fbf05bc5834d2113ef28840d.woff2')format("woff");}.ff1_c00460{font-family:ff1_c00460;line-height:1.437000;font-style:normal;font-weight:normal;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_8b3791b34ed3729e4647375a.woff2')format("woff");}.ff2_c00460{font-family:ff2_c00460;line-height:1.437000;font-style:normal;font-weight:normal;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_23a8f602719734d9b8421098.woff2')format("woff");}.ff3_c00460{font-family:ff3_c00460;line-height:1.437000;font-style:normal;font-weight:normal;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_4429b06595cb0e414b4752d6.woff2')format("woff");}.ff4_c00460{font-family:ff4_c00460;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00460;src:url('chunks/assets/font_fe521fedeb5045b6784cb20b.woff2')format("woff");}.ff5_c00460{font-family:ff5_c00460;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00460;src:url('chunks/assets/font_a3b8f0bc7baaed230767bfd0.woff2')format("woff");}.ff6_c00460{font-family:ff6_c00460;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00460;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff7_c00460{font-family:ff7_c00460;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00460{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00460{vertical-align:0.000000px;}
.ls4_c00460{letter-spacing:0.000000px;}
.ls1_c00460{letter-spacing:1.080000px;}
.ls3_c00460{letter-spacing:1.860000px;}
.ls5_c00460{letter-spacing:3.000000px;}
.ls2_c00460{letter-spacing:11.220000px;}
.ls0_c00460{letter-spacing:18.708000px;}
.sc__c00460{text-shadow:none;}
.sc0_c00460{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00460{-webkit-text-stroke:0px transparent;}
.sc0_c00460{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00460{word-spacing:-22.074000px;}
.ws3_c00460{word-spacing:-16.200000px;}
.ws2_c00460{word-spacing:-14.340000px;}
.ws1_c00460{word-spacing:-14.160000px;}
.ws5_c00460{word-spacing:0.000000px;}
.ws4_c00460{word-spacing:14.220000px;}
._b_c00460{margin-left:-13.992000px;}
._1d_c00460{margin-left:-12.978000px;}
._28_c00460{margin-left:-11.025000px;}
._a_c00460{margin-left:-9.900000px;}
._29_c00460{margin-left:-8.514000px;}
._19_c00460{margin-left:-7.134000px;}
._1f_c00460{margin-left:-6.042000px;}
._1e_c00460{margin-left:-4.581000px;}
._17_c00460{margin-left:-3.480000px;}
._8_c00460{margin-left:-2.280000px;}
._6_c00460{margin-left:-1.140000px;}
._4_c00460{width:1.194000px;}
._7_c00460{width:3.180000px;}
._9_c00460{width:4.260000px;}
._20_c00460{width:5.340000px;}
._12_c00460{width:6.360000px;}
._18_c00460{width:7.410000px;}
._11_c00460{width:8.940000px;}
._5_c00460{width:10.572000px;}
._c_c00460{width:11.790000px;}
._0_c00460{width:13.671000px;}
._d_c00460{width:15.666000px;}
._16_c00460{width:16.740000px;}
._2_c00460{width:18.081000px;}
._3_c00460{width:19.719000px;}
._10_c00460{width:21.618000px;}
._21_c00460{width:23.088000px;}
._e_c00460{width:24.726000px;}
._1a_c00460{width:26.721000px;}
._15_c00460{width:28.389000px;}
._f_c00460{width:30.018000px;}
._26_c00460{width:32.436000px;}
._22_c00460{width:34.320000px;}
._14_c00460{width:35.400000px;}
._25_c00460{width:36.543000px;}
._27_c00460{width:37.599000px;}
._2a_c00460{width:39.750000px;}
._24_c00460{width:41.310000px;}
._1c_c00460{width:45.060000px;}
._1_c00460{width:49.014000px;}
._1b_c00460{width:55.494000px;}
._13_c00460{width:57.828000px;}
._2b_c00460{width:126.606000px;}
._23_c00460{width:400.926000px;}
.fc2_c00460{color:transparent;}
.fc1_c00460{color:rgb(128,128,128);}
.fc0_c00460{color:rgb(0,0,0);}
.fs5_c00460{font-size:48.000000px;}
.fs2_c00460{font-size:54.000000px;}
.fs1_c00460{font-size:57.000000px;}
.fs3_c00460{font-size:60.000000px;}
.fs0_c00460{font-size:63.000000px;}
.fs4_c00460{font-size:66.000000px;}
.y0_c00460{bottom:0.000000px;}
.y54_c00460{bottom:3.105000px;}
.y53_c00460{bottom:7.228363px;}
.y52_c00460{bottom:26.550000px;}
.y2a_c00460{bottom:47.250000px;}
.y51_c00460{bottom:48.300000px;}
.y29_c00460{bottom:66.150000px;}
.y50_c00460{bottom:66.450000px;}
.y28_c00460{bottom:84.750000px;}
.y4f_c00460{bottom:85.350000px;}
.y4e_c00460{bottom:103.200000px;}
.y27_c00460{bottom:103.500000px;}
.y26_c00460{bottom:121.500000px;}
.y25_c00460{bottom:139.050000px;}
.y4d_c00460{bottom:139.950000px;}
.y24_c00460{bottom:157.650000px;}
.y4c_c00460{bottom:176.100000px;}
.y23_c00460{bottom:176.400000px;}
.y4b_c00460{bottom:193.800000px;}
.y22_c00460{bottom:194.700000px;}
.y4a_c00460{bottom:212.250000px;}
.y21_c00460{bottom:213.300000px;}
.y49_c00460{bottom:230.550000px;}
.y20_c00460{bottom:231.900000px;}
.y48_c00460{bottom:248.400000px;}
.y1f_c00460{bottom:249.750000px;}
.y47_c00460{bottom:266.550000px;}
.y1e_c00460{bottom:267.300000px;}
.y46_c00460{bottom:284.850000px;}
.y1d_c00460{bottom:285.750000px;}
.y45_c00460{bottom:302.700000px;}
.y1c_c00460{bottom:303.000000px;}
.y44_c00460{bottom:320.850000px;}
.y1b_c00460{bottom:321.300000px;}
.y1a_c00460{bottom:338.100000px;}
.y43_c00460{bottom:338.850000px;}
.y19_c00460{bottom:357.000000px;}
.y42_c00460{bottom:357.300000px;}
.y18_c00460{bottom:375.000000px;}
.y41_c00460{bottom:375.600000px;}
.y17_c00460{bottom:393.150000px;}
.y40_c00460{bottom:393.900000px;}
.y3f_c00460{bottom:411.300000px;}
.y16_c00460{bottom:411.450000px;}
.y15_c00460{bottom:429.300000px;}
.y3e_c00460{bottom:447.750000px;}
.y14_c00460{bottom:447.900000px;}
.y3d_c00460{bottom:465.300000px;}
.y13_c00460{bottom:465.450000px;}
.y12_c00460{bottom:483.600000px;}
.y3c_c00460{bottom:484.200000px;}
.y11_c00460{bottom:501.150000px;}
.y3b_c00460{bottom:502.200000px;}
.y10_c00460{bottom:519.000000px;}
.y3a_c00460{bottom:519.750000px;}
.yf_c00460{bottom:535.650000px;}
.y39_c00460{bottom:537.900000px;}
.ye_c00460{bottom:554.400000px;}
.y38_c00460{bottom:555.300000px;}
.yd_c00460{bottom:572.700000px;}
.y37_c00460{bottom:574.050000px;}
.yc_c00460{bottom:590.850000px;}
.y36_c00460{bottom:592.650000px;}
.yb_c00460{bottom:608.550000px;}
.y35_c00460{bottom:610.200000px;}
.ya_c00460{bottom:626.400000px;}
.y34_c00460{bottom:628.650000px;}
.y9_c00460{bottom:644.550000px;}
.y33_c00460{bottom:646.650000px;}
.y8_c00460{bottom:663.150000px;}
.y32_c00460{bottom:665.100000px;}
.y7_c00460{bottom:681.300000px;}
.y31_c00460{bottom:682.800000px;}
.y6_c00460{bottom:699.300000px;}
.y30_c00460{bottom:700.350000px;}
.y5_c00460{bottom:717.450000px;}
.y2f_c00460{bottom:719.550000px;}
.y4_c00460{bottom:735.450000px;}
.y2e_c00460{bottom:737.400000px;}
.y3_c00460{bottom:753.300000px;}
.y2d_c00460{bottom:755.550000px;}
.y2_c00460{bottom:772.200000px;}
.y2c_c00460{bottom:774.150000px;}
.y2b_c00460{bottom:790.800000px;}
.y1_c00460{bottom:791.700000px;}
.h7_c00460{height:13.200074px;}
.h8_c00460{height:43.804688px;}
.h5_c00460{height:59.736000px;}
.h4_c00460{height:62.880000px;}
.h6_c00460{height:63.480000px;}
.h2_c00460{height:66.024000px;}
.h3_c00460{height:70.422000px;}
.h1_c00460{height:834.000000px;}
.h0_c00460{height:834.300000px;}
.w2_c00460{width:104.875500px;}
.w0_c00460{width:573.450000px;}
.w1_c00460{width:573.750000px;}
.x0_c00460{left:0.000000px;}
.xa_c00460{left:11.700000px;}
.xb_c00460{left:70.950000px;}
.x7_c00460{left:72.450000px;}
.x6_c00460{left:75.300000px;}
.x8_c00460{left:76.500000px;}
.x3_c00460{left:77.550000px;}
.x4_c00460{left:78.900000px;}
.x2_c00460{left:81.300000px;}
.x9_c00460{left:103.200000px;}
.x5_c00460{left:108.300000px;}
.x1_c00460{left:213.300000px;}
.x11_c00460{left:238.539230px;}
.xf_c00460{left:292.200000px;}
.xc_c00460{left:294.000000px;}
.xd_c00460{left:295.350000px;}
.xe_c00460{left:296.700000px;}
.x10_c00460{left:385.050000px;}
@media print{
.v0_c00460{vertical-align:0.000000pt;}
.ls4_c00460{letter-spacing:0.000000pt;}
.ls1_c00460{letter-spacing:0.960000pt;}
.ls3_c00460{letter-spacing:1.653333pt;}
.ls5_c00460{letter-spacing:2.666667pt;}
.ls2_c00460{letter-spacing:9.973333pt;}
.ls0_c00460{letter-spacing:16.629333pt;}
.ws0_c00460{word-spacing:-19.621333pt;}
.ws3_c00460{word-spacing:-14.400000pt;}
.ws2_c00460{word-spacing:-12.746667pt;}
.ws1_c00460{word-spacing:-12.586667pt;}
.ws5_c00460{word-spacing:0.000000pt;}
.ws4_c00460{word-spacing:12.640000pt;}
._b_c00460{margin-left:-12.437333pt;}
._1d_c00460{margin-left:-11.536000pt;}
._28_c00460{margin-left:-9.800000pt;}
._a_c00460{margin-left:-8.800000pt;}
._29_c00460{margin-left:-7.568000pt;}
._19_c00460{margin-left:-6.341333pt;}
._1f_c00460{margin-left:-5.370667pt;}
._1e_c00460{margin-left:-4.072000pt;}
._17_c00460{margin-left:-3.093333pt;}
._8_c00460{margin-left:-2.026667pt;}
._6_c00460{margin-left:-1.013333pt;}
._4_c00460{width:1.061333pt;}
._7_c00460{width:2.826667pt;}
._9_c00460{width:3.786667pt;}
._20_c00460{width:4.746667pt;}
._12_c00460{width:5.653333pt;}
._18_c00460{width:6.586667pt;}
._11_c00460{width:7.946667pt;}
._5_c00460{width:9.397333pt;}
._c_c00460{width:10.480000pt;}
._0_c00460{width:12.152000pt;}
._d_c00460{width:13.925333pt;}
._16_c00460{width:14.880000pt;}
._2_c00460{width:16.072000pt;}
._3_c00460{width:17.528000pt;}
._10_c00460{width:19.216000pt;}
._21_c00460{width:20.522667pt;}
._e_c00460{width:21.978667pt;}
._1a_c00460{width:23.752000pt;}
._15_c00460{width:25.234667pt;}
._f_c00460{width:26.682667pt;}
._26_c00460{width:28.832000pt;}
._22_c00460{width:30.506667pt;}
._14_c00460{width:31.466667pt;}
._25_c00460{width:32.482667pt;}
._27_c00460{width:33.421333pt;}
._2a_c00460{width:35.333333pt;}
._24_c00460{width:36.720000pt;}
._1c_c00460{width:40.053333pt;}
._1_c00460{width:43.568000pt;}
._1b_c00460{width:49.328000pt;}
._13_c00460{width:51.402667pt;}
._2b_c00460{width:112.538667pt;}
._23_c00460{width:356.378667pt;}
.fs5_c00460{font-size:42.666667pt;}
.fs2_c00460{font-size:48.000000pt;}
.fs1_c00460{font-size:50.666667pt;}
.fs3_c00460{font-size:53.333333pt;}
.fs0_c00460{font-size:56.000000pt;}
.fs4_c00460{font-size:58.666667pt;}
.y0_c00460{bottom:0.000000pt;}
.y54_c00460{bottom:2.760000pt;}
.y53_c00460{bottom:6.425212pt;}
.y52_c00460{bottom:23.600000pt;}
.y2a_c00460{bottom:42.000000pt;}
.y51_c00460{bottom:42.933333pt;}
.y29_c00460{bottom:58.800000pt;}
.y50_c00460{bottom:59.066667pt;}
.y28_c00460{bottom:75.333333pt;}
.y4f_c00460{bottom:75.866667pt;}
.y4e_c00460{bottom:91.733333pt;}
.y27_c00460{bottom:92.000000pt;}
.y26_c00460{bottom:108.000000pt;}
.y25_c00460{bottom:123.600000pt;}
.y4d_c00460{bottom:124.400000pt;}
.y24_c00460{bottom:140.133333pt;}
.y4c_c00460{bottom:156.533333pt;}
.y23_c00460{bottom:156.800000pt;}
.y4b_c00460{bottom:172.266667pt;}
.y22_c00460{bottom:173.066667pt;}
.y4a_c00460{bottom:188.666667pt;}
.y21_c00460{bottom:189.600000pt;}
.y49_c00460{bottom:204.933333pt;}
.y20_c00460{bottom:206.133333pt;}
.y48_c00460{bottom:220.800000pt;}
.y1f_c00460{bottom:222.000000pt;}
.y47_c00460{bottom:236.933333pt;}
.y1e_c00460{bottom:237.600000pt;}
.y46_c00460{bottom:253.200000pt;}
.y1d_c00460{bottom:254.000000pt;}
.y45_c00460{bottom:269.066667pt;}
.y1c_c00460{bottom:269.333333pt;}
.y44_c00460{bottom:285.200000pt;}
.y1b_c00460{bottom:285.600000pt;}
.y1a_c00460{bottom:300.533333pt;}
.y43_c00460{bottom:301.200000pt;}
.y19_c00460{bottom:317.333333pt;}
.y42_c00460{bottom:317.600000pt;}
.y18_c00460{bottom:333.333333pt;}
.y41_c00460{bottom:333.866667pt;}
.y17_c00460{bottom:349.466667pt;}
.y40_c00460{bottom:350.133333pt;}
.y3f_c00460{bottom:365.600000pt;}
.y16_c00460{bottom:365.733333pt;}
.y15_c00460{bottom:381.600000pt;}
.y3e_c00460{bottom:398.000000pt;}
.y14_c00460{bottom:398.133333pt;}
.y3d_c00460{bottom:413.600000pt;}
.y13_c00460{bottom:413.733333pt;}
.y12_c00460{bottom:429.866667pt;}
.y3c_c00460{bottom:430.400000pt;}
.y11_c00460{bottom:445.466667pt;}
.y3b_c00460{bottom:446.400000pt;}
.y10_c00460{bottom:461.333333pt;}
.y3a_c00460{bottom:462.000000pt;}
.yf_c00460{bottom:476.133333pt;}
.y39_c00460{bottom:478.133333pt;}
.ye_c00460{bottom:492.800000pt;}
.y38_c00460{bottom:493.600000pt;}
.yd_c00460{bottom:509.066667pt;}
.y37_c00460{bottom:510.266667pt;}
.yc_c00460{bottom:525.200000pt;}
.y36_c00460{bottom:526.800000pt;}
.yb_c00460{bottom:540.933333pt;}
.y35_c00460{bottom:542.400000pt;}
.ya_c00460{bottom:556.800000pt;}
.y34_c00460{bottom:558.800000pt;}
.y9_c00460{bottom:572.933333pt;}
.y33_c00460{bottom:574.800000pt;}
.y8_c00460{bottom:589.466667pt;}
.y32_c00460{bottom:591.200000pt;}
.y7_c00460{bottom:605.600000pt;}
.y31_c00460{bottom:606.933333pt;}
.y6_c00460{bottom:621.600000pt;}
.y30_c00460{bottom:622.533333pt;}
.y5_c00460{bottom:637.733333pt;}
.y2f_c00460{bottom:639.600000pt;}
.y4_c00460{bottom:653.733333pt;}
.y2e_c00460{bottom:655.466667pt;}
.y3_c00460{bottom:669.600000pt;}
.y2d_c00460{bottom:671.600000pt;}
.y2_c00460{bottom:686.400000pt;}
.y2c_c00460{bottom:688.133333pt;}
.y2b_c00460{bottom:702.933333pt;}
.y1_c00460{bottom:703.733333pt;}
.h7_c00460{height:11.733399pt;}
.h8_c00460{height:38.937500pt;}
.h5_c00460{height:53.098667pt;}
.h4_c00460{height:55.893333pt;}
.h6_c00460{height:56.426667pt;}
.h2_c00460{height:58.688000pt;}
.h3_c00460{height:62.597333pt;}
.h1_c00460{height:741.333333pt;}
.h0_c00460{height:741.600000pt;}
.w2_c00460{width:93.222667pt;}
.w0_c00460{width:509.733333pt;}
.w1_c00460{width:510.000000pt;}
.x0_c00460{left:0.000000pt;}
.xa_c00460{left:10.400000pt;}
.xb_c00460{left:63.066667pt;}
.x7_c00460{left:64.400000pt;}
.x6_c00460{left:66.933333pt;}
.x8_c00460{left:68.000000pt;}
.x3_c00460{left:68.933333pt;}
.x4_c00460{left:70.133333pt;}
.x2_c00460{left:72.266667pt;}
.x9_c00460{left:91.733333pt;}
.x5_c00460{left:96.266667pt;}
.x1_c00460{left:189.600000pt;}
.x11_c00460{left:212.034871pt;}
.xf_c00460{left:259.733333pt;}
.xc_c00460{left:261.333333pt;}
.xd_c00460{left:262.533333pt;}
.xe_c00460{left:263.733333pt;}
.x10_c00460{left:342.266667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_bd3c41451234da3c0a05bfc6.woff2')format("woff");}.ff1_c00461{font-family:ff1_c00461;line-height:1.437000;font-style:normal;font-weight:normal;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_df2c41e7251f31b33ea64799.woff2')format("woff");}.ff2_c00461{font-family:ff2_c00461;line-height:1.437000;font-style:normal;font-weight:normal;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_9d93acfc7f04011c1221c819.woff2')format("woff");}.ff3_c00461{font-family:ff3_c00461;line-height:1.437000;font-style:normal;font-weight:normal;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_136a0f84385a3dcb878ae382.woff2')format("woff");}.ff4_c00461{font-family:ff4_c00461;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00461;src:url('chunks/assets/font_65cd9c5dd690ddc33d0dac5b.woff2')format("woff");}.ff5_c00461{font-family:ff5_c00461;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00461;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff6_c00461{font-family:ff6_c00461;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00461{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00461{vertical-align:0.000000px;}
.ls0_c00461{letter-spacing:0.000000px;}
.ls1_c00461{letter-spacing:3.000000px;}
.ls2_c00461{letter-spacing:6.000000px;}
.sc__c00461{text-shadow:none;}
.sc0_c00461{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00461{-webkit-text-stroke:0px transparent;}
.sc0_c00461{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00461{word-spacing:-37.746000px;}
.ws1_c00461{word-spacing:-22.074000px;}
.ws0_c00461{word-spacing:-14.340000px;}
.ws2_c00461{word-spacing:-14.160000px;}
.ws4_c00461{word-spacing:0.000000px;}
._2d_c00461{margin-left:-17.685000px;}
._1e_c00461{margin-left:-16.089000px;}
._25_c00461{margin-left:-13.974000px;}
._1b_c00461{margin-left:-11.640000px;}
._22_c00461{margin-left:-10.542000px;}
._27_c00461{margin-left:-9.240000px;}
._28_c00461{margin-left:-8.220000px;}
._23_c00461{margin-left:-6.906000px;}
._2_c00461{margin-left:-5.166000px;}
._26_c00461{margin-left:-4.152000px;}
._9_c00461{margin-left:-3.072000px;}
._e_c00461{margin-left:-1.500000px;}
._a_c00461{width:1.140000px;}
._b_c00461{width:2.337000px;}
._c_c00461{width:3.360000px;}
._f_c00461{width:4.926000px;}
._15_c00461{width:6.231000px;}
._4_c00461{width:7.749000px;}
._5_c00461{width:8.883000px;}
._19_c00461{width:9.930000px;}
._7_c00461{width:11.277000px;}
._6_c00461{width:12.852000px;}
._1_c00461{width:14.175000px;}
._20_c00461{width:15.393000px;}
._11_c00461{width:16.626000px;}
._10_c00461{width:18.180000px;}
._1a_c00461{width:19.203000px;}
._21_c00461{width:20.736000px;}
._14_c00461{width:22.389000px;}
._0_c00461{width:23.562000px;}
._2c_c00461{width:24.594000px;}
._13_c00461{width:25.782000px;}
._12_c00461{width:27.540000px;}
._17_c00461{width:29.595000px;}
._29_c00461{width:31.563000px;}
._1f_c00461{width:32.703000px;}
._8_c00461{width:34.020000px;}
._16_c00461{width:35.469000px;}
._1c_c00461{width:36.474000px;}
._24_c00461{width:38.397000px;}
._1d_c00461{width:40.758000px;}
._18_c00461{width:45.180000px;}
._2a_c00461{width:47.043000px;}
._d_c00461{width:60.606000px;}
._2b_c00461{width:68.766000px;}
._3_c00461{width:262.017000px;}
.fc2_c00461{color:transparent;}
.fc1_c00461{color:rgb(128,128,128);}
.fc0_c00461{color:rgb(0,0,0);}
.fs5_c00461{font-size:48.000000px;}
.fs2_c00461{font-size:57.000000px;}
.fs1_c00461{font-size:60.000000px;}
.fs0_c00461{font-size:63.000000px;}
.fs3_c00461{font-size:66.000000px;}
.fs4_c00461{font-size:69.000000px;}
.y0_c00461{bottom:0.000000px;}
.y4b_c00461{bottom:3.105000px;}
.y4a_c00461{bottom:7.228363px;}
.y49_c00461{bottom:36.150000px;}
.y2a_c00461{bottom:54.600000px;}
.y48_c00461{bottom:55.050000px;}
.y47_c00461{bottom:73.650000px;}
.y29_c00461{bottom:75.300000px;}
.y46_c00461{bottom:90.900000px;}
.y28_c00461{bottom:93.150000px;}
.y27_c00461{bottom:110.250000px;}
.y45_c00461{bottom:110.700000px;}
.y44_c00461{bottom:128.550000px;}
.y26_c00461{bottom:129.150000px;}
.y25_c00461{bottom:146.850000px;}
.y43_c00461{bottom:165.150000px;}
.y24_c00461{bottom:165.750000px;}
.y23_c00461{bottom:182.850000px;}
.y42_c00461{bottom:183.300000px;}
.y41_c00461{bottom:201.600000px;}
.y22_c00461{bottom:201.750000px;}
.y21_c00461{bottom:219.750000px;}
.y40_c00461{bottom:220.050000px;}
.y20_c00461{bottom:237.900000px;}
.y3f_c00461{bottom:238.050000px;}
.y1f_c00461{bottom:256.500000px;}
.y3e_c00461{bottom:256.800000px;}
.y3d_c00461{bottom:274.800000px;}
.y1e_c00461{bottom:274.950000px;}
.y1d_c00461{bottom:292.500000px;}
.y3c_c00461{bottom:292.650000px;}
.y1c_c00461{bottom:310.200000px;}
.y1b_c00461{bottom:328.350000px;}
.y3b_c00461{bottom:328.650000px;}
.y1a_c00461{bottom:346.650000px;}
.y3a_c00461{bottom:346.950000px;}
.y19_c00461{bottom:364.800000px;}
.y18_c00461{bottom:382.800000px;}
.y39_c00461{bottom:383.100000px;}
.y38_c00461{bottom:400.950000px;}
.y17_c00461{bottom:401.250000px;}
.y16_c00461{bottom:418.800000px;}
.y37_c00461{bottom:419.400000px;}
.y15_c00461{bottom:437.100000px;}
.y14_c00461{bottom:455.400000px;}
.y36_c00461{bottom:455.850000px;}
.y13_c00461{bottom:473.250000px;}
.y35_c00461{bottom:474.150000px;}
.y12_c00461{bottom:491.700000px;}
.y11_c00461{bottom:509.400000px;}
.y34_c00461{bottom:509.850000px;}
.y10_c00461{bottom:527.550000px;}
.y33_c00461{bottom:527.850000px;}
.y32_c00461{bottom:545.700000px;}
.yf_c00461{bottom:546.000000px;}
.ye_c00461{bottom:564.000000px;}
.yd_c00461{bottom:581.850000px;}
.yc_c00461{bottom:599.400000px;}
.y31_c00461{bottom:600.000000px;}
.yb_c00461{bottom:618.000000px;}
.ya_c00461{bottom:636.300000px;}
.y30_c00461{bottom:636.450000px;}
.y2f_c00461{bottom:654.450000px;}
.y9_c00461{bottom:654.750000px;}
.y8_c00461{bottom:672.750000px;}
.y7_c00461{bottom:690.900000px;}
.y2e_c00461{bottom:709.200000px;}
.y6_c00461{bottom:709.350000px;}
.y2d_c00461{bottom:727.050000px;}
.y5_c00461{bottom:727.350000px;}
.y2c_c00461{bottom:744.900000px;}
.y4_c00461{bottom:745.200000px;}
.y2b_c00461{bottom:763.350000px;}
.y3_c00461{bottom:763.800000px;}
.y2_c00461{bottom:781.650000px;}
.y1_c00461{bottom:801.900000px;}
.h7_c00461{height:13.200074px;}
.h8_c00461{height:43.804688px;}
.h3_c00461{height:62.880000px;}
.h4_c00461{height:63.480000px;}
.h2_c00461{height:66.024000px;}
.h5_c00461{height:70.422000px;}
.h6_c00461{height:72.312000px;}
.h1_c00461{height:842.250000px;}
.h0_c00461{height:842.400000px;}
.w2_c00461{width:104.875500px;}
.w1_c00461{width:579.750000px;}
.w0_c00461{width:579.975000px;}
.x0_c00461{left:0.000000px;}
.x6_c00461{left:41.250000px;}
.x5_c00461{left:96.150000px;}
.x1_c00461{left:97.950000px;}
.x3_c00461{left:99.000000px;}
.x4_c00461{left:100.200000px;}
.x2_c00461{left:102.900000px;}
.xc_c00461{left:241.801758px;}
.x7_c00461{left:313.500000px;}
.x9_c00461{left:314.550000px;}
.x8_c00461{left:316.350000px;}
.xa_c00461{left:317.700000px;}
.xb_c00461{left:479.250000px;}
@media print{
.v0_c00461{vertical-align:0.000000pt;}
.ls0_c00461{letter-spacing:0.000000pt;}
.ls1_c00461{letter-spacing:2.666667pt;}
.ls2_c00461{letter-spacing:5.333333pt;}
.ws3_c00461{word-spacing:-33.552000pt;}
.ws1_c00461{word-spacing:-19.621333pt;}
.ws0_c00461{word-spacing:-12.746667pt;}
.ws2_c00461{word-spacing:-12.586667pt;}
.ws4_c00461{word-spacing:0.000000pt;}
._2d_c00461{margin-left:-15.720000pt;}
._1e_c00461{margin-left:-14.301333pt;}
._25_c00461{margin-left:-12.421333pt;}
._1b_c00461{margin-left:-10.346667pt;}
._22_c00461{margin-left:-9.370667pt;}
._27_c00461{margin-left:-8.213333pt;}
._28_c00461{margin-left:-7.306667pt;}
._23_c00461{margin-left:-6.138667pt;}
._2_c00461{margin-left:-4.592000pt;}
._26_c00461{margin-left:-3.690667pt;}
._9_c00461{margin-left:-2.730667pt;}
._e_c00461{margin-left:-1.333333pt;}
._a_c00461{width:1.013333pt;}
._b_c00461{width:2.077333pt;}
._c_c00461{width:2.986667pt;}
._f_c00461{width:4.378667pt;}
._15_c00461{width:5.538667pt;}
._4_c00461{width:6.888000pt;}
._5_c00461{width:7.896000pt;}
._19_c00461{width:8.826667pt;}
._7_c00461{width:10.024000pt;}
._6_c00461{width:11.424000pt;}
._1_c00461{width:12.600000pt;}
._20_c00461{width:13.682667pt;}
._11_c00461{width:14.778667pt;}
._10_c00461{width:16.160000pt;}
._1a_c00461{width:17.069333pt;}
._21_c00461{width:18.432000pt;}
._14_c00461{width:19.901333pt;}
._0_c00461{width:20.944000pt;}
._2c_c00461{width:21.861333pt;}
._13_c00461{width:22.917333pt;}
._12_c00461{width:24.480000pt;}
._17_c00461{width:26.306667pt;}
._29_c00461{width:28.056000pt;}
._1f_c00461{width:29.069333pt;}
._8_c00461{width:30.240000pt;}
._16_c00461{width:31.528000pt;}
._1c_c00461{width:32.421333pt;}
._24_c00461{width:34.130667pt;}
._1d_c00461{width:36.229333pt;}
._18_c00461{width:40.160000pt;}
._2a_c00461{width:41.816000pt;}
._d_c00461{width:53.872000pt;}
._2b_c00461{width:61.125333pt;}
._3_c00461{width:232.904000pt;}
.fs5_c00461{font-size:42.666667pt;}
.fs2_c00461{font-size:50.666667pt;}
.fs1_c00461{font-size:53.333333pt;}
.fs0_c00461{font-size:56.000000pt;}
.fs3_c00461{font-size:58.666667pt;}
.fs4_c00461{font-size:61.333333pt;}
.y0_c00461{bottom:0.000000pt;}
.y4b_c00461{bottom:2.760000pt;}
.y4a_c00461{bottom:6.425212pt;}
.y49_c00461{bottom:32.133333pt;}
.y2a_c00461{bottom:48.533333pt;}
.y48_c00461{bottom:48.933333pt;}
.y47_c00461{bottom:65.466667pt;}
.y29_c00461{bottom:66.933333pt;}
.y46_c00461{bottom:80.800000pt;}
.y28_c00461{bottom:82.800000pt;}
.y27_c00461{bottom:98.000000pt;}
.y45_c00461{bottom:98.400000pt;}
.y44_c00461{bottom:114.266667pt;}
.y26_c00461{bottom:114.800000pt;}
.y25_c00461{bottom:130.533333pt;}
.y43_c00461{bottom:146.800000pt;}
.y24_c00461{bottom:147.333333pt;}
.y23_c00461{bottom:162.533333pt;}
.y42_c00461{bottom:162.933333pt;}
.y41_c00461{bottom:179.200000pt;}
.y22_c00461{bottom:179.333333pt;}
.y21_c00461{bottom:195.333333pt;}
.y40_c00461{bottom:195.600000pt;}
.y20_c00461{bottom:211.466667pt;}
.y3f_c00461{bottom:211.600000pt;}
.y1f_c00461{bottom:228.000000pt;}
.y3e_c00461{bottom:228.266667pt;}
.y3d_c00461{bottom:244.266667pt;}
.y1e_c00461{bottom:244.400000pt;}
.y1d_c00461{bottom:260.000000pt;}
.y3c_c00461{bottom:260.133333pt;}
.y1c_c00461{bottom:275.733333pt;}
.y1b_c00461{bottom:291.866667pt;}
.y3b_c00461{bottom:292.133333pt;}
.y1a_c00461{bottom:308.133333pt;}
.y3a_c00461{bottom:308.400000pt;}
.y19_c00461{bottom:324.266667pt;}
.y18_c00461{bottom:340.266667pt;}
.y39_c00461{bottom:340.533333pt;}
.y38_c00461{bottom:356.400000pt;}
.y17_c00461{bottom:356.666667pt;}
.y16_c00461{bottom:372.266667pt;}
.y37_c00461{bottom:372.800000pt;}
.y15_c00461{bottom:388.533333pt;}
.y14_c00461{bottom:404.800000pt;}
.y36_c00461{bottom:405.200000pt;}
.y13_c00461{bottom:420.666667pt;}
.y35_c00461{bottom:421.466667pt;}
.y12_c00461{bottom:437.066667pt;}
.y11_c00461{bottom:452.800000pt;}
.y34_c00461{bottom:453.200000pt;}
.y10_c00461{bottom:468.933333pt;}
.y33_c00461{bottom:469.200000pt;}
.y32_c00461{bottom:485.066667pt;}
.yf_c00461{bottom:485.333333pt;}
.ye_c00461{bottom:501.333333pt;}
.yd_c00461{bottom:517.200000pt;}
.yc_c00461{bottom:532.800000pt;}
.y31_c00461{bottom:533.333333pt;}
.yb_c00461{bottom:549.333333pt;}
.ya_c00461{bottom:565.600000pt;}
.y30_c00461{bottom:565.733333pt;}
.y2f_c00461{bottom:581.733333pt;}
.y9_c00461{bottom:582.000000pt;}
.y8_c00461{bottom:598.000000pt;}
.y7_c00461{bottom:614.133333pt;}
.y2e_c00461{bottom:630.400000pt;}
.y6_c00461{bottom:630.533333pt;}
.y2d_c00461{bottom:646.266667pt;}
.y5_c00461{bottom:646.533333pt;}
.y2c_c00461{bottom:662.133333pt;}
.y4_c00461{bottom:662.400000pt;}
.y2b_c00461{bottom:678.533333pt;}
.y3_c00461{bottom:678.933333pt;}
.y2_c00461{bottom:694.800000pt;}
.y1_c00461{bottom:712.800000pt;}
.h7_c00461{height:11.733399pt;}
.h8_c00461{height:38.937500pt;}
.h3_c00461{height:55.893333pt;}
.h4_c00461{height:56.426667pt;}
.h2_c00461{height:58.688000pt;}
.h5_c00461{height:62.597333pt;}
.h6_c00461{height:64.277333pt;}
.h1_c00461{height:748.666667pt;}
.h0_c00461{height:748.800000pt;}
.w2_c00461{width:93.222667pt;}
.w1_c00461{width:515.333333pt;}
.w0_c00461{width:515.533333pt;}
.x0_c00461{left:0.000000pt;}
.x6_c00461{left:36.666667pt;}
.x5_c00461{left:85.466667pt;}
.x1_c00461{left:87.066667pt;}
.x3_c00461{left:88.000000pt;}
.x4_c00461{left:89.066667pt;}
.x2_c00461{left:91.466667pt;}
.xc_c00461{left:214.934896pt;}
.x7_c00461{left:278.666667pt;}
.x9_c00461{left:279.600000pt;}
.x8_c00461{left:281.200000pt;}
.xa_c00461{left:282.400000pt;}
.xb_c00461{left:426.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_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_08dd28e7e8136d31d5d19440.woff2')format("woff");}.ff1_c00462{font-family:ff1_c00462;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00462;src:url('chunks/assets/font_2c026371212f157969fdcf4e.woff2')format("woff");}.ff2_c00462{font-family:ff2_c00462;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00462;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff3_c00462{font-family:ff3_c00462;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00462;src:url('chunks/assets/font_67053fb066389bbb2cef5c44.woff2')format("woff");}.ff4_c00462{font-family:ff4_c00462;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00462;src:url('chunks/assets/font_15664aa86fa131ecbf168650.woff2')format("woff");}.ff5_c00462{font-family:ff5_c00462;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00462;src:url('chunks/assets/font_328a391214a93bf94bb36c50.woff2')format("woff");}.ff6_c00462{font-family:ff6_c00462;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00462;src:url('chunks/assets/font_155be9b648d117e773468ede.woff2')format("woff");}.ff7_c00462{font-family:ff7_c00462;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00462;src:url('chunks/assets/font_ebcc624586b0af69e24bc46e.woff2')format("woff");}.ff8_c00462{font-family:ff8_c00462;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00462;src:url('chunks/assets/font_dfdbba1176823069434b36f6.woff2')format("woff");}.ff9_c00462{font-family:ff9_c00462;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00462;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ffa_c00462{font-family:ffa_c00462;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00462{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00462{vertical-align:0.000000px;}
.v1_c00462{vertical-align:66.000000px;}
.ls4_c00462{letter-spacing:0.000000px;}
.ls3_c00462{letter-spacing:3.000000px;}
.ls5_c00462{letter-spacing:6.000000px;}
.ls0_c00462{letter-spacing:24.225000px;}
.ls2_c00462{letter-spacing:28.860000px;}
.ls1_c00462{letter-spacing:34.860000px;}
.sc__c00462{text-shadow:none;}
.sc0_c00462{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00462{-webkit-text-stroke:0px transparent;}
.sc0_c00462{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00462{word-spacing:-22.491000px;}
.ws6_c00462{word-spacing:-22.074000px;}
.ws2_c00462{word-spacing:-14.160000px;}
.ws3_c00462{word-spacing:-13.452000px;}
.ws4_c00462{word-spacing:-12.744000px;}
.ws0_c00462{word-spacing:-11.679000px;}
.ws7_c00462{word-spacing:0.000000px;}
.ws5_c00462{word-spacing:2.280000px;}
._21_c00462{margin-left:-33.480000px;}
._22_c00462{margin-left:-28.770000px;}
._20_c00462{margin-left:-25.173000px;}
._e_c00462{margin-left:-14.556000px;}
._29_c00462{margin-left:-11.460000px;}
._2c_c00462{margin-left:-9.276000px;}
._15_c00462{margin-left:-7.560000px;}
._19_c00462{margin-left:-5.643000px;}
._b_c00462{margin-left:-3.825000px;}
._a_c00462{margin-left:-2.091000px;}
._f_c00462{margin-left:-1.077000px;}
._4_c00462{width:1.680000px;}
._8_c00462{width:2.802000px;}
._3_c00462{width:3.930000px;}
._1_c00462{width:5.760000px;}
._0_c00462{width:6.840000px;}
._14_c00462{width:8.844000px;}
._2b_c00462{width:9.900000px;}
._6_c00462{width:10.965000px;}
._13_c00462{width:12.087000px;}
._d_c00462{width:13.374000px;}
._5_c00462{width:14.439000px;}
._9_c00462{width:15.921000px;}
._1f_c00462{width:17.010000px;}
._25_c00462{width:18.357000px;}
._11_c00462{width:20.184000px;}
._10_c00462{width:21.660000px;}
._7_c00462{width:23.298000px;}
._1a_c00462{width:24.339000px;}
._17_c00462{width:25.650000px;}
._1e_c00462{width:27.633000px;}
._12_c00462{width:28.800000px;}
._2d_c00462{width:30.387000px;}
._c_c00462{width:31.467000px;}
._27_c00462{width:33.177000px;}
._23_c00462{width:34.704000px;}
._28_c00462{width:36.246000px;}
._16_c00462{width:37.488000px;}
._26_c00462{width:38.811000px;}
._18_c00462{width:40.920000px;}
._2_c00462{width:42.624000px;}
._1b_c00462{width:48.678000px;}
._2a_c00462{width:85.959000px;}
._1d_c00462{width:143.484000px;}
._2e_c00462{width:152.070000px;}
._1c_c00462{width:187.926000px;}
._24_c00462{width:458.394000px;}
.fc2_c00462{color:transparent;}
.fc1_c00462{color:rgb(128,128,128);}
.fc0_c00462{color:rgb(0,0,0);}
.fsa_c00462{font-size:48.000000px;}
.fs1_c00462{font-size:51.000000px;}
.fs8_c00462{font-size:54.000000px;}
.fs5_c00462{font-size:57.000000px;}
.fs3_c00462{font-size:60.000000px;}
.fs7_c00462{font-size:63.000000px;}
.fs9_c00462{font-size:66.000000px;}
.fs4_c00462{font-size:69.000000px;}
.fs0_c00462{font-size:72.000000px;}
.fs6_c00462{font-size:105.000000px;}
.fs2_c00462{font-size:186.000000px;}
.y0_c00462{bottom:0.000000px;}
.y54_c00462{bottom:3.105000px;}
.y53_c00462{bottom:7.228363px;}
.y52_c00462{bottom:41.550000px;}
.y51_c00462{bottom:59.850000px;}
.y27_c00462{bottom:61.200000px;}
.y50_c00462{bottom:78.750000px;}
.y26_c00462{bottom:80.100000px;}
.y4f_c00462{bottom:97.500000px;}
.y25_c00462{bottom:98.250000px;}
.y4e_c00462{bottom:115.500000px;}
.y24_c00462{bottom:117.150000px;}
.y4d_c00462{bottom:133.650000px;}
.y23_c00462{bottom:134.700000px;}
.y4c_c00462{bottom:151.650000px;}
.y22_c00462{bottom:153.300000px;}
.y4b_c00462{bottom:170.100000px;}
.y21_c00462{bottom:171.900000px;}
.y4a_c00462{bottom:188.100000px;}
.y20_c00462{bottom:190.050000px;}
.y49_c00462{bottom:206.550000px;}
.y1f_c00462{bottom:207.900000px;}
.y1e_c00462{bottom:209.700000px;}
.y48_c00462{bottom:224.550000px;}
.y47_c00462{bottom:242.700000px;}
.y46_c00462{bottom:260.850000px;}
.y1d_c00462{bottom:262.350000px;}
.y45_c00462{bottom:279.150000px;}
.y1c_c00462{bottom:280.800000px;}
.y44_c00462{bottom:297.300000px;}
.y1b_c00462{bottom:297.750000px;}
.y43_c00462{bottom:315.300000px;}
.y1a_c00462{bottom:316.350000px;}
.y42_c00462{bottom:333.150000px;}
.y19_c00462{bottom:333.750000px;}
.y41_c00462{bottom:351.450000px;}
.y18_c00462{bottom:369.000000px;}
.y40_c00462{bottom:369.600000px;}
.y3f_c00462{bottom:387.450000px;}
.y17_c00462{bottom:405.000000px;}
.y3e_c00462{bottom:405.750000px;}
.y16_c00462{bottom:423.000000px;}
.y3d_c00462{bottom:424.200000px;}
.y15_c00462{bottom:441.450000px;}
.y3c_c00462{bottom:442.200000px;}
.y14_c00462{bottom:459.000000px;}
.y3b_c00462{bottom:460.650000px;}
.y13_c00462{bottom:476.850000px;}
.y3a_c00462{bottom:478.950000px;}
.y12_c00462{bottom:495.450000px;}
.y39_c00462{bottom:496.800000px;}
.y11_c00462{bottom:514.050000px;}
.y38_c00462{bottom:514.800000px;}
.y10_c00462{bottom:531.000000px;}
.y37_c00462{bottom:532.950000px;}
.yf_c00462{bottom:549.000000px;}
.y36_c00462{bottom:550.800000px;}
.ye_c00462{bottom:566.700000px;}
.y35_c00462{bottom:568.800000px;}
.yd_c00462{bottom:584.850000px;}
.y34_c00462{bottom:587.700000px;}
.yc_c00462{bottom:603.450000px;}
.y33_c00462{bottom:605.100000px;}
.yb_c00462{bottom:621.300000px;}
.y32_c00462{bottom:623.700000px;}
.ya_c00462{bottom:639.600000px;}
.y31_c00462{bottom:641.550000px;}
.y9_c00462{bottom:657.750000px;}
.y30_c00462{bottom:660.150000px;}
.y8_c00462{bottom:675.750000px;}
.y2f_c00462{bottom:678.750000px;}
.y7_c00462{bottom:693.600000px;}
.y2e_c00462{bottom:696.900000px;}
.y6_c00462{bottom:711.900000px;}
.y2d_c00462{bottom:715.200000px;}
.y5_c00462{bottom:729.450000px;}
.y2c_c00462{bottom:733.350000px;}
.y4_c00462{bottom:748.350000px;}
.y2b_c00462{bottom:751.950000px;}
.y3_c00462{bottom:766.200000px;}
.y2a_c00462{bottom:769.800000px;}
.y2_c00462{bottom:784.800000px;}
.y29_c00462{bottom:787.800000px;}
.y1_c00462{bottom:803.250000px;}
.y28_c00462{bottom:806.250000px;}
.hd_c00462{height:13.200074px;}
.he_c00462{height:43.804688px;}
.h7_c00462{height:53.448000px;}
.hb_c00462{height:56.592000px;}
.h6_c00462{height:59.736000px;}
.h4_c00462{height:62.880000px;}
.h2_c00462{height:64.571777px;}
.ha_c00462{height:65.040000px;}
.h9_c00462{height:66.024000px;}
.hc_c00462{height:70.422000px;}
.h1_c00462{height:70.664062px;}
.h5_c00462{height:72.312000px;}
.h8_c00462{height:132.024000px;}
.h3_c00462{height:194.928000px;}
.h0_c00462{height:843.750000px;}
.w2_c00462{width:104.875500px;}
.w1_c00462{width:579.750000px;}
.w0_c00462{width:579.975000px;}
.x0_c00462{left:0.000000px;}
.xc_c00462{left:70.950000px;}
.xb_c00462{left:72.900000px;}
.x3_c00462{left:73.950000px;}
.x4_c00462{left:75.600000px;}
.x2_c00462{left:77.550000px;}
.x6_c00462{left:84.000000px;}
.x7_c00462{left:99.000000px;}
.xa_c00462{left:112.350000px;}
.x8_c00462{left:125.850000px;}
.x5_c00462{left:147.600000px;}
.x9_c00462{left:159.000000px;}
.x1_c00462{left:216.000000px;}
.x17_c00462{left:241.801758px;}
.xd_c00462{left:278.550000px;}
.x14_c00462{left:287.550000px;}
.x15_c00462{left:288.600000px;}
.x13_c00462{left:289.950000px;}
.x12_c00462{left:291.150000px;}
.x11_c00462{left:292.950000px;}
.x10_c00462{left:294.000000px;}
.xf_c00462{left:295.050000px;}
.xe_c00462{left:296.100000px;}
.x16_c00462{left:382.350000px;}
@media print{
.v0_c00462{vertical-align:0.000000pt;}
.v1_c00462{vertical-align:58.666667pt;}
.ls4_c00462{letter-spacing:0.000000pt;}
.ls3_c00462{letter-spacing:2.666667pt;}
.ls5_c00462{letter-spacing:5.333333pt;}
.ls0_c00462{letter-spacing:21.533333pt;}
.ls2_c00462{letter-spacing:25.653333pt;}
.ls1_c00462{letter-spacing:30.986667pt;}
.ws1_c00462{word-spacing:-19.992000pt;}
.ws6_c00462{word-spacing:-19.621333pt;}
.ws2_c00462{word-spacing:-12.586667pt;}
.ws3_c00462{word-spacing:-11.957333pt;}
.ws4_c00462{word-spacing:-11.328000pt;}
.ws0_c00462{word-spacing:-10.381333pt;}
.ws7_c00462{word-spacing:0.000000pt;}
.ws5_c00462{word-spacing:2.026667pt;}
._21_c00462{margin-left:-29.760000pt;}
._22_c00462{margin-left:-25.573333pt;}
._20_c00462{margin-left:-22.376000pt;}
._e_c00462{margin-left:-12.938667pt;}
._29_c00462{margin-left:-10.186667pt;}
._2c_c00462{margin-left:-8.245333pt;}
._15_c00462{margin-left:-6.720000pt;}
._19_c00462{margin-left:-5.016000pt;}
._b_c00462{margin-left:-3.400000pt;}
._a_c00462{margin-left:-1.858667pt;}
._f_c00462{margin-left:-0.957333pt;}
._4_c00462{width:1.493333pt;}
._8_c00462{width:2.490667pt;}
._3_c00462{width:3.493333pt;}
._1_c00462{width:5.120000pt;}
._0_c00462{width:6.080000pt;}
._14_c00462{width:7.861333pt;}
._2b_c00462{width:8.800000pt;}
._6_c00462{width:9.746667pt;}
._13_c00462{width:10.744000pt;}
._d_c00462{width:11.888000pt;}
._5_c00462{width:12.834667pt;}
._9_c00462{width:14.152000pt;}
._1f_c00462{width:15.120000pt;}
._25_c00462{width:16.317333pt;}
._11_c00462{width:17.941333pt;}
._10_c00462{width:19.253333pt;}
._7_c00462{width:20.709333pt;}
._1a_c00462{width:21.634667pt;}
._17_c00462{width:22.800000pt;}
._1e_c00462{width:24.562667pt;}
._12_c00462{width:25.600000pt;}
._2d_c00462{width:27.010667pt;}
._c_c00462{width:27.970667pt;}
._27_c00462{width:29.490667pt;}
._23_c00462{width:30.848000pt;}
._28_c00462{width:32.218667pt;}
._16_c00462{width:33.322667pt;}
._26_c00462{width:34.498667pt;}
._18_c00462{width:36.373333pt;}
._2_c00462{width:37.888000pt;}
._1b_c00462{width:43.269333pt;}
._2a_c00462{width:76.408000pt;}
._1d_c00462{width:127.541333pt;}
._2e_c00462{width:135.173333pt;}
._1c_c00462{width:167.045333pt;}
._24_c00462{width:407.461333pt;}
.fsa_c00462{font-size:42.666667pt;}
.fs1_c00462{font-size:45.333333pt;}
.fs8_c00462{font-size:48.000000pt;}
.fs5_c00462{font-size:50.666667pt;}
.fs3_c00462{font-size:53.333333pt;}
.fs7_c00462{font-size:56.000000pt;}
.fs9_c00462{font-size:58.666667pt;}
.fs4_c00462{font-size:61.333333pt;}
.fs0_c00462{font-size:64.000000pt;}
.fs6_c00462{font-size:93.333333pt;}
.fs2_c00462{font-size:165.333333pt;}
.y0_c00462{bottom:0.000000pt;}
.y54_c00462{bottom:2.760000pt;}
.y53_c00462{bottom:6.425212pt;}
.y52_c00462{bottom:36.933333pt;}
.y51_c00462{bottom:53.200000pt;}
.y27_c00462{bottom:54.400000pt;}
.y50_c00462{bottom:70.000000pt;}
.y26_c00462{bottom:71.200000pt;}
.y4f_c00462{bottom:86.666667pt;}
.y25_c00462{bottom:87.333333pt;}
.y4e_c00462{bottom:102.666667pt;}
.y24_c00462{bottom:104.133333pt;}
.y4d_c00462{bottom:118.800000pt;}
.y23_c00462{bottom:119.733333pt;}
.y4c_c00462{bottom:134.800000pt;}
.y22_c00462{bottom:136.266667pt;}
.y4b_c00462{bottom:151.200000pt;}
.y21_c00462{bottom:152.800000pt;}
.y4a_c00462{bottom:167.200000pt;}
.y20_c00462{bottom:168.933333pt;}
.y49_c00462{bottom:183.600000pt;}
.y1f_c00462{bottom:184.800000pt;}
.y1e_c00462{bottom:186.400000pt;}
.y48_c00462{bottom:199.600000pt;}
.y47_c00462{bottom:215.733333pt;}
.y46_c00462{bottom:231.866667pt;}
.y1d_c00462{bottom:233.200000pt;}
.y45_c00462{bottom:248.133333pt;}
.y1c_c00462{bottom:249.600000pt;}
.y44_c00462{bottom:264.266667pt;}
.y1b_c00462{bottom:264.666667pt;}
.y43_c00462{bottom:280.266667pt;}
.y1a_c00462{bottom:281.200000pt;}
.y42_c00462{bottom:296.133333pt;}
.y19_c00462{bottom:296.666667pt;}
.y41_c00462{bottom:312.400000pt;}
.y18_c00462{bottom:328.000000pt;}
.y40_c00462{bottom:328.533333pt;}
.y3f_c00462{bottom:344.400000pt;}
.y17_c00462{bottom:360.000000pt;}
.y3e_c00462{bottom:360.666667pt;}
.y16_c00462{bottom:376.000000pt;}
.y3d_c00462{bottom:377.066667pt;}
.y15_c00462{bottom:392.400000pt;}
.y3c_c00462{bottom:393.066667pt;}
.y14_c00462{bottom:408.000000pt;}
.y3b_c00462{bottom:409.466667pt;}
.y13_c00462{bottom:423.866667pt;}
.y3a_c00462{bottom:425.733333pt;}
.y12_c00462{bottom:440.400000pt;}
.y39_c00462{bottom:441.600000pt;}
.y11_c00462{bottom:456.933333pt;}
.y38_c00462{bottom:457.600000pt;}
.y10_c00462{bottom:472.000000pt;}
.y37_c00462{bottom:473.733333pt;}
.yf_c00462{bottom:488.000000pt;}
.y36_c00462{bottom:489.600000pt;}
.ye_c00462{bottom:503.733333pt;}
.y35_c00462{bottom:505.600000pt;}
.yd_c00462{bottom:519.866667pt;}
.y34_c00462{bottom:522.400000pt;}
.yc_c00462{bottom:536.400000pt;}
.y33_c00462{bottom:537.866667pt;}
.yb_c00462{bottom:552.266667pt;}
.y32_c00462{bottom:554.400000pt;}
.ya_c00462{bottom:568.533333pt;}
.y31_c00462{bottom:570.266667pt;}
.y9_c00462{bottom:584.666667pt;}
.y30_c00462{bottom:586.800000pt;}
.y8_c00462{bottom:600.666667pt;}
.y2f_c00462{bottom:603.333333pt;}
.y7_c00462{bottom:616.533333pt;}
.y2e_c00462{bottom:619.466667pt;}
.y6_c00462{bottom:632.800000pt;}
.y2d_c00462{bottom:635.733333pt;}
.y5_c00462{bottom:648.400000pt;}
.y2c_c00462{bottom:651.866667pt;}
.y4_c00462{bottom:665.200000pt;}
.y2b_c00462{bottom:668.400000pt;}
.y3_c00462{bottom:681.066667pt;}
.y2a_c00462{bottom:684.266667pt;}
.y2_c00462{bottom:697.600000pt;}
.y29_c00462{bottom:700.266667pt;}
.y1_c00462{bottom:714.000000pt;}
.y28_c00462{bottom:716.666667pt;}
.hd_c00462{height:11.733399pt;}
.he_c00462{height:38.937500pt;}
.h7_c00462{height:47.509333pt;}
.hb_c00462{height:50.304000pt;}
.h6_c00462{height:53.098667pt;}
.h4_c00462{height:55.893333pt;}
.h2_c00462{height:57.397135pt;}
.ha_c00462{height:57.813333pt;}
.h9_c00462{height:58.688000pt;}
.hc_c00462{height:62.597333pt;}
.h1_c00462{height:62.812500pt;}
.h5_c00462{height:64.277333pt;}
.h8_c00462{height:117.354667pt;}
.h3_c00462{height:173.269333pt;}
.h0_c00462{height:750.000000pt;}
.w2_c00462{width:93.222667pt;}
.w1_c00462{width:515.333333pt;}
.w0_c00462{width:515.533333pt;}
.x0_c00462{left:0.000000pt;}
.xc_c00462{left:63.066667pt;}
.xb_c00462{left:64.800000pt;}
.x3_c00462{left:65.733333pt;}
.x4_c00462{left:67.200000pt;}
.x2_c00462{left:68.933333pt;}
.x6_c00462{left:74.666667pt;}
.x7_c00462{left:88.000000pt;}
.xa_c00462{left:99.866667pt;}
.x8_c00462{left:111.866667pt;}
.x5_c00462{left:131.200000pt;}
.x9_c00462{left:141.333333pt;}
.x1_c00462{left:192.000000pt;}
.x17_c00462{left:214.934896pt;}
.xd_c00462{left:247.600000pt;}
.x14_c00462{left:255.600000pt;}
.x15_c00462{left:256.533333pt;}
.x13_c00462{left:257.733333pt;}
.x12_c00462{left:258.800000pt;}
.x11_c00462{left:260.400000pt;}
.x10_c00462{left:261.333333pt;}
.xf_c00462{left:262.266667pt;}
.xe_c00462{left:263.200000pt;}
.x16_c00462{left:339.866667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ed0e942584997d1bba393388.woff2')format("woff");}.ff1_c00463{font-family:ff1_c00463;line-height:1.437000;font-style:normal;font-weight:normal;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_24ba2a64f0035853c6c5a7a9.woff2')format("woff");}.ff2_c00463{font-family:ff2_c00463;line-height:1.437000;font-style:normal;font-weight:normal;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_021e8c2706291c3157dc71f4.woff2')format("woff");}.ff3_c00463{font-family:ff3_c00463;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00463;src:url('chunks/assets/font_b11c80fd7e20b1e2b7fbb52f.woff2')format("woff");}.ff4_c00463{font-family:ff4_c00463;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00463;src:url('chunks/assets/font_8a0d3ab43d136564aa070d99.woff2')format("woff");}.ff5_c00463{font-family:ff5_c00463;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00463;src:url('chunks/assets/font_ee235d970fe68ec954f39264.woff2')format("woff");}.ff6_c00463{font-family:ff6_c00463;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00463;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff7_c00463{font-family:ff7_c00463;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00463;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff8_c00463{font-family:ff8_c00463;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00463{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00463{vertical-align:0.000000px;}
.ls5_c00463{letter-spacing:0.000000px;}
.ls0_c00463{letter-spacing:0.600000px;}
.ls4_c00463{letter-spacing:1.974000px;}
.ls6_c00463{letter-spacing:3.000000px;}
.ls7_c00463{letter-spacing:6.000000px;}
.ls2_c00463{letter-spacing:8.046000px;}
.ls1_c00463{letter-spacing:13.893000px;}
.ls3_c00463{letter-spacing:18.846000px;}
.sc__c00463{text-shadow:none;}
.sc0_c00463{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00463{-webkit-text-stroke:0px transparent;}
.sc0_c00463{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00463{word-spacing:-22.491000px;}
.ws5_c00463{word-spacing:-22.074000px;}
.ws6_c00463{word-spacing:-15.813000px;}
.ws3_c00463{word-spacing:-14.427000px;}
.ws0_c00463{word-spacing:-14.340000px;}
.ws1_c00463{word-spacing:-14.160000px;}
.ws4_c00463{word-spacing:-13.452000px;}
.ws2_c00463{word-spacing:-12.291000px;}
.ws9_c00463{word-spacing:0.000000px;}
.ws8_c00463{word-spacing:2.340000px;}
._27_c00463{margin-left:-15.273000px;}
._20_c00463{margin-left:-13.488000px;}
._24_c00463{margin-left:-9.774000px;}
._14_c00463{margin-left:-8.580000px;}
._21_c00463{margin-left:-7.491000px;}
._1c_c00463{margin-left:-5.976000px;}
._11_c00463{margin-left:-4.920000px;}
._12_c00463{margin-left:-3.300000px;}
._b_c00463{margin-left:-2.280000px;}
._7_c00463{margin-left:-1.140000px;}
._6_c00463{width:1.380000px;}
._5_c00463{width:2.820000px;}
._9_c00463{width:3.900000px;}
._8_c00463{width:5.160000px;}
._1e_c00463{width:6.528000px;}
._0_c00463{width:7.620000px;}
._2_c00463{width:8.940000px;}
._3_c00463{width:10.200000px;}
._4_c00463{width:11.520000px;}
._10_c00463{width:12.522000px;}
._23_c00463{width:13.653000px;}
._2c_c00463{width:15.387000px;}
._d_c00463{width:16.401000px;}
._28_c00463{width:17.820000px;}
._1d_c00463{width:19.047000px;}
._f_c00463{width:20.340000px;}
._19_c00463{width:21.420000px;}
._2d_c00463{width:22.863000px;}
._13_c00463{width:24.360000px;}
._e_c00463{width:25.620000px;}
._16_c00463{width:26.880000px;}
._17_c00463{width:28.980000px;}
._15_c00463{width:30.360000px;}
._30_c00463{width:32.127000px;}
._2b_c00463{width:35.223000px;}
._2e_c00463{width:36.651000px;}
._a_c00463{width:37.680000px;}
._c_c00463{width:39.780000px;}
._18_c00463{width:41.520000px;}
._26_c00463{width:46.650000px;}
._2f_c00463{width:50.187000px;}
._29_c00463{width:75.480000px;}
._2a_c00463{width:95.280000px;}
._31_c00463{width:107.175000px;}
._1f_c00463{width:141.435000px;}
._1b_c00463{width:175.647000px;}
._25_c00463{width:205.566000px;}
._1_c00463{width:259.500000px;}
._1a_c00463{width:301.323000px;}
._22_c00463{width:311.178000px;}
.fc2_c00463{color:transparent;}
.fc1_c00463{color:rgb(128,128,128);}
.fc0_c00463{color:rgb(0,0,0);}
.fs7_c00463{font-size:48.000000px;}
.fs4_c00463{font-size:51.000000px;}
.fs5_c00463{font-size:54.000000px;}
.fs3_c00463{font-size:57.000000px;}
.fs0_c00463{font-size:60.000000px;}
.fs1_c00463{font-size:63.000000px;}
.fs2_c00463{font-size:66.000000px;}
.fs6_c00463{font-size:69.000000px;}
.y0_c00463{bottom:0.000000px;}
.y5c_c00463{bottom:3.105000px;}
.y5b_c00463{bottom:7.228363px;}
.y2b_c00463{bottom:36.000000px;}
.y55_c00463{bottom:37.500000px;}
.y2a_c00463{bottom:54.600000px;}
.y54_c00463{bottom:56.700000px;}
.y29_c00463{bottom:74.850000px;}
.y53_c00463{bottom:75.300000px;}
.y28_c00463{bottom:93.150000px;}
.y52_c00463{bottom:94.500000px;}
.y27_c00463{bottom:110.700000px;}
.y51_c00463{bottom:112.350000px;}
.y26_c00463{bottom:129.600000px;}
.y50_c00463{bottom:130.500000px;}
.y25_c00463{bottom:147.450000px;}
.y4f_c00463{bottom:148.500000px;}
.y24_c00463{bottom:166.350000px;}
.y4e_c00463{bottom:167.400000px;}
.y23_c00463{bottom:184.200000px;}
.y4d_c00463{bottom:186.000000px;}
.y22_c00463{bottom:202.500000px;}
.y4c_c00463{bottom:204.150000px;}
.y21_c00463{bottom:220.650000px;}
.y4b_c00463{bottom:221.700000px;}
.y20_c00463{bottom:238.950000px;}
.y4a_c00463{bottom:240.300000px;}
.y5a_c00463{bottom:244.950000px;}
.y1f_c00463{bottom:257.100000px;}
.y49_c00463{bottom:258.750000px;}
.y59_c00463{bottom:263.850000px;}
.y1e_c00463{bottom:274.950000px;}
.y48_c00463{bottom:277.050000px;}
.y58_c00463{bottom:282.150000px;}
.y1d_c00463{bottom:293.550000px;}
.y47_c00463{bottom:294.900000px;}
.y1c_c00463{bottom:311.550000px;}
.y46_c00463{bottom:312.450000px;}
.y1b_c00463{bottom:330.450000px;}
.y45_c00463{bottom:330.750000px;}
.y1a_c00463{bottom:347.850000px;}
.y44_c00463{bottom:348.600000px;}
.y19_c00463{bottom:365.850000px;}
.y43_c00463{bottom:367.200000px;}
.y18_c00463{bottom:384.450000px;}
.y42_c00463{bottom:385.350000px;}
.y17_c00463{bottom:402.600000px;}
.y41_c00463{bottom:403.350000px;}
.y16_c00463{bottom:420.900000px;}
.y40_c00463{bottom:421.500000px;}
.y15_c00463{bottom:439.050000px;}
.y3f_c00463{bottom:439.650000px;}
.y3e_c00463{bottom:457.650000px;}
.y14_c00463{bottom:458.700000px;}
.y13_c00463{bottom:475.200000px;}
.y3d_c00463{bottom:476.100000px;}
.y12_c00463{bottom:493.500000px;}
.y3c_c00463{bottom:494.400000px;}
.y11_c00463{bottom:511.350000px;}
.y3b_c00463{bottom:512.250000px;}
.y10_c00463{bottom:529.650000px;}
.y3a_c00463{bottom:530.550000px;}
.yf_c00463{bottom:547.200000px;}
.y39_c00463{bottom:548.400000px;}
.ye_c00463{bottom:566.400000px;}
.y38_c00463{bottom:566.700000px;}
.yd_c00463{bottom:583.500000px;}
.y37_c00463{bottom:584.550000px;}
.y57_c00463{bottom:586.800000px;}
.yc_c00463{bottom:601.500000px;}
.y36_c00463{bottom:603.000000px;}
.yb_c00463{bottom:619.650000px;}
.y35_c00463{bottom:621.300000px;}
.ya_c00463{bottom:637.950000px;}
.y34_c00463{bottom:638.850000px;}
.y9_c00463{bottom:656.400000px;}
.y33_c00463{bottom:657.450000px;}
.y8_c00463{bottom:674.400000px;}
.y32_c00463{bottom:675.900000px;}
.y7_c00463{bottom:692.550000px;}
.y31_c00463{bottom:693.900000px;}
.y6_c00463{bottom:710.850000px;}
.y56_c00463{bottom:711.450000px;}
.y30_c00463{bottom:712.050000px;}
.y5_c00463{bottom:729.300000px;}
.y2f_c00463{bottom:730.650000px;}
.y4_c00463{bottom:747.600000px;}
.y2e_c00463{bottom:748.200000px;}
.y3_c00463{bottom:766.200000px;}
.y2d_c00463{bottom:766.350000px;}
.y2_c00463{bottom:784.350000px;}
.y2c_c00463{bottom:802.500000px;}
.y1_c00463{bottom:804.000000px;}
.h9_c00463{height:13.200074px;}
.ha_c00463{height:43.804688px;}
.h8_c00463{height:59.690918px;}
.h5_c00463{height:59.736000px;}
.h2_c00463{height:62.880000px;}
.h6_c00463{height:64.571777px;}
.h3_c00463{height:66.024000px;}
.h4_c00463{height:70.422000px;}
.h7_c00463{height:72.312000px;}
.h1_c00463{height:842.250000px;}
.h0_c00463{height:842.400000px;}
.w2_c00463{width:104.875500px;}
.w1_c00463{width:579.750000px;}
.w0_c00463{width:579.975000px;}
.x0_c00463{left:0.000000px;}
.x7_c00463{left:29.700000px;}
.x6_c00463{left:51.750000px;}
.x5_c00463{left:93.900000px;}
.x4_c00463{left:95.550000px;}
.x3_c00463{left:96.600000px;}
.x2_c00463{left:97.650000px;}
.x1_c00463{left:103.200000px;}
.x9_c00463{left:139.500000px;}
.x8_c00463{left:161.400000px;}
.x13_c00463{left:241.801758px;}
.xa_c00463{left:295.050000px;}
.x10_c00463{left:309.600000px;}
.xf_c00463{left:312.150000px;}
.xe_c00463{left:313.200000px;}
.xd_c00463{left:314.250000px;}
.xb_c00463{left:315.300000px;}
.xc_c00463{left:342.600000px;}
.x11_c00463{left:477.900000px;}
.x12_c00463{left:517.800000px;}
@media print{
.v0_c00463{vertical-align:0.000000pt;}
.ls5_c00463{letter-spacing:0.000000pt;}
.ls0_c00463{letter-spacing:0.533333pt;}
.ls4_c00463{letter-spacing:1.754667pt;}
.ls6_c00463{letter-spacing:2.666667pt;}
.ls7_c00463{letter-spacing:5.333333pt;}
.ls2_c00463{letter-spacing:7.152000pt;}
.ls1_c00463{letter-spacing:12.349333pt;}
.ls3_c00463{letter-spacing:16.752000pt;}
.ws7_c00463{word-spacing:-19.992000pt;}
.ws5_c00463{word-spacing:-19.621333pt;}
.ws6_c00463{word-spacing:-14.056000pt;}
.ws3_c00463{word-spacing:-12.824000pt;}
.ws0_c00463{word-spacing:-12.746667pt;}
.ws1_c00463{word-spacing:-12.586667pt;}
.ws4_c00463{word-spacing:-11.957333pt;}
.ws2_c00463{word-spacing:-10.925333pt;}
.ws9_c00463{word-spacing:0.000000pt;}
.ws8_c00463{word-spacing:2.080000pt;}
._27_c00463{margin-left:-13.576000pt;}
._20_c00463{margin-left:-11.989333pt;}
._24_c00463{margin-left:-8.688000pt;}
._14_c00463{margin-left:-7.626667pt;}
._21_c00463{margin-left:-6.658667pt;}
._1c_c00463{margin-left:-5.312000pt;}
._11_c00463{margin-left:-4.373333pt;}
._12_c00463{margin-left:-2.933333pt;}
._b_c00463{margin-left:-2.026667pt;}
._7_c00463{margin-left:-1.013333pt;}
._6_c00463{width:1.226667pt;}
._5_c00463{width:2.506667pt;}
._9_c00463{width:3.466667pt;}
._8_c00463{width:4.586667pt;}
._1e_c00463{width:5.802667pt;}
._0_c00463{width:6.773333pt;}
._2_c00463{width:7.946667pt;}
._3_c00463{width:9.066667pt;}
._4_c00463{width:10.240000pt;}
._10_c00463{width:11.130667pt;}
._23_c00463{width:12.136000pt;}
._2c_c00463{width:13.677333pt;}
._d_c00463{width:14.578667pt;}
._28_c00463{width:15.840000pt;}
._1d_c00463{width:16.930667pt;}
._f_c00463{width:18.080000pt;}
._19_c00463{width:19.040000pt;}
._2d_c00463{width:20.322667pt;}
._13_c00463{width:21.653333pt;}
._e_c00463{width:22.773333pt;}
._16_c00463{width:23.893333pt;}
._17_c00463{width:25.760000pt;}
._15_c00463{width:26.986667pt;}
._30_c00463{width:28.557333pt;}
._2b_c00463{width:31.309333pt;}
._2e_c00463{width:32.578667pt;}
._a_c00463{width:33.493333pt;}
._c_c00463{width:35.360000pt;}
._18_c00463{width:36.906667pt;}
._26_c00463{width:41.466667pt;}
._2f_c00463{width:44.610667pt;}
._29_c00463{width:67.093333pt;}
._2a_c00463{width:84.693333pt;}
._31_c00463{width:95.266667pt;}
._1f_c00463{width:125.720000pt;}
._1b_c00463{width:156.130667pt;}
._25_c00463{width:182.725333pt;}
._1_c00463{width:230.666667pt;}
._1a_c00463{width:267.842667pt;}
._22_c00463{width:276.602667pt;}
.fs7_c00463{font-size:42.666667pt;}
.fs4_c00463{font-size:45.333333pt;}
.fs5_c00463{font-size:48.000000pt;}
.fs3_c00463{font-size:50.666667pt;}
.fs0_c00463{font-size:53.333333pt;}
.fs1_c00463{font-size:56.000000pt;}
.fs2_c00463{font-size:58.666667pt;}
.fs6_c00463{font-size:61.333333pt;}
.y0_c00463{bottom:0.000000pt;}
.y5c_c00463{bottom:2.760000pt;}
.y5b_c00463{bottom:6.425212pt;}
.y2b_c00463{bottom:32.000000pt;}
.y55_c00463{bottom:33.333333pt;}
.y2a_c00463{bottom:48.533333pt;}
.y54_c00463{bottom:50.400000pt;}
.y29_c00463{bottom:66.533333pt;}
.y53_c00463{bottom:66.933333pt;}
.y28_c00463{bottom:82.800000pt;}
.y52_c00463{bottom:84.000000pt;}
.y27_c00463{bottom:98.400000pt;}
.y51_c00463{bottom:99.866667pt;}
.y26_c00463{bottom:115.200000pt;}
.y50_c00463{bottom:116.000000pt;}
.y25_c00463{bottom:131.066667pt;}
.y4f_c00463{bottom:132.000000pt;}
.y24_c00463{bottom:147.866667pt;}
.y4e_c00463{bottom:148.800000pt;}
.y23_c00463{bottom:163.733333pt;}
.y4d_c00463{bottom:165.333333pt;}
.y22_c00463{bottom:180.000000pt;}
.y4c_c00463{bottom:181.466667pt;}
.y21_c00463{bottom:196.133333pt;}
.y4b_c00463{bottom:197.066667pt;}
.y20_c00463{bottom:212.400000pt;}
.y4a_c00463{bottom:213.600000pt;}
.y5a_c00463{bottom:217.733333pt;}
.y1f_c00463{bottom:228.533333pt;}
.y49_c00463{bottom:230.000000pt;}
.y59_c00463{bottom:234.533333pt;}
.y1e_c00463{bottom:244.400000pt;}
.y48_c00463{bottom:246.266667pt;}
.y58_c00463{bottom:250.800000pt;}
.y1d_c00463{bottom:260.933333pt;}
.y47_c00463{bottom:262.133333pt;}
.y1c_c00463{bottom:276.933333pt;}
.y46_c00463{bottom:277.733333pt;}
.y1b_c00463{bottom:293.733333pt;}
.y45_c00463{bottom:294.000000pt;}
.y1a_c00463{bottom:309.200000pt;}
.y44_c00463{bottom:309.866667pt;}
.y19_c00463{bottom:325.200000pt;}
.y43_c00463{bottom:326.400000pt;}
.y18_c00463{bottom:341.733333pt;}
.y42_c00463{bottom:342.533333pt;}
.y17_c00463{bottom:357.866667pt;}
.y41_c00463{bottom:358.533333pt;}
.y16_c00463{bottom:374.133333pt;}
.y40_c00463{bottom:374.666667pt;}
.y15_c00463{bottom:390.266667pt;}
.y3f_c00463{bottom:390.800000pt;}
.y3e_c00463{bottom:406.800000pt;}
.y14_c00463{bottom:407.733333pt;}
.y13_c00463{bottom:422.400000pt;}
.y3d_c00463{bottom:423.200000pt;}
.y12_c00463{bottom:438.666667pt;}
.y3c_c00463{bottom:439.466667pt;}
.y11_c00463{bottom:454.533333pt;}
.y3b_c00463{bottom:455.333333pt;}
.y10_c00463{bottom:470.800000pt;}
.y3a_c00463{bottom:471.600000pt;}
.yf_c00463{bottom:486.400000pt;}
.y39_c00463{bottom:487.466667pt;}
.ye_c00463{bottom:503.466667pt;}
.y38_c00463{bottom:503.733333pt;}
.yd_c00463{bottom:518.666667pt;}
.y37_c00463{bottom:519.600000pt;}
.y57_c00463{bottom:521.600000pt;}
.yc_c00463{bottom:534.666667pt;}
.y36_c00463{bottom:536.000000pt;}
.yb_c00463{bottom:550.800000pt;}
.y35_c00463{bottom:552.266667pt;}
.ya_c00463{bottom:567.066667pt;}
.y34_c00463{bottom:567.866667pt;}
.y9_c00463{bottom:583.466667pt;}
.y33_c00463{bottom:584.400000pt;}
.y8_c00463{bottom:599.466667pt;}
.y32_c00463{bottom:600.800000pt;}
.y7_c00463{bottom:615.600000pt;}
.y31_c00463{bottom:616.800000pt;}
.y6_c00463{bottom:631.866667pt;}
.y56_c00463{bottom:632.400000pt;}
.y30_c00463{bottom:632.933333pt;}
.y5_c00463{bottom:648.266667pt;}
.y2f_c00463{bottom:649.466667pt;}
.y4_c00463{bottom:664.533333pt;}
.y2e_c00463{bottom:665.066667pt;}
.y3_c00463{bottom:681.066667pt;}
.y2d_c00463{bottom:681.200000pt;}
.y2_c00463{bottom:697.200000pt;}
.y2c_c00463{bottom:713.333333pt;}
.y1_c00463{bottom:714.666667pt;}
.h9_c00463{height:11.733399pt;}
.ha_c00463{height:38.937500pt;}
.h8_c00463{height:53.058594pt;}
.h5_c00463{height:53.098667pt;}
.h2_c00463{height:55.893333pt;}
.h6_c00463{height:57.397135pt;}
.h3_c00463{height:58.688000pt;}
.h4_c00463{height:62.597333pt;}
.h7_c00463{height:64.277333pt;}
.h1_c00463{height:748.666667pt;}
.h0_c00463{height:748.800000pt;}
.w2_c00463{width:93.222667pt;}
.w1_c00463{width:515.333333pt;}
.w0_c00463{width:515.533333pt;}
.x0_c00463{left:0.000000pt;}
.x7_c00463{left:26.400000pt;}
.x6_c00463{left:46.000000pt;}
.x5_c00463{left:83.466667pt;}
.x4_c00463{left:84.933333pt;}
.x3_c00463{left:85.866667pt;}
.x2_c00463{left:86.800000pt;}
.x1_c00463{left:91.733333pt;}
.x9_c00463{left:124.000000pt;}
.x8_c00463{left:143.466667pt;}
.x13_c00463{left:214.934896pt;}
.xa_c00463{left:262.266667pt;}
.x10_c00463{left:275.200000pt;}
.xf_c00463{left:277.466667pt;}
.xe_c00463{left:278.400000pt;}
.xd_c00463{left:279.333333pt;}
.xb_c00463{left:280.266667pt;}
.xc_c00463{left:304.533333pt;}
.x11_c00463{left:424.800000pt;}
.x12_c00463{left:460.266667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_83d0a946f72def7d4075fe15.woff2')format("woff");}.ff1_c00464{font-family:ff1_c00464;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00464;src:url('chunks/assets/font_aa922d1546a6be2b721a4102.woff2')format("woff");}.ff2_c00464{font-family:ff2_c00464;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00464;src:url('chunks/assets/font_49ba27120ed4306a456c848c.woff2')format("woff");}.ff3_c00464{font-family:ff3_c00464;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00464;src:url('chunks/assets/font_c88e2d5f5b89a4b1b38b9301.woff2')format("woff");}.ff4_c00464{font-family:ff4_c00464;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00464;src:url('chunks/assets/font_9dbdce6dd2ff929561057e08.woff2')format("woff");}.ff5_c00464{font-family:ff5_c00464;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00464;src:url('chunks/assets/font_738ef753a1587fb6ffd4dc5f.woff2')format("woff");}.ff6_c00464{font-family:ff6_c00464;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00464;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff7_c00464{font-family:ff7_c00464;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00464{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00464{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.v0_c00464{vertical-align:0.000000px;}
.ls8_c00464{letter-spacing:0.000000px;}
.ls6_c00464{letter-spacing:0.600000px;}
.ls2_c00464{letter-spacing:2.580000px;}
.ls4_c00464{letter-spacing:2.700000px;}
.lsb_c00464{letter-spacing:3.000000px;}
.ls5_c00464{letter-spacing:7.893000px;}
.ls7_c00464{letter-spacing:10.680000px;}
.ls3_c00464{letter-spacing:12.000000px;}
.ls1_c00464{letter-spacing:14.400000px;}
.ls9_c00464{letter-spacing:15.000000px;}
.lsa_c00464{letter-spacing:30.000000px;}
.ls0_c00464{letter-spacing:400.860000px;}
.sc__c00464{text-shadow:none;}
.sc0_c00464{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00464{-webkit-text-stroke:0px transparent;}
.sc0_c00464{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00464{word-spacing:-55.602000px;}
.ws0_c00464{word-spacing:-29.340000px;}
.ws7_c00464{word-spacing:-22.074000px;}
.ws1_c00464{word-spacing:-16.920000px;}
.ws4_c00464{word-spacing:-16.554000px;}
.ws6_c00464{word-spacing:-14.340000px;}
.ws2_c00464{word-spacing:-14.160000px;}
.ws5_c00464{word-spacing:-13.452000px;}
.ws8_c00464{word-spacing:0.000000px;}
._26_c00464{margin-left:-18.384000px;}
._d_c00464{margin-left:-17.220000px;}
._22_c00464{margin-left:-12.654000px;}
._27_c00464{margin-left:-11.151000px;}
._1a_c00464{margin-left:-8.718000px;}
._1b_c00464{margin-left:-7.650000px;}
._10_c00464{margin-left:-6.240000px;}
._11_c00464{margin-left:-4.500000px;}
._5_c00464{margin-left:-2.580000px;}
._b_c00464{margin-left:-1.500000px;}
._8_c00464{width:1.260000px;}
._4_c00464{width:2.460000px;}
._12_c00464{width:3.480000px;}
._3_c00464{width:4.560000px;}
._6_c00464{width:5.820000px;}
._f_c00464{width:6.960000px;}
._19_c00464{width:8.340000px;}
._23_c00464{width:9.393000px;}
._7_c00464{width:10.560000px;}
._25_c00464{width:11.649000px;}
._1_c00464{width:12.780000px;}
._28_c00464{width:13.857000px;}
._16_c00464{width:15.360000px;}
._0_c00464{width:17.400000px;}
._17_c00464{width:19.500000px;}
._9_c00464{width:21.420000px;}
._15_c00464{width:22.740000px;}
._a_c00464{width:23.760000px;}
._1f_c00464{width:25.560000px;}
._14_c00464{width:28.380000px;}
._20_c00464{width:32.400000px;}
._1e_c00464{width:34.800000px;}
._1d_c00464{width:36.000000px;}
._21_c00464{width:37.740000px;}
._2_c00464{width:48.960000px;}
._1c_c00464{width:61.044000px;}
._e_c00464{width:70.020000px;}
._c_c00464{width:72.060000px;}
._13_c00464{width:137.520000px;}
._24_c00464{width:176.268000px;}
._18_c00464{width:262.680000px;}
._29_c00464{width:387.540000px;}
.fc2_c00464{color:transparent;}
.fc1_c00464{color:rgb(128,128,128);}
.fc0_c00464{color:rgb(0,0,0);}
.fs5_c00464{font-size:39.000000px;}
.fs9_c00464{font-size:48.000000px;}
.fs6_c00464{font-size:51.000000px;}
.fs7_c00464{font-size:54.000000px;}
.fs4_c00464{font-size:57.000000px;}
.fs1_c00464{font-size:60.000000px;}
.fs8_c00464{font-size:63.000000px;}
.fs2_c00464{font-size:66.000000px;}
.fs3_c00464{font-size:102.000000px;}
.fs0_c00464{font-size:105.000000px;}
.y0_c00464{bottom:0.000000px;}
.y2a_c00464{bottom:3.105000px;}
.y29_c00464{bottom:7.228355px;}
.y28_c00464{bottom:33.285000px;}
.y27_c00464{bottom:53.535000px;}
.y26_c00464{bottom:72.885000px;}
.y25_c00464{bottom:90.135000px;}
.y24_c00464{bottom:108.885000px;}
.y23_c00464{bottom:126.435000px;}
.y22_c00464{bottom:145.485000px;}
.y21_c00464{bottom:163.485000px;}
.y20_c00464{bottom:181.485000px;}
.y1f_c00464{bottom:199.485000px;}
.y1e_c00464{bottom:217.935000px;}
.y1d_c00464{bottom:241.185000px;}
.y1c_c00464{bottom:258.735000px;}
.y1b_c00464{bottom:277.035000px;}
.y1a_c00464{bottom:302.085000px;}
.y19_c00464{bottom:319.185000px;}
.y18_c00464{bottom:338.085000px;}
.y17_c00464{bottom:355.935000px;}
.y16_c00464{bottom:374.535000px;}
.y15_c00464{bottom:391.785000px;}
.y14_c00464{bottom:409.935000px;}
.y13_c00464{bottom:427.935000px;}
.y12_c00464{bottom:446.385000px;}
.y11_c00464{bottom:463.935000px;}
.y10_c00464{bottom:481.935000px;}
.y1_c00464{bottom:484.335000px;}
.yf_c00464{bottom:499.785000px;}
.ye_c00464{bottom:517.335000px;}
.yd_c00464{bottom:552.135000px;}
.yc_c00464{bottom:571.035000px;}
.yb_c00464{bottom:589.635000px;}
.ya_c00464{bottom:607.785000px;}
.y9_c00464{bottom:626.685000px;}
.y8_c00464{bottom:650.685000px;}
.y7_c00464{bottom:700.635000px;}
.y6_c00464{bottom:719.535000px;}
.y5_c00464{bottom:738.135000px;}
.y4_c00464{bottom:756.885000px;}
.y3_c00464{bottom:774.435000px;}
.y2_c00464{bottom:793.035000px;}
.ha_c00464{height:13.200074px;}
.hb_c00464{height:43.804688px;}
.h8_c00464{height:56.592000px;}
.h7_c00464{height:59.690918px;}
.h6_c00464{height:59.736000px;}
.h4_c00464{height:62.880000px;}
.h9_c00464{height:66.024000px;}
.h3_c00464{height:70.422000px;}
.h5_c00464{height:106.896000px;}
.h2_c00464{height:110.040000px;}
.h0_c00464{height:832.125000px;}
.h1_c00464{height:832.500000px;}
.w2_c00464{width:104.875500px;}
.w0_c00464{width:571.875000px;}
.w1_c00464{width:572.250000px;}
.x0_c00464{left:0.000000px;}
.x12_c00464{left:68.400000px;}
.xd_c00464{left:69.900000px;}
.x1_c00464{left:74.700000px;}
.x3_c00464{left:75.900000px;}
.x5_c00464{left:86.100000px;}
.xb_c00464{left:88.800000px;}
.xc_c00464{left:90.750000px;}
.xa_c00464{left:97.200000px;}
.x9_c00464{left:101.250000px;}
.x6_c00464{left:116.550000px;}
.x8_c00464{left:151.200000px;}
.x4_c00464{left:157.950000px;}
.x10_c00464{left:202.200000px;}
.x11_c00464{left:205.500000px;}
.x7_c00464{left:207.000000px;}
.x2_c00464{left:209.400000px;}
.x14_c00464{left:237.751740px;}
.xe_c00464{left:307.800000px;}
.x13_c00464{left:314.250000px;}
.xf_c00464{left:332.700000px;}
@media print{
.v0_c00464{vertical-align:0.000000pt;}
.ls8_c00464{letter-spacing:0.000000pt;}
.ls6_c00464{letter-spacing:0.533333pt;}
.ls2_c00464{letter-spacing:2.293333pt;}
.ls4_c00464{letter-spacing:2.400000pt;}
.lsb_c00464{letter-spacing:2.666667pt;}
.ls5_c00464{letter-spacing:7.016000pt;}
.ls7_c00464{letter-spacing:9.493333pt;}
.ls3_c00464{letter-spacing:10.666667pt;}
.ls1_c00464{letter-spacing:12.800000pt;}
.ls9_c00464{letter-spacing:13.333333pt;}
.lsa_c00464{letter-spacing:26.666667pt;}
.ls0_c00464{letter-spacing:356.320000pt;}
.ws3_c00464{word-spacing:-49.424000pt;}
.ws0_c00464{word-spacing:-26.080000pt;}
.ws7_c00464{word-spacing:-19.621333pt;}
.ws1_c00464{word-spacing:-15.040000pt;}
.ws4_c00464{word-spacing:-14.714667pt;}
.ws6_c00464{word-spacing:-12.746667pt;}
.ws2_c00464{word-spacing:-12.586667pt;}
.ws5_c00464{word-spacing:-11.957333pt;}
.ws8_c00464{word-spacing:0.000000pt;}
._26_c00464{margin-left:-16.341333pt;}
._d_c00464{margin-left:-15.306667pt;}
._22_c00464{margin-left:-11.248000pt;}
._27_c00464{margin-left:-9.912000pt;}
._1a_c00464{margin-left:-7.749333pt;}
._1b_c00464{margin-left:-6.800000pt;}
._10_c00464{margin-left:-5.546667pt;}
._11_c00464{margin-left:-4.000000pt;}
._5_c00464{margin-left:-2.293333pt;}
._b_c00464{margin-left:-1.333333pt;}
._8_c00464{width:1.120000pt;}
._4_c00464{width:2.186667pt;}
._12_c00464{width:3.093333pt;}
._3_c00464{width:4.053333pt;}
._6_c00464{width:5.173333pt;}
._f_c00464{width:6.186667pt;}
._19_c00464{width:7.413333pt;}
._23_c00464{width:8.349333pt;}
._7_c00464{width:9.386667pt;}
._25_c00464{width:10.354667pt;}
._1_c00464{width:11.360000pt;}
._28_c00464{width:12.317333pt;}
._16_c00464{width:13.653333pt;}
._0_c00464{width:15.466667pt;}
._17_c00464{width:17.333333pt;}
._9_c00464{width:19.040000pt;}
._15_c00464{width:20.213333pt;}
._a_c00464{width:21.120000pt;}
._1f_c00464{width:22.720000pt;}
._14_c00464{width:25.226667pt;}
._20_c00464{width:28.800000pt;}
._1e_c00464{width:30.933333pt;}
._1d_c00464{width:32.000000pt;}
._21_c00464{width:33.546667pt;}
._2_c00464{width:43.520000pt;}
._1c_c00464{width:54.261333pt;}
._e_c00464{width:62.240000pt;}
._c_c00464{width:64.053333pt;}
._13_c00464{width:122.240000pt;}
._24_c00464{width:156.682667pt;}
._18_c00464{width:233.493333pt;}
._29_c00464{width:344.480000pt;}
.fs5_c00464{font-size:34.666667pt;}
.fs9_c00464{font-size:42.666667pt;}
.fs6_c00464{font-size:45.333333pt;}
.fs7_c00464{font-size:48.000000pt;}
.fs4_c00464{font-size:50.666667pt;}
.fs1_c00464{font-size:53.333333pt;}
.fs8_c00464{font-size:56.000000pt;}
.fs2_c00464{font-size:58.666667pt;}
.fs3_c00464{font-size:90.666667pt;}
.fs0_c00464{font-size:93.333333pt;}
.y0_c00464{bottom:0.000000pt;}
.y2a_c00464{bottom:2.760000pt;}
.y29_c00464{bottom:6.425204pt;}
.y28_c00464{bottom:29.586667pt;}
.y27_c00464{bottom:47.586667pt;}
.y26_c00464{bottom:64.786667pt;}
.y25_c00464{bottom:80.120000pt;}
.y24_c00464{bottom:96.786667pt;}
.y23_c00464{bottom:112.386667pt;}
.y22_c00464{bottom:129.320000pt;}
.y21_c00464{bottom:145.320000pt;}
.y20_c00464{bottom:161.320000pt;}
.y1f_c00464{bottom:177.320000pt;}
.y1e_c00464{bottom:193.720000pt;}
.y1d_c00464{bottom:214.386667pt;}
.y1c_c00464{bottom:229.986667pt;}
.y1b_c00464{bottom:246.253333pt;}
.y1a_c00464{bottom:268.520000pt;}
.y19_c00464{bottom:283.720000pt;}
.y18_c00464{bottom:300.520000pt;}
.y17_c00464{bottom:316.386667pt;}
.y16_c00464{bottom:332.920000pt;}
.y15_c00464{bottom:348.253333pt;}
.y14_c00464{bottom:364.386667pt;}
.y13_c00464{bottom:380.386667pt;}
.y12_c00464{bottom:396.786667pt;}
.y11_c00464{bottom:412.386667pt;}
.y10_c00464{bottom:428.386667pt;}
.y1_c00464{bottom:430.520000pt;}
.yf_c00464{bottom:444.253333pt;}
.ye_c00464{bottom:459.853333pt;}
.yd_c00464{bottom:490.786667pt;}
.yc_c00464{bottom:507.586667pt;}
.yb_c00464{bottom:524.120000pt;}
.ya_c00464{bottom:540.253333pt;}
.y9_c00464{bottom:557.053333pt;}
.y8_c00464{bottom:578.386667pt;}
.y7_c00464{bottom:622.786667pt;}
.y6_c00464{bottom:639.586667pt;}
.y5_c00464{bottom:656.120000pt;}
.y4_c00464{bottom:672.786667pt;}
.y3_c00464{bottom:688.386667pt;}
.y2_c00464{bottom:704.920000pt;}
.ha_c00464{height:11.733399pt;}
.hb_c00464{height:38.937500pt;}
.h8_c00464{height:50.304000pt;}
.h7_c00464{height:53.058594pt;}
.h6_c00464{height:53.098667pt;}
.h4_c00464{height:55.893333pt;}
.h9_c00464{height:58.688000pt;}
.h3_c00464{height:62.597333pt;}
.h5_c00464{height:95.018667pt;}
.h2_c00464{height:97.813333pt;}
.h0_c00464{height:739.666667pt;}
.h1_c00464{height:740.000000pt;}
.w2_c00464{width:93.222667pt;}
.w0_c00464{width:508.333333pt;}
.w1_c00464{width:508.666667pt;}
.x0_c00464{left:0.000000pt;}
.x12_c00464{left:60.800000pt;}
.xd_c00464{left:62.133333pt;}
.x1_c00464{left:66.400000pt;}
.x3_c00464{left:67.466667pt;}
.x5_c00464{left:76.533333pt;}
.xb_c00464{left:78.933333pt;}
.xc_c00464{left:80.666667pt;}
.xa_c00464{left:86.400000pt;}
.x9_c00464{left:90.000000pt;}
.x6_c00464{left:103.600000pt;}
.x8_c00464{left:134.400000pt;}
.x4_c00464{left:140.400000pt;}
.x10_c00464{left:179.733333pt;}
.x11_c00464{left:182.666667pt;}
.x7_c00464{left:184.000000pt;}
.x2_c00464{left:186.133333pt;}
.x14_c00464{left:211.334880pt;}
.xe_c00464{left:273.600000pt;}
.x13_c00464{left:279.333333pt;}
.xf_c00464{left:295.733333pt;}
}





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

.ir_c00465:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00465{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00465;src:url('chunks/assets/font_a18c7d6e53738b6a666b02b0.woff2')format("woff");}.ff1_c00465{font-family:ff1_c00465;line-height:1.437000;font-style:normal;font-weight:normal;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_dfb4d36c20ee4844061f5f04.woff2')format("woff");}.ff2_c00465{font-family:ff2_c00465;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00465;src:url('chunks/assets/font_5f38319bd8a78d0cc437df5c.woff2')format("woff");}.ff3_c00465{font-family:ff3_c00465;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00465;src:url('chunks/assets/font_72eb2c61c550c8ed6d743b18.woff2')format("woff");}.ff4_c00465{font-family:ff4_c00465;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00465;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff5_c00465{font-family:ff5_c00465;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00465{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00465{vertical-align:-61.800000px;}
.v0_c00465{vertical-align:0.000000px;}
.ls0_c00465{letter-spacing:0.000000px;}
.ls1_c00465{letter-spacing:3.000000px;}
.sc__c00465{text-shadow:none;}
.sc0_c00465{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00465{-webkit-text-stroke:0px transparent;}
.sc0_c00465{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00465{word-spacing:-22.074000px;}
.ws1_c00465{word-spacing:-17.307000px;}
.ws2_c00465{word-spacing:-14.340000px;}
.ws3_c00465{word-spacing:-14.160000px;}
.ws4_c00465{word-spacing:0.000000px;}
._21_c00465{margin-left:-18.960000px;}
._12_c00465{margin-left:-15.000000px;}
._1f_c00465{margin-left:-13.200000px;}
._1a_c00465{margin-left:-11.160000px;}
._b_c00465{margin-left:-7.440000px;}
._7_c00465{margin-left:-5.760000px;}
._e_c00465{margin-left:-4.260000px;}
._a_c00465{margin-left:-3.120000px;}
._6_c00465{margin-left:-1.560000px;}
._8_c00465{width:1.320000px;}
._9_c00465{width:3.000000px;}
._d_c00465{width:4.020000px;}
._c_c00465{width:5.220000px;}
._19_c00465{width:6.300000px;}
._2_c00465{width:7.680000px;}
._3_c00465{width:9.180000px;}
._0_c00465{width:10.980000px;}
._4_c00465{width:12.000000px;}
._1c_c00465{width:13.200000px;}
._18_c00465{width:15.660000px;}
._16_c00465{width:18.180000px;}
._1b_c00465{width:29.580000px;}
._20_c00465{width:33.060000px;}
._5_c00465{width:34.260000px;}
._17_c00465{width:54.060000px;}
._1d_c00465{width:72.360000px;}
._1e_c00465{width:82.380000px;}
._11_c00465{width:92.220000px;}
._10_c00465{width:119.640000px;}
._1_c00465{width:209.820000px;}
._14_c00465{width:214.980000px;}
._15_c00465{width:220.260000px;}
._13_c00465{width:252.660000px;}
._f_c00465{width:260.580000px;}
._22_c00465{width:1041.900000px;}
.fc2_c00465{color:transparent;}
.fc1_c00465{color:rgb(128,128,128);}
.fc0_c00465{color:rgb(0,0,0);}
.fs3_c00465{font-size:48.000000px;}
.fs2_c00465{font-size:57.000000px;}
.fs0_c00465{font-size:60.000000px;}
.fs1_c00465{font-size:66.000000px;}
.y0_c00465{bottom:0.000000px;}
.y2c_c00465{bottom:3.105000px;}
.y2b_c00465{bottom:7.228363px;}
.y2a_c00465{bottom:52.350000px;}
.y29_c00465{bottom:72.300000px;}
.y28_c00465{bottom:90.900000px;}
.y27_c00465{bottom:109.650000px;}
.y26_c00465{bottom:127.350000px;}
.y25_c00465{bottom:146.250000px;}
.y24_c00465{bottom:164.100000px;}
.y23_c00465{bottom:183.900000px;}
.y22_c00465{bottom:201.600000px;}
.y21_c00465{bottom:219.000000px;}
.y20_c00465{bottom:236.550000px;}
.y1f_c00465{bottom:256.800000px;}
.y1e_c00465{bottom:273.750000px;}
.y1d_c00465{bottom:291.300000px;}
.y1c_c00465{bottom:309.150000px;}
.y1b_c00465{bottom:327.150000px;}
.y1a_c00465{bottom:344.700000px;}
.y19_c00465{bottom:363.900000px;}
.y18_c00465{bottom:381.750000px;}
.y17_c00465{bottom:399.600000px;}
.y16_c00465{bottom:418.200000px;}
.y15_c00465{bottom:436.050000px;}
.y14_c00465{bottom:454.500000px;}
.y13_c00465{bottom:472.500000px;}
.y12_c00465{bottom:490.500000px;}
.y11_c00465{bottom:507.600000px;}
.y10_c00465{bottom:527.250000px;}
.yf_c00465{bottom:544.800000px;}
.ye_c00465{bottom:562.650000px;}
.yd_c00465{bottom:581.100000px;}
.yc_c00465{bottom:599.100000px;}
.yb_c00465{bottom:617.250000px;}
.ya_c00465{bottom:635.250000px;}
.y9_c00465{bottom:653.100000px;}
.y8_c00465{bottom:671.850000px;}
.y7_c00465{bottom:690.450000px;}
.y6_c00465{bottom:708.450000px;}
.y5_c00465{bottom:726.900000px;}
.y4_c00465{bottom:744.900000px;}
.y3_c00465{bottom:763.350000px;}
.y2_c00465{bottom:781.350000px;}
.y1_c00465{bottom:801.900000px;}
.h4_c00465{height:13.200074px;}
.h5_c00465{height:43.804688px;}
.h2_c00465{height:62.880000px;}
.h3_c00465{height:70.422000px;}
.h1_c00465{height:842.250000px;}
.h0_c00465{height:842.400000px;}
.w2_c00465{width:104.875500px;}
.w1_c00465{width:579.750000px;}
.w0_c00465{width:579.975000px;}
.x0_c00465{left:0.000000px;}
.x5_c00465{left:28.950000px;}
.x4_c00465{left:30.750000px;}
.x8_c00465{left:34.500000px;}
.x7_c00465{left:35.850000px;}
.xb_c00465{left:88.500000px;}
.x1_c00465{left:94.050000px;}
.x3_c00465{left:95.100000px;}
.x6_c00465{left:96.150000px;}
.x2_c00465{left:97.200000px;}
.x9_c00465{left:99.900000px;}
.xa_c00465{left:102.000000px;}
.xc_c00465{left:103.950000px;}
.xd_c00465{left:105.600000px;}
.xe_c00465{left:106.650000px;}
.xf_c00465{left:124.500000px;}
.x10_c00465{left:241.801758px;}
@media print{
.v1_c00465{vertical-align:-54.933333pt;}
.v0_c00465{vertical-align:0.000000pt;}
.ls0_c00465{letter-spacing:0.000000pt;}
.ls1_c00465{letter-spacing:2.666667pt;}
.ws0_c00465{word-spacing:-19.621333pt;}
.ws1_c00465{word-spacing:-15.384000pt;}
.ws2_c00465{word-spacing:-12.746667pt;}
.ws3_c00465{word-spacing:-12.586667pt;}
.ws4_c00465{word-spacing:0.000000pt;}
._21_c00465{margin-left:-16.853333pt;}
._12_c00465{margin-left:-13.333333pt;}
._1f_c00465{margin-left:-11.733333pt;}
._1a_c00465{margin-left:-9.920000pt;}
._b_c00465{margin-left:-6.613333pt;}
._7_c00465{margin-left:-5.120000pt;}
._e_c00465{margin-left:-3.786667pt;}
._a_c00465{margin-left:-2.773333pt;}
._6_c00465{margin-left:-1.386667pt;}
._8_c00465{width:1.173333pt;}
._9_c00465{width:2.666667pt;}
._d_c00465{width:3.573333pt;}
._c_c00465{width:4.640000pt;}
._19_c00465{width:5.600000pt;}
._2_c00465{width:6.826667pt;}
._3_c00465{width:8.160000pt;}
._0_c00465{width:9.760000pt;}
._4_c00465{width:10.666667pt;}
._1c_c00465{width:11.733333pt;}
._18_c00465{width:13.920000pt;}
._16_c00465{width:16.160000pt;}
._1b_c00465{width:26.293333pt;}
._20_c00465{width:29.386667pt;}
._5_c00465{width:30.453333pt;}
._17_c00465{width:48.053333pt;}
._1d_c00465{width:64.320000pt;}
._1e_c00465{width:73.226667pt;}
._11_c00465{width:81.973333pt;}
._10_c00465{width:106.346667pt;}
._1_c00465{width:186.506667pt;}
._14_c00465{width:191.093333pt;}
._15_c00465{width:195.786667pt;}
._13_c00465{width:224.586667pt;}
._f_c00465{width:231.626667pt;}
._22_c00465{width:926.133333pt;}
.fs3_c00465{font-size:42.666667pt;}
.fs2_c00465{font-size:50.666667pt;}
.fs0_c00465{font-size:53.333333pt;}
.fs1_c00465{font-size:58.666667pt;}
.y0_c00465{bottom:0.000000pt;}
.y2c_c00465{bottom:2.760000pt;}
.y2b_c00465{bottom:6.425212pt;}
.y2a_c00465{bottom:46.533333pt;}
.y29_c00465{bottom:64.266667pt;}
.y28_c00465{bottom:80.800000pt;}
.y27_c00465{bottom:97.466667pt;}
.y26_c00465{bottom:113.200000pt;}
.y25_c00465{bottom:130.000000pt;}
.y24_c00465{bottom:145.866667pt;}
.y23_c00465{bottom:163.466667pt;}
.y22_c00465{bottom:179.200000pt;}
.y21_c00465{bottom:194.666667pt;}
.y20_c00465{bottom:210.266667pt;}
.y1f_c00465{bottom:228.266667pt;}
.y1e_c00465{bottom:243.333333pt;}
.y1d_c00465{bottom:258.933333pt;}
.y1c_c00465{bottom:274.800000pt;}
.y1b_c00465{bottom:290.800000pt;}
.y1a_c00465{bottom:306.400000pt;}
.y19_c00465{bottom:323.466667pt;}
.y18_c00465{bottom:339.333333pt;}
.y17_c00465{bottom:355.200000pt;}
.y16_c00465{bottom:371.733333pt;}
.y15_c00465{bottom:387.600000pt;}
.y14_c00465{bottom:404.000000pt;}
.y13_c00465{bottom:420.000000pt;}
.y12_c00465{bottom:436.000000pt;}
.y11_c00465{bottom:451.200000pt;}
.y10_c00465{bottom:468.666667pt;}
.yf_c00465{bottom:484.266667pt;}
.ye_c00465{bottom:500.133333pt;}
.yd_c00465{bottom:516.533333pt;}
.yc_c00465{bottom:532.533333pt;}
.yb_c00465{bottom:548.666667pt;}
.ya_c00465{bottom:564.666667pt;}
.y9_c00465{bottom:580.533333pt;}
.y8_c00465{bottom:597.200000pt;}
.y7_c00465{bottom:613.733333pt;}
.y6_c00465{bottom:629.733333pt;}
.y5_c00465{bottom:646.133333pt;}
.y4_c00465{bottom:662.133333pt;}
.y3_c00465{bottom:678.533333pt;}
.y2_c00465{bottom:694.533333pt;}
.y1_c00465{bottom:712.800000pt;}
.h4_c00465{height:11.733399pt;}
.h5_c00465{height:38.937500pt;}
.h2_c00465{height:55.893333pt;}
.h3_c00465{height:62.597333pt;}
.h1_c00465{height:748.666667pt;}
.h0_c00465{height:748.800000pt;}
.w2_c00465{width:93.222667pt;}
.w1_c00465{width:515.333333pt;}
.w0_c00465{width:515.533333pt;}
.x0_c00465{left:0.000000pt;}
.x5_c00465{left:25.733333pt;}
.x4_c00465{left:27.333333pt;}
.x8_c00465{left:30.666667pt;}
.x7_c00465{left:31.866667pt;}
.xb_c00465{left:78.666667pt;}
.x1_c00465{left:83.600000pt;}
.x3_c00465{left:84.533333pt;}
.x6_c00465{left:85.466667pt;}
.x2_c00465{left:86.400000pt;}
.x9_c00465{left:88.800000pt;}
.xa_c00465{left:90.666667pt;}
.xc_c00465{left:92.400000pt;}
.xd_c00465{left:93.866667pt;}
.xe_c00465{left:94.800000pt;}
.xf_c00465{left:110.666667pt;}
.x10_c00465{left:214.934896pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_0ace96dacbd008da19b76d21.woff2')format("woff");}.ff1_c00466{font-family:ff1_c00466;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00466;src:url('chunks/assets/font_22d14181850ad5451d34ccb2.woff2')format("woff");}.ff2_c00466{font-family:ff2_c00466;line-height:1.575000;font-style:normal;font-weight:normal;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_909c580e128294e7f1fcefeb.woff2')format("woff");}.ff3_c00466{font-family:ff3_c00466;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00466;src:url('chunks/assets/font_7cf3bbffb5aeb8a274d33611.woff2')format("woff");}.ff4_c00466{font-family:ff4_c00466;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00466;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff5_c00466{font-family:ff5_c00466;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00466{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00466{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.v0_c00466{vertical-align:0.000000px;}
.v1_c00466{vertical-align:57.000000px;}
.ls4_c00466{letter-spacing:0.000000px;}
.ls5_c00466{letter-spacing:3.000000px;}
.ls3_c00466{letter-spacing:4.680000px;}
.ls1_c00466{letter-spacing:4.800000px;}
.ls0_c00466{letter-spacing:6.336000px;}
.ls2_c00466{letter-spacing:8.460000px;}
.sc__c00466{text-shadow:none;}
.sc0_c00466{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00466{-webkit-text-stroke:0px transparent;}
.sc0_c00466{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00466{word-spacing:-19.500000px;}
.ws0_c00466{word-spacing:-17.250000px;}
.ws2_c00466{word-spacing:0.000000px;}
._1c_c00466{margin-left:-19.707000px;}
._25_c00466{margin-left:-18.276000px;}
._16_c00466{margin-left:-16.758000px;}
._b_c00466{margin-left:-10.608000px;}
._20_c00466{margin-left:-9.420000px;}
._12_c00466{margin-left:-7.221000px;}
._27_c00466{margin-left:-6.120000px;}
._7_c00466{margin-left:-4.824000px;}
._1_c00466{margin-left:-3.180000px;}
._0_c00466{margin-left:-2.100000px;}
._9_c00466{margin-left:-1.080000px;}
._3_c00466{width:1.200000px;}
._2_c00466{width:2.220000px;}
._4_c00466{width:3.900000px;}
._6_c00466{width:5.160000px;}
._1b_c00466{width:6.306000px;}
._a_c00466{width:7.428000px;}
._8_c00466{width:8.619000px;}
._e_c00466{width:9.702000px;}
._c_c00466{width:10.806000px;}
._10_c00466{width:11.913000px;}
._f_c00466{width:13.224000px;}
._1f_c00466{width:14.268000px;}
._21_c00466{width:15.594000px;}
._23_c00466{width:16.758000px;}
._5_c00466{width:17.940000px;}
._26_c00466{width:19.440000px;}
._11_c00466{width:20.463000px;}
._19_c00466{width:21.630000px;}
._d_c00466{width:22.953000px;}
._13_c00466{width:25.788000px;}
._24_c00466{width:27.582000px;}
._1d_c00466{width:28.623000px;}
._1a_c00466{width:29.727000px;}
._18_c00466{width:32.613000px;}
._17_c00466{width:34.749000px;}
._14_c00466{width:35.772000px;}
._22_c00466{width:36.960000px;}
._1e_c00466{width:38.397000px;}
._15_c00466{width:51.525000px;}
._28_c00466{width:239.901000px;}
.fc2_c00466{color:transparent;}
.fc1_c00466{color:rgb(128,128,128);}
.fc0_c00466{color:rgb(0,0,0);}
.fs6_c00466{font-size:48.000000px;}
.fs1_c00466{font-size:57.000000px;}
.fs0_c00466{font-size:60.000000px;}
.fs4_c00466{font-size:63.000000px;}
.fs5_c00466{font-size:66.000000px;}
.fs2_c00466{font-size:69.000000px;}
.fs3_c00466{font-size:144.000000px;}
.y0_c00466{bottom:0.000000px;}
.y4d_c00466{bottom:3.105000px;}
.y4c_c00466{bottom:7.228363px;}
.y4b_c00466{bottom:42.450000px;}
.y27_c00466{bottom:61.350000px;}
.y26_c00466{bottom:79.200000px;}
.y4a_c00466{bottom:79.650000px;}
.y49_c00466{bottom:98.100000px;}
.y25_c00466{bottom:98.250000px;}
.y48_c00466{bottom:116.100000px;}
.y24_c00466{bottom:116.400000px;}
.y47_c00466{bottom:134.550000px;}
.y23_c00466{bottom:134.700000px;}
.y46_c00466{bottom:152.850000px;}
.y22_c00466{bottom:153.150000px;}
.y45_c00466{bottom:171.000000px;}
.y21_c00466{bottom:171.750000px;}
.y44_c00466{bottom:188.700000px;}
.y20_c00466{bottom:189.300000px;}
.y43_c00466{bottom:206.550000px;}
.y1f_c00466{bottom:207.900000px;}
.y42_c00466{bottom:225.000000px;}
.y1e_c00466{bottom:225.750000px;}
.y41_c00466{bottom:243.300000px;}
.y1d_c00466{bottom:243.600000px;}
.y40_c00466{bottom:261.450000px;}
.y1c_c00466{bottom:261.900000px;}
.y3f_c00466{bottom:279.150000px;}
.y1b_c00466{bottom:280.350000px;}
.y3e_c00466{bottom:297.000000px;}
.y1a_c00466{bottom:297.600000px;}
.y19_c00466{bottom:315.450000px;}
.y3d_c00466{bottom:315.900000px;}
.y18_c00466{bottom:333.150000px;}
.y3c_c00466{bottom:333.450000px;}
.y17_c00466{bottom:351.300000px;}
.y3b_c00466{bottom:351.900000px;}
.y16_c00466{bottom:369.450000px;}
.y3a_c00466{bottom:370.200000px;}
.y15_c00466{bottom:387.000000px;}
.y39_c00466{bottom:388.500000px;}
.y14_c00466{bottom:405.300000px;}
.y38_c00466{bottom:406.650000px;}
.y13_c00466{bottom:422.850000px;}
.y37_c00466{bottom:424.500000px;}
.y12_c00466{bottom:441.150000px;}
.y36_c00466{bottom:442.350000px;}
.y11_c00466{bottom:458.700000px;}
.y35_c00466{bottom:460.350000px;}
.y10_c00466{bottom:477.450000px;}
.y34_c00466{bottom:478.500000px;}
.yf_c00466{bottom:495.450000px;}
.y33_c00466{bottom:496.500000px;}
.ye_c00466{bottom:512.700000px;}
.y32_c00466{bottom:514.350000px;}
.yd_c00466{bottom:530.100000px;}
.y31_c00466{bottom:532.500000px;}
.yc_c00466{bottom:547.500000px;}
.y30_c00466{bottom:549.750000px;}
.yb_c00466{bottom:565.650000px;}
.y2f_c00466{bottom:568.350000px;}
.ya_c00466{bottom:584.100000px;}
.y2e_c00466{bottom:586.500000px;}
.y9_c00466{bottom:602.100000px;}
.y2d_c00466{bottom:604.500000px;}
.y8_c00466{bottom:619.950000px;}
.y2c_c00466{bottom:622.650000px;}
.y7_c00466{bottom:638.250000px;}
.y2b_c00466{bottom:640.800000px;}
.y6_c00466{bottom:656.550000px;}
.y2a_c00466{bottom:659.100000px;}
.y5_c00466{bottom:674.400000px;}
.y29_c00466{bottom:677.700000px;}
.y4_c00466{bottom:678.000000px;}
.y28_c00466{bottom:695.550000px;}
.y3_c00466{bottom:727.950000px;}
.y2_c00466{bottom:748.200000px;}
.y1_c00466{bottom:766.800000px;}
.h6_c00466{height:13.200074px;}
.h7_c00466{height:43.804688px;}
.h1_c00466{height:62.880000px;}
.h4_c00466{height:66.024000px;}
.h5_c00466{height:70.422000px;}
.h2_c00466{height:73.623000px;}
.h3_c00466{height:153.648000px;}
.h0_c00466{height:843.750000px;}
.w2_c00466{width:104.875500px;}
.w1_c00466{width:579.750000px;}
.w0_c00466{width:579.975000px;}
.x0_c00466{left:0.000000px;}
.xe_c00466{left:66.750000px;}
.x7_c00466{left:68.400000px;}
.xf_c00466{left:73.950000px;}
.xd_c00466{left:75.150000px;}
.xc_c00466{left:76.200000px;}
.xb_c00466{left:77.550000px;}
.xa_c00466{left:78.600000px;}
.x9_c00466{left:80.550000px;}
.x8_c00466{left:81.600000px;}
.x1_c00466{left:82.950000px;}
.x5_c00466{left:85.050000px;}
.x2_c00466{left:102.150000px;}
.x6_c00466{left:105.000000px;}
.x18_c00466{left:241.801758px;}
.x3_c00466{left:285.900000px;}
.x14_c00466{left:289.650000px;}
.x16_c00466{left:290.700000px;}
.x15_c00466{left:291.900000px;}
.x13_c00466{left:294.300000px;}
.x12_c00466{left:295.350000px;}
.x10_c00466{left:296.550000px;}
.x11_c00466{left:297.900000px;}
.x4_c00466{left:302.400000px;}
.x17_c00466{left:365.550000px;}
@media print{
.v0_c00466{vertical-align:0.000000pt;}
.v1_c00466{vertical-align:50.666667pt;}
.ls4_c00466{letter-spacing:0.000000pt;}
.ls5_c00466{letter-spacing:2.666667pt;}
.ls3_c00466{letter-spacing:4.160000pt;}
.ls1_c00466{letter-spacing:4.266667pt;}
.ls0_c00466{letter-spacing:5.632000pt;}
.ls2_c00466{letter-spacing:7.520000pt;}
.ws1_c00466{word-spacing:-17.333333pt;}
.ws0_c00466{word-spacing:-15.333333pt;}
.ws2_c00466{word-spacing:0.000000pt;}
._1c_c00466{margin-left:-17.517333pt;}
._25_c00466{margin-left:-16.245333pt;}
._16_c00466{margin-left:-14.896000pt;}
._b_c00466{margin-left:-9.429333pt;}
._20_c00466{margin-left:-8.373333pt;}
._12_c00466{margin-left:-6.418667pt;}
._27_c00466{margin-left:-5.440000pt;}
._7_c00466{margin-left:-4.288000pt;}
._1_c00466{margin-left:-2.826667pt;}
._0_c00466{margin-left:-1.866667pt;}
._9_c00466{margin-left:-0.960000pt;}
._3_c00466{width:1.066667pt;}
._2_c00466{width:1.973333pt;}
._4_c00466{width:3.466667pt;}
._6_c00466{width:4.586667pt;}
._1b_c00466{width:5.605333pt;}
._a_c00466{width:6.602667pt;}
._8_c00466{width:7.661333pt;}
._e_c00466{width:8.624000pt;}
._c_c00466{width:9.605333pt;}
._10_c00466{width:10.589333pt;}
._f_c00466{width:11.754667pt;}
._1f_c00466{width:12.682667pt;}
._21_c00466{width:13.861333pt;}
._23_c00466{width:14.896000pt;}
._5_c00466{width:15.946667pt;}
._26_c00466{width:17.280000pt;}
._11_c00466{width:18.189333pt;}
._19_c00466{width:19.226667pt;}
._d_c00466{width:20.402667pt;}
._13_c00466{width:22.922667pt;}
._24_c00466{width:24.517333pt;}
._1d_c00466{width:25.442667pt;}
._1a_c00466{width:26.424000pt;}
._18_c00466{width:28.989333pt;}
._17_c00466{width:30.888000pt;}
._14_c00466{width:31.797333pt;}
._22_c00466{width:32.853333pt;}
._1e_c00466{width:34.130667pt;}
._15_c00466{width:45.800000pt;}
._28_c00466{width:213.245333pt;}
.fs6_c00466{font-size:42.666667pt;}
.fs1_c00466{font-size:50.666667pt;}
.fs0_c00466{font-size:53.333333pt;}
.fs4_c00466{font-size:56.000000pt;}
.fs5_c00466{font-size:58.666667pt;}
.fs2_c00466{font-size:61.333333pt;}
.fs3_c00466{font-size:128.000000pt;}
.y0_c00466{bottom:0.000000pt;}
.y4d_c00466{bottom:2.760000pt;}
.y4c_c00466{bottom:6.425212pt;}
.y4b_c00466{bottom:37.733333pt;}
.y27_c00466{bottom:54.533333pt;}
.y26_c00466{bottom:70.400000pt;}
.y4a_c00466{bottom:70.800000pt;}
.y49_c00466{bottom:87.200000pt;}
.y25_c00466{bottom:87.333333pt;}
.y48_c00466{bottom:103.200000pt;}
.y24_c00466{bottom:103.466667pt;}
.y47_c00466{bottom:119.600000pt;}
.y23_c00466{bottom:119.733333pt;}
.y46_c00466{bottom:135.866667pt;}
.y22_c00466{bottom:136.133333pt;}
.y45_c00466{bottom:152.000000pt;}
.y21_c00466{bottom:152.666667pt;}
.y44_c00466{bottom:167.733333pt;}
.y20_c00466{bottom:168.266667pt;}
.y43_c00466{bottom:183.600000pt;}
.y1f_c00466{bottom:184.800000pt;}
.y42_c00466{bottom:200.000000pt;}
.y1e_c00466{bottom:200.666667pt;}
.y41_c00466{bottom:216.266667pt;}
.y1d_c00466{bottom:216.533333pt;}
.y40_c00466{bottom:232.400000pt;}
.y1c_c00466{bottom:232.800000pt;}
.y3f_c00466{bottom:248.133333pt;}
.y1b_c00466{bottom:249.200000pt;}
.y3e_c00466{bottom:264.000000pt;}
.y1a_c00466{bottom:264.533333pt;}
.y19_c00466{bottom:280.400000pt;}
.y3d_c00466{bottom:280.800000pt;}
.y18_c00466{bottom:296.133333pt;}
.y3c_c00466{bottom:296.400000pt;}
.y17_c00466{bottom:312.266667pt;}
.y3b_c00466{bottom:312.800000pt;}
.y16_c00466{bottom:328.400000pt;}
.y3a_c00466{bottom:329.066667pt;}
.y15_c00466{bottom:344.000000pt;}
.y39_c00466{bottom:345.333333pt;}
.y14_c00466{bottom:360.266667pt;}
.y38_c00466{bottom:361.466667pt;}
.y13_c00466{bottom:375.866667pt;}
.y37_c00466{bottom:377.333333pt;}
.y12_c00466{bottom:392.133333pt;}
.y36_c00466{bottom:393.200000pt;}
.y11_c00466{bottom:407.733333pt;}
.y35_c00466{bottom:409.200000pt;}
.y10_c00466{bottom:424.400000pt;}
.y34_c00466{bottom:425.333333pt;}
.yf_c00466{bottom:440.400000pt;}
.y33_c00466{bottom:441.333333pt;}
.ye_c00466{bottom:455.733333pt;}
.y32_c00466{bottom:457.200000pt;}
.yd_c00466{bottom:471.200000pt;}
.y31_c00466{bottom:473.333333pt;}
.yc_c00466{bottom:486.666667pt;}
.y30_c00466{bottom:488.666667pt;}
.yb_c00466{bottom:502.800000pt;}
.y2f_c00466{bottom:505.200000pt;}
.ya_c00466{bottom:519.200000pt;}
.y2e_c00466{bottom:521.333333pt;}
.y9_c00466{bottom:535.200000pt;}
.y2d_c00466{bottom:537.333333pt;}
.y8_c00466{bottom:551.066667pt;}
.y2c_c00466{bottom:553.466667pt;}
.y7_c00466{bottom:567.333333pt;}
.y2b_c00466{bottom:569.600000pt;}
.y6_c00466{bottom:583.600000pt;}
.y2a_c00466{bottom:585.866667pt;}
.y5_c00466{bottom:599.466667pt;}
.y29_c00466{bottom:602.400000pt;}
.y4_c00466{bottom:602.666667pt;}
.y28_c00466{bottom:618.266667pt;}
.y3_c00466{bottom:647.066667pt;}
.y2_c00466{bottom:665.066667pt;}
.y1_c00466{bottom:681.600000pt;}
.h6_c00466{height:11.733399pt;}
.h7_c00466{height:38.937500pt;}
.h1_c00466{height:55.893333pt;}
.h4_c00466{height:58.688000pt;}
.h5_c00466{height:62.597333pt;}
.h2_c00466{height:65.442667pt;}
.h3_c00466{height:136.576000pt;}
.h0_c00466{height:750.000000pt;}
.w2_c00466{width:93.222667pt;}
.w1_c00466{width:515.333333pt;}
.w0_c00466{width:515.533333pt;}
.x0_c00466{left:0.000000pt;}
.xe_c00466{left:59.333333pt;}
.x7_c00466{left:60.800000pt;}
.xf_c00466{left:65.733333pt;}
.xd_c00466{left:66.800000pt;}
.xc_c00466{left:67.733333pt;}
.xb_c00466{left:68.933333pt;}
.xa_c00466{left:69.866667pt;}
.x9_c00466{left:71.600000pt;}
.x8_c00466{left:72.533333pt;}
.x1_c00466{left:73.733333pt;}
.x5_c00466{left:75.600000pt;}
.x2_c00466{left:90.800000pt;}
.x6_c00466{left:93.333333pt;}
.x18_c00466{left:214.934896pt;}
.x3_c00466{left:254.133333pt;}
.x14_c00466{left:257.466667pt;}
.x16_c00466{left:258.400000pt;}
.x15_c00466{left:259.466667pt;}
.x13_c00466{left:261.600000pt;}
.x12_c00466{left:262.533333pt;}
.x10_c00466{left:263.600000pt;}
.x11_c00466{left:264.800000pt;}
.x4_c00466{left:268.800000pt;}
.x17_c00466{left:324.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_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_c3f4cbffdba084361ad762cc.woff2')format("woff");}.ff1_c00467{font-family:ff1_c00467;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00467;src:url('chunks/assets/font_059ab0baa53c798c358fc6a1.woff2')format("woff");}.ff2_c00467{font-family:ff2_c00467;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00467;src:url('chunks/assets/font_12b02cda85aad5e3d7961454.woff2')format("woff");}.ff3_c00467{font-family:ff3_c00467;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00467;src:url('chunks/assets/font_e61527a7386930684a7e8b07.woff2')format("woff");}.ff4_c00467{font-family:ff4_c00467;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00467;src:url('chunks/assets/font_c929b770e422e3879157e280.woff2')format("woff");}.ff5_c00467{font-family:ff5_c00467;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00467;src:url('chunks/assets/font_cee3bb0d481b67caf3999286.woff2')format("woff");}.ff6_c00467{font-family:ff6_c00467;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00467;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff7_c00467{font-family:ff7_c00467;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00467{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00467{vertical-align:0.000000px;}
.v1_c00467{vertical-align:72.000000px;}
.ls3_c00467{letter-spacing:-9.000000px;}
.ls1_c00467{letter-spacing:0.000000px;}
.ls0_c00467{letter-spacing:0.444000px;}
.ls2_c00467{letter-spacing:3.000000px;}
.ls5_c00467{letter-spacing:6.000000px;}
.ls4_c00467{letter-spacing:12.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;}
}
.ws5_c00467{word-spacing:-22.500000px;}
.ws1_c00467{word-spacing:-19.500000px;}
.ws6_c00467{word-spacing:-15.813000px;}
.ws0_c00467{word-spacing:-14.340000px;}
.ws4_c00467{word-spacing:-14.160000px;}
.ws3_c00467{word-spacing:-8.106000px;}
.ws2_c00467{word-spacing:-7.500000px;}
.ws7_c00467{word-spacing:0.000000px;}
._24_c00467{margin-left:-30.168000px;}
._23_c00467{margin-left:-24.024000px;}
._22_c00467{margin-left:-17.568000px;}
._1c_c00467{margin-left:-14.697000px;}
._20_c00467{margin-left:-12.162000px;}
._1e_c00467{margin-left:-10.395000px;}
._21_c00467{margin-left:-8.580000px;}
._19_c00467{margin-left:-6.999000px;}
._13_c00467{margin-left:-5.940000px;}
._1d_c00467{margin-left:-4.731000px;}
._f_c00467{margin-left:-3.237000px;}
._9_c00467{margin-left:-1.440000px;}
._a_c00467{width:1.599000px;}
._8_c00467{width:2.700000px;}
._c_c00467{width:3.801000px;}
._7_c00467{width:5.481000px;}
._10_c00467{width:6.975000px;}
._2_c00467{width:8.064000px;}
._3_c00467{width:9.324000px;}
._0_c00467{width:10.962000px;}
._6_c00467{width:12.096000px;}
._4_c00467{width:13.734000px;}
._11_c00467{width:15.648000px;}
._e_c00467{width:16.809000px;}
._14_c00467{width:17.880000px;}
._1a_c00467{width:18.903000px;}
._1b_c00467{width:19.965000px;}
._12_c00467{width:21.780000px;}
._d_c00467{width:23.880000px;}
._15_c00467{width:25.956000px;}
._b_c00467{width:26.964000px;}
._1f_c00467{width:28.581000px;}
._5_c00467{width:29.988000px;}
._16_c00467{width:32.463000px;}
._17_c00467{width:35.979000px;}
._18_c00467{width:37.545000px;}
._25_c00467{width:39.438000px;}
._1_c00467{width:203.994000px;}
._26_c00467{width:275.631000px;}
.fc2_c00467{color:transparent;}
.fc1_c00467{color:rgb(128,128,128);}
.fc0_c00467{color:rgb(0,0,0);}
.fs5_c00467{font-size:48.000000px;}
.fs1_c00467{font-size:60.000000px;}
.fs0_c00467{font-size:63.000000px;}
.fs2_c00467{font-size:66.000000px;}
.fs4_c00467{font-size:72.000000px;}
.fs3_c00467{font-size:156.000000px;}
.y0_c00467{bottom:0.000000px;}
.y52_c00467{bottom:3.105000px;}
.y51_c00467{bottom:7.228371px;}
.y50_c00467{bottom:46.215000px;}
.y4f_c00467{bottom:65.115000px;}
.y29_c00467{bottom:78.315000px;}
.y4e_c00467{bottom:83.415000px;}
.y28_c00467{bottom:100.215000px;}
.y4d_c00467{bottom:102.315000px;}
.y27_c00467{bottom:118.215000px;}
.y4c_c00467{bottom:120.615000px;}
.y26_c00467{bottom:136.665000px;}
.y4b_c00467{bottom:138.765000px;}
.y25_c00467{bottom:154.965000px;}
.y4a_c00467{bottom:156.915000px;}
.y24_c00467{bottom:173.265000px;}
.y49_c00467{bottom:175.515000px;}
.y23_c00467{bottom:191.415000px;}
.y48_c00467{bottom:194.115000px;}
.y22_c00467{bottom:209.565000px;}
.y47_c00467{bottom:211.965000px;}
.y21_c00467{bottom:227.865000px;}
.y46_c00467{bottom:229.965000px;}
.y20_c00467{bottom:246.165000px;}
.y45_c00467{bottom:249.165000px;}
.y1f_c00467{bottom:264.315000px;}
.y44_c00467{bottom:267.015000px;}
.y1e_c00467{bottom:282.465000px;}
.y43_c00467{bottom:285.165000px;}
.y1d_c00467{bottom:300.165000px;}
.y42_c00467{bottom:302.865000px;}
.y1c_c00467{bottom:318.015000px;}
.y41_c00467{bottom:320.415000px;}
.y1b_c00467{bottom:336.465000px;}
.y40_c00467{bottom:339.165000px;}
.y1a_c00467{bottom:354.765000px;}
.y3f_c00467{bottom:357.165000px;}
.y19_c00467{bottom:372.915000px;}
.y3e_c00467{bottom:375.315000px;}
.y18_c00467{bottom:390.915000px;}
.y3d_c00467{bottom:393.615000px;}
.y17_c00467{bottom:409.065000px;}
.y3c_c00467{bottom:411.465000px;}
.y16_c00467{bottom:427.065000px;}
.y3b_c00467{bottom:429.615000px;}
.y15_c00467{bottom:444.915000px;}
.y3a_c00467{bottom:448.215000px;}
.y14_c00467{bottom:463.365000px;}
.y39_c00467{bottom:466.065000px;}
.y13_c00467{bottom:481.365000px;}
.y38_c00467{bottom:484.365000px;}
.y12_c00467{bottom:499.515000px;}
.y37_c00467{bottom:502.515000px;}
.y11_c00467{bottom:517.515000px;}
.y36_c00467{bottom:520.515000px;}
.y10_c00467{bottom:535.665000px;}
.y35_c00467{bottom:538.065000px;}
.yf_c00467{bottom:553.815000px;}
.y34_c00467{bottom:556.515000px;}
.ye_c00467{bottom:571.515000px;}
.y33_c00467{bottom:573.765000px;}
.yd_c00467{bottom:589.665000px;}
.y32_c00467{bottom:591.765000px;}
.yc_c00467{bottom:607.965000px;}
.y31_c00467{bottom:610.215000px;}
.yb_c00467{bottom:626.115000px;}
.y30_c00467{bottom:627.765000px;}
.ya_c00467{bottom:644.265000px;}
.y2e_c00467{bottom:645.615000px;}
.y2f_c00467{bottom:646.065000px;}
.y9_c00467{bottom:661.815000px;}
.y8_c00467{bottom:680.865000px;}
.y2d_c00467{bottom:698.715000px;}
.y7_c00467{bottom:699.315000px;}
.y6_c00467{bottom:717.165000px;}
.y2c_c00467{bottom:717.915000px;}
.y5_c00467{bottom:735.765000px;}
.y2b_c00467{bottom:736.065000px;}
.y4_c00467{bottom:753.765000px;}
.y2a_c00467{bottom:771.315000px;}
.y3_c00467{bottom:771.615000px;}
.y2_c00467{bottom:790.215000px;}
.y1_c00467{bottom:808.365000px;}
.h7_c00467{height:13.200074px;}
.h8_c00467{height:43.804688px;}
.h3_c00467{height:62.880000px;}
.h2_c00467{height:66.024000px;}
.h4_c00467{height:70.422000px;}
.h6_c00467{height:70.664062px;}
.h5_c00467{height:163.488000px;}
.h0_c00467{height:848.625000px;}
.h1_c00467{height:849.000000px;}
.w2_c00467{width:104.875500px;}
.w1_c00467{width:579.750000px;}
.w0_c00467{width:579.975000px;}
.x0_c00467{left:0.000000px;}
.x1_c00467{left:92.850000px;}
.x3_c00467{left:94.200000px;}
.x2_c00467{left:95.250000px;}
.x4_c00467{left:96.750000px;}
.x6_c00467{left:97.800000px;}
.x7_c00467{left:99.600000px;}
.x8_c00467{left:125.550000px;}
.x5_c00467{left:146.400000px;}
.x9_c00467{left:169.350000px;}
.xa_c00467{left:191.250000px;}
.x14_c00467{left:241.801758px;}
.x12_c00467{left:314.850000px;}
.xc_c00467{left:316.950000px;}
.x11_c00467{left:318.150000px;}
.xf_c00467{left:319.950000px;}
.xd_c00467{left:328.650000px;}
.x10_c00467{left:351.900000px;}
.xe_c00467{left:385.650000px;}
.xb_c00467{left:400.500000px;}
.x13_c00467{left:482.550000px;}
@media print{
.v0_c00467{vertical-align:0.000000pt;}
.v1_c00467{vertical-align:64.000000pt;}
.ls3_c00467{letter-spacing:-8.000000pt;}
.ls1_c00467{letter-spacing:0.000000pt;}
.ls0_c00467{letter-spacing:0.394667pt;}
.ls2_c00467{letter-spacing:2.666667pt;}
.ls5_c00467{letter-spacing:5.333333pt;}
.ls4_c00467{letter-spacing:10.666667pt;}
.ws5_c00467{word-spacing:-20.000000pt;}
.ws1_c00467{word-spacing:-17.333333pt;}
.ws6_c00467{word-spacing:-14.056000pt;}
.ws0_c00467{word-spacing:-12.746667pt;}
.ws4_c00467{word-spacing:-12.586667pt;}
.ws3_c00467{word-spacing:-7.205333pt;}
.ws2_c00467{word-spacing:-6.666667pt;}
.ws7_c00467{word-spacing:0.000000pt;}
._24_c00467{margin-left:-26.816000pt;}
._23_c00467{margin-left:-21.354667pt;}
._22_c00467{margin-left:-15.616000pt;}
._1c_c00467{margin-left:-13.064000pt;}
._20_c00467{margin-left:-10.810667pt;}
._1e_c00467{margin-left:-9.240000pt;}
._21_c00467{margin-left:-7.626667pt;}
._19_c00467{margin-left:-6.221333pt;}
._13_c00467{margin-left:-5.280000pt;}
._1d_c00467{margin-left:-4.205333pt;}
._f_c00467{margin-left:-2.877333pt;}
._9_c00467{margin-left:-1.280000pt;}
._a_c00467{width:1.421333pt;}
._8_c00467{width:2.400000pt;}
._c_c00467{width:3.378667pt;}
._7_c00467{width:4.872000pt;}
._10_c00467{width:6.200000pt;}
._2_c00467{width:7.168000pt;}
._3_c00467{width:8.288000pt;}
._0_c00467{width:9.744000pt;}
._6_c00467{width:10.752000pt;}
._4_c00467{width:12.208000pt;}
._11_c00467{width:13.909333pt;}
._e_c00467{width:14.941333pt;}
._14_c00467{width:15.893333pt;}
._1a_c00467{width:16.802667pt;}
._1b_c00467{width:17.746667pt;}
._12_c00467{width:19.360000pt;}
._d_c00467{width:21.226667pt;}
._15_c00467{width:23.072000pt;}
._b_c00467{width:23.968000pt;}
._1f_c00467{width:25.405333pt;}
._5_c00467{width:26.656000pt;}
._16_c00467{width:28.856000pt;}
._17_c00467{width:31.981333pt;}
._18_c00467{width:33.373333pt;}
._25_c00467{width:35.056000pt;}
._1_c00467{width:181.328000pt;}
._26_c00467{width:245.005333pt;}
.fs5_c00467{font-size:42.666667pt;}
.fs1_c00467{font-size:53.333333pt;}
.fs0_c00467{font-size:56.000000pt;}
.fs2_c00467{font-size:58.666667pt;}
.fs4_c00467{font-size:64.000000pt;}
.fs3_c00467{font-size:138.666667pt;}
.y0_c00467{bottom:0.000000pt;}
.y52_c00467{bottom:2.760000pt;}
.y51_c00467{bottom:6.425219pt;}
.y50_c00467{bottom:41.080000pt;}
.y4f_c00467{bottom:57.880000pt;}
.y29_c00467{bottom:69.613333pt;}
.y4e_c00467{bottom:74.146667pt;}
.y28_c00467{bottom:89.080000pt;}
.y4d_c00467{bottom:90.946667pt;}
.y27_c00467{bottom:105.080000pt;}
.y4c_c00467{bottom:107.213333pt;}
.y26_c00467{bottom:121.480000pt;}
.y4b_c00467{bottom:123.346667pt;}
.y25_c00467{bottom:137.746667pt;}
.y4a_c00467{bottom:139.480000pt;}
.y24_c00467{bottom:154.013333pt;}
.y49_c00467{bottom:156.013333pt;}
.y23_c00467{bottom:170.146667pt;}
.y48_c00467{bottom:172.546667pt;}
.y22_c00467{bottom:186.280000pt;}
.y47_c00467{bottom:188.413333pt;}
.y21_c00467{bottom:202.546667pt;}
.y46_c00467{bottom:204.413333pt;}
.y20_c00467{bottom:218.813333pt;}
.y45_c00467{bottom:221.480000pt;}
.y1f_c00467{bottom:234.946667pt;}
.y44_c00467{bottom:237.346667pt;}
.y1e_c00467{bottom:251.080000pt;}
.y43_c00467{bottom:253.480000pt;}
.y1d_c00467{bottom:266.813333pt;}
.y42_c00467{bottom:269.213333pt;}
.y1c_c00467{bottom:282.680000pt;}
.y41_c00467{bottom:284.813333pt;}
.y1b_c00467{bottom:299.080000pt;}
.y40_c00467{bottom:301.480000pt;}
.y1a_c00467{bottom:315.346667pt;}
.y3f_c00467{bottom:317.480000pt;}
.y19_c00467{bottom:331.480000pt;}
.y3e_c00467{bottom:333.613333pt;}
.y18_c00467{bottom:347.480000pt;}
.y3d_c00467{bottom:349.880000pt;}
.y17_c00467{bottom:363.613333pt;}
.y3c_c00467{bottom:365.746667pt;}
.y16_c00467{bottom:379.613333pt;}
.y3b_c00467{bottom:381.880000pt;}
.y15_c00467{bottom:395.480000pt;}
.y3a_c00467{bottom:398.413333pt;}
.y14_c00467{bottom:411.880000pt;}
.y39_c00467{bottom:414.280000pt;}
.y13_c00467{bottom:427.880000pt;}
.y38_c00467{bottom:430.546667pt;}
.y12_c00467{bottom:444.013333pt;}
.y37_c00467{bottom:446.680000pt;}
.y11_c00467{bottom:460.013333pt;}
.y36_c00467{bottom:462.680000pt;}
.y10_c00467{bottom:476.146667pt;}
.y35_c00467{bottom:478.280000pt;}
.yf_c00467{bottom:492.280000pt;}
.y34_c00467{bottom:494.680000pt;}
.ye_c00467{bottom:508.013333pt;}
.y33_c00467{bottom:510.013333pt;}
.yd_c00467{bottom:524.146667pt;}
.y32_c00467{bottom:526.013333pt;}
.yc_c00467{bottom:540.413333pt;}
.y31_c00467{bottom:542.413333pt;}
.yb_c00467{bottom:556.546667pt;}
.y30_c00467{bottom:558.013333pt;}
.ya_c00467{bottom:572.680000pt;}
.y2e_c00467{bottom:573.880000pt;}
.y2f_c00467{bottom:574.280000pt;}
.y9_c00467{bottom:588.280000pt;}
.y8_c00467{bottom:605.213333pt;}
.y2d_c00467{bottom:621.080000pt;}
.y7_c00467{bottom:621.613333pt;}
.y6_c00467{bottom:637.480000pt;}
.y2c_c00467{bottom:638.146667pt;}
.y5_c00467{bottom:654.013333pt;}
.y2b_c00467{bottom:654.280000pt;}
.y4_c00467{bottom:670.013333pt;}
.y2a_c00467{bottom:685.613333pt;}
.y3_c00467{bottom:685.880000pt;}
.y2_c00467{bottom:702.413333pt;}
.y1_c00467{bottom:718.546667pt;}
.h7_c00467{height:11.733399pt;}
.h8_c00467{height:38.937500pt;}
.h3_c00467{height:55.893333pt;}
.h2_c00467{height:58.688000pt;}
.h4_c00467{height:62.597333pt;}
.h6_c00467{height:62.812500pt;}
.h5_c00467{height:145.322667pt;}
.h0_c00467{height:754.333333pt;}
.h1_c00467{height:754.666667pt;}
.w2_c00467{width:93.222667pt;}
.w1_c00467{width:515.333333pt;}
.w0_c00467{width:515.533333pt;}
.x0_c00467{left:0.000000pt;}
.x1_c00467{left:82.533333pt;}
.x3_c00467{left:83.733333pt;}
.x2_c00467{left:84.666667pt;}
.x4_c00467{left:86.000000pt;}
.x6_c00467{left:86.933333pt;}
.x7_c00467{left:88.533333pt;}
.x8_c00467{left:111.600000pt;}
.x5_c00467{left:130.133333pt;}
.x9_c00467{left:150.533333pt;}
.xa_c00467{left:170.000000pt;}
.x14_c00467{left:214.934896pt;}
.x12_c00467{left:279.866667pt;}
.xc_c00467{left:281.733333pt;}
.x11_c00467{left:282.800000pt;}
.xf_c00467{left:284.400000pt;}
.xd_c00467{left:292.133333pt;}
.x10_c00467{left:312.800000pt;}
.xe_c00467{left:342.800000pt;}
.xb_c00467{left:356.000000pt;}
.x13_c00467{left:428.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e2209cea24fbc6958dd8548a.woff2')format("woff");}.ff1_c00468{font-family:ff1_c00468;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00468;src:url('chunks/assets/font_95b26b2307cc64a08ccc60b3.woff2')format("woff");}.ff2_c00468{font-family:ff2_c00468;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00468;src:url('chunks/assets/font_c3055e0d8d8fa345e9c4f46f.woff2')format("woff");}.ff3_c00468{font-family:ff3_c00468;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00468;src:url('chunks/assets/font_164d69b1047f10d46a398fe5.woff2')format("woff");}.ff4_c00468{font-family:ff4_c00468;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00468;src:url('chunks/assets/font_832f206f7591a7c0add7a0d2.woff2')format("woff");}.ff5_c00468{font-family:ff5_c00468;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00468;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff6_c00468{font-family:ff6_c00468;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00468{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00468{vertical-align:0.000000px;}
.ls0_c00468{letter-spacing:0.000000px;}
.sc__c00468{text-shadow:none;}
.sc0_c00468{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00468{-webkit-text-stroke:0px transparent;}
.sc0_c00468{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00468{word-spacing:-14.340000px;}
.ws0_c00468{word-spacing:-14.160000px;}
.ws1_c00468{word-spacing:-13.053000px;}
.ws3_c00468{word-spacing:0.000000px;}
._22_c00468{margin-left:-15.360000px;}
._34_c00468{margin-left:-12.360000px;}
._23_c00468{margin-left:-10.260000px;}
._15_c00468{margin-left:-8.580000px;}
._21_c00468{margin-left:-6.960000px;}
._d_c00468{margin-left:-5.880000px;}
._c_c00468{margin-left:-4.200000px;}
._a_c00468{margin-left:-3.060000px;}
._2_c00468{margin-left:-1.500000px;}
._0_c00468{width:1.560000px;}
._1_c00468{width:2.760000px;}
._4_c00468{width:4.080000px;}
._5_c00468{width:5.460000px;}
._19_c00468{width:7.020000px;}
._8_c00468{width:8.160000px;}
._7_c00468{width:9.840000px;}
._13_c00468{width:10.860000px;}
._24_c00468{width:12.060000px;}
._16_c00468{width:13.140000px;}
._9_c00468{width:15.540000px;}
._12_c00468{width:16.620000px;}
._14_c00468{width:18.060000px;}
._17_c00468{width:20.400000px;}
._29_c00468{width:21.660000px;}
._1e_c00468{width:24.120000px;}
._10_c00468{width:25.260000px;}
._1f_c00468{width:26.520000px;}
._1b_c00468{width:28.560000px;}
._2b_c00468{width:29.700000px;}
._2c_c00468{width:31.800000px;}
._2d_c00468{width:32.880000px;}
._f_c00468{width:33.960000px;}
._2a_c00468{width:35.760000px;}
._28_c00468{width:38.460000px;}
._25_c00468{width:39.720000px;}
._27_c00468{width:44.520000px;}
._26_c00468{width:46.200000px;}
._20_c00468{width:47.820000px;}
._1a_c00468{width:50.400000px;}
._1c_c00468{width:54.000000px;}
._18_c00468{width:55.020000px;}
._11_c00468{width:57.900000px;}
._6_c00468{width:60.240000px;}
._b_c00468{width:61.920000px;}
._e_c00468{width:63.960000px;}
._3_c00468{width:66.360000px;}
._36_c00468{width:73.260000px;}
._33_c00468{width:75.780000px;}
._2f_c00468{width:95.400000px;}
._31_c00468{width:106.260000px;}
._32_c00468{width:154.920000px;}
._35_c00468{width:177.060000px;}
._1d_c00468{width:204.120000px;}
._30_c00468{width:226.020000px;}
._2e_c00468{width:464.040000px;}
.fc2_c00468{color:transparent;}
.fc1_c00468{color:rgb(128,128,128);}
.fc0_c00468{color:rgb(0,0,0);}
.fs1_c00468{font-size:48.000000px;}
.fs2_c00468{font-size:57.000000px;}
.fs0_c00468{font-size:60.000000px;}
.y0_c00468{bottom:0.000000px;}
.y2c_c00468{bottom:3.105000px;}
.y2b_c00468{bottom:7.228363px;}
.y2a_c00468{bottom:44.550000px;}
.y29_c00468{bottom:62.100000px;}
.y28_c00468{bottom:80.400000px;}
.y27_c00468{bottom:99.300000px;}
.y26_c00468{bottom:117.450000px;}
.y25_c00468{bottom:135.450000px;}
.y24_c00468{bottom:153.300000px;}
.y23_c00468{bottom:171.750000px;}
.y22_c00468{bottom:190.350000px;}
.y21_c00468{bottom:208.200000px;}
.y20_c00468{bottom:225.750000px;}
.y1f_c00468{bottom:244.650000px;}
.y1e_c00468{bottom:261.300000px;}
.y1d_c00468{bottom:280.500000px;}
.y1c_c00468{bottom:298.350000px;}
.y1b_c00468{bottom:316.200000px;}
.y1a_c00468{bottom:334.200000px;}
.y19_c00468{bottom:351.750000px;}
.y18_c00468{bottom:370.950000px;}
.y17_c00468{bottom:388.200000px;}
.y16_c00468{bottom:406.650000px;}
.y15_c00468{bottom:424.650000px;}
.y14_c00468{bottom:442.500000px;}
.y13_c00468{bottom:460.800000px;}
.y12_c00468{bottom:478.350000px;}
.y11_c00468{bottom:496.800000px;}
.y10_c00468{bottom:514.650000px;}
.yf_c00468{bottom:532.200000px;}
.ye_c00468{bottom:549.900000px;}
.yd_c00468{bottom:567.750000px;}
.yc_c00468{bottom:586.200000px;}
.yb_c00468{bottom:604.200000px;}
.ya_c00468{bottom:622.050000px;}
.y9_c00468{bottom:640.500000px;}
.y8_c00468{bottom:659.100000px;}
.y7_c00468{bottom:676.950000px;}
.y6_c00468{bottom:695.550000px;}
.y5_c00468{bottom:713.100000px;}
.y4_c00468{bottom:731.700000px;}
.y3_c00468{bottom:749.550000px;}
.y2_c00468{bottom:768.450000px;}
.y1_c00468{bottom:786.000000px;}
.h2_c00468{height:13.200074px;}
.h3_c00468{height:43.804688px;}
.h1_c00468{height:62.880000px;}
.h0_c00468{height:843.750000px;}
.w2_c00468{width:104.875500px;}
.w1_c00468{width:579.750000px;}
.w0_c00468{width:579.975000px;}
.x0_c00468{left:0.000000px;}
.x1_c00468{left:82.050000px;}
.x2_c00468{left:84.000000px;}
.x3_c00468{left:85.350000px;}
.x4_c00468{left:86.700000px;}
.x5_c00468{left:87.750000px;}
.x6_c00468{left:88.800000px;}
.x7_c00468{left:90.750000px;}
.x8_c00468{left:91.800000px;}
.xa_c00468{left:241.801758px;}
.x9_c00468{left:485.250000px;}
@media print{
.v0_c00468{vertical-align:0.000000pt;}
.ls0_c00468{letter-spacing:0.000000pt;}
.ws2_c00468{word-spacing:-12.746667pt;}
.ws0_c00468{word-spacing:-12.586667pt;}
.ws1_c00468{word-spacing:-11.602667pt;}
.ws3_c00468{word-spacing:0.000000pt;}
._22_c00468{margin-left:-13.653333pt;}
._34_c00468{margin-left:-10.986667pt;}
._23_c00468{margin-left:-9.120000pt;}
._15_c00468{margin-left:-7.626667pt;}
._21_c00468{margin-left:-6.186667pt;}
._d_c00468{margin-left:-5.226667pt;}
._c_c00468{margin-left:-3.733333pt;}
._a_c00468{margin-left:-2.720000pt;}
._2_c00468{margin-left:-1.333333pt;}
._0_c00468{width:1.386667pt;}
._1_c00468{width:2.453333pt;}
._4_c00468{width:3.626667pt;}
._5_c00468{width:4.853333pt;}
._19_c00468{width:6.240000pt;}
._8_c00468{width:7.253333pt;}
._7_c00468{width:8.746667pt;}
._13_c00468{width:9.653333pt;}
._24_c00468{width:10.720000pt;}
._16_c00468{width:11.680000pt;}
._9_c00468{width:13.813333pt;}
._12_c00468{width:14.773333pt;}
._14_c00468{width:16.053333pt;}
._17_c00468{width:18.133333pt;}
._29_c00468{width:19.253333pt;}
._1e_c00468{width:21.440000pt;}
._10_c00468{width:22.453333pt;}
._1f_c00468{width:23.573333pt;}
._1b_c00468{width:25.386667pt;}
._2b_c00468{width:26.400000pt;}
._2c_c00468{width:28.266667pt;}
._2d_c00468{width:29.226667pt;}
._f_c00468{width:30.186667pt;}
._2a_c00468{width:31.786667pt;}
._28_c00468{width:34.186667pt;}
._25_c00468{width:35.306667pt;}
._27_c00468{width:39.573333pt;}
._26_c00468{width:41.066667pt;}
._20_c00468{width:42.506667pt;}
._1a_c00468{width:44.800000pt;}
._1c_c00468{width:48.000000pt;}
._18_c00468{width:48.906667pt;}
._11_c00468{width:51.466667pt;}
._6_c00468{width:53.546667pt;}
._b_c00468{width:55.040000pt;}
._e_c00468{width:56.853333pt;}
._3_c00468{width:58.986667pt;}
._36_c00468{width:65.120000pt;}
._33_c00468{width:67.360000pt;}
._2f_c00468{width:84.800000pt;}
._31_c00468{width:94.453333pt;}
._32_c00468{width:137.706667pt;}
._35_c00468{width:157.386667pt;}
._1d_c00468{width:181.440000pt;}
._30_c00468{width:200.906667pt;}
._2e_c00468{width:412.480000pt;}
.fs1_c00468{font-size:42.666667pt;}
.fs2_c00468{font-size:50.666667pt;}
.fs0_c00468{font-size:53.333333pt;}
.y0_c00468{bottom:0.000000pt;}
.y2c_c00468{bottom:2.760000pt;}
.y2b_c00468{bottom:6.425212pt;}
.y2a_c00468{bottom:39.600000pt;}
.y29_c00468{bottom:55.200000pt;}
.y28_c00468{bottom:71.466667pt;}
.y27_c00468{bottom:88.266667pt;}
.y26_c00468{bottom:104.400000pt;}
.y25_c00468{bottom:120.400000pt;}
.y24_c00468{bottom:136.266667pt;}
.y23_c00468{bottom:152.666667pt;}
.y22_c00468{bottom:169.200000pt;}
.y21_c00468{bottom:185.066667pt;}
.y20_c00468{bottom:200.666667pt;}
.y1f_c00468{bottom:217.466667pt;}
.y1e_c00468{bottom:232.266667pt;}
.y1d_c00468{bottom:249.333333pt;}
.y1c_c00468{bottom:265.200000pt;}
.y1b_c00468{bottom:281.066667pt;}
.y1a_c00468{bottom:297.066667pt;}
.y19_c00468{bottom:312.666667pt;}
.y18_c00468{bottom:329.733333pt;}
.y17_c00468{bottom:345.066667pt;}
.y16_c00468{bottom:361.466667pt;}
.y15_c00468{bottom:377.466667pt;}
.y14_c00468{bottom:393.333333pt;}
.y13_c00468{bottom:409.600000pt;}
.y12_c00468{bottom:425.200000pt;}
.y11_c00468{bottom:441.600000pt;}
.y10_c00468{bottom:457.466667pt;}
.yf_c00468{bottom:473.066667pt;}
.ye_c00468{bottom:488.800000pt;}
.yd_c00468{bottom:504.666667pt;}
.yc_c00468{bottom:521.066667pt;}
.yb_c00468{bottom:537.066667pt;}
.ya_c00468{bottom:552.933333pt;}
.y9_c00468{bottom:569.333333pt;}
.y8_c00468{bottom:585.866667pt;}
.y7_c00468{bottom:601.733333pt;}
.y6_c00468{bottom:618.266667pt;}
.y5_c00468{bottom:633.866667pt;}
.y4_c00468{bottom:650.400000pt;}
.y3_c00468{bottom:666.266667pt;}
.y2_c00468{bottom:683.066667pt;}
.y1_c00468{bottom:698.666667pt;}
.h2_c00468{height:11.733399pt;}
.h3_c00468{height:38.937500pt;}
.h1_c00468{height:55.893333pt;}
.h0_c00468{height:750.000000pt;}
.w2_c00468{width:93.222667pt;}
.w1_c00468{width:515.333333pt;}
.w0_c00468{width:515.533333pt;}
.x0_c00468{left:0.000000pt;}
.x1_c00468{left:72.933333pt;}
.x2_c00468{left:74.666667pt;}
.x3_c00468{left:75.866667pt;}
.x4_c00468{left:77.066667pt;}
.x5_c00468{left:78.000000pt;}
.x6_c00468{left:78.933333pt;}
.x7_c00468{left:80.666667pt;}
.x8_c00468{left:81.600000pt;}
.xa_c00468{left:214.934896pt;}
.x9_c00468{left:431.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e897bedce7411ce60e5f5b28.woff2')format("woff");}.ff1_c00469{font-family:ff1_c00469;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00469;src:url('chunks/assets/font_3dbef75e97705f9c81bd3089.woff2')format("woff");}.ff2_c00469{font-family:ff2_c00469;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00469;src:url('chunks/assets/font_02de5aad81c42656f17d85f3.woff2')format("woff");}.ff3_c00469{font-family:ff3_c00469;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00469;src:url('chunks/assets/font_20bc3ab7eff291748424cc58.woff2')format("woff");}.ff4_c00469{font-family:ff4_c00469;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00469;src:url('chunks/assets/font_29b0dd8fce749281670d6e6a.woff2')format("woff");}.ff5_c00469{font-family:ff5_c00469;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00469;src:url('chunks/assets/font_7c7b114d6d8510036cb24ad0.woff2')format("woff");}.ff6_c00469{font-family:ff6_c00469;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00469;src:url('chunks/assets/font_de118bd3a71e3a6e9e8a5433.woff2')format("woff");}.ff7_c00469{font-family:ff7_c00469;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00469;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff8_c00469{font-family:ff8_c00469;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00469;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff9_c00469{font-family:ff9_c00469;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00469{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00469{vertical-align:0.000000px;}
.ls6_c00469{letter-spacing:0.000000px;}
.ls4_c00469{letter-spacing:1.320000px;}
.ls2_c00469{letter-spacing:2.700000px;}
.ls7_c00469{letter-spacing:3.000000px;}
.ls0_c00469{letter-spacing:6.000000px;}
.ls3_c00469{letter-spacing:9.000000px;}
.ls1_c00469{letter-spacing:19.626000px;}
.ls5_c00469{letter-spacing:29.646000px;}
.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;}
}
.ws5_c00469{word-spacing:-26.208000px;}
.ws1_c00469{word-spacing:-23.208000px;}
.ws3_c00469{word-spacing:-23.160000px;}
.ws6_c00469{word-spacing:-22.074000px;}
.ws4_c00469{word-spacing:-15.660000px;}
.ws2_c00469{word-spacing:-14.340000px;}
.ws0_c00469{word-spacing:-14.160000px;}
.ws7_c00469{word-spacing:0.000000px;}
._20_c00469{margin-left:-14.364000px;}
._1b_c00469{margin-left:-11.280000px;}
._1c_c00469{margin-left:-9.420000px;}
._1a_c00469{margin-left:-8.220000px;}
._e_c00469{margin-left:-6.120000px;}
._f_c00469{margin-left:-4.932000px;}
._10_c00469{margin-left:-3.660000px;}
._7_c00469{margin-left:-2.592000px;}
._8_c00469{margin-left:-1.224000px;}
._9_c00469{width:1.920000px;}
._14_c00469{width:3.060000px;}
._1_c00469{width:4.140000px;}
._d_c00469{width:5.880000px;}
._3_c00469{width:7.980000px;}
._0_c00469{width:9.060000px;}
._1e_c00469{width:10.080000px;}
._4_c00469{width:11.220000px;}
._5_c00469{width:13.020000px;}
._1f_c00469{width:14.982000px;}
._b_c00469{width:16.380000px;}
._17_c00469{width:17.568000px;}
._19_c00469{width:18.912000px;}
._c_c00469{width:20.196000px;}
._11_c00469{width:21.684000px;}
._12_c00469{width:22.800000px;}
._15_c00469{width:23.976000px;}
._16_c00469{width:25.140000px;}
._13_c00469{width:27.060000px;}
._6_c00469{width:29.280000px;}
._21_c00469{width:32.136000px;}
._22_c00469{width:34.560000px;}
._18_c00469{width:37.500000px;}
._1d_c00469{width:45.624000px;}
._a_c00469{width:82.620000px;}
._2_c00469{width:206.520000px;}
.fc2_c00469{color:transparent;}
.fc1_c00469{color:rgb(128,128,128);}
.fc0_c00469{color:rgb(0,0,0);}
.fs5_c00469{font-size:48.000000px;}
.fs3_c00469{font-size:51.000000px;}
.fs6_c00469{font-size:54.000000px;}
.fs4_c00469{font-size:57.000000px;}
.fs0_c00469{font-size:60.000000px;}
.fs2_c00469{font-size:66.000000px;}
.fs1_c00469{font-size:72.000000px;}
.y0_c00469{bottom:0.000000px;}
.y57_c00469{bottom:3.105000px;}
.y56_c00469{bottom:7.228371px;}
.y55_c00469{bottom:47.265000px;}
.y2c_c00469{bottom:63.165000px;}
.y54_c00469{bottom:65.565000px;}
.y2b_c00469{bottom:81.765000px;}
.y53_c00469{bottom:82.665000px;}
.y2a_c00469{bottom:99.915000px;}
.y52_c00469{bottom:101.565000px;}
.y29_c00469{bottom:118.215000px;}
.y51_c00469{bottom:120.165000px;}
.y28_c00469{bottom:135.765000px;}
.y50_c00469{bottom:137.715000px;}
.y27_c00469{bottom:154.665000px;}
.y4f_c00469{bottom:156.015000px;}
.y26_c00469{bottom:172.515000px;}
.y4_c00469{bottom:173.565000px;}
.y4e_c00469{bottom:174.165000px;}
.y25_c00469{bottom:190.815000px;}
.y4d_c00469{bottom:192.165000px;}
.y3_c00469{bottom:192.465000px;}
.y24_c00469{bottom:208.365000px;}
.y4c_c00469{bottom:210.315000px;}
.y23_c00469{bottom:226.815000px;}
.y4b_c00469{bottom:228.465000px;}
.y22_c00469{bottom:245.115000px;}
.y4a_c00469{bottom:246.765000px;}
.y21_c00469{bottom:263.265000px;}
.y49_c00469{bottom:265.065000px;}
.y20_c00469{bottom:281.265000px;}
.y48_c00469{bottom:282.615000px;}
.y1f_c00469{bottom:299.115000px;}
.y47_c00469{bottom:300.465000px;}
.y1e_c00469{bottom:317.565000px;}
.y46_c00469{bottom:318.315000px;}
.y1d_c00469{bottom:335.115000px;}
.y45_c00469{bottom:336.465000px;}
.y1c_c00469{bottom:353.415000px;}
.y44_c00469{bottom:354.465000px;}
.y1b_c00469{bottom:371.715000px;}
.y43_c00469{bottom:372.915000px;}
.y1a_c00469{bottom:389.265000px;}
.y42_c00469{bottom:391.215000px;}
.y19_c00469{bottom:406.815000px;}
.y41_c00469{bottom:409.515000px;}
.y18_c00469{bottom:425.565000px;}
.y40_c00469{bottom:427.065000px;}
.y17_c00469{bottom:443.565000px;}
.y3f_c00469{bottom:445.215000px;}
.y16_c00469{bottom:461.715000px;}
.y3e_c00469{bottom:463.515000px;}
.y15_c00469{bottom:479.565000px;}
.y3d_c00469{bottom:481.365000px;}
.y14_c00469{bottom:497.865000px;}
.y3c_c00469{bottom:499.815000px;}
.y13_c00469{bottom:516.165000px;}
.y3b_c00469{bottom:517.365000px;}
.y12_c00469{bottom:534.015000px;}
.y3a_c00469{bottom:535.065000px;}
.y11_c00469{bottom:551.265000px;}
.y39_c00469{bottom:553.215000px;}
.y10_c00469{bottom:569.715000px;}
.y38_c00469{bottom:571.515000px;}
.yf_c00469{bottom:587.715000px;}
.y37_c00469{bottom:589.365000px;}
.ye_c00469{bottom:606.165000px;}
.y36_c00469{bottom:607.815000px;}
.yd_c00469{bottom:623.715000px;}
.y35_c00469{bottom:625.365000px;}
.yc_c00469{bottom:642.015000px;}
.y34_c00469{bottom:643.365000px;}
.yb_c00469{bottom:660.165000px;}
.y33_c00469{bottom:661.515000px;}
.ya_c00469{bottom:676.365000px;}
.y32_c00469{bottom:680.115000px;}
.y9_c00469{bottom:697.065000px;}
.y31_c00469{bottom:698.415000px;}
.y8_c00469{bottom:714.915000px;}
.y30_c00469{bottom:716.565000px;}
.y7_c00469{bottom:733.515000px;}
.y2f_c00469{bottom:734.715000px;}
.y6_c00469{bottom:752.265000px;}
.y2e_c00469{bottom:752.715000px;}
.y5_c00469{bottom:769.515000px;}
.y2d_c00469{bottom:770.865000px;}
.y2_c00469{bottom:788.715000px;}
.y1_c00469{bottom:808.365000px;}
.h7_c00469{height:13.200074px;}
.h8_c00469{height:43.804688px;}
.h3_c00469{height:62.880000px;}
.h6_c00469{height:64.571777px;}
.h4_c00469{height:69.168000px;}
.h5_c00469{height:70.422000px;}
.h2_c00469{height:75.456000px;}
.h0_c00469{height:848.625000px;}
.h1_c00469{height:849.000000px;}
.w2_c00469{width:104.875500px;}
.w1_c00469{width:579.750000px;}
.w0_c00469{width:579.975000px;}
.x0_c00469{left:0.000000px;}
.x3_c00469{left:32.100000px;}
.x4_c00469{left:33.150000px;}
.x9_c00469{left:94.800000px;}
.x8_c00469{left:95.850000px;}
.x2_c00469{left:97.500000px;}
.x7_c00469{left:98.550000px;}
.x6_c00469{left:99.600000px;}
.x5_c00469{left:101.250000px;}
.x1_c00469{left:103.350000px;}
.x12_c00469{left:241.801758px;}
.x10_c00469{left:315.150000px;}
.xe_c00469{left:316.500000px;}
.xd_c00469{left:318.300000px;}
.xf_c00469{left:319.500000px;}
.xc_c00469{left:320.550000px;}
.xb_c00469{left:322.200000px;}
.xa_c00469{left:324.300000px;}
.x11_c00469{left:495.000000px;}
@media print{
.v0_c00469{vertical-align:0.000000pt;}
.ls6_c00469{letter-spacing:0.000000pt;}
.ls4_c00469{letter-spacing:1.173333pt;}
.ls2_c00469{letter-spacing:2.400000pt;}
.ls7_c00469{letter-spacing:2.666667pt;}
.ls0_c00469{letter-spacing:5.333333pt;}
.ls3_c00469{letter-spacing:8.000000pt;}
.ls1_c00469{letter-spacing:17.445333pt;}
.ls5_c00469{letter-spacing:26.352000pt;}
.ws5_c00469{word-spacing:-23.296000pt;}
.ws1_c00469{word-spacing:-20.629333pt;}
.ws3_c00469{word-spacing:-20.586667pt;}
.ws6_c00469{word-spacing:-19.621333pt;}
.ws4_c00469{word-spacing:-13.920000pt;}
.ws2_c00469{word-spacing:-12.746667pt;}
.ws0_c00469{word-spacing:-12.586667pt;}
.ws7_c00469{word-spacing:0.000000pt;}
._20_c00469{margin-left:-12.768000pt;}
._1b_c00469{margin-left:-10.026667pt;}
._1c_c00469{margin-left:-8.373333pt;}
._1a_c00469{margin-left:-7.306667pt;}
._e_c00469{margin-left:-5.440000pt;}
._f_c00469{margin-left:-4.384000pt;}
._10_c00469{margin-left:-3.253333pt;}
._7_c00469{margin-left:-2.304000pt;}
._8_c00469{margin-left:-1.088000pt;}
._9_c00469{width:1.706667pt;}
._14_c00469{width:2.720000pt;}
._1_c00469{width:3.680000pt;}
._d_c00469{width:5.226667pt;}
._3_c00469{width:7.093333pt;}
._0_c00469{width:8.053333pt;}
._1e_c00469{width:8.960000pt;}
._4_c00469{width:9.973333pt;}
._5_c00469{width:11.573333pt;}
._1f_c00469{width:13.317333pt;}
._b_c00469{width:14.560000pt;}
._17_c00469{width:15.616000pt;}
._19_c00469{width:16.810667pt;}
._c_c00469{width:17.952000pt;}
._11_c00469{width:19.274667pt;}
._12_c00469{width:20.266667pt;}
._15_c00469{width:21.312000pt;}
._16_c00469{width:22.346667pt;}
._13_c00469{width:24.053333pt;}
._6_c00469{width:26.026667pt;}
._21_c00469{width:28.565333pt;}
._22_c00469{width:30.720000pt;}
._18_c00469{width:33.333333pt;}
._1d_c00469{width:40.554667pt;}
._a_c00469{width:73.440000pt;}
._2_c00469{width:183.573333pt;}
.fs5_c00469{font-size:42.666667pt;}
.fs3_c00469{font-size:45.333333pt;}
.fs6_c00469{font-size:48.000000pt;}
.fs4_c00469{font-size:50.666667pt;}
.fs0_c00469{font-size:53.333333pt;}
.fs2_c00469{font-size:58.666667pt;}
.fs1_c00469{font-size:64.000000pt;}
.y0_c00469{bottom:0.000000pt;}
.y57_c00469{bottom:2.760000pt;}
.y56_c00469{bottom:6.425219pt;}
.y55_c00469{bottom:42.013333pt;}
.y2c_c00469{bottom:56.146667pt;}
.y54_c00469{bottom:58.280000pt;}
.y2b_c00469{bottom:72.680000pt;}
.y53_c00469{bottom:73.480000pt;}
.y2a_c00469{bottom:88.813333pt;}
.y52_c00469{bottom:90.280000pt;}
.y29_c00469{bottom:105.080000pt;}
.y51_c00469{bottom:106.813333pt;}
.y28_c00469{bottom:120.680000pt;}
.y50_c00469{bottom:122.413333pt;}
.y27_c00469{bottom:137.480000pt;}
.y4f_c00469{bottom:138.680000pt;}
.y26_c00469{bottom:153.346667pt;}
.y4_c00469{bottom:154.280000pt;}
.y4e_c00469{bottom:154.813333pt;}
.y25_c00469{bottom:169.613333pt;}
.y4d_c00469{bottom:170.813333pt;}
.y3_c00469{bottom:171.080000pt;}
.y24_c00469{bottom:185.213333pt;}
.y4c_c00469{bottom:186.946667pt;}
.y23_c00469{bottom:201.613333pt;}
.y4b_c00469{bottom:203.080000pt;}
.y22_c00469{bottom:217.880000pt;}
.y4a_c00469{bottom:219.346667pt;}
.y21_c00469{bottom:234.013333pt;}
.y49_c00469{bottom:235.613333pt;}
.y20_c00469{bottom:250.013333pt;}
.y48_c00469{bottom:251.213333pt;}
.y1f_c00469{bottom:265.880000pt;}
.y47_c00469{bottom:267.080000pt;}
.y1e_c00469{bottom:282.280000pt;}
.y46_c00469{bottom:282.946667pt;}
.y1d_c00469{bottom:297.880000pt;}
.y45_c00469{bottom:299.080000pt;}
.y1c_c00469{bottom:314.146667pt;}
.y44_c00469{bottom:315.080000pt;}
.y1b_c00469{bottom:330.413333pt;}
.y43_c00469{bottom:331.480000pt;}
.y1a_c00469{bottom:346.013333pt;}
.y42_c00469{bottom:347.746667pt;}
.y19_c00469{bottom:361.613333pt;}
.y41_c00469{bottom:364.013333pt;}
.y18_c00469{bottom:378.280000pt;}
.y40_c00469{bottom:379.613333pt;}
.y17_c00469{bottom:394.280000pt;}
.y3f_c00469{bottom:395.746667pt;}
.y16_c00469{bottom:410.413333pt;}
.y3e_c00469{bottom:412.013333pt;}
.y15_c00469{bottom:426.280000pt;}
.y3d_c00469{bottom:427.880000pt;}
.y14_c00469{bottom:442.546667pt;}
.y3c_c00469{bottom:444.280000pt;}
.y13_c00469{bottom:458.813333pt;}
.y3b_c00469{bottom:459.880000pt;}
.y12_c00469{bottom:474.680000pt;}
.y3a_c00469{bottom:475.613333pt;}
.y11_c00469{bottom:490.013333pt;}
.y39_c00469{bottom:491.746667pt;}
.y10_c00469{bottom:506.413333pt;}
.y38_c00469{bottom:508.013333pt;}
.yf_c00469{bottom:522.413333pt;}
.y37_c00469{bottom:523.880000pt;}
.ye_c00469{bottom:538.813333pt;}
.y36_c00469{bottom:540.280000pt;}
.yd_c00469{bottom:554.413333pt;}
.y35_c00469{bottom:555.880000pt;}
.yc_c00469{bottom:570.680000pt;}
.y34_c00469{bottom:571.880000pt;}
.yb_c00469{bottom:586.813333pt;}
.y33_c00469{bottom:588.013333pt;}
.ya_c00469{bottom:601.213333pt;}
.y32_c00469{bottom:604.546667pt;}
.y9_c00469{bottom:619.613333pt;}
.y31_c00469{bottom:620.813333pt;}
.y8_c00469{bottom:635.480000pt;}
.y30_c00469{bottom:636.946667pt;}
.y7_c00469{bottom:652.013333pt;}
.y2f_c00469{bottom:653.080000pt;}
.y6_c00469{bottom:668.680000pt;}
.y2e_c00469{bottom:669.080000pt;}
.y5_c00469{bottom:684.013333pt;}
.y2d_c00469{bottom:685.213333pt;}
.y2_c00469{bottom:701.080000pt;}
.y1_c00469{bottom:718.546667pt;}
.h7_c00469{height:11.733399pt;}
.h8_c00469{height:38.937500pt;}
.h3_c00469{height:55.893333pt;}
.h6_c00469{height:57.397135pt;}
.h4_c00469{height:61.482667pt;}
.h5_c00469{height:62.597333pt;}
.h2_c00469{height:67.072000pt;}
.h0_c00469{height:754.333333pt;}
.h1_c00469{height:754.666667pt;}
.w2_c00469{width:93.222667pt;}
.w1_c00469{width:515.333333pt;}
.w0_c00469{width:515.533333pt;}
.x0_c00469{left:0.000000pt;}
.x3_c00469{left:28.533333pt;}
.x4_c00469{left:29.466667pt;}
.x9_c00469{left:84.266667pt;}
.x8_c00469{left:85.200000pt;}
.x2_c00469{left:86.666667pt;}
.x7_c00469{left:87.600000pt;}
.x6_c00469{left:88.533333pt;}
.x5_c00469{left:90.000000pt;}
.x1_c00469{left:91.866667pt;}
.x12_c00469{left:214.934896pt;}
.x10_c00469{left:280.133333pt;}
.xe_c00469{left:281.333333pt;}
.xd_c00469{left:282.933333pt;}
.xf_c00469{left:284.000000pt;}
.xc_c00469{left:284.933333pt;}
.xb_c00469{left:286.400000pt;}
.xa_c00469{left:288.266667pt;}
.x11_c00469{left:440.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_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_07853f58d0cbcc383c5be0ad.woff2')format("woff");}.ff1_c00470{font-family:ff1_c00470;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00470;src:url('chunks/assets/font_5d5b094c0384090d22428dd8.woff2')format("woff");}.ff2_c00470{font-family:ff2_c00470;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00470;src:url('chunks/assets/font_fdccf638dda58dbbaec9679f.woff2')format("woff");}.ff3_c00470{font-family:ff3_c00470;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00470;src:url('chunks/assets/font_d8c41ac6c518202c26b9b277.woff2')format("woff");}.ff4_c00470{font-family:ff4_c00470;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00470;src:url('chunks/assets/font_71067c590e62b31b96932985.woff2')format("woff");}.ff5_c00470{font-family:ff5_c00470;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00470;src:url('chunks/assets/font_babebc65a56fa2ab6f40949b.woff2')format("woff");}.ff6_c00470{font-family:ff6_c00470;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00470;src:url('chunks/assets/font_5d5fe9ce2ce3252d77647367.woff2')format("woff");}.ff7_c00470{font-family:ff7_c00470;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00470;src:url('chunks/assets/font_176c5283962421b5a5e569b8.woff2')format("woff");}.ff8_c00470{font-family:ff8_c00470;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00470;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff9_c00470{font-family:ff9_c00470;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00470{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00470{vertical-align:0.000000px;}
.v1_c00470{vertical-align:74.400000px;}
.ls2_c00470{letter-spacing:0.000000px;}
.ls1_c00470{letter-spacing:1.191000px;}
.ls3_c00470{letter-spacing:3.000000px;}
.ls0_c00470{letter-spacing:6.000000px;}
.ls4_c00470{letter-spacing:12.000000px;}
.sc__c00470{text-shadow:none;}
.sc0_c00470{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00470{-webkit-text-stroke:0px transparent;}
.sc0_c00470{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00470{word-spacing:-37.746000px;}
.ws2_c00470{word-spacing:-26.250000px;}
.ws6_c00470{word-spacing:-22.074000px;}
.ws3_c00470{word-spacing:-20.250000px;}
.ws0_c00470{word-spacing:-14.340000px;}
.ws5_c00470{word-spacing:-14.160000px;}
.ws1_c00470{word-spacing:-3.087000px;}
.ws7_c00470{word-spacing:0.000000px;}
._1a_c00470{margin-left:-19.485000px;}
._1d_c00470{margin-left:-14.520000px;}
._1e_c00470{margin-left:-11.520000px;}
._18_c00470{margin-left:-8.946000px;}
._19_c00470{margin-left:-7.911000px;}
._a_c00470{margin-left:-6.720000px;}
._8_c00470{margin-left:-5.280000px;}
._9_c00470{margin-left:-4.140000px;}
._0_c00470{margin-left:-2.160000px;}
._d_c00470{margin-left:-1.140000px;}
._3_c00470{width:1.200000px;}
._6_c00470{width:2.580000px;}
._5_c00470{width:3.840000px;}
._15_c00470{width:4.860000px;}
._10_c00470{width:5.880000px;}
._b_c00470{width:7.260000px;}
._e_c00470{width:8.520000px;}
._1_c00470{width:9.600000px;}
._f_c00470{width:11.640000px;}
._7_c00470{width:12.660000px;}
._c_c00470{width:16.200000px;}
._4_c00470{width:17.520000px;}
._2_c00470{width:18.900000px;}
._16_c00470{width:21.360000px;}
._11_c00470{width:22.980000px;}
._12_c00470{width:24.300000px;}
._1f_c00470{width:25.860000px;}
._13_c00470{width:27.300000px;}
._17_c00470{width:28.560000px;}
._20_c00470{width:32.220000px;}
._14_c00470{width:37.260000px;}
._1b_c00470{width:160.560000px;}
._1c_c00470{width:180.300000px;}
.fc2_c00470{color:transparent;}
.fc1_c00470{color:rgb(128,128,128);}
.fc0_c00470{color:rgb(0,0,0);}
.fs6_c00470{font-size:48.000000px;}
.fs1_c00470{font-size:57.000000px;}
.fs0_c00470{font-size:60.000000px;}
.fs3_c00470{font-size:63.000000px;}
.fs4_c00470{font-size:66.000000px;}
.fs2_c00470{font-size:87.000000px;}
.fs5_c00470{font-size:159.000000px;}
.y0_c00470{bottom:0.000000px;}
.y4b_c00470{bottom:3.105000px;}
.y4a_c00470{bottom:7.228363px;}
.y49_c00470{bottom:38.850000px;}
.y48_c00470{bottom:58.350000px;}
.y25_c00470{bottom:73.800000px;}
.y47_c00470{bottom:76.950000px;}
.y46_c00470{bottom:95.100000px;}
.y45_c00470{bottom:113.100000px;}
.y44_c00470{bottom:131.250000px;}
.y43_c00470{bottom:149.100000px;}
.y24_c00470{bottom:150.150000px;}
.y42_c00470{bottom:167.100000px;}
.y23_c00470{bottom:167.700000px;}
.y22_c00470{bottom:185.550000px;}
.y41_c00470{bottom:203.550000px;}
.y21_c00470{bottom:204.750000px;}
.y40_c00470{bottom:221.400000px;}
.y20_c00470{bottom:223.350000px;}
.y3f_c00470{bottom:239.850000px;}
.y1f_c00470{bottom:241.200000px;}
.y3e_c00470{bottom:257.850000px;}
.y1e_c00470{bottom:259.500000px;}
.y3d_c00470{bottom:276.450000px;}
.y1d_c00470{bottom:277.650000px;}
.y3c_c00470{bottom:293.850000px;}
.y1c_c00470{bottom:295.200000px;}
.y3b_c00470{bottom:312.450000px;}
.y1b_c00470{bottom:313.200000px;}
.y3a_c00470{bottom:330.450000px;}
.y1a_c00470{bottom:331.350000px;}
.y39_c00470{bottom:348.600000px;}
.y19_c00470{bottom:349.350000px;}
.y38_c00470{bottom:366.450000px;}
.y18_c00470{bottom:367.500000px;}
.y37_c00470{bottom:384.000000px;}
.y17_c00470{bottom:385.350000px;}
.y16_c00470{bottom:403.200000px;}
.y36_c00470{bottom:420.750000px;}
.y15_c00470{bottom:421.500000px;}
.y35_c00470{bottom:438.750000px;}
.y14_c00470{bottom:439.650000px;}
.y34_c00470{bottom:456.600000px;}
.y13_c00470{bottom:457.650000px;}
.y12_c00470{bottom:475.500000px;}
.y33_c00470{bottom:476.250000px;}
.y32_c00470{bottom:493.050000px;}
.y11_c00470{bottom:493.800000px;}
.y31_c00470{bottom:510.300000px;}
.y10_c00470{bottom:511.650000px;}
.yf_c00470{bottom:528.900000px;}
.ye_c00470{bottom:545.700000px;}
.y30_c00470{bottom:546.450000px;}
.yd_c00470{bottom:563.550000px;}
.y2f_c00470{bottom:564.600000px;}
.yc_c00470{bottom:582.150000px;}
.y2e_c00470{bottom:582.750000px;}
.yb_c00470{bottom:600.000000px;}
.y2d_c00470{bottom:600.300000px;}
.y2b_c00470{bottom:617.550000px;}
.ya_c00470{bottom:618.000000px;}
.y2c_c00470{bottom:618.300000px;}
.y9_c00470{bottom:636.300000px;}
.y8_c00470{bottom:654.450000px;}
.y2a_c00470{bottom:672.000000px;}
.y7_c00470{bottom:672.600000px;}
.y29_c00470{bottom:690.150000px;}
.y6_c00470{bottom:690.900000px;}
.y28_c00470{bottom:708.450000px;}
.y5_c00470{bottom:709.050000px;}
.y27_c00470{bottom:727.200000px;}
.y4_c00470{bottom:727.350000px;}
.y3_c00470{bottom:745.200000px;}
.y26_c00470{bottom:762.300000px;}
.y2_c00470{bottom:763.350000px;}
.y1_c00470{bottom:781.950000px;}
.h9_c00470{height:13.200074px;}
.ha_c00470{height:43.804688px;}
.h4_c00470{height:55.942383px;}
.h1_c00470{height:62.880000px;}
.h3_c00470{height:66.024000px;}
.h5_c00470{height:69.168000px;}
.h8_c00470{height:70.422000px;}
.h6_c00470{height:71.544000px;}
.h2_c00470{height:92.829000px;}
.h7_c00470{height:166.632000px;}
.h0_c00470{height:843.750000px;}
.w2_c00470{width:104.875500px;}
.w1_c00470{width:579.750000px;}
.w0_c00470{width:579.975000px;}
.x0_c00470{left:0.000000px;}
.x1_c00470{left:65.250000px;}
.x2_c00470{left:66.450000px;}
.x3_c00470{left:67.500000px;}
.x4_c00470{left:68.550000px;}
.x5_c00470{left:69.600000px;}
.x6_c00470{left:71.250000px;}
.x7_c00470{left:72.600000px;}
.x8_c00470{left:75.000000px;}
.x9_c00470{left:94.200000px;}
.xa_c00470{left:120.150000px;}
.xc_c00470{left:156.300000px;}
.xb_c00470{left:160.950000px;}
.x1a_c00470{left:241.801758px;}
.x16_c00470{left:283.200000px;}
.x15_c00470{left:285.150000px;}
.x14_c00470{left:286.500000px;}
.x17_c00470{left:287.850000px;}
.x12_c00470{left:288.900000px;}
.x18_c00470{left:290.250000px;}
.xf_c00470{left:296.100000px;}
.x10_c00470{left:312.900000px;}
.xe_c00470{left:316.950000px;}
.x13_c00470{left:322.650000px;}
.xd_c00470{left:360.450000px;}
.x11_c00470{left:366.300000px;}
.x19_c00470{left:447.600000px;}
@media print{
.v0_c00470{vertical-align:0.000000pt;}
.v1_c00470{vertical-align:66.133333pt;}
.ls2_c00470{letter-spacing:0.000000pt;}
.ls1_c00470{letter-spacing:1.058667pt;}
.ls3_c00470{letter-spacing:2.666667pt;}
.ls0_c00470{letter-spacing:5.333333pt;}
.ls4_c00470{letter-spacing:10.666667pt;}
.ws4_c00470{word-spacing:-33.552000pt;}
.ws2_c00470{word-spacing:-23.333333pt;}
.ws6_c00470{word-spacing:-19.621333pt;}
.ws3_c00470{word-spacing:-18.000000pt;}
.ws0_c00470{word-spacing:-12.746667pt;}
.ws5_c00470{word-spacing:-12.586667pt;}
.ws1_c00470{word-spacing:-2.744000pt;}
.ws7_c00470{word-spacing:0.000000pt;}
._1a_c00470{margin-left:-17.320000pt;}
._1d_c00470{margin-left:-12.906667pt;}
._1e_c00470{margin-left:-10.240000pt;}
._18_c00470{margin-left:-7.952000pt;}
._19_c00470{margin-left:-7.032000pt;}
._a_c00470{margin-left:-5.973333pt;}
._8_c00470{margin-left:-4.693333pt;}
._9_c00470{margin-left:-3.680000pt;}
._0_c00470{margin-left:-1.920000pt;}
._d_c00470{margin-left:-1.013333pt;}
._3_c00470{width:1.066667pt;}
._6_c00470{width:2.293333pt;}
._5_c00470{width:3.413333pt;}
._15_c00470{width:4.320000pt;}
._10_c00470{width:5.226667pt;}
._b_c00470{width:6.453333pt;}
._e_c00470{width:7.573333pt;}
._1_c00470{width:8.533333pt;}
._f_c00470{width:10.346667pt;}
._7_c00470{width:11.253333pt;}
._c_c00470{width:14.400000pt;}
._4_c00470{width:15.573333pt;}
._2_c00470{width:16.800000pt;}
._16_c00470{width:18.986667pt;}
._11_c00470{width:20.426667pt;}
._12_c00470{width:21.600000pt;}
._1f_c00470{width:22.986667pt;}
._13_c00470{width:24.266667pt;}
._17_c00470{width:25.386667pt;}
._20_c00470{width:28.640000pt;}
._14_c00470{width:33.120000pt;}
._1b_c00470{width:142.720000pt;}
._1c_c00470{width:160.266667pt;}
.fs6_c00470{font-size:42.666667pt;}
.fs1_c00470{font-size:50.666667pt;}
.fs0_c00470{font-size:53.333333pt;}
.fs3_c00470{font-size:56.000000pt;}
.fs4_c00470{font-size:58.666667pt;}
.fs2_c00470{font-size:77.333333pt;}
.fs5_c00470{font-size:141.333333pt;}
.y0_c00470{bottom:0.000000pt;}
.y4b_c00470{bottom:2.760000pt;}
.y4a_c00470{bottom:6.425212pt;}
.y49_c00470{bottom:34.533333pt;}
.y48_c00470{bottom:51.866667pt;}
.y25_c00470{bottom:65.600000pt;}
.y47_c00470{bottom:68.400000pt;}
.y46_c00470{bottom:84.533333pt;}
.y45_c00470{bottom:100.533333pt;}
.y44_c00470{bottom:116.666667pt;}
.y43_c00470{bottom:132.533333pt;}
.y24_c00470{bottom:133.466667pt;}
.y42_c00470{bottom:148.533333pt;}
.y23_c00470{bottom:149.066667pt;}
.y22_c00470{bottom:164.933333pt;}
.y41_c00470{bottom:180.933333pt;}
.y21_c00470{bottom:182.000000pt;}
.y40_c00470{bottom:196.800000pt;}
.y20_c00470{bottom:198.533333pt;}
.y3f_c00470{bottom:213.200000pt;}
.y1f_c00470{bottom:214.400000pt;}
.y3e_c00470{bottom:229.200000pt;}
.y1e_c00470{bottom:230.666667pt;}
.y3d_c00470{bottom:245.733333pt;}
.y1d_c00470{bottom:246.800000pt;}
.y3c_c00470{bottom:261.200000pt;}
.y1c_c00470{bottom:262.400000pt;}
.y3b_c00470{bottom:277.733333pt;}
.y1b_c00470{bottom:278.400000pt;}
.y3a_c00470{bottom:293.733333pt;}
.y1a_c00470{bottom:294.533333pt;}
.y39_c00470{bottom:309.866667pt;}
.y19_c00470{bottom:310.533333pt;}
.y38_c00470{bottom:325.733333pt;}
.y18_c00470{bottom:326.666667pt;}
.y37_c00470{bottom:341.333333pt;}
.y17_c00470{bottom:342.533333pt;}
.y16_c00470{bottom:358.400000pt;}
.y36_c00470{bottom:374.000000pt;}
.y15_c00470{bottom:374.666667pt;}
.y35_c00470{bottom:390.000000pt;}
.y14_c00470{bottom:390.800000pt;}
.y34_c00470{bottom:405.866667pt;}
.y13_c00470{bottom:406.800000pt;}
.y12_c00470{bottom:422.666667pt;}
.y33_c00470{bottom:423.333333pt;}
.y32_c00470{bottom:438.266667pt;}
.y11_c00470{bottom:438.933333pt;}
.y31_c00470{bottom:453.600000pt;}
.y10_c00470{bottom:454.800000pt;}
.yf_c00470{bottom:470.133333pt;}
.ye_c00470{bottom:485.066667pt;}
.y30_c00470{bottom:485.733333pt;}
.yd_c00470{bottom:500.933333pt;}
.y2f_c00470{bottom:501.866667pt;}
.yc_c00470{bottom:517.466667pt;}
.y2e_c00470{bottom:518.000000pt;}
.yb_c00470{bottom:533.333333pt;}
.y2d_c00470{bottom:533.600000pt;}
.y2b_c00470{bottom:548.933333pt;}
.ya_c00470{bottom:549.333333pt;}
.y2c_c00470{bottom:549.600000pt;}
.y9_c00470{bottom:565.600000pt;}
.y8_c00470{bottom:581.733333pt;}
.y2a_c00470{bottom:597.333333pt;}
.y7_c00470{bottom:597.866667pt;}
.y29_c00470{bottom:613.466667pt;}
.y6_c00470{bottom:614.133333pt;}
.y28_c00470{bottom:629.733333pt;}
.y5_c00470{bottom:630.266667pt;}
.y27_c00470{bottom:646.400000pt;}
.y4_c00470{bottom:646.533333pt;}
.y3_c00470{bottom:662.400000pt;}
.y26_c00470{bottom:677.600000pt;}
.y2_c00470{bottom:678.533333pt;}
.y1_c00470{bottom:695.066667pt;}
.h9_c00470{height:11.733399pt;}
.ha_c00470{height:38.937500pt;}
.h4_c00470{height:49.726562pt;}
.h1_c00470{height:55.893333pt;}
.h3_c00470{height:58.688000pt;}
.h5_c00470{height:61.482667pt;}
.h8_c00470{height:62.597333pt;}
.h6_c00470{height:63.594667pt;}
.h2_c00470{height:82.514667pt;}
.h7_c00470{height:148.117333pt;}
.h0_c00470{height:750.000000pt;}
.w2_c00470{width:93.222667pt;}
.w1_c00470{width:515.333333pt;}
.w0_c00470{width:515.533333pt;}
.x0_c00470{left:0.000000pt;}
.x1_c00470{left:58.000000pt;}
.x2_c00470{left:59.066667pt;}
.x3_c00470{left:60.000000pt;}
.x4_c00470{left:60.933333pt;}
.x5_c00470{left:61.866667pt;}
.x6_c00470{left:63.333333pt;}
.x7_c00470{left:64.533333pt;}
.x8_c00470{left:66.666667pt;}
.x9_c00470{left:83.733333pt;}
.xa_c00470{left:106.800000pt;}
.xc_c00470{left:138.933333pt;}
.xb_c00470{left:143.066667pt;}
.x1a_c00470{left:214.934896pt;}
.x16_c00470{left:251.733333pt;}
.x15_c00470{left:253.466667pt;}
.x14_c00470{left:254.666667pt;}
.x17_c00470{left:255.866667pt;}
.x12_c00470{left:256.800000pt;}
.x18_c00470{left:258.000000pt;}
.xf_c00470{left:263.200000pt;}
.x10_c00470{left:278.133333pt;}
.xe_c00470{left:281.733333pt;}
.x13_c00470{left:286.800000pt;}
.xd_c00470{left:320.400000pt;}
.x11_c00470{left:325.600000pt;}
.x19_c00470{left:397.866667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f3d1c8d47e810515b14da76b.woff2')format("woff");}.ff1_c00471{font-family:ff1_c00471;line-height:1.437000;font-style:normal;font-weight:normal;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_1ebc09239691dccdc283774e.woff2')format("woff");}.ff2_c00471{font-family:ff2_c00471;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00471;src:url('chunks/assets/font_9bcde64fc46fb6f0bb4b38dd.woff2')format("woff");}.ff3_c00471{font-family:ff3_c00471;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00471;src:url('chunks/assets/font_82ccb971652b65a77bbe2676.woff2')format("woff");}.ff4_c00471{font-family:ff4_c00471;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00471;src:url('chunks/assets/font_2990c4832b815544faea9023.woff2')format("woff");}.ff5_c00471{font-family:ff5_c00471;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00471;src:url('chunks/assets/font_7e96cdecb98412e9f8a65d30.woff2')format("woff");}.ff6_c00471{font-family:ff6_c00471;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00471;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff7_c00471{font-family:ff7_c00471;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00471{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00471{vertical-align:-1.800000px;}
.v0_c00471{vertical-align:0.000000px;}
.ls6_c00471{letter-spacing:0.000000px;}
.ls0_c00471{letter-spacing:2.640000px;}
.ls1_c00471{letter-spacing:7.281000px;}
.ls7_c00471{letter-spacing:9.000000px;}
.ls4_c00471{letter-spacing:9.987000px;}
.ls3_c00471{letter-spacing:10.290000px;}
.ls5_c00471{letter-spacing:13.377000px;}
.ls2_c00471{letter-spacing:68.940000px;}
.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:-30.895200px;}
.ws3_c00471{word-spacing:-22.572000px;}
.ws1_c00471{word-spacing:-15.813000px;}
.ws2_c00471{word-spacing:-13.452000px;}
.ws4_c00471{word-spacing:-3.984000px;}
.ws5_c00471{word-spacing:0.000000px;}
._20_c00471{margin-left:-13.671000px;}
._1e_c00471{margin-left:-12.558000px;}
._21_c00471{margin-left:-11.376000px;}
._15_c00471{margin-left:-10.206000px;}
._10_c00471{margin-left:-7.938000px;}
._1c_c00471{margin-left:-6.615000px;}
._16_c00471{margin-left:-4.662000px;}
._a_c00471{margin-left:-3.276000px;}
._d_c00471{margin-left:-1.953000px;}
._b_c00471{width:1.071000px;}
._8_c00471{width:2.268000px;}
._9_c00471{width:3.339000px;}
._7_c00471{width:4.977000px;}
._e_c00471{width:6.048000px;}
._0_c00471{width:7.056000px;}
._14_c00471{width:8.253000px;}
._2_c00471{width:9.387000px;}
._5_c00471{width:11.025000px;}
._4_c00471{width:12.033000px;}
._3_c00471{width:13.860000px;}
._1f_c00471{width:15.063000px;}
._1b_c00471{width:17.274000px;}
._f_c00471{width:18.711000px;}
._12_c00471{width:19.719000px;}
._11_c00471{width:21.609000px;}
._1a_c00471{width:23.562000px;}
._13_c00471{width:25.074000px;}
._19_c00471{width:26.397000px;}
._6_c00471{width:30.681000px;}
._17_c00471{width:32.823000px;}
._18_c00471{width:34.902000px;}
._1d_c00471{width:37.611000px;}
._23_c00471{width:38.871000px;}
._c_c00471{width:75.978000px;}
._22_c00471{width:132.537000px;}
._1_c00471{width:205.443000px;}
.fc2_c00471{color:transparent;}
.fc1_c00471{color:rgb(128,128,128);}
.fc0_c00471{color:rgb(0,0,0);}
.fs4_c00471{font-size:45.600000px;}
.fs5_c00471{font-size:48.000000px;}
.fs2_c00471{font-size:50.400000px;}
.fs3_c00471{font-size:57.000000px;}
.fs1_c00471{font-size:60.000000px;}
.fs0_c00471{font-size:63.000000px;}
.y0_c00471{bottom:0.000000px;}
.y52_c00471{bottom:3.105000px;}
.y51_c00471{bottom:7.228371px;}
.y50_c00471{bottom:45.915000px;}
.y2a_c00471{bottom:60.165000px;}
.y4f_c00471{bottom:62.865000px;}
.y29_c00471{bottom:79.065000px;}
.y4e_c00471{bottom:81.765000px;}
.y28_c00471{bottom:97.515000px;}
.y4d_c00471{bottom:100.365000px;}
.y27_c00471{bottom:115.815000px;}
.y4c_c00471{bottom:118.215000px;}
.y26_c00471{bottom:133.965000px;}
.y4b_c00471{bottom:136.815000px;}
.y25_c00471{bottom:151.965000px;}
.y4a_c00471{bottom:154.965000px;}
.y24_c00471{bottom:170.415000px;}
.y49_c00471{bottom:172.815000px;}
.y23_c00471{bottom:188.415000px;}
.y48_c00471{bottom:191.415000px;}
.y22_c00471{bottom:207.315000px;}
.y47_c00471{bottom:209.265000px;}
.y21_c00471{bottom:224.565000px;}
.y46_c00471{bottom:227.565000px;}
.y20_c00471{bottom:242.415000px;}
.y45_c00471{bottom:245.715000px;}
.y1f_c00471{bottom:260.265000px;}
.y44_c00471{bottom:263.715000px;}
.y1e_c00471{bottom:279.165000px;}
.y43_c00471{bottom:281.565000px;}
.y1d_c00471{bottom:296.415000px;}
.y42_c00471{bottom:299.415000px;}
.y1c_c00471{bottom:315.015000px;}
.y41_c00471{bottom:317.715000px;}
.y1b_c00471{bottom:332.865000px;}
.y1a_c00471{bottom:351.315000px;}
.y40_c00471{bottom:353.115000px;}
.y19_c00471{bottom:369.315000px;}
.y3f_c00471{bottom:371.265000px;}
.y18_c00471{bottom:386.565000px;}
.y3e_c00471{bottom:389.265000px;}
.y17_c00471{bottom:405.465000px;}
.y16_c00471{bottom:422.865000px;}
.y3d_c00471{bottom:426.315000px;}
.y15_c00471{bottom:441.465000px;}
.y14_c00471{bottom:459.765000px;}
.y3c_c00471{bottom:461.715000px;}
.y13_c00471{bottom:477.315000px;}
.y3b_c00471{bottom:479.565000px;}
.y12_c00471{bottom:495.165000px;}
.y3a_c00471{bottom:497.265000px;}
.y11_c00471{bottom:514.065000px;}
.y39_c00471{bottom:516.015000px;}
.y10_c00471{bottom:532.365000px;}
.y38_c00471{bottom:534.015000px;}
.yf_c00471{bottom:549.765000px;}
.y37_c00471{bottom:551.565000px;}
.ye_c00471{bottom:568.365000px;}
.y36_c00471{bottom:569.715000px;}
.yd_c00471{bottom:586.215000px;}
.y35_c00471{bottom:587.565000px;}
.yc_c00471{bottom:603.915000px;}
.y34_c00471{bottom:605.865000px;}
.yb_c00471{bottom:622.365000px;}
.y33_c00471{bottom:624.015000px;}
.ya_c00471{bottom:640.215000px;}
.y32_c00471{bottom:641.715000px;}
.y9_c00471{bottom:658.215000px;}
.y31_c00471{bottom:660.465000px;}
.y8_c00471{bottom:676.815000px;}
.y30_c00471{bottom:678.165000px;}
.y7_c00471{bottom:694.965000px;}
.y2f_c00471{bottom:696.315000px;}
.y6_c00471{bottom:713.115000px;}
.y2e_c00471{bottom:714.465000px;}
.y5_c00471{bottom:731.115000px;}
.y2d_c00471{bottom:732.015000px;}
.y4_c00471{bottom:749.265000px;}
.y2c_c00471{bottom:750.615000px;}
.y3_c00471{bottom:767.265000px;}
.y2b_c00471{bottom:768.915000px;}
.y2_c00471{bottom:786.015000px;}
.y1_c00471{bottom:805.065000px;}
.h5_c00471{height:13.200074px;}
.h6_c00471{height:43.804688px;}
.h3_c00471{height:59.736000px;}
.h4_c00471{height:64.224000px;}
.h2_c00471{height:66.024000px;}
.h0_c00471{height:848.625000px;}
.h1_c00471{height:849.000000px;}
.w2_c00471{width:104.875500px;}
.w1_c00471{width:579.750000px;}
.w0_c00471{width:579.975000px;}
.x0_c00471{left:0.000000px;}
.x8_c00471{left:85.350000px;}
.x7_c00471{left:86.400000px;}
.x6_c00471{left:88.350000px;}
.x5_c00471{left:89.400000px;}
.x4_c00471{left:90.750000px;}
.x2_c00471{left:92.100000px;}
.x3_c00471{left:93.600000px;}
.x1_c00471{left:97.200000px;}
.x13_c00471{left:241.801758px;}
.x10_c00471{left:309.450000px;}
.x11_c00471{left:310.800000px;}
.xf_c00471{left:311.850000px;}
.x9_c00471{left:312.900000px;}
.xa_c00471{left:314.250000px;}
.xd_c00471{left:321.900000px;}
.xc_c00471{left:342.600000px;}
.xe_c00471{left:377.550000px;}
.xb_c00471{left:406.350000px;}
.x12_c00471{left:483.000000px;}
@media print{
.v1_c00471{vertical-align:-1.600000pt;}
.v0_c00471{vertical-align:0.000000pt;}
.ls6_c00471{letter-spacing:0.000000pt;}
.ls0_c00471{letter-spacing:2.346667pt;}
.ls1_c00471{letter-spacing:6.472000pt;}
.ls7_c00471{letter-spacing:8.000000pt;}
.ls4_c00471{letter-spacing:8.877333pt;}
.ls3_c00471{letter-spacing:9.146667pt;}
.ls5_c00471{letter-spacing:11.890667pt;}
.ls2_c00471{letter-spacing:61.280000pt;}
.ws0_c00471{word-spacing:-27.462400pt;}
.ws3_c00471{word-spacing:-20.064000pt;}
.ws1_c00471{word-spacing:-14.056000pt;}
.ws2_c00471{word-spacing:-11.957333pt;}
.ws4_c00471{word-spacing:-3.541333pt;}
.ws5_c00471{word-spacing:0.000000pt;}
._20_c00471{margin-left:-12.152000pt;}
._1e_c00471{margin-left:-11.162667pt;}
._21_c00471{margin-left:-10.112000pt;}
._15_c00471{margin-left:-9.072000pt;}
._10_c00471{margin-left:-7.056000pt;}
._1c_c00471{margin-left:-5.880000pt;}
._16_c00471{margin-left:-4.144000pt;}
._a_c00471{margin-left:-2.912000pt;}
._d_c00471{margin-left:-1.736000pt;}
._b_c00471{width:0.952000pt;}
._8_c00471{width:2.016000pt;}
._9_c00471{width:2.968000pt;}
._7_c00471{width:4.424000pt;}
._e_c00471{width:5.376000pt;}
._0_c00471{width:6.272000pt;}
._14_c00471{width:7.336000pt;}
._2_c00471{width:8.344000pt;}
._5_c00471{width:9.800000pt;}
._4_c00471{width:10.696000pt;}
._3_c00471{width:12.320000pt;}
._1f_c00471{width:13.389333pt;}
._1b_c00471{width:15.354667pt;}
._f_c00471{width:16.632000pt;}
._12_c00471{width:17.528000pt;}
._11_c00471{width:19.208000pt;}
._1a_c00471{width:20.944000pt;}
._13_c00471{width:22.288000pt;}
._19_c00471{width:23.464000pt;}
._6_c00471{width:27.272000pt;}
._17_c00471{width:29.176000pt;}
._18_c00471{width:31.024000pt;}
._1d_c00471{width:33.432000pt;}
._23_c00471{width:34.552000pt;}
._c_c00471{width:67.536000pt;}
._22_c00471{width:117.810667pt;}
._1_c00471{width:182.616000pt;}
.fs4_c00471{font-size:40.533333pt;}
.fs5_c00471{font-size:42.666667pt;}
.fs2_c00471{font-size:44.800000pt;}
.fs3_c00471{font-size:50.666667pt;}
.fs1_c00471{font-size:53.333333pt;}
.fs0_c00471{font-size:56.000000pt;}
.y0_c00471{bottom:0.000000pt;}
.y52_c00471{bottom:2.760000pt;}
.y51_c00471{bottom:6.425219pt;}
.y50_c00471{bottom:40.813333pt;}
.y2a_c00471{bottom:53.480000pt;}
.y4f_c00471{bottom:55.880000pt;}
.y29_c00471{bottom:70.280000pt;}
.y4e_c00471{bottom:72.680000pt;}
.y28_c00471{bottom:86.680000pt;}
.y4d_c00471{bottom:89.213333pt;}
.y27_c00471{bottom:102.946667pt;}
.y4c_c00471{bottom:105.080000pt;}
.y26_c00471{bottom:119.080000pt;}
.y4b_c00471{bottom:121.613333pt;}
.y25_c00471{bottom:135.080000pt;}
.y4a_c00471{bottom:137.746667pt;}
.y24_c00471{bottom:151.480000pt;}
.y49_c00471{bottom:153.613333pt;}
.y23_c00471{bottom:167.480000pt;}
.y48_c00471{bottom:170.146667pt;}
.y22_c00471{bottom:184.280000pt;}
.y47_c00471{bottom:186.013333pt;}
.y21_c00471{bottom:199.613333pt;}
.y46_c00471{bottom:202.280000pt;}
.y20_c00471{bottom:215.480000pt;}
.y45_c00471{bottom:218.413333pt;}
.y1f_c00471{bottom:231.346667pt;}
.y44_c00471{bottom:234.413333pt;}
.y1e_c00471{bottom:248.146667pt;}
.y43_c00471{bottom:250.280000pt;}
.y1d_c00471{bottom:263.480000pt;}
.y42_c00471{bottom:266.146667pt;}
.y1c_c00471{bottom:280.013333pt;}
.y41_c00471{bottom:282.413333pt;}
.y1b_c00471{bottom:295.880000pt;}
.y1a_c00471{bottom:312.280000pt;}
.y40_c00471{bottom:313.880000pt;}
.y19_c00471{bottom:328.280000pt;}
.y3f_c00471{bottom:330.013333pt;}
.y18_c00471{bottom:343.613333pt;}
.y3e_c00471{bottom:346.013333pt;}
.y17_c00471{bottom:360.413333pt;}
.y16_c00471{bottom:375.880000pt;}
.y3d_c00471{bottom:378.946667pt;}
.y15_c00471{bottom:392.413333pt;}
.y14_c00471{bottom:408.680000pt;}
.y3c_c00471{bottom:410.413333pt;}
.y13_c00471{bottom:424.280000pt;}
.y3b_c00471{bottom:426.280000pt;}
.y12_c00471{bottom:440.146667pt;}
.y3a_c00471{bottom:442.013333pt;}
.y11_c00471{bottom:456.946667pt;}
.y39_c00471{bottom:458.680000pt;}
.y10_c00471{bottom:473.213333pt;}
.y38_c00471{bottom:474.680000pt;}
.yf_c00471{bottom:488.680000pt;}
.y37_c00471{bottom:490.280000pt;}
.ye_c00471{bottom:505.213333pt;}
.y36_c00471{bottom:506.413333pt;}
.yd_c00471{bottom:521.080000pt;}
.y35_c00471{bottom:522.280000pt;}
.yc_c00471{bottom:536.813333pt;}
.y34_c00471{bottom:538.546667pt;}
.yb_c00471{bottom:553.213333pt;}
.y33_c00471{bottom:554.680000pt;}
.ya_c00471{bottom:569.080000pt;}
.y32_c00471{bottom:570.413333pt;}
.y9_c00471{bottom:585.080000pt;}
.y31_c00471{bottom:587.080000pt;}
.y8_c00471{bottom:601.613333pt;}
.y30_c00471{bottom:602.813333pt;}
.y7_c00471{bottom:617.746667pt;}
.y2f_c00471{bottom:618.946667pt;}
.y6_c00471{bottom:633.880000pt;}
.y2e_c00471{bottom:635.080000pt;}
.y5_c00471{bottom:649.880000pt;}
.y2d_c00471{bottom:650.680000pt;}
.y4_c00471{bottom:666.013333pt;}
.y2c_c00471{bottom:667.213333pt;}
.y3_c00471{bottom:682.013333pt;}
.y2b_c00471{bottom:683.480000pt;}
.y2_c00471{bottom:698.680000pt;}
.y1_c00471{bottom:715.613333pt;}
.h5_c00471{height:11.733399pt;}
.h6_c00471{height:38.937500pt;}
.h3_c00471{height:53.098667pt;}
.h4_c00471{height:57.088000pt;}
.h2_c00471{height:58.688000pt;}
.h0_c00471{height:754.333333pt;}
.h1_c00471{height:754.666667pt;}
.w2_c00471{width:93.222667pt;}
.w1_c00471{width:515.333333pt;}
.w0_c00471{width:515.533333pt;}
.x0_c00471{left:0.000000pt;}
.x8_c00471{left:75.866667pt;}
.x7_c00471{left:76.800000pt;}
.x6_c00471{left:78.533333pt;}
.x5_c00471{left:79.466667pt;}
.x4_c00471{left:80.666667pt;}
.x2_c00471{left:81.866667pt;}
.x3_c00471{left:83.200000pt;}
.x1_c00471{left:86.400000pt;}
.x13_c00471{left:214.934896pt;}
.x10_c00471{left:275.066667pt;}
.x11_c00471{left:276.266667pt;}
.xf_c00471{left:277.200000pt;}
.x9_c00471{left:278.133333pt;}
.xa_c00471{left:279.333333pt;}
.xd_c00471{left:286.133333pt;}
.xc_c00471{left:304.533333pt;}
.xe_c00471{left:335.600000pt;}
.xb_c00471{left:361.200000pt;}
.x12_c00471{left:429.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d8afae49b8593fe2490e9e52.woff2')format("woff");}.ff1_c00472{font-family:ff1_c00472;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00472;src:url('chunks/assets/font_6a142ecb7c70e55eb9e3f930.woff2')format("woff");}.ff2_c00472{font-family:ff2_c00472;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00472;src:url('chunks/assets/font_6905eb852a856a6444dac7f3.woff2')format("woff");}.ff3_c00472{font-family:ff3_c00472;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00472;src:url('chunks/assets/font_07f6b932113d9c1d6425f112.woff2')format("woff");}.ff4_c00472{font-family:ff4_c00472;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00472;src:url('chunks/assets/font_1fc9b1ffc3822635f3abe0c5.woff2')format("woff");}.ff5_c00472{font-family:ff5_c00472;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00472;src:url('chunks/assets/font_4538a675d10b166417166385.woff2')format("woff");}.ff6_c00472{font-family:ff6_c00472;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00472;src:url('chunks/assets/font_468b0a9034418fbd5885d447.woff2')format("woff");}.ff7_c00472{font-family:ff7_c00472;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00472;src:url('chunks/assets/font_72fca7cbc628048a562eacd4.woff2')format("woff");}.ff8_c00472{font-family:ff8_c00472;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00472;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff9_c00472{font-family:ff9_c00472;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00472{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00472{vertical-align:0.000000px;}
.ls8_c00472{letter-spacing:-6.000000px;}
.ls6_c00472{letter-spacing:0.000000px;}
.ls7_c00472{letter-spacing:3.000000px;}
.ls0_c00472{letter-spacing:5.700000px;}
.ls1_c00472{letter-spacing:7.200000px;}
.ls5_c00472{letter-spacing:9.150000px;}
.ls2_c00472{letter-spacing:12.660000px;}
.ls4_c00472{letter-spacing:15.660000px;}
.ls3_c00472{letter-spacing:28.893000px;}
.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;}
}
.ws8_c00472{word-spacing:-49.680000px;}
.ws7_c00472{word-spacing:-39.744000px;}
.ws2_c00472{word-spacing:-15.813000px;}
.ws6_c00472{word-spacing:-15.000000px;}
.ws4_c00472{word-spacing:-14.427000px;}
.ws0_c00472{word-spacing:-14.340000px;}
.ws1_c00472{word-spacing:-14.160000px;}
.ws3_c00472{word-spacing:-13.452000px;}
.ws5_c00472{word-spacing:-7.452000px;}
.ws9_c00472{word-spacing:0.000000px;}
._2b_c00472{margin-left:-21.069000px;}
._24_c00472{margin-left:-13.173000px;}
._11_c00472{margin-left:-10.659000px;}
._1f_c00472{margin-left:-8.640000px;}
._12_c00472{margin-left:-7.239000px;}
._d_c00472{margin-left:-6.156000px;}
._1b_c00472{margin-left:-4.401000px;}
._9_c00472{margin-left:-3.276000px;}
._6_c00472{margin-left:-1.320000px;}
._7_c00472{width:1.653000px;}
._15_c00472{width:2.679000px;}
._a_c00472{width:3.717000px;}
._c_c00472{width:5.118000px;}
._b_c00472{width:6.222000px;}
._8_c00472{width:7.560000px;}
._e_c00472{width:9.327000px;}
._5_c00472{width:10.395000px;}
._20_c00472{width:11.454000px;}
._1_c00472{width:12.915000px;}
._1a_c00472{width:14.265000px;}
._17_c00472{width:15.504000px;}
._0_c00472{width:16.884000px;}
._19_c00472{width:18.636000px;}
._f_c00472{width:19.674000px;}
._3_c00472{width:20.853000px;}
._4_c00472{width:22.995000px;}
._1c_c00472{width:24.993000px;}
._16_c00472{width:26.733000px;}
._14_c00472{width:27.930000px;}
._10_c00472{width:29.064000px;}
._2c_c00472{width:31.053000px;}
._27_c00472{width:34.635000px;}
._1d_c00472{width:36.456000px;}
._2_c00472{width:40.257000px;}
._1e_c00472{width:41.439000px;}
._2d_c00472{width:43.800000px;}
._2a_c00472{width:51.360000px;}
._29_c00472{width:57.063000px;}
._25_c00472{width:112.053000px;}
._26_c00472{width:129.603000px;}
._22_c00472{width:157.233000px;}
._13_c00472{width:177.612000px;}
._23_c00472{width:185.913000px;}
._28_c00472{width:204.915000px;}
._18_c00472{width:251.520000px;}
._21_c00472{width:494.295000px;}
.fc2_c00472{color:transparent;}
.fc1_c00472{color:rgb(128,128,128);}
.fc0_c00472{color:rgb(0,0,0);}
.fs3_c00472{font-size:39.000000px;}
.fs4_c00472{font-size:48.000000px;}
.fs2_c00472{font-size:57.000000px;}
.fs1_c00472{font-size:60.000000px;}
.fs0_c00472{font-size:63.000000px;}
.y0_c00472{bottom:0.000000px;}
.y56_c00472{bottom:3.105000px;}
.y55_c00472{bottom:7.228363px;}
.y54_c00472{bottom:32.400000px;}
.y53_c00472{bottom:53.100000px;}
.y2a_c00472{bottom:54.300000px;}
.y52_c00472{bottom:72.600000px;}
.y29_c00472{bottom:73.800000px;}
.y51_c00472{bottom:90.750000px;}
.y28_c00472{bottom:92.100000px;}
.y50_c00472{bottom:109.050000px;}
.y27_c00472{bottom:110.700000px;}
.y4f_c00472{bottom:127.200000px;}
.y26_c00472{bottom:129.300000px;}
.y4e_c00472{bottom:145.200000px;}
.y25_c00472{bottom:147.600000px;}
.y4d_c00472{bottom:163.650000px;}
.y24_c00472{bottom:166.050000px;}
.y4c_c00472{bottom:182.550000px;}
.y23_c00472{bottom:184.050000px;}
.y4b_c00472{bottom:200.100000px;}
.y22_c00472{bottom:202.800000px;}
.y4a_c00472{bottom:220.050000px;}
.y21_c00472{bottom:220.800000px;}
.y49_c00472{bottom:234.900000px;}
.y20_c00472{bottom:239.250000px;}
.y48_c00472{bottom:255.600000px;}
.y1f_c00472{bottom:257.250000px;}
.y47_c00472{bottom:275.100000px;}
.y1e_c00472{bottom:275.400000px;}
.y46_c00472{bottom:292.950000px;}
.y1d_c00472{bottom:293.700000px;}
.y1c_c00472{bottom:311.250000px;}
.y45_c00472{bottom:312.150000px;}
.y1b_c00472{bottom:329.700000px;}
.y1a_c00472{bottom:348.000000px;}
.y44_c00472{bottom:348.750000px;}
.y19_c00472{bottom:366.300000px;}
.y43_c00472{bottom:367.650000px;}
.y18_c00472{bottom:384.150000px;}
.y42_c00472{bottom:385.500000px;}
.y17_c00472{bottom:402.750000px;}
.y41_c00472{bottom:403.950000px;}
.y16_c00472{bottom:420.450000px;}
.y40_c00472{bottom:421.500000px;}
.y15_c00472{bottom:439.350000px;}
.y3f_c00472{bottom:440.550000px;}
.y14_c00472{bottom:457.350000px;}
.y3e_c00472{bottom:459.450000px;}
.y13_c00472{bottom:475.200000px;}
.y3d_c00472{bottom:477.300000px;}
.y12_c00472{bottom:494.100000px;}
.y3c_c00472{bottom:495.900000px;}
.y11_c00472{bottom:511.950000px;}
.y3b_c00472{bottom:514.350000px;}
.y10_c00472{bottom:528.900000px;}
.y3a_c00472{bottom:532.350000px;}
.yf_c00472{bottom:546.750000px;}
.y39_c00472{bottom:549.900000px;}
.ye_c00472{bottom:565.200000px;}
.y38_c00472{bottom:568.800000px;}
.yd_c00472{bottom:583.500000px;}
.y37_c00472{bottom:587.550000px;}
.yc_c00472{bottom:601.350000px;}
.y36_c00472{bottom:605.550000px;}
.yb_c00472{bottom:619.650000px;}
.y35_c00472{bottom:623.700000px;}
.ya_c00472{bottom:636.900000px;}
.y34_c00472{bottom:642.600000px;}
.y9_c00472{bottom:655.800000px;}
.y33_c00472{bottom:659.850000px;}
.y8_c00472{bottom:673.950000px;}
.y32_c00472{bottom:678.450000px;}
.y7_c00472{bottom:691.500000px;}
.y31_c00472{bottom:696.900000px;}
.y6_c00472{bottom:710.100000px;}
.y30_c00472{bottom:714.600000px;}
.y5_c00472{bottom:728.700000px;}
.y2f_c00472{bottom:733.350000px;}
.y4_c00472{bottom:746.550000px;}
.y2e_c00472{bottom:751.350000px;}
.y3_c00472{bottom:765.450000px;}
.y2d_c00472{bottom:769.050000px;}
.y2_c00472{bottom:783.900000px;}
.y2c_c00472{bottom:788.700000px;}
.y1_c00472{bottom:805.650000px;}
.y2b_c00472{bottom:807.750000px;}
.h7_c00472{height:13.200074px;}
.h8_c00472{height:43.804688px;}
.h3_c00472{height:59.736000px;}
.h2_c00472{height:62.880000px;}
.h6_c00472{height:65.040000px;}
.h1_c00472{height:66.024000px;}
.h4_c00472{height:66.624000px;}
.h5_c00472{height:67.221000px;}
.h0_c00472{height:843.750000px;}
.w2_c00472{width:104.875500px;}
.w1_c00472{width:579.750000px;}
.w0_c00472{width:579.975000px;}
.x0_c00472{left:0.000000px;}
.x5_c00472{left:15.300000px;}
.xa_c00472{left:71.550000px;}
.x2_c00472{left:73.950000px;}
.x3_c00472{left:75.900000px;}
.x4_c00472{left:77.400000px;}
.x6_c00472{left:78.600000px;}
.x7_c00472{left:80.400000px;}
.x8_c00472{left:81.450000px;}
.x9_c00472{left:82.650000px;}
.x1_c00472{left:195.150000px;}
.x17_c00472{left:241.801758px;}
.xb_c00472{left:284.250000px;}
.xe_c00472{left:293.850000px;}
.xc_c00472{left:295.350000px;}
.xf_c00472{left:296.400000px;}
.x10_c00472{left:297.450000px;}
.x11_c00472{left:298.800000px;}
.x12_c00472{left:300.000000px;}
.x13_c00472{left:302.400000px;}
.x15_c00472{left:303.450000px;}
.xd_c00472{left:315.300000px;}
.x14_c00472{left:332.100000px;}
.x16_c00472{left:469.500000px;}
@media print{
.v0_c00472{vertical-align:0.000000pt;}
.ls8_c00472{letter-spacing:-5.333333pt;}
.ls6_c00472{letter-spacing:0.000000pt;}
.ls7_c00472{letter-spacing:2.666667pt;}
.ls0_c00472{letter-spacing:5.066667pt;}
.ls1_c00472{letter-spacing:6.400000pt;}
.ls5_c00472{letter-spacing:8.133333pt;}
.ls2_c00472{letter-spacing:11.253333pt;}
.ls4_c00472{letter-spacing:13.920000pt;}
.ls3_c00472{letter-spacing:25.682667pt;}
.ws8_c00472{word-spacing:-44.160000pt;}
.ws7_c00472{word-spacing:-35.328000pt;}
.ws2_c00472{word-spacing:-14.056000pt;}
.ws6_c00472{word-spacing:-13.333333pt;}
.ws4_c00472{word-spacing:-12.824000pt;}
.ws0_c00472{word-spacing:-12.746667pt;}
.ws1_c00472{word-spacing:-12.586667pt;}
.ws3_c00472{word-spacing:-11.957333pt;}
.ws5_c00472{word-spacing:-6.624000pt;}
.ws9_c00472{word-spacing:0.000000pt;}
._2b_c00472{margin-left:-18.728000pt;}
._24_c00472{margin-left:-11.709333pt;}
._11_c00472{margin-left:-9.474667pt;}
._1f_c00472{margin-left:-7.680000pt;}
._12_c00472{margin-left:-6.434667pt;}
._d_c00472{margin-left:-5.472000pt;}
._1b_c00472{margin-left:-3.912000pt;}
._9_c00472{margin-left:-2.912000pt;}
._6_c00472{margin-left:-1.173333pt;}
._7_c00472{width:1.469333pt;}
._15_c00472{width:2.381333pt;}
._a_c00472{width:3.304000pt;}
._c_c00472{width:4.549333pt;}
._b_c00472{width:5.530667pt;}
._8_c00472{width:6.720000pt;}
._e_c00472{width:8.290667pt;}
._5_c00472{width:9.240000pt;}
._20_c00472{width:10.181333pt;}
._1_c00472{width:11.480000pt;}
._1a_c00472{width:12.680000pt;}
._17_c00472{width:13.781333pt;}
._0_c00472{width:15.008000pt;}
._19_c00472{width:16.565333pt;}
._f_c00472{width:17.488000pt;}
._3_c00472{width:18.536000pt;}
._4_c00472{width:20.440000pt;}
._1c_c00472{width:22.216000pt;}
._16_c00472{width:23.762667pt;}
._14_c00472{width:24.826667pt;}
._10_c00472{width:25.834667pt;}
._2c_c00472{width:27.602667pt;}
._27_c00472{width:30.786667pt;}
._1d_c00472{width:32.405333pt;}
._2_c00472{width:35.784000pt;}
._1e_c00472{width:36.834667pt;}
._2d_c00472{width:38.933333pt;}
._2a_c00472{width:45.653333pt;}
._29_c00472{width:50.722667pt;}
._25_c00472{width:99.602667pt;}
._26_c00472{width:115.202667pt;}
._22_c00472{width:139.762667pt;}
._13_c00472{width:157.877333pt;}
._23_c00472{width:165.256000pt;}
._28_c00472{width:182.146667pt;}
._18_c00472{width:223.573333pt;}
._21_c00472{width:439.373333pt;}
.fs3_c00472{font-size:34.666667pt;}
.fs4_c00472{font-size:42.666667pt;}
.fs2_c00472{font-size:50.666667pt;}
.fs1_c00472{font-size:53.333333pt;}
.fs0_c00472{font-size:56.000000pt;}
.y0_c00472{bottom:0.000000pt;}
.y56_c00472{bottom:2.760000pt;}
.y55_c00472{bottom:6.425212pt;}
.y54_c00472{bottom:28.800000pt;}
.y53_c00472{bottom:47.200000pt;}
.y2a_c00472{bottom:48.266667pt;}
.y52_c00472{bottom:64.533333pt;}
.y29_c00472{bottom:65.600000pt;}
.y51_c00472{bottom:80.666667pt;}
.y28_c00472{bottom:81.866667pt;}
.y50_c00472{bottom:96.933333pt;}
.y27_c00472{bottom:98.400000pt;}
.y4f_c00472{bottom:113.066667pt;}
.y26_c00472{bottom:114.933333pt;}
.y4e_c00472{bottom:129.066667pt;}
.y25_c00472{bottom:131.200000pt;}
.y4d_c00472{bottom:145.466667pt;}
.y24_c00472{bottom:147.600000pt;}
.y4c_c00472{bottom:162.266667pt;}
.y23_c00472{bottom:163.600000pt;}
.y4b_c00472{bottom:177.866667pt;}
.y22_c00472{bottom:180.266667pt;}
.y4a_c00472{bottom:195.600000pt;}
.y21_c00472{bottom:196.266667pt;}
.y49_c00472{bottom:208.800000pt;}
.y20_c00472{bottom:212.666667pt;}
.y48_c00472{bottom:227.200000pt;}
.y1f_c00472{bottom:228.666667pt;}
.y47_c00472{bottom:244.533333pt;}
.y1e_c00472{bottom:244.800000pt;}
.y46_c00472{bottom:260.400000pt;}
.y1d_c00472{bottom:261.066667pt;}
.y1c_c00472{bottom:276.666667pt;}
.y45_c00472{bottom:277.466667pt;}
.y1b_c00472{bottom:293.066667pt;}
.y1a_c00472{bottom:309.333333pt;}
.y44_c00472{bottom:310.000000pt;}
.y19_c00472{bottom:325.600000pt;}
.y43_c00472{bottom:326.800000pt;}
.y18_c00472{bottom:341.466667pt;}
.y42_c00472{bottom:342.666667pt;}
.y17_c00472{bottom:358.000000pt;}
.y41_c00472{bottom:359.066667pt;}
.y16_c00472{bottom:373.733333pt;}
.y40_c00472{bottom:374.666667pt;}
.y15_c00472{bottom:390.533333pt;}
.y3f_c00472{bottom:391.600000pt;}
.y14_c00472{bottom:406.533333pt;}
.y3e_c00472{bottom:408.400000pt;}
.y13_c00472{bottom:422.400000pt;}
.y3d_c00472{bottom:424.266667pt;}
.y12_c00472{bottom:439.200000pt;}
.y3c_c00472{bottom:440.800000pt;}
.y11_c00472{bottom:455.066667pt;}
.y3b_c00472{bottom:457.200000pt;}
.y10_c00472{bottom:470.133333pt;}
.y3a_c00472{bottom:473.200000pt;}
.yf_c00472{bottom:486.000000pt;}
.y39_c00472{bottom:488.800000pt;}
.ye_c00472{bottom:502.400000pt;}
.y38_c00472{bottom:505.600000pt;}
.yd_c00472{bottom:518.666667pt;}
.y37_c00472{bottom:522.266667pt;}
.yc_c00472{bottom:534.533333pt;}
.y36_c00472{bottom:538.266667pt;}
.yb_c00472{bottom:550.800000pt;}
.y35_c00472{bottom:554.400000pt;}
.ya_c00472{bottom:566.133333pt;}
.y34_c00472{bottom:571.200000pt;}
.y9_c00472{bottom:582.933333pt;}
.y33_c00472{bottom:586.533333pt;}
.y8_c00472{bottom:599.066667pt;}
.y32_c00472{bottom:603.066667pt;}
.y7_c00472{bottom:614.666667pt;}
.y31_c00472{bottom:619.466667pt;}
.y6_c00472{bottom:631.200000pt;}
.y30_c00472{bottom:635.200000pt;}
.y5_c00472{bottom:647.733333pt;}
.y2f_c00472{bottom:651.866667pt;}
.y4_c00472{bottom:663.600000pt;}
.y2e_c00472{bottom:667.866667pt;}
.y3_c00472{bottom:680.400000pt;}
.y2d_c00472{bottom:683.600000pt;}
.y2_c00472{bottom:696.800000pt;}
.y2c_c00472{bottom:701.066667pt;}
.y1_c00472{bottom:716.133333pt;}
.y2b_c00472{bottom:718.000000pt;}
.h7_c00472{height:11.733399pt;}
.h8_c00472{height:38.937500pt;}
.h3_c00472{height:53.098667pt;}
.h2_c00472{height:55.893333pt;}
.h6_c00472{height:57.813333pt;}
.h1_c00472{height:58.688000pt;}
.h4_c00472{height:59.221333pt;}
.h5_c00472{height:59.752000pt;}
.h0_c00472{height:750.000000pt;}
.w2_c00472{width:93.222667pt;}
.w1_c00472{width:515.333333pt;}
.w0_c00472{width:515.533333pt;}
.x0_c00472{left:0.000000pt;}
.x5_c00472{left:13.600000pt;}
.xa_c00472{left:63.600000pt;}
.x2_c00472{left:65.733333pt;}
.x3_c00472{left:67.466667pt;}
.x4_c00472{left:68.800000pt;}
.x6_c00472{left:69.866667pt;}
.x7_c00472{left:71.466667pt;}
.x8_c00472{left:72.400000pt;}
.x9_c00472{left:73.466667pt;}
.x1_c00472{left:173.466667pt;}
.x17_c00472{left:214.934896pt;}
.xb_c00472{left:252.666667pt;}
.xe_c00472{left:261.200000pt;}
.xc_c00472{left:262.533333pt;}
.xf_c00472{left:263.466667pt;}
.x10_c00472{left:264.400000pt;}
.x11_c00472{left:265.600000pt;}
.x12_c00472{left:266.666667pt;}
.x13_c00472{left:268.800000pt;}
.x15_c00472{left:269.733333pt;}
.xd_c00472{left:280.266667pt;}
.x14_c00472{left:295.200000pt;}
.x16_c00472{left:417.333333pt;}
}





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

.ir_c00473:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00473{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00473;src:url('chunks/assets/font_7fe5c6f7338d29ff215380a2.woff2')format("woff");}.ff1_c00473{font-family:ff1_c00473;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00473;src:url('chunks/assets/font_e3d85e6e9d68be978d7fb52d.woff2')format("woff");}.ff2_c00473{font-family:ff2_c00473;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00473;src:url('chunks/assets/font_849a7fc50db3cdf17540d8ae.woff2')format("woff");}.ff3_c00473{font-family:ff3_c00473;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00473;src:url('chunks/assets/font_70dd37bd53589dbce8773040.woff2')format("woff");}.ff4_c00473{font-family:ff4_c00473;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00473;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff5_c00473{font-family:ff5_c00473;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00473{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00473{vertical-align:0.000000px;}
.ls1_c00473{letter-spacing:0.000000px;}
.ls0_c00473{letter-spacing:19.377000px;}
.ls2_c00473{letter-spacing:39.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;}
}
.ws3_c00473{word-spacing:-53.427000px;}
.ws6_c00473{word-spacing:-15.813000px;}
.ws0_c00473{word-spacing:-14.427000px;}
.ws5_c00473{word-spacing:-14.340000px;}
.ws2_c00473{word-spacing:-14.160000px;}
.ws4_c00473{word-spacing:-13.452000px;}
.ws1_c00473{word-spacing:-1.200000px;}
.ws7_c00473{word-spacing:0.000000px;}
._1e_c00473{margin-left:-19.047000px;}
._15_c00473{margin-left:-15.150000px;}
._16_c00473{margin-left:-13.596000px;}
._14_c00473{margin-left:-10.500000px;}
._17_c00473{margin-left:-9.261000px;}
._0_c00473{margin-left:-7.497000px;}
._1_c00473{margin-left:-6.174000px;}
._7_c00473{margin-left:-4.872000px;}
._2_c00473{margin-left:-3.843000px;}
._a_c00473{margin-left:-2.838000px;}
._3_c00473{margin-left:-1.794000px;}
._6_c00473{width:1.980000px;}
._d_c00473{width:2.994000px;}
._9_c00473{width:4.020000px;}
._13_c00473{width:5.232000px;}
._5_c00473{width:6.240000px;}
._1a_c00473{width:7.416000px;}
._4_c00473{width:8.520000px;}
._e_c00473{width:10.122000px;}
._c_c00473{width:11.868000px;}
._12_c00473{width:13.134000px;}
._1d_c00473{width:14.373000px;}
._8_c00473{width:16.077000px;}
._f_c00473{width:17.478000px;}
._b_c00473{width:19.440000px;}
._1f_c00473{width:22.044000px;}
._20_c00473{width:23.238000px;}
._1c_c00473{width:24.444000px;}
._10_c00473{width:25.518000px;}
._11_c00473{width:27.432000px;}
._1b_c00473{width:28.698000px;}
._21_c00473{width:29.871000px;}
._19_c00473{width:30.891000px;}
._22_c00473{width:34.476000px;}
._18_c00473{width:38.040000px;}
.fc2_c00473{color:transparent;}
.fc1_c00473{color:rgb(128,128,128);}
.fc0_c00473{color:rgb(0,0,0);}
.fs4_c00473{font-size:48.000000px;}
.fs3_c00473{font-size:51.000000px;}
.fs2_c00473{font-size:57.000000px;}
.fs1_c00473{font-size:60.000000px;}
.fs0_c00473{font-size:63.000000px;}
.y0_c00473{bottom:0.000000px;}
.y53_c00473{bottom:3.105000px;}
.y52_c00473{bottom:7.228369px;}
.y51_c00473{bottom:35.070000px;}
.y2c_c00473{bottom:49.620000px;}
.y50_c00473{bottom:53.370000px;}
.y2b_c00473{bottom:69.120000px;}
.y4f_c00473{bottom:71.220000px;}
.y2a_c00473{bottom:86.970000px;}
.y4e_c00473{bottom:89.370000px;}
.y29_c00473{bottom:105.270000px;}
.y4d_c00473{bottom:107.970000px;}
.y3_c00473{bottom:110.070000px;}
.y28_c00473{bottom:123.570000px;}
.y4c_c00473{bottom:126.120000px;}
.y27_c00473{bottom:142.020000px;}
.y4b_c00473{bottom:144.420000px;}
.y26_c00473{bottom:160.020000px;}
.y4a_c00473{bottom:163.020000px;}
.y25_c00473{bottom:178.920000px;}
.y49_c00473{bottom:181.170000px;}
.y24_c00473{bottom:197.070000px;}
.y48_c00473{bottom:199.770000px;}
.y23_c00473{bottom:215.670000px;}
.y47_c00473{bottom:217.920000px;}
.y22_c00473{bottom:234.120000px;}
.y46_c00473{bottom:235.470000px;}
.y21_c00473{bottom:251.820000px;}
.y45_c00473{bottom:253.770000px;}
.y20_c00473{bottom:270.270000px;}
.y44_c00473{bottom:271.920000px;}
.y1f_c00473{bottom:287.820000px;}
.y43_c00473{bottom:289.470000px;}
.y1e_c00473{bottom:306.720000px;}
.y42_c00473{bottom:308.370000px;}
.y1d_c00473{bottom:324.270000px;}
.y41_c00473{bottom:326.670000px;}
.y1c_c00473{bottom:343.170000px;}
.y40_c00473{bottom:344.520000px;}
.y1b_c00473{bottom:361.170000px;}
.y3f_c00473{bottom:362.820000px;}
.y1a_c00473{bottom:379.320000px;}
.y3e_c00473{bottom:380.970000px;}
.y19_c00473{bottom:396.870000px;}
.y3d_c00473{bottom:399.570000px;}
.y18_c00473{bottom:415.470000px;}
.y3c_c00473{bottom:417.420000px;}
.y17_c00473{bottom:434.070000px;}
.y3b_c00473{bottom:435.720000px;}
.y16_c00473{bottom:452.520000px;}
.y3a_c00473{bottom:453.870000px;}
.y15_c00473{bottom:470.520000px;}
.y39_c00473{bottom:472.170000px;}
.y14_c00473{bottom:489.270000px;}
.y38_c00473{bottom:490.320000px;}
.y13_c00473{bottom:507.270000px;}
.y37_c00473{bottom:508.170000px;}
.y12_c00473{bottom:525.870000px;}
.y36_c00473{bottom:526.170000px;}
.y2_c00473{bottom:529.920000px;}
.y11_c00473{bottom:544.020000px;}
.y35_c00473{bottom:544.320000px;}
.y1_c00473{bottom:548.370000px;}
.y10_c00473{bottom:562.320000px;}
.y34_c00473{bottom:562.620000px;}
.yf_c00473{bottom:580.470000px;}
.y33_c00473{bottom:580.770000px;}
.ye_c00473{bottom:598.320000px;}
.y32_c00473{bottom:599.370000px;}
.yd_c00473{bottom:616.620000px;}
.yc_c00473{bottom:635.070000px;}
.y31_c00473{bottom:635.220000px;}
.yb_c00473{bottom:653.370000px;}
.ya_c00473{bottom:671.670000px;}
.y9_c00473{bottom:689.820000px;}
.y30_c00473{bottom:690.120000px;}
.y8_c00473{bottom:708.420000px;}
.y7_c00473{bottom:726.570000px;}
.y2f_c00473{bottom:726.870000px;}
.y6_c00473{bottom:744.870000px;}
.y2e_c00473{bottom:763.320000px;}
.y5_c00473{bottom:763.770000px;}
.y2d_c00473{bottom:781.320000px;}
.y4_c00473{bottom:782.220000px;}
.h4_c00473{height:13.200073px;}
.h5_c00473{height:43.804688px;}
.h3_c00473{height:59.736000px;}
.h2_c00473{height:62.880000px;}
.h1_c00473{height:66.024000px;}
.h0_c00473{height:840.750000px;}
.w2_c00473{width:104.875500px;}
.w1_c00473{width:574.500000px;}
.w0_c00473{width:574.575000px;}
.x0_c00473{left:0.000000px;}
.x2_c00473{left:37.500000px;}
.x1_c00473{left:38.700000px;}
.x5_c00473{left:98.850000px;}
.x4_c00473{left:100.200000px;}
.x3_c00473{left:101.550000px;}
.xb_c00473{left:239.101730px;}
.x9_c00473{left:319.650000px;}
.x8_c00473{left:320.850000px;}
.x6_c00473{left:321.900000px;}
.x7_c00473{left:323.250000px;}
.xa_c00473{left:476.550000px;}
@media print{
.v0_c00473{vertical-align:0.000000pt;}
.ls1_c00473{letter-spacing:0.000000pt;}
.ls0_c00473{letter-spacing:17.224000pt;}
.ls2_c00473{letter-spacing:34.666667pt;}
.ws3_c00473{word-spacing:-47.490667pt;}
.ws6_c00473{word-spacing:-14.056000pt;}
.ws0_c00473{word-spacing:-12.824000pt;}
.ws5_c00473{word-spacing:-12.746667pt;}
.ws2_c00473{word-spacing:-12.586667pt;}
.ws4_c00473{word-spacing:-11.957333pt;}
.ws1_c00473{word-spacing:-1.066667pt;}
.ws7_c00473{word-spacing:0.000000pt;}
._1e_c00473{margin-left:-16.930667pt;}
._15_c00473{margin-left:-13.466667pt;}
._16_c00473{margin-left:-12.085333pt;}
._14_c00473{margin-left:-9.333333pt;}
._17_c00473{margin-left:-8.232000pt;}
._0_c00473{margin-left:-6.664000pt;}
._1_c00473{margin-left:-5.488000pt;}
._7_c00473{margin-left:-4.330667pt;}
._2_c00473{margin-left:-3.416000pt;}
._a_c00473{margin-left:-2.522667pt;}
._3_c00473{margin-left:-1.594667pt;}
._6_c00473{width:1.760000pt;}
._d_c00473{width:2.661333pt;}
._9_c00473{width:3.573333pt;}
._13_c00473{width:4.650667pt;}
._5_c00473{width:5.546667pt;}
._1a_c00473{width:6.592000pt;}
._4_c00473{width:7.573333pt;}
._e_c00473{width:8.997333pt;}
._c_c00473{width:10.549333pt;}
._12_c00473{width:11.674667pt;}
._1d_c00473{width:12.776000pt;}
._8_c00473{width:14.290667pt;}
._f_c00473{width:15.536000pt;}
._b_c00473{width:17.280000pt;}
._1f_c00473{width:19.594667pt;}
._20_c00473{width:20.656000pt;}
._1c_c00473{width:21.728000pt;}
._10_c00473{width:22.682667pt;}
._11_c00473{width:24.384000pt;}
._1b_c00473{width:25.509333pt;}
._21_c00473{width:26.552000pt;}
._19_c00473{width:27.458667pt;}
._22_c00473{width:30.645333pt;}
._18_c00473{width:33.813333pt;}
.fs4_c00473{font-size:42.666667pt;}
.fs3_c00473{font-size:45.333333pt;}
.fs2_c00473{font-size:50.666667pt;}
.fs1_c00473{font-size:53.333333pt;}
.fs0_c00473{font-size:56.000000pt;}
.y0_c00473{bottom:0.000000pt;}
.y53_c00473{bottom:2.760000pt;}
.y52_c00473{bottom:6.425217pt;}
.y51_c00473{bottom:31.173333pt;}
.y2c_c00473{bottom:44.106667pt;}
.y50_c00473{bottom:47.440000pt;}
.y2b_c00473{bottom:61.440000pt;}
.y4f_c00473{bottom:63.306667pt;}
.y2a_c00473{bottom:77.306667pt;}
.y4e_c00473{bottom:79.440000pt;}
.y29_c00473{bottom:93.573333pt;}
.y4d_c00473{bottom:95.973333pt;}
.y3_c00473{bottom:97.840000pt;}
.y28_c00473{bottom:109.840000pt;}
.y4c_c00473{bottom:112.106667pt;}
.y27_c00473{bottom:126.240000pt;}
.y4b_c00473{bottom:128.373333pt;}
.y26_c00473{bottom:142.240000pt;}
.y4a_c00473{bottom:144.906667pt;}
.y25_c00473{bottom:159.040000pt;}
.y49_c00473{bottom:161.040000pt;}
.y24_c00473{bottom:175.173333pt;}
.y48_c00473{bottom:177.573333pt;}
.y23_c00473{bottom:191.706667pt;}
.y47_c00473{bottom:193.706667pt;}
.y22_c00473{bottom:208.106667pt;}
.y46_c00473{bottom:209.306667pt;}
.y21_c00473{bottom:223.840000pt;}
.y45_c00473{bottom:225.573333pt;}
.y20_c00473{bottom:240.240000pt;}
.y44_c00473{bottom:241.706667pt;}
.y1f_c00473{bottom:255.840000pt;}
.y43_c00473{bottom:257.306667pt;}
.y1e_c00473{bottom:272.640000pt;}
.y42_c00473{bottom:274.106667pt;}
.y1d_c00473{bottom:288.240000pt;}
.y41_c00473{bottom:290.373333pt;}
.y1c_c00473{bottom:305.040000pt;}
.y40_c00473{bottom:306.240000pt;}
.y1b_c00473{bottom:321.040000pt;}
.y3f_c00473{bottom:322.506667pt;}
.y1a_c00473{bottom:337.173333pt;}
.y3e_c00473{bottom:338.640000pt;}
.y19_c00473{bottom:352.773333pt;}
.y3d_c00473{bottom:355.173333pt;}
.y18_c00473{bottom:369.306667pt;}
.y3c_c00473{bottom:371.040000pt;}
.y17_c00473{bottom:385.840000pt;}
.y3b_c00473{bottom:387.306667pt;}
.y16_c00473{bottom:402.240000pt;}
.y3a_c00473{bottom:403.440000pt;}
.y15_c00473{bottom:418.240000pt;}
.y39_c00473{bottom:419.706667pt;}
.y14_c00473{bottom:434.906667pt;}
.y38_c00473{bottom:435.840000pt;}
.y13_c00473{bottom:450.906667pt;}
.y37_c00473{bottom:451.706667pt;}
.y12_c00473{bottom:467.440000pt;}
.y36_c00473{bottom:467.706667pt;}
.y2_c00473{bottom:471.040000pt;}
.y11_c00473{bottom:483.573333pt;}
.y35_c00473{bottom:483.840000pt;}
.y1_c00473{bottom:487.440000pt;}
.y10_c00473{bottom:499.840000pt;}
.y34_c00473{bottom:500.106667pt;}
.yf_c00473{bottom:515.973333pt;}
.y33_c00473{bottom:516.240000pt;}
.ye_c00473{bottom:531.840000pt;}
.y32_c00473{bottom:532.773333pt;}
.yd_c00473{bottom:548.106667pt;}
.yc_c00473{bottom:564.506667pt;}
.y31_c00473{bottom:564.640000pt;}
.yb_c00473{bottom:580.773333pt;}
.ya_c00473{bottom:597.040000pt;}
.y9_c00473{bottom:613.173333pt;}
.y30_c00473{bottom:613.440000pt;}
.y8_c00473{bottom:629.706667pt;}
.y7_c00473{bottom:645.840000pt;}
.y2f_c00473{bottom:646.106667pt;}
.y6_c00473{bottom:662.106667pt;}
.y2e_c00473{bottom:678.506667pt;}
.y5_c00473{bottom:678.906667pt;}
.y2d_c00473{bottom:694.506667pt;}
.y4_c00473{bottom:695.306667pt;}
.h4_c00473{height:11.733399pt;}
.h5_c00473{height:38.937500pt;}
.h3_c00473{height:53.098667pt;}
.h2_c00473{height:55.893333pt;}
.h1_c00473{height:58.688000pt;}
.h0_c00473{height:747.333333pt;}
.w2_c00473{width:93.222667pt;}
.w1_c00473{width:510.666667pt;}
.w0_c00473{width:510.733333pt;}
.x0_c00473{left:0.000000pt;}
.x2_c00473{left:33.333333pt;}
.x1_c00473{left:34.400000pt;}
.x5_c00473{left:87.866667pt;}
.x4_c00473{left:89.066667pt;}
.x3_c00473{left:90.266667pt;}
.xb_c00473{left:212.534871pt;}
.x9_c00473{left:284.133333pt;}
.x8_c00473{left:285.200000pt;}
.x6_c00473{left:286.133333pt;}
.x7_c00473{left:287.333333pt;}
.xa_c00473{left:423.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_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_4a394b99386d5760965eaf6d.woff2')format("woff");}.ff1_c00474{font-family:ff1_c00474;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00474;src:url('chunks/assets/font_5a17b79e5b6b00f028319a35.woff2')format("woff");}.ff2_c00474{font-family:ff2_c00474;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00474;src:url('chunks/assets/font_cf463a3f00ac656416d9dca4.woff2')format("woff");}.ff3_c00474{font-family:ff3_c00474;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00474;src:url('chunks/assets/font_d10f92946ce08d7c6e21ad9d.woff2')format("woff");}.ff4_c00474{font-family:ff4_c00474;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00474;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff5_c00474{font-family:ff5_c00474;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00474{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00474{vertical-align:0.000000px;}
.ls1_c00474{letter-spacing:0.000000px;}
.ls2_c00474{letter-spacing:3.000000px;}
.ls0_c00474{letter-spacing:6.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;}
}
.ws1_c00474{word-spacing:-30.540000px;}
.ws2_c00474{word-spacing:-22.074000px;}
.ws4_c00474{word-spacing:-18.774000px;}
.ws0_c00474{word-spacing:-14.340000px;}
.ws3_c00474{word-spacing:-12.906000px;}
.ws5_c00474{word-spacing:0.000000px;}
._25_c00474{margin-left:-14.580000px;}
._1a_c00474{margin-left:-13.440000px;}
._17_c00474{margin-left:-11.160000px;}
._24_c00474{margin-left:-9.960000px;}
._10_c00474{margin-left:-8.220000px;}
._12_c00474{margin-left:-6.960000px;}
._15_c00474{margin-left:-5.640000px;}
._e_c00474{margin-left:-4.140000px;}
._4_c00474{margin-left:-2.820000px;}
._5_c00474{margin-left:-1.080000px;}
._8_c00474{width:1.140000px;}
._1_c00474{width:2.880000px;}
._14_c00474{width:3.900000px;}
._0_c00474{width:4.920000px;}
._2_c00474{width:6.360000px;}
._7_c00474{width:7.740000px;}
._f_c00474{width:9.240000px;}
._13_c00474{width:10.440000px;}
._3_c00474{width:11.460000px;}
._11_c00474{width:12.600000px;}
._6_c00474{width:16.440000px;}
._c_c00474{width:17.580000px;}
._d_c00474{width:19.200000px;}
._b_c00474{width:21.240000px;}
._a_c00474{width:22.860000px;}
._1b_c00474{width:25.260000px;}
._16_c00474{width:26.820000px;}
._9_c00474{width:28.080000px;}
._19_c00474{width:29.460000px;}
._18_c00474{width:31.260000px;}
._23_c00474{width:33.060000px;}
._1e_c00474{width:35.400000px;}
._1f_c00474{width:36.600000px;}
._1d_c00474{width:37.680000px;}
._1c_c00474{width:39.900000px;}
._20_c00474{width:41.280000px;}
._22_c00474{width:50.640000px;}
._21_c00474{width:59.706000px;}
.fc2_c00474{color:transparent;}
.fc1_c00474{color:rgb(128,128,128);}
.fc0_c00474{color:rgb(0,0,0);}
.fs3_c00474{font-size:48.000000px;}
.fs2_c00474{font-size:54.000000px;}
.fs0_c00474{font-size:60.000000px;}
.fs1_c00474{font-size:66.000000px;}
.y0_c00474{bottom:0.000000px;}
.y53_c00474{bottom:3.105000px;}
.y52_c00474{bottom:7.228363px;}
.y51_c00474{bottom:23.550000px;}
.y29_c00474{bottom:42.750000px;}
.y50_c00474{bottom:61.650000px;}
.y28_c00474{bottom:62.400000px;}
.y4f_c00474{bottom:79.200000px;}
.y27_c00474{bottom:81.300000px;}
.y4e_c00474{bottom:98.100000px;}
.y26_c00474{bottom:99.150000px;}
.y4d_c00474{bottom:115.650000px;}
.y25_c00474{bottom:117.000000px;}
.y4c_c00474{bottom:134.250000px;}
.y24_c00474{bottom:135.600000px;}
.y4b_c00474{bottom:152.250000px;}
.y23_c00474{bottom:154.800000px;}
.y4a_c00474{bottom:170.700000px;}
.y22_c00474{bottom:171.750000px;}
.y49_c00474{bottom:189.600000px;}
.y21_c00474{bottom:191.400000px;}
.y48_c00474{bottom:207.600000px;}
.y20_c00474{bottom:208.800000px;}
.y47_c00474{bottom:225.450000px;}
.y1f_c00474{bottom:227.400000px;}
.y46_c00474{bottom:244.050000px;}
.y1e_c00474{bottom:245.400000px;}
.y45_c00474{bottom:262.800000px;}
.y1d_c00474{bottom:263.850000px;}
.y44_c00474{bottom:281.100000px;}
.y1c_c00474{bottom:282.450000px;}
.y43_c00474{bottom:297.900000px;}
.y1b_c00474{bottom:299.700000px;}
.y42_c00474{bottom:316.950000px;}
.y1a_c00474{bottom:318.150000px;}
.y19_c00474{bottom:335.400000px;}
.y18_c00474{bottom:353.700000px;}
.y41_c00474{bottom:354.000000px;}
.y17_c00474{bottom:371.850000px;}
.y40_c00474{bottom:372.150000px;}
.y3f_c00474{bottom:389.700000px;}
.y16_c00474{bottom:390.750000px;}
.y3e_c00474{bottom:408.300000px;}
.y15_c00474{bottom:408.750000px;}
.y3d_c00474{bottom:425.850000px;}
.y14_c00474{bottom:426.900000px;}
.y3c_c00474{bottom:444.450000px;}
.y13_c00474{bottom:445.050000px;}
.y3b_c00474{bottom:462.300000px;}
.y12_c00474{bottom:462.600000px;}
.y3a_c00474{bottom:481.200000px;}
.y11_c00474{bottom:481.650000px;}
.y39_c00474{bottom:499.200000px;}
.y10_c00474{bottom:499.500000px;}
.yf_c00474{bottom:516.750000px;}
.y38_c00474{bottom:517.050000px;}
.ye_c00474{bottom:533.850000px;}
.y37_c00474{bottom:535.200000px;}
.yd_c00474{bottom:552.150000px;}
.y36_c00474{bottom:552.750000px;}
.yc_c00474{bottom:569.700000px;}
.y35_c00474{bottom:571.050000px;}
.yb_c00474{bottom:588.300000px;}
.y34_c00474{bottom:589.500000px;}
.ya_c00474{bottom:606.750000px;}
.y33_c00474{bottom:607.800000px;}
.y9_c00474{bottom:624.600000px;}
.y32_c00474{bottom:625.650000px;}
.y8_c00474{bottom:643.200000px;}
.y31_c00474{bottom:643.950000px;}
.y7_c00474{bottom:661.050000px;}
.y30_c00474{bottom:661.500000px;}
.y6_c00474{bottom:679.350000px;}
.y2f_c00474{bottom:680.100000px;}
.y5_c00474{bottom:697.650000px;}
.y2e_c00474{bottom:698.250000px;}
.y4_c00474{bottom:715.200000px;}
.y2d_c00474{bottom:716.550000px;}
.y3_c00474{bottom:734.400000px;}
.y2c_c00474{bottom:735.000000px;}
.y2_c00474{bottom:752.550000px;}
.y2b_c00474{bottom:753.300000px;}
.y1_c00474{bottom:771.450000px;}
.y2a_c00474{bottom:771.750000px;}
.h5_c00474{height:13.200074px;}
.h6_c00474{height:43.804688px;}
.h2_c00474{height:62.880000px;}
.h4_c00474{height:69.168000px;}
.h3_c00474{height:70.422000px;}
.h1_c00474{height:834.000000px;}
.h0_c00474{height:834.300000px;}
.w2_c00474{width:104.875500px;}
.w0_c00474{width:573.450000px;}
.w1_c00474{width:573.750000px;}
.x0_c00474{left:0.000000px;}
.x2_c00474{left:59.400000px;}
.x3_c00474{left:61.050000px;}
.x7_c00474{left:62.400000px;}
.x6_c00474{left:63.750000px;}
.x5_c00474{left:64.800000px;}
.x1_c00474{left:66.450000px;}
.x4_c00474{left:84.450000px;}
.xd_c00474{left:238.539230px;}
.x9_c00474{left:282.150000px;}
.x8_c00474{left:284.850000px;}
.xa_c00474{left:286.200000px;}
.xb_c00474{left:287.250000px;}
.xc_c00474{left:455.400000px;}
@media print{
.v0_c00474{vertical-align:0.000000pt;}
.ls1_c00474{letter-spacing:0.000000pt;}
.ls2_c00474{letter-spacing:2.666667pt;}
.ls0_c00474{letter-spacing:5.333333pt;}
.ws1_c00474{word-spacing:-27.146667pt;}
.ws2_c00474{word-spacing:-19.621333pt;}
.ws4_c00474{word-spacing:-16.688000pt;}
.ws0_c00474{word-spacing:-12.746667pt;}
.ws3_c00474{word-spacing:-11.472000pt;}
.ws5_c00474{word-spacing:0.000000pt;}
._25_c00474{margin-left:-12.960000pt;}
._1a_c00474{margin-left:-11.946667pt;}
._17_c00474{margin-left:-9.920000pt;}
._24_c00474{margin-left:-8.853333pt;}
._10_c00474{margin-left:-7.306667pt;}
._12_c00474{margin-left:-6.186667pt;}
._15_c00474{margin-left:-5.013333pt;}
._e_c00474{margin-left:-3.680000pt;}
._4_c00474{margin-left:-2.506667pt;}
._5_c00474{margin-left:-0.960000pt;}
._8_c00474{width:1.013333pt;}
._1_c00474{width:2.560000pt;}
._14_c00474{width:3.466667pt;}
._0_c00474{width:4.373333pt;}
._2_c00474{width:5.653333pt;}
._7_c00474{width:6.880000pt;}
._f_c00474{width:8.213333pt;}
._13_c00474{width:9.280000pt;}
._3_c00474{width:10.186667pt;}
._11_c00474{width:11.200000pt;}
._6_c00474{width:14.613333pt;}
._c_c00474{width:15.626667pt;}
._d_c00474{width:17.066667pt;}
._b_c00474{width:18.880000pt;}
._a_c00474{width:20.320000pt;}
._1b_c00474{width:22.453333pt;}
._16_c00474{width:23.840000pt;}
._9_c00474{width:24.960000pt;}
._19_c00474{width:26.186667pt;}
._18_c00474{width:27.786667pt;}
._23_c00474{width:29.386667pt;}
._1e_c00474{width:31.466667pt;}
._1f_c00474{width:32.533333pt;}
._1d_c00474{width:33.493333pt;}
._1c_c00474{width:35.466667pt;}
._20_c00474{width:36.693333pt;}
._22_c00474{width:45.013333pt;}
._21_c00474{width:53.072000pt;}
.fs3_c00474{font-size:42.666667pt;}
.fs2_c00474{font-size:48.000000pt;}
.fs0_c00474{font-size:53.333333pt;}
.fs1_c00474{font-size:58.666667pt;}
.y0_c00474{bottom:0.000000pt;}
.y53_c00474{bottom:2.760000pt;}
.y52_c00474{bottom:6.425212pt;}
.y51_c00474{bottom:20.933333pt;}
.y29_c00474{bottom:38.000000pt;}
.y50_c00474{bottom:54.800000pt;}
.y28_c00474{bottom:55.466667pt;}
.y4f_c00474{bottom:70.400000pt;}
.y27_c00474{bottom:72.266667pt;}
.y4e_c00474{bottom:87.200000pt;}
.y26_c00474{bottom:88.133333pt;}
.y4d_c00474{bottom:102.800000pt;}
.y25_c00474{bottom:104.000000pt;}
.y4c_c00474{bottom:119.333333pt;}
.y24_c00474{bottom:120.533333pt;}
.y4b_c00474{bottom:135.333333pt;}
.y23_c00474{bottom:137.600000pt;}
.y4a_c00474{bottom:151.733333pt;}
.y22_c00474{bottom:152.666667pt;}
.y49_c00474{bottom:168.533333pt;}
.y21_c00474{bottom:170.133333pt;}
.y48_c00474{bottom:184.533333pt;}
.y20_c00474{bottom:185.600000pt;}
.y47_c00474{bottom:200.400000pt;}
.y1f_c00474{bottom:202.133333pt;}
.y46_c00474{bottom:216.933333pt;}
.y1e_c00474{bottom:218.133333pt;}
.y45_c00474{bottom:233.600000pt;}
.y1d_c00474{bottom:234.533333pt;}
.y44_c00474{bottom:249.866667pt;}
.y1c_c00474{bottom:251.066667pt;}
.y43_c00474{bottom:264.800000pt;}
.y1b_c00474{bottom:266.400000pt;}
.y42_c00474{bottom:281.733333pt;}
.y1a_c00474{bottom:282.800000pt;}
.y19_c00474{bottom:298.133333pt;}
.y18_c00474{bottom:314.400000pt;}
.y41_c00474{bottom:314.666667pt;}
.y17_c00474{bottom:330.533333pt;}
.y40_c00474{bottom:330.800000pt;}
.y3f_c00474{bottom:346.400000pt;}
.y16_c00474{bottom:347.333333pt;}
.y3e_c00474{bottom:362.933333pt;}
.y15_c00474{bottom:363.333333pt;}
.y3d_c00474{bottom:378.533333pt;}
.y14_c00474{bottom:379.466667pt;}
.y3c_c00474{bottom:395.066667pt;}
.y13_c00474{bottom:395.600000pt;}
.y3b_c00474{bottom:410.933333pt;}
.y12_c00474{bottom:411.200000pt;}
.y3a_c00474{bottom:427.733333pt;}
.y11_c00474{bottom:428.133333pt;}
.y39_c00474{bottom:443.733333pt;}
.y10_c00474{bottom:444.000000pt;}
.yf_c00474{bottom:459.333333pt;}
.y38_c00474{bottom:459.600000pt;}
.ye_c00474{bottom:474.533333pt;}
.y37_c00474{bottom:475.733333pt;}
.yd_c00474{bottom:490.800000pt;}
.y36_c00474{bottom:491.333333pt;}
.yc_c00474{bottom:506.400000pt;}
.y35_c00474{bottom:507.600000pt;}
.yb_c00474{bottom:522.933333pt;}
.y34_c00474{bottom:524.000000pt;}
.ya_c00474{bottom:539.333333pt;}
.y33_c00474{bottom:540.266667pt;}
.y9_c00474{bottom:555.200000pt;}
.y32_c00474{bottom:556.133333pt;}
.y8_c00474{bottom:571.733333pt;}
.y31_c00474{bottom:572.400000pt;}
.y7_c00474{bottom:587.600000pt;}
.y30_c00474{bottom:588.000000pt;}
.y6_c00474{bottom:603.866667pt;}
.y2f_c00474{bottom:604.533333pt;}
.y5_c00474{bottom:620.133333pt;}
.y2e_c00474{bottom:620.666667pt;}
.y4_c00474{bottom:635.733333pt;}
.y2d_c00474{bottom:636.933333pt;}
.y3_c00474{bottom:652.800000pt;}
.y2c_c00474{bottom:653.333333pt;}
.y2_c00474{bottom:668.933333pt;}
.y2b_c00474{bottom:669.600000pt;}
.y1_c00474{bottom:685.733333pt;}
.y2a_c00474{bottom:686.000000pt;}
.h5_c00474{height:11.733399pt;}
.h6_c00474{height:38.937500pt;}
.h2_c00474{height:55.893333pt;}
.h4_c00474{height:61.482667pt;}
.h3_c00474{height:62.597333pt;}
.h1_c00474{height:741.333333pt;}
.h0_c00474{height:741.600000pt;}
.w2_c00474{width:93.222667pt;}
.w0_c00474{width:509.733333pt;}
.w1_c00474{width:510.000000pt;}
.x0_c00474{left:0.000000pt;}
.x2_c00474{left:52.800000pt;}
.x3_c00474{left:54.266667pt;}
.x7_c00474{left:55.466667pt;}
.x6_c00474{left:56.666667pt;}
.x5_c00474{left:57.600000pt;}
.x1_c00474{left:59.066667pt;}
.x4_c00474{left:75.066667pt;}
.xd_c00474{left:212.034871pt;}
.x9_c00474{left:250.800000pt;}
.x8_c00474{left:253.200000pt;}
.xa_c00474{left:254.400000pt;}
.xb_c00474{left:255.333333pt;}
.xc_c00474{left:404.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_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_360d85d7699afbc98d20ff5e.woff2')format("woff");}.ff1_c00475{font-family:ff1_c00475;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00475;src:url('chunks/assets/font_cdccf9aef7254ea648ca0d12.woff2')format("woff");}.ff2_c00475{font-family:ff2_c00475;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00475;src:url('chunks/assets/font_ddd6c4e171176e50446f61dc.woff2')format("woff");}.ff3_c00475{font-family:ff3_c00475;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00475;src:url('chunks/assets/font_c849740ca79ff1345a3e050c.woff2')format("woff");}.ff4_c00475{font-family:ff4_c00475;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00475;src:url('chunks/assets/font_072804cf36113c8074e531b4.woff2')format("woff");}.ff5_c00475{font-family:ff5_c00475;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00475;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff6_c00475{font-family:ff6_c00475;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00475{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00475{vertical-align:0.000000px;}
.ls6_c00475{letter-spacing:0.000000px;}
.ls0_c00475{letter-spacing:0.840000px;}
.ls5_c00475{letter-spacing:3.000000px;}
.ls4_c00475{letter-spacing:15.000000px;}
.ls2_c00475{letter-spacing:21.093000px;}
.ls1_c00475{letter-spacing:22.293000px;}
.ls3_c00475{letter-spacing:87.093000px;}
.sc__c00475{text-shadow:none;}
.sc0_c00475{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00475{-webkit-text-stroke:0px transparent;}
.sc0_c00475{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00475{word-spacing:-29.340000px;}
.ws0_c00475{word-spacing:-22.074000px;}
.ws4_c00475{word-spacing:-17.340000px;}
.ws3_c00475{word-spacing:-14.340000px;}
.ws1_c00475{word-spacing:-14.160000px;}
.ws5_c00475{word-spacing:-13.452000px;}
.ws2_c00475{word-spacing:-12.048000px;}
.ws7_c00475{word-spacing:0.000000px;}
._19_c00475{margin-left:-17.400000px;}
._21_c00475{margin-left:-15.960000px;}
._20_c00475{margin-left:-12.150000px;}
._14_c00475{margin-left:-10.980000px;}
._2b_c00475{margin-left:-9.420000px;}
._16_c00475{margin-left:-8.340000px;}
._13_c00475{margin-left:-7.260000px;}
._e_c00475{margin-left:-5.580000px;}
._f_c00475{margin-left:-3.720000px;}
._0_c00475{margin-left:-1.800000px;}
._1_c00475{width:1.860000px;}
._b_c00475{width:2.880000px;}
._a_c00475{width:4.140000px;}
._9_c00475{width:5.880000px;}
._8_c00475{width:7.020000px;}
._3_c00475{width:8.280000px;}
._4_c00475{width:10.080000px;}
._5_c00475{width:11.400000px;}
._7_c00475{width:12.900000px;}
._12_c00475{width:15.360000px;}
._1d_c00475{width:16.620000px;}
._10_c00475{width:17.940000px;}
._1c_c00475{width:19.872000px;}
._18_c00475{width:20.967000px;}
._1e_c00475{width:23.040000px;}
._11_c00475{width:24.060000px;}
._15_c00475{width:25.500000px;}
._23_c00475{width:26.880000px;}
._6_c00475{width:28.380000px;}
._28_c00475{width:30.240000px;}
._29_c00475{width:31.680000px;}
._1f_c00475{width:33.579000px;}
._2a_c00475{width:37.380000px;}
._24_c00475{width:38.472000px;}
._25_c00475{width:45.960000px;}
._17_c00475{width:53.880000px;}
._1b_c00475{width:58.182000px;}
._22_c00475{width:64.791000px;}
._1a_c00475{width:66.780000px;}
._c_c00475{width:89.040000px;}
._27_c00475{width:99.795000px;}
._26_c00475{width:129.339000px;}
._d_c00475{width:164.760000px;}
._2_c00475{width:209.160000px;}
.fc2_c00475{color:transparent;}
.fc1_c00475{color:rgb(128,128,128);}
.fc0_c00475{color:rgb(0,0,0);}
.fs3_c00475{font-size:48.000000px;}
.fs2_c00475{font-size:57.000000px;}
.fs1_c00475{font-size:60.000000px;}
.fs0_c00475{font-size:66.000000px;}
.y0_c00475{bottom:0.000000px;}
.y55_c00475{bottom:3.105000px;}
.y54_c00475{bottom:7.228371px;}
.y53_c00475{bottom:28.365000px;}
.y41_c00475{bottom:45.615000px;}
.y52_c00475{bottom:46.965000px;}
.y40_c00475{bottom:63.915000px;}
.y51_c00475{bottom:65.265000px;}
.y3f_c00475{bottom:82.365000px;}
.y50_c00475{bottom:84.165000px;}
.y3e_c00475{bottom:101.265000px;}
.y4f_c00475{bottom:102.615000px;}
.y3d_c00475{bottom:119.115000px;}
.y4e_c00475{bottom:120.915000px;}
.y3c_c00475{bottom:137.415000px;}
.y4d_c00475{bottom:138.465000px;}
.y3b_c00475{bottom:155.565000px;}
.y4c_c00475{bottom:157.365000px;}
.y3a_c00475{bottom:173.565000px;}
.y4b_c00475{bottom:174.615000px;}
.y39_c00475{bottom:191.415000px;}
.y4a_c00475{bottom:193.515000px;}
.y38_c00475{bottom:209.715000px;}
.y49_c00475{bottom:210.915000px;}
.y37_c00475{bottom:227.865000px;}
.y48_c00475{bottom:229.215000px;}
.y36_c00475{bottom:246.165000px;}
.y47_c00475{bottom:247.815000px;}
.y35_c00475{bottom:264.315000px;}
.y46_c00475{bottom:265.965000px;}
.y34_c00475{bottom:282.465000px;}
.y45_c00475{bottom:283.965000px;}
.y33_c00475{bottom:300.765000px;}
.y44_c00475{bottom:301.515000px;}
.y32_c00475{bottom:318.915000px;}
.y43_c00475{bottom:319.365000px;}
.y31_c00475{bottom:336.615000px;}
.y42_c00475{bottom:337.965000px;}
.y30_c00475{bottom:355.065000px;}
.y19_c00475{bottom:356.865000px;}
.y2f_c00475{bottom:373.065000px;}
.y18_c00475{bottom:374.415000px;}
.y2e_c00475{bottom:391.215000px;}
.y17_c00475{bottom:392.565000px;}
.y2d_c00475{bottom:409.365000px;}
.y16_c00475{bottom:411.165000px;}
.y2c_c00475{bottom:427.665000px;}
.y15_c00475{bottom:429.315000px;}
.y2b_c00475{bottom:445.515000px;}
.y14_c00475{bottom:447.315000px;}
.y2a_c00475{bottom:464.415000px;}
.y13_c00475{bottom:465.465000px;}
.y29_c00475{bottom:482.415000px;}
.y12_c00475{bottom:482.715000px;}
.y28_c00475{bottom:499.965000px;}
.y11_c00475{bottom:501.315000px;}
.y27_c00475{bottom:519.165000px;}
.y10_c00475{bottom:520.065000px;}
.y26_c00475{bottom:536.715000px;}
.yf_c00475{bottom:537.765000px;}
.y25_c00475{bottom:555.315000px;}
.ye_c00475{bottom:555.615000px;}
.y24_c00475{bottom:573.165000px;}
.yd_c00475{bottom:573.465000px;}
.y23_c00475{bottom:591.315000px;}
.yc_c00475{bottom:591.615000px;}
.y22_c00475{bottom:609.165000px;}
.yb_c00475{bottom:609.615000px;}
.y21_c00475{bottom:627.465000px;}
.ya_c00475{bottom:628.215000px;}
.y20_c00475{bottom:645.765000px;}
.y9_c00475{bottom:646.365000px;}
.y1f_c00475{bottom:664.215000px;}
.y8_c00475{bottom:664.965000px;}
.y1e_c00475{bottom:682.515000px;}
.y7_c00475{bottom:682.815000px;}
.y1d_c00475{bottom:700.665000px;}
.y6_c00475{bottom:701.415000px;}
.y1c_c00475{bottom:718.665000px;}
.y5_c00475{bottom:719.565000px;}
.y1b_c00475{bottom:736.815000px;}
.y4_c00475{bottom:738.165000px;}
.y1a_c00475{bottom:755.715000px;}
.y3_c00475{bottom:756.015000px;}
.y2_c00475{bottom:774.315000px;}
.y1_c00475{bottom:793.515000px;}
.h6_c00475{height:13.200074px;}
.h7_c00475{height:43.804688px;}
.h4_c00475{height:59.736000px;}
.h3_c00475{height:62.880000px;}
.h5_c00475{height:64.020000px;}
.h2_c00475{height:70.422000px;}
.h0_c00475{height:839.175000px;}
.h1_c00475{height:839.250000px;}
.w2_c00475{width:104.875500px;}
.w0_c00475{width:573.450000px;}
.w1_c00475{width:573.750000px;}
.x0_c00475{left:0.000000px;}
.xe_c00475{left:37.200000px;}
.x13_c00475{left:38.250000px;}
.x14_c00475{left:39.900000px;}
.x10_c00475{left:41.250000px;}
.xd_c00475{left:71.850000px;}
.x12_c00475{left:99.000000px;}
.xc_c00475{left:100.200000px;}
.x11_c00475{left:101.550000px;}
.xf_c00475{left:102.600000px;}
.x2_c00475{left:104.550000px;}
.xb_c00475{left:106.350000px;}
.x1_c00475{left:110.700000px;}
.x19_c00475{left:238.539230px;}
.x3_c00475{left:283.050000px;}
.x17_c00475{left:319.350000px;}
.x16_c00475{left:320.400000px;}
.x15_c00475{left:321.750000px;}
.xa_c00475{left:322.950000px;}
.x9_c00475{left:324.000000px;}
.x7_c00475{left:325.050000px;}
.x6_c00475{left:326.250000px;}
.x4_c00475{left:327.750000px;}
.x5_c00475{left:329.100000px;}
.x8_c00475{left:349.950000px;}
.x18_c00475{left:475.500000px;}
@media print{
.v0_c00475{vertical-align:0.000000pt;}
.ls6_c00475{letter-spacing:0.000000pt;}
.ls0_c00475{letter-spacing:0.746667pt;}
.ls5_c00475{letter-spacing:2.666667pt;}
.ls4_c00475{letter-spacing:13.333333pt;}
.ls2_c00475{letter-spacing:18.749333pt;}
.ls1_c00475{letter-spacing:19.816000pt;}
.ls3_c00475{letter-spacing:77.416000pt;}
.ws6_c00475{word-spacing:-26.080000pt;}
.ws0_c00475{word-spacing:-19.621333pt;}
.ws4_c00475{word-spacing:-15.413333pt;}
.ws3_c00475{word-spacing:-12.746667pt;}
.ws1_c00475{word-spacing:-12.586667pt;}
.ws5_c00475{word-spacing:-11.957333pt;}
.ws2_c00475{word-spacing:-10.709333pt;}
.ws7_c00475{word-spacing:0.000000pt;}
._19_c00475{margin-left:-15.466667pt;}
._21_c00475{margin-left:-14.186667pt;}
._20_c00475{margin-left:-10.800000pt;}
._14_c00475{margin-left:-9.760000pt;}
._2b_c00475{margin-left:-8.373333pt;}
._16_c00475{margin-left:-7.413333pt;}
._13_c00475{margin-left:-6.453333pt;}
._e_c00475{margin-left:-4.960000pt;}
._f_c00475{margin-left:-3.306667pt;}
._0_c00475{margin-left:-1.600000pt;}
._1_c00475{width:1.653333pt;}
._b_c00475{width:2.560000pt;}
._a_c00475{width:3.680000pt;}
._9_c00475{width:5.226667pt;}
._8_c00475{width:6.240000pt;}
._3_c00475{width:7.360000pt;}
._4_c00475{width:8.960000pt;}
._5_c00475{width:10.133333pt;}
._7_c00475{width:11.466667pt;}
._12_c00475{width:13.653333pt;}
._1d_c00475{width:14.773333pt;}
._10_c00475{width:15.946667pt;}
._1c_c00475{width:17.664000pt;}
._18_c00475{width:18.637333pt;}
._1e_c00475{width:20.480000pt;}
._11_c00475{width:21.386667pt;}
._15_c00475{width:22.666667pt;}
._23_c00475{width:23.893333pt;}
._6_c00475{width:25.226667pt;}
._28_c00475{width:26.880000pt;}
._29_c00475{width:28.160000pt;}
._1f_c00475{width:29.848000pt;}
._2a_c00475{width:33.226667pt;}
._24_c00475{width:34.197333pt;}
._25_c00475{width:40.853333pt;}
._17_c00475{width:47.893333pt;}
._1b_c00475{width:51.717333pt;}
._22_c00475{width:57.592000pt;}
._1a_c00475{width:59.360000pt;}
._c_c00475{width:79.146667pt;}
._27_c00475{width:88.706667pt;}
._26_c00475{width:114.968000pt;}
._d_c00475{width:146.453333pt;}
._2_c00475{width:185.920000pt;}
.fs3_c00475{font-size:42.666667pt;}
.fs2_c00475{font-size:50.666667pt;}
.fs1_c00475{font-size:53.333333pt;}
.fs0_c00475{font-size:58.666667pt;}
.y0_c00475{bottom:0.000000pt;}
.y55_c00475{bottom:2.760000pt;}
.y54_c00475{bottom:6.425219pt;}
.y53_c00475{bottom:25.213333pt;}
.y41_c00475{bottom:40.546667pt;}
.y52_c00475{bottom:41.746667pt;}
.y40_c00475{bottom:56.813333pt;}
.y51_c00475{bottom:58.013333pt;}
.y3f_c00475{bottom:73.213333pt;}
.y50_c00475{bottom:74.813333pt;}
.y3e_c00475{bottom:90.013333pt;}
.y4f_c00475{bottom:91.213333pt;}
.y3d_c00475{bottom:105.880000pt;}
.y4e_c00475{bottom:107.480000pt;}
.y3c_c00475{bottom:122.146667pt;}
.y4d_c00475{bottom:123.080000pt;}
.y3b_c00475{bottom:138.280000pt;}
.y4c_c00475{bottom:139.880000pt;}
.y3a_c00475{bottom:154.280000pt;}
.y4b_c00475{bottom:155.213333pt;}
.y39_c00475{bottom:170.146667pt;}
.y4a_c00475{bottom:172.013333pt;}
.y38_c00475{bottom:186.413333pt;}
.y49_c00475{bottom:187.480000pt;}
.y37_c00475{bottom:202.546667pt;}
.y48_c00475{bottom:203.746667pt;}
.y36_c00475{bottom:218.813333pt;}
.y47_c00475{bottom:220.280000pt;}
.y35_c00475{bottom:234.946667pt;}
.y46_c00475{bottom:236.413333pt;}
.y34_c00475{bottom:251.080000pt;}
.y45_c00475{bottom:252.413333pt;}
.y33_c00475{bottom:267.346667pt;}
.y44_c00475{bottom:268.013333pt;}
.y32_c00475{bottom:283.480000pt;}
.y43_c00475{bottom:283.880000pt;}
.y31_c00475{bottom:299.213333pt;}
.y42_c00475{bottom:300.413333pt;}
.y30_c00475{bottom:315.613333pt;}
.y19_c00475{bottom:317.213333pt;}
.y2f_c00475{bottom:331.613333pt;}
.y18_c00475{bottom:332.813333pt;}
.y2e_c00475{bottom:347.746667pt;}
.y17_c00475{bottom:348.946667pt;}
.y2d_c00475{bottom:363.880000pt;}
.y16_c00475{bottom:365.480000pt;}
.y2c_c00475{bottom:380.146667pt;}
.y15_c00475{bottom:381.613333pt;}
.y2b_c00475{bottom:396.013333pt;}
.y14_c00475{bottom:397.613333pt;}
.y2a_c00475{bottom:412.813333pt;}
.y13_c00475{bottom:413.746667pt;}
.y29_c00475{bottom:428.813333pt;}
.y12_c00475{bottom:429.080000pt;}
.y28_c00475{bottom:444.413333pt;}
.y11_c00475{bottom:445.613333pt;}
.y27_c00475{bottom:461.480000pt;}
.y10_c00475{bottom:462.280000pt;}
.y26_c00475{bottom:477.080000pt;}
.yf_c00475{bottom:478.013333pt;}
.y25_c00475{bottom:493.613333pt;}
.ye_c00475{bottom:493.880000pt;}
.y24_c00475{bottom:509.480000pt;}
.yd_c00475{bottom:509.746667pt;}
.y23_c00475{bottom:525.613333pt;}
.yc_c00475{bottom:525.880000pt;}
.y22_c00475{bottom:541.480000pt;}
.yb_c00475{bottom:541.880000pt;}
.y21_c00475{bottom:557.746667pt;}
.ya_c00475{bottom:558.413333pt;}
.y20_c00475{bottom:574.013333pt;}
.y9_c00475{bottom:574.546667pt;}
.y1f_c00475{bottom:590.413333pt;}
.y8_c00475{bottom:591.080000pt;}
.y1e_c00475{bottom:606.680000pt;}
.y7_c00475{bottom:606.946667pt;}
.y1d_c00475{bottom:622.813333pt;}
.y6_c00475{bottom:623.480000pt;}
.y1c_c00475{bottom:638.813333pt;}
.y5_c00475{bottom:639.613333pt;}
.y1b_c00475{bottom:654.946667pt;}
.y4_c00475{bottom:656.146667pt;}
.y1a_c00475{bottom:671.746667pt;}
.y3_c00475{bottom:672.013333pt;}
.y2_c00475{bottom:688.280000pt;}
.y1_c00475{bottom:705.346667pt;}
.h6_c00475{height:11.733399pt;}
.h7_c00475{height:38.937500pt;}
.h4_c00475{height:53.098667pt;}
.h3_c00475{height:55.893333pt;}
.h5_c00475{height:56.906667pt;}
.h2_c00475{height:62.597333pt;}
.h0_c00475{height:745.933333pt;}
.h1_c00475{height:746.000000pt;}
.w2_c00475{width:93.222667pt;}
.w0_c00475{width:509.733333pt;}
.w1_c00475{width:510.000000pt;}
.x0_c00475{left:0.000000pt;}
.xe_c00475{left:33.066667pt;}
.x13_c00475{left:34.000000pt;}
.x14_c00475{left:35.466667pt;}
.x10_c00475{left:36.666667pt;}
.xd_c00475{left:63.866667pt;}
.x12_c00475{left:88.000000pt;}
.xc_c00475{left:89.066667pt;}
.x11_c00475{left:90.266667pt;}
.xf_c00475{left:91.200000pt;}
.x2_c00475{left:92.933333pt;}
.xb_c00475{left:94.533333pt;}
.x1_c00475{left:98.400000pt;}
.x19_c00475{left:212.034871pt;}
.x3_c00475{left:251.600000pt;}
.x17_c00475{left:283.866667pt;}
.x16_c00475{left:284.800000pt;}
.x15_c00475{left:286.000000pt;}
.xa_c00475{left:287.066667pt;}
.x9_c00475{left:288.000000pt;}
.x7_c00475{left:288.933333pt;}
.x6_c00475{left:290.000000pt;}
.x4_c00475{left:291.333333pt;}
.x5_c00475{left:292.533333pt;}
.x8_c00475{left:311.066667pt;}
.x18_c00475{left:422.666667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_59080c1a3057a81a6c186e2a.woff2')format("woff");}.ff1_c00476{font-family:ff1_c00476;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00476;src:url('chunks/assets/font_2089f71419ccecc5fc27b6f4.woff2')format("woff");}.ff2_c00476{font-family:ff2_c00476;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00476;src:url('chunks/assets/font_3feb83a39cd16cd3d4403bfd.woff2')format("woff");}.ff3_c00476{font-family:ff3_c00476;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00476;src:url('chunks/assets/font_51489086335c7efdc6086f46.woff2')format("woff");}.ff4_c00476{font-family:ff4_c00476;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00476;src:url('chunks/assets/font_dfb3bcb726d70832edb48303.woff2')format("woff");}.ff5_c00476{font-family:ff5_c00476;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00476;src:url('chunks/assets/font_34cbe12bce50cb4ee247c5e5.woff2')format("woff");}.ff6_c00476{font-family:ff6_c00476;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00476;src:url('chunks/assets/font_3325e2e6ff173a40a66557f0.woff2')format("woff");}.ff7_c00476{font-family:ff7_c00476;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00476;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff8_c00476{font-family:ff8_c00476;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00476{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00476{vertical-align:0.000000px;}
.v1_c00476{vertical-align:78.000000px;}
.ls6_c00476{letter-spacing:-6.000000px;}
.ls5_c00476{letter-spacing:-3.000000px;}
.ls3_c00476{letter-spacing:0.000000px;}
.ls4_c00476{letter-spacing:3.000000px;}
.ls7_c00476{letter-spacing:9.000000px;}
.ls2_c00476{letter-spacing:14.436000px;}
.ls1_c00476{letter-spacing:16.893000px;}
.ls0_c00476{letter-spacing:18.693000px;}
.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;}
}
.ws6_c00476{word-spacing:-23.160000px;}
.ws7_c00476{word-spacing:-15.060000px;}
.ws8_c00476{word-spacing:-14.427000px;}
.ws0_c00476{word-spacing:-14.160000px;}
.ws2_c00476{word-spacing:-13.452000px;}
.ws9_c00476{word-spacing:-13.053000px;}
.ws3_c00476{word-spacing:-11.307000px;}
.wsa_c00476{word-spacing:-9.057000px;}
.ws4_c00476{word-spacing:-7.452000px;}
.ws1_c00476{word-spacing:-0.912000px;}
.wsb_c00476{word-spacing:0.000000px;}
.ws5_c00476{word-spacing:4.389000px;}
._27_c00476{margin-left:-18.864000px;}
._1d_c00476{margin-left:-12.963000px;}
._11_c00476{margin-left:-11.400000px;}
._f_c00476{margin-left:-9.600000px;}
._24_c00476{margin-left:-8.421000px;}
._1b_c00476{margin-left:-7.245000px;}
._1c_c00476{margin-left:-6.054000px;}
._10_c00476{margin-left:-4.800000px;}
._15_c00476{margin-left:-3.672000px;}
._12_c00476{margin-left:-2.649000px;}
._a_c00476{margin-left:-1.440000px;}
._13_c00476{width:1.197000px;}
._c_c00476{width:2.460000px;}
._7_c00476{width:3.840000px;}
._4_c00476{width:5.700000px;}
._9_c00476{width:6.720000px;}
._19_c00476{width:7.746000px;}
._6_c00476{width:8.880000px;}
._3_c00476{width:10.860000px;}
._1_c00476{width:12.780000px;}
._21_c00476{width:13.980000px;}
._5_c00476{width:15.540000px;}
._0_c00476{width:16.800000px;}
._e_c00476{width:17.940000px;}
._25_c00476{width:19.200000px;}
._14_c00476{width:20.430000px;}
._20_c00476{width:22.512000px;}
._1e_c00476{width:24.240000px;}
._17_c00476{width:25.269000px;}
._b_c00476{width:26.820000px;}
._28_c00476{width:28.191000px;}
._1f_c00476{width:29.349000px;}
._2b_c00476{width:30.603000px;}
._29_c00476{width:32.067000px;}
._2c_c00476{width:35.457000px;}
._26_c00476{width:37.422000px;}
._2_c00476{width:40.560000px;}
._2a_c00476{width:43.512000px;}
._1a_c00476{width:46.566000px;}
._d_c00476{width:77.340000px;}
._23_c00476{width:82.560000px;}
._16_c00476{width:115.023000px;}
._18_c00476{width:117.069000px;}
._22_c00476{width:189.009000px;}
._2d_c00476{width:202.770000px;}
._8_c00476{width:420.060000px;}
.fc2_c00476{color:transparent;}
.fc1_c00476{color:rgb(128,128,128);}
.fc0_c00476{color:rgb(0,0,0);}
.fs6_c00476{font-size:24.000000px;}
.fs2_c00476{font-size:33.000000px;}
.fs7_c00476{font-size:48.000000px;}
.fs5_c00476{font-size:54.000000px;}
.fs1_c00476{font-size:57.000000px;}
.fs0_c00476{font-size:60.000000px;}
.fs4_c00476{font-size:63.000000px;}
.fs3_c00476{font-size:162.000000px;}
.y0_c00476{bottom:0.000000px;}
.y5a_c00476{bottom:3.105000px;}
.y59_c00476{bottom:7.228363px;}
.y50_c00476{bottom:42.150000px;}
.y4f_c00476{bottom:60.300000px;}
.y2a_c00476{bottom:61.350000px;}
.y4e_c00476{bottom:78.600000px;}
.y29_c00476{bottom:80.250000px;}
.y4d_c00476{bottom:96.750000px;}
.y27_c00476{bottom:97.200000px;}
.y28_c00476{bottom:98.550000px;}
.y4c_c00476{bottom:115.050000px;}
.y4b_c00476{bottom:133.350000px;}
.y4a_c00476{bottom:151.800000px;}
.y26_c00476{bottom:152.850000px;}
.y49_c00476{bottom:169.350000px;}
.y25_c00476{bottom:171.150000px;}
.y48_c00476{bottom:187.950000px;}
.y24_c00476{bottom:189.000000px;}
.y47_c00476{bottom:206.250000px;}
.y23_c00476{bottom:207.150000px;}
.y46_c00476{bottom:224.100000px;}
.y22_c00476{bottom:226.350000px;}
.y45_c00476{bottom:242.250000px;}
.y21_c00476{bottom:243.900000px;}
.y44_c00476{bottom:260.550000px;}
.y20_c00476{bottom:261.600000px;}
.y43_c00476{bottom:278.700000px;}
.y1f_c00476{bottom:279.750000px;}
.y42_c00476{bottom:296.700000px;}
.y1e_c00476{bottom:297.300000px;}
.y41_c00476{bottom:314.550000px;}
.y1d_c00476{bottom:315.150000px;}
.y40_c00476{bottom:333.000000px;}
.y1c_c00476{bottom:333.450000px;}
.y1b_c00476{bottom:350.700000px;}
.y3f_c00476{bottom:351.000000px;}
.y3e_c00476{bottom:368.850000px;}
.y1a_c00476{bottom:369.450000px;}
.y3d_c00476{bottom:387.000000px;}
.y19_c00476{bottom:387.150000px;}
.y3c_c00476{bottom:404.700000px;}
.y18_c00476{bottom:405.600000px;}
.y3b_c00476{bottom:422.250000px;}
.y17_c00476{bottom:423.150000px;}
.y16_c00476{bottom:441.000000px;}
.y58_c00476{bottom:457.200000px;}
.y3a_c00476{bottom:458.700000px;}
.y15_c00476{bottom:459.300000px;}
.y57_c00476{bottom:475.500000px;}
.y14_c00476{bottom:476.850000px;}
.y56_c00476{bottom:493.050000px;}
.y13_c00476{bottom:495.150000px;}
.y55_c00476{bottom:512.550000px;}
.y39_c00476{bottom:512.700000px;}
.y12_c00476{bottom:513.300000px;}
.y3_c00476{bottom:529.500000px;}
.y38_c00476{bottom:530.550000px;}
.y11_c00476{bottom:530.850000px;}
.y10_c00476{bottom:547.500000px;}
.y37_c00476{bottom:548.100000px;}
.y54_c00476{bottom:548.700000px;}
.yf_c00476{bottom:565.650000px;}
.y36_c00476{bottom:566.250000px;}
.y53_c00476{bottom:567.000000px;}
.ye_c00476{bottom:583.650000px;}
.y35_c00476{bottom:584.250000px;}
.y52_c00476{bottom:584.550000px;}
.yd_c00476{bottom:601.200000px;}
.y34_c00476{bottom:601.800000px;}
.y51_c00476{bottom:602.700000px;}
.yc_c00476{bottom:619.650000px;}
.y33_c00476{bottom:620.400000px;}
.yb_c00476{bottom:637.650000px;}
.y32_c00476{bottom:637.950000px;}
.ya_c00476{bottom:655.800000px;}
.y31_c00476{bottom:656.400000px;}
.y9_c00476{bottom:673.650000px;}
.y30_c00476{bottom:674.400000px;}
.y8_c00476{bottom:692.100000px;}
.y2f_c00476{bottom:692.250000px;}
.y7_c00476{bottom:709.500000px;}
.y2e_c00476{bottom:710.700000px;}
.y6_c00476{bottom:728.250000px;}
.y2d_c00476{bottom:728.700000px;}
.y5_c00476{bottom:746.100000px;}
.y2c_c00476{bottom:747.150000px;}
.y4_c00476{bottom:764.100000px;}
.y2b_c00476{bottom:765.150000px;}
.y2_c00476{bottom:782.700000px;}
.y1_c00476{bottom:803.550000px;}
.h5_c00476{height:13.200074px;}
.h6_c00476{height:43.804688px;}
.h2_c00476{height:59.736000px;}
.h1_c00476{height:62.880000px;}
.h4_c00476{height:66.024000px;}
.h3_c00476{height:163.265625px;}
.h0_c00476{height:843.750000px;}
.w2_c00476{width:104.875500px;}
.w1_c00476{width:579.750000px;}
.w0_c00476{width:579.975000px;}
.x0_c00476{left:0.000000px;}
.x4_c00476{left:11.850000px;}
.x3_c00476{left:12.900000px;}
.x9_c00476{left:70.800000px;}
.x6_c00476{left:72.450000px;}
.x5_c00476{left:73.950000px;}
.x2_c00476{left:75.900000px;}
.xa_c00476{left:91.050000px;}
.xc_c00476{left:106.350000px;}
.xb_c00476{left:115.800000px;}
.x7_c00476{left:118.800000px;}
.x8_c00476{left:125.550000px;}
.x1_c00476{left:211.200000px;}
.x19_c00476{left:241.801758px;}
.x14_c00476{left:283.950000px;}
.x13_c00476{left:285.600000px;}
.x12_c00476{left:286.950000px;}
.x11_c00476{left:288.900000px;}
.x10_c00476{left:290.250000px;}
.xf_c00476{left:291.300000px;}
.xe_c00476{left:292.500000px;}
.xd_c00476{left:293.850000px;}
.x15_c00476{left:377.700000px;}
.x18_c00476{left:492.450000px;}
.x16_c00476{left:494.550000px;}
.x17_c00476{left:496.800000px;}
@media print{
.v0_c00476{vertical-align:0.000000pt;}
.v1_c00476{vertical-align:69.333333pt;}
.ls6_c00476{letter-spacing:-5.333333pt;}
.ls5_c00476{letter-spacing:-2.666667pt;}
.ls3_c00476{letter-spacing:0.000000pt;}
.ls4_c00476{letter-spacing:2.666667pt;}
.ls7_c00476{letter-spacing:8.000000pt;}
.ls2_c00476{letter-spacing:12.832000pt;}
.ls1_c00476{letter-spacing:15.016000pt;}
.ls0_c00476{letter-spacing:16.616000pt;}
.ws6_c00476{word-spacing:-20.586667pt;}
.ws7_c00476{word-spacing:-13.386667pt;}
.ws8_c00476{word-spacing:-12.824000pt;}
.ws0_c00476{word-spacing:-12.586667pt;}
.ws2_c00476{word-spacing:-11.957333pt;}
.ws9_c00476{word-spacing:-11.602667pt;}
.ws3_c00476{word-spacing:-10.050667pt;}
.wsa_c00476{word-spacing:-8.050667pt;}
.ws4_c00476{word-spacing:-6.624000pt;}
.ws1_c00476{word-spacing:-0.810667pt;}
.wsb_c00476{word-spacing:0.000000pt;}
.ws5_c00476{word-spacing:3.901333pt;}
._27_c00476{margin-left:-16.768000pt;}
._1d_c00476{margin-left:-11.522667pt;}
._11_c00476{margin-left:-10.133333pt;}
._f_c00476{margin-left:-8.533333pt;}
._24_c00476{margin-left:-7.485333pt;}
._1b_c00476{margin-left:-6.440000pt;}
._1c_c00476{margin-left:-5.381333pt;}
._10_c00476{margin-left:-4.266667pt;}
._15_c00476{margin-left:-3.264000pt;}
._12_c00476{margin-left:-2.354667pt;}
._a_c00476{margin-left:-1.280000pt;}
._13_c00476{width:1.064000pt;}
._c_c00476{width:2.186667pt;}
._7_c00476{width:3.413333pt;}
._4_c00476{width:5.066667pt;}
._9_c00476{width:5.973333pt;}
._19_c00476{width:6.885333pt;}
._6_c00476{width:7.893333pt;}
._3_c00476{width:9.653333pt;}
._1_c00476{width:11.360000pt;}
._21_c00476{width:12.426667pt;}
._5_c00476{width:13.813333pt;}
._0_c00476{width:14.933333pt;}
._e_c00476{width:15.946667pt;}
._25_c00476{width:17.066667pt;}
._14_c00476{width:18.160000pt;}
._20_c00476{width:20.010667pt;}
._1e_c00476{width:21.546667pt;}
._17_c00476{width:22.461333pt;}
._b_c00476{width:23.840000pt;}
._28_c00476{width:25.058667pt;}
._1f_c00476{width:26.088000pt;}
._2b_c00476{width:27.202667pt;}
._29_c00476{width:28.504000pt;}
._2c_c00476{width:31.517333pt;}
._26_c00476{width:33.264000pt;}
._2_c00476{width:36.053333pt;}
._2a_c00476{width:38.677333pt;}
._1a_c00476{width:41.392000pt;}
._d_c00476{width:68.746667pt;}
._23_c00476{width:73.386667pt;}
._16_c00476{width:102.242667pt;}
._18_c00476{width:104.061333pt;}
._22_c00476{width:168.008000pt;}
._2d_c00476{width:180.240000pt;}
._8_c00476{width:373.386667pt;}
.fs6_c00476{font-size:21.333333pt;}
.fs2_c00476{font-size:29.333333pt;}
.fs7_c00476{font-size:42.666667pt;}
.fs5_c00476{font-size:48.000000pt;}
.fs1_c00476{font-size:50.666667pt;}
.fs0_c00476{font-size:53.333333pt;}
.fs4_c00476{font-size:56.000000pt;}
.fs3_c00476{font-size:144.000000pt;}
.y0_c00476{bottom:0.000000pt;}
.y5a_c00476{bottom:2.760000pt;}
.y59_c00476{bottom:6.425212pt;}
.y50_c00476{bottom:37.466667pt;}
.y4f_c00476{bottom:53.600000pt;}
.y2a_c00476{bottom:54.533333pt;}
.y4e_c00476{bottom:69.866667pt;}
.y29_c00476{bottom:71.333333pt;}
.y4d_c00476{bottom:86.000000pt;}
.y27_c00476{bottom:86.400000pt;}
.y28_c00476{bottom:87.600000pt;}
.y4c_c00476{bottom:102.266667pt;}
.y4b_c00476{bottom:118.533333pt;}
.y4a_c00476{bottom:134.933333pt;}
.y26_c00476{bottom:135.866667pt;}
.y49_c00476{bottom:150.533333pt;}
.y25_c00476{bottom:152.133333pt;}
.y48_c00476{bottom:167.066667pt;}
.y24_c00476{bottom:168.000000pt;}
.y47_c00476{bottom:183.333333pt;}
.y23_c00476{bottom:184.133333pt;}
.y46_c00476{bottom:199.200000pt;}
.y22_c00476{bottom:201.200000pt;}
.y45_c00476{bottom:215.333333pt;}
.y21_c00476{bottom:216.800000pt;}
.y44_c00476{bottom:231.600000pt;}
.y20_c00476{bottom:232.533333pt;}
.y43_c00476{bottom:247.733333pt;}
.y1f_c00476{bottom:248.666667pt;}
.y42_c00476{bottom:263.733333pt;}
.y1e_c00476{bottom:264.266667pt;}
.y41_c00476{bottom:279.600000pt;}
.y1d_c00476{bottom:280.133333pt;}
.y40_c00476{bottom:296.000000pt;}
.y1c_c00476{bottom:296.400000pt;}
.y1b_c00476{bottom:311.733333pt;}
.y3f_c00476{bottom:312.000000pt;}
.y3e_c00476{bottom:327.866667pt;}
.y1a_c00476{bottom:328.400000pt;}
.y3d_c00476{bottom:344.000000pt;}
.y19_c00476{bottom:344.133333pt;}
.y3c_c00476{bottom:359.733333pt;}
.y18_c00476{bottom:360.533333pt;}
.y3b_c00476{bottom:375.333333pt;}
.y17_c00476{bottom:376.133333pt;}
.y16_c00476{bottom:392.000000pt;}
.y58_c00476{bottom:406.400000pt;}
.y3a_c00476{bottom:407.733333pt;}
.y15_c00476{bottom:408.266667pt;}
.y57_c00476{bottom:422.666667pt;}
.y14_c00476{bottom:423.866667pt;}
.y56_c00476{bottom:438.266667pt;}
.y13_c00476{bottom:440.133333pt;}
.y55_c00476{bottom:455.600000pt;}
.y39_c00476{bottom:455.733333pt;}
.y12_c00476{bottom:456.266667pt;}
.y3_c00476{bottom:470.666667pt;}
.y38_c00476{bottom:471.600000pt;}
.y11_c00476{bottom:471.866667pt;}
.y10_c00476{bottom:486.666667pt;}
.y37_c00476{bottom:487.200000pt;}
.y54_c00476{bottom:487.733333pt;}
.yf_c00476{bottom:502.800000pt;}
.y36_c00476{bottom:503.333333pt;}
.y53_c00476{bottom:504.000000pt;}
.ye_c00476{bottom:518.800000pt;}
.y35_c00476{bottom:519.333333pt;}
.y52_c00476{bottom:519.600000pt;}
.yd_c00476{bottom:534.400000pt;}
.y34_c00476{bottom:534.933333pt;}
.y51_c00476{bottom:535.733333pt;}
.yc_c00476{bottom:550.800000pt;}
.y33_c00476{bottom:551.466667pt;}
.yb_c00476{bottom:566.800000pt;}
.y32_c00476{bottom:567.066667pt;}
.ya_c00476{bottom:582.933333pt;}
.y31_c00476{bottom:583.466667pt;}
.y9_c00476{bottom:598.800000pt;}
.y30_c00476{bottom:599.466667pt;}
.y8_c00476{bottom:615.200000pt;}
.y2f_c00476{bottom:615.333333pt;}
.y7_c00476{bottom:630.666667pt;}
.y2e_c00476{bottom:631.733333pt;}
.y6_c00476{bottom:647.333333pt;}
.y2d_c00476{bottom:647.733333pt;}
.y5_c00476{bottom:663.200000pt;}
.y2c_c00476{bottom:664.133333pt;}
.y4_c00476{bottom:679.200000pt;}
.y2b_c00476{bottom:680.133333pt;}
.y2_c00476{bottom:695.733333pt;}
.y1_c00476{bottom:714.266667pt;}
.h5_c00476{height:11.733399pt;}
.h6_c00476{height:38.937500pt;}
.h2_c00476{height:53.098667pt;}
.h1_c00476{height:55.893333pt;}
.h4_c00476{height:58.688000pt;}
.h3_c00476{height:145.125000pt;}
.h0_c00476{height:750.000000pt;}
.w2_c00476{width:93.222667pt;}
.w1_c00476{width:515.333333pt;}
.w0_c00476{width:515.533333pt;}
.x0_c00476{left:0.000000pt;}
.x4_c00476{left:10.533333pt;}
.x3_c00476{left:11.466667pt;}
.x9_c00476{left:62.933333pt;}
.x6_c00476{left:64.400000pt;}
.x5_c00476{left:65.733333pt;}
.x2_c00476{left:67.466667pt;}
.xa_c00476{left:80.933333pt;}
.xc_c00476{left:94.533333pt;}
.xb_c00476{left:102.933333pt;}
.x7_c00476{left:105.600000pt;}
.x8_c00476{left:111.600000pt;}
.x1_c00476{left:187.733333pt;}
.x19_c00476{left:214.934896pt;}
.x14_c00476{left:252.400000pt;}
.x13_c00476{left:253.866667pt;}
.x12_c00476{left:255.066667pt;}
.x11_c00476{left:256.800000pt;}
.x10_c00476{left:258.000000pt;}
.xf_c00476{left:258.933333pt;}
.xe_c00476{left:260.000000pt;}
.xd_c00476{left:261.200000pt;}
.x15_c00476{left:335.733333pt;}
.x18_c00476{left:437.733333pt;}
.x16_c00476{left:439.600000pt;}
.x17_c00476{left:441.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e4684cdc620db4068a3d41f7.woff2')format("woff");}.ff1_c00477{font-family:ff1_c00477;line-height:1.575000;font-style:normal;font-weight:normal;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_9c6cac4816d60d005355f641.woff2')format("woff");}.ff2_c00477{font-family:ff2_c00477;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00477;src:url('chunks/assets/font_c6e1f27a232b6330671921a3.woff2')format("woff");}.ff3_c00477{font-family:ff3_c00477;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00477;src:url('chunks/assets/font_17875c9c4f2f72d366c6ccb7.woff2')format("woff");}.ff4_c00477{font-family:ff4_c00477;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00477;src:url('chunks/assets/font_8b2e5ad6b48c810d0236910c.woff2')format("woff");}.ff5_c00477{font-family:ff5_c00477;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00477;src:url('chunks/assets/font_3c8e43a05f25fbc4572e6744.woff2')format("woff");}.ff6_c00477{font-family:ff6_c00477;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00477;src:url('chunks/assets/font_3fb0a71968cadf79300fb6e4.woff2')format("woff");}.ff7_c00477{font-family:ff7_c00477;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00477;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff8_c00477{font-family:ff8_c00477;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00477{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00477{vertical-align:-1.800000px;}
.v0_c00477{vertical-align:0.000000px;}
.ls5_c00477{letter-spacing:0.000000px;}
.ls0_c00477{letter-spacing:2.850000px;}
.ls3_c00477{letter-spacing:5.040000px;}
.ls4_c00477{letter-spacing:6.000000px;}
.ls1_c00477{letter-spacing:7.800000px;}
.ls2_c00477{letter-spacing:9.600000px;}
.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:-16.500000px;}
.ws2_c00477{word-spacing:-15.813000px;}
.ws1_c00477{word-spacing:-14.340000px;}
.ws3_c00477{word-spacing:0.000000px;}
._5_c00477{margin-left:-7.938000px;}
._1_c00477{margin-left:-6.741000px;}
._17_c00477{margin-left:-5.628000px;}
._2_c00477{margin-left:-4.038000px;}
._7_c00477{margin-left:-2.904000px;}
._6_c00477{margin-left:-1.830000px;}
._8_c00477{width:1.128000px;}
._3_c00477{width:2.499000px;}
._9_c00477{width:3.951000px;}
._a_c00477{width:5.520000px;}
._0_c00477{width:6.552000px;}
._4_c00477{width:7.725000px;}
._c_c00477{width:9.324000px;}
._10_c00477{width:11.280000px;}
._b_c00477{width:12.690000px;}
._19_c00477{width:14.163000px;}
._11_c00477{width:15.582000px;}
._d_c00477{width:17.673000px;}
._15_c00477{width:18.798000px;}
._1c_c00477{width:20.379000px;}
._18_c00477{width:21.990000px;}
._12_c00477{width:23.136000px;}
._1a_c00477{width:24.768000px;}
._13_c00477{width:27.504000px;}
._f_c00477{width:29.160000px;}
._1d_c00477{width:30.456000px;}
._1b_c00477{width:33.573000px;}
._e_c00477{width:34.611000px;}
._14_c00477{width:36.240000px;}
._16_c00477{width:38.271000px;}
.fc2_c00477{color:transparent;}
.fc1_c00477{color:rgb(128,128,128);}
.fc0_c00477{color:rgb(0,0,0);}
.fs3_c00477{font-size:48.000000px;}
.fs2_c00477{font-size:60.000000px;}
.fs0_c00477{font-size:63.000000px;}
.fs1_c00477{font-size:66.000000px;}
.y0_c00477{bottom:0.000000px;}
.y53_c00477{bottom:3.105000px;}
.y52_c00477{bottom:7.228355px;}
.y51_c00477{bottom:33.735000px;}
.y29_c00477{bottom:51.585000px;}
.y50_c00477{bottom:52.185000px;}
.y28_c00477{bottom:70.785000px;}
.y4f_c00477{bottom:71.085000px;}
.y27_c00477{bottom:88.785000px;}
.y4e_c00477{bottom:89.685000px;}
.y26_c00477{bottom:106.935000px;}
.y4d_c00477{bottom:107.535000px;}
.y25_c00477{bottom:125.235000px;}
.y4c_c00477{bottom:125.535000px;}
.y4b_c00477{bottom:143.685000px;}
.y24_c00477{bottom:143.985000px;}
.y23_c00477{bottom:161.685000px;}
.y4a_c00477{bottom:162.435000px;}
.y22_c00477{bottom:180.435000px;}
.y49_c00477{bottom:180.585000px;}
.y21_c00477{bottom:198.735000px;}
.y20_c00477{bottom:217.035000px;}
.y48_c00477{bottom:234.435000px;}
.y1f_c00477{bottom:235.485000px;}
.y47_c00477{bottom:253.035000px;}
.y1e_c00477{bottom:253.785000px;}
.y46_c00477{bottom:271.635000px;}
.y1d_c00477{bottom:272.385000px;}
.y45_c00477{bottom:288.885000px;}
.y1c_c00477{bottom:289.935000px;}
.y44_c00477{bottom:306.735000px;}
.y1b_c00477{bottom:308.085000px;}
.y43_c00477{bottom:325.035000px;}
.y1a_c00477{bottom:326.685000px;}
.y42_c00477{bottom:343.185000px;}
.y19_c00477{bottom:344.835000px;}
.y41_c00477{bottom:361.335000px;}
.y18_c00477{bottom:362.685000px;}
.y40_c00477{bottom:379.785000px;}
.y17_c00477{bottom:381.285000px;}
.y3f_c00477{bottom:397.935000px;}
.y16_c00477{bottom:398.835000px;}
.y3e_c00477{bottom:416.085000px;}
.y15_c00477{bottom:417.735000px;}
.y3d_c00477{bottom:433.935000px;}
.y14_c00477{bottom:435.585000px;}
.y3c_c00477{bottom:451.935000px;}
.y13_c00477{bottom:453.285000px;}
.y3b_c00477{bottom:470.685000px;}
.y12_c00477{bottom:472.035000px;}
.y3a_c00477{bottom:488.235000px;}
.y11_c00477{bottom:490.035000px;}
.y39_c00477{bottom:506.235000px;}
.y10_c00477{bottom:508.635000px;}
.y38_c00477{bottom:524.835000px;}
.yf_c00477{bottom:526.485000px;}
.y37_c00477{bottom:542.685000px;}
.ye_c00477{bottom:544.335000px;}
.y36_c00477{bottom:561.135000px;}
.yd_c00477{bottom:562.635000px;}
.y35_c00477{bottom:579.135000px;}
.yc_c00477{bottom:580.785000px;}
.y34_c00477{bottom:597.585000px;}
.yb_c00477{bottom:599.085000px;}
.y33_c00477{bottom:615.585000px;}
.ya_c00477{bottom:617.835000px;}
.y32_c00477{bottom:634.035000px;}
.y9_c00477{bottom:635.835000px;}
.y31_c00477{bottom:652.335000px;}
.y8_c00477{bottom:654.285000px;}
.y30_c00477{bottom:670.935000px;}
.y7_c00477{bottom:672.585000px;}
.y2f_c00477{bottom:689.385000px;}
.y6_c00477{bottom:690.735000px;}
.y2e_c00477{bottom:707.085000px;}
.y5_c00477{bottom:709.035000px;}
.y2d_c00477{bottom:725.235000px;}
.y4_c00477{bottom:727.185000px;}
.y2c_c00477{bottom:744.135000px;}
.y3_c00477{bottom:745.185000px;}
.y2b_c00477{bottom:762.735000px;}
.y2_c00477{bottom:764.085000px;}
.y2a_c00477{bottom:780.885000px;}
.y1_c00477{bottom:781.935000px;}
.h6_c00477{height:13.200074px;}
.h7_c00477{height:43.804688px;}
.h3_c00477{height:62.880000px;}
.h4_c00477{height:64.224000px;}
.h5_c00477{height:66.024000px;}
.h2_c00477{height:71.544000px;}
.h0_c00477{height:842.925000px;}
.h1_c00477{height:843.000000px;}
.w2_c00477{width:104.875500px;}
.w1_c00477{width:576.000000px;}
.w0_c00477{width:576.150000px;}
.x0_c00477{left:0.000000px;}
.x2_c00477{left:98.850000px;}
.x3_c00477{left:99.900000px;}
.x1_c00477{left:100.950000px;}
.x4_c00477{left:102.300000px;}
.x5_c00477{left:103.350000px;}
.x6_c00477{left:104.400000px;}
.x7_c00477{left:105.600000px;}
.x8_c00477{left:106.650000px;}
.x9_c00477{left:107.700000px;}
.xb_c00477{left:108.750000px;}
.xd_c00477{left:109.800000px;}
.xc_c00477{left:111.000000px;}
.xa_c00477{left:115.200000px;}
.x15_c00477{left:239.889267px;}
.xe_c00477{left:321.600000px;}
.xf_c00477{left:322.950000px;}
.x10_c00477{left:324.000000px;}
.x12_c00477{left:325.050000px;}
.x11_c00477{left:326.100000px;}
.x13_c00477{left:327.150000px;}
.x14_c00477{left:499.200000px;}
@media print{
.v1_c00477{vertical-align:-1.600000pt;}
.v0_c00477{vertical-align:0.000000pt;}
.ls5_c00477{letter-spacing:0.000000pt;}
.ls0_c00477{letter-spacing:2.533333pt;}
.ls3_c00477{letter-spacing:4.480000pt;}
.ls4_c00477{letter-spacing:5.333333pt;}
.ls1_c00477{letter-spacing:6.933333pt;}
.ls2_c00477{letter-spacing:8.533333pt;}
.ws0_c00477{word-spacing:-14.666667pt;}
.ws2_c00477{word-spacing:-14.056000pt;}
.ws1_c00477{word-spacing:-12.746667pt;}
.ws3_c00477{word-spacing:0.000000pt;}
._5_c00477{margin-left:-7.056000pt;}
._1_c00477{margin-left:-5.992000pt;}
._17_c00477{margin-left:-5.002667pt;}
._2_c00477{margin-left:-3.589333pt;}
._7_c00477{margin-left:-2.581333pt;}
._6_c00477{margin-left:-1.626667pt;}
._8_c00477{width:1.002667pt;}
._3_c00477{width:2.221333pt;}
._9_c00477{width:3.512000pt;}
._a_c00477{width:4.906667pt;}
._0_c00477{width:5.824000pt;}
._4_c00477{width:6.866667pt;}
._c_c00477{width:8.288000pt;}
._10_c00477{width:10.026667pt;}
._b_c00477{width:11.280000pt;}
._19_c00477{width:12.589333pt;}
._11_c00477{width:13.850667pt;}
._d_c00477{width:15.709333pt;}
._15_c00477{width:16.709333pt;}
._1c_c00477{width:18.114667pt;}
._18_c00477{width:19.546667pt;}
._12_c00477{width:20.565333pt;}
._1a_c00477{width:22.016000pt;}
._13_c00477{width:24.448000pt;}
._f_c00477{width:25.920000pt;}
._1d_c00477{width:27.072000pt;}
._1b_c00477{width:29.842667pt;}
._e_c00477{width:30.765333pt;}
._14_c00477{width:32.213333pt;}
._16_c00477{width:34.018667pt;}
.fs3_c00477{font-size:42.666667pt;}
.fs2_c00477{font-size:53.333333pt;}
.fs0_c00477{font-size:56.000000pt;}
.fs1_c00477{font-size:58.666667pt;}
.y0_c00477{bottom:0.000000pt;}
.y53_c00477{bottom:2.760000pt;}
.y52_c00477{bottom:6.425204pt;}
.y51_c00477{bottom:29.986667pt;}
.y29_c00477{bottom:45.853333pt;}
.y50_c00477{bottom:46.386667pt;}
.y28_c00477{bottom:62.920000pt;}
.y4f_c00477{bottom:63.186667pt;}
.y27_c00477{bottom:78.920000pt;}
.y4e_c00477{bottom:79.720000pt;}
.y26_c00477{bottom:95.053333pt;}
.y4d_c00477{bottom:95.586667pt;}
.y25_c00477{bottom:111.320000pt;}
.y4c_c00477{bottom:111.586667pt;}
.y4b_c00477{bottom:127.720000pt;}
.y24_c00477{bottom:127.986667pt;}
.y23_c00477{bottom:143.720000pt;}
.y4a_c00477{bottom:144.386667pt;}
.y22_c00477{bottom:160.386667pt;}
.y49_c00477{bottom:160.520000pt;}
.y21_c00477{bottom:176.653333pt;}
.y20_c00477{bottom:192.920000pt;}
.y48_c00477{bottom:208.386667pt;}
.y1f_c00477{bottom:209.320000pt;}
.y47_c00477{bottom:224.920000pt;}
.y1e_c00477{bottom:225.586667pt;}
.y46_c00477{bottom:241.453333pt;}
.y1d_c00477{bottom:242.120000pt;}
.y45_c00477{bottom:256.786667pt;}
.y1c_c00477{bottom:257.720000pt;}
.y44_c00477{bottom:272.653333pt;}
.y1b_c00477{bottom:273.853333pt;}
.y43_c00477{bottom:288.920000pt;}
.y1a_c00477{bottom:290.386667pt;}
.y42_c00477{bottom:305.053333pt;}
.y19_c00477{bottom:306.520000pt;}
.y41_c00477{bottom:321.186667pt;}
.y18_c00477{bottom:322.386667pt;}
.y40_c00477{bottom:337.586667pt;}
.y17_c00477{bottom:338.920000pt;}
.y3f_c00477{bottom:353.720000pt;}
.y16_c00477{bottom:354.520000pt;}
.y3e_c00477{bottom:369.853333pt;}
.y15_c00477{bottom:371.320000pt;}
.y3d_c00477{bottom:385.720000pt;}
.y14_c00477{bottom:387.186667pt;}
.y3c_c00477{bottom:401.720000pt;}
.y13_c00477{bottom:402.920000pt;}
.y3b_c00477{bottom:418.386667pt;}
.y12_c00477{bottom:419.586667pt;}
.y3a_c00477{bottom:433.986667pt;}
.y11_c00477{bottom:435.586667pt;}
.y39_c00477{bottom:449.986667pt;}
.y10_c00477{bottom:452.120000pt;}
.y38_c00477{bottom:466.520000pt;}
.yf_c00477{bottom:467.986667pt;}
.y37_c00477{bottom:482.386667pt;}
.ye_c00477{bottom:483.853333pt;}
.y36_c00477{bottom:498.786667pt;}
.yd_c00477{bottom:500.120000pt;}
.y35_c00477{bottom:514.786667pt;}
.yc_c00477{bottom:516.253333pt;}
.y34_c00477{bottom:531.186667pt;}
.yb_c00477{bottom:532.520000pt;}
.y33_c00477{bottom:547.186667pt;}
.ya_c00477{bottom:549.186667pt;}
.y32_c00477{bottom:563.586667pt;}
.y9_c00477{bottom:565.186667pt;}
.y31_c00477{bottom:579.853333pt;}
.y8_c00477{bottom:581.586667pt;}
.y30_c00477{bottom:596.386667pt;}
.y7_c00477{bottom:597.853333pt;}
.y2f_c00477{bottom:612.786667pt;}
.y6_c00477{bottom:613.986667pt;}
.y2e_c00477{bottom:628.520000pt;}
.y5_c00477{bottom:630.253333pt;}
.y2d_c00477{bottom:644.653333pt;}
.y4_c00477{bottom:646.386667pt;}
.y2c_c00477{bottom:661.453333pt;}
.y3_c00477{bottom:662.386667pt;}
.y2b_c00477{bottom:677.986667pt;}
.y2_c00477{bottom:679.186667pt;}
.y2a_c00477{bottom:694.120000pt;}
.y1_c00477{bottom:695.053333pt;}
.h6_c00477{height:11.733399pt;}
.h7_c00477{height:38.937500pt;}
.h3_c00477{height:55.893333pt;}
.h4_c00477{height:57.088000pt;}
.h5_c00477{height:58.688000pt;}
.h2_c00477{height:63.594667pt;}
.h0_c00477{height:749.266667pt;}
.h1_c00477{height:749.333333pt;}
.w2_c00477{width:93.222667pt;}
.w1_c00477{width:512.000000pt;}
.w0_c00477{width:512.133333pt;}
.x0_c00477{left:0.000000pt;}
.x2_c00477{left:87.866667pt;}
.x3_c00477{left:88.800000pt;}
.x1_c00477{left:89.733333pt;}
.x4_c00477{left:90.933333pt;}
.x5_c00477{left:91.866667pt;}
.x6_c00477{left:92.800000pt;}
.x7_c00477{left:93.866667pt;}
.x8_c00477{left:94.800000pt;}
.x9_c00477{left:95.733333pt;}
.xb_c00477{left:96.666667pt;}
.xd_c00477{left:97.600000pt;}
.xc_c00477{left:98.666667pt;}
.xa_c00477{left:102.400000pt;}
.x15_c00477{left:213.234904pt;}
.xe_c00477{left:285.866667pt;}
.xf_c00477{left:287.066667pt;}
.x10_c00477{left:288.000000pt;}
.x12_c00477{left:288.933333pt;}
.x11_c00477{left:289.866667pt;}
.x13_c00477{left:290.800000pt;}
.x14_c00477{left:443.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_aaa51637eeb3c262e439e8e3.woff2')format("woff");}.ff1_c00478{font-family:ff1_c00478;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00478;src:url('chunks/assets/font_8620d9f2d1cdedceb72d38ac.woff2')format("woff");}.ff2_c00478{font-family:ff2_c00478;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00478;src:url('chunks/assets/font_cf868bcecfa0831e3a48f3d2.woff2')format("woff");}.ff3_c00478{font-family:ff3_c00478;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00478;src:url('chunks/assets/font_fc40aef3bea229f24b39995b.woff2')format("woff");}.ff4_c00478{font-family:ff4_c00478;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00478;src:url('chunks/assets/font_cc104e6b0efc2e02f1162a9b.woff2')format("woff");}.ff5_c00478{font-family:ff5_c00478;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00478;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff6_c00478{font-family:ff6_c00478;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00478;src:url('chunks/assets/font_343cb283313914d5ac322911.woff2')format("woff");}.ff7_c00478{font-family:ff7_c00478;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:ff8_c00478;src:url('chunks/assets/font_187e6685ad92d5f20798a7a7.woff2')format("woff");}.ff8_c00478{font-family:ff8_c00478;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00478;src:url('chunks/assets/font_63c00ba21d9994b84439e838.woff2')format("woff");}.ff9_c00478{font-family:ff9_c00478;line-height:1.575000;font-style:normal;font-weight: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_c00478;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ffa_c00478{font-family:ffa_c00478;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00478{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00478{vertical-align:0.000000px;}
.v1_c00478{vertical-align:58.200000px;}
.ls2_c00478{letter-spacing:0.000000px;}
.ls1_c00478{letter-spacing:1.080000px;}
.ls3_c00478{letter-spacing:3.000000px;}
.ls0_c00478{letter-spacing:4.644000px;}
.ls5_c00478{letter-spacing:6.000000px;}
.ls4_c00478{letter-spacing:15.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;}
}
.ws1_c00478{word-spacing:-50.022000px;}
.ws6_c00478{word-spacing:-37.746000px;}
.ws4_c00478{word-spacing:-35.391000px;}
.ws5_c00478{word-spacing:-29.340000px;}
.ws7_c00478{word-spacing:-22.074000px;}
.ws2_c00478{word-spacing:-19.941000px;}
.ws0_c00478{word-spacing:-14.340000px;}
.ws8_c00478{word-spacing:-14.160000px;}
.ws3_c00478{word-spacing:-12.291000px;}
.ws9_c00478{word-spacing:0.000000px;}
._1c_c00478{margin-left:-16.200000px;}
._1e_c00478{margin-left:-13.230000px;}
._12_c00478{margin-left:-10.062000px;}
._5_c00478{margin-left:-8.442000px;}
._d_c00478{margin-left:-6.426000px;}
._2_c00478{margin-left:-5.103000px;}
._4_c00478{margin-left:-3.717000px;}
._c_c00478{margin-left:-2.646000px;}
._3_c00478{margin-left:-1.575000px;}
._0_c00478{width:1.764000px;}
._1_c00478{width:3.654000px;}
._b_c00478{width:4.977000px;}
._7_c00478{width:6.174000px;}
._9_c00478{width:7.308000px;}
._a_c00478{width:8.883000px;}
._8_c00478{width:10.671000px;}
._6_c00478{width:11.781000px;}
._e_c00478{width:13.269000px;}
._13_c00478{width:14.805000px;}
._18_c00478{width:16.191000px;}
._10_c00478{width:17.805000px;}
._19_c00478{width:19.437000px;}
._11_c00478{width:21.168000px;}
._15_c00478{width:24.066000px;}
._f_c00478{width:26.271000px;}
._16_c00478{width:28.728000px;}
._1b_c00478{width:32.490000px;}
._1d_c00478{width:36.072000px;}
._1a_c00478{width:38.100000px;}
._14_c00478{width:195.387000px;}
._1f_c00478{width:212.244000px;}
._17_c00478{width:418.170000px;}
.fc2_c00478{color:transparent;}
.fc1_c00478{color:rgb(128,128,128);}
.fc0_c00478{color:rgb(0,0,0);}
.fs7_c00478{font-size:48.000000px;}
.fs3_c00478{font-size:51.000000px;}
.fs5_c00478{font-size:57.000000px;}
.fs1_c00478{font-size:60.000000px;}
.fs0_c00478{font-size:63.000000px;}
.fs6_c00478{font-size:66.000000px;}
.fs2_c00478{font-size:69.000000px;}
.fs4_c00478{font-size:141.000000px;}
.y0_c00478{bottom:0.000000px;}
.y53_c00478{bottom:3.105000px;}
.y52_c00478{bottom:7.228363px;}
.y51_c00478{bottom:30.750000px;}
.y27_c00478{bottom:48.900000px;}
.y50_c00478{bottom:49.950000px;}
.y26_c00478{bottom:67.500000px;}
.y4f_c00478{bottom:68.400000px;}
.y25_c00478{bottom:86.700000px;}
.y4e_c00478{bottom:87.000000px;}
.y24_c00478{bottom:103.500000px;}
.y4d_c00478{bottom:105.000000px;}
.y4c_c00478{bottom:122.850000px;}
.y23_c00478{bottom:123.150000px;}
.y22_c00478{bottom:140.400000px;}
.y4b_c00478{bottom:141.000000px;}
.y21_c00478{bottom:159.300000px;}
.y4a_c00478{bottom:159.600000px;}
.y20_c00478{bottom:175.800000px;}
.y49_c00478{bottom:177.900000px;}
.y48_c00478{bottom:195.000000px;}
.y1f_c00478{bottom:195.450000px;}
.y47_c00478{bottom:213.000000px;}
.y1e_c00478{bottom:213.600000px;}
.y1d_c00478{bottom:230.850000px;}
.y46_c00478{bottom:231.750000px;}
.y1c_c00478{bottom:250.050000px;}
.y1b_c00478{bottom:267.600000px;}
.y45_c00478{bottom:268.350000px;}
.y1a_c00478{bottom:285.900000px;}
.y44_c00478{bottom:286.800000px;}
.y19_c00478{bottom:303.300000px;}
.y43_c00478{bottom:304.350000px;}
.y18_c00478{bottom:306.750000px;}
.y42_c00478{bottom:322.650000px;}
.y41_c00478{bottom:341.250000px;}
.y17_c00478{bottom:357.000000px;}
.y40_c00478{bottom:359.100000px;}
.y16_c00478{bottom:375.600000px;}
.y3f_c00478{bottom:377.250000px;}
.y15_c00478{bottom:393.450000px;}
.y3e_c00478{bottom:395.250000px;}
.y14_c00478{bottom:412.350000px;}
.y3d_c00478{bottom:413.700000px;}
.y3c_c00478{bottom:431.550000px;}
.y13_c00478{bottom:447.450000px;}
.y3b_c00478{bottom:449.250000px;}
.y12_c00478{bottom:464.700000px;}
.y3a_c00478{bottom:468.150000px;}
.y11_c00478{bottom:483.300000px;}
.y39_c00478{bottom:486.000000px;}
.y10_c00478{bottom:500.850000px;}
.y38_c00478{bottom:504.150000px;}
.yf_c00478{bottom:518.700000px;}
.y37_c00478{bottom:521.700000px;}
.ye_c00478{bottom:535.650000px;}
.y36_c00478{bottom:539.700000px;}
.yd_c00478{bottom:554.400000px;}
.y35_c00478{bottom:557.850000px;}
.yc_c00478{bottom:571.950000px;}
.y34_c00478{bottom:576.150000px;}
.yb_c00478{bottom:589.950000px;}
.y33_c00478{bottom:594.600000px;}
.ya_c00478{bottom:608.400000px;}
.y32_c00478{bottom:612.450000px;}
.y9_c00478{bottom:625.950000px;}
.y31_c00478{bottom:631.050000px;}
.y8_c00478{bottom:644.250000px;}
.y30_c00478{bottom:649.050000px;}
.y7_c00478{bottom:662.550000px;}
.y2f_c00478{bottom:667.500000px;}
.y6_c00478{bottom:681.450000px;}
.y2e_c00478{bottom:685.500000px;}
.y5_c00478{bottom:699.000000px;}
.y2d_c00478{bottom:704.250000px;}
.y4_c00478{bottom:717.150000px;}
.y2c_c00478{bottom:722.550000px;}
.y3_c00478{bottom:735.750000px;}
.y2b_c00478{bottom:741.450000px;}
.y2_c00478{bottom:753.600000px;}
.y2a_c00478{bottom:759.750000px;}
.y1_c00478{bottom:772.200000px;}
.y29_c00478{bottom:778.650000px;}
.y28_c00478{bottom:795.450000px;}
.ha_c00478{height:13.200074px;}
.hb_c00478{height:43.804688px;}
.h5_c00478{height:59.690918px;}
.h7_c00478{height:59.736000px;}
.h9_c00478{height:62.880000px;}
.h4_c00478{height:64.571777px;}
.h2_c00478{height:66.024000px;}
.h8_c00478{height:70.422000px;}
.h3_c00478{height:73.623000px;}
.h6_c00478{height:147.768000px;}
.h1_c00478{height:834.000000px;}
.h0_c00478{height:834.300000px;}
.w2_c00478{width:104.875500px;}
.w0_c00478{width:573.450000px;}
.w1_c00478{width:573.750000px;}
.x0_c00478{left:0.000000px;}
.x8_c00478{left:5.100000px;}
.xa_c00478{left:59.100000px;}
.x7_c00478{left:65.550000px;}
.x1_c00478{left:67.200000px;}
.x6_c00478{left:86.400000px;}
.x9_c00478{left:88.200000px;}
.x4_c00478{left:90.750000px;}
.x3_c00478{left:97.200000px;}
.x5_c00478{left:145.200000px;}
.x2_c00478{left:162.450000px;}
.x10_c00478{left:238.539230px;}
.xb_c00478{left:271.950000px;}
.xd_c00478{left:281.400000px;}
.xc_c00478{left:282.900000px;}
.xe_c00478{left:284.850000px;}
.xf_c00478{left:372.300000px;}
@media print{
.v0_c00478{vertical-align:0.000000pt;}
.v1_c00478{vertical-align:51.733333pt;}
.ls2_c00478{letter-spacing:0.000000pt;}
.ls1_c00478{letter-spacing:0.960000pt;}
.ls3_c00478{letter-spacing:2.666667pt;}
.ls0_c00478{letter-spacing:4.128000pt;}
.ls5_c00478{letter-spacing:5.333333pt;}
.ls4_c00478{letter-spacing:13.333333pt;}
.ws1_c00478{word-spacing:-44.464000pt;}
.ws6_c00478{word-spacing:-33.552000pt;}
.ws4_c00478{word-spacing:-31.458667pt;}
.ws5_c00478{word-spacing:-26.080000pt;}
.ws7_c00478{word-spacing:-19.621333pt;}
.ws2_c00478{word-spacing:-17.725333pt;}
.ws0_c00478{word-spacing:-12.746667pt;}
.ws8_c00478{word-spacing:-12.586667pt;}
.ws3_c00478{word-spacing:-10.925333pt;}
.ws9_c00478{word-spacing:0.000000pt;}
._1c_c00478{margin-left:-14.400000pt;}
._1e_c00478{margin-left:-11.760000pt;}
._12_c00478{margin-left:-8.944000pt;}
._5_c00478{margin-left:-7.504000pt;}
._d_c00478{margin-left:-5.712000pt;}
._2_c00478{margin-left:-4.536000pt;}
._4_c00478{margin-left:-3.304000pt;}
._c_c00478{margin-left:-2.352000pt;}
._3_c00478{margin-left:-1.400000pt;}
._0_c00478{width:1.568000pt;}
._1_c00478{width:3.248000pt;}
._b_c00478{width:4.424000pt;}
._7_c00478{width:5.488000pt;}
._9_c00478{width:6.496000pt;}
._a_c00478{width:7.896000pt;}
._8_c00478{width:9.485333pt;}
._6_c00478{width:10.472000pt;}
._e_c00478{width:11.794667pt;}
._13_c00478{width:13.160000pt;}
._18_c00478{width:14.392000pt;}
._10_c00478{width:15.826667pt;}
._19_c00478{width:17.277333pt;}
._11_c00478{width:18.816000pt;}
._15_c00478{width:21.392000pt;}
._f_c00478{width:23.352000pt;}
._16_c00478{width:25.536000pt;}
._1b_c00478{width:28.880000pt;}
._1d_c00478{width:32.064000pt;}
._1a_c00478{width:33.866667pt;}
._14_c00478{width:173.677333pt;}
._1f_c00478{width:188.661333pt;}
._17_c00478{width:371.706667pt;}
.fs7_c00478{font-size:42.666667pt;}
.fs3_c00478{font-size:45.333333pt;}
.fs5_c00478{font-size:50.666667pt;}
.fs1_c00478{font-size:53.333333pt;}
.fs0_c00478{font-size:56.000000pt;}
.fs6_c00478{font-size:58.666667pt;}
.fs2_c00478{font-size:61.333333pt;}
.fs4_c00478{font-size:125.333333pt;}
.y0_c00478{bottom:0.000000pt;}
.y53_c00478{bottom:2.760000pt;}
.y52_c00478{bottom:6.425212pt;}
.y51_c00478{bottom:27.333333pt;}
.y27_c00478{bottom:43.466667pt;}
.y50_c00478{bottom:44.400000pt;}
.y26_c00478{bottom:60.000000pt;}
.y4f_c00478{bottom:60.800000pt;}
.y25_c00478{bottom:77.066667pt;}
.y4e_c00478{bottom:77.333333pt;}
.y24_c00478{bottom:92.000000pt;}
.y4d_c00478{bottom:93.333333pt;}
.y4c_c00478{bottom:109.200000pt;}
.y23_c00478{bottom:109.466667pt;}
.y22_c00478{bottom:124.800000pt;}
.y4b_c00478{bottom:125.333333pt;}
.y21_c00478{bottom:141.600000pt;}
.y4a_c00478{bottom:141.866667pt;}
.y20_c00478{bottom:156.266667pt;}
.y49_c00478{bottom:158.133333pt;}
.y48_c00478{bottom:173.333333pt;}
.y1f_c00478{bottom:173.733333pt;}
.y47_c00478{bottom:189.333333pt;}
.y1e_c00478{bottom:189.866667pt;}
.y1d_c00478{bottom:205.200000pt;}
.y46_c00478{bottom:206.000000pt;}
.y1c_c00478{bottom:222.266667pt;}
.y1b_c00478{bottom:237.866667pt;}
.y45_c00478{bottom:238.533333pt;}
.y1a_c00478{bottom:254.133333pt;}
.y44_c00478{bottom:254.933333pt;}
.y19_c00478{bottom:269.600000pt;}
.y43_c00478{bottom:270.533333pt;}
.y18_c00478{bottom:272.666667pt;}
.y42_c00478{bottom:286.800000pt;}
.y41_c00478{bottom:303.333333pt;}
.y17_c00478{bottom:317.333333pt;}
.y40_c00478{bottom:319.200000pt;}
.y16_c00478{bottom:333.866667pt;}
.y3f_c00478{bottom:335.333333pt;}
.y15_c00478{bottom:349.733333pt;}
.y3e_c00478{bottom:351.333333pt;}
.y14_c00478{bottom:366.533333pt;}
.y3d_c00478{bottom:367.733333pt;}
.y3c_c00478{bottom:383.600000pt;}
.y13_c00478{bottom:397.733333pt;}
.y3b_c00478{bottom:399.333333pt;}
.y12_c00478{bottom:413.066667pt;}
.y3a_c00478{bottom:416.133333pt;}
.y11_c00478{bottom:429.600000pt;}
.y39_c00478{bottom:432.000000pt;}
.y10_c00478{bottom:445.200000pt;}
.y38_c00478{bottom:448.133333pt;}
.yf_c00478{bottom:461.066667pt;}
.y37_c00478{bottom:463.733333pt;}
.ye_c00478{bottom:476.133333pt;}
.y36_c00478{bottom:479.733333pt;}
.yd_c00478{bottom:492.800000pt;}
.y35_c00478{bottom:495.866667pt;}
.yc_c00478{bottom:508.400000pt;}
.y34_c00478{bottom:512.133333pt;}
.yb_c00478{bottom:524.400000pt;}
.y33_c00478{bottom:528.533333pt;}
.ya_c00478{bottom:540.800000pt;}
.y32_c00478{bottom:544.400000pt;}
.y9_c00478{bottom:556.400000pt;}
.y31_c00478{bottom:560.933333pt;}
.y8_c00478{bottom:572.666667pt;}
.y30_c00478{bottom:576.933333pt;}
.y7_c00478{bottom:588.933333pt;}
.y2f_c00478{bottom:593.333333pt;}
.y6_c00478{bottom:605.733333pt;}
.y2e_c00478{bottom:609.333333pt;}
.y5_c00478{bottom:621.333333pt;}
.y2d_c00478{bottom:626.000000pt;}
.y4_c00478{bottom:637.466667pt;}
.y2c_c00478{bottom:642.266667pt;}
.y3_c00478{bottom:654.000000pt;}
.y2b_c00478{bottom:659.066667pt;}
.y2_c00478{bottom:669.866667pt;}
.y2a_c00478{bottom:675.333333pt;}
.y1_c00478{bottom:686.400000pt;}
.y29_c00478{bottom:692.133333pt;}
.y28_c00478{bottom:707.066667pt;}
.ha_c00478{height:11.733399pt;}
.hb_c00478{height:38.937500pt;}
.h5_c00478{height:53.058594pt;}
.h7_c00478{height:53.098667pt;}
.h9_c00478{height:55.893333pt;}
.h4_c00478{height:57.397135pt;}
.h2_c00478{height:58.688000pt;}
.h8_c00478{height:62.597333pt;}
.h3_c00478{height:65.442667pt;}
.h6_c00478{height:131.349333pt;}
.h1_c00478{height:741.333333pt;}
.h0_c00478{height:741.600000pt;}
.w2_c00478{width:93.222667pt;}
.w0_c00478{width:509.733333pt;}
.w1_c00478{width:510.000000pt;}
.x0_c00478{left:0.000000pt;}
.x8_c00478{left:4.533333pt;}
.xa_c00478{left:52.533333pt;}
.x7_c00478{left:58.266667pt;}
.x1_c00478{left:59.733333pt;}
.x6_c00478{left:76.800000pt;}
.x9_c00478{left:78.400000pt;}
.x4_c00478{left:80.666667pt;}
.x3_c00478{left:86.400000pt;}
.x5_c00478{left:129.066667pt;}
.x2_c00478{left:144.400000pt;}
.x10_c00478{left:212.034871pt;}
.xb_c00478{left:241.733333pt;}
.xd_c00478{left:250.133333pt;}
.xc_c00478{left:251.466667pt;}
.xe_c00478{left:253.200000pt;}
.xf_c00478{left:330.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_fee7be090ded7f113e575745.woff2')format("woff");}.ff1_c00479{font-family:ff1_c00479;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00479;src:url('chunks/assets/font_5b87f0a7f200f647d7bc4438.woff2')format("woff");}.ff2_c00479{font-family:ff2_c00479;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00479;src:url('chunks/assets/font_7f38b856193eeb8ae8791518.woff2')format("woff");}.ff3_c00479{font-family:ff3_c00479;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00479;src:url('chunks/assets/font_4ccd4c5e5e90d5a564dbbda4.woff2')format("woff");}.ff4_c00479{font-family:ff4_c00479;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00479;src:url('chunks/assets/font_50ae163cb7ac0b065fc8fd6d.woff2')format("woff");}.ff5_c00479{font-family:ff5_c00479;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00479;src:url('chunks/assets/font_f812c10925c7f887e9b6eeda.woff2')format("woff");}.ff6_c00479{font-family:ff6_c00479;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00479;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff7_c00479{font-family:ff7_c00479;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00479{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00479{vertical-align:0.000000px;}
.v1_c00479{vertical-align:63.600000px;}
.ls6_c00479{letter-spacing:0.000000px;}
.ls3_c00479{letter-spacing:0.450000px;}
.ls7_c00479{letter-spacing:3.000000px;}
.ls5_c00479{letter-spacing:10.680000px;}
.ls1_c00479{letter-spacing:14.208000px;}
.ls0_c00479{letter-spacing:17.880000px;}
.ls2_c00479{letter-spacing:20.880000px;}
.ls4_c00479{letter-spacing:22.050000px;}
.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:-50.022000px;}
.ws2_c00479{word-spacing:-15.576000px;}
.ws3_c00479{word-spacing:-14.340000px;}
.ws4_c00479{word-spacing:0.000000px;}
.ws1_c00479{word-spacing:0.594000px;}
._1f_c00479{margin-left:-13.920000px;}
._1c_c00479{margin-left:-11.352000px;}
._21_c00479{margin-left:-9.645000px;}
._10_c00479{margin-left:-7.686000px;}
._17_c00479{margin-left:-6.489000px;}
._b_c00479{margin-left:-5.355000px;}
._d_c00479{margin-left:-4.158000px;}
._a_c00479{margin-left:-3.024000px;}
._14_c00479{margin-left:-2.016000px;}
._5_c00479{margin-left:-1.008000px;}
._3_c00479{width:1.197000px;}
._4_c00479{width:2.457000px;}
._1_c00479{width:4.158000px;}
._0_c00479{width:5.859000px;}
._c_c00479{width:7.056000px;}
._16_c00479{width:8.064000px;}
._8_c00479{width:9.072000px;}
._2_c00479{width:10.395000px;}
._6_c00479{width:11.781000px;}
._7_c00479{width:13.797000px;}
._18_c00479{width:15.708000px;}
._19_c00479{width:17.439000px;}
._e_c00479{width:19.656000px;}
._11_c00479{width:21.357000px;}
._f_c00479{width:23.184000px;}
._12_c00479{width:24.255000px;}
._9_c00479{width:25.263000px;}
._15_c00479{width:27.405000px;}
._1d_c00479{width:29.880000px;}
._1b_c00479{width:30.939000px;}
._13_c00479{width:34.209000px;}
._23_c00479{width:35.520000px;}
._22_c00479{width:37.026000px;}
._24_c00479{width:41.760000px;}
._20_c00479{width:103.248000px;}
._1a_c00479{width:202.431000px;}
._1e_c00479{width:220.341000px;}
.fc2_c00479{color:transparent;}
.fc1_c00479{color:rgb(128,128,128);}
.fc0_c00479{color:rgb(0,0,0);}
.fs5_c00479{font-size:48.000000px;}
.fs2_c00479{font-size:54.000000px;}
.fs1_c00479{font-size:60.000000px;}
.fs0_c00479{font-size:63.000000px;}
.fs3_c00479{font-size:66.000000px;}
.fs4_c00479{font-size:138.000000px;}
.y0_c00479{bottom:0.000000px;}
.y51_c00479{bottom:3.105000px;}
.y50_c00479{bottom:7.228371px;}
.y4f_c00479{bottom:55.065000px;}
.y29_c00479{bottom:57.015000px;}
.y4e_c00479{bottom:73.365000px;}
.y28_c00479{bottom:75.915000px;}
.y4d_c00479{bottom:92.115000px;}
.y27_c00479{bottom:93.915000px;}
.y4c_c00479{bottom:110.415000px;}
.y26_c00479{bottom:112.065000px;}
.y4b_c00479{bottom:128.565000px;}
.y25_c00479{bottom:129.915000px;}
.y4a_c00479{bottom:146.565000px;}
.y24_c00479{bottom:148.215000px;}
.y49_c00479{bottom:164.715000px;}
.y23_c00479{bottom:166.065000px;}
.y48_c00479{bottom:183.315000px;}
.y22_c00479{bottom:184.665000px;}
.y47_c00479{bottom:200.865000px;}
.y21_c00479{bottom:202.515000px;}
.y46_c00479{bottom:219.765000px;}
.y20_c00479{bottom:220.815000px;}
.y45_c00479{bottom:237.915000px;}
.y1f_c00479{bottom:239.265000px;}
.y44_c00479{bottom:255.615000px;}
.y1e_c00479{bottom:257.265000px;}
.y43_c00479{bottom:274.365000px;}
.y1d_c00479{bottom:275.715000px;}
.y42_c00479{bottom:291.915000px;}
.y1c_c00479{bottom:292.665000px;}
.y41_c00479{bottom:309.615000px;}
.y1b_c00479{bottom:311.265000px;}
.y40_c00479{bottom:328.065000px;}
.y1a_c00479{bottom:329.415000px;}
.y3f_c00479{bottom:345.915000px;}
.y19_c00479{bottom:347.265000px;}
.y3e_c00479{bottom:363.615000px;}
.y18_c00479{bottom:365.565000px;}
.y3d_c00479{bottom:382.065000px;}
.y3c_c00479{bottom:383.415000px;}
.y17_c00479{bottom:383.865000px;}
.y16_c00479{bottom:401.415000px;}
.y15_c00479{bottom:419.565000px;}
.y3b_c00479{bottom:436.515000px;}
.y14_c00479{bottom:438.165000px;}
.y3a_c00479{bottom:453.915000px;}
.y13_c00479{bottom:455.715000px;}
.y39_c00479{bottom:472.965000px;}
.y12_c00479{bottom:473.865000px;}
.y38_c00479{bottom:490.815000px;}
.y11_c00479{bottom:492.165000px;}
.y10_c00479{bottom:510.765000px;}
.y37_c00479{bottom:526.215000px;}
.yf_c00479{bottom:528.615000px;}
.ye_c00479{bottom:546.765000px;}
.y36_c00479{bottom:563.715000px;}
.yd_c00479{bottom:564.615000px;}
.y35_c00479{bottom:579.915000px;}
.yc_c00479{bottom:582.315000px;}
.y34_c00479{bottom:598.815000px;}
.yb_c00479{bottom:600.465000px;}
.y33_c00479{bottom:616.665000px;}
.ya_c00479{bottom:619.065000px;}
.y32_c00479{bottom:634.815000px;}
.y9_c00479{bottom:636.915000px;}
.y31_c00479{bottom:653.115000px;}
.y8_c00479{bottom:655.065000px;}
.y30_c00479{bottom:670.965000px;}
.y7_c00479{bottom:673.365000px;}
.y2f_c00479{bottom:689.865000px;}
.y6_c00479{bottom:691.515000px;}
.y2e_c00479{bottom:707.865000px;}
.y5_c00479{bottom:709.515000px;}
.y2d_c00479{bottom:725.715000px;}
.y4_c00479{bottom:727.965000px;}
.y2c_c00479{bottom:744.615000px;}
.y3_c00479{bottom:745.965000px;}
.y2b_c00479{bottom:762.765000px;}
.y2_c00479{bottom:764.565000px;}
.y2a_c00479{bottom:781.365000px;}
.y1_c00479{bottom:782.715000px;}
.h7_c00479{height:13.200074px;}
.h8_c00479{height:43.804688px;}
.h4_c00479{height:56.592000px;}
.h3_c00479{height:62.880000px;}
.h2_c00479{height:66.024000px;}
.h5_c00479{height:69.168000px;}
.h6_c00479{height:147.246000px;}
.h0_c00479{height:848.625000px;}
.h1_c00479{height:849.000000px;}
.w2_c00479{width:104.875500px;}
.w1_c00479{width:579.750000px;}
.w0_c00479{width:579.975000px;}
.x0_c00479{left:0.000000px;}
.x1_c00479{left:94.950000px;}
.x2_c00479{left:96.600000px;}
.x3_c00479{left:97.800000px;}
.x4_c00479{left:98.850000px;}
.x5_c00479{left:100.200000px;}
.xe_c00479{left:241.801758px;}
.x6_c00479{left:312.150000px;}
.x7_c00479{left:313.800000px;}
.x8_c00479{left:315.000000px;}
.xc_c00479{left:316.200000px;}
.xa_c00479{left:331.200000px;}
.xd_c00479{left:346.650000px;}
.xb_c00479{left:386.550000px;}
.x9_c00479{left:409.800000px;}
@media print{
.v0_c00479{vertical-align:0.000000pt;}
.v1_c00479{vertical-align:56.533333pt;}
.ls6_c00479{letter-spacing:0.000000pt;}
.ls3_c00479{letter-spacing:0.400000pt;}
.ls7_c00479{letter-spacing:2.666667pt;}
.ls5_c00479{letter-spacing:9.493333pt;}
.ls1_c00479{letter-spacing:12.629333pt;}
.ls0_c00479{letter-spacing:15.893333pt;}
.ls2_c00479{letter-spacing:18.560000pt;}
.ls4_c00479{letter-spacing:19.600000pt;}
.ws0_c00479{word-spacing:-44.464000pt;}
.ws2_c00479{word-spacing:-13.845333pt;}
.ws3_c00479{word-spacing:-12.746667pt;}
.ws4_c00479{word-spacing:0.000000pt;}
.ws1_c00479{word-spacing:0.528000pt;}
._1f_c00479{margin-left:-12.373333pt;}
._1c_c00479{margin-left:-10.090667pt;}
._21_c00479{margin-left:-8.573333pt;}
._10_c00479{margin-left:-6.832000pt;}
._17_c00479{margin-left:-5.768000pt;}
._b_c00479{margin-left:-4.760000pt;}
._d_c00479{margin-left:-3.696000pt;}
._a_c00479{margin-left:-2.688000pt;}
._14_c00479{margin-left:-1.792000pt;}
._5_c00479{margin-left:-0.896000pt;}
._3_c00479{width:1.064000pt;}
._4_c00479{width:2.184000pt;}
._1_c00479{width:3.696000pt;}
._0_c00479{width:5.208000pt;}
._c_c00479{width:6.272000pt;}
._16_c00479{width:7.168000pt;}
._8_c00479{width:8.064000pt;}
._2_c00479{width:9.240000pt;}
._6_c00479{width:10.472000pt;}
._7_c00479{width:12.264000pt;}
._18_c00479{width:13.962667pt;}
._19_c00479{width:15.501333pt;}
._e_c00479{width:17.472000pt;}
._11_c00479{width:18.984000pt;}
._f_c00479{width:20.608000pt;}
._12_c00479{width:21.560000pt;}
._9_c00479{width:22.456000pt;}
._15_c00479{width:24.360000pt;}
._1d_c00479{width:26.560000pt;}
._1b_c00479{width:27.501333pt;}
._13_c00479{width:30.408000pt;}
._23_c00479{width:31.573333pt;}
._22_c00479{width:32.912000pt;}
._24_c00479{width:37.120000pt;}
._20_c00479{width:91.776000pt;}
._1a_c00479{width:179.938667pt;}
._1e_c00479{width:195.858667pt;}
.fs5_c00479{font-size:42.666667pt;}
.fs2_c00479{font-size:48.000000pt;}
.fs1_c00479{font-size:53.333333pt;}
.fs0_c00479{font-size:56.000000pt;}
.fs3_c00479{font-size:58.666667pt;}
.fs4_c00479{font-size:122.666667pt;}
.y0_c00479{bottom:0.000000pt;}
.y51_c00479{bottom:2.760000pt;}
.y50_c00479{bottom:6.425219pt;}
.y4f_c00479{bottom:48.946667pt;}
.y29_c00479{bottom:50.680000pt;}
.y4e_c00479{bottom:65.213333pt;}
.y28_c00479{bottom:67.480000pt;}
.y4d_c00479{bottom:81.880000pt;}
.y27_c00479{bottom:83.480000pt;}
.y4c_c00479{bottom:98.146667pt;}
.y26_c00479{bottom:99.613333pt;}
.y4b_c00479{bottom:114.280000pt;}
.y25_c00479{bottom:115.480000pt;}
.y4a_c00479{bottom:130.280000pt;}
.y24_c00479{bottom:131.746667pt;}
.y49_c00479{bottom:146.413333pt;}
.y23_c00479{bottom:147.613333pt;}
.y48_c00479{bottom:162.946667pt;}
.y22_c00479{bottom:164.146667pt;}
.y47_c00479{bottom:178.546667pt;}
.y21_c00479{bottom:180.013333pt;}
.y46_c00479{bottom:195.346667pt;}
.y20_c00479{bottom:196.280000pt;}
.y45_c00479{bottom:211.480000pt;}
.y1f_c00479{bottom:212.680000pt;}
.y44_c00479{bottom:227.213333pt;}
.y1e_c00479{bottom:228.680000pt;}
.y43_c00479{bottom:243.880000pt;}
.y1d_c00479{bottom:245.080000pt;}
.y42_c00479{bottom:259.480000pt;}
.y1c_c00479{bottom:260.146667pt;}
.y41_c00479{bottom:275.213333pt;}
.y1b_c00479{bottom:276.680000pt;}
.y40_c00479{bottom:291.613333pt;}
.y1a_c00479{bottom:292.813333pt;}
.y3f_c00479{bottom:307.480000pt;}
.y19_c00479{bottom:308.680000pt;}
.y3e_c00479{bottom:323.213333pt;}
.y18_c00479{bottom:324.946667pt;}
.y3d_c00479{bottom:339.613333pt;}
.y3c_c00479{bottom:340.813333pt;}
.y17_c00479{bottom:341.213333pt;}
.y16_c00479{bottom:356.813333pt;}
.y15_c00479{bottom:372.946667pt;}
.y3b_c00479{bottom:388.013333pt;}
.y14_c00479{bottom:389.480000pt;}
.y3a_c00479{bottom:403.480000pt;}
.y13_c00479{bottom:405.080000pt;}
.y39_c00479{bottom:420.413333pt;}
.y12_c00479{bottom:421.213333pt;}
.y38_c00479{bottom:436.280000pt;}
.y11_c00479{bottom:437.480000pt;}
.y10_c00479{bottom:454.013333pt;}
.y37_c00479{bottom:467.746667pt;}
.yf_c00479{bottom:469.880000pt;}
.ye_c00479{bottom:486.013333pt;}
.y36_c00479{bottom:501.080000pt;}
.yd_c00479{bottom:501.880000pt;}
.y35_c00479{bottom:515.480000pt;}
.yc_c00479{bottom:517.613333pt;}
.y34_c00479{bottom:532.280000pt;}
.yb_c00479{bottom:533.746667pt;}
.y33_c00479{bottom:548.146667pt;}
.ya_c00479{bottom:550.280000pt;}
.y32_c00479{bottom:564.280000pt;}
.y9_c00479{bottom:566.146667pt;}
.y31_c00479{bottom:580.546667pt;}
.y8_c00479{bottom:582.280000pt;}
.y30_c00479{bottom:596.413333pt;}
.y7_c00479{bottom:598.546667pt;}
.y2f_c00479{bottom:613.213333pt;}
.y6_c00479{bottom:614.680000pt;}
.y2e_c00479{bottom:629.213333pt;}
.y5_c00479{bottom:630.680000pt;}
.y2d_c00479{bottom:645.080000pt;}
.y4_c00479{bottom:647.080000pt;}
.y2c_c00479{bottom:661.880000pt;}
.y3_c00479{bottom:663.080000pt;}
.y2b_c00479{bottom:678.013333pt;}
.y2_c00479{bottom:679.613333pt;}
.y2a_c00479{bottom:694.546667pt;}
.y1_c00479{bottom:695.746667pt;}
.h7_c00479{height:11.733399pt;}
.h8_c00479{height:38.937500pt;}
.h4_c00479{height:50.304000pt;}
.h3_c00479{height:55.893333pt;}
.h2_c00479{height:58.688000pt;}
.h5_c00479{height:61.482667pt;}
.h6_c00479{height:130.885333pt;}
.h0_c00479{height:754.333333pt;}
.h1_c00479{height:754.666667pt;}
.w2_c00479{width:93.222667pt;}
.w1_c00479{width:515.333333pt;}
.w0_c00479{width:515.533333pt;}
.x0_c00479{left:0.000000pt;}
.x1_c00479{left:84.400000pt;}
.x2_c00479{left:85.866667pt;}
.x3_c00479{left:86.933333pt;}
.x4_c00479{left:87.866667pt;}
.x5_c00479{left:89.066667pt;}
.xe_c00479{left:214.934896pt;}
.x6_c00479{left:277.466667pt;}
.x7_c00479{left:278.933333pt;}
.x8_c00479{left:280.000000pt;}
.xc_c00479{left:281.066667pt;}
.xa_c00479{left:294.400000pt;}
.xd_c00479{left:308.133333pt;}
.xb_c00479{left:343.600000pt;}
.x9_c00479{left:364.266667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_acb0b0ff89fb25cca95144cd.woff2')format("woff");}.ff1_c00480{font-family:ff1_c00480;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00480;src:url('chunks/assets/font_376cd527c3a074297628ace1.woff2')format("woff");}.ff2_c00480{font-family:ff2_c00480;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00480;src:url('chunks/assets/font_29dc69bff90164b7fcb1cd54.woff2')format("woff");}.ff3_c00480{font-family:ff3_c00480;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00480;src:url('chunks/assets/font_24c2f84ca857b4c6cabccb57.woff2')format("woff");}.ff4_c00480{font-family:ff4_c00480;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00480;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff5_c00480{font-family:ff5_c00480;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00480;src:url('chunks/assets/font_3dc861ede6cd13b32e5296bc.woff2')format("woff");}.ff6_c00480{font-family:ff6_c00480;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00480;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff7_c00480{font-family:ff7_c00480;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00480{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00480{vertical-align:0.000000px;}
.ls0_c00480{letter-spacing:0.000000px;}
.ls1_c00480{letter-spacing:3.000000px;}
.sc__c00480{text-shadow:none;}
.sc0_c00480{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00480{-webkit-text-stroke:0px transparent;}
.sc0_c00480{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00480{word-spacing:-22.074000px;}
.ws1_c00480{word-spacing:-14.160000px;}
.ws2_c00480{word-spacing:0.000000px;}
._24_c00480{margin-left:-15.600000px;}
._10_c00480{margin-left:-13.140000px;}
._d_c00480{margin-left:-11.520000px;}
._2_c00480{margin-left:-10.200000px;}
._1_c00480{margin-left:-8.640000px;}
._19_c00480{margin-left:-7.560000px;}
._f_c00480{margin-left:-5.580000px;}
._15_c00480{margin-left:-4.200000px;}
._8_c00480{margin-left:-2.700000px;}
._6_c00480{margin-left:-1.440000px;}
._3_c00480{width:1.320000px;}
._a_c00480{width:2.400000px;}
._4_c00480{width:3.480000px;}
._5_c00480{width:4.920000px;}
._11_c00480{width:6.180000px;}
._e_c00480{width:7.680000px;}
._9_c00480{width:9.360000px;}
._c_c00480{width:11.280000px;}
._7_c00480{width:13.020000px;}
._18_c00480{width:14.109000px;}
._1b_c00480{width:15.480000px;}
._16_c00480{width:16.560000px;}
._20_c00480{width:17.700000px;}
._13_c00480{width:18.780000px;}
._1f_c00480{width:20.280000px;}
._12_c00480{width:21.300000px;}
._23_c00480{width:23.340000px;}
._1a_c00480{width:25.920000px;}
._1d_c00480{width:27.420000px;}
._21_c00480{width:29.040000px;}
._22_c00480{width:30.660000px;}
._14_c00480{width:34.440000px;}
._1c_c00480{width:37.980000px;}
._b_c00480{width:72.660000px;}
._17_c00480{width:93.852000px;}
._1e_c00480{width:129.336000px;}
._0_c00480{width:167.820000px;}
._25_c00480{width:222.060000px;}
.fc2_c00480{color:transparent;}
.fc1_c00480{color:rgb(128,128,128);}
.fc0_c00480{color:rgb(0,0,0);}
.fs4_c00480{font-size:48.000000px;}
.fs3_c00480{font-size:57.000000px;}
.fs0_c00480{font-size:60.000000px;}
.fs2_c00480{font-size:63.000000px;}
.fs1_c00480{font-size:66.000000px;}
.y0_c00480{bottom:0.000000px;}
.y4e_c00480{bottom:3.105000px;}
.y4d_c00480{bottom:7.228363px;}
.y4c_c00480{bottom:42.300000px;}
.y29_c00480{bottom:61.800000px;}
.y4b_c00480{bottom:62.850000px;}
.y28_c00480{bottom:81.000000px;}
.y4a_c00480{bottom:81.750000px;}
.y27_c00480{bottom:99.300000px;}
.y49_c00480{bottom:99.600000px;}
.y26_c00480{bottom:117.450000px;}
.y48_c00480{bottom:117.900000px;}
.y47_c00480{bottom:136.050000px;}
.y25_c00480{bottom:136.350000px;}
.y46_c00480{bottom:153.900000px;}
.y24_c00480{bottom:154.350000px;}
.y45_c00480{bottom:172.200000px;}
.y23_c00480{bottom:172.500000px;}
.y44_c00480{bottom:190.350000px;}
.y22_c00480{bottom:191.100000px;}
.y43_c00480{bottom:208.350000px;}
.y21_c00480{bottom:209.250000px;}
.y42_c00480{bottom:226.500000px;}
.y20_c00480{bottom:227.100000px;}
.y1f_c00480{bottom:244.800000px;}
.y41_c00480{bottom:262.350000px;}
.y1e_c00480{bottom:263.250000px;}
.y40_c00480{bottom:281.100000px;}
.y1d_c00480{bottom:281.250000px;}
.y3f_c00480{bottom:298.650000px;}
.y1c_c00480{bottom:299.400000px;}
.y3e_c00480{bottom:316.950000px;}
.y1b_c00480{bottom:317.250000px;}
.y3d_c00480{bottom:334.800000px;}
.y1a_c00480{bottom:335.100000px;}
.y3c_c00480{bottom:352.350000px;}
.y19_c00480{bottom:353.100000px;}
.y3b_c00480{bottom:370.950000px;}
.y18_c00480{bottom:371.250000px;}
.y17_c00480{bottom:389.100000px;}
.y3a_c00480{bottom:389.250000px;}
.y16_c00480{bottom:406.800000px;}
.y39_c00480{bottom:407.100000px;}
.y15_c00480{bottom:424.650000px;}
.y14_c00480{bottom:443.100000px;}
.y38_c00480{bottom:460.800000px;}
.y13_c00480{bottom:461.100000px;}
.y37_c00480{bottom:478.950000px;}
.y12_c00480{bottom:479.250000px;}
.y11_c00480{bottom:497.100000px;}
.y36_c00480{bottom:514.800000px;}
.y10_c00480{bottom:515.100000px;}
.yf_c00480{bottom:531.900000px;}
.y35_c00480{bottom:532.350000px;}
.ye_c00480{bottom:549.750000px;}
.y34_c00480{bottom:549.900000px;}
.yd_c00480{bottom:567.750000px;}
.y33_c00480{bottom:568.050000px;}
.yc_c00480{bottom:585.600000px;}
.y32_c00480{bottom:586.200000px;}
.yb_c00480{bottom:603.450000px;}
.y31_c00480{bottom:603.900000px;}
.ya_c00480{bottom:621.450000px;}
.y30_c00480{bottom:622.050000px;}
.y9_c00480{bottom:639.900000px;}
.y2f_c00480{bottom:657.750000px;}
.y8_c00480{bottom:658.350000px;}
.y7_c00480{bottom:675.600000px;}
.y2e_c00480{bottom:675.750000px;}
.y6_c00480{bottom:693.600000px;}
.y2d_c00480{bottom:711.450000px;}
.y5_c00480{bottom:711.750000px;}
.y4_c00480{bottom:729.750000px;}
.y2c_c00480{bottom:730.050000px;}
.y2b_c00480{bottom:747.300000px;}
.y3_c00480{bottom:748.650000px;}
.y2_c00480{bottom:765.900000px;}
.y2a_c00480{bottom:766.200000px;}
.y1_c00480{bottom:783.750000px;}
.h5_c00480{height:13.200074px;}
.h6_c00480{height:43.804688px;}
.h4_c00480{height:59.736000px;}
.h2_c00480{height:62.880000px;}
.h3_c00480{height:69.168000px;}
.h1_c00480{height:70.422000px;}
.h0_c00480{height:843.750000px;}
.w2_c00480{width:104.875500px;}
.w1_c00480{width:579.750000px;}
.w0_c00480{width:579.975000px;}
.x0_c00480{left:0.000000px;}
.x1_c00480{left:14.550000px;}
.x8_c00480{left:18.900000px;}
.x9_c00480{left:19.950000px;}
.x5_c00480{left:21.000000px;}
.x3_c00480{left:59.400000px;}
.x6_c00480{left:79.650000px;}
.xa_c00480{left:81.300000px;}
.x7_c00480{left:82.350000px;}
.x2_c00480{left:84.150000px;}
.x4_c00480{left:85.350000px;}
.x14_c00480{left:241.801758px;}
.x12_c00480{left:292.200000px;}
.x11_c00480{left:293.550000px;}
.x10_c00480{left:295.200000px;}
.xf_c00480{left:296.250000px;}
.xe_c00480{left:297.450000px;}
.xb_c00480{left:298.650000px;}
.xd_c00480{left:300.000000px;}
.xc_c00480{left:301.050000px;}
.x13_c00480{left:407.250000px;}
@media print{
.v0_c00480{vertical-align:0.000000pt;}
.ls0_c00480{letter-spacing:0.000000pt;}
.ls1_c00480{letter-spacing:2.666667pt;}
.ws0_c00480{word-spacing:-19.621333pt;}
.ws1_c00480{word-spacing:-12.586667pt;}
.ws2_c00480{word-spacing:0.000000pt;}
._24_c00480{margin-left:-13.866667pt;}
._10_c00480{margin-left:-11.680000pt;}
._d_c00480{margin-left:-10.240000pt;}
._2_c00480{margin-left:-9.066667pt;}
._1_c00480{margin-left:-7.680000pt;}
._19_c00480{margin-left:-6.720000pt;}
._f_c00480{margin-left:-4.960000pt;}
._15_c00480{margin-left:-3.733333pt;}
._8_c00480{margin-left:-2.400000pt;}
._6_c00480{margin-left:-1.280000pt;}
._3_c00480{width:1.173333pt;}
._a_c00480{width:2.133333pt;}
._4_c00480{width:3.093333pt;}
._5_c00480{width:4.373333pt;}
._11_c00480{width:5.493333pt;}
._e_c00480{width:6.826667pt;}
._9_c00480{width:8.320000pt;}
._c_c00480{width:10.026667pt;}
._7_c00480{width:11.573333pt;}
._18_c00480{width:12.541333pt;}
._1b_c00480{width:13.760000pt;}
._16_c00480{width:14.720000pt;}
._20_c00480{width:15.733333pt;}
._13_c00480{width:16.693333pt;}
._1f_c00480{width:18.026667pt;}
._12_c00480{width:18.933333pt;}
._23_c00480{width:20.746667pt;}
._1a_c00480{width:23.040000pt;}
._1d_c00480{width:24.373333pt;}
._21_c00480{width:25.813333pt;}
._22_c00480{width:27.253333pt;}
._14_c00480{width:30.613333pt;}
._1c_c00480{width:33.760000pt;}
._b_c00480{width:64.586667pt;}
._17_c00480{width:83.424000pt;}
._1e_c00480{width:114.965333pt;}
._0_c00480{width:149.173333pt;}
._25_c00480{width:197.386667pt;}
.fs4_c00480{font-size:42.666667pt;}
.fs3_c00480{font-size:50.666667pt;}
.fs0_c00480{font-size:53.333333pt;}
.fs2_c00480{font-size:56.000000pt;}
.fs1_c00480{font-size:58.666667pt;}
.y0_c00480{bottom:0.000000pt;}
.y4e_c00480{bottom:2.760000pt;}
.y4d_c00480{bottom:6.425212pt;}
.y4c_c00480{bottom:37.600000pt;}
.y29_c00480{bottom:54.933333pt;}
.y4b_c00480{bottom:55.866667pt;}
.y28_c00480{bottom:72.000000pt;}
.y4a_c00480{bottom:72.666667pt;}
.y27_c00480{bottom:88.266667pt;}
.y49_c00480{bottom:88.533333pt;}
.y26_c00480{bottom:104.400000pt;}
.y48_c00480{bottom:104.800000pt;}
.y47_c00480{bottom:120.933333pt;}
.y25_c00480{bottom:121.200000pt;}
.y46_c00480{bottom:136.800000pt;}
.y24_c00480{bottom:137.200000pt;}
.y45_c00480{bottom:153.066667pt;}
.y23_c00480{bottom:153.333333pt;}
.y44_c00480{bottom:169.200000pt;}
.y22_c00480{bottom:169.866667pt;}
.y43_c00480{bottom:185.200000pt;}
.y21_c00480{bottom:186.000000pt;}
.y42_c00480{bottom:201.333333pt;}
.y20_c00480{bottom:201.866667pt;}
.y1f_c00480{bottom:217.600000pt;}
.y41_c00480{bottom:233.200000pt;}
.y1e_c00480{bottom:234.000000pt;}
.y40_c00480{bottom:249.866667pt;}
.y1d_c00480{bottom:250.000000pt;}
.y3f_c00480{bottom:265.466667pt;}
.y1c_c00480{bottom:266.133333pt;}
.y3e_c00480{bottom:281.733333pt;}
.y1b_c00480{bottom:282.000000pt;}
.y3d_c00480{bottom:297.600000pt;}
.y1a_c00480{bottom:297.866667pt;}
.y3c_c00480{bottom:313.200000pt;}
.y19_c00480{bottom:313.866667pt;}
.y3b_c00480{bottom:329.733333pt;}
.y18_c00480{bottom:330.000000pt;}
.y17_c00480{bottom:345.866667pt;}
.y3a_c00480{bottom:346.000000pt;}
.y16_c00480{bottom:361.600000pt;}
.y39_c00480{bottom:361.866667pt;}
.y15_c00480{bottom:377.466667pt;}
.y14_c00480{bottom:393.866667pt;}
.y38_c00480{bottom:409.600000pt;}
.y13_c00480{bottom:409.866667pt;}
.y37_c00480{bottom:425.733333pt;}
.y12_c00480{bottom:426.000000pt;}
.y11_c00480{bottom:441.866667pt;}
.y36_c00480{bottom:457.600000pt;}
.y10_c00480{bottom:457.866667pt;}
.yf_c00480{bottom:472.800000pt;}
.y35_c00480{bottom:473.200000pt;}
.ye_c00480{bottom:488.666667pt;}
.y34_c00480{bottom:488.800000pt;}
.yd_c00480{bottom:504.666667pt;}
.y33_c00480{bottom:504.933333pt;}
.yc_c00480{bottom:520.533333pt;}
.y32_c00480{bottom:521.066667pt;}
.yb_c00480{bottom:536.400000pt;}
.y31_c00480{bottom:536.800000pt;}
.ya_c00480{bottom:552.400000pt;}
.y30_c00480{bottom:552.933333pt;}
.y9_c00480{bottom:568.800000pt;}
.y2f_c00480{bottom:584.666667pt;}
.y8_c00480{bottom:585.200000pt;}
.y7_c00480{bottom:600.533333pt;}
.y2e_c00480{bottom:600.666667pt;}
.y6_c00480{bottom:616.533333pt;}
.y2d_c00480{bottom:632.400000pt;}
.y5_c00480{bottom:632.666667pt;}
.y4_c00480{bottom:648.666667pt;}
.y2c_c00480{bottom:648.933333pt;}
.y2b_c00480{bottom:664.266667pt;}
.y3_c00480{bottom:665.466667pt;}
.y2_c00480{bottom:680.800000pt;}
.y2a_c00480{bottom:681.066667pt;}
.y1_c00480{bottom:696.666667pt;}
.h5_c00480{height:11.733399pt;}
.h6_c00480{height:38.937500pt;}
.h4_c00480{height:53.098667pt;}
.h2_c00480{height:55.893333pt;}
.h3_c00480{height:61.482667pt;}
.h1_c00480{height:62.597333pt;}
.h0_c00480{height:750.000000pt;}
.w2_c00480{width:93.222667pt;}
.w1_c00480{width:515.333333pt;}
.w0_c00480{width:515.533333pt;}
.x0_c00480{left:0.000000pt;}
.x1_c00480{left:12.933333pt;}
.x8_c00480{left:16.800000pt;}
.x9_c00480{left:17.733333pt;}
.x5_c00480{left:18.666667pt;}
.x3_c00480{left:52.800000pt;}
.x6_c00480{left:70.800000pt;}
.xa_c00480{left:72.266667pt;}
.x7_c00480{left:73.200000pt;}
.x2_c00480{left:74.800000pt;}
.x4_c00480{left:75.866667pt;}
.x14_c00480{left:214.934896pt;}
.x12_c00480{left:259.733333pt;}
.x11_c00480{left:260.933333pt;}
.x10_c00480{left:262.400000pt;}
.xf_c00480{left:263.333333pt;}
.xe_c00480{left:264.400000pt;}
.xb_c00480{left:265.466667pt;}
.xd_c00480{left:266.666667pt;}
.xc_c00480{left:267.600000pt;}
.x13_c00480{left:362.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_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_76b681233916beb6a5fe5639.woff2')format("woff");}.ff1_c00481{font-family:ff1_c00481;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00481;src:url('chunks/assets/font_5bf39fd3123a6a0185fca0ca.woff2')format("woff");}.ff2_c00481{font-family:ff2_c00481;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00481;src:url('chunks/assets/font_bbd29530ba0be54de164262a.woff2')format("woff");}.ff3_c00481{font-family:ff3_c00481;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00481;src:url('chunks/assets/font_9117663ac861417d25ac9783.woff2')format("woff");}.ff4_c00481{font-family:ff4_c00481;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00481;src:url('chunks/assets/font_209405be4ee09268e88a7350.woff2')format("woff");}.ff5_c00481{font-family:ff5_c00481;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00481;src:url('chunks/assets/font_1835e846344e6645a2190915.woff2')format("woff");}.ff6_c00481{font-family:ff6_c00481;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00481;src:url('chunks/assets/font_06d6d3decc4b2308dd15c55b.woff2')format("woff");}.ff7_c00481{font-family:ff7_c00481;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00481;src:url('chunks/assets/font_734a2989fdce0420ef5546c5.woff2')format("woff");}.ff8_c00481{font-family:ff8_c00481;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00481;src:url('chunks/assets/font_12fc3ec18d399965ba9fe12b.woff2')format("woff");}.ff9_c00481{font-family:ff9_c00481;line-height:1.575000;font-style:normal;font-weight: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_c00481;src:url('chunks/assets/font_65810a537fc4d53046c0df6f.woff2')format("woff");}.ffa_c00481{font-family:ffa_c00481;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00481;src:url('chunks/assets/font_bbe41056213dcff45b354801.woff2')format("woff");}.ffb_c00481{font-family:ffb_c00481;line-height:1.575000;font-style:normal;font-weight: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_c00481;src:url('chunks/assets/font_fb1639c49ff41d7ba5f83665.woff2')format("woff");}.ffc_c00481{font-family:ffc_c00481;line-height:1.575000;font-style:normal;font-weight: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_c00481;src:url('chunks/assets/font_dfb3bcb726d70832edb48303.woff2')format("woff");}.ffd_c00481{font-family:ffd_c00481;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe_c00481;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ffe_c00481{font-family:ffe_c00481;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00481{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2_c00481{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m3_c00481{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m1_c00481{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.v0_c00481{vertical-align:0.000000px;}
.v1_c00481{vertical-align:67.800000px;}
.v2_c00481{vertical-align:79.800000px;}
.ls8_c00481{letter-spacing:-6.000000px;}
.ls7_c00481{letter-spacing:-3.000000px;}
.ls4_c00481{letter-spacing:0.000000px;}
.ls1_c00481{letter-spacing:2.070000px;}
.ls5_c00481{letter-spacing:3.000000px;}
.ls6_c00481{letter-spacing:6.000000px;}
.ls3_c00481{letter-spacing:16.293000px;}
.ls2_c00481{letter-spacing:23.880000px;}
.ls0_c00481{letter-spacing:176.616000px;}
.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;}
}
.ws5_c00481{word-spacing:-39.744000px;}
.ws3_c00481{word-spacing:-37.746000px;}
.ws1_c00481{word-spacing:-21.384000px;}
.ws9_c00481{word-spacing:-17.925000px;}
.ws8_c00481{word-spacing:-15.678000px;}
.wsb_c00481{word-spacing:-15.561000px;}
.ws6_c00481{word-spacing:-14.340000px;}
.ws2_c00481{word-spacing:-14.160000px;}
.wsa_c00481{word-spacing:-13.452000px;}
.ws4_c00481{word-spacing:-5.784000px;}
.wsc_c00481{word-spacing:0.000000px;}
.ws0_c00481{word-spacing:2.760000px;}
.ws7_c00481{word-spacing:227.700000px;}
._34_c00481{margin-left:-16.320000px;}
._13_c00481{margin-left:-14.334000px;}
._22_c00481{margin-left:-12.318000px;}
._2f_c00481{margin-left:-10.164000px;}
._15_c00481{margin-left:-8.946000px;}
._33_c00481{margin-left:-7.275000px;}
._14_c00481{margin-left:-6.048000px;}
._10_c00481{margin-left:-4.779000px;}
._a_c00481{margin-left:-3.480000px;}
._9_c00481{margin-left:-2.340000px;}
._f_c00481{margin-left:-1.260000px;}
._b_c00481{width:1.500000px;}
._c_c00481{width:2.640000px;}
._17_c00481{width:4.158000px;}
._1b_c00481{width:5.286000px;}
._e_c00481{width:6.300000px;}
._1_c00481{width:7.371000px;}
._3_c00481{width:8.379000px;}
._8_c00481{width:9.780000px;}
._4_c00481{width:11.025000px;}
._7_c00481{width:12.303000px;}
._0_c00481{width:13.356000px;}
._5_c00481{width:14.364000px;}
._1e_c00481{width:15.699000px;}
._1c_c00481{width:16.821000px;}
._21_c00481{width:18.480000px;}
._2c_c00481{width:19.878000px;}
._16_c00481{width:21.987000px;}
._12_c00481{width:23.130000px;}
._26_c00481{width:24.273000px;}
._20_c00481{width:25.572000px;}
._30_c00481{width:27.762000px;}
._11_c00481{width:29.868000px;}
._28_c00481{width:31.779000px;}
._1a_c00481{width:32.793000px;}
._23_c00481{width:35.952000px;}
._6_c00481{width:37.179000px;}
._27_c00481{width:38.973000px;}
._25_c00481{width:41.100000px;}
._2a_c00481{width:42.234000px;}
._29_c00481{width:45.240000px;}
._18_c00481{width:46.680000px;}
._2e_c00481{width:50.484000px;}
._2d_c00481{width:52.884000px;}
._2b_c00481{width:55.716000px;}
._1d_c00481{width:67.464000px;}
._32_c00481{width:70.437000px;}
._d_c00481{width:78.480000px;}
._19_c00481{width:104.721000px;}
._1f_c00481{width:127.803600px;}
._35_c00481{width:132.699000px;}
._24_c00481{width:154.524000px;}
._2_c00481{width:209.286000px;}
._31_c00481{width:324.432000px;}
.fc2_c00481{color:transparent;}
.fc1_c00481{color:rgb(128,128,128);}
.fc0_c00481{color:rgb(0,0,0);}
.fs6_c00481{font-size:24.000000px;}
.fs8_c00481{font-size:39.000000px;}
.fs4_c00481{font-size:43.200000px;}
.fs7_c00481{font-size:48.000000px;}
.fs3_c00481{font-size:54.000000px;}
.fs2_c00481{font-size:57.000000px;}
.fs1_c00481{font-size:60.000000px;}
.fs0_c00481{font-size:63.000000px;}
.fs5_c00481{font-size:66.000000px;}
.fs9_c00481{font-size:75.000000px;}
.fsa_c00481{font-size:87.000000px;}
.fsb_c00481{font-size:165.000000px;}
.y0_c00481{bottom:0.000000px;}
.y4c_c00481{bottom:3.105000px;}
.y4b_c00481{bottom:7.228371px;}
.y4a_c00481{bottom:36.465000px;}
.y49_c00481{bottom:55.815000px;}
.y36_c00481{bottom:57.165000px;}
.y48_c00481{bottom:75.015000px;}
.y35_c00481{bottom:76.365000px;}
.y47_c00481{bottom:93.165000px;}
.y34_c00481{bottom:94.815000px;}
.y46_c00481{bottom:111.165000px;}
.y33_c00481{bottom:112.815000px;}
.y45_c00481{bottom:129.915000px;}
.y32_c00481{bottom:131.715000px;}
.y44_c00481{bottom:147.915000px;}
.y31_c00481{bottom:149.865000px;}
.y43_c00481{bottom:165.765000px;}
.y30_c00481{bottom:168.165000px;}
.y42_c00481{bottom:184.665000px;}
.y2f_c00481{bottom:186.315000px;}
.y26_c00481{bottom:190.365000px;}
.y41_c00481{bottom:202.815000px;}
.y2e_c00481{bottom:204.615000px;}
.y25_c00481{bottom:208.965000px;}
.y40_c00481{bottom:221.115000px;}
.y2d_c00481{bottom:222.465000px;}
.y24_c00481{bottom:227.565000px;}
.y3f_c00481{bottom:238.965000px;}
.y2c_c00481{bottom:240.765000px;}
.y3e_c00481{bottom:257.265000px;}
.y2b_c00481{bottom:258.915000px;}
.y29_c00481{bottom:274.815000px;}
.y3d_c00481{bottom:275.415000px;}
.y2a_c00481{bottom:277.065000px;}
.y3c_c00481{bottom:293.265000px;}
.y3b_c00481{bottom:310.965000px;}
.y3a_c00481{bottom:328.065000px;}
.y28_c00481{bottom:330.765000px;}
.y38_c00481{bottom:331.065000px;}
.y39_c00481{bottom:347.415000px;}
.y27_c00481{bottom:349.065000px;}
.y37_c00481{bottom:349.965000px;}
.y23_c00481{bottom:366.315000px;}
.y22_c00481{bottom:383.415000px;}
.y21_c00481{bottom:401.415000px;}
.y20_c00481{bottom:419.565000px;}
.y1f_c00481{bottom:437.715000px;}
.y1e_c00481{bottom:456.015000px;}
.y1a_c00481{bottom:457.365000px;}
.y1d_c00481{bottom:474.165000px;}
.y19_c00481{bottom:474.315000px;}
.y1c_c00481{bottom:492.165000px;}
.y18_c00481{bottom:492.765000px;}
.y1b_c00481{bottom:510.015000px;}
.y17_c00481{bottom:510.765000px;}
.y16_c00481{bottom:528.315000px;}
.y15_c00481{bottom:546.165000px;}
.y14_c00481{bottom:564.765000px;}
.y13_c00481{bottom:582.615000px;}
.y12_c00481{bottom:600.465000px;}
.y11_c00481{bottom:618.615000px;}
.y10_c00481{bottom:636.915000px;}
.yf_c00481{bottom:654.465000px;}
.ye_c00481{bottom:673.365000px;}
.yd_c00481{bottom:688.815000px;}
.y7_c00481{bottom:691.215000px;}
.yc_c00481{bottom:691.515000px;}
.yb_c00481{bottom:709.215000px;}
.y6_c00481{bottom:709.515000px;}
.ya_c00481{bottom:727.065000px;}
.y5_c00481{bottom:727.965000px;}
.y9_c00481{bottom:745.515000px;}
.y4_c00481{bottom:746.415000px;}
.y8_c00481{bottom:763.815000px;}
.y3_c00481{bottom:764.415000px;}
.y2_c00481{bottom:782.415000px;}
.y1_c00481{bottom:802.965000px;}
.hd_c00481{height:13.200074px;}
.h7_c00481{height:30.386719px;}
.ha_c00481{height:42.276000px;}
.he_c00481{height:43.804688px;}
.h5_c00481{height:59.736000px;}
.h3_c00481{height:62.880000px;}
.h4_c00481{height:63.480000px;}
.h2_c00481{height:66.024000px;}
.h9_c00481{height:70.422000px;}
.h6_c00481{height:71.544000px;}
.hb_c00481{height:92.829000px;}
.h8_c00481{height:130.680000px;}
.hc_c00481{height:166.289062px;}
.h0_c00481{height:848.625000px;}
.h1_c00481{height:849.000000px;}
.w2_c00481{width:104.875500px;}
.w1_c00481{width:579.750000px;}
.w0_c00481{width:579.975000px;}
.x0_c00481{left:0.000000px;}
.xf_c00481{left:28.350000px;}
.x10_c00481{left:30.150000px;}
.x3_c00481{left:88.050000px;}
.xe_c00481{left:89.100000px;}
.x2_c00481{left:90.150000px;}
.x1_c00481{left:91.200000px;}
.x13_c00481{left:92.850000px;}
.x6_c00481{left:100.950000px;}
.x11_c00481{left:108.000000px;}
.x14_c00481{left:125.850000px;}
.x7_c00481{left:131.250000px;}
.xd_c00481{left:146.550000px;}
.x12_c00481{left:150.300000px;}
.xc_c00481{left:155.250000px;}
.x8_c00481{left:178.200000px;}
.x9_c00481{left:206.100000px;}
.x1a_c00481{left:241.801758px;}
.xa_c00481{left:271.200000px;}
.xb_c00481{left:283.500000px;}
.x5_c00481{left:305.100000px;}
.x4_c00481{left:306.750000px;}
.x17_c00481{left:307.800000px;}
.x18_c00481{left:309.900000px;}
.x19_c00481{left:475.950000px;}
.x16_c00481{left:511.350000px;}
.x15_c00481{left:512.400000px;}
@media print{
.v0_c00481{vertical-align:0.000000pt;}
.v1_c00481{vertical-align:60.266667pt;}
.v2_c00481{vertical-align:70.933333pt;}
.ls8_c00481{letter-spacing:-5.333333pt;}
.ls7_c00481{letter-spacing:-2.666667pt;}
.ls4_c00481{letter-spacing:0.000000pt;}
.ls1_c00481{letter-spacing:1.840000pt;}
.ls5_c00481{letter-spacing:2.666667pt;}
.ls6_c00481{letter-spacing:5.333333pt;}
.ls3_c00481{letter-spacing:14.482667pt;}
.ls2_c00481{letter-spacing:21.226667pt;}
.ls0_c00481{letter-spacing:156.992000pt;}
.ws5_c00481{word-spacing:-35.328000pt;}
.ws3_c00481{word-spacing:-33.552000pt;}
.ws1_c00481{word-spacing:-19.008000pt;}
.ws9_c00481{word-spacing:-15.933333pt;}
.ws8_c00481{word-spacing:-13.936000pt;}
.wsb_c00481{word-spacing:-13.832000pt;}
.ws6_c00481{word-spacing:-12.746667pt;}
.ws2_c00481{word-spacing:-12.586667pt;}
.wsa_c00481{word-spacing:-11.957333pt;}
.ws4_c00481{word-spacing:-5.141333pt;}
.wsc_c00481{word-spacing:0.000000pt;}
.ws0_c00481{word-spacing:2.453333pt;}
.ws7_c00481{word-spacing:202.400000pt;}
._34_c00481{margin-left:-14.506667pt;}
._13_c00481{margin-left:-12.741333pt;}
._22_c00481{margin-left:-10.949333pt;}
._2f_c00481{margin-left:-9.034667pt;}
._15_c00481{margin-left:-7.952000pt;}
._33_c00481{margin-left:-6.466667pt;}
._14_c00481{margin-left:-5.376000pt;}
._10_c00481{margin-left:-4.248000pt;}
._a_c00481{margin-left:-3.093333pt;}
._9_c00481{margin-left:-2.080000pt;}
._f_c00481{margin-left:-1.120000pt;}
._b_c00481{width:1.333333pt;}
._c_c00481{width:2.346667pt;}
._17_c00481{width:3.696000pt;}
._1b_c00481{width:4.698667pt;}
._e_c00481{width:5.600000pt;}
._1_c00481{width:6.552000pt;}
._3_c00481{width:7.448000pt;}
._8_c00481{width:8.693333pt;}
._4_c00481{width:9.800000pt;}
._7_c00481{width:10.936000pt;}
._0_c00481{width:11.872000pt;}
._5_c00481{width:12.768000pt;}
._1e_c00481{width:13.954667pt;}
._1c_c00481{width:14.952000pt;}
._21_c00481{width:16.426667pt;}
._2c_c00481{width:17.669333pt;}
._16_c00481{width:19.544000pt;}
._12_c00481{width:20.560000pt;}
._26_c00481{width:21.576000pt;}
._20_c00481{width:22.730667pt;}
._30_c00481{width:24.677333pt;}
._11_c00481{width:26.549333pt;}
._28_c00481{width:28.248000pt;}
._1a_c00481{width:29.149333pt;}
._23_c00481{width:31.957333pt;}
._6_c00481{width:33.048000pt;}
._27_c00481{width:34.642667pt;}
._25_c00481{width:36.533333pt;}
._2a_c00481{width:37.541333pt;}
._29_c00481{width:40.213333pt;}
._18_c00481{width:41.493333pt;}
._2e_c00481{width:44.874667pt;}
._2d_c00481{width:47.008000pt;}
._2b_c00481{width:49.525333pt;}
._1d_c00481{width:59.968000pt;}
._32_c00481{width:62.610667pt;}
._d_c00481{width:69.760000pt;}
._19_c00481{width:93.085333pt;}
._1f_c00481{width:113.603200pt;}
._35_c00481{width:117.954667pt;}
._24_c00481{width:137.354667pt;}
._2_c00481{width:186.032000pt;}
._31_c00481{width:288.384000pt;}
.fs6_c00481{font-size:21.333333pt;}
.fs8_c00481{font-size:34.666667pt;}
.fs4_c00481{font-size:38.400000pt;}
.fs7_c00481{font-size:42.666667pt;}
.fs3_c00481{font-size:48.000000pt;}
.fs2_c00481{font-size:50.666667pt;}
.fs1_c00481{font-size:53.333333pt;}
.fs0_c00481{font-size:56.000000pt;}
.fs5_c00481{font-size:58.666667pt;}
.fs9_c00481{font-size:66.666667pt;}
.fsa_c00481{font-size:77.333333pt;}
.fsb_c00481{font-size:146.666667pt;}
.y0_c00481{bottom:0.000000pt;}
.y4c_c00481{bottom:2.760000pt;}
.y4b_c00481{bottom:6.425219pt;}
.y4a_c00481{bottom:32.413333pt;}
.y49_c00481{bottom:49.613333pt;}
.y36_c00481{bottom:50.813333pt;}
.y48_c00481{bottom:66.680000pt;}
.y35_c00481{bottom:67.880000pt;}
.y47_c00481{bottom:82.813333pt;}
.y34_c00481{bottom:84.280000pt;}
.y46_c00481{bottom:98.813333pt;}
.y33_c00481{bottom:100.280000pt;}
.y45_c00481{bottom:115.480000pt;}
.y32_c00481{bottom:117.080000pt;}
.y44_c00481{bottom:131.480000pt;}
.y31_c00481{bottom:133.213333pt;}
.y43_c00481{bottom:147.346667pt;}
.y30_c00481{bottom:149.480000pt;}
.y42_c00481{bottom:164.146667pt;}
.y2f_c00481{bottom:165.613333pt;}
.y26_c00481{bottom:169.213333pt;}
.y41_c00481{bottom:180.280000pt;}
.y2e_c00481{bottom:181.880000pt;}
.y25_c00481{bottom:185.746667pt;}
.y40_c00481{bottom:196.546667pt;}
.y2d_c00481{bottom:197.746667pt;}
.y24_c00481{bottom:202.280000pt;}
.y3f_c00481{bottom:212.413333pt;}
.y2c_c00481{bottom:214.013333pt;}
.y3e_c00481{bottom:228.680000pt;}
.y2b_c00481{bottom:230.146667pt;}
.y29_c00481{bottom:244.280000pt;}
.y3d_c00481{bottom:244.813333pt;}
.y2a_c00481{bottom:246.280000pt;}
.y3c_c00481{bottom:260.680000pt;}
.y3b_c00481{bottom:276.413333pt;}
.y3a_c00481{bottom:291.613333pt;}
.y28_c00481{bottom:294.013333pt;}
.y38_c00481{bottom:294.280000pt;}
.y39_c00481{bottom:308.813333pt;}
.y27_c00481{bottom:310.280000pt;}
.y37_c00481{bottom:311.080000pt;}
.y23_c00481{bottom:325.613333pt;}
.y22_c00481{bottom:340.813333pt;}
.y21_c00481{bottom:356.813333pt;}
.y20_c00481{bottom:372.946667pt;}
.y1f_c00481{bottom:389.080000pt;}
.y1e_c00481{bottom:405.346667pt;}
.y1a_c00481{bottom:406.546667pt;}
.y1d_c00481{bottom:421.480000pt;}
.y19_c00481{bottom:421.613333pt;}
.y1c_c00481{bottom:437.480000pt;}
.y18_c00481{bottom:438.013333pt;}
.y1b_c00481{bottom:453.346667pt;}
.y17_c00481{bottom:454.013333pt;}
.y16_c00481{bottom:469.613333pt;}
.y15_c00481{bottom:485.480000pt;}
.y14_c00481{bottom:502.013333pt;}
.y13_c00481{bottom:517.880000pt;}
.y12_c00481{bottom:533.746667pt;}
.y11_c00481{bottom:549.880000pt;}
.y10_c00481{bottom:566.146667pt;}
.yf_c00481{bottom:581.746667pt;}
.ye_c00481{bottom:598.546667pt;}
.yd_c00481{bottom:612.280000pt;}
.y7_c00481{bottom:614.413333pt;}
.yc_c00481{bottom:614.680000pt;}
.yb_c00481{bottom:630.413333pt;}
.y6_c00481{bottom:630.680000pt;}
.ya_c00481{bottom:646.280000pt;}
.y5_c00481{bottom:647.080000pt;}
.y9_c00481{bottom:662.680000pt;}
.y4_c00481{bottom:663.480000pt;}
.y8_c00481{bottom:678.946667pt;}
.y3_c00481{bottom:679.480000pt;}
.y2_c00481{bottom:695.480000pt;}
.y1_c00481{bottom:713.746667pt;}
.hd_c00481{height:11.733399pt;}
.h7_c00481{height:27.010417pt;}
.ha_c00481{height:37.578667pt;}
.he_c00481{height:38.937500pt;}
.h5_c00481{height:53.098667pt;}
.h3_c00481{height:55.893333pt;}
.h4_c00481{height:56.426667pt;}
.h2_c00481{height:58.688000pt;}
.h9_c00481{height:62.597333pt;}
.h6_c00481{height:63.594667pt;}
.hb_c00481{height:82.514667pt;}
.h8_c00481{height:116.160000pt;}
.hc_c00481{height:147.812500pt;}
.h0_c00481{height:754.333333pt;}
.h1_c00481{height:754.666667pt;}
.w2_c00481{width:93.222667pt;}
.w1_c00481{width:515.333333pt;}
.w0_c00481{width:515.533333pt;}
.x0_c00481{left:0.000000pt;}
.xf_c00481{left:25.200000pt;}
.x10_c00481{left:26.800000pt;}
.x3_c00481{left:78.266667pt;}
.xe_c00481{left:79.200000pt;}
.x2_c00481{left:80.133333pt;}
.x1_c00481{left:81.066667pt;}
.x13_c00481{left:82.533333pt;}
.x6_c00481{left:89.733333pt;}
.x11_c00481{left:96.000000pt;}
.x14_c00481{left:111.866667pt;}
.x7_c00481{left:116.666667pt;}
.xd_c00481{left:130.266667pt;}
.x12_c00481{left:133.600000pt;}
.xc_c00481{left:138.000000pt;}
.x8_c00481{left:158.400000pt;}
.x9_c00481{left:183.200000pt;}
.x1a_c00481{left:214.934896pt;}
.xa_c00481{left:241.066667pt;}
.xb_c00481{left:252.000000pt;}
.x5_c00481{left:271.200000pt;}
.x4_c00481{left:272.666667pt;}
.x17_c00481{left:273.600000pt;}
.x18_c00481{left:275.466667pt;}
.x19_c00481{left:423.066667pt;}
.x16_c00481{left:454.533333pt;}
.x15_c00481{left:455.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_48e98752ce30b371b1f315fc.woff2')format("woff");}.ff1_c00482{font-family:ff1_c00482;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00482;src:url('chunks/assets/font_355fa23d31de7cd63ef10265.woff2')format("woff");}.ff2_c00482{font-family:ff2_c00482;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00482;src:url('chunks/assets/font_66aa8bddfdf956ad70b8c515.woff2')format("woff");}.ff3_c00482{font-family:ff3_c00482;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00482;src:url('chunks/assets/font_8eba4233f25ad55ba58ee9bc.woff2')format("woff");}.ff4_c00482{font-family:ff4_c00482;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00482;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff5_c00482{font-family:ff5_c00482;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00482{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00482{vertical-align:0.000000px;}
.ls0_c00482{letter-spacing:0.000000px;}
.ls1_c00482{letter-spacing:6.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;}
}
.ws1_c00482{word-spacing:-37.746000px;}
.ws0_c00482{word-spacing:-14.160000px;}
.ws2_c00482{word-spacing:0.000000px;}
._18_c00482{margin-left:-18.300000px;}
._34_c00482{margin-left:-15.240000px;}
._2e_c00482{margin-left:-13.020000px;}
._15_c00482{margin-left:-10.440000px;}
._7_c00482{margin-left:-7.920000px;}
._1a_c00482{margin-left:-6.120000px;}
._1b_c00482{margin-left:-4.500000px;}
._e_c00482{margin-left:-2.820000px;}
._3_c00482{margin-left:-1.800000px;}
._0_c00482{width:1.500000px;}
._2_c00482{width:2.700000px;}
._6_c00482{width:3.720000px;}
._4_c00482{width:4.800000px;}
._1_c00482{width:6.180000px;}
._d_c00482{width:8.100000px;}
._12_c00482{width:9.360000px;}
._13_c00482{width:11.400000px;}
._a_c00482{width:12.540000px;}
._10_c00482{width:16.260000px;}
._1c_c00482{width:17.820000px;}
._9_c00482{width:19.140000px;}
._11_c00482{width:20.820000px;}
._1e_c00482{width:22.920000px;}
._30_c00482{width:24.360000px;}
._16_c00482{width:26.220000px;}
._1d_c00482{width:28.380000px;}
._20_c00482{width:33.000000px;}
._21_c00482{width:34.200000px;}
._2a_c00482{width:35.220000px;}
._36_c00482{width:41.880000px;}
._2f_c00482{width:45.480000px;}
._32_c00482{width:72.060000px;}
._35_c00482{width:77.940000px;}
._29_c00482{width:79.380000px;}
._31_c00482{width:81.780000px;}
._33_c00482{width:83.700000px;}
._19_c00482{width:89.460000px;}
._24_c00482{width:95.040000px;}
._22_c00482{width:97.980000px;}
._14_c00482{width:99.720000px;}
._25_c00482{width:101.340000px;}
._23_c00482{width:102.360000px;}
._8_c00482{width:103.800000px;}
._17_c00482{width:105.420000px;}
._5_c00482{width:107.160000px;}
._c_c00482{width:108.420000px;}
._f_c00482{width:111.840000px;}
._1f_c00482{width:115.980000px;}
._2d_c00482{width:173.160000px;}
._2b_c00482{width:227.460000px;}
._28_c00482{width:243.840000px;}
._b_c00482{width:249.780000px;}
._26_c00482{width:263.520000px;}
._2c_c00482{width:490.800000px;}
._27_c00482{width:771.120000px;}
.fc2_c00482{color:transparent;}
.fc1_c00482{color:rgb(128,128,128);}
.fc0_c00482{color:rgb(0,0,0);}
.fs2_c00482{font-size:48.000000px;}
.fs0_c00482{font-size:60.000000px;}
.fs1_c00482{font-size:66.000000px;}
.y0_c00482{bottom:0.000000px;}
.y2c_c00482{bottom:3.105000px;}
.y2b_c00482{bottom:7.228363px;}
.y2a_c00482{bottom:46.650000px;}
.y29_c00482{bottom:65.550000px;}
.y28_c00482{bottom:84.450000px;}
.y27_c00482{bottom:103.350000px;}
.y26_c00482{bottom:121.200000px;}
.y25_c00482{bottom:139.800000px;}
.y24_c00482{bottom:157.950000px;}
.y23_c00482{bottom:176.250000px;}
.y22_c00482{bottom:194.400000px;}
.y21_c00482{bottom:212.250000px;}
.y20_c00482{bottom:230.850000px;}
.y1f_c00482{bottom:248.850000px;}
.y1e_c00482{bottom:267.300000px;}
.y1d_c00482{bottom:284.850000px;}
.y1c_c00482{bottom:302.700000px;}
.y1b_c00482{bottom:320.400000px;}
.y1a_c00482{bottom:338.550000px;}
.y19_c00482{bottom:356.400000px;}
.y18_c00482{bottom:374.400000px;}
.y17_c00482{bottom:392.550000px;}
.y16_c00482{bottom:409.350000px;}
.y15_c00482{bottom:427.950000px;}
.y14_c00482{bottom:445.800000px;}
.y13_c00482{bottom:463.800000px;}
.y12_c00482{bottom:481.950000px;}
.y11_c00482{bottom:499.200000px;}
.y10_c00482{bottom:517.800000px;}
.yf_c00482{bottom:534.600000px;}
.ye_c00482{bottom:552.450000px;}
.yd_c00482{bottom:570.600000px;}
.yc_c00482{bottom:588.600000px;}
.yb_c00482{bottom:606.600000px;}
.ya_c00482{bottom:624.600000px;}
.y9_c00482{bottom:642.600000px;}
.y8_c00482{bottom:660.600000px;}
.y7_c00482{bottom:678.750000px;}
.y6_c00482{bottom:696.600000px;}
.y5_c00482{bottom:715.200000px;}
.y4_c00482{bottom:733.050000px;}
.y3_c00482{bottom:751.650000px;}
.y2_c00482{bottom:770.250000px;}
.y1_c00482{bottom:787.500000px;}
.h4_c00482{height:13.200074px;}
.h5_c00482{height:43.804688px;}
.h1_c00482{height:62.880000px;}
.h3_c00482{height:63.480000px;}
.h2_c00482{height:71.544000px;}
.h0_c00482{height:843.750000px;}
.w2_c00482{width:104.875500px;}
.w1_c00482{width:579.750000px;}
.w0_c00482{width:579.975000px;}
.x0_c00482{left:0.000000px;}
.x2_c00482{left:70.200000px;}
.x1_c00482{left:72.900000px;}
.x3_c00482{left:73.950000px;}
.x4_c00482{left:75.300000px;}
.x5_c00482{left:77.250000px;}
.x7_c00482{left:241.801758px;}
.x6_c00482{left:385.350000px;}
@media print{
.v0_c00482{vertical-align:0.000000pt;}
.ls0_c00482{letter-spacing:0.000000pt;}
.ls1_c00482{letter-spacing:5.333333pt;}
.ws1_c00482{word-spacing:-33.552000pt;}
.ws0_c00482{word-spacing:-12.586667pt;}
.ws2_c00482{word-spacing:0.000000pt;}
._18_c00482{margin-left:-16.266667pt;}
._34_c00482{margin-left:-13.546667pt;}
._2e_c00482{margin-left:-11.573333pt;}
._15_c00482{margin-left:-9.280000pt;}
._7_c00482{margin-left:-7.040000pt;}
._1a_c00482{margin-left:-5.440000pt;}
._1b_c00482{margin-left:-4.000000pt;}
._e_c00482{margin-left:-2.506667pt;}
._3_c00482{margin-left:-1.600000pt;}
._0_c00482{width:1.333333pt;}
._2_c00482{width:2.400000pt;}
._6_c00482{width:3.306667pt;}
._4_c00482{width:4.266667pt;}
._1_c00482{width:5.493333pt;}
._d_c00482{width:7.200000pt;}
._12_c00482{width:8.320000pt;}
._13_c00482{width:10.133333pt;}
._a_c00482{width:11.146667pt;}
._10_c00482{width:14.453333pt;}
._1c_c00482{width:15.840000pt;}
._9_c00482{width:17.013333pt;}
._11_c00482{width:18.506667pt;}
._1e_c00482{width:20.373333pt;}
._30_c00482{width:21.653333pt;}
._16_c00482{width:23.306667pt;}
._1d_c00482{width:25.226667pt;}
._20_c00482{width:29.333333pt;}
._21_c00482{width:30.400000pt;}
._2a_c00482{width:31.306667pt;}
._36_c00482{width:37.226667pt;}
._2f_c00482{width:40.426667pt;}
._32_c00482{width:64.053333pt;}
._35_c00482{width:69.280000pt;}
._29_c00482{width:70.560000pt;}
._31_c00482{width:72.693333pt;}
._33_c00482{width:74.400000pt;}
._19_c00482{width:79.520000pt;}
._24_c00482{width:84.480000pt;}
._22_c00482{width:87.093333pt;}
._14_c00482{width:88.640000pt;}
._25_c00482{width:90.080000pt;}
._23_c00482{width:90.986667pt;}
._8_c00482{width:92.266667pt;}
._17_c00482{width:93.706667pt;}
._5_c00482{width:95.253333pt;}
._c_c00482{width:96.373333pt;}
._f_c00482{width:99.413333pt;}
._1f_c00482{width:103.093333pt;}
._2d_c00482{width:153.920000pt;}
._2b_c00482{width:202.186667pt;}
._28_c00482{width:216.746667pt;}
._b_c00482{width:222.026667pt;}
._26_c00482{width:234.240000pt;}
._2c_c00482{width:436.266667pt;}
._27_c00482{width:685.440000pt;}
.fs2_c00482{font-size:42.666667pt;}
.fs0_c00482{font-size:53.333333pt;}
.fs1_c00482{font-size:58.666667pt;}
.y0_c00482{bottom:0.000000pt;}
.y2c_c00482{bottom:2.760000pt;}
.y2b_c00482{bottom:6.425212pt;}
.y2a_c00482{bottom:41.466667pt;}
.y29_c00482{bottom:58.266667pt;}
.y28_c00482{bottom:75.066667pt;}
.y27_c00482{bottom:91.866667pt;}
.y26_c00482{bottom:107.733333pt;}
.y25_c00482{bottom:124.266667pt;}
.y24_c00482{bottom:140.400000pt;}
.y23_c00482{bottom:156.666667pt;}
.y22_c00482{bottom:172.800000pt;}
.y21_c00482{bottom:188.666667pt;}
.y20_c00482{bottom:205.200000pt;}
.y1f_c00482{bottom:221.200000pt;}
.y1e_c00482{bottom:237.600000pt;}
.y1d_c00482{bottom:253.200000pt;}
.y1c_c00482{bottom:269.066667pt;}
.y1b_c00482{bottom:284.800000pt;}
.y1a_c00482{bottom:300.933333pt;}
.y19_c00482{bottom:316.800000pt;}
.y18_c00482{bottom:332.800000pt;}
.y17_c00482{bottom:348.933333pt;}
.y16_c00482{bottom:363.866667pt;}
.y15_c00482{bottom:380.400000pt;}
.y14_c00482{bottom:396.266667pt;}
.y13_c00482{bottom:412.266667pt;}
.y12_c00482{bottom:428.400000pt;}
.y11_c00482{bottom:443.733333pt;}
.y10_c00482{bottom:460.266667pt;}
.yf_c00482{bottom:475.200000pt;}
.ye_c00482{bottom:491.066667pt;}
.yd_c00482{bottom:507.200000pt;}
.yc_c00482{bottom:523.200000pt;}
.yb_c00482{bottom:539.200000pt;}
.ya_c00482{bottom:555.200000pt;}
.y9_c00482{bottom:571.200000pt;}
.y8_c00482{bottom:587.200000pt;}
.y7_c00482{bottom:603.333333pt;}
.y6_c00482{bottom:619.200000pt;}
.y5_c00482{bottom:635.733333pt;}
.y4_c00482{bottom:651.600000pt;}
.y3_c00482{bottom:668.133333pt;}
.y2_c00482{bottom:684.666667pt;}
.y1_c00482{bottom:700.000000pt;}
.h4_c00482{height:11.733399pt;}
.h5_c00482{height:38.937500pt;}
.h1_c00482{height:55.893333pt;}
.h3_c00482{height:56.426667pt;}
.h2_c00482{height:63.594667pt;}
.h0_c00482{height:750.000000pt;}
.w2_c00482{width:93.222667pt;}
.w1_c00482{width:515.333333pt;}
.w0_c00482{width:515.533333pt;}
.x0_c00482{left:0.000000pt;}
.x2_c00482{left:62.400000pt;}
.x1_c00482{left:64.800000pt;}
.x3_c00482{left:65.733333pt;}
.x4_c00482{left:66.933333pt;}
.x5_c00482{left:68.666667pt;}
.x7_c00482{left:214.934896pt;}
.x6_c00482{left:342.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_8d93c668345931a88b5e1e01.woff2')format("woff");}.ff1_c00483{font-family:ff1_c00483;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00483;src:url('chunks/assets/font_a726872f71454e206e7edd57.woff2')format("woff");}.ff2_c00483{font-family:ff2_c00483;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00483;src:url('chunks/assets/font_b75951b0a9a16ca08440c273.woff2')format("woff");}.ff3_c00483{font-family:ff3_c00483;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00483;src:url('chunks/assets/font_cfc8a1df809b83e4167f0bf7.woff2')format("woff");}.ff4_c00483{font-family:ff4_c00483;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00483;src:url('chunks/assets/font_d19a77a3419d6478de4e3735.woff2')format("woff");}.ff5_c00483{font-family:ff5_c00483;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00483;src:url('chunks/assets/font_ed240825fc1966eabbfe1a36.woff2')format("woff");}.ff6_c00483{font-family:ff6_c00483;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00483;src:url('chunks/assets/font_14db4c45c3c0749aec9fc92d.woff2')format("woff");}.ff7_c00483{font-family:ff7_c00483;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00483;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff8_c00483{font-family:ff8_c00483;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00483;src:url('chunks/assets/font_aaa2b02ab6e2ecb6bee3c856.woff2')format("woff");}.ff9_c00483{font-family:ff9_c00483;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00483;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ffa_c00483{font-family:ffa_c00483;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00483{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00483{vertical-align:0.000000px;}
.v1_c00483{vertical-align:70.200000px;}
.ls4_c00483{letter-spacing:0.000000px;}
.ls2_c00483{letter-spacing:1.740000px;}
.ls6_c00483{letter-spacing:3.000000px;}
.ls5_c00483{letter-spacing:6.000000px;}
.ls3_c00483{letter-spacing:6.900000px;}
.ls1_c00483{letter-spacing:7.200000px;}
.ls7_c00483{letter-spacing:15.000000px;}
.ls0_c00483{letter-spacing:16.893000px;}
.sc__c00483{text-shadow:none;}
.sc0_c00483{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00483{-webkit-text-stroke:0px transparent;}
.sc0_c00483{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00483{word-spacing:-37.746000px;}
.ws4_c00483{word-spacing:-29.340000px;}
.ws5_c00483{word-spacing:-17.307000px;}
.ws6_c00483{word-spacing:-15.813000px;}
.ws2_c00483{word-spacing:-14.160000px;}
.ws7_c00483{word-spacing:-12.291000px;}
.ws1_c00483{word-spacing:-0.798000px;}
.ws8_c00483{word-spacing:0.000000px;}
.ws0_c00483{word-spacing:1.864800px;}
._1c_c00483{margin-left:-15.159600px;}
._1a_c00483{margin-left:-11.925000px;}
._18_c00483{margin-left:-10.560000px;}
._19_c00483{margin-left:-8.280000px;}
._20_c00483{margin-left:-6.772200px;}
._10_c00483{margin-left:-5.640000px;}
._11_c00483{margin-left:-4.620000px;}
._16_c00483{margin-left:-2.611800px;}
._13_c00483{margin-left:-1.560000px;}
._c_c00483{width:1.680000px;}
._d_c00483{width:2.700000px;}
._e_c00483{width:3.825600px;}
._a_c00483{width:4.977000px;}
._b_c00483{width:6.123600px;}
._0_c00483{width:7.938000px;}
._9_c00483{width:9.576000px;}
._14_c00483{width:11.310000px;}
._8_c00483{width:12.663000px;}
._25_c00483{width:14.532000px;}
._2_c00483{width:15.674400px;}
._3_c00483{width:17.438400px;}
._1d_c00483{width:18.540000px;}
._1b_c00483{width:19.541400px;}
._6_c00483{width:20.774400px;}
._5_c00483{width:22.176000px;}
._12_c00483{width:23.640000px;}
._4_c00483{width:25.149600px;}
._17_c00483{width:26.940000px;}
._26_c00483{width:28.469400px;}
._22_c00483{width:29.572200px;}
._f_c00483{width:32.976000px;}
._7_c00483{width:34.902000px;}
._21_c00483{width:38.820000px;}
._23_c00483{width:40.278000px;}
._1f_c00483{width:50.938800px;}
._24_c00483{width:56.281200px;}
._1e_c00483{width:92.900400px;}
._15_c00483{width:96.923400px;}
._1_c00483{width:194.310000px;}
.fc2_c00483{color:transparent;}
.fc1_c00483{color:rgb(128,128,128);}
.fc0_c00483{color:rgb(0,0,0);}
.fs3_c00483{font-size:42.000000px;}
.fs8_c00483{font-size:48.000000px;}
.fs1_c00483{font-size:50.400000px;}
.fs6_c00483{font-size:51.000000px;}
.fs4_c00483{font-size:57.000000px;}
.fs2_c00483{font-size:60.000000px;}
.fs0_c00483{font-size:63.000000px;}
.fs5_c00483{font-size:66.000000px;}
.fs7_c00483{font-size:150.000000px;}
.y0_c00483{bottom:0.000000px;}
.y51_c00483{bottom:3.105000px;}
.y50_c00483{bottom:7.228371px;}
.y4f_c00483{bottom:39.465000px;}
.y2a_c00483{bottom:56.415000px;}
.y4e_c00483{bottom:57.015000px;}
.y29_c00483{bottom:75.315000px;}
.y4d_c00483{bottom:75.915000px;}
.y28_c00483{bottom:93.465000px;}
.y4c_c00483{bottom:94.215000px;}
.y27_c00483{bottom:111.165000px;}
.y4b_c00483{bottom:111.765000px;}
.y26_c00483{bottom:130.065000px;}
.y4a_c00483{bottom:130.365000px;}
.y25_c00483{bottom:148.215000px;}
.y49_c00483{bottom:148.515000px;}
.y24_c00483{bottom:166.065000px;}
.y48_c00483{bottom:166.815000px;}
.y23_c00483{bottom:184.365000px;}
.y47_c00483{bottom:184.965000px;}
.y46_c00483{bottom:185.715000px;}
.y22_c00483{bottom:201.915000px;}
.y21_c00483{bottom:220.815000px;}
.y20_c00483{bottom:238.965000px;}
.y45_c00483{bottom:239.715000px;}
.y1f_c00483{bottom:257.265000px;}
.y44_c00483{bottom:257.565000px;}
.y1e_c00483{bottom:274.815000px;}
.y43_c00483{bottom:275.865000px;}
.y1d_c00483{bottom:292.965000px;}
.y42_c00483{bottom:293.715000px;}
.y1c_c00483{bottom:310.815000px;}
.y41_c00483{bottom:310.965000px;}
.y1b_c00483{bottom:328.815000px;}
.y40_c00483{bottom:346.665000px;}
.y1a_c00483{bottom:346.965000px;}
.y19_c00483{bottom:364.965000px;}
.y3f_c00483{bottom:382.815000px;}
.y18_c00483{bottom:383.415000px;}
.y3e_c00483{bottom:400.965000px;}
.y17_c00483{bottom:401.265000px;}
.y16_c00483{bottom:419.565000px;}
.y3d_c00483{bottom:419.865000px;}
.y3c_c00483{bottom:437.115000px;}
.y15_c00483{bottom:437.715000px;}
.y14_c00483{bottom:455.715000px;}
.y3b_c00483{bottom:456.015000px;}
.y13_c00483{bottom:473.565000px;}
.y3a_c00483{bottom:491.415000px;}
.y12_c00483{bottom:491.865000px;}
.y39_c00483{bottom:509.265000px;}
.y11_c00483{bottom:509.715000px;}
.y38_c00483{bottom:527.265000px;}
.y10_c00483{bottom:527.565000px;}
.y37_c00483{bottom:544.365000px;}
.yf_c00483{bottom:545.415000px;}
.y36_c00483{bottom:562.365000px;}
.ye_c00483{bottom:563.415000px;}
.y35_c00483{bottom:580.515000px;}
.yd_c00483{bottom:581.265000px;}
.y34_c00483{bottom:598.515000px;}
.yc_c00483{bottom:598.815000px;}
.y33_c00483{bottom:616.365000px;}
.yb_c00483{bottom:616.965000px;}
.y32_c00483{bottom:634.515000px;}
.ya_c00483{bottom:635.865000px;}
.y31_c00483{bottom:652.065000px;}
.y9_c00483{bottom:653.865000px;}
.y30_c00483{bottom:670.965000px;}
.y8_c00483{bottom:672.615000px;}
.y2f_c00483{bottom:688.965000px;}
.y7_c00483{bottom:689.265000px;}
.y2e_c00483{bottom:707.415000px;}
.y6_c00483{bottom:708.165000px;}
.y2d_c00483{bottom:725.415000px;}
.y5_c00483{bottom:727.065000px;}
.y2c_c00483{bottom:743.265000px;}
.y4_c00483{bottom:744.615000px;}
.y2b_c00483{bottom:761.415000px;}
.y3_c00483{bottom:762.765000px;}
.y2_c00483{bottom:780.765000px;}
.y1_c00483{bottom:799.215000px;}
.h9_c00483{height:13.200074px;}
.ha_c00483{height:43.804688px;}
.h7_c00483{height:59.690918px;}
.h3_c00483{height:62.880000px;}
.h6_c00483{height:64.571777px;}
.h2_c00483{height:66.024000px;}
.h5_c00483{height:69.168000px;}
.h4_c00483{height:71.544000px;}
.h8_c00483{height:160.050000px;}
.h0_c00483{height:848.625000px;}
.h1_c00483{height:849.000000px;}
.w2_c00483{width:104.875500px;}
.w1_c00483{width:579.750000px;}
.w0_c00483{width:579.975000px;}
.x0_c00483{left:0.000000px;}
.x5_c00483{left:39.900000px;}
.x7_c00483{left:95.250000px;}
.x2_c00483{left:101.250000px;}
.x3_c00483{left:102.600000px;}
.x4_c00483{left:103.950000px;}
.x1_c00483{left:106.350000px;}
.x6_c00483{left:108.000000px;}
.x8_c00483{left:109.350000px;}
.x9_c00483{left:110.700000px;}
.x14_c00483{left:241.801758px;}
.xd_c00483{left:323.400000px;}
.xa_c00483{left:326.400000px;}
.xb_c00483{left:327.450000px;}
.x11_c00483{left:331.500000px;}
.xe_c00483{left:344.250000px;}
.x12_c00483{left:360.450000px;}
.xf_c00483{left:380.400000px;}
.xc_c00483{left:403.950000px;}
.x10_c00483{left:407.700000px;}
.x13_c00483{left:486.750000px;}
@media print{
.v0_c00483{vertical-align:0.000000pt;}
.v1_c00483{vertical-align:62.400000pt;}
.ls4_c00483{letter-spacing:0.000000pt;}
.ls2_c00483{letter-spacing:1.546667pt;}
.ls6_c00483{letter-spacing:2.666667pt;}
.ls5_c00483{letter-spacing:5.333333pt;}
.ls3_c00483{letter-spacing:6.133333pt;}
.ls1_c00483{letter-spacing:6.400000pt;}
.ls7_c00483{letter-spacing:13.333333pt;}
.ls0_c00483{letter-spacing:15.016000pt;}
.ws3_c00483{word-spacing:-33.552000pt;}
.ws4_c00483{word-spacing:-26.080000pt;}
.ws5_c00483{word-spacing:-15.384000pt;}
.ws6_c00483{word-spacing:-14.056000pt;}
.ws2_c00483{word-spacing:-12.586667pt;}
.ws7_c00483{word-spacing:-10.925333pt;}
.ws1_c00483{word-spacing:-0.709333pt;}
.ws8_c00483{word-spacing:0.000000pt;}
.ws0_c00483{word-spacing:1.657600pt;}
._1c_c00483{margin-left:-13.475200pt;}
._1a_c00483{margin-left:-10.600000pt;}
._18_c00483{margin-left:-9.386667pt;}
._19_c00483{margin-left:-7.360000pt;}
._20_c00483{margin-left:-6.019733pt;}
._10_c00483{margin-left:-5.013333pt;}
._11_c00483{margin-left:-4.106667pt;}
._16_c00483{margin-left:-2.321600pt;}
._13_c00483{margin-left:-1.386667pt;}
._c_c00483{width:1.493333pt;}
._d_c00483{width:2.400000pt;}
._e_c00483{width:3.400533pt;}
._a_c00483{width:4.424000pt;}
._b_c00483{width:5.443200pt;}
._0_c00483{width:7.056000pt;}
._9_c00483{width:8.512000pt;}
._14_c00483{width:10.053333pt;}
._8_c00483{width:11.256000pt;}
._25_c00483{width:12.917333pt;}
._2_c00483{width:13.932800pt;}
._3_c00483{width:15.500800pt;}
._1d_c00483{width:16.480000pt;}
._1b_c00483{width:17.370133pt;}
._6_c00483{width:18.466133pt;}
._5_c00483{width:19.712000pt;}
._12_c00483{width:21.013333pt;}
._4_c00483{width:22.355200pt;}
._17_c00483{width:23.946667pt;}
._26_c00483{width:25.306133pt;}
._22_c00483{width:26.286400pt;}
._f_c00483{width:29.312000pt;}
._7_c00483{width:31.024000pt;}
._21_c00483{width:34.506667pt;}
._23_c00483{width:35.802667pt;}
._1f_c00483{width:45.278933pt;}
._24_c00483{width:50.027733pt;}
._1e_c00483{width:82.578133pt;}
._15_c00483{width:86.154133pt;}
._1_c00483{width:172.720000pt;}
.fs3_c00483{font-size:37.333333pt;}
.fs8_c00483{font-size:42.666667pt;}
.fs1_c00483{font-size:44.800000pt;}
.fs6_c00483{font-size:45.333333pt;}
.fs4_c00483{font-size:50.666667pt;}
.fs2_c00483{font-size:53.333333pt;}
.fs0_c00483{font-size:56.000000pt;}
.fs5_c00483{font-size:58.666667pt;}
.fs7_c00483{font-size:133.333333pt;}
.y0_c00483{bottom:0.000000pt;}
.y51_c00483{bottom:2.760000pt;}
.y50_c00483{bottom:6.425219pt;}
.y4f_c00483{bottom:35.080000pt;}
.y2a_c00483{bottom:50.146667pt;}
.y4e_c00483{bottom:50.680000pt;}
.y29_c00483{bottom:66.946667pt;}
.y4d_c00483{bottom:67.480000pt;}
.y28_c00483{bottom:83.080000pt;}
.y4c_c00483{bottom:83.746667pt;}
.y27_c00483{bottom:98.813333pt;}
.y4b_c00483{bottom:99.346667pt;}
.y26_c00483{bottom:115.613333pt;}
.y4a_c00483{bottom:115.880000pt;}
.y25_c00483{bottom:131.746667pt;}
.y49_c00483{bottom:132.013333pt;}
.y24_c00483{bottom:147.613333pt;}
.y48_c00483{bottom:148.280000pt;}
.y23_c00483{bottom:163.880000pt;}
.y47_c00483{bottom:164.413333pt;}
.y46_c00483{bottom:165.080000pt;}
.y22_c00483{bottom:179.480000pt;}
.y21_c00483{bottom:196.280000pt;}
.y20_c00483{bottom:212.413333pt;}
.y45_c00483{bottom:213.080000pt;}
.y1f_c00483{bottom:228.680000pt;}
.y44_c00483{bottom:228.946667pt;}
.y1e_c00483{bottom:244.280000pt;}
.y43_c00483{bottom:245.213333pt;}
.y1d_c00483{bottom:260.413333pt;}
.y42_c00483{bottom:261.080000pt;}
.y1c_c00483{bottom:276.280000pt;}
.y41_c00483{bottom:276.413333pt;}
.y1b_c00483{bottom:292.280000pt;}
.y40_c00483{bottom:308.146667pt;}
.y1a_c00483{bottom:308.413333pt;}
.y19_c00483{bottom:324.413333pt;}
.y3f_c00483{bottom:340.280000pt;}
.y18_c00483{bottom:340.813333pt;}
.y3e_c00483{bottom:356.413333pt;}
.y17_c00483{bottom:356.680000pt;}
.y16_c00483{bottom:372.946667pt;}
.y3d_c00483{bottom:373.213333pt;}
.y3c_c00483{bottom:388.546667pt;}
.y15_c00483{bottom:389.080000pt;}
.y14_c00483{bottom:405.080000pt;}
.y3b_c00483{bottom:405.346667pt;}
.y13_c00483{bottom:420.946667pt;}
.y3a_c00483{bottom:436.813333pt;}
.y12_c00483{bottom:437.213333pt;}
.y39_c00483{bottom:452.680000pt;}
.y11_c00483{bottom:453.080000pt;}
.y38_c00483{bottom:468.680000pt;}
.y10_c00483{bottom:468.946667pt;}
.y37_c00483{bottom:483.880000pt;}
.yf_c00483{bottom:484.813333pt;}
.y36_c00483{bottom:499.880000pt;}
.ye_c00483{bottom:500.813333pt;}
.y35_c00483{bottom:516.013333pt;}
.yd_c00483{bottom:516.680000pt;}
.y34_c00483{bottom:532.013333pt;}
.yc_c00483{bottom:532.280000pt;}
.y33_c00483{bottom:547.880000pt;}
.yb_c00483{bottom:548.413333pt;}
.y32_c00483{bottom:564.013333pt;}
.ya_c00483{bottom:565.213333pt;}
.y31_c00483{bottom:579.613333pt;}
.y9_c00483{bottom:581.213333pt;}
.y30_c00483{bottom:596.413333pt;}
.y8_c00483{bottom:597.880000pt;}
.y2f_c00483{bottom:612.413333pt;}
.y7_c00483{bottom:612.680000pt;}
.y2e_c00483{bottom:628.813333pt;}
.y6_c00483{bottom:629.480000pt;}
.y2d_c00483{bottom:644.813333pt;}
.y5_c00483{bottom:646.280000pt;}
.y2c_c00483{bottom:660.680000pt;}
.y4_c00483{bottom:661.880000pt;}
.y2b_c00483{bottom:676.813333pt;}
.y3_c00483{bottom:678.013333pt;}
.y2_c00483{bottom:694.013333pt;}
.y1_c00483{bottom:710.413333pt;}
.h9_c00483{height:11.733399pt;}
.ha_c00483{height:38.937500pt;}
.h7_c00483{height:53.058594pt;}
.h3_c00483{height:55.893333pt;}
.h6_c00483{height:57.397135pt;}
.h2_c00483{height:58.688000pt;}
.h5_c00483{height:61.482667pt;}
.h4_c00483{height:63.594667pt;}
.h8_c00483{height:142.266667pt;}
.h0_c00483{height:754.333333pt;}
.h1_c00483{height:754.666667pt;}
.w2_c00483{width:93.222667pt;}
.w1_c00483{width:515.333333pt;}
.w0_c00483{width:515.533333pt;}
.x0_c00483{left:0.000000pt;}
.x5_c00483{left:35.466667pt;}
.x7_c00483{left:84.666667pt;}
.x2_c00483{left:90.000000pt;}
.x3_c00483{left:91.200000pt;}
.x4_c00483{left:92.400000pt;}
.x1_c00483{left:94.533333pt;}
.x6_c00483{left:96.000000pt;}
.x8_c00483{left:97.200000pt;}
.x9_c00483{left:98.400000pt;}
.x14_c00483{left:214.934896pt;}
.xd_c00483{left:287.466667pt;}
.xa_c00483{left:290.133333pt;}
.xb_c00483{left:291.066667pt;}
.x11_c00483{left:294.666667pt;}
.xe_c00483{left:306.000000pt;}
.x12_c00483{left:320.400000pt;}
.xf_c00483{left:338.133333pt;}
.xc_c00483{left:359.066667pt;}
.x10_c00483{left:362.400000pt;}
.x13_c00483{left:432.666667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c238ebecd4f427a662bc7c3c.woff2')format("woff");}.ff1_c00484{font-family:ff1_c00484;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00484;src:url('chunks/assets/font_5330ea909ead003e56b2ed63.woff2')format("woff");}.ff2_c00484{font-family:ff2_c00484;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00484;src:url('chunks/assets/font_b9777156d09802d9096df2ea.woff2')format("woff");}.ff3_c00484{font-family:ff3_c00484;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00484;src:url('chunks/assets/font_f85e3056e9a0852028bf0a2e.woff2')format("woff");}.ff4_c00484{font-family:ff4_c00484;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00484;src:url('chunks/assets/font_f66fb08bc0fcdbf3648613d1.woff2')format("woff");}.ff5_c00484{font-family:ff5_c00484;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00484;src:url('chunks/assets/font_510a0cb98af14d086168c13c.woff2')format("woff");}.ff6_c00484{font-family:ff6_c00484;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00484;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff7_c00484{font-family:ff7_c00484;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00484{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m4_c00484{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1_c00484{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m3_c00484{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m2_c00484{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.v0_c00484{vertical-align:0.000000px;}
.ls7_c00484{letter-spacing:-6.000000px;}
.ls5_c00484{letter-spacing:0.000000px;}
.ls4_c00484{letter-spacing:1.440000px;}
.ls6_c00484{letter-spacing:3.000000px;}
.ls8_c00484{letter-spacing:6.000000px;}
.ls3_c00484{letter-spacing:6.600000px;}
.ls2_c00484{letter-spacing:28.893000px;}
.ls0_c00484{letter-spacing:31.293000px;}
.ls1_c00484{letter-spacing:45.093000px;}
.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;}
}
.ws7_c00484{word-spacing:-37.746000px;}
.ws3_c00484{word-spacing:-27.417000px;}
.ws1_c00484{word-spacing:-22.074000px;}
.ws6_c00484{word-spacing:-17.340000px;}
.ws8_c00484{word-spacing:-15.600000px;}
.ws2_c00484{word-spacing:-14.340000px;}
.ws0_c00484{word-spacing:-14.160000px;}
.ws5_c00484{word-spacing:-13.452000px;}
.ws4_c00484{word-spacing:-7.452000px;}
.ws9_c00484{word-spacing:0.000000px;}
._31_c00484{margin-left:-21.300000px;}
._1d_c00484{margin-left:-18.540000px;}
._2a_c00484{margin-left:-17.505000px;}
._29_c00484{margin-left:-16.341000px;}
._e_c00484{margin-left:-14.220000px;}
._10_c00484{margin-left:-12.000000px;}
._f_c00484{margin-left:-10.620000px;}
._11_c00484{margin-left:-8.880000px;}
._15_c00484{margin-left:-6.840000px;}
._d_c00484{margin-left:-4.980000px;}
._6_c00484{margin-left:-3.660000px;}
._5_c00484{margin-left:-2.340000px;}
._9_c00484{margin-left:-1.140000px;}
._1_c00484{width:1.380000px;}
._0_c00484{width:2.760000px;}
._2_c00484{width:4.680000px;}
._a_c00484{width:5.760000px;}
._b_c00484{width:7.200000px;}
._4_c00484{width:8.400000px;}
._1a_c00484{width:10.380000px;}
._3_c00484{width:11.760000px;}
._17_c00484{width:13.320000px;}
._1f_c00484{width:15.600000px;}
._7_c00484{width:17.400000px;}
._19_c00484{width:19.020000px;}
._21_c00484{width:20.160000px;}
._14_c00484{width:21.600000px;}
._2c_c00484{width:22.920000px;}
._18_c00484{width:23.985000px;}
._2b_c00484{width:25.260000px;}
._30_c00484{width:27.840000px;}
._1c_c00484{width:28.980000px;}
._32_c00484{width:31.920000px;}
._2f_c00484{width:35.400000px;}
._1b_c00484{width:37.320000px;}
._33_c00484{width:38.475000px;}
._2e_c00484{width:39.720000px;}
._2d_c00484{width:41.640000px;}
._28_c00484{width:52.620000px;}
._35_c00484{width:54.180000px;}
._26_c00484{width:60.168000px;}
._23_c00484{width:63.360000px;}
._22_c00484{width:71.445000px;}
._20_c00484{width:72.480000px;}
._12_c00484{width:74.160000px;}
._8_c00484{width:75.720000px;}
._1e_c00484{width:77.580000px;}
._c_c00484{width:80.880000px;}
._25_c00484{width:84.264000px;}
._24_c00484{width:90.600000px;}
._16_c00484{width:115.380000px;}
._27_c00484{width:140.115000px;}
._13_c00484{width:199.920000px;}
._34_c00484{width:654.336000px;}
.fc2_c00484{color:transparent;}
.fc1_c00484{color:rgb(128,128,128);}
.fc0_c00484{color:rgb(0,0,0);}
.fs3_c00484{font-size:24.000000px;}
.fs4_c00484{font-size:33.000000px;}
.fs5_c00484{font-size:48.000000px;}
.fs1_c00484{font-size:57.000000px;}
.fs0_c00484{font-size:60.000000px;}
.fs2_c00484{font-size:66.000000px;}
.y0_c00484{bottom:0.000000px;}
.y4d_c00484{bottom:3.105000px;}
.y4c_c00484{bottom:7.228357px;}
.y48_c00484{bottom:39.180000px;}
.y47_c00484{bottom:58.080000px;}
.y46_c00484{bottom:76.680000px;}
.y4b_c00484{bottom:76.980000px;}
.y45_c00484{bottom:94.530000px;}
.y4a_c00484{bottom:95.580000px;}
.y44_c00484{bottom:113.130000px;}
.y49_c00484{bottom:113.430000px;}
.y43_c00484{bottom:131.580000px;}
.y42_c00484{bottom:149.880000px;}
.y41_c00484{bottom:168.180000px;}
.y40_c00484{bottom:186.330000px;}
.y3f_c00484{bottom:204.180000px;}
.y2a_c00484{bottom:204.630000px;}
.y3e_c00484{bottom:218.130000px;}
.y3d_c00484{bottom:222.480000px;}
.y29_c00484{bottom:223.080000px;}
.y3c_c00484{bottom:240.930000px;}
.y28_c00484{bottom:241.080000px;}
.y3b_c00484{bottom:258.930000px;}
.y27_c00484{bottom:259.530000px;}
.y3a_c00484{bottom:277.380000px;}
.y26_c00484{bottom:277.530000px;}
.y39_c00484{bottom:294.630000px;}
.y25_c00484{bottom:295.080000px;}
.y24_c00484{bottom:312.930000px;}
.y38_c00484{bottom:313.530000px;}
.y23_c00484{bottom:330.480000px;}
.y37_c00484{bottom:331.530000px;}
.y22_c00484{bottom:349.080000px;}
.y36_c00484{bottom:349.680000px;}
.y21_c00484{bottom:366.930000px;}
.y35_c00484{bottom:367.830000px;}
.y20_c00484{bottom:384.780000px;}
.y34_c00484{bottom:385.830000px;}
.y1f_c00484{bottom:403.380000px;}
.y33_c00484{bottom:404.280000px;}
.y1e_c00484{bottom:421.230000px;}
.y32_c00484{bottom:422.580000px;}
.y1d_c00484{bottom:439.080000px;}
.y31_c00484{bottom:440.130000px;}
.y1c_c00484{bottom:456.930000px;}
.y30_c00484{bottom:458.430000px;}
.y1b_c00484{bottom:475.230000px;}
.y2f_c00484{bottom:476.280000px;}
.y1a_c00484{bottom:493.080000px;}
.y2e_c00484{bottom:494.730000px;}
.y19_c00484{bottom:510.930000px;}
.y2d_c00484{bottom:512.430000px;}
.y18_c00484{bottom:527.580000px;}
.y2c_c00484{bottom:530.280000px;}
.y17_c00484{bottom:545.430000px;}
.y2b_c00484{bottom:548.130000px;}
.y14_c00484{bottom:556.530000px;}
.y16_c00484{bottom:563.730000px;}
.y13_c00484{bottom:566.280000px;}
.y15_c00484{bottom:581.280000px;}
.y12_c00484{bottom:582.930000px;}
.y11_c00484{bottom:601.080000px;}
.y10_c00484{bottom:617.730000px;}
.ya_c00484{bottom:621.030000px;}
.yf_c00484{bottom:635.880000px;}
.y9_c00484{bottom:638.880000px;}
.ye_c00484{bottom:654.180000px;}
.y8_c00484{bottom:657.180000px;}
.yd_c00484{bottom:671.730000px;}
.y7_c00484{bottom:675.330000px;}
.yc_c00484{bottom:689.880000px;}
.y6_c00484{bottom:693.630000px;}
.yb_c00484{bottom:708.480000px;}
.y5_c00484{bottom:713.580000px;}
.y4_c00484{bottom:729.030000px;}
.y3_c00484{bottom:746.880000px;}
.y2_c00484{bottom:764.430000px;}
.y1_c00484{bottom:784.080000px;}
.h7_c00484{height:13.200074px;}
.h4_c00484{height:35.211000px;}
.h8_c00484{height:43.804688px;}
.h5_c00484{height:59.736000px;}
.h2_c00484{height:62.880000px;}
.h6_c00484{height:64.020000px;}
.h3_c00484{height:70.422000px;}
.h0_c00484{height:835.950000px;}
.h1_c00484{height:836.250000px;}
.w2_c00484{width:104.875500px;}
.w1_c00484{width:574.500000px;}
.w0_c00484{width:574.575000px;}
.x0_c00484{left:0.000000px;}
.xf_c00484{left:19.350000px;}
.x10_c00484{left:21.000000px;}
.x1_c00484{left:76.500000px;}
.x2_c00484{left:77.700000px;}
.x7_c00484{left:79.350000px;}
.x8_c00484{left:80.400000px;}
.xd_c00484{left:82.350000px;}
.xe_c00484{left:83.400000px;}
.x13_c00484{left:84.750000px;}
.x12_c00484{left:86.700000px;}
.x14_c00484{left:88.650000px;}
.x15_c00484{left:89.850000px;}
.x1d_c00484{left:92.637000px;}
.x1b_c00484{left:100.950000px;}
.x11_c00484{left:113.100000px;}
.x1c_c00484{left:159.600000px;}
.x21_c00484{left:239.101730px;}
.x3_c00484{left:292.950000px;}
.x4_c00484{left:294.300000px;}
.x5_c00484{left:296.250000px;}
.x6_c00484{left:297.300000px;}
.x16_c00484{left:299.700000px;}
.x17_c00484{left:301.800000px;}
.x18_c00484{left:303.150000px;}
.x19_c00484{left:304.800000px;}
.xc_c00484{left:305.850000px;}
.x1e_c00484{left:308.070000px;}
.x1f_c00484{left:309.736500px;}
.x1a_c00484{left:312.150000px;}
.x9_c00484{left:366.450000px;}
.xa_c00484{left:396.900000px;}
.xb_c00484{left:449.100000px;}
.x20_c00484{left:495.475500px;}
@media print{
.v0_c00484{vertical-align:0.000000pt;}
.ls7_c00484{letter-spacing:-5.333333pt;}
.ls5_c00484{letter-spacing:0.000000pt;}
.ls4_c00484{letter-spacing:1.280000pt;}
.ls6_c00484{letter-spacing:2.666667pt;}
.ls8_c00484{letter-spacing:5.333333pt;}
.ls3_c00484{letter-spacing:5.866667pt;}
.ls2_c00484{letter-spacing:25.682667pt;}
.ls0_c00484{letter-spacing:27.816000pt;}
.ls1_c00484{letter-spacing:40.082667pt;}
.ws7_c00484{word-spacing:-33.552000pt;}
.ws3_c00484{word-spacing:-24.370667pt;}
.ws1_c00484{word-spacing:-19.621333pt;}
.ws6_c00484{word-spacing:-15.413333pt;}
.ws8_c00484{word-spacing:-13.866667pt;}
.ws2_c00484{word-spacing:-12.746667pt;}
.ws0_c00484{word-spacing:-12.586667pt;}
.ws5_c00484{word-spacing:-11.957333pt;}
.ws4_c00484{word-spacing:-6.624000pt;}
.ws9_c00484{word-spacing:0.000000pt;}
._31_c00484{margin-left:-18.933333pt;}
._1d_c00484{margin-left:-16.480000pt;}
._2a_c00484{margin-left:-15.560000pt;}
._29_c00484{margin-left:-14.525333pt;}
._e_c00484{margin-left:-12.640000pt;}
._10_c00484{margin-left:-10.666667pt;}
._f_c00484{margin-left:-9.440000pt;}
._11_c00484{margin-left:-7.893333pt;}
._15_c00484{margin-left:-6.080000pt;}
._d_c00484{margin-left:-4.426667pt;}
._6_c00484{margin-left:-3.253333pt;}
._5_c00484{margin-left:-2.080000pt;}
._9_c00484{margin-left:-1.013333pt;}
._1_c00484{width:1.226667pt;}
._0_c00484{width:2.453333pt;}
._2_c00484{width:4.160000pt;}
._a_c00484{width:5.120000pt;}
._b_c00484{width:6.400000pt;}
._4_c00484{width:7.466667pt;}
._1a_c00484{width:9.226667pt;}
._3_c00484{width:10.453333pt;}
._17_c00484{width:11.840000pt;}
._1f_c00484{width:13.866667pt;}
._7_c00484{width:15.466667pt;}
._19_c00484{width:16.906667pt;}
._21_c00484{width:17.920000pt;}
._14_c00484{width:19.200000pt;}
._2c_c00484{width:20.373333pt;}
._18_c00484{width:21.320000pt;}
._2b_c00484{width:22.453333pt;}
._30_c00484{width:24.746667pt;}
._1c_c00484{width:25.760000pt;}
._32_c00484{width:28.373333pt;}
._2f_c00484{width:31.466667pt;}
._1b_c00484{width:33.173333pt;}
._33_c00484{width:34.200000pt;}
._2e_c00484{width:35.306667pt;}
._2d_c00484{width:37.013333pt;}
._28_c00484{width:46.773333pt;}
._35_c00484{width:48.160000pt;}
._26_c00484{width:53.482667pt;}
._23_c00484{width:56.320000pt;}
._22_c00484{width:63.506667pt;}
._20_c00484{width:64.426667pt;}
._12_c00484{width:65.920000pt;}
._8_c00484{width:67.306667pt;}
._1e_c00484{width:68.960000pt;}
._c_c00484{width:71.893333pt;}
._25_c00484{width:74.901333pt;}
._24_c00484{width:80.533333pt;}
._16_c00484{width:102.560000pt;}
._27_c00484{width:124.546667pt;}
._13_c00484{width:177.706667pt;}
._34_c00484{width:581.632000pt;}
.fs3_c00484{font-size:21.333333pt;}
.fs4_c00484{font-size:29.333333pt;}
.fs5_c00484{font-size:42.666667pt;}
.fs1_c00484{font-size:50.666667pt;}
.fs0_c00484{font-size:53.333333pt;}
.fs2_c00484{font-size:58.666667pt;}
.y0_c00484{bottom:0.000000pt;}
.y4d_c00484{bottom:2.760000pt;}
.y4c_c00484{bottom:6.425206pt;}
.y48_c00484{bottom:34.826667pt;}
.y47_c00484{bottom:51.626667pt;}
.y46_c00484{bottom:68.160000pt;}
.y4b_c00484{bottom:68.426667pt;}
.y45_c00484{bottom:84.026667pt;}
.y4a_c00484{bottom:84.960000pt;}
.y44_c00484{bottom:100.560000pt;}
.y49_c00484{bottom:100.826667pt;}
.y43_c00484{bottom:116.960000pt;}
.y42_c00484{bottom:133.226667pt;}
.y41_c00484{bottom:149.493333pt;}
.y40_c00484{bottom:165.626667pt;}
.y3f_c00484{bottom:181.493333pt;}
.y2a_c00484{bottom:181.893333pt;}
.y3e_c00484{bottom:193.893333pt;}
.y3d_c00484{bottom:197.760000pt;}
.y29_c00484{bottom:198.293333pt;}
.y3c_c00484{bottom:214.160000pt;}
.y28_c00484{bottom:214.293333pt;}
.y3b_c00484{bottom:230.160000pt;}
.y27_c00484{bottom:230.693333pt;}
.y3a_c00484{bottom:246.560000pt;}
.y26_c00484{bottom:246.693333pt;}
.y39_c00484{bottom:261.893333pt;}
.y25_c00484{bottom:262.293333pt;}
.y24_c00484{bottom:278.160000pt;}
.y38_c00484{bottom:278.693333pt;}
.y23_c00484{bottom:293.760000pt;}
.y37_c00484{bottom:294.693333pt;}
.y22_c00484{bottom:310.293333pt;}
.y36_c00484{bottom:310.826667pt;}
.y21_c00484{bottom:326.160000pt;}
.y35_c00484{bottom:326.960000pt;}
.y20_c00484{bottom:342.026667pt;}
.y34_c00484{bottom:342.960000pt;}
.y1f_c00484{bottom:358.560000pt;}
.y33_c00484{bottom:359.360000pt;}
.y1e_c00484{bottom:374.426667pt;}
.y32_c00484{bottom:375.626667pt;}
.y1d_c00484{bottom:390.293333pt;}
.y31_c00484{bottom:391.226667pt;}
.y1c_c00484{bottom:406.160000pt;}
.y30_c00484{bottom:407.493333pt;}
.y1b_c00484{bottom:422.426667pt;}
.y2f_c00484{bottom:423.360000pt;}
.y1a_c00484{bottom:438.293333pt;}
.y2e_c00484{bottom:439.760000pt;}
.y19_c00484{bottom:454.160000pt;}
.y2d_c00484{bottom:455.493333pt;}
.y18_c00484{bottom:468.960000pt;}
.y2c_c00484{bottom:471.360000pt;}
.y17_c00484{bottom:484.826667pt;}
.y2b_c00484{bottom:487.226667pt;}
.y14_c00484{bottom:494.693333pt;}
.y16_c00484{bottom:501.093333pt;}
.y13_c00484{bottom:503.360000pt;}
.y15_c00484{bottom:516.693333pt;}
.y12_c00484{bottom:518.160000pt;}
.y11_c00484{bottom:534.293333pt;}
.y10_c00484{bottom:549.093333pt;}
.ya_c00484{bottom:552.026667pt;}
.yf_c00484{bottom:565.226667pt;}
.y9_c00484{bottom:567.893333pt;}
.ye_c00484{bottom:581.493333pt;}
.y8_c00484{bottom:584.160000pt;}
.yd_c00484{bottom:597.093333pt;}
.y7_c00484{bottom:600.293333pt;}
.yc_c00484{bottom:613.226667pt;}
.y6_c00484{bottom:616.560000pt;}
.yb_c00484{bottom:629.760000pt;}
.y5_c00484{bottom:634.293333pt;}
.y4_c00484{bottom:648.026667pt;}
.y3_c00484{bottom:663.893333pt;}
.y2_c00484{bottom:679.493333pt;}
.y1_c00484{bottom:696.960000pt;}
.h7_c00484{height:11.733399pt;}
.h4_c00484{height:31.298667pt;}
.h8_c00484{height:38.937500pt;}
.h5_c00484{height:53.098667pt;}
.h2_c00484{height:55.893333pt;}
.h6_c00484{height:56.906667pt;}
.h3_c00484{height:62.597333pt;}
.h0_c00484{height:743.066667pt;}
.h1_c00484{height:743.333333pt;}
.w2_c00484{width:93.222667pt;}
.w1_c00484{width:510.666667pt;}
.w0_c00484{width:510.733333pt;}
.x0_c00484{left:0.000000pt;}
.xf_c00484{left:17.200000pt;}
.x10_c00484{left:18.666667pt;}
.x1_c00484{left:68.000000pt;}
.x2_c00484{left:69.066667pt;}
.x7_c00484{left:70.533333pt;}
.x8_c00484{left:71.466667pt;}
.xd_c00484{left:73.200000pt;}
.xe_c00484{left:74.133333pt;}
.x13_c00484{left:75.333333pt;}
.x12_c00484{left:77.066667pt;}
.x14_c00484{left:78.800000pt;}
.x15_c00484{left:79.866667pt;}
.x1d_c00484{left:82.344000pt;}
.x1b_c00484{left:89.733333pt;}
.x11_c00484{left:100.533333pt;}
.x1c_c00484{left:141.866667pt;}
.x21_c00484{left:212.534871pt;}
.x3_c00484{left:260.400000pt;}
.x4_c00484{left:261.600000pt;}
.x5_c00484{left:263.333333pt;}
.x6_c00484{left:264.266667pt;}
.x16_c00484{left:266.400000pt;}
.x17_c00484{left:268.266667pt;}
.x18_c00484{left:269.466667pt;}
.x19_c00484{left:270.933333pt;}
.xc_c00484{left:271.866667pt;}
.x1e_c00484{left:273.840000pt;}
.x1f_c00484{left:275.321333pt;}
.x1a_c00484{left:277.466667pt;}
.x9_c00484{left:325.733333pt;}
.xa_c00484{left:352.800000pt;}
.xb_c00484{left:399.200000pt;}
.x20_c00484{left:440.422667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_558c317172d49f373702f02e.woff2')format("woff");}.ff1_c00485{font-family:ff1_c00485;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00485;src:url('chunks/assets/font_f8b8302c8bddbbb93a261a16.woff2')format("woff");}.ff2_c00485{font-family:ff2_c00485;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00485;src:url('chunks/assets/font_556098e3d8805f638befd8ac.woff2')format("woff");}.ff3_c00485{font-family:ff3_c00485;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00485;src:url('chunks/assets/font_cbce7ff305adf9366e417762.woff2')format("woff");}.ff4_c00485{font-family:ff4_c00485;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00485;src:url('chunks/assets/font_89bbc9c0aa58f89fdf715d70.woff2')format("woff");}.ff5_c00485{font-family:ff5_c00485;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00485;src:url('chunks/assets/font_089ef1f2f7dd1442afbda0c0.woff2')format("woff");}.ff6_c00485{font-family:ff6_c00485;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00485;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff7_c00485{font-family:ff7_c00485;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00485;src:url('chunks/assets/font_72ca9f7a25284c7d242bbab1.woff2')format("woff");}.ff8_c00485{font-family:ff8_c00485;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00485;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff9_c00485{font-family:ff9_c00485;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00485{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00485{vertical-align:0.000000px;}
.v1_c00485{vertical-align:96.600000px;}
.ls5_c00485{letter-spacing:-3.000000px;}
.ls4_c00485{letter-spacing:0.000000px;}
.ls2_c00485{letter-spacing:3.000000px;}
.ls3_c00485{letter-spacing:4.500000px;}
.ls1_c00485{letter-spacing:5.400000px;}
.ls6_c00485{letter-spacing:6.000000px;}
.ls0_c00485{letter-spacing:16.800000px;}
.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;}
}
.ws4_c00485{word-spacing:-47.439000px;}
.ws2_c00485{word-spacing:-22.500000px;}
.ws5_c00485{word-spacing:-18.072000px;}
.ws1_c00485{word-spacing:-15.813000px;}
.ws0_c00485{word-spacing:-14.340000px;}
.ws3_c00485{word-spacing:-13.053000px;}
.ws6_c00485{word-spacing:0.000000px;}
._30_c00485{margin-left:-24.339000px;}
._2_c00485{margin-left:-22.743000px;}
._2f_c00485{margin-left:-10.125000px;}
._31_c00485{margin-left:-8.382000px;}
._1a_c00485{margin-left:-7.329000px;}
._29_c00485{margin-left:-6.063000px;}
._14_c00485{margin-left:-4.488000px;}
._12_c00485{margin-left:-3.420000px;}
._e_c00485{margin-left:-2.040000px;}
._21_c00485{margin-left:-1.014000px;}
._0_c00485{width:1.197000px;}
._c_c00485{width:2.286000px;}
._d_c00485{width:3.348000px;}
._16_c00485{width:4.764000px;}
._b_c00485{width:5.922000px;}
._1c_c00485{width:7.080000px;}
._4_c00485{width:8.127000px;}
._5_c00485{width:9.261000px;}
._6_c00485{width:10.332000px;}
._9_c00485{width:11.907000px;}
._8_c00485{width:12.915000px;}
._7_c00485{width:14.427000px;}
._1b_c00485{width:16.254000px;}
._f_c00485{width:18.288000px;}
._1f_c00485{width:21.177000px;}
._20_c00485{width:23.748000px;}
._18_c00485{width:24.900000px;}
._22_c00485{width:25.956000px;}
._2d_c00485{width:27.372000px;}
._a_c00485{width:28.602000px;}
._2b_c00485{width:29.652000px;}
._26_c00485{width:30.996000px;}
._2c_c00485{width:32.061000px;}
._19_c00485{width:33.360000px;}
._28_c00485{width:38.379000px;}
._25_c00485{width:40.137000px;}
._24_c00485{width:42.588000px;}
._2a_c00485{width:43.950000px;}
._2e_c00485{width:55.560000px;}
._1_c00485{width:67.221000px;}
._17_c00485{width:73.800000px;}
._15_c00485{width:75.534000px;}
._27_c00485{width:76.560000px;}
._1d_c00485{width:77.679000px;}
._23_c00485{width:79.578000px;}
._13_c00485{width:80.580000px;}
._11_c00485{width:82.683000px;}
._10_c00485{width:83.760000px;}
._1e_c00485{width:89.079000px;}
._3_c00485{width:111.636000px;}
.fc2_c00485{color:transparent;}
.fc1_c00485{color:rgb(128,128,128);}
.fc0_c00485{color:rgb(0,0,0);}
.fs4_c00485{font-size:24.000000px;}
.fs9_c00485{font-size:48.000000px;}
.fs3_c00485{font-size:54.000000px;}
.fs5_c00485{font-size:57.000000px;}
.fs1_c00485{font-size:60.000000px;}
.fs0_c00485{font-size:63.000000px;}
.fs2_c00485{font-size:66.000000px;}
.fs6_c00485{font-size:69.000000px;}
.fs8_c00485{font-size:72.000000px;}
.fs7_c00485{font-size:189.000000px;}
.y0_c00485{bottom:0.000000px;}
.y42_c00485{bottom:3.105000px;}
.y41_c00485{bottom:7.228371px;}
.y40_c00485{bottom:42.315000px;}
.y3e_c00485{bottom:54.915000px;}
.y37_c00485{bottom:58.065000px;}
.y3f_c00485{bottom:60.165000px;}
.y36_c00485{bottom:76.665000px;}
.y35_c00485{bottom:95.265000px;}
.y34_c00485{bottom:113.715000px;}
.y3d_c00485{bottom:115.515000px;}
.y33_c00485{bottom:132.315000px;}
.y3c_c00485{bottom:132.765000px;}
.y32_c00485{bottom:150.315000px;}
.y3b_c00485{bottom:152.265000px;}
.y31_c00485{bottom:167.865000px;}
.y3a_c00485{bottom:169.815000px;}
.y30_c00485{bottom:186.015000px;}
.y39_c00485{bottom:188.415000px;}
.y2f_c00485{bottom:204.915000px;}
.y38_c00485{bottom:223.515000px;}
.y2e_c00485{bottom:224.115000px;}
.y2d_c00485{bottom:241.665000px;}
.y2c_c00485{bottom:259.965000px;}
.y2b_c00485{bottom:278.115000px;}
.y26_c00485{bottom:295.665000px;}
.y2a_c00485{bottom:296.715000px;}
.y29_c00485{bottom:313.965000px;}
.y25_c00485{bottom:314.265000px;}
.y24_c00485{bottom:332.115000px;}
.y28_c00485{bottom:332.865000px;}
.y27_c00485{bottom:350.715000px;}
.y23_c00485{bottom:351.015000px;}
.y22_c00485{bottom:369.015000px;}
.y21_c00485{bottom:386.865000px;}
.y20_c00485{bottom:405.315000px;}
.y1b_c00485{bottom:423.315000px;}
.y1f_c00485{bottom:423.615000px;}
.y1a_c00485{bottom:441.765000px;}
.y1e_c00485{bottom:442.215000px;}
.y19_c00485{bottom:460.065000px;}
.y1d_c00485{bottom:460.665000px;}
.y18_c00485{bottom:479.265000px;}
.y17_c00485{bottom:496.815000px;}
.y1c_c00485{bottom:497.115000px;}
.y16_c00485{bottom:514.665000px;}
.y15_c00485{bottom:532.965000px;}
.yf_c00485{bottom:550.815000px;}
.y14_c00485{bottom:551.265000px;}
.y13_c00485{bottom:569.115000px;}
.ye_c00485{bottom:569.415000px;}
.y12_c00485{bottom:587.265000px;}
.yd_c00485{bottom:587.565000px;}
.yc_c00485{bottom:604.515000px;}
.y11_c00485{bottom:605.265000px;}
.y10_c00485{bottom:623.715000px;}
.yb_c00485{bottom:624.465000px;}
.ya_c00485{bottom:641.715000px;}
.y9_c00485{bottom:660.465000px;}
.y8_c00485{bottom:678.165000px;}
.y7_c00485{bottom:696.915000px;}
.y6_c00485{bottom:714.915000px;}
.y5_c00485{bottom:733.515000px;}
.y4_c00485{bottom:751.365000px;}
.y3_c00485{bottom:769.515000px;}
.y2_c00485{bottom:788.115000px;}
.y1_c00485{bottom:807.765000px;}
.ha_c00485{height:13.200074px;}
.hb_c00485{height:43.804688px;}
.h5_c00485{height:57.618000px;}
.h7_c00485{height:59.736000px;}
.h3_c00485{height:62.880000px;}
.h2_c00485{height:66.024000px;}
.h4_c00485{height:70.422000px;}
.h6_c00485{height:72.312000px;}
.h9_c00485{height:75.456000px;}
.h8_c00485{height:198.072000px;}
.h0_c00485{height:848.625000px;}
.h1_c00485{height:849.000000px;}
.w2_c00485{width:104.875500px;}
.w1_c00485{width:579.750000px;}
.w0_c00485{width:579.975000px;}
.x0_c00485{left:0.000000px;}
.x9_c00485{left:91.500000px;}
.xa_c00485{left:92.550000px;}
.x7_c00485{left:93.900000px;}
.x8_c00485{left:95.850000px;}
.x1_c00485{left:96.900000px;}
.x3_c00485{left:98.850000px;}
.x2_c00485{left:99.900000px;}
.x11_c00485{left:241.801758px;}
.xc_c00485{left:312.900000px;}
.x4_c00485{left:313.950000px;}
.x5_c00485{left:315.000000px;}
.x6_c00485{left:316.350000px;}
.xd_c00485{left:327.000000px;}
.xf_c00485{left:349.950000px;}
.xe_c00485{left:384.450000px;}
.xb_c00485{left:387.750000px;}
.x10_c00485{left:478.200000px;}
@media print{
.v0_c00485{vertical-align:0.000000pt;}
.v1_c00485{vertical-align:85.866667pt;}
.ls5_c00485{letter-spacing:-2.666667pt;}
.ls4_c00485{letter-spacing:0.000000pt;}
.ls2_c00485{letter-spacing:2.666667pt;}
.ls3_c00485{letter-spacing:4.000000pt;}
.ls1_c00485{letter-spacing:4.800000pt;}
.ls6_c00485{letter-spacing:5.333333pt;}
.ls0_c00485{letter-spacing:14.933333pt;}
.ws4_c00485{word-spacing:-42.168000pt;}
.ws2_c00485{word-spacing:-20.000000pt;}
.ws5_c00485{word-spacing:-16.064000pt;}
.ws1_c00485{word-spacing:-14.056000pt;}
.ws0_c00485{word-spacing:-12.746667pt;}
.ws3_c00485{word-spacing:-11.602667pt;}
.ws6_c00485{word-spacing:0.000000pt;}
._30_c00485{margin-left:-21.634667pt;}
._2_c00485{margin-left:-20.216000pt;}
._2f_c00485{margin-left:-9.000000pt;}
._31_c00485{margin-left:-7.450667pt;}
._1a_c00485{margin-left:-6.514667pt;}
._29_c00485{margin-left:-5.389333pt;}
._14_c00485{margin-left:-3.989333pt;}
._12_c00485{margin-left:-3.040000pt;}
._e_c00485{margin-left:-1.813333pt;}
._21_c00485{margin-left:-0.901333pt;}
._0_c00485{width:1.064000pt;}
._c_c00485{width:2.032000pt;}
._d_c00485{width:2.976000pt;}
._16_c00485{width:4.234667pt;}
._b_c00485{width:5.264000pt;}
._1c_c00485{width:6.293333pt;}
._4_c00485{width:7.224000pt;}
._5_c00485{width:8.232000pt;}
._6_c00485{width:9.184000pt;}
._9_c00485{width:10.584000pt;}
._8_c00485{width:11.480000pt;}
._7_c00485{width:12.824000pt;}
._1b_c00485{width:14.448000pt;}
._f_c00485{width:16.256000pt;}
._1f_c00485{width:18.824000pt;}
._20_c00485{width:21.109333pt;}
._18_c00485{width:22.133333pt;}
._22_c00485{width:23.072000pt;}
._2d_c00485{width:24.330667pt;}
._a_c00485{width:25.424000pt;}
._2b_c00485{width:26.357333pt;}
._26_c00485{width:27.552000pt;}
._2c_c00485{width:28.498667pt;}
._19_c00485{width:29.653333pt;}
._28_c00485{width:34.114667pt;}
._25_c00485{width:35.677333pt;}
._24_c00485{width:37.856000pt;}
._2a_c00485{width:39.066667pt;}
._2e_c00485{width:49.386667pt;}
._1_c00485{width:59.752000pt;}
._17_c00485{width:65.600000pt;}
._15_c00485{width:67.141333pt;}
._27_c00485{width:68.053333pt;}
._1d_c00485{width:69.048000pt;}
._23_c00485{width:70.736000pt;}
._13_c00485{width:71.626667pt;}
._11_c00485{width:73.496000pt;}
._10_c00485{width:74.453333pt;}
._1e_c00485{width:79.181333pt;}
._3_c00485{width:99.232000pt;}
.fs4_c00485{font-size:21.333333pt;}
.fs9_c00485{font-size:42.666667pt;}
.fs3_c00485{font-size:48.000000pt;}
.fs5_c00485{font-size:50.666667pt;}
.fs1_c00485{font-size:53.333333pt;}
.fs0_c00485{font-size:56.000000pt;}
.fs2_c00485{font-size:58.666667pt;}
.fs6_c00485{font-size:61.333333pt;}
.fs8_c00485{font-size:64.000000pt;}
.fs7_c00485{font-size:168.000000pt;}
.y0_c00485{bottom:0.000000pt;}
.y42_c00485{bottom:2.760000pt;}
.y41_c00485{bottom:6.425219pt;}
.y40_c00485{bottom:37.613333pt;}
.y3e_c00485{bottom:48.813333pt;}
.y37_c00485{bottom:51.613333pt;}
.y3f_c00485{bottom:53.480000pt;}
.y36_c00485{bottom:68.146667pt;}
.y35_c00485{bottom:84.680000pt;}
.y34_c00485{bottom:101.080000pt;}
.y3d_c00485{bottom:102.680000pt;}
.y33_c00485{bottom:117.613333pt;}
.y3c_c00485{bottom:118.013333pt;}
.y32_c00485{bottom:133.613333pt;}
.y3b_c00485{bottom:135.346667pt;}
.y31_c00485{bottom:149.213333pt;}
.y3a_c00485{bottom:150.946667pt;}
.y30_c00485{bottom:165.346667pt;}
.y39_c00485{bottom:167.480000pt;}
.y2f_c00485{bottom:182.146667pt;}
.y38_c00485{bottom:198.680000pt;}
.y2e_c00485{bottom:199.213333pt;}
.y2d_c00485{bottom:214.813333pt;}
.y2c_c00485{bottom:231.080000pt;}
.y2b_c00485{bottom:247.213333pt;}
.y26_c00485{bottom:262.813333pt;}
.y2a_c00485{bottom:263.746667pt;}
.y29_c00485{bottom:279.080000pt;}
.y25_c00485{bottom:279.346667pt;}
.y24_c00485{bottom:295.213333pt;}
.y28_c00485{bottom:295.880000pt;}
.y27_c00485{bottom:311.746667pt;}
.y23_c00485{bottom:312.013333pt;}
.y22_c00485{bottom:328.013333pt;}
.y21_c00485{bottom:343.880000pt;}
.y20_c00485{bottom:360.280000pt;}
.y1b_c00485{bottom:376.280000pt;}
.y1f_c00485{bottom:376.546667pt;}
.y1a_c00485{bottom:392.680000pt;}
.y1e_c00485{bottom:393.080000pt;}
.y19_c00485{bottom:408.946667pt;}
.y1d_c00485{bottom:409.480000pt;}
.y18_c00485{bottom:426.013333pt;}
.y17_c00485{bottom:441.613333pt;}
.y1c_c00485{bottom:441.880000pt;}
.y16_c00485{bottom:457.480000pt;}
.y15_c00485{bottom:473.746667pt;}
.yf_c00485{bottom:489.613333pt;}
.y14_c00485{bottom:490.013333pt;}
.y13_c00485{bottom:505.880000pt;}
.ye_c00485{bottom:506.146667pt;}
.y12_c00485{bottom:522.013333pt;}
.yd_c00485{bottom:522.280000pt;}
.yc_c00485{bottom:537.346667pt;}
.y11_c00485{bottom:538.013333pt;}
.y10_c00485{bottom:554.413333pt;}
.yb_c00485{bottom:555.080000pt;}
.ya_c00485{bottom:570.413333pt;}
.y9_c00485{bottom:587.080000pt;}
.y8_c00485{bottom:602.813333pt;}
.y7_c00485{bottom:619.480000pt;}
.y6_c00485{bottom:635.480000pt;}
.y5_c00485{bottom:652.013333pt;}
.y4_c00485{bottom:667.880000pt;}
.y3_c00485{bottom:684.013333pt;}
.y2_c00485{bottom:700.546667pt;}
.y1_c00485{bottom:718.013333pt;}
.ha_c00485{height:11.733399pt;}
.hb_c00485{height:38.937500pt;}
.h5_c00485{height:51.216000pt;}
.h7_c00485{height:53.098667pt;}
.h3_c00485{height:55.893333pt;}
.h2_c00485{height:58.688000pt;}
.h4_c00485{height:62.597333pt;}
.h6_c00485{height:64.277333pt;}
.h9_c00485{height:67.072000pt;}
.h8_c00485{height:176.064000pt;}
.h0_c00485{height:754.333333pt;}
.h1_c00485{height:754.666667pt;}
.w2_c00485{width:93.222667pt;}
.w1_c00485{width:515.333333pt;}
.w0_c00485{width:515.533333pt;}
.x0_c00485{left:0.000000pt;}
.x9_c00485{left:81.333333pt;}
.xa_c00485{left:82.266667pt;}
.x7_c00485{left:83.466667pt;}
.x8_c00485{left:85.200000pt;}
.x1_c00485{left:86.133333pt;}
.x3_c00485{left:87.866667pt;}
.x2_c00485{left:88.800000pt;}
.x11_c00485{left:214.934896pt;}
.xc_c00485{left:278.133333pt;}
.x4_c00485{left:279.066667pt;}
.x5_c00485{left:280.000000pt;}
.x6_c00485{left:281.200000pt;}
.xd_c00485{left:290.666667pt;}
.xf_c00485{left:311.066667pt;}
.xe_c00485{left:341.733333pt;}
.xb_c00485{left:344.666667pt;}
.x10_c00485{left:425.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_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_2e5da432f645a28c848fcb03.woff2')format("woff");}.ff1_c00486{font-family:ff1_c00486;line-height:1.437000;font-style:normal;font-weight:normal;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_b0a9a562feba981d978cfaf7.woff2')format("woff");}.ff2_c00486{font-family:ff2_c00486;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00486;src:url('chunks/assets/font_1859725f7f04a33102a75de4.woff2')format("woff");}.ff3_c00486{font-family:ff3_c00486;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00486;src:url('chunks/assets/font_c90093696e3c6a5d2858f3b1.woff2')format("woff");}.ff4_c00486{font-family:ff4_c00486;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00486;src:url('chunks/assets/font_29ec249fab939ff54b05de07.woff2')format("woff");}.ff5_c00486{font-family:ff5_c00486;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00486;src:url('chunks/assets/font_f6ee2d514860057d92790bf6.woff2')format("woff");}.ff6_c00486{font-family:ff6_c00486;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00486;src:url('chunks/assets/font_e02f3884cc24ab0e7db8bf43.woff2')format("woff");}.ff7_c00486{font-family:ff7_c00486;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00486;src:url('chunks/assets/font_986e5ed136f67b2a9836669e.woff2')format("woff");}.ff8_c00486{font-family:ff8_c00486;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00486;src:url('chunks/assets/font_60d2fa34e30339b3b29d253f.woff2')format("woff");}.ff9_c00486{font-family:ff9_c00486;line-height:1.568848;font-style:normal;font-weight: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_c00486;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ffa_c00486{font-family:ffa_c00486;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00486{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00486{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m4_c00486{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m3_c00486{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m1_c00486{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.v0_c00486{vertical-align:0.000000px;}
.ls3_c00486{letter-spacing:0.000000px;}
.ls4_c00486{letter-spacing:3.000000px;}
.ls1_c00486{letter-spacing:6.000000px;}
.ls0_c00486{letter-spacing:10.080000px;}
.ls2_c00486{letter-spacing:18.540000px;}
.sc__c00486{text-shadow:none;}
.sc0_c00486{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00486{-webkit-text-stroke:0px transparent;}
.sc0_c00486{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00486{word-spacing:-22.854000px;}
.ws7_c00486{word-spacing:-22.500000px;}
.ws3_c00486{word-spacing:-19.500000px;}
.ws5_c00486{word-spacing:-14.427000px;}
.ws4_c00486{word-spacing:-14.340000px;}
.ws0_c00486{word-spacing:-14.250000px;}
.ws6_c00486{word-spacing:-14.160000px;}
.ws1_c00486{word-spacing:-13.053000px;}
.ws9_c00486{word-spacing:-5.784000px;}
.wsa_c00486{word-spacing:0.000000px;}
.ws8_c00486{word-spacing:3.600000px;}
._16_c00486{margin-left:-20.760000px;}
._1b_c00486{margin-left:-12.774000px;}
._15_c00486{margin-left:-11.520000px;}
._1d_c00486{margin-left:-10.506000px;}
._b_c00486{margin-left:-9.198000px;}
._c_c00486{margin-left:-8.064000px;}
._14_c00486{margin-left:-6.360000px;}
._12_c00486{margin-left:-4.704000px;}
._10_c00486{margin-left:-3.021000px;}
._a_c00486{margin-left:-1.197000px;}
._8_c00486{width:1.008000px;}
._9_c00486{width:2.583000px;}
._2_c00486{width:3.654000px;}
._e_c00486{width:4.725000px;}
._1e_c00486{width:5.922000px;}
._6_c00486{width:6.993000px;}
._f_c00486{width:8.991000px;}
._17_c00486{width:10.560000px;}
._5_c00486{width:12.159000px;}
._1_c00486{width:13.671000px;}
._20_c00486{width:14.712000px;}
._1a_c00486{width:16.995000px;}
._21_c00486{width:18.255000px;}
._19_c00486{width:20.412000px;}
._7_c00486{width:21.609000px;}
._13_c00486{width:22.680000px;}
._3_c00486{width:24.444000px;}
._2b_c00486{width:26.286000px;}
._4_c00486{width:27.531000px;}
._2d_c00486{width:31.869000px;}
._26_c00486{width:34.119000px;}
._2a_c00486{width:35.295000px;}
._0_c00486{width:36.414000px;}
._1f_c00486{width:38.142000px;}
._27_c00486{width:40.992000px;}
._35_c00486{width:42.021000px;}
._28_c00486{width:50.820000px;}
._24_c00486{width:59.526000px;}
._1c_c00486{width:64.593000px;}
._3a_c00486{width:71.142000px;}
._22_c00486{width:74.580000px;}
._33_c00486{width:75.876000px;}
._25_c00486{width:77.400000px;}
._38_c00486{width:78.702000px;}
._31_c00486{width:79.854000px;}
._37_c00486{width:81.732000px;}
._36_c00486{width:85.956000px;}
._d_c00486{width:87.885000px;}
._34_c00486{width:89.769000px;}
._39_c00486{width:90.990000px;}
._32_c00486{width:93.894000px;}
._11_c00486{width:109.383000px;}
._30_c00486{width:125.832000px;}
._2c_c00486{width:140.385000px;}
._29_c00486{width:155.793000px;}
._2f_c00486{width:189.816000px;}
._23_c00486{width:338.544000px;}
._18_c00486{width:352.863000px;}
._2e_c00486{width:388.056000px;}
.fc2_c00486{color:transparent;}
.fc1_c00486{color:rgb(128,128,128);}
.fc0_c00486{color:rgb(0,0,0);}
.fs6_c00486{font-size:24.000000px;}
.fs3_c00486{font-size:39.000000px;}
.fs1_c00486{font-size:48.000000px;}
.fs2_c00486{font-size:57.000000px;}
.fs4_c00486{font-size:60.000000px;}
.fs0_c00486{font-size:63.000000px;}
.fs5_c00486{font-size:66.000000px;}
.y0_c00486{bottom:0.000000px;}
.y48_c00486{bottom:3.105000px;}
.y47_c00486{bottom:7.228363px;}
.y46_c00486{bottom:33.300000px;}
.y45_c00486{bottom:52.650000px;}
.y41_c00486{bottom:53.250000px;}
.y44_c00486{bottom:71.850000px;}
.y40_c00486{bottom:72.600000px;}
.y43_c00486{bottom:89.700000px;}
.y3f_c00486{bottom:91.050000px;}
.y42_c00486{bottom:108.300000px;}
.y3e_c00486{bottom:109.350000px;}
.y3d_c00486{bottom:127.050000px;}
.y3c_c00486{bottom:145.500000px;}
.y3b_c00486{bottom:163.950000px;}
.y3a_c00486{bottom:181.500000px;}
.y39_c00486{bottom:200.250000px;}
.y38_c00486{bottom:218.700000px;}
.y37_c00486{bottom:236.850000px;}
.y36_c00486{bottom:254.550000px;}
.y35_c00486{bottom:273.000000px;}
.y34_c00486{bottom:291.000000px;}
.y33_c00486{bottom:308.550000px;}
.y32_c00486{bottom:326.250000px;}
.y31_c00486{bottom:345.300000px;}
.y30_c00486{bottom:363.450000px;}
.y2f_c00486{bottom:379.050000px;}
.y2e_c00486{bottom:381.000000px;}
.y18_c00486{bottom:382.050000px;}
.y2d_c00486{bottom:399.150000px;}
.y17_c00486{bottom:399.900000px;}
.y2c_c00486{bottom:417.450000px;}
.y16_c00486{bottom:418.500000px;}
.y2b_c00486{bottom:435.750000px;}
.y15_c00486{bottom:436.050000px;}
.y2a_c00486{bottom:453.900000px;}
.y14_c00486{bottom:454.500000px;}
.y29_c00486{bottom:472.200000px;}
.y13_c00486{bottom:472.500000px;}
.y12_c00486{bottom:490.650000px;}
.y11_c00486{bottom:508.500000px;}
.y10_c00486{bottom:525.750000px;}
.y28_c00486{bottom:526.500000px;}
.yf_c00486{bottom:543.300000px;}
.y27_c00486{bottom:544.950000px;}
.ye_c00486{bottom:561.150000px;}
.y26_c00486{bottom:561.900000px;}
.yd_c00486{bottom:579.750000px;}
.y25_c00486{bottom:580.500000px;}
.yc_c00486{bottom:597.600000px;}
.y24_c00486{bottom:598.350000px;}
.y23_c00486{bottom:615.900000px;}
.yb_c00486{bottom:616.200000px;}
.y22_c00486{bottom:633.150000px;}
.ya_c00486{bottom:633.750000px;}
.y9_c00486{bottom:652.050000px;}
.y21_c00486{bottom:652.650000px;}
.y8_c00486{bottom:669.900000px;}
.y20_c00486{bottom:670.200000px;}
.y7_c00486{bottom:687.750000px;}
.y1f_c00486{bottom:688.800000px;}
.y6_c00486{bottom:706.350000px;}
.y1e_c00486{bottom:706.950000px;}
.y5_c00486{bottom:724.200000px;}
.y1d_c00486{bottom:724.950000px;}
.y4_c00486{bottom:742.500000px;}
.y1c_c00486{bottom:743.100000px;}
.y3_c00486{bottom:760.350000px;}
.y1b_c00486{bottom:761.100000px;}
.y2_c00486{bottom:778.650000px;}
.y1a_c00486{bottom:779.850000px;}
.y19_c00486{bottom:797.550000px;}
.y1_c00486{bottom:800.250000px;}
.h8_c00486{height:13.200074px;}
.h7_c00486{height:30.386719px;}
.h9_c00486{height:43.804688px;}
.h3_c00486{height:59.736000px;}
.h2_c00486{height:61.788000px;}
.h5_c00486{height:62.880000px;}
.h1_c00486{height:66.024000px;}
.h4_c00486{height:70.422000px;}
.h6_c00486{height:71.544000px;}
.h0_c00486{height:843.750000px;}
.w2_c00486{width:104.875500px;}
.w1_c00486{width:579.750000px;}
.w0_c00486{width:579.975000px;}
.x0_c00486{left:0.000000px;}
.x4_c00486{left:70.500000px;}
.x2_c00486{left:71.850000px;}
.x6_c00486{left:73.200000px;}
.x5_c00486{left:75.600000px;}
.x14_c00486{left:76.950000px;}
.x15_c00486{left:78.300000px;}
.x16_c00486{left:79.650000px;}
.x17_c00486{left:80.700000px;}
.x18_c00486{left:82.050000px;}
.x3_c00486{left:94.200000px;}
.x1_c00486{left:200.700000px;}
.x1c_c00486{left:241.801758px;}
.xd_c00486{left:246.450000px;}
.xe_c00486{left:267.000000px;}
.xa_c00486{left:287.550000px;}
.x9_c00486{left:288.600000px;}
.xb_c00486{left:289.800000px;}
.xc_c00486{left:291.150000px;}
.x19_c00486{left:297.000000px;}
.x1a_c00486{left:298.050000px;}
.xf_c00486{left:359.400000px;}
.x10_c00486{left:361.350000px;}
.x11_c00486{left:393.000000px;}
.x12_c00486{left:404.700000px;}
.x8_c00486{left:415.050000px;}
.x13_c00486{left:420.450000px;}
.x7_c00486{left:451.500000px;}
.x1b_c00486{left:474.150000px;}
@media print{
.v0_c00486{vertical-align:0.000000pt;}
.ls3_c00486{letter-spacing:0.000000pt;}
.ls4_c00486{letter-spacing:2.666667pt;}
.ls1_c00486{letter-spacing:5.333333pt;}
.ls0_c00486{letter-spacing:8.960000pt;}
.ls2_c00486{letter-spacing:16.480000pt;}
.ws2_c00486{word-spacing:-20.314667pt;}
.ws7_c00486{word-spacing:-20.000000pt;}
.ws3_c00486{word-spacing:-17.333333pt;}
.ws5_c00486{word-spacing:-12.824000pt;}
.ws4_c00486{word-spacing:-12.746667pt;}
.ws0_c00486{word-spacing:-12.666667pt;}
.ws6_c00486{word-spacing:-12.586667pt;}
.ws1_c00486{word-spacing:-11.602667pt;}
.ws9_c00486{word-spacing:-5.141333pt;}
.wsa_c00486{word-spacing:0.000000pt;}
.ws8_c00486{word-spacing:3.200000pt;}
._16_c00486{margin-left:-18.453333pt;}
._1b_c00486{margin-left:-11.354667pt;}
._15_c00486{margin-left:-10.240000pt;}
._1d_c00486{margin-left:-9.338667pt;}
._b_c00486{margin-left:-8.176000pt;}
._c_c00486{margin-left:-7.168000pt;}
._14_c00486{margin-left:-5.653333pt;}
._12_c00486{margin-left:-4.181333pt;}
._10_c00486{margin-left:-2.685333pt;}
._a_c00486{margin-left:-1.064000pt;}
._8_c00486{width:0.896000pt;}
._9_c00486{width:2.296000pt;}
._2_c00486{width:3.248000pt;}
._e_c00486{width:4.200000pt;}
._1e_c00486{width:5.264000pt;}
._6_c00486{width:6.216000pt;}
._f_c00486{width:7.992000pt;}
._17_c00486{width:9.386667pt;}
._5_c00486{width:10.808000pt;}
._1_c00486{width:12.152000pt;}
._20_c00486{width:13.077333pt;}
._1a_c00486{width:15.106667pt;}
._21_c00486{width:16.226667pt;}
._19_c00486{width:18.144000pt;}
._7_c00486{width:19.208000pt;}
._13_c00486{width:20.160000pt;}
._3_c00486{width:21.728000pt;}
._2b_c00486{width:23.365333pt;}
._4_c00486{width:24.472000pt;}
._2d_c00486{width:28.328000pt;}
._26_c00486{width:30.328000pt;}
._2a_c00486{width:31.373333pt;}
._0_c00486{width:32.368000pt;}
._1f_c00486{width:33.904000pt;}
._27_c00486{width:36.437333pt;}
._35_c00486{width:37.352000pt;}
._28_c00486{width:45.173333pt;}
._24_c00486{width:52.912000pt;}
._1c_c00486{width:57.416000pt;}
._3a_c00486{width:63.237333pt;}
._22_c00486{width:66.293333pt;}
._33_c00486{width:67.445333pt;}
._25_c00486{width:68.800000pt;}
._38_c00486{width:69.957333pt;}
._31_c00486{width:70.981333pt;}
._37_c00486{width:72.650667pt;}
._36_c00486{width:76.405333pt;}
._d_c00486{width:78.120000pt;}
._34_c00486{width:79.794667pt;}
._39_c00486{width:80.880000pt;}
._32_c00486{width:83.461333pt;}
._11_c00486{width:97.229333pt;}
._30_c00486{width:111.850667pt;}
._2c_c00486{width:124.786667pt;}
._29_c00486{width:138.482667pt;}
._2f_c00486{width:168.725333pt;}
._23_c00486{width:300.928000pt;}
._18_c00486{width:313.656000pt;}
._2e_c00486{width:344.938667pt;}
.fs6_c00486{font-size:21.333333pt;}
.fs3_c00486{font-size:34.666667pt;}
.fs1_c00486{font-size:42.666667pt;}
.fs2_c00486{font-size:50.666667pt;}
.fs4_c00486{font-size:53.333333pt;}
.fs0_c00486{font-size:56.000000pt;}
.fs5_c00486{font-size:58.666667pt;}
.y0_c00486{bottom:0.000000pt;}
.y48_c00486{bottom:2.760000pt;}
.y47_c00486{bottom:6.425212pt;}
.y46_c00486{bottom:29.600000pt;}
.y45_c00486{bottom:46.800000pt;}
.y41_c00486{bottom:47.333333pt;}
.y44_c00486{bottom:63.866667pt;}
.y40_c00486{bottom:64.533333pt;}
.y43_c00486{bottom:79.733333pt;}
.y3f_c00486{bottom:80.933333pt;}
.y42_c00486{bottom:96.266667pt;}
.y3e_c00486{bottom:97.200000pt;}
.y3d_c00486{bottom:112.933333pt;}
.y3c_c00486{bottom:129.333333pt;}
.y3b_c00486{bottom:145.733333pt;}
.y3a_c00486{bottom:161.333333pt;}
.y39_c00486{bottom:178.000000pt;}
.y38_c00486{bottom:194.400000pt;}
.y37_c00486{bottom:210.533333pt;}
.y36_c00486{bottom:226.266667pt;}
.y35_c00486{bottom:242.666667pt;}
.y34_c00486{bottom:258.666667pt;}
.y33_c00486{bottom:274.266667pt;}
.y32_c00486{bottom:290.000000pt;}
.y31_c00486{bottom:306.933333pt;}
.y30_c00486{bottom:323.066667pt;}
.y2f_c00486{bottom:336.933333pt;}
.y2e_c00486{bottom:338.666667pt;}
.y18_c00486{bottom:339.600000pt;}
.y2d_c00486{bottom:354.800000pt;}
.y17_c00486{bottom:355.466667pt;}
.y2c_c00486{bottom:371.066667pt;}
.y16_c00486{bottom:372.000000pt;}
.y2b_c00486{bottom:387.333333pt;}
.y15_c00486{bottom:387.600000pt;}
.y2a_c00486{bottom:403.466667pt;}
.y14_c00486{bottom:404.000000pt;}
.y29_c00486{bottom:419.733333pt;}
.y13_c00486{bottom:420.000000pt;}
.y12_c00486{bottom:436.133333pt;}
.y11_c00486{bottom:452.000000pt;}
.y10_c00486{bottom:467.333333pt;}
.y28_c00486{bottom:468.000000pt;}
.yf_c00486{bottom:482.933333pt;}
.y27_c00486{bottom:484.400000pt;}
.ye_c00486{bottom:498.800000pt;}
.y26_c00486{bottom:499.466667pt;}
.yd_c00486{bottom:515.333333pt;}
.y25_c00486{bottom:516.000000pt;}
.yc_c00486{bottom:531.200000pt;}
.y24_c00486{bottom:531.866667pt;}
.y23_c00486{bottom:547.466667pt;}
.yb_c00486{bottom:547.733333pt;}
.y22_c00486{bottom:562.800000pt;}
.ya_c00486{bottom:563.333333pt;}
.y9_c00486{bottom:579.600000pt;}
.y21_c00486{bottom:580.133333pt;}
.y8_c00486{bottom:595.466667pt;}
.y20_c00486{bottom:595.733333pt;}
.y7_c00486{bottom:611.333333pt;}
.y1f_c00486{bottom:612.266667pt;}
.y6_c00486{bottom:627.866667pt;}
.y1e_c00486{bottom:628.400000pt;}
.y5_c00486{bottom:643.733333pt;}
.y1d_c00486{bottom:644.400000pt;}
.y4_c00486{bottom:660.000000pt;}
.y1c_c00486{bottom:660.533333pt;}
.y3_c00486{bottom:675.866667pt;}
.y1b_c00486{bottom:676.533333pt;}
.y2_c00486{bottom:692.133333pt;}
.y1a_c00486{bottom:693.200000pt;}
.y19_c00486{bottom:708.933333pt;}
.y1_c00486{bottom:711.333333pt;}
.h8_c00486{height:11.733399pt;}
.h7_c00486{height:27.010417pt;}
.h9_c00486{height:38.937500pt;}
.h3_c00486{height:53.098667pt;}
.h2_c00486{height:54.922667pt;}
.h5_c00486{height:55.893333pt;}
.h1_c00486{height:58.688000pt;}
.h4_c00486{height:62.597333pt;}
.h6_c00486{height:63.594667pt;}
.h0_c00486{height:750.000000pt;}
.w2_c00486{width:93.222667pt;}
.w1_c00486{width:515.333333pt;}
.w0_c00486{width:515.533333pt;}
.x0_c00486{left:0.000000pt;}
.x4_c00486{left:62.666667pt;}
.x2_c00486{left:63.866667pt;}
.x6_c00486{left:65.066667pt;}
.x5_c00486{left:67.200000pt;}
.x14_c00486{left:68.400000pt;}
.x15_c00486{left:69.600000pt;}
.x16_c00486{left:70.800000pt;}
.x17_c00486{left:71.733333pt;}
.x18_c00486{left:72.933333pt;}
.x3_c00486{left:83.733333pt;}
.x1_c00486{left:178.400000pt;}
.x1c_c00486{left:214.934896pt;}
.xd_c00486{left:219.066667pt;}
.xe_c00486{left:237.333333pt;}
.xa_c00486{left:255.600000pt;}
.x9_c00486{left:256.533333pt;}
.xb_c00486{left:257.600000pt;}
.xc_c00486{left:258.800000pt;}
.x19_c00486{left:264.000000pt;}
.x1a_c00486{left:264.933333pt;}
.xf_c00486{left:319.466667pt;}
.x10_c00486{left:321.200000pt;}
.x11_c00486{left:349.333333pt;}
.x12_c00486{left:359.733333pt;}
.x8_c00486{left:368.933333pt;}
.x13_c00486{left:373.733333pt;}
.x7_c00486{left:401.333333pt;}
.x1b_c00486{left:421.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_02bafc2f8c5286b5702dc200.woff2')format("woff");}.ff1_c00487{font-family:ff1_c00487;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00487;src:url('chunks/assets/font_f06150922a04948698d28fa1.woff2')format("woff");}.ff2_c00487{font-family:ff2_c00487;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00487;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff3_c00487{font-family:ff3_c00487;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00487{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00487{vertical-align:0.000000px;}
.ls0_c00487{letter-spacing:0.000000px;}
.sc__c00487{text-shadow:none;}
.sc0_c00487{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00487{-webkit-text-stroke:0px transparent;}
.sc0_c00487{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00487{word-spacing:-50.022000px;}
.ws1_c00487{word-spacing:-15.813000px;}
.ws2_c00487{word-spacing:0.000000px;}
._1e_c00487{margin-left:-10.521000px;}
._13_c00487{margin-left:-7.245000px;}
._1a_c00487{margin-left:-6.174000px;}
._17_c00487{margin-left:-5.103000px;}
._0_c00487{margin-left:-3.150000px;}
._e_c00487{margin-left:-1.638000px;}
._9_c00487{width:1.386000px;}
._1_c00487{width:2.457000px;}
._c_c00487{width:3.717000px;}
._b_c00487{width:4.914000px;}
._2_c00487{width:6.174000px;}
._4_c00487{width:8.064000px;}
._5_c00487{width:9.261000px;}
._10_c00487{width:10.521000px;}
._6_c00487{width:12.033000px;}
._15_c00487{width:13.041000px;}
._8_c00487{width:14.112000px;}
._18_c00487{width:17.262000px;}
._a_c00487{width:18.648000px;}
._11_c00487{width:19.908000px;}
._16_c00487{width:22.113000px;}
._14_c00487{width:23.121000px;}
._f_c00487{width:24.759000px;}
._19_c00487{width:26.019000px;}
._1d_c00487{width:27.531000px;}
._12_c00487{width:30.555000px;}
._7_c00487{width:32.382000px;}
._23_c00487{width:34.650000px;}
._20_c00487{width:37.170000px;}
._22_c00487{width:38.808000px;}
._21_c00487{width:39.879000px;}
._1c_c00487{width:41.391000px;}
._1f_c00487{width:48.510000px;}
._1b_c00487{width:50.400000px;}
._d_c00487{width:86.373000px;}
._3_c00487{width:208.467000px;}
.fc2_c00487{color:transparent;}
.fc1_c00487{color:rgb(128,128,128);}
.fc0_c00487{color:rgb(0,0,0);}
.fs2_c00487{font-size:48.000000px;}
.fs1_c00487{font-size:60.000000px;}
.fs0_c00487{font-size:63.000000px;}
.y0_c00487{bottom:0.000000px;}
.y55_c00487{bottom:3.105000px;}
.y54_c00487{bottom:7.228371px;}
.y53_c00487{bottom:38.865000px;}
.y2a_c00487{bottom:53.715000px;}
.y52_c00487{bottom:56.715000px;}
.y29_c00487{bottom:73.365000px;}
.y51_c00487{bottom:75.315000px;}
.y28_c00487{bottom:90.915000px;}
.y50_c00487{bottom:94.215000px;}
.y27_c00487{bottom:109.365000px;}
.y4f_c00487{bottom:111.765000px;}
.y26_c00487{bottom:127.965000px;}
.y4e_c00487{bottom:130.065000px;}
.y25_c00487{bottom:146.565000px;}
.y4d_c00487{bottom:148.815000px;}
.y24_c00487{bottom:164.415000px;}
.y4c_c00487{bottom:167.415000px;}
.y23_c00487{bottom:182.565000px;}
.y4b_c00487{bottom:185.265000px;}
.y22_c00487{bottom:200.865000px;}
.y4a_c00487{bottom:203.265000px;}
.y21_c00487{bottom:219.165000px;}
.y49_c00487{bottom:221.715000px;}
.y20_c00487{bottom:237.015000px;}
.y48_c00487{bottom:239.415000px;}
.y1f_c00487{bottom:255.615000px;}
.y47_c00487{bottom:257.865000px;}
.y1e_c00487{bottom:273.765000px;}
.y46_c00487{bottom:276.165000px;}
.y1d_c00487{bottom:291.015000px;}
.y45_c00487{bottom:293.715000px;}
.y1c_c00487{bottom:309.465000px;}
.y44_c00487{bottom:310.965000px;}
.y1b_c00487{bottom:327.465000px;}
.y43_c00487{bottom:329.415000px;}
.y1a_c00487{bottom:345.615000px;}
.y42_c00487{bottom:347.715000px;}
.y19_c00487{bottom:364.215000px;}
.y41_c00487{bottom:365.565000px;}
.y18_c00487{bottom:382.365000px;}
.y40_c00487{bottom:383.715000px;}
.y17_c00487{bottom:399.915000px;}
.y3f_c00487{bottom:401.715000px;}
.y16_c00487{bottom:418.215000px;}
.y3e_c00487{bottom:420.315000px;}
.y15_c00487{bottom:436.065000px;}
.y3d_c00487{bottom:438.465000px;}
.y14_c00487{bottom:454.065000px;}
.y3c_c00487{bottom:456.315000px;}
.y13_c00487{bottom:472.215000px;}
.y3b_c00487{bottom:474.615000px;}
.y12_c00487{bottom:491.115000px;}
.y3a_c00487{bottom:492.165000px;}
.y11_c00487{bottom:508.965000px;}
.y39_c00487{bottom:510.015000px;}
.y10_c00487{bottom:526.815000px;}
.y38_c00487{bottom:528.915000px;}
.yf_c00487{bottom:543.765000px;}
.y37_c00487{bottom:546.165000px;}
.ye_c00487{bottom:562.665000px;}
.y36_c00487{bottom:564.615000px;}
.yd_c00487{bottom:580.215000px;}
.y35_c00487{bottom:582.165000px;}
.yc_c00487{bottom:598.515000px;}
.y34_c00487{bottom:600.465000px;}
.yb_c00487{bottom:616.665000px;}
.y33_c00487{bottom:618.615000px;}
.ya_c00487{bottom:634.815000px;}
.y32_c00487{bottom:636.615000px;}
.y9_c00487{bottom:652.815000px;}
.y31_c00487{bottom:654.765000px;}
.y8_c00487{bottom:671.715000px;}
.y30_c00487{bottom:672.765000px;}
.y7_c00487{bottom:688.965000px;}
.y2f_c00487{bottom:691.215000px;}
.y6_c00487{bottom:707.715000px;}
.y2e_c00487{bottom:709.515000px;}
.y5_c00487{bottom:726.015000px;}
.y2d_c00487{bottom:727.365000px;}
.y4_c00487{bottom:743.865000px;}
.y2c_c00487{bottom:745.965000px;}
.y3_c00487{bottom:762.765000px;}
.y2b_c00487{bottom:764.115000px;}
.y2_c00487{bottom:781.665000px;}
.y1_c00487{bottom:800.565000px;}
.h3_c00487{height:13.200074px;}
.h4_c00487{height:43.804688px;}
.h2_c00487{height:66.024000px;}
.h0_c00487{height:848.625000px;}
.h1_c00487{height:849.000000px;}
.w2_c00487{width:104.875500px;}
.w1_c00487{width:579.750000px;}
.w0_c00487{width:579.975000px;}
.x0_c00487{left:0.000000px;}
.x7_c00487{left:93.450000px;}
.x6_c00487{left:94.800000px;}
.x5_c00487{left:96.600000px;}
.x4_c00487{left:98.100000px;}
.x3_c00487{left:99.600000px;}
.x2_c00487{left:100.800000px;}
.x1_c00487{left:102.300000px;}
.x10_c00487{left:241.801758px;}
.xe_c00487{left:314.100000px;}
.xd_c00487{left:315.150000px;}
.xc_c00487{left:316.200000px;}
.xb_c00487{left:317.550000px;}
.xa_c00487{left:318.600000px;}
.x9_c00487{left:319.650000px;}
.x8_c00487{left:321.300000px;}
.xf_c00487{left:490.950000px;}
@media print{
.v0_c00487{vertical-align:0.000000pt;}
.ls0_c00487{letter-spacing:0.000000pt;}
.ws0_c00487{word-spacing:-44.464000pt;}
.ws1_c00487{word-spacing:-14.056000pt;}
.ws2_c00487{word-spacing:0.000000pt;}
._1e_c00487{margin-left:-9.352000pt;}
._13_c00487{margin-left:-6.440000pt;}
._1a_c00487{margin-left:-5.488000pt;}
._17_c00487{margin-left:-4.536000pt;}
._0_c00487{margin-left:-2.800000pt;}
._e_c00487{margin-left:-1.456000pt;}
._9_c00487{width:1.232000pt;}
._1_c00487{width:2.184000pt;}
._c_c00487{width:3.304000pt;}
._b_c00487{width:4.368000pt;}
._2_c00487{width:5.488000pt;}
._4_c00487{width:7.168000pt;}
._5_c00487{width:8.232000pt;}
._10_c00487{width:9.352000pt;}
._6_c00487{width:10.696000pt;}
._15_c00487{width:11.592000pt;}
._8_c00487{width:12.544000pt;}
._18_c00487{width:15.344000pt;}
._a_c00487{width:16.576000pt;}
._11_c00487{width:17.696000pt;}
._16_c00487{width:19.656000pt;}
._14_c00487{width:20.552000pt;}
._f_c00487{width:22.008000pt;}
._19_c00487{width:23.128000pt;}
._1d_c00487{width:24.472000pt;}
._12_c00487{width:27.160000pt;}
._7_c00487{width:28.784000pt;}
._23_c00487{width:30.800000pt;}
._20_c00487{width:33.040000pt;}
._22_c00487{width:34.496000pt;}
._21_c00487{width:35.448000pt;}
._1c_c00487{width:36.792000pt;}
._1f_c00487{width:43.120000pt;}
._1b_c00487{width:44.800000pt;}
._d_c00487{width:76.776000pt;}
._3_c00487{width:185.304000pt;}
.fs2_c00487{font-size:42.666667pt;}
.fs1_c00487{font-size:53.333333pt;}
.fs0_c00487{font-size:56.000000pt;}
.y0_c00487{bottom:0.000000pt;}
.y55_c00487{bottom:2.760000pt;}
.y54_c00487{bottom:6.425219pt;}
.y53_c00487{bottom:34.546667pt;}
.y2a_c00487{bottom:47.746667pt;}
.y52_c00487{bottom:50.413333pt;}
.y29_c00487{bottom:65.213333pt;}
.y51_c00487{bottom:66.946667pt;}
.y28_c00487{bottom:80.813333pt;}
.y50_c00487{bottom:83.746667pt;}
.y27_c00487{bottom:97.213333pt;}
.y4f_c00487{bottom:99.346667pt;}
.y26_c00487{bottom:113.746667pt;}
.y4e_c00487{bottom:115.613333pt;}
.y25_c00487{bottom:130.280000pt;}
.y4d_c00487{bottom:132.280000pt;}
.y24_c00487{bottom:146.146667pt;}
.y4c_c00487{bottom:148.813333pt;}
.y23_c00487{bottom:162.280000pt;}
.y4b_c00487{bottom:164.680000pt;}
.y22_c00487{bottom:178.546667pt;}
.y4a_c00487{bottom:180.680000pt;}
.y21_c00487{bottom:194.813333pt;}
.y49_c00487{bottom:197.080000pt;}
.y20_c00487{bottom:210.680000pt;}
.y48_c00487{bottom:212.813333pt;}
.y1f_c00487{bottom:227.213333pt;}
.y47_c00487{bottom:229.213333pt;}
.y1e_c00487{bottom:243.346667pt;}
.y46_c00487{bottom:245.480000pt;}
.y1d_c00487{bottom:258.680000pt;}
.y45_c00487{bottom:261.080000pt;}
.y1c_c00487{bottom:275.080000pt;}
.y44_c00487{bottom:276.413333pt;}
.y1b_c00487{bottom:291.080000pt;}
.y43_c00487{bottom:292.813333pt;}
.y1a_c00487{bottom:307.213333pt;}
.y42_c00487{bottom:309.080000pt;}
.y19_c00487{bottom:323.746667pt;}
.y41_c00487{bottom:324.946667pt;}
.y18_c00487{bottom:339.880000pt;}
.y40_c00487{bottom:341.080000pt;}
.y17_c00487{bottom:355.480000pt;}
.y3f_c00487{bottom:357.080000pt;}
.y16_c00487{bottom:371.746667pt;}
.y3e_c00487{bottom:373.613333pt;}
.y15_c00487{bottom:387.613333pt;}
.y3d_c00487{bottom:389.746667pt;}
.y14_c00487{bottom:403.613333pt;}
.y3c_c00487{bottom:405.613333pt;}
.y13_c00487{bottom:419.746667pt;}
.y3b_c00487{bottom:421.880000pt;}
.y12_c00487{bottom:436.546667pt;}
.y3a_c00487{bottom:437.480000pt;}
.y11_c00487{bottom:452.413333pt;}
.y39_c00487{bottom:453.346667pt;}
.y10_c00487{bottom:468.280000pt;}
.y38_c00487{bottom:470.146667pt;}
.yf_c00487{bottom:483.346667pt;}
.y37_c00487{bottom:485.480000pt;}
.ye_c00487{bottom:500.146667pt;}
.y36_c00487{bottom:501.880000pt;}
.yd_c00487{bottom:515.746667pt;}
.y35_c00487{bottom:517.480000pt;}
.yc_c00487{bottom:532.013333pt;}
.y34_c00487{bottom:533.746667pt;}
.yb_c00487{bottom:548.146667pt;}
.y33_c00487{bottom:549.880000pt;}
.ya_c00487{bottom:564.280000pt;}
.y32_c00487{bottom:565.880000pt;}
.y9_c00487{bottom:580.280000pt;}
.y31_c00487{bottom:582.013333pt;}
.y8_c00487{bottom:597.080000pt;}
.y30_c00487{bottom:598.013333pt;}
.y7_c00487{bottom:612.413333pt;}
.y2f_c00487{bottom:614.413333pt;}
.y6_c00487{bottom:629.080000pt;}
.y2e_c00487{bottom:630.680000pt;}
.y5_c00487{bottom:645.346667pt;}
.y2d_c00487{bottom:646.546667pt;}
.y4_c00487{bottom:661.213333pt;}
.y2c_c00487{bottom:663.080000pt;}
.y3_c00487{bottom:678.013333pt;}
.y2b_c00487{bottom:679.213333pt;}
.y2_c00487{bottom:694.813333pt;}
.y1_c00487{bottom:711.613333pt;}
.h3_c00487{height:11.733399pt;}
.h4_c00487{height:38.937500pt;}
.h2_c00487{height:58.688000pt;}
.h0_c00487{height:754.333333pt;}
.h1_c00487{height:754.666667pt;}
.w2_c00487{width:93.222667pt;}
.w1_c00487{width:515.333333pt;}
.w0_c00487{width:515.533333pt;}
.x0_c00487{left:0.000000pt;}
.x7_c00487{left:83.066667pt;}
.x6_c00487{left:84.266667pt;}
.x5_c00487{left:85.866667pt;}
.x4_c00487{left:87.200000pt;}
.x3_c00487{left:88.533333pt;}
.x2_c00487{left:89.600000pt;}
.x1_c00487{left:90.933333pt;}
.x10_c00487{left:214.934896pt;}
.xe_c00487{left:279.200000pt;}
.xd_c00487{left:280.133333pt;}
.xc_c00487{left:281.066667pt;}
.xb_c00487{left:282.266667pt;}
.xa_c00487{left:283.200000pt;}
.x9_c00487{left:284.133333pt;}
.x8_c00487{left:285.600000pt;}
.xf_c00487{left:436.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_948b35deae715f4485786737.woff2')format("woff");}.ff1_c00488{font-family:ff1_c00488;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00488;src:url('chunks/assets/font_7f9e48bc55e9121f739343b2.woff2')format("woff");}.ff2_c00488{font-family:ff2_c00488;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00488;src:url('chunks/assets/font_745a57af610f1e7bac236960.woff2')format("woff");}.ff3_c00488{font-family:ff3_c00488;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00488;src:url('chunks/assets/font_6c8d72c1170b8240237af88c.woff2')format("woff");}.ff4_c00488{font-family:ff4_c00488;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00488;src:url('chunks/assets/font_5c525bcc1d70fbb18f4315aa.woff2')format("woff");}.ff5_c00488{font-family:ff5_c00488;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00488;src:url('chunks/assets/font_128095b086282ce9969b6a78.woff2')format("woff");}.ff6_c00488{font-family:ff6_c00488;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00488;src:url('chunks/assets/font_b4f766e5c6bbca93b461a895.woff2')format("woff");}.ff7_c00488{font-family:ff7_c00488;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00488;src:url('chunks/assets/font_6d2a55614c30cceb67d16edd.woff2')format("woff");}.ff8_c00488{font-family:ff8_c00488;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00488;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff9_c00488{font-family:ff9_c00488;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00488{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00488{vertical-align:0.000000px;}
.ls5_c00488{letter-spacing:0.000000px;}
.ls8_c00488{letter-spacing:3.000000px;}
.ls7_c00488{letter-spacing:6.000000px;}
.ls1_c00488{letter-spacing:8.346000px;}
.ls6_c00488{letter-spacing:9.000000px;}
.ls3_c00488{letter-spacing:14.493000px;}
.ls9_c00488{letter-spacing:15.000000px;}
.ls0_c00488{letter-spacing:19.746000px;}
.ls2_c00488{letter-spacing:24.894000px;}
.ls4_c00488{letter-spacing:27.693000px;}
.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;}
}
.ws2_c00488{word-spacing:-37.746000px;}
.ws7_c00488{word-spacing:-30.060000px;}
.ws5_c00488{word-spacing:-22.074000px;}
.ws8_c00488{word-spacing:-16.872000px;}
.ws6_c00488{word-spacing:-14.340000px;}
.ws4_c00488{word-spacing:-14.160000px;}
.ws0_c00488{word-spacing:-13.650000px;}
.ws1_c00488{word-spacing:-13.554000px;}
.ws3_c00488{word-spacing:-13.053000px;}
.ws9_c00488{word-spacing:0.000000px;}
._11_c00488{margin-left:-16.182000px;}
._28_c00488{margin-left:-14.340000px;}
._14_c00488{margin-left:-12.288000px;}
._1b_c00488{margin-left:-10.740000px;}
._12_c00488{margin-left:-9.234000px;}
._17_c00488{margin-left:-7.869000px;}
._16_c00488{margin-left:-6.672000px;}
._c_c00488{margin-left:-5.478000px;}
._d_c00488{margin-left:-3.618000px;}
._e_c00488{margin-left:-2.160000px;}
._13_c00488{margin-left:-1.137000px;}
._15_c00488{width:1.560000px;}
._6_c00488{width:2.700000px;}
._5_c00488{width:4.212000px;}
._7_c00488{width:5.616000px;}
._8_c00488{width:6.858000px;}
._a_c00488{width:8.016000px;}
._f_c00488{width:9.114000px;}
._b_c00488{width:10.812000px;}
._1_c00488{width:11.880000px;}
._1e_c00488{width:13.182000px;}
._19_c00488{width:14.193000px;}
._0_c00488{width:15.600000px;}
._3_c00488{width:17.760000px;}
._1c_c00488{width:18.822000px;}
._4_c00488{width:20.340000px;}
._1f_c00488{width:21.855000px;}
._9_c00488{width:22.950000px;}
._1d_c00488{width:25.218000px;}
._2e_c00488{width:26.340000px;}
._2b_c00488{width:27.645000px;}
._10_c00488{width:28.938000px;}
._20_c00488{width:30.600000px;}
._24_c00488{width:32.163000px;}
._2c_c00488{width:34.020000px;}
._2f_c00488{width:35.844000px;}
._29_c00488{width:43.002000px;}
._27_c00488{width:48.480000px;}
._2d_c00488{width:50.118000px;}
._2_c00488{width:54.660000px;}
._22_c00488{width:71.700000px;}
._21_c00488{width:88.218000px;}
._25_c00488{width:94.500000px;}
._1a_c00488{width:128.040000px;}
._2a_c00488{width:147.624000px;}
._23_c00488{width:247.197000px;}
._18_c00488{width:325.338000px;}
._26_c00488{width:326.760000px;}
.fc2_c00488{color:transparent;}
.fc1_c00488{color:rgb(128,128,128);}
.fc0_c00488{color:rgb(0,0,0);}
.fs2_c00488{font-size:39.000000px;}
.fs5_c00488{font-size:48.000000px;}
.fs1_c00488{font-size:54.000000px;}
.fs3_c00488{font-size:57.000000px;}
.fs0_c00488{font-size:60.000000px;}
.fs4_c00488{font-size:66.000000px;}
.y0_c00488{bottom:0.000000px;}
.y50_c00488{bottom:3.105000px;}
.y4f_c00488{bottom:7.228363px;}
.y4e_c00488{bottom:28.350000px;}
.y27_c00488{bottom:47.250000px;}
.y4d_c00488{bottom:65.250000px;}
.y26_c00488{bottom:66.150000px;}
.y4c_c00488{bottom:83.700000px;}
.y25_c00488{bottom:84.750000px;}
.y4b_c00488{bottom:102.300000px;}
.y24_c00488{bottom:103.050000px;}
.y4a_c00488{bottom:119.700000px;}
.y23_c00488{bottom:123.300000px;}
.y49_c00488{bottom:138.150000px;}
.y22_c00488{bottom:141.750000px;}
.y48_c00488{bottom:155.850000px;}
.y21_c00488{bottom:157.650000px;}
.y47_c00488{bottom:174.450000px;}
.y20_c00488{bottom:176.250000px;}
.y46_c00488{bottom:192.750000px;}
.y1f_c00488{bottom:194.100000px;}
.y1e_c00488{bottom:211.650000px;}
.y45_c00488{bottom:228.600000px;}
.y1d_c00488{bottom:230.550000px;}
.y44_c00488{bottom:246.750000px;}
.y1c_c00488{bottom:249.450000px;}
.y43_c00488{bottom:265.050000px;}
.y1b_c00488{bottom:267.300000px;}
.y1a_c00488{bottom:282.900000px;}
.y42_c00488{bottom:283.500000px;}
.y41_c00488{bottom:301.050000px;}
.y19_c00488{bottom:302.700000px;}
.y40_c00488{bottom:319.650000px;}
.y18_c00488{bottom:321.000000px;}
.y3f_c00488{bottom:337.800000px;}
.y17_c00488{bottom:338.850000px;}
.y3e_c00488{bottom:355.500000px;}
.y16_c00488{bottom:357.150000px;}
.y3d_c00488{bottom:373.950000px;}
.y15_c00488{bottom:374.400000px;}
.y3c_c00488{bottom:391.950000px;}
.y14_c00488{bottom:393.300000px;}
.y3b_c00488{bottom:409.800000px;}
.y13_c00488{bottom:411.450000px;}
.y3a_c00488{bottom:428.250000px;}
.y12_c00488{bottom:429.300000px;}
.y39_c00488{bottom:446.100000px;}
.y11_c00488{bottom:447.300000px;}
.y38_c00488{bottom:464.700000px;}
.y10_c00488{bottom:465.150000px;}
.y37_c00488{bottom:482.550000px;}
.yf_c00488{bottom:483.750000px;}
.y36_c00488{bottom:500.550000px;}
.ye_c00488{bottom:501.450000px;}
.y35_c00488{bottom:518.700000px;}
.yd_c00488{bottom:519.450000px;}
.yc_c00488{bottom:535.950000px;}
.y34_c00488{bottom:536.850000px;}
.y33_c00488{bottom:554.550000px;}
.yb_c00488{bottom:554.850000px;}
.ya_c00488{bottom:572.700000px;}
.y32_c00488{bottom:590.250000px;}
.y9_c00488{bottom:608.250000px;}
.y31_c00488{bottom:626.400000px;}
.y8_c00488{bottom:627.000000px;}
.y30_c00488{bottom:644.700000px;}
.y7_c00488{bottom:645.000000px;}
.y2f_c00488{bottom:662.250000px;}
.y6_c00488{bottom:662.850000px;}
.y2e_c00488{bottom:680.850000px;}
.y5_c00488{bottom:681.450000px;}
.y2d_c00488{bottom:698.700000px;}
.y2c_c00488{bottom:716.850000px;}
.y4_c00488{bottom:717.450000px;}
.y2b_c00488{bottom:735.450000px;}
.y2a_c00488{bottom:751.650000px;}
.y3_c00488{bottom:753.300000px;}
.y2_c00488{bottom:771.450000px;}
.y29_c00488{bottom:772.500000px;}
.y28_c00488{bottom:788.850000px;}
.y1_c00488{bottom:791.400000px;}
.h6_c00488{height:13.200074px;}
.h7_c00488{height:43.804688px;}
.h2_c00488{height:56.592000px;}
.h3_c00488{height:59.736000px;}
.h1_c00488{height:62.880000px;}
.h5_c00488{height:70.422000px;}
.h4_c00488{height:71.544000px;}
.h0_c00488{height:843.750000px;}
.w2_c00488{width:104.875500px;}
.w1_c00488{width:579.750000px;}
.w0_c00488{width:579.975000px;}
.x0_c00488{left:0.000000px;}
.xa_c00488{left:18.600000px;}
.x9_c00488{left:20.250000px;}
.xe_c00488{left:22.050000px;}
.x2_c00488{left:81.600000px;}
.x4_c00488{left:82.800000px;}
.xc_c00488{left:84.150000px;}
.xb_c00488{left:85.350000px;}
.xd_c00488{left:86.700000px;}
.x8_c00488{left:91.800000px;}
.x5_c00488{left:101.700000px;}
.x7_c00488{left:115.200000px;}
.x6_c00488{left:150.300000px;}
.x3_c00488{left:153.900000px;}
.x1_c00488{left:216.600000px;}
.x17_c00488{left:241.801758px;}
.xf_c00488{left:297.000000px;}
.x10_c00488{left:298.800000px;}
.x11_c00488{left:300.000000px;}
.x12_c00488{left:301.500000px;}
.x13_c00488{left:302.700000px;}
.x14_c00488{left:304.050000px;}
.x15_c00488{left:305.400000px;}
.x16_c00488{left:460.350000px;}
@media print{
.v0_c00488{vertical-align:0.000000pt;}
.ls5_c00488{letter-spacing:0.000000pt;}
.ls8_c00488{letter-spacing:2.666667pt;}
.ls7_c00488{letter-spacing:5.333333pt;}
.ls1_c00488{letter-spacing:7.418667pt;}
.ls6_c00488{letter-spacing:8.000000pt;}
.ls3_c00488{letter-spacing:12.882667pt;}
.ls9_c00488{letter-spacing:13.333333pt;}
.ls0_c00488{letter-spacing:17.552000pt;}
.ls2_c00488{letter-spacing:22.128000pt;}
.ls4_c00488{letter-spacing:24.616000pt;}
.ws2_c00488{word-spacing:-33.552000pt;}
.ws7_c00488{word-spacing:-26.720000pt;}
.ws5_c00488{word-spacing:-19.621333pt;}
.ws8_c00488{word-spacing:-14.997333pt;}
.ws6_c00488{word-spacing:-12.746667pt;}
.ws4_c00488{word-spacing:-12.586667pt;}
.ws0_c00488{word-spacing:-12.133333pt;}
.ws1_c00488{word-spacing:-12.048000pt;}
.ws3_c00488{word-spacing:-11.602667pt;}
.ws9_c00488{word-spacing:0.000000pt;}
._11_c00488{margin-left:-14.384000pt;}
._28_c00488{margin-left:-12.746667pt;}
._14_c00488{margin-left:-10.922667pt;}
._1b_c00488{margin-left:-9.546667pt;}
._12_c00488{margin-left:-8.208000pt;}
._17_c00488{margin-left:-6.994667pt;}
._16_c00488{margin-left:-5.930667pt;}
._c_c00488{margin-left:-4.869333pt;}
._d_c00488{margin-left:-3.216000pt;}
._e_c00488{margin-left:-1.920000pt;}
._13_c00488{margin-left:-1.010667pt;}
._15_c00488{width:1.386667pt;}
._6_c00488{width:2.400000pt;}
._5_c00488{width:3.744000pt;}
._7_c00488{width:4.992000pt;}
._8_c00488{width:6.096000pt;}
._a_c00488{width:7.125333pt;}
._f_c00488{width:8.101333pt;}
._b_c00488{width:9.610667pt;}
._1_c00488{width:10.560000pt;}
._1e_c00488{width:11.717333pt;}
._19_c00488{width:12.616000pt;}
._0_c00488{width:13.866667pt;}
._3_c00488{width:15.786667pt;}
._1c_c00488{width:16.730667pt;}
._4_c00488{width:18.080000pt;}
._1f_c00488{width:19.426667pt;}
._9_c00488{width:20.400000pt;}
._1d_c00488{width:22.416000pt;}
._2e_c00488{width:23.413333pt;}
._2b_c00488{width:24.573333pt;}
._10_c00488{width:25.722667pt;}
._20_c00488{width:27.200000pt;}
._24_c00488{width:28.589333pt;}
._2c_c00488{width:30.240000pt;}
._2f_c00488{width:31.861333pt;}
._29_c00488{width:38.224000pt;}
._27_c00488{width:43.093333pt;}
._2d_c00488{width:44.549333pt;}
._2_c00488{width:48.586667pt;}
._22_c00488{width:63.733333pt;}
._21_c00488{width:78.416000pt;}
._25_c00488{width:84.000000pt;}
._1a_c00488{width:113.813333pt;}
._2a_c00488{width:131.221333pt;}
._23_c00488{width:219.730667pt;}
._18_c00488{width:289.189333pt;}
._26_c00488{width:290.453333pt;}
.fs2_c00488{font-size:34.666667pt;}
.fs5_c00488{font-size:42.666667pt;}
.fs1_c00488{font-size:48.000000pt;}
.fs3_c00488{font-size:50.666667pt;}
.fs0_c00488{font-size:53.333333pt;}
.fs4_c00488{font-size:58.666667pt;}
.y0_c00488{bottom:0.000000pt;}
.y50_c00488{bottom:2.760000pt;}
.y4f_c00488{bottom:6.425212pt;}
.y4e_c00488{bottom:25.200000pt;}
.y27_c00488{bottom:42.000000pt;}
.y4d_c00488{bottom:58.000000pt;}
.y26_c00488{bottom:58.800000pt;}
.y4c_c00488{bottom:74.400000pt;}
.y25_c00488{bottom:75.333333pt;}
.y4b_c00488{bottom:90.933333pt;}
.y24_c00488{bottom:91.600000pt;}
.y4a_c00488{bottom:106.400000pt;}
.y23_c00488{bottom:109.600000pt;}
.y49_c00488{bottom:122.800000pt;}
.y22_c00488{bottom:126.000000pt;}
.y48_c00488{bottom:138.533333pt;}
.y21_c00488{bottom:140.133333pt;}
.y47_c00488{bottom:155.066667pt;}
.y20_c00488{bottom:156.666667pt;}
.y46_c00488{bottom:171.333333pt;}
.y1f_c00488{bottom:172.533333pt;}
.y1e_c00488{bottom:188.133333pt;}
.y45_c00488{bottom:203.200000pt;}
.y1d_c00488{bottom:204.933333pt;}
.y44_c00488{bottom:219.333333pt;}
.y1c_c00488{bottom:221.733333pt;}
.y43_c00488{bottom:235.600000pt;}
.y1b_c00488{bottom:237.600000pt;}
.y1a_c00488{bottom:251.466667pt;}
.y42_c00488{bottom:252.000000pt;}
.y41_c00488{bottom:267.600000pt;}
.y19_c00488{bottom:269.066667pt;}
.y40_c00488{bottom:284.133333pt;}
.y18_c00488{bottom:285.333333pt;}
.y3f_c00488{bottom:300.266667pt;}
.y17_c00488{bottom:301.200000pt;}
.y3e_c00488{bottom:316.000000pt;}
.y16_c00488{bottom:317.466667pt;}
.y3d_c00488{bottom:332.400000pt;}
.y15_c00488{bottom:332.800000pt;}
.y3c_c00488{bottom:348.400000pt;}
.y14_c00488{bottom:349.600000pt;}
.y3b_c00488{bottom:364.266667pt;}
.y13_c00488{bottom:365.733333pt;}
.y3a_c00488{bottom:380.666667pt;}
.y12_c00488{bottom:381.600000pt;}
.y39_c00488{bottom:396.533333pt;}
.y11_c00488{bottom:397.600000pt;}
.y38_c00488{bottom:413.066667pt;}
.y10_c00488{bottom:413.466667pt;}
.y37_c00488{bottom:428.933333pt;}
.yf_c00488{bottom:430.000000pt;}
.y36_c00488{bottom:444.933333pt;}
.ye_c00488{bottom:445.733333pt;}
.y35_c00488{bottom:461.066667pt;}
.yd_c00488{bottom:461.733333pt;}
.yc_c00488{bottom:476.400000pt;}
.y34_c00488{bottom:477.200000pt;}
.y33_c00488{bottom:492.933333pt;}
.yb_c00488{bottom:493.200000pt;}
.ya_c00488{bottom:509.066667pt;}
.y32_c00488{bottom:524.666667pt;}
.y9_c00488{bottom:540.666667pt;}
.y31_c00488{bottom:556.800000pt;}
.y8_c00488{bottom:557.333333pt;}
.y30_c00488{bottom:573.066667pt;}
.y7_c00488{bottom:573.333333pt;}
.y2f_c00488{bottom:588.666667pt;}
.y6_c00488{bottom:589.200000pt;}
.y2e_c00488{bottom:605.200000pt;}
.y5_c00488{bottom:605.733333pt;}
.y2d_c00488{bottom:621.066667pt;}
.y2c_c00488{bottom:637.200000pt;}
.y4_c00488{bottom:637.733333pt;}
.y2b_c00488{bottom:653.733333pt;}
.y2a_c00488{bottom:668.133333pt;}
.y3_c00488{bottom:669.600000pt;}
.y2_c00488{bottom:685.733333pt;}
.y29_c00488{bottom:686.666667pt;}
.y28_c00488{bottom:701.200000pt;}
.y1_c00488{bottom:703.466667pt;}
.h6_c00488{height:11.733399pt;}
.h7_c00488{height:38.937500pt;}
.h2_c00488{height:50.304000pt;}
.h3_c00488{height:53.098667pt;}
.h1_c00488{height:55.893333pt;}
.h5_c00488{height:62.597333pt;}
.h4_c00488{height:63.594667pt;}
.h0_c00488{height:750.000000pt;}
.w2_c00488{width:93.222667pt;}
.w1_c00488{width:515.333333pt;}
.w0_c00488{width:515.533333pt;}
.x0_c00488{left:0.000000pt;}
.xa_c00488{left:16.533333pt;}
.x9_c00488{left:18.000000pt;}
.xe_c00488{left:19.600000pt;}
.x2_c00488{left:72.533333pt;}
.x4_c00488{left:73.600000pt;}
.xc_c00488{left:74.800000pt;}
.xb_c00488{left:75.866667pt;}
.xd_c00488{left:77.066667pt;}
.x8_c00488{left:81.600000pt;}
.x5_c00488{left:90.400000pt;}
.x7_c00488{left:102.400000pt;}
.x6_c00488{left:133.600000pt;}
.x3_c00488{left:136.800000pt;}
.x1_c00488{left:192.533333pt;}
.x17_c00488{left:214.934896pt;}
.xf_c00488{left:264.000000pt;}
.x10_c00488{left:265.600000pt;}
.x11_c00488{left:266.666667pt;}
.x12_c00488{left:268.000000pt;}
.x13_c00488{left:269.066667pt;}
.x14_c00488{left:270.266667pt;}
.x15_c00488{left:271.466667pt;}
.x16_c00488{left:409.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_84422182e9c664ef75606320.woff2')format("woff");}.ff1_c00489{font-family:ff1_c00489;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00489;src:url('chunks/assets/font_23235e168d9aa3158e9ab98c.woff2')format("woff");}.ff2_c00489{font-family:ff2_c00489;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00489;src:url('chunks/assets/font_70ac699ec3f170ba90030403.woff2')format("woff");}.ff3_c00489{font-family:ff3_c00489;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00489;src:url('chunks/assets/font_b45788c335d9c7984df99db1.woff2')format("woff");}.ff4_c00489{font-family:ff4_c00489;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00489;src:url('chunks/assets/font_d9e3fba6ff5bc130826aea8a.woff2')format("woff");}.ff5_c00489{font-family:ff5_c00489;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00489;src:url('chunks/assets/font_fb1639c49ff41d7ba5f83665.woff2')format("woff");}.ff6_c00489{font-family:ff6_c00489;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00489;src:url('chunks/assets/font_3611e85c8e64622704676918.woff2')format("woff");}.ff7_c00489{font-family:ff7_c00489;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00489;src:url('chunks/assets/font_db84cb93c37c8282b111976f.woff2')format("woff");}.ff8_c00489{font-family:ff8_c00489;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00489;src:url('chunks/assets/font_1358839a950c6ec73aac1a59.woff2')format("woff");}.ff9_c00489{font-family:ff9_c00489;line-height:1.575000;font-style:normal;font-weight: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_c00489;src:url('chunks/assets/font_e9434d84c1c54d70e8e51da5.woff2')format("woff");}.ffa_c00489{font-family:ffa_c00489;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00489;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ffb_c00489{font-family:ffb_c00489;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00489{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00489{vertical-align:0.000000px;}
.v1_c00489{vertical-align:69.600000px;}
.ls5_c00489{letter-spacing:-6.000000px;}
.ls4_c00489{letter-spacing:0.000000px;}
.ls6_c00489{letter-spacing:3.000000px;}
.ls8_c00489{letter-spacing:6.000000px;}
.ls2_c00489{letter-spacing:6.750000px;}
.ls7_c00489{letter-spacing:9.000000px;}
.ls0_c00489{letter-spacing:11.280000px;}
.ls3_c00489{letter-spacing:11.466000px;}
.ls1_c00489{letter-spacing:50.493000px;}
.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;}
}
.ws6_c00489{word-spacing:-39.156000px;}
.ws4_c00489{word-spacing:-23.160000px;}
.ws7_c00489{word-spacing:-15.000000px;}
.ws5_c00489{word-spacing:-14.160000px;}
.ws8_c00489{word-spacing:-13.554000px;}
.ws2_c00489{word-spacing:-13.452000px;}
.ws1_c00489{word-spacing:-8.160000px;}
.ws9_c00489{word-spacing:0.000000px;}
.ws0_c00489{word-spacing:0.300000px;}
.ws3_c00489{word-spacing:0.714000px;}
._22_c00489{margin-left:-19.203000px;}
._1f_c00489{margin-left:-11.220000px;}
._2_c00489{margin-left:-8.940000px;}
._7_c00489{margin-left:-7.260000px;}
._1c_c00489{margin-left:-6.240000px;}
._17_c00489{margin-left:-5.145000px;}
._3_c00489{margin-left:-3.660000px;}
._5_c00489{margin-left:-1.740000px;}
._8_c00489{width:1.020000px;}
._0_c00489{width:2.040000px;}
._1_c00489{width:3.720000px;}
._6_c00489{width:5.400000px;}
._a_c00489{width:6.600000px;}
._4_c00489{width:8.160000px;}
._d_c00489{width:9.180000px;}
._b_c00489{width:10.800000px;}
._9_c00489{width:12.660000px;}
._21_c00489{width:13.998000px;}
._c_c00489{width:15.780000px;}
._16_c00489{width:17.100000px;}
._14_c00489{width:18.180000px;}
._19_c00489{width:19.560000px;}
._12_c00489{width:20.880000px;}
._1d_c00489{width:22.440000px;}
._20_c00489{width:23.490000px;}
._18_c00489{width:24.900000px;}
._11_c00489{width:25.980000px;}
._10_c00489{width:28.020000px;}
._15_c00489{width:30.180000px;}
._13_c00489{width:35.460000px;}
._e_c00489{width:36.540000px;}
._1b_c00489{width:38.520000px;}
._1e_c00489{width:41.160000px;}
._f_c00489{width:42.600000px;}
._1a_c00489{width:50.820000px;}
.fc2_c00489{color:transparent;}
.fc1_c00489{color:rgb(128,128,128);}
.fc0_c00489{color:rgb(0,0,0);}
.fs4_c00489{font-size:42.000000px;}
.fs8_c00489{font-size:48.000000px;}
.fs6_c00489{font-size:54.000000px;}
.fs3_c00489{font-size:57.000000px;}
.fs0_c00489{font-size:60.000000px;}
.fs1_c00489{font-size:63.000000px;}
.fs7_c00489{font-size:66.000000px;}
.fs2_c00489{font-size:72.000000px;}
.fs5_c00489{font-size:156.000000px;}
.y0_c00489{bottom:0.000000px;}
.y53_c00489{bottom:3.105000px;}
.y52_c00489{bottom:7.228371px;}
.y4f_c00489{bottom:32.715000px;}
.y4e_c00489{bottom:49.365000px;}
.y28_c00489{bottom:64.215000px;}
.y4d_c00489{bottom:68.265000px;}
.y27_c00489{bottom:82.815000px;}
.y4c_c00489{bottom:85.815000px;}
.y26_c00489{bottom:100.215000px;}
.y4b_c00489{bottom:103.965000px;}
.y25_c00489{bottom:118.515000px;}
.y4a_c00489{bottom:122.565000px;}
.y24_c00489{bottom:137.415000px;}
.y49_c00489{bottom:140.415000px;}
.y23_c00489{bottom:154.665000px;}
.y48_c00489{bottom:158.715000px;}
.y22_c00489{bottom:172.815000px;}
.y47_c00489{bottom:177.165000px;}
.y21_c00489{bottom:191.415000px;}
.y46_c00489{bottom:195.465000px;}
.y20_c00489{bottom:208.965000px;}
.y45_c00489{bottom:214.065000px;}
.y51_c00489{bottom:218.715000px;}
.y1f_c00489{bottom:227.565000px;}
.y44_c00489{bottom:232.965000px;}
.y50_c00489{bottom:236.715000px;}
.y1e_c00489{bottom:246.015000px;}
.y43_c00489{bottom:249.465000px;}
.y1d_c00489{bottom:263.715000px;}
.y42_c00489{bottom:267.615000px;}
.y1c_c00489{bottom:281.865000px;}
.y41_c00489{bottom:285.315000px;}
.y1b_c00489{bottom:300.165000px;}
.y40_c00489{bottom:302.865000px;}
.y1a_c00489{bottom:318.315000px;}
.y3f_c00489{bottom:321.315000px;}
.y19_c00489{bottom:336.465000px;}
.y3e_c00489{bottom:339.315000px;}
.y18_c00489{bottom:354.765000px;}
.y3d_c00489{bottom:358.065000px;}
.y17_c00489{bottom:372.615000px;}
.y3c_c00489{bottom:376.065000px;}
.y16_c00489{bottom:390.915000px;}
.y3b_c00489{bottom:393.915000px;}
.y15_c00489{bottom:409.065000px;}
.y3a_c00489{bottom:412.515000px;}
.y14_c00489{bottom:427.365000px;}
.y39_c00489{bottom:431.415000px;}
.y13_c00489{bottom:445.215000px;}
.y38_c00489{bottom:449.865000px;}
.y12_c00489{bottom:463.515000px;}
.y37_c00489{bottom:467.565000px;}
.y11_c00489{bottom:481.365000px;}
.y36_c00489{bottom:486.015000px;}
.y10_c00489{bottom:499.815000px;}
.y35_c00489{bottom:503.865000px;}
.yf_c00489{bottom:517.815000px;}
.y34_c00489{bottom:521.865000px;}
.ye_c00489{bottom:536.265000px;}
.y33_c00489{bottom:539.715000px;}
.yd_c00489{bottom:554.265000px;}
.y32_c00489{bottom:558.315000px;}
.yc_c00489{bottom:572.715000px;}
.y31_c00489{bottom:575.865000px;}
.yb_c00489{bottom:590.415000px;}
.y30_c00489{bottom:594.015000px;}
.y2f_c00489{bottom:594.615000px;}
.ya_c00489{bottom:608.565000px;}
.y9_c00489{bottom:626.865000px;}
.y8_c00489{bottom:645.315000px;}
.y2e_c00489{bottom:647.415000px;}
.y7_c00489{bottom:663.315000px;}
.y2d_c00489{bottom:665.565000px;}
.y6_c00489{bottom:681.465000px;}
.y2c_c00489{bottom:684.465000px;}
.y5_c00489{bottom:699.615000px;}
.y2b_c00489{bottom:702.765000px;}
.y4_c00489{bottom:718.215000px;}
.y2a_c00489{bottom:720.615000px;}
.y3_c00489{bottom:736.215000px;}
.y2_c00489{bottom:755.115000px;}
.y29_c00489{bottom:756.465000px;}
.y1_c00489{bottom:772.965000px;}
.ha_c00489{height:13.200074px;}
.hb_c00489{height:43.804688px;}
.h8_c00489{height:56.592000px;}
.h6_c00489{height:59.736000px;}
.h2_c00489{height:62.880000px;}
.h7_c00489{height:65.040000px;}
.h3_c00489{height:66.024000px;}
.h9_c00489{height:71.544000px;}
.h4_c00489{height:78.048000px;}
.h5_c00489{height:163.488000px;}
.h0_c00489{height:848.625000px;}
.h1_c00489{height:849.000000px;}
.w2_c00489{width:104.875500px;}
.w1_c00489{width:579.750000px;}
.w0_c00489{width:579.975000px;}
.x0_c00489{left:0.000000px;}
.x3_c00489{left:94.800000px;}
.x2_c00489{left:95.850000px;}
.x4_c00489{left:97.200000px;}
.x1_c00489{left:98.250000px;}
.x5_c00489{left:100.200000px;}
.x6_c00489{left:101.250000px;}
.x7_c00489{left:113.700000px;}
.x8_c00489{left:142.050000px;}
.x9_c00489{left:173.850000px;}
.x16_c00489{left:241.801758px;}
.xb_c00489{left:311.400000px;}
.x11_c00489{left:313.500000px;}
.x12_c00489{left:314.850000px;}
.xf_c00489{left:316.800000px;}
.x13_c00489{left:317.850000px;}
.xc_c00489{left:321.300000px;}
.x10_c00489{left:341.100000px;}
.xa_c00489{left:381.600000px;}
.xd_c00489{left:385.800000px;}
.xe_c00489{left:389.400000px;}
.x14_c00489{left:491.700000px;}
.x15_c00489{left:517.950000px;}
@media print{
.v0_c00489{vertical-align:0.000000pt;}
.v1_c00489{vertical-align:61.866667pt;}
.ls5_c00489{letter-spacing:-5.333333pt;}
.ls4_c00489{letter-spacing:0.000000pt;}
.ls6_c00489{letter-spacing:2.666667pt;}
.ls8_c00489{letter-spacing:5.333333pt;}
.ls2_c00489{letter-spacing:6.000000pt;}
.ls7_c00489{letter-spacing:8.000000pt;}
.ls0_c00489{letter-spacing:10.026667pt;}
.ls3_c00489{letter-spacing:10.192000pt;}
.ls1_c00489{letter-spacing:44.882667pt;}
.ws6_c00489{word-spacing:-34.805333pt;}
.ws4_c00489{word-spacing:-20.586667pt;}
.ws7_c00489{word-spacing:-13.333333pt;}
.ws5_c00489{word-spacing:-12.586667pt;}
.ws8_c00489{word-spacing:-12.048000pt;}
.ws2_c00489{word-spacing:-11.957333pt;}
.ws1_c00489{word-spacing:-7.253333pt;}
.ws9_c00489{word-spacing:0.000000pt;}
.ws0_c00489{word-spacing:0.266667pt;}
.ws3_c00489{word-spacing:0.634667pt;}
._22_c00489{margin-left:-17.069333pt;}
._1f_c00489{margin-left:-9.973333pt;}
._2_c00489{margin-left:-7.946667pt;}
._7_c00489{margin-left:-6.453333pt;}
._1c_c00489{margin-left:-5.546667pt;}
._17_c00489{margin-left:-4.573333pt;}
._3_c00489{margin-left:-3.253333pt;}
._5_c00489{margin-left:-1.546667pt;}
._8_c00489{width:0.906667pt;}
._0_c00489{width:1.813333pt;}
._1_c00489{width:3.306667pt;}
._6_c00489{width:4.800000pt;}
._a_c00489{width:5.866667pt;}
._4_c00489{width:7.253333pt;}
._d_c00489{width:8.160000pt;}
._b_c00489{width:9.600000pt;}
._9_c00489{width:11.253333pt;}
._21_c00489{width:12.442667pt;}
._c_c00489{width:14.026667pt;}
._16_c00489{width:15.200000pt;}
._14_c00489{width:16.160000pt;}
._19_c00489{width:17.386667pt;}
._12_c00489{width:18.560000pt;}
._1d_c00489{width:19.946667pt;}
._20_c00489{width:20.880000pt;}
._18_c00489{width:22.133333pt;}
._11_c00489{width:23.093333pt;}
._10_c00489{width:24.906667pt;}
._15_c00489{width:26.826667pt;}
._13_c00489{width:31.520000pt;}
._e_c00489{width:32.480000pt;}
._1b_c00489{width:34.240000pt;}
._1e_c00489{width:36.586667pt;}
._f_c00489{width:37.866667pt;}
._1a_c00489{width:45.173333pt;}
.fs4_c00489{font-size:37.333333pt;}
.fs8_c00489{font-size:42.666667pt;}
.fs6_c00489{font-size:48.000000pt;}
.fs3_c00489{font-size:50.666667pt;}
.fs0_c00489{font-size:53.333333pt;}
.fs1_c00489{font-size:56.000000pt;}
.fs7_c00489{font-size:58.666667pt;}
.fs2_c00489{font-size:64.000000pt;}
.fs5_c00489{font-size:138.666667pt;}
.y0_c00489{bottom:0.000000pt;}
.y53_c00489{bottom:2.760000pt;}
.y52_c00489{bottom:6.425219pt;}
.y4f_c00489{bottom:29.080000pt;}
.y4e_c00489{bottom:43.880000pt;}
.y28_c00489{bottom:57.080000pt;}
.y4d_c00489{bottom:60.680000pt;}
.y27_c00489{bottom:73.613333pt;}
.y4c_c00489{bottom:76.280000pt;}
.y26_c00489{bottom:89.080000pt;}
.y4b_c00489{bottom:92.413333pt;}
.y25_c00489{bottom:105.346667pt;}
.y4a_c00489{bottom:108.946667pt;}
.y24_c00489{bottom:122.146667pt;}
.y49_c00489{bottom:124.813333pt;}
.y23_c00489{bottom:137.480000pt;}
.y48_c00489{bottom:141.080000pt;}
.y22_c00489{bottom:153.613333pt;}
.y47_c00489{bottom:157.480000pt;}
.y21_c00489{bottom:170.146667pt;}
.y46_c00489{bottom:173.746667pt;}
.y20_c00489{bottom:185.746667pt;}
.y45_c00489{bottom:190.280000pt;}
.y51_c00489{bottom:194.413333pt;}
.y1f_c00489{bottom:202.280000pt;}
.y44_c00489{bottom:207.080000pt;}
.y50_c00489{bottom:210.413333pt;}
.y1e_c00489{bottom:218.680000pt;}
.y43_c00489{bottom:221.746667pt;}
.y1d_c00489{bottom:234.413333pt;}
.y42_c00489{bottom:237.880000pt;}
.y1c_c00489{bottom:250.546667pt;}
.y41_c00489{bottom:253.613333pt;}
.y1b_c00489{bottom:266.813333pt;}
.y40_c00489{bottom:269.213333pt;}
.y1a_c00489{bottom:282.946667pt;}
.y3f_c00489{bottom:285.613333pt;}
.y19_c00489{bottom:299.080000pt;}
.y3e_c00489{bottom:301.613333pt;}
.y18_c00489{bottom:315.346667pt;}
.y3d_c00489{bottom:318.280000pt;}
.y17_c00489{bottom:331.213333pt;}
.y3c_c00489{bottom:334.280000pt;}
.y16_c00489{bottom:347.480000pt;}
.y3b_c00489{bottom:350.146667pt;}
.y15_c00489{bottom:363.613333pt;}
.y3a_c00489{bottom:366.680000pt;}
.y14_c00489{bottom:379.880000pt;}
.y39_c00489{bottom:383.480000pt;}
.y13_c00489{bottom:395.746667pt;}
.y38_c00489{bottom:399.880000pt;}
.y12_c00489{bottom:412.013333pt;}
.y37_c00489{bottom:415.613333pt;}
.y11_c00489{bottom:427.880000pt;}
.y36_c00489{bottom:432.013333pt;}
.y10_c00489{bottom:444.280000pt;}
.y35_c00489{bottom:447.880000pt;}
.yf_c00489{bottom:460.280000pt;}
.y34_c00489{bottom:463.880000pt;}
.ye_c00489{bottom:476.680000pt;}
.y33_c00489{bottom:479.746667pt;}
.yd_c00489{bottom:492.680000pt;}
.y32_c00489{bottom:496.280000pt;}
.yc_c00489{bottom:509.080000pt;}
.y31_c00489{bottom:511.880000pt;}
.yb_c00489{bottom:524.813333pt;}
.y30_c00489{bottom:528.013333pt;}
.y2f_c00489{bottom:528.546667pt;}
.ya_c00489{bottom:540.946667pt;}
.y9_c00489{bottom:557.213333pt;}
.y8_c00489{bottom:573.613333pt;}
.y2e_c00489{bottom:575.480000pt;}
.y7_c00489{bottom:589.613333pt;}
.y2d_c00489{bottom:591.613333pt;}
.y6_c00489{bottom:605.746667pt;}
.y2c_c00489{bottom:608.413333pt;}
.y5_c00489{bottom:621.880000pt;}
.y2b_c00489{bottom:624.680000pt;}
.y4_c00489{bottom:638.413333pt;}
.y2a_c00489{bottom:640.546667pt;}
.y3_c00489{bottom:654.413333pt;}
.y2_c00489{bottom:671.213333pt;}
.y29_c00489{bottom:672.413333pt;}
.y1_c00489{bottom:687.080000pt;}
.ha_c00489{height:11.733399pt;}
.hb_c00489{height:38.937500pt;}
.h8_c00489{height:50.304000pt;}
.h6_c00489{height:53.098667pt;}
.h2_c00489{height:55.893333pt;}
.h7_c00489{height:57.813333pt;}
.h3_c00489{height:58.688000pt;}
.h9_c00489{height:63.594667pt;}
.h4_c00489{height:69.376000pt;}
.h5_c00489{height:145.322667pt;}
.h0_c00489{height:754.333333pt;}
.h1_c00489{height:754.666667pt;}
.w2_c00489{width:93.222667pt;}
.w1_c00489{width:515.333333pt;}
.w0_c00489{width:515.533333pt;}
.x0_c00489{left:0.000000pt;}
.x3_c00489{left:84.266667pt;}
.x2_c00489{left:85.200000pt;}
.x4_c00489{left:86.400000pt;}
.x1_c00489{left:87.333333pt;}
.x5_c00489{left:89.066667pt;}
.x6_c00489{left:90.000000pt;}
.x7_c00489{left:101.066667pt;}
.x8_c00489{left:126.266667pt;}
.x9_c00489{left:154.533333pt;}
.x16_c00489{left:214.934896pt;}
.xb_c00489{left:276.800000pt;}
.x11_c00489{left:278.666667pt;}
.x12_c00489{left:279.866667pt;}
.xf_c00489{left:281.600000pt;}
.x13_c00489{left:282.533333pt;}
.xc_c00489{left:285.600000pt;}
.x10_c00489{left:303.200000pt;}
.xa_c00489{left:339.200000pt;}
.xd_c00489{left:342.933333pt;}
.xe_c00489{left:346.133333pt;}
.x14_c00489{left:437.066667pt;}
.x15_c00489{left:460.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5e4a68059577f55577ff467e.woff2')format("woff");}.ff1_c00490{font-family:ff1_c00490;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00490;src:url('chunks/assets/font_4beb3b183ae3250c24981234.woff2')format("woff");}.ff2_c00490{font-family:ff2_c00490;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00490;src:url('chunks/assets/font_acfe789c8dab8ab0ebf03b3d.woff2')format("woff");}.ff3_c00490{font-family:ff3_c00490;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00490;src:url('chunks/assets/font_595650a172925524b75d624c.woff2')format("woff");}.ff4_c00490{font-family:ff4_c00490;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00490;src:url('chunks/assets/font_bcae69efb3b0e5d7f5267015.woff2')format("woff");}.ff5_c00490{font-family:ff5_c00490;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00490;src:url('chunks/assets/font_6218da92bbedfb56a31ab1c5.woff2')format("woff");}.ff6_c00490{font-family:ff6_c00490;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00490;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff7_c00490{font-family:ff7_c00490;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00490;src:url('chunks/assets/font_792cacc9bdfbf93e869fa82d.woff2')format("woff");}.ff8_c00490{font-family:ff8_c00490;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00490;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff9_c00490{font-family:ff9_c00490;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00490{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00490{vertical-align:0.000000px;}
.ls3_c00490{letter-spacing:0.000000px;}
.ls1_c00490{letter-spacing:1.800000px;}
.ls5_c00490{letter-spacing:3.000000px;}
.ls4_c00490{letter-spacing:15.000000px;}
.ls2_c00490{letter-spacing:17.646000px;}
.ls0_c00490{letter-spacing:414.660000px;}
.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;}
}
.ws7_c00490{word-spacing:-29.700000px;}
.ws0_c00490{word-spacing:-29.340000px;}
.ws8_c00490{word-spacing:-23.760000px;}
.ws1_c00490{word-spacing:-22.074000px;}
.ws4_c00490{word-spacing:-17.319000px;}
.ws2_c00490{word-spacing:-14.340000px;}
.ws3_c00490{word-spacing:-14.160000px;}
.ws6_c00490{word-spacing:-12.291000px;}
.ws9_c00490{word-spacing:0.000000px;}
.ws5_c00490{word-spacing:2.580000px;}
._1e_c00490{margin-left:-16.854000px;}
._17_c00490{margin-left:-11.580000px;}
._10_c00490{margin-left:-8.700000px;}
._1c_c00490{margin-left:-6.816000px;}
._23_c00490{margin-left:-5.568000px;}
._c_c00490{margin-left:-4.500000px;}
._d_c00490{margin-left:-3.420000px;}
._8_c00490{margin-left:-2.100000px;}
._12_c00490{margin-left:-1.080000px;}
._7_c00490{width:1.620000px;}
._6_c00490{width:3.300000px;}
._4_c00490{width:4.440000px;}
._2_c00490{width:6.060000px;}
._3_c00490{width:7.140000px;}
._5_c00490{width:8.400000px;}
._14_c00490{width:9.780000px;}
._1f_c00490{width:10.818000px;}
._15_c00490{width:12.120000px;}
._f_c00490{width:13.260000px;}
._1a_c00490{width:14.487000px;}
._b_c00490{width:15.900000px;}
._1b_c00490{width:17.211000px;}
._0_c00490{width:18.300000px;}
._18_c00490{width:20.100000px;}
._16_c00490{width:21.180000px;}
._9_c00490{width:22.260000px;}
._24_c00490{width:24.408000px;}
._11_c00490{width:25.440000px;}
._1d_c00490{width:26.715000px;}
._20_c00490{width:28.878000px;}
._a_c00490{width:30.420000px;}
._25_c00490{width:36.849000px;}
._22_c00490{width:38.274000px;}
._1_c00490{width:41.700000px;}
._21_c00490{width:43.416000px;}
._13_c00490{width:45.120000px;}
._e_c00490{width:55.800000px;}
._19_c00490{width:65.580000px;}
._26_c00490{width:68.346000px;}
.fc2_c00490{color:transparent;}
.fc1_c00490{color:rgb(128,128,128);}
.fc0_c00490{color:rgb(0,0,0);}
.fs6_c00490{font-size:48.000000px;}
.fs4_c00490{font-size:51.000000px;}
.fs5_c00490{font-size:54.000000px;}
.fs0_c00490{font-size:60.000000px;}
.fs2_c00490{font-size:63.000000px;}
.fs1_c00490{font-size:66.000000px;}
.fs3_c00490{font-size:69.000000px;}
.y0_c00490{bottom:0.000000px;}
.y51_c00490{bottom:3.105000px;}
.y50_c00490{bottom:7.228363px;}
.y4f_c00490{bottom:42.750000px;}
.y4e_c00490{bottom:60.450000px;}
.y34_c00490{bottom:78.600000px;}
.y4a_c00490{bottom:80.250000px;}
.y33_c00490{bottom:97.200000px;}
.y49_c00490{bottom:97.800000px;}
.y4d_c00490{bottom:102.150000px;}
.y32_c00490{bottom:115.350000px;}
.y48_c00490{bottom:116.400000px;}
.y4c_c00490{bottom:118.800000px;}
.y31_c00490{bottom:133.200000px;}
.y47_c00490{bottom:135.000000px;}
.y4b_c00490{bottom:139.350000px;}
.y30_c00490{bottom:152.100000px;}
.y46_c00490{bottom:152.250000px;}
.y2f_c00490{bottom:170.100000px;}
.y45_c00490{bottom:170.700000px;}
.y2e_c00490{bottom:188.700000px;}
.y44_c00490{bottom:189.300000px;}
.y2d_c00490{bottom:206.850000px;}
.y43_c00490{bottom:207.450000px;}
.y2c_c00490{bottom:225.000000px;}
.y2b_c00490{bottom:243.000000px;}
.y42_c00490{bottom:243.600000px;}
.y2a_c00490{bottom:261.150000px;}
.y41_c00490{bottom:261.450000px;}
.y29_c00490{bottom:279.450000px;}
.y40_c00490{bottom:279.750000px;}
.y28_c00490{bottom:297.300000px;}
.y3f_c00490{bottom:298.050000px;}
.y27_c00490{bottom:315.150000px;}
.y3e_c00490{bottom:315.900000px;}
.y26_c00490{bottom:332.700000px;}
.y3d_c00490{bottom:334.050000px;}
.y25_c00490{bottom:350.700000px;}
.y3c_c00490{bottom:351.900000px;}
.y24_c00490{bottom:368.850000px;}
.y23_c00490{bottom:387.150000px;}
.y3b_c00490{bottom:388.350000px;}
.y22_c00490{bottom:405.300000px;}
.y3a_c00490{bottom:406.350000px;}
.y21_c00490{bottom:423.150000px;}
.y39_c00490{bottom:423.900000px;}
.y20_c00490{bottom:441.450000px;}
.y38_c00490{bottom:442.350000px;}
.y1f_c00490{bottom:459.600000px;}
.y37_c00490{bottom:476.850000px;}
.y1e_c00490{bottom:477.150000px;}
.y1d_c00490{bottom:495.450000px;}
.y1c_c00490{bottom:513.300000px;}
.y36_c00490{bottom:513.900000px;}
.y1b_c00490{bottom:530.850000px;}
.y35_c00490{bottom:531.150000px;}
.y1a_c00490{bottom:548.100000px;}
.y19_c00490{bottom:566.550000px;}
.yd_c00490{bottom:584.100000px;}
.y18_c00490{bottom:584.850000px;}
.yc_c00490{bottom:602.100000px;}
.y17_c00490{bottom:603.150000px;}
.yb_c00490{bottom:619.650000px;}
.y16_c00490{bottom:621.000000px;}
.ya_c00490{bottom:638.550000px;}
.y15_c00490{bottom:638.850000px;}
.y9_c00490{bottom:656.400000px;}
.y14_c00490{bottom:657.150000px;}
.y8_c00490{bottom:674.550000px;}
.y13_c00490{bottom:675.600000px;}
.y7_c00490{bottom:692.850000px;}
.y12_c00490{bottom:693.600000px;}
.y6_c00490{bottom:710.700000px;}
.y11_c00490{bottom:711.750000px;}
.y5_c00490{bottom:729.600000px;}
.y10_c00490{bottom:730.050000px;}
.y4_c00490{bottom:747.600000px;}
.yf_c00490{bottom:748.200000px;}
.y3_c00490{bottom:765.450000px;}
.ye_c00490{bottom:766.800000px;}
.y2_c00490{bottom:784.350000px;}
.y1_c00490{bottom:804.900000px;}
.h8_c00490{height:13.200074px;}
.h9_c00490{height:43.804688px;}
.h7_c00490{height:56.592000px;}
.h6_c00490{height:59.690918px;}
.h2_c00490{height:62.880000px;}
.h5_c00490{height:64.571777px;}
.h3_c00490{height:66.024000px;}
.h1_c00490{height:70.422000px;}
.h4_c00490{height:72.312000px;}
.h0_c00490{height:843.750000px;}
.w2_c00490{width:104.875500px;}
.w1_c00490{width:579.750000px;}
.w0_c00490{width:579.975000px;}
.x0_c00490{left:0.000000px;}
.x3_c00490{left:63.150000px;}
.x2_c00490{left:64.800000px;}
.x4_c00490{left:65.850000px;}
.x5_c00490{left:67.500000px;}
.xa_c00490{left:69.150000px;}
.xb_c00490{left:70.200000px;}
.xc_c00490{left:71.550000px;}
.xe_c00490{left:72.900000px;}
.xd_c00490{left:73.950000px;}
.xf_c00490{left:75.600000px;}
.x1_c00490{left:190.350000px;}
.x1c_c00490{left:241.801758px;}
.x6_c00490{left:277.650000px;}
.x7_c00490{left:279.450000px;}
.x8_c00490{left:280.800000px;}
.x9_c00490{left:281.850000px;}
.x10_c00490{left:284.850000px;}
.x16_c00490{left:286.800000px;}
.x17_c00490{left:287.850000px;}
.x18_c00490{left:288.900000px;}
.x13_c00490{left:297.000000px;}
.x12_c00490{left:315.600000px;}
.x15_c00490{left:318.300000px;}
.x14_c00490{left:336.750000px;}
.x11_c00490{left:372.900000px;}
.x1b_c00490{left:466.500000px;}
.x19_c00490{left:495.750000px;}
.x1a_c00490{left:497.850000px;}
@media print{
.v0_c00490{vertical-align:0.000000pt;}
.ls3_c00490{letter-spacing:0.000000pt;}
.ls1_c00490{letter-spacing:1.600000pt;}
.ls5_c00490{letter-spacing:2.666667pt;}
.ls4_c00490{letter-spacing:13.333333pt;}
.ls2_c00490{letter-spacing:15.685333pt;}
.ls0_c00490{letter-spacing:368.586667pt;}
.ws7_c00490{word-spacing:-26.400000pt;}
.ws0_c00490{word-spacing:-26.080000pt;}
.ws8_c00490{word-spacing:-21.120000pt;}
.ws1_c00490{word-spacing:-19.621333pt;}
.ws4_c00490{word-spacing:-15.394667pt;}
.ws2_c00490{word-spacing:-12.746667pt;}
.ws3_c00490{word-spacing:-12.586667pt;}
.ws6_c00490{word-spacing:-10.925333pt;}
.ws9_c00490{word-spacing:0.000000pt;}
.ws5_c00490{word-spacing:2.293333pt;}
._1e_c00490{margin-left:-14.981333pt;}
._17_c00490{margin-left:-10.293333pt;}
._10_c00490{margin-left:-7.733333pt;}
._1c_c00490{margin-left:-6.058667pt;}
._23_c00490{margin-left:-4.949333pt;}
._c_c00490{margin-left:-4.000000pt;}
._d_c00490{margin-left:-3.040000pt;}
._8_c00490{margin-left:-1.866667pt;}
._12_c00490{margin-left:-0.960000pt;}
._7_c00490{width:1.440000pt;}
._6_c00490{width:2.933333pt;}
._4_c00490{width:3.946667pt;}
._2_c00490{width:5.386667pt;}
._3_c00490{width:6.346667pt;}
._5_c00490{width:7.466667pt;}
._14_c00490{width:8.693333pt;}
._1f_c00490{width:9.616000pt;}
._15_c00490{width:10.773333pt;}
._f_c00490{width:11.786667pt;}
._1a_c00490{width:12.877333pt;}
._b_c00490{width:14.133333pt;}
._1b_c00490{width:15.298667pt;}
._0_c00490{width:16.266667pt;}
._18_c00490{width:17.866667pt;}
._16_c00490{width:18.826667pt;}
._9_c00490{width:19.786667pt;}
._24_c00490{width:21.696000pt;}
._11_c00490{width:22.613333pt;}
._1d_c00490{width:23.746667pt;}
._20_c00490{width:25.669333pt;}
._a_c00490{width:27.040000pt;}
._25_c00490{width:32.754667pt;}
._22_c00490{width:34.021333pt;}
._1_c00490{width:37.066667pt;}
._21_c00490{width:38.592000pt;}
._13_c00490{width:40.106667pt;}
._e_c00490{width:49.600000pt;}
._19_c00490{width:58.293333pt;}
._26_c00490{width:60.752000pt;}
.fs6_c00490{font-size:42.666667pt;}
.fs4_c00490{font-size:45.333333pt;}
.fs5_c00490{font-size:48.000000pt;}
.fs0_c00490{font-size:53.333333pt;}
.fs2_c00490{font-size:56.000000pt;}
.fs1_c00490{font-size:58.666667pt;}
.fs3_c00490{font-size:61.333333pt;}
.y0_c00490{bottom:0.000000pt;}
.y51_c00490{bottom:2.760000pt;}
.y50_c00490{bottom:6.425212pt;}
.y4f_c00490{bottom:38.000000pt;}
.y4e_c00490{bottom:53.733333pt;}
.y34_c00490{bottom:69.866667pt;}
.y4a_c00490{bottom:71.333333pt;}
.y33_c00490{bottom:86.400000pt;}
.y49_c00490{bottom:86.933333pt;}
.y4d_c00490{bottom:90.800000pt;}
.y32_c00490{bottom:102.533333pt;}
.y48_c00490{bottom:103.466667pt;}
.y4c_c00490{bottom:105.600000pt;}
.y31_c00490{bottom:118.400000pt;}
.y47_c00490{bottom:120.000000pt;}
.y4b_c00490{bottom:123.866667pt;}
.y30_c00490{bottom:135.200000pt;}
.y46_c00490{bottom:135.333333pt;}
.y2f_c00490{bottom:151.200000pt;}
.y45_c00490{bottom:151.733333pt;}
.y2e_c00490{bottom:167.733333pt;}
.y44_c00490{bottom:168.266667pt;}
.y2d_c00490{bottom:183.866667pt;}
.y43_c00490{bottom:184.400000pt;}
.y2c_c00490{bottom:200.000000pt;}
.y2b_c00490{bottom:216.000000pt;}
.y42_c00490{bottom:216.533333pt;}
.y2a_c00490{bottom:232.133333pt;}
.y41_c00490{bottom:232.400000pt;}
.y29_c00490{bottom:248.400000pt;}
.y40_c00490{bottom:248.666667pt;}
.y28_c00490{bottom:264.266667pt;}
.y3f_c00490{bottom:264.933333pt;}
.y27_c00490{bottom:280.133333pt;}
.y3e_c00490{bottom:280.800000pt;}
.y26_c00490{bottom:295.733333pt;}
.y3d_c00490{bottom:296.933333pt;}
.y25_c00490{bottom:311.733333pt;}
.y3c_c00490{bottom:312.800000pt;}
.y24_c00490{bottom:327.866667pt;}
.y23_c00490{bottom:344.133333pt;}
.y3b_c00490{bottom:345.200000pt;}
.y22_c00490{bottom:360.266667pt;}
.y3a_c00490{bottom:361.200000pt;}
.y21_c00490{bottom:376.133333pt;}
.y39_c00490{bottom:376.800000pt;}
.y20_c00490{bottom:392.400000pt;}
.y38_c00490{bottom:393.200000pt;}
.y1f_c00490{bottom:408.533333pt;}
.y37_c00490{bottom:423.866667pt;}
.y1e_c00490{bottom:424.133333pt;}
.y1d_c00490{bottom:440.400000pt;}
.y1c_c00490{bottom:456.266667pt;}
.y36_c00490{bottom:456.800000pt;}
.y1b_c00490{bottom:471.866667pt;}
.y35_c00490{bottom:472.133333pt;}
.y1a_c00490{bottom:487.200000pt;}
.y19_c00490{bottom:503.600000pt;}
.yd_c00490{bottom:519.200000pt;}
.y18_c00490{bottom:519.866667pt;}
.yc_c00490{bottom:535.200000pt;}
.y17_c00490{bottom:536.133333pt;}
.yb_c00490{bottom:550.800000pt;}
.y16_c00490{bottom:552.000000pt;}
.ya_c00490{bottom:567.600000pt;}
.y15_c00490{bottom:567.866667pt;}
.y9_c00490{bottom:583.466667pt;}
.y14_c00490{bottom:584.133333pt;}
.y8_c00490{bottom:599.600000pt;}
.y13_c00490{bottom:600.533333pt;}
.y7_c00490{bottom:615.866667pt;}
.y12_c00490{bottom:616.533333pt;}
.y6_c00490{bottom:631.733333pt;}
.y11_c00490{bottom:632.666667pt;}
.y5_c00490{bottom:648.533333pt;}
.y10_c00490{bottom:648.933333pt;}
.y4_c00490{bottom:664.533333pt;}
.yf_c00490{bottom:665.066667pt;}
.y3_c00490{bottom:680.400000pt;}
.ye_c00490{bottom:681.600000pt;}
.y2_c00490{bottom:697.200000pt;}
.y1_c00490{bottom:715.466667pt;}
.h8_c00490{height:11.733399pt;}
.h9_c00490{height:38.937500pt;}
.h7_c00490{height:50.304000pt;}
.h6_c00490{height:53.058594pt;}
.h2_c00490{height:55.893333pt;}
.h5_c00490{height:57.397135pt;}
.h3_c00490{height:58.688000pt;}
.h1_c00490{height:62.597333pt;}
.h4_c00490{height:64.277333pt;}
.h0_c00490{height:750.000000pt;}
.w2_c00490{width:93.222667pt;}
.w1_c00490{width:515.333333pt;}
.w0_c00490{width:515.533333pt;}
.x0_c00490{left:0.000000pt;}
.x3_c00490{left:56.133333pt;}
.x2_c00490{left:57.600000pt;}
.x4_c00490{left:58.533333pt;}
.x5_c00490{left:60.000000pt;}
.xa_c00490{left:61.466667pt;}
.xb_c00490{left:62.400000pt;}
.xc_c00490{left:63.600000pt;}
.xe_c00490{left:64.800000pt;}
.xd_c00490{left:65.733333pt;}
.xf_c00490{left:67.200000pt;}
.x1_c00490{left:169.200000pt;}
.x1c_c00490{left:214.934896pt;}
.x6_c00490{left:246.800000pt;}
.x7_c00490{left:248.400000pt;}
.x8_c00490{left:249.600000pt;}
.x9_c00490{left:250.533333pt;}
.x10_c00490{left:253.200000pt;}
.x16_c00490{left:254.933333pt;}
.x17_c00490{left:255.866667pt;}
.x18_c00490{left:256.800000pt;}
.x13_c00490{left:264.000000pt;}
.x12_c00490{left:280.533333pt;}
.x15_c00490{left:282.933333pt;}
.x14_c00490{left:299.333333pt;}
.x11_c00490{left:331.466667pt;}
.x1b_c00490{left:414.666667pt;}
.x19_c00490{left:440.666667pt;}
.x1a_c00490{left:442.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_cdeb9c7c3190022b87695fa4.woff2')format("woff");}.ff1_c00491{font-family:ff1_c00491;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00491;src:url('chunks/assets/font_ad679da03c02f06998bfdc8a.woff2')format("woff");}.ff2_c00491{font-family:ff2_c00491;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00491;src:url('chunks/assets/font_2e1a4f6827aa296f26a288c9.woff2')format("woff");}.ff3_c00491{font-family:ff3_c00491;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00491;src:url('chunks/assets/font_eee575215f659ad922ece0ac.woff2')format("woff");}.ff4_c00491{font-family:ff4_c00491;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00491;src:url('chunks/assets/font_8ea2978556964c82e1971ca9.woff2')format("woff");}.ff5_c00491{font-family:ff5_c00491;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00491;src:url('chunks/assets/font_178e150eb9b9a44e42923f81.woff2')format("woff");}.ff6_c00491{font-family:ff6_c00491;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00491;src:url('chunks/assets/font_a9d3a4f5e2660ce515fa8de4.woff2')format("woff");}.ff7_c00491{font-family:ff7_c00491;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00491;src:url('chunks/assets/font_7b622b8aadf094279cc84acf.woff2')format("woff");}.ff8_c00491{font-family:ff8_c00491;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00491;src:url('chunks/assets/font_a6a59b93908e0ad0f4e7da15.woff2')format("woff");}.ff9_c00491{font-family:ff9_c00491;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00491;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ffa_c00491{font-family:ffa_c00491;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00491{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00491{vertical-align:0.000000px;}
.ls5_c00491{letter-spacing:0.000000px;}
.ls3_c00491{letter-spacing:3.000000px;}
.ls1_c00491{letter-spacing:8.928000px;}
.ls6_c00491{letter-spacing:9.000000px;}
.ls2_c00491{letter-spacing:9.999000px;}
.ls0_c00491{letter-spacing:11.400000px;}
.ls4_c00491{letter-spacing:18.648000px;}
.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;}
}
.ws3_c00491{word-spacing:-41.565000px;}
.wsa_c00491{word-spacing:-24.576000px;}
.ws1_c00491{word-spacing:-19.500000px;}
.ws9_c00491{word-spacing:-14.361600px;}
.ws5_c00491{word-spacing:-14.340000px;}
.ws8_c00491{word-spacing:-14.160000px;}
.ws2_c00491{word-spacing:-12.744000px;}
.ws4_c00491{word-spacing:-11.679000px;}
.ws7_c00491{word-spacing:-4.188000px;}
.wsb_c00491{word-spacing:0.000000px;}
.ws6_c00491{word-spacing:0.960000px;}
.ws0_c00491{word-spacing:1.920000px;}
._1c_c00491{margin-left:-11.700000px;}
._22_c00491{margin-left:-10.620000px;}
._19_c00491{margin-left:-9.618000px;}
._17_c00491{margin-left:-7.560000px;}
._16_c00491{margin-left:-5.742000px;}
._b_c00491{margin-left:-4.200000px;}
._c_c00491{margin-left:-2.580000px;}
._9_c00491{margin-left:-1.440000px;}
._a_c00491{width:1.800000px;}
._f_c00491{width:3.078000px;}
._10_c00491{width:4.395000px;}
._8_c00491{width:6.222000px;}
._0_c00491{width:7.623000px;}
._2_c00491{width:8.820000px;}
._1a_c00491{width:10.020000px;}
._5_c00491{width:11.025000px;}
._4_c00491{width:12.033000px;}
._e_c00491{width:13.035000px;}
._3_c00491{width:14.427000px;}
._21_c00491{width:15.489000px;}
._15_c00491{width:16.680000px;}
._7_c00491{width:18.147000px;}
._18_c00491{width:19.509000px;}
._24_c00491{width:21.036000px;}
._1b_c00491{width:22.260000px;}
._14_c00491{width:23.466000px;}
._12_c00491{width:24.570000px;}
._13_c00491{width:25.740000px;}
._1d_c00491{width:27.360000px;}
._1f_c00491{width:28.422000px;}
._1e_c00491{width:30.558000px;}
._23_c00491{width:32.154000px;}
._6_c00491{width:34.278000px;}
._11_c00491{width:43.380000px;}
._25_c00491{width:70.857000px;}
._d_c00491{width:73.920000px;}
._1_c00491{width:205.380000px;}
._20_c00491{width:404.073000px;}
.fc2_c00491{color:transparent;}
.fc1_c00491{color:rgb(128,128,128);}
.fc0_c00491{color:rgb(0,0,0);}
.fs7_c00491{font-size:36.000000px;}
.fs8_c00491{font-size:40.800000px;}
.fs4_c00491{font-size:48.000000px;}
.fs6_c00491{font-size:51.000000px;}
.fs2_c00491{font-size:54.000000px;}
.fs5_c00491{font-size:57.000000px;}
.fs1_c00491{font-size:60.000000px;}
.fs0_c00491{font-size:63.000000px;}
.fs3_c00491{font-size:66.000000px;}
.y0_c00491{bottom:0.000000px;}
.y58_c00491{bottom:3.105000px;}
.y57_c00491{bottom:7.228371px;}
.y54_c00491{bottom:43.965000px;}
.y4b_c00491{bottom:58.065000px;}
.y53_c00491{bottom:61.815000px;}
.y4a_c00491{bottom:77.265000px;}
.y52_c00491{bottom:79.665000px;}
.y56_c00491{bottom:83.715000px;}
.y49_c00491{bottom:94.815000px;}
.y51_c00491{bottom:98.265000px;}
.y55_c00491{bottom:103.665000px;}
.y48_c00491{bottom:113.415000px;}
.y50_c00491{bottom:116.415000px;}
.y47_c00491{bottom:132.015000px;}
.y4f_c00491{bottom:134.415000px;}
.y46_c00491{bottom:149.865000px;}
.y4e_c00491{bottom:152.865000px;}
.y45_c00491{bottom:168.165000px;}
.y4d_c00491{bottom:170.565000px;}
.y44_c00491{bottom:186.615000px;}
.y4c_c00491{bottom:189.015000px;}
.y43_c00491{bottom:205.665000px;}
.y21_c00491{bottom:222.765000px;}
.y40_c00491{bottom:225.165000px;}
.y20_c00491{bottom:240.615000px;}
.y3f_c00491{bottom:243.465000px;}
.y1f_c00491{bottom:258.915000px;}
.y3e_c00491{bottom:261.615000px;}
.y1e_c00491{bottom:277.065000px;}
.y3d_c00491{bottom:280.215000px;}
.y1d_c00491{bottom:294.315000px;}
.y3c_c00491{bottom:297.315000px;}
.y1c_c00491{bottom:312.315000px;}
.y3b_c00491{bottom:315.315000px;}
.y1b_c00491{bottom:330.165000px;}
.y3a_c00491{bottom:333.915000px;}
.y1a_c00491{bottom:348.315000px;}
.y39_c00491{bottom:351.315000px;}
.y19_c00491{bottom:366.615000px;}
.y38_c00491{bottom:369.015000px;}
.y18_c00491{bottom:384.765000px;}
.y37_c00491{bottom:387.765000px;}
.y17_c00491{bottom:403.965000px;}
.y36_c00491{bottom:405.465000px;}
.y16_c00491{bottom:421.215000px;}
.y35_c00491{bottom:423.615000px;}
.y15_c00491{bottom:439.065000px;}
.y34_c00491{bottom:442.215000px;}
.y14_c00491{bottom:457.065000px;}
.y33_c00491{bottom:459.465000px;}
.y13_c00491{bottom:475.215000px;}
.y32_c00491{bottom:478.215000px;}
.y12_c00491{bottom:493.515000px;}
.y31_c00491{bottom:495.765000px;}
.y11_c00491{bottom:511.665000px;}
.y30_c00491{bottom:514.665000px;}
.y10_c00491{bottom:529.665000px;}
.y2f_c00491{bottom:532.215000px;}
.yf_c00491{bottom:547.815000px;}
.y2e_c00491{bottom:550.215000px;}
.ye_c00491{bottom:565.665000px;}
.y2d_c00491{bottom:567.765000px;}
.yd_c00491{bottom:583.515000px;}
.y2c_c00491{bottom:585.915000px;}
.y42_c00491{bottom:588.315000px;}
.yc_c00491{bottom:601.515000px;}
.y2b_c00491{bottom:603.915000px;}
.y41_c00491{bottom:605.565000px;}
.yb_c00491{bottom:619.665000px;}
.y2a_c00491{bottom:622.065000px;}
.ya_c00491{bottom:637.965000px;}
.y29_c00491{bottom:641.565000px;}
.y9_c00491{bottom:656.115000px;}
.y28_c00491{bottom:658.815000px;}
.y8_c00491{bottom:674.115000px;}
.y27_c00491{bottom:677.415000px;}
.y7_c00491{bottom:692.265000px;}
.y26_c00491{bottom:695.265000px;}
.y6_c00491{bottom:710.565000px;}
.y25_c00491{bottom:714.165000px;}
.y5_c00491{bottom:729.465000px;}
.y24_c00491{bottom:731.115000px;}
.y4_c00491{bottom:747.615000px;}
.y23_c00491{bottom:750.015000px;}
.y3_c00491{bottom:765.915000px;}
.y22_c00491{bottom:768.615000px;}
.y2_c00491{bottom:785.415000px;}
.y1_c00491{bottom:803.715000px;}
.ha_c00491{height:13.200074px;}
.hb_c00491{height:43.804688px;}
.h8_c00491{height:53.448000px;}
.h4_c00491{height:56.592000px;}
.h7_c00491{height:59.690918px;}
.h6_c00491{height:59.736000px;}
.h3_c00491{height:62.880000px;}
.h2_c00491{height:66.024000px;}
.h9_c00491{height:69.168000px;}
.h5_c00491{height:70.422000px;}
.h0_c00491{height:848.625000px;}
.h1_c00491{height:849.000000px;}
.w2_c00491{width:104.875500px;}
.w1_c00491{width:579.750000px;}
.w0_c00491{width:579.975000px;}
.x0_c00491{left:0.000000px;}
.x5_c00491{left:32.100000px;}
.x6_c00491{left:35.100000px;}
.x1_c00491{left:90.750000px;}
.x3_c00491{left:91.800000px;}
.x2_c00491{left:93.150000px;}
.x4_c00491{left:94.200000px;}
.xe_c00491{left:241.801758px;}
.x9_c00491{left:309.450000px;}
.x7_c00491{left:311.100000px;}
.x8_c00491{left:312.150000px;}
.xa_c00491{left:313.500000px;}
.xc_c00491{left:487.950000px;}
.xd_c00491{left:518.100000px;}
.xb_c00491{left:519.300000px;}
@media print{
.v0_c00491{vertical-align:0.000000pt;}
.ls5_c00491{letter-spacing:0.000000pt;}
.ls3_c00491{letter-spacing:2.666667pt;}
.ls1_c00491{letter-spacing:7.936000pt;}
.ls6_c00491{letter-spacing:8.000000pt;}
.ls2_c00491{letter-spacing:8.888000pt;}
.ls0_c00491{letter-spacing:10.133333pt;}
.ls4_c00491{letter-spacing:16.576000pt;}
.ws3_c00491{word-spacing:-36.946667pt;}
.wsa_c00491{word-spacing:-21.845333pt;}
.ws1_c00491{word-spacing:-17.333333pt;}
.ws9_c00491{word-spacing:-12.765867pt;}
.ws5_c00491{word-spacing:-12.746667pt;}
.ws8_c00491{word-spacing:-12.586667pt;}
.ws2_c00491{word-spacing:-11.328000pt;}
.ws4_c00491{word-spacing:-10.381333pt;}
.ws7_c00491{word-spacing:-3.722667pt;}
.wsb_c00491{word-spacing:0.000000pt;}
.ws6_c00491{word-spacing:0.853333pt;}
.ws0_c00491{word-spacing:1.706667pt;}
._1c_c00491{margin-left:-10.400000pt;}
._22_c00491{margin-left:-9.440000pt;}
._19_c00491{margin-left:-8.549333pt;}
._17_c00491{margin-left:-6.720000pt;}
._16_c00491{margin-left:-5.104000pt;}
._b_c00491{margin-left:-3.733333pt;}
._c_c00491{margin-left:-2.293333pt;}
._9_c00491{margin-left:-1.280000pt;}
._a_c00491{width:1.600000pt;}
._f_c00491{width:2.736000pt;}
._10_c00491{width:3.906667pt;}
._8_c00491{width:5.530667pt;}
._0_c00491{width:6.776000pt;}
._2_c00491{width:7.840000pt;}
._1a_c00491{width:8.906667pt;}
._5_c00491{width:9.800000pt;}
._4_c00491{width:10.696000pt;}
._e_c00491{width:11.586667pt;}
._3_c00491{width:12.824000pt;}
._21_c00491{width:13.768000pt;}
._15_c00491{width:14.826667pt;}
._7_c00491{width:16.130667pt;}
._18_c00491{width:17.341333pt;}
._24_c00491{width:18.698667pt;}
._1b_c00491{width:19.786667pt;}
._14_c00491{width:20.858667pt;}
._12_c00491{width:21.840000pt;}
._13_c00491{width:22.880000pt;}
._1d_c00491{width:24.320000pt;}
._1f_c00491{width:25.264000pt;}
._1e_c00491{width:27.162667pt;}
._23_c00491{width:28.581333pt;}
._6_c00491{width:30.469333pt;}
._11_c00491{width:38.560000pt;}
._25_c00491{width:62.984000pt;}
._d_c00491{width:65.706667pt;}
._1_c00491{width:182.560000pt;}
._20_c00491{width:359.176000pt;}
.fs7_c00491{font-size:32.000000pt;}
.fs8_c00491{font-size:36.266667pt;}
.fs4_c00491{font-size:42.666667pt;}
.fs6_c00491{font-size:45.333333pt;}
.fs2_c00491{font-size:48.000000pt;}
.fs5_c00491{font-size:50.666667pt;}
.fs1_c00491{font-size:53.333333pt;}
.fs0_c00491{font-size:56.000000pt;}
.fs3_c00491{font-size:58.666667pt;}
.y0_c00491{bottom:0.000000pt;}
.y58_c00491{bottom:2.760000pt;}
.y57_c00491{bottom:6.425219pt;}
.y54_c00491{bottom:39.080000pt;}
.y4b_c00491{bottom:51.613333pt;}
.y53_c00491{bottom:54.946667pt;}
.y4a_c00491{bottom:68.680000pt;}
.y52_c00491{bottom:70.813333pt;}
.y56_c00491{bottom:74.413333pt;}
.y49_c00491{bottom:84.280000pt;}
.y51_c00491{bottom:87.346667pt;}
.y55_c00491{bottom:92.146667pt;}
.y48_c00491{bottom:100.813333pt;}
.y50_c00491{bottom:103.480000pt;}
.y47_c00491{bottom:117.346667pt;}
.y4f_c00491{bottom:119.480000pt;}
.y46_c00491{bottom:133.213333pt;}
.y4e_c00491{bottom:135.880000pt;}
.y45_c00491{bottom:149.480000pt;}
.y4d_c00491{bottom:151.613333pt;}
.y44_c00491{bottom:165.880000pt;}
.y4c_c00491{bottom:168.013333pt;}
.y43_c00491{bottom:182.813333pt;}
.y21_c00491{bottom:198.013333pt;}
.y40_c00491{bottom:200.146667pt;}
.y20_c00491{bottom:213.880000pt;}
.y3f_c00491{bottom:216.413333pt;}
.y1f_c00491{bottom:230.146667pt;}
.y3e_c00491{bottom:232.546667pt;}
.y1e_c00491{bottom:246.280000pt;}
.y3d_c00491{bottom:249.080000pt;}
.y1d_c00491{bottom:261.613333pt;}
.y3c_c00491{bottom:264.280000pt;}
.y1c_c00491{bottom:277.613333pt;}
.y3b_c00491{bottom:280.280000pt;}
.y1b_c00491{bottom:293.480000pt;}
.y3a_c00491{bottom:296.813333pt;}
.y1a_c00491{bottom:309.613333pt;}
.y39_c00491{bottom:312.280000pt;}
.y19_c00491{bottom:325.880000pt;}
.y38_c00491{bottom:328.013333pt;}
.y18_c00491{bottom:342.013333pt;}
.y37_c00491{bottom:344.680000pt;}
.y17_c00491{bottom:359.080000pt;}
.y36_c00491{bottom:360.413333pt;}
.y16_c00491{bottom:374.413333pt;}
.y35_c00491{bottom:376.546667pt;}
.y15_c00491{bottom:390.280000pt;}
.y34_c00491{bottom:393.080000pt;}
.y14_c00491{bottom:406.280000pt;}
.y33_c00491{bottom:408.413333pt;}
.y13_c00491{bottom:422.413333pt;}
.y32_c00491{bottom:425.080000pt;}
.y12_c00491{bottom:438.680000pt;}
.y31_c00491{bottom:440.680000pt;}
.y11_c00491{bottom:454.813333pt;}
.y30_c00491{bottom:457.480000pt;}
.y10_c00491{bottom:470.813333pt;}
.y2f_c00491{bottom:473.080000pt;}
.yf_c00491{bottom:486.946667pt;}
.y2e_c00491{bottom:489.080000pt;}
.ye_c00491{bottom:502.813333pt;}
.y2d_c00491{bottom:504.680000pt;}
.yd_c00491{bottom:518.680000pt;}
.y2c_c00491{bottom:520.813333pt;}
.y42_c00491{bottom:522.946667pt;}
.yc_c00491{bottom:534.680000pt;}
.y2b_c00491{bottom:536.813333pt;}
.y41_c00491{bottom:538.280000pt;}
.yb_c00491{bottom:550.813333pt;}
.y2a_c00491{bottom:552.946667pt;}
.ya_c00491{bottom:567.080000pt;}
.y29_c00491{bottom:570.280000pt;}
.y9_c00491{bottom:583.213333pt;}
.y28_c00491{bottom:585.613333pt;}
.y8_c00491{bottom:599.213333pt;}
.y27_c00491{bottom:602.146667pt;}
.y7_c00491{bottom:615.346667pt;}
.y26_c00491{bottom:618.013333pt;}
.y6_c00491{bottom:631.613333pt;}
.y25_c00491{bottom:634.813333pt;}
.y5_c00491{bottom:648.413333pt;}
.y24_c00491{bottom:649.880000pt;}
.y4_c00491{bottom:664.546667pt;}
.y23_c00491{bottom:666.680000pt;}
.y3_c00491{bottom:680.813333pt;}
.y22_c00491{bottom:683.213333pt;}
.y2_c00491{bottom:698.146667pt;}
.y1_c00491{bottom:714.413333pt;}
.ha_c00491{height:11.733399pt;}
.hb_c00491{height:38.937500pt;}
.h8_c00491{height:47.509333pt;}
.h4_c00491{height:50.304000pt;}
.h7_c00491{height:53.058594pt;}
.h6_c00491{height:53.098667pt;}
.h3_c00491{height:55.893333pt;}
.h2_c00491{height:58.688000pt;}
.h9_c00491{height:61.482667pt;}
.h5_c00491{height:62.597333pt;}
.h0_c00491{height:754.333333pt;}
.h1_c00491{height:754.666667pt;}
.w2_c00491{width:93.222667pt;}
.w1_c00491{width:515.333333pt;}
.w0_c00491{width:515.533333pt;}
.x0_c00491{left:0.000000pt;}
.x5_c00491{left:28.533333pt;}
.x6_c00491{left:31.200000pt;}
.x1_c00491{left:80.666667pt;}
.x3_c00491{left:81.600000pt;}
.x2_c00491{left:82.800000pt;}
.x4_c00491{left:83.733333pt;}
.xe_c00491{left:214.934896pt;}
.x9_c00491{left:275.066667pt;}
.x7_c00491{left:276.533333pt;}
.x8_c00491{left:277.466667pt;}
.xa_c00491{left:278.666667pt;}
.xc_c00491{left:433.733333pt;}
.xd_c00491{left:460.533333pt;}
.xb_c00491{left:461.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a239775e97b1f758353d52c4.woff2')format("woff");}.ff1_c00492{font-family:ff1_c00492;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00492;src:url('chunks/assets/font_9ca66bd4d13ca816cd21dd52.woff2')format("woff");}.ff2_c00492{font-family:ff2_c00492;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00492;src:url('chunks/assets/font_d021ef5e95a4e3f474c51538.woff2')format("woff");}.ff3_c00492{font-family:ff3_c00492;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00492;src:url('chunks/assets/font_4e37ce6e4db16248895dd893.woff2')format("woff");}.ff4_c00492{font-family:ff4_c00492;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00492;src:url('chunks/assets/font_f55bfad9c22ac08456361f08.woff2')format("woff");}.ff5_c00492{font-family:ff5_c00492;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00492;src:url('chunks/assets/font_2ac5f86f50099935af3bb9bb.woff2')format("woff");}.ff6_c00492{font-family:ff6_c00492;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00492;src:url('chunks/assets/font_88ccf5cf22f43e09846b7345.woff2')format("woff");}.ff7_c00492{font-family:ff7_c00492;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00492;src:url('chunks/assets/font_94805fc5732d637d078fdaaa.woff2')format("woff");}.ff8_c00492{font-family:ff8_c00492;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00492;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff9_c00492{font-family:ff9_c00492;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00492{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00492{vertical-align:0.000000px;}
.v1_c00492{vertical-align:96.600000px;}
.ls3_c00492{letter-spacing:-3.000000px;}
.ls1_c00492{letter-spacing:0.000000px;}
.ls0_c00492{letter-spacing:3.000000px;}
.ls4_c00492{letter-spacing:6.000000px;}
.ls2_c00492{letter-spacing:9.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;}
}
.ws3_c00492{word-spacing:-47.439000px;}
.ws6_c00492{word-spacing:-35.961000px;}
.ws1_c00492{word-spacing:-22.452000px;}
.ws0_c00492{word-spacing:-14.427000px;}
.ws4_c00492{word-spacing:-14.160000px;}
.ws2_c00492{word-spacing:-13.452000px;}
.ws7_c00492{word-spacing:0.000000px;}
.ws5_c00492{word-spacing:0.063000px;}
._2d_c00492{margin-left:-23.436000px;}
._18_c00492{margin-left:-20.361000px;}
._24_c00492{margin-left:-15.000000px;}
._20_c00492{margin-left:-13.332000px;}
._21_c00492{margin-left:-11.718000px;}
._17_c00492{margin-left:-9.879000px;}
._23_c00492{margin-left:-8.211000px;}
._1a_c00492{margin-left:-6.597000px;}
._16_c00492{margin-left:-4.938000px;}
._2_c00492{margin-left:-3.360000px;}
._0_c00492{margin-left:-2.088000px;}
._1_c00492{margin-left:-1.080000px;}
._f_c00492{width:1.260000px;}
._c_c00492{width:2.700000px;}
._d_c00492{width:4.080000px;}
._5_c00492{width:5.232000px;}
._a_c00492{width:6.816000px;}
._7_c00492{width:8.208000px;}
._6_c00492{width:9.264000px;}
._9_c00492{width:10.656000px;}
._b_c00492{width:11.760000px;}
._11_c00492{width:13.701000px;}
._3_c00492{width:15.600000px;}
._19_c00492{width:17.232000px;}
._4_c00492{width:18.816000px;}
._12_c00492{width:20.667000px;}
._10_c00492{width:22.302000px;}
._13_c00492{width:24.180000px;}
._14_c00492{width:25.578000px;}
._27_c00492{width:26.673000px;}
._1b_c00492{width:28.404000px;}
._1e_c00492{width:30.978000px;}
._1d_c00492{width:32.337000px;}
._1c_c00492{width:35.025000px;}
._15_c00492{width:36.777000px;}
._1f_c00492{width:43.380000px;}
._8_c00492{width:53.952000px;}
._2a_c00492{width:55.101000px;}
._2e_c00492{width:59.283000px;}
._2b_c00492{width:61.635000px;}
._e_c00492{width:63.270000px;}
._25_c00492{width:73.413000px;}
._28_c00492{width:76.695000px;}
._26_c00492{width:86.898000px;}
._29_c00492{width:94.458000px;}
._22_c00492{width:113.085000px;}
._2f_c00492{width:167.538000px;}
._30_c00492{width:181.695000px;}
._2c_c00492{width:862.443000px;}
.fc2_c00492{color:transparent;}
.fc1_c00492{color:rgb(128,128,128);}
.fc0_c00492{color:rgb(0,0,0);}
.fs1_c00492{font-size:48.000000px;}
.fs2_c00492{font-size:54.000000px;}
.fs5_c00492{font-size:57.000000px;}
.fs3_c00492{font-size:60.000000px;}
.fs4_c00492{font-size:63.000000px;}
.fs6_c00492{font-size:69.000000px;}
.fs0_c00492{font-size:72.000000px;}
.fs8_c00492{font-size:81.000000px;}
.fs7_c00492{font-size:189.000000px;}
.y0_c00492{bottom:0.000000px;}
.y4c_c00492{bottom:3.105000px;}
.y4b_c00492{bottom:7.228363px;}
.y4a_c00492{bottom:43.500000px;}
.y49_c00492{bottom:63.450000px;}
.y41_c00492{bottom:81.900000px;}
.y48_c00492{bottom:84.300000px;}
.y40_c00492{bottom:99.150000px;}
.y47_c00492{bottom:102.600000px;}
.y3f_c00492{bottom:117.750000px;}
.y46_c00492{bottom:120.000000px;}
.y3e_c00492{bottom:136.650000px;}
.y45_c00492{bottom:138.300000px;}
.y3d_c00492{bottom:154.500000px;}
.y44_c00492{bottom:156.600000px;}
.y3c_c00492{bottom:172.800000px;}
.y43_c00492{bottom:174.450000px;}
.y3b_c00492{bottom:191.250000px;}
.y42_c00492{bottom:192.000000px;}
.y3a_c00492{bottom:210.150000px;}
.y39_c00492{bottom:228.450000px;}
.y38_c00492{bottom:246.300000px;}
.y36_c00492{bottom:252.150000px;}
.y37_c00492{bottom:262.950000px;}
.y35_c00492{bottom:266.250000px;}
.y1d_c00492{bottom:281.700000px;}
.y34_c00492{bottom:283.200000px;}
.y1c_c00492{bottom:299.250000px;}
.y33_c00492{bottom:303.300000px;}
.y1b_c00492{bottom:316.800000px;}
.y32_c00492{bottom:319.650000px;}
.y1a_c00492{bottom:334.500000px;}
.y31_c00492{bottom:337.800000px;}
.y19_c00492{bottom:352.800000px;}
.y30_c00492{bottom:356.100000px;}
.y18_c00492{bottom:370.800000px;}
.y2f_c00492{bottom:374.250000px;}
.y17_c00492{bottom:388.800000px;}
.y2e_c00492{bottom:391.800000px;}
.y16_c00492{bottom:406.650000px;}
.y2d_c00492{bottom:410.100000px;}
.y15_c00492{bottom:424.950000px;}
.y2c_c00492{bottom:427.950000px;}
.y2a_c00492{bottom:440.250000px;}
.y14_c00492{bottom:442.800000px;}
.y2b_c00492{bottom:447.900000px;}
.y13_c00492{bottom:460.650000px;}
.y12_c00492{bottom:478.950000px;}
.y11_c00492{bottom:496.500000px;}
.y29_c00492{bottom:498.450000px;}
.y10_c00492{bottom:514.350000px;}
.y28_c00492{bottom:517.350000px;}
.yf_c00492{bottom:531.150000px;}
.y27_c00492{bottom:535.500000px;}
.ye_c00492{bottom:549.000000px;}
.y26_c00492{bottom:553.050000px;}
.yd_c00492{bottom:567.600000px;}
.yc_c00492{bottom:584.850000px;}
.y25_c00492{bottom:587.250000px;}
.yb_c00492{bottom:603.150000px;}
.ya_c00492{bottom:621.900000px;}
.y24_c00492{bottom:623.400000px;}
.y9_c00492{bottom:639.450000px;}
.y23_c00492{bottom:642.150000px;}
.y8_c00492{bottom:657.450000px;}
.y22_c00492{bottom:660.150000px;}
.y7_c00492{bottom:676.350000px;}
.y21_c00492{bottom:678.000000px;}
.y6_c00492{bottom:693.600000px;}
.y20_c00492{bottom:696.300000px;}
.y5_c00492{bottom:711.750000px;}
.y1f_c00492{bottom:715.050000px;}
.y4_c00492{bottom:729.600000px;}
.y1e_c00492{bottom:733.350000px;}
.y3_c00492{bottom:750.150000px;}
.y2_c00492{bottom:767.850000px;}
.y1_c00492{bottom:785.400000px;}
.ha_c00492{height:13.200074px;}
.hb_c00492{height:43.804688px;}
.h3_c00492{height:56.592000px;}
.h6_c00492{height:59.736000px;}
.h2_c00492{height:62.880000px;}
.h4_c00492{height:66.024000px;}
.h9_c00492{height:67.221000px;}
.h1_c00492{height:70.664062px;}
.h5_c00492{height:73.623000px;}
.h8_c00492{height:86.427000px;}
.h7_c00492{height:198.072000px;}
.h0_c00492{height:843.750000px;}
.w2_c00492{width:104.875500px;}
.w1_c00492{width:579.750000px;}
.w0_c00492{width:579.975000px;}
.x0_c00492{left:0.000000px;}
.xe_c00492{left:63.450000px;}
.x1_c00492{left:64.800000px;}
.x2_c00492{left:66.450000px;}
.xc_c00492{left:75.000000px;}
.xf_c00492{left:241.801758px;}
.xd_c00492{left:280.500000px;}
.xa_c00492{left:281.550000px;}
.x9_c00492{left:282.600000px;}
.x3_c00492{left:284.100000px;}
.x4_c00492{left:285.150000px;}
.x6_c00492{left:311.850000px;}
.x8_c00492{left:323.400000px;}
.x5_c00492{left:354.150000px;}
.x7_c00492{left:359.400000px;}
.xb_c00492{left:454.350000px;}
@media print{
.v0_c00492{vertical-align:0.000000pt;}
.v1_c00492{vertical-align:85.866667pt;}
.ls3_c00492{letter-spacing:-2.666667pt;}
.ls1_c00492{letter-spacing:0.000000pt;}
.ls0_c00492{letter-spacing:2.666667pt;}
.ls4_c00492{letter-spacing:5.333333pt;}
.ls2_c00492{letter-spacing:8.000000pt;}
.ws3_c00492{word-spacing:-42.168000pt;}
.ws6_c00492{word-spacing:-31.965333pt;}
.ws1_c00492{word-spacing:-19.957333pt;}
.ws0_c00492{word-spacing:-12.824000pt;}
.ws4_c00492{word-spacing:-12.586667pt;}
.ws2_c00492{word-spacing:-11.957333pt;}
.ws7_c00492{word-spacing:0.000000pt;}
.ws5_c00492{word-spacing:0.056000pt;}
._2d_c00492{margin-left:-20.832000pt;}
._18_c00492{margin-left:-18.098667pt;}
._24_c00492{margin-left:-13.333333pt;}
._20_c00492{margin-left:-11.850667pt;}
._21_c00492{margin-left:-10.416000pt;}
._17_c00492{margin-left:-8.781333pt;}
._23_c00492{margin-left:-7.298667pt;}
._1a_c00492{margin-left:-5.864000pt;}
._16_c00492{margin-left:-4.389333pt;}
._2_c00492{margin-left:-2.986667pt;}
._0_c00492{margin-left:-1.856000pt;}
._1_c00492{margin-left:-0.960000pt;}
._f_c00492{width:1.120000pt;}
._c_c00492{width:2.400000pt;}
._d_c00492{width:3.626667pt;}
._5_c00492{width:4.650667pt;}
._a_c00492{width:6.058667pt;}
._7_c00492{width:7.296000pt;}
._6_c00492{width:8.234667pt;}
._9_c00492{width:9.472000pt;}
._b_c00492{width:10.453333pt;}
._11_c00492{width:12.178667pt;}
._3_c00492{width:13.866667pt;}
._19_c00492{width:15.317333pt;}
._4_c00492{width:16.725333pt;}
._12_c00492{width:18.370667pt;}
._10_c00492{width:19.824000pt;}
._13_c00492{width:21.493333pt;}
._14_c00492{width:22.736000pt;}
._27_c00492{width:23.709333pt;}
._1b_c00492{width:25.248000pt;}
._1e_c00492{width:27.536000pt;}
._1d_c00492{width:28.744000pt;}
._1c_c00492{width:31.133333pt;}
._15_c00492{width:32.690667pt;}
._1f_c00492{width:38.560000pt;}
._8_c00492{width:47.957333pt;}
._2a_c00492{width:48.978667pt;}
._2e_c00492{width:52.696000pt;}
._2b_c00492{width:54.786667pt;}
._e_c00492{width:56.240000pt;}
._25_c00492{width:65.256000pt;}
._28_c00492{width:68.173333pt;}
._26_c00492{width:77.242667pt;}
._29_c00492{width:83.962667pt;}
._22_c00492{width:100.520000pt;}
._2f_c00492{width:148.922667pt;}
._30_c00492{width:161.506667pt;}
._2c_c00492{width:766.616000pt;}
.fs1_c00492{font-size:42.666667pt;}
.fs2_c00492{font-size:48.000000pt;}
.fs5_c00492{font-size:50.666667pt;}
.fs3_c00492{font-size:53.333333pt;}
.fs4_c00492{font-size:56.000000pt;}
.fs6_c00492{font-size:61.333333pt;}
.fs0_c00492{font-size:64.000000pt;}
.fs8_c00492{font-size:72.000000pt;}
.fs7_c00492{font-size:168.000000pt;}
.y0_c00492{bottom:0.000000pt;}
.y4c_c00492{bottom:2.760000pt;}
.y4b_c00492{bottom:6.425212pt;}
.y4a_c00492{bottom:38.666667pt;}
.y49_c00492{bottom:56.400000pt;}
.y41_c00492{bottom:72.800000pt;}
.y48_c00492{bottom:74.933333pt;}
.y40_c00492{bottom:88.133333pt;}
.y47_c00492{bottom:91.200000pt;}
.y3f_c00492{bottom:104.666667pt;}
.y46_c00492{bottom:106.666667pt;}
.y3e_c00492{bottom:121.466667pt;}
.y45_c00492{bottom:122.933333pt;}
.y3d_c00492{bottom:137.333333pt;}
.y44_c00492{bottom:139.200000pt;}
.y3c_c00492{bottom:153.600000pt;}
.y43_c00492{bottom:155.066667pt;}
.y3b_c00492{bottom:170.000000pt;}
.y42_c00492{bottom:170.666667pt;}
.y3a_c00492{bottom:186.800000pt;}
.y39_c00492{bottom:203.066667pt;}
.y38_c00492{bottom:218.933333pt;}
.y36_c00492{bottom:224.133333pt;}
.y37_c00492{bottom:233.733333pt;}
.y35_c00492{bottom:236.666667pt;}
.y1d_c00492{bottom:250.400000pt;}
.y34_c00492{bottom:251.733333pt;}
.y1c_c00492{bottom:266.000000pt;}
.y33_c00492{bottom:269.600000pt;}
.y1b_c00492{bottom:281.600000pt;}
.y32_c00492{bottom:284.133333pt;}
.y1a_c00492{bottom:297.333333pt;}
.y31_c00492{bottom:300.266667pt;}
.y19_c00492{bottom:313.600000pt;}
.y30_c00492{bottom:316.533333pt;}
.y18_c00492{bottom:329.600000pt;}
.y2f_c00492{bottom:332.666667pt;}
.y17_c00492{bottom:345.600000pt;}
.y2e_c00492{bottom:348.266667pt;}
.y16_c00492{bottom:361.466667pt;}
.y2d_c00492{bottom:364.533333pt;}
.y15_c00492{bottom:377.733333pt;}
.y2c_c00492{bottom:380.400000pt;}
.y2a_c00492{bottom:391.333333pt;}
.y14_c00492{bottom:393.600000pt;}
.y2b_c00492{bottom:398.133333pt;}
.y13_c00492{bottom:409.466667pt;}
.y12_c00492{bottom:425.733333pt;}
.y11_c00492{bottom:441.333333pt;}
.y29_c00492{bottom:443.066667pt;}
.y10_c00492{bottom:457.200000pt;}
.y28_c00492{bottom:459.866667pt;}
.yf_c00492{bottom:472.133333pt;}
.y27_c00492{bottom:476.000000pt;}
.ye_c00492{bottom:488.000000pt;}
.y26_c00492{bottom:491.600000pt;}
.yd_c00492{bottom:504.533333pt;}
.yc_c00492{bottom:519.866667pt;}
.y25_c00492{bottom:522.000000pt;}
.yb_c00492{bottom:536.133333pt;}
.ya_c00492{bottom:552.800000pt;}
.y24_c00492{bottom:554.133333pt;}
.y9_c00492{bottom:568.400000pt;}
.y23_c00492{bottom:570.800000pt;}
.y8_c00492{bottom:584.400000pt;}
.y22_c00492{bottom:586.800000pt;}
.y7_c00492{bottom:601.200000pt;}
.y21_c00492{bottom:602.666667pt;}
.y6_c00492{bottom:616.533333pt;}
.y20_c00492{bottom:618.933333pt;}
.y5_c00492{bottom:632.666667pt;}
.y1f_c00492{bottom:635.600000pt;}
.y4_c00492{bottom:648.533333pt;}
.y1e_c00492{bottom:651.866667pt;}
.y3_c00492{bottom:666.800000pt;}
.y2_c00492{bottom:682.533333pt;}
.y1_c00492{bottom:698.133333pt;}
.ha_c00492{height:11.733399pt;}
.hb_c00492{height:38.937500pt;}
.h3_c00492{height:50.304000pt;}
.h6_c00492{height:53.098667pt;}
.h2_c00492{height:55.893333pt;}
.h4_c00492{height:58.688000pt;}
.h9_c00492{height:59.752000pt;}
.h1_c00492{height:62.812500pt;}
.h5_c00492{height:65.442667pt;}
.h8_c00492{height:76.824000pt;}
.h7_c00492{height:176.064000pt;}
.h0_c00492{height:750.000000pt;}
.w2_c00492{width:93.222667pt;}
.w1_c00492{width:515.333333pt;}
.w0_c00492{width:515.533333pt;}
.x0_c00492{left:0.000000pt;}
.xe_c00492{left:56.400000pt;}
.x1_c00492{left:57.600000pt;}
.x2_c00492{left:59.066667pt;}
.xc_c00492{left:66.666667pt;}
.xf_c00492{left:214.934896pt;}
.xd_c00492{left:249.333333pt;}
.xa_c00492{left:250.266667pt;}
.x9_c00492{left:251.200000pt;}
.x3_c00492{left:252.533333pt;}
.x4_c00492{left:253.466667pt;}
.x6_c00492{left:277.200000pt;}
.x8_c00492{left:287.466667pt;}
.x5_c00492{left:314.800000pt;}
.x7_c00492{left:319.466667pt;}
.xb_c00492{left:403.866667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_9cf872d9ade87647bbe405ba.woff2')format("woff");}.ff1_c00493{font-family:ff1_c00493;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00493;src:url('chunks/assets/font_b913216cfafdaf58010eff29.woff2')format("woff");}.ff2_c00493{font-family:ff2_c00493;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00493;src:url('chunks/assets/font_0885dc7c5bcca3a232073134.woff2')format("woff");}.ff3_c00493{font-family:ff3_c00493;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00493;src:url('chunks/assets/font_ad533533ebeddd7e97321027.woff2')format("woff");}.ff4_c00493{font-family:ff4_c00493;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00493;src:url('chunks/assets/font_b602dd3351ae43cecaabc18a.woff2')format("woff");}.ff5_c00493{font-family:ff5_c00493;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00493;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff6_c00493{font-family:ff6_c00493;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00493;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff7_c00493{font-family:ff7_c00493;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00493{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00493{vertical-align:0.000000px;}
.ls4_c00493{letter-spacing:0.000000px;}
.ls2_c00493{letter-spacing:3.000000px;}
.ls3_c00493{letter-spacing:4.440000px;}
.ls0_c00493{letter-spacing:5.250000px;}
.ls1_c00493{letter-spacing:7.800000px;}
.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:-19.500000px;}
.ws1_c00493{word-spacing:-14.160000px;}
.ws3_c00493{word-spacing:0.000000px;}
.ws2_c00493{word-spacing:2.400000px;}
._14_c00493{margin-left:-12.660000px;}
._20_c00493{margin-left:-9.480000px;}
._16_c00493{margin-left:-7.068000px;}
._d_c00493{margin-left:-4.920000px;}
._12_c00493{margin-left:-3.843000px;}
._7_c00493{margin-left:-2.700000px;}
._3_c00493{margin-left:-1.500000px;}
._5_c00493{width:1.440000px;}
._1_c00493{width:2.460000px;}
._a_c00493{width:3.660000px;}
._4_c00493{width:5.040000px;}
._2_c00493{width:6.732000px;}
._0_c00493{width:7.788000px;}
._1b_c00493{width:9.060000px;}
._6_c00493{width:10.740000px;}
._8_c00493{width:11.760000px;}
._9_c00493{width:13.188000px;}
._1f_c00493{width:15.408000px;}
._15_c00493{width:16.599000px;}
._1d_c00493{width:18.096000px;}
._11_c00493{width:19.752000px;}
._17_c00493{width:21.372000px;}
._13_c00493{width:23.100000px;}
._18_c00493{width:25.140000px;}
._1a_c00493{width:26.400000px;}
._e_c00493{width:27.732000px;}
._1c_c00493{width:28.740000px;}
._19_c00493{width:30.600000px;}
._c_c00493{width:31.980000px;}
._b_c00493{width:36.120000px;}
._1e_c00493{width:38.520000px;}
._f_c00493{width:42.300000px;}
._10_c00493{width:114.060000px;}
.fc2_c00493{color:transparent;}
.fc1_c00493{color:rgb(128,128,128);}
.fc0_c00493{color:rgb(0,0,0);}
.fs3_c00493{font-size:48.000000px;}
.fs2_c00493{font-size:51.000000px;}
.fs1_c00493{font-size:60.000000px;}
.fs0_c00493{font-size:66.000000px;}
.y0_c00493{bottom:0.000000px;}
.y4f_c00493{bottom:3.105000px;}
.y4e_c00493{bottom:7.228371px;}
.y4d_c00493{bottom:39.915000px;}
.y2a_c00493{bottom:57.765000px;}
.y4c_c00493{bottom:58.065000px;}
.y29_c00493{bottom:76.665000px;}
.y4b_c00493{bottom:76.965000px;}
.y28_c00493{bottom:94.815000px;}
.y4a_c00493{bottom:94.965000px;}
.y27_c00493{bottom:113.415000px;}
.y49_c00493{bottom:131.265000px;}
.y26_c00493{bottom:131.415000px;}
.y48_c00493{bottom:149.565000px;}
.y25_c00493{bottom:149.865000px;}
.y24_c00493{bottom:167.865000px;}
.y23_c00493{bottom:186.015000px;}
.y22_c00493{bottom:204.165000px;}
.y21_c00493{bottom:222.165000px;}
.y47_c00493{bottom:222.465000px;}
.y20_c00493{bottom:240.615000px;}
.y46_c00493{bottom:241.065000px;}
.y45_c00493{bottom:258.915000px;}
.y1f_c00493{bottom:259.215000px;}
.y1e_c00493{bottom:277.065000px;}
.y1d_c00493{bottom:294.615000px;}
.y44_c00493{bottom:311.865000px;}
.y1c_c00493{bottom:312.915000px;}
.y43_c00493{bottom:330.765000px;}
.y1b_c00493{bottom:331.215000px;}
.y42_c00493{bottom:348.765000px;}
.y1a_c00493{bottom:349.365000px;}
.y41_c00493{bottom:366.915000px;}
.y19_c00493{bottom:367.515000px;}
.y40_c00493{bottom:385.065000px;}
.y18_c00493{bottom:385.815000px;}
.y3f_c00493{bottom:403.365000px;}
.y17_c00493{bottom:403.665000px;}
.y3e_c00493{bottom:421.215000px;}
.y16_c00493{bottom:421.665000px;}
.y3d_c00493{bottom:439.215000px;}
.y15_c00493{bottom:439.815000px;}
.y3c_c00493{bottom:457.365000px;}
.y14_c00493{bottom:458.115000px;}
.y3b_c00493{bottom:475.515000px;}
.y13_c00493{bottom:476.265000px;}
.y3a_c00493{bottom:493.515000px;}
.y12_c00493{bottom:494.415000px;}
.y39_c00493{bottom:511.965000px;}
.y11_c00493{bottom:512.115000px;}
.y10_c00493{bottom:529.665000px;}
.y38_c00493{bottom:529.965000px;}
.y37_c00493{bottom:547.815000px;}
.yf_c00493{bottom:548.115000px;}
.y36_c00493{bottom:565.665000px;}
.ye_c00493{bottom:565.965000px;}
.y35_c00493{bottom:583.515000px;}
.yd_c00493{bottom:584.265000px;}
.y34_c00493{bottom:601.815000px;}
.yc_c00493{bottom:602.415000px;}
.y33_c00493{bottom:619.965000px;}
.yb_c00493{bottom:620.415000px;}
.y32_c00493{bottom:637.665000px;}
.ya_c00493{bottom:639.015000px;}
.y9_c00493{bottom:656.565000px;}
.y31_c00493{bottom:674.715000px;}
.y8_c00493{bottom:675.015000px;}
.y30_c00493{bottom:692.565000px;}
.y7_c00493{bottom:693.615000px;}
.y2f_c00493{bottom:711.165000px;}
.y6_c00493{bottom:711.765000px;}
.y2e_c00493{bottom:729.015000px;}
.y5_c00493{bottom:729.465000px;}
.y2d_c00493{bottom:747.315000px;}
.y4_c00493{bottom:747.615000px;}
.y2c_c00493{bottom:765.765000px;}
.y3_c00493{bottom:765.915000px;}
.y2b_c00493{bottom:783.465000px;}
.y2_c00493{bottom:784.065000px;}
.y1_c00493{bottom:799.665000px;}
.h5_c00493{height:13.200074px;}
.h6_c00493{height:43.804688px;}
.h3_c00493{height:62.880000px;}
.h4_c00493{height:64.020000px;}
.h2_c00493{height:70.422000px;}
.h0_c00493{height:848.625000px;}
.h1_c00493{height:849.000000px;}
.w2_c00493{width:104.875500px;}
.w1_c00493{width:579.750000px;}
.w0_c00493{width:579.975000px;}
.x0_c00493{left:0.000000px;}
.x1_c00493{left:88.800000px;}
.x2_c00493{left:91.500000px;}
.x3_c00493{left:92.550000px;}
.x4_c00493{left:93.600000px;}
.x5_c00493{left:94.800000px;}
.x6_c00493{left:96.900000px;}
.x7_c00493{left:98.550000px;}
.x9_c00493{left:99.600000px;}
.x8_c00493{left:100.950000px;}
.xa_c00493{left:103.050000px;}
.x17_c00493{left:241.801758px;}
.xb_c00493{left:309.600000px;}
.xc_c00493{left:311.850000px;}
.xe_c00493{left:313.200000px;}
.xf_c00493{left:315.000000px;}
.x10_c00493{left:316.350000px;}
.x11_c00493{left:317.700000px;}
.x12_c00493{left:318.900000px;}
.x13_c00493{left:319.950000px;}
.x14_c00493{left:321.000000px;}
.x15_c00493{left:322.050000px;}
.xd_c00493{left:354.450000px;}
.x16_c00493{left:493.500000px;}
@media print{
.v0_c00493{vertical-align:0.000000pt;}
.ls4_c00493{letter-spacing:0.000000pt;}
.ls2_c00493{letter-spacing:2.666667pt;}
.ls3_c00493{letter-spacing:3.946667pt;}
.ls0_c00493{letter-spacing:4.666667pt;}
.ls1_c00493{letter-spacing:6.933333pt;}
.ws0_c00493{word-spacing:-17.333333pt;}
.ws1_c00493{word-spacing:-12.586667pt;}
.ws3_c00493{word-spacing:0.000000pt;}
.ws2_c00493{word-spacing:2.133333pt;}
._14_c00493{margin-left:-11.253333pt;}
._20_c00493{margin-left:-8.426667pt;}
._16_c00493{margin-left:-6.282667pt;}
._d_c00493{margin-left:-4.373333pt;}
._12_c00493{margin-left:-3.416000pt;}
._7_c00493{margin-left:-2.400000pt;}
._3_c00493{margin-left:-1.333333pt;}
._5_c00493{width:1.280000pt;}
._1_c00493{width:2.186667pt;}
._a_c00493{width:3.253333pt;}
._4_c00493{width:4.480000pt;}
._2_c00493{width:5.984000pt;}
._0_c00493{width:6.922667pt;}
._1b_c00493{width:8.053333pt;}
._6_c00493{width:9.546667pt;}
._8_c00493{width:10.453333pt;}
._9_c00493{width:11.722667pt;}
._1f_c00493{width:13.696000pt;}
._15_c00493{width:14.754667pt;}
._1d_c00493{width:16.085333pt;}
._11_c00493{width:17.557333pt;}
._17_c00493{width:18.997333pt;}
._13_c00493{width:20.533333pt;}
._18_c00493{width:22.346667pt;}
._1a_c00493{width:23.466667pt;}
._e_c00493{width:24.650667pt;}
._1c_c00493{width:25.546667pt;}
._19_c00493{width:27.200000pt;}
._c_c00493{width:28.426667pt;}
._b_c00493{width:32.106667pt;}
._1e_c00493{width:34.240000pt;}
._f_c00493{width:37.600000pt;}
._10_c00493{width:101.386667pt;}
.fs3_c00493{font-size:42.666667pt;}
.fs2_c00493{font-size:45.333333pt;}
.fs1_c00493{font-size:53.333333pt;}
.fs0_c00493{font-size:58.666667pt;}
.y0_c00493{bottom:0.000000pt;}
.y4f_c00493{bottom:2.760000pt;}
.y4e_c00493{bottom:6.425219pt;}
.y4d_c00493{bottom:35.480000pt;}
.y2a_c00493{bottom:51.346667pt;}
.y4c_c00493{bottom:51.613333pt;}
.y29_c00493{bottom:68.146667pt;}
.y4b_c00493{bottom:68.413333pt;}
.y28_c00493{bottom:84.280000pt;}
.y4a_c00493{bottom:84.413333pt;}
.y27_c00493{bottom:100.813333pt;}
.y49_c00493{bottom:116.680000pt;}
.y26_c00493{bottom:116.813333pt;}
.y48_c00493{bottom:132.946667pt;}
.y25_c00493{bottom:133.213333pt;}
.y24_c00493{bottom:149.213333pt;}
.y23_c00493{bottom:165.346667pt;}
.y22_c00493{bottom:181.480000pt;}
.y21_c00493{bottom:197.480000pt;}
.y47_c00493{bottom:197.746667pt;}
.y20_c00493{bottom:213.880000pt;}
.y46_c00493{bottom:214.280000pt;}
.y45_c00493{bottom:230.146667pt;}
.y1f_c00493{bottom:230.413333pt;}
.y1e_c00493{bottom:246.280000pt;}
.y1d_c00493{bottom:261.880000pt;}
.y44_c00493{bottom:277.213333pt;}
.y1c_c00493{bottom:278.146667pt;}
.y43_c00493{bottom:294.013333pt;}
.y1b_c00493{bottom:294.413333pt;}
.y42_c00493{bottom:310.013333pt;}
.y1a_c00493{bottom:310.546667pt;}
.y41_c00493{bottom:326.146667pt;}
.y19_c00493{bottom:326.680000pt;}
.y40_c00493{bottom:342.280000pt;}
.y18_c00493{bottom:342.946667pt;}
.y3f_c00493{bottom:358.546667pt;}
.y17_c00493{bottom:358.813333pt;}
.y3e_c00493{bottom:374.413333pt;}
.y16_c00493{bottom:374.813333pt;}
.y3d_c00493{bottom:390.413333pt;}
.y15_c00493{bottom:390.946667pt;}
.y3c_c00493{bottom:406.546667pt;}
.y14_c00493{bottom:407.213333pt;}
.y3b_c00493{bottom:422.680000pt;}
.y13_c00493{bottom:423.346667pt;}
.y3a_c00493{bottom:438.680000pt;}
.y12_c00493{bottom:439.480000pt;}
.y39_c00493{bottom:455.080000pt;}
.y11_c00493{bottom:455.213333pt;}
.y10_c00493{bottom:470.813333pt;}
.y38_c00493{bottom:471.080000pt;}
.y37_c00493{bottom:486.946667pt;}
.yf_c00493{bottom:487.213333pt;}
.y36_c00493{bottom:502.813333pt;}
.ye_c00493{bottom:503.080000pt;}
.y35_c00493{bottom:518.680000pt;}
.yd_c00493{bottom:519.346667pt;}
.y34_c00493{bottom:534.946667pt;}
.yc_c00493{bottom:535.480000pt;}
.y33_c00493{bottom:551.080000pt;}
.yb_c00493{bottom:551.480000pt;}
.y32_c00493{bottom:566.813333pt;}
.ya_c00493{bottom:568.013333pt;}
.y9_c00493{bottom:583.613333pt;}
.y31_c00493{bottom:599.746667pt;}
.y8_c00493{bottom:600.013333pt;}
.y30_c00493{bottom:615.613333pt;}
.y7_c00493{bottom:616.546667pt;}
.y2f_c00493{bottom:632.146667pt;}
.y6_c00493{bottom:632.680000pt;}
.y2e_c00493{bottom:648.013333pt;}
.y5_c00493{bottom:648.413333pt;}
.y2d_c00493{bottom:664.280000pt;}
.y4_c00493{bottom:664.546667pt;}
.y2c_c00493{bottom:680.680000pt;}
.y3_c00493{bottom:680.813333pt;}
.y2b_c00493{bottom:696.413333pt;}
.y2_c00493{bottom:696.946667pt;}
.y1_c00493{bottom:710.813333pt;}
.h5_c00493{height:11.733399pt;}
.h6_c00493{height:38.937500pt;}
.h3_c00493{height:55.893333pt;}
.h4_c00493{height:56.906667pt;}
.h2_c00493{height:62.597333pt;}
.h0_c00493{height:754.333333pt;}
.h1_c00493{height:754.666667pt;}
.w2_c00493{width:93.222667pt;}
.w1_c00493{width:515.333333pt;}
.w0_c00493{width:515.533333pt;}
.x0_c00493{left:0.000000pt;}
.x1_c00493{left:78.933333pt;}
.x2_c00493{left:81.333333pt;}
.x3_c00493{left:82.266667pt;}
.x4_c00493{left:83.200000pt;}
.x5_c00493{left:84.266667pt;}
.x6_c00493{left:86.133333pt;}
.x7_c00493{left:87.600000pt;}
.x9_c00493{left:88.533333pt;}
.x8_c00493{left:89.733333pt;}
.xa_c00493{left:91.600000pt;}
.x17_c00493{left:214.934896pt;}
.xb_c00493{left:275.200000pt;}
.xc_c00493{left:277.200000pt;}
.xe_c00493{left:278.400000pt;}
.xf_c00493{left:280.000000pt;}
.x10_c00493{left:281.200000pt;}
.x11_c00493{left:282.400000pt;}
.x12_c00493{left:283.466667pt;}
.x13_c00493{left:284.400000pt;}
.x14_c00493{left:285.333333pt;}
.x15_c00493{left:286.266667pt;}
.xd_c00493{left:315.066667pt;}
.x16_c00493{left:438.666667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_6a5201ec0079cf211aa1f0f3.woff2')format("woff");}.ff1_c00494{font-family:ff1_c00494;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00494;src:url('chunks/assets/font_97ae3e724896fc5ab002cc21.woff2')format("woff");}.ff2_c00494{font-family:ff2_c00494;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00494;src:url('chunks/assets/font_96a6b79f3de55ab8d556d668.woff2')format("woff");}.ff3_c00494{font-family:ff3_c00494;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00494;src:url('chunks/assets/font_2ab152108c336f78ae609dbd.woff2')format("woff");}.ff4_c00494{font-family:ff4_c00494;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00494;src:url('chunks/assets/font_bb87efb3718207cebb7a6658.woff2')format("woff");}.ff5_c00494{font-family:ff5_c00494;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00494;src:url('chunks/assets/font_938b5ce145c92621e92f9e45.woff2')format("woff");}.ff6_c00494{font-family:ff6_c00494;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00494;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff7_c00494{font-family:ff7_c00494;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00494{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00494{vertical-align:0.000000px;}
.v1_c00494{vertical-align:72.000000px;}
.ls6_c00494{letter-spacing:-9.000000px;}
.ls7_c00494{letter-spacing:-6.000000px;}
.ls5_c00494{letter-spacing:0.000000px;}
.ls2_c00494{letter-spacing:0.933000px;}
.ls0_c00494{letter-spacing:2.040000px;}
.ls4_c00494{letter-spacing:3.000000px;}
.ls3_c00494{letter-spacing:3.093000px;}
.ls1_c00494{letter-spacing:4.728000px;}
.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;}
}
.ws2_c00494{word-spacing:-14.340000px;}
.ws3_c00494{word-spacing:-13.452000px;}
.ws1_c00494{word-spacing:-12.177600px;}
.ws4_c00494{word-spacing:0.000000px;}
.ws0_c00494{word-spacing:6.153000px;}
._1f_c00494{margin-left:-12.000000px;}
._1b_c00494{margin-left:-8.100000px;}
._14_c00494{margin-left:-7.092000px;}
._19_c00494{margin-left:-5.940000px;}
._9_c00494{margin-left:-4.620000px;}
._e_c00494{margin-left:-3.000000px;}
._6_c00494{margin-left:-1.920000px;}
._4_c00494{width:1.860000px;}
._3_c00494{width:2.880000px;}
._0_c00494{width:4.680000px;}
._c_c00494{width:6.240000px;}
._2_c00494{width:7.704000px;}
._22_c00494{width:8.835000px;}
._b_c00494{width:9.840000px;}
._12_c00494{width:10.920000px;}
._a_c00494{width:12.180000px;}
._f_c00494{width:13.200000px;}
._20_c00494{width:14.379000px;}
._11_c00494{width:15.480000px;}
._d_c00494{width:16.500000px;}
._1e_c00494{width:17.556000px;}
._5_c00494{width:19.500000px;}
._8_c00494{width:22.200000px;}
._1c_c00494{width:24.180000px;}
._7_c00494{width:27.180000px;}
._10_c00494{width:28.680000px;}
._13_c00494{width:30.000000px;}
._1d_c00494{width:31.356000px;}
._15_c00494{width:34.020000px;}
._1_c00494{width:44.064000px;}
._17_c00494{width:46.560000px;}
._16_c00494{width:49.260000px;}
._18_c00494{width:55.824000px;}
._23_c00494{width:192.540000px;}
._21_c00494{width:286.644000px;}
._1a_c00494{width:419.352000px;}
.fc2_c00494{color:transparent;}
.fc1_c00494{color:rgb(128,128,128);}
.fc0_c00494{color:rgb(0,0,0);}
.fs4_c00494{font-size:38.400000px;}
.fs5_c00494{font-size:48.000000px;}
.fs2_c00494{font-size:57.000000px;}
.fs1_c00494{font-size:60.000000px;}
.fs3_c00494{font-size:63.000000px;}
.fs0_c00494{font-size:72.000000px;}
.fs6_c00494{font-size:159.000000px;}
.y0_c00494{bottom:0.000000px;}
.y53_c00494{bottom:3.105000px;}
.y52_c00494{bottom:7.228363px;}
.y51_c00494{bottom:46.350000px;}
.y2a_c00494{bottom:63.750000px;}
.y50_c00494{bottom:65.100000px;}
.y29_c00494{bottom:82.350000px;}
.y4f_c00494{bottom:83.700000px;}
.y28_c00494{bottom:101.700000px;}
.y4e_c00494{bottom:102.150000px;}
.y27_c00494{bottom:119.550000px;}
.y4d_c00494{bottom:120.600000px;}
.y26_c00494{bottom:138.000000px;}
.y4c_c00494{bottom:139.050000px;}
.y25_c00494{bottom:156.000000px;}
.y4b_c00494{bottom:156.600000px;}
.y24_c00494{bottom:174.450000px;}
.y23_c00494{bottom:194.100000px;}
.y4a_c00494{bottom:210.600000px;}
.y22_c00494{bottom:211.050000px;}
.y49_c00494{bottom:229.200000px;}
.y21_c00494{bottom:229.500000px;}
.y20_c00494{bottom:247.350000px;}
.y48_c00494{bottom:247.500000px;}
.y47_c00494{bottom:265.350000px;}
.y1f_c00494{bottom:265.650000px;}
.y1e_c00494{bottom:282.450000px;}
.y46_c00494{bottom:283.500000px;}
.y1d_c00494{bottom:301.500000px;}
.y45_c00494{bottom:318.900000px;}
.y1c_c00494{bottom:319.350000px;}
.y44_c00494{bottom:336.450000px;}
.y1b_c00494{bottom:337.500000px;}
.y43_c00494{bottom:355.350000px;}
.y1a_c00494{bottom:356.100000px;}
.y42_c00494{bottom:373.350000px;}
.y19_c00494{bottom:373.650000px;}
.y41_c00494{bottom:391.800000px;}
.y18_c00494{bottom:391.950000px;}
.y40_c00494{bottom:408.750000px;}
.y17_c00494{bottom:410.100000px;}
.y16_c00494{bottom:427.950000px;}
.y3f_c00494{bottom:445.950000px;}
.y15_c00494{bottom:446.550000px;}
.y3e_c00494{bottom:463.800000px;}
.y14_c00494{bottom:464.400000px;}
.y3d_c00494{bottom:481.650000px;}
.y13_c00494{bottom:482.400000px;}
.y3c_c00494{bottom:499.950000px;}
.y12_c00494{bottom:500.850000px;}
.y11_c00494{bottom:517.800000px;}
.y3b_c00494{bottom:518.700000px;}
.y10_c00494{bottom:535.350000px;}
.y3a_c00494{bottom:535.650000px;}
.yf_c00494{bottom:552.450000px;}
.y39_c00494{bottom:553.950000px;}
.ye_c00494{bottom:571.350000px;}
.y38_c00494{bottom:572.400000px;}
.yd_c00494{bottom:588.900000px;}
.y37_c00494{bottom:590.250000px;}
.yc_c00494{bottom:606.900000px;}
.y36_c00494{bottom:607.950000px;}
.yb_c00494{bottom:625.050000px;}
.y35_c00494{bottom:626.100000px;}
.ya_c00494{bottom:642.900000px;}
.y34_c00494{bottom:644.250000px;}
.y9_c00494{bottom:661.200000px;}
.y33_c00494{bottom:662.400000px;}
.y8_c00494{bottom:679.800000px;}
.y32_c00494{bottom:680.700000px;}
.y7_c00494{bottom:697.050000px;}
.y31_c00494{bottom:699.000000px;}
.y6_c00494{bottom:715.950000px;}
.y30_c00494{bottom:716.550000px;}
.y5_c00494{bottom:734.100000px;}
.y2f_c00494{bottom:736.050000px;}
.y4_c00494{bottom:752.250000px;}
.y2e_c00494{bottom:754.050000px;}
.y3_c00494{bottom:769.950000px;}
.y2d_c00494{bottom:771.900000px;}
.y2_c00494{bottom:788.100000px;}
.y2c_c00494{bottom:790.200000px;}
.y1_c00494{bottom:808.350000px;}
.y2b_c00494{bottom:809.400000px;}
.h8_c00494{height:13.200074px;}
.h9_c00494{height:43.804688px;}
.h4_c00494{height:59.736000px;}
.h2_c00494{height:62.880000px;}
.h6_c00494{height:63.480000px;}
.h5_c00494{height:66.024000px;}
.h3_c00494{height:66.713379px;}
.h1_c00494{height:70.664062px;}
.h7_c00494{height:166.632000px;}
.h0_c00494{height:843.750000px;}
.w2_c00494{width:104.875500px;}
.w1_c00494{width:579.750000px;}
.w0_c00494{width:579.975000px;}
.x0_c00494{left:0.000000px;}
.x5_c00494{left:54.600000px;}
.x2_c00494{left:56.250000px;}
.x3_c00494{left:58.350000px;}
.x4_c00494{left:59.400000px;}
.x1_c00494{left:188.100000px;}
.x10_c00494{left:241.801758px;}
.x6_c00494{left:268.950000px;}
.xa_c00494{left:274.500000px;}
.x9_c00494{left:276.450000px;}
.x7_c00494{left:277.500000px;}
.x8_c00494{left:278.550000px;}
.xc_c00494{left:287.550000px;}
.xd_c00494{left:303.750000px;}
.xe_c00494{left:332.400000px;}
.xb_c00494{left:342.000000px;}
.xf_c00494{left:364.800000px;}
@media print{
.v0_c00494{vertical-align:0.000000pt;}
.v1_c00494{vertical-align:64.000000pt;}
.ls6_c00494{letter-spacing:-8.000000pt;}
.ls7_c00494{letter-spacing:-5.333333pt;}
.ls5_c00494{letter-spacing:0.000000pt;}
.ls2_c00494{letter-spacing:0.829333pt;}
.ls0_c00494{letter-spacing:1.813333pt;}
.ls4_c00494{letter-spacing:2.666667pt;}
.ls3_c00494{letter-spacing:2.749333pt;}
.ls1_c00494{letter-spacing:4.202667pt;}
.ws2_c00494{word-spacing:-12.746667pt;}
.ws3_c00494{word-spacing:-11.957333pt;}
.ws1_c00494{word-spacing:-10.824533pt;}
.ws4_c00494{word-spacing:0.000000pt;}
.ws0_c00494{word-spacing:5.469333pt;}
._1f_c00494{margin-left:-10.666667pt;}
._1b_c00494{margin-left:-7.200000pt;}
._14_c00494{margin-left:-6.304000pt;}
._19_c00494{margin-left:-5.280000pt;}
._9_c00494{margin-left:-4.106667pt;}
._e_c00494{margin-left:-2.666667pt;}
._6_c00494{margin-left:-1.706667pt;}
._4_c00494{width:1.653333pt;}
._3_c00494{width:2.560000pt;}
._0_c00494{width:4.160000pt;}
._c_c00494{width:5.546667pt;}
._2_c00494{width:6.848000pt;}
._22_c00494{width:7.853333pt;}
._b_c00494{width:8.746667pt;}
._12_c00494{width:9.706667pt;}
._a_c00494{width:10.826667pt;}
._f_c00494{width:11.733333pt;}
._20_c00494{width:12.781333pt;}
._11_c00494{width:13.760000pt;}
._d_c00494{width:14.666667pt;}
._1e_c00494{width:15.605333pt;}
._5_c00494{width:17.333333pt;}
._8_c00494{width:19.733333pt;}
._1c_c00494{width:21.493333pt;}
._7_c00494{width:24.160000pt;}
._10_c00494{width:25.493333pt;}
._13_c00494{width:26.666667pt;}
._1d_c00494{width:27.872000pt;}
._15_c00494{width:30.240000pt;}
._1_c00494{width:39.168000pt;}
._17_c00494{width:41.386667pt;}
._16_c00494{width:43.786667pt;}
._18_c00494{width:49.621333pt;}
._23_c00494{width:171.146667pt;}
._21_c00494{width:254.794667pt;}
._1a_c00494{width:372.757333pt;}
.fs4_c00494{font-size:34.133333pt;}
.fs5_c00494{font-size:42.666667pt;}
.fs2_c00494{font-size:50.666667pt;}
.fs1_c00494{font-size:53.333333pt;}
.fs3_c00494{font-size:56.000000pt;}
.fs0_c00494{font-size:64.000000pt;}
.fs6_c00494{font-size:141.333333pt;}
.y0_c00494{bottom:0.000000pt;}
.y53_c00494{bottom:2.760000pt;}
.y52_c00494{bottom:6.425212pt;}
.y51_c00494{bottom:41.200000pt;}
.y2a_c00494{bottom:56.666667pt;}
.y50_c00494{bottom:57.866667pt;}
.y29_c00494{bottom:73.200000pt;}
.y4f_c00494{bottom:74.400000pt;}
.y28_c00494{bottom:90.400000pt;}
.y4e_c00494{bottom:90.800000pt;}
.y27_c00494{bottom:106.266667pt;}
.y4d_c00494{bottom:107.200000pt;}
.y26_c00494{bottom:122.666667pt;}
.y4c_c00494{bottom:123.600000pt;}
.y25_c00494{bottom:138.666667pt;}
.y4b_c00494{bottom:139.200000pt;}
.y24_c00494{bottom:155.066667pt;}
.y23_c00494{bottom:172.533333pt;}
.y4a_c00494{bottom:187.200000pt;}
.y22_c00494{bottom:187.600000pt;}
.y49_c00494{bottom:203.733333pt;}
.y21_c00494{bottom:204.000000pt;}
.y20_c00494{bottom:219.866667pt;}
.y48_c00494{bottom:220.000000pt;}
.y47_c00494{bottom:235.866667pt;}
.y1f_c00494{bottom:236.133333pt;}
.y1e_c00494{bottom:251.066667pt;}
.y46_c00494{bottom:252.000000pt;}
.y1d_c00494{bottom:268.000000pt;}
.y45_c00494{bottom:283.466667pt;}
.y1c_c00494{bottom:283.866667pt;}
.y44_c00494{bottom:299.066667pt;}
.y1b_c00494{bottom:300.000000pt;}
.y43_c00494{bottom:315.866667pt;}
.y1a_c00494{bottom:316.533333pt;}
.y42_c00494{bottom:331.866667pt;}
.y19_c00494{bottom:332.133333pt;}
.y41_c00494{bottom:348.266667pt;}
.y18_c00494{bottom:348.400000pt;}
.y40_c00494{bottom:363.333333pt;}
.y17_c00494{bottom:364.533333pt;}
.y16_c00494{bottom:380.400000pt;}
.y3f_c00494{bottom:396.400000pt;}
.y15_c00494{bottom:396.933333pt;}
.y3e_c00494{bottom:412.266667pt;}
.y14_c00494{bottom:412.800000pt;}
.y3d_c00494{bottom:428.133333pt;}
.y13_c00494{bottom:428.800000pt;}
.y3c_c00494{bottom:444.400000pt;}
.y12_c00494{bottom:445.200000pt;}
.y11_c00494{bottom:460.266667pt;}
.y3b_c00494{bottom:461.066667pt;}
.y10_c00494{bottom:475.866667pt;}
.y3a_c00494{bottom:476.133333pt;}
.yf_c00494{bottom:491.066667pt;}
.y39_c00494{bottom:492.400000pt;}
.ye_c00494{bottom:507.866667pt;}
.y38_c00494{bottom:508.800000pt;}
.yd_c00494{bottom:523.466667pt;}
.y37_c00494{bottom:524.666667pt;}
.yc_c00494{bottom:539.466667pt;}
.y36_c00494{bottom:540.400000pt;}
.yb_c00494{bottom:555.600000pt;}
.y35_c00494{bottom:556.533333pt;}
.ya_c00494{bottom:571.466667pt;}
.y34_c00494{bottom:572.666667pt;}
.y9_c00494{bottom:587.733333pt;}
.y33_c00494{bottom:588.800000pt;}
.y8_c00494{bottom:604.266667pt;}
.y32_c00494{bottom:605.066667pt;}
.y7_c00494{bottom:619.600000pt;}
.y31_c00494{bottom:621.333333pt;}
.y6_c00494{bottom:636.400000pt;}
.y30_c00494{bottom:636.933333pt;}
.y5_c00494{bottom:652.533333pt;}
.y2f_c00494{bottom:654.266667pt;}
.y4_c00494{bottom:668.666667pt;}
.y2e_c00494{bottom:670.266667pt;}
.y3_c00494{bottom:684.400000pt;}
.y2d_c00494{bottom:686.133333pt;}
.y2_c00494{bottom:700.533333pt;}
.y2c_c00494{bottom:702.400000pt;}
.y1_c00494{bottom:718.533333pt;}
.y2b_c00494{bottom:719.466667pt;}
.h8_c00494{height:11.733399pt;}
.h9_c00494{height:38.937500pt;}
.h4_c00494{height:53.098667pt;}
.h2_c00494{height:55.893333pt;}
.h6_c00494{height:56.426667pt;}
.h5_c00494{height:58.688000pt;}
.h3_c00494{height:59.300781pt;}
.h1_c00494{height:62.812500pt;}
.h7_c00494{height:148.117333pt;}
.h0_c00494{height:750.000000pt;}
.w2_c00494{width:93.222667pt;}
.w1_c00494{width:515.333333pt;}
.w0_c00494{width:515.533333pt;}
.x0_c00494{left:0.000000pt;}
.x5_c00494{left:48.533333pt;}
.x2_c00494{left:50.000000pt;}
.x3_c00494{left:51.866667pt;}
.x4_c00494{left:52.800000pt;}
.x1_c00494{left:167.200000pt;}
.x10_c00494{left:214.934896pt;}
.x6_c00494{left:239.066667pt;}
.xa_c00494{left:244.000000pt;}
.x9_c00494{left:245.733333pt;}
.x7_c00494{left:246.666667pt;}
.x8_c00494{left:247.600000pt;}
.xc_c00494{left:255.600000pt;}
.xd_c00494{left:270.000000pt;}
.xe_c00494{left:295.466667pt;}
.xb_c00494{left:304.000000pt;}
.xf_c00494{left:324.266667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f6e2a178e342ccbfdd7ee752.woff2')format("woff");}.ff1_c00495{font-family:ff1_c00495;line-height:1.575000;font-style:normal;font-weight:normal;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_1c12e58767826d9107bfc343.woff2')format("woff");}.ff2_c00495{font-family:ff2_c00495;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00495;src:url('chunks/assets/font_e5c99f1dee01afc18c16be61.woff2')format("woff");}.ff3_c00495{font-family:ff3_c00495;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00495;src:url('chunks/assets/font_49396c0355f54bc67970b047.woff2')format("woff");}.ff4_c00495{font-family:ff4_c00495;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00495;src:url('chunks/assets/font_f69d2bc20f5d6d385b430734.woff2')format("woff");}.ff5_c00495{font-family:ff5_c00495;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00495;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff6_c00495{font-family:ff6_c00495;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00495;src:url('chunks/assets/font_41f479509d43aaad4adf6e15.woff2')format("woff");}.ff7_c00495{font-family:ff7_c00495;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00495;src:url('chunks/assets/font_420541d443d3583d44dca7d1.woff2')format("woff");}.ff8_c00495{font-family:ff8_c00495;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00495;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff9_c00495{font-family:ff9_c00495;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00495{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00495{vertical-align:0.000000px;}
.ls8_c00495{letter-spacing:-3.000000px;}
.ls6_c00495{letter-spacing:0.000000px;}
.ls2_c00495{letter-spacing:1.212000px;}
.ls5_c00495{letter-spacing:3.000000px;}
.ls0_c00495{letter-spacing:6.000000px;}
.ls7_c00495{letter-spacing:9.000000px;}
.ls4_c00495{letter-spacing:17.646000px;}
.ls1_c00495{letter-spacing:36.246000px;}
.ls3_c00495{letter-spacing:94.446000px;}
.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;}
}
.ws4_c00495{word-spacing:-35.961000px;}
.ws0_c00495{word-spacing:-22.074000px;}
.ws2_c00495{word-spacing:-21.744000px;}
.ws3_c00495{word-spacing:-15.462000px;}
.ws6_c00495{word-spacing:-15.060000px;}
.ws1_c00495{word-spacing:-14.160000px;}
.ws5_c00495{word-spacing:-12.291000px;}
.ws7_c00495{word-spacing:0.000000px;}
._15_c00495{margin-left:-19.809000px;}
._1d_c00495{margin-left:-14.877000px;}
._1c_c00495{margin-left:-9.504000px;}
._14_c00495{margin-left:-8.007000px;}
._16_c00495{margin-left:-6.681000px;}
._10_c00495{margin-left:-5.592000px;}
._f_c00495{margin-left:-4.200000px;}
._c_c00495{margin-left:-2.220000px;}
._2_c00495{margin-left:-1.200000px;}
._0_c00495{width:1.188000px;}
._b_c00495{width:2.376000px;}
._d_c00495{width:3.780000px;}
._1_c00495{width:5.484000px;}
._9_c00495{width:6.780000px;}
._4_c00495{width:7.980000px;}
._5_c00495{width:9.480000px;}
._6_c00495{width:10.800000px;}
._20_c00495{width:11.820000px;}
._7_c00495{width:13.020000px;}
._17_c00495{width:14.418000px;}
._a_c00495{width:15.600000px;}
._1e_c00495{width:16.632000px;}
._18_c00495{width:17.694000px;}
._1b_c00495{width:19.344000px;}
._12_c00495{width:21.216000px;}
._21_c00495{width:22.620000px;}
._11_c00495{width:23.628000px;}
._19_c00495{width:25.794000px;}
._1a_c00495{width:27.756000px;}
._13_c00495{width:28.920000px;}
._1f_c00495{width:32.856000px;}
._28_c00495{width:35.070000px;}
._8_c00495{width:37.200000px;}
._27_c00495{width:42.555000px;}
._26_c00495{width:44.880000px;}
._2a_c00495{width:87.198000px;}
._2b_c00495{width:88.524000px;}
._29_c00495{width:91.179000px;}
._24_c00495{width:92.376000px;}
._23_c00495{width:94.236000px;}
._22_c00495{width:96.138000px;}
._25_c00495{width:98.400000px;}
._e_c00495{width:104.400000px;}
._3_c00495{width:214.560000px;}
.fc2_c00495{color:transparent;}
.fc1_c00495{color:rgb(128,128,128);}
.fc0_c00495{color:rgb(0,0,0);}
.fs6_c00495{font-size:48.000000px;}
.fs2_c00495{font-size:51.000000px;}
.fs3_c00495{font-size:54.000000px;}
.fs4_c00495{font-size:57.000000px;}
.fs1_c00495{font-size:60.000000px;}
.fs0_c00495{font-size:66.000000px;}
.fs5_c00495{font-size:81.000000px;}
.y0_c00495{bottom:0.000000px;}
.y48_c00495{bottom:3.105000px;}
.y47_c00495{bottom:7.228371px;}
.y46_c00495{bottom:54.765000px;}
.y45_c00495{bottom:73.665000px;}
.y44_c00495{bottom:92.265000px;}
.y43_c00495{bottom:110.715000px;}
.y42_c00495{bottom:128.565000px;}
.y41_c00495{bottom:146.865000px;}
.y40_c00495{bottom:165.165000px;}
.y3f_c00495{bottom:182.565000px;}
.y3e_c00495{bottom:201.615000px;}
.y22_c00495{bottom:219.165000px;}
.y3b_c00495{bottom:220.365000px;}
.y21_c00495{bottom:237.615000px;}
.y3a_c00495{bottom:238.665000px;}
.y20_c00495{bottom:255.465000px;}
.y39_c00495{bottom:256.215000px;}
.y1f_c00495{bottom:274.065000px;}
.y38_c00495{bottom:274.815000px;}
.y1e_c00495{bottom:292.065000px;}
.y37_c00495{bottom:292.665000px;}
.y3d_c00495{bottom:293.265000px;}
.y36_c00495{bottom:310.215000px;}
.y1d_c00495{bottom:310.515000px;}
.y1c_c00495{bottom:328.515000px;}
.y1b_c00495{bottom:346.665000px;}
.y35_c00495{bottom:346.965000px;}
.y1a_c00495{bottom:364.965000px;}
.y19_c00495{bottom:383.115000px;}
.y34_c00495{bottom:400.965000px;}
.y18_c00495{bottom:401.415000px;}
.y33_c00495{bottom:418.515000px;}
.y17_c00495{bottom:419.265000px;}
.y32_c00495{bottom:436.815000px;}
.y16_c00495{bottom:437.715000px;}
.y31_c00495{bottom:455.415000px;}
.y15_c00495{bottom:456.315000px;}
.y14_c00495{bottom:473.565000px;}
.y30_c00495{bottom:473.865000px;}
.y3_c00495{bottom:477.015000px;}
.y13_c00495{bottom:491.715000px;}
.y2f_c00495{bottom:492.165000px;}
.y2e_c00495{bottom:510.315000px;}
.y12_c00495{bottom:510.615000px;}
.y2d_c00495{bottom:527.865000px;}
.y11_c00495{bottom:528.315000px;}
.y2c_c00495{bottom:545.715000px;}
.y10_c00495{bottom:545.865000px;}
.y2b_c00495{bottom:563.715000px;}
.yf_c00495{bottom:564.315000px;}
.y3c_c00495{bottom:579.915000px;}
.ye_c00495{bottom:581.865000px;}
.y2a_c00495{bottom:582.165000px;}
.yd_c00495{bottom:600.165000px;}
.y29_c00495{bottom:617.715000px;}
.yc_c00495{bottom:618.615000px;}
.y28_c00495{bottom:636.315000px;}
.yb_c00495{bottom:636.615000px;}
.y27_c00495{bottom:654.765000px;}
.ya_c00495{bottom:655.065000px;}
.y26_c00495{bottom:672.315000px;}
.y9_c00495{bottom:673.065000px;}
.y25_c00495{bottom:690.915000px;}
.y8_c00495{bottom:691.515000px;}
.y7_c00495{bottom:709.215000px;}
.y24_c00495{bottom:727.065000px;}
.y6_c00495{bottom:727.365000px;}
.y5_c00495{bottom:745.515000px;}
.y23_c00495{bottom:763.215000px;}
.y4_c00495{bottom:763.815000px;}
.y2_c00495{bottom:781.665000px;}
.y1_c00495{bottom:800.565000px;}
.h7_c00495{height:13.200074px;}
.h8_c00495{height:43.804688px;}
.h4_c00495{height:50.053711px;}
.h5_c00495{height:56.592000px;}
.h3_c00495{height:62.880000px;}
.h2_c00495{height:70.422000px;}
.h6_c00495{height:86.427000px;}
.h0_c00495{height:848.625000px;}
.h1_c00495{height:849.000000px;}
.w2_c00495{width:104.875500px;}
.w1_c00495{width:579.750000px;}
.w0_c00495{width:579.975000px;}
.x0_c00495{left:0.000000px;}
.x3_c00495{left:26.550000px;}
.x2_c00495{left:88.350000px;}
.x1_c00495{left:90.150000px;}
.x4_c00495{left:92.100000px;}
.x5_c00495{left:93.150000px;}
.x6_c00495{left:94.500000px;}
.x7_c00495{left:95.550000px;}
.x8_c00495{left:96.750000px;}
.xf_c00495{left:98.250000px;}
.x10_c00495{left:99.600000px;}
.x11_c00495{left:241.801758px;}
.x9_c00495{left:314.550000px;}
.xa_c00495{left:315.900000px;}
.xb_c00495{left:317.700000px;}
.xc_c00495{left:521.550000px;}
.xd_c00495{left:523.500000px;}
.xe_c00495{left:524.700000px;}
@media print{
.v0_c00495{vertical-align:0.000000pt;}
.ls8_c00495{letter-spacing:-2.666667pt;}
.ls6_c00495{letter-spacing:0.000000pt;}
.ls2_c00495{letter-spacing:1.077333pt;}
.ls5_c00495{letter-spacing:2.666667pt;}
.ls0_c00495{letter-spacing:5.333333pt;}
.ls7_c00495{letter-spacing:8.000000pt;}
.ls4_c00495{letter-spacing:15.685333pt;}
.ls1_c00495{letter-spacing:32.218667pt;}
.ls3_c00495{letter-spacing:83.952000pt;}
.ws4_c00495{word-spacing:-31.965333pt;}
.ws0_c00495{word-spacing:-19.621333pt;}
.ws2_c00495{word-spacing:-19.328000pt;}
.ws3_c00495{word-spacing:-13.744000pt;}
.ws6_c00495{word-spacing:-13.386667pt;}
.ws1_c00495{word-spacing:-12.586667pt;}
.ws5_c00495{word-spacing:-10.925333pt;}
.ws7_c00495{word-spacing:0.000000pt;}
._15_c00495{margin-left:-17.608000pt;}
._1d_c00495{margin-left:-13.224000pt;}
._1c_c00495{margin-left:-8.448000pt;}
._14_c00495{margin-left:-7.117333pt;}
._16_c00495{margin-left:-5.938667pt;}
._10_c00495{margin-left:-4.970667pt;}
._f_c00495{margin-left:-3.733333pt;}
._c_c00495{margin-left:-1.973333pt;}
._2_c00495{margin-left:-1.066667pt;}
._0_c00495{width:1.056000pt;}
._b_c00495{width:2.112000pt;}
._d_c00495{width:3.360000pt;}
._1_c00495{width:4.874667pt;}
._9_c00495{width:6.026667pt;}
._4_c00495{width:7.093333pt;}
._5_c00495{width:8.426667pt;}
._6_c00495{width:9.600000pt;}
._20_c00495{width:10.506667pt;}
._7_c00495{width:11.573333pt;}
._17_c00495{width:12.816000pt;}
._a_c00495{width:13.866667pt;}
._1e_c00495{width:14.784000pt;}
._18_c00495{width:15.728000pt;}
._1b_c00495{width:17.194667pt;}
._12_c00495{width:18.858667pt;}
._21_c00495{width:20.106667pt;}
._11_c00495{width:21.002667pt;}
._19_c00495{width:22.928000pt;}
._1a_c00495{width:24.672000pt;}
._13_c00495{width:25.706667pt;}
._1f_c00495{width:29.205333pt;}
._28_c00495{width:31.173333pt;}
._8_c00495{width:33.066667pt;}
._27_c00495{width:37.826667pt;}
._26_c00495{width:39.893333pt;}
._2a_c00495{width:77.509333pt;}
._2b_c00495{width:78.688000pt;}
._29_c00495{width:81.048000pt;}
._24_c00495{width:82.112000pt;}
._23_c00495{width:83.765333pt;}
._22_c00495{width:85.456000pt;}
._25_c00495{width:87.466667pt;}
._e_c00495{width:92.800000pt;}
._3_c00495{width:190.720000pt;}
.fs6_c00495{font-size:42.666667pt;}
.fs2_c00495{font-size:45.333333pt;}
.fs3_c00495{font-size:48.000000pt;}
.fs4_c00495{font-size:50.666667pt;}
.fs1_c00495{font-size:53.333333pt;}
.fs0_c00495{font-size:58.666667pt;}
.fs5_c00495{font-size:72.000000pt;}
.y0_c00495{bottom:0.000000pt;}
.y48_c00495{bottom:2.760000pt;}
.y47_c00495{bottom:6.425219pt;}
.y46_c00495{bottom:48.680000pt;}
.y45_c00495{bottom:65.480000pt;}
.y44_c00495{bottom:82.013333pt;}
.y43_c00495{bottom:98.413333pt;}
.y42_c00495{bottom:114.280000pt;}
.y41_c00495{bottom:130.546667pt;}
.y40_c00495{bottom:146.813333pt;}
.y3f_c00495{bottom:162.280000pt;}
.y3e_c00495{bottom:179.213333pt;}
.y22_c00495{bottom:194.813333pt;}
.y3b_c00495{bottom:195.880000pt;}
.y21_c00495{bottom:211.213333pt;}
.y3a_c00495{bottom:212.146667pt;}
.y20_c00495{bottom:227.080000pt;}
.y39_c00495{bottom:227.746667pt;}
.y1f_c00495{bottom:243.613333pt;}
.y38_c00495{bottom:244.280000pt;}
.y1e_c00495{bottom:259.613333pt;}
.y37_c00495{bottom:260.146667pt;}
.y3d_c00495{bottom:260.680000pt;}
.y36_c00495{bottom:275.746667pt;}
.y1d_c00495{bottom:276.013333pt;}
.y1c_c00495{bottom:292.013333pt;}
.y1b_c00495{bottom:308.146667pt;}
.y35_c00495{bottom:308.413333pt;}
.y1a_c00495{bottom:324.413333pt;}
.y19_c00495{bottom:340.546667pt;}
.y34_c00495{bottom:356.413333pt;}
.y18_c00495{bottom:356.813333pt;}
.y33_c00495{bottom:372.013333pt;}
.y17_c00495{bottom:372.680000pt;}
.y32_c00495{bottom:388.280000pt;}
.y16_c00495{bottom:389.080000pt;}
.y31_c00495{bottom:404.813333pt;}
.y15_c00495{bottom:405.613333pt;}
.y14_c00495{bottom:420.946667pt;}
.y30_c00495{bottom:421.213333pt;}
.y3_c00495{bottom:424.013333pt;}
.y13_c00495{bottom:437.080000pt;}
.y2f_c00495{bottom:437.480000pt;}
.y2e_c00495{bottom:453.613333pt;}
.y12_c00495{bottom:453.880000pt;}
.y2d_c00495{bottom:469.213333pt;}
.y11_c00495{bottom:469.613333pt;}
.y2c_c00495{bottom:485.080000pt;}
.y10_c00495{bottom:485.213333pt;}
.y2b_c00495{bottom:501.080000pt;}
.yf_c00495{bottom:501.613333pt;}
.y3c_c00495{bottom:515.480000pt;}
.ye_c00495{bottom:517.213333pt;}
.y2a_c00495{bottom:517.480000pt;}
.yd_c00495{bottom:533.480000pt;}
.y29_c00495{bottom:549.080000pt;}
.yc_c00495{bottom:549.880000pt;}
.y28_c00495{bottom:565.613333pt;}
.yb_c00495{bottom:565.880000pt;}
.y27_c00495{bottom:582.013333pt;}
.ya_c00495{bottom:582.280000pt;}
.y26_c00495{bottom:597.613333pt;}
.y9_c00495{bottom:598.280000pt;}
.y25_c00495{bottom:614.146667pt;}
.y8_c00495{bottom:614.680000pt;}
.y7_c00495{bottom:630.413333pt;}
.y24_c00495{bottom:646.280000pt;}
.y6_c00495{bottom:646.546667pt;}
.y5_c00495{bottom:662.680000pt;}
.y23_c00495{bottom:678.413333pt;}
.y4_c00495{bottom:678.946667pt;}
.y2_c00495{bottom:694.813333pt;}
.y1_c00495{bottom:711.613333pt;}
.h7_c00495{height:11.733399pt;}
.h8_c00495{height:38.937500pt;}
.h4_c00495{height:44.492188pt;}
.h5_c00495{height:50.304000pt;}
.h3_c00495{height:55.893333pt;}
.h2_c00495{height:62.597333pt;}
.h6_c00495{height:76.824000pt;}
.h0_c00495{height:754.333333pt;}
.h1_c00495{height:754.666667pt;}
.w2_c00495{width:93.222667pt;}
.w1_c00495{width:515.333333pt;}
.w0_c00495{width:515.533333pt;}
.x0_c00495{left:0.000000pt;}
.x3_c00495{left:23.600000pt;}
.x2_c00495{left:78.533333pt;}
.x1_c00495{left:80.133333pt;}
.x4_c00495{left:81.866667pt;}
.x5_c00495{left:82.800000pt;}
.x6_c00495{left:84.000000pt;}
.x7_c00495{left:84.933333pt;}
.x8_c00495{left:86.000000pt;}
.xf_c00495{left:87.333333pt;}
.x10_c00495{left:88.533333pt;}
.x11_c00495{left:214.934896pt;}
.x9_c00495{left:279.600000pt;}
.xa_c00495{left:280.800000pt;}
.xb_c00495{left:282.400000pt;}
.xc_c00495{left:463.600000pt;}
.xd_c00495{left:465.333333pt;}
.xe_c00495{left:466.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_0f7058835538efadf5539588.woff2')format("woff");}.ff1_c00496{font-family:ff1_c00496;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00496;src:url('chunks/assets/font_cad9ed55d5eeb72329d8ac6d.woff2')format("woff");}.ff2_c00496{font-family:ff2_c00496;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00496;src:url('chunks/assets/font_12d9361f15919124ad16edb5.woff2')format("woff");}.ff3_c00496{font-family:ff3_c00496;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00496;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff4_c00496{font-family:ff4_c00496;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00496{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00496{vertical-align:0.000000px;}
.ls1_c00496{letter-spacing:0.000000px;}
.ls0_c00496{letter-spacing:187.446000px;}
.sc__c00496{text-shadow:none;}
.sc0_c00496{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00496{-webkit-text-stroke:0px transparent;}
.sc0_c00496{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00496{word-spacing:-14.340000px;}
.ws2_c00496{word-spacing:-14.160000px;}
.ws0_c00496{word-spacing:-12.744000px;}
.ws3_c00496{word-spacing:0.000000px;}
._20_c00496{margin-left:-16.455000px;}
._21_c00496{margin-left:-11.178000px;}
._12_c00496{margin-left:-10.080000px;}
._14_c00496{margin-left:-7.578000px;}
._c_c00496{margin-left:-6.240000px;}
._4_c00496{margin-left:-4.200000px;}
._17_c00496{margin-left:-2.760000px;}
._e_c00496{margin-left:-1.680000px;}
._b_c00496{width:1.620000px;}
._7_c00496{width:3.060000px;}
._8_c00496{width:4.920000px;}
._9_c00496{width:6.180000px;}
._d_c00496{width:7.260000px;}
._6_c00496{width:8.340000px;}
._a_c00496{width:10.080000px;}
._18_c00496{width:11.826000px;}
._f_c00496{width:13.320000px;}
._13_c00496{width:15.120000px;}
._0_c00496{width:17.700000px;}
._2_c00496{width:19.860000px;}
._3_c00496{width:21.840000px;}
._23_c00496{width:23.019000px;}
._1c_c00496{width:26.082000px;}
._10_c00496{width:27.360000px;}
._1f_c00496{width:28.773000px;}
._16_c00496{width:30.378000px;}
._11_c00496{width:31.680000px;}
._1e_c00496{width:36.405000px;}
._1_c00496{width:37.500000px;}
._22_c00496{width:38.763000px;}
._15_c00496{width:53.724000px;}
._5_c00496{width:54.960000px;}
._1d_c00496{width:82.755000px;}
._1a_c00496{width:88.344000px;}
._24_c00496{width:153.840000px;}
._1b_c00496{width:168.972000px;}
._19_c00496{width:207.000000px;}
.fc2_c00496{color:transparent;}
.fc1_c00496{color:rgb(128,128,128);}
.fc0_c00496{color:rgb(0,0,0);}
.fs3_c00496{font-size:48.000000px;}
.fs1_c00496{font-size:54.000000px;}
.fs0_c00496{font-size:60.000000px;}
.fs2_c00496{font-size:63.000000px;}
.y0_c00496{bottom:0.000000px;}
.y51_c00496{bottom:3.105000px;}
.y50_c00496{bottom:7.228363px;}
.y4f_c00496{bottom:33.450000px;}
.y2a_c00496{bottom:54.000000px;}
.y4e_c00496{bottom:55.650000px;}
.y4d_c00496{bottom:73.350000px;}
.y29_c00496{bottom:73.650000px;}
.y28_c00496{bottom:92.100000px;}
.y4c_c00496{bottom:92.250000px;}
.y27_c00496{bottom:110.100000px;}
.y4b_c00496{bottom:110.550000px;}
.y26_c00496{bottom:128.550000px;}
.y25_c00496{bottom:146.550000px;}
.y4a_c00496{bottom:164.100000px;}
.y24_c00496{bottom:164.700000px;}
.y49_c00496{bottom:182.700000px;}
.y23_c00496{bottom:183.600000px;}
.y22_c00496{bottom:200.850000px;}
.y21_c00496{bottom:217.800000px;}
.y48_c00496{bottom:218.700000px;}
.y47_c00496{bottom:236.700000px;}
.y20_c00496{bottom:237.900000px;}
.y46_c00496{bottom:254.850000px;}
.y1f_c00496{bottom:256.500000px;}
.y45_c00496{bottom:273.150000px;}
.y1e_c00496{bottom:274.350000px;}
.y44_c00496{bottom:290.700000px;}
.y1d_c00496{bottom:291.300000px;}
.y1c_c00496{bottom:309.150000px;}
.y43_c00496{bottom:327.000000px;}
.y1b_c00496{bottom:327.150000px;}
.y1a_c00496{bottom:345.000000px;}
.y42_c00496{bottom:345.300000px;}
.y19_c00496{bottom:362.850000px;}
.y41_c00496{bottom:381.150000px;}
.y18_c00496{bottom:381.450000px;}
.y17_c00496{bottom:398.700000px;}
.y40_c00496{bottom:399.300000px;}
.y16_c00496{bottom:416.850000px;}
.y3f_c00496{bottom:417.600000px;}
.y15_c00496{bottom:435.150000px;}
.y3e_c00496{bottom:435.450000px;}
.y14_c00496{bottom:453.000000px;}
.y3d_c00496{bottom:453.300000px;}
.y13_c00496{bottom:471.450000px;}
.y3c_c00496{bottom:471.600000px;}
.y12_c00496{bottom:489.150000px;}
.y3b_c00496{bottom:490.050000px;}
.y11_c00496{bottom:506.700000px;}
.y3a_c00496{bottom:507.300000px;}
.y10_c00496{bottom:523.800000px;}
.y39_c00496{bottom:525.150000px;}
.yf_c00496{bottom:541.350000px;}
.y38_c00496{bottom:543.000000px;}
.ye_c00496{bottom:559.950000px;}
.y37_c00496{bottom:561.300000px;}
.yd_c00496{bottom:577.200000px;}
.y36_c00496{bottom:579.150000px;}
.yc_c00496{bottom:595.350000px;}
.y35_c00496{bottom:597.000000px;}
.yb_c00496{bottom:613.650000px;}
.y34_c00496{bottom:615.000000px;}
.ya_c00496{bottom:631.500000px;}
.y33_c00496{bottom:632.850000px;}
.y9_c00496{bottom:649.350000px;}
.y32_c00496{bottom:651.150000px;}
.y8_c00496{bottom:668.250000px;}
.y31_c00496{bottom:669.300000px;}
.y7_c00496{bottom:685.500000px;}
.y30_c00496{bottom:687.450000px;}
.y6_c00496{bottom:703.650000px;}
.y2f_c00496{bottom:705.150000px;}
.y5_c00496{bottom:721.950000px;}
.y2e_c00496{bottom:723.600000px;}
.y4_c00496{bottom:739.800000px;}
.y2d_c00496{bottom:741.600000px;}
.y3_c00496{bottom:757.800000px;}
.y2c_c00496{bottom:759.150000px;}
.y2_c00496{bottom:775.950000px;}
.y2b_c00496{bottom:777.900000px;}
.y1_c00496{bottom:794.850000px;}
.h4_c00496{height:13.200074px;}
.h5_c00496{height:43.804688px;}
.h2_c00496{height:56.592000px;}
.h1_c00496{height:62.880000px;}
.h3_c00496{height:66.024000px;}
.h0_c00496{height:843.750000px;}
.w2_c00496{width:104.875500px;}
.w1_c00496{width:579.750000px;}
.w0_c00496{width:579.975000px;}
.x0_c00496{left:0.000000px;}
.x8_c00496{left:13.500000px;}
.x7_c00496{left:14.850000px;}
.x2_c00496{left:58.950000px;}
.x4_c00496{left:77.550000px;}
.x3_c00496{left:78.600000px;}
.x5_c00496{left:79.650000px;}
.x6_c00496{left:80.700000px;}
.x9_c00496{left:85.050000px;}
.x1_c00496{left:211.950000px;}
.xf_c00496{left:241.801758px;}
.xd_c00496{left:292.950000px;}
.xc_c00496{left:294.000000px;}
.xa_c00496{left:295.350000px;}
.xb_c00496{left:296.700000px;}
.xe_c00496{left:400.950000px;}
@media print{
.v0_c00496{vertical-align:0.000000pt;}
.ls1_c00496{letter-spacing:0.000000pt;}
.ls0_c00496{letter-spacing:166.618667pt;}
.ws1_c00496{word-spacing:-12.746667pt;}
.ws2_c00496{word-spacing:-12.586667pt;}
.ws0_c00496{word-spacing:-11.328000pt;}
.ws3_c00496{word-spacing:0.000000pt;}
._20_c00496{margin-left:-14.626667pt;}
._21_c00496{margin-left:-9.936000pt;}
._12_c00496{margin-left:-8.960000pt;}
._14_c00496{margin-left:-6.736000pt;}
._c_c00496{margin-left:-5.546667pt;}
._4_c00496{margin-left:-3.733333pt;}
._17_c00496{margin-left:-2.453333pt;}
._e_c00496{margin-left:-1.493333pt;}
._b_c00496{width:1.440000pt;}
._7_c00496{width:2.720000pt;}
._8_c00496{width:4.373333pt;}
._9_c00496{width:5.493333pt;}
._d_c00496{width:6.453333pt;}
._6_c00496{width:7.413333pt;}
._a_c00496{width:8.960000pt;}
._18_c00496{width:10.512000pt;}
._f_c00496{width:11.840000pt;}
._13_c00496{width:13.440000pt;}
._0_c00496{width:15.733333pt;}
._2_c00496{width:17.653333pt;}
._3_c00496{width:19.413333pt;}
._23_c00496{width:20.461333pt;}
._1c_c00496{width:23.184000pt;}
._10_c00496{width:24.320000pt;}
._1f_c00496{width:25.576000pt;}
._16_c00496{width:27.002667pt;}
._11_c00496{width:28.160000pt;}
._1e_c00496{width:32.360000pt;}
._1_c00496{width:33.333333pt;}
._22_c00496{width:34.456000pt;}
._15_c00496{width:47.754667pt;}
._5_c00496{width:48.853333pt;}
._1d_c00496{width:73.560000pt;}
._1a_c00496{width:78.528000pt;}
._24_c00496{width:136.746667pt;}
._1b_c00496{width:150.197333pt;}
._19_c00496{width:184.000000pt;}
.fs3_c00496{font-size:42.666667pt;}
.fs1_c00496{font-size:48.000000pt;}
.fs0_c00496{font-size:53.333333pt;}
.fs2_c00496{font-size:56.000000pt;}
.y0_c00496{bottom:0.000000pt;}
.y51_c00496{bottom:2.760000pt;}
.y50_c00496{bottom:6.425212pt;}
.y4f_c00496{bottom:29.733333pt;}
.y2a_c00496{bottom:48.000000pt;}
.y4e_c00496{bottom:49.466667pt;}
.y4d_c00496{bottom:65.200000pt;}
.y29_c00496{bottom:65.466667pt;}
.y28_c00496{bottom:81.866667pt;}
.y4c_c00496{bottom:82.000000pt;}
.y27_c00496{bottom:97.866667pt;}
.y4b_c00496{bottom:98.266667pt;}
.y26_c00496{bottom:114.266667pt;}
.y25_c00496{bottom:130.266667pt;}
.y4a_c00496{bottom:145.866667pt;}
.y24_c00496{bottom:146.400000pt;}
.y49_c00496{bottom:162.400000pt;}
.y23_c00496{bottom:163.200000pt;}
.y22_c00496{bottom:178.533333pt;}
.y21_c00496{bottom:193.600000pt;}
.y48_c00496{bottom:194.400000pt;}
.y47_c00496{bottom:210.400000pt;}
.y20_c00496{bottom:211.466667pt;}
.y46_c00496{bottom:226.533333pt;}
.y1f_c00496{bottom:228.000000pt;}
.y45_c00496{bottom:242.800000pt;}
.y1e_c00496{bottom:243.866667pt;}
.y44_c00496{bottom:258.400000pt;}
.y1d_c00496{bottom:258.933333pt;}
.y1c_c00496{bottom:274.800000pt;}
.y43_c00496{bottom:290.666667pt;}
.y1b_c00496{bottom:290.800000pt;}
.y1a_c00496{bottom:306.666667pt;}
.y42_c00496{bottom:306.933333pt;}
.y19_c00496{bottom:322.533333pt;}
.y41_c00496{bottom:338.800000pt;}
.y18_c00496{bottom:339.066667pt;}
.y17_c00496{bottom:354.400000pt;}
.y40_c00496{bottom:354.933333pt;}
.y16_c00496{bottom:370.533333pt;}
.y3f_c00496{bottom:371.200000pt;}
.y15_c00496{bottom:386.800000pt;}
.y3e_c00496{bottom:387.066667pt;}
.y14_c00496{bottom:402.666667pt;}
.y3d_c00496{bottom:402.933333pt;}
.y13_c00496{bottom:419.066667pt;}
.y3c_c00496{bottom:419.200000pt;}
.y12_c00496{bottom:434.800000pt;}
.y3b_c00496{bottom:435.600000pt;}
.y11_c00496{bottom:450.400000pt;}
.y3a_c00496{bottom:450.933333pt;}
.y10_c00496{bottom:465.600000pt;}
.y39_c00496{bottom:466.800000pt;}
.yf_c00496{bottom:481.200000pt;}
.y38_c00496{bottom:482.666667pt;}
.ye_c00496{bottom:497.733333pt;}
.y37_c00496{bottom:498.933333pt;}
.yd_c00496{bottom:513.066667pt;}
.y36_c00496{bottom:514.800000pt;}
.yc_c00496{bottom:529.200000pt;}
.y35_c00496{bottom:530.666667pt;}
.yb_c00496{bottom:545.466667pt;}
.y34_c00496{bottom:546.666667pt;}
.ya_c00496{bottom:561.333333pt;}
.y33_c00496{bottom:562.533333pt;}
.y9_c00496{bottom:577.200000pt;}
.y32_c00496{bottom:578.800000pt;}
.y8_c00496{bottom:594.000000pt;}
.y31_c00496{bottom:594.933333pt;}
.y7_c00496{bottom:609.333333pt;}
.y30_c00496{bottom:611.066667pt;}
.y6_c00496{bottom:625.466667pt;}
.y2f_c00496{bottom:626.800000pt;}
.y5_c00496{bottom:641.733333pt;}
.y2e_c00496{bottom:643.200000pt;}
.y4_c00496{bottom:657.600000pt;}
.y2d_c00496{bottom:659.200000pt;}
.y3_c00496{bottom:673.600000pt;}
.y2c_c00496{bottom:674.800000pt;}
.y2_c00496{bottom:689.733333pt;}
.y2b_c00496{bottom:691.466667pt;}
.y1_c00496{bottom:706.533333pt;}
.h4_c00496{height:11.733399pt;}
.h5_c00496{height:38.937500pt;}
.h2_c00496{height:50.304000pt;}
.h1_c00496{height:55.893333pt;}
.h3_c00496{height:58.688000pt;}
.h0_c00496{height:750.000000pt;}
.w2_c00496{width:93.222667pt;}
.w1_c00496{width:515.333333pt;}
.w0_c00496{width:515.533333pt;}
.x0_c00496{left:0.000000pt;}
.x8_c00496{left:12.000000pt;}
.x7_c00496{left:13.200000pt;}
.x2_c00496{left:52.400000pt;}
.x4_c00496{left:68.933333pt;}
.x3_c00496{left:69.866667pt;}
.x5_c00496{left:70.800000pt;}
.x6_c00496{left:71.733333pt;}
.x9_c00496{left:75.600000pt;}
.x1_c00496{left:188.400000pt;}
.xf_c00496{left:214.934896pt;}
.xd_c00496{left:260.400000pt;}
.xc_c00496{left:261.333333pt;}
.xa_c00496{left:262.533333pt;}
.xb_c00496{left:263.733333pt;}
.xe_c00496{left:356.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_69fe3a10a7de401a3347eed0.woff2')format("woff");}.ff1_c00497{font-family:ff1_c00497;line-height:1.437000;font-style:normal;font-weight:normal;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_917687f879787b5823562e6a.woff2')format("woff");}.ff2_c00497{font-family:ff2_c00497;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00497;src:url('chunks/assets/font_67e200a0cb712af02657d760.woff2')format("woff");}.ff3_c00497{font-family:ff3_c00497;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00497;src:url('chunks/assets/font_f25bb33a18877e9cd88ea89e.woff2')format("woff");}.ff4_c00497{font-family:ff4_c00497;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00497;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff5_c00497{font-family:ff5_c00497;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00497;src:url('chunks/assets/font_4d5da4e448008287ea9bf23c.woff2')format("woff");}.ff6_c00497{font-family:ff6_c00497;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00497;src:url('chunks/assets/font_cdbc0a28aeca052e67ddfb7c.woff2')format("woff");}.ff7_c00497{font-family:ff7_c00497;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00497;src:url('chunks/assets/font_9049c40fadb865a674fcee49.woff2')format("woff");}.ff8_c00497{font-family:ff8_c00497;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00497;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff9_c00497{font-family:ff9_c00497;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00497{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00497{vertical-align:0.000000px;}
.ls3_c00497{letter-spacing:-6.000000px;}
.ls5_c00497{letter-spacing:-3.000000px;}
.ls2_c00497{letter-spacing:0.000000px;}
.ls0_c00497{letter-spacing:3.000000px;}
.ls4_c00497{letter-spacing:9.000000px;}
.ls1_c00497{letter-spacing:71.046000px;}
.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;}
}
.ws7_c00497{word-spacing:-18.060000px;}
.ws5_c00497{word-spacing:-18.000000px;}
.ws3_c00497{word-spacing:-14.160000px;}
.ws2_c00497{word-spacing:-12.744000px;}
.ws0_c00497{word-spacing:-12.291000px;}
.ws6_c00497{word-spacing:-12.060000px;}
.ws1_c00497{word-spacing:-9.000000px;}
.ws4_c00497{word-spacing:-8.160000px;}
.ws8_c00497{word-spacing:0.000000px;}
._2e_c00497{margin-left:-18.780000px;}
._2f_c00497{margin-left:-17.700000px;}
._2_c00497{margin-left:-14.760000px;}
._e_c00497{margin-left:-13.740000px;}
._18_c00497{margin-left:-11.427000px;}
._3_c00497{margin-left:-10.140000px;}
._2a_c00497{margin-left:-9.120000px;}
._17_c00497{margin-left:-7.926000px;}
._20_c00497{margin-left:-6.180000px;}
._24_c00497{margin-left:-5.160000px;}
._11_c00497{margin-left:-3.900000px;}
._12_c00497{margin-left:-2.520000px;}
._f_c00497{margin-left:-1.440000px;}
._14_c00497{width:1.200000px;}
._0_c00497{width:2.340000px;}
._1_c00497{width:3.540000px;}
._b_c00497{width:5.400000px;}
._5_c00497{width:7.200000px;}
._a_c00497{width:8.220000px;}
._6_c00497{width:9.480000px;}
._8_c00497{width:10.860000px;}
._7_c00497{width:12.300000px;}
._c_c00497{width:14.160000px;}
._1d_c00497{width:15.411000px;}
._1f_c00497{width:17.613000px;}
._25_c00497{width:19.080000px;}
._19_c00497{width:20.628000px;}
._33_c00497{width:21.780000px;}
._16_c00497{width:22.890000px;}
._13_c00497{width:24.900000px;}
._23_c00497{width:26.280000px;}
._10_c00497{width:28.020000px;}
._2b_c00497{width:30.540000px;}
._9_c00497{width:34.620000px;}
._1c_c00497{width:37.263000px;}
._1b_c00497{width:39.090000px;}
._1e_c00497{width:40.740000px;}
._28_c00497{width:43.380000px;}
._34_c00497{width:56.040000px;}
._1a_c00497{width:65.793000px;}
._d_c00497{width:70.200000px;}
._26_c00497{width:76.566000px;}
._27_c00497{width:80.586000px;}
._15_c00497{width:83.340000px;}
._21_c00497{width:88.692000px;}
._32_c00497{width:97.140000px;}
._31_c00497{width:98.580000px;}
._2c_c00497{width:100.467000px;}
._30_c00497{width:105.780000px;}
._2d_c00497{width:107.667000px;}
._29_c00497{width:129.840000px;}
._4_c00497{width:203.340000px;}
._22_c00497{width:589.980000px;}
.fc2_c00497{color:transparent;}
.fc1_c00497{color:rgb(128,128,128);}
.fc0_c00497{color:rgb(0,0,0);}
.fs5_c00497{font-size:48.000000px;}
.fs2_c00497{font-size:51.000000px;}
.fs3_c00497{font-size:54.000000px;}
.fs1_c00497{font-size:57.000000px;}
.fs0_c00497{font-size:60.000000px;}
.fs4_c00497{font-size:105.000000px;}
.y0_c00497{bottom:0.000000px;}
.y3f_c00497{bottom:3.105000px;}
.y3e_c00497{bottom:7.228371px;}
.y3a_c00497{bottom:50.415000px;}
.y39_c00497{bottom:68.865000px;}
.y38_c00497{bottom:87.765000px;}
.y37_c00497{bottom:106.065000px;}
.y36_c00497{bottom:123.615000px;}
.y35_c00497{bottom:142.515000px;}
.y34_c00497{bottom:160.365000px;}
.y33_c00497{bottom:179.265000px;}
.y32_c00497{bottom:197.115000px;}
.y31_c00497{bottom:215.115000px;}
.y30_c00497{bottom:233.265000px;}
.y2f_c00497{bottom:252.165000px;}
.y2e_c00497{bottom:270.015000px;}
.y2d_c00497{bottom:288.015000px;}
.y3d_c00497{bottom:305.115000px;}
.y2c_c00497{bottom:306.765000px;}
.y3c_c00497{bottom:323.565000px;}
.y2b_c00497{bottom:324.315000px;}
.y3b_c00497{bottom:342.015000px;}
.y2a_c00497{bottom:342.915000px;}
.y29_c00497{bottom:360.465000px;}
.y28_c00497{bottom:378.765000px;}
.y27_c00497{bottom:396.615000px;}
.y1d_c00497{bottom:398.715000px;}
.y26_c00497{bottom:414.465000px;}
.y25_c00497{bottom:432.465000px;}
.y24_c00497{bottom:450.315000px;}
.y1c_c00497{bottom:451.665000px;}
.y23_c00497{bottom:468.915000px;}
.y1b_c00497{bottom:469.815000px;}
.y22_c00497{bottom:486.765000px;}
.y1a_c00497{bottom:487.365000px;}
.y21_c00497{bottom:505.215000px;}
.y19_c00497{bottom:506.265000px;}
.y20_c00497{bottom:522.915000px;}
.y18_c00497{bottom:523.815000px;}
.y1f_c00497{bottom:540.465000px;}
.y17_c00497{bottom:558.015000px;}
.y1e_c00497{bottom:558.915000px;}
.y16_c00497{bottom:576.765000px;}
.y15_c00497{bottom:595.065000px;}
.y14_c00497{bottom:613.365000px;}
.yc_c00497{bottom:631.215000px;}
.y13_c00497{bottom:631.815000px;}
.yb_c00497{bottom:649.665000px;}
.y12_c00497{bottom:650.415000px;}
.ya_c00497{bottom:667.665000px;}
.y9_c00497{bottom:686.265000px;}
.y11_c00497{bottom:686.565000px;}
.y10_c00497{bottom:703.815000px;}
.y8_c00497{bottom:704.115000px;}
.yf_c00497{bottom:722.265000px;}
.y7_c00497{bottom:723.015000px;}
.y6_c00497{bottom:740.865000px;}
.ye_c00497{bottom:741.165000px;}
.y5_c00497{bottom:758.415000px;}
.yd_c00497{bottom:759.165000px;}
.y4_c00497{bottom:777.015000px;}
.y3_c00497{bottom:777.315000px;}
.y2_c00497{bottom:795.165000px;}
.y1_c00497{bottom:814.815000px;}
.h9_c00497{height:13.200074px;}
.ha_c00497{height:43.804688px;}
.h5_c00497{height:56.592000px;}
.h3_c00497{height:59.736000px;}
.h2_c00497{height:62.880000px;}
.h8_c00497{height:64.020000px;}
.h4_c00497{height:64.571777px;}
.h6_c00497{height:65.040000px;}
.h7_c00497{height:110.040000px;}
.h0_c00497{height:848.625000px;}
.h1_c00497{height:849.000000px;}
.w2_c00497{width:104.875500px;}
.w1_c00497{width:579.750000px;}
.w0_c00497{width:579.975000px;}
.x0_c00497{left:0.000000px;}
.x13_c00497{left:27.600000px;}
.x12_c00497{left:30.300000px;}
.x14_c00497{left:31.350000px;}
.x1_c00497{left:89.700000px;}
.x3_c00497{left:90.900000px;}
.x4_c00497{left:92.400000px;}
.x9_c00497{left:94.200000px;}
.xe_c00497{left:95.400000px;}
.x16_c00497{left:96.600000px;}
.x18_c00497{left:98.100000px;}
.x17_c00497{left:99.900000px;}
.xa_c00497{left:103.950000px;}
.x11_c00497{left:118.350000px;}
.x15_c00497{left:119.400000px;}
.x10_c00497{left:122.850000px;}
.xb_c00497{left:128.250000px;}
.xc_c00497{left:141.750000px;}
.x8_c00497{left:160.200000px;}
.xd_c00497{left:179.550000px;}
.x1b_c00497{left:241.801758px;}
.x5_c00497{left:310.500000px;}
.x2_c00497{left:311.850000px;}
.x6_c00497{left:312.900000px;}
.x7_c00497{left:314.250000px;}
.xf_c00497{left:315.450000px;}
.x1a_c00497{left:343.800000px;}
.x19_c00497{left:488.700000px;}
@media print{
.v0_c00497{vertical-align:0.000000pt;}
.ls3_c00497{letter-spacing:-5.333333pt;}
.ls5_c00497{letter-spacing:-2.666667pt;}
.ls2_c00497{letter-spacing:0.000000pt;}
.ls0_c00497{letter-spacing:2.666667pt;}
.ls4_c00497{letter-spacing:8.000000pt;}
.ls1_c00497{letter-spacing:63.152000pt;}
.ws7_c00497{word-spacing:-16.053333pt;}
.ws5_c00497{word-spacing:-16.000000pt;}
.ws3_c00497{word-spacing:-12.586667pt;}
.ws2_c00497{word-spacing:-11.328000pt;}
.ws0_c00497{word-spacing:-10.925333pt;}
.ws6_c00497{word-spacing:-10.720000pt;}
.ws1_c00497{word-spacing:-8.000000pt;}
.ws4_c00497{word-spacing:-7.253333pt;}
.ws8_c00497{word-spacing:0.000000pt;}
._2e_c00497{margin-left:-16.693333pt;}
._2f_c00497{margin-left:-15.733333pt;}
._2_c00497{margin-left:-13.120000pt;}
._e_c00497{margin-left:-12.213333pt;}
._18_c00497{margin-left:-10.157333pt;}
._3_c00497{margin-left:-9.013333pt;}
._2a_c00497{margin-left:-8.106667pt;}
._17_c00497{margin-left:-7.045333pt;}
._20_c00497{margin-left:-5.493333pt;}
._24_c00497{margin-left:-4.586667pt;}
._11_c00497{margin-left:-3.466667pt;}
._12_c00497{margin-left:-2.240000pt;}
._f_c00497{margin-left:-1.280000pt;}
._14_c00497{width:1.066667pt;}
._0_c00497{width:2.080000pt;}
._1_c00497{width:3.146667pt;}
._b_c00497{width:4.800000pt;}
._5_c00497{width:6.400000pt;}
._a_c00497{width:7.306667pt;}
._6_c00497{width:8.426667pt;}
._8_c00497{width:9.653333pt;}
._7_c00497{width:10.933333pt;}
._c_c00497{width:12.586667pt;}
._1d_c00497{width:13.698667pt;}
._1f_c00497{width:15.656000pt;}
._25_c00497{width:16.960000pt;}
._19_c00497{width:18.336000pt;}
._33_c00497{width:19.360000pt;}
._16_c00497{width:20.346667pt;}
._13_c00497{width:22.133333pt;}
._23_c00497{width:23.360000pt;}
._10_c00497{width:24.906667pt;}
._2b_c00497{width:27.146667pt;}
._9_c00497{width:30.773333pt;}
._1c_c00497{width:33.122667pt;}
._1b_c00497{width:34.746667pt;}
._1e_c00497{width:36.213333pt;}
._28_c00497{width:38.560000pt;}
._34_c00497{width:49.813333pt;}
._1a_c00497{width:58.482667pt;}
._d_c00497{width:62.400000pt;}
._26_c00497{width:68.058667pt;}
._27_c00497{width:71.632000pt;}
._15_c00497{width:74.080000pt;}
._21_c00497{width:78.837333pt;}
._32_c00497{width:86.346667pt;}
._31_c00497{width:87.626667pt;}
._2c_c00497{width:89.304000pt;}
._30_c00497{width:94.026667pt;}
._2d_c00497{width:95.704000pt;}
._29_c00497{width:115.413333pt;}
._4_c00497{width:180.746667pt;}
._22_c00497{width:524.426667pt;}
.fs5_c00497{font-size:42.666667pt;}
.fs2_c00497{font-size:45.333333pt;}
.fs3_c00497{font-size:48.000000pt;}
.fs1_c00497{font-size:50.666667pt;}
.fs0_c00497{font-size:53.333333pt;}
.fs4_c00497{font-size:93.333333pt;}
.y0_c00497{bottom:0.000000pt;}
.y3f_c00497{bottom:2.760000pt;}
.y3e_c00497{bottom:6.425219pt;}
.y3a_c00497{bottom:44.813333pt;}
.y39_c00497{bottom:61.213333pt;}
.y38_c00497{bottom:78.013333pt;}
.y37_c00497{bottom:94.280000pt;}
.y36_c00497{bottom:109.880000pt;}
.y35_c00497{bottom:126.680000pt;}
.y34_c00497{bottom:142.546667pt;}
.y33_c00497{bottom:159.346667pt;}
.y32_c00497{bottom:175.213333pt;}
.y31_c00497{bottom:191.213333pt;}
.y30_c00497{bottom:207.346667pt;}
.y2f_c00497{bottom:224.146667pt;}
.y2e_c00497{bottom:240.013333pt;}
.y2d_c00497{bottom:256.013333pt;}
.y3d_c00497{bottom:271.213333pt;}
.y2c_c00497{bottom:272.680000pt;}
.y3c_c00497{bottom:287.613333pt;}
.y2b_c00497{bottom:288.280000pt;}
.y3b_c00497{bottom:304.013333pt;}
.y2a_c00497{bottom:304.813333pt;}
.y29_c00497{bottom:320.413333pt;}
.y28_c00497{bottom:336.680000pt;}
.y27_c00497{bottom:352.546667pt;}
.y1d_c00497{bottom:354.413333pt;}
.y26_c00497{bottom:368.413333pt;}
.y25_c00497{bottom:384.413333pt;}
.y24_c00497{bottom:400.280000pt;}
.y1c_c00497{bottom:401.480000pt;}
.y23_c00497{bottom:416.813333pt;}
.y1b_c00497{bottom:417.613333pt;}
.y22_c00497{bottom:432.680000pt;}
.y1a_c00497{bottom:433.213333pt;}
.y21_c00497{bottom:449.080000pt;}
.y19_c00497{bottom:450.013333pt;}
.y20_c00497{bottom:464.813333pt;}
.y18_c00497{bottom:465.613333pt;}
.y1f_c00497{bottom:480.413333pt;}
.y17_c00497{bottom:496.013333pt;}
.y1e_c00497{bottom:496.813333pt;}
.y16_c00497{bottom:512.680000pt;}
.y15_c00497{bottom:528.946667pt;}
.y14_c00497{bottom:545.213333pt;}
.yc_c00497{bottom:561.080000pt;}
.y13_c00497{bottom:561.613333pt;}
.yb_c00497{bottom:577.480000pt;}
.y12_c00497{bottom:578.146667pt;}
.ya_c00497{bottom:593.480000pt;}
.y9_c00497{bottom:610.013333pt;}
.y11_c00497{bottom:610.280000pt;}
.y10_c00497{bottom:625.613333pt;}
.y8_c00497{bottom:625.880000pt;}
.yf_c00497{bottom:642.013333pt;}
.y7_c00497{bottom:642.680000pt;}
.y6_c00497{bottom:658.546667pt;}
.ye_c00497{bottom:658.813333pt;}
.y5_c00497{bottom:674.146667pt;}
.yd_c00497{bottom:674.813333pt;}
.y4_c00497{bottom:690.680000pt;}
.y3_c00497{bottom:690.946667pt;}
.y2_c00497{bottom:706.813333pt;}
.y1_c00497{bottom:724.280000pt;}
.h9_c00497{height:11.733399pt;}
.ha_c00497{height:38.937500pt;}
.h5_c00497{height:50.304000pt;}
.h3_c00497{height:53.098667pt;}
.h2_c00497{height:55.893333pt;}
.h8_c00497{height:56.906667pt;}
.h4_c00497{height:57.397135pt;}
.h6_c00497{height:57.813333pt;}
.h7_c00497{height:97.813333pt;}
.h0_c00497{height:754.333333pt;}
.h1_c00497{height:754.666667pt;}
.w2_c00497{width:93.222667pt;}
.w1_c00497{width:515.333333pt;}
.w0_c00497{width:515.533333pt;}
.x0_c00497{left:0.000000pt;}
.x13_c00497{left:24.533333pt;}
.x12_c00497{left:26.933333pt;}
.x14_c00497{left:27.866667pt;}
.x1_c00497{left:79.733333pt;}
.x3_c00497{left:80.800000pt;}
.x4_c00497{left:82.133333pt;}
.x9_c00497{left:83.733333pt;}
.xe_c00497{left:84.800000pt;}
.x16_c00497{left:85.866667pt;}
.x18_c00497{left:87.200000pt;}
.x17_c00497{left:88.800000pt;}
.xa_c00497{left:92.400000pt;}
.x11_c00497{left:105.200000pt;}
.x15_c00497{left:106.133333pt;}
.x10_c00497{left:109.200000pt;}
.xb_c00497{left:114.000000pt;}
.xc_c00497{left:126.000000pt;}
.x8_c00497{left:142.400000pt;}
.xd_c00497{left:159.600000pt;}
.x1b_c00497{left:214.934896pt;}
.x5_c00497{left:276.000000pt;}
.x2_c00497{left:277.200000pt;}
.x6_c00497{left:278.133333pt;}
.x7_c00497{left:279.333333pt;}
.xf_c00497{left:280.400000pt;}
.x1a_c00497{left:305.600000pt;}
.x19_c00497{left:434.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b2c5e574a519cdce9cfe95e4.woff2')format("woff");}.ff1_c00498{font-family:ff1_c00498;line-height:1.437000;font-style:normal;font-weight:normal;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_1686837e974c4728a83cf75e.woff2')format("woff");}.ff2_c00498{font-family:ff2_c00498;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00498;src:url('chunks/assets/font_5dce2a16a43cb0df364b4357.woff2')format("woff");}.ff3_c00498{font-family:ff3_c00498;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00498;src:url('chunks/assets/font_52302702a6694ca672a8b56a.woff2')format("woff");}.ff4_c00498{font-family:ff4_c00498;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00498;src:url('chunks/assets/font_2247f62304242da73036aa3c.woff2')format("woff");}.ff5_c00498{font-family:ff5_c00498;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00498;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff6_c00498{font-family:ff6_c00498;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00498{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00498{vertical-align:0.000000px;}
.ls1_c00498{letter-spacing:0.000000px;}
.ls2_c00498{letter-spacing:3.000000px;}
.ls0_c00498{letter-spacing:10.599000px;}
.ls3_c00498{letter-spacing:12.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;}
}
.ws1_c00498{word-spacing:-15.060000px;}
.ws0_c00498{word-spacing:-13.500000px;}
.ws2_c00498{word-spacing:-12.744000px;}
.ws3_c00498{word-spacing:0.000000px;}
._14_c00498{margin-left:-12.552000px;}
._1d_c00498{margin-left:-10.950000px;}
._26_c00498{margin-left:-9.600000px;}
._1b_c00498{margin-left:-7.704000px;}
._f_c00498{margin-left:-5.853000px;}
._e_c00498{margin-left:-4.524000px;}
._10_c00498{margin-left:-3.162000px;}
._11_c00498{margin-left:-1.560000px;}
._b_c00498{width:1.983000px;}
._7_c00498{width:3.060000px;}
._8_c00498{width:4.350000px;}
._3_c00498{width:5.901000px;}
._6_c00498{width:7.905000px;}
._d_c00498{width:9.048000px;}
._4_c00498{width:10.368000px;}
._0_c00498{width:11.592000px;}
._c_c00498{width:13.515000px;}
._9_c00498{width:14.535000px;}
._15_c00498{width:15.630000px;}
._17_c00498{width:17.457000px;}
._2_c00498{width:18.774000px;}
._16_c00498{width:20.259000px;}
._5_c00498{width:21.981000px;}
._18_c00498{width:23.619000px;}
._a_c00498{width:25.470000px;}
._1c_c00498{width:26.664000px;}
._13_c00498{width:27.861000px;}
._19_c00498{width:29.199000px;}
._23_c00498{width:31.452000px;}
._1a_c00498{width:32.997000px;}
._1f_c00498{width:34.353000px;}
._12_c00498{width:35.766000px;}
._25_c00498{width:39.642000px;}
._1e_c00498{width:43.281000px;}
._22_c00498{width:45.222000px;}
._24_c00498{width:48.588000px;}
._1_c00498{width:50.148000px;}
._21_c00498{width:176.685000px;}
._20_c00498{width:405.114000px;}
.fc2_c00498{color:transparent;}
.fc1_c00498{color:rgb(128,128,128);}
.fc0_c00498{color:rgb(0,0,0);}
.fs5_c00498{font-size:48.000000px;}
.fs1_c00498{font-size:51.000000px;}
.fs2_c00498{font-size:54.000000px;}
.fs3_c00498{font-size:60.000000px;}
.fs0_c00498{font-size:63.000000px;}
.fs4_c00498{font-size:69.000000px;}
.y0_c00498{bottom:0.000000px;}
.y56_c00498{bottom:3.105000px;}
.y55_c00498{bottom:7.228363px;}
.y2a_c00498{bottom:55.650000px;}
.y54_c00498{bottom:58.800000px;}
.y29_c00498{bottom:75.300000px;}
.y53_c00498{bottom:77.250000px;}
.y28_c00498{bottom:93.900000px;}
.y52_c00498{bottom:95.850000px;}
.y27_c00498{bottom:112.800000px;}
.y51_c00498{bottom:114.450000px;}
.y26_c00498{bottom:130.500000px;}
.y50_c00498{bottom:132.300000px;}
.y25_c00498{bottom:148.500000px;}
.y4f_c00498{bottom:150.600000px;}
.y24_c00498{bottom:167.100000px;}
.y4e_c00498{bottom:169.200000px;}
.y23_c00498{bottom:185.400000px;}
.y4d_c00498{bottom:187.350000px;}
.y22_c00498{bottom:203.550000px;}
.y4c_c00498{bottom:204.900000px;}
.y21_c00498{bottom:222.000000px;}
.y4b_c00498{bottom:223.500000px;}
.y20_c00498{bottom:240.600000px;}
.y4a_c00498{bottom:242.700000px;}
.y1f_c00498{bottom:258.300000px;}
.y49_c00498{bottom:259.950000px;}
.y1e_c00498{bottom:276.450000px;}
.y48_c00498{bottom:278.400000px;}
.y1d_c00498{bottom:294.600000px;}
.y47_c00498{bottom:296.400000px;}
.y1c_c00498{bottom:312.150000px;}
.y46_c00498{bottom:314.850000px;}
.y1b_c00498{bottom:330.450000px;}
.y45_c00498{bottom:332.400000px;}
.y1a_c00498{bottom:349.350000px;}
.y44_c00498{bottom:351.450000px;}
.y19_c00498{bottom:366.900000px;}
.y43_c00498{bottom:369.300000px;}
.y18_c00498{bottom:385.050000px;}
.y42_c00498{bottom:387.150000px;}
.y17_c00498{bottom:403.050000px;}
.y41_c00498{bottom:405.300000px;}
.y16_c00498{bottom:421.500000px;}
.y40_c00498{bottom:423.000000px;}
.y15_c00498{bottom:439.350000px;}
.y3f_c00498{bottom:441.150000px;}
.y14_c00498{bottom:456.750000px;}
.y3e_c00498{bottom:459.450000px;}
.y13_c00498{bottom:476.250000px;}
.y3d_c00498{bottom:477.300000px;}
.y12_c00498{bottom:493.350000px;}
.y3c_c00498{bottom:495.900000px;}
.y11_c00498{bottom:510.750000px;}
.y3b_c00498{bottom:513.750000px;}
.y10_c00498{bottom:528.150000px;}
.y3a_c00498{bottom:531.450000px;}
.yf_c00498{bottom:545.400000px;}
.y39_c00498{bottom:549.450000px;}
.ye_c00498{bottom:563.700000px;}
.y38_c00498{bottom:567.300000px;}
.yd_c00498{bottom:582.600000px;}
.y37_c00498{bottom:586.200000px;}
.yc_c00498{bottom:600.150000px;}
.y36_c00498{bottom:604.350000px;}
.yb_c00498{bottom:618.000000px;}
.y35_c00498{bottom:621.600000px;}
.ya_c00498{bottom:636.150000px;}
.y34_c00498{bottom:640.200000px;}
.y9_c00498{bottom:654.150000px;}
.y33_c00498{bottom:658.050000px;}
.y8_c00498{bottom:673.650000px;}
.y32_c00498{bottom:676.050000px;}
.y7_c00498{bottom:690.600000px;}
.y31_c00498{bottom:694.200000px;}
.y6_c00498{bottom:708.150000px;}
.y30_c00498{bottom:712.350000px;}
.y5_c00498{bottom:726.600000px;}
.y2f_c00498{bottom:730.350000px;}
.y4_c00498{bottom:744.900000px;}
.y2e_c00498{bottom:748.950000px;}
.y3_c00498{bottom:762.150000px;}
.y2d_c00498{bottom:766.800000px;}
.y2_c00498{bottom:780.600000px;}
.y2c_c00498{bottom:785.400000px;}
.y1_c00498{bottom:801.600000px;}
.y2b_c00498{bottom:802.950000px;}
.h9_c00498{height:13.200074px;}
.ha_c00498{height:43.804688px;}
.h2_c00498{height:53.448000px;}
.h8_c00498{height:56.592000px;}
.h7_c00498{height:57.618000px;}
.h3_c00498{height:58.536000px;}
.h4_c00498{height:62.880000px;}
.h5_c00498{height:63.480000px;}
.h1_c00498{height:66.024000px;}
.h6_c00498{height:72.312000px;}
.h0_c00498{height:843.750000px;}
.w2_c00498{width:104.875500px;}
.w1_c00498{width:579.750000px;}
.w0_c00498{width:579.975000px;}
.x0_c00498{left:0.000000px;}
.x4_c00498{left:18.600000px;}
.x5_c00498{left:78.300000px;}
.x3_c00498{left:79.950000px;}
.x2_c00498{left:81.450000px;}
.x6_c00498{left:83.100000px;}
.x7_c00498{left:84.150000px;}
.x1_c00498{left:211.650000px;}
.xe_c00498{left:241.801758px;}
.x8_c00498{left:292.650000px;}
.xd_c00498{left:298.050000px;}
.xc_c00498{left:299.100000px;}
.xb_c00498{left:300.750000px;}
.x9_c00498{left:301.800000px;}
.xa_c00498{left:302.850000px;}
@media print{
.v0_c00498{vertical-align:0.000000pt;}
.ls1_c00498{letter-spacing:0.000000pt;}
.ls2_c00498{letter-spacing:2.666667pt;}
.ls0_c00498{letter-spacing:9.421333pt;}
.ls3_c00498{letter-spacing:10.666667pt;}
.ws1_c00498{word-spacing:-13.386667pt;}
.ws0_c00498{word-spacing:-12.000000pt;}
.ws2_c00498{word-spacing:-11.328000pt;}
.ws3_c00498{word-spacing:0.000000pt;}
._14_c00498{margin-left:-11.157333pt;}
._1d_c00498{margin-left:-9.733333pt;}
._26_c00498{margin-left:-8.533333pt;}
._1b_c00498{margin-left:-6.848000pt;}
._f_c00498{margin-left:-5.202667pt;}
._e_c00498{margin-left:-4.021333pt;}
._10_c00498{margin-left:-2.810667pt;}
._11_c00498{margin-left:-1.386667pt;}
._b_c00498{width:1.762667pt;}
._7_c00498{width:2.720000pt;}
._8_c00498{width:3.866667pt;}
._3_c00498{width:5.245333pt;}
._6_c00498{width:7.026667pt;}
._d_c00498{width:8.042667pt;}
._4_c00498{width:9.216000pt;}
._0_c00498{width:10.304000pt;}
._c_c00498{width:12.013333pt;}
._9_c00498{width:12.920000pt;}
._15_c00498{width:13.893333pt;}
._17_c00498{width:15.517333pt;}
._2_c00498{width:16.688000pt;}
._16_c00498{width:18.008000pt;}
._5_c00498{width:19.538667pt;}
._18_c00498{width:20.994667pt;}
._a_c00498{width:22.640000pt;}
._1c_c00498{width:23.701333pt;}
._13_c00498{width:24.765333pt;}
._19_c00498{width:25.954667pt;}
._23_c00498{width:27.957333pt;}
._1a_c00498{width:29.330667pt;}
._1f_c00498{width:30.536000pt;}
._12_c00498{width:31.792000pt;}
._25_c00498{width:35.237333pt;}
._1e_c00498{width:38.472000pt;}
._22_c00498{width:40.197333pt;}
._24_c00498{width:43.189333pt;}
._1_c00498{width:44.576000pt;}
._21_c00498{width:157.053333pt;}
._20_c00498{width:360.101333pt;}
.fs5_c00498{font-size:42.666667pt;}
.fs1_c00498{font-size:45.333333pt;}
.fs2_c00498{font-size:48.000000pt;}
.fs3_c00498{font-size:53.333333pt;}
.fs0_c00498{font-size:56.000000pt;}
.fs4_c00498{font-size:61.333333pt;}
.y0_c00498{bottom:0.000000pt;}
.y56_c00498{bottom:2.760000pt;}
.y55_c00498{bottom:6.425212pt;}
.y2a_c00498{bottom:49.466667pt;}
.y54_c00498{bottom:52.266667pt;}
.y29_c00498{bottom:66.933333pt;}
.y53_c00498{bottom:68.666667pt;}
.y28_c00498{bottom:83.466667pt;}
.y52_c00498{bottom:85.200000pt;}
.y27_c00498{bottom:100.266667pt;}
.y51_c00498{bottom:101.733333pt;}
.y26_c00498{bottom:116.000000pt;}
.y50_c00498{bottom:117.600000pt;}
.y25_c00498{bottom:132.000000pt;}
.y4f_c00498{bottom:133.866667pt;}
.y24_c00498{bottom:148.533333pt;}
.y4e_c00498{bottom:150.400000pt;}
.y23_c00498{bottom:164.800000pt;}
.y4d_c00498{bottom:166.533333pt;}
.y22_c00498{bottom:180.933333pt;}
.y4c_c00498{bottom:182.133333pt;}
.y21_c00498{bottom:197.333333pt;}
.y4b_c00498{bottom:198.666667pt;}
.y20_c00498{bottom:213.866667pt;}
.y4a_c00498{bottom:215.733333pt;}
.y1f_c00498{bottom:229.600000pt;}
.y49_c00498{bottom:231.066667pt;}
.y1e_c00498{bottom:245.733333pt;}
.y48_c00498{bottom:247.466667pt;}
.y1d_c00498{bottom:261.866667pt;}
.y47_c00498{bottom:263.466667pt;}
.y1c_c00498{bottom:277.466667pt;}
.y46_c00498{bottom:279.866667pt;}
.y1b_c00498{bottom:293.733333pt;}
.y45_c00498{bottom:295.466667pt;}
.y1a_c00498{bottom:310.533333pt;}
.y44_c00498{bottom:312.400000pt;}
.y19_c00498{bottom:326.133333pt;}
.y43_c00498{bottom:328.266667pt;}
.y18_c00498{bottom:342.266667pt;}
.y42_c00498{bottom:344.133333pt;}
.y17_c00498{bottom:358.266667pt;}
.y41_c00498{bottom:360.266667pt;}
.y16_c00498{bottom:374.666667pt;}
.y40_c00498{bottom:376.000000pt;}
.y15_c00498{bottom:390.533333pt;}
.y3f_c00498{bottom:392.133333pt;}
.y14_c00498{bottom:406.000000pt;}
.y3e_c00498{bottom:408.400000pt;}
.y13_c00498{bottom:423.333333pt;}
.y3d_c00498{bottom:424.266667pt;}
.y12_c00498{bottom:438.533333pt;}
.y3c_c00498{bottom:440.800000pt;}
.y11_c00498{bottom:454.000000pt;}
.y3b_c00498{bottom:456.666667pt;}
.y10_c00498{bottom:469.466667pt;}
.y3a_c00498{bottom:472.400000pt;}
.yf_c00498{bottom:484.800000pt;}
.y39_c00498{bottom:488.400000pt;}
.ye_c00498{bottom:501.066667pt;}
.y38_c00498{bottom:504.266667pt;}
.yd_c00498{bottom:517.866667pt;}
.y37_c00498{bottom:521.066667pt;}
.yc_c00498{bottom:533.466667pt;}
.y36_c00498{bottom:537.200000pt;}
.yb_c00498{bottom:549.333333pt;}
.y35_c00498{bottom:552.533333pt;}
.ya_c00498{bottom:565.466667pt;}
.y34_c00498{bottom:569.066667pt;}
.y9_c00498{bottom:581.466667pt;}
.y33_c00498{bottom:584.933333pt;}
.y8_c00498{bottom:598.800000pt;}
.y32_c00498{bottom:600.933333pt;}
.y7_c00498{bottom:613.866667pt;}
.y31_c00498{bottom:617.066667pt;}
.y6_c00498{bottom:629.466667pt;}
.y30_c00498{bottom:633.200000pt;}
.y5_c00498{bottom:645.866667pt;}
.y2f_c00498{bottom:649.200000pt;}
.y4_c00498{bottom:662.133333pt;}
.y2e_c00498{bottom:665.733333pt;}
.y3_c00498{bottom:677.466667pt;}
.y2d_c00498{bottom:681.600000pt;}
.y2_c00498{bottom:693.866667pt;}
.y2c_c00498{bottom:698.133333pt;}
.y1_c00498{bottom:712.533333pt;}
.y2b_c00498{bottom:713.733333pt;}
.h9_c00498{height:11.733399pt;}
.ha_c00498{height:38.937500pt;}
.h2_c00498{height:47.509333pt;}
.h8_c00498{height:50.304000pt;}
.h7_c00498{height:51.216000pt;}
.h3_c00498{height:52.032000pt;}
.h4_c00498{height:55.893333pt;}
.h5_c00498{height:56.426667pt;}
.h1_c00498{height:58.688000pt;}
.h6_c00498{height:64.277333pt;}
.h0_c00498{height:750.000000pt;}
.w2_c00498{width:93.222667pt;}
.w1_c00498{width:515.333333pt;}
.w0_c00498{width:515.533333pt;}
.x0_c00498{left:0.000000pt;}
.x4_c00498{left:16.533333pt;}
.x5_c00498{left:69.600000pt;}
.x3_c00498{left:71.066667pt;}
.x2_c00498{left:72.400000pt;}
.x6_c00498{left:73.866667pt;}
.x7_c00498{left:74.800000pt;}
.x1_c00498{left:188.133333pt;}
.xe_c00498{left:214.934896pt;}
.x8_c00498{left:260.133333pt;}
.xd_c00498{left:264.933333pt;}
.xc_c00498{left:265.866667pt;}
.xb_c00498{left:267.333333pt;}
.x9_c00498{left:268.266667pt;}
.xa_c00498{left:269.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_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_3d6e0e5a65412bcfd712e607.woff2')format("woff");}.ff1_c00499{font-family:ff1_c00499;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00499;src:url('chunks/assets/font_975d24e1acf285da11e4e43d.woff2')format("woff");}.ff2_c00499{font-family:ff2_c00499;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00499;src:url('chunks/assets/font_e4fbc23385699d59b01b1986.woff2')format("woff");}.ff3_c00499{font-family:ff3_c00499;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00499;src:url('chunks/assets/font_9c02f0d39eba394755269f4a.woff2')format("woff");}.ff4_c00499{font-family:ff4_c00499;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00499;src:url('chunks/assets/font_69e908a25587ff07f85fb32f.woff2')format("woff");}.ff5_c00499{font-family:ff5_c00499;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00499;src:url('chunks/assets/font_39ec392f691bbc766d086de4.woff2')format("woff");}.ff6_c00499{font-family:ff6_c00499;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00499;src:url('chunks/assets/font_98e433bac3cc852e1f6d566c.woff2')format("woff");}.ff7_c00499{font-family:ff7_c00499;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00499;src:url('chunks/assets/font_af88a71e0dfe7f7e742a3a60.woff2')format("woff");}.ff8_c00499{font-family:ff8_c00499;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00499;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff9_c00499{font-family:ff9_c00499;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00499{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00499{vertical-align:0.000000px;}
.ls4_c00499{letter-spacing:0.000000px;}
.ls2_c00499{letter-spacing:3.000000px;}
.ls1_c00499{letter-spacing:8.400000px;}
.ls6_c00499{letter-spacing:9.000000px;}
.ls0_c00499{letter-spacing:12.000000px;}
.ls5_c00499{letter-spacing:18.000000px;}
.ls3_c00499{letter-spacing:21.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;}
}
.ws8_c00499{word-spacing:-39.399000px;}
.ws5_c00499{word-spacing:-37.500000px;}
.ws1_c00499{word-spacing:-27.000000px;}
.ws4_c00499{word-spacing:-18.750000px;}
.ws0_c00499{word-spacing:-15.576000px;}
.ws2_c00499{word-spacing:-15.000000px;}
.ws6_c00499{word-spacing:-14.160000px;}
.ws7_c00499{word-spacing:-13.554000px;}
.ws3_c00499{word-spacing:-13.452000px;}
.ws9_c00499{word-spacing:0.000000px;}
._24_c00499{margin-left:-21.900000px;}
._30_c00499{margin-left:-20.112000px;}
._25_c00499{margin-left:-14.730000px;}
._12_c00499{margin-left:-13.320000px;}
._1e_c00499{margin-left:-11.391000px;}
._2e_c00499{margin-left:-10.371000px;}
._11_c00499{margin-left:-8.334000px;}
._1f_c00499{margin-left:-7.161000px;}
._f_c00499{margin-left:-6.111000px;}
._e_c00499{margin-left:-4.851000px;}
._d_c00499{margin-left:-3.591000px;}
._a_c00499{margin-left:-1.989000px;}
._0_c00499{width:1.512000px;}
._9_c00499{width:3.024000px;}
._1_c00499{width:4.347000px;}
._4_c00499{width:6.336000px;}
._5_c00499{width:7.722000px;}
._2_c00499{width:9.765000px;}
._c_c00499{width:11.556000px;}
._8_c00499{width:12.852000px;}
._7_c00499{width:15.057000px;}
._19_c00499{width:16.089000px;}
._2c_c00499{width:17.766000px;}
._18_c00499{width:19.335000px;}
._21_c00499{width:20.883000px;}
._2a_c00499{width:22.491000px;}
._1b_c00499{width:23.676000px;}
._28_c00499{width:24.948000px;}
._26_c00499{width:26.115000px;}
._10_c00499{width:28.020000px;}
._29_c00499{width:29.547000px;}
._1a_c00499{width:32.559000px;}
._6_c00499{width:36.288000px;}
._13_c00499{width:38.364000px;}
._1d_c00499{width:40.185000px;}
._15_c00499{width:42.033000px;}
._1c_c00499{width:44.118000px;}
._14_c00499{width:49.386000px;}
._16_c00499{width:52.629000px;}
._2f_c00499{width:57.846000px;}
._23_c00499{width:61.578000px;}
._2b_c00499{width:65.142000px;}
._17_c00499{width:73.947000px;}
._2d_c00499{width:77.220000px;}
._27_c00499{width:86.814000px;}
._33_c00499{width:93.579000px;}
._20_c00499{width:141.252000px;}
._31_c00499{width:168.306000px;}
._3_c00499{width:204.450000px;}
._32_c00499{width:208.515000px;}
._b_c00499{width:212.364000px;}
._22_c00499{width:437.778000px;}
.fc2_c00499{color:transparent;}
.fc1_c00499{color:rgb(128,128,128);}
.fc0_c00499{color:rgb(0,0,0);}
.fs7_c00499{font-size:24.000000px;}
.fs9_c00499{font-size:48.000000px;}
.fs6_c00499{font-size:54.000000px;}
.fs3_c00499{font-size:57.000000px;}
.fs2_c00499{font-size:60.000000px;}
.fs0_c00499{font-size:63.000000px;}
.fs1_c00499{font-size:66.000000px;}
.fs8_c00499{font-size:69.000000px;}
.fs5_c00499{font-size:84.000000px;}
.fs4_c00499{font-size:150.000000px;}
.y0_c00499{bottom:0.000000px;}
.y29_c00499{bottom:3.105000px;}
.y28_c00499{bottom:7.228369px;}
.y27_c00499{bottom:37.470000px;}
.y26_c00499{bottom:55.920000px;}
.y25_c00499{bottom:74.970000px;}
.y24_c00499{bottom:93.120000px;}
.y23_c00499{bottom:104.670000px;}
.y22_c00499{bottom:111.720000px;}
.y21_c00499{bottom:129.570000px;}
.y20_c00499{bottom:148.470000px;}
.y1f_c00499{bottom:166.770000px;}
.y1e_c00499{bottom:184.920000px;}
.y1d_c00499{bottom:223.320000px;}
.y1c_c00499{bottom:240.270000px;}
.y1b_c00499{bottom:279.120000px;}
.y1a_c00499{bottom:303.720000px;}
.y19_c00499{bottom:328.620000px;}
.y18_c00499{bottom:353.070000px;}
.y17_c00499{bottom:377.970000px;}
.y16_c00499{bottom:402.570000px;}
.y15_c00499{bottom:448.770000px;}
.y14_c00499{bottom:529.470000px;}
.y13_c00499{bottom:547.320000px;}
.y12_c00499{bottom:565.320000px;}
.y11_c00499{bottom:583.170000px;}
.y10_c00499{bottom:601.770000px;}
.yf_c00499{bottom:619.320000px;}
.ye_c00499{bottom:638.220000px;}
.yd_c00499{bottom:656.070000px;}
.yc_c00499{bottom:673.920000px;}
.yb_c00499{bottom:692.520000px;}
.y6_c00499{bottom:710.820000px;}
.ya_c00499{bottom:711.420000px;}
.y5_c00499{bottom:728.970000px;}
.y9_c00499{bottom:730.320000px;}
.y4_c00499{bottom:747.120000px;}
.y8_c00499{bottom:748.470000px;}
.y3_c00499{bottom:764.820000px;}
.y7_c00499{bottom:766.020000px;}
.y2_c00499{bottom:784.020000px;}
.y1_c00499{bottom:803.220000px;}
.hb_c00499{height:13.200073px;}
.hc_c00499{height:43.804688px;}
.h9_c00499{height:56.592000px;}
.h5_c00499{height:59.736000px;}
.h2_c00499{height:61.831055px;}
.h3_c00499{height:64.020000px;}
.h7_c00499{height:66.024000px;}
.h1_c00499{height:69.168000px;}
.h4_c00499{height:70.422000px;}
.ha_c00499{height:73.623000px;}
.h8_c00499{height:88.032000px;}
.h6_c00499{height:157.200000px;}
.h0_c00499{height:840.750000px;}
.w2_c00499{width:104.875500px;}
.w1_c00499{width:574.500000px;}
.w0_c00499{width:574.575000px;}
.x0_c00499{left:0.000000px;}
.x2_c00499{left:90.150000px;}
.x1_c00499{left:91.800000px;}
.x3_c00499{left:93.750000px;}
.x5_c00499{left:95.100000px;}
.x6_c00499{left:96.900000px;}
.x8_c00499{left:99.900000px;}
.x9_c00499{left:102.300000px;}
.x11_c00499{left:104.700000px;}
.xd_c00499{left:118.350000px;}
.xa_c00499{left:132.600000px;}
.x10_c00499{left:135.000000px;}
.x7_c00499{left:136.650000px;}
.xb_c00499{left:175.200000px;}
.xe_c00499{left:215.700000px;}
.xf_c00499{left:224.550000px;}
.x13_c00499{left:239.101730px;}
.xc_c00499{left:253.500000px;}
.x4_c00499{left:308.100000px;}
.x12_c00499{left:501.900000px;}
@media print{
.v0_c00499{vertical-align:0.000000pt;}
.ls4_c00499{letter-spacing:0.000000pt;}
.ls2_c00499{letter-spacing:2.666667pt;}
.ls1_c00499{letter-spacing:7.466667pt;}
.ls6_c00499{letter-spacing:8.000000pt;}
.ls0_c00499{letter-spacing:10.666667pt;}
.ls5_c00499{letter-spacing:16.000000pt;}
.ls3_c00499{letter-spacing:18.666667pt;}
.ws8_c00499{word-spacing:-35.021333pt;}
.ws5_c00499{word-spacing:-33.333333pt;}
.ws1_c00499{word-spacing:-24.000000pt;}
.ws4_c00499{word-spacing:-16.666667pt;}
.ws0_c00499{word-spacing:-13.845333pt;}
.ws2_c00499{word-spacing:-13.333333pt;}
.ws6_c00499{word-spacing:-12.586667pt;}
.ws7_c00499{word-spacing:-12.048000pt;}
.ws3_c00499{word-spacing:-11.957333pt;}
.ws9_c00499{word-spacing:0.000000pt;}
._24_c00499{margin-left:-19.466667pt;}
._30_c00499{margin-left:-17.877333pt;}
._25_c00499{margin-left:-13.093333pt;}
._12_c00499{margin-left:-11.840000pt;}
._1e_c00499{margin-left:-10.125333pt;}
._2e_c00499{margin-left:-9.218667pt;}
._11_c00499{margin-left:-7.408000pt;}
._1f_c00499{margin-left:-6.365333pt;}
._f_c00499{margin-left:-5.432000pt;}
._e_c00499{margin-left:-4.312000pt;}
._d_c00499{margin-left:-3.192000pt;}
._a_c00499{margin-left:-1.768000pt;}
._0_c00499{width:1.344000pt;}
._9_c00499{width:2.688000pt;}
._1_c00499{width:3.864000pt;}
._4_c00499{width:5.632000pt;}
._5_c00499{width:6.864000pt;}
._2_c00499{width:8.680000pt;}
._c_c00499{width:10.272000pt;}
._8_c00499{width:11.424000pt;}
._7_c00499{width:13.384000pt;}
._19_c00499{width:14.301333pt;}
._2c_c00499{width:15.792000pt;}
._18_c00499{width:17.186667pt;}
._21_c00499{width:18.562667pt;}
._2a_c00499{width:19.992000pt;}
._1b_c00499{width:21.045333pt;}
._28_c00499{width:22.176000pt;}
._26_c00499{width:23.213333pt;}
._10_c00499{width:24.906667pt;}
._29_c00499{width:26.264000pt;}
._1a_c00499{width:28.941333pt;}
._6_c00499{width:32.256000pt;}
._13_c00499{width:34.101333pt;}
._1d_c00499{width:35.720000pt;}
._15_c00499{width:37.362667pt;}
._1c_c00499{width:39.216000pt;}
._14_c00499{width:43.898667pt;}
._16_c00499{width:46.781333pt;}
._2f_c00499{width:51.418667pt;}
._23_c00499{width:54.736000pt;}
._2b_c00499{width:57.904000pt;}
._17_c00499{width:65.730667pt;}
._2d_c00499{width:68.640000pt;}
._27_c00499{width:77.168000pt;}
._33_c00499{width:83.181333pt;}
._20_c00499{width:125.557333pt;}
._31_c00499{width:149.605333pt;}
._3_c00499{width:181.733333pt;}
._32_c00499{width:185.346667pt;}
._b_c00499{width:188.768000pt;}
._22_c00499{width:389.136000pt;}
.fs7_c00499{font-size:21.333333pt;}
.fs9_c00499{font-size:42.666667pt;}
.fs6_c00499{font-size:48.000000pt;}
.fs3_c00499{font-size:50.666667pt;}
.fs2_c00499{font-size:53.333333pt;}
.fs0_c00499{font-size:56.000000pt;}
.fs1_c00499{font-size:58.666667pt;}
.fs8_c00499{font-size:61.333333pt;}
.fs5_c00499{font-size:74.666667pt;}
.fs4_c00499{font-size:133.333333pt;}
.y0_c00499{bottom:0.000000pt;}
.y29_c00499{bottom:2.760000pt;}
.y28_c00499{bottom:6.425217pt;}
.y27_c00499{bottom:33.306667pt;}
.y26_c00499{bottom:49.706667pt;}
.y25_c00499{bottom:66.640000pt;}
.y24_c00499{bottom:82.773333pt;}
.y23_c00499{bottom:93.040000pt;}
.y22_c00499{bottom:99.306667pt;}
.y21_c00499{bottom:115.173333pt;}
.y20_c00499{bottom:131.973333pt;}
.y1f_c00499{bottom:148.240000pt;}
.y1e_c00499{bottom:164.373333pt;}
.y1d_c00499{bottom:198.506667pt;}
.y1c_c00499{bottom:213.573333pt;}
.y1b_c00499{bottom:248.106667pt;}
.y1a_c00499{bottom:269.973333pt;}
.y19_c00499{bottom:292.106667pt;}
.y18_c00499{bottom:313.840000pt;}
.y17_c00499{bottom:335.973333pt;}
.y16_c00499{bottom:357.840000pt;}
.y15_c00499{bottom:398.906667pt;}
.y14_c00499{bottom:470.640000pt;}
.y13_c00499{bottom:486.506667pt;}
.y12_c00499{bottom:502.506667pt;}
.y11_c00499{bottom:518.373333pt;}
.y10_c00499{bottom:534.906667pt;}
.yf_c00499{bottom:550.506667pt;}
.ye_c00499{bottom:567.306667pt;}
.yd_c00499{bottom:583.173333pt;}
.yc_c00499{bottom:599.040000pt;}
.yb_c00499{bottom:615.573333pt;}
.y6_c00499{bottom:631.840000pt;}
.ya_c00499{bottom:632.373333pt;}
.y5_c00499{bottom:647.973333pt;}
.y9_c00499{bottom:649.173333pt;}
.y4_c00499{bottom:664.106667pt;}
.y8_c00499{bottom:665.306667pt;}
.y3_c00499{bottom:679.840000pt;}
.y7_c00499{bottom:680.906667pt;}
.y2_c00499{bottom:696.906667pt;}
.y1_c00499{bottom:713.973333pt;}
.hb_c00499{height:11.733399pt;}
.hc_c00499{height:38.937500pt;}
.h9_c00499{height:50.304000pt;}
.h5_c00499{height:53.098667pt;}
.h2_c00499{height:54.960938pt;}
.h3_c00499{height:56.906667pt;}
.h7_c00499{height:58.688000pt;}
.h1_c00499{height:61.482667pt;}
.h4_c00499{height:62.597333pt;}
.ha_c00499{height:65.442667pt;}
.h8_c00499{height:78.250667pt;}
.h6_c00499{height:139.733333pt;}
.h0_c00499{height:747.333333pt;}
.w2_c00499{width:93.222667pt;}
.w1_c00499{width:510.666667pt;}
.w0_c00499{width:510.733333pt;}
.x0_c00499{left:0.000000pt;}
.x2_c00499{left:80.133333pt;}
.x1_c00499{left:81.600000pt;}
.x3_c00499{left:83.333333pt;}
.x5_c00499{left:84.533333pt;}
.x6_c00499{left:86.133333pt;}
.x8_c00499{left:88.800000pt;}
.x9_c00499{left:90.933333pt;}
.x11_c00499{left:93.066667pt;}
.xd_c00499{left:105.200000pt;}
.xa_c00499{left:117.866667pt;}
.x10_c00499{left:120.000000pt;}
.x7_c00499{left:121.466667pt;}
.xb_c00499{left:155.733333pt;}
.xe_c00499{left:191.733333pt;}
.xf_c00499{left:199.600000pt;}
.x13_c00499{left:212.534871pt;}
.xc_c00499{left:225.333333pt;}
.x4_c00499{left:273.866667pt;}
.x12_c00499{left:446.133333pt;}
}





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

.ir_c01000:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01000{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01000;src:url('chunks/assets/font_e999603cb0fa1111011b4301.woff2')format("woff");}.ff1_c01000{font-family:ff1_c01000;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01000;src:url('chunks/assets/font_86b89950108b9662a211e65c.woff2')format("woff");}.ff2_c01000{font-family:ff2_c01000;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01000;src:url('chunks/assets/font_618b6b8552c7cd58262fa6e3.woff2')format("woff");}.ff3_c01000{font-family:ff3_c01000;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_c01000;src:url('chunks/assets/font_5d3caf5a7210d77dc5b07974.woff2')format("woff");}.ff4_c01000{font-family:ff4_c01000;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01000;src:url('chunks/assets/font_94310a7faeee1457e5b3af3e.woff2')format("woff");}.ff5_c01000{font-family:ff5_c01000;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01000;src:url('chunks/assets/font_68b0286cad0677eda16beddf.woff2')format("woff");}.ff6_c01000{font-family:ff6_c01000;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01000;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff7_c01000{font-family:ff7_c01000;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c01000;src:url('chunks/assets/font_0ebb42633ee8db198ab8d15f.woff2')format("woff");}.ff8_c01000{font-family:ff8_c01000;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c01000;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff9_c01000{font-family:ff9_c01000;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01000{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01000{vertical-align:0.000000px;}
.ls4_c01000{letter-spacing:0.000000px;}
.ls2_c01000{letter-spacing:3.000000px;}
.ls3_c01000{letter-spacing:6.000000px;}
.ls0_c01000{letter-spacing:11.844000px;}
.ls5_c01000{letter-spacing:27.000000px;}
.ls1_c01000{letter-spacing:33.444000px;}
.sc__c01000{text-shadow:none;}
.sc0_c01000{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01000{-webkit-text-stroke:0px transparent;}
.sc0_c01000{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01000{word-spacing:-40.554000px;}
.ws3_c01000{word-spacing:-14.160000px;}
.ws0_c01000{word-spacing:-12.291000px;}
.ws1_c01000{word-spacing:-6.048000px;}
.ws4_c01000{word-spacing:0.000000px;}
._e_c01000{margin-left:-19.926000px;}
._c_c01000{margin-left:-18.738000px;}
._11_c01000{margin-left:-12.906000px;}
._30_c01000{margin-left:-11.124000px;}
._2b_c01000{margin-left:-9.666000px;}
._15_c01000{margin-left:-8.262000px;}
._16_c01000{margin-left:-6.588000px;}
._18_c01000{margin-left:-4.644000px;}
._8_c01000{margin-left:-3.240000px;}
._1d_c01000{margin-left:-2.214000px;}
._9_c01000{margin-left:-1.188000px;}
._1_c01000{width:1.728000px;}
._10_c01000{width:2.808000px;}
._7_c01000{width:3.834000px;}
._4_c01000{width:5.076000px;}
._3_c01000{width:6.804000px;}
._0_c01000{width:8.370000px;}
._17_c01000{width:9.558000px;}
._6_c01000{width:11.070000px;}
._1f_c01000{width:12.258000px;}
._a_c01000{width:13.392000px;}
._19_c01000{width:14.742000px;}
._2e_c01000{width:16.311000px;}
._20_c01000{width:17.658000px;}
._13_c01000{width:19.764000px;}
._1a_c01000{width:21.276000px;}
._5_c01000{width:22.518000px;}
._1e_c01000{width:23.544000px;}
._2c_c01000{width:24.678000px;}
._1b_c01000{width:26.298000px;}
._1c_c01000{width:27.378000px;}
._b_c01000{width:38.718000px;}
._27_c01000{width:41.520000px;}
._2_c01000{width:51.084000px;}
._22_c01000{width:54.432000px;}
._24_c01000{width:70.200000px;}
._26_c01000{width:73.542000px;}
._25_c01000{width:86.454000px;}
._21_c01000{width:89.910000px;}
._23_c01000{width:95.310000px;}
._29_c01000{width:138.690000px;}
._d_c01000{width:145.476000px;}
._12_c01000{width:151.740000px;}
._f_c01000{width:154.170000px;}
._2a_c01000{width:178.665000px;}
._2d_c01000{width:226.617000px;}
._2f_c01000{width:237.156000px;}
._28_c01000{width:274.695000px;}
._14_c01000{width:409.698000px;}
.fc2_c01000{color:transparent;}
.fc1_c01000{color:rgb(128,128,128);}
.fc0_c01000{color:rgb(0,0,0);}
.fs1_c01000{font-size:48.000000px;}
.fs2_c01000{font-size:51.000000px;}
.fs0_c01000{font-size:54.000000px;}
.fs4_c01000{font-size:57.000000px;}
.fs3_c01000{font-size:60.000000px;}
.y0_c01000{bottom:0.000000px;}
.y2c_c01000{bottom:3.105000px;}
.y2b_c01000{bottom:7.228369px;}
.y2a_c01000{bottom:55.320000px;}
.y29_c01000{bottom:74.520000px;}
.y28_c01000{bottom:93.420000px;}
.y27_c01000{bottom:112.020000px;}
.y26_c01000{bottom:129.870000px;}
.y25_c01000{bottom:147.870000px;}
.y24_c01000{bottom:165.420000px;}
.y23_c01000{bottom:184.920000px;}
.y22_c01000{bottom:203.070000px;}
.y21_c01000{bottom:221.970000px;}
.y20_c01000{bottom:238.620000px;}
.y1f_c01000{bottom:258.120000px;}
.y1e_c01000{bottom:275.670000px;}
.y1d_c01000{bottom:293.670000px;}
.y1c_c01000{bottom:312.420000px;}
.y1b_c01000{bottom:331.020000px;}
.y1a_c01000{bottom:349.320000px;}
.y19_c01000{bottom:367.170000px;}
.y18_c01000{bottom:386.070000px;}
.y17_c01000{bottom:403.320000px;}
.y16_c01000{bottom:421.770000px;}
.y15_c01000{bottom:439.770000px;}
.y14_c01000{bottom:458.220000px;}
.y13_c01000{bottom:476.520000px;}
.y12_c01000{bottom:494.820000px;}
.y11_c01000{bottom:512.670000px;}
.y10_c01000{bottom:530.820000px;}
.yf_c01000{bottom:547.470000px;}
.ye_c01000{bottom:566.220000px;}
.yd_c01000{bottom:585.120000px;}
.yc_c01000{bottom:602.670000px;}
.yb_c01000{bottom:620.670000px;}
.ya_c01000{bottom:638.820000px;}
.y9_c01000{bottom:657.120000px;}
.y8_c01000{bottom:675.570000px;}
.y7_c01000{bottom:694.470000px;}
.y6_c01000{bottom:711.720000px;}
.y5_c01000{bottom:729.720000px;}
.y4_c01000{bottom:747.870000px;}
.y3_c01000{bottom:765.420000px;}
.y2_c01000{bottom:784.620000px;}
.y1_c01000{bottom:806.220000px;}
.h6_c01000{height:13.200073px;}
.h7_c01000{height:43.804688px;}
.h2_c01000{height:56.592000px;}
.h3_c01000{height:59.690918px;}
.h4_c01000{height:62.880000px;}
.h5_c01000{height:64.571777px;}
.h1_c01000{height:837.750000px;}
.h0_c01000{height:838.050000px;}
.w2_c01000{width:104.875500px;}
.w1_c01000{width:576.000000px;}
.w0_c01000{width:576.150000px;}
.x0_c01000{left:0.000000px;}
.x2_c01000{left:60.450000px;}
.x3_c01000{left:61.800000px;}
.x4_c01000{left:62.850000px;}
.x5_c01000{left:63.900000px;}
.x6_c01000{left:65.250000px;}
.x7_c01000{left:66.900000px;}
.x8_c01000{left:67.950000px;}
.x1_c01000{left:198.150000px;}
.x9_c01000{left:239.889267px;}
@media print{
.v0_c01000{vertical-align:0.000000pt;}
.ls4_c01000{letter-spacing:0.000000pt;}
.ls2_c01000{letter-spacing:2.666667pt;}
.ls3_c01000{letter-spacing:5.333333pt;}
.ls0_c01000{letter-spacing:10.528000pt;}
.ls5_c01000{letter-spacing:24.000000pt;}
.ls1_c01000{letter-spacing:29.728000pt;}
.ws2_c01000{word-spacing:-36.048000pt;}
.ws3_c01000{word-spacing:-12.586667pt;}
.ws0_c01000{word-spacing:-10.925333pt;}
.ws1_c01000{word-spacing:-5.376000pt;}
.ws4_c01000{word-spacing:0.000000pt;}
._e_c01000{margin-left:-17.712000pt;}
._c_c01000{margin-left:-16.656000pt;}
._11_c01000{margin-left:-11.472000pt;}
._30_c01000{margin-left:-9.888000pt;}
._2b_c01000{margin-left:-8.592000pt;}
._15_c01000{margin-left:-7.344000pt;}
._16_c01000{margin-left:-5.856000pt;}
._18_c01000{margin-left:-4.128000pt;}
._8_c01000{margin-left:-2.880000pt;}
._1d_c01000{margin-left:-1.968000pt;}
._9_c01000{margin-left:-1.056000pt;}
._1_c01000{width:1.536000pt;}
._10_c01000{width:2.496000pt;}
._7_c01000{width:3.408000pt;}
._4_c01000{width:4.512000pt;}
._3_c01000{width:6.048000pt;}
._0_c01000{width:7.440000pt;}
._17_c01000{width:8.496000pt;}
._6_c01000{width:9.840000pt;}
._1f_c01000{width:10.896000pt;}
._a_c01000{width:11.904000pt;}
._19_c01000{width:13.104000pt;}
._2e_c01000{width:14.498667pt;}
._20_c01000{width:15.696000pt;}
._13_c01000{width:17.568000pt;}
._1a_c01000{width:18.912000pt;}
._5_c01000{width:20.016000pt;}
._1e_c01000{width:20.928000pt;}
._2c_c01000{width:21.936000pt;}
._1b_c01000{width:23.376000pt;}
._1c_c01000{width:24.336000pt;}
._b_c01000{width:34.416000pt;}
._27_c01000{width:36.906667pt;}
._2_c01000{width:45.408000pt;}
._22_c01000{width:48.384000pt;}
._24_c01000{width:62.400000pt;}
._26_c01000{width:65.370667pt;}
._25_c01000{width:76.848000pt;}
._21_c01000{width:79.920000pt;}
._23_c01000{width:84.720000pt;}
._29_c01000{width:123.280000pt;}
._d_c01000{width:129.312000pt;}
._12_c01000{width:134.880000pt;}
._f_c01000{width:137.040000pt;}
._2a_c01000{width:158.813333pt;}
._2d_c01000{width:201.437333pt;}
._2f_c01000{width:210.805333pt;}
._28_c01000{width:244.173333pt;}
._14_c01000{width:364.176000pt;}
.fs1_c01000{font-size:42.666667pt;}
.fs2_c01000{font-size:45.333333pt;}
.fs0_c01000{font-size:48.000000pt;}
.fs4_c01000{font-size:50.666667pt;}
.fs3_c01000{font-size:53.333333pt;}
.y0_c01000{bottom:0.000000pt;}
.y2c_c01000{bottom:2.760000pt;}
.y2b_c01000{bottom:6.425217pt;}
.y2a_c01000{bottom:49.173333pt;}
.y29_c01000{bottom:66.240000pt;}
.y28_c01000{bottom:83.040000pt;}
.y27_c01000{bottom:99.573333pt;}
.y26_c01000{bottom:115.440000pt;}
.y25_c01000{bottom:131.440000pt;}
.y24_c01000{bottom:147.040000pt;}
.y23_c01000{bottom:164.373333pt;}
.y22_c01000{bottom:180.506667pt;}
.y21_c01000{bottom:197.306667pt;}
.y20_c01000{bottom:212.106667pt;}
.y1f_c01000{bottom:229.440000pt;}
.y1e_c01000{bottom:245.040000pt;}
.y1d_c01000{bottom:261.040000pt;}
.y1c_c01000{bottom:277.706667pt;}
.y1b_c01000{bottom:294.240000pt;}
.y1a_c01000{bottom:310.506667pt;}
.y19_c01000{bottom:326.373333pt;}
.y18_c01000{bottom:343.173333pt;}
.y17_c01000{bottom:358.506667pt;}
.y16_c01000{bottom:374.906667pt;}
.y15_c01000{bottom:390.906667pt;}
.y14_c01000{bottom:407.306667pt;}
.y13_c01000{bottom:423.573333pt;}
.y12_c01000{bottom:439.840000pt;}
.y11_c01000{bottom:455.706667pt;}
.y10_c01000{bottom:471.840000pt;}
.yf_c01000{bottom:486.640000pt;}
.ye_c01000{bottom:503.306667pt;}
.yd_c01000{bottom:520.106667pt;}
.yc_c01000{bottom:535.706667pt;}
.yb_c01000{bottom:551.706667pt;}
.ya_c01000{bottom:567.840000pt;}
.y9_c01000{bottom:584.106667pt;}
.y8_c01000{bottom:600.506667pt;}
.y7_c01000{bottom:617.306667pt;}
.y6_c01000{bottom:632.640000pt;}
.y5_c01000{bottom:648.640000pt;}
.y4_c01000{bottom:664.773333pt;}
.y3_c01000{bottom:680.373333pt;}
.y2_c01000{bottom:697.440000pt;}
.y1_c01000{bottom:716.640000pt;}
.h6_c01000{height:11.733399pt;}
.h7_c01000{height:38.937500pt;}
.h2_c01000{height:50.304000pt;}
.h3_c01000{height:53.058594pt;}
.h4_c01000{height:55.893333pt;}
.h5_c01000{height:57.397135pt;}
.h1_c01000{height:744.666667pt;}
.h0_c01000{height:744.933333pt;}
.w2_c01000{width:93.222667pt;}
.w1_c01000{width:512.000000pt;}
.w0_c01000{width:512.133333pt;}
.x0_c01000{left:0.000000pt;}
.x2_c01000{left:53.733333pt;}
.x3_c01000{left:54.933333pt;}
.x4_c01000{left:55.866667pt;}
.x5_c01000{left:56.800000pt;}
.x6_c01000{left:58.000000pt;}
.x7_c01000{left:59.466667pt;}
.x8_c01000{left:60.400000pt;}
.x1_c01000{left:176.133333pt;}
.x9_c01000{left:213.234904pt;}
}





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

.ir_c01001:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01001{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01001;src:url('chunks/assets/font_ecb8652da57c157edd4cbc22.woff2')format("woff");}.ff1_c01001{font-family:ff1_c01001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01001;src:url('chunks/assets/font_2ffb109dd46fa7c7c855152e.woff2')format("woff");}.ff2_c01001{font-family:ff2_c01001;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01001;src:url('chunks/assets/font_d7cd1cea30228abfe549e2df.woff2')format("woff");}.ff3_c01001{font-family:ff3_c01001;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01001;src:url('chunks/assets/font_9703099bd3fc66182ecc7464.woff2')format("woff");}.ff4_c01001{font-family:ff4_c01001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01001;src:url('chunks/assets/font_3611e85c8e64622704676918.woff2')format("woff");}.ff5_c01001{font-family:ff5_c01001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01001;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff6_c01001{font-family:ff6_c01001;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01001{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01001{vertical-align:0.000000px;}
.ls6_c01001{letter-spacing:0.000000px;}
.ls7_c01001{letter-spacing:3.000000px;}
.ls5_c01001{letter-spacing:6.000000px;}
.ls1_c01001{letter-spacing:6.540000px;}
.ls2_c01001{letter-spacing:8.400000px;}
.ls4_c01001{letter-spacing:14.493000px;}
.ls3_c01001{letter-spacing:16.500000px;}
.ls0_c01001{letter-spacing:46.293000px;}
.sc__c01001{text-shadow:none;}
.sc0_c01001{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01001{-webkit-text-stroke:0px transparent;}
.sc0_c01001{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01001{word-spacing:-21.000000px;}
.ws3_c01001{word-spacing:-15.576000px;}
.ws5_c01001{word-spacing:-15.060000px;}
.ws0_c01001{word-spacing:-14.160000px;}
.ws1_c01001{word-spacing:-13.452000px;}
.ws6_c01001{word-spacing:0.000000px;}
.ws4_c01001{word-spacing:8.520000px;}
._17_c01001{margin-left:-13.680000px;}
._16_c01001{margin-left:-12.000000px;}
._11_c01001{margin-left:-10.089000px;}
._1e_c01001{margin-left:-8.427000px;}
._d_c01001{margin-left:-7.080000px;}
._15_c01001{margin-left:-5.157000px;}
._2_c01001{margin-left:-3.450000px;}
._0_c01001{margin-left:-1.800000px;}
._4_c01001{width:1.200000px;}
._9_c01001{width:2.580000px;}
._6_c01001{width:3.600000px;}
._8_c01001{width:4.680000px;}
._5_c01001{width:6.120000px;}
._b_c01001{width:8.040000px;}
._7_c01001{width:9.180000px;}
._f_c01001{width:10.320000px;}
._a_c01001{width:11.580000px;}
._c_c01001{width:12.660000px;}
._e_c01001{width:14.025000px;}
._19_c01001{width:16.281000px;}
._10_c01001{width:17.340000px;}
._3_c01001{width:18.675000px;}
._2b_c01001{width:20.280000px;}
._13_c01001{width:21.561000px;}
._26_c01001{width:22.680000px;}
._1f_c01001{width:24.222000px;}
._24_c01001{width:25.620000px;}
._22_c01001{width:26.640000px;}
._25_c01001{width:28.020000px;}
._21_c01001{width:29.547000px;}
._27_c01001{width:34.260000px;}
._14_c01001{width:39.732000px;}
._1d_c01001{width:45.699000px;}
._2a_c01001{width:59.280000px;}
._29_c01001{width:61.560000px;}
._2c_c01001{width:66.456000px;}
._28_c01001{width:68.700000px;}
._23_c01001{width:72.780000px;}
._1a_c01001{width:87.225000px;}
._1c_c01001{width:130.860000px;}
._1b_c01001{width:135.678000px;}
._20_c01001{width:145.383000px;}
._18_c01001{width:152.340000px;}
._12_c01001{width:173.526000px;}
._1_c01001{width:200.100000px;}
.fc2_c01001{color:transparent;}
.fc1_c01001{color:rgb(128,128,128);}
.fc0_c01001{color:rgb(0,0,0);}
.fs3_c01001{font-size:39.000000px;}
.fs6_c01001{font-size:48.000000px;}
.fs2_c01001{font-size:57.000000px;}
.fs1_c01001{font-size:60.000000px;}
.fs4_c01001{font-size:63.000000px;}
.fs5_c01001{font-size:66.000000px;}
.fs0_c01001{font-size:75.000000px;}
.y0_c01001{bottom:0.000000px;}
.y2c_c01001{bottom:3.105000px;}
.y2b_c01001{bottom:7.228371px;}
.y2a_c01001{bottom:27.315000px;}
.y29_c01001{bottom:38.865000px;}
.y28_c01001{bottom:56.115000px;}
.y27_c01001{bottom:75.915000px;}
.y26_c01001{bottom:93.165000px;}
.y25_c01001{bottom:112.515000px;}
.y24_c01001{bottom:129.915000px;}
.y23_c01001{bottom:148.965000px;}
.y22_c01001{bottom:167.715000px;}
.y21_c01001{bottom:185.415000px;}
.y20_c01001{bottom:220.365000px;}
.y1f_c01001{bottom:239.265000px;}
.y1e_c01001{bottom:275.415000px;}
.y1d_c01001{bottom:293.415000px;}
.y1c_c01001{bottom:311.265000px;}
.y1b_c01001{bottom:329.115000px;}
.y1a_c01001{bottom:347.715000px;}
.y19_c01001{bottom:366.315000px;}
.y18_c01001{bottom:384.465000px;}
.y17_c01001{bottom:402.315000px;}
.y16_c01001{bottom:420.315000px;}
.y15_c01001{bottom:438.765000px;}
.y14_c01001{bottom:457.065000px;}
.y13_c01001{bottom:475.515000px;}
.y12_c01001{bottom:493.215000px;}
.y11_c01001{bottom:511.665000px;}
.y10_c01001{bottom:529.215000px;}
.yf_c01001{bottom:547.515000px;}
.ye_c01001{bottom:565.665000px;}
.yd_c01001{bottom:583.665000px;}
.yc_c01001{bottom:601.815000px;}
.yb_c01001{bottom:620.115000px;}
.ya_c01001{bottom:638.265000px;}
.y9_c01001{bottom:656.565000px;}
.y8_c01001{bottom:674.415000px;}
.y7_c01001{bottom:691.965000px;}
.y6_c01001{bottom:711.165000px;}
.y5_c01001{bottom:729.315000px;}
.y4_c01001{bottom:747.315000px;}
.y3_c01001{bottom:765.465000px;}
.y2_c01001{bottom:783.315000px;}
.y1_c01001{bottom:804.315000px;}
.h7_c01001{height:13.200074px;}
.h8_c01001{height:43.804688px;}
.h4_c01001{height:59.736000px;}
.h3_c01001{height:62.880000px;}
.h5_c01001{height:64.020000px;}
.h6_c01001{height:69.168000px;}
.h2_c01001{height:80.025000px;}
.h0_c01001{height:848.625000px;}
.h1_c01001{height:849.000000px;}
.w2_c01001{width:104.875500px;}
.w1_c01001{width:579.750000px;}
.w0_c01001{width:579.975000px;}
.x0_c01001{left:0.000000px;}
.x4_c01001{left:38.850000px;}
.x2_c01001{left:39.900000px;}
.x5_c01001{left:42.150000px;}
.xd_c01001{left:92.100000px;}
.xc_c01001{left:96.150000px;}
.xb_c01001{left:97.800000px;}
.x8_c01001{left:98.850000px;}
.x3_c01001{left:99.900000px;}
.x7_c01001{left:100.950000px;}
.x6_c01001{left:102.000000px;}
.x1_c01001{left:104.700000px;}
.xa_c01001{left:105.750000px;}
.x9_c01001{left:115.500000px;}
.x10_c01001{left:241.801758px;}
.xe_c01001{left:478.350000px;}
.xf_c01001{left:498.600000px;}
@media print{
.v0_c01001{vertical-align:0.000000pt;}
.ls6_c01001{letter-spacing:0.000000pt;}
.ls7_c01001{letter-spacing:2.666667pt;}
.ls5_c01001{letter-spacing:5.333333pt;}
.ls1_c01001{letter-spacing:5.813333pt;}
.ls2_c01001{letter-spacing:7.466667pt;}
.ls4_c01001{letter-spacing:12.882667pt;}
.ls3_c01001{letter-spacing:14.666667pt;}
.ls0_c01001{letter-spacing:41.149333pt;}
.ws2_c01001{word-spacing:-18.666667pt;}
.ws3_c01001{word-spacing:-13.845333pt;}
.ws5_c01001{word-spacing:-13.386667pt;}
.ws0_c01001{word-spacing:-12.586667pt;}
.ws1_c01001{word-spacing:-11.957333pt;}
.ws6_c01001{word-spacing:0.000000pt;}
.ws4_c01001{word-spacing:7.573333pt;}
._17_c01001{margin-left:-12.160000pt;}
._16_c01001{margin-left:-10.666667pt;}
._11_c01001{margin-left:-8.968000pt;}
._1e_c01001{margin-left:-7.490667pt;}
._d_c01001{margin-left:-6.293333pt;}
._15_c01001{margin-left:-4.584000pt;}
._2_c01001{margin-left:-3.066667pt;}
._0_c01001{margin-left:-1.600000pt;}
._4_c01001{width:1.066667pt;}
._9_c01001{width:2.293333pt;}
._6_c01001{width:3.200000pt;}
._8_c01001{width:4.160000pt;}
._5_c01001{width:5.440000pt;}
._b_c01001{width:7.146667pt;}
._7_c01001{width:8.160000pt;}
._f_c01001{width:9.173333pt;}
._a_c01001{width:10.293333pt;}
._c_c01001{width:11.253333pt;}
._e_c01001{width:12.466667pt;}
._19_c01001{width:14.472000pt;}
._10_c01001{width:15.413333pt;}
._3_c01001{width:16.600000pt;}
._2b_c01001{width:18.026667pt;}
._13_c01001{width:19.165333pt;}
._26_c01001{width:20.160000pt;}
._1f_c01001{width:21.530667pt;}
._24_c01001{width:22.773333pt;}
._22_c01001{width:23.680000pt;}
._25_c01001{width:24.906667pt;}
._21_c01001{width:26.264000pt;}
._27_c01001{width:30.453333pt;}
._14_c01001{width:35.317333pt;}
._1d_c01001{width:40.621333pt;}
._2a_c01001{width:52.693333pt;}
._29_c01001{width:54.720000pt;}
._2c_c01001{width:59.072000pt;}
._28_c01001{width:61.066667pt;}
._23_c01001{width:64.693333pt;}
._1a_c01001{width:77.533333pt;}
._1c_c01001{width:116.320000pt;}
._1b_c01001{width:120.602667pt;}
._20_c01001{width:129.229333pt;}
._18_c01001{width:135.413333pt;}
._12_c01001{width:154.245333pt;}
._1_c01001{width:177.866667pt;}
.fs3_c01001{font-size:34.666667pt;}
.fs6_c01001{font-size:42.666667pt;}
.fs2_c01001{font-size:50.666667pt;}
.fs1_c01001{font-size:53.333333pt;}
.fs4_c01001{font-size:56.000000pt;}
.fs5_c01001{font-size:58.666667pt;}
.fs0_c01001{font-size:66.666667pt;}
.y0_c01001{bottom:0.000000pt;}
.y2c_c01001{bottom:2.760000pt;}
.y2b_c01001{bottom:6.425219pt;}
.y2a_c01001{bottom:24.280000pt;}
.y29_c01001{bottom:34.546667pt;}
.y28_c01001{bottom:49.880000pt;}
.y27_c01001{bottom:67.480000pt;}
.y26_c01001{bottom:82.813333pt;}
.y25_c01001{bottom:100.013333pt;}
.y24_c01001{bottom:115.480000pt;}
.y23_c01001{bottom:132.413333pt;}
.y22_c01001{bottom:149.080000pt;}
.y21_c01001{bottom:164.813333pt;}
.y20_c01001{bottom:195.880000pt;}
.y1f_c01001{bottom:212.680000pt;}
.y1e_c01001{bottom:244.813333pt;}
.y1d_c01001{bottom:260.813333pt;}
.y1c_c01001{bottom:276.680000pt;}
.y1b_c01001{bottom:292.546667pt;}
.y1a_c01001{bottom:309.080000pt;}
.y19_c01001{bottom:325.613333pt;}
.y18_c01001{bottom:341.746667pt;}
.y17_c01001{bottom:357.613333pt;}
.y16_c01001{bottom:373.613333pt;}
.y15_c01001{bottom:390.013333pt;}
.y14_c01001{bottom:406.280000pt;}
.y13_c01001{bottom:422.680000pt;}
.y12_c01001{bottom:438.413333pt;}
.y11_c01001{bottom:454.813333pt;}
.y10_c01001{bottom:470.413333pt;}
.yf_c01001{bottom:486.680000pt;}
.ye_c01001{bottom:502.813333pt;}
.yd_c01001{bottom:518.813333pt;}
.yc_c01001{bottom:534.946667pt;}
.yb_c01001{bottom:551.213333pt;}
.ya_c01001{bottom:567.346667pt;}
.y9_c01001{bottom:583.613333pt;}
.y8_c01001{bottom:599.480000pt;}
.y7_c01001{bottom:615.080000pt;}
.y6_c01001{bottom:632.146667pt;}
.y5_c01001{bottom:648.280000pt;}
.y4_c01001{bottom:664.280000pt;}
.y3_c01001{bottom:680.413333pt;}
.y2_c01001{bottom:696.280000pt;}
.y1_c01001{bottom:714.946667pt;}
.h7_c01001{height:11.733399pt;}
.h8_c01001{height:38.937500pt;}
.h4_c01001{height:53.098667pt;}
.h3_c01001{height:55.893333pt;}
.h5_c01001{height:56.906667pt;}
.h6_c01001{height:61.482667pt;}
.h2_c01001{height:71.133333pt;}
.h0_c01001{height:754.333333pt;}
.h1_c01001{height:754.666667pt;}
.w2_c01001{width:93.222667pt;}
.w1_c01001{width:515.333333pt;}
.w0_c01001{width:515.533333pt;}
.x0_c01001{left:0.000000pt;}
.x4_c01001{left:34.533333pt;}
.x2_c01001{left:35.466667pt;}
.x5_c01001{left:37.466667pt;}
.xd_c01001{left:81.866667pt;}
.xc_c01001{left:85.466667pt;}
.xb_c01001{left:86.933333pt;}
.x8_c01001{left:87.866667pt;}
.x3_c01001{left:88.800000pt;}
.x7_c01001{left:89.733333pt;}
.x6_c01001{left:90.666667pt;}
.x1_c01001{left:93.066667pt;}
.xa_c01001{left:94.000000pt;}
.x9_c01001{left:102.666667pt;}
.x10_c01001{left:214.934896pt;}
.xe_c01001{left:425.200000pt;}
.xf_c01001{left:443.200000pt;}
}





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

.ir_c01002:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01002{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01002;src:url('chunks/assets/font_a6703d47a729e68e91c34aec.woff2')format("woff");}.ff1_c01002{font-family:ff1_c01002;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01002;src:url('chunks/assets/font_31a8ff1756458b04c62ba8f7.woff2')format("woff");}.ff2_c01002{font-family:ff2_c01002;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01002;src:url('chunks/assets/font_61630625f82c511ac967932f.woff2')format("woff");}.ff3_c01002{font-family:ff3_c01002;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01002;src:url('chunks/assets/font_d892e0d86c3d224caa095fa2.woff2')format("woff");}.ff4_c01002{font-family:ff4_c01002;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01002;src:url('chunks/assets/font_4ad200ed84eddd982f031792.woff2')format("woff");}.ff5_c01002{font-family:ff5_c01002;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01002;src:url('chunks/assets/font_46c6c9d0e54924f9d45bd137.woff2')format("woff");}.ff6_c01002{font-family:ff6_c01002;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01002;src:url('chunks/assets/font_53970840027122674b0aca81.woff2')format("woff");}.ff7_c01002{font-family:ff7_c01002;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c01002;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff8_c01002{font-family:ff8_c01002;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01002{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01002{vertical-align:0.000000px;}
.v1_c01002{vertical-align:62.400000px;}
.ls4_c01002{letter-spacing:0.000000px;}
.ls0_c01002{letter-spacing:0.900000px;}
.ls6_c01002{letter-spacing:3.000000px;}
.ls1_c01002{letter-spacing:5.100000px;}
.ls5_c01002{letter-spacing:6.000000px;}
.ls2_c01002{letter-spacing:8.664000px;}
.ls3_c01002{letter-spacing:49.005000px;}
.sc__c01002{text-shadow:none;}
.sc0_c01002{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01002{-webkit-text-stroke:0px transparent;}
.sc0_c01002{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01002{word-spacing:-15.750000px;}
.ws0_c01002{word-spacing:-14.427000px;}
.ws3_c01002{word-spacing:-13.500000px;}
.ws4_c01002{word-spacing:-13.452000px;}
.ws2_c01002{word-spacing:-0.540000px;}
.ws5_c01002{word-spacing:0.000000px;}
._1f_c01002{margin-left:-16.368000px;}
._1d_c01002{margin-left:-15.270000px;}
._20_c01002{margin-left:-14.112000px;}
._1e_c01002{margin-left:-11.970000px;}
._1a_c01002{margin-left:-10.962000px;}
._f_c01002{margin-left:-9.651000px;}
._17_c01002{margin-left:-8.631000px;}
._18_c01002{margin-left:-7.548000px;}
._19_c01002{margin-left:-6.135000px;}
._10_c01002{margin-left:-4.851000px;}
._11_c01002{margin-left:-3.024000px;}
._e_c01002{margin-left:-1.134000px;}
._5_c01002{width:1.890000px;}
._8_c01002{width:3.276000px;}
._6_c01002{width:4.473000px;}
._a_c01002{width:6.111000px;}
._7_c01002{width:7.497000px;}
._24_c01002{width:8.568000px;}
._c_c01002{width:9.954000px;}
._4_c01002{width:10.962000px;}
._0_c01002{width:12.789000px;}
._21_c01002{width:13.809000px;}
._1b_c01002{width:17.325000px;}
._b_c01002{width:18.711000px;}
._29_c01002{width:20.100000px;}
._16_c01002{width:21.168000px;}
._2_c01002{width:22.617000px;}
._3_c01002{width:24.822000px;}
._27_c01002{width:25.893000px;}
._9_c01002{width:27.027000px;}
._28_c01002{width:28.539000px;}
._d_c01002{width:29.736000px;}
._14_c01002{width:32.949000px;}
._26_c01002{width:34.524000px;}
._1c_c01002{width:35.691000px;}
._25_c01002{width:39.375000px;}
._1_c01002{width:43.596000px;}
._15_c01002{width:48.762000px;}
._13_c01002{width:53.739000px;}
._12_c01002{width:58.527000px;}
._22_c01002{width:84.450000px;}
._23_c01002{width:283.056000px;}
.fc2_c01002{color:transparent;}
.fc1_c01002{color:rgb(128,128,128);}
.fc0_c01002{color:rgb(0,0,0);}
.fs6_c01002{font-size:45.000000px;}
.fs7_c01002{font-size:48.000000px;}
.fs4_c01002{font-size:54.000000px;}
.fs1_c01002{font-size:57.000000px;}
.fs3_c01002{font-size:60.000000px;}
.fs0_c01002{font-size:63.000000px;}
.fs2_c01002{font-size:75.000000px;}
.fs5_c01002{font-size:144.000000px;}
.y0_c01002{bottom:0.000000px;}
.y54_c01002{bottom:3.105000px;}
.y53_c01002{bottom:7.228363px;}
.y52_c01002{bottom:45.000000px;}
.y2a_c01002{bottom:62.100000px;}
.y51_c01002{bottom:63.150000px;}
.y29_c01002{bottom:81.600000px;}
.y50_c01002{bottom:82.950000px;}
.y28_c01002{bottom:99.450000px;}
.y4f_c01002{bottom:100.650000px;}
.y27_c01002{bottom:117.750000px;}
.y4e_c01002{bottom:118.800000px;}
.y26_c01002{bottom:135.600000px;}
.y4d_c01002{bottom:137.250000px;}
.y25_c01002{bottom:154.200000px;}
.y4c_c01002{bottom:155.250000px;}
.y24_c01002{bottom:172.050000px;}
.y4b_c01002{bottom:173.250000px;}
.y4a_c01002{bottom:175.800000px;}
.y23_c01002{bottom:190.950000px;}
.y22_c01002{bottom:208.500000px;}
.y21_c01002{bottom:226.500000px;}
.y49_c01002{bottom:228.750000px;}
.y20_c01002{bottom:244.950000px;}
.y48_c01002{bottom:245.700000px;}
.y1f_c01002{bottom:262.500000px;}
.y47_c01002{bottom:264.000000px;}
.y1e_c01002{bottom:280.800000px;}
.y46_c01002{bottom:281.850000px;}
.y1d_c01002{bottom:298.050000px;}
.y1c_c01002{bottom:316.200000px;}
.y45_c01002{bottom:316.950000px;}
.y1b_c01002{bottom:334.350000px;}
.y1a_c01002{bottom:352.350000px;}
.y44_c01002{bottom:352.650000px;}
.y19_c01002{bottom:370.950000px;}
.y43_c01002{bottom:371.550000px;}
.y18_c01002{bottom:389.700000px;}
.y42_c01002{bottom:389.850000px;}
.y17_c01002{bottom:407.400000px;}
.y41_c01002{bottom:407.700000px;}
.y16_c01002{bottom:424.950000px;}
.y40_c01002{bottom:426.000000px;}
.y15_c01002{bottom:442.800000px;}
.y3f_c01002{bottom:443.850000px;}
.y14_c01002{bottom:460.650000px;}
.y3e_c01002{bottom:462.150000px;}
.y13_c01002{bottom:478.650000px;}
.y3d_c01002{bottom:480.300000px;}
.y12_c01002{bottom:496.500000px;}
.y3c_c01002{bottom:498.600000px;}
.y11_c01002{bottom:514.350000px;}
.y3b_c01002{bottom:516.450000px;}
.y10_c01002{bottom:531.150000px;}
.y3a_c01002{bottom:534.300000px;}
.yf_c01002{bottom:549.000000px;}
.y39_c01002{bottom:551.850000px;}
.ye_c01002{bottom:567.300000px;}
.y38_c01002{bottom:570.000000px;}
.yd_c01002{bottom:585.450000px;}
.y37_c01002{bottom:587.700000px;}
.yc_c01002{bottom:603.450000px;}
.y36_c01002{bottom:606.150000px;}
.yb_c01002{bottom:621.300000px;}
.y35_c01002{bottom:624.150000px;}
.ya_c01002{bottom:639.600000px;}
.y34_c01002{bottom:642.000000px;}
.y9_c01002{bottom:657.450000px;}
.y33_c01002{bottom:660.450000px;}
.y8_c01002{bottom:675.750000px;}
.y32_c01002{bottom:678.300000px;}
.y7_c01002{bottom:693.900000px;}
.y31_c01002{bottom:696.900000px;}
.y6_c01002{bottom:711.450000px;}
.y30_c01002{bottom:714.750000px;}
.y5_c01002{bottom:730.050000px;}
.y2f_c01002{bottom:733.350000px;}
.y4_c01002{bottom:747.900000px;}
.y2e_c01002{bottom:750.900000px;}
.y3_c01002{bottom:766.500000px;}
.y2d_c01002{bottom:770.400000px;}
.y2_c01002{bottom:784.050000px;}
.y2c_c01002{bottom:788.400000px;}
.y1_c01002{bottom:805.950000px;}
.y2b_c01002{bottom:807.600000px;}
.h8_c01002{height:13.200074px;}
.h9_c01002{height:43.804688px;}
.h6_c01002{height:58.536000px;}
.h5_c01002{height:59.736000px;}
.h4_c01002{height:62.880000px;}
.h1_c01002{height:66.024000px;}
.h3_c01002{height:67.221000px;}
.h2_c01002{height:80.025000px;}
.h7_c01002{height:150.912000px;}
.h0_c01002{height:843.750000px;}
.w2_c01002{width:104.875500px;}
.w1_c01002{width:579.750000px;}
.w0_c01002{width:579.975000px;}
.x0_c01002{left:0.000000px;}
.x5_c01002{left:16.200000px;}
.x2_c01002{left:73.950000px;}
.x3_c01002{left:75.000000px;}
.x4_c01002{left:77.250000px;}
.x6_c01002{left:79.050000px;}
.x7_c01002{left:80.100000px;}
.x8_c01002{left:81.750000px;}
.x1_c01002{left:199.500000px;}
.x1b_c01002{left:241.801758px;}
.xa_c01002{left:289.950000px;}
.x9_c01002{left:291.600000px;}
.xc_c01002{left:292.650000px;}
.xd_c01002{left:294.000000px;}
.xe_c01002{left:295.650000px;}
.xf_c01002{left:296.700000px;}
.x10_c01002{left:297.750000px;}
.x11_c01002{left:298.800000px;}
.x13_c01002{left:300.150000px;}
.x19_c01002{left:303.450000px;}
.x17_c01002{left:304.800000px;}
.x14_c01002{left:312.300000px;}
.xb_c01002{left:316.350000px;}
.x15_c01002{left:333.150000px;}
.x18_c01002{left:336.450000px;}
.x16_c01002{left:358.050000px;}
.x12_c01002{left:382.350000px;}
.x1a_c01002{left:484.350000px;}
@media print{
.v0_c01002{vertical-align:0.000000pt;}
.v1_c01002{vertical-align:55.466667pt;}
.ls4_c01002{letter-spacing:0.000000pt;}
.ls0_c01002{letter-spacing:0.800000pt;}
.ls6_c01002{letter-spacing:2.666667pt;}
.ls1_c01002{letter-spacing:4.533333pt;}
.ls5_c01002{letter-spacing:5.333333pt;}
.ls2_c01002{letter-spacing:7.701333pt;}
.ls3_c01002{letter-spacing:43.560000pt;}
.ws1_c01002{word-spacing:-14.000000pt;}
.ws0_c01002{word-spacing:-12.824000pt;}
.ws3_c01002{word-spacing:-12.000000pt;}
.ws4_c01002{word-spacing:-11.957333pt;}
.ws2_c01002{word-spacing:-0.480000pt;}
.ws5_c01002{word-spacing:0.000000pt;}
._1f_c01002{margin-left:-14.549333pt;}
._1d_c01002{margin-left:-13.573333pt;}
._20_c01002{margin-left:-12.544000pt;}
._1e_c01002{margin-left:-10.640000pt;}
._1a_c01002{margin-left:-9.744000pt;}
._f_c01002{margin-left:-8.578667pt;}
._17_c01002{margin-left:-7.672000pt;}
._18_c01002{margin-left:-6.709333pt;}
._19_c01002{margin-left:-5.453333pt;}
._10_c01002{margin-left:-4.312000pt;}
._11_c01002{margin-left:-2.688000pt;}
._e_c01002{margin-left:-1.008000pt;}
._5_c01002{width:1.680000pt;}
._8_c01002{width:2.912000pt;}
._6_c01002{width:3.976000pt;}
._a_c01002{width:5.432000pt;}
._7_c01002{width:6.664000pt;}
._24_c01002{width:7.616000pt;}
._c_c01002{width:8.848000pt;}
._4_c01002{width:9.744000pt;}
._0_c01002{width:11.368000pt;}
._21_c01002{width:12.274667pt;}
._1b_c01002{width:15.400000pt;}
._b_c01002{width:16.632000pt;}
._29_c01002{width:17.866667pt;}
._16_c01002{width:18.816000pt;}
._2_c01002{width:20.104000pt;}
._3_c01002{width:22.064000pt;}
._27_c01002{width:23.016000pt;}
._9_c01002{width:24.024000pt;}
._28_c01002{width:25.368000pt;}
._d_c01002{width:26.432000pt;}
._14_c01002{width:29.288000pt;}
._26_c01002{width:30.688000pt;}
._1c_c01002{width:31.725333pt;}
._25_c01002{width:35.000000pt;}
._1_c01002{width:38.752000pt;}
._15_c01002{width:43.344000pt;}
._13_c01002{width:47.768000pt;}
._12_c01002{width:52.024000pt;}
._22_c01002{width:75.066667pt;}
._23_c01002{width:251.605333pt;}
.fs6_c01002{font-size:40.000000pt;}
.fs7_c01002{font-size:42.666667pt;}
.fs4_c01002{font-size:48.000000pt;}
.fs1_c01002{font-size:50.666667pt;}
.fs3_c01002{font-size:53.333333pt;}
.fs0_c01002{font-size:56.000000pt;}
.fs2_c01002{font-size:66.666667pt;}
.fs5_c01002{font-size:128.000000pt;}
.y0_c01002{bottom:0.000000pt;}
.y54_c01002{bottom:2.760000pt;}
.y53_c01002{bottom:6.425212pt;}
.y52_c01002{bottom:40.000000pt;}
.y2a_c01002{bottom:55.200000pt;}
.y51_c01002{bottom:56.133333pt;}
.y29_c01002{bottom:72.533333pt;}
.y50_c01002{bottom:73.733333pt;}
.y28_c01002{bottom:88.400000pt;}
.y4f_c01002{bottom:89.466667pt;}
.y27_c01002{bottom:104.666667pt;}
.y4e_c01002{bottom:105.600000pt;}
.y26_c01002{bottom:120.533333pt;}
.y4d_c01002{bottom:122.000000pt;}
.y25_c01002{bottom:137.066667pt;}
.y4c_c01002{bottom:138.000000pt;}
.y24_c01002{bottom:152.933333pt;}
.y4b_c01002{bottom:154.000000pt;}
.y4a_c01002{bottom:156.266667pt;}
.y23_c01002{bottom:169.733333pt;}
.y22_c01002{bottom:185.333333pt;}
.y21_c01002{bottom:201.333333pt;}
.y49_c01002{bottom:203.333333pt;}
.y20_c01002{bottom:217.733333pt;}
.y48_c01002{bottom:218.400000pt;}
.y1f_c01002{bottom:233.333333pt;}
.y47_c01002{bottom:234.666667pt;}
.y1e_c01002{bottom:249.600000pt;}
.y46_c01002{bottom:250.533333pt;}
.y1d_c01002{bottom:264.933333pt;}
.y1c_c01002{bottom:281.066667pt;}
.y45_c01002{bottom:281.733333pt;}
.y1b_c01002{bottom:297.200000pt;}
.y1a_c01002{bottom:313.200000pt;}
.y44_c01002{bottom:313.466667pt;}
.y19_c01002{bottom:329.733333pt;}
.y43_c01002{bottom:330.266667pt;}
.y18_c01002{bottom:346.400000pt;}
.y42_c01002{bottom:346.533333pt;}
.y17_c01002{bottom:362.133333pt;}
.y41_c01002{bottom:362.400000pt;}
.y16_c01002{bottom:377.733333pt;}
.y40_c01002{bottom:378.666667pt;}
.y15_c01002{bottom:393.600000pt;}
.y3f_c01002{bottom:394.533333pt;}
.y14_c01002{bottom:409.466667pt;}
.y3e_c01002{bottom:410.800000pt;}
.y13_c01002{bottom:425.466667pt;}
.y3d_c01002{bottom:426.933333pt;}
.y12_c01002{bottom:441.333333pt;}
.y3c_c01002{bottom:443.200000pt;}
.y11_c01002{bottom:457.200000pt;}
.y3b_c01002{bottom:459.066667pt;}
.y10_c01002{bottom:472.133333pt;}
.y3a_c01002{bottom:474.933333pt;}
.yf_c01002{bottom:488.000000pt;}
.y39_c01002{bottom:490.533333pt;}
.ye_c01002{bottom:504.266667pt;}
.y38_c01002{bottom:506.666667pt;}
.yd_c01002{bottom:520.400000pt;}
.y37_c01002{bottom:522.400000pt;}
.yc_c01002{bottom:536.400000pt;}
.y36_c01002{bottom:538.800000pt;}
.yb_c01002{bottom:552.266667pt;}
.y35_c01002{bottom:554.800000pt;}
.ya_c01002{bottom:568.533333pt;}
.y34_c01002{bottom:570.666667pt;}
.y9_c01002{bottom:584.400000pt;}
.y33_c01002{bottom:587.066667pt;}
.y8_c01002{bottom:600.666667pt;}
.y32_c01002{bottom:602.933333pt;}
.y7_c01002{bottom:616.800000pt;}
.y31_c01002{bottom:619.466667pt;}
.y6_c01002{bottom:632.400000pt;}
.y30_c01002{bottom:635.333333pt;}
.y5_c01002{bottom:648.933333pt;}
.y2f_c01002{bottom:651.866667pt;}
.y4_c01002{bottom:664.800000pt;}
.y2e_c01002{bottom:667.466667pt;}
.y3_c01002{bottom:681.333333pt;}
.y2d_c01002{bottom:684.800000pt;}
.y2_c01002{bottom:696.933333pt;}
.y2c_c01002{bottom:700.800000pt;}
.y1_c01002{bottom:716.400000pt;}
.y2b_c01002{bottom:717.866667pt;}
.h8_c01002{height:11.733399pt;}
.h9_c01002{height:38.937500pt;}
.h6_c01002{height:52.032000pt;}
.h5_c01002{height:53.098667pt;}
.h4_c01002{height:55.893333pt;}
.h1_c01002{height:58.688000pt;}
.h3_c01002{height:59.752000pt;}
.h2_c01002{height:71.133333pt;}
.h7_c01002{height:134.144000pt;}
.h0_c01002{height:750.000000pt;}
.w2_c01002{width:93.222667pt;}
.w1_c01002{width:515.333333pt;}
.w0_c01002{width:515.533333pt;}
.x0_c01002{left:0.000000pt;}
.x5_c01002{left:14.400000pt;}
.x2_c01002{left:65.733333pt;}
.x3_c01002{left:66.666667pt;}
.x4_c01002{left:68.666667pt;}
.x6_c01002{left:70.266667pt;}
.x7_c01002{left:71.200000pt;}
.x8_c01002{left:72.666667pt;}
.x1_c01002{left:177.333333pt;}
.x1b_c01002{left:214.934896pt;}
.xa_c01002{left:257.733333pt;}
.x9_c01002{left:259.200000pt;}
.xc_c01002{left:260.133333pt;}
.xd_c01002{left:261.333333pt;}
.xe_c01002{left:262.800000pt;}
.xf_c01002{left:263.733333pt;}
.x10_c01002{left:264.666667pt;}
.x11_c01002{left:265.600000pt;}
.x13_c01002{left:266.800000pt;}
.x19_c01002{left:269.733333pt;}
.x17_c01002{left:270.933333pt;}
.x14_c01002{left:277.600000pt;}
.xb_c01002{left:281.200000pt;}
.x15_c01002{left:296.133333pt;}
.x18_c01002{left:299.066667pt;}
.x16_c01002{left:318.266667pt;}
.x12_c01002{left:339.866667pt;}
.x1a_c01002{left:430.533333pt;}
}





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

.ir_c01003:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01003{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01003;src:url('chunks/assets/font_b3c487fd3263dc7792d338fb.woff2')format("woff");}.ff1_c01003{font-family:ff1_c01003;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01003;src:url('chunks/assets/font_cf0149704384f865abad3436.woff2')format("woff");}.ff2_c01003{font-family:ff2_c01003;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01003;src:url('chunks/assets/font_c73b600827286a2d3530abe7.woff2')format("woff");}.ff3_c01003{font-family:ff3_c01003;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01003;src:url('chunks/assets/font_cec81a69c9d6236b3ffdc4d4.woff2')format("woff");}.ff4_c01003{font-family:ff4_c01003;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01003;src:url('chunks/assets/font_7603231e8d149efa4722dd9b.woff2')format("woff");}.ff5_c01003{font-family:ff5_c01003;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01003;src:url('chunks/assets/font_a3da3b6fad4410dda7539871.woff2')format("woff");}.ff6_c01003{font-family:ff6_c01003;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01003;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff7_c01003{font-family:ff7_c01003;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c01003;src:url('chunks/assets/font_62b786f00a4a25aa4c204a3b.woff2')format("woff");}.ff8_c01003{font-family:ff8_c01003;line-height:1.012793;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c01003;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff9_c01003{font-family:ff9_c01003;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01003{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01003{vertical-align:0.000000px;}
.ls5_c01003{letter-spacing:0.000000px;}
.ls1_c01003{letter-spacing:1.950000px;}
.ls2_c01003{letter-spacing:2.667000px;}
.ls3_c01003{letter-spacing:3.000000px;}
.ls0_c01003{letter-spacing:32.550000px;}
.ls4_c01003{letter-spacing:45.048000px;}
.sc__c01003{text-shadow:none;}
.sc0_c01003{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01003{-webkit-text-stroke:0px transparent;}
.sc0_c01003{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01003{word-spacing:-30.540000px;}
.ws0_c01003{word-spacing:-29.013000px;}
.ws4_c01003{word-spacing:-24.072000px;}
.ws5_c01003{word-spacing:-15.801000px;}
.ws3_c01003{word-spacing:-15.000000px;}
.ws2_c01003{word-spacing:-14.679000px;}
.ws6_c01003{word-spacing:0.000000px;}
._2a_c01003{margin-left:-19.851000px;}
._29_c01003{margin-left:-16.125000px;}
._12_c01003{margin-left:-15.012000px;}
._2b_c01003{margin-left:-11.427000px;}
._16_c01003{margin-left:-10.392000px;}
._13_c01003{margin-left:-9.333000px;}
._14_c01003{margin-left:-7.395000px;}
._e_c01003{margin-left:-6.039000px;}
._9_c01003{margin-left:-4.590000px;}
._7_c01003{margin-left:-3.519000px;}
._8_c01003{margin-left:-1.632000px;}
._6_c01003{width:1.518000px;}
._1_c01003{width:2.703000px;}
._4_c01003{width:3.927000px;}
._5_c01003{width:5.202000px;}
._3_c01003{width:6.783000px;}
._2_c01003{width:8.619000px;}
._b_c01003{width:9.894000px;}
._d_c01003{width:11.061000px;}
._a_c01003{width:12.087000px;}
._c_c01003{width:13.362000px;}
._28_c01003{width:14.391000px;}
._27_c01003{width:15.861000px;}
._1b_c01003{width:16.983000px;}
._0_c01003{width:18.717000px;}
._1a_c01003{width:20.637000px;}
._19_c01003{width:21.777000px;}
._1c_c01003{width:22.809000px;}
._1e_c01003{width:25.185000px;}
._17_c01003{width:26.313000px;}
._23_c01003{width:29.781000px;}
._24_c01003{width:32.529000px;}
._21_c01003{width:35.559000px;}
._1f_c01003{width:48.246000px;}
._15_c01003{width:53.907000px;}
._20_c01003{width:66.759000px;}
._25_c01003{width:77.697000px;}
._f_c01003{width:83.541000px;}
._22_c01003{width:133.530000px;}
._1d_c01003{width:139.038000px;}
._10_c01003{width:145.530000px;}
._26_c01003{width:164.448000px;}
._18_c01003{width:198.651000px;}
._11_c01003{width:212.100000px;}
.fc2_c01003{color:transparent;}
.fc1_c01003{color:rgb(128,128,128);}
.fc0_c01003{color:rgb(0,0,0);}
.fs4_c01003{font-size:48.000000px;}
.fs0_c01003{font-size:51.000000px;}
.fs1_c01003{font-size:54.000000px;}
.fs2_c01003{font-size:57.000000px;}
.fs3_c01003{font-size:60.000000px;}
.y0_c01003{bottom:0.000000px;}
.y55_c01003{bottom:3.105000px;}
.y54_c01003{bottom:7.228371px;}
.y53_c01003{bottom:41.565000px;}
.y29_c01003{bottom:54.465000px;}
.y52_c01003{bottom:58.365000px;}
.y28_c01003{bottom:73.665000px;}
.y51_c01003{bottom:77.265000px;}
.y27_c01003{bottom:92.565000px;}
.y50_c01003{bottom:94.965000px;}
.y26_c01003{bottom:110.715000px;}
.y4f_c01003{bottom:113.415000px;}
.y25_c01003{bottom:129.315000px;}
.y4e_c01003{bottom:131.415000px;}
.y24_c01003{bottom:147.165000px;}
.y4d_c01003{bottom:150.315000px;}
.y23_c01003{bottom:165.465000px;}
.y4c_c01003{bottom:167.865000px;}
.y22_c01003{bottom:183.315000px;}
.y4b_c01003{bottom:186.765000px;}
.y21_c01003{bottom:201.915000px;}
.y4a_c01003{bottom:204.315000px;}
.y20_c01003{bottom:219.765000px;}
.y49_c01003{bottom:223.065000px;}
.y1f_c01003{bottom:237.615000px;}
.y48_c01003{bottom:240.765000px;}
.y1e_c01003{bottom:255.615000px;}
.y47_c01003{bottom:258.915000px;}
.y1d_c01003{bottom:274.365000px;}
.y46_c01003{bottom:276.765000px;}
.y1c_c01003{bottom:291.315000px;}
.y45_c01003{bottom:294.315000px;}
.y1b_c01003{bottom:310.215000px;}
.y44_c01003{bottom:312.315000px;}
.y1a_c01003{bottom:328.065000px;}
.y43_c01003{bottom:329.865000px;}
.y19_c01003{bottom:346.065000px;}
.y42_c01003{bottom:349.065000px;}
.y18_c01003{bottom:364.215000px;}
.y41_c01003{bottom:366.615000px;}
.y17_c01003{bottom:382.065000px;}
.y40_c01003{bottom:384.465000px;}
.y16_c01003{bottom:399.615000px;}
.y3f_c01003{bottom:402.765000px;}
.y15_c01003{bottom:418.215000px;}
.y3e_c01003{bottom:420.915000px;}
.y14_c01003{bottom:436.815000px;}
.y3d_c01003{bottom:439.065000px;}
.y13_c01003{bottom:455.265000px;}
.y3c_c01003{bottom:457.365000px;}
.y12_c01003{bottom:472.965000px;}
.y3b_c01003{bottom:476.265000px;}
.y11_c01003{bottom:491.115000px;}
.y3a_c01003{bottom:493.815000px;}
.y10_c01003{bottom:509.415000px;}
.y39_c01003{bottom:511.965000px;}
.yf_c01003{bottom:527.865000px;}
.y38_c01003{bottom:529.965000px;}
.ye_c01003{bottom:545.415000px;}
.y37_c01003{bottom:549.465000px;}
.yd_c01003{bottom:563.265000px;}
.y36_c01003{bottom:565.965000px;}
.yc_c01003{bottom:581.565000px;}
.y35_c01003{bottom:583.215000px;}
.yb_c01003{bottom:599.415000px;}
.y34_c01003{bottom:601.215000px;}
.ya_c01003{bottom:617.715000px;}
.y33_c01003{bottom:619.965000px;}
.y9_c01003{bottom:635.565000px;}
.y32_c01003{bottom:637.965000px;}
.y8_c01003{bottom:654.165000px;}
.y31_c01003{bottom:655.515000px;}
.y7_c01003{bottom:672.015000px;}
.y30_c01003{bottom:673.665000px;}
.y6_c01003{bottom:689.565000px;}
.y2f_c01003{bottom:693.015000px;}
.y5_c01003{bottom:708.765000px;}
.y2e_c01003{bottom:710.565000px;}
.y4_c01003{bottom:726.315000px;}
.y2d_c01003{bottom:729.015000px;}
.y3_c01003{bottom:744.615000px;}
.y2c_c01003{bottom:746.415000px;}
.y2_c01003{bottom:762.765000px;}
.y2b_c01003{bottom:764.565000px;}
.y1_c01003{bottom:781.665000px;}
.y2a_c01003{bottom:782.715000px;}
.h6_c01003{height:13.200074px;}
.h7_c01003{height:43.804688px;}
.h3_c01003{height:53.448000px;}
.h2_c01003{height:59.690918px;}
.h4_c01003{height:59.736000px;}
.h5_c01003{height:65.040000px;}
.h0_c01003{height:839.175000px;}
.h1_c01003{height:839.250000px;}
.w2_c01003{width:104.875500px;}
.w0_c01003{width:573.450000px;}
.w1_c01003{width:573.750000px;}
.x0_c01003{left:0.000000px;}
.x6_c01003{left:21.150000px;}
.x5_c01003{left:24.600000px;}
.x2_c01003{left:26.250000px;}
.x9_c01003{left:62.100000px;}
.x4_c01003{left:85.650000px;}
.x7_c01003{left:87.300000px;}
.x1_c01003{left:89.100000px;}
.x3_c01003{left:90.750000px;}
.x8_c01003{left:91.800000px;}
.x10_c01003{left:238.539230px;}
.xa_c01003{left:307.050000px;}
.xc_c01003{left:308.100000px;}
.xb_c01003{left:309.150000px;}
.xe_c01003{left:310.500000px;}
.xd_c01003{left:333.750000px;}
.xf_c01003{left:478.800000px;}
@media print{
.v0_c01003{vertical-align:0.000000pt;}
.ls5_c01003{letter-spacing:0.000000pt;}
.ls1_c01003{letter-spacing:1.733333pt;}
.ls2_c01003{letter-spacing:2.370667pt;}
.ls3_c01003{letter-spacing:2.666667pt;}
.ls0_c01003{letter-spacing:28.933333pt;}
.ls4_c01003{letter-spacing:40.042667pt;}
.ws1_c01003{word-spacing:-27.146667pt;}
.ws0_c01003{word-spacing:-25.789333pt;}
.ws4_c01003{word-spacing:-21.397333pt;}
.ws5_c01003{word-spacing:-14.045333pt;}
.ws3_c01003{word-spacing:-13.333333pt;}
.ws2_c01003{word-spacing:-13.048000pt;}
.ws6_c01003{word-spacing:0.000000pt;}
._2a_c01003{margin-left:-17.645333pt;}
._29_c01003{margin-left:-14.333333pt;}
._12_c01003{margin-left:-13.344000pt;}
._2b_c01003{margin-left:-10.157333pt;}
._16_c01003{margin-left:-9.237333pt;}
._13_c01003{margin-left:-8.296000pt;}
._14_c01003{margin-left:-6.573333pt;}
._e_c01003{margin-left:-5.368000pt;}
._9_c01003{margin-left:-4.080000pt;}
._7_c01003{margin-left:-3.128000pt;}
._8_c01003{margin-left:-1.450667pt;}
._6_c01003{width:1.349333pt;}
._1_c01003{width:2.402667pt;}
._4_c01003{width:3.490667pt;}
._5_c01003{width:4.624000pt;}
._3_c01003{width:6.029333pt;}
._2_c01003{width:7.661333pt;}
._b_c01003{width:8.794667pt;}
._d_c01003{width:9.832000pt;}
._a_c01003{width:10.744000pt;}
._c_c01003{width:11.877333pt;}
._28_c01003{width:12.792000pt;}
._27_c01003{width:14.098667pt;}
._1b_c01003{width:15.096000pt;}
._0_c01003{width:16.637333pt;}
._1a_c01003{width:18.344000pt;}
._19_c01003{width:19.357333pt;}
._1c_c01003{width:20.274667pt;}
._1e_c01003{width:22.386667pt;}
._17_c01003{width:23.389333pt;}
._23_c01003{width:26.472000pt;}
._24_c01003{width:28.914667pt;}
._21_c01003{width:31.608000pt;}
._1f_c01003{width:42.885333pt;}
._15_c01003{width:47.917333pt;}
._20_c01003{width:59.341333pt;}
._25_c01003{width:69.064000pt;}
._f_c01003{width:74.258667pt;}
._22_c01003{width:118.693333pt;}
._1d_c01003{width:123.589333pt;}
._10_c01003{width:129.360000pt;}
._26_c01003{width:146.176000pt;}
._18_c01003{width:176.578667pt;}
._11_c01003{width:188.533333pt;}
.fs4_c01003{font-size:42.666667pt;}
.fs0_c01003{font-size:45.333333pt;}
.fs1_c01003{font-size:48.000000pt;}
.fs2_c01003{font-size:50.666667pt;}
.fs3_c01003{font-size:53.333333pt;}
.y0_c01003{bottom:0.000000pt;}
.y55_c01003{bottom:2.760000pt;}
.y54_c01003{bottom:6.425219pt;}
.y53_c01003{bottom:36.946667pt;}
.y29_c01003{bottom:48.413333pt;}
.y52_c01003{bottom:51.880000pt;}
.y28_c01003{bottom:65.480000pt;}
.y51_c01003{bottom:68.680000pt;}
.y27_c01003{bottom:82.280000pt;}
.y50_c01003{bottom:84.413333pt;}
.y26_c01003{bottom:98.413333pt;}
.y4f_c01003{bottom:100.813333pt;}
.y25_c01003{bottom:114.946667pt;}
.y4e_c01003{bottom:116.813333pt;}
.y24_c01003{bottom:130.813333pt;}
.y4d_c01003{bottom:133.613333pt;}
.y23_c01003{bottom:147.080000pt;}
.y4c_c01003{bottom:149.213333pt;}
.y22_c01003{bottom:162.946667pt;}
.y4b_c01003{bottom:166.013333pt;}
.y21_c01003{bottom:179.480000pt;}
.y4a_c01003{bottom:181.613333pt;}
.y20_c01003{bottom:195.346667pt;}
.y49_c01003{bottom:198.280000pt;}
.y1f_c01003{bottom:211.213333pt;}
.y48_c01003{bottom:214.013333pt;}
.y1e_c01003{bottom:227.213333pt;}
.y47_c01003{bottom:230.146667pt;}
.y1d_c01003{bottom:243.880000pt;}
.y46_c01003{bottom:246.013333pt;}
.y1c_c01003{bottom:258.946667pt;}
.y45_c01003{bottom:261.613333pt;}
.y1b_c01003{bottom:275.746667pt;}
.y44_c01003{bottom:277.613333pt;}
.y1a_c01003{bottom:291.613333pt;}
.y43_c01003{bottom:293.213333pt;}
.y19_c01003{bottom:307.613333pt;}
.y42_c01003{bottom:310.280000pt;}
.y18_c01003{bottom:323.746667pt;}
.y41_c01003{bottom:325.880000pt;}
.y17_c01003{bottom:339.613333pt;}
.y40_c01003{bottom:341.746667pt;}
.y16_c01003{bottom:355.213333pt;}
.y3f_c01003{bottom:358.013333pt;}
.y15_c01003{bottom:371.746667pt;}
.y3e_c01003{bottom:374.146667pt;}
.y14_c01003{bottom:388.280000pt;}
.y3d_c01003{bottom:390.280000pt;}
.y13_c01003{bottom:404.680000pt;}
.y3c_c01003{bottom:406.546667pt;}
.y12_c01003{bottom:420.413333pt;}
.y3b_c01003{bottom:423.346667pt;}
.y11_c01003{bottom:436.546667pt;}
.y3a_c01003{bottom:438.946667pt;}
.y10_c01003{bottom:452.813333pt;}
.y39_c01003{bottom:455.080000pt;}
.yf_c01003{bottom:469.213333pt;}
.y38_c01003{bottom:471.080000pt;}
.ye_c01003{bottom:484.813333pt;}
.y37_c01003{bottom:488.413333pt;}
.yd_c01003{bottom:500.680000pt;}
.y36_c01003{bottom:503.080000pt;}
.yc_c01003{bottom:516.946667pt;}
.y35_c01003{bottom:518.413333pt;}
.yb_c01003{bottom:532.813333pt;}
.y34_c01003{bottom:534.413333pt;}
.ya_c01003{bottom:549.080000pt;}
.y33_c01003{bottom:551.080000pt;}
.y9_c01003{bottom:564.946667pt;}
.y32_c01003{bottom:567.080000pt;}
.y8_c01003{bottom:581.480000pt;}
.y31_c01003{bottom:582.680000pt;}
.y7_c01003{bottom:597.346667pt;}
.y30_c01003{bottom:598.813333pt;}
.y6_c01003{bottom:612.946667pt;}
.y2f_c01003{bottom:616.013333pt;}
.y5_c01003{bottom:630.013333pt;}
.y2e_c01003{bottom:631.613333pt;}
.y4_c01003{bottom:645.613333pt;}
.y2d_c01003{bottom:648.013333pt;}
.y3_c01003{bottom:661.880000pt;}
.y2c_c01003{bottom:663.480000pt;}
.y2_c01003{bottom:678.013333pt;}
.y2b_c01003{bottom:679.613333pt;}
.y1_c01003{bottom:694.813333pt;}
.y2a_c01003{bottom:695.746667pt;}
.h6_c01003{height:11.733399pt;}
.h7_c01003{height:38.937500pt;}
.h3_c01003{height:47.509333pt;}
.h2_c01003{height:53.058594pt;}
.h4_c01003{height:53.098667pt;}
.h5_c01003{height:57.813333pt;}
.h0_c01003{height:745.933333pt;}
.h1_c01003{height:746.000000pt;}
.w2_c01003{width:93.222667pt;}
.w0_c01003{width:509.733333pt;}
.w1_c01003{width:510.000000pt;}
.x0_c01003{left:0.000000pt;}
.x6_c01003{left:18.800000pt;}
.x5_c01003{left:21.866667pt;}
.x2_c01003{left:23.333333pt;}
.x9_c01003{left:55.200000pt;}
.x4_c01003{left:76.133333pt;}
.x7_c01003{left:77.600000pt;}
.x1_c01003{left:79.200000pt;}
.x3_c01003{left:80.666667pt;}
.x8_c01003{left:81.600000pt;}
.x10_c01003{left:212.034871pt;}
.xa_c01003{left:272.933333pt;}
.xc_c01003{left:273.866667pt;}
.xb_c01003{left:274.800000pt;}
.xe_c01003{left:276.000000pt;}
.xd_c01003{left:296.666667pt;}
.xf_c01003{left:425.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_c01004 {
    display:none;
  }
  .loading-indicator_c01004.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01004 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01004 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01004" -> "#page-container .classname_c01004")
 */
.pf_c01004 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01004 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01004.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01004 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01004 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01004 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01004 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01004 {overflow:visible;}
  }
}
.c_c01004 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01004 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01004:after { /* webkit #35443 */
  content: '';
}
.t_c01004:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01004 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01004 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01004 { /* info for Javascript */
  display:none;
}
.l_c01004 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01004 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01004 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01004:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01004{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01004;src:url('chunks/assets/font_6e84d2a726eb05c1aa470a56.woff2')format("woff");}.ff1_c01004{font-family:ff1_c01004;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01004;src:url('chunks/assets/font_10e948dda6ff303aa9e3ff38.woff2')format("woff");}.ff2_c01004{font-family:ff2_c01004;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01004;src:url('chunks/assets/font_0ce391de997f24f9f9dd37f4.woff2')format("woff");}.ff3_c01004{font-family:ff3_c01004;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01004;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff4_c01004{font-family:ff4_c01004;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01004{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01004{vertical-align:0.000000px;}
.ls1_c01004{letter-spacing:0.000000px;}
.ls2_c01004{letter-spacing:6.000000px;}
.ls3_c01004{letter-spacing:9.000000px;}
.ls0_c01004{letter-spacing:51.846000px;}
.sc__c01004{text-shadow:none;}
.sc0_c01004{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01004{-webkit-text-stroke:0px transparent;}
.sc0_c01004{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01004{word-spacing:-35.295000px;}
.ws3_c01004{word-spacing:-23.160000px;}
.ws2_c01004{word-spacing:-15.060000px;}
.ws0_c01004{word-spacing:-14.160000px;}
.ws5_c01004{word-spacing:-12.744000px;}
.ws6_c01004{word-spacing:0.000000px;}
.ws4_c01004{word-spacing:2.502000px;}
._1f_c01004{margin-left:-19.221000px;}
._23_c01004{margin-left:-13.848000px;}
._1a_c01004{margin-left:-10.440000px;}
._7_c01004{margin-left:-9.120000px;}
._24_c01004{margin-left:-7.680000px;}
._18_c01004{margin-left:-6.204000px;}
._22_c01004{margin-left:-5.034000px;}
._4_c01004{margin-left:-3.942000px;}
._a_c01004{margin-left:-2.934000px;}
._5_c01004{margin-left:-1.680000px;}
._b_c01004{width:1.014000px;}
._3_c01004{width:2.106000px;}
._1_c01004{width:3.726000px;}
._0_c01004{width:5.130000px;}
._2_c01004{width:6.156000px;}
._14_c01004{width:7.416000px;}
._13_c01004{width:8.580000px;}
._19_c01004{width:9.666000px;}
._6_c01004{width:10.674000px;}
._f_c01004{width:12.240000px;}
._15_c01004{width:13.770000px;}
._8_c01004{width:16.140000px;}
._17_c01004{width:17.934000px;}
._16_c01004{width:19.656000px;}
._12_c01004{width:21.276000px;}
._1b_c01004{width:22.362000px;}
._1d_c01004{width:23.628000px;}
._e_c01004{width:25.146000px;}
._11_c01004{width:26.856000px;}
._25_c01004{width:27.876000px;}
._20_c01004{width:29.040000px;}
._21_c01004{width:30.900000px;}
._1e_c01004{width:33.228000px;}
._d_c01004{width:37.620000px;}
._26_c01004{width:47.022000px;}
._c_c01004{width:55.176000px;}
._27_c01004{width:63.888000px;}
._1c_c01004{width:71.922000px;}
._9_c01004{width:121.794000px;}
._10_c01004{width:131.694000px;}
.fc2_c01004{color:transparent;}
.fc1_c01004{color:rgb(128,128,128);}
.fc0_c01004{color:rgb(0,0,0);}
.fs2_c01004{font-size:45.000000px;}
.fs3_c01004{font-size:48.000000px;}
.fs0_c01004{font-size:54.000000px;}
.fs1_c01004{font-size:60.000000px;}
.y0_c01004{bottom:0.000000px;}
.y4e_c01004{bottom:3.105000px;}
.y4d_c01004{bottom:7.228369px;}
.y4c_c01004{bottom:35.370000px;}
.y29_c01004{bottom:50.970000px;}
.y4b_c01004{bottom:53.220000px;}
.y28_c01004{bottom:72.120000px;}
.y27_c01004{bottom:90.120000px;}
.y4a_c01004{bottom:108.270000px;}
.y26_c01004{bottom:108.720000px;}
.y49_c01004{bottom:126.270000px;}
.y25_c01004{bottom:126.870000px;}
.y24_c01004{bottom:145.020000px;}
.y48_c01004{bottom:162.720000px;}
.y23_c01004{bottom:163.020000px;}
.y47_c01004{bottom:181.170000px;}
.y22_c01004{bottom:181.620000px;}
.y46_c01004{bottom:199.470000px;}
.y21_c01004{bottom:199.770000px;}
.y45_c01004{bottom:217.020000px;}
.y20_c01004{bottom:218.070000px;}
.y44_c01004{bottom:235.170000px;}
.y1f_c01004{bottom:236.220000px;}
.y43_c01004{bottom:253.470000px;}
.y1e_c01004{bottom:254.220000px;}
.y42_c01004{bottom:271.920000px;}
.y1d_c01004{bottom:272.370000px;}
.y41_c01004{bottom:290.220000px;}
.y1c_c01004{bottom:290.520000px;}
.y1b_c01004{bottom:308.070000px;}
.y1a_c01004{bottom:325.920000px;}
.y40_c01004{bottom:326.370000px;}
.y19_c01004{bottom:343.920000px;}
.y18_c01004{bottom:361.470000px;}
.y3f_c01004{bottom:362.520000px;}
.y17_c01004{bottom:380.070000px;}
.y3e_c01004{bottom:380.970000px;}
.y16_c01004{bottom:398.520000px;}
.y3d_c01004{bottom:399.270000px;}
.y15_c01004{bottom:416.820000px;}
.y14_c01004{bottom:434.670000px;}
.y3c_c01004{bottom:435.270000px;}
.y13_c01004{bottom:452.970000px;}
.y3b_c01004{bottom:453.270000px;}
.y12_c01004{bottom:470.820000px;}
.y11_c01004{bottom:489.270000px;}
.y3a_c01004{bottom:489.420000px;}
.y10_c01004{bottom:506.970000px;}
.y39_c01004{bottom:507.270000px;}
.yf_c01004{bottom:524.520000px;}
.y38_c01004{bottom:525.420000px;}
.ye_c01004{bottom:541.320000px;}
.y37_c01004{bottom:543.270000px;}
.yd_c01004{bottom:559.470000px;}
.y36_c01004{bottom:560.970000px;}
.yc_c01004{bottom:577.470000px;}
.y35_c01004{bottom:579.120000px;}
.yb_c01004{bottom:595.620000px;}
.y34_c01004{bottom:596.970000px;}
.ya_c01004{bottom:613.620000px;}
.y33_c01004{bottom:615.570000px;}
.y9_c01004{bottom:631.770000px;}
.y32_c01004{bottom:633.720000px;}
.y8_c01004{bottom:649.320000px;}
.y31_c01004{bottom:651.270000px;}
.y7_c01004{bottom:667.470000px;}
.y30_c01004{bottom:668.970000px;}
.y6_c01004{bottom:685.770000px;}
.y2f_c01004{bottom:687.720000px;}
.y5_c01004{bottom:703.320000px;}
.y2e_c01004{bottom:706.020000px;}
.y4_c01004{bottom:721.470000px;}
.y2d_c01004{bottom:723.870000px;}
.y3_c01004{bottom:740.070000px;}
.y2c_c01004{bottom:742.770000px;}
.y2_c01004{bottom:757.920000px;}
.y2b_c01004{bottom:760.320000px;}
.y1_c01004{bottom:777.570000px;}
.y2a_c01004{bottom:778.920000px;}
.h4_c01004{height:13.200073px;}
.h5_c01004{height:43.804688px;}
.h2_c01004{height:56.592000px;}
.h3_c01004{height:62.880000px;}
.h1_c01004{height:837.750000px;}
.h0_c01004{height:838.050000px;}
.w2_c01004{width:104.875500px;}
.w1_c01004{width:576.000000px;}
.w0_c01004{width:576.150000px;}
.x0_c01004{left:0.000000px;}
.x3_c01004{left:18.000000px;}
.xd_c01004{left:22.350000px;}
.xc_c01004{left:23.550000px;}
.x1_c01004{left:74.250000px;}
.x4_c01004{left:76.050000px;}
.x2_c01004{left:77.700000px;}
.x5_c01004{left:78.750000px;}
.x6_c01004{left:79.950000px;}
.x7_c01004{left:81.300000px;}
.x8_c01004{left:82.350000px;}
.x9_c01004{left:84.000000px;}
.xb_c01004{left:85.500000px;}
.xe_c01004{left:86.700000px;}
.xf_c01004{left:87.750000px;}
.x10_c01004{left:89.100000px;}
.x11_c01004{left:90.750000px;}
.xa_c01004{left:103.350000px;}
.x1f_c01004{left:239.889267px;}
.x12_c01004{left:294.900000px;}
.x13_c01004{left:296.250000px;}
.x15_c01004{left:297.600000px;}
.x16_c01004{left:298.650000px;}
.x17_c01004{left:299.700000px;}
.x19_c01004{left:300.750000px;}
.x18_c01004{left:301.950000px;}
.x1a_c01004{left:303.300000px;}
.x1b_c01004{left:304.350000px;}
.x1c_c01004{left:306.150000px;}
.x1d_c01004{left:307.350000px;}
.x14_c01004{left:342.450000px;}
.x1e_c01004{left:472.200000px;}
@media print{
.v0_c01004{vertical-align:0.000000pt;}
.ls1_c01004{letter-spacing:0.000000pt;}
.ls2_c01004{letter-spacing:5.333333pt;}
.ls3_c01004{letter-spacing:8.000000pt;}
.ls0_c01004{letter-spacing:46.085333pt;}
.ws1_c01004{word-spacing:-31.373333pt;}
.ws3_c01004{word-spacing:-20.586667pt;}
.ws2_c01004{word-spacing:-13.386667pt;}
.ws0_c01004{word-spacing:-12.586667pt;}
.ws5_c01004{word-spacing:-11.328000pt;}
.ws6_c01004{word-spacing:0.000000pt;}
.ws4_c01004{word-spacing:2.224000pt;}
._1f_c01004{margin-left:-17.085333pt;}
._23_c01004{margin-left:-12.309333pt;}
._1a_c01004{margin-left:-9.280000pt;}
._7_c01004{margin-left:-8.106667pt;}
._24_c01004{margin-left:-6.826667pt;}
._18_c01004{margin-left:-5.514667pt;}
._22_c01004{margin-left:-4.474667pt;}
._4_c01004{margin-left:-3.504000pt;}
._a_c01004{margin-left:-2.608000pt;}
._5_c01004{margin-left:-1.493333pt;}
._b_c01004{width:0.901333pt;}
._3_c01004{width:1.872000pt;}
._1_c01004{width:3.312000pt;}
._0_c01004{width:4.560000pt;}
._2_c01004{width:5.472000pt;}
._14_c01004{width:6.592000pt;}
._13_c01004{width:7.626667pt;}
._19_c01004{width:8.592000pt;}
._6_c01004{width:9.488000pt;}
._f_c01004{width:10.880000pt;}
._15_c01004{width:12.240000pt;}
._8_c01004{width:14.346667pt;}
._17_c01004{width:15.941333pt;}
._16_c01004{width:17.472000pt;}
._12_c01004{width:18.912000pt;}
._1b_c01004{width:19.877333pt;}
._1d_c01004{width:21.002667pt;}
._e_c01004{width:22.352000pt;}
._11_c01004{width:23.872000pt;}
._25_c01004{width:24.778667pt;}
._20_c01004{width:25.813333pt;}
._21_c01004{width:27.466667pt;}
._1e_c01004{width:29.536000pt;}
._d_c01004{width:33.440000pt;}
._26_c01004{width:41.797333pt;}
._c_c01004{width:49.045333pt;}
._27_c01004{width:56.789333pt;}
._1c_c01004{width:63.930667pt;}
._9_c01004{width:108.261333pt;}
._10_c01004{width:117.061333pt;}
.fs2_c01004{font-size:40.000000pt;}
.fs3_c01004{font-size:42.666667pt;}
.fs0_c01004{font-size:48.000000pt;}
.fs1_c01004{font-size:53.333333pt;}
.y0_c01004{bottom:0.000000pt;}
.y4e_c01004{bottom:2.760000pt;}
.y4d_c01004{bottom:6.425217pt;}
.y4c_c01004{bottom:31.440000pt;}
.y29_c01004{bottom:45.306667pt;}
.y4b_c01004{bottom:47.306667pt;}
.y28_c01004{bottom:64.106667pt;}
.y27_c01004{bottom:80.106667pt;}
.y4a_c01004{bottom:96.240000pt;}
.y26_c01004{bottom:96.640000pt;}
.y49_c01004{bottom:112.240000pt;}
.y25_c01004{bottom:112.773333pt;}
.y24_c01004{bottom:128.906667pt;}
.y48_c01004{bottom:144.640000pt;}
.y23_c01004{bottom:144.906667pt;}
.y47_c01004{bottom:161.040000pt;}
.y22_c01004{bottom:161.440000pt;}
.y46_c01004{bottom:177.306667pt;}
.y21_c01004{bottom:177.573333pt;}
.y45_c01004{bottom:192.906667pt;}
.y20_c01004{bottom:193.840000pt;}
.y44_c01004{bottom:209.040000pt;}
.y1f_c01004{bottom:209.973333pt;}
.y43_c01004{bottom:225.306667pt;}
.y1e_c01004{bottom:225.973333pt;}
.y42_c01004{bottom:241.706667pt;}
.y1d_c01004{bottom:242.106667pt;}
.y41_c01004{bottom:257.973333pt;}
.y1c_c01004{bottom:258.240000pt;}
.y1b_c01004{bottom:273.840000pt;}
.y1a_c01004{bottom:289.706667pt;}
.y40_c01004{bottom:290.106667pt;}
.y19_c01004{bottom:305.706667pt;}
.y18_c01004{bottom:321.306667pt;}
.y3f_c01004{bottom:322.240000pt;}
.y17_c01004{bottom:337.840000pt;}
.y3e_c01004{bottom:338.640000pt;}
.y16_c01004{bottom:354.240000pt;}
.y3d_c01004{bottom:354.906667pt;}
.y15_c01004{bottom:370.506667pt;}
.y14_c01004{bottom:386.373333pt;}
.y3c_c01004{bottom:386.906667pt;}
.y13_c01004{bottom:402.640000pt;}
.y3b_c01004{bottom:402.906667pt;}
.y12_c01004{bottom:418.506667pt;}
.y11_c01004{bottom:434.906667pt;}
.y3a_c01004{bottom:435.040000pt;}
.y10_c01004{bottom:450.640000pt;}
.y39_c01004{bottom:450.906667pt;}
.yf_c01004{bottom:466.240000pt;}
.y38_c01004{bottom:467.040000pt;}
.ye_c01004{bottom:481.173333pt;}
.y37_c01004{bottom:482.906667pt;}
.yd_c01004{bottom:497.306667pt;}
.y36_c01004{bottom:498.640000pt;}
.yc_c01004{bottom:513.306667pt;}
.y35_c01004{bottom:514.773333pt;}
.yb_c01004{bottom:529.440000pt;}
.y34_c01004{bottom:530.640000pt;}
.ya_c01004{bottom:545.440000pt;}
.y33_c01004{bottom:547.173333pt;}
.y9_c01004{bottom:561.573333pt;}
.y32_c01004{bottom:563.306667pt;}
.y8_c01004{bottom:577.173333pt;}
.y31_c01004{bottom:578.906667pt;}
.y7_c01004{bottom:593.306667pt;}
.y30_c01004{bottom:594.640000pt;}
.y6_c01004{bottom:609.573333pt;}
.y2f_c01004{bottom:611.306667pt;}
.y5_c01004{bottom:625.173333pt;}
.y2e_c01004{bottom:627.573333pt;}
.y4_c01004{bottom:641.306667pt;}
.y2d_c01004{bottom:643.440000pt;}
.y3_c01004{bottom:657.840000pt;}
.y2c_c01004{bottom:660.240000pt;}
.y2_c01004{bottom:673.706667pt;}
.y2b_c01004{bottom:675.840000pt;}
.y1_c01004{bottom:691.173333pt;}
.y2a_c01004{bottom:692.373333pt;}
.h4_c01004{height:11.733399pt;}
.h5_c01004{height:38.937500pt;}
.h2_c01004{height:50.304000pt;}
.h3_c01004{height:55.893333pt;}
.h1_c01004{height:744.666667pt;}
.h0_c01004{height:744.933333pt;}
.w2_c01004{width:93.222667pt;}
.w1_c01004{width:512.000000pt;}
.w0_c01004{width:512.133333pt;}
.x0_c01004{left:0.000000pt;}
.x3_c01004{left:16.000000pt;}
.xd_c01004{left:19.866667pt;}
.xc_c01004{left:20.933333pt;}
.x1_c01004{left:66.000000pt;}
.x4_c01004{left:67.600000pt;}
.x2_c01004{left:69.066667pt;}
.x5_c01004{left:70.000000pt;}
.x6_c01004{left:71.066667pt;}
.x7_c01004{left:72.266667pt;}
.x8_c01004{left:73.200000pt;}
.x9_c01004{left:74.666667pt;}
.xb_c01004{left:76.000000pt;}
.xe_c01004{left:77.066667pt;}
.xf_c01004{left:78.000000pt;}
.x10_c01004{left:79.200000pt;}
.x11_c01004{left:80.666667pt;}
.xa_c01004{left:91.866667pt;}
.x1f_c01004{left:213.234904pt;}
.x12_c01004{left:262.133333pt;}
.x13_c01004{left:263.333333pt;}
.x15_c01004{left:264.533333pt;}
.x16_c01004{left:265.466667pt;}
.x17_c01004{left:266.400000pt;}
.x19_c01004{left:267.333333pt;}
.x18_c01004{left:268.400000pt;}
.x1a_c01004{left:269.600000pt;}
.x1b_c01004{left:270.533333pt;}
.x1c_c01004{left:272.133333pt;}
.x1d_c01004{left:273.200000pt;}
.x14_c01004{left:304.400000pt;}
.x1e_c01004{left:419.733333pt;}
}





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

.ir_c01005:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01005{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01005;src:url('chunks/assets/font_5b535c6ae053be3d3235e10d.woff2')format("woff");}.ff1_c01005{font-family:ff1_c01005;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01005;src:url('chunks/assets/font_a8cada3e7f86283dec6434c4.woff2')format("woff");}.ff2_c01005{font-family:ff2_c01005;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01005;src:url('chunks/assets/font_e2e3b34d02748da513b4996b.woff2')format("woff");}.ff3_c01005{font-family:ff3_c01005;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01005;src:url('chunks/assets/font_ace77fffff5937fe0fcae934.woff2')format("woff");}.ff4_c01005{font-family:ff4_c01005;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01005;src:url('chunks/assets/font_bfd02d9b9d0dc90c24e644f3.woff2')format("woff");}.ff5_c01005{font-family:ff5_c01005;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01005;src:url('chunks/assets/font_a3b9ab808339a777f4fd912b.woff2')format("woff");}.ff6_c01005{font-family:ff6_c01005;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01005;src:url('chunks/assets/font_cd34e9ca9d88df1185f88a5e.woff2')format("woff");}.ff7_c01005{font-family:ff7_c01005;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c01005;src:url('chunks/assets/font_1ec1a562622589986f34a8e2.woff2')format("woff");}.ff8_c01005{font-family:ff8_c01005;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c01005;src:url('chunks/assets/font_822825dbc11499fa24c69928.woff2')format("woff");}.ff9_c01005{font-family:ff9_c01005;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c01005;src:url('chunks/assets/font_0cc1800b1527de6ce248b894.woff2')format("woff");}.ffa_c01005{font-family:ffa_c01005;line-height:1.568848;font-style:normal;font-weight: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_c01005;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ffb_c01005{font-family:ffb_c01005;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01005{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01005{vertical-align:0.000000px;}
.v1_c01005{vertical-align:69.000000px;}
.ls8_c01005{letter-spacing:0.000000px;}
.ls3_c01005{letter-spacing:0.300000px;}
.ls0_c01005{letter-spacing:3.000000px;}
.ls4_c01005{letter-spacing:4.377000px;}
.ls9_c01005{letter-spacing:6.000000px;}
.ls7_c01005{letter-spacing:6.450000px;}
.ls2_c01005{letter-spacing:7.530000px;}
.ls1_c01005{letter-spacing:14.400000px;}
.ls5_c01005{letter-spacing:19.050000px;}
.ls6_c01005{letter-spacing:148.650000px;}
.sc__c01005{text-shadow:none;}
.sc0_c01005{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01005{-webkit-text-stroke:0px transparent;}
.sc0_c01005{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01005{word-spacing:-30.540000px;}
.ws1_c01005{word-spacing:-16.500000px;}
.ws2_c01005{word-spacing:-12.291000px;}
.ws3_c01005{word-spacing:-5.907000px;}
.ws4_c01005{word-spacing:0.000000px;}
._c_c01005{margin-left:-18.300000px;}
._23_c01005{margin-left:-14.520000px;}
._2_c01005{margin-left:-12.540000px;}
._1f_c01005{margin-left:-10.920000px;}
._1e_c01005{margin-left:-9.720000px;}
._20_c01005{margin-left:-8.100000px;}
._18_c01005{margin-left:-5.430000px;}
._3_c01005{margin-left:-4.020000px;}
._1_c01005{margin-left:-2.520000px;}
._f_c01005{margin-left:-1.080000px;}
._6_c01005{width:1.800000px;}
._5_c01005{width:3.000000px;}
._8_c01005{width:4.740000px;}
._a_c01005{width:5.760000px;}
._16_c01005{width:6.780000px;}
._7_c01005{width:7.800000px;}
._14_c01005{width:8.940000px;}
._0_c01005{width:10.020000px;}
._15_c01005{width:11.100000px;}
._b_c01005{width:12.240000px;}
._13_c01005{width:13.980000px;}
._1c_c01005{width:15.051000px;}
._10_c01005{width:16.440000px;}
._22_c01005{width:17.460000px;}
._9_c01005{width:19.080000px;}
._1b_c01005{width:20.160000px;}
._d_c01005{width:21.420000px;}
._12_c01005{width:22.980000px;}
._e_c01005{width:24.900000px;}
._11_c01005{width:26.400000px;}
._19_c01005{width:29.940000px;}
._1a_c01005{width:32.100000px;}
._21_c01005{width:34.164000px;}
._17_c01005{width:37.680000px;}
._24_c01005{width:47.460000px;}
._25_c01005{width:48.480000px;}
._4_c01005{width:81.840000px;}
._1d_c01005{width:90.060000px;}
._28_c01005{width:93.990000px;}
._27_c01005{width:129.384000px;}
._26_c01005{width:255.033000px;}
.fc2_c01005{color:transparent;}
.fc1_c01005{color:rgb(128,128,128);}
.fc0_c01005{color:rgb(0,0,0);}
.fs6_c01005{font-size:33.000000px;}
.fs4_c01005{font-size:45.000000px;}
.fs7_c01005{font-size:48.000000px;}
.fs5_c01005{font-size:51.000000px;}
.fs1_c01005{font-size:54.000000px;}
.fs2_c01005{font-size:57.000000px;}
.fs0_c01005{font-size:60.000000px;}
.fs3_c01005{font-size:147.000000px;}
.y0_c01005{bottom:0.000000px;}
.y51_c01005{bottom:3.105000px;}
.y50_c01005{bottom:7.228355px;}
.y4f_c01005{bottom:45.585000px;}
.y26_c01005{bottom:61.035000px;}
.y4e_c01005{bottom:62.685000px;}
.y25_c01005{bottom:80.535000px;}
.y4d_c01005{bottom:81.285000px;}
.y24_c01005{bottom:98.085000px;}
.y4c_c01005{bottom:99.885000px;}
.y23_c01005{bottom:116.985000px;}
.y4b_c01005{bottom:117.135000px;}
.y22_c01005{bottom:135.285000px;}
.y4a_c01005{bottom:135.585000px;}
.y21_c01005{bottom:153.435000px;}
.y49_c01005{bottom:153.885000px;}
.y20_c01005{bottom:171.435000px;}
.y48_c01005{bottom:172.035000px;}
.y1f_c01005{bottom:189.285000px;}
.y47_c01005{bottom:190.335000px;}
.y1e_c01005{bottom:207.435000px;}
.y46_c01005{bottom:208.785000px;}
.y1d_c01005{bottom:225.735000px;}
.y45_c01005{bottom:226.785000px;}
.y1c_c01005{bottom:243.885000px;}
.y44_c01005{bottom:245.685000px;}
.y1b_c01005{bottom:262.185000px;}
.y1a_c01005{bottom:262.785000px;}
.y43_c01005{bottom:262.935000px;}
.y42_c01005{bottom:281.085000px;}
.y41_c01005{bottom:298.935000px;}
.y19_c01005{bottom:315.585000px;}
.y40_c01005{bottom:316.485000px;}
.y18_c01005{bottom:334.035000px;}
.y3f_c01005{bottom:335.085000px;}
.y17_c01005{bottom:352.035000px;}
.y3e_c01005{bottom:352.335000px;}
.y16_c01005{bottom:370.185000px;}
.y3d_c01005{bottom:370.785000px;}
.y15_c01005{bottom:388.335000px;}
.y3c_c01005{bottom:388.785000px;}
.y3b_c01005{bottom:407.385000px;}
.y14_c01005{bottom:423.435000px;}
.y3a_c01005{bottom:424.935000px;}
.y39_c01005{bottom:443.385000px;}
.y13_c01005{bottom:460.635000px;}
.y38_c01005{bottom:461.235000px;}
.y12_c01005{bottom:477.585000px;}
.y37_c01005{bottom:479.535000px;}
.y11_c01005{bottom:496.485000px;}
.y36_c01005{bottom:497.385000px;}
.y10_c01005{bottom:514.335000px;}
.y35_c01005{bottom:515.385000px;}
.yf_c01005{bottom:532.185000px;}
.y34_c01005{bottom:533.235000px;}
.ye_c01005{bottom:550.785000px;}
.y33_c01005{bottom:551.385000px;}
.yd_c01005{bottom:568.035000px;}
.y32_c01005{bottom:568.935000px;}
.yc_c01005{bottom:586.485000px;}
.y31_c01005{bottom:586.935000px;}
.yb_c01005{bottom:604.485000px;}
.y30_c01005{bottom:604.785000px;}
.ya_c01005{bottom:622.035000px;}
.y2f_c01005{bottom:623.235000px;}
.y9_c01005{bottom:640.935000px;}
.y8_c01005{bottom:659.085000px;}
.y2e_c01005{bottom:659.835000px;}
.y7_c01005{bottom:677.235000px;}
.y2d_c01005{bottom:677.985000px;}
.y6_c01005{bottom:695.235000px;}
.y2c_c01005{bottom:696.585000px;}
.y5_c01005{bottom:713.685000px;}
.y2b_c01005{bottom:714.135000px;}
.y4_c01005{bottom:731.385000px;}
.y2a_c01005{bottom:731.685000px;}
.y29_c01005{bottom:749.535000px;}
.y3_c01005{bottom:750.135000px;}
.y28_c01005{bottom:767.685000px;}
.y2_c01005{bottom:768.135000px;}
.y27_c01005{bottom:785.685000px;}
.y1_c01005{bottom:786.585000px;}
.hb_c01005{height:13.200074px;}
.ha_c01005{height:35.211000px;}
.hc_c01005{height:43.804688px;}
.h6_c01005{height:52.971680px;}
.h3_c01005{height:52.998047px;}
.h9_c01005{height:59.690918px;}
.h5_c01005{height:59.736000px;}
.h2_c01005{height:62.880000px;}
.h4_c01005{height:64.020000px;}
.h8_c01005{height:64.571777px;}
.h7_c01005{height:186.118652px;}
.h0_c01005{height:845.625000px;}
.h1_c01005{height:846.000000px;}
.w2_c01005{width:104.875500px;}
.w1_c01005{width:577.500000px;}
.w0_c01005{width:577.800000px;}
.x0_c01005{left:0.000000px;}
.x1_c01005{left:22.650000px;}
.x4_c01005{left:81.450000px;}
.x5_c01005{left:82.650000px;}
.x3_c01005{left:84.000000px;}
.x2_c01005{left:85.350000px;}
.x6_c01005{left:86.400000px;}
.x8_c01005{left:103.350000px;}
.xc_c01005{left:108.000000px;}
.x9_c01005{left:111.450000px;}
.xa_c01005{left:123.900000px;}
.xb_c01005{left:157.650000px;}
.x7_c01005{left:163.800000px;}
.x12_c01005{left:240.714249px;}
.xf_c01005{left:301.350000px;}
.xd_c01005{left:302.700000px;}
.xe_c01005{left:304.500000px;}
.x10_c01005{left:323.700000px;}
.x11_c01005{left:474.150000px;}
@media print{
.v0_c01005{vertical-align:0.000000pt;}
.v1_c01005{vertical-align:61.333333pt;}
.ls8_c01005{letter-spacing:0.000000pt;}
.ls3_c01005{letter-spacing:0.266667pt;}
.ls0_c01005{letter-spacing:2.666667pt;}
.ls4_c01005{letter-spacing:3.890667pt;}
.ls9_c01005{letter-spacing:5.333333pt;}
.ls7_c01005{letter-spacing:5.733333pt;}
.ls2_c01005{letter-spacing:6.693333pt;}
.ls1_c01005{letter-spacing:12.800000pt;}
.ls5_c01005{letter-spacing:16.933333pt;}
.ls6_c01005{letter-spacing:132.133333pt;}
.ws0_c01005{word-spacing:-27.146667pt;}
.ws1_c01005{word-spacing:-14.666667pt;}
.ws2_c01005{word-spacing:-10.925333pt;}
.ws3_c01005{word-spacing:-5.250667pt;}
.ws4_c01005{word-spacing:0.000000pt;}
._c_c01005{margin-left:-16.266667pt;}
._23_c01005{margin-left:-12.906667pt;}
._2_c01005{margin-left:-11.146667pt;}
._1f_c01005{margin-left:-9.706667pt;}
._1e_c01005{margin-left:-8.640000pt;}
._20_c01005{margin-left:-7.200000pt;}
._18_c01005{margin-left:-4.826667pt;}
._3_c01005{margin-left:-3.573333pt;}
._1_c01005{margin-left:-2.240000pt;}
._f_c01005{margin-left:-0.960000pt;}
._6_c01005{width:1.600000pt;}
._5_c01005{width:2.666667pt;}
._8_c01005{width:4.213333pt;}
._a_c01005{width:5.120000pt;}
._16_c01005{width:6.026667pt;}
._7_c01005{width:6.933333pt;}
._14_c01005{width:7.946667pt;}
._0_c01005{width:8.906667pt;}
._15_c01005{width:9.866667pt;}
._b_c01005{width:10.880000pt;}
._13_c01005{width:12.426667pt;}
._1c_c01005{width:13.378667pt;}
._10_c01005{width:14.613333pt;}
._22_c01005{width:15.520000pt;}
._9_c01005{width:16.960000pt;}
._1b_c01005{width:17.920000pt;}
._d_c01005{width:19.040000pt;}
._12_c01005{width:20.426667pt;}
._e_c01005{width:22.133333pt;}
._11_c01005{width:23.466667pt;}
._19_c01005{width:26.613333pt;}
._1a_c01005{width:28.533333pt;}
._21_c01005{width:30.368000pt;}
._17_c01005{width:33.493333pt;}
._24_c01005{width:42.186667pt;}
._25_c01005{width:43.093333pt;}
._4_c01005{width:72.746667pt;}
._1d_c01005{width:80.053333pt;}
._28_c01005{width:83.546667pt;}
._27_c01005{width:115.008000pt;}
._26_c01005{width:226.696000pt;}
.fs6_c01005{font-size:29.333333pt;}
.fs4_c01005{font-size:40.000000pt;}
.fs7_c01005{font-size:42.666667pt;}
.fs5_c01005{font-size:45.333333pt;}
.fs1_c01005{font-size:48.000000pt;}
.fs2_c01005{font-size:50.666667pt;}
.fs0_c01005{font-size:53.333333pt;}
.fs3_c01005{font-size:130.666667pt;}
.y0_c01005{bottom:0.000000pt;}
.y51_c01005{bottom:2.760000pt;}
.y50_c01005{bottom:6.425204pt;}
.y4f_c01005{bottom:40.520000pt;}
.y26_c01005{bottom:54.253333pt;}
.y4e_c01005{bottom:55.720000pt;}
.y25_c01005{bottom:71.586667pt;}
.y4d_c01005{bottom:72.253333pt;}
.y24_c01005{bottom:87.186667pt;}
.y4c_c01005{bottom:88.786667pt;}
.y23_c01005{bottom:103.986667pt;}
.y4b_c01005{bottom:104.120000pt;}
.y22_c01005{bottom:120.253333pt;}
.y4a_c01005{bottom:120.520000pt;}
.y21_c01005{bottom:136.386667pt;}
.y49_c01005{bottom:136.786667pt;}
.y20_c01005{bottom:152.386667pt;}
.y48_c01005{bottom:152.920000pt;}
.y1f_c01005{bottom:168.253333pt;}
.y47_c01005{bottom:169.186667pt;}
.y1e_c01005{bottom:184.386667pt;}
.y46_c01005{bottom:185.586667pt;}
.y1d_c01005{bottom:200.653333pt;}
.y45_c01005{bottom:201.586667pt;}
.y1c_c01005{bottom:216.786667pt;}
.y44_c01005{bottom:218.386667pt;}
.y1b_c01005{bottom:233.053333pt;}
.y1a_c01005{bottom:233.586667pt;}
.y43_c01005{bottom:233.720000pt;}
.y42_c01005{bottom:249.853333pt;}
.y41_c01005{bottom:265.720000pt;}
.y19_c01005{bottom:280.520000pt;}
.y40_c01005{bottom:281.320000pt;}
.y18_c01005{bottom:296.920000pt;}
.y3f_c01005{bottom:297.853333pt;}
.y17_c01005{bottom:312.920000pt;}
.y3e_c01005{bottom:313.186667pt;}
.y16_c01005{bottom:329.053333pt;}
.y3d_c01005{bottom:329.586667pt;}
.y15_c01005{bottom:345.186667pt;}
.y3c_c01005{bottom:345.586667pt;}
.y3b_c01005{bottom:362.120000pt;}
.y14_c01005{bottom:376.386667pt;}
.y3a_c01005{bottom:377.720000pt;}
.y39_c01005{bottom:394.120000pt;}
.y13_c01005{bottom:409.453333pt;}
.y38_c01005{bottom:409.986667pt;}
.y12_c01005{bottom:424.520000pt;}
.y37_c01005{bottom:426.253333pt;}
.y11_c01005{bottom:441.320000pt;}
.y36_c01005{bottom:442.120000pt;}
.y10_c01005{bottom:457.186667pt;}
.y35_c01005{bottom:458.120000pt;}
.yf_c01005{bottom:473.053333pt;}
.y34_c01005{bottom:473.986667pt;}
.ye_c01005{bottom:489.586667pt;}
.y33_c01005{bottom:490.120000pt;}
.yd_c01005{bottom:504.920000pt;}
.y32_c01005{bottom:505.720000pt;}
.yc_c01005{bottom:521.320000pt;}
.y31_c01005{bottom:521.720000pt;}
.yb_c01005{bottom:537.320000pt;}
.y30_c01005{bottom:537.586667pt;}
.ya_c01005{bottom:552.920000pt;}
.y2f_c01005{bottom:553.986667pt;}
.y9_c01005{bottom:569.720000pt;}
.y8_c01005{bottom:585.853333pt;}
.y2e_c01005{bottom:586.520000pt;}
.y7_c01005{bottom:601.986667pt;}
.y2d_c01005{bottom:602.653333pt;}
.y6_c01005{bottom:617.986667pt;}
.y2c_c01005{bottom:619.186667pt;}
.y5_c01005{bottom:634.386667pt;}
.y2b_c01005{bottom:634.786667pt;}
.y4_c01005{bottom:650.120000pt;}
.y2a_c01005{bottom:650.386667pt;}
.y29_c01005{bottom:666.253333pt;}
.y3_c01005{bottom:666.786667pt;}
.y28_c01005{bottom:682.386667pt;}
.y2_c01005{bottom:682.786667pt;}
.y27_c01005{bottom:698.386667pt;}
.y1_c01005{bottom:699.186667pt;}
.hb_c01005{height:11.733399pt;}
.ha_c01005{height:31.298667pt;}
.hc_c01005{height:38.937500pt;}
.h6_c01005{height:47.085938pt;}
.h3_c01005{height:47.109375pt;}
.h9_c01005{height:53.058594pt;}
.h5_c01005{height:53.098667pt;}
.h2_c01005{height:55.893333pt;}
.h4_c01005{height:56.906667pt;}
.h8_c01005{height:57.397135pt;}
.h7_c01005{height:165.438802pt;}
.h0_c01005{height:751.666667pt;}
.h1_c01005{height:752.000000pt;}
.w2_c01005{width:93.222667pt;}
.w1_c01005{width:513.333333pt;}
.w0_c01005{width:513.600000pt;}
.x0_c01005{left:0.000000pt;}
.x1_c01005{left:20.133333pt;}
.x4_c01005{left:72.400000pt;}
.x5_c01005{left:73.466667pt;}
.x3_c01005{left:74.666667pt;}
.x2_c01005{left:75.866667pt;}
.x6_c01005{left:76.800000pt;}
.x8_c01005{left:91.866667pt;}
.xc_c01005{left:96.000000pt;}
.x9_c01005{left:99.066667pt;}
.xa_c01005{left:110.133333pt;}
.xb_c01005{left:140.133333pt;}
.x7_c01005{left:145.600000pt;}
.x12_c01005{left:213.968221pt;}
.xf_c01005{left:267.866667pt;}
.xd_c01005{left:269.066667pt;}
.xe_c01005{left:270.666667pt;}
.x10_c01005{left:287.733333pt;}
.x11_c01005{left:421.466667pt;}
}





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

.ir_c01006:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01006{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01006;src:url('chunks/assets/font_ef09ead6380daa42a6d7168e.woff2')format("woff");}.ff1_c01006{font-family:ff1_c01006;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01006;src:url('chunks/assets/font_0ccc6a99970481ef9541ba00.woff2')format("woff");}.ff2_c01006{font-family:ff2_c01006;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01006;src:url('chunks/assets/font_c2c2cf413c1280b6a7aef8be.woff2')format("woff");}.ff3_c01006{font-family:ff3_c01006;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01006;src:url('chunks/assets/font_65d2c40c83fffb2b852ab7d4.woff2')format("woff");}.ff4_c01006{font-family:ff4_c01006;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01006;src:url('chunks/assets/font_311e25e1fc6b204e47b5695e.woff2')format("woff");}.ff5_c01006{font-family:ff5_c01006;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01006;src:url('chunks/assets/font_3df6ea646e86aaed9a471a7a.woff2')format("woff");}.ff6_c01006{font-family:ff6_c01006;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01006;src:url('chunks/assets/font_db4ac1c894051b9ff55596c7.woff2')format("woff");}.ff7_c01006{font-family:ff7_c01006;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c01006;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff8_c01006{font-family:ff8_c01006;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01006{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01006{vertical-align:0.000000px;}
.ls4_c01006{letter-spacing:-6.000000px;}
.ls3_c01006{letter-spacing:0.000000px;}
.ls7_c01006{letter-spacing:3.000000px;}
.ls1_c01006{letter-spacing:3.336000px;}
.ls5_c01006{letter-spacing:6.000000px;}
.ls2_c01006{letter-spacing:6.093000px;}
.ls0_c01006{letter-spacing:9.000000px;}
.ls6_c01006{letter-spacing:27.000000px;}
.sc__c01006{text-shadow:none;}
.sc0_c01006{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01006{-webkit-text-stroke:0px transparent;}
.sc0_c01006{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c01006{word-spacing:-42.750000px;}
.ws7_c01006{word-spacing:-35.295000px;}
.ws8_c01006{word-spacing:-23.160000px;}
.ws5_c01006{word-spacing:-21.000000px;}
.ws0_c01006{word-spacing:-15.750000px;}
.ws3_c01006{word-spacing:-15.057000px;}
.ws4_c01006{word-spacing:-15.000000px;}
.ws2_c01006{word-spacing:-14.160000px;}
.ws1_c01006{word-spacing:-9.057000px;}
.ws9_c01006{word-spacing:0.000000px;}
._24_c01006{margin-left:-16.014000px;}
._1a_c01006{margin-left:-12.660000px;}
._25_c01006{margin-left:-10.503000px;}
._1b_c01006{margin-left:-8.598000px;}
._18_c01006{margin-left:-6.678000px;}
._5_c01006{margin-left:-5.670000px;}
._7_c01006{margin-left:-4.473000px;}
._17_c01006{margin-left:-3.150000px;}
._6_c01006{margin-left:-1.890000px;}
._a_c01006{width:1.323000px;}
._9_c01006{width:3.087000px;}
._8_c01006{width:4.662000px;}
._12_c01006{width:5.670000px;}
._b_c01006{width:6.741000px;}
._c_c01006{width:8.253000px;}
._13_c01006{width:9.435000px;}
._d_c01006{width:10.773000px;}
._4_c01006{width:12.300000px;}
._15_c01006{width:13.671000px;}
._20_c01006{width:14.694000px;}
._22_c01006{width:17.493000px;}
._0_c01006{width:18.840000px;}
._14_c01006{width:19.908000px;}
._11_c01006{width:20.916000px;}
._16_c01006{width:21.924000px;}
._2_c01006{width:24.360000px;}
._1e_c01006{width:25.515000px;}
._3_c01006{width:27.060000px;}
._e_c01006{width:28.158000px;}
._23_c01006{width:31.323000px;}
._10_c01006{width:37.044000px;}
._1_c01006{width:40.920000px;}
._f_c01006{width:42.147000px;}
._1d_c01006{width:60.732000px;}
._19_c01006{width:95.151000px;}
._26_c01006{width:109.161000px;}
._1c_c01006{width:226.800000px;}
._21_c01006{width:422.379000px;}
._1f_c01006{width:511.890000px;}
.fc2_c01006{color:transparent;}
.fc1_c01006{color:rgb(128,128,128);}
.fc0_c01006{color:rgb(0,0,0);}
.fs3_c01006{font-size:45.000000px;}
.fs6_c01006{font-size:48.000000px;}
.fs5_c01006{font-size:54.000000px;}
.fs4_c01006{font-size:57.000000px;}
.fs0_c01006{font-size:60.000000px;}
.fs1_c01006{font-size:63.000000px;}
.fs2_c01006{font-size:72.000000px;}
.y0_c01006{bottom:0.000000px;}
.y57_c01006{bottom:3.105000px;}
.y56_c01006{bottom:7.228363px;}
.y55_c01006{bottom:31.050000px;}
.y54_c01006{bottom:49.200000px;}
.y2a_c01006{bottom:52.950000px;}
.y53_c01006{bottom:68.850000px;}
.y29_c01006{bottom:71.850000px;}
.y52_c01006{bottom:87.000000px;}
.y28_c01006{bottom:91.350000px;}
.y51_c01006{bottom:104.850000px;}
.y27_c01006{bottom:111.000000px;}
.y50_c01006{bottom:122.850000px;}
.y26_c01006{bottom:126.150000px;}
.y4f_c01006{bottom:141.000000px;}
.y25_c01006{bottom:146.700000px;}
.y4e_c01006{bottom:159.000000px;}
.y24_c01006{bottom:163.350000px;}
.y4d_c01006{bottom:177.750000px;}
.y23_c01006{bottom:184.200000px;}
.y4c_c01006{bottom:195.300000px;}
.y22_c01006{bottom:202.050000px;}
.y4b_c01006{bottom:213.900000px;}
.y21_c01006{bottom:217.950000px;}
.y4a_c01006{bottom:232.500000px;}
.y20_c01006{bottom:236.850000px;}
.y49_c01006{bottom:250.050000px;}
.y1f_c01006{bottom:253.800000px;}
.y48_c01006{bottom:267.900000px;}
.y1e_c01006{bottom:272.400000px;}
.y47_c01006{bottom:287.100000px;}
.y1d_c01006{bottom:289.800000px;}
.y46_c01006{bottom:304.800000px;}
.y1c_c01006{bottom:307.800000px;}
.y45_c01006{bottom:322.350000px;}
.y1b_c01006{bottom:326.400000px;}
.y44_c01006{bottom:340.200000px;}
.y1a_c01006{bottom:343.200000px;}
.y43_c01006{bottom:359.100000px;}
.y19_c01006{bottom:362.100000px;}
.y42_c01006{bottom:377.250000px;}
.y18_c01006{bottom:380.700000px;}
.y41_c01006{bottom:394.800000px;}
.y17_c01006{bottom:398.850000px;}
.y40_c01006{bottom:413.700000px;}
.y16_c01006{bottom:416.850000px;}
.y3f_c01006{bottom:431.250000px;}
.y15_c01006{bottom:435.000000px;}
.y3e_c01006{bottom:449.250000px;}
.y14_c01006{bottom:452.850000px;}
.y3d_c01006{bottom:467.400000px;}
.y13_c01006{bottom:470.100000px;}
.y3c_c01006{bottom:485.250000px;}
.y12_c01006{bottom:489.300000px;}
.y3b_c01006{bottom:503.550000px;}
.y11_c01006{bottom:506.550000px;}
.y3a_c01006{bottom:521.100000px;}
.y10_c01006{bottom:524.100000px;}
.y39_c01006{bottom:539.550000px;}
.yf_c01006{bottom:541.350000px;}
.y38_c01006{bottom:557.250000px;}
.ye_c01006{bottom:559.200000px;}
.y37_c01006{bottom:575.700000px;}
.yd_c01006{bottom:577.050000px;}
.y36_c01006{bottom:593.550000px;}
.yc_c01006{bottom:594.600000px;}
.y35_c01006{bottom:611.250000px;}
.yb_c01006{bottom:612.150000px;}
.y34_c01006{bottom:629.550000px;}
.ya_c01006{bottom:631.350000px;}
.y33_c01006{bottom:647.550000px;}
.y9_c01006{bottom:648.900000px;}
.y32_c01006{bottom:665.550000px;}
.y8_c01006{bottom:667.500000px;}
.y31_c01006{bottom:683.700000px;}
.y7_c01006{bottom:685.350000px;}
.y30_c01006{bottom:702.000000px;}
.y6_c01006{bottom:703.650000px;}
.y2f_c01006{bottom:720.600000px;}
.y5_c01006{bottom:721.800000px;}
.y2e_c01006{bottom:738.450000px;}
.y4_c01006{bottom:739.500000px;}
.y2d_c01006{bottom:756.900000px;}
.y3_c01006{bottom:757.650000px;}
.y2c_c01006{bottom:774.900000px;}
.y2_c01006{bottom:775.950000px;}
.y2b_c01006{bottom:795.450000px;}
.y1_c01006{bottom:796.800000px;}
.h8_c01006{height:13.200074px;}
.h9_c01006{height:43.804688px;}
.h7_c01006{height:56.592000px;}
.h6_c01006{height:59.736000px;}
.h1_c01006{height:62.880000px;}
.h4_c01006{height:66.024000px;}
.h3_c01006{height:67.221000px;}
.h2_c01006{height:68.292000px;}
.h5_c01006{height:75.456000px;}
.h0_c01006{height:843.750000px;}
.w2_c01006{width:104.875500px;}
.w1_c01006{width:579.750000px;}
.w0_c01006{width:579.975000px;}
.x0_c01006{left:0.000000px;}
.x9_c01006{left:11.250000px;}
.xa_c01006{left:12.450000px;}
.xb_c01006{left:14.100000px;}
.x7_c01006{left:55.050000px;}
.x3_c01006{left:67.200000px;}
.x4_c01006{left:69.150000px;}
.x2_c01006{left:70.200000px;}
.x5_c01006{left:71.250000px;}
.x6_c01006{left:72.300000px;}
.x8_c01006{left:73.800000px;}
.xc_c01006{left:74.850000px;}
.x1_c01006{left:195.450000px;}
.x14_c01006{left:241.801758px;}
.xd_c01006{left:286.800000px;}
.xe_c01006{left:289.950000px;}
.xf_c01006{left:291.000000px;}
.x10_c01006{left:292.050000px;}
.x12_c01006{left:293.850000px;}
.x11_c01006{left:340.500000px;}
.x13_c01006{left:461.400000px;}
@media print{
.v0_c01006{vertical-align:0.000000pt;}
.ls4_c01006{letter-spacing:-5.333333pt;}
.ls3_c01006{letter-spacing:0.000000pt;}
.ls7_c01006{letter-spacing:2.666667pt;}
.ls1_c01006{letter-spacing:2.965333pt;}
.ls5_c01006{letter-spacing:5.333333pt;}
.ls2_c01006{letter-spacing:5.416000pt;}
.ls0_c01006{letter-spacing:8.000000pt;}
.ls6_c01006{letter-spacing:24.000000pt;}
.ws6_c01006{word-spacing:-38.000000pt;}
.ws7_c01006{word-spacing:-31.373333pt;}
.ws8_c01006{word-spacing:-20.586667pt;}
.ws5_c01006{word-spacing:-18.666667pt;}
.ws0_c01006{word-spacing:-14.000000pt;}
.ws3_c01006{word-spacing:-13.384000pt;}
.ws4_c01006{word-spacing:-13.333333pt;}
.ws2_c01006{word-spacing:-12.586667pt;}
.ws1_c01006{word-spacing:-8.050667pt;}
.ws9_c01006{word-spacing:0.000000pt;}
._24_c01006{margin-left:-14.234667pt;}
._1a_c01006{margin-left:-11.253333pt;}
._25_c01006{margin-left:-9.336000pt;}
._1b_c01006{margin-left:-7.642667pt;}
._18_c01006{margin-left:-5.936000pt;}
._5_c01006{margin-left:-5.040000pt;}
._7_c01006{margin-left:-3.976000pt;}
._17_c01006{margin-left:-2.800000pt;}
._6_c01006{margin-left:-1.680000pt;}
._a_c01006{width:1.176000pt;}
._9_c01006{width:2.744000pt;}
._8_c01006{width:4.144000pt;}
._12_c01006{width:5.040000pt;}
._b_c01006{width:5.992000pt;}
._c_c01006{width:7.336000pt;}
._13_c01006{width:8.386667pt;}
._d_c01006{width:9.576000pt;}
._4_c01006{width:10.933333pt;}
._15_c01006{width:12.152000pt;}
._20_c01006{width:13.061333pt;}
._22_c01006{width:15.549333pt;}
._0_c01006{width:16.746667pt;}
._14_c01006{width:17.696000pt;}
._11_c01006{width:18.592000pt;}
._16_c01006{width:19.488000pt;}
._2_c01006{width:21.653333pt;}
._1e_c01006{width:22.680000pt;}
._3_c01006{width:24.053333pt;}
._e_c01006{width:25.029333pt;}
._23_c01006{width:27.842667pt;}
._10_c01006{width:32.928000pt;}
._1_c01006{width:36.373333pt;}
._f_c01006{width:37.464000pt;}
._1d_c01006{width:53.984000pt;}
._19_c01006{width:84.578667pt;}
._26_c01006{width:97.032000pt;}
._1c_c01006{width:201.600000pt;}
._21_c01006{width:375.448000pt;}
._1f_c01006{width:455.013333pt;}
.fs3_c01006{font-size:40.000000pt;}
.fs6_c01006{font-size:42.666667pt;}
.fs5_c01006{font-size:48.000000pt;}
.fs4_c01006{font-size:50.666667pt;}
.fs0_c01006{font-size:53.333333pt;}
.fs1_c01006{font-size:56.000000pt;}
.fs2_c01006{font-size:64.000000pt;}
.y0_c01006{bottom:0.000000pt;}
.y57_c01006{bottom:2.760000pt;}
.y56_c01006{bottom:6.425212pt;}
.y55_c01006{bottom:27.600000pt;}
.y54_c01006{bottom:43.733333pt;}
.y2a_c01006{bottom:47.066667pt;}
.y53_c01006{bottom:61.200000pt;}
.y29_c01006{bottom:63.866667pt;}
.y52_c01006{bottom:77.333333pt;}
.y28_c01006{bottom:81.200000pt;}
.y51_c01006{bottom:93.200000pt;}
.y27_c01006{bottom:98.666667pt;}
.y50_c01006{bottom:109.200000pt;}
.y26_c01006{bottom:112.133333pt;}
.y4f_c01006{bottom:125.333333pt;}
.y25_c01006{bottom:130.400000pt;}
.y4e_c01006{bottom:141.333333pt;}
.y24_c01006{bottom:145.200000pt;}
.y4d_c01006{bottom:158.000000pt;}
.y23_c01006{bottom:163.733333pt;}
.y4c_c01006{bottom:173.600000pt;}
.y22_c01006{bottom:179.600000pt;}
.y4b_c01006{bottom:190.133333pt;}
.y21_c01006{bottom:193.733333pt;}
.y4a_c01006{bottom:206.666667pt;}
.y20_c01006{bottom:210.533333pt;}
.y49_c01006{bottom:222.266667pt;}
.y1f_c01006{bottom:225.600000pt;}
.y48_c01006{bottom:238.133333pt;}
.y1e_c01006{bottom:242.133333pt;}
.y47_c01006{bottom:255.200000pt;}
.y1d_c01006{bottom:257.600000pt;}
.y46_c01006{bottom:270.933333pt;}
.y1c_c01006{bottom:273.600000pt;}
.y45_c01006{bottom:286.533333pt;}
.y1b_c01006{bottom:290.133333pt;}
.y44_c01006{bottom:302.400000pt;}
.y1a_c01006{bottom:305.066667pt;}
.y43_c01006{bottom:319.200000pt;}
.y19_c01006{bottom:321.866667pt;}
.y42_c01006{bottom:335.333333pt;}
.y18_c01006{bottom:338.400000pt;}
.y41_c01006{bottom:350.933333pt;}
.y17_c01006{bottom:354.533333pt;}
.y40_c01006{bottom:367.733333pt;}
.y16_c01006{bottom:370.533333pt;}
.y3f_c01006{bottom:383.333333pt;}
.y15_c01006{bottom:386.666667pt;}
.y3e_c01006{bottom:399.333333pt;}
.y14_c01006{bottom:402.533333pt;}
.y3d_c01006{bottom:415.466667pt;}
.y13_c01006{bottom:417.866667pt;}
.y3c_c01006{bottom:431.333333pt;}
.y12_c01006{bottom:434.933333pt;}
.y3b_c01006{bottom:447.600000pt;}
.y11_c01006{bottom:450.266667pt;}
.y3a_c01006{bottom:463.200000pt;}
.y10_c01006{bottom:465.866667pt;}
.y39_c01006{bottom:479.600000pt;}
.yf_c01006{bottom:481.200000pt;}
.y38_c01006{bottom:495.333333pt;}
.ye_c01006{bottom:497.066667pt;}
.y37_c01006{bottom:511.733333pt;}
.yd_c01006{bottom:512.933333pt;}
.y36_c01006{bottom:527.600000pt;}
.yc_c01006{bottom:528.533333pt;}
.y35_c01006{bottom:543.333333pt;}
.yb_c01006{bottom:544.133333pt;}
.y34_c01006{bottom:559.600000pt;}
.ya_c01006{bottom:561.200000pt;}
.y33_c01006{bottom:575.600000pt;}
.y9_c01006{bottom:576.800000pt;}
.y32_c01006{bottom:591.600000pt;}
.y8_c01006{bottom:593.333333pt;}
.y31_c01006{bottom:607.733333pt;}
.y7_c01006{bottom:609.200000pt;}
.y30_c01006{bottom:624.000000pt;}
.y6_c01006{bottom:625.466667pt;}
.y2f_c01006{bottom:640.533333pt;}
.y5_c01006{bottom:641.600000pt;}
.y2e_c01006{bottom:656.400000pt;}
.y4_c01006{bottom:657.333333pt;}
.y2d_c01006{bottom:672.800000pt;}
.y3_c01006{bottom:673.466667pt;}
.y2c_c01006{bottom:688.800000pt;}
.y2_c01006{bottom:689.733333pt;}
.y2b_c01006{bottom:707.066667pt;}
.y1_c01006{bottom:708.266667pt;}
.h8_c01006{height:11.733399pt;}
.h9_c01006{height:38.937500pt;}
.h7_c01006{height:50.304000pt;}
.h6_c01006{height:53.098667pt;}
.h1_c01006{height:55.893333pt;}
.h4_c01006{height:58.688000pt;}
.h3_c01006{height:59.752000pt;}
.h2_c01006{height:60.704000pt;}
.h5_c01006{height:67.072000pt;}
.h0_c01006{height:750.000000pt;}
.w2_c01006{width:93.222667pt;}
.w1_c01006{width:515.333333pt;}
.w0_c01006{width:515.533333pt;}
.x0_c01006{left:0.000000pt;}
.x9_c01006{left:10.000000pt;}
.xa_c01006{left:11.066667pt;}
.xb_c01006{left:12.533333pt;}
.x7_c01006{left:48.933333pt;}
.x3_c01006{left:59.733333pt;}
.x4_c01006{left:61.466667pt;}
.x2_c01006{left:62.400000pt;}
.x5_c01006{left:63.333333pt;}
.x6_c01006{left:64.266667pt;}
.x8_c01006{left:65.600000pt;}
.xc_c01006{left:66.533333pt;}
.x1_c01006{left:173.733333pt;}
.x14_c01006{left:214.934896pt;}
.xd_c01006{left:254.933333pt;}
.xe_c01006{left:257.733333pt;}
.xf_c01006{left:258.666667pt;}
.x10_c01006{left:259.600000pt;}
.x12_c01006{left:261.200000pt;}
.x11_c01006{left:302.666667pt;}
.x13_c01006{left:410.133333pt;}
}





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

.ir_c01007:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01007{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01007;src:url('chunks/assets/font_d1d6b3e471d7006f52e6408c.woff2')format("woff");}.ff1_c01007{font-family:ff1_c01007;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01007;src:url('chunks/assets/font_7c11ddd5fee5d40bc51334ea.woff2')format("woff");}.ff2_c01007{font-family:ff2_c01007;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01007;src:url('chunks/assets/font_d0ad675988e4f62127bf9b40.woff2')format("woff");}.ff3_c01007{font-family:ff3_c01007;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01007;src:url('chunks/assets/font_524806b7e3de664c099e6096.woff2')format("woff");}.ff4_c01007{font-family:ff4_c01007;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01007;src:url('chunks/assets/font_896b2b9fcebdbece3d932a4a.woff2')format("woff");}.ff5_c01007{font-family:ff5_c01007;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01007;src:url('chunks/assets/font_6e9c2fa4700d4fc8518ba246.woff2')format("woff");}.ff6_c01007{font-family:ff6_c01007;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01007;src:url('chunks/assets/font_f50f1c0bdda6386e07d8baba.woff2')format("woff");}.ff7_c01007{font-family:ff7_c01007;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c01007;src:url('chunks/assets/font_bd31d94bae26872bc71a6686.woff2')format("woff");}.ff8_c01007{font-family:ff8_c01007;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c01007;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff9_c01007{font-family:ff9_c01007;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01007{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01007{vertical-align:0.000000px;}
.v1_c01007{vertical-align:61.200000px;}
.ls4_c01007{letter-spacing:0.000000px;}
.ls5_c01007{letter-spacing:3.000000px;}
.ls6_c01007{letter-spacing:6.000000px;}
.ls3_c01007{letter-spacing:9.693000px;}
.ls1_c01007{letter-spacing:13.800000px;}
.ls0_c01007{letter-spacing:16.800000px;}
.ls2_c01007{letter-spacing:27.645000px;}
.sc__c01007{text-shadow:none;}
.sc0_c01007{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01007{-webkit-text-stroke:0px transparent;}
.sc0_c01007{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c01007{word-spacing:-81.945000px;}
.ws3_c01007{word-spacing:-39.399000px;}
.ws1_c01007{word-spacing:-25.389000px;}
.ws4_c01007{word-spacing:-22.500000px;}
.ws0_c01007{word-spacing:-15.060000px;}
.ws5_c01007{word-spacing:-14.340000px;}
.ws7_c01007{word-spacing:-14.160000px;}
.ws2_c01007{word-spacing:-13.452000px;}
.ws8_c01007{word-spacing:0.000000px;}
._22_c01007{margin-left:-19.260000px;}
._14_c01007{margin-left:-15.540000px;}
._13_c01007{margin-left:-13.860000px;}
._23_c01007{margin-left:-10.560000px;}
._29_c01007{margin-left:-8.940000px;}
._27_c01007{margin-left:-7.860000px;}
._0_c01007{margin-left:-6.720000px;}
._1e_c01007{margin-left:-5.580000px;}
._1_c01007{margin-left:-4.200000px;}
._16_c01007{margin-left:-2.940000px;}
._d_c01007{margin-left:-1.860000px;}
._11_c01007{width:1.320000px;}
._c_c01007{width:2.400000px;}
._15_c01007{width:4.080000px;}
._10_c01007{width:5.880000px;}
._a_c01007{width:7.740000px;}
._3_c01007{width:9.300000px;}
._4_c01007{width:10.440000px;}
._1c_c01007{width:11.460000px;}
._9_c01007{width:12.540000px;}
._6_c01007{width:13.560000px;}
._1b_c01007{width:14.730000px;}
._8_c01007{width:16.140000px;}
._5_c01007{width:17.400000px;}
._b_c01007{width:19.800000px;}
._17_c01007{width:21.060000px;}
._20_c01007{width:22.080000px;}
._1f_c01007{width:23.160000px;}
._12_c01007{width:24.180000px;}
._f_c01007{width:25.500000px;}
._19_c01007{width:26.640000px;}
._25_c01007{width:29.160000px;}
._18_c01007{width:30.360000px;}
._26_c01007{width:31.620000px;}
._7_c01007{width:32.640000px;}
._1d_c01007{width:34.380000px;}
._21_c01007{width:39.060000px;}
._28_c01007{width:43.440000px;}
._1a_c01007{width:49.704000px;}
._e_c01007{width:69.960000px;}
._24_c01007{width:90.300000px;}
._2_c01007{width:193.140000px;}
.fc2_c01007{color:transparent;}
.fc1_c01007{color:rgb(128,128,128);}
.fc0_c01007{color:rgb(0,0,0);}
.fs2_c01007{font-size:39.000000px;}
.fs4_c01007{font-size:45.000000px;}
.fs9_c01007{font-size:48.000000px;}
.fs8_c01007{font-size:51.000000px;}
.fs3_c01007{font-size:54.000000px;}
.fs1_c01007{font-size:57.000000px;}
.fs0_c01007{font-size:60.000000px;}
.fs6_c01007{font-size:66.000000px;}
.fs5_c01007{font-size:69.000000px;}
.fs7_c01007{font-size:135.000000px;}
.y0_c01007{bottom:0.000000px;}
.y52_c01007{bottom:3.105000px;}
.y51_c01007{bottom:7.228371px;}
.y50_c01007{bottom:49.365000px;}
.y2a_c01007{bottom:63.165000px;}
.y4f_c01007{bottom:67.815000px;}
.y29_c01007{bottom:82.665000px;}
.y4e_c01007{bottom:85.815000px;}
.y28_c01007{bottom:101.265000px;}
.y4d_c01007{bottom:105.615000px;}
.y27_c01007{bottom:119.115000px;}
.y4c_c01007{bottom:123.315000px;}
.y26_c01007{bottom:137.415000px;}
.y4b_c01007{bottom:142.065000px;}
.y25_c01007{bottom:154.965000px;}
.y4a_c01007{bottom:160.065000px;}
.y24_c01007{bottom:173.865000px;}
.y49_c01007{bottom:177.915000px;}
.y23_c01007{bottom:191.715000px;}
.y48_c01007{bottom:196.215000px;}
.y22_c01007{bottom:209.715000px;}
.y47_c01007{bottom:214.065000px;}
.y21_c01007{bottom:228.165000px;}
.y46_c01007{bottom:232.965000px;}
.y20_c01007{bottom:246.165000px;}
.y45_c01007{bottom:249.765000px;}
.y1f_c01007{bottom:264.615000px;}
.y44_c01007{bottom:269.115000px;}
.y1e_c01007{bottom:283.215000px;}
.y43_c01007{bottom:287.265000px;}
.y1d_c01007{bottom:300.765000px;}
.y42_c01007{bottom:305.115000px;}
.y1c_c01007{bottom:318.615000px;}
.y41_c01007{bottom:322.965000px;}
.y1b_c01007{bottom:337.215000px;}
.y40_c01007{bottom:340.965000px;}
.y1a_c01007{bottom:355.065000px;}
.y3f_c01007{bottom:359.415000px;}
.y19_c01007{bottom:373.965000px;}
.y3e_c01007{bottom:377.415000px;}
.y18_c01007{bottom:391.965000px;}
.y3d_c01007{bottom:395.265000px;}
.y3c_c01007{bottom:398.115000px;}
.y17_c01007{bottom:409.515000px;}
.y16_c01007{bottom:429.015000px;}
.y15_c01007{bottom:446.865000px;}
.y3b_c01007{bottom:449.865000px;}
.y14_c01007{bottom:464.865000px;}
.y3a_c01007{bottom:467.415000px;}
.y13_c01007{bottom:482.715000px;}
.y39_c01007{bottom:486.315000px;}
.y12_c01007{bottom:500.865000px;}
.y38_c01007{bottom:504.315000px;}
.y11_c01007{bottom:519.465000px;}
.y37_c01007{bottom:522.165000px;}
.y10_c01007{bottom:537.615000px;}
.yf_c01007{bottom:556.215000px;}
.y36_c01007{bottom:556.665000px;}
.ye_c01007{bottom:573.465000px;}
.yd_c01007{bottom:592.365000px;}
.y35_c01007{bottom:593.115000px;}
.yc_c01007{bottom:609.915000px;}
.y34_c01007{bottom:611.265000px;}
.yb_c01007{bottom:628.215000px;}
.y33_c01007{bottom:629.865000px;}
.ya_c01007{bottom:646.665000px;}
.y32_c01007{bottom:648.015000px;}
.y9_c01007{bottom:664.665000px;}
.y31_c01007{bottom:665.565000px;}
.y30_c01007{bottom:682.815000px;}
.y8_c01007{bottom:683.115000px;}
.y7_c01007{bottom:700.965000px;}
.y2f_c01007{bottom:702.315000px;}
.y6_c01007{bottom:719.565000px;}
.y2e_c01007{bottom:720.915000px;}
.y2d_c01007{bottom:737.115000px;}
.y5_c01007{bottom:737.565000px;}
.y2c_c01007{bottom:756.765000px;}
.y4_c01007{bottom:757.065000px;}
.y2b_c01007{bottom:772.515000px;}
.y3_c01007{bottom:774.315000px;}
.y2_c01007{bottom:793.215000px;}
.y1_c01007{bottom:811.065000px;}
.h9_c01007{height:13.200074px;}
.ha_c01007{height:43.804688px;}
.h5_c01007{height:56.592000px;}
.h4_c01007{height:59.736000px;}
.h3_c01007{height:62.880000px;}
.h2_c01007{height:64.020000px;}
.h7_c01007{height:70.422000px;}
.h6_c01007{height:73.623000px;}
.h8_c01007{height:144.045000px;}
.h0_c01007{height:848.625000px;}
.h1_c01007{height:849.000000px;}
.w2_c01007{width:104.875500px;}
.w1_c01007{width:579.750000px;}
.w0_c01007{width:579.975000px;}
.x0_c01007{left:0.000000px;}
.x3_c01007{left:31.500000px;}
.x6_c01007{left:87.750000px;}
.x5_c01007{left:88.800000px;}
.x4_c01007{left:90.900000px;}
.x1_c01007{left:94.500000px;}
.x2_c01007{left:96.300000px;}
.x11_c01007{left:241.801758px;}
.xf_c01007{left:309.600000px;}
.xe_c01007{left:310.800000px;}
.xd_c01007{left:311.850000px;}
.x8_c01007{left:312.900000px;}
.x7_c01007{left:314.250000px;}
.xa_c01007{left:329.850000px;}
.xc_c01007{left:335.550000px;}
.xb_c01007{left:355.350000px;}
.x9_c01007{left:388.800000px;}
.x10_c01007{left:484.650000px;}
@media print{
.v0_c01007{vertical-align:0.000000pt;}
.v1_c01007{vertical-align:54.400000pt;}
.ls4_c01007{letter-spacing:0.000000pt;}
.ls5_c01007{letter-spacing:2.666667pt;}
.ls6_c01007{letter-spacing:5.333333pt;}
.ls3_c01007{letter-spacing:8.616000pt;}
.ls1_c01007{letter-spacing:12.266667pt;}
.ls0_c01007{letter-spacing:14.933333pt;}
.ls2_c01007{letter-spacing:24.573333pt;}
.ws6_c01007{word-spacing:-72.840000pt;}
.ws3_c01007{word-spacing:-35.021333pt;}
.ws1_c01007{word-spacing:-22.568000pt;}
.ws4_c01007{word-spacing:-20.000000pt;}
.ws0_c01007{word-spacing:-13.386667pt;}
.ws5_c01007{word-spacing:-12.746667pt;}
.ws7_c01007{word-spacing:-12.586667pt;}
.ws2_c01007{word-spacing:-11.957333pt;}
.ws8_c01007{word-spacing:0.000000pt;}
._22_c01007{margin-left:-17.120000pt;}
._14_c01007{margin-left:-13.813333pt;}
._13_c01007{margin-left:-12.320000pt;}
._23_c01007{margin-left:-9.386667pt;}
._29_c01007{margin-left:-7.946667pt;}
._27_c01007{margin-left:-6.986667pt;}
._0_c01007{margin-left:-5.973333pt;}
._1e_c01007{margin-left:-4.960000pt;}
._1_c01007{margin-left:-3.733333pt;}
._16_c01007{margin-left:-2.613333pt;}
._d_c01007{margin-left:-1.653333pt;}
._11_c01007{width:1.173333pt;}
._c_c01007{width:2.133333pt;}
._15_c01007{width:3.626667pt;}
._10_c01007{width:5.226667pt;}
._a_c01007{width:6.880000pt;}
._3_c01007{width:8.266667pt;}
._4_c01007{width:9.280000pt;}
._1c_c01007{width:10.186667pt;}
._9_c01007{width:11.146667pt;}
._6_c01007{width:12.053333pt;}
._1b_c01007{width:13.093333pt;}
._8_c01007{width:14.346667pt;}
._5_c01007{width:15.466667pt;}
._b_c01007{width:17.600000pt;}
._17_c01007{width:18.720000pt;}
._20_c01007{width:19.626667pt;}
._1f_c01007{width:20.586667pt;}
._12_c01007{width:21.493333pt;}
._f_c01007{width:22.666667pt;}
._19_c01007{width:23.680000pt;}
._25_c01007{width:25.920000pt;}
._18_c01007{width:26.986667pt;}
._26_c01007{width:28.106667pt;}
._7_c01007{width:29.013333pt;}
._1d_c01007{width:30.560000pt;}
._21_c01007{width:34.720000pt;}
._28_c01007{width:38.613333pt;}
._1a_c01007{width:44.181333pt;}
._e_c01007{width:62.186667pt;}
._24_c01007{width:80.266667pt;}
._2_c01007{width:171.680000pt;}
.fs2_c01007{font-size:34.666667pt;}
.fs4_c01007{font-size:40.000000pt;}
.fs9_c01007{font-size:42.666667pt;}
.fs8_c01007{font-size:45.333333pt;}
.fs3_c01007{font-size:48.000000pt;}
.fs1_c01007{font-size:50.666667pt;}
.fs0_c01007{font-size:53.333333pt;}
.fs6_c01007{font-size:58.666667pt;}
.fs5_c01007{font-size:61.333333pt;}
.fs7_c01007{font-size:120.000000pt;}
.y0_c01007{bottom:0.000000pt;}
.y52_c01007{bottom:2.760000pt;}
.y51_c01007{bottom:6.425219pt;}
.y50_c01007{bottom:43.880000pt;}
.y2a_c01007{bottom:56.146667pt;}
.y4f_c01007{bottom:60.280000pt;}
.y29_c01007{bottom:73.480000pt;}
.y4e_c01007{bottom:76.280000pt;}
.y28_c01007{bottom:90.013333pt;}
.y4d_c01007{bottom:93.880000pt;}
.y27_c01007{bottom:105.880000pt;}
.y4c_c01007{bottom:109.613333pt;}
.y26_c01007{bottom:122.146667pt;}
.y4b_c01007{bottom:126.280000pt;}
.y25_c01007{bottom:137.746667pt;}
.y4a_c01007{bottom:142.280000pt;}
.y24_c01007{bottom:154.546667pt;}
.y49_c01007{bottom:158.146667pt;}
.y23_c01007{bottom:170.413333pt;}
.y48_c01007{bottom:174.413333pt;}
.y22_c01007{bottom:186.413333pt;}
.y47_c01007{bottom:190.280000pt;}
.y21_c01007{bottom:202.813333pt;}
.y46_c01007{bottom:207.080000pt;}
.y20_c01007{bottom:218.813333pt;}
.y45_c01007{bottom:222.013333pt;}
.y1f_c01007{bottom:235.213333pt;}
.y44_c01007{bottom:239.213333pt;}
.y1e_c01007{bottom:251.746667pt;}
.y43_c01007{bottom:255.346667pt;}
.y1d_c01007{bottom:267.346667pt;}
.y42_c01007{bottom:271.213333pt;}
.y1c_c01007{bottom:283.213333pt;}
.y41_c01007{bottom:287.080000pt;}
.y1b_c01007{bottom:299.746667pt;}
.y40_c01007{bottom:303.080000pt;}
.y1a_c01007{bottom:315.613333pt;}
.y3f_c01007{bottom:319.480000pt;}
.y19_c01007{bottom:332.413333pt;}
.y3e_c01007{bottom:335.480000pt;}
.y18_c01007{bottom:348.413333pt;}
.y3d_c01007{bottom:351.346667pt;}
.y3c_c01007{bottom:353.880000pt;}
.y17_c01007{bottom:364.013333pt;}
.y16_c01007{bottom:381.346667pt;}
.y15_c01007{bottom:397.213333pt;}
.y3b_c01007{bottom:399.880000pt;}
.y14_c01007{bottom:413.213333pt;}
.y3a_c01007{bottom:415.480000pt;}
.y13_c01007{bottom:429.080000pt;}
.y39_c01007{bottom:432.280000pt;}
.y12_c01007{bottom:445.213333pt;}
.y38_c01007{bottom:448.280000pt;}
.y11_c01007{bottom:461.746667pt;}
.y37_c01007{bottom:464.146667pt;}
.y10_c01007{bottom:477.880000pt;}
.yf_c01007{bottom:494.413333pt;}
.y36_c01007{bottom:494.813333pt;}
.ye_c01007{bottom:509.746667pt;}
.yd_c01007{bottom:526.546667pt;}
.y35_c01007{bottom:527.213333pt;}
.yc_c01007{bottom:542.146667pt;}
.y34_c01007{bottom:543.346667pt;}
.yb_c01007{bottom:558.413333pt;}
.y33_c01007{bottom:559.880000pt;}
.ya_c01007{bottom:574.813333pt;}
.y32_c01007{bottom:576.013333pt;}
.y9_c01007{bottom:590.813333pt;}
.y31_c01007{bottom:591.613333pt;}
.y30_c01007{bottom:606.946667pt;}
.y8_c01007{bottom:607.213333pt;}
.y7_c01007{bottom:623.080000pt;}
.y2f_c01007{bottom:624.280000pt;}
.y6_c01007{bottom:639.613333pt;}
.y2e_c01007{bottom:640.813333pt;}
.y2d_c01007{bottom:655.213333pt;}
.y5_c01007{bottom:655.613333pt;}
.y2c_c01007{bottom:672.680000pt;}
.y4_c01007{bottom:672.946667pt;}
.y2b_c01007{bottom:686.680000pt;}
.y3_c01007{bottom:688.280000pt;}
.y2_c01007{bottom:705.080000pt;}
.y1_c01007{bottom:720.946667pt;}
.h9_c01007{height:11.733399pt;}
.ha_c01007{height:38.937500pt;}
.h5_c01007{height:50.304000pt;}
.h4_c01007{height:53.098667pt;}
.h3_c01007{height:55.893333pt;}
.h2_c01007{height:56.906667pt;}
.h7_c01007{height:62.597333pt;}
.h6_c01007{height:65.442667pt;}
.h8_c01007{height:128.040000pt;}
.h0_c01007{height:754.333333pt;}
.h1_c01007{height:754.666667pt;}
.w2_c01007{width:93.222667pt;}
.w1_c01007{width:515.333333pt;}
.w0_c01007{width:515.533333pt;}
.x0_c01007{left:0.000000pt;}
.x3_c01007{left:28.000000pt;}
.x6_c01007{left:78.000000pt;}
.x5_c01007{left:78.933333pt;}
.x4_c01007{left:80.800000pt;}
.x1_c01007{left:84.000000pt;}
.x2_c01007{left:85.600000pt;}
.x11_c01007{left:214.934896pt;}
.xf_c01007{left:275.200000pt;}
.xe_c01007{left:276.266667pt;}
.xd_c01007{left:277.200000pt;}
.x8_c01007{left:278.133333pt;}
.x7_c01007{left:279.333333pt;}
.xa_c01007{left:293.200000pt;}
.xc_c01007{left:298.266667pt;}
.xb_c01007{left:315.866667pt;}
.x9_c01007{left:345.600000pt;}
.x10_c01007{left:430.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_c01008 {
    display:none;
  }
  .loading-indicator_c01008.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01008 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01008 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01008" -> "#page-container .classname_c01008")
 */
.pf_c01008 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01008 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01008.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01008 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01008 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01008 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01008 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01008 {overflow:visible;}
  }
}
.c_c01008 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01008 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01008:after { /* webkit #35443 */
  content: '';
}
.t_c01008:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01008 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01008 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01008 { /* info for Javascript */
  display:none;
}
.l_c01008 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01008 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01008 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01008:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01008{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01008;src:url('chunks/assets/font_cbb70dcfb84afae745acbbde.woff2')format("woff");}.ff1_c01008{font-family:ff1_c01008;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01008;src:url('chunks/assets/font_39788c9c75842eead9635374.woff2')format("woff");}.ff2_c01008{font-family:ff2_c01008;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01008;src:url('chunks/assets/font_dddd0430c9db5f2b3d8255de.woff2')format("woff");}.ff3_c01008{font-family:ff3_c01008;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01008;src:url('chunks/assets/font_069014cd73ebf68da0bfc1d8.woff2')format("woff");}.ff4_c01008{font-family:ff4_c01008;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01008;src:url('chunks/assets/font_e3a2691ebe2f1bdfe1daf98a.woff2')format("woff");}.ff5_c01008{font-family:ff5_c01008;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_c01008;src:url('chunks/assets/font_0d4f5a23c6a230dfd3bc93a5.woff2')format("woff");}.ff6_c01008{font-family:ff6_c01008;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01008;src:url('chunks/assets/font_e9d4e1a890ab90904a9a36e8.woff2')format("woff");}.ff7_c01008{font-family:ff7_c01008;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c01008;src:url('chunks/assets/font_b97283099f14f3c740daa2e0.woff2')format("woff");}.ff8_c01008{font-family:ff8_c01008;line-height:1.012793;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c01008;src:url('chunks/assets/font_84dddb3b8bb5216f85c9ede0.woff2')format("woff");}.ff9_c01008{font-family:ff9_c01008;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c01008;src:url('chunks/assets/font_fb1639c49ff41d7ba5f83665.woff2')format("woff");}.ffa_c01008{font-family:ffa_c01008;line-height:1.575000;font-style:normal;font-weight: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_c01008;src:url('chunks/assets/font_10a7503667d990738d30eb94.woff2')format("woff");}.ffb_c01008{font-family:ffb_c01008;line-height:1.575000;font-style:normal;font-weight: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_c01008;src:url('chunks/assets/font_82762ff81c372a0d78d78270.woff2')format("woff");}.ffc_c01008{font-family:ffc_c01008;line-height:1.575000;font-style:normal;font-weight: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_c01008;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ffd_c01008{font-family:ffd_c01008;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01008{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01008{vertical-align:0.000000px;}
.ls6_c01008{letter-spacing:0.000000px;}
.ls5_c01008{letter-spacing:0.600000px;}
.ls1_c01008{letter-spacing:3.000000px;}
.ls8_c01008{letter-spacing:6.000000px;}
.ls3_c01008{letter-spacing:7.800000px;}
.ls7_c01008{letter-spacing:9.000000px;}
.ls2_c01008{letter-spacing:34.977000px;}
.ls0_c01008{letter-spacing:64.740000px;}
.ls4_c01008{letter-spacing:294.177000px;}
.sc__c01008{text-shadow:none;}
.sc0_c01008{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01008{-webkit-text-stroke:0px transparent;}
.sc0_c01008{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01008{word-spacing:-39.303000px;}
.ws6_c01008{word-spacing:-38.973000px;}
.ws4_c01008{word-spacing:-24.072000px;}
.ws8_c01008{word-spacing:-23.340000px;}
.ws5_c01008{word-spacing:-21.672000px;}
.ws2_c01008{word-spacing:-16.500000px;}
.ws9_c01008{word-spacing:-15.576000px;}
.ws7_c01008{word-spacing:-15.060000px;}
.ws0_c01008{word-spacing:-14.160000px;}
.ws3_c01008{word-spacing:-13.623000px;}
.wsa_c01008{word-spacing:0.000000px;}
._1c_c01008{margin-left:-22.368000px;}
._b_c01008{margin-left:-17.568000px;}
._15_c01008{margin-left:-15.783000px;}
._26_c01008{margin-left:-13.392000px;}
._16_c01008{margin-left:-11.448000px;}
._18_c01008{margin-left:-10.296000px;}
._17_c01008{margin-left:-8.784000px;}
._14_c01008{margin-left:-7.431000px;}
._19_c01008{margin-left:-6.417000px;}
._11_c01008{margin-left:-5.400000px;}
._10_c01008{margin-left:-4.212000px;}
._d_c01008{margin-left:-2.700000px;}
._5_c01008{margin-left:-1.080000px;}
._4_c01008{width:1.020000px;}
._e_c01008{width:2.364000px;}
._f_c01008{width:3.444000px;}
._2_c01008{width:4.980000px;}
._1_c01008{width:6.180000px;}
._0_c01008{width:7.980000px;}
._6_c01008{width:9.912000px;}
._3_c01008{width:11.400000px;}
._20_c01008{width:12.984000px;}
._8_c01008{width:14.976000px;}
._2a_c01008{width:16.260000px;}
._1e_c01008{width:17.580000px;}
._9_c01008{width:19.164000px;}
._21_c01008{width:20.778000px;}
._1f_c01008{width:21.966000px;}
._13_c01008{width:23.382000px;}
._23_c01008{width:25.314000px;}
._12_c01008{width:26.988000px;}
._25_c01008{width:28.638000px;}
._29_c01008{width:32.628000px;}
._24_c01008{width:34.032000px;}
._22_c01008{width:35.280000px;}
._27_c01008{width:38.280000px;}
._7_c01008{width:40.176000px;}
._1b_c01008{width:41.982000px;}
._1a_c01008{width:44.670000px;}
._28_c01008{width:48.492000px;}
._1d_c01008{width:52.464000px;}
._a_c01008{width:60.228000px;}
._2b_c01008{width:199.242000px;}
._c_c01008{width:314.688000px;}
.fc2_c01008{color:transparent;}
.fc1_c01008{color:rgb(128,128,128);}
.fc0_c01008{color:rgb(0,0,0);}
.fs8_c01008{font-size:48.000000px;}
.fs6_c01008{font-size:51.000000px;}
.fs5_c01008{font-size:54.000000px;}
.fs1_c01008{font-size:57.000000px;}
.fs0_c01008{font-size:60.000000px;}
.fs3_c01008{font-size:63.000000px;}
.fs7_c01008{font-size:66.000000px;}
.fs2_c01008{font-size:72.000000px;}
.fs4_c01008{font-size:93.000000px;}
.y0_c01008{bottom:0.000000px;}
.y5a_c01008{bottom:3.105000px;}
.y59_c01008{bottom:7.228363px;}
.y57_c01008{bottom:45.000000px;}
.y2c_c01008{bottom:62.100000px;}
.y56_c01008{bottom:65.550000px;}
.y2b_c01008{bottom:81.300000px;}
.y55_c01008{bottom:84.000000px;}
.y2a_c01008{bottom:99.900000px;}
.y58_c01008{bottom:102.300000px;}
.y54_c01008{bottom:102.600000px;}
.y29_c01008{bottom:118.200000px;}
.y53_c01008{bottom:120.150000px;}
.y28_c01008{bottom:136.050000px;}
.y52_c01008{bottom:138.000000px;}
.y27_c01008{bottom:154.650000px;}
.y51_c01008{bottom:156.000000px;}
.y26_c01008{bottom:173.100000px;}
.y50_c01008{bottom:174.450000px;}
.y25_c01008{bottom:190.650000px;}
.y4f_c01008{bottom:192.450000px;}
.y24_c01008{bottom:208.800000px;}
.y4e_c01008{bottom:210.900000px;}
.y23_c01008{bottom:226.950000px;}
.y4d_c01008{bottom:228.900000px;}
.y22_c01008{bottom:245.100000px;}
.y4c_c01008{bottom:246.450000px;}
.y21_c01008{bottom:263.250000px;}
.y4b_c01008{bottom:264.900000px;}
.y20_c01008{bottom:281.850000px;}
.y4a_c01008{bottom:282.900000px;}
.y1f_c01008{bottom:299.100000px;}
.y49_c01008{bottom:300.750000px;}
.y1e_c01008{bottom:316.950000px;}
.y48_c01008{bottom:318.300000px;}
.y1d_c01008{bottom:334.800000px;}
.y47_c01008{bottom:336.900000px;}
.y1c_c01008{bottom:353.100000px;}
.y46_c01008{bottom:355.350000px;}
.y1b_c01008{bottom:371.250000px;}
.y45_c01008{bottom:373.350000px;}
.y1a_c01008{bottom:389.250000px;}
.y44_c01008{bottom:391.500000px;}
.y19_c01008{bottom:407.100000px;}
.y43_c01008{bottom:409.500000px;}
.y18_c01008{bottom:425.250000px;}
.y42_c01008{bottom:427.350000px;}
.y17_c01008{bottom:443.250000px;}
.y41_c01008{bottom:445.500000px;}
.y2e_c01008{bottom:450.900000px;}
.y16_c01008{bottom:461.400000px;}
.y40_c01008{bottom:463.500000px;}
.y2d_c01008{bottom:470.250000px;}
.y15_c01008{bottom:479.250000px;}
.y3f_c01008{bottom:481.650000px;}
.y14_c01008{bottom:497.250000px;}
.y3e_c01008{bottom:500.250000px;}
.y13_c01008{bottom:515.100000px;}
.y3d_c01008{bottom:517.800000px;}
.y12_c01008{bottom:532.200000px;}
.y3c_c01008{bottom:535.650000px;}
.y11_c01008{bottom:549.750000px;}
.y3b_c01008{bottom:553.200000px;}
.y10_c01008{bottom:567.750000px;}
.y3a_c01008{bottom:571.350000px;}
.yf_c01008{bottom:585.900000px;}
.y39_c01008{bottom:589.350000px;}
.ye_c01008{bottom:603.750000px;}
.y38_c01008{bottom:607.500000px;}
.yd_c01008{bottom:621.750000px;}
.y37_c01008{bottom:625.500000px;}
.yc_c01008{bottom:639.900000px;}
.y36_c01008{bottom:643.350000px;}
.yb_c01008{bottom:657.900000px;}
.y35_c01008{bottom:661.950000px;}
.ya_c01008{bottom:675.750000px;}
.y34_c01008{bottom:679.500000px;}
.y9_c01008{bottom:694.200000px;}
.y33_c01008{bottom:697.650000px;}
.y8_c01008{bottom:712.500000px;}
.y32_c01008{bottom:715.800000px;}
.y7_c01008{bottom:730.650000px;}
.y31_c01008{bottom:734.100000px;}
.y6_c01008{bottom:748.350000px;}
.y30_c01008{bottom:752.700000px;}
.y2_c01008{bottom:762.750000px;}
.y5_c01008{bottom:766.800000px;}
.y2f_c01008{bottom:770.550000px;}
.y1_c01008{bottom:782.250000px;}
.y4_c01008{bottom:787.050000px;}
.y3_c01008{bottom:805.200000px;}
.hc_c01008{height:13.200074px;}
.hd_c01008{height:43.804688px;}
.h8_c01008{height:52.971680px;}
.h4_c01008{height:52.998047px;}
.h6_c01008{height:59.736000px;}
.h1_c01008{height:62.880000px;}
.ha_c01008{height:64.020000px;}
.h5_c01008{height:66.024000px;}
.h9_c01008{height:67.221000px;}
.hb_c01008{height:69.168000px;}
.h3_c01008{height:70.664062px;}
.h7_c01008{height:78.048000px;}
.h2_c01008{height:96.996094px;}
.h0_c01008{height:843.750000px;}
.w2_c01008{width:104.875500px;}
.w1_c01008{width:579.750000px;}
.w0_c01008{width:579.975000px;}
.x0_c01008{left:0.000000px;}
.x2_c01008{left:17.250000px;}
.x1_c01008{left:18.600000px;}
.x8_c01008{left:76.950000px;}
.x7_c01008{left:79.950000px;}
.x5_c01008{left:81.300000px;}
.x4_c01008{left:83.250000px;}
.x6_c01008{left:84.750000px;}
.x3_c01008{left:213.900000px;}
.x11_c01008{left:241.801758px;}
.xe_c01008{left:295.950000px;}
.xd_c01008{left:297.000000px;}
.xa_c01008{left:298.350000px;}
.xb_c01008{left:299.700000px;}
.xc_c01008{left:300.750000px;}
.xf_c01008{left:390.150000px;}
.x9_c01008{left:503.850000px;}
.x10_c01008{left:506.250000px;}
@media print{
.v0_c01008{vertical-align:0.000000pt;}
.ls6_c01008{letter-spacing:0.000000pt;}
.ls5_c01008{letter-spacing:0.533333pt;}
.ls1_c01008{letter-spacing:2.666667pt;}
.ls8_c01008{letter-spacing:5.333333pt;}
.ls3_c01008{letter-spacing:6.933333pt;}
.ls7_c01008{letter-spacing:8.000000pt;}
.ls2_c01008{letter-spacing:31.090667pt;}
.ls0_c01008{letter-spacing:57.546667pt;}
.ls4_c01008{letter-spacing:261.490667pt;}
.ws1_c01008{word-spacing:-34.936000pt;}
.ws6_c01008{word-spacing:-34.642667pt;}
.ws4_c01008{word-spacing:-21.397333pt;}
.ws8_c01008{word-spacing:-20.746667pt;}
.ws5_c01008{word-spacing:-19.264000pt;}
.ws2_c01008{word-spacing:-14.666667pt;}
.ws9_c01008{word-spacing:-13.845333pt;}
.ws7_c01008{word-spacing:-13.386667pt;}
.ws0_c01008{word-spacing:-12.586667pt;}
.ws3_c01008{word-spacing:-12.109333pt;}
.wsa_c01008{word-spacing:0.000000pt;}
._1c_c01008{margin-left:-19.882667pt;}
._b_c01008{margin-left:-15.616000pt;}
._15_c01008{margin-left:-14.029333pt;}
._26_c01008{margin-left:-11.904000pt;}
._16_c01008{margin-left:-10.176000pt;}
._18_c01008{margin-left:-9.152000pt;}
._17_c01008{margin-left:-7.808000pt;}
._14_c01008{margin-left:-6.605333pt;}
._19_c01008{margin-left:-5.704000pt;}
._11_c01008{margin-left:-4.800000pt;}
._10_c01008{margin-left:-3.744000pt;}
._d_c01008{margin-left:-2.400000pt;}
._5_c01008{margin-left:-0.960000pt;}
._4_c01008{width:0.906667pt;}
._e_c01008{width:2.101333pt;}
._f_c01008{width:3.061333pt;}
._2_c01008{width:4.426667pt;}
._1_c01008{width:5.493333pt;}
._0_c01008{width:7.093333pt;}
._6_c01008{width:8.810667pt;}
._3_c01008{width:10.133333pt;}
._20_c01008{width:11.541333pt;}
._8_c01008{width:13.312000pt;}
._2a_c01008{width:14.453333pt;}
._1e_c01008{width:15.626667pt;}
._9_c01008{width:17.034667pt;}
._21_c01008{width:18.469333pt;}
._1f_c01008{width:19.525333pt;}
._13_c01008{width:20.784000pt;}
._23_c01008{width:22.501333pt;}
._12_c01008{width:23.989333pt;}
._25_c01008{width:25.456000pt;}
._29_c01008{width:29.002667pt;}
._24_c01008{width:30.250667pt;}
._22_c01008{width:31.360000pt;}
._27_c01008{width:34.026667pt;}
._7_c01008{width:35.712000pt;}
._1b_c01008{width:37.317333pt;}
._1a_c01008{width:39.706667pt;}
._28_c01008{width:43.104000pt;}
._1d_c01008{width:46.634667pt;}
._a_c01008{width:53.536000pt;}
._2b_c01008{width:177.104000pt;}
._c_c01008{width:279.722667pt;}
.fs8_c01008{font-size:42.666667pt;}
.fs6_c01008{font-size:45.333333pt;}
.fs5_c01008{font-size:48.000000pt;}
.fs1_c01008{font-size:50.666667pt;}
.fs0_c01008{font-size:53.333333pt;}
.fs3_c01008{font-size:56.000000pt;}
.fs7_c01008{font-size:58.666667pt;}
.fs2_c01008{font-size:64.000000pt;}
.fs4_c01008{font-size:82.666667pt;}
.y0_c01008{bottom:0.000000pt;}
.y5a_c01008{bottom:2.760000pt;}
.y59_c01008{bottom:6.425212pt;}
.y57_c01008{bottom:40.000000pt;}
.y2c_c01008{bottom:55.200000pt;}
.y56_c01008{bottom:58.266667pt;}
.y2b_c01008{bottom:72.266667pt;}
.y55_c01008{bottom:74.666667pt;}
.y2a_c01008{bottom:88.800000pt;}
.y58_c01008{bottom:90.933333pt;}
.y54_c01008{bottom:91.200000pt;}
.y29_c01008{bottom:105.066667pt;}
.y53_c01008{bottom:106.800000pt;}
.y28_c01008{bottom:120.933333pt;}
.y52_c01008{bottom:122.666667pt;}
.y27_c01008{bottom:137.466667pt;}
.y51_c01008{bottom:138.666667pt;}
.y26_c01008{bottom:153.866667pt;}
.y50_c01008{bottom:155.066667pt;}
.y25_c01008{bottom:169.466667pt;}
.y4f_c01008{bottom:171.066667pt;}
.y24_c01008{bottom:185.600000pt;}
.y4e_c01008{bottom:187.466667pt;}
.y23_c01008{bottom:201.733333pt;}
.y4d_c01008{bottom:203.466667pt;}
.y22_c01008{bottom:217.866667pt;}
.y4c_c01008{bottom:219.066667pt;}
.y21_c01008{bottom:234.000000pt;}
.y4b_c01008{bottom:235.466667pt;}
.y20_c01008{bottom:250.533333pt;}
.y4a_c01008{bottom:251.466667pt;}
.y1f_c01008{bottom:265.866667pt;}
.y49_c01008{bottom:267.333333pt;}
.y1e_c01008{bottom:281.733333pt;}
.y48_c01008{bottom:282.933333pt;}
.y1d_c01008{bottom:297.600000pt;}
.y47_c01008{bottom:299.466667pt;}
.y1c_c01008{bottom:313.866667pt;}
.y46_c01008{bottom:315.866667pt;}
.y1b_c01008{bottom:330.000000pt;}
.y45_c01008{bottom:331.866667pt;}
.y1a_c01008{bottom:346.000000pt;}
.y44_c01008{bottom:348.000000pt;}
.y19_c01008{bottom:361.866667pt;}
.y43_c01008{bottom:364.000000pt;}
.y18_c01008{bottom:378.000000pt;}
.y42_c01008{bottom:379.866667pt;}
.y17_c01008{bottom:394.000000pt;}
.y41_c01008{bottom:396.000000pt;}
.y2e_c01008{bottom:400.800000pt;}
.y16_c01008{bottom:410.133333pt;}
.y40_c01008{bottom:412.000000pt;}
.y2d_c01008{bottom:418.000000pt;}
.y15_c01008{bottom:426.000000pt;}
.y3f_c01008{bottom:428.133333pt;}
.y14_c01008{bottom:442.000000pt;}
.y3e_c01008{bottom:444.666667pt;}
.y13_c01008{bottom:457.866667pt;}
.y3d_c01008{bottom:460.266667pt;}
.y12_c01008{bottom:473.066667pt;}
.y3c_c01008{bottom:476.133333pt;}
.y11_c01008{bottom:488.666667pt;}
.y3b_c01008{bottom:491.733333pt;}
.y10_c01008{bottom:504.666667pt;}
.y3a_c01008{bottom:507.866667pt;}
.yf_c01008{bottom:520.800000pt;}
.y39_c01008{bottom:523.866667pt;}
.ye_c01008{bottom:536.666667pt;}
.y38_c01008{bottom:540.000000pt;}
.yd_c01008{bottom:552.666667pt;}
.y37_c01008{bottom:556.000000pt;}
.yc_c01008{bottom:568.800000pt;}
.y36_c01008{bottom:571.866667pt;}
.yb_c01008{bottom:584.800000pt;}
.y35_c01008{bottom:588.400000pt;}
.ya_c01008{bottom:600.666667pt;}
.y34_c01008{bottom:604.000000pt;}
.y9_c01008{bottom:617.066667pt;}
.y33_c01008{bottom:620.133333pt;}
.y8_c01008{bottom:633.333333pt;}
.y32_c01008{bottom:636.266667pt;}
.y7_c01008{bottom:649.466667pt;}
.y31_c01008{bottom:652.533333pt;}
.y6_c01008{bottom:665.200000pt;}
.y30_c01008{bottom:669.066667pt;}
.y2_c01008{bottom:678.000000pt;}
.y5_c01008{bottom:681.600000pt;}
.y2f_c01008{bottom:684.933333pt;}
.y1_c01008{bottom:695.333333pt;}
.y4_c01008{bottom:699.600000pt;}
.y3_c01008{bottom:715.733333pt;}
.hc_c01008{height:11.733399pt;}
.hd_c01008{height:38.937500pt;}
.h8_c01008{height:47.085938pt;}
.h4_c01008{height:47.109375pt;}
.h6_c01008{height:53.098667pt;}
.h1_c01008{height:55.893333pt;}
.ha_c01008{height:56.906667pt;}
.h5_c01008{height:58.688000pt;}
.h9_c01008{height:59.752000pt;}
.hb_c01008{height:61.482667pt;}
.h3_c01008{height:62.812500pt;}
.h7_c01008{height:69.376000pt;}
.h2_c01008{height:86.218750pt;}
.h0_c01008{height:750.000000pt;}
.w2_c01008{width:93.222667pt;}
.w1_c01008{width:515.333333pt;}
.w0_c01008{width:515.533333pt;}
.x0_c01008{left:0.000000pt;}
.x2_c01008{left:15.333333pt;}
.x1_c01008{left:16.533333pt;}
.x8_c01008{left:68.400000pt;}
.x7_c01008{left:71.066667pt;}
.x5_c01008{left:72.266667pt;}
.x4_c01008{left:74.000000pt;}
.x6_c01008{left:75.333333pt;}
.x3_c01008{left:190.133333pt;}
.x11_c01008{left:214.934896pt;}
.xe_c01008{left:263.066667pt;}
.xd_c01008{left:264.000000pt;}
.xa_c01008{left:265.200000pt;}
.xb_c01008{left:266.400000pt;}
.xc_c01008{left:267.333333pt;}
.xf_c01008{left:346.800000pt;}
.x9_c01008{left:447.866667pt;}
.x10_c01008{left:450.000000pt;}
}





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

.ir_c01009:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01009{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01009;src:url('chunks/assets/font_b68bd46724a31e388ad19ff2.woff2')format("woff");}.ff1_c01009{font-family:ff1_c01009;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01009;src:url('chunks/assets/font_128e4a9d770d5d423421c424.woff2')format("woff");}.ff2_c01009{font-family:ff2_c01009;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01009;src:url('chunks/assets/font_d3beba0a14e81a020d2effe2.woff2')format("woff");}.ff3_c01009{font-family:ff3_c01009;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01009;src:url('chunks/assets/font_d901052842ad80d369be44a8.woff2')format("woff");}.ff4_c01009{font-family:ff4_c01009;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01009;src:url('chunks/assets/font_90ef74123e1cbf05ee481cb4.woff2')format("woff");}.ff5_c01009{font-family:ff5_c01009;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01009;src:url('chunks/assets/font_896b2b9fcebdbece3d932a4a.woff2')format("woff");}.ff6_c01009{font-family:ff6_c01009;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01009;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff7_c01009{font-family:ff7_c01009;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01009{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01009{vertical-align:0.000000px;}
.v1_c01009{vertical-align:67.200000px;}
.ls2_c01009{letter-spacing:0.000000px;}
.ls3_c01009{letter-spacing:3.000000px;}
.ls4_c01009{letter-spacing:6.000000px;}
.ls1_c01009{letter-spacing:11.460000px;}
.ls0_c01009{letter-spacing:17.646000px;}
.sc__c01009{text-shadow:none;}
.sc0_c01009{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01009{-webkit-text-stroke:0px transparent;}
.sc0_c01009{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c01009{word-spacing:-37.650000px;}
.ws5_c01009{word-spacing:-35.295000px;}
.ws4_c01009{word-spacing:-23.760000px;}
.ws6_c01009{word-spacing:-15.060000px;}
.ws3_c01009{word-spacing:-14.160000px;}
.ws1_c01009{word-spacing:-13.452000px;}
.ws0_c01009{word-spacing:-12.744000px;}
.ws8_c01009{word-spacing:0.000000px;}
.ws2_c01009{word-spacing:4.050000px;}
._10_c01009{margin-left:-35.151000px;}
._2a_c01009{margin-left:-19.356000px;}
._11_c01009{margin-left:-17.760000px;}
._25_c01009{margin-left:-14.142000px;}
._12_c01009{margin-left:-10.089000px;}
._13_c01009{margin-left:-7.980000px;}
._1a_c01009{margin-left:-5.925000px;}
._14_c01009{margin-left:-4.329000px;}
._d_c01009{margin-left:-3.249000px;}
._e_c01009{margin-left:-1.596000px;}
._4_c01009{width:1.296000px;}
._2_c01009{width:2.322000px;}
._1_c01009{width:3.618000px;}
._5_c01009{width:4.644000px;}
._0_c01009{width:5.886000px;}
._28_c01009{width:6.894000px;}
._8_c01009{width:7.938000px;}
._18_c01009{width:9.240000px;}
._f_c01009{width:10.962000px;}
._15_c01009{width:12.318000px;}
._19_c01009{width:13.776000px;}
._b_c01009{width:15.660000px;}
._1b_c01009{width:17.115000px;}
._17_c01009{width:19.329000px;}
._7_c01009{width:21.114000px;}
._22_c01009{width:23.460000px;}
._26_c01009{width:24.567000px;}
._16_c01009{width:26.412000px;}
._24_c01009{width:27.990000px;}
._1c_c01009{width:29.394000px;}
._1d_c01009{width:32.040000px;}
._1f_c01009{width:33.606000px;}
._21_c01009{width:35.352000px;}
._20_c01009{width:36.714000px;}
._6_c01009{width:38.070000px;}
._27_c01009{width:40.077000px;}
._9_c01009{width:42.606000px;}
._a_c01009{width:50.436000px;}
._c_c01009{width:63.585000px;}
._29_c01009{width:90.144000px;}
._1e_c01009{width:117.792000px;}
._3_c01009{width:146.880000px;}
._23_c01009{width:293.220000px;}
.fc2_c01009{color:transparent;}
.fc1_c01009{color:rgb(128,128,128);}
.fc0_c01009{color:rgb(0,0,0);}
.fs5_c01009{font-size:42.000000px;}
.fs7_c01009{font-size:45.000000px;}
.fs6_c01009{font-size:48.000000px;}
.fs0_c01009{font-size:54.000000px;}
.fs2_c01009{font-size:57.000000px;}
.fs1_c01009{font-size:60.000000px;}
.fs4_c01009{font-size:75.000000px;}
.fs8_c01009{font-size:150.000000px;}
.fs3_c01009{font-size:195.000000px;}
.y0_c01009{bottom:0.000000px;}
.y50_c01009{bottom:3.105000px;}
.y4f_c01009{bottom:7.228371px;}
.y4e_c01009{bottom:36.165000px;}
.y4d_c01009{bottom:55.665000px;}
.y2f_c01009{bottom:56.115000px;}
.y2e_c01009{bottom:73.965000px;}
.y4c_c01009{bottom:74.715000px;}
.y2d_c01009{bottom:92.565000px;}
.y4b_c01009{bottom:93.615000px;}
.y2c_c01009{bottom:111.165000px;}
.y4a_c01009{bottom:112.065000px;}
.y2b_c01009{bottom:129.465000px;}
.y49_c01009{bottom:129.915000px;}
.y2a_c01009{bottom:147.915000px;}
.y48_c01009{bottom:148.215000px;}
.y29_c01009{bottom:166.365000px;}
.y47_c01009{bottom:166.815000px;}
.y28_c01009{bottom:184.665000px;}
.y46_c01009{bottom:185.715000px;}
.y27_c01009{bottom:203.565000px;}
.y45_c01009{bottom:204.315000px;}
.y26_c01009{bottom:221.865000px;}
.y44_c01009{bottom:222.765000px;}
.y25_c01009{bottom:240.615000px;}
.y43_c01009{bottom:241.065000px;}
.y24_c01009{bottom:258.915000px;}
.y42_c01009{bottom:259.515000px;}
.y23_c01009{bottom:277.065000px;}
.y41_c01009{bottom:277.515000px;}
.y22_c01009{bottom:295.065000px;}
.y40_c01009{bottom:295.365000px;}
.y21_c01009{bottom:313.215000px;}
.y3f_c01009{bottom:313.515000px;}
.y20_c01009{bottom:331.215000px;}
.y3e_c01009{bottom:332.115000px;}
.y1f_c01009{bottom:349.665000px;}
.y1e_c01009{bottom:367.965000px;}
.y3d_c01009{bottom:368.565000px;}
.y1d_c01009{bottom:386.115000px;}
.y3c_c01009{bottom:386.415000px;}
.y1c_c01009{bottom:404.415000px;}
.y3b_c01009{bottom:405.015000px;}
.y1b_c01009{bottom:422.865000px;}
.y3a_c01009{bottom:423.315000px;}
.y39_c01009{bottom:440.865000px;}
.y1a_c01009{bottom:441.165000px;}
.y19_c01009{bottom:459.315000px;}
.y38_c01009{bottom:459.615000px;}
.y18_c01009{bottom:477.315000px;}
.y37_c01009{bottom:478.215000px;}
.y17_c01009{bottom:495.765000px;}
.y36_c01009{bottom:496.815000px;}
.y16_c01009{bottom:513.765000px;}
.y35_c01009{bottom:515.115000px;}
.y15_c01009{bottom:531.915000px;}
.y34_c01009{bottom:533.265000px;}
.y14_c01009{bottom:549.915000px;}
.y33_c01009{bottom:568.365000px;}
.y13_c01009{bottom:568.665000px;}
.y12_c01009{bottom:586.215000px;}
.y32_c01009{bottom:587.715000px;}
.y11_c01009{bottom:604.815000px;}
.y31_c01009{bottom:605.865000px;}
.y30_c01009{bottom:607.365000px;}
.y10_c01009{bottom:623.115000px;}
.y9_c01009{bottom:641.265000px;}
.y8_c01009{bottom:659.115000px;}
.yf_c01009{bottom:660.165000px;}
.y7_c01009{bottom:677.415000px;}
.ye_c01009{bottom:678.765000px;}
.y6_c01009{bottom:696.015000px;}
.yd_c01009{bottom:697.365000px;}
.y5_c01009{bottom:714.465000px;}
.yc_c01009{bottom:715.515000px;}
.y4_c01009{bottom:733.065000px;}
.yb_c01009{bottom:734.115000px;}
.y3_c01009{bottom:750.915000px;}
.ya_c01009{bottom:768.915000px;}
.y2_c01009{bottom:769.515000px;}
.y1_c01009{bottom:787.365000px;}
.h8_c01009{height:13.200074px;}
.h9_c01009{height:43.804688px;}
.h2_c01009{height:56.592000px;}
.h6_c01009{height:59.736000px;}
.h3_c01009{height:62.880000px;}
.h5_c01009{height:78.600000px;}
.h7_c01009{height:157.200000px;}
.h4_c01009{height:204.360000px;}
.h0_c01009{height:848.625000px;}
.h1_c01009{height:849.000000px;}
.w2_c01009{width:104.875500px;}
.w1_c01009{width:579.750000px;}
.w0_c01009{width:579.975000px;}
.x0_c01009{left:0.000000px;}
.x1_c01009{left:98.250000px;}
.x2_c01009{left:99.600000px;}
.x3_c01009{left:100.650000px;}
.xa_c01009{left:101.700000px;}
.xb_c01009{left:103.050000px;}
.x11_c01009{left:241.801758px;}
.x6_c01009{left:317.550000px;}
.xe_c01009{left:320.250000px;}
.xf_c01009{left:321.300000px;}
.xc_c01009{left:322.650000px;}
.x7_c01009{left:331.500000px;}
.x8_c01009{left:348.000000px;}
.x5_c01009{left:349.950000px;}
.xd_c01009{left:355.350000px;}
.x9_c01009{left:390.150000px;}
.x4_c01009{left:396.600000px;}
.x10_c01009{left:504.300000px;}
@media print{
.v0_c01009{vertical-align:0.000000pt;}
.v1_c01009{vertical-align:59.733333pt;}
.ls2_c01009{letter-spacing:0.000000pt;}
.ls3_c01009{letter-spacing:2.666667pt;}
.ls4_c01009{letter-spacing:5.333333pt;}
.ls1_c01009{letter-spacing:10.186667pt;}
.ls0_c01009{letter-spacing:15.685333pt;}
.ws7_c01009{word-spacing:-33.466667pt;}
.ws5_c01009{word-spacing:-31.373333pt;}
.ws4_c01009{word-spacing:-21.120000pt;}
.ws6_c01009{word-spacing:-13.386667pt;}
.ws3_c01009{word-spacing:-12.586667pt;}
.ws1_c01009{word-spacing:-11.957333pt;}
.ws0_c01009{word-spacing:-11.328000pt;}
.ws8_c01009{word-spacing:0.000000pt;}
.ws2_c01009{word-spacing:3.600000pt;}
._10_c01009{margin-left:-31.245333pt;}
._2a_c01009{margin-left:-17.205333pt;}
._11_c01009{margin-left:-15.786667pt;}
._25_c01009{margin-left:-12.570667pt;}
._12_c01009{margin-left:-8.968000pt;}
._13_c01009{margin-left:-7.093333pt;}
._1a_c01009{margin-left:-5.266667pt;}
._14_c01009{margin-left:-3.848000pt;}
._d_c01009{margin-left:-2.888000pt;}
._e_c01009{margin-left:-1.418667pt;}
._4_c01009{width:1.152000pt;}
._2_c01009{width:2.064000pt;}
._1_c01009{width:3.216000pt;}
._5_c01009{width:4.128000pt;}
._0_c01009{width:5.232000pt;}
._28_c01009{width:6.128000pt;}
._8_c01009{width:7.056000pt;}
._18_c01009{width:8.213333pt;}
._f_c01009{width:9.744000pt;}
._15_c01009{width:10.949333pt;}
._19_c01009{width:12.245333pt;}
._b_c01009{width:13.920000pt;}
._1b_c01009{width:15.213333pt;}
._17_c01009{width:17.181333pt;}
._7_c01009{width:18.768000pt;}
._22_c01009{width:20.853333pt;}
._26_c01009{width:21.837333pt;}
._16_c01009{width:23.477333pt;}
._24_c01009{width:24.880000pt;}
._1c_c01009{width:26.128000pt;}
._1d_c01009{width:28.480000pt;}
._1f_c01009{width:29.872000pt;}
._21_c01009{width:31.424000pt;}
._20_c01009{width:32.634667pt;}
._6_c01009{width:33.840000pt;}
._27_c01009{width:35.624000pt;}
._9_c01009{width:37.872000pt;}
._a_c01009{width:44.832000pt;}
._c_c01009{width:56.520000pt;}
._29_c01009{width:80.128000pt;}
._1e_c01009{width:104.704000pt;}
._3_c01009{width:130.560000pt;}
._23_c01009{width:260.640000pt;}
.fs5_c01009{font-size:37.333333pt;}
.fs7_c01009{font-size:40.000000pt;}
.fs6_c01009{font-size:42.666667pt;}
.fs0_c01009{font-size:48.000000pt;}
.fs2_c01009{font-size:50.666667pt;}
.fs1_c01009{font-size:53.333333pt;}
.fs4_c01009{font-size:66.666667pt;}
.fs8_c01009{font-size:133.333333pt;}
.fs3_c01009{font-size:173.333333pt;}
.y0_c01009{bottom:0.000000pt;}
.y50_c01009{bottom:2.760000pt;}
.y4f_c01009{bottom:6.425219pt;}
.y4e_c01009{bottom:32.146667pt;}
.y4d_c01009{bottom:49.480000pt;}
.y2f_c01009{bottom:49.880000pt;}
.y2e_c01009{bottom:65.746667pt;}
.y4c_c01009{bottom:66.413333pt;}
.y2d_c01009{bottom:82.280000pt;}
.y4b_c01009{bottom:83.213333pt;}
.y2c_c01009{bottom:98.813333pt;}
.y4a_c01009{bottom:99.613333pt;}
.y2b_c01009{bottom:115.080000pt;}
.y49_c01009{bottom:115.480000pt;}
.y2a_c01009{bottom:131.480000pt;}
.y48_c01009{bottom:131.746667pt;}
.y29_c01009{bottom:147.880000pt;}
.y47_c01009{bottom:148.280000pt;}
.y28_c01009{bottom:164.146667pt;}
.y46_c01009{bottom:165.080000pt;}
.y27_c01009{bottom:180.946667pt;}
.y45_c01009{bottom:181.613333pt;}
.y26_c01009{bottom:197.213333pt;}
.y44_c01009{bottom:198.013333pt;}
.y25_c01009{bottom:213.880000pt;}
.y43_c01009{bottom:214.280000pt;}
.y24_c01009{bottom:230.146667pt;}
.y42_c01009{bottom:230.680000pt;}
.y23_c01009{bottom:246.280000pt;}
.y41_c01009{bottom:246.680000pt;}
.y22_c01009{bottom:262.280000pt;}
.y40_c01009{bottom:262.546667pt;}
.y21_c01009{bottom:278.413333pt;}
.y3f_c01009{bottom:278.680000pt;}
.y20_c01009{bottom:294.413333pt;}
.y3e_c01009{bottom:295.213333pt;}
.y1f_c01009{bottom:310.813333pt;}
.y1e_c01009{bottom:327.080000pt;}
.y3d_c01009{bottom:327.613333pt;}
.y1d_c01009{bottom:343.213333pt;}
.y3c_c01009{bottom:343.480000pt;}
.y1c_c01009{bottom:359.480000pt;}
.y3b_c01009{bottom:360.013333pt;}
.y1b_c01009{bottom:375.880000pt;}
.y3a_c01009{bottom:376.280000pt;}
.y39_c01009{bottom:391.880000pt;}
.y1a_c01009{bottom:392.146667pt;}
.y19_c01009{bottom:408.280000pt;}
.y38_c01009{bottom:408.546667pt;}
.y18_c01009{bottom:424.280000pt;}
.y37_c01009{bottom:425.080000pt;}
.y17_c01009{bottom:440.680000pt;}
.y36_c01009{bottom:441.613333pt;}
.y16_c01009{bottom:456.680000pt;}
.y35_c01009{bottom:457.880000pt;}
.y15_c01009{bottom:472.813333pt;}
.y34_c01009{bottom:474.013333pt;}
.y14_c01009{bottom:488.813333pt;}
.y33_c01009{bottom:505.213333pt;}
.y13_c01009{bottom:505.480000pt;}
.y12_c01009{bottom:521.080000pt;}
.y32_c01009{bottom:522.413333pt;}
.y11_c01009{bottom:537.613333pt;}
.y31_c01009{bottom:538.546667pt;}
.y30_c01009{bottom:539.880000pt;}
.y10_c01009{bottom:553.880000pt;}
.y9_c01009{bottom:570.013333pt;}
.y8_c01009{bottom:585.880000pt;}
.yf_c01009{bottom:586.813333pt;}
.y7_c01009{bottom:602.146667pt;}
.ye_c01009{bottom:603.346667pt;}
.y6_c01009{bottom:618.680000pt;}
.yd_c01009{bottom:619.880000pt;}
.y5_c01009{bottom:635.080000pt;}
.yc_c01009{bottom:636.013333pt;}
.y4_c01009{bottom:651.613333pt;}
.yb_c01009{bottom:652.546667pt;}
.y3_c01009{bottom:667.480000pt;}
.ya_c01009{bottom:683.480000pt;}
.y2_c01009{bottom:684.013333pt;}
.y1_c01009{bottom:699.880000pt;}
.h8_c01009{height:11.733399pt;}
.h9_c01009{height:38.937500pt;}
.h2_c01009{height:50.304000pt;}
.h6_c01009{height:53.098667pt;}
.h3_c01009{height:55.893333pt;}
.h5_c01009{height:69.866667pt;}
.h7_c01009{height:139.733333pt;}
.h4_c01009{height:181.653333pt;}
.h0_c01009{height:754.333333pt;}
.h1_c01009{height:754.666667pt;}
.w2_c01009{width:93.222667pt;}
.w1_c01009{width:515.333333pt;}
.w0_c01009{width:515.533333pt;}
.x0_c01009{left:0.000000pt;}
.x1_c01009{left:87.333333pt;}
.x2_c01009{left:88.533333pt;}
.x3_c01009{left:89.466667pt;}
.xa_c01009{left:90.400000pt;}
.xb_c01009{left:91.600000pt;}
.x11_c01009{left:214.934896pt;}
.x6_c01009{left:282.266667pt;}
.xe_c01009{left:284.666667pt;}
.xf_c01009{left:285.600000pt;}
.xc_c01009{left:286.800000pt;}
.x7_c01009{left:294.666667pt;}
.x8_c01009{left:309.333333pt;}
.x5_c01009{left:311.066667pt;}
.xd_c01009{left:315.866667pt;}
.x9_c01009{left:346.800000pt;}
.x4_c01009{left:352.533333pt;}
.x10_c01009{left:448.266667pt;}
}





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

.ir_c01010:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01010{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01010;src:url('chunks/assets/font_d788a68c7927d37b37c50b6f.woff2')format("woff");}.ff1_c01010{font-family:ff1_c01010;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01010;src:url('chunks/assets/font_959e70e4ab192858faf473a3.woff2')format("woff");}.ff2_c01010{font-family:ff2_c01010;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01010;src:url('chunks/assets/font_931b34d9e819da5515a1c86a.woff2')format("woff");}.ff3_c01010{font-family:ff3_c01010;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01010;src:url('chunks/assets/font_045171ff5e53bbac29890336.woff2')format("woff");}.ff4_c01010{font-family:ff4_c01010;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01010;src:url('chunks/assets/font_e70cc1daeb2ff0484d6cd600.woff2')format("woff");}.ff5_c01010{font-family:ff5_c01010;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01010;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff6_c01010{font-family:ff6_c01010;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01010{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01010{vertical-align:0.000000px;}
.ls3_c01010{letter-spacing:-6.000000px;}
.ls0_c01010{letter-spacing:0.000000px;}
.ls2_c01010{letter-spacing:6.000000px;}
.ls1_c01010{letter-spacing:9.000000px;}
.sc__c01010{text-shadow:none;}
.sc0_c01010{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01010{-webkit-text-stroke:0px transparent;}
.sc0_c01010{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c01010{word-spacing:-29.424000px;}
.ws2_c01010{word-spacing:-21.744000px;}
.ws5_c01010{word-spacing:-15.060000px;}
.ws0_c01010{word-spacing:-14.160000px;}
.ws1_c01010{word-spacing:-12.744000px;}
.ws4_c01010{word-spacing:-5.904000px;}
.ws6_c01010{word-spacing:0.000000px;}
._29_c01010{margin-left:-15.438000px;}
._20_c01010{margin-left:-13.446000px;}
._30_c01010{margin-left:-11.940000px;}
._1e_c01010{margin-left:-10.440000px;}
._12_c01010{margin-left:-9.000000px;}
._25_c01010{margin-left:-7.704000px;}
._19_c01010{margin-left:-6.534000px;}
._c_c01010{margin-left:-4.560000px;}
._8_c01010{margin-left:-2.640000px;}
._7_c01010{margin-left:-1.320000px;}
._2_c01010{width:1.500000px;}
._5_c01010{width:3.120000px;}
._0_c01010{width:4.140000px;}
._4_c01010{width:6.000000px;}
._1_c01010{width:7.380000px;}
._f_c01010{width:8.472000px;}
._b_c01010{width:10.140000px;}
._6_c01010{width:11.340000px;}
._3_c01010{width:12.720000px;}
._a_c01010{width:14.040000px;}
._1a_c01010{width:15.126000px;}
._13_c01010{width:16.188000px;}
._10_c01010{width:18.024000px;}
._17_c01010{width:19.212000px;}
._11_c01010{width:20.544000px;}
._e_c01010{width:22.332000px;}
._15_c01010{width:24.114000px;}
._22_c01010{width:25.680000px;}
._28_c01010{width:27.162000px;}
._d_c01010{width:28.440000px;}
._23_c01010{width:30.060000px;}
._27_c01010{width:32.304000px;}
._1c_c01010{width:34.200000px;}
._21_c01010{width:35.916000px;}
._1d_c01010{width:38.040000px;}
._16_c01010{width:40.224000px;}
._14_c01010{width:43.038000px;}
._1b_c01010{width:46.200000px;}
._24_c01010{width:48.444000px;}
._1f_c01010{width:54.540000px;}
._9_c01010{width:61.740000px;}
._2c_c01010{width:74.778000px;}
._2d_c01010{width:76.920000px;}
._2a_c01010{width:105.780000px;}
._18_c01010{width:139.368000px;}
._26_c01010{width:150.660000px;}
._2f_c01010{width:192.945000px;}
._2b_c01010{width:196.350000px;}
._2e_c01010{width:215.460000px;}
.fc2_c01010{color:transparent;}
.fc1_c01010{color:rgb(128,128,128);}
.fc0_c01010{color:rgb(0,0,0);}
.fs2_c01010{font-size:48.000000px;}
.fs1_c01010{font-size:54.000000px;}
.fs0_c01010{font-size:60.000000px;}
.fs3_c01010{font-size:75.000000px;}
.fs4_c01010{font-size:117.000000px;}
.y0_c01010{bottom:0.000000px;}
.y51_c01010{bottom:3.105000px;}
.y50_c01010{bottom:7.228355px;}
.y4f_c01010{bottom:36.435000px;}
.y29_c01010{bottom:53.535000px;}
.y4e_c01010{bottom:55.035000px;}
.y28_c01010{bottom:72.885000px;}
.y4d_c01010{bottom:73.935000px;}
.y27_c01010{bottom:91.035000px;}
.y4c_c01010{bottom:91.785000px;}
.y26_c01010{bottom:109.335000px;}
.y4b_c01010{bottom:109.935000px;}
.y25_c01010{bottom:127.485000px;}
.y4a_c01010{bottom:128.235000px;}
.y24_c01010{bottom:146.085000px;}
.y23_c01010{bottom:163.935000px;}
.y49_c01010{bottom:164.235000px;}
.y22_c01010{bottom:182.235000px;}
.y48_c01010{bottom:182.835000px;}
.y21_c01010{bottom:200.685000px;}
.y20_c01010{bottom:218.385000px;}
.y47_c01010{bottom:218.685000px;}
.y1f_c01010{bottom:236.835000px;}
.y1e_c01010{bottom:255.135000px;}
.y46_c01010{bottom:256.185000px;}
.y45_c01010{bottom:272.985000px;}
.y1d_c01010{bottom:273.285000px;}
.y44_c01010{bottom:290.835000px;}
.y1c_c01010{bottom:291.285000px;}
.y1b_c01010{bottom:308.685000px;}
.y43_c01010{bottom:309.435000px;}
.y1a_c01010{bottom:326.685000px;}
.y42_c01010{bottom:327.585000px;}
.y19_c01010{bottom:345.135000px;}
.y41_c01010{bottom:346.185000px;}
.y18_c01010{bottom:363.435000px;}
.y40_c01010{bottom:364.185000px;}
.y17_c01010{bottom:381.285000px;}
.y3f_c01010{bottom:382.635000px;}
.y16_c01010{bottom:399.135000px;}
.y3e_c01010{bottom:400.635000px;}
.y3d_c01010{bottom:416.685000px;}
.y15_c01010{bottom:418.185000px;}
.y3c_c01010{bottom:435.285000px;}
.y14_c01010{bottom:436.035000px;}
.y13_c01010{bottom:453.585000px;}
.y3b_c01010{bottom:453.885000px;}
.y3a_c01010{bottom:471.735000px;}
.y12_c01010{bottom:472.485000px;}
.y11_c01010{bottom:490.035000px;}
.y39_c01010{bottom:507.135000px;}
.y10_c01010{bottom:507.885000px;}
.yf_c01010{bottom:525.135000px;}
.y38_c01010{bottom:526.185000px;}
.ye_c01010{bottom:541.935000px;}
.y37_c01010{bottom:542.385000px;}
.y36_c01010{bottom:560.835000px;}
.yd_c01010{bottom:561.285000px;}
.y35_c01010{bottom:578.385000px;}
.yc_c01010{bottom:579.735000px;}
.yb_c01010{bottom:596.985000px;}
.y34_c01010{bottom:597.735000px;}
.ya_c01010{bottom:615.585000px;}
.y33_c01010{bottom:615.885000px;}
.y9_c01010{bottom:633.435000px;}
.y32_c01010{bottom:634.185000px;}
.y8_c01010{bottom:650.985000px;}
.y31_c01010{bottom:653.385000px;}
.y7_c01010{bottom:669.285000px;}
.y30_c01010{bottom:670.635000px;}
.y6_c01010{bottom:687.435000px;}
.y2f_c01010{bottom:688.785000px;}
.y5_c01010{bottom:705.585000px;}
.y2e_c01010{bottom:709.635000px;}
.y4_c01010{bottom:723.585000px;}
.y2d_c01010{bottom:731.985000px;}
.y3_c01010{bottom:741.435000px;}
.y2c_c01010{bottom:746.535000px;}
.y2_c01010{bottom:760.035000px;}
.y2b_c01010{bottom:765.735000px;}
.y1_c01010{bottom:778.485000px;}
.y2a_c01010{bottom:784.335000px;}
.h6_c01010{height:13.200074px;}
.h7_c01010{height:43.804688px;}
.h4_c01010{height:50.304000px;}
.h3_c01010{height:56.592000px;}
.h2_c01010{height:62.880000px;}
.h5_c01010{height:124.839000px;}
.h0_c01010{height:832.125000px;}
.h1_c01010{height:832.500000px;}
.w2_c01010{width:104.875500px;}
.w0_c01010{width:571.875000px;}
.w1_c01010{width:572.250000px;}
.x0_c01010{left:0.000000px;}
.x3_c01010{left:13.800000px;}
.x7_c01010{left:75.300000px;}
.x2_c01010{left:76.650000px;}
.x1_c01010{left:78.600000px;}
.x4_c01010{left:80.550000px;}
.x5_c01010{left:82.050000px;}
.x6_c01010{left:84.300000px;}
.x12_c01010{left:237.751740px;}
.x9_c01010{left:295.200000px;}
.x8_c01010{left:296.250000px;}
.xa_c01010{left:297.600000px;}
.xb_c01010{left:298.650000px;}
.xc_c01010{left:300.300000px;}
.xd_c01010{left:301.350000px;}
.x10_c01010{left:302.700000px;}
.xf_c01010{left:304.050000px;}
.xe_c01010{left:313.800000px;}
.x11_c01010{left:384.450000px;}
@media print{
.v0_c01010{vertical-align:0.000000pt;}
.ls3_c01010{letter-spacing:-5.333333pt;}
.ls0_c01010{letter-spacing:0.000000pt;}
.ls2_c01010{letter-spacing:5.333333pt;}
.ls1_c01010{letter-spacing:8.000000pt;}
.ws3_c01010{word-spacing:-26.154667pt;}
.ws2_c01010{word-spacing:-19.328000pt;}
.ws5_c01010{word-spacing:-13.386667pt;}
.ws0_c01010{word-spacing:-12.586667pt;}
.ws1_c01010{word-spacing:-11.328000pt;}
.ws4_c01010{word-spacing:-5.248000pt;}
.ws6_c01010{word-spacing:0.000000pt;}
._29_c01010{margin-left:-13.722667pt;}
._20_c01010{margin-left:-11.952000pt;}
._30_c01010{margin-left:-10.613333pt;}
._1e_c01010{margin-left:-9.280000pt;}
._12_c01010{margin-left:-8.000000pt;}
._25_c01010{margin-left:-6.848000pt;}
._19_c01010{margin-left:-5.808000pt;}
._c_c01010{margin-left:-4.053333pt;}
._8_c01010{margin-left:-2.346667pt;}
._7_c01010{margin-left:-1.173333pt;}
._2_c01010{width:1.333333pt;}
._5_c01010{width:2.773333pt;}
._0_c01010{width:3.680000pt;}
._4_c01010{width:5.333333pt;}
._1_c01010{width:6.560000pt;}
._f_c01010{width:7.530667pt;}
._b_c01010{width:9.013333pt;}
._6_c01010{width:10.080000pt;}
._3_c01010{width:11.306667pt;}
._a_c01010{width:12.480000pt;}
._1a_c01010{width:13.445333pt;}
._13_c01010{width:14.389333pt;}
._10_c01010{width:16.021333pt;}
._17_c01010{width:17.077333pt;}
._11_c01010{width:18.261333pt;}
._e_c01010{width:19.850667pt;}
._15_c01010{width:21.434667pt;}
._22_c01010{width:22.826667pt;}
._28_c01010{width:24.144000pt;}
._d_c01010{width:25.280000pt;}
._23_c01010{width:26.720000pt;}
._27_c01010{width:28.714667pt;}
._1c_c01010{width:30.400000pt;}
._21_c01010{width:31.925333pt;}
._1d_c01010{width:33.813333pt;}
._16_c01010{width:35.754667pt;}
._14_c01010{width:38.256000pt;}
._1b_c01010{width:41.066667pt;}
._24_c01010{width:43.061333pt;}
._1f_c01010{width:48.480000pt;}
._9_c01010{width:54.880000pt;}
._2c_c01010{width:66.469333pt;}
._2d_c01010{width:68.373333pt;}
._2a_c01010{width:94.026667pt;}
._18_c01010{width:123.882667pt;}
._26_c01010{width:133.920000pt;}
._2f_c01010{width:171.506667pt;}
._2b_c01010{width:174.533333pt;}
._2e_c01010{width:191.520000pt;}
.fs2_c01010{font-size:42.666667pt;}
.fs1_c01010{font-size:48.000000pt;}
.fs0_c01010{font-size:53.333333pt;}
.fs3_c01010{font-size:66.666667pt;}
.fs4_c01010{font-size:104.000000pt;}
.y0_c01010{bottom:0.000000pt;}
.y51_c01010{bottom:2.760000pt;}
.y50_c01010{bottom:6.425204pt;}
.y4f_c01010{bottom:32.386667pt;}
.y29_c01010{bottom:47.586667pt;}
.y4e_c01010{bottom:48.920000pt;}
.y28_c01010{bottom:64.786667pt;}
.y4d_c01010{bottom:65.720000pt;}
.y27_c01010{bottom:80.920000pt;}
.y4c_c01010{bottom:81.586667pt;}
.y26_c01010{bottom:97.186667pt;}
.y4b_c01010{bottom:97.720000pt;}
.y25_c01010{bottom:113.320000pt;}
.y4a_c01010{bottom:113.986667pt;}
.y24_c01010{bottom:129.853333pt;}
.y23_c01010{bottom:145.720000pt;}
.y49_c01010{bottom:145.986667pt;}
.y22_c01010{bottom:161.986667pt;}
.y48_c01010{bottom:162.520000pt;}
.y21_c01010{bottom:178.386667pt;}
.y20_c01010{bottom:194.120000pt;}
.y47_c01010{bottom:194.386667pt;}
.y1f_c01010{bottom:210.520000pt;}
.y1e_c01010{bottom:226.786667pt;}
.y46_c01010{bottom:227.720000pt;}
.y45_c01010{bottom:242.653333pt;}
.y1d_c01010{bottom:242.920000pt;}
.y44_c01010{bottom:258.520000pt;}
.y1c_c01010{bottom:258.920000pt;}
.y1b_c01010{bottom:274.386667pt;}
.y43_c01010{bottom:275.053333pt;}
.y1a_c01010{bottom:290.386667pt;}
.y42_c01010{bottom:291.186667pt;}
.y19_c01010{bottom:306.786667pt;}
.y41_c01010{bottom:307.720000pt;}
.y18_c01010{bottom:323.053333pt;}
.y40_c01010{bottom:323.720000pt;}
.y17_c01010{bottom:338.920000pt;}
.y3f_c01010{bottom:340.120000pt;}
.y16_c01010{bottom:354.786667pt;}
.y3e_c01010{bottom:356.120000pt;}
.y3d_c01010{bottom:370.386667pt;}
.y15_c01010{bottom:371.720000pt;}
.y3c_c01010{bottom:386.920000pt;}
.y14_c01010{bottom:387.586667pt;}
.y13_c01010{bottom:403.186667pt;}
.y3b_c01010{bottom:403.453333pt;}
.y3a_c01010{bottom:419.320000pt;}
.y12_c01010{bottom:419.986667pt;}
.y11_c01010{bottom:435.586667pt;}
.y39_c01010{bottom:450.786667pt;}
.y10_c01010{bottom:451.453333pt;}
.yf_c01010{bottom:466.786667pt;}
.y38_c01010{bottom:467.720000pt;}
.ye_c01010{bottom:481.720000pt;}
.y37_c01010{bottom:482.120000pt;}
.y36_c01010{bottom:498.520000pt;}
.yd_c01010{bottom:498.920000pt;}
.y35_c01010{bottom:514.120000pt;}
.yc_c01010{bottom:515.320000pt;}
.yb_c01010{bottom:530.653333pt;}
.y34_c01010{bottom:531.320000pt;}
.ya_c01010{bottom:547.186667pt;}
.y33_c01010{bottom:547.453333pt;}
.y9_c01010{bottom:563.053333pt;}
.y32_c01010{bottom:563.720000pt;}
.y8_c01010{bottom:578.653333pt;}
.y31_c01010{bottom:580.786667pt;}
.y7_c01010{bottom:594.920000pt;}
.y30_c01010{bottom:596.120000pt;}
.y6_c01010{bottom:611.053333pt;}
.y2f_c01010{bottom:612.253333pt;}
.y5_c01010{bottom:627.186667pt;}
.y2e_c01010{bottom:630.786667pt;}
.y4_c01010{bottom:643.186667pt;}
.y2d_c01010{bottom:650.653333pt;}
.y3_c01010{bottom:659.053333pt;}
.y2c_c01010{bottom:663.586667pt;}
.y2_c01010{bottom:675.586667pt;}
.y2b_c01010{bottom:680.653333pt;}
.y1_c01010{bottom:691.986667pt;}
.y2a_c01010{bottom:697.186667pt;}
.h6_c01010{height:11.733399pt;}
.h7_c01010{height:38.937500pt;}
.h4_c01010{height:44.714667pt;}
.h3_c01010{height:50.304000pt;}
.h2_c01010{height:55.893333pt;}
.h5_c01010{height:110.968000pt;}
.h0_c01010{height:739.666667pt;}
.h1_c01010{height:740.000000pt;}
.w2_c01010{width:93.222667pt;}
.w0_c01010{width:508.333333pt;}
.w1_c01010{width:508.666667pt;}
.x0_c01010{left:0.000000pt;}
.x3_c01010{left:12.266667pt;}
.x7_c01010{left:66.933333pt;}
.x2_c01010{left:68.133333pt;}
.x1_c01010{left:69.866667pt;}
.x4_c01010{left:71.600000pt;}
.x5_c01010{left:72.933333pt;}
.x6_c01010{left:74.933333pt;}
.x12_c01010{left:211.334880pt;}
.x9_c01010{left:262.400000pt;}
.x8_c01010{left:263.333333pt;}
.xa_c01010{left:264.533333pt;}
.xb_c01010{left:265.466667pt;}
.xc_c01010{left:266.933333pt;}
.xd_c01010{left:267.866667pt;}
.x10_c01010{left:269.066667pt;}
.xf_c01010{left:270.266667pt;}
.xe_c01010{left:278.933333pt;}
.x11_c01010{left:341.733333pt;}
}





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

.ir_c01011:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01011{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01011;src:url('chunks/assets/font_8ae2940b67b231f431e2c6db.woff2')format("woff");}.ff1_c01011{font-family:ff1_c01011;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01011;src:url('chunks/assets/font_d665e9a0bb8adadc91d025c4.woff2')format("woff");}.ff2_c01011{font-family:ff2_c01011;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01011;src:url('chunks/assets/font_f7b73b7b5a0301fb1f76f625.woff2')format("woff");}.ff3_c01011{font-family:ff3_c01011;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01011;src:url('chunks/assets/font_59fbba3ce2ea935a03510b1c.woff2')format("woff");}.ff4_c01011{font-family:ff4_c01011;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01011;src:url('chunks/assets/font_52cd9ec68e849b93dc82f8ee.woff2')format("woff");}.ff5_c01011{font-family:ff5_c01011;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01011;src:url('chunks/assets/font_6105c17c3228052140a0ebdf.woff2')format("woff");}.ff6_c01011{font-family:ff6_c01011;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01011;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff7_c01011{font-family:ff7_c01011;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01011{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c01011{vertical-align:-13.800000px;}
.v0_c01011{vertical-align:0.000000px;}
.ls7_c01011{letter-spacing:0.000000px;}
.ls5_c01011{letter-spacing:1.200000px;}
.ls6_c01011{letter-spacing:6.000000px;}
.ls3_c01011{letter-spacing:6.600000px;}
.ls2_c01011{letter-spacing:9.000000px;}
.ls0_c01011{letter-spacing:20.880000px;}
.ls1_c01011{letter-spacing:23.805000px;}
.ls4_c01011{letter-spacing:24.000000px;}
.sc__c01011{text-shadow:none;}
.sc0_c01011{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01011{-webkit-text-stroke:0px transparent;}
.sc0_c01011{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01011{word-spacing:-50.640000px;}
.ws5_c01011{word-spacing:-35.295000px;}
.ws2_c01011{word-spacing:-23.160000px;}
.ws4_c01011{word-spacing:-21.000000px;}
.ws7_c01011{word-spacing:-15.060000px;}
.ws1_c01011{word-spacing:-14.160000px;}
.ws3_c01011{word-spacing:-0.240000px;}
.ws8_c01011{word-spacing:0.000000px;}
.ws6_c01011{word-spacing:69.480000px;}
._22_c01011{margin-left:-28.473000px;}
._24_c01011{margin-left:-21.660000px;}
._23_c01011{margin-left:-20.520000px;}
._28_c01011{margin-left:-16.320000px;}
._1d_c01011{margin-left:-12.108000px;}
._1b_c01011{margin-left:-9.711000px;}
._21_c01011{margin-left:-7.932000px;}
._15_c01011{margin-left:-6.834000px;}
._1_c01011{margin-left:-5.568000px;}
._0_c01011{margin-left:-4.032000px;}
._4_c01011{margin-left:-2.550000px;}
._3_c01011{margin-left:-1.275000px;}
._8_c01011{width:1.560000px;}
._9_c01011{width:2.640000px;}
._a_c01011{width:4.620000px;}
._d_c01011{width:5.700000px;}
._f_c01011{width:6.960000px;}
._11_c01011{width:8.160000px;}
._e_c01011{width:9.180000px;}
._7_c01011{width:10.800000px;}
._6_c01011{width:12.720000px;}
._13_c01011{width:13.800000px;}
._20_c01011{width:15.210000px;}
._2a_c01011{width:16.440000px;}
._16_c01011{width:17.460000px;}
._12_c01011{width:18.600000px;}
._10_c01011{width:20.040000px;}
._5_c01011{width:21.750000px;}
._17_c01011{width:23.040000px;}
._c_c01011{width:25.245000px;}
._2d_c01011{width:26.880000px;}
._14_c01011{width:28.389000px;}
._1a_c01011{width:29.460000px;}
._25_c01011{width:31.200000px;}
._26_c01011{width:34.620000px;}
._19_c01011{width:37.830000px;}
._27_c01011{width:42.795000px;}
._18_c01011{width:44.880000px;}
._1e_c01011{width:46.140000px;}
._2e_c01011{width:49.560000px;}
._2b_c01011{width:57.120000px;}
._1c_c01011{width:59.460000px;}
._2c_c01011{width:61.860000px;}
._b_c01011{width:78.360000px;}
._29_c01011{width:144.981000px;}
._2_c01011{width:203.250000px;}
._1f_c01011{width:233.205000px;}
.fc2_c01011{color:transparent;}
.fc1_c01011{color:rgb(128,128,128);}
.fc0_c01011{color:rgb(0,0,0);}
.fs4_c01011{font-size:45.000000px;}
.fs5_c01011{font-size:48.000000px;}
.fs3_c01011{font-size:51.000000px;}
.fs2_c01011{font-size:60.000000px;}
.fs0_c01011{font-size:72.000000px;}
.fs1_c01011{font-size:75.000000px;}
.y0_c01011{bottom:0.000000px;}
.y54_c01011{bottom:3.105000px;}
.y53_c01011{bottom:7.228371px;}
.y52_c01011{bottom:39.915000px;}
.y2a_c01011{bottom:56.715000px;}
.y51_c01011{bottom:57.765000px;}
.y29_c01011{bottom:75.615000px;}
.y50_c01011{bottom:76.665000px;}
.y28_c01011{bottom:93.915000px;}
.y4f_c01011{bottom:94.815000px;}
.y27_c01011{bottom:112.815000px;}
.y4e_c01011{bottom:113.415000px;}
.y26_c01011{bottom:130.665000px;}
.y4d_c01011{bottom:131.265000px;}
.y25_c01011{bottom:149.265000px;}
.y4c_c01011{bottom:149.565000px;}
.y24_c01011{bottom:166.815000px;}
.y4b_c01011{bottom:167.715000px;}
.y23_c01011{bottom:185.265000px;}
.y4a_c01011{bottom:186.315000px;}
.y22_c01011{bottom:203.565000px;}
.y49_c01011{bottom:204.615000px;}
.y21_c01011{bottom:221.715000px;}
.y48_c01011{bottom:222.765000px;}
.y20_c01011{bottom:240.015000px;}
.y47_c01011{bottom:241.065000px;}
.y46_c01011{bottom:258.915000px;}
.y1f_c01011{bottom:261.615000px;}
.y1e_c01011{bottom:277.065000px;}
.y1d_c01011{bottom:294.615000px;}
.y45_c01011{bottom:295.065000px;}
.y1c_c01011{bottom:312.615000px;}
.y44_c01011{bottom:312.915000px;}
.y1b_c01011{bottom:330.315000px;}
.y43_c01011{bottom:331.065000px;}
.y1a_c01011{bottom:348.615000px;}
.y42_c01011{bottom:349.065000px;}
.y19_c01011{bottom:366.915000px;}
.y41_c01011{bottom:367.665000px;}
.y18_c01011{bottom:384.765000px;}
.y40_c01011{bottom:385.815000px;}
.y17_c01011{bottom:402.765000px;}
.y3f_c01011{bottom:403.965000px;}
.y16_c01011{bottom:420.615000px;}
.y3e_c01011{bottom:422.265000px;}
.y15_c01011{bottom:439.065000px;}
.y3d_c01011{bottom:440.565000px;}
.y14_c01011{bottom:457.365000px;}
.y3c_c01011{bottom:458.715000px;}
.y13_c01011{bottom:475.215000px;}
.y3b_c01011{bottom:476.265000px;}
.y12_c01011{bottom:493.065000px;}
.y3a_c01011{bottom:494.415000px;}
.y11_c01011{bottom:511.065000px;}
.y39_c01011{bottom:513.015000px;}
.y10_c01011{bottom:529.515000px;}
.y38_c01011{bottom:531.015000px;}
.yf_c01011{bottom:547.515000px;}
.y37_c01011{bottom:549.165000px;}
.ye_c01011{bottom:565.665000px;}
.y36_c01011{bottom:567.315000px;}
.yd_c01011{bottom:583.515000px;}
.y35_c01011{bottom:584.565000px;}
.yc_c01011{bottom:601.515000px;}
.y34_c01011{bottom:603.165000px;}
.yb_c01011{bottom:619.965000px;}
.y33_c01011{bottom:621.465000px;}
.ya_c01011{bottom:637.515000px;}
.y32_c01011{bottom:639.315000px;}
.y9_c01011{bottom:656.115000px;}
.y31_c01011{bottom:657.765000px;}
.y8_c01011{bottom:674.415000px;}
.y30_c01011{bottom:676.365000px;}
.y7_c01011{bottom:692.565000px;}
.y2f_c01011{bottom:694.965000px;}
.y6_c01011{bottom:710.115000px;}
.y2e_c01011{bottom:712.215000px;}
.y5_c01011{bottom:728.715000px;}
.y2d_c01011{bottom:730.665000px;}
.y4_c01011{bottom:747.015000px;}
.y2c_c01011{bottom:748.665000px;}
.y3_c01011{bottom:765.765000px;}
.y2b_c01011{bottom:766.515000px;}
.y2_c01011{bottom:784.065000px;}
.y1_c01011{bottom:804.315000px;}
.h5_c01011{height:13.200074px;}
.h6_c01011{height:43.804688px;}
.h3_c01011{height:62.880000px;}
.h4_c01011{height:64.020000px;}
.h2_c01011{height:80.025000px;}
.h0_c01011{height:848.625000px;}
.h1_c01011{height:849.000000px;}
.w2_c01011{width:104.875500px;}
.w1_c01011{width:579.750000px;}
.w0_c01011{width:579.975000px;}
.x0_c01011{left:0.000000px;}
.x7_c01011{left:32.700000px;}
.x6_c01011{left:35.100000px;}
.x1_c01011{left:94.950000px;}
.x3_c01011{left:96.300000px;}
.x4_c01011{left:97.650000px;}
.x2_c01011{left:99.000000px;}
.x5_c01011{left:100.950000px;}
.x8_c01011{left:102.000000px;}
.x9_c01011{left:103.050000px;}
.xe_c01011{left:241.801758px;}
.xb_c01011{left:319.350000px;}
.xa_c01011{left:320.700000px;}
.xc_c01011{left:322.050000px;}
.xd_c01011{left:491.100000px;}
@media print{
.v1_c01011{vertical-align:-12.266667pt;}
.v0_c01011{vertical-align:0.000000pt;}
.ls7_c01011{letter-spacing:0.000000pt;}
.ls5_c01011{letter-spacing:1.066667pt;}
.ls6_c01011{letter-spacing:5.333333pt;}
.ls3_c01011{letter-spacing:5.866667pt;}
.ls2_c01011{letter-spacing:8.000000pt;}
.ls0_c01011{letter-spacing:18.560000pt;}
.ls1_c01011{letter-spacing:21.160000pt;}
.ls4_c01011{letter-spacing:21.333333pt;}
.ws0_c01011{word-spacing:-45.013333pt;}
.ws5_c01011{word-spacing:-31.373333pt;}
.ws2_c01011{word-spacing:-20.586667pt;}
.ws4_c01011{word-spacing:-18.666667pt;}
.ws7_c01011{word-spacing:-13.386667pt;}
.ws1_c01011{word-spacing:-12.586667pt;}
.ws3_c01011{word-spacing:-0.213333pt;}
.ws8_c01011{word-spacing:0.000000pt;}
.ws6_c01011{word-spacing:61.760000pt;}
._22_c01011{margin-left:-25.309333pt;}
._24_c01011{margin-left:-19.253333pt;}
._23_c01011{margin-left:-18.240000pt;}
._28_c01011{margin-left:-14.506667pt;}
._1d_c01011{margin-left:-10.762667pt;}
._1b_c01011{margin-left:-8.632000pt;}
._21_c01011{margin-left:-7.050667pt;}
._15_c01011{margin-left:-6.074667pt;}
._1_c01011{margin-left:-4.949333pt;}
._0_c01011{margin-left:-3.584000pt;}
._4_c01011{margin-left:-2.266667pt;}
._3_c01011{margin-left:-1.133333pt;}
._8_c01011{width:1.386667pt;}
._9_c01011{width:2.346667pt;}
._a_c01011{width:4.106667pt;}
._d_c01011{width:5.066667pt;}
._f_c01011{width:6.186667pt;}
._11_c01011{width:7.253333pt;}
._e_c01011{width:8.160000pt;}
._7_c01011{width:9.600000pt;}
._6_c01011{width:11.306667pt;}
._13_c01011{width:12.266667pt;}
._20_c01011{width:13.520000pt;}
._2a_c01011{width:14.613333pt;}
._16_c01011{width:15.520000pt;}
._12_c01011{width:16.533333pt;}
._10_c01011{width:17.813333pt;}
._5_c01011{width:19.333333pt;}
._17_c01011{width:20.480000pt;}
._c_c01011{width:22.440000pt;}
._2d_c01011{width:23.893333pt;}
._14_c01011{width:25.234667pt;}
._1a_c01011{width:26.186667pt;}
._25_c01011{width:27.733333pt;}
._26_c01011{width:30.773333pt;}
._19_c01011{width:33.626667pt;}
._27_c01011{width:38.040000pt;}
._18_c01011{width:39.893333pt;}
._1e_c01011{width:41.013333pt;}
._2e_c01011{width:44.053333pt;}
._2b_c01011{width:50.773333pt;}
._1c_c01011{width:52.853333pt;}
._2c_c01011{width:54.986667pt;}
._b_c01011{width:69.653333pt;}
._29_c01011{width:128.872000pt;}
._2_c01011{width:180.666667pt;}
._1f_c01011{width:207.293333pt;}
.fs4_c01011{font-size:40.000000pt;}
.fs5_c01011{font-size:42.666667pt;}
.fs3_c01011{font-size:45.333333pt;}
.fs2_c01011{font-size:53.333333pt;}
.fs0_c01011{font-size:64.000000pt;}
.fs1_c01011{font-size:66.666667pt;}
.y0_c01011{bottom:0.000000pt;}
.y54_c01011{bottom:2.760000pt;}
.y53_c01011{bottom:6.425219pt;}
.y52_c01011{bottom:35.480000pt;}
.y2a_c01011{bottom:50.413333pt;}
.y51_c01011{bottom:51.346667pt;}
.y29_c01011{bottom:67.213333pt;}
.y50_c01011{bottom:68.146667pt;}
.y28_c01011{bottom:83.480000pt;}
.y4f_c01011{bottom:84.280000pt;}
.y27_c01011{bottom:100.280000pt;}
.y4e_c01011{bottom:100.813333pt;}
.y26_c01011{bottom:116.146667pt;}
.y4d_c01011{bottom:116.680000pt;}
.y25_c01011{bottom:132.680000pt;}
.y4c_c01011{bottom:132.946667pt;}
.y24_c01011{bottom:148.280000pt;}
.y4b_c01011{bottom:149.080000pt;}
.y23_c01011{bottom:164.680000pt;}
.y4a_c01011{bottom:165.613333pt;}
.y22_c01011{bottom:180.946667pt;}
.y49_c01011{bottom:181.880000pt;}
.y21_c01011{bottom:197.080000pt;}
.y48_c01011{bottom:198.013333pt;}
.y20_c01011{bottom:213.346667pt;}
.y47_c01011{bottom:214.280000pt;}
.y46_c01011{bottom:230.146667pt;}
.y1f_c01011{bottom:232.546667pt;}
.y1e_c01011{bottom:246.280000pt;}
.y1d_c01011{bottom:261.880000pt;}
.y45_c01011{bottom:262.280000pt;}
.y1c_c01011{bottom:277.880000pt;}
.y44_c01011{bottom:278.146667pt;}
.y1b_c01011{bottom:293.613333pt;}
.y43_c01011{bottom:294.280000pt;}
.y1a_c01011{bottom:309.880000pt;}
.y42_c01011{bottom:310.280000pt;}
.y19_c01011{bottom:326.146667pt;}
.y41_c01011{bottom:326.813333pt;}
.y18_c01011{bottom:342.013333pt;}
.y40_c01011{bottom:342.946667pt;}
.y17_c01011{bottom:358.013333pt;}
.y3f_c01011{bottom:359.080000pt;}
.y16_c01011{bottom:373.880000pt;}
.y3e_c01011{bottom:375.346667pt;}
.y15_c01011{bottom:390.280000pt;}
.y3d_c01011{bottom:391.613333pt;}
.y14_c01011{bottom:406.546667pt;}
.y3c_c01011{bottom:407.746667pt;}
.y13_c01011{bottom:422.413333pt;}
.y3b_c01011{bottom:423.346667pt;}
.y12_c01011{bottom:438.280000pt;}
.y3a_c01011{bottom:439.480000pt;}
.y11_c01011{bottom:454.280000pt;}
.y39_c01011{bottom:456.013333pt;}
.y10_c01011{bottom:470.680000pt;}
.y38_c01011{bottom:472.013333pt;}
.yf_c01011{bottom:486.680000pt;}
.y37_c01011{bottom:488.146667pt;}
.ye_c01011{bottom:502.813333pt;}
.y36_c01011{bottom:504.280000pt;}
.yd_c01011{bottom:518.680000pt;}
.y35_c01011{bottom:519.613333pt;}
.yc_c01011{bottom:534.680000pt;}
.y34_c01011{bottom:536.146667pt;}
.yb_c01011{bottom:551.080000pt;}
.y33_c01011{bottom:552.413333pt;}
.ya_c01011{bottom:566.680000pt;}
.y32_c01011{bottom:568.280000pt;}
.y9_c01011{bottom:583.213333pt;}
.y31_c01011{bottom:584.680000pt;}
.y8_c01011{bottom:599.480000pt;}
.y30_c01011{bottom:601.213333pt;}
.y7_c01011{bottom:615.613333pt;}
.y2f_c01011{bottom:617.746667pt;}
.y6_c01011{bottom:631.213333pt;}
.y2e_c01011{bottom:633.080000pt;}
.y5_c01011{bottom:647.746667pt;}
.y2d_c01011{bottom:649.480000pt;}
.y4_c01011{bottom:664.013333pt;}
.y2c_c01011{bottom:665.480000pt;}
.y3_c01011{bottom:680.680000pt;}
.y2b_c01011{bottom:681.346667pt;}
.y2_c01011{bottom:696.946667pt;}
.y1_c01011{bottom:714.946667pt;}
.h5_c01011{height:11.733399pt;}
.h6_c01011{height:38.937500pt;}
.h3_c01011{height:55.893333pt;}
.h4_c01011{height:56.906667pt;}
.h2_c01011{height:71.133333pt;}
.h0_c01011{height:754.333333pt;}
.h1_c01011{height:754.666667pt;}
.w2_c01011{width:93.222667pt;}
.w1_c01011{width:515.333333pt;}
.w0_c01011{width:515.533333pt;}
.x0_c01011{left:0.000000pt;}
.x7_c01011{left:29.066667pt;}
.x6_c01011{left:31.200000pt;}
.x1_c01011{left:84.400000pt;}
.x3_c01011{left:85.600000pt;}
.x4_c01011{left:86.800000pt;}
.x2_c01011{left:88.000000pt;}
.x5_c01011{left:89.733333pt;}
.x8_c01011{left:90.666667pt;}
.x9_c01011{left:91.600000pt;}
.xe_c01011{left:214.934896pt;}
.xb_c01011{left:283.866667pt;}
.xa_c01011{left:285.066667pt;}
.xc_c01011{left:286.266667pt;}
.xd_c01011{left:436.533333pt;}
}





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

.ir_c01012:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01012{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01012;src:url('chunks/assets/font_6a5201ec0079cf211aa1f0f3.woff2')format("woff");}.ff1_c01012{font-family:ff1_c01012;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01012;src:url('chunks/assets/font_901b04c6ea617406fd6192d8.woff2')format("woff");}.ff2_c01012{font-family:ff2_c01012;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01012;src:url('chunks/assets/font_1c4f8bda5ea23e5634677e18.woff2')format("woff");}.ff3_c01012{font-family:ff3_c01012;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01012;src:url('chunks/assets/font_1e749d0c515555f1867bcd78.woff2')format("woff");}.ff4_c01012{font-family:ff4_c01012;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01012;src:url('chunks/assets/font_c786e7c278abffc14561863d.woff2')format("woff");}.ff5_c01012{font-family:ff5_c01012;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01012;src:url('chunks/assets/font_fcb709ac3433aad16e136cfb.woff2')format("woff");}.ff6_c01012{font-family:ff6_c01012;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01012;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff7_c01012{font-family:ff7_c01012;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01012{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01012{vertical-align:0.000000px;}
.ls2_c01012{letter-spacing:0.000000px;}
.ls3_c01012{letter-spacing:3.000000px;}
.ls4_c01012{letter-spacing:6.000000px;}
.ls1_c01012{letter-spacing:9.000000px;}
.ls0_c01012{letter-spacing:39.177000px;}
.sc__c01012{text-shadow:none;}
.sc0_c01012{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01012{-webkit-text-stroke:0px transparent;}
.sc0_c01012{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01012{word-spacing:-39.018000px;}
.ws3_c01012{word-spacing:-23.340000px;}
.ws2_c01012{word-spacing:-23.160000px;}
.ws0_c01012{word-spacing:-14.160000px;}
.ws4_c01012{word-spacing:0.000000px;}
._15_c01012{margin-left:-11.700000px;}
._16_c01012{margin-left:-9.732000px;}
._1a_c01012{margin-left:-8.040000px;}
._17_c01012{margin-left:-6.564000px;}
._14_c01012{margin-left:-4.680000px;}
._5_c01012{margin-left:-2.988000px;}
._a_c01012{margin-left:-1.296000px;}
._9_c01012{width:1.500000px;}
._b_c01012{width:3.012000px;}
._0_c01012{width:4.104000px;}
._4_c01012{width:5.640000px;}
._3_c01012{width:7.128000px;}
._c_c01012{width:8.208000px;}
._7_c01012{width:9.576000px;}
._2_c01012{width:11.016000px;}
._11_c01012{width:12.084000px;}
._8_c01012{width:13.140000px;}
._d_c01012{width:16.980000px;}
._6_c01012{width:18.540000px;}
._1e_c01012{width:19.716000px;}
._10_c01012{width:21.276000px;}
._1f_c01012{width:22.680000px;}
._13_c01012{width:24.084000px;}
._e_c01012{width:25.740000px;}
._1c_c01012{width:27.636000px;}
._f_c01012{width:30.036000px;}
._1d_c01012{width:32.232000px;}
._1_c01012{width:41.040000px;}
._18_c01012{width:43.212000px;}
._1b_c01012{width:97.104000px;}
._19_c01012{width:107.724000px;}
._20_c01012{width:155.040000px;}
._12_c01012{width:369.168000px;}
.fc2_c01012{color:transparent;}
.fc1_c01012{color:rgb(128,128,128);}
.fc0_c01012{color:rgb(0,0,0);}
.fs4_c01012{font-size:48.000000px;}
.fs2_c01012{font-size:54.000000px;}
.fs3_c01012{font-size:57.000000px;}
.fs1_c01012{font-size:60.000000px;}
.fs0_c01012{font-size:72.000000px;}
.y0_c01012{bottom:0.000000px;}
.y56_c01012{bottom:3.105000px;}
.y55_c01012{bottom:7.228355px;}
.y54_c01012{bottom:50.235000px;}
.y2a_c01012{bottom:64.485000px;}
.y53_c01012{bottom:69.885000px;}
.y29_c01012{bottom:83.685000px;}
.y52_c01012{bottom:87.435000px;}
.y28_c01012{bottom:102.285000px;}
.y51_c01012{bottom:105.585000px;}
.y27_c01012{bottom:121.035000px;}
.y50_c01012{bottom:123.735000px;}
.y26_c01012{bottom:139.335000px;}
.y4f_c01012{bottom:141.735000px;}
.y25_c01012{bottom:157.485000px;}
.y4e_c01012{bottom:160.185000px;}
.y24_c01012{bottom:176.085000px;}
.y4d_c01012{bottom:177.885000px;}
.y23_c01012{bottom:194.085000px;}
.y4c_c01012{bottom:196.335000px;}
.y22_c01012{bottom:212.535000px;}
.y4b_c01012{bottom:214.635000px;}
.y21_c01012{bottom:230.085000px;}
.y4a_c01012{bottom:232.185000px;}
.y20_c01012{bottom:248.985000px;}
.y49_c01012{bottom:250.635000px;}
.y1f_c01012{bottom:266.535000px;}
.y48_c01012{bottom:268.935000px;}
.y1e_c01012{bottom:284.835000px;}
.y47_c01012{bottom:287.085000px;}
.y1d_c01012{bottom:302.085000px;}
.y46_c01012{bottom:305.085000px;}
.y1c_c01012{bottom:321.585000px;}
.y45_c01012{bottom:323.235000px;}
.y1b_c01012{bottom:338.385000px;}
.y44_c01012{bottom:341.235000px;}
.y1a_c01012{bottom:356.085000px;}
.y43_c01012{bottom:359.685000px;}
.y19_c01012{bottom:374.235000px;}
.y42_c01012{bottom:377.685000px;}
.y18_c01012{bottom:392.835000px;}
.y41_c01012{bottom:395.835000px;}
.y17_c01012{bottom:410.985000px;}
.y40_c01012{bottom:413.985000px;}
.y16_c01012{bottom:428.235000px;}
.y3f_c01012{bottom:431.985000px;}
.y15_c01012{bottom:446.835000px;}
.y3e_c01012{bottom:450.135000px;}
.y14_c01012{bottom:464.685000px;}
.y3d_c01012{bottom:467.985000px;}
.y13_c01012{bottom:482.985000px;}
.y3c_c01012{bottom:486.285000px;}
.y12_c01012{bottom:500.085000px;}
.y3b_c01012{bottom:504.435000px;}
.y11_c01012{bottom:518.685000px;}
.y3a_c01012{bottom:522.135000px;}
.y10_c01012{bottom:535.935000px;}
.y39_c01012{bottom:539.685000px;}
.yf_c01012{bottom:554.385000px;}
.y38_c01012{bottom:557.085000px;}
.ye_c01012{bottom:572.385000px;}
.y37_c01012{bottom:575.685000px;}
.yd_c01012{bottom:590.235000px;}
.y36_c01012{bottom:593.685000px;}
.yc_c01012{bottom:608.385000px;}
.y35_c01012{bottom:611.235000px;}
.yb_c01012{bottom:626.085000px;}
.y34_c01012{bottom:629.685000px;}
.ya_c01012{bottom:644.535000px;}
.y33_c01012{bottom:647.535000px;}
.y9_c01012{bottom:662.535000px;}
.y32_c01012{bottom:665.835000px;}
.y8_c01012{bottom:680.685000px;}
.y31_c01012{bottom:683.985000px;}
.y7_c01012{bottom:698.835000px;}
.y30_c01012{bottom:701.985000px;}
.y6_c01012{bottom:716.835000px;}
.y2f_c01012{bottom:720.135000px;}
.y5_c01012{bottom:735.135000px;}
.y2e_c01012{bottom:738.435000px;}
.y4_c01012{bottom:753.285000px;}
.y2d_c01012{bottom:756.585000px;}
.y3_c01012{bottom:771.435000px;}
.y2c_c01012{bottom:774.435000px;}
.y2_c01012{bottom:789.435000px;}
.y2b_c01012{bottom:792.435000px;}
.y1_c01012{bottom:810.885000px;}
.h5_c01012{height:13.200074px;}
.h6_c01012{height:43.804688px;}
.h3_c01012{height:62.880000px;}
.h4_c01012{height:64.020000px;}
.h2_c01012{height:70.664062px;}
.h0_c01012{height:832.125000px;}
.h1_c01012{height:832.500000px;}
.w2_c01012{width:104.875500px;}
.w0_c01012{width:571.875000px;}
.w1_c01012{width:572.250000px;}
.x0_c01012{left:0.000000px;}
.x8_c01012{left:7.200000px;}
.xa_c01012{left:13.200000px;}
.x2_c01012{left:69.600000px;}
.x4_c01012{left:71.550000px;}
.x5_c01012{left:72.600000px;}
.x6_c01012{left:73.800000px;}
.x7_c01012{left:75.600000px;}
.x9_c01012{left:76.650000px;}
.xb_c01012{left:78.000000px;}
.xc_c01012{left:79.050000px;}
.xd_c01012{left:80.400000px;}
.xe_c01012{left:81.750000px;}
.x3_c01012{left:90.000000px;}
.x1_c01012{left:206.550000px;}
.x1b_c01012{left:237.751740px;}
.x12_c01012{left:282.900000px;}
.xf_c01012{left:285.300000px;}
.x10_c01012{left:286.950000px;}
.x11_c01012{left:288.300000px;}
.x13_c01012{left:289.650000px;}
.x14_c01012{left:290.700000px;}
.x15_c01012{left:291.900000px;}
.x16_c01012{left:293.250000px;}
.x17_c01012{left:294.300000px;}
.x18_c01012{left:296.100000px;}
.x19_c01012{left:297.300000px;}
.x1a_c01012{left:369.300000px;}
@media print{
.v0_c01012{vertical-align:0.000000pt;}
.ls2_c01012{letter-spacing:0.000000pt;}
.ls3_c01012{letter-spacing:2.666667pt;}
.ls4_c01012{letter-spacing:5.333333pt;}
.ls1_c01012{letter-spacing:8.000000pt;}
.ls0_c01012{letter-spacing:34.824000pt;}
.ws1_c01012{word-spacing:-34.682667pt;}
.ws3_c01012{word-spacing:-20.746667pt;}
.ws2_c01012{word-spacing:-20.586667pt;}
.ws0_c01012{word-spacing:-12.586667pt;}
.ws4_c01012{word-spacing:0.000000pt;}
._15_c01012{margin-left:-10.400000pt;}
._16_c01012{margin-left:-8.650667pt;}
._1a_c01012{margin-left:-7.146667pt;}
._17_c01012{margin-left:-5.834667pt;}
._14_c01012{margin-left:-4.160000pt;}
._5_c01012{margin-left:-2.656000pt;}
._a_c01012{margin-left:-1.152000pt;}
._9_c01012{width:1.333333pt;}
._b_c01012{width:2.677333pt;}
._0_c01012{width:3.648000pt;}
._4_c01012{width:5.013333pt;}
._3_c01012{width:6.336000pt;}
._c_c01012{width:7.296000pt;}
._7_c01012{width:8.512000pt;}
._2_c01012{width:9.792000pt;}
._11_c01012{width:10.741333pt;}
._8_c01012{width:11.680000pt;}
._d_c01012{width:15.093333pt;}
._6_c01012{width:16.480000pt;}
._1e_c01012{width:17.525333pt;}
._10_c01012{width:18.912000pt;}
._1f_c01012{width:20.160000pt;}
._13_c01012{width:21.408000pt;}
._e_c01012{width:22.880000pt;}
._1c_c01012{width:24.565333pt;}
._f_c01012{width:26.698667pt;}
._1d_c01012{width:28.650667pt;}
._1_c01012{width:36.480000pt;}
._18_c01012{width:38.410667pt;}
._1b_c01012{width:86.314667pt;}
._19_c01012{width:95.754667pt;}
._20_c01012{width:137.813333pt;}
._12_c01012{width:328.149333pt;}
.fs4_c01012{font-size:42.666667pt;}
.fs2_c01012{font-size:48.000000pt;}
.fs3_c01012{font-size:50.666667pt;}
.fs1_c01012{font-size:53.333333pt;}
.fs0_c01012{font-size:64.000000pt;}
.y0_c01012{bottom:0.000000pt;}
.y56_c01012{bottom:2.760000pt;}
.y55_c01012{bottom:6.425204pt;}
.y54_c01012{bottom:44.653333pt;}
.y2a_c01012{bottom:57.320000pt;}
.y53_c01012{bottom:62.120000pt;}
.y29_c01012{bottom:74.386667pt;}
.y52_c01012{bottom:77.720000pt;}
.y28_c01012{bottom:90.920000pt;}
.y51_c01012{bottom:93.853333pt;}
.y27_c01012{bottom:107.586667pt;}
.y50_c01012{bottom:109.986667pt;}
.y26_c01012{bottom:123.853333pt;}
.y4f_c01012{bottom:125.986667pt;}
.y25_c01012{bottom:139.986667pt;}
.y4e_c01012{bottom:142.386667pt;}
.y24_c01012{bottom:156.520000pt;}
.y4d_c01012{bottom:158.120000pt;}
.y23_c01012{bottom:172.520000pt;}
.y4c_c01012{bottom:174.520000pt;}
.y22_c01012{bottom:188.920000pt;}
.y4b_c01012{bottom:190.786667pt;}
.y21_c01012{bottom:204.520000pt;}
.y4a_c01012{bottom:206.386667pt;}
.y20_c01012{bottom:221.320000pt;}
.y49_c01012{bottom:222.786667pt;}
.y1f_c01012{bottom:236.920000pt;}
.y48_c01012{bottom:239.053333pt;}
.y1e_c01012{bottom:253.186667pt;}
.y47_c01012{bottom:255.186667pt;}
.y1d_c01012{bottom:268.520000pt;}
.y46_c01012{bottom:271.186667pt;}
.y1c_c01012{bottom:285.853333pt;}
.y45_c01012{bottom:287.320000pt;}
.y1b_c01012{bottom:300.786667pt;}
.y44_c01012{bottom:303.320000pt;}
.y1a_c01012{bottom:316.520000pt;}
.y43_c01012{bottom:319.720000pt;}
.y19_c01012{bottom:332.653333pt;}
.y42_c01012{bottom:335.720000pt;}
.y18_c01012{bottom:349.186667pt;}
.y41_c01012{bottom:351.853333pt;}
.y17_c01012{bottom:365.320000pt;}
.y40_c01012{bottom:367.986667pt;}
.y16_c01012{bottom:380.653333pt;}
.y3f_c01012{bottom:383.986667pt;}
.y15_c01012{bottom:397.186667pt;}
.y3e_c01012{bottom:400.120000pt;}
.y14_c01012{bottom:413.053333pt;}
.y3d_c01012{bottom:415.986667pt;}
.y13_c01012{bottom:429.320000pt;}
.y3c_c01012{bottom:432.253333pt;}
.y12_c01012{bottom:444.520000pt;}
.y3b_c01012{bottom:448.386667pt;}
.y11_c01012{bottom:461.053333pt;}
.y3a_c01012{bottom:464.120000pt;}
.y10_c01012{bottom:476.386667pt;}
.y39_c01012{bottom:479.720000pt;}
.yf_c01012{bottom:492.786667pt;}
.y38_c01012{bottom:495.186667pt;}
.ye_c01012{bottom:508.786667pt;}
.y37_c01012{bottom:511.720000pt;}
.yd_c01012{bottom:524.653333pt;}
.y36_c01012{bottom:527.720000pt;}
.yc_c01012{bottom:540.786667pt;}
.y35_c01012{bottom:543.320000pt;}
.yb_c01012{bottom:556.520000pt;}
.y34_c01012{bottom:559.720000pt;}
.ya_c01012{bottom:572.920000pt;}
.y33_c01012{bottom:575.586667pt;}
.y9_c01012{bottom:588.920000pt;}
.y32_c01012{bottom:591.853333pt;}
.y8_c01012{bottom:605.053333pt;}
.y31_c01012{bottom:607.986667pt;}
.y7_c01012{bottom:621.186667pt;}
.y30_c01012{bottom:623.986667pt;}
.y6_c01012{bottom:637.186667pt;}
.y2f_c01012{bottom:640.120000pt;}
.y5_c01012{bottom:653.453333pt;}
.y2e_c01012{bottom:656.386667pt;}
.y4_c01012{bottom:669.586667pt;}
.y2d_c01012{bottom:672.520000pt;}
.y3_c01012{bottom:685.720000pt;}
.y2c_c01012{bottom:688.386667pt;}
.y2_c01012{bottom:701.720000pt;}
.y2b_c01012{bottom:704.386667pt;}
.y1_c01012{bottom:720.786667pt;}
.h5_c01012{height:11.733399pt;}
.h6_c01012{height:38.937500pt;}
.h3_c01012{height:55.893333pt;}
.h4_c01012{height:56.906667pt;}
.h2_c01012{height:62.812500pt;}
.h0_c01012{height:739.666667pt;}
.h1_c01012{height:740.000000pt;}
.w2_c01012{width:93.222667pt;}
.w0_c01012{width:508.333333pt;}
.w1_c01012{width:508.666667pt;}
.x0_c01012{left:0.000000pt;}
.x8_c01012{left:6.400000pt;}
.xa_c01012{left:11.733333pt;}
.x2_c01012{left:61.866667pt;}
.x4_c01012{left:63.600000pt;}
.x5_c01012{left:64.533333pt;}
.x6_c01012{left:65.600000pt;}
.x7_c01012{left:67.200000pt;}
.x9_c01012{left:68.133333pt;}
.xb_c01012{left:69.333333pt;}
.xc_c01012{left:70.266667pt;}
.xd_c01012{left:71.466667pt;}
.xe_c01012{left:72.666667pt;}
.x3_c01012{left:80.000000pt;}
.x1_c01012{left:183.600000pt;}
.x1b_c01012{left:211.334880pt;}
.x12_c01012{left:251.466667pt;}
.xf_c01012{left:253.600000pt;}
.x10_c01012{left:255.066667pt;}
.x11_c01012{left:256.266667pt;}
.x13_c01012{left:257.466667pt;}
.x14_c01012{left:258.400000pt;}
.x15_c01012{left:259.466667pt;}
.x16_c01012{left:260.666667pt;}
.x17_c01012{left:261.600000pt;}
.x18_c01012{left:263.200000pt;}
.x19_c01012{left:264.266667pt;}
.x1a_c01012{left:328.266667pt;}
}





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

.ir_c01013:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01013{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01013;src:url('chunks/assets/font_13ec240d8bb8036d18d526a4.woff2')format("woff");}.ff1_c01013{font-family:ff1_c01013;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01013;src:url('chunks/assets/font_4fe589982a306569bdbc4c7d.woff2')format("woff");}.ff2_c01013{font-family:ff2_c01013;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01013;src:url('chunks/assets/font_1bfbe56d31af44bac68d021c.woff2')format("woff");}.ff3_c01013{font-family:ff3_c01013;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01013;src:url('chunks/assets/font_a1e1faefab5f9061de67831d.woff2')format("woff");}.ff4_c01013{font-family:ff4_c01013;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01013;src:url('chunks/assets/font_d14130fb5df591b119658b8a.woff2')format("woff");}.ff5_c01013{font-family:ff5_c01013;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01013;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff6_c01013{font-family:ff6_c01013;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01013{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01013{vertical-align:0.000000px;}
.ls1_c01013{letter-spacing:0.000000px;}
.ls2_c01013{letter-spacing:3.000000px;}
.ls3_c01013{letter-spacing:6.000000px;}
.ls0_c01013{letter-spacing:9.600000px;}
.sc__c01013{text-shadow:none;}
.sc0_c01013{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01013{-webkit-text-stroke:0px transparent;}
.sc0_c01013{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01013{word-spacing:-25.308000px;}
.ws1_c01013{word-spacing:-23.340000px;}
.ws3_c01013{word-spacing:-15.060000px;}
.ws0_c01013{word-spacing:-14.160000px;}
.ws4_c01013{word-spacing:0.000000px;}
._25_c01013{margin-left:-15.600000px;}
._f_c01013{margin-left:-13.620000px;}
._23_c01013{margin-left:-11.640000px;}
._2c_c01013{margin-left:-9.900000px;}
._28_c01013{margin-left:-8.040000px;}
._18_c01013{margin-left:-6.720000px;}
._33_c01013{margin-left:-5.280000px;}
._21_c01013{margin-left:-4.260000px;}
._c_c01013{margin-left:-2.220000px;}
._17_c01013{margin-left:-1.020000px;}
._e_c01013{width:1.260000px;}
._15_c01013{width:2.280000px;}
._d_c01013{width:3.360000px;}
._b_c01013{width:5.220000px;}
._1d_c01013{width:6.360000px;}
._6_c01013{width:7.440000px;}
._a_c01013{width:8.580000px;}
._1_c01013{width:9.720000px;}
._0_c01013{width:10.740000px;}
._1a_c01013{width:11.880000px;}
._4_c01013{width:12.960000px;}
._9_c01013{width:13.980000px;}
._22_c01013{width:15.900000px;}
._3_c01013{width:17.100000px;}
._2a_c01013{width:18.660000px;}
._8_c01013{width:19.860000px;}
._12_c01013{width:20.880000px;}
._7_c01013{width:22.200000px;}
._2e_c01013{width:23.340000px;}
._1b_c01013{width:24.420000px;}
._1c_c01013{width:25.680000px;}
._19_c01013{width:27.060000px;}
._1e_c01013{width:28.980000px;}
._20_c01013{width:30.060000px;}
._32_c01013{width:31.380000px;}
._16_c01013{width:33.120000px;}
._31_c01013{width:35.040000px;}
._5_c01013{width:36.840000px;}
._1f_c01013{width:39.180000px;}
._2f_c01013{width:44.100000px;}
._30_c01013{width:48.840000px;}
._26_c01013{width:50.520000px;}
._27_c01013{width:56.760000px;}
._10_c01013{width:70.320000px;}
._13_c01013{width:85.140000px;}
._29_c01013{width:86.160000px;}
._2b_c01013{width:87.420000px;}
._24_c01013{width:94.740000px;}
._11_c01013{width:108.120000px;}
._2d_c01013{width:197.040000px;}
._2_c01013{width:207.360000px;}
._14_c01013{width:340.260000px;}
.fc2_c01013{color:transparent;}
.fc1_c01013{color:rgb(128,128,128);}
.fc0_c01013{color:rgb(0,0,0);}
.fs2_c01013{font-size:48.000000px;}
.fs1_c01013{font-size:57.000000px;}
.fs0_c01013{font-size:60.000000px;}
.y0_c01013{bottom:0.000000px;}
.y4e_c01013{bottom:3.105000px;}
.y4d_c01013{bottom:7.228371px;}
.y2b_c01013{bottom:47.715000px;}
.y2a_c01013{bottom:66.465000px;}
.y29_c01013{bottom:85.065000px;}
.y28_c01013{bottom:103.065000px;}
.y27_c01013{bottom:121.815000px;}
.y4c_c01013{bottom:139.815000px;}
.y26_c01013{bottom:140.115000px;}
.y4b_c01013{bottom:157.665000px;}
.y25_c01013{bottom:158.265000px;}
.y4a_c01013{bottom:175.965000px;}
.y24_c01013{bottom:176.865000px;}
.y23_c01013{bottom:194.715000px;}
.y22_c01013{bottom:213.315000px;}
.y49_c01013{bottom:229.965000px;}
.y21_c01013{bottom:231.615000px;}
.y20_c01013{bottom:249.765000px;}
.y48_c01013{bottom:266.715000px;}
.y1f_c01013{bottom:267.765000px;}
.y47_c01013{bottom:285.015000px;}
.y1e_c01013{bottom:286.215000px;}
.y1d_c01013{bottom:302.415000px;}
.y46_c01013{bottom:303.165000px;}
.y45_c01013{bottom:321.315000px;}
.y1c_c01013{bottom:321.765000px;}
.y44_c01013{bottom:339.615000px;}
.y1b_c01013{bottom:340.515000px;}
.y43_c01013{bottom:357.765000px;}
.y1a_c01013{bottom:358.215000px;}
.y42_c01013{bottom:375.765000px;}
.y19_c01013{bottom:378.015000px;}
.y41_c01013{bottom:393.915000px;}
.y18_c01013{bottom:395.265000px;}
.y40_c01013{bottom:412.065000px;}
.y17_c01013{bottom:413.115000px;}
.y3f_c01013{bottom:430.365000px;}
.y16_c01013{bottom:431.415000px;}
.y3e_c01013{bottom:448.515000px;}
.y15_c01013{bottom:449.865000px;}
.y3d_c01013{bottom:466.215000px;}
.y14_c01013{bottom:467.415000px;}
.y3c_c01013{bottom:485.115000px;}
.y13_c01013{bottom:486.315000px;}
.y3b_c01013{bottom:502.665000px;}
.y12_c01013{bottom:504.315000px;}
.y3a_c01013{bottom:521.115000px;}
.y11_c01013{bottom:522.465000px;}
.y39_c01013{bottom:538.965000px;}
.y10_c01013{bottom:540.465000px;}
.y38_c01013{bottom:556.965000px;}
.yf_c01013{bottom:558.315000px;}
.y37_c01013{bottom:575.115000px;}
.ye_c01013{bottom:576.765000px;}
.y36_c01013{bottom:593.115000px;}
.yd_c01013{bottom:594.765000px;}
.y35_c01013{bottom:611.265000px;}
.yc_c01013{bottom:613.215000px;}
.y34_c01013{bottom:629.415000px;}
.yb_c01013{bottom:631.515000px;}
.y33_c01013{bottom:647.415000px;}
.ya_c01013{bottom:650.115000px;}
.y32_c01013{bottom:666.015000px;}
.y9_c01013{bottom:667.665000px;}
.y31_c01013{bottom:684.465000px;}
.y8_c01013{bottom:686.565000px;}
.y30_c01013{bottom:702.765000px;}
.y7_c01013{bottom:704.415000px;}
.y2f_c01013{bottom:721.365000px;}
.y6_c01013{bottom:723.315000px;}
.y2e_c01013{bottom:739.215000px;}
.y5_c01013{bottom:741.165000px;}
.y2d_c01013{bottom:757.365000px;}
.y4_c01013{bottom:760.365000px;}
.y2c_c01013{bottom:775.965000px;}
.y3_c01013{bottom:778.065000px;}
.y2_c01013{bottom:795.915000px;}
.y1_c01013{bottom:815.115000px;}
.h5_c01013{height:13.200074px;}
.h6_c01013{height:43.804688px;}
.h4_c01013{height:55.942383px;}
.h2_c01013{height:62.880000px;}
.h3_c01013{height:64.020000px;}
.h0_c01013{height:848.625000px;}
.h1_c01013{height:849.000000px;}
.w2_c01013{width:104.875500px;}
.w1_c01013{width:579.750000px;}
.w0_c01013{width:579.975000px;}
.x0_c01013{left:0.000000px;}
.x1_c01013{left:88.200000px;}
.xd_c01013{left:90.750000px;}
.xc_c01013{left:91.800000px;}
.x2_c01013{left:92.850000px;}
.x9_c01013{left:94.950000px;}
.x10_c01013{left:96.150000px;}
.x11_c01013{left:113.700000px;}
.xf_c01013{left:122.550000px;}
.xa_c01013{left:123.750000px;}
.x12_c01013{left:136.650000px;}
.x13_c01013{left:168.750000px;}
.x3_c01013{left:191.100000px;}
.xe_c01013{left:192.150000px;}
.x14_c01013{left:241.801758px;}
.x4_c01013{left:311.250000px;}
.x5_c01013{left:312.300000px;}
.x6_c01013{left:313.950000px;}
.x7_c01013{left:315.450000px;}
.x8_c01013{left:316.950000px;}
.xb_c01013{left:480.900000px;}
@media print{
.v0_c01013{vertical-align:0.000000pt;}
.ls1_c01013{letter-spacing:0.000000pt;}
.ls2_c01013{letter-spacing:2.666667pt;}
.ls3_c01013{letter-spacing:5.333333pt;}
.ls0_c01013{letter-spacing:8.533333pt;}
.ws2_c01013{word-spacing:-22.496000pt;}
.ws1_c01013{word-spacing:-20.746667pt;}
.ws3_c01013{word-spacing:-13.386667pt;}
.ws0_c01013{word-spacing:-12.586667pt;}
.ws4_c01013{word-spacing:0.000000pt;}
._25_c01013{margin-left:-13.866667pt;}
._f_c01013{margin-left:-12.106667pt;}
._23_c01013{margin-left:-10.346667pt;}
._2c_c01013{margin-left:-8.800000pt;}
._28_c01013{margin-left:-7.146667pt;}
._18_c01013{margin-left:-5.973333pt;}
._33_c01013{margin-left:-4.693333pt;}
._21_c01013{margin-left:-3.786667pt;}
._c_c01013{margin-left:-1.973333pt;}
._17_c01013{margin-left:-0.906667pt;}
._e_c01013{width:1.120000pt;}
._15_c01013{width:2.026667pt;}
._d_c01013{width:2.986667pt;}
._b_c01013{width:4.640000pt;}
._1d_c01013{width:5.653333pt;}
._6_c01013{width:6.613333pt;}
._a_c01013{width:7.626667pt;}
._1_c01013{width:8.640000pt;}
._0_c01013{width:9.546667pt;}
._1a_c01013{width:10.560000pt;}
._4_c01013{width:11.520000pt;}
._9_c01013{width:12.426667pt;}
._22_c01013{width:14.133333pt;}
._3_c01013{width:15.200000pt;}
._2a_c01013{width:16.586667pt;}
._8_c01013{width:17.653333pt;}
._12_c01013{width:18.560000pt;}
._7_c01013{width:19.733333pt;}
._2e_c01013{width:20.746667pt;}
._1b_c01013{width:21.706667pt;}
._1c_c01013{width:22.826667pt;}
._19_c01013{width:24.053333pt;}
._1e_c01013{width:25.760000pt;}
._20_c01013{width:26.720000pt;}
._32_c01013{width:27.893333pt;}
._16_c01013{width:29.440000pt;}
._31_c01013{width:31.146667pt;}
._5_c01013{width:32.746667pt;}
._1f_c01013{width:34.826667pt;}
._2f_c01013{width:39.200000pt;}
._30_c01013{width:43.413333pt;}
._26_c01013{width:44.906667pt;}
._27_c01013{width:50.453333pt;}
._10_c01013{width:62.506667pt;}
._13_c01013{width:75.680000pt;}
._29_c01013{width:76.586667pt;}
._2b_c01013{width:77.706667pt;}
._24_c01013{width:84.213333pt;}
._11_c01013{width:96.106667pt;}
._2d_c01013{width:175.146667pt;}
._2_c01013{width:184.320000pt;}
._14_c01013{width:302.453333pt;}
.fs2_c01013{font-size:42.666667pt;}
.fs1_c01013{font-size:50.666667pt;}
.fs0_c01013{font-size:53.333333pt;}
.y0_c01013{bottom:0.000000pt;}
.y4e_c01013{bottom:2.760000pt;}
.y4d_c01013{bottom:6.425219pt;}
.y2b_c01013{bottom:42.413333pt;}
.y2a_c01013{bottom:59.080000pt;}
.y29_c01013{bottom:75.613333pt;}
.y28_c01013{bottom:91.613333pt;}
.y27_c01013{bottom:108.280000pt;}
.y4c_c01013{bottom:124.280000pt;}
.y26_c01013{bottom:124.546667pt;}
.y4b_c01013{bottom:140.146667pt;}
.y25_c01013{bottom:140.680000pt;}
.y4a_c01013{bottom:156.413333pt;}
.y24_c01013{bottom:157.213333pt;}
.y23_c01013{bottom:173.080000pt;}
.y22_c01013{bottom:189.613333pt;}
.y49_c01013{bottom:204.413333pt;}
.y21_c01013{bottom:205.880000pt;}
.y20_c01013{bottom:222.013333pt;}
.y48_c01013{bottom:237.080000pt;}
.y1f_c01013{bottom:238.013333pt;}
.y47_c01013{bottom:253.346667pt;}
.y1e_c01013{bottom:254.413333pt;}
.y1d_c01013{bottom:268.813333pt;}
.y46_c01013{bottom:269.480000pt;}
.y45_c01013{bottom:285.613333pt;}
.y1c_c01013{bottom:286.013333pt;}
.y44_c01013{bottom:301.880000pt;}
.y1b_c01013{bottom:302.680000pt;}
.y43_c01013{bottom:318.013333pt;}
.y1a_c01013{bottom:318.413333pt;}
.y42_c01013{bottom:334.013333pt;}
.y19_c01013{bottom:336.013333pt;}
.y41_c01013{bottom:350.146667pt;}
.y18_c01013{bottom:351.346667pt;}
.y40_c01013{bottom:366.280000pt;}
.y17_c01013{bottom:367.213333pt;}
.y3f_c01013{bottom:382.546667pt;}
.y16_c01013{bottom:383.480000pt;}
.y3e_c01013{bottom:398.680000pt;}
.y15_c01013{bottom:399.880000pt;}
.y3d_c01013{bottom:414.413333pt;}
.y14_c01013{bottom:415.480000pt;}
.y3c_c01013{bottom:431.213333pt;}
.y13_c01013{bottom:432.280000pt;}
.y3b_c01013{bottom:446.813333pt;}
.y12_c01013{bottom:448.280000pt;}
.y3a_c01013{bottom:463.213333pt;}
.y11_c01013{bottom:464.413333pt;}
.y39_c01013{bottom:479.080000pt;}
.y10_c01013{bottom:480.413333pt;}
.y38_c01013{bottom:495.080000pt;}
.yf_c01013{bottom:496.280000pt;}
.y37_c01013{bottom:511.213333pt;}
.ye_c01013{bottom:512.680000pt;}
.y36_c01013{bottom:527.213333pt;}
.yd_c01013{bottom:528.680000pt;}
.y35_c01013{bottom:543.346667pt;}
.yc_c01013{bottom:545.080000pt;}
.y34_c01013{bottom:559.480000pt;}
.yb_c01013{bottom:561.346667pt;}
.y33_c01013{bottom:575.480000pt;}
.ya_c01013{bottom:577.880000pt;}
.y32_c01013{bottom:592.013333pt;}
.y9_c01013{bottom:593.480000pt;}
.y31_c01013{bottom:608.413333pt;}
.y8_c01013{bottom:610.280000pt;}
.y30_c01013{bottom:624.680000pt;}
.y7_c01013{bottom:626.146667pt;}
.y2f_c01013{bottom:641.213333pt;}
.y6_c01013{bottom:642.946667pt;}
.y2e_c01013{bottom:657.080000pt;}
.y5_c01013{bottom:658.813333pt;}
.y2d_c01013{bottom:673.213333pt;}
.y4_c01013{bottom:675.880000pt;}
.y2c_c01013{bottom:689.746667pt;}
.y3_c01013{bottom:691.613333pt;}
.y2_c01013{bottom:707.480000pt;}
.y1_c01013{bottom:724.546667pt;}
.h5_c01013{height:11.733399pt;}
.h6_c01013{height:38.937500pt;}
.h4_c01013{height:49.726562pt;}
.h2_c01013{height:55.893333pt;}
.h3_c01013{height:56.906667pt;}
.h0_c01013{height:754.333333pt;}
.h1_c01013{height:754.666667pt;}
.w2_c01013{width:93.222667pt;}
.w1_c01013{width:515.333333pt;}
.w0_c01013{width:515.533333pt;}
.x0_c01013{left:0.000000pt;}
.x1_c01013{left:78.400000pt;}
.xd_c01013{left:80.666667pt;}
.xc_c01013{left:81.600000pt;}
.x2_c01013{left:82.533333pt;}
.x9_c01013{left:84.400000pt;}
.x10_c01013{left:85.466667pt;}
.x11_c01013{left:101.066667pt;}
.xf_c01013{left:108.933333pt;}
.xa_c01013{left:110.000000pt;}
.x12_c01013{left:121.466667pt;}
.x13_c01013{left:150.000000pt;}
.x3_c01013{left:169.866667pt;}
.xe_c01013{left:170.800000pt;}
.x14_c01013{left:214.934896pt;}
.x4_c01013{left:276.666667pt;}
.x5_c01013{left:277.600000pt;}
.x6_c01013{left:279.066667pt;}
.x7_c01013{left:280.400000pt;}
.x8_c01013{left:281.733333pt;}
.xb_c01013{left:427.466667pt;}
}





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

.ir_c01014:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01014{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01014;src:url('chunks/assets/font_fc4924ff5a138ba66d1fbcdc.woff2')format("woff");}.ff1_c01014{font-family:ff1_c01014;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01014;src:url('chunks/assets/font_9c1da1602d8662edeed0cba5.woff2')format("woff");}.ff2_c01014{font-family:ff2_c01014;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01014;src:url('chunks/assets/font_d2fd6238d949ede3056da7b8.woff2')format("woff");}.ff3_c01014{font-family:ff3_c01014;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01014;src:url('chunks/assets/font_7c7b114d6d8510036cb24ad0.woff2')format("woff");}.ff4_c01014{font-family:ff4_c01014;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01014;src:url('chunks/assets/font_2fb2411a1ca43b25d49219d1.woff2')format("woff");}.ff5_c01014{font-family:ff5_c01014;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01014;src:url('chunks/assets/font_ade230a61bfe981b2bac05a8.woff2')format("woff");}.ff6_c01014{font-family:ff6_c01014;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01014;src:url('chunks/assets/font_61dc6f67399cb3b689c865a8.woff2')format("woff");}.ff7_c01014{font-family:ff7_c01014;line-height:1.012793;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c01014;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff8_c01014{font-family:ff8_c01014;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01014{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01014{vertical-align:0.000000px;}
.ls2_c01014{letter-spacing:0.000000px;}
.ls3_c01014{letter-spacing:3.000000px;}
.ls0_c01014{letter-spacing:9.240000px;}
.ls1_c01014{letter-spacing:15.000000px;}
.sc__c01014{text-shadow:none;}
.sc0_c01014{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01014{-webkit-text-stroke:0px transparent;}
.sc0_c01014{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01014{word-spacing:-29.700000px;}
.ws2_c01014{word-spacing:-23.760000px;}
.ws0_c01014{word-spacing:-14.160000px;}
.ws3_c01014{word-spacing:-4.296000px;}
.ws4_c01014{word-spacing:0.000000px;}
._13_c01014{margin-left:-19.596000px;}
._39_c01014{margin-left:-14.892000px;}
._40_c01014{margin-left:-13.584000px;}
._19_c01014{margin-left:-9.900000px;}
._3b_c01014{margin-left:-7.200000px;}
._15_c01014{margin-left:-5.760000px;}
._28_c01014{margin-left:-3.792000px;}
._10_c01014{margin-left:-2.676000px;}
._e_c01014{margin-left:-1.488000px;}
._d_c01014{width:1.488000px;}
._a_c01014{width:3.024000px;}
._b_c01014{width:4.992000px;}
._18_c01014{width:6.132000px;}
._9_c01014{width:7.392000px;}
._24_c01014{width:8.580000px;}
._8_c01014{width:9.840000px;}
._c_c01014{width:11.472000px;}
._16_c01014{width:12.876000px;}
._11_c01014{width:14.628000px;}
._20_c01014{width:15.684000px;}
._14_c01014{width:17.088000px;}
._1e_c01014{width:18.228000px;}
._6_c01014{width:19.320000px;}
._3f_c01014{width:20.784000px;}
._26_c01014{width:21.852000px;}
._1_c01014{width:23.016000px;}
._0_c01014{width:24.624000px;}
._3_c01014{width:27.096000px;}
._4_c01014{width:28.992000px;}
._31_c01014{width:31.188000px;}
._5_c01014{width:32.520000px;}
._2a_c01014{width:36.744000px;}
._1d_c01014{width:38.700000px;}
._32_c01014{width:40.692000px;}
._2_c01014{width:45.216000px;}
._1c_c01014{width:51.408000px;}
._3e_c01014{width:85.008000px;}
._3d_c01014{width:86.964000px;}
._37_c01014{width:89.760000px;}
._35_c01014{width:92.028000px;}
._34_c01014{width:93.444000px;}
._38_c01014{width:95.580000px;}
._36_c01014{width:97.224000px;}
._2e_c01014{width:98.700000px;}
._2d_c01014{width:102.732000px;}
._2b_c01014{width:104.592000px;}
._29_c01014{width:109.056000px;}
._2c_c01014{width:110.388000px;}
._25_c01014{width:112.992000px;}
._21_c01014{width:114.444000px;}
._22_c01014{width:116.232000px;}
._17_c01014{width:119.472000px;}
._27_c01014{width:124.068000px;}
._1a_c01014{width:125.832000px;}
._f_c01014{width:130.320000px;}
._12_c01014{width:136.560000px;}
._33_c01014{width:155.580000px;}
._3c_c01014{width:191.544000px;}
._41_c01014{width:201.408000px;}
._1b_c01014{width:205.956000px;}
._2f_c01014{width:225.480000px;}
._3a_c01014{width:249.840000px;}
._23_c01014{width:265.956000px;}
._1f_c01014{width:326.832000px;}
._30_c01014{width:434.448000px;}
._7_c01014{width:479.328000px;}
.fc2_c01014{color:transparent;}
.fc1_c01014{color:rgb(128,128,128);}
.fc0_c01014{color:rgb(0,0,0);}
.fs0_c01014{font-size:24.000000px;}
.fs3_c01014{font-size:45.000000px;}
.fs1_c01014{font-size:48.000000px;}
.fs2_c01014{font-size:60.000000px;}
.y0_c01014{bottom:0.000000px;}
.y2d_c01014{bottom:3.105000px;}
.y2c_c01014{bottom:7.228357px;}
.y2b_c01014{bottom:47.880000px;}
.y2a_c01014{bottom:64.080000px;}
.y29_c01014{bottom:82.680000px;}
.y28_c01014{bottom:100.980000px;}
.y27_c01014{bottom:119.580000px;}
.y26_c01014{bottom:139.080000px;}
.y25_c01014{bottom:155.880000px;}
.y24_c01014{bottom:174.180000px;}
.y23_c01014{bottom:192.480000px;}
.y22_c01014{bottom:210.330000px;}
.y21_c01014{bottom:229.230000px;}
.y20_c01014{bottom:246.780000px;}
.y1f_c01014{bottom:264.930000px;}
.y1e_c01014{bottom:283.230000px;}
.y1d_c01014{bottom:301.080000px;}
.y1c_c01014{bottom:318.930000px;}
.y1b_c01014{bottom:337.230000px;}
.y1a_c01014{bottom:355.680000px;}
.y19_c01014{bottom:373.680000px;}
.y18_c01014{bottom:391.530000px;}
.y17_c01014{bottom:409.680000px;}
.y16_c01014{bottom:427.380000px;}
.y15_c01014{bottom:444.930000px;}
.y14_c01014{bottom:463.380000px;}
.y13_c01014{bottom:481.230000px;}
.y12_c01014{bottom:499.530000px;}
.y11_c01014{bottom:517.080000px;}
.y10_c01014{bottom:534.030000px;}
.yf_c01014{bottom:551.880000px;}
.ye_c01014{bottom:570.330000px;}
.yd_c01014{bottom:588.330000px;}
.yc_c01014{bottom:606.180000px;}
.yb_c01014{bottom:624.330000px;}
.ya_c01014{bottom:642.030000px;}
.y9_c01014{bottom:660.480000px;}
.y8_c01014{bottom:678.030000px;}
.y7_c01014{bottom:694.980000px;}
.y6_c01014{bottom:713.880000px;}
.y5_c01014{bottom:732.480000px;}
.y4_c01014{bottom:750.330000px;}
.y3_c01014{bottom:768.480000px;}
.y2_c01014{bottom:786.480000px;}
.y1_c01014{bottom:806.580000px;}
.h4_c01014{height:13.200074px;}
.h2_c01014{height:30.386719px;}
.h5_c01014{height:43.804688px;}
.h3_c01014{height:62.880000px;}
.h0_c01014{height:835.950000px;}
.h1_c01014{height:836.250000px;}
.w2_c01014{width:104.875500px;}
.w1_c01014{width:574.500000px;}
.w0_c01014{width:574.575000px;}
.x0_c01014{left:0.000000px;}
.x4_c01014{left:21.600000px;}
.x7_c01014{left:25.950000px;}
.xc_c01014{left:27.300000px;}
.x8_c01014{left:34.500000px;}
.xb_c01014{left:82.350000px;}
.x3_c01014{left:83.400000px;}
.x2_c01014{left:85.050000px;}
.x5_c01014{left:86.700000px;}
.x6_c01014{left:88.800000px;}
.x9_c01014{left:90.750000px;}
.xa_c01014{left:92.550000px;}
.x1_c01014{left:215.700000px;}
.xe_c01014{left:239.101730px;}
.xd_c01014{left:407.400000px;}
@media print{
.v0_c01014{vertical-align:0.000000pt;}
.ls2_c01014{letter-spacing:0.000000pt;}
.ls3_c01014{letter-spacing:2.666667pt;}
.ls0_c01014{letter-spacing:8.213333pt;}
.ls1_c01014{letter-spacing:13.333333pt;}
.ws1_c01014{word-spacing:-26.400000pt;}
.ws2_c01014{word-spacing:-21.120000pt;}
.ws0_c01014{word-spacing:-12.586667pt;}
.ws3_c01014{word-spacing:-3.818667pt;}
.ws4_c01014{word-spacing:0.000000pt;}
._13_c01014{margin-left:-17.418667pt;}
._39_c01014{margin-left:-13.237333pt;}
._40_c01014{margin-left:-12.074667pt;}
._19_c01014{margin-left:-8.800000pt;}
._3b_c01014{margin-left:-6.400000pt;}
._15_c01014{margin-left:-5.120000pt;}
._28_c01014{margin-left:-3.370667pt;}
._10_c01014{margin-left:-2.378667pt;}
._e_c01014{margin-left:-1.322667pt;}
._d_c01014{width:1.322667pt;}
._a_c01014{width:2.688000pt;}
._b_c01014{width:4.437333pt;}
._18_c01014{width:5.450667pt;}
._9_c01014{width:6.570667pt;}
._24_c01014{width:7.626667pt;}
._8_c01014{width:8.746667pt;}
._c_c01014{width:10.197333pt;}
._16_c01014{width:11.445333pt;}
._11_c01014{width:13.002667pt;}
._20_c01014{width:13.941333pt;}
._14_c01014{width:15.189333pt;}
._1e_c01014{width:16.202667pt;}
._6_c01014{width:17.173333pt;}
._3f_c01014{width:18.474667pt;}
._26_c01014{width:19.424000pt;}
._1_c01014{width:20.458667pt;}
._0_c01014{width:21.888000pt;}
._3_c01014{width:24.085333pt;}
._4_c01014{width:25.770667pt;}
._31_c01014{width:27.722667pt;}
._5_c01014{width:28.906667pt;}
._2a_c01014{width:32.661333pt;}
._1d_c01014{width:34.400000pt;}
._32_c01014{width:36.170667pt;}
._2_c01014{width:40.192000pt;}
._1c_c01014{width:45.696000pt;}
._3e_c01014{width:75.562667pt;}
._3d_c01014{width:77.301333pt;}
._37_c01014{width:79.786667pt;}
._35_c01014{width:81.802667pt;}
._34_c01014{width:83.061333pt;}
._38_c01014{width:84.960000pt;}
._36_c01014{width:86.421333pt;}
._2e_c01014{width:87.733333pt;}
._2d_c01014{width:91.317333pt;}
._2b_c01014{width:92.970667pt;}
._29_c01014{width:96.938667pt;}
._2c_c01014{width:98.122667pt;}
._25_c01014{width:100.437333pt;}
._21_c01014{width:101.728000pt;}
._22_c01014{width:103.317333pt;}
._17_c01014{width:106.197333pt;}
._27_c01014{width:110.282667pt;}
._1a_c01014{width:111.850667pt;}
._f_c01014{width:115.840000pt;}
._12_c01014{width:121.386667pt;}
._33_c01014{width:138.293333pt;}
._3c_c01014{width:170.261333pt;}
._41_c01014{width:179.029333pt;}
._1b_c01014{width:183.072000pt;}
._2f_c01014{width:200.426667pt;}
._3a_c01014{width:222.080000pt;}
._23_c01014{width:236.405333pt;}
._1f_c01014{width:290.517333pt;}
._30_c01014{width:386.176000pt;}
._7_c01014{width:426.069333pt;}
.fs0_c01014{font-size:21.333333pt;}
.fs3_c01014{font-size:40.000000pt;}
.fs1_c01014{font-size:42.666667pt;}
.fs2_c01014{font-size:53.333333pt;}
.y0_c01014{bottom:0.000000pt;}
.y2d_c01014{bottom:2.760000pt;}
.y2c_c01014{bottom:6.425206pt;}
.y2b_c01014{bottom:42.560000pt;}
.y2a_c01014{bottom:56.960000pt;}
.y29_c01014{bottom:73.493333pt;}
.y28_c01014{bottom:89.760000pt;}
.y27_c01014{bottom:106.293333pt;}
.y26_c01014{bottom:123.626667pt;}
.y25_c01014{bottom:138.560000pt;}
.y24_c01014{bottom:154.826667pt;}
.y23_c01014{bottom:171.093333pt;}
.y22_c01014{bottom:186.960000pt;}
.y21_c01014{bottom:203.760000pt;}
.y20_c01014{bottom:219.360000pt;}
.y1f_c01014{bottom:235.493333pt;}
.y1e_c01014{bottom:251.760000pt;}
.y1d_c01014{bottom:267.626667pt;}
.y1c_c01014{bottom:283.493333pt;}
.y1b_c01014{bottom:299.760000pt;}
.y1a_c01014{bottom:316.160000pt;}
.y19_c01014{bottom:332.160000pt;}
.y18_c01014{bottom:348.026667pt;}
.y17_c01014{bottom:364.160000pt;}
.y16_c01014{bottom:379.893333pt;}
.y15_c01014{bottom:395.493333pt;}
.y14_c01014{bottom:411.893333pt;}
.y13_c01014{bottom:427.760000pt;}
.y12_c01014{bottom:444.026667pt;}
.y11_c01014{bottom:459.626667pt;}
.y10_c01014{bottom:474.693333pt;}
.yf_c01014{bottom:490.560000pt;}
.ye_c01014{bottom:506.960000pt;}
.yd_c01014{bottom:522.960000pt;}
.yc_c01014{bottom:538.826667pt;}
.yb_c01014{bottom:554.960000pt;}
.ya_c01014{bottom:570.693333pt;}
.y9_c01014{bottom:587.093333pt;}
.y8_c01014{bottom:602.693333pt;}
.y7_c01014{bottom:617.760000pt;}
.y6_c01014{bottom:634.560000pt;}
.y5_c01014{bottom:651.093333pt;}
.y4_c01014{bottom:666.960000pt;}
.y3_c01014{bottom:683.093333pt;}
.y2_c01014{bottom:699.093333pt;}
.y1_c01014{bottom:716.960000pt;}
.h4_c01014{height:11.733399pt;}
.h2_c01014{height:27.010417pt;}
.h5_c01014{height:38.937500pt;}
.h3_c01014{height:55.893333pt;}
.h0_c01014{height:743.066667pt;}
.h1_c01014{height:743.333333pt;}
.w2_c01014{width:93.222667pt;}
.w1_c01014{width:510.666667pt;}
.w0_c01014{width:510.733333pt;}
.x0_c01014{left:0.000000pt;}
.x4_c01014{left:19.200000pt;}
.x7_c01014{left:23.066667pt;}
.xc_c01014{left:24.266667pt;}
.x8_c01014{left:30.666667pt;}
.xb_c01014{left:73.200000pt;}
.x3_c01014{left:74.133333pt;}
.x2_c01014{left:75.600000pt;}
.x5_c01014{left:77.066667pt;}
.x6_c01014{left:78.933333pt;}
.x9_c01014{left:80.666667pt;}
.xa_c01014{left:82.266667pt;}
.x1_c01014{left:191.733333pt;}
.xe_c01014{left:212.534871pt;}
.xd_c01014{left:362.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_c01015 {
    display:none;
  }
  .loading-indicator_c01015.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01015 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01015 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01015" -> "#page-container .classname_c01015")
 */
.pf_c01015 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01015 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01015.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01015 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01015 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01015 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01015 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01015 {overflow:visible;}
  }
}
.c_c01015 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01015 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01015:after { /* webkit #35443 */
  content: '';
}
.t_c01015:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01015 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01015 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01015 { /* info for Javascript */
  display:none;
}
.l_c01015 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01015 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01015 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01015:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01015{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01015;src:url('chunks/assets/font_4384196ddc25edb8cf6d25c7.woff2')format("woff");}.ff1_c01015{font-family:ff1_c01015;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01015;src:url('chunks/assets/font_426c55bb40951b43e4423976.woff2')format("woff");}.ff2_c01015{font-family:ff2_c01015;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01015;src:url('chunks/assets/font_d6339234b1e9abaaf1d9f63d.woff2')format("woff");}.ff3_c01015{font-family:ff3_c01015;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01015;src:url('chunks/assets/font_c91b90aaf0db6fea11bcba12.woff2')format("woff");}.ff4_c01015{font-family:ff4_c01015;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01015;src:url('chunks/assets/font_1fadcc72822abecb3a996760.woff2')format("woff");}.ff5_c01015{font-family:ff5_c01015;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01015;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff6_c01015{font-family:ff6_c01015;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01015{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01015{vertical-align:0.000000px;}
.ls6_c01015{letter-spacing:-12.000000px;}
.ls4_c01015{letter-spacing:0.000000px;}
.ls7_c01015{letter-spacing:3.000000px;}
.ls5_c01015{letter-spacing:6.000000px;}
.ls1_c01015{letter-spacing:6.405000px;}
.ls2_c01015{letter-spacing:9.000000px;}
.ls0_c01015{letter-spacing:18.000000px;}
.ls3_c01015{letter-spacing:23.493000px;}
.sc__c01015{text-shadow:none;}
.sc0_c01015{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01015{-webkit-text-stroke:0px transparent;}
.sc0_c01015{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01015{word-spacing:-35.295000px;}
.ws1_c01015{word-spacing:-23.160000px;}
.ws4_c01015{word-spacing:-15.060000px;}
.ws2_c01015{word-spacing:-14.160000px;}
.ws5_c01015{word-spacing:0.000000px;}
.ws3_c01015{word-spacing:10.800000px;}
._19_c01015{margin-left:-22.995000px;}
._36_c01015{margin-left:-17.160000px;}
._31_c01015{margin-left:-14.880000px;}
._1b_c01015{margin-left:-12.360000px;}
._2d_c01015{margin-left:-9.780000px;}
._1f_c01015{margin-left:-7.560000px;}
._15_c01015{margin-left:-5.640000px;}
._16_c01015{margin-left:-4.140000px;}
._d_c01015{margin-left:-2.100000px;}
._e_c01015{margin-left:-1.020000px;}
._13_c01015{width:1.980000px;}
._12_c01015{width:3.180000px;}
._10_c01015{width:4.860000px;}
._11_c01015{width:6.060000px;}
._1e_c01015{width:7.080000px;}
._1a_c01015{width:8.580000px;}
._22_c01015{width:9.696000px;}
._0_c01015{width:11.220000px;}
._17_c01015{width:12.300000px;}
._9_c01015{width:13.620000px;}
._21_c01015{width:15.720000px;}
._2_c01015{width:17.100000px;}
._c_c01015{width:18.120000px;}
._3_c01015{width:20.160000px;}
._34_c01015{width:21.240000px;}
._5_c01015{width:22.440000px;}
._6_c01015{width:24.180000px;}
._25_c01015{width:25.500000px;}
._b_c01015{width:26.640000px;}
._8_c01015{width:28.080000px;}
._26_c01015{width:29.100000px;}
._7_c01015{width:31.440000px;}
._29_c01015{width:33.360000px;}
._2e_c01015{width:34.500000px;}
._4_c01015{width:37.200000px;}
._3d_c01015{width:38.232000px;}
._30_c01015{width:40.920000px;}
._a_c01015{width:42.840000px;}
._3f_c01015{width:47.841000px;}
._f_c01015{width:48.960000px;}
._40_c01015{width:51.339000px;}
._35_c01015{width:63.960000px;}
._41_c01015{width:71.724000px;}
._37_c01015{width:73.020000px;}
._3b_c01015{width:82.440000px;}
._3c_c01015{width:83.640000px;}
._33_c01015{width:85.824000px;}
._3e_c01015{width:87.240000px;}
._39_c01015{width:90.744000px;}
._3a_c01015{width:98.784000px;}
._38_c01015{width:101.160000px;}
._32_c01015{width:102.300000px;}
._2a_c01015{width:105.840000px;}
._24_c01015{width:110.700000px;}
._14_c01015{width:116.220000px;}
._20_c01015{width:118.500000px;}
._1d_c01015{width:121.560000px;}
._23_c01015{width:123.120000px;}
._2f_c01015{width:129.000000px;}
._1c_c01015{width:130.980000px;}
._1_c01015{width:210.540000px;}
._18_c01015{width:300.600000px;}
._27_c01015{width:315.120000px;}
._2b_c01015{width:397.692000px;}
._28_c01015{width:699.660000px;}
._2c_c01015{width:710.364000px;}
.fc2_c01015{color:transparent;}
.fc1_c01015{color:rgb(128,128,128);}
.fc0_c01015{color:rgb(0,0,0);}
.fs2_c01015{font-size:24.000000px;}
.fs1_c01015{font-size:45.000000px;}
.fs4_c01015{font-size:48.000000px;}
.fs3_c01015{font-size:57.000000px;}
.fs0_c01015{font-size:60.000000px;}
.y0_c01015{bottom:0.000000px;}
.y2d_c01015{bottom:3.105000px;}
.y2c_c01015{bottom:7.228371px;}
.y2b_c01015{bottom:37.515000px;}
.y2a_c01015{bottom:57.165000px;}
.y29_c01015{bottom:76.665000px;}
.y28_c01015{bottom:94.815000px;}
.y27_c01015{bottom:112.365000px;}
.y26_c01015{bottom:131.265000px;}
.y25_c01015{bottom:149.265000px;}
.y24_c01015{bottom:167.415000px;}
.y23_c01015{bottom:185.715000px;}
.y22_c01015{bottom:204.315000px;}
.y21_c01015{bottom:221.865000px;}
.y20_c01015{bottom:240.765000px;}
.y1f_c01015{bottom:259.215000px;}
.y1e_c01015{bottom:277.215000px;}
.y1d_c01015{bottom:295.065000px;}
.y1c_c01015{bottom:313.515000px;}
.y1b_c01015{bottom:331.815000px;}
.y1a_c01015{bottom:350.115000px;}
.y19_c01015{bottom:367.965000px;}
.y18_c01015{bottom:386.415000px;}
.y17_c01015{bottom:404.115000px;}
.y16_c01015{bottom:422.865000px;}
.y15_c01015{bottom:440.865000px;}
.y14_c01015{bottom:459.015000px;}
.y13_c01015{bottom:477.615000px;}
.y12_c01015{bottom:495.465000px;}
.y11_c01015{bottom:514.365000px;}
.y10_c01015{bottom:531.915000px;}
.yf_c01015{bottom:549.765000px;}
.ye_c01015{bottom:567.015000px;}
.yd_c01015{bottom:586.215000px;}
.yc_c01015{bottom:604.515000px;}
.yb_c01015{bottom:623.115000px;}
.ya_c01015{bottom:639.615000px;}
.y9_c01015{bottom:657.915000px;}
.y8_c01015{bottom:676.815000px;}
.y7_c01015{bottom:694.215000px;}
.y6_c01015{bottom:712.815000px;}
.y5_c01015{bottom:730.065000px;}
.y4_c01015{bottom:748.215000px;}
.y3_c01015{bottom:766.515000px;}
.y2_c01015{bottom:784.365000px;}
.y1_c01015{bottom:803.565000px;}
.h4_c01015{height:13.200074px;}
.h5_c01015{height:43.804688px;}
.h3_c01015{height:62.880000px;}
.h2_c01015{height:64.020000px;}
.h0_c01015{height:848.625000px;}
.h1_c01015{height:849.000000px;}
.w2_c01015{width:104.875500px;}
.w1_c01015{width:579.750000px;}
.w0_c01015{width:579.975000px;}
.x0_c01015{left:0.000000px;}
.x3_c01015{left:19.950000px;}
.x2_c01015{left:26.250000px;}
.x4_c01015{left:86.400000px;}
.x1_c01015{left:88.050000px;}
.x5_c01015{left:89.400000px;}
.x6_c01015{left:91.200000px;}
.x7_c01015{left:92.250000px;}
.x8_c01015{left:93.750000px;}
.xb_c01015{left:96.450000px;}
.xd_c01015{left:97.500000px;}
.xe_c01015{left:98.850000px;}
.x11_c01015{left:99.900000px;}
.x10_c01015{left:100.950000px;}
.x12_c01015{left:102.150000px;}
.x13_c01015{left:103.200000px;}
.xa_c01015{left:114.750000px;}
.xc_c01015{left:117.000000px;}
.x9_c01015{left:118.500000px;}
.xf_c01015{left:120.750000px;}
.x15_c01015{left:241.801758px;}
.x14_c01015{left:482.850000px;}
@media print{
.v0_c01015{vertical-align:0.000000pt;}
.ls6_c01015{letter-spacing:-10.666667pt;}
.ls4_c01015{letter-spacing:0.000000pt;}
.ls7_c01015{letter-spacing:2.666667pt;}
.ls5_c01015{letter-spacing:5.333333pt;}
.ls1_c01015{letter-spacing:5.693333pt;}
.ls2_c01015{letter-spacing:8.000000pt;}
.ls0_c01015{letter-spacing:16.000000pt;}
.ls3_c01015{letter-spacing:20.882667pt;}
.ws0_c01015{word-spacing:-31.373333pt;}
.ws1_c01015{word-spacing:-20.586667pt;}
.ws4_c01015{word-spacing:-13.386667pt;}
.ws2_c01015{word-spacing:-12.586667pt;}
.ws5_c01015{word-spacing:0.000000pt;}
.ws3_c01015{word-spacing:9.600000pt;}
._19_c01015{margin-left:-20.440000pt;}
._36_c01015{margin-left:-15.253333pt;}
._31_c01015{margin-left:-13.226667pt;}
._1b_c01015{margin-left:-10.986667pt;}
._2d_c01015{margin-left:-8.693333pt;}
._1f_c01015{margin-left:-6.720000pt;}
._15_c01015{margin-left:-5.013333pt;}
._16_c01015{margin-left:-3.680000pt;}
._d_c01015{margin-left:-1.866667pt;}
._e_c01015{margin-left:-0.906667pt;}
._13_c01015{width:1.760000pt;}
._12_c01015{width:2.826667pt;}
._10_c01015{width:4.320000pt;}
._11_c01015{width:5.386667pt;}
._1e_c01015{width:6.293333pt;}
._1a_c01015{width:7.626667pt;}
._22_c01015{width:8.618667pt;}
._0_c01015{width:9.973333pt;}
._17_c01015{width:10.933333pt;}
._9_c01015{width:12.106667pt;}
._21_c01015{width:13.973333pt;}
._2_c01015{width:15.200000pt;}
._c_c01015{width:16.106667pt;}
._3_c01015{width:17.920000pt;}
._34_c01015{width:18.880000pt;}
._5_c01015{width:19.946667pt;}
._6_c01015{width:21.493333pt;}
._25_c01015{width:22.666667pt;}
._b_c01015{width:23.680000pt;}
._8_c01015{width:24.960000pt;}
._26_c01015{width:25.866667pt;}
._7_c01015{width:27.946667pt;}
._29_c01015{width:29.653333pt;}
._2e_c01015{width:30.666667pt;}
._4_c01015{width:33.066667pt;}
._3d_c01015{width:33.984000pt;}
._30_c01015{width:36.373333pt;}
._a_c01015{width:38.080000pt;}
._3f_c01015{width:42.525333pt;}
._f_c01015{width:43.520000pt;}
._40_c01015{width:45.634667pt;}
._35_c01015{width:56.853333pt;}
._41_c01015{width:63.754667pt;}
._37_c01015{width:64.906667pt;}
._3b_c01015{width:73.280000pt;}
._3c_c01015{width:74.346667pt;}
._33_c01015{width:76.288000pt;}
._3e_c01015{width:77.546667pt;}
._39_c01015{width:80.661333pt;}
._3a_c01015{width:87.808000pt;}
._38_c01015{width:89.920000pt;}
._32_c01015{width:90.933333pt;}
._2a_c01015{width:94.080000pt;}
._24_c01015{width:98.400000pt;}
._14_c01015{width:103.306667pt;}
._20_c01015{width:105.333333pt;}
._1d_c01015{width:108.053333pt;}
._23_c01015{width:109.440000pt;}
._2f_c01015{width:114.666667pt;}
._1c_c01015{width:116.426667pt;}
._1_c01015{width:187.146667pt;}
._18_c01015{width:267.200000pt;}
._27_c01015{width:280.106667pt;}
._2b_c01015{width:353.504000pt;}
._28_c01015{width:621.920000pt;}
._2c_c01015{width:631.434667pt;}
.fs2_c01015{font-size:21.333333pt;}
.fs1_c01015{font-size:40.000000pt;}
.fs4_c01015{font-size:42.666667pt;}
.fs3_c01015{font-size:50.666667pt;}
.fs0_c01015{font-size:53.333333pt;}
.y0_c01015{bottom:0.000000pt;}
.y2d_c01015{bottom:2.760000pt;}
.y2c_c01015{bottom:6.425219pt;}
.y2b_c01015{bottom:33.346667pt;}
.y2a_c01015{bottom:50.813333pt;}
.y29_c01015{bottom:68.146667pt;}
.y28_c01015{bottom:84.280000pt;}
.y27_c01015{bottom:99.880000pt;}
.y26_c01015{bottom:116.680000pt;}
.y25_c01015{bottom:132.680000pt;}
.y24_c01015{bottom:148.813333pt;}
.y23_c01015{bottom:165.080000pt;}
.y22_c01015{bottom:181.613333pt;}
.y21_c01015{bottom:197.213333pt;}
.y20_c01015{bottom:214.013333pt;}
.y1f_c01015{bottom:230.413333pt;}
.y1e_c01015{bottom:246.413333pt;}
.y1d_c01015{bottom:262.280000pt;}
.y1c_c01015{bottom:278.680000pt;}
.y1b_c01015{bottom:294.946667pt;}
.y1a_c01015{bottom:311.213333pt;}
.y19_c01015{bottom:327.080000pt;}
.y18_c01015{bottom:343.480000pt;}
.y17_c01015{bottom:359.213333pt;}
.y16_c01015{bottom:375.880000pt;}
.y15_c01015{bottom:391.880000pt;}
.y14_c01015{bottom:408.013333pt;}
.y13_c01015{bottom:424.546667pt;}
.y12_c01015{bottom:440.413333pt;}
.y11_c01015{bottom:457.213333pt;}
.y10_c01015{bottom:472.813333pt;}
.yf_c01015{bottom:488.680000pt;}
.ye_c01015{bottom:504.013333pt;}
.yd_c01015{bottom:521.080000pt;}
.yc_c01015{bottom:537.346667pt;}
.yb_c01015{bottom:553.880000pt;}
.ya_c01015{bottom:568.546667pt;}
.y9_c01015{bottom:584.813333pt;}
.y8_c01015{bottom:601.613333pt;}
.y7_c01015{bottom:617.080000pt;}
.y6_c01015{bottom:633.613333pt;}
.y5_c01015{bottom:648.946667pt;}
.y4_c01015{bottom:665.080000pt;}
.y3_c01015{bottom:681.346667pt;}
.y2_c01015{bottom:697.213333pt;}
.y1_c01015{bottom:714.280000pt;}
.h4_c01015{height:11.733399pt;}
.h5_c01015{height:38.937500pt;}
.h3_c01015{height:55.893333pt;}
.h2_c01015{height:56.906667pt;}
.h0_c01015{height:754.333333pt;}
.h1_c01015{height:754.666667pt;}
.w2_c01015{width:93.222667pt;}
.w1_c01015{width:515.333333pt;}
.w0_c01015{width:515.533333pt;}
.x0_c01015{left:0.000000pt;}
.x3_c01015{left:17.733333pt;}
.x2_c01015{left:23.333333pt;}
.x4_c01015{left:76.800000pt;}
.x1_c01015{left:78.266667pt;}
.x5_c01015{left:79.466667pt;}
.x6_c01015{left:81.066667pt;}
.x7_c01015{left:82.000000pt;}
.x8_c01015{left:83.333333pt;}
.xb_c01015{left:85.733333pt;}
.xd_c01015{left:86.666667pt;}
.xe_c01015{left:87.866667pt;}
.x11_c01015{left:88.800000pt;}
.x10_c01015{left:89.733333pt;}
.x12_c01015{left:90.800000pt;}
.x13_c01015{left:91.733333pt;}
.xa_c01015{left:102.000000pt;}
.xc_c01015{left:104.000000pt;}
.x9_c01015{left:105.333333pt;}
.xf_c01015{left:107.333333pt;}
.x15_c01015{left:214.934896pt;}
.x14_c01015{left:429.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_c01016 {
    display:none;
  }
  .loading-indicator_c01016.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01016 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01016 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01016" -> "#page-container .classname_c01016")
 */
.pf_c01016 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01016 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01016.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01016 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01016 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01016 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01016 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01016 {overflow:visible;}
  }
}
.c_c01016 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01016 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01016:after { /* webkit #35443 */
  content: '';
}
.t_c01016:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01016 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01016 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01016 { /* info for Javascript */
  display:none;
}
.l_c01016 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01016 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01016 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01016:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01016{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01016;src:url('chunks/assets/font_270eda044d86de80e5d1fb2a.woff2')format("woff");}.ff1_c01016{font-family:ff1_c01016;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01016;src:url('chunks/assets/font_7e4afc4e9a8b7ecd024a4ee1.woff2')format("woff");}.ff2_c01016{font-family:ff2_c01016;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01016;src:url('chunks/assets/font_001d8539555fb6a6e53111fa.woff2')format("woff");}.ff3_c01016{font-family:ff3_c01016;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01016;src:url('chunks/assets/font_9e70a0fef9a1e414612353dd.woff2')format("woff");}.ff4_c01016{font-family:ff4_c01016;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01016;src:url('chunks/assets/font_58625bd98fb7da16da4b5f92.woff2')format("woff");}.ff5_c01016{font-family:ff5_c01016;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01016;src:url('chunks/assets/font_a3bb75f1403f9f96ac88d19b.woff2')format("woff");}.ff6_c01016{font-family:ff6_c01016;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01016;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff7_c01016{font-family:ff7_c01016;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01016{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c01016{vertical-align:-1.200000px;}
.v0_c01016{vertical-align:0.000000px;}
.ls7_c01016{letter-spacing:-12.000000px;}
.ls5_c01016{letter-spacing:0.000000px;}
.ls1_c01016{letter-spacing:3.432000px;}
.ls4_c01016{letter-spacing:4.440000px;}
.ls6_c01016{letter-spacing:6.000000px;}
.ls3_c01016{letter-spacing:7.800000px;}
.ls0_c01016{letter-spacing:9.615000px;}
.ls2_c01016{letter-spacing:179.340000px;}
.sc__c01016{text-shadow:none;}
.sc0_c01016{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01016{-webkit-text-stroke:0px transparent;}
.sc0_c01016{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c01016{word-spacing:-23.340000px;}
.ws6_c01016{word-spacing:-15.060000px;}
.ws0_c01016{word-spacing:-14.160000px;}
.ws1_c01016{word-spacing:-13.554000px;}
.ws2_c01016{word-spacing:-12.744000px;}
.ws5_c01016{word-spacing:-2.160000px;}
.ws7_c01016{word-spacing:0.000000px;}
.ws3_c01016{word-spacing:0.600000px;}
._18_c01016{margin-left:-19.500000px;}
._21_c01016{margin-left:-13.560000px;}
._1b_c01016{margin-left:-12.060000px;}
._30_c01016{margin-left:-10.620000px;}
._5_c01016{margin-left:-8.340000px;}
._6_c01016{margin-left:-5.820000px;}
._a_c01016{margin-left:-4.740000px;}
._3_c01016{margin-left:-3.360000px;}
._8_c01016{margin-left:-1.320000px;}
._1_c01016{width:1.680000px;}
._0_c01016{width:2.880000px;}
._c_c01016{width:4.080000px;}
._b_c01016{width:5.760000px;}
._d_c01016{width:6.900000px;}
._f_c01016{width:8.220000px;}
._17_c01016{width:9.378000px;}
._13_c01016{width:10.680000px;}
._e_c01016{width:12.240000px;}
._10_c01016{width:13.260000px;}
._20_c01016{width:15.192000px;}
._1d_c01016{width:16.500000px;}
._19_c01016{width:17.520000px;}
._2_c01016{width:18.660000px;}
._12_c01016{width:20.340000px;}
._15_c01016{width:21.816000px;}
._1a_c01016{width:23.460000px;}
._7_c01016{width:24.480000px;}
._1c_c01016{width:25.740000px;}
._4_c01016{width:27.240000px;}
._16_c01016{width:28.818000px;}
._2b_c01016{width:30.180000px;}
._11_c01016{width:32.040000px;}
._1f_c01016{width:35.256000px;}
._36_c01016{width:36.720000px;}
._9_c01016{width:39.180000px;}
._2a_c01016{width:47.580000px;}
._22_c01016{width:49.260000px;}
._34_c01016{width:85.080000px;}
._31_c01016{width:89.280000px;}
._2d_c01016{width:90.306000px;}
._32_c01016{width:93.684000px;}
._2f_c01016{width:99.402000px;}
._2e_c01016{width:100.740000px;}
._29_c01016{width:101.940000px;}
._2c_c01016{width:103.380000px;}
._35_c01016{width:104.940000px;}
._28_c01016{width:109.182000px;}
._27_c01016{width:112.800000px;}
._14_c01016{width:116.088000px;}
._33_c01016{width:121.176000px;}
._25_c01016{width:122.688000px;}
._26_c01016{width:130.800000px;}
._1e_c01016{width:145.962000px;}
._23_c01016{width:222.420000px;}
._24_c01016{width:260.760000px;}
.fc2_c01016{color:transparent;}
.fc1_c01016{color:rgb(128,128,128);}
.fc0_c01016{color:rgb(0,0,0);}
.fs6_c01016{font-size:48.000000px;}
.fs1_c01016{font-size:54.000000px;}
.fs4_c01016{font-size:57.000000px;}
.fs0_c01016{font-size:60.000000px;}
.fs3_c01016{font-size:63.000000px;}
.fs2_c01016{font-size:69.000000px;}
.fs5_c01016{font-size:72.000000px;}
.y0_c01016{bottom:0.000000px;}
.y40_c01016{bottom:3.105000px;}
.y3f_c01016{bottom:7.228363px;}
.y3e_c01016{bottom:43.200000px;}
.y3b_c01016{bottom:62.100000px;}
.y3a_c01016{bottom:79.650000px;}
.y39_c01016{bottom:98.250000px;}
.y38_c01016{bottom:116.400000px;}
.y3d_c01016{bottom:116.550000px;}
.y3c_c01016{bottom:134.700000px;}
.y37_c01016{bottom:135.000000px;}
.y36_c01016{bottom:153.000000px;}
.y35_c01016{bottom:171.750000px;}
.y34_c01016{bottom:189.450000px;}
.y33_c01016{bottom:207.300000px;}
.y32_c01016{bottom:226.200000px;}
.y31_c01016{bottom:243.750000px;}
.y30_c01016{bottom:262.350000px;}
.y2f_c01016{bottom:279.750000px;}
.y2e_c01016{bottom:297.750000px;}
.y2d_c01016{bottom:316.350000px;}
.y2c_c01016{bottom:334.200000px;}
.y2b_c01016{bottom:352.650000px;}
.y2a_c01016{bottom:370.350000px;}
.y29_c01016{bottom:389.100000px;}
.y28_c01016{bottom:406.350000px;}
.y27_c01016{bottom:424.950000px;}
.y26_c01016{bottom:443.100000px;}
.y25_c01016{bottom:461.100000px;}
.y24_c01016{bottom:478.950000px;}
.y11_c01016{bottom:494.400000px;}
.y23_c01016{bottom:496.800000px;}
.y22_c01016{bottom:498.750000px;}
.y10_c01016{bottom:514.350000px;}
.y21_c01016{bottom:516.450000px;}
.yf_c01016{bottom:531.900000px;}
.y20_c01016{bottom:534.300000px;}
.ye_c01016{bottom:549.150000px;}
.y1f_c01016{bottom:552.750000px;}
.yd_c01016{bottom:567.300000px;}
.y1e_c01016{bottom:570.600000px;}
.yc_c01016{bottom:585.300000px;}
.y1d_c01016{bottom:588.600000px;}
.yb_c01016{bottom:603.150000px;}
.y1c_c01016{bottom:606.150000px;}
.ya_c01016{bottom:621.300000px;}
.y1b_c01016{bottom:625.050000px;}
.y9_c01016{bottom:639.000000px;}
.y1a_c01016{bottom:642.300000px;}
.y8_c01016{bottom:656.850000px;}
.y19_c01016{bottom:660.600000px;}
.y7_c01016{bottom:675.450000px;}
.y18_c01016{bottom:678.150000px;}
.y6_c01016{bottom:693.300000px;}
.y17_c01016{bottom:697.050000px;}
.y5_c01016{bottom:711.900000px;}
.y16_c01016{bottom:715.200000px;}
.y4_c01016{bottom:730.050000px;}
.y15_c01016{bottom:733.800000px;}
.y3_c01016{bottom:748.950000px;}
.y14_c01016{bottom:752.400000px;}
.y2_c01016{bottom:766.500000px;}
.y13_c01016{bottom:769.950000px;}
.y1_c01016{bottom:784.350000px;}
.y12_c01016{bottom:788.100000px;}
.h7_c01016{height:13.200074px;}
.h8_c01016{height:43.804688px;}
.h3_c01016{height:56.592000px;}
.h1_c01016{height:62.880000px;}
.h6_c01016{height:64.020000px;}
.h4_c01016{height:66.024000px;}
.h2_c01016{height:72.312000px;}
.h5_c01016{height:78.048000px;}
.h0_c01016{height:843.750000px;}
.w2_c01016{width:104.875500px;}
.w1_c01016{width:579.750000px;}
.w0_c01016{width:579.975000px;}
.x0_c01016{left:0.000000px;}
.x4_c01016{left:12.450000px;}
.x3_c01016{left:14.100000px;}
.x8_c01016{left:17.250000px;}
.xf_c01016{left:18.900000px;}
.x2_c01016{left:75.150000px;}
.x1_c01016{left:76.200000px;}
.x5_c01016{left:78.000000px;}
.x6_c01016{left:79.200000px;}
.x7_c01016{left:80.700000px;}
.x10_c01016{left:81.900000px;}
.x11_c01016{left:83.250000px;}
.x13_c01016{left:84.300000px;}
.x14_c01016{left:85.350000px;}
.x15_c01016{left:87.150000px;}
.x16_c01016{left:88.650000px;}
.x12_c01016{left:105.000000px;}
.x19_c01016{left:241.801758px;}
.xa_c01016{left:295.200000px;}
.xb_c01016{left:296.250000px;}
.xc_c01016{left:297.300000px;}
.xd_c01016{left:298.350000px;}
.xe_c01016{left:299.400000px;}
.x17_c01016{left:303.750000px;}
.x9_c01016{left:309.750000px;}
.x18_c01016{left:483.000000px;}
@media print{
.v1_c01016{vertical-align:-1.066667pt;}
.v0_c01016{vertical-align:0.000000pt;}
.ls7_c01016{letter-spacing:-10.666667pt;}
.ls5_c01016{letter-spacing:0.000000pt;}
.ls1_c01016{letter-spacing:3.050667pt;}
.ls4_c01016{letter-spacing:3.946667pt;}
.ls6_c01016{letter-spacing:5.333333pt;}
.ls3_c01016{letter-spacing:6.933333pt;}
.ls0_c01016{letter-spacing:8.546667pt;}
.ls2_c01016{letter-spacing:159.413333pt;}
.ws4_c01016{word-spacing:-20.746667pt;}
.ws6_c01016{word-spacing:-13.386667pt;}
.ws0_c01016{word-spacing:-12.586667pt;}
.ws1_c01016{word-spacing:-12.048000pt;}
.ws2_c01016{word-spacing:-11.328000pt;}
.ws5_c01016{word-spacing:-1.920000pt;}
.ws7_c01016{word-spacing:0.000000pt;}
.ws3_c01016{word-spacing:0.533333pt;}
._18_c01016{margin-left:-17.333333pt;}
._21_c01016{margin-left:-12.053333pt;}
._1b_c01016{margin-left:-10.720000pt;}
._30_c01016{margin-left:-9.440000pt;}
._5_c01016{margin-left:-7.413333pt;}
._6_c01016{margin-left:-5.173333pt;}
._a_c01016{margin-left:-4.213333pt;}
._3_c01016{margin-left:-2.986667pt;}
._8_c01016{margin-left:-1.173333pt;}
._1_c01016{width:1.493333pt;}
._0_c01016{width:2.560000pt;}
._c_c01016{width:3.626667pt;}
._b_c01016{width:5.120000pt;}
._d_c01016{width:6.133333pt;}
._f_c01016{width:7.306667pt;}
._17_c01016{width:8.336000pt;}
._13_c01016{width:9.493333pt;}
._e_c01016{width:10.880000pt;}
._10_c01016{width:11.786667pt;}
._20_c01016{width:13.504000pt;}
._1d_c01016{width:14.666667pt;}
._19_c01016{width:15.573333pt;}
._2_c01016{width:16.586667pt;}
._12_c01016{width:18.080000pt;}
._15_c01016{width:19.392000pt;}
._1a_c01016{width:20.853333pt;}
._7_c01016{width:21.760000pt;}
._1c_c01016{width:22.880000pt;}
._4_c01016{width:24.213333pt;}
._16_c01016{width:25.616000pt;}
._2b_c01016{width:26.826667pt;}
._11_c01016{width:28.480000pt;}
._1f_c01016{width:31.338667pt;}
._36_c01016{width:32.640000pt;}
._9_c01016{width:34.826667pt;}
._2a_c01016{width:42.293333pt;}
._22_c01016{width:43.786667pt;}
._34_c01016{width:75.626667pt;}
._31_c01016{width:79.360000pt;}
._2d_c01016{width:80.272000pt;}
._32_c01016{width:83.274667pt;}
._2f_c01016{width:88.357333pt;}
._2e_c01016{width:89.546667pt;}
._29_c01016{width:90.613333pt;}
._2c_c01016{width:91.893333pt;}
._35_c01016{width:93.280000pt;}
._28_c01016{width:97.050667pt;}
._27_c01016{width:100.266667pt;}
._14_c01016{width:103.189333pt;}
._33_c01016{width:107.712000pt;}
._25_c01016{width:109.056000pt;}
._26_c01016{width:116.266667pt;}
._1e_c01016{width:129.744000pt;}
._23_c01016{width:197.706667pt;}
._24_c01016{width:231.786667pt;}
.fs6_c01016{font-size:42.666667pt;}
.fs1_c01016{font-size:48.000000pt;}
.fs4_c01016{font-size:50.666667pt;}
.fs0_c01016{font-size:53.333333pt;}
.fs3_c01016{font-size:56.000000pt;}
.fs2_c01016{font-size:61.333333pt;}
.fs5_c01016{font-size:64.000000pt;}
.y0_c01016{bottom:0.000000pt;}
.y40_c01016{bottom:2.760000pt;}
.y3f_c01016{bottom:6.425212pt;}
.y3e_c01016{bottom:38.400000pt;}
.y3b_c01016{bottom:55.200000pt;}
.y3a_c01016{bottom:70.800000pt;}
.y39_c01016{bottom:87.333333pt;}
.y38_c01016{bottom:103.466667pt;}
.y3d_c01016{bottom:103.600000pt;}
.y3c_c01016{bottom:119.733333pt;}
.y37_c01016{bottom:120.000000pt;}
.y36_c01016{bottom:136.000000pt;}
.y35_c01016{bottom:152.666667pt;}
.y34_c01016{bottom:168.400000pt;}
.y33_c01016{bottom:184.266667pt;}
.y32_c01016{bottom:201.066667pt;}
.y31_c01016{bottom:216.666667pt;}
.y30_c01016{bottom:233.200000pt;}
.y2f_c01016{bottom:248.666667pt;}
.y2e_c01016{bottom:264.666667pt;}
.y2d_c01016{bottom:281.200000pt;}
.y2c_c01016{bottom:297.066667pt;}
.y2b_c01016{bottom:313.466667pt;}
.y2a_c01016{bottom:329.200000pt;}
.y29_c01016{bottom:345.866667pt;}
.y28_c01016{bottom:361.200000pt;}
.y27_c01016{bottom:377.733333pt;}
.y26_c01016{bottom:393.866667pt;}
.y25_c01016{bottom:409.866667pt;}
.y24_c01016{bottom:425.733333pt;}
.y11_c01016{bottom:439.466667pt;}
.y23_c01016{bottom:441.600000pt;}
.y22_c01016{bottom:443.333333pt;}
.y10_c01016{bottom:457.200000pt;}
.y21_c01016{bottom:459.066667pt;}
.yf_c01016{bottom:472.800000pt;}
.y20_c01016{bottom:474.933333pt;}
.ye_c01016{bottom:488.133333pt;}
.y1f_c01016{bottom:491.333333pt;}
.yd_c01016{bottom:504.266667pt;}
.y1e_c01016{bottom:507.200000pt;}
.yc_c01016{bottom:520.266667pt;}
.y1d_c01016{bottom:523.200000pt;}
.yb_c01016{bottom:536.133333pt;}
.y1c_c01016{bottom:538.800000pt;}
.ya_c01016{bottom:552.266667pt;}
.y1b_c01016{bottom:555.600000pt;}
.y9_c01016{bottom:568.000000pt;}
.y1a_c01016{bottom:570.933333pt;}
.y8_c01016{bottom:583.866667pt;}
.y19_c01016{bottom:587.200000pt;}
.y7_c01016{bottom:600.400000pt;}
.y18_c01016{bottom:602.800000pt;}
.y6_c01016{bottom:616.266667pt;}
.y17_c01016{bottom:619.600000pt;}
.y5_c01016{bottom:632.800000pt;}
.y16_c01016{bottom:635.733333pt;}
.y4_c01016{bottom:648.933333pt;}
.y15_c01016{bottom:652.266667pt;}
.y3_c01016{bottom:665.733333pt;}
.y14_c01016{bottom:668.800000pt;}
.y2_c01016{bottom:681.333333pt;}
.y13_c01016{bottom:684.400000pt;}
.y1_c01016{bottom:697.200000pt;}
.y12_c01016{bottom:700.533333pt;}
.h7_c01016{height:11.733399pt;}
.h8_c01016{height:38.937500pt;}
.h3_c01016{height:50.304000pt;}
.h1_c01016{height:55.893333pt;}
.h6_c01016{height:56.906667pt;}
.h4_c01016{height:58.688000pt;}
.h2_c01016{height:64.277333pt;}
.h5_c01016{height:69.376000pt;}
.h0_c01016{height:750.000000pt;}
.w2_c01016{width:93.222667pt;}
.w1_c01016{width:515.333333pt;}
.w0_c01016{width:515.533333pt;}
.x0_c01016{left:0.000000pt;}
.x4_c01016{left:11.066667pt;}
.x3_c01016{left:12.533333pt;}
.x8_c01016{left:15.333333pt;}
.xf_c01016{left:16.800000pt;}
.x2_c01016{left:66.800000pt;}
.x1_c01016{left:67.733333pt;}
.x5_c01016{left:69.333333pt;}
.x6_c01016{left:70.400000pt;}
.x7_c01016{left:71.733333pt;}
.x10_c01016{left:72.800000pt;}
.x11_c01016{left:74.000000pt;}
.x13_c01016{left:74.933333pt;}
.x14_c01016{left:75.866667pt;}
.x15_c01016{left:77.466667pt;}
.x16_c01016{left:78.800000pt;}
.x12_c01016{left:93.333333pt;}
.x19_c01016{left:214.934896pt;}
.xa_c01016{left:262.400000pt;}
.xb_c01016{left:263.333333pt;}
.xc_c01016{left:264.266667pt;}
.xd_c01016{left:265.200000pt;}
.xe_c01016{left:266.133333pt;}
.x17_c01016{left:270.000000pt;}
.x9_c01016{left:275.333333pt;}
.x18_c01016{left:429.333333pt;}
}





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

.ir_c01017:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01017{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01017;src:url('chunks/assets/font_111201e9faebf7a51ccf6258.woff2')format("woff");}.ff1_c01017{font-family:ff1_c01017;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01017;src:url('chunks/assets/font_b314db85c2d1776743ba9785.woff2')format("woff");}.ff2_c01017{font-family:ff2_c01017;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01017;src:url('chunks/assets/font_4361bd2920d11f2bfeb1f4a1.woff2')format("woff");}.ff3_c01017{font-family:ff3_c01017;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01017;src:url('chunks/assets/font_b256d9dc25c4ce31920f180f.woff2')format("woff");}.ff4_c01017{font-family:ff4_c01017;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01017;src:url('chunks/assets/font_26b8e9b53e3417fc475d3288.woff2')format("woff");}.ff5_c01017{font-family:ff5_c01017;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01017;src:url('chunks/assets/font_663683ac1e62837a2592a7b8.woff2')format("woff");}.ff6_c01017{font-family:ff6_c01017;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01017;src:url('chunks/assets/font_7c7b114d6d8510036cb24ad0.woff2')format("woff");}.ff7_c01017{font-family:ff7_c01017;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c01017;src:url('chunks/assets/font_9fcb5ca85fa39ba0cad64b2d.woff2')format("woff");}.ff8_c01017{font-family:ff8_c01017;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c01017;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff9_c01017{font-family:ff9_c01017;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01017{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01017{vertical-align:0.000000px;}
.v1_c01017{vertical-align:65.400000px;}
.ls6_c01017{letter-spacing:0.000000px;}
.ls7_c01017{letter-spacing:3.000000px;}
.ls2_c01017{letter-spacing:3.120000px;}
.ls3_c01017{letter-spacing:6.000000px;}
.ls1_c01017{letter-spacing:6.600000px;}
.ls5_c01017{letter-spacing:19.893000px;}
.ls4_c01017{letter-spacing:20.040000px;}
.ls0_c01017{letter-spacing:23.805000px;}
.sc__c01017{text-shadow:none;}
.sc0_c01017{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01017{-webkit-text-stroke:0px transparent;}
.sc0_c01017{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01017{word-spacing:-50.022000px;}
.ws9_c01017{word-spacing:-37.650000px;}
.ws8_c01017{word-spacing:-35.295000px;}
.ws7_c01017{word-spacing:-23.340000px;}
.ws3_c01017{word-spacing:-15.060000px;}
.wsa_c01017{word-spacing:-14.250000px;}
.ws1_c01017{word-spacing:-14.160000px;}
.wsb_c01017{word-spacing:-13.452000px;}
.ws5_c01017{word-spacing:-0.480000px;}
.wsc_c01017{word-spacing:0.000000px;}
.ws2_c01017{word-spacing:1.584000px;}
.ws6_c01017{word-spacing:7.968000px;}
.ws4_c01017{word-spacing:15.912000px;}
._27_c01017{margin-left:-22.209000px;}
._25_c01017{margin-left:-16.803000px;}
._1f_c01017{margin-left:-13.596000px;}
._26_c01017{margin-left:-11.853000px;}
._1e_c01017{margin-left:-10.773000px;}
._d_c01017{margin-left:-8.511000px;}
._20_c01017{margin-left:-7.410000px;}
._a_c01017{margin-left:-6.366000px;}
._2_c01017{margin-left:-4.809000px;}
._1c_c01017{margin-left:-3.738000px;}
._1_c01017{margin-left:-2.646000px;}
._3_c01017{margin-left:-1.518000px;}
._0_c01017{width:1.890000px;}
._7_c01017{width:3.000000px;}
._5_c01017{width:4.851000px;}
._c_c01017{width:5.877000px;}
._4_c01017{width:6.993000px;}
._8_c01017{width:8.700000px;}
._e_c01017{width:9.780000px;}
._9_c01017{width:11.580000px;}
._1d_c01017{width:12.660000px;}
._1a_c01017{width:13.986000px;}
._12_c01017{width:16.773000px;}
._28_c01017{width:18.159000px;}
._1b_c01017{width:19.188000px;}
._11_c01017{width:20.898000px;}
._13_c01017{width:23.289000px;}
._17_c01017{width:24.519000px;}
._f_c01017{width:26.883000px;}
._14_c01017{width:27.924000px;}
._10_c01017{width:29.088000px;}
._24_c01017{width:31.185000px;}
._18_c01017{width:32.385000px;}
._6_c01017{width:33.810000px;}
._23_c01017{width:35.184000px;}
._22_c01017{width:36.855000px;}
._21_c01017{width:40.608000px;}
._19_c01017{width:44.091000px;}
._16_c01017{width:50.058000px;}
._15_c01017{width:52.821000px;}
._b_c01017{width:63.738000px;}
._29_c01017{width:97.095000px;}
.fc2_c01017{color:transparent;}
.fc1_c01017{color:rgb(128,128,128);}
.fc0_c01017{color:rgb(0,0,0);}
.fs2_c01017{font-size:45.000000px;}
.fs3_c01017{font-size:48.000000px;}
.fs5_c01017{font-size:57.000000px;}
.fs1_c01017{font-size:60.000000px;}
.fs0_c01017{font-size:63.000000px;}
.fs4_c01017{font-size:150.000000px;}
.y0_c01017{bottom:0.000000px;}
.y54_c01017{bottom:3.105000px;}
.y53_c01017{bottom:7.228369px;}
.y52_c01017{bottom:36.720000px;}
.y29_c01017{bottom:49.620000px;}
.y51_c01017{bottom:54.270000px;}
.y28_c01017{bottom:68.820000px;}
.y50_c01017{bottom:72.870000px;}
.y27_c01017{bottom:87.720000px;}
.y4f_c01017{bottom:91.470000px;}
.y26_c01017{bottom:105.570000px;}
.y4e_c01017{bottom:109.620000px;}
.y25_c01017{bottom:124.770000px;}
.y4d_c01017{bottom:127.920000px;}
.y24_c01017{bottom:142.770000px;}
.y4c_c01017{bottom:146.070000px;}
.y23_c01017{bottom:160.320000px;}
.y4b_c01017{bottom:164.370000px;}
.y22_c01017{bottom:178.920000px;}
.y4a_c01017{bottom:182.820000px;}
.y21_c01017{bottom:197.070000px;}
.y49_c01017{bottom:200.520000px;}
.y20_c01017{bottom:215.220000px;}
.y48_c01017{bottom:219.420000px;}
.y1f_c01017{bottom:233.670000px;}
.y47_c01017{bottom:237.570000px;}
.y1e_c01017{bottom:251.820000px;}
.y46_c01017{bottom:256.770000px;}
.y1d_c01017{bottom:269.970000px;}
.y45_c01017{bottom:275.070000px;}
.y1c_c01017{bottom:287.520000px;}
.y44_c01017{bottom:292.620000px;}
.y1b_c01017{bottom:306.720000px;}
.y43_c01017{bottom:309.720000px;}
.y42_c01017{bottom:311.670000px;}
.y1a_c01017{bottom:324.720000px;}
.y19_c01017{bottom:342.870000px;}
.y18_c01017{bottom:361.020000px;}
.y41_c01017{bottom:363.870000px;}
.y17_c01017{bottom:378.720000px;}
.y40_c01017{bottom:382.320000px;}
.y16_c01017{bottom:397.170000px;}
.y3f_c01017{bottom:400.920000px;}
.y15_c01017{bottom:415.020000px;}
.y3e_c01017{bottom:419.220000px;}
.y14_c01017{bottom:433.320000px;}
.y3d_c01017{bottom:436.620000px;}
.y13_c01017{bottom:451.920000px;}
.y12_c01017{bottom:469.770000px;}
.y3c_c01017{bottom:473.070000px;}
.y11_c01017{bottom:488.370000px;}
.y2b_c01017{bottom:492.420000px;}
.y10_c01017{bottom:506.820000px;}
.y3b_c01017{bottom:507.570000px;}
.yf_c01017{bottom:524.370000px;}
.y3a_c01017{bottom:526.470000px;}
.ye_c01017{bottom:542.070000px;}
.y39_c01017{bottom:544.620000px;}
.yd_c01017{bottom:560.520000px;}
.y38_c01017{bottom:562.920000px;}
.yc_c01017{bottom:578.520000px;}
.y37_c01017{bottom:580.470000px;}
.yb_c01017{bottom:596.070000px;}
.y36_c01017{bottom:599.370000px;}
.ya_c01017{bottom:614.820000px;}
.y35_c01017{bottom:616.620000px;}
.y9_c01017{bottom:633.120000px;}
.y34_c01017{bottom:635.520000px;}
.y8_c01017{bottom:650.970000px;}
.y33_c01017{bottom:653.370000px;}
.y7_c01017{bottom:669.270000px;}
.y32_c01017{bottom:671.520000px;}
.y6_c01017{bottom:687.420000px;}
.y31_c01017{bottom:689.820000px;}
.y5_c01017{bottom:705.270000px;}
.y30_c01017{bottom:707.670000px;}
.y4_c01017{bottom:723.270000px;}
.y2f_c01017{bottom:725.670000px;}
.y3_c01017{bottom:742.170000px;}
.y2e_c01017{bottom:744.120000px;}
.y2_c01017{bottom:760.320000px;}
.y2d_c01017{bottom:761.970000px;}
.y1_c01017{bottom:778.620000px;}
.y2c_c01017{bottom:780.570000px;}
.y2a_c01017{bottom:800.220000px;}
.h7_c01017{height:13.200073px;}
.h8_c01017{height:43.804688px;}
.h6_c01017{height:59.736000px;}
.h5_c01017{height:60.819000px;}
.h2_c01017{height:62.880000px;}
.h3_c01017{height:64.020000px;}
.h1_c01017{height:66.024000px;}
.h4_c01017{height:157.200000px;}
.h0_c01017{height:840.750000px;}
.w2_c01017{width:104.875500px;}
.w1_c01017{width:574.500000px;}
.w0_c01017{width:574.575000px;}
.x0_c01017{left:0.000000px;}
.x3_c01017{left:19.950000px;}
.x2_c01017{left:21.900000px;}
.x6_c01017{left:65.850000px;}
.x4_c01017{left:80.700000px;}
.x5_c01017{left:81.750000px;}
.x1_c01017{left:82.950000px;}
.x7_c01017{left:84.000000px;}
.x8_c01017{left:171.900000px;}
.x16_c01017{left:239.101730px;}
.xa_c01017{left:298.800000px;}
.xb_c01017{left:300.000000px;}
.x12_c01017{left:301.050000px;}
.x14_c01017{left:302.100000px;}
.xe_c01017{left:309.900000px;}
.x13_c01017{left:322.350000px;}
.xf_c01017{left:328.500000px;}
.xd_c01017{left:332.100000px;}
.x10_c01017{left:344.550000px;}
.xc_c01017{left:371.550000px;}
.x11_c01017{left:385.500000px;}
.x15_c01017{left:465.000000px;}
.x9_c01017{left:541.800000px;}
@media print{
.v0_c01017{vertical-align:0.000000pt;}
.v1_c01017{vertical-align:58.133333pt;}
.ls6_c01017{letter-spacing:0.000000pt;}
.ls7_c01017{letter-spacing:2.666667pt;}
.ls2_c01017{letter-spacing:2.773333pt;}
.ls3_c01017{letter-spacing:5.333333pt;}
.ls1_c01017{letter-spacing:5.866667pt;}
.ls5_c01017{letter-spacing:17.682667pt;}
.ls4_c01017{letter-spacing:17.813333pt;}
.ls0_c01017{letter-spacing:21.160000pt;}
.ws0_c01017{word-spacing:-44.464000pt;}
.ws9_c01017{word-spacing:-33.466667pt;}
.ws8_c01017{word-spacing:-31.373333pt;}
.ws7_c01017{word-spacing:-20.746667pt;}
.ws3_c01017{word-spacing:-13.386667pt;}
.wsa_c01017{word-spacing:-12.666667pt;}
.ws1_c01017{word-spacing:-12.586667pt;}
.wsb_c01017{word-spacing:-11.957333pt;}
.ws5_c01017{word-spacing:-0.426667pt;}
.wsc_c01017{word-spacing:0.000000pt;}
.ws2_c01017{word-spacing:1.408000pt;}
.ws6_c01017{word-spacing:7.082667pt;}
.ws4_c01017{word-spacing:14.144000pt;}
._27_c01017{margin-left:-19.741333pt;}
._25_c01017{margin-left:-14.936000pt;}
._1f_c01017{margin-left:-12.085333pt;}
._26_c01017{margin-left:-10.536000pt;}
._1e_c01017{margin-left:-9.576000pt;}
._d_c01017{margin-left:-7.565333pt;}
._20_c01017{margin-left:-6.586667pt;}
._a_c01017{margin-left:-5.658667pt;}
._2_c01017{margin-left:-4.274667pt;}
._1c_c01017{margin-left:-3.322667pt;}
._1_c01017{margin-left:-2.352000pt;}
._3_c01017{margin-left:-1.349333pt;}
._0_c01017{width:1.680000pt;}
._7_c01017{width:2.666667pt;}
._5_c01017{width:4.312000pt;}
._c_c01017{width:5.224000pt;}
._4_c01017{width:6.216000pt;}
._8_c01017{width:7.733333pt;}
._e_c01017{width:8.693333pt;}
._9_c01017{width:10.293333pt;}
._1d_c01017{width:11.253333pt;}
._1a_c01017{width:12.432000pt;}
._12_c01017{width:14.909333pt;}
._28_c01017{width:16.141333pt;}
._1b_c01017{width:17.056000pt;}
._11_c01017{width:18.576000pt;}
._13_c01017{width:20.701333pt;}
._17_c01017{width:21.794667pt;}
._f_c01017{width:23.896000pt;}
._14_c01017{width:24.821333pt;}
._10_c01017{width:25.856000pt;}
._24_c01017{width:27.720000pt;}
._18_c01017{width:28.786667pt;}
._6_c01017{width:30.053333pt;}
._23_c01017{width:31.274667pt;}
._22_c01017{width:32.760000pt;}
._21_c01017{width:36.096000pt;}
._19_c01017{width:39.192000pt;}
._16_c01017{width:44.496000pt;}
._15_c01017{width:46.952000pt;}
._b_c01017{width:56.656000pt;}
._29_c01017{width:86.306667pt;}
.fs2_c01017{font-size:40.000000pt;}
.fs3_c01017{font-size:42.666667pt;}
.fs5_c01017{font-size:50.666667pt;}
.fs1_c01017{font-size:53.333333pt;}
.fs0_c01017{font-size:56.000000pt;}
.fs4_c01017{font-size:133.333333pt;}
.y0_c01017{bottom:0.000000pt;}
.y54_c01017{bottom:2.760000pt;}
.y53_c01017{bottom:6.425217pt;}
.y52_c01017{bottom:32.640000pt;}
.y29_c01017{bottom:44.106667pt;}
.y51_c01017{bottom:48.240000pt;}
.y28_c01017{bottom:61.173333pt;}
.y50_c01017{bottom:64.773333pt;}
.y27_c01017{bottom:77.973333pt;}
.y4f_c01017{bottom:81.306667pt;}
.y26_c01017{bottom:93.840000pt;}
.y4e_c01017{bottom:97.440000pt;}
.y25_c01017{bottom:110.906667pt;}
.y4d_c01017{bottom:113.706667pt;}
.y24_c01017{bottom:126.906667pt;}
.y4c_c01017{bottom:129.840000pt;}
.y23_c01017{bottom:142.506667pt;}
.y4b_c01017{bottom:146.106667pt;}
.y22_c01017{bottom:159.040000pt;}
.y4a_c01017{bottom:162.506667pt;}
.y21_c01017{bottom:175.173333pt;}
.y49_c01017{bottom:178.240000pt;}
.y20_c01017{bottom:191.306667pt;}
.y48_c01017{bottom:195.040000pt;}
.y1f_c01017{bottom:207.706667pt;}
.y47_c01017{bottom:211.173333pt;}
.y1e_c01017{bottom:223.840000pt;}
.y46_c01017{bottom:228.240000pt;}
.y1d_c01017{bottom:239.973333pt;}
.y45_c01017{bottom:244.506667pt;}
.y1c_c01017{bottom:255.573333pt;}
.y44_c01017{bottom:260.106667pt;}
.y1b_c01017{bottom:272.640000pt;}
.y43_c01017{bottom:275.306667pt;}
.y42_c01017{bottom:277.040000pt;}
.y1a_c01017{bottom:288.640000pt;}
.y19_c01017{bottom:304.773333pt;}
.y18_c01017{bottom:320.906667pt;}
.y41_c01017{bottom:323.440000pt;}
.y17_c01017{bottom:336.640000pt;}
.y40_c01017{bottom:339.840000pt;}
.y16_c01017{bottom:353.040000pt;}
.y3f_c01017{bottom:356.373333pt;}
.y15_c01017{bottom:368.906667pt;}
.y3e_c01017{bottom:372.640000pt;}
.y14_c01017{bottom:385.173333pt;}
.y3d_c01017{bottom:388.106667pt;}
.y13_c01017{bottom:401.706667pt;}
.y12_c01017{bottom:417.573333pt;}
.y3c_c01017{bottom:420.506667pt;}
.y11_c01017{bottom:434.106667pt;}
.y2b_c01017{bottom:437.706667pt;}
.y10_c01017{bottom:450.506667pt;}
.y3b_c01017{bottom:451.173333pt;}
.yf_c01017{bottom:466.106667pt;}
.y3a_c01017{bottom:467.973333pt;}
.ye_c01017{bottom:481.840000pt;}
.y39_c01017{bottom:484.106667pt;}
.yd_c01017{bottom:498.240000pt;}
.y38_c01017{bottom:500.373333pt;}
.yc_c01017{bottom:514.240000pt;}
.y37_c01017{bottom:515.973333pt;}
.yb_c01017{bottom:529.840000pt;}
.y36_c01017{bottom:532.773333pt;}
.ya_c01017{bottom:546.506667pt;}
.y35_c01017{bottom:548.106667pt;}
.y9_c01017{bottom:562.773333pt;}
.y34_c01017{bottom:564.906667pt;}
.y8_c01017{bottom:578.640000pt;}
.y33_c01017{bottom:580.773333pt;}
.y7_c01017{bottom:594.906667pt;}
.y32_c01017{bottom:596.906667pt;}
.y6_c01017{bottom:611.040000pt;}
.y31_c01017{bottom:613.173333pt;}
.y5_c01017{bottom:626.906667pt;}
.y30_c01017{bottom:629.040000pt;}
.y4_c01017{bottom:642.906667pt;}
.y2f_c01017{bottom:645.040000pt;}
.y3_c01017{bottom:659.706667pt;}
.y2e_c01017{bottom:661.440000pt;}
.y2_c01017{bottom:675.840000pt;}
.y2d_c01017{bottom:677.306667pt;}
.y1_c01017{bottom:692.106667pt;}
.y2c_c01017{bottom:693.840000pt;}
.y2a_c01017{bottom:711.306667pt;}
.h7_c01017{height:11.733399pt;}
.h8_c01017{height:38.937500pt;}
.h6_c01017{height:53.098667pt;}
.h5_c01017{height:54.061333pt;}
.h2_c01017{height:55.893333pt;}
.h3_c01017{height:56.906667pt;}
.h1_c01017{height:58.688000pt;}
.h4_c01017{height:139.733333pt;}
.h0_c01017{height:747.333333pt;}
.w2_c01017{width:93.222667pt;}
.w1_c01017{width:510.666667pt;}
.w0_c01017{width:510.733333pt;}
.x0_c01017{left:0.000000pt;}
.x3_c01017{left:17.733333pt;}
.x2_c01017{left:19.466667pt;}
.x6_c01017{left:58.533333pt;}
.x4_c01017{left:71.733333pt;}
.x5_c01017{left:72.666667pt;}
.x1_c01017{left:73.733333pt;}
.x7_c01017{left:74.666667pt;}
.x8_c01017{left:152.800000pt;}
.x16_c01017{left:212.534871pt;}
.xa_c01017{left:265.600000pt;}
.xb_c01017{left:266.666667pt;}
.x12_c01017{left:267.600000pt;}
.x14_c01017{left:268.533333pt;}
.xe_c01017{left:275.466667pt;}
.x13_c01017{left:286.533333pt;}
.xf_c01017{left:292.000000pt;}
.xd_c01017{left:295.200000pt;}
.x10_c01017{left:306.266667pt;}
.xc_c01017{left:330.266667pt;}
.x11_c01017{left:342.666667pt;}
.x15_c01017{left:413.333333pt;}
.x9_c01017{left:481.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_c01018 {
    display:none;
  }
  .loading-indicator_c01018.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01018 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01018 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01018" -> "#page-container .classname_c01018")
 */
.pf_c01018 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01018 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01018.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01018 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01018 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01018 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01018 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01018 {overflow:visible;}
  }
}
.c_c01018 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01018 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01018:after { /* webkit #35443 */
  content: '';
}
.t_c01018:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01018 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01018 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01018 { /* info for Javascript */
  display:none;
}
.l_c01018 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01018 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01018 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01018:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01018{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01018;src:url('chunks/assets/font_a69ab38e987e230b4dbe77e9.woff2')format("woff");}.ff1_c01018{font-family:ff1_c01018;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01018;src:url('chunks/assets/font_0bf6173286ba5d1c8170c27f.woff2')format("woff");}.ff2_c01018{font-family:ff2_c01018;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01018;src:url('chunks/assets/font_398ff62c13a4bcba180b07f5.woff2')format("woff");}.ff3_c01018{font-family:ff3_c01018;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01018;src:url('chunks/assets/font_85ae34c2cc29766de88de496.woff2')format("woff");}.ff4_c01018{font-family:ff4_c01018;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01018;src:url('chunks/assets/font_ca33573c2ce18f40ced16e51.woff2')format("woff");}.ff5_c01018{font-family:ff5_c01018;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01018;src:url('chunks/assets/font_1ece4d99e754de528b5dfcce.woff2')format("woff");}.ff6_c01018{font-family:ff6_c01018;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01018;src:url('chunks/assets/font_01f4b5577a5125a176b717f6.woff2')format("woff");}.ff7_c01018{font-family:ff7_c01018;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c01018;src:url('chunks/assets/font_8b6e1ff0d9fb8e85c453a9d7.woff2')format("woff");}.ff8_c01018{font-family:ff8_c01018;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c01018;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff9_c01018{font-family:ff9_c01018;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01018{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01018{vertical-align:0.000000px;}
.ls3_c01018{letter-spacing:0.000000px;}
.ls0_c01018{letter-spacing:0.900000px;}
.ls2_c01018{letter-spacing:12.846000px;}
.ls1_c01018{letter-spacing:22.200000px;}
.ls4_c01018{letter-spacing:30.000000px;}
.sc__c01018{text-shadow:none;}
.sc0_c01018{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01018{-webkit-text-stroke:0px transparent;}
.sc0_c01018{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01018{word-spacing:-45.060000px;}
.ws5_c01018{word-spacing:-18.000000px;}
.ws7_c01018{word-spacing:-15.813000px;}
.ws3_c01018{word-spacing:-15.060000px;}
.ws4_c01018{word-spacing:-14.427000px;}
.ws6_c01018{word-spacing:-12.744000px;}
.ws2_c01018{word-spacing:-12.048000px;}
.ws8_c01018{word-spacing:0.000000px;}
.ws0_c01018{word-spacing:13.752000px;}
._2f_c01018{margin-left:-52.320000px;}
._2c_c01018{margin-left:-42.420000px;}
._2e_c01018{margin-left:-38.520000px;}
._0_c01018{margin-left:-26.820000px;}
._32_c01018{margin-left:-21.225000px;}
._10_c01018{margin-left:-18.720000px;}
._18_c01018{margin-left:-13.788000px;}
._1b_c01018{margin-left:-12.297000px;}
._19_c01018{margin-left:-10.812000px;}
._11_c01018{margin-left:-9.504000px;}
._c_c01018{margin-left:-8.424000px;}
._20_c01018{margin-left:-7.320000px;}
._d_c01018{margin-left:-6.060000px;}
._f_c01018{margin-left:-4.080000px;}
._e_c01018{margin-left:-2.880000px;}
._15_c01018{margin-left:-1.503000px;}
._9_c01018{width:1.104000px;}
._7_c01018{width:2.346000px;}
._a_c01018{width:3.420000px;}
._16_c01018{width:4.479000px;}
._8_c01018{width:5.559000px;}
._13_c01018{width:6.840000px;}
._1f_c01018{width:7.845000px;}
._6_c01018{width:9.000000px;}
._b_c01018{width:10.941000px;}
._14_c01018{width:12.906000px;}
._1e_c01018{width:13.932000px;}
._35_c01018{width:15.138000px;}
._12_c01018{width:16.380000px;}
._37_c01018{width:17.814000px;}
._4_c01018{width:18.960000px;}
._29_c01018{width:20.538000px;}
._1a_c01018{width:22.485000px;}
._27_c01018{width:23.499000px;}
._5_c01018{width:24.900000px;}
._28_c01018{width:26.736000px;}
._2a_c01018{width:29.301000px;}
._34_c01018{width:31.221000px;}
._2_c01018{width:33.264000px;}
._3_c01018{width:34.740000px;}
._24_c01018{width:37.092000px;}
._26_c01018{width:40.878000px;}
._22_c01018{width:45.531000px;}
._25_c01018{width:47.022000px;}
._38_c01018{width:49.350000px;}
._23_c01018{width:51.876000px;}
._17_c01018{width:55.548000px;}
._2b_c01018{width:83.160000px;}
._21_c01018{width:98.073000px;}
._1c_c01018{width:110.400000px;}
._2d_c01018{width:122.940000px;}
._30_c01018{width:143.397000px;}
._33_c01018{width:162.633000px;}
._36_c01018{width:182.232000px;}
._31_c01018{width:195.285000px;}
._1d_c01018{width:221.097000px;}
._1_c01018{width:502.440000px;}
.fc2_c01018{color:transparent;}
.fc1_c01018{color:rgb(128,128,128);}
.fc0_c01018{color:rgb(0,0,0);}
.fs1_c01018{font-size:48.000000px;}
.fs5_c01018{font-size:54.000000px;}
.fs6_c01018{font-size:57.000000px;}
.fs0_c01018{font-size:60.000000px;}
.fs4_c01018{font-size:63.000000px;}
.fs2_c01018{font-size:69.000000px;}
.fs3_c01018{font-size:72.000000px;}
.y0_c01018{bottom:0.000000px;}
.y51_c01018{bottom:3.105000px;}
.y50_c01018{bottom:7.228363px;}
.y4f_c01018{bottom:41.550000px;}
.y2a_c01018{bottom:57.450000px;}
.y4e_c01018{bottom:58.500000px;}
.y29_c01018{bottom:76.350000px;}
.y4d_c01018{bottom:76.950000px;}
.y28_c01018{bottom:95.250000px;}
.y27_c01018{bottom:113.700000px;}
.y26_c01018{bottom:131.400000px;}
.y4c_c01018{bottom:132.300000px;}
.y25_c01018{bottom:150.150000px;}
.y4b_c01018{bottom:150.600000px;}
.y24_c01018{bottom:168.150000px;}
.y4a_c01018{bottom:168.750000px;}
.y49_c01018{bottom:186.000000px;}
.y23_c01018{bottom:186.750000px;}
.y22_c01018{bottom:204.600000px;}
.y48_c01018{bottom:223.050000px;}
.y21_c01018{bottom:223.200000px;}
.y20_c01018{bottom:240.750000px;}
.y47_c01018{bottom:241.350000px;}
.y1f_c01018{bottom:259.200000px;}
.y46_c01018{bottom:277.050000px;}
.y1e_c01018{bottom:277.200000px;}
.y45_c01018{bottom:295.200000px;}
.y1d_c01018{bottom:295.650000px;}
.y1c_c01018{bottom:313.500000px;}
.y1b_c01018{bottom:331.350000px;}
.y44_c01018{bottom:331.800000px;}
.y43_c01018{bottom:349.350000px;}
.y1a_c01018{bottom:349.950000px;}
.y19_c01018{bottom:367.500000px;}
.y42_c01018{bottom:367.650000px;}
.y18_c01018{bottom:385.350000px;}
.y41_c01018{bottom:385.800000px;}
.y17_c01018{bottom:403.350000px;}
.y40_c01018{bottom:404.250000px;}
.y3f_c01018{bottom:421.500000px;}
.y16_c01018{bottom:421.650000px;}
.y15_c01018{bottom:440.400000px;}
.y14_c01018{bottom:457.650000px;}
.y3e_c01018{bottom:458.400000px;}
.y13_c01018{bottom:476.250000px;}
.y3d_c01018{bottom:476.550000px;}
.y12_c01018{bottom:494.400000px;}
.y3c_c01018{bottom:495.000000px;}
.y11_c01018{bottom:511.950000px;}
.y3b_c01018{bottom:513.000000px;}
.y10_c01018{bottom:529.950000px;}
.y3a_c01018{bottom:531.000000px;}
.yf_c01018{bottom:547.500000px;}
.y39_c01018{bottom:549.000000px;}
.ye_c01018{bottom:565.350000px;}
.y38_c01018{bottom:567.000000px;}
.yd_c01018{bottom:583.950000px;}
.y37_c01018{bottom:585.000000px;}
.yc_c01018{bottom:601.800000px;}
.y36_c01018{bottom:603.750000px;}
.yb_c01018{bottom:619.950000px;}
.y35_c01018{bottom:621.750000px;}
.ya_c01018{bottom:637.950000px;}
.y34_c01018{bottom:639.900000px;}
.y9_c01018{bottom:655.800000px;}
.y33_c01018{bottom:658.500000px;}
.y8_c01018{bottom:674.400000px;}
.y32_c01018{bottom:676.950000px;}
.y7_c01018{bottom:693.300000px;}
.y31_c01018{bottom:694.950000px;}
.y6_c01018{bottom:710.400000px;}
.y30_c01018{bottom:713.400000px;}
.y5_c01018{bottom:729.000000px;}
.y2f_c01018{bottom:731.250000px;}
.y4_c01018{bottom:746.550000px;}
.y2e_c01018{bottom:747.900000px;}
.y3_c01018{bottom:765.750000px;}
.y2d_c01018{bottom:768.150000px;}
.y2_c01018{bottom:783.450000px;}
.y2c_c01018{bottom:787.500000px;}
.y1_c01018{bottom:805.950000px;}
.y2b_c01018{bottom:807.600000px;}
.h8_c01018{height:13.200074px;}
.h9_c01018{height:43.804688px;}
.h7_c01018{height:56.592000px;}
.h6_c01018{height:59.736000px;}
.h1_c01018{height:62.880000px;}
.h5_c01018{height:64.020000px;}
.h4_c01018{height:66.024000px;}
.h3_c01018{height:70.664062px;}
.h2_c01018{height:74.796000px;}
.h0_c01018{height:843.750000px;}
.w2_c01018{width:104.875500px;}
.w1_c01018{width:579.750000px;}
.w0_c01018{width:579.975000px;}
.x0_c01018{left:0.000000px;}
.xa_c01018{left:15.300000px;}
.x9_c01018{left:17.250000px;}
.x7_c01018{left:19.200000px;}
.x6_c01018{left:70.500000px;}
.x3_c01018{left:72.300000px;}
.x4_c01018{left:73.350000px;}
.x5_c01018{left:74.550000px;}
.x2_c01018{left:76.050000px;}
.x8_c01018{left:78.300000px;}
.xb_c01018{left:79.350000px;}
.xc_c01018{left:81.750000px;}
.x1_c01018{left:185.250000px;}
.x16_c01018{left:241.801758px;}
.xd_c01018{left:293.400000px;}
.xe_c01018{left:295.650000px;}
.xf_c01018{left:297.000000px;}
.x10_c01018{left:298.050000px;}
.x11_c01018{left:299.250000px;}
.x12_c01018{left:300.750000px;}
.x13_c01018{left:302.100000px;}
.x14_c01018{left:303.450000px;}
.x15_c01018{left:468.450000px;}
@media print{
.v0_c01018{vertical-align:0.000000pt;}
.ls3_c01018{letter-spacing:0.000000pt;}
.ls0_c01018{letter-spacing:0.800000pt;}
.ls2_c01018{letter-spacing:11.418667pt;}
.ls1_c01018{letter-spacing:19.733333pt;}
.ls4_c01018{letter-spacing:26.666667pt;}
.ws1_c01018{word-spacing:-40.053333pt;}
.ws5_c01018{word-spacing:-16.000000pt;}
.ws7_c01018{word-spacing:-14.056000pt;}
.ws3_c01018{word-spacing:-13.386667pt;}
.ws4_c01018{word-spacing:-12.824000pt;}
.ws6_c01018{word-spacing:-11.328000pt;}
.ws2_c01018{word-spacing:-10.709333pt;}
.ws8_c01018{word-spacing:0.000000pt;}
.ws0_c01018{word-spacing:12.224000pt;}
._2f_c01018{margin-left:-46.506667pt;}
._2c_c01018{margin-left:-37.706667pt;}
._2e_c01018{margin-left:-34.240000pt;}
._0_c01018{margin-left:-23.840000pt;}
._32_c01018{margin-left:-18.866667pt;}
._10_c01018{margin-left:-16.640000pt;}
._18_c01018{margin-left:-12.256000pt;}
._1b_c01018{margin-left:-10.930667pt;}
._19_c01018{margin-left:-9.610667pt;}
._11_c01018{margin-left:-8.448000pt;}
._c_c01018{margin-left:-7.488000pt;}
._20_c01018{margin-left:-6.506667pt;}
._d_c01018{margin-left:-5.386667pt;}
._f_c01018{margin-left:-3.626667pt;}
._e_c01018{margin-left:-2.560000pt;}
._15_c01018{margin-left:-1.336000pt;}
._9_c01018{width:0.981333pt;}
._7_c01018{width:2.085333pt;}
._a_c01018{width:3.040000pt;}
._16_c01018{width:3.981333pt;}
._8_c01018{width:4.941333pt;}
._13_c01018{width:6.080000pt;}
._1f_c01018{width:6.973333pt;}
._6_c01018{width:8.000000pt;}
._b_c01018{width:9.725333pt;}
._14_c01018{width:11.472000pt;}
._1e_c01018{width:12.384000pt;}
._35_c01018{width:13.456000pt;}
._12_c01018{width:14.560000pt;}
._37_c01018{width:15.834667pt;}
._4_c01018{width:16.853333pt;}
._29_c01018{width:18.256000pt;}
._1a_c01018{width:19.986667pt;}
._27_c01018{width:20.888000pt;}
._5_c01018{width:22.133333pt;}
._28_c01018{width:23.765333pt;}
._2a_c01018{width:26.045333pt;}
._34_c01018{width:27.752000pt;}
._2_c01018{width:29.568000pt;}
._3_c01018{width:30.880000pt;}
._24_c01018{width:32.970667pt;}
._26_c01018{width:36.336000pt;}
._22_c01018{width:40.472000pt;}
._25_c01018{width:41.797333pt;}
._38_c01018{width:43.866667pt;}
._23_c01018{width:46.112000pt;}
._17_c01018{width:49.376000pt;}
._2b_c01018{width:73.920000pt;}
._21_c01018{width:87.176000pt;}
._1c_c01018{width:98.133333pt;}
._2d_c01018{width:109.280000pt;}
._30_c01018{width:127.464000pt;}
._33_c01018{width:144.562667pt;}
._36_c01018{width:161.984000pt;}
._31_c01018{width:173.586667pt;}
._1d_c01018{width:196.530667pt;}
._1_c01018{width:446.613333pt;}
.fs1_c01018{font-size:42.666667pt;}
.fs5_c01018{font-size:48.000000pt;}
.fs6_c01018{font-size:50.666667pt;}
.fs0_c01018{font-size:53.333333pt;}
.fs4_c01018{font-size:56.000000pt;}
.fs2_c01018{font-size:61.333333pt;}
.fs3_c01018{font-size:64.000000pt;}
.y0_c01018{bottom:0.000000pt;}
.y51_c01018{bottom:2.760000pt;}
.y50_c01018{bottom:6.425212pt;}
.y4f_c01018{bottom:36.933333pt;}
.y2a_c01018{bottom:51.066667pt;}
.y4e_c01018{bottom:52.000000pt;}
.y29_c01018{bottom:67.866667pt;}
.y4d_c01018{bottom:68.400000pt;}
.y28_c01018{bottom:84.666667pt;}
.y27_c01018{bottom:101.066667pt;}
.y26_c01018{bottom:116.800000pt;}
.y4c_c01018{bottom:117.600000pt;}
.y25_c01018{bottom:133.466667pt;}
.y4b_c01018{bottom:133.866667pt;}
.y24_c01018{bottom:149.466667pt;}
.y4a_c01018{bottom:150.000000pt;}
.y49_c01018{bottom:165.333333pt;}
.y23_c01018{bottom:166.000000pt;}
.y22_c01018{bottom:181.866667pt;}
.y48_c01018{bottom:198.266667pt;}
.y21_c01018{bottom:198.400000pt;}
.y20_c01018{bottom:214.000000pt;}
.y47_c01018{bottom:214.533333pt;}
.y1f_c01018{bottom:230.400000pt;}
.y46_c01018{bottom:246.266667pt;}
.y1e_c01018{bottom:246.400000pt;}
.y45_c01018{bottom:262.400000pt;}
.y1d_c01018{bottom:262.800000pt;}
.y1c_c01018{bottom:278.666667pt;}
.y1b_c01018{bottom:294.533333pt;}
.y44_c01018{bottom:294.933333pt;}
.y43_c01018{bottom:310.533333pt;}
.y1a_c01018{bottom:311.066667pt;}
.y19_c01018{bottom:326.666667pt;}
.y42_c01018{bottom:326.800000pt;}
.y18_c01018{bottom:342.533333pt;}
.y41_c01018{bottom:342.933333pt;}
.y17_c01018{bottom:358.533333pt;}
.y40_c01018{bottom:359.333333pt;}
.y3f_c01018{bottom:374.666667pt;}
.y16_c01018{bottom:374.800000pt;}
.y15_c01018{bottom:391.466667pt;}
.y14_c01018{bottom:406.800000pt;}
.y3e_c01018{bottom:407.466667pt;}
.y13_c01018{bottom:423.333333pt;}
.y3d_c01018{bottom:423.600000pt;}
.y12_c01018{bottom:439.466667pt;}
.y3c_c01018{bottom:440.000000pt;}
.y11_c01018{bottom:455.066667pt;}
.y3b_c01018{bottom:456.000000pt;}
.y10_c01018{bottom:471.066667pt;}
.y3a_c01018{bottom:472.000000pt;}
.yf_c01018{bottom:486.666667pt;}
.y39_c01018{bottom:488.000000pt;}
.ye_c01018{bottom:502.533333pt;}
.y38_c01018{bottom:504.000000pt;}
.yd_c01018{bottom:519.066667pt;}
.y37_c01018{bottom:520.000000pt;}
.yc_c01018{bottom:534.933333pt;}
.y36_c01018{bottom:536.666667pt;}
.yb_c01018{bottom:551.066667pt;}
.y35_c01018{bottom:552.666667pt;}
.ya_c01018{bottom:567.066667pt;}
.y34_c01018{bottom:568.800000pt;}
.y9_c01018{bottom:582.933333pt;}
.y33_c01018{bottom:585.333333pt;}
.y8_c01018{bottom:599.466667pt;}
.y32_c01018{bottom:601.733333pt;}
.y7_c01018{bottom:616.266667pt;}
.y31_c01018{bottom:617.733333pt;}
.y6_c01018{bottom:631.466667pt;}
.y30_c01018{bottom:634.133333pt;}
.y5_c01018{bottom:648.000000pt;}
.y2f_c01018{bottom:650.000000pt;}
.y4_c01018{bottom:663.600000pt;}
.y2e_c01018{bottom:664.800000pt;}
.y3_c01018{bottom:680.666667pt;}
.y2d_c01018{bottom:682.800000pt;}
.y2_c01018{bottom:696.400000pt;}
.y2c_c01018{bottom:700.000000pt;}
.y1_c01018{bottom:716.400000pt;}
.y2b_c01018{bottom:717.866667pt;}
.h8_c01018{height:11.733399pt;}
.h9_c01018{height:38.937500pt;}
.h7_c01018{height:50.304000pt;}
.h6_c01018{height:53.098667pt;}
.h1_c01018{height:55.893333pt;}
.h5_c01018{height:56.906667pt;}
.h4_c01018{height:58.688000pt;}
.h3_c01018{height:62.812500pt;}
.h2_c01018{height:66.485333pt;}
.h0_c01018{height:750.000000pt;}
.w2_c01018{width:93.222667pt;}
.w1_c01018{width:515.333333pt;}
.w0_c01018{width:515.533333pt;}
.x0_c01018{left:0.000000pt;}
.xa_c01018{left:13.600000pt;}
.x9_c01018{left:15.333333pt;}
.x7_c01018{left:17.066667pt;}
.x6_c01018{left:62.666667pt;}
.x3_c01018{left:64.266667pt;}
.x4_c01018{left:65.200000pt;}
.x5_c01018{left:66.266667pt;}
.x2_c01018{left:67.600000pt;}
.x8_c01018{left:69.600000pt;}
.xb_c01018{left:70.533333pt;}
.xc_c01018{left:72.666667pt;}
.x1_c01018{left:164.666667pt;}
.x16_c01018{left:214.934896pt;}
.xd_c01018{left:260.800000pt;}
.xe_c01018{left:262.800000pt;}
.xf_c01018{left:264.000000pt;}
.x10_c01018{left:264.933333pt;}
.x11_c01018{left:266.000000pt;}
.x12_c01018{left:267.333333pt;}
.x13_c01018{left:268.533333pt;}
.x14_c01018{left:269.733333pt;}
.x15_c01018{left:416.400000pt;}
}





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

.ir_c01019:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01019{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01019;src:url('chunks/assets/font_a24f94d6f0371e2363be7002.woff2')format("woff");}.ff1_c01019{font-family:ff1_c01019;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01019;src:url('chunks/assets/font_a4f0e46e32d630c6cb94487e.woff2')format("woff");}.ff2_c01019{font-family:ff2_c01019;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01019;src:url('chunks/assets/font_6a509a563711d7e5e2420ae1.woff2')format("woff");}.ff3_c01019{font-family:ff3_c01019;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01019;src:url('chunks/assets/font_f3d77d177600a672b13ef5ec.woff2')format("woff");}.ff4_c01019{font-family:ff4_c01019;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01019;src:url('chunks/assets/font_c661a56c3baa3ce2f3e29195.woff2')format("woff");}.ff5_c01019{font-family:ff5_c01019;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01019;src:url('chunks/assets/font_9ee28cf55f08f5a02f59d248.woff2')format("woff");}.ff6_c01019{font-family:ff6_c01019;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01019;src:url('chunks/assets/font_95ca1e979beecb6a6056470d.woff2')format("woff");}.ff7_c01019{font-family:ff7_c01019;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c01019;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff8_c01019{font-family:ff8_c01019;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01019{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m7_c01019{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m6_c01019{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m3_c01019{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m2_c01019{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m4_c01019{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m5_c01019{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1_c01019{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.v0_c01019{vertical-align:0.000000px;}
.ls8_c01019{letter-spacing:0.000000px;}
.ls5_c01019{letter-spacing:1.611000px;}
.ls6_c01019{letter-spacing:3.000000px;}
.ls2_c01019{letter-spacing:4.500000px;}
.ls1_c01019{letter-spacing:9.000000px;}
.ls0_c01019{letter-spacing:12.600000px;}
.ls4_c01019{letter-spacing:15.093000px;}
.ls7_c01019{letter-spacing:17.940000px;}
.ls3_c01019{letter-spacing:18.846000px;}
.sc__c01019{text-shadow:none;}
.sc0_c01019{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01019{-webkit-text-stroke:0px transparent;}
.sc0_c01019{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c01019{word-spacing:-23.160000px;}
.ws6_c01019{word-spacing:-15.060000px;}
.ws2_c01019{word-spacing:-14.784000px;}
.ws3_c01019{word-spacing:-14.427000px;}
.ws0_c01019{word-spacing:-14.160000px;}
.ws1_c01019{word-spacing:-13.305000px;}
.ws5_c01019{word-spacing:-12.366000px;}
.ws7_c01019{word-spacing:0.000000px;}
._23_c01019{margin-left:-18.810000px;}
._22_c01019{margin-left:-14.268000px;}
._12_c01019{margin-left:-11.760000px;}
._15_c01019{margin-left:-10.680000px;}
._16_c01019{margin-left:-9.144000px;}
._13_c01019{margin-left:-7.560000px;}
._14_c01019{margin-left:-6.060000px;}
._c_c01019{margin-left:-4.380000px;}
._d_c01019{margin-left:-3.060000px;}
._b_c01019{margin-left:-1.560000px;}
._f_c01019{width:1.200000px;}
._a_c01019{width:2.880000px;}
._9_c01019{width:4.380000px;}
._10_c01019{width:6.120000px;}
._6_c01019{width:7.320000px;}
._11_c01019{width:8.580000px;}
._1_c01019{width:9.600000px;}
._17_c01019{width:10.800000px;}
._2_c01019{width:12.180000px;}
._4_c01019{width:13.560000px;}
._1d_c01019{width:14.661000px;}
._3_c01019{width:16.500000px;}
._8_c01019{width:17.760000px;}
._7_c01019{width:20.100000px;}
._28_c01019{width:21.120000px;}
._1f_c01019{width:22.248000px;}
._1e_c01019{width:23.709000px;}
._29_c01019{width:25.017000px;}
._1a_c01019{width:26.724000px;}
._5_c01019{width:31.440000px;}
._1c_c01019{width:35.247000px;}
._20_c01019{width:39.390000px;}
._27_c01019{width:40.620000px;}
._26_c01019{width:44.700000px;}
._21_c01019{width:46.782000px;}
._e_c01019{width:64.140000px;}
._18_c01019{width:71.460000px;}
._19_c01019{width:72.540000px;}
._1b_c01019{width:80.940000px;}
._24_c01019{width:90.120000px;}
._25_c01019{width:92.940000px;}
._0_c01019{width:193.140000px;}
.fc2_c01019{color:transparent;}
.fc1_c01019{color:rgb(128,128,128);}
.fc0_c01019{color:rgb(0,0,0);}
.fs3_c01019{font-size:24.000000px;}
.fs2_c01019{font-size:45.000000px;}
.fs7_c01019{font-size:48.000000px;}
.fs5_c01019{font-size:54.000000px;}
.fs1_c01019{font-size:57.000000px;}
.fs0_c01019{font-size:60.000000px;}
.fs4_c01019{font-size:63.000000px;}
.fs6_c01019{font-size:81.000000px;}
.y0_c01019{bottom:0.000000px;}
.y51_c01019{bottom:3.105000px;}
.y50_c01019{bottom:7.228369px;}
.y4f_c01019{bottom:39.870000px;}
.y43_c01019{bottom:51.870000px;}
.y4e_c01019{bottom:57.270000px;}
.y42_c01019{bottom:72.570000px;}
.y4d_c01019{bottom:76.320000px;}
.y41_c01019{bottom:91.020000px;}
.y4c_c01019{bottom:93.870000px;}
.y40_c01019{bottom:109.320000px;}
.y4b_c01019{bottom:112.020000px;}
.y3f_c01019{bottom:127.470000px;}
.y4a_c01019{bottom:130.620000px;}
.y3e_c01019{bottom:145.470000px;}
.y49_c01019{bottom:149.220000px;}
.y3d_c01019{bottom:163.320000px;}
.y48_c01019{bottom:167.370000px;}
.y3c_c01019{bottom:181.920000px;}
.y47_c01019{bottom:185.670000px;}
.y3b_c01019{bottom:200.820000px;}
.y46_c01019{bottom:203.820000px;}
.y3a_c01019{bottom:218.970000px;}
.y45_c01019{bottom:222.120000px;}
.y39_c01019{bottom:237.270000px;}
.y44_c01019{bottom:240.570000px;}
.y38_c01019{bottom:257.070000px;}
.y37_c01019{bottom:275.070000px;}
.y22_c01019{bottom:291.270000px;}
.y36_c01019{bottom:294.570000px;}
.y21_c01019{bottom:309.420000px;}
.y35_c01019{bottom:311.820000px;}
.y20_c01019{bottom:328.020000px;}
.y34_c01019{bottom:330.120000px;}
.y1f_c01019{bottom:346.320000px;}
.y33_c01019{bottom:348.570000px;}
.y1e_c01019{bottom:363.870000px;}
.y32_c01019{bottom:366.870000px;}
.y1d_c01019{bottom:382.770000px;}
.y31_c01019{bottom:384.120000px;}
.y1c_c01019{bottom:400.920000px;}
.y30_c01019{bottom:403.020000px;}
.y1b_c01019{bottom:419.070000px;}
.y2f_c01019{bottom:421.770000px;}
.y1a_c01019{bottom:437.670000px;}
.y2e_c01019{bottom:439.470000px;}
.y19_c01019{bottom:455.670000px;}
.y2d_c01019{bottom:458.370000px;}
.y18_c01019{bottom:473.520000px;}
.y2c_c01019{bottom:475.920000px;}
.y17_c01019{bottom:492.420000px;}
.y2b_c01019{bottom:495.120000px;}
.y16_c01019{bottom:511.020000px;}
.y2a_c01019{bottom:512.220000px;}
.y15_c01019{bottom:528.570000px;}
.y29_c01019{bottom:530.820000px;}
.y14_c01019{bottom:546.420000px;}
.y28_c01019{bottom:548.670000px;}
.y13_c01019{bottom:565.320000px;}
.y27_c01019{bottom:566.370000px;}
.y12_c01019{bottom:583.170000px;}
.y26_c01019{bottom:583.920000px;}
.y11_c01019{bottom:601.470000px;}
.y25_c01019{bottom:602.670000px;}
.y10_c01019{bottom:619.020000px;}
.y24_c01019{bottom:620.970000px;}
.yf_c01019{bottom:637.170000px;}
.y23_c01019{bottom:639.270000px;}
.ye_c01019{bottom:656.670000px;}
.yd_c01019{bottom:675.570000px;}
.y7_c01019{bottom:692.820000px;}
.yc_c01019{bottom:693.870000px;}
.y6_c01019{bottom:710.370000px;}
.yb_c01019{bottom:712.020000px;}
.y5_c01019{bottom:729.570000px;}
.ya_c01019{bottom:730.320000px;}
.y9_c01019{bottom:748.470000px;}
.y4_c01019{bottom:749.520000px;}
.y3_c01019{bottom:766.170000px;}
.y8_c01019{bottom:766.770000px;}
.y2_c01019{bottom:784.920000px;}
.y1_c01019{bottom:804.270000px;}
.h7_c01019{height:13.200073px;}
.h3_c01019{height:30.386719px;}
.h8_c01019{height:43.804688px;}
.h5_c01019{height:56.592000px;}
.h2_c01019{height:62.880000px;}
.h1_c01019{height:64.020000px;}
.h4_c01019{height:66.024000px;}
.h6_c01019{height:84.888000px;}
.h0_c01019{height:840.750000px;}
.w2_c01019{width:104.875500px;}
.w1_c01019{width:574.500000px;}
.w0_c01019{width:574.575000px;}
.x0_c01019{left:0.000000px;}
.x16_c01019{left:18.150000px;}
.x15_c01019{left:21.600000px;}
.x1_c01019{left:75.000000px;}
.x1a_c01019{left:80.250000px;}
.x3_c01019{left:81.300000px;}
.x5_c01019{left:82.650000px;}
.x14_c01019{left:83.700000px;}
.x6_c01019{left:101.550000px;}
.x2_c01019{left:129.300000px;}
.x4_c01019{left:174.150000px;}
.xa_c01019{left:235.650000px;}
.x1c_c01019{left:239.101730px;}
.xb_c01019{left:241.950000px;}
.xc_c01019{left:243.150000px;}
.xd_c01019{left:250.650000px;}
.xe_c01019{left:268.950000px;}
.xf_c01019{left:274.350000px;}
.x19_c01019{left:302.700000px;}
.x8_c01019{left:303.750000px;}
.x9_c01019{left:304.800000px;}
.x18_c01019{left:306.450000px;}
.x17_c01019{left:307.500000px;}
.x7_c01019{left:320.700000px;}
.x10_c01019{left:361.050000px;}
.x11_c01019{left:369.450000px;}
.x12_c01019{left:403.650000px;}
.x13_c01019{left:450.750000px;}
.x1b_c01019{left:481.950000px;}
@media print{
.v0_c01019{vertical-align:0.000000pt;}
.ls8_c01019{letter-spacing:0.000000pt;}
.ls5_c01019{letter-spacing:1.432000pt;}
.ls6_c01019{letter-spacing:2.666667pt;}
.ls2_c01019{letter-spacing:4.000000pt;}
.ls1_c01019{letter-spacing:8.000000pt;}
.ls0_c01019{letter-spacing:11.200000pt;}
.ls4_c01019{letter-spacing:13.416000pt;}
.ls7_c01019{letter-spacing:15.946667pt;}
.ls3_c01019{letter-spacing:16.752000pt;}
.ws4_c01019{word-spacing:-20.586667pt;}
.ws6_c01019{word-spacing:-13.386667pt;}
.ws2_c01019{word-spacing:-13.141333pt;}
.ws3_c01019{word-spacing:-12.824000pt;}
.ws0_c01019{word-spacing:-12.586667pt;}
.ws1_c01019{word-spacing:-11.826667pt;}
.ws5_c01019{word-spacing:-10.992000pt;}
.ws7_c01019{word-spacing:0.000000pt;}
._23_c01019{margin-left:-16.720000pt;}
._22_c01019{margin-left:-12.682667pt;}
._12_c01019{margin-left:-10.453333pt;}
._15_c01019{margin-left:-9.493333pt;}
._16_c01019{margin-left:-8.128000pt;}
._13_c01019{margin-left:-6.720000pt;}
._14_c01019{margin-left:-5.386667pt;}
._c_c01019{margin-left:-3.893333pt;}
._d_c01019{margin-left:-2.720000pt;}
._b_c01019{margin-left:-1.386667pt;}
._f_c01019{width:1.066667pt;}
._a_c01019{width:2.560000pt;}
._9_c01019{width:3.893333pt;}
._10_c01019{width:5.440000pt;}
._6_c01019{width:6.506667pt;}
._11_c01019{width:7.626667pt;}
._1_c01019{width:8.533333pt;}
._17_c01019{width:9.600000pt;}
._2_c01019{width:10.826667pt;}
._4_c01019{width:12.053333pt;}
._1d_c01019{width:13.032000pt;}
._3_c01019{width:14.666667pt;}
._8_c01019{width:15.786667pt;}
._7_c01019{width:17.866667pt;}
._28_c01019{width:18.773333pt;}
._1f_c01019{width:19.776000pt;}
._1e_c01019{width:21.074667pt;}
._29_c01019{width:22.237333pt;}
._1a_c01019{width:23.754667pt;}
._5_c01019{width:27.946667pt;}
._1c_c01019{width:31.330667pt;}
._20_c01019{width:35.013333pt;}
._27_c01019{width:36.106667pt;}
._26_c01019{width:39.733333pt;}
._21_c01019{width:41.584000pt;}
._e_c01019{width:57.013333pt;}
._18_c01019{width:63.520000pt;}
._19_c01019{width:64.480000pt;}
._1b_c01019{width:71.946667pt;}
._24_c01019{width:80.106667pt;}
._25_c01019{width:82.613333pt;}
._0_c01019{width:171.680000pt;}
.fs3_c01019{font-size:21.333333pt;}
.fs2_c01019{font-size:40.000000pt;}
.fs7_c01019{font-size:42.666667pt;}
.fs5_c01019{font-size:48.000000pt;}
.fs1_c01019{font-size:50.666667pt;}
.fs0_c01019{font-size:53.333333pt;}
.fs4_c01019{font-size:56.000000pt;}
.fs6_c01019{font-size:72.000000pt;}
.y0_c01019{bottom:0.000000pt;}
.y51_c01019{bottom:2.760000pt;}
.y50_c01019{bottom:6.425217pt;}
.y4f_c01019{bottom:35.440000pt;}
.y43_c01019{bottom:46.106667pt;}
.y4e_c01019{bottom:50.906667pt;}
.y42_c01019{bottom:64.506667pt;}
.y4d_c01019{bottom:67.840000pt;}
.y41_c01019{bottom:80.906667pt;}
.y4c_c01019{bottom:83.440000pt;}
.y40_c01019{bottom:97.173333pt;}
.y4b_c01019{bottom:99.573333pt;}
.y3f_c01019{bottom:113.306667pt;}
.y4a_c01019{bottom:116.106667pt;}
.y3e_c01019{bottom:129.306667pt;}
.y49_c01019{bottom:132.640000pt;}
.y3d_c01019{bottom:145.173333pt;}
.y48_c01019{bottom:148.773333pt;}
.y3c_c01019{bottom:161.706667pt;}
.y47_c01019{bottom:165.040000pt;}
.y3b_c01019{bottom:178.506667pt;}
.y46_c01019{bottom:181.173333pt;}
.y3a_c01019{bottom:194.640000pt;}
.y45_c01019{bottom:197.440000pt;}
.y39_c01019{bottom:210.906667pt;}
.y44_c01019{bottom:213.840000pt;}
.y38_c01019{bottom:228.506667pt;}
.y37_c01019{bottom:244.506667pt;}
.y22_c01019{bottom:258.906667pt;}
.y36_c01019{bottom:261.840000pt;}
.y21_c01019{bottom:275.040000pt;}
.y35_c01019{bottom:277.173333pt;}
.y20_c01019{bottom:291.573333pt;}
.y34_c01019{bottom:293.440000pt;}
.y1f_c01019{bottom:307.840000pt;}
.y33_c01019{bottom:309.840000pt;}
.y1e_c01019{bottom:323.440000pt;}
.y32_c01019{bottom:326.106667pt;}
.y1d_c01019{bottom:340.240000pt;}
.y31_c01019{bottom:341.440000pt;}
.y1c_c01019{bottom:356.373333pt;}
.y30_c01019{bottom:358.240000pt;}
.y1b_c01019{bottom:372.506667pt;}
.y2f_c01019{bottom:374.906667pt;}
.y1a_c01019{bottom:389.040000pt;}
.y2e_c01019{bottom:390.640000pt;}
.y19_c01019{bottom:405.040000pt;}
.y2d_c01019{bottom:407.440000pt;}
.y18_c01019{bottom:420.906667pt;}
.y2c_c01019{bottom:423.040000pt;}
.y17_c01019{bottom:437.706667pt;}
.y2b_c01019{bottom:440.106667pt;}
.y16_c01019{bottom:454.240000pt;}
.y2a_c01019{bottom:455.306667pt;}
.y15_c01019{bottom:469.840000pt;}
.y29_c01019{bottom:471.840000pt;}
.y14_c01019{bottom:485.706667pt;}
.y28_c01019{bottom:487.706667pt;}
.y13_c01019{bottom:502.506667pt;}
.y27_c01019{bottom:503.440000pt;}
.y12_c01019{bottom:518.373333pt;}
.y26_c01019{bottom:519.040000pt;}
.y11_c01019{bottom:534.640000pt;}
.y25_c01019{bottom:535.706667pt;}
.y10_c01019{bottom:550.240000pt;}
.y24_c01019{bottom:551.973333pt;}
.yf_c01019{bottom:566.373333pt;}
.y23_c01019{bottom:568.240000pt;}
.ye_c01019{bottom:583.706667pt;}
.yd_c01019{bottom:600.506667pt;}
.y7_c01019{bottom:615.840000pt;}
.yc_c01019{bottom:616.773333pt;}
.y6_c01019{bottom:631.440000pt;}
.yb_c01019{bottom:632.906667pt;}
.y5_c01019{bottom:648.506667pt;}
.ya_c01019{bottom:649.173333pt;}
.y9_c01019{bottom:665.306667pt;}
.y4_c01019{bottom:666.240000pt;}
.y3_c01019{bottom:681.040000pt;}
.y8_c01019{bottom:681.573333pt;}
.y2_c01019{bottom:697.706667pt;}
.y1_c01019{bottom:714.906667pt;}
.h7_c01019{height:11.733399pt;}
.h3_c01019{height:27.010417pt;}
.h8_c01019{height:38.937500pt;}
.h5_c01019{height:50.304000pt;}
.h2_c01019{height:55.893333pt;}
.h1_c01019{height:56.906667pt;}
.h4_c01019{height:58.688000pt;}
.h6_c01019{height:75.456000pt;}
.h0_c01019{height:747.333333pt;}
.w2_c01019{width:93.222667pt;}
.w1_c01019{width:510.666667pt;}
.w0_c01019{width:510.733333pt;}
.x0_c01019{left:0.000000pt;}
.x16_c01019{left:16.133333pt;}
.x15_c01019{left:19.200000pt;}
.x1_c01019{left:66.666667pt;}
.x1a_c01019{left:71.333333pt;}
.x3_c01019{left:72.266667pt;}
.x5_c01019{left:73.466667pt;}
.x14_c01019{left:74.400000pt;}
.x6_c01019{left:90.266667pt;}
.x2_c01019{left:114.933333pt;}
.x4_c01019{left:154.800000pt;}
.xa_c01019{left:209.466667pt;}
.x1c_c01019{left:212.534871pt;}
.xb_c01019{left:215.066667pt;}
.xc_c01019{left:216.133333pt;}
.xd_c01019{left:222.800000pt;}
.xe_c01019{left:239.066667pt;}
.xf_c01019{left:243.866667pt;}
.x19_c01019{left:269.066667pt;}
.x8_c01019{left:270.000000pt;}
.x9_c01019{left:270.933333pt;}
.x18_c01019{left:272.400000pt;}
.x17_c01019{left:273.333333pt;}
.x7_c01019{left:285.066667pt;}
.x10_c01019{left:320.933333pt;}
.x11_c01019{left:328.400000pt;}
.x12_c01019{left:358.800000pt;}
.x13_c01019{left:400.666667pt;}
.x1b_c01019{left:428.400000pt;}
}





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

.ir_c01020:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01020{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01020;src:url('chunks/assets/font_7757f27ea71f9a2f278012f0.woff2')format("woff");}.ff1_c01020{font-family:ff1_c01020;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01020;src:url('chunks/assets/font_cd7e0b7574aad7cbd0b7aa02.woff2')format("woff");}.ff2_c01020{font-family:ff2_c01020;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01020;src:url('chunks/assets/font_e4cb9e0b120319a6be5fd0cc.woff2')format("woff");}.ff3_c01020{font-family:ff3_c01020;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01020;src:url('chunks/assets/font_b894b0311e4d1e2e243eb8f4.woff2')format("woff");}.ff4_c01020{font-family:ff4_c01020;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01020;src:url('chunks/assets/font_d641c0a620a28e89ea2ad230.woff2')format("woff");}.ff5_c01020{font-family:ff5_c01020;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01020;src:url('chunks/assets/font_7164f7fc20c479aacf7b7c04.woff2')format("woff");}.ff6_c01020{font-family:ff6_c01020;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01020;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff7_c01020{font-family:ff7_c01020;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01020{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c01020{vertical-align:-1.800000px;}
.v0_c01020{vertical-align:0.000000px;}
.ls5_c01020{letter-spacing:0.000000px;}
.ls7_c01020{letter-spacing:3.000000px;}
.ls8_c01020{letter-spacing:6.000000px;}
.ls3_c01020{letter-spacing:7.387200px;}
.ls6_c01020{letter-spacing:9.000000px;}
.ls1_c01020{letter-spacing:25.293000px;}
.ls2_c01020{letter-spacing:40.893000px;}
.ls4_c01020{letter-spacing:83.460000px;}
.ls0_c01020{letter-spacing:407.787000px;}
.sc__c01020{text-shadow:none;}
.sc0_c01020{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01020{-webkit-text-stroke:0px transparent;}
.sc0_c01020{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c01020{word-spacing:-35.295000px;}
.ws0_c01020{word-spacing:-24.813000px;}
.ws5_c01020{word-spacing:-23.160000px;}
.ws1_c01020{word-spacing:-14.427000px;}
.ws3_c01020{word-spacing:-14.160000px;}
.ws2_c01020{word-spacing:-13.452000px;}
.ws6_c01020{word-spacing:0.000000px;}
._33_c01020{margin-left:-20.940000px;}
._34_c01020{margin-left:-17.991000px;}
._28_c01020{margin-left:-14.688000px;}
._c_c01020{margin-left:-11.091000px;}
._24_c01020{margin-left:-9.504000px;}
._15_c01020{margin-left:-8.124000px;}
._19_c01020{margin-left:-6.792000px;}
._d_c01020{margin-left:-5.460000px;}
._1b_c01020{margin-left:-4.398000px;}
._a_c01020{margin-left:-3.360000px;}
._b_c01020{margin-left:-1.764000px;}
._8_c01020{width:1.230000px;}
._6_c01020{width:2.655000px;}
._7_c01020{width:3.660000px;}
._4_c01020{width:5.607000px;}
._9_c01020{width:6.720000px;}
._1_c01020{width:8.127000px;}
._3_c01020{width:9.261000px;}
._0_c01020{width:10.584000px;}
._5_c01020{width:12.285000px;}
._14_c01020{width:13.662000px;}
._2b_c01020{width:14.850000px;}
._1e_c01020{width:16.362000px;}
._f_c01020{width:18.396000px;}
._e_c01020{width:20.169000px;}
._17_c01020{width:22.170000px;}
._10_c01020{width:23.853000px;}
._21_c01020{width:24.933000px;}
._2e_c01020{width:26.040000px;}
._13_c01020{width:27.255000px;}
._2d_c01020{width:28.923000px;}
._2f_c01020{width:31.749000px;}
._12_c01020{width:33.891000px;}
._1f_c01020{width:36.876000px;}
._20_c01020{width:38.244000px;}
._25_c01020{width:39.462000px;}
._22_c01020{width:41.592000px;}
._18_c01020{width:44.556000px;}
._1a_c01020{width:45.909000px;}
._16_c01020{width:47.958000px;}
._2_c01020{width:51.960000px;}
._29_c01020{width:58.581000px;}
._11_c01020{width:71.724000px;}
._2c_c01020{width:109.302000px;}
._1d_c01020{width:142.968000px;}
._23_c01020{width:165.615000px;}
._31_c01020{width:174.549000px;}
._32_c01020{width:175.761000px;}
._2a_c01020{width:200.037000px;}
._1c_c01020{width:252.126000px;}
._27_c01020{width:284.934000px;}
._30_c01020{width:340.779000px;}
._26_c01020{width:726.897000px;}
.fc2_c01020{color:transparent;}
.fc1_c01020{color:rgb(128,128,128);}
.fc0_c01020{color:rgb(0,0,0);}
.fs4_c01020{font-size:45.000000px;}
.fs3_c01020{font-size:45.600000px;}
.fs5_c01020{font-size:48.000000px;}
.fs2_c01020{font-size:57.000000px;}
.fs1_c01020{font-size:60.000000px;}
.fs0_c01020{font-size:63.000000px;}
.y0_c01020{bottom:0.000000px;}
.y2d_c01020{bottom:3.105000px;}
.y2c_c01020{bottom:7.228357px;}
.y2b_c01020{bottom:36.480000px;}
.y2a_c01020{bottom:57.780000px;}
.y29_c01020{bottom:75.930000px;}
.y28_c01020{bottom:94.230000px;}
.y27_c01020{bottom:112.830000px;}
.y26_c01020{bottom:129.930000px;}
.y25_c01020{bottom:148.230000px;}
.y24_c01020{bottom:166.680000px;}
.y23_c01020{bottom:184.380000px;}
.y22_c01020{bottom:202.980000px;}
.y21_c01020{bottom:220.080000px;}
.y20_c01020{bottom:238.680000px;}
.y1f_c01020{bottom:257.880000px;}
.y1e_c01020{bottom:274.380000px;}
.y1d_c01020{bottom:293.730000px;}
.y1c_c01020{bottom:310.830000px;}
.y1b_c01020{bottom:329.730000px;}
.y1a_c01020{bottom:346.680000px;}
.y19_c01020{bottom:365.880000px;}
.y18_c01020{bottom:384.480000px;}
.y17_c01020{bottom:401.730000px;}
.y16_c01020{bottom:420.630000px;}
.y15_c01020{bottom:439.380000px;}
.y14_c01020{bottom:457.080000px;}
.y13_c01020{bottom:475.530000px;}
.y12_c01020{bottom:493.080000px;}
.y11_c01020{bottom:511.380000px;}
.y10_c01020{bottom:528.480000px;}
.yf_c01020{bottom:546.480000px;}
.ye_c01020{bottom:564.630000px;}
.yd_c01020{bottom:582.480000px;}
.yc_c01020{bottom:600.480000px;}
.yb_c01020{bottom:618.930000px;}
.ya_c01020{bottom:637.230000px;}
.y9_c01020{bottom:655.080000px;}
.y8_c01020{bottom:672.930000px;}
.y7_c01020{bottom:691.530000px;}
.y6_c01020{bottom:710.130000px;}
.y5_c01020{bottom:728.280000px;}
.y4_c01020{bottom:746.580000px;}
.y3_c01020{bottom:764.730000px;}
.y2_c01020{bottom:782.280000px;}
.y1_c01020{bottom:804.930000px;}
.h6_c01020{height:13.200074px;}
.h7_c01020{height:43.804688px;}
.h4_c01020{height:59.736000px;}
.h3_c01020{height:62.880000px;}
.h5_c01020{height:64.224000px;}
.h2_c01020{height:66.024000px;}
.h0_c01020{height:835.950000px;}
.h1_c01020{height:836.250000px;}
.w2_c01020{width:104.875500px;}
.w1_c01020{width:574.500000px;}
.w0_c01020{width:574.575000px;}
.x0_c01020{left:0.000000px;}
.x7_c01020{left:24.000000px;}
.x6_c01020{left:60.450000px;}
.x3_c01020{left:70.800000px;}
.x4_c01020{left:72.150000px;}
.x2_c01020{left:73.650000px;}
.x8_c01020{left:74.700000px;}
.xf_c01020{left:75.900000px;}
.xa_c01020{left:83.250000px;}
.xb_c01020{left:95.850000px;}
.x5_c01020{left:98.250000px;}
.x10_c01020{left:110.400000px;}
.xc_c01020{left:111.450000px;}
.xd_c01020{left:131.100000px;}
.x9_c01020{left:152.850000px;}
.x1_c01020{left:202.200000px;}
.x12_c01020{left:239.101730px;}
.xe_c01020{left:291.000000px;}
.x11_c01020{left:448.950000px;}
@media print{
.v1_c01020{vertical-align:-1.600000pt;}
.v0_c01020{vertical-align:0.000000pt;}
.ls5_c01020{letter-spacing:0.000000pt;}
.ls7_c01020{letter-spacing:2.666667pt;}
.ls8_c01020{letter-spacing:5.333333pt;}
.ls3_c01020{letter-spacing:6.566400pt;}
.ls6_c01020{letter-spacing:8.000000pt;}
.ls1_c01020{letter-spacing:22.482667pt;}
.ls2_c01020{letter-spacing:36.349333pt;}
.ls4_c01020{letter-spacing:74.186667pt;}
.ls0_c01020{letter-spacing:362.477333pt;}
.ws4_c01020{word-spacing:-31.373333pt;}
.ws0_c01020{word-spacing:-22.056000pt;}
.ws5_c01020{word-spacing:-20.586667pt;}
.ws1_c01020{word-spacing:-12.824000pt;}
.ws3_c01020{word-spacing:-12.586667pt;}
.ws2_c01020{word-spacing:-11.957333pt;}
.ws6_c01020{word-spacing:0.000000pt;}
._33_c01020{margin-left:-18.613333pt;}
._34_c01020{margin-left:-15.992000pt;}
._28_c01020{margin-left:-13.056000pt;}
._c_c01020{margin-left:-9.858667pt;}
._24_c01020{margin-left:-8.448000pt;}
._15_c01020{margin-left:-7.221333pt;}
._19_c01020{margin-left:-6.037333pt;}
._d_c01020{margin-left:-4.853333pt;}
._1b_c01020{margin-left:-3.909333pt;}
._a_c01020{margin-left:-2.986667pt;}
._b_c01020{margin-left:-1.568000pt;}
._8_c01020{width:1.093333pt;}
._6_c01020{width:2.360000pt;}
._7_c01020{width:3.253333pt;}
._4_c01020{width:4.984000pt;}
._9_c01020{width:5.973333pt;}
._1_c01020{width:7.224000pt;}
._3_c01020{width:8.232000pt;}
._0_c01020{width:9.408000pt;}
._5_c01020{width:10.920000pt;}
._14_c01020{width:12.144000pt;}
._2b_c01020{width:13.200000pt;}
._1e_c01020{width:14.544000pt;}
._f_c01020{width:16.352000pt;}
._e_c01020{width:17.928000pt;}
._17_c01020{width:19.706667pt;}
._10_c01020{width:21.202667pt;}
._21_c01020{width:22.162667pt;}
._2e_c01020{width:23.146667pt;}
._13_c01020{width:24.226667pt;}
._2d_c01020{width:25.709333pt;}
._2f_c01020{width:28.221333pt;}
._12_c01020{width:30.125333pt;}
._1f_c01020{width:32.778667pt;}
._20_c01020{width:33.994667pt;}
._25_c01020{width:35.077333pt;}
._22_c01020{width:36.970667pt;}
._18_c01020{width:39.605333pt;}
._1a_c01020{width:40.808000pt;}
._16_c01020{width:42.629333pt;}
._2_c01020{width:46.186667pt;}
._29_c01020{width:52.072000pt;}
._11_c01020{width:63.754667pt;}
._2c_c01020{width:97.157333pt;}
._1d_c01020{width:127.082667pt;}
._23_c01020{width:147.213333pt;}
._31_c01020{width:155.154667pt;}
._32_c01020{width:156.232000pt;}
._2a_c01020{width:177.810667pt;}
._1c_c01020{width:224.112000pt;}
._27_c01020{width:253.274667pt;}
._30_c01020{width:302.914667pt;}
._26_c01020{width:646.130667pt;}
.fs4_c01020{font-size:40.000000pt;}
.fs3_c01020{font-size:40.533333pt;}
.fs5_c01020{font-size:42.666667pt;}
.fs2_c01020{font-size:50.666667pt;}
.fs1_c01020{font-size:53.333333pt;}
.fs0_c01020{font-size:56.000000pt;}
.y0_c01020{bottom:0.000000pt;}
.y2d_c01020{bottom:2.760000pt;}
.y2c_c01020{bottom:6.425206pt;}
.y2b_c01020{bottom:32.426667pt;}
.y2a_c01020{bottom:51.360000pt;}
.y29_c01020{bottom:67.493333pt;}
.y28_c01020{bottom:83.760000pt;}
.y27_c01020{bottom:100.293333pt;}
.y26_c01020{bottom:115.493333pt;}
.y25_c01020{bottom:131.760000pt;}
.y24_c01020{bottom:148.160000pt;}
.y23_c01020{bottom:163.893333pt;}
.y22_c01020{bottom:180.426667pt;}
.y21_c01020{bottom:195.626667pt;}
.y20_c01020{bottom:212.160000pt;}
.y1f_c01020{bottom:229.226667pt;}
.y1e_c01020{bottom:243.893333pt;}
.y1d_c01020{bottom:261.093333pt;}
.y1c_c01020{bottom:276.293333pt;}
.y1b_c01020{bottom:293.093333pt;}
.y1a_c01020{bottom:308.160000pt;}
.y19_c01020{bottom:325.226667pt;}
.y18_c01020{bottom:341.760000pt;}
.y17_c01020{bottom:357.093333pt;}
.y16_c01020{bottom:373.893333pt;}
.y15_c01020{bottom:390.560000pt;}
.y14_c01020{bottom:406.293333pt;}
.y13_c01020{bottom:422.693333pt;}
.y12_c01020{bottom:438.293333pt;}
.y11_c01020{bottom:454.560000pt;}
.y10_c01020{bottom:469.760000pt;}
.yf_c01020{bottom:485.760000pt;}
.ye_c01020{bottom:501.893333pt;}
.yd_c01020{bottom:517.760000pt;}
.yc_c01020{bottom:533.760000pt;}
.yb_c01020{bottom:550.160000pt;}
.ya_c01020{bottom:566.426667pt;}
.y9_c01020{bottom:582.293333pt;}
.y8_c01020{bottom:598.160000pt;}
.y7_c01020{bottom:614.693333pt;}
.y6_c01020{bottom:631.226667pt;}
.y5_c01020{bottom:647.360000pt;}
.y4_c01020{bottom:663.626667pt;}
.y3_c01020{bottom:679.760000pt;}
.y2_c01020{bottom:695.360000pt;}
.y1_c01020{bottom:715.493333pt;}
.h6_c01020{height:11.733399pt;}
.h7_c01020{height:38.937500pt;}
.h4_c01020{height:53.098667pt;}
.h3_c01020{height:55.893333pt;}
.h5_c01020{height:57.088000pt;}
.h2_c01020{height:58.688000pt;}
.h0_c01020{height:743.066667pt;}
.h1_c01020{height:743.333333pt;}
.w2_c01020{width:93.222667pt;}
.w1_c01020{width:510.666667pt;}
.w0_c01020{width:510.733333pt;}
.x0_c01020{left:0.000000pt;}
.x7_c01020{left:21.333333pt;}
.x6_c01020{left:53.733333pt;}
.x3_c01020{left:62.933333pt;}
.x4_c01020{left:64.133333pt;}
.x2_c01020{left:65.466667pt;}
.x8_c01020{left:66.400000pt;}
.xf_c01020{left:67.466667pt;}
.xa_c01020{left:74.000000pt;}
.xb_c01020{left:85.200000pt;}
.x5_c01020{left:87.333333pt;}
.x10_c01020{left:98.133333pt;}
.xc_c01020{left:99.066667pt;}
.xd_c01020{left:116.533333pt;}
.x9_c01020{left:135.866667pt;}
.x1_c01020{left:179.733333pt;}
.x12_c01020{left:212.534871pt;}
.xe_c01020{left:258.666667pt;}
.x11_c01020{left:399.066667pt;}
}





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

.ir_c01021:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01021{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01021;src:url('chunks/assets/font_d30dc22e9007cc04eb10d279.woff2')format("woff");}.ff1_c01021{font-family:ff1_c01021;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01021;src:url('chunks/assets/font_3852677ada92898aae42718a.woff2')format("woff");}.ff2_c01021{font-family:ff2_c01021;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01021;src:url('chunks/assets/font_44899ad5463dc5e80299f992.woff2')format("woff");}.ff3_c01021{font-family:ff3_c01021;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01021;src:url('chunks/assets/font_93152e08e7fffee5d7b4efd4.woff2')format("woff");}.ff4_c01021{font-family:ff4_c01021;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01021;src:url('chunks/assets/font_c0bcd1fd31ede8cba7c98dba.woff2')format("woff");}.ff5_c01021{font-family:ff5_c01021;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01021;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff6_c01021{font-family:ff6_c01021;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01021{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01021{vertical-align:0.000000px;}
.ls4_c01021{letter-spacing:0.000000px;}
.ls5_c01021{letter-spacing:3.000000px;}
.ls0_c01021{letter-spacing:18.093000px;}
.ls2_c01021{letter-spacing:21.060000px;}
.ls3_c01021{letter-spacing:29.337000px;}
.ls1_c01021{letter-spacing:30.537000px;}
.sc__c01021{text-shadow:none;}
.sc0_c01021{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01021{-webkit-text-stroke:0px transparent;}
.sc0_c01021{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c01021{word-spacing:-50.022000px;}
.ws4_c01021{word-spacing:-15.813000px;}
.ws5_c01021{word-spacing:-15.060000px;}
.ws2_c01021{word-spacing:-14.160000px;}
.ws0_c01021{word-spacing:-13.452000px;}
.ws1_c01021{word-spacing:-0.948000px;}
.ws6_c01021{word-spacing:0.000000px;}
._20_c01021{margin-left:-13.668000px;}
._12_c01021{margin-left:-11.343000px;}
._11_c01021{margin-left:-10.305000px;}
._21_c01021{margin-left:-9.255000px;}
._9_c01021{margin-left:-8.208000px;}
._f_c01021{margin-left:-6.855000px;}
._5_c01021{margin-left:-5.586000px;}
._a_c01021{margin-left:-3.534000px;}
._e_c01021{margin-left:-2.265000px;}
._16_c01021{margin-left:-1.137000px;}
._0_c01021{width:1.539000px;}
._3_c01021{width:2.793000px;}
._2_c01021{width:4.332000px;}
._d_c01021{width:5.358000px;}
._7_c01021{width:6.612000px;}
._4_c01021{width:7.866000px;}
._b_c01021{width:9.675000px;}
._18_c01021{width:10.929000px;}
._15_c01021{width:12.378000px;}
._17_c01021{width:13.509000px;}
._1d_c01021{width:14.520000px;}
._10_c01021{width:15.918000px;}
._24_c01021{width:17.145000px;}
._13_c01021{width:18.297000px;}
._23_c01021{width:19.338000px;}
._1e_c01021{width:20.592000px;}
._14_c01021{width:23.004000px;}
._6_c01021{width:24.528000px;}
._1f_c01021{width:26.496000px;}
._8_c01021{width:27.537000px;}
._1_c01021{width:29.697000px;}
._19_c01021{width:31.164000px;}
._1b_c01021{width:32.271000px;}
._c_c01021{width:34.485000px;}
._22_c01021{width:37.908000px;}
._1a_c01021{width:44.406000px;}
._1c_c01021{width:54.060000px;}
.fc2_c01021{color:transparent;}
.fc1_c01021{color:rgb(128,128,128);}
.fc0_c01021{color:rgb(0,0,0);}
.fs5_c01021{font-size:48.000000px;}
.fs3_c01021{font-size:51.000000px;}
.fs4_c01021{font-size:54.000000px;}
.fs0_c01021{font-size:57.000000px;}
.fs2_c01021{font-size:60.000000px;}
.fs1_c01021{font-size:63.000000px;}
.y0_c01021{bottom:0.000000px;}
.y4c_c01021{bottom:3.105000px;}
.y4b_c01021{bottom:7.228355px;}
.y29_c01021{bottom:48.285000px;}
.y4a_c01021{bottom:65.085000px;}
.y28_c01021{bottom:67.485000px;}
.y27_c01021{bottom:86.085000px;}
.y26_c01021{bottom:104.535000px;}
.y25_c01021{bottom:122.085000px;}
.y49_c01021{bottom:123.735000px;}
.y24_c01021{bottom:140.985000px;}
.y48_c01021{bottom:141.435000px;}
.y23_c01021{bottom:159.285000px;}
.y47_c01021{bottom:160.185000px;}
.y22_c01021{bottom:176.835000px;}
.y46_c01021{bottom:178.185000px;}
.y21_c01021{bottom:195.435000px;}
.y45_c01021{bottom:196.335000px;}
.y20_c01021{bottom:214.185000px;}
.y44_c01021{bottom:214.635000px;}
.y1f_c01021{bottom:232.185000px;}
.y43_c01021{bottom:232.785000px;}
.y1e_c01021{bottom:250.635000px;}
.y42_c01021{bottom:251.385000px;}
.y1d_c01021{bottom:268.335000px;}
.y41_c01021{bottom:269.235000px;}
.y1c_c01021{bottom:286.185000px;}
.y40_c01021{bottom:287.235000px;}
.y3f_c01021{bottom:304.335000px;}
.y1b_c01021{bottom:305.085000px;}
.y1a_c01021{bottom:323.235000px;}
.y3e_c01021{bottom:340.785000px;}
.y19_c01021{bottom:341.235000px;}
.y3d_c01021{bottom:359.085000px;}
.y18_c01021{bottom:359.685000px;}
.y17_c01021{bottom:377.535000px;}
.y3c_c01021{bottom:378.285000px;}
.y16_c01021{bottom:395.535000px;}
.y3b_c01021{bottom:396.135000px;}
.y15_c01021{bottom:413.685000px;}
.y3a_c01021{bottom:414.435000px;}
.y14_c01021{bottom:431.685000px;}
.y39_c01021{bottom:432.585000px;}
.y38_c01021{bottom:450.435000px;}
.y13_c01021{bottom:450.885000px;}
.y12_c01021{bottom:468.435000px;}
.y37_c01021{bottom:469.035000px;}
.y11_c01021{bottom:487.035000px;}
.y10_c01021{bottom:504.885000px;}
.y36_c01021{bottom:505.185000px;}
.yf_c01021{bottom:523.035000px;}
.y35_c01021{bottom:523.335000px;}
.y34_c01021{bottom:540.885000px;}
.ye_c01021{bottom:541.035000px;}
.yd_c01021{bottom:559.185000px;}
.yc_c01021{bottom:577.035000px;}
.y33_c01021{bottom:577.335000px;}
.yb_c01021{bottom:595.335000px;}
.ya_c01021{bottom:613.035000px;}
.y32_c01021{bottom:613.485000px;}
.y9_c01021{bottom:631.335000px;}
.y31_c01021{bottom:631.785000px;}
.y8_c01021{bottom:649.635000px;}
.y30_c01021{bottom:650.235000px;}
.y2f_c01021{bottom:667.785000px;}
.y7_c01021{bottom:668.235000px;}
.y2e_c01021{bottom:686.085000px;}
.y6_c01021{bottom:686.835000px;}
.y5_c01021{bottom:704.385000px;}
.y2d_c01021{bottom:722.835000px;}
.y4_c01021{bottom:723.285000px;}
.y2c_c01021{bottom:741.135000px;}
.y3_c01021{bottom:741.435000px;}
.y2b_c01021{bottom:758.985000px;}
.y2_c01021{bottom:760.335000px;}
.y2a_c01021{bottom:777.285000px;}
.y1_c01021{bottom:778.485000px;}
.h5_c01021{height:13.200074px;}
.h6_c01021{height:43.804688px;}
.h2_c01021{height:59.736000px;}
.h4_c01021{height:62.880000px;}
.h3_c01021{height:66.024000px;}
.h1_c01021{height:834.750000px;}
.h0_c01021{height:834.825000px;}
.w2_c01021{width:104.875500px;}
.w1_c01021{width:570.000000px;}
.w0_c01021{width:570.225000px;}
.x0_c01021{left:0.000000px;}
.x3_c01021{left:86.400000px;}
.x4_c01021{left:87.450000px;}
.x2_c01021{left:89.550000px;}
.x6_c01021{left:90.750000px;}
.x1_c01021{left:92.100000px;}
.x5_c01021{left:117.900000px;}
.x7_c01021{left:142.050000px;}
.xf_c01021{left:236.926758px;}
.x8_c01021{left:308.850000px;}
.x9_c01021{left:309.900000px;}
.xa_c01021{left:311.100000px;}
.xb_c01021{left:329.850000px;}
.xc_c01021{left:361.800000px;}
.xd_c01021{left:387.900000px;}
.xe_c01021{left:399.000000px;}
@media print{
.v0_c01021{vertical-align:0.000000pt;}
.ls4_c01021{letter-spacing:0.000000pt;}
.ls5_c01021{letter-spacing:2.666667pt;}
.ls0_c01021{letter-spacing:16.082667pt;}
.ls2_c01021{letter-spacing:18.720000pt;}
.ls3_c01021{letter-spacing:26.077333pt;}
.ls1_c01021{letter-spacing:27.144000pt;}
.ws3_c01021{word-spacing:-44.464000pt;}
.ws4_c01021{word-spacing:-14.056000pt;}
.ws5_c01021{word-spacing:-13.386667pt;}
.ws2_c01021{word-spacing:-12.586667pt;}
.ws0_c01021{word-spacing:-11.957333pt;}
.ws1_c01021{word-spacing:-0.842667pt;}
.ws6_c01021{word-spacing:0.000000pt;}
._20_c01021{margin-left:-12.149333pt;}
._12_c01021{margin-left:-10.082667pt;}
._11_c01021{margin-left:-9.160000pt;}
._21_c01021{margin-left:-8.226667pt;}
._9_c01021{margin-left:-7.296000pt;}
._f_c01021{margin-left:-6.093333pt;}
._5_c01021{margin-left:-4.965333pt;}
._a_c01021{margin-left:-3.141333pt;}
._e_c01021{margin-left:-2.013333pt;}
._16_c01021{margin-left:-1.010667pt;}
._0_c01021{width:1.368000pt;}
._3_c01021{width:2.482667pt;}
._2_c01021{width:3.850667pt;}
._d_c01021{width:4.762667pt;}
._7_c01021{width:5.877333pt;}
._4_c01021{width:6.992000pt;}
._b_c01021{width:8.600000pt;}
._18_c01021{width:9.714667pt;}
._15_c01021{width:11.002667pt;}
._17_c01021{width:12.008000pt;}
._1d_c01021{width:12.906667pt;}
._10_c01021{width:14.149333pt;}
._24_c01021{width:15.240000pt;}
._13_c01021{width:16.264000pt;}
._23_c01021{width:17.189333pt;}
._1e_c01021{width:18.304000pt;}
._14_c01021{width:20.448000pt;}
._6_c01021{width:21.802667pt;}
._1f_c01021{width:23.552000pt;}
._8_c01021{width:24.477333pt;}
._1_c01021{width:26.397333pt;}
._19_c01021{width:27.701333pt;}
._1b_c01021{width:28.685333pt;}
._c_c01021{width:30.653333pt;}
._22_c01021{width:33.696000pt;}
._1a_c01021{width:39.472000pt;}
._1c_c01021{width:48.053333pt;}
.fs5_c01021{font-size:42.666667pt;}
.fs3_c01021{font-size:45.333333pt;}
.fs4_c01021{font-size:48.000000pt;}
.fs0_c01021{font-size:50.666667pt;}
.fs2_c01021{font-size:53.333333pt;}
.fs1_c01021{font-size:56.000000pt;}
.y0_c01021{bottom:0.000000pt;}
.y4c_c01021{bottom:2.760000pt;}
.y4b_c01021{bottom:6.425204pt;}
.y29_c01021{bottom:42.920000pt;}
.y4a_c01021{bottom:57.853333pt;}
.y28_c01021{bottom:59.986667pt;}
.y27_c01021{bottom:76.520000pt;}
.y26_c01021{bottom:92.920000pt;}
.y25_c01021{bottom:108.520000pt;}
.y49_c01021{bottom:109.986667pt;}
.y24_c01021{bottom:125.320000pt;}
.y48_c01021{bottom:125.720000pt;}
.y23_c01021{bottom:141.586667pt;}
.y47_c01021{bottom:142.386667pt;}
.y22_c01021{bottom:157.186667pt;}
.y46_c01021{bottom:158.386667pt;}
.y21_c01021{bottom:173.720000pt;}
.y45_c01021{bottom:174.520000pt;}
.y20_c01021{bottom:190.386667pt;}
.y44_c01021{bottom:190.786667pt;}
.y1f_c01021{bottom:206.386667pt;}
.y43_c01021{bottom:206.920000pt;}
.y1e_c01021{bottom:222.786667pt;}
.y42_c01021{bottom:223.453333pt;}
.y1d_c01021{bottom:238.520000pt;}
.y41_c01021{bottom:239.320000pt;}
.y1c_c01021{bottom:254.386667pt;}
.y40_c01021{bottom:255.320000pt;}
.y3f_c01021{bottom:270.520000pt;}
.y1b_c01021{bottom:271.186667pt;}
.y1a_c01021{bottom:287.320000pt;}
.y3e_c01021{bottom:302.920000pt;}
.y19_c01021{bottom:303.320000pt;}
.y3d_c01021{bottom:319.186667pt;}
.y18_c01021{bottom:319.720000pt;}
.y17_c01021{bottom:335.586667pt;}
.y3c_c01021{bottom:336.253333pt;}
.y16_c01021{bottom:351.586667pt;}
.y3b_c01021{bottom:352.120000pt;}
.y15_c01021{bottom:367.720000pt;}
.y3a_c01021{bottom:368.386667pt;}
.y14_c01021{bottom:383.720000pt;}
.y39_c01021{bottom:384.520000pt;}
.y38_c01021{bottom:400.386667pt;}
.y13_c01021{bottom:400.786667pt;}
.y12_c01021{bottom:416.386667pt;}
.y37_c01021{bottom:416.920000pt;}
.y11_c01021{bottom:432.920000pt;}
.y10_c01021{bottom:448.786667pt;}
.y36_c01021{bottom:449.053333pt;}
.yf_c01021{bottom:464.920000pt;}
.y35_c01021{bottom:465.186667pt;}
.y34_c01021{bottom:480.786667pt;}
.ye_c01021{bottom:480.920000pt;}
.yd_c01021{bottom:497.053333pt;}
.yc_c01021{bottom:512.920000pt;}
.y33_c01021{bottom:513.186667pt;}
.yb_c01021{bottom:529.186667pt;}
.ya_c01021{bottom:544.920000pt;}
.y32_c01021{bottom:545.320000pt;}
.y9_c01021{bottom:561.186667pt;}
.y31_c01021{bottom:561.586667pt;}
.y8_c01021{bottom:577.453333pt;}
.y30_c01021{bottom:577.986667pt;}
.y2f_c01021{bottom:593.586667pt;}
.y7_c01021{bottom:593.986667pt;}
.y2e_c01021{bottom:609.853333pt;}
.y6_c01021{bottom:610.520000pt;}
.y5_c01021{bottom:626.120000pt;}
.y2d_c01021{bottom:642.520000pt;}
.y4_c01021{bottom:642.920000pt;}
.y2c_c01021{bottom:658.786667pt;}
.y3_c01021{bottom:659.053333pt;}
.y2b_c01021{bottom:674.653333pt;}
.y2_c01021{bottom:675.853333pt;}
.y2a_c01021{bottom:690.920000pt;}
.y1_c01021{bottom:691.986667pt;}
.h5_c01021{height:11.733399pt;}
.h6_c01021{height:38.937500pt;}
.h2_c01021{height:53.098667pt;}
.h4_c01021{height:55.893333pt;}
.h3_c01021{height:58.688000pt;}
.h1_c01021{height:742.000000pt;}
.h0_c01021{height:742.066667pt;}
.w2_c01021{width:93.222667pt;}
.w1_c01021{width:506.666667pt;}
.w0_c01021{width:506.866667pt;}
.x0_c01021{left:0.000000pt;}
.x3_c01021{left:76.800000pt;}
.x4_c01021{left:77.733333pt;}
.x2_c01021{left:79.600000pt;}
.x6_c01021{left:80.666667pt;}
.x1_c01021{left:81.866667pt;}
.x5_c01021{left:104.800000pt;}
.x7_c01021{left:126.266667pt;}
.xf_c01021{left:210.601563pt;}
.x8_c01021{left:274.533333pt;}
.x9_c01021{left:275.466667pt;}
.xa_c01021{left:276.533333pt;}
.xb_c01021{left:293.200000pt;}
.xc_c01021{left:321.600000pt;}
.xd_c01021{left:344.800000pt;}
.xe_c01021{left:354.666667pt;}
}





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

.ir_c01022:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01022{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01022;src:url('chunks/assets/font_56a34710ff03365cd5f90778.woff2')format("woff");}.ff1_c01022{font-family:ff1_c01022;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01022;src:url('chunks/assets/font_ad2d3d5e7d1ce5b03149bffd.woff2')format("woff");}.ff2_c01022{font-family:ff2_c01022;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01022;src:url('chunks/assets/font_7b48245c8d4ac7e3b16c92db.woff2')format("woff");}.ff3_c01022{font-family:ff3_c01022;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01022;src:url('chunks/assets/font_cd8afacfed9cc7e70bebdd46.woff2')format("woff");}.ff4_c01022{font-family:ff4_c01022;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01022;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff5_c01022{font-family:ff5_c01022;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01022{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01022{vertical-align:0.000000px;}
.v1_c01022{vertical-align:69.600000px;}
.ls3_c01022{letter-spacing:0.000000px;}
.ls2_c01022{letter-spacing:1.503000px;}
.ls1_c01022{letter-spacing:2.844000px;}
.ls4_c01022{letter-spacing:6.000000px;}
.ls0_c01022{letter-spacing:7.005000px;}
.ls5_c01022{letter-spacing:9.000000px;}
.sc__c01022{text-shadow:none;}
.sc0_c01022{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01022{-webkit-text-stroke:0px transparent;}
.sc0_c01022{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c01022{word-spacing:-35.295000px;}
.ws4_c01022{word-spacing:-23.160000px;}
.ws5_c01022{word-spacing:-15.813000px;}
.ws1_c01022{word-spacing:-15.060000px;}
.ws2_c01022{word-spacing:-14.427000px;}
.ws0_c01022{word-spacing:-14.160000px;}
.ws6_c01022{word-spacing:0.000000px;}
._b_c01022{margin-left:-20.922000px;}
._26_c01022{margin-left:-15.489000px;}
._f_c01022{margin-left:-13.296000px;}
._1d_c01022{margin-left:-11.625000px;}
._1e_c01022{margin-left:-9.075000px;}
._e_c01022{margin-left:-7.914000px;}
._c_c01022{margin-left:-6.360000px;}
._4_c01022{margin-left:-4.560000px;}
._8_c01022{margin-left:-2.766000px;}
._9_c01022{margin-left:-1.662000px;}
._a_c01022{width:1.812000px;}
._1_c01022{width:2.880000px;}
._7_c01022{width:4.110000px;}
._6_c01022{width:5.340000px;}
._2_c01022{width:6.420000px;}
._0_c01022{width:8.400000px;}
._11_c01022{width:9.891000px;}
._5_c01022{width:10.980000px;}
._12_c01022{width:12.009000px;}
._13_c01022{width:13.053000px;}
._14_c01022{width:14.337000px;}
._3_c01022{width:15.900000px;}
._15_c01022{width:17.850000px;}
._d_c01022{width:19.800000px;}
._16_c01022{width:21.567000px;}
._20_c01022{width:23.487000px;}
._22_c01022{width:25.065000px;}
._1c_c01022{width:26.307000px;}
._1b_c01022{width:27.945000px;}
._24_c01022{width:29.208000px;}
._21_c01022{width:30.450000px;}
._17_c01022{width:32.610000px;}
._18_c01022{width:35.115000px;}
._1f_c01022{width:37.713000px;}
._10_c01022{width:39.684000px;}
._19_c01022{width:42.843000px;}
._25_c01022{width:47.181000px;}
._1a_c01022{width:85.227000px;}
._23_c01022{width:94.314000px;}
.fc2_c01022{color:transparent;}
.fc1_c01022{color:rgb(128,128,128);}
.fc0_c01022{color:rgb(0,0,0);}
.fs1_c01022{font-size:45.000000px;}
.fs5_c01022{font-size:48.000000px;}
.fs2_c01022{font-size:54.000000px;}
.fs0_c01022{font-size:60.000000px;}
.fs4_c01022{font-size:63.000000px;}
.fs3_c01022{font-size:156.000000px;}
.y0_c01022{bottom:0.000000px;}
.y53_c01022{bottom:3.105000px;}
.y52_c01022{bottom:7.228363px;}
.y51_c01022{bottom:33.750000px;}
.y50_c01022{bottom:52.650000px;}
.y27_c01022{bottom:55.800000px;}
.y4f_c01022{bottom:71.850000px;}
.y26_c01022{bottom:74.250000px;}
.y4e_c01022{bottom:89.700000px;}
.y25_c01022{bottom:93.150000px;}
.y4d_c01022{bottom:108.000000px;}
.y24_c01022{bottom:111.150000px;}
.y2_c01022{bottom:117.450000px;}
.y4c_c01022{bottom:126.600000px;}
.y23_c01022{bottom:129.600000px;}
.y1_c01022{bottom:135.600000px;}
.y4b_c01022{bottom:145.050000px;}
.y22_c01022{bottom:148.200000px;}
.y4a_c01022{bottom:163.050000px;}
.y21_c01022{bottom:166.350000px;}
.y49_c01022{bottom:180.900000px;}
.y20_c01022{bottom:184.950000px;}
.y48_c01022{bottom:198.750000px;}
.y1f_c01022{bottom:202.950000px;}
.y47_c01022{bottom:216.750000px;}
.y1e_c01022{bottom:221.400000px;}
.y46_c01022{bottom:235.650000px;}
.y1d_c01022{bottom:239.250000px;}
.y45_c01022{bottom:253.050000px;}
.y1c_c01022{bottom:257.250000px;}
.y44_c01022{bottom:271.650000px;}
.y1b_c01022{bottom:275.100000px;}
.y43_c01022{bottom:289.950000px;}
.y1a_c01022{bottom:292.950000px;}
.y42_c01022{bottom:307.800000px;}
.y19_c01022{bottom:312.150000px;}
.y41_c01022{bottom:326.250000px;}
.y18_c01022{bottom:330.150000px;}
.y40_c01022{bottom:344.550000px;}
.y17_c01022{bottom:348.000000px;}
.y3f_c01022{bottom:361.800000px;}
.y16_c01022{bottom:366.300000px;}
.y3e_c01022{bottom:380.250000px;}
.y15_c01022{bottom:384.150000px;}
.y3d_c01022{bottom:398.550000px;}
.y14_c01022{bottom:402.600000px;}
.y3c_c01022{bottom:416.850000px;}
.y13_c01022{bottom:420.750000px;}
.y3b_c01022{bottom:435.150000px;}
.y12_c01022{bottom:438.150000px;}
.y3a_c01022{bottom:453.000000px;}
.y11_c01022{bottom:456.300000px;}
.y39_c01022{bottom:471.750000px;}
.y10_c01022{bottom:474.600000px;}
.y38_c01022{bottom:489.750000px;}
.yf_c01022{bottom:492.750000px;}
.y37_c01022{bottom:508.050000px;}
.ye_c01022{bottom:510.750000px;}
.y36_c01022{bottom:525.900000px;}
.yd_c01022{bottom:528.300000px;}
.y35_c01022{bottom:543.150000px;}
.yc_c01022{bottom:545.400000px;}
.y34_c01022{bottom:562.050000px;}
.yb_c01022{bottom:563.850000px;}
.y33_c01022{bottom:580.500000px;}
.ya_c01022{bottom:582.150000px;}
.y32_c01022{bottom:598.500000px;}
.y9_c01022{bottom:600.450000px;}
.y8_c01022{bottom:601.350000px;}
.y31_c01022{bottom:615.900000px;}
.y30_c01022{bottom:634.800000px;}
.y2f_c01022{bottom:653.100000px;}
.y7_c01022{bottom:655.050000px;}
.y2e_c01022{bottom:670.950000px;}
.y6_c01022{bottom:672.750000px;}
.y2d_c01022{bottom:688.200000px;}
.y5_c01022{bottom:691.200000px;}
.y2c_c01022{bottom:706.800000px;}
.y4_c01022{bottom:709.050000px;}
.y2b_c01022{bottom:725.700000px;}
.y3_c01022{bottom:727.350000px;}
.y2a_c01022{bottom:743.250000px;}
.y29_c01022{bottom:761.850000px;}
.y28_c01022{bottom:780.300000px;}
.h5_c01022{height:13.200074px;}
.h6_c01022{height:43.804688px;}
.h2_c01022{height:56.592000px;}
.h1_c01022{height:62.880000px;}
.h4_c01022{height:66.024000px;}
.h3_c01022{height:163.488000px;}
.h0_c01022{height:843.750000px;}
.w2_c01022{width:104.875500px;}
.w1_c01022{width:579.750000px;}
.w0_c01022{width:579.975000px;}
.x0_c01022{left:0.000000px;}
.x2_c01022{left:13.500000px;}
.x1_c01022{left:16.200000px;}
.x4_c01022{left:72.300000px;}
.x3_c01022{left:74.550000px;}
.x9_c01022{left:75.600000px;}
.xa_c01022{left:76.650000px;}
.x7_c01022{left:77.700000px;}
.xb_c01022{left:79.350000px;}
.x5_c01022{left:96.900000px;}
.x8_c01022{left:109.800000px;}
.x6_c01022{left:148.950000px;}
.x14_c01022{left:241.801758px;}
.xc_c01022{left:288.900000px;}
.xd_c01022{left:292.050000px;}
.xe_c01022{left:293.700000px;}
.x12_c01022{left:294.750000px;}
.xf_c01022{left:296.100000px;}
.x10_c01022{left:297.600000px;}
.x11_c01022{left:298.650000px;}
.x13_c01022{left:450.900000px;}
@media print{
.v0_c01022{vertical-align:0.000000pt;}
.v1_c01022{vertical-align:61.866667pt;}
.ls3_c01022{letter-spacing:0.000000pt;}
.ls2_c01022{letter-spacing:1.336000pt;}
.ls1_c01022{letter-spacing:2.528000pt;}
.ls4_c01022{letter-spacing:5.333333pt;}
.ls0_c01022{letter-spacing:6.226667pt;}
.ls5_c01022{letter-spacing:8.000000pt;}
.ws3_c01022{word-spacing:-31.373333pt;}
.ws4_c01022{word-spacing:-20.586667pt;}
.ws5_c01022{word-spacing:-14.056000pt;}
.ws1_c01022{word-spacing:-13.386667pt;}
.ws2_c01022{word-spacing:-12.824000pt;}
.ws0_c01022{word-spacing:-12.586667pt;}
.ws6_c01022{word-spacing:0.000000pt;}
._b_c01022{margin-left:-18.597333pt;}
._26_c01022{margin-left:-13.768000pt;}
._f_c01022{margin-left:-11.818667pt;}
._1d_c01022{margin-left:-10.333333pt;}
._1e_c01022{margin-left:-8.066667pt;}
._e_c01022{margin-left:-7.034667pt;}
._c_c01022{margin-left:-5.653333pt;}
._4_c01022{margin-left:-4.053333pt;}
._8_c01022{margin-left:-2.458667pt;}
._9_c01022{margin-left:-1.477333pt;}
._a_c01022{width:1.610667pt;}
._1_c01022{width:2.560000pt;}
._7_c01022{width:3.653333pt;}
._6_c01022{width:4.746667pt;}
._2_c01022{width:5.706667pt;}
._0_c01022{width:7.466667pt;}
._11_c01022{width:8.792000pt;}
._5_c01022{width:9.760000pt;}
._12_c01022{width:10.674667pt;}
._13_c01022{width:11.602667pt;}
._14_c01022{width:12.744000pt;}
._3_c01022{width:14.133333pt;}
._15_c01022{width:15.866667pt;}
._d_c01022{width:17.600000pt;}
._16_c01022{width:19.170667pt;}
._20_c01022{width:20.877333pt;}
._22_c01022{width:22.280000pt;}
._1c_c01022{width:23.384000pt;}
._1b_c01022{width:24.840000pt;}
._24_c01022{width:25.962667pt;}
._21_c01022{width:27.066667pt;}
._17_c01022{width:28.986667pt;}
._18_c01022{width:31.213333pt;}
._1f_c01022{width:33.522667pt;}
._10_c01022{width:35.274667pt;}
._19_c01022{width:38.082667pt;}
._25_c01022{width:41.938667pt;}
._1a_c01022{width:75.757333pt;}
._23_c01022{width:83.834667pt;}
.fs1_c01022{font-size:40.000000pt;}
.fs5_c01022{font-size:42.666667pt;}
.fs2_c01022{font-size:48.000000pt;}
.fs0_c01022{font-size:53.333333pt;}
.fs4_c01022{font-size:56.000000pt;}
.fs3_c01022{font-size:138.666667pt;}
.y0_c01022{bottom:0.000000pt;}
.y53_c01022{bottom:2.760000pt;}
.y52_c01022{bottom:6.425212pt;}
.y51_c01022{bottom:30.000000pt;}
.y50_c01022{bottom:46.800000pt;}
.y27_c01022{bottom:49.600000pt;}
.y4f_c01022{bottom:63.866667pt;}
.y26_c01022{bottom:66.000000pt;}
.y4e_c01022{bottom:79.733333pt;}
.y25_c01022{bottom:82.800000pt;}
.y4d_c01022{bottom:96.000000pt;}
.y24_c01022{bottom:98.800000pt;}
.y2_c01022{bottom:104.400000pt;}
.y4c_c01022{bottom:112.533333pt;}
.y23_c01022{bottom:115.200000pt;}
.y1_c01022{bottom:120.533333pt;}
.y4b_c01022{bottom:128.933333pt;}
.y22_c01022{bottom:131.733333pt;}
.y4a_c01022{bottom:144.933333pt;}
.y21_c01022{bottom:147.866667pt;}
.y49_c01022{bottom:160.800000pt;}
.y20_c01022{bottom:164.400000pt;}
.y48_c01022{bottom:176.666667pt;}
.y1f_c01022{bottom:180.400000pt;}
.y47_c01022{bottom:192.666667pt;}
.y1e_c01022{bottom:196.800000pt;}
.y46_c01022{bottom:209.466667pt;}
.y1d_c01022{bottom:212.666667pt;}
.y45_c01022{bottom:224.933333pt;}
.y1c_c01022{bottom:228.666667pt;}
.y44_c01022{bottom:241.466667pt;}
.y1b_c01022{bottom:244.533333pt;}
.y43_c01022{bottom:257.733333pt;}
.y1a_c01022{bottom:260.400000pt;}
.y42_c01022{bottom:273.600000pt;}
.y19_c01022{bottom:277.466667pt;}
.y41_c01022{bottom:290.000000pt;}
.y18_c01022{bottom:293.466667pt;}
.y40_c01022{bottom:306.266667pt;}
.y17_c01022{bottom:309.333333pt;}
.y3f_c01022{bottom:321.600000pt;}
.y16_c01022{bottom:325.600000pt;}
.y3e_c01022{bottom:338.000000pt;}
.y15_c01022{bottom:341.466667pt;}
.y3d_c01022{bottom:354.266667pt;}
.y14_c01022{bottom:357.866667pt;}
.y3c_c01022{bottom:370.533333pt;}
.y13_c01022{bottom:374.000000pt;}
.y3b_c01022{bottom:386.800000pt;}
.y12_c01022{bottom:389.466667pt;}
.y3a_c01022{bottom:402.666667pt;}
.y11_c01022{bottom:405.600000pt;}
.y39_c01022{bottom:419.333333pt;}
.y10_c01022{bottom:421.866667pt;}
.y38_c01022{bottom:435.333333pt;}
.yf_c01022{bottom:438.000000pt;}
.y37_c01022{bottom:451.600000pt;}
.ye_c01022{bottom:454.000000pt;}
.y36_c01022{bottom:467.466667pt;}
.yd_c01022{bottom:469.600000pt;}
.y35_c01022{bottom:482.800000pt;}
.yc_c01022{bottom:484.800000pt;}
.y34_c01022{bottom:499.600000pt;}
.yb_c01022{bottom:501.200000pt;}
.y33_c01022{bottom:516.000000pt;}
.ya_c01022{bottom:517.466667pt;}
.y32_c01022{bottom:532.000000pt;}
.y9_c01022{bottom:533.733333pt;}
.y8_c01022{bottom:534.533333pt;}
.y31_c01022{bottom:547.466667pt;}
.y30_c01022{bottom:564.266667pt;}
.y2f_c01022{bottom:580.533333pt;}
.y7_c01022{bottom:582.266667pt;}
.y2e_c01022{bottom:596.400000pt;}
.y6_c01022{bottom:598.000000pt;}
.y2d_c01022{bottom:611.733333pt;}
.y5_c01022{bottom:614.400000pt;}
.y2c_c01022{bottom:628.266667pt;}
.y4_c01022{bottom:630.266667pt;}
.y2b_c01022{bottom:645.066667pt;}
.y3_c01022{bottom:646.533333pt;}
.y2a_c01022{bottom:660.666667pt;}
.y29_c01022{bottom:677.200000pt;}
.y28_c01022{bottom:693.600000pt;}
.h5_c01022{height:11.733399pt;}
.h6_c01022{height:38.937500pt;}
.h2_c01022{height:50.304000pt;}
.h1_c01022{height:55.893333pt;}
.h4_c01022{height:58.688000pt;}
.h3_c01022{height:145.322667pt;}
.h0_c01022{height:750.000000pt;}
.w2_c01022{width:93.222667pt;}
.w1_c01022{width:515.333333pt;}
.w0_c01022{width:515.533333pt;}
.x0_c01022{left:0.000000pt;}
.x2_c01022{left:12.000000pt;}
.x1_c01022{left:14.400000pt;}
.x4_c01022{left:64.266667pt;}
.x3_c01022{left:66.266667pt;}
.x9_c01022{left:67.200000pt;}
.xa_c01022{left:68.133333pt;}
.x7_c01022{left:69.066667pt;}
.xb_c01022{left:70.533333pt;}
.x5_c01022{left:86.133333pt;}
.x8_c01022{left:97.600000pt;}
.x6_c01022{left:132.400000pt;}
.x14_c01022{left:214.934896pt;}
.xc_c01022{left:256.800000pt;}
.xd_c01022{left:259.600000pt;}
.xe_c01022{left:261.066667pt;}
.x12_c01022{left:262.000000pt;}
.xf_c01022{left:263.200000pt;}
.x10_c01022{left:264.533333pt;}
.x11_c01022{left:265.466667pt;}
.x13_c01022{left:400.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_c01023 {
    display:none;
  }
  .loading-indicator_c01023.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01023 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01023 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01023" -> "#page-container .classname_c01023")
 */
.pf_c01023 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01023 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01023.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01023 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01023 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01023 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01023 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01023 {overflow:visible;}
  }
}
.c_c01023 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01023 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01023:after { /* webkit #35443 */
  content: '';
}
.t_c01023:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01023 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01023 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01023 { /* info for Javascript */
  display:none;
}
.l_c01023 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01023 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01023 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01023:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01023{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01023;src:url('chunks/assets/font_13cb1cc46a8bc321783a06ba.woff2')format("woff");}.ff1_c01023{font-family:ff1_c01023;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01023;src:url('chunks/assets/font_5365562b745885b6b05cf9a6.woff2')format("woff");}.ff2_c01023{font-family:ff2_c01023;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01023;src:url('chunks/assets/font_ee17317420fc62488b1a709b.woff2')format("woff");}.ff3_c01023{font-family:ff3_c01023;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01023;src:url('chunks/assets/font_b3b54f976ffde4b322fb87f5.woff2')format("woff");}.ff4_c01023{font-family:ff4_c01023;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01023;src:url('chunks/assets/font_653cafb86477d9eda2c443dd.woff2')format("woff");}.ff5_c01023{font-family:ff5_c01023;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01023;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff6_c01023{font-family:ff6_c01023;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01023{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c01023{vertical-align:-136.800000px;}
.v2_c01023{vertical-align:-62.400000px;}
.v0_c01023{vertical-align:0.000000px;}
.ls5_c01023{letter-spacing:0.000000px;}
.ls3_c01023{letter-spacing:3.000000px;}
.ls6_c01023{letter-spacing:6.000000px;}
.ls4_c01023{letter-spacing:6.093000px;}
.ls2_c01023{letter-spacing:11.493000px;}
.ls1_c01023{letter-spacing:18.783000px;}
.ls0_c01023{letter-spacing:54.720000px;}
.sc__c01023{text-shadow:none;}
.sc0_c01023{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01023{-webkit-text-stroke:0px transparent;}
.sc0_c01023{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c01023{word-spacing:-50.022000px;}
.ws1_c01023{word-spacing:-33.189000px;}
.ws0_c01023{word-spacing:-18.048000px;}
.ws5_c01023{word-spacing:-15.813000px;}
.ws2_c01023{word-spacing:-14.160000px;}
.ws4_c01023{word-spacing:-13.452000px;}
.ws6_c01023{word-spacing:0.000000px;}
._21_c01023{margin-left:-17.502000px;}
._15_c01023{margin-left:-12.780000px;}
._1a_c01023{margin-left:-10.416000px;}
._b_c01023{margin-left:-9.360000px;}
._c_c01023{margin-left:-7.980000px;}
._f_c01023{margin-left:-6.660000px;}
._e_c01023{margin-left:-5.508000px;}
._6_c01023{margin-left:-4.248000px;}
._9_c01023{margin-left:-2.352000px;}
._0_c01023{margin-left:-1.260000px;}
._2_c01023{width:1.800000px;}
._1_c01023{width:3.360000px;}
._4_c01023{width:5.340000px;}
._5_c01023{width:6.612000px;}
._7_c01023{width:7.980000px;}
._d_c01023{width:9.048000px;}
._3_c01023{width:10.440000px;}
._a_c01023{width:12.420000px;}
._10_c01023{width:14.052000px;}
._8_c01023{width:16.200000px;}
._13_c01023{width:17.940000px;}
._12_c01023{width:19.836000px;}
._14_c01023{width:21.288000px;}
._11_c01023{width:22.956000px;}
._1d_c01023{width:25.731000px;}
._1e_c01023{width:27.255000px;}
._1c_c01023{width:28.635000px;}
._1b_c01023{width:29.967000px;}
._19_c01023{width:36.480000px;}
._1f_c01023{width:38.448000px;}
._16_c01023{width:55.728000px;}
._18_c01023{width:74.760000px;}
._17_c01023{width:99.612000px;}
._20_c01023{width:259.860000px;}
.fc2_c01023{color:transparent;}
.fc1_c01023{color:rgb(128,128,128);}
.fc0_c01023{color:rgb(0,0,0);}
.fs1_c01023{font-size:48.000000px;}
.fs4_c01023{font-size:57.000000px;}
.fs0_c01023{font-size:60.000000px;}
.fs2_c01023{font-size:63.000000px;}
.fs3_c01023{font-size:69.000000px;}
.fs5_c01023{font-size:159.000000px;}
.y0_c01023{bottom:0.000000px;}
.y50_c01023{bottom:3.105000px;}
.y4f_c01023{bottom:7.228371px;}
.y4e_c01023{bottom:61.215000px;}
.y25_c01023{bottom:75.315000px;}
.y4d_c01023{bottom:78.615000px;}
.y24_c01023{bottom:93.915000px;}
.y4c_c01023{bottom:97.665000px;}
.y23_c01023{bottom:112.515000px;}
.y4b_c01023{bottom:115.215000px;}
.y22_c01023{bottom:130.065000px;}
.y4a_c01023{bottom:133.665000px;}
.y21_c01023{bottom:148.815000px;}
.y49_c01023{bottom:151.665000px;}
.y20_c01023{bottom:167.115000px;}
.y48_c01023{bottom:170.415000px;}
.y1f_c01023{bottom:184.665000px;}
.y47_c01023{bottom:188.115000px;}
.y1e_c01023{bottom:204.165000px;}
.y46_c01023{bottom:206.865000px;}
.y45_c01023{bottom:225.165000px;}
.y1d_c01023{bottom:237.315000px;}
.y44_c01023{bottom:243.465000px;}
.y1c_c01023{bottom:257.865000px;}
.y43_c01023{bottom:261.315000px;}
.y1b_c01023{bottom:275.715000px;}
.y42_c01023{bottom:279.765000px;}
.y1a_c01023{bottom:292.965000px;}
.y41_c01023{bottom:296.715000px;}
.y19_c01023{bottom:310.515000px;}
.y40_c01023{bottom:314.865000px;}
.y18_c01023{bottom:329.415000px;}
.y3f_c01023{bottom:333.465000px;}
.y3e_c01023{bottom:351.015000px;}
.y17_c01023{bottom:364.965000px;}
.y3d_c01023{bottom:369.615000px;}
.y3c_c01023{bottom:387.765000px;}
.y16_c01023{bottom:401.265000px;}
.y3b_c01023{bottom:406.065000px;}
.y15_c01023{bottom:418.815000px;}
.y3a_c01023{bottom:423.915000px;}
.y14_c01023{bottom:437.115000px;}
.y39_c01023{bottom:442.215000px;}
.y13_c01023{bottom:455.415000px;}
.y38_c01023{bottom:460.365000px;}
.y12_c01023{bottom:473.865000px;}
.y37_c01023{bottom:478.365000px;}
.y11_c01023{bottom:491.865000px;}
.y36_c01023{bottom:495.915000px;}
.y10_c01023{bottom:510.315000px;}
.y35_c01023{bottom:514.665000px;}
.yf_c01023{bottom:528.315000px;}
.y34_c01023{bottom:532.365000px;}
.ye_c01023{bottom:546.765000px;}
.y33_c01023{bottom:550.515000px;}
.yd_c01023{bottom:564.615000px;}
.y32_c01023{bottom:568.665000px;}
.yc_c01023{bottom:582.315000px;}
.y31_c01023{bottom:586.665000px;}
.yb_c01023{bottom:600.465000px;}
.y30_c01023{bottom:604.815000px;}
.ya_c01023{bottom:618.615000px;}
.y2f_c01023{bottom:622.665000px;}
.y9_c01023{bottom:637.665000px;}
.y2e_c01023{bottom:640.365000px;}
.y8_c01023{bottom:655.215000px;}
.y2d_c01023{bottom:658.815000px;}
.y7_c01023{bottom:673.965000px;}
.y2c_c01023{bottom:677.115000px;}
.y6_c01023{bottom:692.265000px;}
.y2b_c01023{bottom:695.565000px;}
.y5_c01023{bottom:710.115000px;}
.y2a_c01023{bottom:713.565000px;}
.y4_c01023{bottom:729.015000px;}
.y29_c01023{bottom:731.865000px;}
.y3_c01023{bottom:747.315000px;}
.y28_c01023{bottom:750.015000px;}
.y2_c01023{bottom:765.915000px;}
.y27_c01023{bottom:768.165000px;}
.y1_c01023{bottom:784.665000px;}
.y26_c01023{bottom:786.765000px;}
.h7_c01023{height:13.200074px;}
.h8_c01023{height:43.804688px;}
.h6_c01023{height:59.736000px;}
.h5_c01023{height:61.788000px;}
.h2_c01023{height:62.880000px;}
.h3_c01023{height:66.024000px;}
.h4_c01023{height:74.796000px;}
.h0_c01023{height:848.625000px;}
.h1_c01023{height:849.000000px;}
.w2_c01023{width:104.875500px;}
.w1_c01023{width:579.750000px;}
.w0_c01023{width:579.975000px;}
.x0_c01023{left:0.000000px;}
.x10_c01023{left:26.700000px;}
.xf_c01023{left:32.700000px;}
.xc_c01023{left:56.400000px;}
.x7_c01023{left:81.600000px;}
.xe_c01023{left:82.950000px;}
.x5_c01023{left:84.300000px;}
.x4_c01023{left:85.650000px;}
.x3_c01023{left:86.700000px;}
.x2_c01023{left:88.050000px;}
.x8_c01023{left:89.400000px;}
.x1_c01023{left:90.750000px;}
.x9_c01023{left:113.400000px;}
.xd_c01023{left:115.050000px;}
.xa_c01023{left:128.850000px;}
.xb_c01023{left:162.300000px;}
.x6_c01023{left:186.600000px;}
.x15_c01023{left:241.801758px;}
.x13_c01023{left:303.450000px;}
.x11_c01023{left:304.650000px;}
.x12_c01023{left:306.450000px;}
.x14_c01023{left:484.200000px;}
@media print{
.v1_c01023{vertical-align:-121.600000pt;}
.v2_c01023{vertical-align:-55.466667pt;}
.v0_c01023{vertical-align:0.000000pt;}
.ls5_c01023{letter-spacing:0.000000pt;}
.ls3_c01023{letter-spacing:2.666667pt;}
.ls6_c01023{letter-spacing:5.333333pt;}
.ls4_c01023{letter-spacing:5.416000pt;}
.ls2_c01023{letter-spacing:10.216000pt;}
.ls1_c01023{letter-spacing:16.696000pt;}
.ls0_c01023{letter-spacing:48.640000pt;}
.ws3_c01023{word-spacing:-44.464000pt;}
.ws1_c01023{word-spacing:-29.501333pt;}
.ws0_c01023{word-spacing:-16.042667pt;}
.ws5_c01023{word-spacing:-14.056000pt;}
.ws2_c01023{word-spacing:-12.586667pt;}
.ws4_c01023{word-spacing:-11.957333pt;}
.ws6_c01023{word-spacing:0.000000pt;}
._21_c01023{margin-left:-15.557333pt;}
._15_c01023{margin-left:-11.360000pt;}
._1a_c01023{margin-left:-9.258667pt;}
._b_c01023{margin-left:-8.320000pt;}
._c_c01023{margin-left:-7.093333pt;}
._f_c01023{margin-left:-5.920000pt;}
._e_c01023{margin-left:-4.896000pt;}
._6_c01023{margin-left:-3.776000pt;}
._9_c01023{margin-left:-2.090667pt;}
._0_c01023{margin-left:-1.120000pt;}
._2_c01023{width:1.600000pt;}
._1_c01023{width:2.986667pt;}
._4_c01023{width:4.746667pt;}
._5_c01023{width:5.877333pt;}
._7_c01023{width:7.093333pt;}
._d_c01023{width:8.042667pt;}
._3_c01023{width:9.280000pt;}
._a_c01023{width:11.040000pt;}
._10_c01023{width:12.490667pt;}
._8_c01023{width:14.400000pt;}
._13_c01023{width:15.946667pt;}
._12_c01023{width:17.632000pt;}
._14_c01023{width:18.922667pt;}
._11_c01023{width:20.405333pt;}
._1d_c01023{width:22.872000pt;}
._1e_c01023{width:24.226667pt;}
._1c_c01023{width:25.453333pt;}
._1b_c01023{width:26.637333pt;}
._19_c01023{width:32.426667pt;}
._1f_c01023{width:34.176000pt;}
._16_c01023{width:49.536000pt;}
._18_c01023{width:66.453333pt;}
._17_c01023{width:88.544000pt;}
._20_c01023{width:230.986667pt;}
.fs1_c01023{font-size:42.666667pt;}
.fs4_c01023{font-size:50.666667pt;}
.fs0_c01023{font-size:53.333333pt;}
.fs2_c01023{font-size:56.000000pt;}
.fs3_c01023{font-size:61.333333pt;}
.fs5_c01023{font-size:141.333333pt;}
.y0_c01023{bottom:0.000000pt;}
.y50_c01023{bottom:2.760000pt;}
.y4f_c01023{bottom:6.425219pt;}
.y4e_c01023{bottom:54.413333pt;}
.y25_c01023{bottom:66.946667pt;}
.y4d_c01023{bottom:69.880000pt;}
.y24_c01023{bottom:83.480000pt;}
.y4c_c01023{bottom:86.813333pt;}
.y23_c01023{bottom:100.013333pt;}
.y4b_c01023{bottom:102.413333pt;}
.y22_c01023{bottom:115.613333pt;}
.y4a_c01023{bottom:118.813333pt;}
.y21_c01023{bottom:132.280000pt;}
.y49_c01023{bottom:134.813333pt;}
.y20_c01023{bottom:148.546667pt;}
.y48_c01023{bottom:151.480000pt;}
.y1f_c01023{bottom:164.146667pt;}
.y47_c01023{bottom:167.213333pt;}
.y1e_c01023{bottom:181.480000pt;}
.y46_c01023{bottom:183.880000pt;}
.y45_c01023{bottom:200.146667pt;}
.y1d_c01023{bottom:210.946667pt;}
.y44_c01023{bottom:216.413333pt;}
.y1c_c01023{bottom:229.213333pt;}
.y43_c01023{bottom:232.280000pt;}
.y1b_c01023{bottom:245.080000pt;}
.y42_c01023{bottom:248.680000pt;}
.y1a_c01023{bottom:260.413333pt;}
.y41_c01023{bottom:263.746667pt;}
.y19_c01023{bottom:276.013333pt;}
.y40_c01023{bottom:279.880000pt;}
.y18_c01023{bottom:292.813333pt;}
.y3f_c01023{bottom:296.413333pt;}
.y3e_c01023{bottom:312.013333pt;}
.y17_c01023{bottom:324.413333pt;}
.y3d_c01023{bottom:328.546667pt;}
.y3c_c01023{bottom:344.680000pt;}
.y16_c01023{bottom:356.680000pt;}
.y3b_c01023{bottom:360.946667pt;}
.y15_c01023{bottom:372.280000pt;}
.y3a_c01023{bottom:376.813333pt;}
.y14_c01023{bottom:388.546667pt;}
.y39_c01023{bottom:393.080000pt;}
.y13_c01023{bottom:404.813333pt;}
.y38_c01023{bottom:409.213333pt;}
.y12_c01023{bottom:421.213333pt;}
.y37_c01023{bottom:425.213333pt;}
.y11_c01023{bottom:437.213333pt;}
.y36_c01023{bottom:440.813333pt;}
.y10_c01023{bottom:453.613333pt;}
.y35_c01023{bottom:457.480000pt;}
.yf_c01023{bottom:469.613333pt;}
.y34_c01023{bottom:473.213333pt;}
.ye_c01023{bottom:486.013333pt;}
.y33_c01023{bottom:489.346667pt;}
.yd_c01023{bottom:501.880000pt;}
.y32_c01023{bottom:505.480000pt;}
.yc_c01023{bottom:517.613333pt;}
.y31_c01023{bottom:521.480000pt;}
.yb_c01023{bottom:533.746667pt;}
.y30_c01023{bottom:537.613333pt;}
.ya_c01023{bottom:549.880000pt;}
.y2f_c01023{bottom:553.480000pt;}
.y9_c01023{bottom:566.813333pt;}
.y2e_c01023{bottom:569.213333pt;}
.y8_c01023{bottom:582.413333pt;}
.y2d_c01023{bottom:585.613333pt;}
.y7_c01023{bottom:599.080000pt;}
.y2c_c01023{bottom:601.880000pt;}
.y6_c01023{bottom:615.346667pt;}
.y2b_c01023{bottom:618.280000pt;}
.y5_c01023{bottom:631.213333pt;}
.y2a_c01023{bottom:634.280000pt;}
.y4_c01023{bottom:648.013333pt;}
.y29_c01023{bottom:650.546667pt;}
.y3_c01023{bottom:664.280000pt;}
.y28_c01023{bottom:666.680000pt;}
.y2_c01023{bottom:680.813333pt;}
.y27_c01023{bottom:682.813333pt;}
.y1_c01023{bottom:697.480000pt;}
.y26_c01023{bottom:699.346667pt;}
.h7_c01023{height:11.733399pt;}
.h8_c01023{height:38.937500pt;}
.h6_c01023{height:53.098667pt;}
.h5_c01023{height:54.922667pt;}
.h2_c01023{height:55.893333pt;}
.h3_c01023{height:58.688000pt;}
.h4_c01023{height:66.485333pt;}
.h0_c01023{height:754.333333pt;}
.h1_c01023{height:754.666667pt;}
.w2_c01023{width:93.222667pt;}
.w1_c01023{width:515.333333pt;}
.w0_c01023{width:515.533333pt;}
.x0_c01023{left:0.000000pt;}
.x10_c01023{left:23.733333pt;}
.xf_c01023{left:29.066667pt;}
.xc_c01023{left:50.133333pt;}
.x7_c01023{left:72.533333pt;}
.xe_c01023{left:73.733333pt;}
.x5_c01023{left:74.933333pt;}
.x4_c01023{left:76.133333pt;}
.x3_c01023{left:77.066667pt;}
.x2_c01023{left:78.266667pt;}
.x8_c01023{left:79.466667pt;}
.x1_c01023{left:80.666667pt;}
.x9_c01023{left:100.800000pt;}
.xd_c01023{left:102.266667pt;}
.xa_c01023{left:114.533333pt;}
.xb_c01023{left:144.266667pt;}
.x6_c01023{left:165.866667pt;}
.x15_c01023{left:214.934896pt;}
.x13_c01023{left:269.733333pt;}
.x11_c01023{left:270.800000pt;}
.x12_c01023{left:272.400000pt;}
.x14_c01023{left:430.400000pt;}
}





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

.ir_c01024:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01024{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01024;src:url('chunks/assets/font_c6c2ff154b86d57b3596c9c8.woff2')format("woff");}.ff1_c01024{font-family:ff1_c01024;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01024;src:url('chunks/assets/font_a0e3942e78cba37cb79c829e.woff2')format("woff");}.ff2_c01024{font-family:ff2_c01024;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01024;src:url('chunks/assets/font_1b3b39ff6d5cc20056bbcad9.woff2')format("woff");}.ff3_c01024{font-family:ff3_c01024;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01024;src:url('chunks/assets/font_93a7b00b8bbe29bff08c3cca.woff2')format("woff");}.ff4_c01024{font-family:ff4_c01024;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01024;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff5_c01024{font-family:ff5_c01024;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01024{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01024{vertical-align:0.000000px;}
.ls11_c01024{letter-spacing:-6.000000px;}
.lsf_c01024{letter-spacing:0.000000px;}
.ls10_c01024{letter-spacing:3.000000px;}
.ls6_c01024{letter-spacing:4.893000px;}
.ls1_c01024{letter-spacing:6.720000px;}
.ls7_c01024{letter-spacing:7.293000px;}
.ls0_c01024{letter-spacing:8.493000px;}
.ls12_c01024{letter-spacing:9.000000px;}
.lsb_c01024{letter-spacing:9.240000px;}
.lsd_c01024{letter-spacing:10.893000px;}
.lsa_c01024{letter-spacing:20.148000px;}
.lsc_c01024{letter-spacing:27.093000px;}
.lse_c01024{letter-spacing:50.862000px;}
.ls8_c01024{letter-spacing:99.093000px;}
.ls3_c01024{letter-spacing:100.293000px;}
.ls5_c01024{letter-spacing:102.093000px;}
.ls9_c01024{letter-spacing:103.293000px;}
.ls2_c01024{letter-spacing:105.693000px;}
.ls4_c01024{letter-spacing:253.893000px;}
.sc__c01024{text-shadow:none;}
.sc0_c01024{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01024{-webkit-text-stroke:0px transparent;}
.sc0_c01024{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c01024{word-spacing:-29.424000px;}
.ws7_c01024{word-spacing:-26.340000px;}
.ws6_c01024{word-spacing:-23.160000px;}
.ws4_c01024{word-spacing:-17.307000px;}
.ws2_c01024{word-spacing:-15.060000px;}
.ws0_c01024{word-spacing:-14.160000px;}
.ws1_c01024{word-spacing:-13.452000px;}
.ws8_c01024{word-spacing:0.000000px;}
.ws5_c01024{word-spacing:5.556000px;}
._13_c01024{margin-left:-22.020000px;}
._26_c01024{margin-left:-20.994000px;}
._29_c01024{margin-left:-17.907000px;}
._16_c01024{margin-left:-15.480000px;}
._28_c01024{margin-left:-14.157000px;}
._10_c01024{margin-left:-10.080000px;}
._17_c01024{margin-left:-7.920000px;}
._27_c01024{margin-left:-6.795000px;}
._20_c01024{margin-left:-5.460000px;}
._0_c01024{margin-left:-3.660000px;}
._1f_c01024{margin-left:-2.640000px;}
._7_c01024{margin-left:-1.560000px;}
._4_c01024{width:1.440000px;}
._2_c01024{width:3.420000px;}
._3_c01024{width:5.100000px;}
._1_c01024{width:6.540000px;}
._9_c01024{width:8.280000px;}
._11_c01024{width:9.480000px;}
._6_c01024{width:10.500000px;}
._12_c01024{width:12.180000px;}
._d_c01024{width:13.800000px;}
._2b_c01024{width:14.991000px;}
._2d_c01024{width:16.014000px;}
._c_c01024{width:17.040000px;}
._19_c01024{width:18.300000px;}
._25_c01024{width:19.476000px;}
._1d_c01024{width:20.580000px;}
._2f_c01024{width:22.353000px;}
._a_c01024{width:23.580000px;}
._18_c01024{width:24.960000px;}
._22_c01024{width:26.400000px;}
._1b_c01024{width:28.440000px;}
._14_c01024{width:30.240000px;}
._32_c01024{width:31.827000px;}
._33_c01024{width:34.380000px;}
._b_c01024{width:36.540000px;}
._23_c01024{width:43.080000px;}
._24_c01024{width:58.668000px;}
._8_c01024{width:62.640000px;}
._5_c01024{width:86.880000px;}
._30_c01024{width:91.320000px;}
._21_c01024{width:94.500000px;}
._f_c01024{width:96.000000px;}
._1c_c01024{width:97.500000px;}
._1e_c01024{width:100.080000px;}
._2c_c01024{width:101.295000px;}
._2a_c01024{width:103.200000px;}
._2e_c01024{width:107.028000px;}
._35_c01024{width:109.020000px;}
._36_c01024{width:110.640000px;}
._34_c01024{width:137.880000px;}
._e_c01024{width:179.760000px;}
._1a_c01024{width:198.360000px;}
._37_c01024{width:222.072000px;}
._31_c01024{width:248.247000px;}
._15_c01024{width:351.960000px;}
.fc2_c01024{color:transparent;}
.fc1_c01024{color:rgb(128,128,128);}
.fc0_c01024{color:rgb(0,0,0);}
.fs2_c01024{font-size:48.000000px;}
.fs3_c01024{font-size:54.000000px;}
.fs1_c01024{font-size:57.000000px;}
.fs0_c01024{font-size:60.000000px;}
.y0_c01024{bottom:0.000000px;}
.y2b_c01024{bottom:3.105000px;}
.y2a_c01024{bottom:7.228355px;}
.y29_c01024{bottom:43.485000px;}
.y28_c01024{bottom:61.035000px;}
.y27_c01024{bottom:79.635000px;}
.y26_c01024{bottom:97.785000px;}
.y25_c01024{bottom:116.385000px;}
.y24_c01024{bottom:134.235000px;}
.y23_c01024{bottom:151.785000px;}
.y22_c01024{bottom:170.385000px;}
.y21_c01024{bottom:188.685000px;}
.y20_c01024{bottom:206.835000px;}
.y1f_c01024{bottom:224.685000px;}
.y1e_c01024{bottom:242.535000px;}
.y1d_c01024{bottom:261.135000px;}
.y1c_c01024{bottom:279.135000px;}
.y1b_c01024{bottom:298.635000px;}
.y1a_c01024{bottom:314.835000px;}
.y19_c01024{bottom:332.985000px;}
.y18_c01024{bottom:351.585000px;}
.y17_c01024{bottom:369.585000px;}
.y16_c01024{bottom:387.435000px;}
.y15_c01024{bottom:405.585000px;}
.y14_c01024{bottom:423.435000px;}
.y13_c01024{bottom:441.735000px;}
.y12_c01024{bottom:460.035000px;}
.y11_c01024{bottom:477.885000px;}
.y10_c01024{bottom:496.035000px;}
.yf_c01024{bottom:514.335000px;}
.ye_c01024{bottom:531.585000px;}
.yd_c01024{bottom:549.435000px;}
.yc_c01024{bottom:566.985000px;}
.yb_c01024{bottom:585.135000px;}
.ya_c01024{bottom:602.385000px;}
.y9_c01024{bottom:621.285000px;}
.y8_c01024{bottom:639.585000px;}
.y7_c01024{bottom:658.035000px;}
.y6_c01024{bottom:676.335000px;}
.y5_c01024{bottom:693.585000px;}
.y4_c01024{bottom:712.035000px;}
.y3_c01024{bottom:729.885000px;}
.y2_c01024{bottom:748.485000px;}
.y1_c01024{bottom:766.335000px;}
.h5_c01024{height:13.200074px;}
.h6_c01024{height:43.804688px;}
.h4_c01024{height:59.736000px;}
.h2_c01024{height:62.880000px;}
.h3_c01024{height:64.020000px;}
.h0_c01024{height:832.125000px;}
.h1_c01024{height:832.500000px;}
.w2_c01024{width:104.875500px;}
.w0_c01024{width:571.875000px;}
.w1_c01024{width:572.250000px;}
.x0_c01024{left:0.000000px;}
.x8_c01024{left:13.050000px;}
.x7_c01024{left:15.150000px;}
.xa_c01024{left:49.200000px;}
.x1_c01024{left:70.500000px;}
.xf_c01024{left:74.250000px;}
.xe_c01024{left:75.600000px;}
.x9_c01024{left:76.650000px;}
.xb_c01024{left:78.000000px;}
.x2_c01024{left:79.200000px;}
.x3_c01024{left:80.250000px;}
.x6_c01024{left:81.300000px;}
.xd_c01024{left:87.450000px;}
.xc_c01024{left:97.650000px;}
.x5_c01024{left:100.350000px;}
.x4_c01024{left:104.700000px;}
.x11_c01024{left:237.751740px;}
.x10_c01024{left:379.650000px;}
@media print{
.v0_c01024{vertical-align:0.000000pt;}
.ls11_c01024{letter-spacing:-5.333333pt;}
.lsf_c01024{letter-spacing:0.000000pt;}
.ls10_c01024{letter-spacing:2.666667pt;}
.ls6_c01024{letter-spacing:4.349333pt;}
.ls1_c01024{letter-spacing:5.973333pt;}
.ls7_c01024{letter-spacing:6.482667pt;}
.ls0_c01024{letter-spacing:7.549333pt;}
.ls12_c01024{letter-spacing:8.000000pt;}
.lsb_c01024{letter-spacing:8.213333pt;}
.lsd_c01024{letter-spacing:9.682667pt;}
.lsa_c01024{letter-spacing:17.909333pt;}
.lsc_c01024{letter-spacing:24.082667pt;}
.lse_c01024{letter-spacing:45.210667pt;}
.ls8_c01024{letter-spacing:88.082667pt;}
.ls3_c01024{letter-spacing:89.149333pt;}
.ls5_c01024{letter-spacing:90.749333pt;}
.ls9_c01024{letter-spacing:91.816000pt;}
.ls2_c01024{letter-spacing:93.949333pt;}
.ls4_c01024{letter-spacing:225.682667pt;}
.ws3_c01024{word-spacing:-26.154667pt;}
.ws7_c01024{word-spacing:-23.413333pt;}
.ws6_c01024{word-spacing:-20.586667pt;}
.ws4_c01024{word-spacing:-15.384000pt;}
.ws2_c01024{word-spacing:-13.386667pt;}
.ws0_c01024{word-spacing:-12.586667pt;}
.ws1_c01024{word-spacing:-11.957333pt;}
.ws8_c01024{word-spacing:0.000000pt;}
.ws5_c01024{word-spacing:4.938667pt;}
._13_c01024{margin-left:-19.573333pt;}
._26_c01024{margin-left:-18.661333pt;}
._29_c01024{margin-left:-15.917333pt;}
._16_c01024{margin-left:-13.760000pt;}
._28_c01024{margin-left:-12.584000pt;}
._10_c01024{margin-left:-8.960000pt;}
._17_c01024{margin-left:-7.040000pt;}
._27_c01024{margin-left:-6.040000pt;}
._20_c01024{margin-left:-4.853333pt;}
._0_c01024{margin-left:-3.253333pt;}
._1f_c01024{margin-left:-2.346667pt;}
._7_c01024{margin-left:-1.386667pt;}
._4_c01024{width:1.280000pt;}
._2_c01024{width:3.040000pt;}
._3_c01024{width:4.533333pt;}
._1_c01024{width:5.813333pt;}
._9_c01024{width:7.360000pt;}
._11_c01024{width:8.426667pt;}
._6_c01024{width:9.333333pt;}
._12_c01024{width:10.826667pt;}
._d_c01024{width:12.266667pt;}
._2b_c01024{width:13.325333pt;}
._2d_c01024{width:14.234667pt;}
._c_c01024{width:15.146667pt;}
._19_c01024{width:16.266667pt;}
._25_c01024{width:17.312000pt;}
._1d_c01024{width:18.293333pt;}
._2f_c01024{width:19.869333pt;}
._a_c01024{width:20.960000pt;}
._18_c01024{width:22.186667pt;}
._22_c01024{width:23.466667pt;}
._1b_c01024{width:25.280000pt;}
._14_c01024{width:26.880000pt;}
._32_c01024{width:28.290667pt;}
._33_c01024{width:30.560000pt;}
._b_c01024{width:32.480000pt;}
._23_c01024{width:38.293333pt;}
._24_c01024{width:52.149333pt;}
._8_c01024{width:55.680000pt;}
._5_c01024{width:77.226667pt;}
._30_c01024{width:81.173333pt;}
._21_c01024{width:84.000000pt;}
._f_c01024{width:85.333333pt;}
._1c_c01024{width:86.666667pt;}
._1e_c01024{width:88.960000pt;}
._2c_c01024{width:90.040000pt;}
._2a_c01024{width:91.733333pt;}
._2e_c01024{width:95.136000pt;}
._35_c01024{width:96.906667pt;}
._36_c01024{width:98.346667pt;}
._34_c01024{width:122.560000pt;}
._e_c01024{width:159.786667pt;}
._1a_c01024{width:176.320000pt;}
._37_c01024{width:197.397333pt;}
._31_c01024{width:220.664000pt;}
._15_c01024{width:312.853333pt;}
.fs2_c01024{font-size:42.666667pt;}
.fs3_c01024{font-size:48.000000pt;}
.fs1_c01024{font-size:50.666667pt;}
.fs0_c01024{font-size:53.333333pt;}
.y0_c01024{bottom:0.000000pt;}
.y2b_c01024{bottom:2.760000pt;}
.y2a_c01024{bottom:6.425204pt;}
.y29_c01024{bottom:38.653333pt;}
.y28_c01024{bottom:54.253333pt;}
.y27_c01024{bottom:70.786667pt;}
.y26_c01024{bottom:86.920000pt;}
.y25_c01024{bottom:103.453333pt;}
.y24_c01024{bottom:119.320000pt;}
.y23_c01024{bottom:134.920000pt;}
.y22_c01024{bottom:151.453333pt;}
.y21_c01024{bottom:167.720000pt;}
.y20_c01024{bottom:183.853333pt;}
.y1f_c01024{bottom:199.720000pt;}
.y1e_c01024{bottom:215.586667pt;}
.y1d_c01024{bottom:232.120000pt;}
.y1c_c01024{bottom:248.120000pt;}
.y1b_c01024{bottom:265.453333pt;}
.y1a_c01024{bottom:279.853333pt;}
.y19_c01024{bottom:295.986667pt;}
.y18_c01024{bottom:312.520000pt;}
.y17_c01024{bottom:328.520000pt;}
.y16_c01024{bottom:344.386667pt;}
.y15_c01024{bottom:360.520000pt;}
.y14_c01024{bottom:376.386667pt;}
.y13_c01024{bottom:392.653333pt;}
.y12_c01024{bottom:408.920000pt;}
.y11_c01024{bottom:424.786667pt;}
.y10_c01024{bottom:440.920000pt;}
.yf_c01024{bottom:457.186667pt;}
.ye_c01024{bottom:472.520000pt;}
.yd_c01024{bottom:488.386667pt;}
.yc_c01024{bottom:503.986667pt;}
.yb_c01024{bottom:520.120000pt;}
.ya_c01024{bottom:535.453333pt;}
.y9_c01024{bottom:552.253333pt;}
.y8_c01024{bottom:568.520000pt;}
.y7_c01024{bottom:584.920000pt;}
.y6_c01024{bottom:601.186667pt;}
.y5_c01024{bottom:616.520000pt;}
.y4_c01024{bottom:632.920000pt;}
.y3_c01024{bottom:648.786667pt;}
.y2_c01024{bottom:665.320000pt;}
.y1_c01024{bottom:681.186667pt;}
.h5_c01024{height:11.733399pt;}
.h6_c01024{height:38.937500pt;}
.h4_c01024{height:53.098667pt;}
.h2_c01024{height:55.893333pt;}
.h3_c01024{height:56.906667pt;}
.h0_c01024{height:739.666667pt;}
.h1_c01024{height:740.000000pt;}
.w2_c01024{width:93.222667pt;}
.w0_c01024{width:508.333333pt;}
.w1_c01024{width:508.666667pt;}
.x0_c01024{left:0.000000pt;}
.x8_c01024{left:11.600000pt;}
.x7_c01024{left:13.466667pt;}
.xa_c01024{left:43.733333pt;}
.x1_c01024{left:62.666667pt;}
.xf_c01024{left:66.000000pt;}
.xe_c01024{left:67.200000pt;}
.x9_c01024{left:68.133333pt;}
.xb_c01024{left:69.333333pt;}
.x2_c01024{left:70.400000pt;}
.x3_c01024{left:71.333333pt;}
.x6_c01024{left:72.266667pt;}
.xd_c01024{left:77.733333pt;}
.xc_c01024{left:86.800000pt;}
.x5_c01024{left:89.200000pt;}
.x4_c01024{left:93.066667pt;}
.x11_c01024{left:211.334880pt;}
.x10_c01024{left:337.466667pt;}
}





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

.ir_c01025:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01025{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01025;src:url('chunks/assets/font_98ecd38d46feb3c1ad44547c.woff2')format("woff");}.ff1_c01025{font-family:ff1_c01025;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01025;src:url('chunks/assets/font_efa0927e01511db27d130327.woff2')format("woff");}.ff2_c01025{font-family:ff2_c01025;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01025;src:url('chunks/assets/font_71852e777ad582ca2e29feee.woff2')format("woff");}.ff3_c01025{font-family:ff3_c01025;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01025;src:url('chunks/assets/font_384deb0dd03d1794a6a2f191.woff2')format("woff");}.ff4_c01025{font-family:ff4_c01025;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01025;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff5_c01025{font-family:ff5_c01025;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01025{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01025{vertical-align:0.000000px;}
.ls1_c01025{letter-spacing:0.000000px;}
.ls0_c01025{letter-spacing:6.000000px;}
.ls2_c01025{letter-spacing:108.000000px;}
.sc__c01025{text-shadow:none;}
.sc0_c01025{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01025{-webkit-text-stroke:0px transparent;}
.sc0_c01025{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01025{word-spacing:-109.200000px;}
.ws0_c01025{word-spacing:-50.640000px;}
.ws1_c01025{word-spacing:-30.540000px;}
.ws4_c01025{word-spacing:0.000000px;}
.ws3_c01025{word-spacing:5.292000px;}
._1_c01025{margin-left:-18.594000px;}
._14_c01025{margin-left:-11.631000px;}
._0_c01025{margin-left:-7.344000px;}
._13_c01025{margin-left:-5.160000px;}
._4_c01025{margin-left:-3.750000px;}
._3_c01025{margin-left:-2.175000px;}
._7_c01025{margin-left:-1.080000px;}
._c_c01025{width:1.110000px;}
._6_c01025{width:2.220000px;}
._5_c01025{width:4.080000px;}
._9_c01025{width:5.400000px;}
._8_c01025{width:6.420000px;}
._10_c01025{width:8.280000px;}
._d_c01025{width:9.600000px;}
._11_c01025{width:10.740000px;}
._a_c01025{width:12.630000px;}
._12_c01025{width:24.780000px;}
._17_c01025{width:51.408000px;}
._b_c01025{width:71.580000px;}
._f_c01025{width:122.790000px;}
._2_c01025{width:202.050000px;}
._15_c01025{width:223.515000px;}
._16_c01025{width:315.060000px;}
._e_c01025{width:362.820000px;}
.fc2_c01025{color:transparent;}
.fc1_c01025{color:rgb(128,128,128);}
.fc0_c01025{color:rgb(0,0,0);}
.fs4_c01025{font-size:48.000000px;}
.fs2_c01025{font-size:60.000000px;}
.fs0_c01025{font-size:72.000000px;}
.fs1_c01025{font-size:75.000000px;}
.fs3_c01025{font-size:84.000000px;}
.y0_c01025{bottom:0.000000px;}
.y9_c01025{bottom:3.105000px;}
.y8_c01025{bottom:7.228371px;}
.y7_c01025{bottom:35.415000px;}
.y6_c01025{bottom:620.715000px;}
.y5_c01025{bottom:720.315000px;}
.y4_c01025{bottom:738.765000px;}
.y3_c01025{bottom:757.065000px;}
.y2_c01025{bottom:775.665000px;}
.y1_c01025{bottom:795.915000px;}
.h5_c01025{height:13.200074px;}
.h6_c01025{height:43.804688px;}
.h3_c01025{height:62.880000px;}
.h2_c01025{height:80.025000px;}
.h4_c01025{height:88.032000px;}
.h0_c01025{height:848.625000px;}
.h1_c01025{height:849.000000px;}
.w2_c01025{width:104.875500px;}
.w1_c01025{width:579.750000px;}
.w0_c01025{width:579.975000px;}
.x0_c01025{left:0.000000px;}
.x3_c01025{left:89.100000px;}
.x4_c01025{left:90.150000px;}
.x2_c01025{left:91.800000px;}
.x1_c01025{left:97.950000px;}
.x5_c01025{left:224.400000px;}
.x7_c01025{left:241.801758px;}
.x6_c01025{left:459.300000px;}
@media print{
.v0_c01025{vertical-align:0.000000pt;}
.ls1_c01025{letter-spacing:0.000000pt;}
.ls0_c01025{letter-spacing:5.333333pt;}
.ls2_c01025{letter-spacing:96.000000pt;}
.ws2_c01025{word-spacing:-97.066667pt;}
.ws0_c01025{word-spacing:-45.013333pt;}
.ws1_c01025{word-spacing:-27.146667pt;}
.ws4_c01025{word-spacing:0.000000pt;}
.ws3_c01025{word-spacing:4.704000pt;}
._1_c01025{margin-left:-16.528000pt;}
._14_c01025{margin-left:-10.338667pt;}
._0_c01025{margin-left:-6.528000pt;}
._13_c01025{margin-left:-4.586667pt;}
._4_c01025{margin-left:-3.333333pt;}
._3_c01025{margin-left:-1.933333pt;}
._7_c01025{margin-left:-0.960000pt;}
._c_c01025{width:0.986667pt;}
._6_c01025{width:1.973333pt;}
._5_c01025{width:3.626667pt;}
._9_c01025{width:4.800000pt;}
._8_c01025{width:5.706667pt;}
._10_c01025{width:7.360000pt;}
._d_c01025{width:8.533333pt;}
._11_c01025{width:9.546667pt;}
._a_c01025{width:11.226667pt;}
._12_c01025{width:22.026667pt;}
._17_c01025{width:45.696000pt;}
._b_c01025{width:63.626667pt;}
._f_c01025{width:109.146667pt;}
._2_c01025{width:179.600000pt;}
._15_c01025{width:198.680000pt;}
._16_c01025{width:280.053333pt;}
._e_c01025{width:322.506667pt;}
.fs4_c01025{font-size:42.666667pt;}
.fs2_c01025{font-size:53.333333pt;}
.fs0_c01025{font-size:64.000000pt;}
.fs1_c01025{font-size:66.666667pt;}
.fs3_c01025{font-size:74.666667pt;}
.y0_c01025{bottom:0.000000pt;}
.y9_c01025{bottom:2.760000pt;}
.y8_c01025{bottom:6.425219pt;}
.y7_c01025{bottom:31.480000pt;}
.y6_c01025{bottom:551.746667pt;}
.y5_c01025{bottom:640.280000pt;}
.y4_c01025{bottom:656.680000pt;}
.y3_c01025{bottom:672.946667pt;}
.y2_c01025{bottom:689.480000pt;}
.y1_c01025{bottom:707.480000pt;}
.h5_c01025{height:11.733399pt;}
.h6_c01025{height:38.937500pt;}
.h3_c01025{height:55.893333pt;}
.h2_c01025{height:71.133333pt;}
.h4_c01025{height:78.250667pt;}
.h0_c01025{height:754.333333pt;}
.h1_c01025{height:754.666667pt;}
.w2_c01025{width:93.222667pt;}
.w1_c01025{width:515.333333pt;}
.w0_c01025{width:515.533333pt;}
.x0_c01025{left:0.000000pt;}
.x3_c01025{left:79.200000pt;}
.x4_c01025{left:80.133333pt;}
.x2_c01025{left:81.600000pt;}
.x1_c01025{left:87.066667pt;}
.x5_c01025{left:199.466667pt;}
.x7_c01025{left:214.934896pt;}
.x6_c01025{left:408.266667pt;}
}





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

.ir_c01026:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01026{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01026;src:url('chunks/assets/font_e6ba8b220ed1c8a7f829b8b6.woff2')format("woff");}.ff1_c01026{font-family:ff1_c01026;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01026;src:url('chunks/assets/font_8cb246d680f87ef58aa42301.woff2')format("woff");}.ff2_c01026{font-family:ff2_c01026;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01026;src:url('chunks/assets/font_965d6d7e8b8b5195fa9962ca.woff2')format("woff");}.ff3_c01026{font-family:ff3_c01026;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01026;src:url('chunks/assets/font_81f08ef988bb8ccbd7a8ada8.woff2')format("woff");}.ff4_c01026{font-family:ff4_c01026;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01026;src:url('chunks/assets/font_3f43c03997553336cd5587a2.woff2')format("woff");}.ff5_c01026{font-family:ff5_c01026;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01026;src:url('chunks/assets/font_2de710f84866934e7c2a81cd.woff2')format("woff");}.ff6_c01026{font-family:ff6_c01026;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01026;src:url('chunks/assets/font_914d06b1c36438ae0268c0f4.woff2')format("woff");}.ff7_c01026{font-family:ff7_c01026;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:ff8_c01026;src:url('chunks/assets/font_caa3e08cf96747559735b51f.woff2')format("woff");}.ff8_c01026{font-family:ff8_c01026;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c01026;src:url('chunks/assets/font_c4c5dc279686c3cf249d2e3b.woff2')format("woff");}.ff9_c01026{font-family:ff9_c01026;line-height:1.402354;font-style:normal;font-weight: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_c01026;src:url('chunks/assets/font_7c7b114d6d8510036cb24ad0.woff2')format("woff");}.ffa_c01026{font-family:ffa_c01026;line-height:1.575000;font-style:normal;font-weight: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_c01026;src:url('chunks/assets/font_51a89070049225400a593533.woff2')format("woff");}.ffb_c01026{font-family:ffb_c01026;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc_c01026;src:url('chunks/assets/font_3981cc01421919c929a42b57.woff2')format("woff");}.ffc_c01026{font-family:ffc_c01026;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd_c01026;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ffd_c01026{font-family:ffd_c01026;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01026{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01026{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.v0_c01026{vertical-align:0.000000px;}
.lsa_c01026{letter-spacing:0.000000px;}
.ls9_c01026{letter-spacing:3.000000px;}
.ls8_c01026{letter-spacing:4.800000px;}
.lsb_c01026{letter-spacing:6.000000px;}
.ls6_c01026{letter-spacing:6.240000px;}
.ls7_c01026{letter-spacing:6.600000px;}
.ls3_c01026{letter-spacing:8.700000px;}
.ls0_c01026{letter-spacing:9.000000px;}
.ls2_c01026{letter-spacing:11.946000px;}
.ls1_c01026{letter-spacing:12.900000px;}
.ls4_c01026{letter-spacing:16.920000px;}
.ls5_c01026{letter-spacing:20.805000px;}
.sc__c01026{text-shadow:none;}
.sc0_c01026{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01026{-webkit-text-stroke:0px transparent;}
.sc0_c01026{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c01026{word-spacing:-30.540000px;}
.ws7_c01026{word-spacing:-21.000000px;}
.ws0_c01026{word-spacing:-19.500000px;}
.ws4_c01026{word-spacing:-18.000000px;}
.ws3_c01026{word-spacing:-16.416000px;}
.ws8_c01026{word-spacing:-15.060000px;}
.ws6_c01026{word-spacing:-14.340000px;}
.ws9_c01026{word-spacing:-13.782000px;}
.wsb_c01026{word-spacing:-2.340000px;}
.wsa_c01026{word-spacing:-0.441000px;}
.wsc_c01026{word-spacing:0.000000px;}
.ws1_c01026{word-spacing:1.824000px;}
.ws2_c01026{word-spacing:17.340000px;}
._25_c01026{margin-left:-22.320000px;}
._16_c01026{margin-left:-19.365000px;}
._8_c01026{margin-left:-17.430000px;}
._9_c01026{margin-left:-15.330000px;}
._15_c01026{margin-left:-13.521000px;}
._d_c01026{margin-left:-11.340000px;}
._b_c01026{margin-left:-10.080000px;}
._c_c01026{margin-left:-8.820000px;}
._a_c01026{margin-left:-7.560000px;}
._e_c01026{margin-left:-6.195000px;}
._18_c01026{margin-left:-5.010000px;}
._12_c01026{margin-left:-3.138000px;}
._17_c01026{margin-left:-2.088000px;}
._11_c01026{margin-left:-1.083000px;}
._14_c01026{width:1.620000px;}
._10_c01026{width:3.021000px;}
._f_c01026{width:4.275000px;}
._0_c01026{width:6.300000px;}
._2_c01026{width:7.560000px;}
._7_c01026{width:8.715000px;}
._3_c01026{width:10.500000px;}
._1_c01026{width:11.865000px;}
._1b_c01026{width:13.356000px;}
._1e_c01026{width:15.336000px;}
._1d_c01026{width:16.488000px;}
._22_c01026{width:17.787000px;}
._19_c01026{width:19.332000px;}
._20_c01026{width:22.254000px;}
._23_c01026{width:23.919000px;}
._1f_c01026{width:25.218000px;}
._24_c01026{width:27.105000px;}
._5_c01026{width:44.940000px;}
._4_c01026{width:48.510000px;}
._1a_c01026{width:50.586000px;}
._6_c01026{width:74.235000px;}
._26_c01026{width:83.040000px;}
._21_c01026{width:87.042000px;}
._1c_c01026{width:107.121000px;}
._13_c01026{width:167.169000px;}
._27_c01026{width:199.935000px;}
.fc2_c01026{color:transparent;}
.fc1_c01026{color:rgb(128,128,128);}
.fc0_c01026{color:rgb(0,0,0);}
.fsa_c01026{font-size:45.000000px;}
.fs8_c01026{font-size:48.000000px;}
.fs9_c01026{font-size:51.000000px;}
.fs5_c01026{font-size:54.000000px;}
.fs1_c01026{font-size:57.000000px;}
.fs3_c01026{font-size:60.000000px;}
.fs6_c01026{font-size:63.000000px;}
.fs4_c01026{font-size:72.000000px;}
.fs7_c01026{font-size:93.000000px;}
.fs0_c01026{font-size:105.000000px;}
.fs2_c01026{font-size:159.000000px;}
.y0_c01026{bottom:0.000000px;}
.y50_c01026{bottom:3.105000px;}
.y4f_c01026{bottom:7.228369px;}
.y4e_c01026{bottom:29.970000px;}
.y28_c01026{bottom:48.570000px;}
.y4d_c01026{bottom:48.870000px;}
.y27_c01026{bottom:66.870000px;}
.y4c_c01026{bottom:68.220000px;}
.y26_c01026{bottom:86.370000px;}
.y25_c01026{bottom:103.920000px;}
.y4b_c01026{bottom:104.220000px;}
.y24_c01026{bottom:121.770000px;}
.y4a_c01026{bottom:122.520000px;}
.y23_c01026{bottom:140.070000px;}
.y49_c01026{bottom:140.670000px;}
.y22_c01026{bottom:157.620000px;}
.y48_c01026{bottom:158.220000px;}
.y47_c01026{bottom:176.070000px;}
.y21_c01026{bottom:176.220000px;}
.y20_c01026{bottom:194.370000px;}
.y46_c01026{bottom:194.670000px;}
.y1f_c01026{bottom:210.270000px;}
.y45_c01026{bottom:212.670000px;}
.y1e_c01026{bottom:229.170000px;}
.y44_c01026{bottom:230.820000px;}
.y1d_c01026{bottom:247.620000px;}
.y43_c01026{bottom:248.970000px;}
.y1c_c01026{bottom:265.320000px;}
.y42_c01026{bottom:267.270000px;}
.y1b_c01026{bottom:284.070000px;}
.y41_c01026{bottom:285.120000px;}
.y1a_c01026{bottom:301.770000px;}
.y40_c01026{bottom:303.720000px;}
.y19_c01026{bottom:319.920000px;}
.y3f_c01026{bottom:321.870000px;}
.y18_c01026{bottom:337.770000px;}
.y3e_c01026{bottom:338.820000px;}
.y17_c01026{bottom:355.770000px;}
.y3d_c01026{bottom:357.720000px;}
.y16_c01026{bottom:374.220000px;}
.y3c_c01026{bottom:376.320000px;}
.y15_c01026{bottom:392.220000px;}
.y3b_c01026{bottom:394.470000px;}
.y14_c01026{bottom:410.670000px;}
.y3a_c01026{bottom:412.320000px;}
.y13_c01026{bottom:428.970000px;}
.y39_c01026{bottom:430.020000px;}
.y12_c01026{bottom:446.820000px;}
.y38_c01026{bottom:448.170000px;}
.y11_c01026{bottom:464.970000px;}
.y37_c01026{bottom:466.320000px;}
.y10_c01026{bottom:482.670000px;}
.y36_c01026{bottom:483.870000px;}
.yf_c01026{bottom:501.420000px;}
.y35_c01026{bottom:502.470000px;}
.ye_c01026{bottom:517.320000px;}
.y34_c01026{bottom:520.320000px;}
.yd_c01026{bottom:536.520000px;}
.y33_c01026{bottom:538.020000px;}
.yc_c01026{bottom:554.520000px;}
.y32_c01026{bottom:555.570000px;}
.yb_c01026{bottom:572.670000px;}
.y31_c01026{bottom:573.720000px;}
.ya_c01026{bottom:587.520000px;}
.y30_c01026{bottom:591.570000px;}
.y9_c01026{bottom:608.520000px;}
.y2f_c01026{bottom:609.570000px;}
.y8_c01026{bottom:626.970000px;}
.y2e_c01026{bottom:628.320000px;}
.y7_c01026{bottom:644.970000px;}
.y2d_c01026{bottom:646.320000px;}
.y6_c01026{bottom:663.120000px;}
.y2c_c01026{bottom:663.870000px;}
.y4_c01026{bottom:681.420000px;}
.y2b_c01026{bottom:682.320000px;}
.y2a_c01026{bottom:699.870000px;}
.y5_c01026{bottom:700.020000px;}
.y29_c01026{bottom:716.820000px;}
.y3_c01026{bottom:717.420000px;}
.y2_c01026{bottom:748.170000px;}
.y1_c01026{bottom:778.170000px;}
.hb_c01026{height:13.200073px;}
.hc_c01026{height:43.804688px;}
.h3_c01026{height:55.914551px;}
.h5_c01026{height:62.880000px;}
.h9_c01026{height:64.020000px;}
.h8_c01026{height:66.024000px;}
.ha_c01026{height:67.221000px;}
.h6_c01026{height:70.664062px;}
.h7_c01026{height:96.996094px;}
.h2_c01026{height:110.040000px;}
.h4_c01026{height:166.632000px;}
.h1_c01026{height:837.750000px;}
.h0_c01026{height:838.050000px;}
.w2_c01026{width:104.875500px;}
.w1_c01026{width:576.000000px;}
.w0_c01026{width:576.150000px;}
.x0_c01026{left:0.000000px;}
.xc_c01026{left:21.600000px;}
.x8_c01026{left:22.650000px;}
.x6_c01026{left:23.850000px;}
.x1_c01026{left:25.200000px;}
.xb_c01026{left:26.550000px;}
.xa_c01026{left:38.850000px;}
.x7_c01026{left:41.850000px;}
.xd_c01026{left:43.200000px;}
.x9_c01026{left:44.250000px;}
.x4_c01026{left:57.750000px;}
.x5_c01026{left:59.400000px;}
.x3_c01026{left:94.500000px;}
.x2_c01026{left:112.050000px;}
.x17_c01026{left:239.889267px;}
.x14_c01026{left:258.150000px;}
.x13_c01026{left:260.100000px;}
.xf_c01026{left:261.150000px;}
.x11_c01026{left:262.650000px;}
.x15_c01026{left:271.950000px;}
.xe_c01026{left:275.400000px;}
.x10_c01026{left:277.350000px;}
.x12_c01026{left:280.350000px;}
.x16_c01026{left:332.400000px;}
@media print{
.v0_c01026{vertical-align:0.000000pt;}
.lsa_c01026{letter-spacing:0.000000pt;}
.ls9_c01026{letter-spacing:2.666667pt;}
.ls8_c01026{letter-spacing:4.266667pt;}
.lsb_c01026{letter-spacing:5.333333pt;}
.ls6_c01026{letter-spacing:5.546667pt;}
.ls7_c01026{letter-spacing:5.866667pt;}
.ls3_c01026{letter-spacing:7.733333pt;}
.ls0_c01026{letter-spacing:8.000000pt;}
.ls2_c01026{letter-spacing:10.618667pt;}
.ls1_c01026{letter-spacing:11.466667pt;}
.ls4_c01026{letter-spacing:15.040000pt;}
.ls5_c01026{letter-spacing:18.493333pt;}
.ws5_c01026{word-spacing:-27.146667pt;}
.ws7_c01026{word-spacing:-18.666667pt;}
.ws0_c01026{word-spacing:-17.333333pt;}
.ws4_c01026{word-spacing:-16.000000pt;}
.ws3_c01026{word-spacing:-14.592000pt;}
.ws8_c01026{word-spacing:-13.386667pt;}
.ws6_c01026{word-spacing:-12.746667pt;}
.ws9_c01026{word-spacing:-12.250667pt;}
.wsb_c01026{word-spacing:-2.080000pt;}
.wsa_c01026{word-spacing:-0.392000pt;}
.wsc_c01026{word-spacing:0.000000pt;}
.ws1_c01026{word-spacing:1.621333pt;}
.ws2_c01026{word-spacing:15.413333pt;}
._25_c01026{margin-left:-19.840000pt;}
._16_c01026{margin-left:-17.213333pt;}
._8_c01026{margin-left:-15.493333pt;}
._9_c01026{margin-left:-13.626667pt;}
._15_c01026{margin-left:-12.018667pt;}
._d_c01026{margin-left:-10.080000pt;}
._b_c01026{margin-left:-8.960000pt;}
._c_c01026{margin-left:-7.840000pt;}
._a_c01026{margin-left:-6.720000pt;}
._e_c01026{margin-left:-5.506667pt;}
._18_c01026{margin-left:-4.453333pt;}
._12_c01026{margin-left:-2.789333pt;}
._17_c01026{margin-left:-1.856000pt;}
._11_c01026{margin-left:-0.962667pt;}
._14_c01026{width:1.440000pt;}
._10_c01026{width:2.685333pt;}
._f_c01026{width:3.800000pt;}
._0_c01026{width:5.600000pt;}
._2_c01026{width:6.720000pt;}
._7_c01026{width:7.746667pt;}
._3_c01026{width:9.333333pt;}
._1_c01026{width:10.546667pt;}
._1b_c01026{width:11.872000pt;}
._1e_c01026{width:13.632000pt;}
._1d_c01026{width:14.656000pt;}
._22_c01026{width:15.810667pt;}
._19_c01026{width:17.184000pt;}
._20_c01026{width:19.781333pt;}
._23_c01026{width:21.261333pt;}
._1f_c01026{width:22.416000pt;}
._24_c01026{width:24.093333pt;}
._5_c01026{width:39.946667pt;}
._4_c01026{width:43.120000pt;}
._1a_c01026{width:44.965333pt;}
._6_c01026{width:65.986667pt;}
._26_c01026{width:73.813333pt;}
._21_c01026{width:77.370667pt;}
._1c_c01026{width:95.218667pt;}
._13_c01026{width:148.594667pt;}
._27_c01026{width:177.720000pt;}
.fsa_c01026{font-size:40.000000pt;}
.fs8_c01026{font-size:42.666667pt;}
.fs9_c01026{font-size:45.333333pt;}
.fs5_c01026{font-size:48.000000pt;}
.fs1_c01026{font-size:50.666667pt;}
.fs3_c01026{font-size:53.333333pt;}
.fs6_c01026{font-size:56.000000pt;}
.fs4_c01026{font-size:64.000000pt;}
.fs7_c01026{font-size:82.666667pt;}
.fs0_c01026{font-size:93.333333pt;}
.fs2_c01026{font-size:141.333333pt;}
.y0_c01026{bottom:0.000000pt;}
.y50_c01026{bottom:2.760000pt;}
.y4f_c01026{bottom:6.425217pt;}
.y4e_c01026{bottom:26.640000pt;}
.y28_c01026{bottom:43.173333pt;}
.y4d_c01026{bottom:43.440000pt;}
.y27_c01026{bottom:59.440000pt;}
.y4c_c01026{bottom:60.640000pt;}
.y26_c01026{bottom:76.773333pt;}
.y25_c01026{bottom:92.373333pt;}
.y4b_c01026{bottom:92.640000pt;}
.y24_c01026{bottom:108.240000pt;}
.y4a_c01026{bottom:108.906667pt;}
.y23_c01026{bottom:124.506667pt;}
.y49_c01026{bottom:125.040000pt;}
.y22_c01026{bottom:140.106667pt;}
.y48_c01026{bottom:140.640000pt;}
.y47_c01026{bottom:156.506667pt;}
.y21_c01026{bottom:156.640000pt;}
.y20_c01026{bottom:172.773333pt;}
.y46_c01026{bottom:173.040000pt;}
.y1f_c01026{bottom:186.906667pt;}
.y45_c01026{bottom:189.040000pt;}
.y1e_c01026{bottom:203.706667pt;}
.y44_c01026{bottom:205.173333pt;}
.y1d_c01026{bottom:220.106667pt;}
.y43_c01026{bottom:221.306667pt;}
.y1c_c01026{bottom:235.840000pt;}
.y42_c01026{bottom:237.573333pt;}
.y1b_c01026{bottom:252.506667pt;}
.y41_c01026{bottom:253.440000pt;}
.y1a_c01026{bottom:268.240000pt;}
.y40_c01026{bottom:269.973333pt;}
.y19_c01026{bottom:284.373333pt;}
.y3f_c01026{bottom:286.106667pt;}
.y18_c01026{bottom:300.240000pt;}
.y3e_c01026{bottom:301.173333pt;}
.y17_c01026{bottom:316.240000pt;}
.y3d_c01026{bottom:317.973333pt;}
.y16_c01026{bottom:332.640000pt;}
.y3c_c01026{bottom:334.506667pt;}
.y15_c01026{bottom:348.640000pt;}
.y3b_c01026{bottom:350.640000pt;}
.y14_c01026{bottom:365.040000pt;}
.y3a_c01026{bottom:366.506667pt;}
.y13_c01026{bottom:381.306667pt;}
.y39_c01026{bottom:382.240000pt;}
.y12_c01026{bottom:397.173333pt;}
.y38_c01026{bottom:398.373333pt;}
.y11_c01026{bottom:413.306667pt;}
.y37_c01026{bottom:414.506667pt;}
.y10_c01026{bottom:429.040000pt;}
.y36_c01026{bottom:430.106667pt;}
.yf_c01026{bottom:445.706667pt;}
.y35_c01026{bottom:446.640000pt;}
.ye_c01026{bottom:459.840000pt;}
.y34_c01026{bottom:462.506667pt;}
.yd_c01026{bottom:476.906667pt;}
.y33_c01026{bottom:478.240000pt;}
.yc_c01026{bottom:492.906667pt;}
.y32_c01026{bottom:493.840000pt;}
.yb_c01026{bottom:509.040000pt;}
.y31_c01026{bottom:509.973333pt;}
.ya_c01026{bottom:522.240000pt;}
.y30_c01026{bottom:525.840000pt;}
.y9_c01026{bottom:540.906667pt;}
.y2f_c01026{bottom:541.840000pt;}
.y8_c01026{bottom:557.306667pt;}
.y2e_c01026{bottom:558.506667pt;}
.y7_c01026{bottom:573.306667pt;}
.y2d_c01026{bottom:574.506667pt;}
.y6_c01026{bottom:589.440000pt;}
.y2c_c01026{bottom:590.106667pt;}
.y4_c01026{bottom:605.706667pt;}
.y2b_c01026{bottom:606.506667pt;}
.y2a_c01026{bottom:622.106667pt;}
.y5_c01026{bottom:622.240000pt;}
.y29_c01026{bottom:637.173333pt;}
.y3_c01026{bottom:637.706667pt;}
.y2_c01026{bottom:665.040000pt;}
.y1_c01026{bottom:691.706667pt;}
.hb_c01026{height:11.733399pt;}
.hc_c01026{height:38.937500pt;}
.h3_c01026{height:49.701823pt;}
.h5_c01026{height:55.893333pt;}
.h9_c01026{height:56.906667pt;}
.h8_c01026{height:58.688000pt;}
.ha_c01026{height:59.752000pt;}
.h6_c01026{height:62.812500pt;}
.h7_c01026{height:86.218750pt;}
.h2_c01026{height:97.813333pt;}
.h4_c01026{height:148.117333pt;}
.h1_c01026{height:744.666667pt;}
.h0_c01026{height:744.933333pt;}
.w2_c01026{width:93.222667pt;}
.w1_c01026{width:512.000000pt;}
.w0_c01026{width:512.133333pt;}
.x0_c01026{left:0.000000pt;}
.xc_c01026{left:19.200000pt;}
.x8_c01026{left:20.133333pt;}
.x6_c01026{left:21.200000pt;}
.x1_c01026{left:22.400000pt;}
.xb_c01026{left:23.600000pt;}
.xa_c01026{left:34.533333pt;}
.x7_c01026{left:37.200000pt;}
.xd_c01026{left:38.400000pt;}
.x9_c01026{left:39.333333pt;}
.x4_c01026{left:51.333333pt;}
.x5_c01026{left:52.800000pt;}
.x3_c01026{left:84.000000pt;}
.x2_c01026{left:99.600000pt;}
.x17_c01026{left:213.234904pt;}
.x14_c01026{left:229.466667pt;}
.x13_c01026{left:231.200000pt;}
.xf_c01026{left:232.133333pt;}
.x11_c01026{left:233.466667pt;}
.x15_c01026{left:241.733333pt;}
.xe_c01026{left:244.800000pt;}
.x10_c01026{left:246.533333pt;}
.x12_c01026{left:249.200000pt;}
.x16_c01026{left:295.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_c01027 {
    display:none;
  }
  .loading-indicator_c01027.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01027 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01027 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01027" -> "#page-container .classname_c01027")
 */
.pf_c01027 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01027 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01027.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01027 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01027 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01027 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01027 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01027 {overflow:visible;}
  }
}
.c_c01027 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01027 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01027:after { /* webkit #35443 */
  content: '';
}
.t_c01027:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01027 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01027 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01027 { /* info for Javascript */
  display:none;
}
.l_c01027 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01027 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01027 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01027:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01027{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01027;src:url('chunks/assets/font_f01246732ce6295d1eb2b985.woff2')format("woff");}.ff1_c01027{font-family:ff1_c01027;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01027;src:url('chunks/assets/font_fc678dd8f7845ea0a2532afa.woff2')format("woff");}.ff2_c01027{font-family:ff2_c01027;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01027;src:url('chunks/assets/font_4381afc0add82db9d7acf079.woff2')format("woff");}.ff3_c01027{font-family:ff3_c01027;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01027;src:url('chunks/assets/font_96d971ac14ed80d215367732.woff2')format("woff");}.ff4_c01027{font-family:ff4_c01027;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01027;src:url('chunks/assets/font_540adad06e7fac7d2636395d.woff2')format("woff");}.ff5_c01027{font-family:ff5_c01027;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01027;src:url('chunks/assets/font_1c69d954f2c66fa0cf6e25bd.woff2')format("woff");}.ff6_c01027{font-family:ff6_c01027;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01027;src:url('chunks/assets/font_f405de4c0e9b731f54c3e4ae.woff2')format("woff");}.ff7_c01027{font-family:ff7_c01027;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c01027;src:url('chunks/assets/font_6db14b67d4d80db0b66eaa6d.woff2')format("woff");}.ff8_c01027{font-family:ff8_c01027;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c01027;src:url('chunks/assets/font_e1ea27e90b03a808cdbf4684.woff2')format("woff");}.ff9_c01027{font-family:ff9_c01027;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:ffa_c01027;src:url('chunks/assets/font_6630e2332b722d299fc5bcd0.woff2')format("woff");}.ffa_c01027{font-family:ffa_c01027;line-height:1.575000;font-style:normal;font-weight: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_c01027;src:url('chunks/assets/font_8d6066cefaf7cd4b9449e06f.woff2')format("woff");}.ffb_c01027{font-family:ffb_c01027;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc_c01027;src:url('chunks/assets/font_7846e890f8fabaed1f1b6cfd.woff2')format("woff");}.ffc_c01027{font-family:ffc_c01027;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd_c01027;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ffd_c01027{font-family:ffd_c01027;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01027{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01027{vertical-align:0.000000px;}
.ls9_c01027{letter-spacing:-6.000000px;}
.ls7_c01027{letter-spacing:0.000000px;}
.ls8_c01027{letter-spacing:3.000000px;}
.ls5_c01027{letter-spacing:3.780000px;}
.ls6_c01027{letter-spacing:5.400000px;}
.ls3_c01027{letter-spacing:6.000000px;}
.ls0_c01027{letter-spacing:7.800000px;}
.ls4_c01027{letter-spacing:13.776000px;}
.ls2_c01027{letter-spacing:20.400000px;}
.ls1_c01027{letter-spacing:24.000000px;}
.sc__c01027{text-shadow:none;}
.sc0_c01027{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01027{-webkit-text-stroke:0px transparent;}
.sc0_c01027{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8_c01027{word-spacing:-57.168000px;}
.ws2_c01027{word-spacing:-35.295000px;}
.ws6_c01027{word-spacing:-25.854000px;}
.ws5_c01027{word-spacing:-21.606000px;}
.ws4_c01027{word-spacing:-18.000000px;}
.ws1_c01027{word-spacing:-16.554000px;}
.ws9_c01027{word-spacing:-15.774000px;}
.ws0_c01027{word-spacing:-15.060000px;}
.ws3_c01027{word-spacing:-14.160000px;}
.ws7_c01027{word-spacing:-9.057000px;}
.wsa_c01027{word-spacing:0.000000px;}
._20_c01027{margin-left:-18.165000px;}
._1e_c01027{margin-left:-17.004000px;}
._1d_c01027{margin-left:-14.853000px;}
._1c_c01027{margin-left:-12.804000px;}
._1f_c01027{margin-left:-11.508000px;}
._a_c01027{margin-left:-9.540000px;}
._f_c01027{margin-left:-8.460000px;}
._b_c01027{margin-left:-6.960000px;}
._17_c01027{margin-left:-5.223000px;}
._c_c01027{margin-left:-3.540000px;}
._7_c01027{margin-left:-2.280000px;}
._11_c01027{margin-left:-1.260000px;}
._8_c01027{width:1.140000px;}
._9_c01027{width:2.400000px;}
._6_c01027{width:3.480000px;}
._1_c01027{width:5.340000px;}
._13_c01027{width:6.420000px;}
._5_c01027{width:7.440000px;}
._3_c01027{width:9.000000px;}
._4_c01027{width:10.140000px;}
._d_c01027{width:11.700000px;}
._14_c01027{width:12.702000px;}
._0_c01027{width:14.040000px;}
._e_c01027{width:16.860000px;}
._2_c01027{width:18.240000px;}
._10_c01027{width:19.980000px;}
._12_c01027{width:21.360000px;}
._22_c01027{width:22.500000px;}
._15_c01027{width:24.408000px;}
._18_c01027{width:25.440000px;}
._16_c01027{width:28.470000px;}
._1a_c01027{width:30.360000px;}
._1b_c01027{width:32.760000px;}
._19_c01027{width:39.144000px;}
._21_c01027{width:71.673000px;}
.fc2_c01027{color:transparent;}
.fc1_c01027{color:rgb(128,128,128);}
.fc0_c01027{color:rgb(0,0,0);}
.fs9_c01027{font-size:42.000000px;}
.fs5_c01027{font-size:45.000000px;}
.fs4_c01027{font-size:48.000000px;}
.fs2_c01027{font-size:51.000000px;}
.fs1_c01027{font-size:54.000000px;}
.fs0_c01027{font-size:60.000000px;}
.fs6_c01027{font-size:63.000000px;}
.fsa_c01027{font-size:66.000000px;}
.fs3_c01027{font-size:69.000000px;}
.fs7_c01027{font-size:72.000000px;}
.fs8_c01027{font-size:93.000000px;}
.y0_c01027{bottom:0.000000px;}
.y51_c01027{bottom:3.105000px;}
.y50_c01027{bottom:7.228369px;}
.y4f_c01027{bottom:19.920000px;}
.y4e_c01027{bottom:37.170000px;}
.y2a_c01027{bottom:38.370000px;}
.y4d_c01027{bottom:55.320000px;}
.y29_c01027{bottom:56.370000px;}
.y4c_c01027{bottom:74.820000px;}
.y28_c01027{bottom:75.270000px;}
.y4b_c01027{bottom:92.820000px;}
.y27_c01027{bottom:93.720000px;}
.y4a_c01027{bottom:111.270000px;}
.y26_c01027{bottom:112.620000px;}
.y49_c01027{bottom:128.970000px;}
.y25_c01027{bottom:130.920000px;}
.y48_c01027{bottom:146.520000px;}
.y24_c01027{bottom:148.170000px;}
.y47_c01027{bottom:165.720000px;}
.y23_c01027{bottom:166.620000px;}
.y46_c01027{bottom:183.270000px;}
.y22_c01027{bottom:185.520000px;}
.y45_c01027{bottom:201.720000px;}
.y21_c01027{bottom:203.220000px;}
.y44_c01027{bottom:220.020000px;}
.y20_c01027{bottom:221.970000px;}
.y43_c01027{bottom:238.170000px;}
.y1f_c01027{bottom:239.220000px;}
.y42_c01027{bottom:256.170000px;}
.y1e_c01027{bottom:257.520000px;}
.y41_c01027{bottom:274.020000px;}
.y1d_c01027{bottom:275.370000px;}
.y40_c01027{bottom:292.620000px;}
.y1c_c01027{bottom:293.220000px;}
.y3f_c01027{bottom:309.870000px;}
.y1b_c01027{bottom:311.520000px;}
.y3e_c01027{bottom:328.320000px;}
.y1a_c01027{bottom:329.670000px;}
.y3d_c01027{bottom:346.320000px;}
.y19_c01027{bottom:346.920000px;}
.y3c_c01027{bottom:364.770000px;}
.y18_c01027{bottom:365.220000px;}
.y3b_c01027{bottom:383.070000px;}
.y17_c01027{bottom:384.120000px;}
.y16_c01027{bottom:400.920000px;}
.y3a_c01027{bottom:401.220000px;}
.y15_c01027{bottom:419.220000px;}
.y39_c01027{bottom:419.520000px;}
.y38_c01027{bottom:436.770000px;}
.y14_c01027{bottom:437.370000px;}
.y13_c01027{bottom:455.520000px;}
.y12_c01027{bottom:473.520000px;}
.y37_c01027{bottom:473.820000px;}
.y11_c01027{bottom:491.370000px;}
.y36_c01027{bottom:491.970000px;}
.y10_c01027{bottom:509.520000px;}
.yf_c01027{bottom:527.520000px;}
.y35_c01027{bottom:527.820000px;}
.ye_c01027{bottom:545.670000px;}
.yd_c01027{bottom:563.220000px;}
.y34_c01027{bottom:563.670000px;}
.yc_c01027{bottom:581.520000px;}
.y33_c01027{bottom:582.120000px;}
.yb_c01027{bottom:599.370000px;}
.y32_c01027{bottom:600.120000px;}
.y31_c01027{bottom:616.620000px;}
.ya_c01027{bottom:617.220000px;}
.y9_c01027{bottom:635.220000px;}
.y30_c01027{bottom:636.120000px;}
.y8_c01027{bottom:653.670000px;}
.y7_c01027{bottom:671.670000px;}
.y2f_c01027{bottom:672.570000px;}
.y2e_c01027{bottom:689.520000px;}
.y6_c01027{bottom:689.820000px;}
.y5_c01027{bottom:708.120000px;}
.y4_c01027{bottom:726.270000px;}
.y2d_c01027{bottom:727.020000px;}
.y3_c01027{bottom:744.420000px;}
.y2_c01027{bottom:762.420000px;}
.y2c_c01027{bottom:762.720000px;}
.y2b_c01027{bottom:780.270000px;}
.y1_c01027{bottom:780.870000px;}
.ha_c01027{height:13.200073px;}
.hb_c01027{height:43.804688px;}
.h2_c01027{height:56.592000px;}
.h1_c01027{height:62.880000px;}
.h3_c01027{height:64.020000px;}
.h5_c01027{height:66.024000px;}
.h9_c01027{height:69.168000px;}
.h6_c01027{height:70.664062px;}
.h4_c01027{height:73.623000px;}
.h8_c01027{height:75.456000px;}
.h7_c01027{height:96.996094px;}
.h0_c01027{height:840.750000px;}
.w2_c01027{width:104.875500px;}
.w1_c01027{width:574.500000px;}
.w0_c01027{width:574.575000px;}
.x0_c01027{left:0.000000px;}
.x9_c01027{left:89.550000px;}
.x7_c01027{left:90.900000px;}
.x1_c01027{left:92.250000px;}
.xd_c01027{left:93.450000px;}
.x2_c01027{left:103.350000px;}
.x8_c01027{left:105.000000px;}
.x6_c01027{left:106.050000px;}
.xa_c01027{left:107.100000px;}
.x5_c01027{left:108.300000px;}
.x3_c01027{left:109.350000px;}
.x4_c01027{left:110.400000px;}
.xb_c01027{left:112.050000px;}
.xc_c01027{left:123.600000px;}
.x19_c01027{left:239.101730px;}
.x17_c01027{left:331.350000px;}
.x16_c01027{left:332.400000px;}
.x13_c01027{left:333.450000px;}
.x10_c01027{left:334.800000px;}
.xe_c01027{left:337.200000px;}
.x12_c01027{left:345.900000px;}
.x14_c01027{left:347.850000px;}
.x11_c01027{left:349.950000px;}
.xf_c01027{left:352.050000px;}
.x15_c01027{left:353.250000px;}
.x18_c01027{left:521.700000px;}
@media print{
.v0_c01027{vertical-align:0.000000pt;}
.ls9_c01027{letter-spacing:-5.333333pt;}
.ls7_c01027{letter-spacing:0.000000pt;}
.ls8_c01027{letter-spacing:2.666667pt;}
.ls5_c01027{letter-spacing:3.360000pt;}
.ls6_c01027{letter-spacing:4.800000pt;}
.ls3_c01027{letter-spacing:5.333333pt;}
.ls0_c01027{letter-spacing:6.933333pt;}
.ls4_c01027{letter-spacing:12.245333pt;}
.ls2_c01027{letter-spacing:18.133333pt;}
.ls1_c01027{letter-spacing:21.333333pt;}
.ws8_c01027{word-spacing:-50.816000pt;}
.ws2_c01027{word-spacing:-31.373333pt;}
.ws6_c01027{word-spacing:-22.981333pt;}
.ws5_c01027{word-spacing:-19.205333pt;}
.ws4_c01027{word-spacing:-16.000000pt;}
.ws1_c01027{word-spacing:-14.714667pt;}
.ws9_c01027{word-spacing:-14.021333pt;}
.ws0_c01027{word-spacing:-13.386667pt;}
.ws3_c01027{word-spacing:-12.586667pt;}
.ws7_c01027{word-spacing:-8.050667pt;}
.wsa_c01027{word-spacing:0.000000pt;}
._20_c01027{margin-left:-16.146667pt;}
._1e_c01027{margin-left:-15.114667pt;}
._1d_c01027{margin-left:-13.202667pt;}
._1c_c01027{margin-left:-11.381333pt;}
._1f_c01027{margin-left:-10.229333pt;}
._a_c01027{margin-left:-8.480000pt;}
._f_c01027{margin-left:-7.520000pt;}
._b_c01027{margin-left:-6.186667pt;}
._17_c01027{margin-left:-4.642667pt;}
._c_c01027{margin-left:-3.146667pt;}
._7_c01027{margin-left:-2.026667pt;}
._11_c01027{margin-left:-1.120000pt;}
._8_c01027{width:1.013333pt;}
._9_c01027{width:2.133333pt;}
._6_c01027{width:3.093333pt;}
._1_c01027{width:4.746667pt;}
._13_c01027{width:5.706667pt;}
._5_c01027{width:6.613333pt;}
._3_c01027{width:8.000000pt;}
._4_c01027{width:9.013333pt;}
._d_c01027{width:10.400000pt;}
._14_c01027{width:11.290667pt;}
._0_c01027{width:12.480000pt;}
._e_c01027{width:14.986667pt;}
._2_c01027{width:16.213333pt;}
._10_c01027{width:17.760000pt;}
._12_c01027{width:18.986667pt;}
._22_c01027{width:20.000000pt;}
._15_c01027{width:21.696000pt;}
._18_c01027{width:22.613333pt;}
._16_c01027{width:25.306667pt;}
._1a_c01027{width:26.986667pt;}
._1b_c01027{width:29.120000pt;}
._19_c01027{width:34.794667pt;}
._21_c01027{width:63.709333pt;}
.fs9_c01027{font-size:37.333333pt;}
.fs5_c01027{font-size:40.000000pt;}
.fs4_c01027{font-size:42.666667pt;}
.fs2_c01027{font-size:45.333333pt;}
.fs1_c01027{font-size:48.000000pt;}
.fs0_c01027{font-size:53.333333pt;}
.fs6_c01027{font-size:56.000000pt;}
.fsa_c01027{font-size:58.666667pt;}
.fs3_c01027{font-size:61.333333pt;}
.fs7_c01027{font-size:64.000000pt;}
.fs8_c01027{font-size:82.666667pt;}
.y0_c01027{bottom:0.000000pt;}
.y51_c01027{bottom:2.760000pt;}
.y50_c01027{bottom:6.425217pt;}
.y4f_c01027{bottom:17.706667pt;}
.y4e_c01027{bottom:33.040000pt;}
.y2a_c01027{bottom:34.106667pt;}
.y4d_c01027{bottom:49.173333pt;}
.y29_c01027{bottom:50.106667pt;}
.y4c_c01027{bottom:66.506667pt;}
.y28_c01027{bottom:66.906667pt;}
.y4b_c01027{bottom:82.506667pt;}
.y27_c01027{bottom:83.306667pt;}
.y4a_c01027{bottom:98.906667pt;}
.y26_c01027{bottom:100.106667pt;}
.y49_c01027{bottom:114.640000pt;}
.y25_c01027{bottom:116.373333pt;}
.y48_c01027{bottom:130.240000pt;}
.y24_c01027{bottom:131.706667pt;}
.y47_c01027{bottom:147.306667pt;}
.y23_c01027{bottom:148.106667pt;}
.y46_c01027{bottom:162.906667pt;}
.y22_c01027{bottom:164.906667pt;}
.y45_c01027{bottom:179.306667pt;}
.y21_c01027{bottom:180.640000pt;}
.y44_c01027{bottom:195.573333pt;}
.y20_c01027{bottom:197.306667pt;}
.y43_c01027{bottom:211.706667pt;}
.y1f_c01027{bottom:212.640000pt;}
.y42_c01027{bottom:227.706667pt;}
.y1e_c01027{bottom:228.906667pt;}
.y41_c01027{bottom:243.573333pt;}
.y1d_c01027{bottom:244.773333pt;}
.y40_c01027{bottom:260.106667pt;}
.y1c_c01027{bottom:260.640000pt;}
.y3f_c01027{bottom:275.440000pt;}
.y1b_c01027{bottom:276.906667pt;}
.y3e_c01027{bottom:291.840000pt;}
.y1a_c01027{bottom:293.040000pt;}
.y3d_c01027{bottom:307.840000pt;}
.y19_c01027{bottom:308.373333pt;}
.y3c_c01027{bottom:324.240000pt;}
.y18_c01027{bottom:324.640000pt;}
.y3b_c01027{bottom:340.506667pt;}
.y17_c01027{bottom:341.440000pt;}
.y16_c01027{bottom:356.373333pt;}
.y3a_c01027{bottom:356.640000pt;}
.y15_c01027{bottom:372.640000pt;}
.y39_c01027{bottom:372.906667pt;}
.y38_c01027{bottom:388.240000pt;}
.y14_c01027{bottom:388.773333pt;}
.y13_c01027{bottom:404.906667pt;}
.y12_c01027{bottom:420.906667pt;}
.y37_c01027{bottom:421.173333pt;}
.y11_c01027{bottom:436.773333pt;}
.y36_c01027{bottom:437.306667pt;}
.y10_c01027{bottom:452.906667pt;}
.yf_c01027{bottom:468.906667pt;}
.y35_c01027{bottom:469.173333pt;}
.ye_c01027{bottom:485.040000pt;}
.yd_c01027{bottom:500.640000pt;}
.y34_c01027{bottom:501.040000pt;}
.yc_c01027{bottom:516.906667pt;}
.y33_c01027{bottom:517.440000pt;}
.yb_c01027{bottom:532.773333pt;}
.y32_c01027{bottom:533.440000pt;}
.y31_c01027{bottom:548.106667pt;}
.ya_c01027{bottom:548.640000pt;}
.y9_c01027{bottom:564.640000pt;}
.y30_c01027{bottom:565.440000pt;}
.y8_c01027{bottom:581.040000pt;}
.y7_c01027{bottom:597.040000pt;}
.y2f_c01027{bottom:597.840000pt;}
.y2e_c01027{bottom:612.906667pt;}
.y6_c01027{bottom:613.173333pt;}
.y5_c01027{bottom:629.440000pt;}
.y4_c01027{bottom:645.573333pt;}
.y2d_c01027{bottom:646.240000pt;}
.y3_c01027{bottom:661.706667pt;}
.y2_c01027{bottom:677.706667pt;}
.y2c_c01027{bottom:677.973333pt;}
.y2b_c01027{bottom:693.573333pt;}
.y1_c01027{bottom:694.106667pt;}
.ha_c01027{height:11.733399pt;}
.hb_c01027{height:38.937500pt;}
.h2_c01027{height:50.304000pt;}
.h1_c01027{height:55.893333pt;}
.h3_c01027{height:56.906667pt;}
.h5_c01027{height:58.688000pt;}
.h9_c01027{height:61.482667pt;}
.h6_c01027{height:62.812500pt;}
.h4_c01027{height:65.442667pt;}
.h8_c01027{height:67.072000pt;}
.h7_c01027{height:86.218750pt;}
.h0_c01027{height:747.333333pt;}
.w2_c01027{width:93.222667pt;}
.w1_c01027{width:510.666667pt;}
.w0_c01027{width:510.733333pt;}
.x0_c01027{left:0.000000pt;}
.x9_c01027{left:79.600000pt;}
.x7_c01027{left:80.800000pt;}
.x1_c01027{left:82.000000pt;}
.xd_c01027{left:83.066667pt;}
.x2_c01027{left:91.866667pt;}
.x8_c01027{left:93.333333pt;}
.x6_c01027{left:94.266667pt;}
.xa_c01027{left:95.200000pt;}
.x5_c01027{left:96.266667pt;}
.x3_c01027{left:97.200000pt;}
.x4_c01027{left:98.133333pt;}
.xb_c01027{left:99.600000pt;}
.xc_c01027{left:109.866667pt;}
.x19_c01027{left:212.534871pt;}
.x17_c01027{left:294.533333pt;}
.x16_c01027{left:295.466667pt;}
.x13_c01027{left:296.400000pt;}
.x10_c01027{left:297.600000pt;}
.xe_c01027{left:299.733333pt;}
.x12_c01027{left:307.466667pt;}
.x14_c01027{left:309.200000pt;}
.x11_c01027{left:311.066667pt;}
.xf_c01027{left:312.933333pt;}
.x15_c01027{left:314.000000pt;}
.x18_c01027{left:463.733333pt;}
}





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

.ir_c01028:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01028{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01028;src:url('chunks/assets/font_922c59867fdc61e772d5b12f.woff2')format("woff");}.ff1_c01028{font-family:ff1_c01028;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01028;src:url('chunks/assets/font_70a0aef422ba202bbe57b3d7.woff2')format("woff");}.ff2_c01028{font-family:ff2_c01028;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01028;src:url('chunks/assets/font_cd94578100b17648c5229d58.woff2')format("woff");}.ff3_c01028{font-family:ff3_c01028;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01028;src:url('chunks/assets/font_b6c791ec47ff7012cd92ec3d.woff2')format("woff");}.ff4_c01028{font-family:ff4_c01028;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01028;src:url('chunks/assets/font_8849604d9217b82a16afd1d3.woff2')format("woff");}.ff5_c01028{font-family:ff5_c01028;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01028;src:url('chunks/assets/font_f397187b9cccdd94fa52f517.woff2')format("woff");}.ff6_c01028{font-family:ff6_c01028;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01028;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff7_c01028{font-family:ff7_c01028;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01028{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c01028{vertical-align:-79.800000px;}
.v0_c01028{vertical-align:0.000000px;}
.ls8_c01028{letter-spacing:0.000000px;}
.ls0_c01028{letter-spacing:3.000000px;}
.ls2_c01028{letter-spacing:3.600000px;}
.ls9_c01028{letter-spacing:6.000000px;}
.ls3_c01028{letter-spacing:6.600000px;}
.ls1_c01028{letter-spacing:9.000000px;}
.ls7_c01028{letter-spacing:10.200000px;}
.ls5_c01028{letter-spacing:10.800000px;}
.ls6_c01028{letter-spacing:11.400000px;}
.ls4_c01028{letter-spacing:12.600000px;}
.sc__c01028{text-shadow:none;}
.sc0_c01028{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01028{-webkit-text-stroke:0px transparent;}
.sc0_c01028{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c01028{word-spacing:-39.540000px;}
.ws1_c01028{word-spacing:-30.540000px;}
.ws5_c01028{word-spacing:-24.750000px;}
.ws0_c01028{word-spacing:-22.566000px;}
.ws2_c01028{word-spacing:-21.000000px;}
.ws3_c01028{word-spacing:-15.060000px;}
.ws7_c01028{word-spacing:0.000000px;}
.ws6_c01028{word-spacing:10.518000px;}
._17_c01028{margin-left:-22.320000px;}
._21_c01028{margin-left:-18.087000px;}
._1c_c01028{margin-left:-11.766000px;}
._13_c01028{margin-left:-9.339000px;}
._14_c01028{margin-left:-7.875000px;}
._10_c01028{margin-left:-6.573000px;}
._15_c01028{margin-left:-5.145000px;}
._d_c01028{margin-left:-3.471000px;}
._11_c01028{margin-left:-2.274000px;}
._12_c01028{margin-left:-1.188000px;}
._b_c01028{width:1.428000px;}
._6_c01028{width:2.601000px;}
._c_c01028{width:3.762000px;}
._9_c01028{width:4.896000px;}
._a_c01028{width:6.885000px;}
._f_c01028{width:7.944000px;}
._7_c01028{width:9.129000px;}
._e_c01028{width:10.518000px;}
._3_c01028{width:11.628000px;}
._4_c01028{width:12.699000px;}
._8_c01028{width:13.719000px;}
._1b_c01028{width:16.320000px;}
._5_c01028{width:17.493000px;}
._19_c01028{width:19.167000px;}
._0_c01028{width:20.859000px;}
._20_c01028{width:22.140000px;}
._2_c01028{width:23.817000px;}
._1_c01028{width:25.755000px;}
._1e_c01028{width:27.225000px;}
._1d_c01028{width:28.662000px;}
._1f_c01028{width:30.072000px;}
._18_c01028{width:34.440000px;}
._16_c01028{width:40.140000px;}
._1a_c01028{width:94.275000px;}
._22_c01028{width:139.296000px;}
.fc2_c01028{color:transparent;}
.fc1_c01028{color:rgb(128,128,128);}
.fc0_c01028{color:rgb(0,0,0);}
.fs4_c01028{font-size:48.000000px;}
.fs0_c01028{font-size:51.000000px;}
.fs1_c01028{font-size:60.000000px;}
.fs3_c01028{font-size:63.000000px;}
.fs2_c01028{font-size:66.000000px;}
.y0_c01028{bottom:0.000000px;}
.y55_c01028{bottom:3.105000px;}
.y54_c01028{bottom:7.228363px;}
.y2a_c01028{bottom:66.150000px;}
.y53_c01028{bottom:68.550000px;}
.y29_c01028{bottom:85.050000px;}
.y52_c01028{bottom:88.650000px;}
.y28_c01028{bottom:102.150000px;}
.y51_c01028{bottom:106.200000px;}
.y27_c01028{bottom:120.600000px;}
.y50_c01028{bottom:124.800000px;}
.y26_c01028{bottom:139.350000px;}
.y4f_c01028{bottom:142.350000px;}
.y25_c01028{bottom:157.950000px;}
.y4e_c01028{bottom:161.700000px;}
.y24_c01028{bottom:175.200000px;}
.y4d_c01028{bottom:179.550000px;}
.y23_c01028{bottom:194.400000px;}
.y4c_c01028{bottom:198.000000px;}
.y22_c01028{bottom:212.400000px;}
.y4b_c01028{bottom:215.700000px;}
.y21_c01028{bottom:230.550000px;}
.y4a_c01028{bottom:233.550000px;}
.y20_c01028{bottom:248.100000px;}
.y49_c01028{bottom:249.450000px;}
.y1f_c01028{bottom:266.700000px;}
.y48_c01028{bottom:269.250000px;}
.y1e_c01028{bottom:284.550000px;}
.y47_c01028{bottom:288.150000px;}
.y1d_c01028{bottom:303.450000px;}
.y46_c01028{bottom:306.000000px;}
.y1c_c01028{bottom:320.550000px;}
.y45_c01028{bottom:323.700000px;}
.y1b_c01028{bottom:339.150000px;}
.y44_c01028{bottom:342.900000px;}
.y1a_c01028{bottom:357.300000px;}
.y43_c01028{bottom:360.150000px;}
.y19_c01028{bottom:375.000000px;}
.y42_c01028{bottom:378.450000px;}
.y18_c01028{bottom:393.150000px;}
.y41_c01028{bottom:395.850000px;}
.y17_c01028{bottom:410.700000px;}
.y40_c01028{bottom:415.050000px;}
.y16_c01028{bottom:428.700000px;}
.y3f_c01028{bottom:433.350000px;}
.y15_c01028{bottom:447.300000px;}
.y3e_c01028{bottom:451.200000px;}
.y14_c01028{bottom:464.850000px;}
.y3d_c01028{bottom:469.500000px;}
.y13_c01028{bottom:483.600000px;}
.y3c_c01028{bottom:487.050000px;}
.y12_c01028{bottom:501.300000px;}
.y3b_c01028{bottom:505.500000px;}
.y11_c01028{bottom:519.450000px;}
.y3a_c01028{bottom:522.750000px;}
.y10_c01028{bottom:536.700000px;}
.y39_c01028{bottom:540.000000px;}
.yf_c01028{bottom:554.550000px;}
.y38_c01028{bottom:557.850000px;}
.ye_c01028{bottom:571.050000px;}
.y37_c01028{bottom:576.150000px;}
.yd_c01028{bottom:591.300000px;}
.y36_c01028{bottom:594.000000px;}
.yc_c01028{bottom:609.750000px;}
.y35_c01028{bottom:611.550000px;}
.yb_c01028{bottom:626.400000px;}
.y34_c01028{bottom:629.400000px;}
.ya_c01028{bottom:644.700000px;}
.y33_c01028{bottom:646.050000px;}
.y9_c01028{bottom:662.850000px;}
.y32_c01028{bottom:666.300000px;}
.y31_c01028{bottom:680.100000px;}
.y8_c01028{bottom:680.850000px;}
.y7_c01028{bottom:698.700000px;}
.y30_c01028{bottom:702.300000px;}
.y6_c01028{bottom:717.300000px;}
.y2f_c01028{bottom:720.000000px;}
.y5_c01028{bottom:736.200000px;}
.y2e_c01028{bottom:738.450000px;}
.y4_c01028{bottom:752.700000px;}
.y2d_c01028{bottom:756.000000px;}
.y3_c01028{bottom:771.600000px;}
.y2c_c01028{bottom:774.450000px;}
.y2_c01028{bottom:790.050000px;}
.y2b_c01028{bottom:792.450000px;}
.y1_c01028{bottom:809.250000px;}
.h8_c01028{height:13.200074px;}
.h9_c01028{height:43.804688px;}
.h2_c01028{height:53.448000px;}
.h3_c01028{height:62.880000px;}
.h5_c01028{height:64.020000px;}
.h7_c01028{height:64.620000px;}
.h6_c01028{height:67.221000px;}
.h4_c01028{height:69.168000px;}
.h1_c01028{height:847.500000px;}
.h0_c01028{height:847.800000px;}
.w2_c01028{width:104.875500px;}
.w1_c01028{width:627.000000px;}
.w0_c01028{width:627.225000px;}
.x0_c01028{left:0.000000px;}
.x8_c01028{left:37.050000px;}
.x2_c01028{left:38.850000px;}
.x9_c01028{left:40.050000px;}
.x7_c01028{left:52.650000px;}
.x6_c01028{left:54.900000px;}
.x3_c01028{left:56.250000px;}
.x5_c01028{left:57.300000px;}
.x4_c01028{left:58.500000px;}
.xb_c01028{left:64.500000px;}
.xc_c01028{left:71.550000px;}
.xa_c01028{left:112.950000px;}
.x1_c01028{left:132.900000px;}
.x18_c01028{left:265.426758px;}
.x10_c01028{left:278.100000px;}
.xd_c01028{left:279.150000px;}
.x17_c01028{left:280.800000px;}
.xe_c01028{left:289.200000px;}
.x16_c01028{left:290.250000px;}
.x15_c01028{left:291.300000px;}
.x13_c01028{left:293.250000px;}
.xf_c01028{left:294.300000px;}
.x11_c01028{left:295.950000px;}
.x14_c01028{left:297.000000px;}
.x12_c01028{left:298.650000px;}
@media print{
.v1_c01028{vertical-align:-70.933333pt;}
.v0_c01028{vertical-align:0.000000pt;}
.ls8_c01028{letter-spacing:0.000000pt;}
.ls0_c01028{letter-spacing:2.666667pt;}
.ls2_c01028{letter-spacing:3.200000pt;}
.ls9_c01028{letter-spacing:5.333333pt;}
.ls3_c01028{letter-spacing:5.866667pt;}
.ls1_c01028{letter-spacing:8.000000pt;}
.ls7_c01028{letter-spacing:9.066667pt;}
.ls5_c01028{letter-spacing:9.600000pt;}
.ls6_c01028{letter-spacing:10.133333pt;}
.ls4_c01028{letter-spacing:11.200000pt;}
.ws4_c01028{word-spacing:-35.146667pt;}
.ws1_c01028{word-spacing:-27.146667pt;}
.ws5_c01028{word-spacing:-22.000000pt;}
.ws0_c01028{word-spacing:-20.058667pt;}
.ws2_c01028{word-spacing:-18.666667pt;}
.ws3_c01028{word-spacing:-13.386667pt;}
.ws7_c01028{word-spacing:0.000000pt;}
.ws6_c01028{word-spacing:9.349333pt;}
._17_c01028{margin-left:-19.840000pt;}
._21_c01028{margin-left:-16.077333pt;}
._1c_c01028{margin-left:-10.458667pt;}
._13_c01028{margin-left:-8.301333pt;}
._14_c01028{margin-left:-7.000000pt;}
._10_c01028{margin-left:-5.842667pt;}
._15_c01028{margin-left:-4.573333pt;}
._d_c01028{margin-left:-3.085333pt;}
._11_c01028{margin-left:-2.021333pt;}
._12_c01028{margin-left:-1.056000pt;}
._b_c01028{width:1.269333pt;}
._6_c01028{width:2.312000pt;}
._c_c01028{width:3.344000pt;}
._9_c01028{width:4.352000pt;}
._a_c01028{width:6.120000pt;}
._f_c01028{width:7.061333pt;}
._7_c01028{width:8.114667pt;}
._e_c01028{width:9.349333pt;}
._3_c01028{width:10.336000pt;}
._4_c01028{width:11.288000pt;}
._8_c01028{width:12.194667pt;}
._1b_c01028{width:14.506667pt;}
._5_c01028{width:15.549333pt;}
._19_c01028{width:17.037333pt;}
._0_c01028{width:18.541333pt;}
._20_c01028{width:19.680000pt;}
._2_c01028{width:21.170667pt;}
._1_c01028{width:22.893333pt;}
._1e_c01028{width:24.200000pt;}
._1d_c01028{width:25.477333pt;}
._1f_c01028{width:26.730667pt;}
._18_c01028{width:30.613333pt;}
._16_c01028{width:35.680000pt;}
._1a_c01028{width:83.800000pt;}
._22_c01028{width:123.818667pt;}
.fs4_c01028{font-size:42.666667pt;}
.fs0_c01028{font-size:45.333333pt;}
.fs1_c01028{font-size:53.333333pt;}
.fs3_c01028{font-size:56.000000pt;}
.fs2_c01028{font-size:58.666667pt;}
.y0_c01028{bottom:0.000000pt;}
.y55_c01028{bottom:2.760000pt;}
.y54_c01028{bottom:6.425212pt;}
.y2a_c01028{bottom:58.800000pt;}
.y53_c01028{bottom:60.933333pt;}
.y29_c01028{bottom:75.600000pt;}
.y52_c01028{bottom:78.800000pt;}
.y28_c01028{bottom:90.800000pt;}
.y51_c01028{bottom:94.400000pt;}
.y27_c01028{bottom:107.200000pt;}
.y50_c01028{bottom:110.933333pt;}
.y26_c01028{bottom:123.866667pt;}
.y4f_c01028{bottom:126.533333pt;}
.y25_c01028{bottom:140.400000pt;}
.y4e_c01028{bottom:143.733333pt;}
.y24_c01028{bottom:155.733333pt;}
.y4d_c01028{bottom:159.600000pt;}
.y23_c01028{bottom:172.800000pt;}
.y4c_c01028{bottom:176.000000pt;}
.y22_c01028{bottom:188.800000pt;}
.y4b_c01028{bottom:191.733333pt;}
.y21_c01028{bottom:204.933333pt;}
.y4a_c01028{bottom:207.600000pt;}
.y20_c01028{bottom:220.533333pt;}
.y49_c01028{bottom:221.733333pt;}
.y1f_c01028{bottom:237.066667pt;}
.y48_c01028{bottom:239.333333pt;}
.y1e_c01028{bottom:252.933333pt;}
.y47_c01028{bottom:256.133333pt;}
.y1d_c01028{bottom:269.733333pt;}
.y46_c01028{bottom:272.000000pt;}
.y1c_c01028{bottom:284.933333pt;}
.y45_c01028{bottom:287.733333pt;}
.y1b_c01028{bottom:301.466667pt;}
.y44_c01028{bottom:304.800000pt;}
.y1a_c01028{bottom:317.600000pt;}
.y43_c01028{bottom:320.133333pt;}
.y19_c01028{bottom:333.333333pt;}
.y42_c01028{bottom:336.400000pt;}
.y18_c01028{bottom:349.466667pt;}
.y41_c01028{bottom:351.866667pt;}
.y17_c01028{bottom:365.066667pt;}
.y40_c01028{bottom:368.933333pt;}
.y16_c01028{bottom:381.066667pt;}
.y3f_c01028{bottom:385.200000pt;}
.y15_c01028{bottom:397.600000pt;}
.y3e_c01028{bottom:401.066667pt;}
.y14_c01028{bottom:413.200000pt;}
.y3d_c01028{bottom:417.333333pt;}
.y13_c01028{bottom:429.866667pt;}
.y3c_c01028{bottom:432.933333pt;}
.y12_c01028{bottom:445.600000pt;}
.y3b_c01028{bottom:449.333333pt;}
.y11_c01028{bottom:461.733333pt;}
.y3a_c01028{bottom:464.666667pt;}
.y10_c01028{bottom:477.066667pt;}
.y39_c01028{bottom:480.000000pt;}
.yf_c01028{bottom:492.933333pt;}
.y38_c01028{bottom:495.866667pt;}
.ye_c01028{bottom:507.600000pt;}
.y37_c01028{bottom:512.133333pt;}
.yd_c01028{bottom:525.600000pt;}
.y36_c01028{bottom:528.000000pt;}
.yc_c01028{bottom:542.000000pt;}
.y35_c01028{bottom:543.600000pt;}
.yb_c01028{bottom:556.800000pt;}
.y34_c01028{bottom:559.466667pt;}
.ya_c01028{bottom:573.066667pt;}
.y33_c01028{bottom:574.266667pt;}
.y9_c01028{bottom:589.200000pt;}
.y32_c01028{bottom:592.266667pt;}
.y31_c01028{bottom:604.533333pt;}
.y8_c01028{bottom:605.200000pt;}
.y7_c01028{bottom:621.066667pt;}
.y30_c01028{bottom:624.266667pt;}
.y6_c01028{bottom:637.600000pt;}
.y2f_c01028{bottom:640.000000pt;}
.y5_c01028{bottom:654.400000pt;}
.y2e_c01028{bottom:656.400000pt;}
.y4_c01028{bottom:669.066667pt;}
.y2d_c01028{bottom:672.000000pt;}
.y3_c01028{bottom:685.866667pt;}
.y2c_c01028{bottom:688.400000pt;}
.y2_c01028{bottom:702.266667pt;}
.y2b_c01028{bottom:704.400000pt;}
.y1_c01028{bottom:719.333333pt;}
.h8_c01028{height:11.733399pt;}
.h9_c01028{height:38.937500pt;}
.h2_c01028{height:47.509333pt;}
.h3_c01028{height:55.893333pt;}
.h5_c01028{height:56.906667pt;}
.h7_c01028{height:57.440000pt;}
.h6_c01028{height:59.752000pt;}
.h4_c01028{height:61.482667pt;}
.h1_c01028{height:753.333333pt;}
.h0_c01028{height:753.600000pt;}
.w2_c01028{width:93.222667pt;}
.w1_c01028{width:557.333333pt;}
.w0_c01028{width:557.533333pt;}
.x0_c01028{left:0.000000pt;}
.x8_c01028{left:32.933333pt;}
.x2_c01028{left:34.533333pt;}
.x9_c01028{left:35.600000pt;}
.x7_c01028{left:46.800000pt;}
.x6_c01028{left:48.800000pt;}
.x3_c01028{left:50.000000pt;}
.x5_c01028{left:50.933333pt;}
.x4_c01028{left:52.000000pt;}
.xb_c01028{left:57.333333pt;}
.xc_c01028{left:63.600000pt;}
.xa_c01028{left:100.400000pt;}
.x1_c01028{left:118.133333pt;}
.x18_c01028{left:235.934896pt;}
.x10_c01028{left:247.200000pt;}
.xd_c01028{left:248.133333pt;}
.x17_c01028{left:249.600000pt;}
.xe_c01028{left:257.066667pt;}
.x16_c01028{left:258.000000pt;}
.x15_c01028{left:258.933333pt;}
.x13_c01028{left:260.666667pt;}
.xf_c01028{left:261.600000pt;}
.x11_c01028{left:263.066667pt;}
.x14_c01028{left:264.000000pt;}
.x12_c01028{left:265.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_c01029 {
    display:none;
  }
  .loading-indicator_c01029.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01029 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01029 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01029" -> "#page-container .classname_c01029")
 */
.pf_c01029 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01029 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01029.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01029 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01029 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01029 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01029 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01029 {overflow:visible;}
  }
}
.c_c01029 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01029 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01029:after { /* webkit #35443 */
  content: '';
}
.t_c01029:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01029 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01029 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01029 { /* info for Javascript */
  display:none;
}
.l_c01029 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01029 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01029 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01029:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01029{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01029;src:url('chunks/assets/font_c3bc4fe1b4e329c49e9d7892.woff2')format("woff");}.ff1_c01029{font-family:ff1_c01029;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01029;src:url('chunks/assets/font_ad2c189af0025ab9eb16f76a.woff2')format("woff");}.ff2_c01029{font-family:ff2_c01029;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01029;src:url('chunks/assets/font_a13fbc544a57e099e83f917c.woff2')format("woff");}.ff3_c01029{font-family:ff3_c01029;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_c01029;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff4_c01029{font-family:ff4_c01029;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:ff5_c01029;src:url('chunks/assets/font_208f86320b8efce69add6229.woff2')format("woff");}.ff5_c01029{font-family:ff5_c01029;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01029;src:url('chunks/assets/font_6b3a6de6f5dc5e563cee22ea.woff2')format("woff");}.ff6_c01029{font-family:ff6_c01029;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01029;src:url('chunks/assets/font_bbb773523f723636c987a924.woff2')format("woff");}.ff7_c01029{font-family:ff7_c01029;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c01029;src:url('chunks/assets/font_cbfcbdcbfb409ddea7517c63.woff2')format("woff");}.ff8_c01029{font-family:ff8_c01029;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c01029;src:url('chunks/assets/font_716d945df4e37c630d7ba7c1.woff2')format("woff");}.ff9_c01029{font-family:ff9_c01029;line-height:1.575000;font-style:normal;font-weight: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_c01029;src:url('chunks/assets/font_31635d5aa131176cd3bfa12e.woff2')format("woff");}.ffa_c01029{font-family:ffa_c01029;line-height:1.575000;font-style:normal;font-weight: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_c01029;src:url('chunks/assets/font_55eb9db8683fc23c726f566e.woff2')format("woff");}.ffb_c01029{font-family:ffb_c01029;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc_c01029;src:url('chunks/assets/font_f74446ada67e9c33a039baa8.woff2')format("woff");}.ffc_c01029{font-family:ffc_c01029;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:ffd_c01029;src:url('chunks/assets/font_4dbab48cb2de234bfb29cbcc.woff2')format("woff");}.ffd_c01029{font-family:ffd_c01029;line-height:1.575000;font-style:normal;font-weight: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_c01029;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ffe_c01029{font-family:ffe_c01029;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01029{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c01029{vertical-align:-70.200000px;}
.v2_c01029{vertical-align:-67.200000px;}
.v0_c01029{vertical-align:0.000000px;}
.ls9_c01029{letter-spacing:0.000000px;}
.ls7_c01029{letter-spacing:2.508000px;}
.ls3_c01029{letter-spacing:2.580000px;}
.lsb_c01029{letter-spacing:3.000000px;}
.ls4_c01029{letter-spacing:3.540000px;}
.ls0_c01029{letter-spacing:4.608000px;}
.ls1_c01029{letter-spacing:5.400000px;}
.lsa_c01029{letter-spacing:6.000000px;}
.ls2_c01029{letter-spacing:7.200000px;}
.ls8_c01029{letter-spacing:9.000000px;}
.ls5_c01029{letter-spacing:12.000000px;}
.ls6_c01029{letter-spacing:15.000000px;}
.sc__c01029{text-shadow:none;}
.sc0_c01029{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01029{-webkit-text-stroke:0px transparent;}
.sc0_c01029{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa_c01029{word-spacing:-35.295000px;}
.ws2_c01029{word-spacing:-25.854000px;}
.ws5_c01029{word-spacing:-23.340000px;}
.ws9_c01029{word-spacing:-23.160000px;}
.ws3_c01029{word-spacing:-22.608000px;}
.ws8_c01029{word-spacing:-21.606000px;}
.ws0_c01029{word-spacing:-18.000000px;}
.ws4_c01029{word-spacing:-16.500000px;}
.ws1_c01029{word-spacing:-15.060000px;}
.wsb_c01029{word-spacing:0.000000px;}
.ws7_c01029{word-spacing:8.505000px;}
.ws6_c01029{word-spacing:31.818000px;}
._16_c01029{margin-left:-33.207000px;}
._17_c01029{margin-left:-26.010000px;}
._15_c01029{margin-left:-24.645000px;}
._f_c01029{margin-left:-23.250000px;}
._28_c01029{margin-left:-20.232000px;}
._1b_c01029{margin-left:-18.348000px;}
._11_c01029{margin-left:-15.594000px;}
._13_c01029{margin-left:-13.560000px;}
._c_c01029{margin-left:-12.456000px;}
._1d_c01029{margin-left:-11.325000px;}
._14_c01029{margin-left:-10.137000px;}
._22_c01029{margin-left:-9.123000px;}
._19_c01029{margin-left:-7.941000px;}
._b_c01029{margin-left:-5.976000px;}
._d_c01029{margin-left:-4.536000px;}
._6_c01029{margin-left:-2.808000px;}
._10_c01029{margin-left:-1.764000px;}
._9_c01029{width:1.224000px;}
._7_c01029{width:2.397000px;}
._0_c01029{width:3.600000px;}
._4_c01029{width:4.896000px;}
._2_c01029{width:6.048000px;}
._1_c01029{width:8.064000px;}
._3_c01029{width:9.144000px;}
._a_c01029{width:11.184000px;}
._12_c01029{width:13.164000px;}
._20_c01029{width:14.901000px;}
._e_c01029{width:16.143000px;}
._18_c01029{width:17.835000px;}
._5_c01029{width:19.800000px;}
._1a_c01029{width:21.384000px;}
._26_c01029{width:23.244000px;}
._1c_c01029{width:24.744000px;}
._21_c01029{width:26.961000px;}
._8_c01029{width:28.875000px;}
._23_c01029{width:31.515000px;}
._24_c01029{width:35.562000px;}
._25_c01029{width:37.323000px;}
._27_c01029{width:41.943000px;}
._1e_c01029{width:45.612000px;}
._29_c01029{width:50.133000px;}
._1f_c01029{width:340.248000px;}
.fc2_c01029{color:transparent;}
.fc1_c01029{color:rgb(128,128,128);}
.fc0_c01029{color:rgb(0,0,0);}
.fs6_c01029{font-size:42.000000px;}
.fs8_c01029{font-size:45.000000px;}
.fsc_c01029{font-size:48.000000px;}
.fs9_c01029{font-size:51.000000px;}
.fs4_c01029{font-size:54.000000px;}
.fsa_c01029{font-size:57.000000px;}
.fs2_c01029{font-size:60.000000px;}
.fs1_c01029{font-size:63.000000px;}
.fs5_c01029{font-size:66.000000px;}
.fs7_c01029{font-size:69.000000px;}
.fs0_c01029{font-size:72.000000px;}
.fsb_c01029{font-size:75.000000px;}
.fs3_c01029{font-size:93.000000px;}
.y0_c01029{bottom:0.000000px;}
.y53_c01029{bottom:3.105000px;}
.y52_c01029{bottom:7.228369px;}
.y29_c01029{bottom:50.670000px;}
.y51_c01029{bottom:52.920000px;}
.y28_c01029{bottom:70.920000px;}
.y50_c01029{bottom:72.270000px;}
.y27_c01029{bottom:90.120000px;}
.y4f_c01029{bottom:90.720000px;}
.y26_c01029{bottom:107.670000px;}
.y4e_c01029{bottom:109.020000px;}
.y25_c01029{bottom:125.220000px;}
.y4d_c01029{bottom:126.870000px;}
.y24_c01029{bottom:143.670000px;}
.y4c_c01029{bottom:146.070000px;}
.y23_c01029{bottom:162.720000px;}
.y4b_c01029{bottom:164.670000px;}
.y22_c01029{bottom:181.920000px;}
.y4a_c01029{bottom:182.820000px;}
.y21_c01029{bottom:199.470000px;}
.y49_c01029{bottom:199.770000px;}
.y20_c01029{bottom:218.370000px;}
.y48_c01029{bottom:219.420000px;}
.y1f_c01029{bottom:236.220000px;}
.y47_c01029{bottom:238.170000px;}
.y1e_c01029{bottom:254.370000px;}
.y46_c01029{bottom:256.170000px;}
.y1d_c01029{bottom:271.920000px;}
.y45_c01029{bottom:274.770000px;}
.y1c_c01029{bottom:291.270000px;}
.y44_c01029{bottom:292.320000px;}
.y1b_c01029{bottom:309.870000px;}
.y43_c01029{bottom:311.070000px;}
.y1a_c01029{bottom:328.770000px;}
.y19_c01029{bottom:346.320000px;}
.y42_c01029{bottom:347.220000px;}
.y18_c01029{bottom:364.770000px;}
.y17_c01029{bottom:382.320000px;}
.y41_c01029{bottom:384.120000px;}
.y16_c01029{bottom:400.170000px;}
.y40_c01029{bottom:402.870000px;}
.y3f_c01029{bottom:421.170000px;}
.y15_c01029{bottom:437.370000px;}
.y3e_c01029{bottom:439.470000px;}
.y14_c01029{bottom:455.220000px;}
.y3d_c01029{bottom:458.220000px;}
.y13_c01029{bottom:474.120000px;}
.y3c_c01029{bottom:475.920000px;}
.y12_c01029{bottom:492.120000px;}
.y3b_c01029{bottom:494.070000px;}
.y11_c01029{bottom:510.270000px;}
.y3a_c01029{bottom:512.220000px;}
.y10_c01029{bottom:528.570000px;}
.y39_c01029{bottom:530.820000px;}
.yf_c01029{bottom:547.020000px;}
.y38_c01029{bottom:548.820000px;}
.ye_c01029{bottom:564.270000px;}
.y37_c01029{bottom:566.970000px;}
.yd_c01029{bottom:583.770000px;}
.y36_c01029{bottom:585.270000px;}
.yc_c01029{bottom:601.770000px;}
.y35_c01029{bottom:604.020000px;}
.yb_c01029{bottom:620.370000px;}
.y34_c01029{bottom:621.570000px;}
.ya_c01029{bottom:639.120000px;}
.y33_c01029{bottom:640.170000px;}
.y9_c01029{bottom:656.070000px;}
.y32_c01029{bottom:657.720000px;}
.y8_c01029{bottom:674.970000px;}
.y31_c01029{bottom:675.720000px;}
.y7_c01029{bottom:693.570000px;}
.y30_c01029{bottom:694.620000px;}
.y2f_c01029{bottom:709.770000px;}
.y6_c01029{bottom:712.020000px;}
.y2e_c01029{bottom:730.920000px;}
.y5_c01029{bottom:731.070000px;}
.y4_c01029{bottom:749.220000px;}
.y2d_c01029{bottom:750.270000px;}
.y3_c01029{bottom:766.170000px;}
.y2c_c01029{bottom:768.420000px;}
.y2_c01029{bottom:785.670000px;}
.y2b_c01029{bottom:786.420000px;}
.y2a_c01029{bottom:804.570000px;}
.y1_c01029{bottom:805.920000px;}
.hb_c01029{height:13.200073px;}
.hc_c01029{height:43.804688px;}
.ha_c01029{height:53.448000px;}
.h2_c01029{height:62.880000px;}
.h5_c01029{height:64.020000px;}
.h9_c01029{height:66.024000px;}
.h7_c01029{height:67.221000px;}
.h4_c01029{height:70.422000px;}
.h1_c01029{height:70.664062px;}
.h6_c01029{height:72.312000px;}
.h8_c01029{height:78.600000px;}
.h3_c01029{height:96.996094px;}
.h0_c01029{height:840.750000px;}
.w2_c01029{width:104.875500px;}
.w1_c01029{width:574.500000px;}
.w0_c01029{width:574.575000px;}
.x0_c01029{left:0.000000px;}
.x4_c01029{left:87.300000px;}
.x2_c01029{left:90.150000px;}
.xc_c01029{left:91.800000px;}
.xe_c01029{left:92.850000px;}
.xf_c01029{left:95.400000px;}
.x8_c01029{left:98.250000px;}
.x5_c01029{left:99.900000px;}
.x3_c01029{left:105.300000px;}
.x6_c01029{left:106.650000px;}
.xd_c01029{left:107.700000px;}
.xa_c01029{left:110.400000px;}
.x10_c01029{left:113.400000px;}
.x9_c01029{left:115.350000px;}
.xb_c01029{left:117.750000px;}
.x7_c01029{left:155.550000px;}
.x1_c01029{left:230.850000px;}
.x20_c01029{left:239.101730px;}
.x11_c01029{left:318.300000px;}
.x12_c01029{left:329.400000px;}
.x14_c01029{left:330.450000px;}
.x17_c01029{left:331.650000px;}
.x19_c01029{left:333.000000px;}
.x1d_c01029{left:334.350000px;}
.x1f_c01029{left:335.700000px;}
.x13_c01029{left:346.200000px;}
.x15_c01029{left:347.550000px;}
.x18_c01029{left:349.650000px;}
.x1a_c01029{left:351.000000px;}
.x1c_c01029{left:352.950000px;}
.x16_c01029{left:372.300000px;}
.x1e_c01029{left:375.600000px;}
.x1b_c01029{left:410.700000px;}
@media print{
.v1_c01029{vertical-align:-62.400000pt;}
.v2_c01029{vertical-align:-59.733333pt;}
.v0_c01029{vertical-align:0.000000pt;}
.ls9_c01029{letter-spacing:0.000000pt;}
.ls7_c01029{letter-spacing:2.229333pt;}
.ls3_c01029{letter-spacing:2.293333pt;}
.lsb_c01029{letter-spacing:2.666667pt;}
.ls4_c01029{letter-spacing:3.146667pt;}
.ls0_c01029{letter-spacing:4.096000pt;}
.ls1_c01029{letter-spacing:4.800000pt;}
.lsa_c01029{letter-spacing:5.333333pt;}
.ls2_c01029{letter-spacing:6.400000pt;}
.ls8_c01029{letter-spacing:8.000000pt;}
.ls5_c01029{letter-spacing:10.666667pt;}
.ls6_c01029{letter-spacing:13.333333pt;}
.wsa_c01029{word-spacing:-31.373333pt;}
.ws2_c01029{word-spacing:-22.981333pt;}
.ws5_c01029{word-spacing:-20.746667pt;}
.ws9_c01029{word-spacing:-20.586667pt;}
.ws3_c01029{word-spacing:-20.096000pt;}
.ws8_c01029{word-spacing:-19.205333pt;}
.ws0_c01029{word-spacing:-16.000000pt;}
.ws4_c01029{word-spacing:-14.666667pt;}
.ws1_c01029{word-spacing:-13.386667pt;}
.wsb_c01029{word-spacing:0.000000pt;}
.ws7_c01029{word-spacing:7.560000pt;}
.ws6_c01029{word-spacing:28.282667pt;}
._16_c01029{margin-left:-29.517333pt;}
._17_c01029{margin-left:-23.120000pt;}
._15_c01029{margin-left:-21.906667pt;}
._f_c01029{margin-left:-20.666667pt;}
._28_c01029{margin-left:-17.984000pt;}
._1b_c01029{margin-left:-16.309333pt;}
._11_c01029{margin-left:-13.861333pt;}
._13_c01029{margin-left:-12.053333pt;}
._c_c01029{margin-left:-11.072000pt;}
._1d_c01029{margin-left:-10.066667pt;}
._14_c01029{margin-left:-9.010667pt;}
._22_c01029{margin-left:-8.109333pt;}
._19_c01029{margin-left:-7.058667pt;}
._b_c01029{margin-left:-5.312000pt;}
._d_c01029{margin-left:-4.032000pt;}
._6_c01029{margin-left:-2.496000pt;}
._10_c01029{margin-left:-1.568000pt;}
._9_c01029{width:1.088000pt;}
._7_c01029{width:2.130667pt;}
._0_c01029{width:3.200000pt;}
._4_c01029{width:4.352000pt;}
._2_c01029{width:5.376000pt;}
._1_c01029{width:7.168000pt;}
._3_c01029{width:8.128000pt;}
._a_c01029{width:9.941333pt;}
._12_c01029{width:11.701333pt;}
._20_c01029{width:13.245333pt;}
._e_c01029{width:14.349333pt;}
._18_c01029{width:15.853333pt;}
._5_c01029{width:17.600000pt;}
._1a_c01029{width:19.008000pt;}
._26_c01029{width:20.661333pt;}
._1c_c01029{width:21.994667pt;}
._21_c01029{width:23.965333pt;}
._8_c01029{width:25.666667pt;}
._23_c01029{width:28.013333pt;}
._24_c01029{width:31.610667pt;}
._25_c01029{width:33.176000pt;}
._27_c01029{width:37.282667pt;}
._1e_c01029{width:40.544000pt;}
._29_c01029{width:44.562667pt;}
._1f_c01029{width:302.442667pt;}
.fs6_c01029{font-size:37.333333pt;}
.fs8_c01029{font-size:40.000000pt;}
.fsc_c01029{font-size:42.666667pt;}
.fs9_c01029{font-size:45.333333pt;}
.fs4_c01029{font-size:48.000000pt;}
.fsa_c01029{font-size:50.666667pt;}
.fs2_c01029{font-size:53.333333pt;}
.fs1_c01029{font-size:56.000000pt;}
.fs5_c01029{font-size:58.666667pt;}
.fs7_c01029{font-size:61.333333pt;}
.fs0_c01029{font-size:64.000000pt;}
.fsb_c01029{font-size:66.666667pt;}
.fs3_c01029{font-size:82.666667pt;}
.y0_c01029{bottom:0.000000pt;}
.y53_c01029{bottom:2.760000pt;}
.y52_c01029{bottom:6.425217pt;}
.y29_c01029{bottom:45.040000pt;}
.y51_c01029{bottom:47.040000pt;}
.y28_c01029{bottom:63.040000pt;}
.y50_c01029{bottom:64.240000pt;}
.y27_c01029{bottom:80.106667pt;}
.y4f_c01029{bottom:80.640000pt;}
.y26_c01029{bottom:95.706667pt;}
.y4e_c01029{bottom:96.906667pt;}
.y25_c01029{bottom:111.306667pt;}
.y4d_c01029{bottom:112.773333pt;}
.y24_c01029{bottom:127.706667pt;}
.y4c_c01029{bottom:129.840000pt;}
.y23_c01029{bottom:144.640000pt;}
.y4b_c01029{bottom:146.373333pt;}
.y22_c01029{bottom:161.706667pt;}
.y4a_c01029{bottom:162.506667pt;}
.y21_c01029{bottom:177.306667pt;}
.y49_c01029{bottom:177.573333pt;}
.y20_c01029{bottom:194.106667pt;}
.y48_c01029{bottom:195.040000pt;}
.y1f_c01029{bottom:209.973333pt;}
.y47_c01029{bottom:211.706667pt;}
.y1e_c01029{bottom:226.106667pt;}
.y46_c01029{bottom:227.706667pt;}
.y1d_c01029{bottom:241.706667pt;}
.y45_c01029{bottom:244.240000pt;}
.y1c_c01029{bottom:258.906667pt;}
.y44_c01029{bottom:259.840000pt;}
.y1b_c01029{bottom:275.440000pt;}
.y43_c01029{bottom:276.506667pt;}
.y1a_c01029{bottom:292.240000pt;}
.y19_c01029{bottom:307.840000pt;}
.y42_c01029{bottom:308.640000pt;}
.y18_c01029{bottom:324.240000pt;}
.y17_c01029{bottom:339.840000pt;}
.y41_c01029{bottom:341.440000pt;}
.y16_c01029{bottom:355.706667pt;}
.y40_c01029{bottom:358.106667pt;}
.y3f_c01029{bottom:374.373333pt;}
.y15_c01029{bottom:388.773333pt;}
.y3e_c01029{bottom:390.640000pt;}
.y14_c01029{bottom:404.640000pt;}
.y3d_c01029{bottom:407.306667pt;}
.y13_c01029{bottom:421.440000pt;}
.y3c_c01029{bottom:423.040000pt;}
.y12_c01029{bottom:437.440000pt;}
.y3b_c01029{bottom:439.173333pt;}
.y11_c01029{bottom:453.573333pt;}
.y3a_c01029{bottom:455.306667pt;}
.y10_c01029{bottom:469.840000pt;}
.y39_c01029{bottom:471.840000pt;}
.yf_c01029{bottom:486.240000pt;}
.y38_c01029{bottom:487.840000pt;}
.ye_c01029{bottom:501.573333pt;}
.y37_c01029{bottom:503.973333pt;}
.yd_c01029{bottom:518.906667pt;}
.y36_c01029{bottom:520.240000pt;}
.yc_c01029{bottom:534.906667pt;}
.y35_c01029{bottom:536.906667pt;}
.yb_c01029{bottom:551.440000pt;}
.y34_c01029{bottom:552.506667pt;}
.ya_c01029{bottom:568.106667pt;}
.y33_c01029{bottom:569.040000pt;}
.y9_c01029{bottom:583.173333pt;}
.y32_c01029{bottom:584.640000pt;}
.y8_c01029{bottom:599.973333pt;}
.y31_c01029{bottom:600.640000pt;}
.y7_c01029{bottom:616.506667pt;}
.y30_c01029{bottom:617.440000pt;}
.y2f_c01029{bottom:630.906667pt;}
.y6_c01029{bottom:632.906667pt;}
.y2e_c01029{bottom:649.706667pt;}
.y5_c01029{bottom:649.840000pt;}
.y4_c01029{bottom:665.973333pt;}
.y2d_c01029{bottom:666.906667pt;}
.y3_c01029{bottom:681.040000pt;}
.y2c_c01029{bottom:683.040000pt;}
.y2_c01029{bottom:698.373333pt;}
.y2b_c01029{bottom:699.040000pt;}
.y2a_c01029{bottom:715.173333pt;}
.y1_c01029{bottom:716.373333pt;}
.hb_c01029{height:11.733399pt;}
.hc_c01029{height:38.937500pt;}
.ha_c01029{height:47.509333pt;}
.h2_c01029{height:55.893333pt;}
.h5_c01029{height:56.906667pt;}
.h9_c01029{height:58.688000pt;}
.h7_c01029{height:59.752000pt;}
.h4_c01029{height:62.597333pt;}
.h1_c01029{height:62.812500pt;}
.h6_c01029{height:64.277333pt;}
.h8_c01029{height:69.866667pt;}
.h3_c01029{height:86.218750pt;}
.h0_c01029{height:747.333333pt;}
.w2_c01029{width:93.222667pt;}
.w1_c01029{width:510.666667pt;}
.w0_c01029{width:510.733333pt;}
.x0_c01029{left:0.000000pt;}
.x4_c01029{left:77.600000pt;}
.x2_c01029{left:80.133333pt;}
.xc_c01029{left:81.600000pt;}
.xe_c01029{left:82.533333pt;}
.xf_c01029{left:84.800000pt;}
.x8_c01029{left:87.333333pt;}
.x5_c01029{left:88.800000pt;}
.x3_c01029{left:93.600000pt;}
.x6_c01029{left:94.800000pt;}
.xd_c01029{left:95.733333pt;}
.xa_c01029{left:98.133333pt;}
.x10_c01029{left:100.800000pt;}
.x9_c01029{left:102.533333pt;}
.xb_c01029{left:104.666667pt;}
.x7_c01029{left:138.266667pt;}
.x1_c01029{left:205.200000pt;}
.x20_c01029{left:212.534871pt;}
.x11_c01029{left:282.933333pt;}
.x12_c01029{left:292.800000pt;}
.x14_c01029{left:293.733333pt;}
.x17_c01029{left:294.800000pt;}
.x19_c01029{left:296.000000pt;}
.x1d_c01029{left:297.200000pt;}
.x1f_c01029{left:298.400000pt;}
.x13_c01029{left:307.733333pt;}
.x15_c01029{left:308.933333pt;}
.x18_c01029{left:310.800000pt;}
.x1a_c01029{left:312.000000pt;}
.x1c_c01029{left:313.733333pt;}
.x16_c01029{left:330.933333pt;}
.x1e_c01029{left:333.866667pt;}
.x1b_c01029{left:365.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_c01030 {
    display:none;
  }
  .loading-indicator_c01030.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01030 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01030 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01030" -> "#page-container .classname_c01030")
 */
.pf_c01030 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01030 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01030.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01030 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01030 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01030 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01030 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01030 {overflow:visible;}
  }
}
.c_c01030 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01030 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01030:after { /* webkit #35443 */
  content: '';
}
.t_c01030:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01030 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01030 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01030 { /* info for Javascript */
  display:none;
}
.l_c01030 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01030 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01030 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01030:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01030{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01030;src:url('chunks/assets/font_46a167034463337712d5cd73.woff2')format("woff");}.ff1_c01030{font-family:ff1_c01030;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01030;src:url('chunks/assets/font_c6a1b4023768b4af2d540b60.woff2')format("woff");}.ff2_c01030{font-family:ff2_c01030;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01030;src:url('chunks/assets/font_bb8734ef0070375ceb308f4e.woff2')format("woff");}.ff3_c01030{font-family:ff3_c01030;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01030;src:url('chunks/assets/font_f2524e0a35b6bd3b8b1165fb.woff2')format("woff");}.ff4_c01030{font-family:ff4_c01030;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01030;src:url('chunks/assets/font_de90fe29c822c57fba7e0f1e.woff2')format("woff");}.ff5_c01030{font-family:ff5_c01030;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01030;src:url('chunks/assets/font_7c7b114d6d8510036cb24ad0.woff2')format("woff");}.ff6_c01030{font-family:ff6_c01030;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01030;src:url('chunks/assets/font_3c79dcce97387ca044db0c01.woff2')format("woff");}.ff7_c01030{font-family:ff7_c01030;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c01030;src:url('chunks/assets/font_20b49c6771e4b03bb9bba925.woff2')format("woff");}.ff8_c01030{font-family:ff8_c01030;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c01030;src:url('chunks/assets/font_14e2c5203898f1b6c5acbd6c.woff2')format("woff");}.ff9_c01030{font-family:ff9_c01030;line-height:1.575000;font-style:normal;font-weight: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_c01030;src:url('chunks/assets/font_ac0f1b3bbe864ce4ca7c0625.woff2')format("woff");}.ffa_c01030{font-family:ffa_c01030;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c01030;src:url('chunks/assets/font_8a9781b062903a5bb0325838.woff2')format("woff");}.ffb_c01030{font-family:ffb_c01030;line-height:1.575000;font-style:normal;font-weight: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_c01030;src:url('chunks/assets/font_8515d44e65fd42a07f9bbb66.woff2')format("woff");}.ffc_c01030{font-family:ffc_c01030;line-height:1.437000;font-style:normal;font-weight: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_c01030;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ffd_c01030{font-family:ffd_c01030;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01030{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01030{vertical-align:0.000000px;}
.lsd_c01030{letter-spacing:0.000000px;}
.lsf_c01030{letter-spacing:3.000000px;}
.lsb_c01030{letter-spacing:3.240000px;}
.ls7_c01030{letter-spacing:3.756000px;}
.ls1_c01030{letter-spacing:5.940000px;}
.ls8_c01030{letter-spacing:6.000000px;}
.ls0_c01030{letter-spacing:7.500000px;}
.lsc_c01030{letter-spacing:9.000000px;}
.ls6_c01030{letter-spacing:9.405000px;}
.ls9_c01030{letter-spacing:10.800000px;}
.lsa_c01030{letter-spacing:12.600000px;}
.lse_c01030{letter-spacing:15.000000px;}
.ls5_c01030{letter-spacing:16.200000px;}
.ls2_c01030{letter-spacing:16.950000px;}
.ls3_c01030{letter-spacing:29.697000px;}
.ls4_c01030{letter-spacing:31.587000px;}
.sc__c01030{text-shadow:none;}
.sc0_c01030{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01030{-webkit-text-stroke:0px transparent;}
.sc0_c01030{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c01030{word-spacing:-43.494000px;}
.ws10_c01030{word-spacing:-36.036000px;}
.wsf_c01030{word-spacing:-35.295000px;}
.ws5_c01030{word-spacing:-27.000000px;}
.ws0_c01030{word-spacing:-24.813000px;}
.wsb_c01030{word-spacing:-23.160000px;}
.wse_c01030{word-spacing:-21.000000px;}
.wsa_c01030{word-spacing:-19.494000px;}
.ws7_c01030{word-spacing:-16.500000px;}
.ws2_c01030{word-spacing:-16.416000px;}
.ws1_c01030{word-spacing:-15.813000px;}
.ws8_c01030{word-spacing:-15.060000px;}
.ws3_c01030{word-spacing:-15.000000px;}
.wsd_c01030{word-spacing:-14.340000px;}
.ws4_c01030{word-spacing:-13.623000px;}
.ws6_c01030{word-spacing:-0.540000px;}
.ws11_c01030{word-spacing:0.000000px;}
.ws9_c01030{word-spacing:4.080000px;}
._a_c01030{margin-left:-15.816000px;}
._20_c01030{margin-left:-13.479000px;}
._1b_c01030{margin-left:-10.809000px;}
._12_c01030{margin-left:-8.319000px;}
._11_c01030{margin-left:-6.186000px;}
._10_c01030{margin-left:-5.133000px;}
._1a_c01030{margin-left:-3.684000px;}
._5_c01030{margin-left:-2.640000px;}
._b_c01030{margin-left:-1.320000px;}
._8_c01030{width:1.110000px;}
._6_c01030{width:2.460000px;}
._7_c01030{width:3.660000px;}
._0_c01030{width:5.166000px;}
._1_c01030{width:6.363000px;}
._4_c01030{width:8.127000px;}
._f_c01030{width:9.219000px;}
._3_c01030{width:10.584000px;}
._9_c01030{width:11.586000px;}
._e_c01030{width:12.717000px;}
._1d_c01030{width:13.794000px;}
._15_c01030{width:16.653000px;}
._14_c01030{width:17.862000px;}
._d_c01030{width:19.533000px;}
._13_c01030{width:21.444000px;}
._16_c01030{width:23.721000px;}
._17_c01030{width:24.867000px;}
._1c_c01030{width:26.196000px;}
._19_c01030{width:27.678000px;}
._c_c01030{width:29.460000px;}
._21_c01030{width:31.194000px;}
._1e_c01030{width:32.202000px;}
._18_c01030{width:34.227000px;}
._2_c01030{width:37.758000px;}
._22_c01030{width:39.120000px;}
._24_c01030{width:40.398000px;}
._23_c01030{width:44.694000px;}
._1f_c01030{width:147.174000px;}
._25_c01030{width:188.805000px;}
.fc2_c01030{color:transparent;}
.fc1_c01030{color:rgb(128,128,128);}
.fc0_c01030{color:rgb(0,0,0);}
.fs5_c01030{font-size:45.000000px;}
.fs3_c01030{font-size:48.000000px;}
.fs7_c01030{font-size:51.000000px;}
.fs6_c01030{font-size:54.000000px;}
.fs4_c01030{font-size:57.000000px;}
.fs1_c01030{font-size:60.000000px;}
.fs0_c01030{font-size:63.000000px;}
.fs2_c01030{font-size:66.000000px;}
.y0_c01030{bottom:0.000000px;}
.y51_c01030{bottom:3.105000px;}
.y50_c01030{bottom:7.228369px;}
.y4f_c01030{bottom:17.220000px;}
.y28_c01030{bottom:34.770000px;}
.y4e_c01030{bottom:36.420000px;}
.y27_c01030{bottom:54.570000px;}
.y4d_c01030{bottom:54.720000px;}
.y26_c01030{bottom:72.120000px;}
.y4c_c01030{bottom:73.620000px;}
.y25_c01030{bottom:91.020000px;}
.y24_c01030{bottom:109.620000px;}
.y23_c01030{bottom:127.470000px;}
.y4b_c01030{bottom:127.920000px;}
.y4a_c01030{bottom:145.770000px;}
.y22_c01030{bottom:146.820000px;}
.y49_c01030{bottom:163.320000px;}
.y21_c01030{bottom:164.670000px;}
.y48_c01030{bottom:179.820000px;}
.y20_c01030{bottom:182.520000px;}
.y47_c01030{bottom:200.520000px;}
.y1f_c01030{bottom:200.820000px;}
.y46_c01030{bottom:218.970000px;}
.y1e_c01030{bottom:219.270000px;}
.y45_c01030{bottom:235.470000px;}
.y1d_c01030{bottom:236.970000px;}
.y1c_c01030{bottom:255.120000px;}
.y44_c01030{bottom:273.420000px;}
.y1b_c01030{bottom:274.020000px;}
.y43_c01030{bottom:291.570000px;}
.y1a_c01030{bottom:291.870000px;}
.y19_c01030{bottom:307.470000px;}
.y42_c01030{bottom:309.870000px;}
.y18_c01030{bottom:327.420000px;}
.y41_c01030{bottom:328.020000px;}
.y40_c01030{bottom:345.270000px;}
.y17_c01030{bottom:345.570000px;}
.y16_c01030{bottom:362.520000px;}
.y3f_c01030{bottom:363.870000px;}
.y15_c01030{bottom:382.020000px;}
.y3e_c01030{bottom:382.620000px;}
.y14_c01030{bottom:398.820000px;}
.y3d_c01030{bottom:400.320000px;}
.y3c_c01030{bottom:417.870000px;}
.y13_c01030{bottom:418.470000px;}
.y3b_c01030{bottom:436.620000px;}
.y12_c01030{bottom:436.770000px;}
.y11_c01030{bottom:453.570000px;}
.y3a_c01030{bottom:454.620000px;}
.y10_c01030{bottom:472.170000px;}
.y39_c01030{bottom:472.470000px;}
.y38_c01030{bottom:490.620000px;}
.yf_c01030{bottom:490.770000px;}
.y37_c01030{bottom:508.320000px;}
.ye_c01030{bottom:509.220000px;}
.yd_c01030{bottom:525.870000px;}
.y36_c01030{bottom:526.770000px;}
.yc_c01030{bottom:544.320000px;}
.y35_c01030{bottom:544.620000px;}
.y34_c01030{bottom:561.570000px;}
.yb_c01030{bottom:579.870000px;}
.y33_c01030{bottom:581.070000px;}
.y32_c01030{bottom:599.070000px;}
.ya_c01030{bottom:616.620000px;}
.y9_c01030{bottom:634.470000px;}
.y31_c01030{bottom:635.220000px;}
.y8_c01030{bottom:651.720000px;}
.y30_c01030{bottom:653.970000px;}
.y7_c01030{bottom:670.170000px;}
.y2f_c01030{bottom:670.620000px;}
.y6_c01030{bottom:688.470000px;}
.y2e_c01030{bottom:690.120000px;}
.y5_c01030{bottom:706.770000px;}
.y2d_c01030{bottom:708.720000px;}
.y4_c01030{bottom:724.920000px;}
.y2c_c01030{bottom:726.120000px;}
.y3_c01030{bottom:743.070000px;}
.y2b_c01030{bottom:744.420000px;}
.y2_c01030{bottom:760.770000px;}
.y2a_c01030{bottom:762.720000px;}
.y1_c01030{bottom:778.320000px;}
.y29_c01030{bottom:780.570000px;}
.h9_c01030{height:13.200073px;}
.ha_c01030{height:43.804688px;}
.h8_c01030{height:53.448000px;}
.h7_c01030{height:59.736000px;}
.h3_c01030{height:62.880000px;}
.h6_c01030{height:64.020000px;}
.h2_c01030{height:66.024000px;}
.h4_c01030{height:67.221000px;}
.h5_c01030{height:70.422000px;}
.h1_c01030{height:824.250000px;}
.h0_c01030{height:824.550000px;}
.w2_c01030{width:104.875500px;}
.w0_c01030{width:583.200000px;}
.w1_c01030{width:583.500000px;}
.x0_c01030{left:0.000000px;}
.xe_c01030{left:26.100000px;}
.x9_c01030{left:27.750000px;}
.x7_c01030{left:29.100000px;}
.x6_c01030{left:31.350000px;}
.x4_c01030{left:32.850000px;}
.xa_c01030{left:39.450000px;}
.x8_c01030{left:45.000000px;}
.xf_c01030{left:46.200000px;}
.xc_c01030{left:48.600000px;}
.x5_c01030{left:49.950000px;}
.x2_c01030{left:51.300000px;}
.xb_c01030{left:72.000000px;}
.xd_c01030{left:80.700000px;}
.x3_c01030{left:90.900000px;}
.x1_c01030{left:124.200000px;}
.x1c_c01030{left:243.414230px;}
.x16_c01030{left:262.350000px;}
.x1a_c01030{left:264.000000px;}
.x18_c01030{left:265.050000px;}
.x15_c01030{left:266.400000px;}
.x12_c01030{left:268.950000px;}
.x10_c01030{left:273.450000px;}
.x17_c01030{left:279.900000px;}
.x19_c01030{left:282.450000px;}
.x14_c01030{left:283.950000px;}
.x13_c01030{left:285.600000px;}
.x11_c01030{left:286.950000px;}
.x1b_c01030{left:359.400000px;}
@media print{
.v0_c01030{vertical-align:0.000000pt;}
.lsd_c01030{letter-spacing:0.000000pt;}
.lsf_c01030{letter-spacing:2.666667pt;}
.lsb_c01030{letter-spacing:2.880000pt;}
.ls7_c01030{letter-spacing:3.338667pt;}
.ls1_c01030{letter-spacing:5.280000pt;}
.ls8_c01030{letter-spacing:5.333333pt;}
.ls0_c01030{letter-spacing:6.666667pt;}
.lsc_c01030{letter-spacing:8.000000pt;}
.ls6_c01030{letter-spacing:8.360000pt;}
.ls9_c01030{letter-spacing:9.600000pt;}
.lsa_c01030{letter-spacing:11.200000pt;}
.lse_c01030{letter-spacing:13.333333pt;}
.ls5_c01030{letter-spacing:14.400000pt;}
.ls2_c01030{letter-spacing:15.066667pt;}
.ls3_c01030{letter-spacing:26.397333pt;}
.ls4_c01030{letter-spacing:28.077333pt;}
.wsc_c01030{word-spacing:-38.661333pt;}
.ws10_c01030{word-spacing:-32.032000pt;}
.wsf_c01030{word-spacing:-31.373333pt;}
.ws5_c01030{word-spacing:-24.000000pt;}
.ws0_c01030{word-spacing:-22.056000pt;}
.wsb_c01030{word-spacing:-20.586667pt;}
.wse_c01030{word-spacing:-18.666667pt;}
.wsa_c01030{word-spacing:-17.328000pt;}
.ws7_c01030{word-spacing:-14.666667pt;}
.ws2_c01030{word-spacing:-14.592000pt;}
.ws1_c01030{word-spacing:-14.056000pt;}
.ws8_c01030{word-spacing:-13.386667pt;}
.ws3_c01030{word-spacing:-13.333333pt;}
.wsd_c01030{word-spacing:-12.746667pt;}
.ws4_c01030{word-spacing:-12.109333pt;}
.ws6_c01030{word-spacing:-0.480000pt;}
.ws11_c01030{word-spacing:0.000000pt;}
.ws9_c01030{word-spacing:3.626667pt;}
._a_c01030{margin-left:-14.058667pt;}
._20_c01030{margin-left:-11.981333pt;}
._1b_c01030{margin-left:-9.608000pt;}
._12_c01030{margin-left:-7.394667pt;}
._11_c01030{margin-left:-5.498667pt;}
._10_c01030{margin-left:-4.562667pt;}
._1a_c01030{margin-left:-3.274667pt;}
._5_c01030{margin-left:-2.346667pt;}
._b_c01030{margin-left:-1.173333pt;}
._8_c01030{width:0.986667pt;}
._6_c01030{width:2.186667pt;}
._7_c01030{width:3.253333pt;}
._0_c01030{width:4.592000pt;}
._1_c01030{width:5.656000pt;}
._4_c01030{width:7.224000pt;}
._f_c01030{width:8.194667pt;}
._3_c01030{width:9.408000pt;}
._9_c01030{width:10.298667pt;}
._e_c01030{width:11.304000pt;}
._1d_c01030{width:12.261333pt;}
._15_c01030{width:14.802667pt;}
._14_c01030{width:15.877333pt;}
._d_c01030{width:17.362667pt;}
._13_c01030{width:19.061333pt;}
._16_c01030{width:21.085333pt;}
._17_c01030{width:22.104000pt;}
._1c_c01030{width:23.285333pt;}
._19_c01030{width:24.602667pt;}
._c_c01030{width:26.186667pt;}
._21_c01030{width:27.728000pt;}
._1e_c01030{width:28.624000pt;}
._18_c01030{width:30.424000pt;}
._2_c01030{width:33.562667pt;}
._22_c01030{width:34.773333pt;}
._24_c01030{width:35.909333pt;}
._23_c01030{width:39.728000pt;}
._1f_c01030{width:130.821333pt;}
._25_c01030{width:167.826667pt;}
.fs5_c01030{font-size:40.000000pt;}
.fs3_c01030{font-size:42.666667pt;}
.fs7_c01030{font-size:45.333333pt;}
.fs6_c01030{font-size:48.000000pt;}
.fs4_c01030{font-size:50.666667pt;}
.fs1_c01030{font-size:53.333333pt;}
.fs0_c01030{font-size:56.000000pt;}
.fs2_c01030{font-size:58.666667pt;}
.y0_c01030{bottom:0.000000pt;}
.y51_c01030{bottom:2.760000pt;}
.y50_c01030{bottom:6.425217pt;}
.y4f_c01030{bottom:15.306667pt;}
.y28_c01030{bottom:30.906667pt;}
.y4e_c01030{bottom:32.373333pt;}
.y27_c01030{bottom:48.506667pt;}
.y4d_c01030{bottom:48.640000pt;}
.y26_c01030{bottom:64.106667pt;}
.y4c_c01030{bottom:65.440000pt;}
.y25_c01030{bottom:80.906667pt;}
.y24_c01030{bottom:97.440000pt;}
.y23_c01030{bottom:113.306667pt;}
.y4b_c01030{bottom:113.706667pt;}
.y4a_c01030{bottom:129.573333pt;}
.y22_c01030{bottom:130.506667pt;}
.y49_c01030{bottom:145.173333pt;}
.y21_c01030{bottom:146.373333pt;}
.y48_c01030{bottom:159.840000pt;}
.y20_c01030{bottom:162.240000pt;}
.y47_c01030{bottom:178.240000pt;}
.y1f_c01030{bottom:178.506667pt;}
.y46_c01030{bottom:194.640000pt;}
.y1e_c01030{bottom:194.906667pt;}
.y45_c01030{bottom:209.306667pt;}
.y1d_c01030{bottom:210.640000pt;}
.y1c_c01030{bottom:226.773333pt;}
.y44_c01030{bottom:243.040000pt;}
.y1b_c01030{bottom:243.573333pt;}
.y43_c01030{bottom:259.173333pt;}
.y1a_c01030{bottom:259.440000pt;}
.y19_c01030{bottom:273.306667pt;}
.y42_c01030{bottom:275.440000pt;}
.y18_c01030{bottom:291.040000pt;}
.y41_c01030{bottom:291.573333pt;}
.y40_c01030{bottom:306.906667pt;}
.y17_c01030{bottom:307.173333pt;}
.y16_c01030{bottom:322.240000pt;}
.y3f_c01030{bottom:323.440000pt;}
.y15_c01030{bottom:339.573333pt;}
.y3e_c01030{bottom:340.106667pt;}
.y14_c01030{bottom:354.506667pt;}
.y3d_c01030{bottom:355.840000pt;}
.y3c_c01030{bottom:371.440000pt;}
.y13_c01030{bottom:371.973333pt;}
.y3b_c01030{bottom:388.106667pt;}
.y12_c01030{bottom:388.240000pt;}
.y11_c01030{bottom:403.173333pt;}
.y3a_c01030{bottom:404.106667pt;}
.y10_c01030{bottom:419.706667pt;}
.y39_c01030{bottom:419.973333pt;}
.y38_c01030{bottom:436.106667pt;}
.yf_c01030{bottom:436.240000pt;}
.y37_c01030{bottom:451.840000pt;}
.ye_c01030{bottom:452.640000pt;}
.yd_c01030{bottom:467.440000pt;}
.y36_c01030{bottom:468.240000pt;}
.yc_c01030{bottom:483.840000pt;}
.y35_c01030{bottom:484.106667pt;}
.y34_c01030{bottom:499.173333pt;}
.yb_c01030{bottom:515.440000pt;}
.y33_c01030{bottom:516.506667pt;}
.y32_c01030{bottom:532.506667pt;}
.ya_c01030{bottom:548.106667pt;}
.y9_c01030{bottom:563.973333pt;}
.y31_c01030{bottom:564.640000pt;}
.y8_c01030{bottom:579.306667pt;}
.y30_c01030{bottom:581.306667pt;}
.y7_c01030{bottom:595.706667pt;}
.y2f_c01030{bottom:596.106667pt;}
.y6_c01030{bottom:611.973333pt;}
.y2e_c01030{bottom:613.440000pt;}
.y5_c01030{bottom:628.240000pt;}
.y2d_c01030{bottom:629.973333pt;}
.y4_c01030{bottom:644.373333pt;}
.y2c_c01030{bottom:645.440000pt;}
.y3_c01030{bottom:660.506667pt;}
.y2b_c01030{bottom:661.706667pt;}
.y2_c01030{bottom:676.240000pt;}
.y2a_c01030{bottom:677.973333pt;}
.y1_c01030{bottom:691.840000pt;}
.y29_c01030{bottom:693.840000pt;}
.h9_c01030{height:11.733399pt;}
.ha_c01030{height:38.937500pt;}
.h8_c01030{height:47.509333pt;}
.h7_c01030{height:53.098667pt;}
.h3_c01030{height:55.893333pt;}
.h6_c01030{height:56.906667pt;}
.h2_c01030{height:58.688000pt;}
.h4_c01030{height:59.752000pt;}
.h5_c01030{height:62.597333pt;}
.h1_c01030{height:732.666667pt;}
.h0_c01030{height:732.933333pt;}
.w2_c01030{width:93.222667pt;}
.w0_c01030{width:518.400000pt;}
.w1_c01030{width:518.666667pt;}
.x0_c01030{left:0.000000pt;}
.xe_c01030{left:23.200000pt;}
.x9_c01030{left:24.666667pt;}
.x7_c01030{left:25.866667pt;}
.x6_c01030{left:27.866667pt;}
.x4_c01030{left:29.200000pt;}
.xa_c01030{left:35.066667pt;}
.x8_c01030{left:40.000000pt;}
.xf_c01030{left:41.066667pt;}
.xc_c01030{left:43.200000pt;}
.x5_c01030{left:44.400000pt;}
.x2_c01030{left:45.600000pt;}
.xb_c01030{left:64.000000pt;}
.xd_c01030{left:71.733333pt;}
.x3_c01030{left:80.800000pt;}
.x1_c01030{left:110.400000pt;}
.x1c_c01030{left:216.368205pt;}
.x16_c01030{left:233.200000pt;}
.x1a_c01030{left:234.666667pt;}
.x18_c01030{left:235.600000pt;}
.x15_c01030{left:236.800000pt;}
.x12_c01030{left:239.066667pt;}
.x10_c01030{left:243.066667pt;}
.x17_c01030{left:248.800000pt;}
.x19_c01030{left:251.066667pt;}
.x14_c01030{left:252.400000pt;}
.x13_c01030{left:253.866667pt;}
.x11_c01030{left:255.066667pt;}
.x1b_c01030{left:319.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_c01031 {
    display:none;
  }
  .loading-indicator_c01031.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01031 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01031 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01031" -> "#page-container .classname_c01031")
 */
.pf_c01031 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01031 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01031.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01031 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01031 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01031 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01031 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01031 {overflow:visible;}
  }
}
.c_c01031 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01031 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01031:after { /* webkit #35443 */
  content: '';
}
.t_c01031:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01031 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01031 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01031 { /* info for Javascript */
  display:none;
}
.l_c01031 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01031 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01031 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01031:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01031{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01031;src:url('chunks/assets/font_32b87ed78715c8ac87491051.woff2')format("woff");}.ff1_c01031{font-family:ff1_c01031;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01031;src:url('chunks/assets/font_937589fa2290e8ca8e02571f.woff2')format("woff");}.ff2_c01031{font-family:ff2_c01031;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01031;src:url('chunks/assets/font_d601ae70bf155f9076d7bd71.woff2')format("woff");}.ff3_c01031{font-family:ff3_c01031;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01031;src:url('chunks/assets/font_49ba6167c26c624345878c67.woff2')format("woff");}.ff4_c01031{font-family:ff4_c01031;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01031;src:url('chunks/assets/font_f9354fface0d942f47db46f0.woff2')format("woff");}.ff5_c01031{font-family:ff5_c01031;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01031;src:url('chunks/assets/font_4548de8f2d1bcdabec1b6e1c.woff2')format("woff");}.ff6_c01031{font-family:ff6_c01031;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01031;src:url('chunks/assets/font_3fec26a0e2460e038a8fa1d4.woff2')format("woff");}.ff7_c01031{font-family:ff7_c01031;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c01031;src:url('chunks/assets/font_7e8062f359149a5d5ad71aeb.woff2')format("woff");}.ff8_c01031{font-family:ff8_c01031;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c01031;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff9_c01031{font-family:ff9_c01031;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01031{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01031{vertical-align:0.000000px;}
.lse_c01031{letter-spacing:0.000000px;}
.ls0_c01031{letter-spacing:0.600000px;}
.ls6_c01031{letter-spacing:1.800000px;}
.ls2_c01031{letter-spacing:2.340000px;}
.lsc_c01031{letter-spacing:2.400000px;}
.ls9_c01031{letter-spacing:3.000000px;}
.ls8_c01031{letter-spacing:5.400000px;}
.ls7_c01031{letter-spacing:5.940000px;}
.ls4_c01031{letter-spacing:6.000000px;}
.ls1_c01031{letter-spacing:7.800000px;}
.ls3_c01031{letter-spacing:9.600000px;}
.ls5_c01031{letter-spacing:11.220000px;}
.lsb_c01031{letter-spacing:11.280000px;}
.lsa_c01031{letter-spacing:14.400000px;}
.lsd_c01031{letter-spacing:32.400000px;}
.sc__c01031{text-shadow:none;}
.sc0_c01031{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01031{-webkit-text-stroke:0px transparent;}
.sc0_c01031{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01031{word-spacing:-25.074000px;}
.ws3_c01031{word-spacing:-23.340000px;}
.ws8_c01031{word-spacing:-20.160000px;}
.ws2_c01031{word-spacing:-15.060000px;}
.ws6_c01031{word-spacing:-15.000000px;}
.ws0_c01031{word-spacing:-14.340000px;}
.ws5_c01031{word-spacing:-14.160000px;}
.wsa_c01031{word-spacing:-1.740000px;}
.wsb_c01031{word-spacing:-0.594000px;}
.ws9_c01031{word-spacing:-0.420000px;}
.wsc_c01031{word-spacing:0.000000px;}
.ws7_c01031{word-spacing:5.580000px;}
.ws4_c01031{word-spacing:8.700000px;}
._1f_c01031{margin-left:-18.120000px;}
._22_c01031{margin-left:-15.312000px;}
._16_c01031{margin-left:-13.560000px;}
._17_c01031{margin-left:-11.760000px;}
._12_c01031{margin-left:-9.840000px;}
._9_c01031{margin-left:-8.040000px;}
._1a_c01031{margin-left:-6.900000px;}
._a_c01031{margin-left:-5.640000px;}
._8_c01031{margin-left:-3.780000px;}
._18_c01031{margin-left:-2.760000px;}
._6_c01031{margin-left:-1.380000px;}
._4_c01031{width:1.440000px;}
._3_c01031{width:3.180000px;}
._5_c01031{width:4.200000px;}
._7_c01031{width:6.180000px;}
._d_c01031{width:7.320000px;}
._0_c01031{width:8.400000px;}
._e_c01031{width:9.420000px;}
._c_c01031{width:10.440000px;}
._20_c01031{width:11.520000px;}
._b_c01031{width:12.540000px;}
._19_c01031{width:13.980000px;}
._1b_c01031{width:15.480000px;}
._2_c01031{width:16.620000px;}
._10_c01031{width:17.880000px;}
._1_c01031{width:18.960000px;}
._11_c01031{width:20.280000px;}
._f_c01031{width:21.540000px;}
._23_c01031{width:23.160000px;}
._1e_c01031{width:25.620000px;}
._15_c01031{width:26.880000px;}
._1c_c01031{width:29.340000px;}
._21_c01031{width:31.620000px;}
._1d_c01031{width:35.160000px;}
._14_c01031{width:54.420000px;}
._13_c01031{width:178.560000px;}
.fc2_c01031{color:transparent;}
.fc1_c01031{color:rgb(128,128,128);}
.fc0_c01031{color:rgb(0,0,0);}
.fs2_c01031{font-size:48.000000px;}
.fs4_c01031{font-size:54.000000px;}
.fs0_c01031{font-size:60.000000px;}
.fs1_c01031{font-size:66.000000px;}
.fs3_c01031{font-size:72.000000px;}
.y0_c01031{bottom:0.000000px;}
.y50_c01031{bottom:3.105000px;}
.y4f_c01031{bottom:7.228371px;}
.y4e_c01031{bottom:57.765000px;}
.y28_c01031{bottom:58.515000px;}
.y27_c01031{bottom:76.965000px;}
.y4d_c01031{bottom:77.265000px;}
.y26_c01031{bottom:95.565000px;}
.y4c_c01031{bottom:95.865000px;}
.y4b_c01031{bottom:113.115000px;}
.y25_c01031{bottom:113.715000px;}
.y24_c01031{bottom:132.015000px;}
.y4a_c01031{bottom:149.865000px;}
.y23_c01031{bottom:150.315000px;}
.y49_c01031{bottom:168.165000px;}
.y22_c01031{bottom:168.465000px;}
.y21_c01031{bottom:186.615000px;}
.y48_c01031{bottom:205.215000px;}
.y20_c01031{bottom:205.515000px;}
.y1f_c01031{bottom:222.465000px;}
.y47_c01031{bottom:223.215000px;}
.y1e_c01031{bottom:240.765000px;}
.y46_c01031{bottom:241.665000px;}
.y1d_c01031{bottom:259.515000px;}
.y1c_c01031{bottom:277.815000px;}
.y1b_c01031{bottom:295.365000px;}
.y45_c01031{bottom:296.415000px;}
.y1a_c01031{bottom:313.515000px;}
.y44_c01031{bottom:314.565000px;}
.y43_c01031{bottom:331.515000px;}
.y19_c01031{bottom:350.115000px;}
.y42_c01031{bottom:350.715000px;}
.y18_c01031{bottom:367.965000px;}
.y41_c01031{bottom:369.615000px;}
.y17_c01031{bottom:386.565000px;}
.y40_c01031{bottom:387.165000px;}
.y16_c01031{bottom:405.015000px;}
.y3f_c01031{bottom:405.465000px;}
.y15_c01031{bottom:422.865000px;}
.y3e_c01031{bottom:423.615000px;}
.y14_c01031{bottom:440.415000px;}
.y3d_c01031{bottom:442.215000px;}
.y13_c01031{bottom:458.715000px;}
.y3c_c01031{bottom:460.065000px;}
.y12_c01031{bottom:477.015000px;}
.y3b_c01031{bottom:478.365000px;}
.y11_c01031{bottom:495.765000px;}
.y3a_c01031{bottom:496.815000px;}
.y10_c01031{bottom:513.765000px;}
.y39_c01031{bottom:514.065000px;}
.yf_c01031{bottom:531.915000px;}
.y38_c01031{bottom:533.265000px;}
.ye_c01031{bottom:549.165000px;}
.y37_c01031{bottom:550.215000px;}
.yd_c01031{bottom:567.465000px;}
.y36_c01031{bottom:570.015000px;}
.y35_c01031{bottom:586.215000px;}
.yc_c01031{bottom:603.465000px;}
.y34_c01031{bottom:605.265000px;}
.yb_c01031{bottom:621.465000px;}
.y33_c01031{bottom:624.015000px;}
.y32_c01031{bottom:639.915000px;}
.ya_c01031{bottom:640.215000px;}
.y9_c01031{bottom:657.915000px;}
.y31_c01031{bottom:660.165000px;}
.y8_c01031{bottom:676.815000px;}
.y30_c01031{bottom:678.015000px;}
.y7_c01031{bottom:694.665000px;}
.y2f_c01031{bottom:697.065000px;}
.y6_c01031{bottom:712.815000px;}
.y2e_c01031{bottom:715.515000px;}
.y5_c01031{bottom:731.715000px;}
.y2d_c01031{bottom:733.515000px;}
.y4_c01031{bottom:749.715000px;}
.y2c_c01031{bottom:752.265000px;}
.y3_c01031{bottom:767.865000px;}
.y2b_c01031{bottom:768.465000px;}
.y2_c01031{bottom:786.765000px;}
.y2a_c01031{bottom:787.815000px;}
.y29_c01031{bottom:806.415000px;}
.y1_c01031{bottom:807.015000px;}
.h7_c01031{height:13.200074px;}
.h8_c01031{height:43.804688px;}
.h6_c01031{height:56.592000px;}
.h2_c01031{height:62.880000px;}
.h4_c01031{height:64.020000px;}
.h3_c01031{height:70.422000px;}
.h5_c01031{height:70.664062px;}
.h0_c01031{height:848.625000px;}
.h1_c01031{height:849.000000px;}
.w2_c01031{width:104.875500px;}
.w1_c01031{width:579.750000px;}
.w0_c01031{width:579.975000px;}
.x0_c01031{left:0.000000px;}
.x12_c01031{left:96.750000px;}
.x11_c01031{left:98.100000px;}
.xd_c01031{left:99.900000px;}
.xb_c01031{left:100.950000px;}
.x8_c01031{left:103.650000px;}
.x6_c01031{left:105.000000px;}
.x3_c01031{left:106.350000px;}
.xe_c01031{left:108.000000px;}
.xf_c01031{left:114.300000px;}
.x10_c01031{left:116.400000px;}
.x9_c01031{left:117.750000px;}
.xc_c01031{left:119.400000px;}
.x7_c01031{left:121.800000px;}
.x4_c01031{left:123.900000px;}
.x2_c01031{left:126.900000px;}
.x5_c01031{left:142.350000px;}
.x13_c01031{left:147.450000px;}
.xa_c01031{left:152.550000px;}
.x22_c01031{left:241.801758px;}
.x1_c01031{left:254.850000px;}
.x20_c01031{left:338.550000px;}
.x1e_c01031{left:339.900000px;}
.x1a_c01031{left:341.250000px;}
.x19_c01031{left:342.600000px;}
.x14_c01031{left:344.550000px;}
.x16_c01031{left:345.600000px;}
.x1b_c01031{left:350.250000px;}
.x21_c01031{left:353.400000px;}
.x1d_c01031{left:355.650000px;}
.x1f_c01031{left:357.000000px;}
.x18_c01031{left:359.100000px;}
.x15_c01031{left:361.050000px;}
.x17_c01031{left:362.850000px;}
.x1c_c01031{left:389.400000px;}
@media print{
.v0_c01031{vertical-align:0.000000pt;}
.lse_c01031{letter-spacing:0.000000pt;}
.ls0_c01031{letter-spacing:0.533333pt;}
.ls6_c01031{letter-spacing:1.600000pt;}
.ls2_c01031{letter-spacing:2.080000pt;}
.lsc_c01031{letter-spacing:2.133333pt;}
.ls9_c01031{letter-spacing:2.666667pt;}
.ls8_c01031{letter-spacing:4.800000pt;}
.ls7_c01031{letter-spacing:5.280000pt;}
.ls4_c01031{letter-spacing:5.333333pt;}
.ls1_c01031{letter-spacing:6.933333pt;}
.ls3_c01031{letter-spacing:8.533333pt;}
.ls5_c01031{letter-spacing:9.973333pt;}
.lsb_c01031{letter-spacing:10.026667pt;}
.lsa_c01031{letter-spacing:12.800000pt;}
.lsd_c01031{letter-spacing:28.800000pt;}
.ws1_c01031{word-spacing:-22.288000pt;}
.ws3_c01031{word-spacing:-20.746667pt;}
.ws8_c01031{word-spacing:-17.920000pt;}
.ws2_c01031{word-spacing:-13.386667pt;}
.ws6_c01031{word-spacing:-13.333333pt;}
.ws0_c01031{word-spacing:-12.746667pt;}
.ws5_c01031{word-spacing:-12.586667pt;}
.wsa_c01031{word-spacing:-1.546667pt;}
.wsb_c01031{word-spacing:-0.528000pt;}
.ws9_c01031{word-spacing:-0.373333pt;}
.wsc_c01031{word-spacing:0.000000pt;}
.ws7_c01031{word-spacing:4.960000pt;}
.ws4_c01031{word-spacing:7.733333pt;}
._1f_c01031{margin-left:-16.106667pt;}
._22_c01031{margin-left:-13.610667pt;}
._16_c01031{margin-left:-12.053333pt;}
._17_c01031{margin-left:-10.453333pt;}
._12_c01031{margin-left:-8.746667pt;}
._9_c01031{margin-left:-7.146667pt;}
._1a_c01031{margin-left:-6.133333pt;}
._a_c01031{margin-left:-5.013333pt;}
._8_c01031{margin-left:-3.360000pt;}
._18_c01031{margin-left:-2.453333pt;}
._6_c01031{margin-left:-1.226667pt;}
._4_c01031{width:1.280000pt;}
._3_c01031{width:2.826667pt;}
._5_c01031{width:3.733333pt;}
._7_c01031{width:5.493333pt;}
._d_c01031{width:6.506667pt;}
._0_c01031{width:7.466667pt;}
._e_c01031{width:8.373333pt;}
._c_c01031{width:9.280000pt;}
._20_c01031{width:10.240000pt;}
._b_c01031{width:11.146667pt;}
._19_c01031{width:12.426667pt;}
._1b_c01031{width:13.760000pt;}
._2_c01031{width:14.773333pt;}
._10_c01031{width:15.893333pt;}
._1_c01031{width:16.853333pt;}
._11_c01031{width:18.026667pt;}
._f_c01031{width:19.146667pt;}
._23_c01031{width:20.586667pt;}
._1e_c01031{width:22.773333pt;}
._15_c01031{width:23.893333pt;}
._1c_c01031{width:26.080000pt;}
._21_c01031{width:28.106667pt;}
._1d_c01031{width:31.253333pt;}
._14_c01031{width:48.373333pt;}
._13_c01031{width:158.720000pt;}
.fs2_c01031{font-size:42.666667pt;}
.fs4_c01031{font-size:48.000000pt;}
.fs0_c01031{font-size:53.333333pt;}
.fs1_c01031{font-size:58.666667pt;}
.fs3_c01031{font-size:64.000000pt;}
.y0_c01031{bottom:0.000000pt;}
.y50_c01031{bottom:2.760000pt;}
.y4f_c01031{bottom:6.425219pt;}
.y4e_c01031{bottom:51.346667pt;}
.y28_c01031{bottom:52.013333pt;}
.y27_c01031{bottom:68.413333pt;}
.y4d_c01031{bottom:68.680000pt;}
.y26_c01031{bottom:84.946667pt;}
.y4c_c01031{bottom:85.213333pt;}
.y4b_c01031{bottom:100.546667pt;}
.y25_c01031{bottom:101.080000pt;}
.y24_c01031{bottom:117.346667pt;}
.y4a_c01031{bottom:133.213333pt;}
.y23_c01031{bottom:133.613333pt;}
.y49_c01031{bottom:149.480000pt;}
.y22_c01031{bottom:149.746667pt;}
.y21_c01031{bottom:165.880000pt;}
.y48_c01031{bottom:182.413333pt;}
.y20_c01031{bottom:182.680000pt;}
.y1f_c01031{bottom:197.746667pt;}
.y47_c01031{bottom:198.413333pt;}
.y1e_c01031{bottom:214.013333pt;}
.y46_c01031{bottom:214.813333pt;}
.y1d_c01031{bottom:230.680000pt;}
.y1c_c01031{bottom:246.946667pt;}
.y1b_c01031{bottom:262.546667pt;}
.y45_c01031{bottom:263.480000pt;}
.y1a_c01031{bottom:278.680000pt;}
.y44_c01031{bottom:279.613333pt;}
.y43_c01031{bottom:294.680000pt;}
.y19_c01031{bottom:311.213333pt;}
.y42_c01031{bottom:311.746667pt;}
.y18_c01031{bottom:327.080000pt;}
.y41_c01031{bottom:328.546667pt;}
.y17_c01031{bottom:343.613333pt;}
.y40_c01031{bottom:344.146667pt;}
.y16_c01031{bottom:360.013333pt;}
.y3f_c01031{bottom:360.413333pt;}
.y15_c01031{bottom:375.880000pt;}
.y3e_c01031{bottom:376.546667pt;}
.y14_c01031{bottom:391.480000pt;}
.y3d_c01031{bottom:393.080000pt;}
.y13_c01031{bottom:407.746667pt;}
.y3c_c01031{bottom:408.946667pt;}
.y12_c01031{bottom:424.013333pt;}
.y3b_c01031{bottom:425.213333pt;}
.y11_c01031{bottom:440.680000pt;}
.y3a_c01031{bottom:441.613333pt;}
.y10_c01031{bottom:456.680000pt;}
.y39_c01031{bottom:456.946667pt;}
.yf_c01031{bottom:472.813333pt;}
.y38_c01031{bottom:474.013333pt;}
.ye_c01031{bottom:488.146667pt;}
.y37_c01031{bottom:489.080000pt;}
.yd_c01031{bottom:504.413333pt;}
.y36_c01031{bottom:506.680000pt;}
.y35_c01031{bottom:521.080000pt;}
.yc_c01031{bottom:536.413333pt;}
.y34_c01031{bottom:538.013333pt;}
.yb_c01031{bottom:552.413333pt;}
.y33_c01031{bottom:554.680000pt;}
.y32_c01031{bottom:568.813333pt;}
.ya_c01031{bottom:569.080000pt;}
.y9_c01031{bottom:584.813333pt;}
.y31_c01031{bottom:586.813333pt;}
.y8_c01031{bottom:601.613333pt;}
.y30_c01031{bottom:602.680000pt;}
.y7_c01031{bottom:617.480000pt;}
.y2f_c01031{bottom:619.613333pt;}
.y6_c01031{bottom:633.613333pt;}
.y2e_c01031{bottom:636.013333pt;}
.y5_c01031{bottom:650.413333pt;}
.y2d_c01031{bottom:652.013333pt;}
.y4_c01031{bottom:666.413333pt;}
.y2c_c01031{bottom:668.680000pt;}
.y3_c01031{bottom:682.546667pt;}
.y2b_c01031{bottom:683.080000pt;}
.y2_c01031{bottom:699.346667pt;}
.y2a_c01031{bottom:700.280000pt;}
.y29_c01031{bottom:716.813333pt;}
.y1_c01031{bottom:717.346667pt;}
.h7_c01031{height:11.733399pt;}
.h8_c01031{height:38.937500pt;}
.h6_c01031{height:50.304000pt;}
.h2_c01031{height:55.893333pt;}
.h4_c01031{height:56.906667pt;}
.h3_c01031{height:62.597333pt;}
.h5_c01031{height:62.812500pt;}
.h0_c01031{height:754.333333pt;}
.h1_c01031{height:754.666667pt;}
.w2_c01031{width:93.222667pt;}
.w1_c01031{width:515.333333pt;}
.w0_c01031{width:515.533333pt;}
.x0_c01031{left:0.000000pt;}
.x12_c01031{left:86.000000pt;}
.x11_c01031{left:87.200000pt;}
.xd_c01031{left:88.800000pt;}
.xb_c01031{left:89.733333pt;}
.x8_c01031{left:92.133333pt;}
.x6_c01031{left:93.333333pt;}
.x3_c01031{left:94.533333pt;}
.xe_c01031{left:96.000000pt;}
.xf_c01031{left:101.600000pt;}
.x10_c01031{left:103.466667pt;}
.x9_c01031{left:104.666667pt;}
.xc_c01031{left:106.133333pt;}
.x7_c01031{left:108.266667pt;}
.x4_c01031{left:110.133333pt;}
.x2_c01031{left:112.800000pt;}
.x5_c01031{left:126.533333pt;}
.x13_c01031{left:131.066667pt;}
.xa_c01031{left:135.600000pt;}
.x22_c01031{left:214.934896pt;}
.x1_c01031{left:226.533333pt;}
.x20_c01031{left:300.933333pt;}
.x1e_c01031{left:302.133333pt;}
.x1a_c01031{left:303.333333pt;}
.x19_c01031{left:304.533333pt;}
.x14_c01031{left:306.266667pt;}
.x16_c01031{left:307.200000pt;}
.x1b_c01031{left:311.333333pt;}
.x21_c01031{left:314.133333pt;}
.x1d_c01031{left:316.133333pt;}
.x1f_c01031{left:317.333333pt;}
.x18_c01031{left:319.200000pt;}
.x15_c01031{left:320.933333pt;}
.x17_c01031{left:322.533333pt;}
.x1c_c01031{left:346.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_c01032 {
    display:none;
  }
  .loading-indicator_c01032.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01032 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01032 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01032" -> "#page-container .classname_c01032")
 */
.pf_c01032 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01032 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01032.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01032 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01032 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01032 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01032 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01032 {overflow:visible;}
  }
}
.c_c01032 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01032 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01032:after { /* webkit #35443 */
  content: '';
}
.t_c01032:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01032 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01032 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01032 { /* info for Javascript */
  display:none;
}
.l_c01032 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01032 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01032 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01032:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01032{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01032;src:url('chunks/assets/font_3b1d433773c4708defc0d20e.woff2')format("woff");}.ff1_c01032{font-family:ff1_c01032;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01032;src:url('chunks/assets/font_0ad14e2fe5f71d61e1c0c6dd.woff2')format("woff");}.ff2_c01032{font-family:ff2_c01032;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01032;src:url('chunks/assets/font_46e504da17992a70e3f79c63.woff2')format("woff");}.ff3_c01032{font-family:ff3_c01032;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01032;src:url('chunks/assets/font_da64ed6ab7d544ea636a0644.woff2')format("woff");}.ff4_c01032{font-family:ff4_c01032;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01032;src:url('chunks/assets/font_1cce97006c8913fabe78428c.woff2')format("woff");}.ff5_c01032{font-family:ff5_c01032;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01032;src:url('chunks/assets/font_9db3d26415a095e78c3f9dd7.woff2')format("woff");}.ff6_c01032{font-family:ff6_c01032;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01032;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff7_c01032{font-family:ff7_c01032;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01032{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01032{vertical-align:0.000000px;}
.lsc_c01032{letter-spacing:0.000000px;}
.ls2_c01032{letter-spacing:0.600000px;}
.ls1_c01032{letter-spacing:1.140000px;}
.ls8_c01032{letter-spacing:2.940000px;}
.lsd_c01032{letter-spacing:6.000000px;}
.ls9_c01032{letter-spacing:6.600000px;}
.lsb_c01032{letter-spacing:7.800000px;}
.ls0_c01032{letter-spacing:9.300000px;}
.ls7_c01032{letter-spacing:9.900000px;}
.ls5_c01032{letter-spacing:10.200000px;}
.ls4_c01032{letter-spacing:12.540000px;}
.ls3_c01032{letter-spacing:13.200000px;}
.lsa_c01032{letter-spacing:14.340000px;}
.ls6_c01032{letter-spacing:22.980000px;}
.sc__c01032{text-shadow:none;}
.sc0_c01032{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01032{-webkit-text-stroke:0px transparent;}
.sc0_c01032{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01032{word-spacing:-23.340000px;}
.ws3_c01032{word-spacing:-16.416000px;}
.ws0_c01032{word-spacing:-15.060000px;}
.ws2_c01032{word-spacing:-14.160000px;}
.ws5_c01032{word-spacing:0.000000px;}
.ws4_c01032{word-spacing:1.680000px;}
._19_c01032{margin-left:-16.260000px;}
._24_c01032{margin-left:-13.680000px;}
._20_c01032{margin-left:-12.360000px;}
._21_c01032{margin-left:-10.560000px;}
._25_c01032{margin-left:-9.540000px;}
._1e_c01032{margin-left:-8.160000px;}
._14_c01032{margin-left:-6.780000px;}
._18_c01032{margin-left:-5.760000px;}
._16_c01032{margin-left:-4.701000px;}
._c_c01032{margin-left:-2.760000px;}
._d_c01032{margin-left:-1.260000px;}
._a_c01032{width:1.320000px;}
._8_c01032{width:3.240000px;}
._b_c01032{width:4.620000px;}
._7_c01032{width:5.640000px;}
._f_c01032{width:6.840000px;}
._6_c01032{width:8.040000px;}
._3_c01032{width:9.720000px;}
._5_c01032{width:11.040000px;}
._17_c01032{width:12.480000px;}
._13_c01032{width:13.740000px;}
._1f_c01032{width:15.540000px;}
._0_c01032{width:16.740000px;}
._15_c01032{width:18.363000px;}
._1_c01032{width:20.040000px;}
._2_c01032{width:21.360000px;}
._9_c01032{width:22.500000px;}
._22_c01032{width:23.700000px;}
._1c_c01032{width:25.020000px;}
._1b_c01032{width:26.460000px;}
._10_c01032{width:27.660000px;}
._12_c01032{width:29.280000px;}
._11_c01032{width:32.280000px;}
._4_c01032{width:34.980000px;}
._1d_c01032{width:50.040000px;}
._23_c01032{width:109.260000px;}
._1a_c01032{width:120.840000px;}
._e_c01032{width:210.480000px;}
.fc2_c01032{color:transparent;}
.fc1_c01032{color:rgb(128,128,128);}
.fc0_c01032{color:rgb(0,0,0);}
.fs3_c01032{font-size:48.000000px;}
.fs1_c01032{font-size:54.000000px;}
.fs0_c01032{font-size:60.000000px;}
.fs2_c01032{font-size:63.000000px;}
.y0_c01032{bottom:0.000000px;}
.y51_c01032{bottom:3.105000px;}
.y50_c01032{bottom:7.228355px;}
.y4f_c01032{bottom:35.085000px;}
.y4e_c01032{bottom:51.585000px;}
.y2a_c01032{bottom:52.935000px;}
.y4d_c01032{bottom:71.085000px;}
.y29_c01032{bottom:71.835000px;}
.y4c_c01032{bottom:88.785000px;}
.y28_c01032{bottom:90.435000px;}
.y4b_c01032{bottom:106.935000px;}
.y27_c01032{bottom:107.985000px;}
.y4a_c01032{bottom:125.535000px;}
.y26_c01032{bottom:126.585000px;}
.y49_c01032{bottom:143.985000px;}
.y25_c01032{bottom:145.335000px;}
.y48_c01032{bottom:161.985000px;}
.y24_c01032{bottom:163.635000px;}
.y47_c01032{bottom:180.435000px;}
.y23_c01032{bottom:181.485000px;}
.y46_c01032{bottom:199.035000px;}
.y22_c01032{bottom:200.835000px;}
.y45_c01032{bottom:217.335000px;}
.y21_c01032{bottom:218.685000px;}
.y44_c01032{bottom:235.485000px;}
.y20_c01032{bottom:237.285000px;}
.y43_c01032{bottom:253.485000px;}
.y1f_c01032{bottom:254.385000px;}
.y42_c01032{bottom:271.935000px;}
.y1e_c01032{bottom:272.685000px;}
.y41_c01032{bottom:290.235000px;}
.y1d_c01032{bottom:291.585000px;}
.y40_c01032{bottom:308.085000px;}
.y1c_c01032{bottom:308.685000px;}
.y1b_c01032{bottom:326.685000px;}
.y3f_c01032{bottom:344.235000px;}
.y1a_c01032{bottom:345.135000px;}
.y3e_c01032{bottom:363.135000px;}
.y19_c01032{bottom:364.185000px;}
.y3d_c01032{bottom:380.685000px;}
.y18_c01032{bottom:381.285000px;}
.y3c_c01032{bottom:396.435000px;}
.y17_c01032{bottom:399.585000px;}
.y3b_c01032{bottom:416.085000px;}
.y16_c01032{bottom:418.185000px;}
.y3a_c01032{bottom:435.285000px;}
.y15_c01032{bottom:435.585000px;}
.y14_c01032{bottom:454.185000px;}
.y13_c01032{bottom:471.735000px;}
.y39_c01032{bottom:472.035000px;}
.y12_c01032{bottom:489.585000px;}
.y38_c01032{bottom:490.035000px;}
.y11_c01032{bottom:507.585000px;}
.y37_c01032{bottom:508.635000px;}
.y10_c01032{bottom:525.735000px;}
.y36_c01032{bottom:526.035000px;}
.yf_c01032{bottom:542.385000px;}
.y35_c01032{bottom:544.335000px;}
.ye_c01032{bottom:561.885000px;}
.y34_c01032{bottom:562.185000px;}
.yd_c01032{bottom:579.135000px;}
.y33_c01032{bottom:580.485000px;}
.yc_c01032{bottom:598.035000px;}
.y32_c01032{bottom:598.635000px;}
.yb_c01032{bottom:615.885000px;}
.y31_c01032{bottom:616.635000px;}
.ya_c01032{bottom:634.035000px;}
.y30_c01032{bottom:634.485000px;}
.y2f_c01032{bottom:650.985000px;}
.y9_c01032{bottom:652.035000px;}
.y8_c01032{bottom:670.935000px;}
.y2e_c01032{bottom:671.235000px;}
.y7_c01032{bottom:688.485000px;}
.y2d_c01032{bottom:689.535000px;}
.y6_c01032{bottom:706.935000px;}
.y5_c01032{bottom:725.235000px;}
.y4_c01032{bottom:743.385000px;}
.y3_c01032{bottom:761.385000px;}
.y2c_c01032{bottom:761.985000px;}
.y2b_c01032{bottom:779.835000px;}
.y2_c01032{bottom:780.885000px;}
.y1_c01032{bottom:798.735000px;}
.h5_c01032{height:13.200074px;}
.h6_c01032{height:43.804688px;}
.h2_c01032{height:62.880000px;}
.h4_c01032{height:64.020000px;}
.h3_c01032{height:66.024000px;}
.h1_c01032{height:840.000000px;}
.h0_c01032{height:840.225000px;}
.w2_c01032{width:104.875500px;}
.w0_c01032{width:594.525000px;}
.w1_c01032{width:594.750000px;}
.x0_c01032{left:0.000000px;}
.xc_c01032{left:45.900000px;}
.x9_c01032{left:46.950000px;}
.x7_c01032{left:48.000000px;}
.x2_c01032{left:49.200000px;}
.x4_c01032{left:50.250000px;}
.x6_c01032{left:57.300000px;}
.x8_c01032{left:62.100000px;}
.xb_c01032{left:63.750000px;}
.x3_c01032{left:65.100000px;}
.x5_c01032{left:67.050000px;}
.xa_c01032{left:117.750000px;}
.x1_c01032{left:139.650000px;}
.x1e_c01032{left:249.076767px;}
.x1c_c01032{left:280.500000px;}
.x14_c01032{left:282.150000px;}
.x11_c01032{left:283.500000px;}
.x10_c01032{left:285.900000px;}
.xe_c01032{left:287.100000px;}
.x1a_c01032{left:294.600000px;}
.x19_c01032{left:296.550000px;}
.x18_c01032{left:297.600000px;}
.x16_c01032{left:298.950000px;}
.x13_c01032{left:300.000000px;}
.xf_c01032{left:301.650000px;}
.x17_c01032{left:303.000000px;}
.xd_c01032{left:304.050000px;}
.x1b_c01032{left:346.650000px;}
.x12_c01032{left:355.650000px;}
.x15_c01032{left:364.800000px;}
.x1d_c01032{left:442.800000px;}
@media print{
.v0_c01032{vertical-align:0.000000pt;}
.lsc_c01032{letter-spacing:0.000000pt;}
.ls2_c01032{letter-spacing:0.533333pt;}
.ls1_c01032{letter-spacing:1.013333pt;}
.ls8_c01032{letter-spacing:2.613333pt;}
.lsd_c01032{letter-spacing:5.333333pt;}
.ls9_c01032{letter-spacing:5.866667pt;}
.lsb_c01032{letter-spacing:6.933333pt;}
.ls0_c01032{letter-spacing:8.266667pt;}
.ls7_c01032{letter-spacing:8.800000pt;}
.ls5_c01032{letter-spacing:9.066667pt;}
.ls4_c01032{letter-spacing:11.146667pt;}
.ls3_c01032{letter-spacing:11.733333pt;}
.lsa_c01032{letter-spacing:12.746667pt;}
.ls6_c01032{letter-spacing:20.426667pt;}
.ws1_c01032{word-spacing:-20.746667pt;}
.ws3_c01032{word-spacing:-14.592000pt;}
.ws0_c01032{word-spacing:-13.386667pt;}
.ws2_c01032{word-spacing:-12.586667pt;}
.ws5_c01032{word-spacing:0.000000pt;}
.ws4_c01032{word-spacing:1.493333pt;}
._19_c01032{margin-left:-14.453333pt;}
._24_c01032{margin-left:-12.160000pt;}
._20_c01032{margin-left:-10.986667pt;}
._21_c01032{margin-left:-9.386667pt;}
._25_c01032{margin-left:-8.480000pt;}
._1e_c01032{margin-left:-7.253333pt;}
._14_c01032{margin-left:-6.026667pt;}
._18_c01032{margin-left:-5.120000pt;}
._16_c01032{margin-left:-4.178667pt;}
._c_c01032{margin-left:-2.453333pt;}
._d_c01032{margin-left:-1.120000pt;}
._a_c01032{width:1.173333pt;}
._8_c01032{width:2.880000pt;}
._b_c01032{width:4.106667pt;}
._7_c01032{width:5.013333pt;}
._f_c01032{width:6.080000pt;}
._6_c01032{width:7.146667pt;}
._3_c01032{width:8.640000pt;}
._5_c01032{width:9.813333pt;}
._17_c01032{width:11.093333pt;}
._13_c01032{width:12.213333pt;}
._1f_c01032{width:13.813333pt;}
._0_c01032{width:14.880000pt;}
._15_c01032{width:16.322667pt;}
._1_c01032{width:17.813333pt;}
._2_c01032{width:18.986667pt;}
._9_c01032{width:20.000000pt;}
._22_c01032{width:21.066667pt;}
._1c_c01032{width:22.240000pt;}
._1b_c01032{width:23.520000pt;}
._10_c01032{width:24.586667pt;}
._12_c01032{width:26.026667pt;}
._11_c01032{width:28.693333pt;}
._4_c01032{width:31.093333pt;}
._1d_c01032{width:44.480000pt;}
._23_c01032{width:97.120000pt;}
._1a_c01032{width:107.413333pt;}
._e_c01032{width:187.093333pt;}
.fs3_c01032{font-size:42.666667pt;}
.fs1_c01032{font-size:48.000000pt;}
.fs0_c01032{font-size:53.333333pt;}
.fs2_c01032{font-size:56.000000pt;}
.y0_c01032{bottom:0.000000pt;}
.y51_c01032{bottom:2.760000pt;}
.y50_c01032{bottom:6.425204pt;}
.y4f_c01032{bottom:31.186667pt;}
.y4e_c01032{bottom:45.853333pt;}
.y2a_c01032{bottom:47.053333pt;}
.y4d_c01032{bottom:63.186667pt;}
.y29_c01032{bottom:63.853333pt;}
.y4c_c01032{bottom:78.920000pt;}
.y28_c01032{bottom:80.386667pt;}
.y4b_c01032{bottom:95.053333pt;}
.y27_c01032{bottom:95.986667pt;}
.y4a_c01032{bottom:111.586667pt;}
.y26_c01032{bottom:112.520000pt;}
.y49_c01032{bottom:127.986667pt;}
.y25_c01032{bottom:129.186667pt;}
.y48_c01032{bottom:143.986667pt;}
.y24_c01032{bottom:145.453333pt;}
.y47_c01032{bottom:160.386667pt;}
.y23_c01032{bottom:161.320000pt;}
.y46_c01032{bottom:176.920000pt;}
.y22_c01032{bottom:178.520000pt;}
.y45_c01032{bottom:193.186667pt;}
.y21_c01032{bottom:194.386667pt;}
.y44_c01032{bottom:209.320000pt;}
.y20_c01032{bottom:210.920000pt;}
.y43_c01032{bottom:225.320000pt;}
.y1f_c01032{bottom:226.120000pt;}
.y42_c01032{bottom:241.720000pt;}
.y1e_c01032{bottom:242.386667pt;}
.y41_c01032{bottom:257.986667pt;}
.y1d_c01032{bottom:259.186667pt;}
.y40_c01032{bottom:273.853333pt;}
.y1c_c01032{bottom:274.386667pt;}
.y1b_c01032{bottom:290.386667pt;}
.y3f_c01032{bottom:305.986667pt;}
.y1a_c01032{bottom:306.786667pt;}
.y3e_c01032{bottom:322.786667pt;}
.y19_c01032{bottom:323.720000pt;}
.y3d_c01032{bottom:338.386667pt;}
.y18_c01032{bottom:338.920000pt;}
.y3c_c01032{bottom:352.386667pt;}
.y17_c01032{bottom:355.186667pt;}
.y3b_c01032{bottom:369.853333pt;}
.y16_c01032{bottom:371.720000pt;}
.y3a_c01032{bottom:386.920000pt;}
.y15_c01032{bottom:387.186667pt;}
.y14_c01032{bottom:403.720000pt;}
.y13_c01032{bottom:419.320000pt;}
.y39_c01032{bottom:419.586667pt;}
.y12_c01032{bottom:435.186667pt;}
.y38_c01032{bottom:435.586667pt;}
.y11_c01032{bottom:451.186667pt;}
.y37_c01032{bottom:452.120000pt;}
.y10_c01032{bottom:467.320000pt;}
.y36_c01032{bottom:467.586667pt;}
.yf_c01032{bottom:482.120000pt;}
.y35_c01032{bottom:483.853333pt;}
.ye_c01032{bottom:499.453333pt;}
.y34_c01032{bottom:499.720000pt;}
.yd_c01032{bottom:514.786667pt;}
.y33_c01032{bottom:515.986667pt;}
.yc_c01032{bottom:531.586667pt;}
.y32_c01032{bottom:532.120000pt;}
.yb_c01032{bottom:547.453333pt;}
.y31_c01032{bottom:548.120000pt;}
.ya_c01032{bottom:563.586667pt;}
.y30_c01032{bottom:563.986667pt;}
.y2f_c01032{bottom:578.653333pt;}
.y9_c01032{bottom:579.586667pt;}
.y8_c01032{bottom:596.386667pt;}
.y2e_c01032{bottom:596.653333pt;}
.y7_c01032{bottom:611.986667pt;}
.y2d_c01032{bottom:612.920000pt;}
.y6_c01032{bottom:628.386667pt;}
.y5_c01032{bottom:644.653333pt;}
.y4_c01032{bottom:660.786667pt;}
.y3_c01032{bottom:676.786667pt;}
.y2c_c01032{bottom:677.320000pt;}
.y2b_c01032{bottom:693.186667pt;}
.y2_c01032{bottom:694.120000pt;}
.y1_c01032{bottom:709.986667pt;}
.h5_c01032{height:11.733399pt;}
.h6_c01032{height:38.937500pt;}
.h2_c01032{height:55.893333pt;}
.h4_c01032{height:56.906667pt;}
.h3_c01032{height:58.688000pt;}
.h1_c01032{height:746.666667pt;}
.h0_c01032{height:746.866667pt;}
.w2_c01032{width:93.222667pt;}
.w0_c01032{width:528.466667pt;}
.w1_c01032{width:528.666667pt;}
.x0_c01032{left:0.000000pt;}
.xc_c01032{left:40.800000pt;}
.x9_c01032{left:41.733333pt;}
.x7_c01032{left:42.666667pt;}
.x2_c01032{left:43.733333pt;}
.x4_c01032{left:44.666667pt;}
.x6_c01032{left:50.933333pt;}
.x8_c01032{left:55.200000pt;}
.xb_c01032{left:56.666667pt;}
.x3_c01032{left:57.866667pt;}
.x5_c01032{left:59.600000pt;}
.xa_c01032{left:104.666667pt;}
.x1_c01032{left:124.133333pt;}
.x1e_c01032{left:221.401571pt;}
.x1c_c01032{left:249.333333pt;}
.x14_c01032{left:250.800000pt;}
.x11_c01032{left:252.000000pt;}
.x10_c01032{left:254.133333pt;}
.xe_c01032{left:255.200000pt;}
.x1a_c01032{left:261.866667pt;}
.x19_c01032{left:263.600000pt;}
.x18_c01032{left:264.533333pt;}
.x16_c01032{left:265.733333pt;}
.x13_c01032{left:266.666667pt;}
.xf_c01032{left:268.133333pt;}
.x17_c01032{left:269.333333pt;}
.xd_c01032{left:270.266667pt;}
.x1b_c01032{left:308.133333pt;}
.x12_c01032{left:316.133333pt;}
.x15_c01032{left:324.266667pt;}
.x1d_c01032{left:393.600000pt;}
}





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

.ir_c01033:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01033{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01033;src:url('chunks/assets/font_b5b52b8ed29f8c07bf01cc1d.woff2')format("woff");}.ff1_c01033{font-family:ff1_c01033;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01033;src:url('chunks/assets/font_be487978c7442b05d92f518e.woff2')format("woff");}.ff2_c01033{font-family:ff2_c01033;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01033;src:url('chunks/assets/font_fc863b4d66ae426696243651.woff2')format("woff");}.ff3_c01033{font-family:ff3_c01033;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01033;src:url('chunks/assets/font_0abbb1402d5813efe167f438.woff2')format("woff");}.ff4_c01033{font-family:ff4_c01033;line-height:1.012793;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01033;src:url('chunks/assets/font_af52c5162beca833a641bac7.woff2')format("woff");}.ff5_c01033{font-family:ff5_c01033;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01033;src:url('chunks/assets/font_ebe84463fa929512d721b14f.woff2')format("woff");}.ff6_c01033{font-family:ff6_c01033;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01033;src:url('chunks/assets/font_1cbdf8b0da9e90f5c258ae8c.woff2')format("woff");}.ff7_c01033{font-family:ff7_c01033;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c01033;src:url('chunks/assets/font_f5445db13430f86c47b5b442.woff2')format("woff");}.ff8_c01033{font-family:ff8_c01033;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c01033;src:url('chunks/assets/font_3657054dcb39e51d4b967211.woff2')format("woff");}.ff9_c01033{font-family:ff9_c01033;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:ffa_c01033;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ffa_c01033{font-family:ffa_c01033;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01033{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01033{vertical-align:0.000000px;}
.ls9_c01033{letter-spacing:0.000000px;}
.ls5_c01033{letter-spacing:1.080000px;}
.ls1_c01033{letter-spacing:1.800000px;}
.ls7_c01033{letter-spacing:3.000000px;}
.ls3_c01033{letter-spacing:4.800000px;}
.lsa_c01033{letter-spacing:6.000000px;}
.ls8_c01033{letter-spacing:7.200000px;}
.ls2_c01033{letter-spacing:8.016000px;}
.ls6_c01033{letter-spacing:12.000000px;}
.ls4_c01033{letter-spacing:13.680000px;}
.ls0_c01033{letter-spacing:13.800000px;}
.sc__c01033{text-shadow:none;}
.sc0_c01033{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01033{-webkit-text-stroke:0px transparent;}
.sc0_c01033{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01033{word-spacing:-36.780000px;}
.ws6_c01033{word-spacing:-26.340000px;}
.ws8_c01033{word-spacing:-25.854000px;}
.ws7_c01033{word-spacing:-19.500000px;}
.ws5_c01033{word-spacing:-18.000000px;}
.ws1_c01033{word-spacing:-17.736000px;}
.ws4_c01033{word-spacing:-15.060000px;}
.ws3_c01033{word-spacing:-14.160000px;}
.ws9_c01033{word-spacing:0.000000px;}
.ws0_c01033{word-spacing:0.591000px;}
._23_c01033{margin-left:-29.616000px;}
._22_c01033{margin-left:-21.906000px;}
._21_c01033{margin-left:-18.984000px;}
._1c_c01033{margin-left:-16.368000px;}
._18_c01033{margin-left:-14.892000px;}
._20_c01033{margin-left:-13.524000px;}
._1b_c01033{margin-left:-12.420000px;}
._15_c01033{margin-left:-11.328000px;}
._1e_c01033{margin-left:-8.688000px;}
._16_c01033{margin-left:-7.668000px;}
._13_c01033{margin-left:-5.580000px;}
._14_c01033{margin-left:-4.320000px;}
._17_c01033{margin-left:-3.024000px;}
._11_c01033{margin-left:-1.440000px;}
._7_c01033{width:1.380000px;}
._5_c01033{width:2.940000px;}
._e_c01033{width:4.020000px;}
._6_c01033{width:5.100000px;}
._4_c01033{width:6.180000px;}
._0_c01033{width:7.686000px;}
._9_c01033{width:9.420000px;}
._1a_c01033{width:10.434000px;}
._a_c01033{width:11.460000px;}
._8_c01033{width:12.480000px;}
._3_c01033{width:13.482000px;}
._2_c01033{width:14.742000px;}
._1d_c01033{width:16.140000px;}
._1_c01033{width:17.577000px;}
._c_c01033{width:18.816000px;}
._d_c01033{width:19.830000px;}
._f_c01033{width:21.300000px;}
._10_c01033{width:23.460000px;}
._1f_c01033{width:26.352000px;}
._19_c01033{width:28.416000px;}
._b_c01033{width:34.386000px;}
._12_c01033{width:99.240000px;}
.fc2_c01033{color:transparent;}
.fc1_c01033{color:rgb(128,128,128);}
.fc0_c01033{color:rgb(0,0,0);}
.fs8_c01033{font-size:42.000000px;}
.fs3_c01033{font-size:48.000000px;}
.fs5_c01033{font-size:51.000000px;}
.fs4_c01033{font-size:54.000000px;}
.fs7_c01033{font-size:57.000000px;}
.fs1_c01033{font-size:60.000000px;}
.fs0_c01033{font-size:63.000000px;}
.fs6_c01033{font-size:66.000000px;}
.fs2_c01033{font-size:72.000000px;}
.fs9_c01033{font-size:93.000000px;}
.y0_c01033{bottom:0.000000px;}
.y50_c01033{bottom:3.105000px;}
.y4f_c01033{bottom:7.228363px;}
.y4e_c01033{bottom:31.350000px;}
.y28_c01033{bottom:45.900000px;}
.y4d_c01033{bottom:46.350000px;}
.y4c_c01033{bottom:63.150000px;}
.y27_c01033{bottom:64.500000px;}
.y26_c01033{bottom:82.050000px;}
.y4b_c01033{bottom:82.800000px;}
.y4a_c01033{bottom:99.600000px;}
.y25_c01033{bottom:101.250000px;}
.y24_c01033{bottom:119.100000px;}
.y49_c01033{bottom:136.650000px;}
.y23_c01033{bottom:155.850000px;}
.y48_c01033{bottom:156.150000px;}
.y47_c01033{bottom:173.550000px;}
.y22_c01033{bottom:174.150000px;}
.y21_c01033{bottom:191.400000px;}
.y46_c01033{bottom:191.700000px;}
.y20_c01033{bottom:209.850000px;}
.y45_c01033{bottom:210.300000px;}
.y44_c01033{bottom:227.850000px;}
.y1f_c01033{bottom:228.150000px;}
.y1e_c01033{bottom:245.700000px;}
.y43_c01033{bottom:246.600000px;}
.y42_c01033{bottom:263.850000px;}
.y1d_c01033{bottom:264.600000px;}
.y41_c01033{bottom:281.850000px;}
.y1c_c01033{bottom:282.750000px;}
.y40_c01033{bottom:299.700000px;}
.y1b_c01033{bottom:318.300000px;}
.y3f_c01033{bottom:318.600000px;}
.y1a_c01033{bottom:336.450000px;}
.y3e_c01033{bottom:336.750000px;}
.y3d_c01033{bottom:355.350000px;}
.y19_c01033{bottom:355.650000px;}
.y3c_c01033{bottom:372.600000px;}
.y18_c01033{bottom:373.200000px;}
.y17_c01033{bottom:391.500000px;}
.y16_c01033{bottom:409.650000px;}
.y3b_c01033{bottom:409.800000px;}
.y15_c01033{bottom:427.950000px;}
.y14_c01033{bottom:443.850000px;}
.y3a_c01033{bottom:446.250000px;}
.y39_c01033{bottom:463.800000px;}
.y13_c01033{bottom:464.400000px;}
.y38_c01033{bottom:481.650000px;}
.y12_c01033{bottom:483.600000px;}
.y11_c01033{bottom:499.500000px;}
.y37_c01033{bottom:500.250000px;}
.y36_c01033{bottom:518.700000px;}
.y10_c01033{bottom:519.750000px;}
.y35_c01033{bottom:535.950000px;}
.yf_c01033{bottom:537.000000px;}
.y34_c01033{bottom:552.450000px;}
.ye_c01033{bottom:554.850000px;}
.y33_c01033{bottom:571.800000px;}
.yd_c01033{bottom:573.150000px;}
.y32_c01033{bottom:590.400000px;}
.yc_c01033{bottom:590.700000px;}
.y31_c01033{bottom:608.550000px;}
.yb_c01033{bottom:608.850000px;}
.y30_c01033{bottom:627.150000px;}
.ya_c01033{bottom:627.750000px;}
.y2f_c01033{bottom:644.850000px;}
.y9_c01033{bottom:645.600000px;}
.y2e_c01033{bottom:663.450000px;}
.y8_c01033{bottom:663.600000px;}
.y7_c01033{bottom:682.200000px;}
.y2d_c01033{bottom:682.650000px;}
.y2c_c01033{bottom:699.000000px;}
.y6_c01033{bottom:700.650000px;}
.y5_c01033{bottom:718.500000px;}
.y2b_c01033{bottom:735.300000px;}
.y4_c01033{bottom:737.100000px;}
.y2a_c01033{bottom:753.300000px;}
.y3_c01033{bottom:755.250000px;}
.y29_c01033{bottom:771.450000px;}
.y2_c01033{bottom:772.950000px;}
.y1_c01033{bottom:791.700000px;}
.hb_c01033{height:13.200074px;}
.h7_c01033{height:41.348438px;}
.hc_c01033{height:43.804688px;}
.h8_c01033{height:56.592000px;}
.h5_c01033{height:61.831055px;}
.h4_c01033{height:62.880000px;}
.h3_c01033{height:64.020000px;}
.h2_c01033{height:66.024000px;}
.h9_c01033{height:70.422000px;}
.h6_c01033{height:70.664062px;}
.ha_c01033{height:96.996094px;}
.h1_c01033{height:828.750000px;}
.h0_c01033{height:828.900000px;}
.w2_c01033{width:104.875500px;}
.w1_c01033{width:566.250000px;}
.w0_c01033{width:566.475000px;}
.x0_c01033{left:0.000000px;}
.x13_c01033{left:70.500000px;}
.xf_c01033{left:72.150000px;}
.xb_c01033{left:73.200000px;}
.xa_c01033{left:75.000000px;}
.x6_c01033{left:76.650000px;}
.x4_c01033{left:78.000000px;}
.x2_c01033{left:79.050000px;}
.x11_c01033{left:80.550000px;}
.x12_c01033{left:83.400000px;}
.x10_c01033{left:86.400000px;}
.xd_c01033{left:89.550000px;}
.x9_c01033{left:90.900000px;}
.x5_c01033{left:92.850000px;}
.x8_c01033{left:94.200000px;}
.x3_c01033{left:95.550000px;}
.x7_c01033{left:97.200000px;}
.xc_c01033{left:133.650000px;}
.xe_c01033{left:135.000000px;}
.x1_c01033{left:225.450000px;}
.x21_c01033{left:235.051758px;}
.x1f_c01033{left:308.700000px;}
.x1a_c01033{left:310.800000px;}
.x19_c01033{left:313.500000px;}
.x17_c01033{left:314.550000px;}
.x14_c01033{left:315.900000px;}
.x1c_c01033{left:319.950000px;}
.x1d_c01033{left:328.050000px;}
.x16_c01033{left:329.400000px;}
.x15_c01033{left:330.450000px;}
.x18_c01033{left:331.650000px;}
.x1b_c01033{left:333.750000px;}
.x1e_c01033{left:346.500000px;}
.x20_c01033{left:489.300000px;}
@media print{
.v0_c01033{vertical-align:0.000000pt;}
.ls9_c01033{letter-spacing:0.000000pt;}
.ls5_c01033{letter-spacing:0.960000pt;}
.ls1_c01033{letter-spacing:1.600000pt;}
.ls7_c01033{letter-spacing:2.666667pt;}
.ls3_c01033{letter-spacing:4.266667pt;}
.lsa_c01033{letter-spacing:5.333333pt;}
.ls8_c01033{letter-spacing:6.400000pt;}
.ls2_c01033{letter-spacing:7.125333pt;}
.ls6_c01033{letter-spacing:10.666667pt;}
.ls4_c01033{letter-spacing:12.160000pt;}
.ls0_c01033{letter-spacing:12.266667pt;}
.ws2_c01033{word-spacing:-32.693333pt;}
.ws6_c01033{word-spacing:-23.413333pt;}
.ws8_c01033{word-spacing:-22.981333pt;}
.ws7_c01033{word-spacing:-17.333333pt;}
.ws5_c01033{word-spacing:-16.000000pt;}
.ws1_c01033{word-spacing:-15.765333pt;}
.ws4_c01033{word-spacing:-13.386667pt;}
.ws3_c01033{word-spacing:-12.586667pt;}
.ws9_c01033{word-spacing:0.000000pt;}
.ws0_c01033{word-spacing:0.525333pt;}
._23_c01033{margin-left:-26.325333pt;}
._22_c01033{margin-left:-19.472000pt;}
._21_c01033{margin-left:-16.874667pt;}
._1c_c01033{margin-left:-14.549333pt;}
._18_c01033{margin-left:-13.237333pt;}
._20_c01033{margin-left:-12.021333pt;}
._1b_c01033{margin-left:-11.040000pt;}
._15_c01033{margin-left:-10.069333pt;}
._1e_c01033{margin-left:-7.722667pt;}
._16_c01033{margin-left:-6.816000pt;}
._13_c01033{margin-left:-4.960000pt;}
._14_c01033{margin-left:-3.840000pt;}
._17_c01033{margin-left:-2.688000pt;}
._11_c01033{margin-left:-1.280000pt;}
._7_c01033{width:1.226667pt;}
._5_c01033{width:2.613333pt;}
._e_c01033{width:3.573333pt;}
._6_c01033{width:4.533333pt;}
._4_c01033{width:5.493333pt;}
._0_c01033{width:6.832000pt;}
._9_c01033{width:8.373333pt;}
._1a_c01033{width:9.274667pt;}
._a_c01033{width:10.186667pt;}
._8_c01033{width:11.093333pt;}
._3_c01033{width:11.984000pt;}
._2_c01033{width:13.104000pt;}
._1d_c01033{width:14.346667pt;}
._1_c01033{width:15.624000pt;}
._c_c01033{width:16.725333pt;}
._d_c01033{width:17.626667pt;}
._f_c01033{width:18.933333pt;}
._10_c01033{width:20.853333pt;}
._1f_c01033{width:23.424000pt;}
._19_c01033{width:25.258667pt;}
._b_c01033{width:30.565333pt;}
._12_c01033{width:88.213333pt;}
.fs8_c01033{font-size:37.333333pt;}
.fs3_c01033{font-size:42.666667pt;}
.fs5_c01033{font-size:45.333333pt;}
.fs4_c01033{font-size:48.000000pt;}
.fs7_c01033{font-size:50.666667pt;}
.fs1_c01033{font-size:53.333333pt;}
.fs0_c01033{font-size:56.000000pt;}
.fs6_c01033{font-size:58.666667pt;}
.fs2_c01033{font-size:64.000000pt;}
.fs9_c01033{font-size:82.666667pt;}
.y0_c01033{bottom:0.000000pt;}
.y50_c01033{bottom:2.760000pt;}
.y4f_c01033{bottom:6.425212pt;}
.y4e_c01033{bottom:27.866667pt;}
.y28_c01033{bottom:40.800000pt;}
.y4d_c01033{bottom:41.200000pt;}
.y4c_c01033{bottom:56.133333pt;}
.y27_c01033{bottom:57.333333pt;}
.y26_c01033{bottom:72.933333pt;}
.y4b_c01033{bottom:73.600000pt;}
.y4a_c01033{bottom:88.533333pt;}
.y25_c01033{bottom:90.000000pt;}
.y24_c01033{bottom:105.866667pt;}
.y49_c01033{bottom:121.466667pt;}
.y23_c01033{bottom:138.533333pt;}
.y48_c01033{bottom:138.800000pt;}
.y47_c01033{bottom:154.266667pt;}
.y22_c01033{bottom:154.800000pt;}
.y21_c01033{bottom:170.133333pt;}
.y46_c01033{bottom:170.400000pt;}
.y20_c01033{bottom:186.533333pt;}
.y45_c01033{bottom:186.933333pt;}
.y44_c01033{bottom:202.533333pt;}
.y1f_c01033{bottom:202.800000pt;}
.y1e_c01033{bottom:218.400000pt;}
.y43_c01033{bottom:219.200000pt;}
.y42_c01033{bottom:234.533333pt;}
.y1d_c01033{bottom:235.200000pt;}
.y41_c01033{bottom:250.533333pt;}
.y1c_c01033{bottom:251.333333pt;}
.y40_c01033{bottom:266.400000pt;}
.y1b_c01033{bottom:282.933333pt;}
.y3f_c01033{bottom:283.200000pt;}
.y1a_c01033{bottom:299.066667pt;}
.y3e_c01033{bottom:299.333333pt;}
.y3d_c01033{bottom:315.866667pt;}
.y19_c01033{bottom:316.133333pt;}
.y3c_c01033{bottom:331.200000pt;}
.y18_c01033{bottom:331.733333pt;}
.y17_c01033{bottom:348.000000pt;}
.y16_c01033{bottom:364.133333pt;}
.y3b_c01033{bottom:364.266667pt;}
.y15_c01033{bottom:380.400000pt;}
.y14_c01033{bottom:394.533333pt;}
.y3a_c01033{bottom:396.666667pt;}
.y39_c01033{bottom:412.266667pt;}
.y13_c01033{bottom:412.800000pt;}
.y38_c01033{bottom:428.133333pt;}
.y12_c01033{bottom:429.866667pt;}
.y11_c01033{bottom:444.000000pt;}
.y37_c01033{bottom:444.666667pt;}
.y36_c01033{bottom:461.066667pt;}
.y10_c01033{bottom:462.000000pt;}
.y35_c01033{bottom:476.400000pt;}
.yf_c01033{bottom:477.333333pt;}
.y34_c01033{bottom:491.066667pt;}
.ye_c01033{bottom:493.200000pt;}
.y33_c01033{bottom:508.266667pt;}
.yd_c01033{bottom:509.466667pt;}
.y32_c01033{bottom:524.800000pt;}
.yc_c01033{bottom:525.066667pt;}
.y31_c01033{bottom:540.933333pt;}
.yb_c01033{bottom:541.200000pt;}
.y30_c01033{bottom:557.466667pt;}
.ya_c01033{bottom:558.000000pt;}
.y2f_c01033{bottom:573.200000pt;}
.y9_c01033{bottom:573.866667pt;}
.y2e_c01033{bottom:589.733333pt;}
.y8_c01033{bottom:589.866667pt;}
.y7_c01033{bottom:606.400000pt;}
.y2d_c01033{bottom:606.800000pt;}
.y2c_c01033{bottom:621.333333pt;}
.y6_c01033{bottom:622.800000pt;}
.y5_c01033{bottom:638.666667pt;}
.y2b_c01033{bottom:653.600000pt;}
.y4_c01033{bottom:655.200000pt;}
.y2a_c01033{bottom:669.600000pt;}
.y3_c01033{bottom:671.333333pt;}
.y29_c01033{bottom:685.733333pt;}
.y2_c01033{bottom:687.066667pt;}
.y1_c01033{bottom:703.733333pt;}
.hb_c01033{height:11.733399pt;}
.h7_c01033{height:36.754167pt;}
.hc_c01033{height:38.937500pt;}
.h8_c01033{height:50.304000pt;}
.h5_c01033{height:54.960938pt;}
.h4_c01033{height:55.893333pt;}
.h3_c01033{height:56.906667pt;}
.h2_c01033{height:58.688000pt;}
.h9_c01033{height:62.597333pt;}
.h6_c01033{height:62.812500pt;}
.ha_c01033{height:86.218750pt;}
.h1_c01033{height:736.666667pt;}
.h0_c01033{height:736.800000pt;}
.w2_c01033{width:93.222667pt;}
.w1_c01033{width:503.333333pt;}
.w0_c01033{width:503.533333pt;}
.x0_c01033{left:0.000000pt;}
.x13_c01033{left:62.666667pt;}
.xf_c01033{left:64.133333pt;}
.xb_c01033{left:65.066667pt;}
.xa_c01033{left:66.666667pt;}
.x6_c01033{left:68.133333pt;}
.x4_c01033{left:69.333333pt;}
.x2_c01033{left:70.266667pt;}
.x11_c01033{left:71.600000pt;}
.x12_c01033{left:74.133333pt;}
.x10_c01033{left:76.800000pt;}
.xd_c01033{left:79.600000pt;}
.x9_c01033{left:80.800000pt;}
.x5_c01033{left:82.533333pt;}
.x8_c01033{left:83.733333pt;}
.x3_c01033{left:84.933333pt;}
.x7_c01033{left:86.400000pt;}
.xc_c01033{left:118.800000pt;}
.xe_c01033{left:120.000000pt;}
.x1_c01033{left:200.400000pt;}
.x21_c01033{left:208.934896pt;}
.x1f_c01033{left:274.400000pt;}
.x1a_c01033{left:276.266667pt;}
.x19_c01033{left:278.666667pt;}
.x17_c01033{left:279.600000pt;}
.x14_c01033{left:280.800000pt;}
.x1c_c01033{left:284.400000pt;}
.x1d_c01033{left:291.600000pt;}
.x16_c01033{left:292.800000pt;}
.x15_c01033{left:293.733333pt;}
.x18_c01033{left:294.800000pt;}
.x1b_c01033{left:296.666667pt;}
.x1e_c01033{left:308.000000pt;}
.x20_c01033{left:434.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_c01034 {
    display:none;
  }
  .loading-indicator_c01034.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01034 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01034 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01034" -> "#page-container .classname_c01034")
 */
.pf_c01034 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01034 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01034.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01034 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01034 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01034 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01034 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01034 {overflow:visible;}
  }
}
.c_c01034 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01034 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01034:after { /* webkit #35443 */
  content: '';
}
.t_c01034:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01034 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01034 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01034 { /* info for Javascript */
  display:none;
}
.l_c01034 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01034 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01034 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01034:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01034{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01034;src:url('chunks/assets/font_48d899130a06fa50f6023608.woff2')format("woff");}.ff1_c01034{font-family:ff1_c01034;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01034;src:url('chunks/assets/font_ce4ad3e7a5a3dc923a44282f.woff2')format("woff");}.ff2_c01034{font-family:ff2_c01034;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01034;src:url('chunks/assets/font_9d3659150f6fd80127f01985.woff2')format("woff");}.ff3_c01034{font-family:ff3_c01034;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01034;src:url('chunks/assets/font_99e69d81451d8aa687dfa33d.woff2')format("woff");}.ff4_c01034{font-family:ff4_c01034;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01034;src:url('chunks/assets/font_d7dcc84cf46b82d785f1dc55.woff2')format("woff");}.ff5_c01034{font-family:ff5_c01034;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01034;src:url('chunks/assets/font_7164f7fc20c479aacf7b7c04.woff2')format("woff");}.ff6_c01034{font-family:ff6_c01034;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01034;src:url('chunks/assets/font_40b06ab476961f29455168f5.woff2')format("woff");}.ff7_c01034{font-family:ff7_c01034;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c01034;src:url('chunks/assets/font_b8418613f68d34207318c40c.woff2')format("woff");}.ff8_c01034{font-family:ff8_c01034;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c01034;src:url('chunks/assets/font_7c7b114d6d8510036cb24ad0.woff2')format("woff");}.ff9_c01034{font-family:ff9_c01034;line-height:1.575000;font-style:normal;font-weight: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_c01034;src:url('chunks/assets/font_8b565dbe5f151139531e02a4.woff2')format("woff");}.ffa_c01034{font-family:ffa_c01034;line-height:1.012793;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c01034;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ffb_c01034{font-family:ffb_c01034;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01034{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c01034{vertical-align:-74.400000px;}
.v0_c01034{vertical-align:0.000000px;}
.lsb_c01034{letter-spacing:0.000000px;}
.ls2_c01034{letter-spacing:1.800000px;}
.ls3_c01034{letter-spacing:2.400000px;}
.lse_c01034{letter-spacing:3.000000px;}
.ls4_c01034{letter-spacing:4.800000px;}
.ls5_c01034{letter-spacing:5.400000px;}
.lsd_c01034{letter-spacing:6.000000px;}
.ls0_c01034{letter-spacing:6.738000px;}
.ls6_c01034{letter-spacing:7.200000px;}
.ls1_c01034{letter-spacing:9.000000px;}
.ls8_c01034{letter-spacing:11.400000px;}
.lsf_c01034{letter-spacing:12.000000px;}
.lsa_c01034{letter-spacing:14.940000px;}
.ls7_c01034{letter-spacing:17.400000px;}
.ls9_c01034{letter-spacing:20.340000px;}
.lsc_c01034{letter-spacing:30.000000px;}
.sc__c01034{text-shadow:none;}
.sc0_c01034{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01034{-webkit-text-stroke:0px transparent;}
.sc0_c01034{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c01034{word-spacing:-45.060000px;}
.ws8_c01034{word-spacing:-28.416000px;}
.ws0_c01034{word-spacing:-24.813000px;}
.ws2_c01034{word-spacing:-23.160000px;}
.ws6_c01034{word-spacing:-21.000000px;}
.wsb_c01034{word-spacing:-16.416000px;}
.ws9_c01034{word-spacing:-15.984000px;}
.ws5_c01034{word-spacing:-15.060000px;}
.wsc_c01034{word-spacing:-12.744000px;}
.ws1_c01034{word-spacing:-1.320000px;}
.wse_c01034{word-spacing:0.000000px;}
.ws4_c01034{word-spacing:0.441000px;}
.ws7_c01034{word-spacing:1.512000px;}
.wsd_c01034{word-spacing:3.360000px;}
.wsa_c01034{word-spacing:19.380000px;}
._a_c01034{margin-left:-50.796000px;}
._25_c01034{margin-left:-25.437000px;}
._21_c01034{margin-left:-22.845000px;}
._12_c01034{margin-left:-17.286000px;}
._1d_c01034{margin-left:-14.946000px;}
._19_c01034{margin-left:-13.932000px;}
._9_c01034{margin-left:-11.793000px;}
._b_c01034{margin-left:-10.206000px;}
._d_c01034{margin-left:-8.931000px;}
._6_c01034{margin-left:-7.101000px;}
._7_c01034{margin-left:-5.199000px;}
._18_c01034{margin-left:-3.807000px;}
._8_c01034{margin-left:-2.166000px;}
._14_c01034{margin-left:-1.056000px;}
._c_c01034{width:1.845000px;}
._5_c01034{width:3.183000px;}
._0_c01034{width:4.599000px;}
._1_c01034{width:5.859000px;}
._3_c01034{width:7.560000px;}
._4_c01034{width:9.180000px;}
._e_c01034{width:10.584000px;}
._15_c01034{width:11.997000px;}
._11_c01034{width:14.031000px;}
._16_c01034{width:15.333000px;}
._1b_c01034{width:16.377000px;}
._1a_c01034{width:17.421000px;}
._17_c01034{width:18.855000px;}
._1f_c01034{width:20.244000px;}
._1e_c01034{width:21.306000px;}
._23_c01034{width:23.556000px;}
._10_c01034{width:24.852000px;}
._f_c01034{width:25.872000px;}
._13_c01034{width:29.421000px;}
._22_c01034{width:30.891000px;}
._20_c01034{width:35.997000px;}
._1c_c01034{width:37.539000px;}
._24_c01034{width:45.816000px;}
._2_c01034{width:51.825000px;}
._26_c01034{width:73.320000px;}
.fc2_c01034{color:transparent;}
.fc1_c01034{color:rgb(128,128,128);}
.fc0_c01034{color:rgb(0,0,0);}
.fs5_c01034{font-size:42.000000px;}
.fs2_c01034{font-size:48.000000px;}
.fs3_c01034{font-size:51.000000px;}
.fs4_c01034{font-size:54.000000px;}
.fs7_c01034{font-size:57.000000px;}
.fs1_c01034{font-size:60.000000px;}
.fs0_c01034{font-size:63.000000px;}
.fs6_c01034{font-size:72.000000px;}
.y0_c01034{bottom:0.000000px;}
.y53_c01034{bottom:3.105000px;}
.y52_c01034{bottom:7.228363px;}
.y51_c01034{bottom:24.900000px;}
.y2a_c01034{bottom:40.800000px;}
.y50_c01034{bottom:43.800000px;}
.y29_c01034{bottom:62.100000px;}
.y4f_c01034{bottom:63.000000px;}
.y28_c01034{bottom:80.550000px;}
.y4e_c01034{bottom:80.700000px;}
.y27_c01034{bottom:98.550000px;}
.y4d_c01034{bottom:99.600000px;}
.y26_c01034{bottom:117.000000px;}
.y4c_c01034{bottom:118.350000px;}
.y4b_c01034{bottom:136.650000px;}
.y25_c01034{bottom:136.950000px;}
.y24_c01034{bottom:152.250000px;}
.y4a_c01034{bottom:154.500000px;}
.y49_c01034{bottom:170.400000px;}
.y23_c01034{bottom:172.050000px;}
.y48_c01034{bottom:190.350000px;}
.y22_c01034{bottom:190.950000px;}
.y21_c01034{bottom:208.800000px;}
.y47_c01034{bottom:209.550000px;}
.y20_c01034{bottom:226.500000px;}
.y46_c01034{bottom:227.100000px;}
.y1f_c01034{bottom:244.950000px;}
.y45_c01034{bottom:261.900000px;}
.y1e_c01034{bottom:262.950000px;}
.y1d_c01034{bottom:281.100000px;}
.y44_c01034{bottom:281.400000px;}
.y43_c01034{bottom:298.950000px;}
.y1c_c01034{bottom:299.400000px;}
.y1b_c01034{bottom:316.800000px;}
.y42_c01034{bottom:317.550000px;}
.y1a_c01034{bottom:334.800000px;}
.y19_c01034{bottom:351.600000px;}
.y41_c01034{bottom:354.000000px;}
.y18_c01034{bottom:370.800000px;}
.y40_c01034{bottom:372.300000px;}
.y17_c01034{bottom:389.700000px;}
.y3f_c01034{bottom:390.450000px;}
.y16_c01034{bottom:406.950000px;}
.y3e_c01034{bottom:407.700000px;}
.y15_c01034{bottom:424.800000px;}
.y3d_c01034{bottom:426.600000px;}
.y14_c01034{bottom:443.850000px;}
.y13_c01034{bottom:460.650000px;}
.y3c_c01034{bottom:462.750000px;}
.y12_c01034{bottom:479.700000px;}
.y3b_c01034{bottom:480.300000px;}
.y11_c01034{bottom:497.850000px;}
.y3a_c01034{bottom:499.050000px;}
.y10_c01034{bottom:516.150000px;}
.y39_c01034{bottom:516.750000px;}
.yf_c01034{bottom:534.600000px;}
.y38_c01034{bottom:534.900000px;}
.ye_c01034{bottom:551.100000px;}
.y37_c01034{bottom:552.450000px;}
.yd_c01034{bottom:570.450000px;}
.y36_c01034{bottom:570.750000px;}
.y35_c01034{bottom:588.600000px;}
.yc_c01034{bottom:589.050000px;}
.yb_c01034{bottom:606.600000px;}
.y34_c01034{bottom:607.500000px;}
.y33_c01034{bottom:624.600000px;}
.ya_c01034{bottom:624.750000px;}
.y9_c01034{bottom:643.350000px;}
.y32_c01034{bottom:643.650000px;}
.y8_c01034{bottom:661.800000px;}
.y31_c01034{bottom:662.400000px;}
.y7_c01034{bottom:679.050000px;}
.y30_c01034{bottom:679.650000px;}
.y6_c01034{bottom:696.900000px;}
.y2f_c01034{bottom:697.200000px;}
.y5_c01034{bottom:715.800000px;}
.y2e_c01034{bottom:716.550000px;}
.y4_c01034{bottom:734.400000px;}
.y2d_c01034{bottom:734.700000px;}
.y3_c01034{bottom:753.300000px;}
.y2c_c01034{bottom:754.200000px;}
.y2_c01034{bottom:771.300000px;}
.y2b_c01034{bottom:771.750000px;}
.y1_c01034{bottom:789.750000px;}
.hb_c01034{height:13.200074px;}
.hc_c01034{height:43.804688px;}
.h5_c01034{height:51.216000px;}
.ha_c01034{height:56.592000px;}
.h6_c01034{height:57.618000px;}
.h9_c01034{height:59.736000px;}
.h3_c01034{height:62.880000px;}
.h4_c01034{height:64.020000px;}
.h2_c01034{height:66.024000px;}
.h8_c01034{height:70.664062px;}
.h7_c01034{height:75.456000px;}
.h1_c01034{height:834.000000px;}
.h0_c01034{height:834.300000px;}
.w1_c01034{width:104.875500px;}
.w0_c01034{width:590.250000px;}
.x0_c01034{left:0.000000px;}
.x3_c01034{left:34.800000px;}
.x5_c01034{left:36.450000px;}
.x7_c01034{left:38.100000px;}
.xa_c01034{left:39.450000px;}
.xc_c01034{left:41.250000px;}
.xe_c01034{left:42.600000px;}
.x4_c01034{left:50.700000px;}
.x2_c01034{left:51.750000px;}
.x6_c01034{left:54.450000px;}
.x9_c01034{left:56.700000px;}
.xb_c01034{left:58.050000px;}
.xf_c01034{left:59.700000px;}
.x8_c01034{left:90.750000px;}
.xd_c01034{left:118.800000px;}
.x1_c01034{left:126.600000px;}
.x1e_c01034{left:246.939240px;}
.x10_c01034{left:270.450000px;}
.x13_c01034{left:271.800000px;}
.x15_c01034{left:274.050000px;}
.x17_c01034{left:276.450000px;}
.x1c_c01034{left:279.000000px;}
.x11_c01034{left:287.550000px;}
.x14_c01034{left:289.650000px;}
.x12_c01034{left:291.000000px;}
.x16_c01034{left:292.950000px;}
.x19_c01034{left:295.200000px;}
.x1a_c01034{left:296.250000px;}
.x1b_c01034{left:337.200000px;}
.x18_c01034{left:341.850000px;}
.x1d_c01034{left:468.750000px;}
@media print{
.v1_c01034{vertical-align:-66.133333pt;}
.v0_c01034{vertical-align:0.000000pt;}
.lsb_c01034{letter-spacing:0.000000pt;}
.ls2_c01034{letter-spacing:1.600000pt;}
.ls3_c01034{letter-spacing:2.133333pt;}
.lse_c01034{letter-spacing:2.666667pt;}
.ls4_c01034{letter-spacing:4.266667pt;}
.ls5_c01034{letter-spacing:4.800000pt;}
.lsd_c01034{letter-spacing:5.333333pt;}
.ls0_c01034{letter-spacing:5.989333pt;}
.ls6_c01034{letter-spacing:6.400000pt;}
.ls1_c01034{letter-spacing:8.000000pt;}
.ls8_c01034{letter-spacing:10.133333pt;}
.lsf_c01034{letter-spacing:10.666667pt;}
.lsa_c01034{letter-spacing:13.280000pt;}
.ls7_c01034{letter-spacing:15.466667pt;}
.ls9_c01034{letter-spacing:18.080000pt;}
.lsc_c01034{letter-spacing:26.666667pt;}
.ws3_c01034{word-spacing:-40.053333pt;}
.ws8_c01034{word-spacing:-25.258667pt;}
.ws0_c01034{word-spacing:-22.056000pt;}
.ws2_c01034{word-spacing:-20.586667pt;}
.ws6_c01034{word-spacing:-18.666667pt;}
.wsb_c01034{word-spacing:-14.592000pt;}
.ws9_c01034{word-spacing:-14.208000pt;}
.ws5_c01034{word-spacing:-13.386667pt;}
.wsc_c01034{word-spacing:-11.328000pt;}
.ws1_c01034{word-spacing:-1.173333pt;}
.wse_c01034{word-spacing:0.000000pt;}
.ws4_c01034{word-spacing:0.392000pt;}
.ws7_c01034{word-spacing:1.344000pt;}
.wsd_c01034{word-spacing:2.986667pt;}
.wsa_c01034{word-spacing:17.226667pt;}
._a_c01034{margin-left:-45.152000pt;}
._25_c01034{margin-left:-22.610667pt;}
._21_c01034{margin-left:-20.306667pt;}
._12_c01034{margin-left:-15.365333pt;}
._1d_c01034{margin-left:-13.285333pt;}
._19_c01034{margin-left:-12.384000pt;}
._9_c01034{margin-left:-10.482667pt;}
._b_c01034{margin-left:-9.072000pt;}
._d_c01034{margin-left:-7.938667pt;}
._6_c01034{margin-left:-6.312000pt;}
._7_c01034{margin-left:-4.621333pt;}
._18_c01034{margin-left:-3.384000pt;}
._8_c01034{margin-left:-1.925333pt;}
._14_c01034{margin-left:-0.938667pt;}
._c_c01034{width:1.640000pt;}
._5_c01034{width:2.829333pt;}
._0_c01034{width:4.088000pt;}
._1_c01034{width:5.208000pt;}
._3_c01034{width:6.720000pt;}
._4_c01034{width:8.160000pt;}
._e_c01034{width:9.408000pt;}
._15_c01034{width:10.664000pt;}
._11_c01034{width:12.472000pt;}
._16_c01034{width:13.629333pt;}
._1b_c01034{width:14.557333pt;}
._1a_c01034{width:15.485333pt;}
._17_c01034{width:16.760000pt;}
._1f_c01034{width:17.994667pt;}
._1e_c01034{width:18.938667pt;}
._23_c01034{width:20.938667pt;}
._10_c01034{width:22.090667pt;}
._f_c01034{width:22.997333pt;}
._13_c01034{width:26.152000pt;}
._22_c01034{width:27.458667pt;}
._20_c01034{width:31.997333pt;}
._1c_c01034{width:33.368000pt;}
._24_c01034{width:40.725333pt;}
._2_c01034{width:46.066667pt;}
._26_c01034{width:65.173333pt;}
.fs5_c01034{font-size:37.333333pt;}
.fs2_c01034{font-size:42.666667pt;}
.fs3_c01034{font-size:45.333333pt;}
.fs4_c01034{font-size:48.000000pt;}
.fs7_c01034{font-size:50.666667pt;}
.fs1_c01034{font-size:53.333333pt;}
.fs0_c01034{font-size:56.000000pt;}
.fs6_c01034{font-size:64.000000pt;}
.y0_c01034{bottom:0.000000pt;}
.y53_c01034{bottom:2.760000pt;}
.y52_c01034{bottom:6.425212pt;}
.y51_c01034{bottom:22.133333pt;}
.y2a_c01034{bottom:36.266667pt;}
.y50_c01034{bottom:38.933333pt;}
.y29_c01034{bottom:55.200000pt;}
.y4f_c01034{bottom:56.000000pt;}
.y28_c01034{bottom:71.600000pt;}
.y4e_c01034{bottom:71.733333pt;}
.y27_c01034{bottom:87.600000pt;}
.y4d_c01034{bottom:88.533333pt;}
.y26_c01034{bottom:104.000000pt;}
.y4c_c01034{bottom:105.200000pt;}
.y4b_c01034{bottom:121.466667pt;}
.y25_c01034{bottom:121.733333pt;}
.y24_c01034{bottom:135.333333pt;}
.y4a_c01034{bottom:137.333333pt;}
.y49_c01034{bottom:151.466667pt;}
.y23_c01034{bottom:152.933333pt;}
.y48_c01034{bottom:169.200000pt;}
.y22_c01034{bottom:169.733333pt;}
.y21_c01034{bottom:185.600000pt;}
.y47_c01034{bottom:186.266667pt;}
.y20_c01034{bottom:201.333333pt;}
.y46_c01034{bottom:201.866667pt;}
.y1f_c01034{bottom:217.733333pt;}
.y45_c01034{bottom:232.800000pt;}
.y1e_c01034{bottom:233.733333pt;}
.y1d_c01034{bottom:249.866667pt;}
.y44_c01034{bottom:250.133333pt;}
.y43_c01034{bottom:265.733333pt;}
.y1c_c01034{bottom:266.133333pt;}
.y1b_c01034{bottom:281.600000pt;}
.y42_c01034{bottom:282.266667pt;}
.y1a_c01034{bottom:297.600000pt;}
.y19_c01034{bottom:312.533333pt;}
.y41_c01034{bottom:314.666667pt;}
.y18_c01034{bottom:329.600000pt;}
.y40_c01034{bottom:330.933333pt;}
.y17_c01034{bottom:346.400000pt;}
.y3f_c01034{bottom:347.066667pt;}
.y16_c01034{bottom:361.733333pt;}
.y3e_c01034{bottom:362.400000pt;}
.y15_c01034{bottom:377.600000pt;}
.y3d_c01034{bottom:379.200000pt;}
.y14_c01034{bottom:394.533333pt;}
.y13_c01034{bottom:409.466667pt;}
.y3c_c01034{bottom:411.333333pt;}
.y12_c01034{bottom:426.400000pt;}
.y3b_c01034{bottom:426.933333pt;}
.y11_c01034{bottom:442.533333pt;}
.y3a_c01034{bottom:443.600000pt;}
.y10_c01034{bottom:458.800000pt;}
.y39_c01034{bottom:459.333333pt;}
.yf_c01034{bottom:475.200000pt;}
.y38_c01034{bottom:475.466667pt;}
.ye_c01034{bottom:489.866667pt;}
.y37_c01034{bottom:491.066667pt;}
.yd_c01034{bottom:507.066667pt;}
.y36_c01034{bottom:507.333333pt;}
.y35_c01034{bottom:523.200000pt;}
.yc_c01034{bottom:523.600000pt;}
.yb_c01034{bottom:539.200000pt;}
.y34_c01034{bottom:540.000000pt;}
.y33_c01034{bottom:555.200000pt;}
.ya_c01034{bottom:555.333333pt;}
.y9_c01034{bottom:571.866667pt;}
.y32_c01034{bottom:572.133333pt;}
.y8_c01034{bottom:588.266667pt;}
.y31_c01034{bottom:588.800000pt;}
.y7_c01034{bottom:603.600000pt;}
.y30_c01034{bottom:604.133333pt;}
.y6_c01034{bottom:619.466667pt;}
.y2f_c01034{bottom:619.733333pt;}
.y5_c01034{bottom:636.266667pt;}
.y2e_c01034{bottom:636.933333pt;}
.y4_c01034{bottom:652.800000pt;}
.y2d_c01034{bottom:653.066667pt;}
.y3_c01034{bottom:669.600000pt;}
.y2c_c01034{bottom:670.400000pt;}
.y2_c01034{bottom:685.600000pt;}
.y2b_c01034{bottom:686.000000pt;}
.y1_c01034{bottom:702.000000pt;}
.hb_c01034{height:11.733399pt;}
.hc_c01034{height:38.937500pt;}
.h5_c01034{height:45.525333pt;}
.ha_c01034{height:50.304000pt;}
.h6_c01034{height:51.216000pt;}
.h9_c01034{height:53.098667pt;}
.h3_c01034{height:55.893333pt;}
.h4_c01034{height:56.906667pt;}
.h2_c01034{height:58.688000pt;}
.h8_c01034{height:62.812500pt;}
.h7_c01034{height:67.072000pt;}
.h1_c01034{height:741.333333pt;}
.h0_c01034{height:741.600000pt;}
.w1_c01034{width:93.222667pt;}
.w0_c01034{width:524.666667pt;}
.x0_c01034{left:0.000000pt;}
.x3_c01034{left:30.933333pt;}
.x5_c01034{left:32.400000pt;}
.x7_c01034{left:33.866667pt;}
.xa_c01034{left:35.066667pt;}
.xc_c01034{left:36.666667pt;}
.xe_c01034{left:37.866667pt;}
.x4_c01034{left:45.066667pt;}
.x2_c01034{left:46.000000pt;}
.x6_c01034{left:48.400000pt;}
.x9_c01034{left:50.400000pt;}
.xb_c01034{left:51.600000pt;}
.xf_c01034{left:53.066667pt;}
.x8_c01034{left:80.666667pt;}
.xd_c01034{left:105.600000pt;}
.x1_c01034{left:112.533333pt;}
.x1e_c01034{left:219.501546pt;}
.x10_c01034{left:240.400000pt;}
.x13_c01034{left:241.600000pt;}
.x15_c01034{left:243.600000pt;}
.x17_c01034{left:245.733333pt;}
.x1c_c01034{left:248.000000pt;}
.x11_c01034{left:255.600000pt;}
.x14_c01034{left:257.466667pt;}
.x12_c01034{left:258.666667pt;}
.x16_c01034{left:260.400000pt;}
.x19_c01034{left:262.400000pt;}
.x1a_c01034{left:263.333333pt;}
.x1b_c01034{left:299.733333pt;}
.x18_c01034{left:303.866667pt;}
.x1d_c01034{left:416.666667pt;}
}





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

.ir_c01035:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01035{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01035;src:url('chunks/assets/font_089feaaa434e77df47ac7c14.woff2')format("woff");}.ff1_c01035{font-family:ff1_c01035;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01035;src:url('chunks/assets/font_b1198b6323aad54256f17949.woff2')format("woff");}.ff2_c01035{font-family:ff2_c01035;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01035;src:url('chunks/assets/font_0d94f5b44196b2e8a334ba45.woff2')format("woff");}.ff3_c01035{font-family:ff3_c01035;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01035;src:url('chunks/assets/font_2da435e5ff663fdbece3d2be.woff2')format("woff");}.ff4_c01035{font-family:ff4_c01035;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01035;src:url('chunks/assets/font_1ec5b614c56d06ebb5494a6b.woff2')format("woff");}.ff5_c01035{font-family:ff5_c01035;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01035;src:url('chunks/assets/font_5954a1a6dd4ea9b7ea9ab9f8.woff2')format("woff");}.ff6_c01035{font-family:ff6_c01035;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01035;src:url('chunks/assets/font_3d5361e064e56a43603af148.woff2')format("woff");}.ff7_c01035{font-family:ff7_c01035;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:ff8_c01035;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff8_c01035{font-family:ff8_c01035;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01035{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c01035{vertical-align:-71.400000px;}
.v0_c01035{vertical-align:0.000000px;}
.ls5_c01035{letter-spacing:0.000000px;}
.ls0_c01035{letter-spacing:1.140000px;}
.ls3_c01035{letter-spacing:5.118000px;}
.ls6_c01035{letter-spacing:6.000000px;}
.ls1_c01035{letter-spacing:7.200000px;}
.ls7_c01035{letter-spacing:9.000000px;}
.ls4_c01035{letter-spacing:18.600000px;}
.ls2_c01035{letter-spacing:35.940000px;}
.sc__c01035{text-shadow:none;}
.sc0_c01035{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01035{-webkit-text-stroke:0px transparent;}
.sc0_c01035{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c01035{word-spacing:-25.854000px;}
.ws1_c01035{word-spacing:-23.340000px;}
.ws4_c01035{word-spacing:-23.160000px;}
.ws5_c01035{word-spacing:-20.160000px;}
.ws2_c01035{word-spacing:-19.554000px;}
.ws9_c01035{word-spacing:-18.000000px;}
.ws0_c01035{word-spacing:-15.060000px;}
.wsa_c01035{word-spacing:-14.160000px;}
.ws8_c01035{word-spacing:-1.800000px;}
.wsc_c01035{word-spacing:0.000000px;}
.ws7_c01035{word-spacing:3.672000px;}
.ws6_c01035{word-spacing:4.008000px;}
.ws3_c01035{word-spacing:4.980000px;}
._1f_c01035{margin-left:-23.400000px;}
._2a_c01035{margin-left:-22.089000px;}
._2d_c01035{margin-left:-19.164000px;}
._1d_c01035{margin-left:-18.120000px;}
._2b_c01035{margin-left:-16.632000px;}
._11_c01035{margin-left:-12.864000px;}
._18_c01035{margin-left:-11.760000px;}
._16_c01035{margin-left:-9.912000px;}
._f_c01035{margin-left:-8.700000px;}
._14_c01035{margin-left:-6.720000px;}
._10_c01035{margin-left:-5.616000px;}
._9_c01035{margin-left:-3.660000px;}
._17_c01035{margin-left:-2.499000px;}
._5_c01035{margin-left:-1.104000px;}
._6_c01035{width:1.584000px;}
._0_c01035{width:3.312000px;}
._4_c01035{width:4.368000px;}
._7_c01035{width:5.520000px;}
._3_c01035{width:6.984000px;}
._1_c01035{width:7.992000px;}
._2_c01035{width:9.072000px;}
._d_c01035{width:10.140000px;}
._29_c01035{width:11.268000px;}
._b_c01035{width:12.348000px;}
._e_c01035{width:14.052000px;}
._12_c01035{width:16.440000px;}
._c_c01035{width:18.180000px;}
._1e_c01035{width:19.440000px;}
._24_c01035{width:21.108000px;}
._8_c01035{width:22.440000px;}
._13_c01035{width:23.556000px;}
._26_c01035{width:24.600000px;}
._19_c01035{width:25.728000px;}
._a_c01035{width:27.240000px;}
._15_c01035{width:28.284000px;}
._23_c01035{width:31.620000px;}
._22_c01035{width:32.736000px;}
._1b_c01035{width:35.700000px;}
._27_c01035{width:36.720000px;}
._1a_c01035{width:39.780000px;}
._28_c01035{width:46.299000px;}
._25_c01035{width:86.472000px;}
._21_c01035{width:103.467000px;}
._2e_c01035{width:133.956000px;}
._20_c01035{width:226.803000px;}
._1c_c01035{width:260.892000px;}
._2c_c01035{width:376.626000px;}
.fc2_c01035{color:transparent;}
.fc1_c01035{color:rgb(128,128,128);}
.fc0_c01035{color:rgb(0,0,0);}
.fs2_c01035{font-size:48.000000px;}
.fs3_c01035{font-size:54.000000px;}
.fs1_c01035{font-size:60.000000px;}
.fs0_c01035{font-size:72.000000px;}
.fs4_c01035{font-size:81.000000px;}
.fs5_c01035{font-size:93.000000px;}
.y0_c01035{bottom:0.000000px;}
.y4f_c01035{bottom:3.105000px;}
.y4e_c01035{bottom:7.228369px;}
.y29_c01035{bottom:52.020000px;}
.y4d_c01035{bottom:53.970000px;}
.y28_c01035{bottom:70.920000px;}
.y4c_c01035{bottom:73.920000px;}
.y27_c01035{bottom:89.670000px;}
.y4b_c01035{bottom:92.520000px;}
.y26_c01035{bottom:107.370000px;}
.y4a_c01035{bottom:110.970000px;}
.y25_c01035{bottom:125.220000px;}
.y49_c01035{bottom:127.620000px;}
.y24_c01035{bottom:143.070000px;}
.y48_c01035{bottom:149.070000px;}
.y23_c01035{bottom:161.670000px;}
.y47_c01035{bottom:164.670000px;}
.y22_c01035{bottom:178.470000px;}
.y46_c01035{bottom:183.270000px;}
.y21_c01035{bottom:198.420000px;}
.y45_c01035{bottom:200.820000px;}
.y20_c01035{bottom:216.270000px;}
.y44_c01035{bottom:219.720000px;}
.y1f_c01035{bottom:234.120000px;}
.y43_c01035{bottom:238.320000px;}
.y42_c01035{bottom:252.720000px;}
.y1e_c01035{bottom:253.020000px;}
.y1d_c01035{bottom:270.270000px;}
.y41_c01035{bottom:274.320000px;}
.y1c_c01035{bottom:288.870000px;}
.y40_c01035{bottom:290.820000px;}
.y1b_c01035{bottom:308.070000px;}
.y3f_c01035{bottom:310.470000px;}
.y1a_c01035{bottom:325.320000px;}
.y3e_c01035{bottom:328.620000px;}
.y19_c01035{bottom:343.620000px;}
.y3d_c01035{bottom:346.320000px;}
.y18_c01035{bottom:362.370000px;}
.y17_c01035{bottom:380.370000px;}
.y3c_c01035{bottom:382.320000px;}
.y16_c01035{bottom:398.520000px;}
.y3b_c01035{bottom:400.620000px;}
.y15_c01035{bottom:416.370000px;}
.y14_c01035{bottom:434.370000px;}
.y13_c01035{bottom:452.520000px;}
.y3a_c01035{bottom:455.670000px;}
.y12_c01035{bottom:471.720000px;}
.y39_c01035{bottom:473.820000px;}
.y11_c01035{bottom:489.720000px;}
.y38_c01035{bottom:492.720000px;}
.y10_c01035{bottom:508.620000px;}
.yf_c01035{bottom:526.170000px;}
.y37_c01035{bottom:527.220000px;}
.ye_c01035{bottom:544.620000px;}
.y36_c01035{bottom:546.120000px;}
.yd_c01035{bottom:562.620000px;}
.y35_c01035{bottom:564.270000px;}
.yc_c01035{bottom:580.470000px;}
.y34_c01035{bottom:582.120000px;}
.yb_c01035{bottom:596.070000px;}
.y33_c01035{bottom:600.720000px;}
.ya_c01035{bottom:616.920000px;}
.y32_c01035{bottom:618.570000px;}
.y9_c01035{bottom:635.520000px;}
.y31_c01035{bottom:637.470000px;}
.y8_c01035{bottom:653.970000px;}
.y30_c01035{bottom:672.570000px;}
.y7_c01035{bottom:689.820000px;}
.y2f_c01035{bottom:691.170000px;}
.y6_c01035{bottom:709.020000px;}
.y2e_c01035{bottom:709.470000px;}
.y2d_c01035{bottom:726.870000px;}
.y5_c01035{bottom:727.320000px;}
.y2c_c01035{bottom:745.170000px;}
.y4_c01035{bottom:745.470000px;}
.y3_c01035{bottom:762.420000px;}
.y2b_c01035{bottom:763.770000px;}
.y2_c01035{bottom:780.570000px;}
.y1_c01035{bottom:798.570000px;}
.y2a_c01035{bottom:799.470000px;}
.h7_c01035{height:13.200073px;}
.h8_c01035{height:43.804688px;}
.h4_c01035{height:56.592000px;}
.h2_c01035{height:62.880000px;}
.h3_c01035{height:64.020000px;}
.h1_c01035{height:70.664062px;}
.h5_c01035{height:84.888000px;}
.h6_c01035{height:96.996094px;}
.h0_c01035{height:840.750000px;}
.w2_c01035{width:104.875500px;}
.w1_c01035{width:574.500000px;}
.w0_c01035{width:574.575000px;}
.x0_c01035{left:0.000000px;}
.x5_c01035{left:76.350000px;}
.xd_c01035{left:80.250000px;}
.xb_c01035{left:81.600000px;}
.xa_c01035{left:82.650000px;}
.x8_c01035{left:83.700000px;}
.x4_c01035{left:85.050000px;}
.xf_c01035{left:86.700000px;}
.xc_c01035{left:97.800000px;}
.x6_c01035{left:99.000000px;}
.x9_c01035{left:100.200000px;}
.x3_c01035{left:102.600000px;}
.x2_c01035{left:104.400000px;}
.x7_c01035{left:154.800000px;}
.xe_c01035{left:157.500000px;}
.x1_c01035{left:223.650000px;}
.x1d_c01035{left:239.101730px;}
.x10_c01035{left:308.400000px;}
.x1b_c01035{left:319.950000px;}
.x1a_c01035{left:321.000000px;}
.x11_c01035{left:322.350000px;}
.x16_c01035{left:323.700000px;}
.x1c_c01035{left:337.200000px;}
.x19_c01035{left:338.400000px;}
.x13_c01035{left:339.750000px;}
.x12_c01035{left:340.800000px;}
.x14_c01035{left:342.450000px;}
.x15_c01035{left:362.100000px;}
.x18_c01035{left:383.400000px;}
.x17_c01035{left:402.900000px;}
@media print{
.v1_c01035{vertical-align:-63.466667pt;}
.v0_c01035{vertical-align:0.000000pt;}
.ls5_c01035{letter-spacing:0.000000pt;}
.ls0_c01035{letter-spacing:1.013333pt;}
.ls3_c01035{letter-spacing:4.549333pt;}
.ls6_c01035{letter-spacing:5.333333pt;}
.ls1_c01035{letter-spacing:6.400000pt;}
.ls7_c01035{letter-spacing:8.000000pt;}
.ls4_c01035{letter-spacing:16.533333pt;}
.ls2_c01035{letter-spacing:31.946667pt;}
.wsb_c01035{word-spacing:-22.981333pt;}
.ws1_c01035{word-spacing:-20.746667pt;}
.ws4_c01035{word-spacing:-20.586667pt;}
.ws5_c01035{word-spacing:-17.920000pt;}
.ws2_c01035{word-spacing:-17.381333pt;}
.ws9_c01035{word-spacing:-16.000000pt;}
.ws0_c01035{word-spacing:-13.386667pt;}
.wsa_c01035{word-spacing:-12.586667pt;}
.ws8_c01035{word-spacing:-1.600000pt;}
.wsc_c01035{word-spacing:0.000000pt;}
.ws7_c01035{word-spacing:3.264000pt;}
.ws6_c01035{word-spacing:3.562667pt;}
.ws3_c01035{word-spacing:4.426667pt;}
._1f_c01035{margin-left:-20.800000pt;}
._2a_c01035{margin-left:-19.634667pt;}
._2d_c01035{margin-left:-17.034667pt;}
._1d_c01035{margin-left:-16.106667pt;}
._2b_c01035{margin-left:-14.784000pt;}
._11_c01035{margin-left:-11.434667pt;}
._18_c01035{margin-left:-10.453333pt;}
._16_c01035{margin-left:-8.810667pt;}
._f_c01035{margin-left:-7.733333pt;}
._14_c01035{margin-left:-5.973333pt;}
._10_c01035{margin-left:-4.992000pt;}
._9_c01035{margin-left:-3.253333pt;}
._17_c01035{margin-left:-2.221333pt;}
._5_c01035{margin-left:-0.981333pt;}
._6_c01035{width:1.408000pt;}
._0_c01035{width:2.944000pt;}
._4_c01035{width:3.882667pt;}
._7_c01035{width:4.906667pt;}
._3_c01035{width:6.208000pt;}
._1_c01035{width:7.104000pt;}
._2_c01035{width:8.064000pt;}
._d_c01035{width:9.013333pt;}
._29_c01035{width:10.016000pt;}
._b_c01035{width:10.976000pt;}
._e_c01035{width:12.490667pt;}
._12_c01035{width:14.613333pt;}
._c_c01035{width:16.160000pt;}
._1e_c01035{width:17.280000pt;}
._24_c01035{width:18.762667pt;}
._8_c01035{width:19.946667pt;}
._13_c01035{width:20.938667pt;}
._26_c01035{width:21.866667pt;}
._19_c01035{width:22.869333pt;}
._a_c01035{width:24.213333pt;}
._15_c01035{width:25.141333pt;}
._23_c01035{width:28.106667pt;}
._22_c01035{width:29.098667pt;}
._1b_c01035{width:31.733333pt;}
._27_c01035{width:32.640000pt;}
._1a_c01035{width:35.360000pt;}
._28_c01035{width:41.154667pt;}
._25_c01035{width:76.864000pt;}
._21_c01035{width:91.970667pt;}
._2e_c01035{width:119.072000pt;}
._20_c01035{width:201.602667pt;}
._1c_c01035{width:231.904000pt;}
._2c_c01035{width:334.778667pt;}
.fs2_c01035{font-size:42.666667pt;}
.fs3_c01035{font-size:48.000000pt;}
.fs1_c01035{font-size:53.333333pt;}
.fs0_c01035{font-size:64.000000pt;}
.fs4_c01035{font-size:72.000000pt;}
.fs5_c01035{font-size:82.666667pt;}
.y0_c01035{bottom:0.000000pt;}
.y4f_c01035{bottom:2.760000pt;}
.y4e_c01035{bottom:6.425217pt;}
.y29_c01035{bottom:46.240000pt;}
.y4d_c01035{bottom:47.973333pt;}
.y28_c01035{bottom:63.040000pt;}
.y4c_c01035{bottom:65.706667pt;}
.y27_c01035{bottom:79.706667pt;}
.y4b_c01035{bottom:82.240000pt;}
.y26_c01035{bottom:95.440000pt;}
.y4a_c01035{bottom:98.640000pt;}
.y25_c01035{bottom:111.306667pt;}
.y49_c01035{bottom:113.440000pt;}
.y24_c01035{bottom:127.173333pt;}
.y48_c01035{bottom:132.506667pt;}
.y23_c01035{bottom:143.706667pt;}
.y47_c01035{bottom:146.373333pt;}
.y22_c01035{bottom:158.640000pt;}
.y46_c01035{bottom:162.906667pt;}
.y21_c01035{bottom:176.373333pt;}
.y45_c01035{bottom:178.506667pt;}
.y20_c01035{bottom:192.240000pt;}
.y44_c01035{bottom:195.306667pt;}
.y1f_c01035{bottom:208.106667pt;}
.y43_c01035{bottom:211.840000pt;}
.y42_c01035{bottom:224.640000pt;}
.y1e_c01035{bottom:224.906667pt;}
.y1d_c01035{bottom:240.240000pt;}
.y41_c01035{bottom:243.840000pt;}
.y1c_c01035{bottom:256.773333pt;}
.y40_c01035{bottom:258.506667pt;}
.y1b_c01035{bottom:273.840000pt;}
.y3f_c01035{bottom:275.973333pt;}
.y1a_c01035{bottom:289.173333pt;}
.y3e_c01035{bottom:292.106667pt;}
.y19_c01035{bottom:305.440000pt;}
.y3d_c01035{bottom:307.840000pt;}
.y18_c01035{bottom:322.106667pt;}
.y17_c01035{bottom:338.106667pt;}
.y3c_c01035{bottom:339.840000pt;}
.y16_c01035{bottom:354.240000pt;}
.y3b_c01035{bottom:356.106667pt;}
.y15_c01035{bottom:370.106667pt;}
.y14_c01035{bottom:386.106667pt;}
.y13_c01035{bottom:402.240000pt;}
.y3a_c01035{bottom:405.040000pt;}
.y12_c01035{bottom:419.306667pt;}
.y39_c01035{bottom:421.173333pt;}
.y11_c01035{bottom:435.306667pt;}
.y38_c01035{bottom:437.973333pt;}
.y10_c01035{bottom:452.106667pt;}
.yf_c01035{bottom:467.706667pt;}
.y37_c01035{bottom:468.640000pt;}
.ye_c01035{bottom:484.106667pt;}
.y36_c01035{bottom:485.440000pt;}
.yd_c01035{bottom:500.106667pt;}
.y35_c01035{bottom:501.573333pt;}
.yc_c01035{bottom:515.973333pt;}
.y34_c01035{bottom:517.440000pt;}
.yb_c01035{bottom:529.840000pt;}
.y33_c01035{bottom:533.973333pt;}
.ya_c01035{bottom:548.373333pt;}
.y32_c01035{bottom:549.840000pt;}
.y9_c01035{bottom:564.906667pt;}
.y31_c01035{bottom:566.640000pt;}
.y8_c01035{bottom:581.306667pt;}
.y30_c01035{bottom:597.840000pt;}
.y7_c01035{bottom:613.173333pt;}
.y2f_c01035{bottom:614.373333pt;}
.y6_c01035{bottom:630.240000pt;}
.y2e_c01035{bottom:630.640000pt;}
.y2d_c01035{bottom:646.106667pt;}
.y5_c01035{bottom:646.506667pt;}
.y2c_c01035{bottom:662.373333pt;}
.y4_c01035{bottom:662.640000pt;}
.y3_c01035{bottom:677.706667pt;}
.y2b_c01035{bottom:678.906667pt;}
.y2_c01035{bottom:693.840000pt;}
.y1_c01035{bottom:709.840000pt;}
.y2a_c01035{bottom:710.640000pt;}
.h7_c01035{height:11.733399pt;}
.h8_c01035{height:38.937500pt;}
.h4_c01035{height:50.304000pt;}
.h2_c01035{height:55.893333pt;}
.h3_c01035{height:56.906667pt;}
.h1_c01035{height:62.812500pt;}
.h5_c01035{height:75.456000pt;}
.h6_c01035{height:86.218750pt;}
.h0_c01035{height:747.333333pt;}
.w2_c01035{width:93.222667pt;}
.w1_c01035{width:510.666667pt;}
.w0_c01035{width:510.733333pt;}
.x0_c01035{left:0.000000pt;}
.x5_c01035{left:67.866667pt;}
.xd_c01035{left:71.333333pt;}
.xb_c01035{left:72.533333pt;}
.xa_c01035{left:73.466667pt;}
.x8_c01035{left:74.400000pt;}
.x4_c01035{left:75.600000pt;}
.xf_c01035{left:77.066667pt;}
.xc_c01035{left:86.933333pt;}
.x6_c01035{left:88.000000pt;}
.x9_c01035{left:89.066667pt;}
.x3_c01035{left:91.200000pt;}
.x2_c01035{left:92.800000pt;}
.x7_c01035{left:137.600000pt;}
.xe_c01035{left:140.000000pt;}
.x1_c01035{left:198.800000pt;}
.x1d_c01035{left:212.534871pt;}
.x10_c01035{left:274.133333pt;}
.x1b_c01035{left:284.400000pt;}
.x1a_c01035{left:285.333333pt;}
.x11_c01035{left:286.533333pt;}
.x16_c01035{left:287.733333pt;}
.x1c_c01035{left:299.733333pt;}
.x19_c01035{left:300.800000pt;}
.x13_c01035{left:302.000000pt;}
.x12_c01035{left:302.933333pt;}
.x14_c01035{left:304.400000pt;}
.x15_c01035{left:321.866667pt;}
.x18_c01035{left:340.800000pt;}
.x17_c01035{left:358.133333pt;}
}





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

.ir_c01036:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01036{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01036;src:url('chunks/assets/font_2033b650700113ea72e29555.woff2')format("woff");}.ff1_c01036{font-family:ff1_c01036;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01036;src:url('chunks/assets/font_2d85b0b8dcdf70ac01f7d500.woff2')format("woff");}.ff2_c01036{font-family:ff2_c01036;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01036;src:url('chunks/assets/font_96350f0dc0d4798797b176e5.woff2')format("woff");}.ff3_c01036{font-family:ff3_c01036;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01036;src:url('chunks/assets/font_f8dab8023e392197982cd233.woff2')format("woff");}.ff4_c01036{font-family:ff4_c01036;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01036;src:url('chunks/assets/font_81add3476fd9fdda660cb1f9.woff2')format("woff");}.ff5_c01036{font-family:ff5_c01036;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01036;src:url('chunks/assets/font_59c28b27f3d4fa45e427e086.woff2')format("woff");}.ff6_c01036{font-family:ff6_c01036;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01036;src:url('chunks/assets/font_f70a3ab619561919b59c3083.woff2')format("woff");}.ff7_c01036{font-family:ff7_c01036;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c01036;src:url('chunks/assets/font_c91e059d9c24053b1b9dfc2d.woff2')format("woff");}.ff8_c01036{font-family:ff8_c01036;line-height:1.012793;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c01036;src:url('chunks/assets/font_8686872cf05dc9c65af49c46.woff2')format("woff");}.ff9_c01036{font-family:ff9_c01036;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c01036;src:url('chunks/assets/font_c6075183cef719f82a15c0b9.woff2')format("woff");}.ffa_c01036{font-family:ffa_c01036;line-height:1.402354;font-style:normal;font-weight: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_c01036;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ffb_c01036{font-family:ffb_c01036;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01036{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c01036{vertical-align:-57.000000px;}
.v0_c01036{vertical-align:0.000000px;}
.ls10_c01036{letter-spacing:0.000000px;}
.ls3_c01036{letter-spacing:0.600000px;}
.lsa_c01036{letter-spacing:1.050000px;}
.ls9_c01036{letter-spacing:2.334000px;}
.ls7_c01036{letter-spacing:2.400000px;}
.ls4_c01036{letter-spacing:3.000000px;}
.ls8_c01036{letter-spacing:4.740000px;}
.lsb_c01036{letter-spacing:5.184000px;}
.ls2_c01036{letter-spacing:5.280000px;}
.ls0_c01036{letter-spacing:5.400000px;}
.ls11_c01036{letter-spacing:6.000000px;}
.ls6_c01036{letter-spacing:6.540000px;}
.lsc_c01036{letter-spacing:6.678000px;}
.lsd_c01036{letter-spacing:6.912000px;}
.ls5_c01036{letter-spacing:7.380000px;}
.lse_c01036{letter-spacing:8.046000px;}
.ls12_c01036{letter-spacing:9.000000px;}
.lsf_c01036{letter-spacing:11.400000px;}
.ls13_c01036{letter-spacing:12.000000px;}
.ls1_c01036{letter-spacing:13.200000px;}
.sc__c01036{text-shadow:none;}
.sc0_c01036{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01036{-webkit-text-stroke:0px transparent;}
.sc0_c01036{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01036{word-spacing:-50.022000px;}
.ws5_c01036{word-spacing:-43.494000px;}
.ws9_c01036{word-spacing:-41.565000px;}
.wsb_c01036{word-spacing:-28.491000px;}
.wsa_c01036{word-spacing:-24.072000px;}
.wsc_c01036{word-spacing:-23.160000px;}
.ws7_c01036{word-spacing:-21.000000px;}
.ws0_c01036{word-spacing:-18.060000px;}
.wsd_c01036{word-spacing:-17.250000px;}
.ws8_c01036{word-spacing:-16.554000px;}
.ws2_c01036{word-spacing:-15.060000px;}
.ws3_c01036{word-spacing:-14.160000px;}
.wsf_c01036{word-spacing:-6.960000px;}
.wse_c01036{word-spacing:-3.000000px;}
.ws4_c01036{word-spacing:-2.406000px;}
.ws6_c01036{word-spacing:-0.060000px;}
.ws10_c01036{word-spacing:0.000000px;}
._26_c01036{margin-left:-24.756000px;}
._11_c01036{margin-left:-21.792000px;}
._25_c01036{margin-left:-15.111000px;}
._12_c01036{margin-left:-13.770000px;}
._13_c01036{margin-left:-12.624000px;}
._22_c01036{margin-left:-10.674000px;}
._1b_c01036{margin-left:-9.564000px;}
._19_c01036{margin-left:-8.370000px;}
._1a_c01036{margin-left:-7.068000px;}
._1f_c01036{margin-left:-5.820000px;}
._f_c01036{margin-left:-4.782000px;}
._d_c01036{margin-left:-3.156000px;}
._14_c01036{margin-left:-2.094000px;}
._10_c01036{margin-left:-1.038000px;}
._b_c01036{width:1.338000px;}
._9_c01036{width:2.514000px;}
._6_c01036{width:4.026000px;}
._5_c01036{width:5.610000px;}
._c_c01036{width:6.996000px;}
._7_c01036{width:8.046000px;}
._4_c01036{width:9.840000px;}
._8_c01036{width:11.250000px;}
._24_c01036{width:12.384000px;}
._2_c01036{width:13.440000px;}
._17_c01036{width:15.480000px;}
._0_c01036{width:16.920000px;}
._1_c01036{width:18.240000px;}
._a_c01036{width:20.100000px;}
._16_c01036{width:21.546000px;}
._1e_c01036{width:23.094000px;}
._1c_c01036{width:24.450000px;}
._15_c01036{width:25.590000px;}
._23_c01036{width:26.784000px;}
._1d_c01036{width:29.340000px;}
._18_c01036{width:31.374000px;}
._20_c01036{width:33.204000px;}
._28_c01036{width:35.340000px;}
._27_c01036{width:37.878000px;}
._3_c01036{width:39.840000px;}
._e_c01036{width:72.240000px;}
._21_c01036{width:77.208000px;}
._29_c01036{width:255.048000px;}
.fc2_c01036{color:transparent;}
.fc1_c01036{color:rgb(128,128,128);}
.fc0_c01036{color:rgb(0,0,0);}
.fs8_c01036{font-size:48.000000px;}
.fs4_c01036{font-size:51.000000px;}
.fs3_c01036{font-size:54.000000px;}
.fs6_c01036{font-size:57.000000px;}
.fs0_c01036{font-size:60.000000px;}
.fs2_c01036{font-size:63.000000px;}
.fs1_c01036{font-size:66.000000px;}
.fs7_c01036{font-size:69.000000px;}
.fs5_c01036{font-size:72.000000px;}
.y0_c01036{bottom:0.000000px;}
.y54_c01036{bottom:3.105000px;}
.y53_c01036{bottom:7.228363px;}
.y2a_c01036{bottom:46.650000px;}
.y52_c01036{bottom:48.000000px;}
.y29_c01036{bottom:66.900000px;}
.y51_c01036{bottom:67.500000px;}
.y50_c01036{bottom:84.000000px;}
.y28_c01036{bottom:84.750000px;}
.y27_c01036{bottom:102.000000px;}
.y4f_c01036{bottom:104.400000px;}
.y26_c01036{bottom:121.200000px;}
.y4e_c01036{bottom:122.550000px;}
.y25_c01036{bottom:138.750000px;}
.y4d_c01036{bottom:141.150000px;}
.y24_c01036{bottom:157.350000px;}
.y4c_c01036{bottom:159.600000px;}
.y23_c01036{bottom:176.850000px;}
.y4b_c01036{bottom:177.900000px;}
.y22_c01036{bottom:193.500000px;}
.y4a_c01036{bottom:210.000000px;}
.y21_c01036{bottom:211.950000px;}
.y20_c01036{bottom:229.950000px;}
.y49_c01036{bottom:231.150000px;}
.y1f_c01036{bottom:248.100000px;}
.y48_c01036{bottom:249.750000px;}
.y1e_c01036{bottom:265.950000px;}
.y47_c01036{bottom:267.000000px;}
.y1d_c01036{bottom:284.850000px;}
.y46_c01036{bottom:285.600000px;}
.y1c_c01036{bottom:301.800000px;}
.y45_c01036{bottom:303.750000px;}
.y1b_c01036{bottom:319.650000px;}
.y44_c01036{bottom:322.350000px;}
.y1a_c01036{bottom:337.800000px;}
.y43_c01036{bottom:340.200000px;}
.y19_c01036{bottom:355.800000px;}
.y42_c01036{bottom:358.050000px;}
.y18_c01036{bottom:373.650000px;}
.y41_c01036{bottom:376.350000px;}
.y17_c01036{bottom:391.950000px;}
.y40_c01036{bottom:394.200000px;}
.y16_c01036{bottom:410.100000px;}
.y3f_c01036{bottom:412.200000px;}
.y15_c01036{bottom:427.950000px;}
.y3e_c01036{bottom:430.950000px;}
.y14_c01036{bottom:446.250000px;}
.y3d_c01036{bottom:447.900000px;}
.y13_c01036{bottom:463.800000px;}
.y3c_c01036{bottom:466.500000px;}
.y12_c01036{bottom:482.700000px;}
.y3b_c01036{bottom:485.700000px;}
.y11_c01036{bottom:499.950000px;}
.y3a_c01036{bottom:501.900000px;}
.y10_c01036{bottom:518.100000px;}
.y39_c01036{bottom:521.100000px;}
.yf_c01036{bottom:536.250000px;}
.y38_c01036{bottom:538.650000px;}
.ye_c01036{bottom:552.150000px;}
.y37_c01036{bottom:557.250000px;}
.yd_c01036{bottom:572.400000px;}
.y36_c01036{bottom:575.400000px;}
.yc_c01036{bottom:589.350000px;}
.y35_c01036{bottom:592.950000px;}
.yb_c01036{bottom:607.800000px;}
.y34_c01036{bottom:610.650000px;}
.ya_c01036{bottom:626.700000px;}
.y33_c01036{bottom:628.800000px;}
.y9_c01036{bottom:643.650000px;}
.y8_c01036{bottom:660.600000px;}
.y32_c01036{bottom:664.500000px;}
.y7_c01036{bottom:679.350000px;}
.y31_c01036{bottom:683.550000px;}
.y6_c01036{bottom:697.950000px;}
.y30_c01036{bottom:701.700000px;}
.y5_c01036{bottom:716.550000px;}
.y2f_c01036{bottom:719.550000px;}
.y4_c01036{bottom:734.700000px;}
.y2e_c01036{bottom:737.550000px;}
.y3_c01036{bottom:753.300000px;}
.y2d_c01036{bottom:756.450000px;}
.y2_c01036{bottom:771.750000px;}
.y2c_c01036{bottom:773.850000px;}
.y1_c01036{bottom:790.200000px;}
.y2b_c01036{bottom:793.800000px;}
.hd_c01036{height:13.200074px;}
.he_c01036{height:43.804688px;}
.h6_c01036{height:53.448000px;}
.hb_c01036{height:55.914551px;}
.ha_c01036{height:56.592000px;}
.h9_c01036{height:59.690918px;}
.h2_c01036{height:62.880000px;}
.h5_c01036{height:64.020000px;}
.h4_c01036{height:66.024000px;}
.h8_c01036{height:69.168000px;}
.h3_c01036{height:70.422000px;}
.hc_c01036{height:72.312000px;}
.h7_c01036{height:75.456000px;}
.h1_c01036{height:834.000000px;}
.h0_c01036{height:834.300000px;}
.w1_c01036{width:104.875500px;}
.w0_c01036{width:590.250000px;}
.x0_c01036{left:0.000000px;}
.x5_c01036{left:35.400000px;}
.x2_c01036{left:36.450000px;}
.x8_c01036{left:37.800000px;}
.xb_c01036{left:46.650000px;}
.x6_c01036{left:51.000000px;}
.x7_c01036{left:52.650000px;}
.x3_c01036{left:53.700000px;}
.x9_c01036{left:54.750000px;}
.x4_c01036{left:56.100000px;}
.xa_c01036{left:57.150000px;}
.x1_c01036{left:121.950000px;}
.x15_c01036{left:246.939240px;}
.xc_c01036{left:272.700000px;}
.x12_c01036{left:274.050000px;}
.xf_c01036{left:275.100000px;}
.x10_c01036{left:288.300000px;}
.xd_c01036{left:290.550000px;}
.xe_c01036{left:291.600000px;}
.x13_c01036{left:293.550000px;}
.x11_c01036{left:341.850000px;}
.x14_c01036{left:352.050000px;}
@media print{
.v1_c01036{vertical-align:-50.666667pt;}
.v0_c01036{vertical-align:0.000000pt;}
.ls10_c01036{letter-spacing:0.000000pt;}
.ls3_c01036{letter-spacing:0.533333pt;}
.lsa_c01036{letter-spacing:0.933333pt;}
.ls9_c01036{letter-spacing:2.074667pt;}
.ls7_c01036{letter-spacing:2.133333pt;}
.ls4_c01036{letter-spacing:2.666667pt;}
.ls8_c01036{letter-spacing:4.213333pt;}
.lsb_c01036{letter-spacing:4.608000pt;}
.ls2_c01036{letter-spacing:4.693333pt;}
.ls0_c01036{letter-spacing:4.800000pt;}
.ls11_c01036{letter-spacing:5.333333pt;}
.ls6_c01036{letter-spacing:5.813333pt;}
.lsc_c01036{letter-spacing:5.936000pt;}
.lsd_c01036{letter-spacing:6.144000pt;}
.ls5_c01036{letter-spacing:6.560000pt;}
.lse_c01036{letter-spacing:7.152000pt;}
.ls12_c01036{letter-spacing:8.000000pt;}
.lsf_c01036{letter-spacing:10.133333pt;}
.ls13_c01036{letter-spacing:10.666667pt;}
.ls1_c01036{letter-spacing:11.733333pt;}
.ws1_c01036{word-spacing:-44.464000pt;}
.ws5_c01036{word-spacing:-38.661333pt;}
.ws9_c01036{word-spacing:-36.946667pt;}
.wsb_c01036{word-spacing:-25.325333pt;}
.wsa_c01036{word-spacing:-21.397333pt;}
.wsc_c01036{word-spacing:-20.586667pt;}
.ws7_c01036{word-spacing:-18.666667pt;}
.ws0_c01036{word-spacing:-16.053333pt;}
.wsd_c01036{word-spacing:-15.333333pt;}
.ws8_c01036{word-spacing:-14.714667pt;}
.ws2_c01036{word-spacing:-13.386667pt;}
.ws3_c01036{word-spacing:-12.586667pt;}
.wsf_c01036{word-spacing:-6.186667pt;}
.wse_c01036{word-spacing:-2.666667pt;}
.ws4_c01036{word-spacing:-2.138667pt;}
.ws6_c01036{word-spacing:-0.053333pt;}
.ws10_c01036{word-spacing:0.000000pt;}
._26_c01036{margin-left:-22.005333pt;}
._11_c01036{margin-left:-19.370667pt;}
._25_c01036{margin-left:-13.432000pt;}
._12_c01036{margin-left:-12.240000pt;}
._13_c01036{margin-left:-11.221333pt;}
._22_c01036{margin-left:-9.488000pt;}
._1b_c01036{margin-left:-8.501333pt;}
._19_c01036{margin-left:-7.440000pt;}
._1a_c01036{margin-left:-6.282667pt;}
._1f_c01036{margin-left:-5.173333pt;}
._f_c01036{margin-left:-4.250667pt;}
._d_c01036{margin-left:-2.805333pt;}
._14_c01036{margin-left:-1.861333pt;}
._10_c01036{margin-left:-0.922667pt;}
._b_c01036{width:1.189333pt;}
._9_c01036{width:2.234667pt;}
._6_c01036{width:3.578667pt;}
._5_c01036{width:4.986667pt;}
._c_c01036{width:6.218667pt;}
._7_c01036{width:7.152000pt;}
._4_c01036{width:8.746667pt;}
._8_c01036{width:10.000000pt;}
._24_c01036{width:11.008000pt;}
._2_c01036{width:11.946667pt;}
._17_c01036{width:13.760000pt;}
._0_c01036{width:15.040000pt;}
._1_c01036{width:16.213333pt;}
._a_c01036{width:17.866667pt;}
._16_c01036{width:19.152000pt;}
._1e_c01036{width:20.528000pt;}
._1c_c01036{width:21.733333pt;}
._15_c01036{width:22.746667pt;}
._23_c01036{width:23.808000pt;}
._1d_c01036{width:26.080000pt;}
._18_c01036{width:27.888000pt;}
._20_c01036{width:29.514667pt;}
._28_c01036{width:31.413333pt;}
._27_c01036{width:33.669333pt;}
._3_c01036{width:35.413333pt;}
._e_c01036{width:64.213333pt;}
._21_c01036{width:68.629333pt;}
._29_c01036{width:226.709333pt;}
.fs8_c01036{font-size:42.666667pt;}
.fs4_c01036{font-size:45.333333pt;}
.fs3_c01036{font-size:48.000000pt;}
.fs6_c01036{font-size:50.666667pt;}
.fs0_c01036{font-size:53.333333pt;}
.fs2_c01036{font-size:56.000000pt;}
.fs1_c01036{font-size:58.666667pt;}
.fs7_c01036{font-size:61.333333pt;}
.fs5_c01036{font-size:64.000000pt;}
.y0_c01036{bottom:0.000000pt;}
.y54_c01036{bottom:2.760000pt;}
.y53_c01036{bottom:6.425212pt;}
.y2a_c01036{bottom:41.466667pt;}
.y52_c01036{bottom:42.666667pt;}
.y29_c01036{bottom:59.466667pt;}
.y51_c01036{bottom:60.000000pt;}
.y50_c01036{bottom:74.666667pt;}
.y28_c01036{bottom:75.333333pt;}
.y27_c01036{bottom:90.666667pt;}
.y4f_c01036{bottom:92.800000pt;}
.y26_c01036{bottom:107.733333pt;}
.y4e_c01036{bottom:108.933333pt;}
.y25_c01036{bottom:123.333333pt;}
.y4d_c01036{bottom:125.466667pt;}
.y24_c01036{bottom:139.866667pt;}
.y4c_c01036{bottom:141.866667pt;}
.y23_c01036{bottom:157.200000pt;}
.y4b_c01036{bottom:158.133333pt;}
.y22_c01036{bottom:172.000000pt;}
.y4a_c01036{bottom:186.666667pt;}
.y21_c01036{bottom:188.400000pt;}
.y20_c01036{bottom:204.400000pt;}
.y49_c01036{bottom:205.466667pt;}
.y1f_c01036{bottom:220.533333pt;}
.y48_c01036{bottom:222.000000pt;}
.y1e_c01036{bottom:236.400000pt;}
.y47_c01036{bottom:237.333333pt;}
.y1d_c01036{bottom:253.200000pt;}
.y46_c01036{bottom:253.866667pt;}
.y1c_c01036{bottom:268.266667pt;}
.y45_c01036{bottom:270.000000pt;}
.y1b_c01036{bottom:284.133333pt;}
.y44_c01036{bottom:286.533333pt;}
.y1a_c01036{bottom:300.266667pt;}
.y43_c01036{bottom:302.400000pt;}
.y19_c01036{bottom:316.266667pt;}
.y42_c01036{bottom:318.266667pt;}
.y18_c01036{bottom:332.133333pt;}
.y41_c01036{bottom:334.533333pt;}
.y17_c01036{bottom:348.400000pt;}
.y40_c01036{bottom:350.400000pt;}
.y16_c01036{bottom:364.533333pt;}
.y3f_c01036{bottom:366.400000pt;}
.y15_c01036{bottom:380.400000pt;}
.y3e_c01036{bottom:383.066667pt;}
.y14_c01036{bottom:396.666667pt;}
.y3d_c01036{bottom:398.133333pt;}
.y13_c01036{bottom:412.266667pt;}
.y3c_c01036{bottom:414.666667pt;}
.y12_c01036{bottom:429.066667pt;}
.y3b_c01036{bottom:431.733333pt;}
.y11_c01036{bottom:444.400000pt;}
.y3a_c01036{bottom:446.133333pt;}
.y10_c01036{bottom:460.533333pt;}
.y39_c01036{bottom:463.200000pt;}
.yf_c01036{bottom:476.666667pt;}
.y38_c01036{bottom:478.800000pt;}
.ye_c01036{bottom:490.800000pt;}
.y37_c01036{bottom:495.333333pt;}
.yd_c01036{bottom:508.800000pt;}
.y36_c01036{bottom:511.466667pt;}
.yc_c01036{bottom:523.866667pt;}
.y35_c01036{bottom:527.066667pt;}
.yb_c01036{bottom:540.266667pt;}
.y34_c01036{bottom:542.800000pt;}
.ya_c01036{bottom:557.066667pt;}
.y33_c01036{bottom:558.933333pt;}
.y9_c01036{bottom:572.133333pt;}
.y8_c01036{bottom:587.200000pt;}
.y32_c01036{bottom:590.666667pt;}
.y7_c01036{bottom:603.866667pt;}
.y31_c01036{bottom:607.600000pt;}
.y6_c01036{bottom:620.400000pt;}
.y30_c01036{bottom:623.733333pt;}
.y5_c01036{bottom:636.933333pt;}
.y2f_c01036{bottom:639.600000pt;}
.y4_c01036{bottom:653.066667pt;}
.y2e_c01036{bottom:655.600000pt;}
.y3_c01036{bottom:669.600000pt;}
.y2d_c01036{bottom:672.400000pt;}
.y2_c01036{bottom:686.000000pt;}
.y2c_c01036{bottom:687.866667pt;}
.y1_c01036{bottom:702.400000pt;}
.y2b_c01036{bottom:705.600000pt;}
.hd_c01036{height:11.733399pt;}
.he_c01036{height:38.937500pt;}
.h6_c01036{height:47.509333pt;}
.hb_c01036{height:49.701823pt;}
.ha_c01036{height:50.304000pt;}
.h9_c01036{height:53.058594pt;}
.h2_c01036{height:55.893333pt;}
.h5_c01036{height:56.906667pt;}
.h4_c01036{height:58.688000pt;}
.h8_c01036{height:61.482667pt;}
.h3_c01036{height:62.597333pt;}
.hc_c01036{height:64.277333pt;}
.h7_c01036{height:67.072000pt;}
.h1_c01036{height:741.333333pt;}
.h0_c01036{height:741.600000pt;}
.w1_c01036{width:93.222667pt;}
.w0_c01036{width:524.666667pt;}
.x0_c01036{left:0.000000pt;}
.x5_c01036{left:31.466667pt;}
.x2_c01036{left:32.400000pt;}
.x8_c01036{left:33.600000pt;}
.xb_c01036{left:41.466667pt;}
.x6_c01036{left:45.333333pt;}
.x7_c01036{left:46.800000pt;}
.x3_c01036{left:47.733333pt;}
.x9_c01036{left:48.666667pt;}
.x4_c01036{left:49.866667pt;}
.xa_c01036{left:50.800000pt;}
.x1_c01036{left:108.400000pt;}
.x15_c01036{left:219.501546pt;}
.xc_c01036{left:242.400000pt;}
.x12_c01036{left:243.600000pt;}
.xf_c01036{left:244.533333pt;}
.x10_c01036{left:256.266667pt;}
.xd_c01036{left:258.266667pt;}
.xe_c01036{left:259.200000pt;}
.x13_c01036{left:260.933333pt;}
.x11_c01036{left:303.866667pt;}
.x14_c01036{left:312.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_c01037 {
    display:none;
  }
  .loading-indicator_c01037.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01037 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01037 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01037" -> "#page-container .classname_c01037")
 */
.pf_c01037 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01037 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01037.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01037 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01037 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01037 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01037 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01037 {overflow:visible;}
  }
}
.c_c01037 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01037 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01037:after { /* webkit #35443 */
  content: '';
}
.t_c01037:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01037 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01037 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01037 { /* info for Javascript */
  display:none;
}
.l_c01037 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01037 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01037 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01037:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01037{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01037;src:url('chunks/assets/font_bf7a2ef1cc5c909ccbec1df2.woff2')format("woff");}.ff1_c01037{font-family:ff1_c01037;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01037;src:url('chunks/assets/font_b8948d74b047392baf2ead91.woff2')format("woff");}.ff2_c01037{font-family:ff2_c01037;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01037;src:url('chunks/assets/font_c82e2051933280cf57093a2d.woff2')format("woff");}.ff3_c01037{font-family:ff3_c01037;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01037;src:url('chunks/assets/font_e2a061f29e57ce270e2d6fa3.woff2')format("woff");}.ff4_c01037{font-family:ff4_c01037;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01037;src:url('chunks/assets/font_adc48f2061c96c46cd62a256.woff2')format("woff");}.ff5_c01037{font-family:ff5_c01037;line-height:1.012793;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01037;src:url('chunks/assets/font_391f0af9a3196fe2db1fc647.woff2')format("woff");}.ff6_c01037{font-family:ff6_c01037;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01037;src:url('chunks/assets/font_ae06878c33c171a122b47b2b.woff2')format("woff");}.ff7_c01037{font-family:ff7_c01037;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:ff8_c01037;src:url('chunks/assets/font_ef41a002fed376c71bcf67a4.woff2')format("woff");}.ff8_c01037{font-family:ff8_c01037;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c01037;src:url('chunks/assets/font_4548de8f2d1bcdabec1b6e1c.woff2')format("woff");}.ff9_c01037{font-family:ff9_c01037;line-height:1.575000;font-style:normal;font-weight: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_c01037;src:url('chunks/assets/font_8342d69dae646e7622e9a97f.woff2')format("woff");}.ffa_c01037{font-family:ffa_c01037;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c01037;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ffb_c01037{font-family:ffb_c01037;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01037{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01037{vertical-align:0.000000px;}
.lsf_c01037{letter-spacing:0.000000px;}
.lsa_c01037{letter-spacing:1.200000px;}
.ls2_c01037{letter-spacing:2.646000px;}
.ls7_c01037{letter-spacing:2.940000px;}
.ls11_c01037{letter-spacing:3.000000px;}
.lsc_c01037{letter-spacing:3.720000px;}
.lsb_c01037{letter-spacing:3.900000px;}
.lsd_c01037{letter-spacing:4.800000px;}
.ls10_c01037{letter-spacing:6.000000px;}
.ls0_c01037{letter-spacing:7.440000px;}
.ls8_c01037{letter-spacing:7.800000px;}
.ls9_c01037{letter-spacing:7.806000px;}
.lse_c01037{letter-spacing:7.980000px;}
.ls5_c01037{letter-spacing:9.000000px;}
.ls3_c01037{letter-spacing:10.200000px;}
.ls6_c01037{letter-spacing:11.400000px;}
.ls4_c01037{letter-spacing:12.000000px;}
.ls1_c01037{letter-spacing:16.740000px;}
.sc__c01037{text-shadow:none;}
.sc0_c01037{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01037{-webkit-text-stroke:0px transparent;}
.sc0_c01037{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c01037{word-spacing:-43.494000px;}
.wsa_c01037{word-spacing:-33.846000px;}
.ws1_c01037{word-spacing:-29.424000px;}
.ws7_c01037{word-spacing:-27.000000px;}
.ws2_c01037{word-spacing:-23.160000px;}
.ws3_c01037{word-spacing:-21.000000px;}
.wsc_c01037{word-spacing:-18.900000px;}
.ws0_c01037{word-spacing:-15.060000px;}
.ws4_c01037{word-spacing:-12.744000px;}
.wsb_c01037{word-spacing:-1.500000px;}
.ws8_c01037{word-spacing:-0.060000px;}
.wsd_c01037{word-spacing:0.000000px;}
.ws5_c01037{word-spacing:0.900000px;}
.ws9_c01037{word-spacing:1.080000px;}
._18_c01037{margin-left:-22.500000px;}
._10_c01037{margin-left:-18.360000px;}
._26_c01037{margin-left:-16.980000px;}
._22_c01037{margin-left:-15.960000px;}
._24_c01037{margin-left:-14.148000px;}
._20_c01037{margin-left:-12.840000px;}
._11_c01037{margin-left:-11.460000px;}
._9_c01037{margin-left:-9.960000px;}
._e_c01037{margin-left:-8.220000px;}
._f_c01037{margin-left:-6.900000px;}
._d_c01037{margin-left:-5.820000px;}
._c_c01037{margin-left:-4.320000px;}
._15_c01037{margin-left:-2.580000px;}
._6_c01037{margin-left:-1.260000px;}
._2b_c01037{width:1.020000px;}
._5_c01037{width:2.040000px;}
._7_c01037{width:3.360000px;}
._4_c01037{width:4.380000px;}
._3_c01037{width:5.400000px;}
._2_c01037{width:6.840000px;}
._0_c01037{width:8.700000px;}
._a_c01037{width:10.020000px;}
._8_c01037{width:11.100000px;}
._b_c01037{width:13.020000px;}
._1e_c01037{width:14.040000px;}
._1b_c01037{width:16.260000px;}
._1a_c01037{width:17.280000px;}
._1_c01037{width:18.660000px;}
._27_c01037{width:19.884000px;}
._16_c01037{width:21.120000px;}
._12_c01037{width:22.680000px;}
._23_c01037{width:24.000000px;}
._17_c01037{width:25.380000px;}
._19_c01037{width:28.140000px;}
._28_c01037{width:30.864000px;}
._14_c01037{width:35.160000px;}
._1d_c01037{width:36.960000px;}
._21_c01037{width:40.920000px;}
._29_c01037{width:56.820000px;}
._2a_c01037{width:70.920000px;}
._13_c01037{width:79.260000px;}
._25_c01037{width:144.312000px;}
._1f_c01037{width:162.540000px;}
._1c_c01037{width:205.860000px;}
.fc2_c01037{color:transparent;}
.fc1_c01037{color:rgb(128,128,128);}
.fc0_c01037{color:rgb(0,0,0);}
.fs5_c01037{font-size:24.000000px;}
.fs7_c01037{font-size:42.000000px;}
.fs1_c01037{font-size:48.000000px;}
.fs3_c01037{font-size:51.000000px;}
.fs2_c01037{font-size:54.000000px;}
.fs6_c01037{font-size:57.000000px;}
.fs0_c01037{font-size:60.000000px;}
.fs4_c01037{font-size:72.000000px;}
.y0_c01037{bottom:0.000000px;}
.y54_c01037{bottom:3.105000px;}
.y53_c01037{bottom:7.228369px;}
.y52_c01037{bottom:41.220000px;}
.y2a_c01037{bottom:52.020000px;}
.y51_c01037{bottom:57.270000px;}
.y29_c01037{bottom:72.570000px;}
.y50_c01037{bottom:74.820000px;}
.y28_c01037{bottom:89.820000px;}
.y4f_c01037{bottom:93.120000px;}
.y27_c01037{bottom:108.570000px;}
.y4e_c01037{bottom:111.270000px;}
.y26_c01037{bottom:126.570000px;}
.y4d_c01037{bottom:127.470000px;}
.y25_c01037{bottom:145.020000px;}
.y4c_c01037{bottom:146.520000px;}
.y24_c01037{bottom:161.970000px;}
.y4b_c01037{bottom:164.970000px;}
.y23_c01037{bottom:182.820000px;}
.y4a_c01037{bottom:183.570000px;}
.y22_c01037{bottom:200.520000px;}
.y49_c01037{bottom:203.220000px;}
.y21_c01037{bottom:215.670000px;}
.y48_c01037{bottom:221.070000px;}
.y20_c01037{bottom:236.970000px;}
.y47_c01037{bottom:237.270000px;}
.y1f_c01037{bottom:250.770000px;}
.y46_c01037{bottom:256.470000px;}
.y1e_c01037{bottom:272.670000px;}
.y45_c01037{bottom:274.770000px;}
.y1d_c01037{bottom:288.270000px;}
.y44_c01037{bottom:292.170000px;}
.y1c_c01037{bottom:308.370000px;}
.y43_c01037{bottom:310.170000px;}
.y1b_c01037{bottom:326.670000px;}
.y42_c01037{bottom:326.970000px;}
.y1a_c01037{bottom:343.470000px;}
.y41_c01037{bottom:346.620000px;}
.y19_c01037{bottom:363.870000px;}
.y40_c01037{bottom:364.770000px;}
.y18_c01037{bottom:379.920000px;}
.y3f_c01037{bottom:382.020000px;}
.y17_c01037{bottom:398.970000px;}
.y3e_c01037{bottom:401.520000px;}
.y16_c01037{bottom:416.520000px;}
.y3d_c01037{bottom:418.470000px;}
.y15_c01037{bottom:435.270000px;}
.y3c_c01037{bottom:436.770000px;}
.y14_c01037{bottom:454.320000px;}
.y3b_c01037{bottom:455.520000px;}
.y13_c01037{bottom:471.720000px;}
.y3a_c01037{bottom:473.820000px;}
.y12_c01037{bottom:490.320000px;}
.y39_c01037{bottom:491.670000px;}
.y11_c01037{bottom:508.920000px;}
.y38_c01037{bottom:510.570000px;}
.y10_c01037{bottom:527.070000px;}
.y37_c01037{bottom:528.420000px;}
.yf_c01037{bottom:544.770000px;}
.y36_c01037{bottom:563.520000px;}
.ye_c01037{bottom:563.970000px;}
.yd_c01037{bottom:580.770000px;}
.y35_c01037{bottom:581.820000px;}
.yc_c01037{bottom:599.670000px;}
.y34_c01037{bottom:600.420000px;}
.yb_c01037{bottom:617.670000px;}
.y33_c01037{bottom:617.970000px;}
.ya_c01037{bottom:635.520000px;}
.y32_c01037{bottom:654.120000px;}
.y9_c01037{bottom:654.720000px;}
.y31_c01037{bottom:672.570000px;}
.y8_c01037{bottom:674.220000px;}
.y30_c01037{bottom:690.120000px;}
.y7_c01037{bottom:690.570000px;}
.y6_c01037{bottom:709.320000px;}
.y5_c01037{bottom:725.220000px;}
.y2f_c01037{bottom:726.870000px;}
.y4_c01037{bottom:744.570000px;}
.y2e_c01037{bottom:744.870000px;}
.y3_c01037{bottom:763.020000px;}
.y2d_c01037{bottom:763.320000px;}
.y2c_c01037{bottom:780.870000px;}
.y2_c01037{bottom:781.620000px;}
.y1_c01037{bottom:798.870000px;}
.y2b_c01037{bottom:799.170000px;}
.h6_c01037{height:13.200073px;}
.h7_c01037{height:43.804688px;}
.h3_c01037{height:53.448000px;}
.h5_c01037{height:59.736000px;}
.h1_c01037{height:62.880000px;}
.h2_c01037{height:64.020000px;}
.h4_c01037{height:76.824000px;}
.h0_c01037{height:840.750000px;}
.w2_c01037{width:104.875500px;}
.w1_c01037{width:574.500000px;}
.w0_c01037{width:574.575000px;}
.x0_c01037{left:0.000000px;}
.xc_c01037{left:79.950000px;}
.x6_c01037{left:81.000000px;}
.x2_c01037{left:82.050000px;}
.xb_c01037{left:84.750000px;}
.xd_c01037{left:92.250000px;}
.x9_c01037{left:94.200000px;}
.x8_c01037{left:97.500000px;}
.x5_c01037{left:98.550000px;}
.x4_c01037{left:99.600000px;}
.xa_c01037{left:101.250000px;}
.x3_c01037{left:121.500000px;}
.x7_c01037{left:142.800000px;}
.x1_c01037{left:229.200000px;}
.x1a_c01037{left:239.101730px;}
.xe_c01037{left:314.250000px;}
.xf_c01037{left:318.900000px;}
.x11_c01037{left:321.000000px;}
.x13_c01037{left:322.350000px;}
.x16_c01037{left:323.550000px;}
.x12_c01037{left:336.150000px;}
.x18_c01037{left:337.200000px;}
.x10_c01037{left:338.250000px;}
.x17_c01037{left:339.450000px;}
.x14_c01037{left:340.950000px;}
.x15_c01037{left:388.050000px;}
.x19_c01037{left:494.100000px;}
@media print{
.v0_c01037{vertical-align:0.000000pt;}
.lsf_c01037{letter-spacing:0.000000pt;}
.lsa_c01037{letter-spacing:1.066667pt;}
.ls2_c01037{letter-spacing:2.352000pt;}
.ls7_c01037{letter-spacing:2.613333pt;}
.ls11_c01037{letter-spacing:2.666667pt;}
.lsc_c01037{letter-spacing:3.306667pt;}
.lsb_c01037{letter-spacing:3.466667pt;}
.lsd_c01037{letter-spacing:4.266667pt;}
.ls10_c01037{letter-spacing:5.333333pt;}
.ls0_c01037{letter-spacing:6.613333pt;}
.ls8_c01037{letter-spacing:6.933333pt;}
.ls9_c01037{letter-spacing:6.938667pt;}
.lse_c01037{letter-spacing:7.093333pt;}
.ls5_c01037{letter-spacing:8.000000pt;}
.ls3_c01037{letter-spacing:9.066667pt;}
.ls6_c01037{letter-spacing:10.133333pt;}
.ls4_c01037{letter-spacing:10.666667pt;}
.ls1_c01037{letter-spacing:14.880000pt;}
.ws6_c01037{word-spacing:-38.661333pt;}
.wsa_c01037{word-spacing:-30.085333pt;}
.ws1_c01037{word-spacing:-26.154667pt;}
.ws7_c01037{word-spacing:-24.000000pt;}
.ws2_c01037{word-spacing:-20.586667pt;}
.ws3_c01037{word-spacing:-18.666667pt;}
.wsc_c01037{word-spacing:-16.800000pt;}
.ws0_c01037{word-spacing:-13.386667pt;}
.ws4_c01037{word-spacing:-11.328000pt;}
.wsb_c01037{word-spacing:-1.333333pt;}
.ws8_c01037{word-spacing:-0.053333pt;}
.wsd_c01037{word-spacing:0.000000pt;}
.ws5_c01037{word-spacing:0.800000pt;}
.ws9_c01037{word-spacing:0.960000pt;}
._18_c01037{margin-left:-20.000000pt;}
._10_c01037{margin-left:-16.320000pt;}
._26_c01037{margin-left:-15.093333pt;}
._22_c01037{margin-left:-14.186667pt;}
._24_c01037{margin-left:-12.576000pt;}
._20_c01037{margin-left:-11.413333pt;}
._11_c01037{margin-left:-10.186667pt;}
._9_c01037{margin-left:-8.853333pt;}
._e_c01037{margin-left:-7.306667pt;}
._f_c01037{margin-left:-6.133333pt;}
._d_c01037{margin-left:-5.173333pt;}
._c_c01037{margin-left:-3.840000pt;}
._15_c01037{margin-left:-2.293333pt;}
._6_c01037{margin-left:-1.120000pt;}
._2b_c01037{width:0.906667pt;}
._5_c01037{width:1.813333pt;}
._7_c01037{width:2.986667pt;}
._4_c01037{width:3.893333pt;}
._3_c01037{width:4.800000pt;}
._2_c01037{width:6.080000pt;}
._0_c01037{width:7.733333pt;}
._a_c01037{width:8.906667pt;}
._8_c01037{width:9.866667pt;}
._b_c01037{width:11.573333pt;}
._1e_c01037{width:12.480000pt;}
._1b_c01037{width:14.453333pt;}
._1a_c01037{width:15.360000pt;}
._1_c01037{width:16.586667pt;}
._27_c01037{width:17.674667pt;}
._16_c01037{width:18.773333pt;}
._12_c01037{width:20.160000pt;}
._23_c01037{width:21.333333pt;}
._17_c01037{width:22.560000pt;}
._19_c01037{width:25.013333pt;}
._28_c01037{width:27.434667pt;}
._14_c01037{width:31.253333pt;}
._1d_c01037{width:32.853333pt;}
._21_c01037{width:36.373333pt;}
._29_c01037{width:50.506667pt;}
._2a_c01037{width:63.040000pt;}
._13_c01037{width:70.453333pt;}
._25_c01037{width:128.277333pt;}
._1f_c01037{width:144.480000pt;}
._1c_c01037{width:182.986667pt;}
.fs5_c01037{font-size:21.333333pt;}
.fs7_c01037{font-size:37.333333pt;}
.fs1_c01037{font-size:42.666667pt;}
.fs3_c01037{font-size:45.333333pt;}
.fs2_c01037{font-size:48.000000pt;}
.fs6_c01037{font-size:50.666667pt;}
.fs0_c01037{font-size:53.333333pt;}
.fs4_c01037{font-size:64.000000pt;}
.y0_c01037{bottom:0.000000pt;}
.y54_c01037{bottom:2.760000pt;}
.y53_c01037{bottom:6.425217pt;}
.y52_c01037{bottom:36.640000pt;}
.y2a_c01037{bottom:46.240000pt;}
.y51_c01037{bottom:50.906667pt;}
.y29_c01037{bottom:64.506667pt;}
.y50_c01037{bottom:66.506667pt;}
.y28_c01037{bottom:79.840000pt;}
.y4f_c01037{bottom:82.773333pt;}
.y27_c01037{bottom:96.506667pt;}
.y4e_c01037{bottom:98.906667pt;}
.y26_c01037{bottom:112.506667pt;}
.y4d_c01037{bottom:113.306667pt;}
.y25_c01037{bottom:128.906667pt;}
.y4c_c01037{bottom:130.240000pt;}
.y24_c01037{bottom:143.973333pt;}
.y4b_c01037{bottom:146.640000pt;}
.y23_c01037{bottom:162.506667pt;}
.y4a_c01037{bottom:163.173333pt;}
.y22_c01037{bottom:178.240000pt;}
.y49_c01037{bottom:180.640000pt;}
.y21_c01037{bottom:191.706667pt;}
.y48_c01037{bottom:196.506667pt;}
.y20_c01037{bottom:210.640000pt;}
.y47_c01037{bottom:210.906667pt;}
.y1f_c01037{bottom:222.906667pt;}
.y46_c01037{bottom:227.973333pt;}
.y1e_c01037{bottom:242.373333pt;}
.y45_c01037{bottom:244.240000pt;}
.y1d_c01037{bottom:256.240000pt;}
.y44_c01037{bottom:259.706667pt;}
.y1c_c01037{bottom:274.106667pt;}
.y43_c01037{bottom:275.706667pt;}
.y1b_c01037{bottom:290.373333pt;}
.y42_c01037{bottom:290.640000pt;}
.y1a_c01037{bottom:305.306667pt;}
.y41_c01037{bottom:308.106667pt;}
.y19_c01037{bottom:323.440000pt;}
.y40_c01037{bottom:324.240000pt;}
.y18_c01037{bottom:337.706667pt;}
.y3f_c01037{bottom:339.573333pt;}
.y17_c01037{bottom:354.640000pt;}
.y3e_c01037{bottom:356.906667pt;}
.y16_c01037{bottom:370.240000pt;}
.y3d_c01037{bottom:371.973333pt;}
.y15_c01037{bottom:386.906667pt;}
.y3c_c01037{bottom:388.240000pt;}
.y14_c01037{bottom:403.840000pt;}
.y3b_c01037{bottom:404.906667pt;}
.y13_c01037{bottom:419.306667pt;}
.y3a_c01037{bottom:421.173333pt;}
.y12_c01037{bottom:435.840000pt;}
.y39_c01037{bottom:437.040000pt;}
.y11_c01037{bottom:452.373333pt;}
.y38_c01037{bottom:453.840000pt;}
.y10_c01037{bottom:468.506667pt;}
.y37_c01037{bottom:469.706667pt;}
.yf_c01037{bottom:484.240000pt;}
.y36_c01037{bottom:500.906667pt;}
.ye_c01037{bottom:501.306667pt;}
.yd_c01037{bottom:516.240000pt;}
.y35_c01037{bottom:517.173333pt;}
.yc_c01037{bottom:533.040000pt;}
.y34_c01037{bottom:533.706667pt;}
.yb_c01037{bottom:549.040000pt;}
.y33_c01037{bottom:549.306667pt;}
.ya_c01037{bottom:564.906667pt;}
.y32_c01037{bottom:581.440000pt;}
.y9_c01037{bottom:581.973333pt;}
.y31_c01037{bottom:597.840000pt;}
.y8_c01037{bottom:599.306667pt;}
.y30_c01037{bottom:613.440000pt;}
.y7_c01037{bottom:613.840000pt;}
.y6_c01037{bottom:630.506667pt;}
.y5_c01037{bottom:644.640000pt;}
.y2f_c01037{bottom:646.106667pt;}
.y4_c01037{bottom:661.840000pt;}
.y2e_c01037{bottom:662.106667pt;}
.y3_c01037{bottom:678.240000pt;}
.y2d_c01037{bottom:678.506667pt;}
.y2c_c01037{bottom:694.106667pt;}
.y2_c01037{bottom:694.773333pt;}
.y1_c01037{bottom:710.106667pt;}
.y2b_c01037{bottom:710.373333pt;}
.h6_c01037{height:11.733399pt;}
.h7_c01037{height:38.937500pt;}
.h3_c01037{height:47.509333pt;}
.h5_c01037{height:53.098667pt;}
.h1_c01037{height:55.893333pt;}
.h2_c01037{height:56.906667pt;}
.h4_c01037{height:68.288000pt;}
.h0_c01037{height:747.333333pt;}
.w2_c01037{width:93.222667pt;}
.w1_c01037{width:510.666667pt;}
.w0_c01037{width:510.733333pt;}
.x0_c01037{left:0.000000pt;}
.xc_c01037{left:71.066667pt;}
.x6_c01037{left:72.000000pt;}
.x2_c01037{left:72.933333pt;}
.xb_c01037{left:75.333333pt;}
.xd_c01037{left:82.000000pt;}
.x9_c01037{left:83.733333pt;}
.x8_c01037{left:86.666667pt;}
.x5_c01037{left:87.600000pt;}
.x4_c01037{left:88.533333pt;}
.xa_c01037{left:90.000000pt;}
.x3_c01037{left:108.000000pt;}
.x7_c01037{left:126.933333pt;}
.x1_c01037{left:203.733333pt;}
.x1a_c01037{left:212.534871pt;}
.xe_c01037{left:279.333333pt;}
.xf_c01037{left:283.466667pt;}
.x11_c01037{left:285.333333pt;}
.x13_c01037{left:286.533333pt;}
.x16_c01037{left:287.600000pt;}
.x12_c01037{left:298.800000pt;}
.x18_c01037{left:299.733333pt;}
.x10_c01037{left:300.666667pt;}
.x17_c01037{left:301.733333pt;}
.x14_c01037{left:303.066667pt;}
.x15_c01037{left:344.933333pt;}
.x19_c01037{left:439.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_c01038 {
    display:none;
  }
  .loading-indicator_c01038.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01038 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01038 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01038" -> "#page-container .classname_c01038")
 */
.pf_c01038 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01038 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01038.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01038 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01038 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01038 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01038 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01038 {overflow:visible;}
  }
}
.c_c01038 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01038 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01038:after { /* webkit #35443 */
  content: '';
}
.t_c01038:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01038 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01038 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01038 { /* info for Javascript */
  display:none;
}
.l_c01038 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01038 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01038 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01038:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01038{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01038;src:url('chunks/assets/font_eafe2f8c9f9f5bb29514b106.woff2')format("woff");}.ff1_c01038{font-family:ff1_c01038;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01038;src:url('chunks/assets/font_1d6556db0c3e25d3b1550e1c.woff2')format("woff");}.ff2_c01038{font-family:ff2_c01038;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01038;src:url('chunks/assets/font_c203639e5e3b91103ff72521.woff2')format("woff");}.ff3_c01038{font-family:ff3_c01038;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01038;src:url('chunks/assets/font_c5d8c5a83f7fc7f48e1f0c66.woff2')format("woff");}.ff4_c01038{font-family:ff4_c01038;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01038;src:url('chunks/assets/font_3981cc01421919c929a42b57.woff2')format("woff");}.ff5_c01038{font-family:ff5_c01038;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01038;src:url('chunks/assets/font_ad288c419434a425c1784426.woff2')format("woff");}.ff6_c01038{font-family:ff6_c01038;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01038;src:url('chunks/assets/font_57ee901cbd9ec012883f4580.woff2')format("woff");}.ff7_c01038{font-family:ff7_c01038;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:ff8_c01038;src:url('chunks/assets/font_a1862b9af706aafedb4259a4.woff2')format("woff");}.ff8_c01038{font-family:ff8_c01038;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c01038;src:url('chunks/assets/font_7c7b114d6d8510036cb24ad0.woff2')format("woff");}.ff9_c01038{font-family:ff9_c01038;line-height:1.575000;font-style:normal;font-weight: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_c01038;src:url('chunks/assets/font_bec53e2b3d442a22d6b2fe75.woff2')format("woff");}.ffa_c01038{font-family:ffa_c01038;line-height:1.575000;font-style:normal;font-weight: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_c01038;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ffb_c01038{font-family:ffb_c01038;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01038{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01038{vertical-align:0.000000px;}
.ls5_c01038{letter-spacing:0.000000px;}
.ls4_c01038{letter-spacing:1.200000px;}
.ls8_c01038{letter-spacing:3.000000px;}
.ls2_c01038{letter-spacing:4.800000px;}
.ls6_c01038{letter-spacing:6.000000px;}
.ls3_c01038{letter-spacing:6.540000px;}
.ls0_c01038{letter-spacing:7.800000px;}
.ls7_c01038{letter-spacing:9.000000px;}
.ls1_c01038{letter-spacing:19.620000px;}
.sc__c01038{text-shadow:none;}
.sc0_c01038{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01038{-webkit-text-stroke:0px transparent;}
.sc0_c01038{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01038{word-spacing:-35.295000px;}
.ws4_c01038{word-spacing:-25.854000px;}
.ws2_c01038{word-spacing:-23.160000px;}
.ws7_c01038{word-spacing:-18.000000px;}
.ws3_c01038{word-spacing:-15.060000px;}
.ws6_c01038{word-spacing:-15.000000px;}
.ws0_c01038{word-spacing:-14.868000px;}
.ws5_c01038{word-spacing:-14.340000px;}
.ws8_c01038{word-spacing:0.000000px;}
._23_c01038{margin-left:-18.453000px;}
._1f_c01038{margin-left:-16.920000px;}
._19_c01038{margin-left:-15.438000px;}
._9_c01038{margin-left:-13.167000px;}
._17_c01038{margin-left:-11.871000px;}
._16_c01038{margin-left:-10.260000px;}
._14_c01038{margin-left:-8.400000px;}
._8_c01038{margin-left:-7.392000px;}
._15_c01038{margin-left:-6.273000px;}
._a_c01038{margin-left:-4.326000px;}
._c_c01038{margin-left:-2.835000px;}
._10_c01038{margin-left:-1.260000px;}
._e_c01038{width:1.560000px;}
._6_c01038{width:2.583000px;}
._5_c01038{width:3.717000px;}
._7_c01038{width:5.208000px;}
._4_c01038{width:7.140000px;}
._f_c01038{width:8.157000px;}
._3_c01038{width:9.240000px;}
._d_c01038{width:11.040000px;}
._18_c01038{width:12.255000px;}
._0_c01038{width:13.440000px;}
._1_c01038{width:16.440000px;}
._1b_c01038{width:17.880000px;}
._13_c01038{width:19.152000px;}
._24_c01038{width:20.286000px;}
._11_c01038{width:22.323000px;}
._22_c01038{width:24.105000px;}
._b_c01038{width:25.389000px;}
._20_c01038{width:26.538000px;}
._21_c01038{width:31.143000px;}
._1d_c01038{width:32.520000px;}
._1c_c01038{width:33.531000px;}
._2_c01038{width:52.620000px;}
._1e_c01038{width:180.294000px;}
._1a_c01038{width:198.606000px;}
._12_c01038{width:246.480000px;}
.fc2_c01038{color:transparent;}
.fc1_c01038{color:rgb(128,128,128);}
.fc0_c01038{color:rgb(0,0,0);}
.fs2_c01038{font-size:45.000000px;}
.fs5_c01038{font-size:48.000000px;}
.fs3_c01038{font-size:57.000000px;}
.fs0_c01038{font-size:60.000000px;}
.fs1_c01038{font-size:63.000000px;}
.fs6_c01038{font-size:72.000000px;}
.fs4_c01038{font-size:93.000000px;}
.y0_c01038{bottom:0.000000px;}
.y40_c01038{bottom:3.105000px;}
.y3f_c01038{bottom:7.228355px;}
.y3e_c01038{bottom:193.035000px;}
.y1f_c01038{bottom:194.985000px;}
.y3d_c01038{bottom:211.635000px;}
.y1e_c01038{bottom:213.585000px;}
.y3c_c01038{bottom:229.185000px;}
.y3b_c01038{bottom:247.635000px;}
.y1d_c01038{bottom:249.435000px;}
.y3a_c01038{bottom:265.635000px;}
.y1c_c01038{bottom:265.935000px;}
.y39_c01038{bottom:284.385000px;}
.y1b_c01038{bottom:286.185000px;}
.y38_c01038{bottom:302.385000px;}
.y1a_c01038{bottom:302.985000px;}
.y37_c01038{bottom:319.935000px;}
.y19_c01038{bottom:321.885000px;}
.y36_c01038{bottom:339.135000px;}
.y18_c01038{bottom:339.885000px;}
.y35_c01038{bottom:357.285000px;}
.y17_c01038{bottom:358.035000px;}
.y34_c01038{bottom:375.285000px;}
.y16_c01038{bottom:375.885000px;}
.y15_c01038{bottom:392.835000px;}
.y33_c01038{bottom:394.185000px;}
.y32_c01038{bottom:409.035000px;}
.y14_c01038{bottom:411.435000px;}
.y13_c01038{bottom:428.835000px;}
.y31_c01038{bottom:430.335000px;}
.y12_c01038{bottom:447.435000px;}
.y30_c01038{bottom:449.085000px;}
.y11_c01038{bottom:465.435000px;}
.y2f_c01038{bottom:466.335000px;}
.y10_c01038{bottom:484.935000px;}
.y2e_c01038{bottom:485.235000px;}
.yf_c01038{bottom:501.885000px;}
.y2d_c01038{bottom:503.085000px;}
.ye_c01038{bottom:518.685000px;}
.y2c_c01038{bottom:521.385000px;}
.yd_c01038{bottom:537.285000px;}
.y2b_c01038{bottom:538.935000px;}
.yc_c01038{bottom:554.835000px;}
.y2a_c01038{bottom:557.835000px;}
.yb_c01038{bottom:573.285000px;}
.ya_c01038{bottom:591.885000px;}
.y29_c01038{bottom:592.935000px;}
.y9_c01038{bottom:610.785000px;}
.y28_c01038{bottom:611.235000px;}
.y8_c01038{bottom:627.435000px;}
.y27_c01038{bottom:629.085000px;}
.y7_c01038{bottom:645.885000px;}
.y26_c01038{bottom:647.985000px;}
.y6_c01038{bottom:663.435000px;}
.y25_c01038{bottom:666.885000px;}
.y5_c01038{bottom:682.035000px;}
.y24_c01038{bottom:685.035000px;}
.y4_c01038{bottom:700.935000px;}
.y23_c01038{bottom:703.935000px;}
.y3_c01038{bottom:718.485000px;}
.y22_c01038{bottom:737.085000px;}
.y2_c01038{bottom:754.635000px;}
.y21_c01038{bottom:758.685000px;}
.y1_c01038{bottom:773.235000px;}
.y20_c01038{bottom:778.185000px;}
.h9_c01038{height:13.200074px;}
.ha_c01038{height:43.804688px;}
.h7_c01038{height:51.216000px;}
.h2_c01038{height:62.880000px;}
.h5_c01038{height:64.020000px;}
.h4_c01038{height:66.024000px;}
.h3_c01038{height:67.221000px;}
.h8_c01038{height:70.664062px;}
.h6_c01038{height:96.996094px;}
.h0_c01038{height:818.625000px;}
.h1_c01038{height:819.000000px;}
.w2_c01038{width:104.875500px;}
.w1_c01038{width:561.000000px;}
.w0_c01038{width:561.075000px;}
.x0_c01038{left:0.000000px;}
.x3_c01038{left:42.150000px;}
.x9_c01038{left:43.500000px;}
.xc_c01038{left:45.600000px;}
.xd_c01038{left:47.250000px;}
.x10_c01038{left:49.050000px;}
.xf_c01038{left:50.250000px;}
.x12_c01038{left:52.650000px;}
.x4_c01038{left:56.400000px;}
.x2_c01038{left:59.400000px;}
.x7_c01038{left:60.750000px;}
.x8_c01038{left:62.100000px;}
.xa_c01038{left:63.150000px;}
.xb_c01038{left:65.550000px;}
.xe_c01038{left:67.200000px;}
.x11_c01038{left:91.500000px;}
.x6_c01038{left:118.200000px;}
.x5_c01038{left:127.950000px;}
.x1_c01038{left:131.550000px;}
.x20_c01038{left:232.351730px;}
.x13_c01038{left:280.500000px;}
.x19_c01038{left:281.550000px;}
.x1a_c01038{left:282.900000px;}
.x1c_c01038{left:284.400000px;}
.x1f_c01038{left:285.900000px;}
.x16_c01038{left:294.600000px;}
.x17_c01038{left:296.100000px;}
.x14_c01038{left:297.750000px;}
.x1b_c01038{left:300.000000px;}
.x1d_c01038{left:301.350000px;}
.x1e_c01038{left:302.400000px;}
.x15_c01038{left:303.450000px;}
.x18_c01038{left:333.900000px;}
@media print{
.v0_c01038{vertical-align:0.000000pt;}
.ls5_c01038{letter-spacing:0.000000pt;}
.ls4_c01038{letter-spacing:1.066667pt;}
.ls8_c01038{letter-spacing:2.666667pt;}
.ls2_c01038{letter-spacing:4.266667pt;}
.ls6_c01038{letter-spacing:5.333333pt;}
.ls3_c01038{letter-spacing:5.813333pt;}
.ls0_c01038{letter-spacing:6.933333pt;}
.ls7_c01038{letter-spacing:8.000000pt;}
.ls1_c01038{letter-spacing:17.440000pt;}
.ws1_c01038{word-spacing:-31.373333pt;}
.ws4_c01038{word-spacing:-22.981333pt;}
.ws2_c01038{word-spacing:-20.586667pt;}
.ws7_c01038{word-spacing:-16.000000pt;}
.ws3_c01038{word-spacing:-13.386667pt;}
.ws6_c01038{word-spacing:-13.333333pt;}
.ws0_c01038{word-spacing:-13.216000pt;}
.ws5_c01038{word-spacing:-12.746667pt;}
.ws8_c01038{word-spacing:0.000000pt;}
._23_c01038{margin-left:-16.402667pt;}
._1f_c01038{margin-left:-15.040000pt;}
._19_c01038{margin-left:-13.722667pt;}
._9_c01038{margin-left:-11.704000pt;}
._17_c01038{margin-left:-10.552000pt;}
._16_c01038{margin-left:-9.120000pt;}
._14_c01038{margin-left:-7.466667pt;}
._8_c01038{margin-left:-6.570667pt;}
._15_c01038{margin-left:-5.576000pt;}
._a_c01038{margin-left:-3.845333pt;}
._c_c01038{margin-left:-2.520000pt;}
._10_c01038{margin-left:-1.120000pt;}
._e_c01038{width:1.386667pt;}
._6_c01038{width:2.296000pt;}
._5_c01038{width:3.304000pt;}
._7_c01038{width:4.629333pt;}
._4_c01038{width:6.346667pt;}
._f_c01038{width:7.250667pt;}
._3_c01038{width:8.213333pt;}
._d_c01038{width:9.813333pt;}
._18_c01038{width:10.893333pt;}
._0_c01038{width:11.946667pt;}
._1_c01038{width:14.613333pt;}
._1b_c01038{width:15.893333pt;}
._13_c01038{width:17.024000pt;}
._24_c01038{width:18.032000pt;}
._11_c01038{width:19.842667pt;}
._22_c01038{width:21.426667pt;}
._b_c01038{width:22.568000pt;}
._20_c01038{width:23.589333pt;}
._21_c01038{width:27.682667pt;}
._1d_c01038{width:28.906667pt;}
._1c_c01038{width:29.805333pt;}
._2_c01038{width:46.773333pt;}
._1e_c01038{width:160.261333pt;}
._1a_c01038{width:176.538667pt;}
._12_c01038{width:219.093333pt;}
.fs2_c01038{font-size:40.000000pt;}
.fs5_c01038{font-size:42.666667pt;}
.fs3_c01038{font-size:50.666667pt;}
.fs0_c01038{font-size:53.333333pt;}
.fs1_c01038{font-size:56.000000pt;}
.fs6_c01038{font-size:64.000000pt;}
.fs4_c01038{font-size:82.666667pt;}
.y0_c01038{bottom:0.000000pt;}
.y40_c01038{bottom:2.760000pt;}
.y3f_c01038{bottom:6.425204pt;}
.y3e_c01038{bottom:171.586667pt;}
.y1f_c01038{bottom:173.320000pt;}
.y3d_c01038{bottom:188.120000pt;}
.y1e_c01038{bottom:189.853333pt;}
.y3c_c01038{bottom:203.720000pt;}
.y3b_c01038{bottom:220.120000pt;}
.y1d_c01038{bottom:221.720000pt;}
.y3a_c01038{bottom:236.120000pt;}
.y1c_c01038{bottom:236.386667pt;}
.y39_c01038{bottom:252.786667pt;}
.y1b_c01038{bottom:254.386667pt;}
.y38_c01038{bottom:268.786667pt;}
.y1a_c01038{bottom:269.320000pt;}
.y37_c01038{bottom:284.386667pt;}
.y19_c01038{bottom:286.120000pt;}
.y36_c01038{bottom:301.453333pt;}
.y18_c01038{bottom:302.120000pt;}
.y35_c01038{bottom:317.586667pt;}
.y17_c01038{bottom:318.253333pt;}
.y34_c01038{bottom:333.586667pt;}
.y16_c01038{bottom:334.120000pt;}
.y15_c01038{bottom:349.186667pt;}
.y33_c01038{bottom:350.386667pt;}
.y32_c01038{bottom:363.586667pt;}
.y14_c01038{bottom:365.720000pt;}
.y13_c01038{bottom:381.186667pt;}
.y31_c01038{bottom:382.520000pt;}
.y12_c01038{bottom:397.720000pt;}
.y30_c01038{bottom:399.186667pt;}
.y11_c01038{bottom:413.720000pt;}
.y2f_c01038{bottom:414.520000pt;}
.y10_c01038{bottom:431.053333pt;}
.y2e_c01038{bottom:431.320000pt;}
.yf_c01038{bottom:446.120000pt;}
.y2d_c01038{bottom:447.186667pt;}
.ye_c01038{bottom:461.053333pt;}
.y2c_c01038{bottom:463.453333pt;}
.yd_c01038{bottom:477.586667pt;}
.y2b_c01038{bottom:479.053333pt;}
.yc_c01038{bottom:493.186667pt;}
.y2a_c01038{bottom:495.853333pt;}
.yb_c01038{bottom:509.586667pt;}
.ya_c01038{bottom:526.120000pt;}
.y29_c01038{bottom:527.053333pt;}
.y9_c01038{bottom:542.920000pt;}
.y28_c01038{bottom:543.320000pt;}
.y8_c01038{bottom:557.720000pt;}
.y27_c01038{bottom:559.186667pt;}
.y7_c01038{bottom:574.120000pt;}
.y26_c01038{bottom:575.986667pt;}
.y6_c01038{bottom:589.720000pt;}
.y25_c01038{bottom:592.786667pt;}
.y5_c01038{bottom:606.253333pt;}
.y24_c01038{bottom:608.920000pt;}
.y4_c01038{bottom:623.053333pt;}
.y23_c01038{bottom:625.720000pt;}
.y3_c01038{bottom:638.653333pt;}
.y22_c01038{bottom:655.186667pt;}
.y2_c01038{bottom:670.786667pt;}
.y21_c01038{bottom:674.386667pt;}
.y1_c01038{bottom:687.320000pt;}
.y20_c01038{bottom:691.720000pt;}
.h9_c01038{height:11.733399pt;}
.ha_c01038{height:38.937500pt;}
.h7_c01038{height:45.525333pt;}
.h2_c01038{height:55.893333pt;}
.h5_c01038{height:56.906667pt;}
.h4_c01038{height:58.688000pt;}
.h3_c01038{height:59.752000pt;}
.h8_c01038{height:62.812500pt;}
.h6_c01038{height:86.218750pt;}
.h0_c01038{height:727.666667pt;}
.h1_c01038{height:728.000000pt;}
.w2_c01038{width:93.222667pt;}
.w1_c01038{width:498.666667pt;}
.w0_c01038{width:498.733333pt;}
.x0_c01038{left:0.000000pt;}
.x3_c01038{left:37.466667pt;}
.x9_c01038{left:38.666667pt;}
.xc_c01038{left:40.533333pt;}
.xd_c01038{left:42.000000pt;}
.x10_c01038{left:43.600000pt;}
.xf_c01038{left:44.666667pt;}
.x12_c01038{left:46.800000pt;}
.x4_c01038{left:50.133333pt;}
.x2_c01038{left:52.800000pt;}
.x7_c01038{left:54.000000pt;}
.x8_c01038{left:55.200000pt;}
.xa_c01038{left:56.133333pt;}
.xb_c01038{left:58.266667pt;}
.xe_c01038{left:59.733333pt;}
.x11_c01038{left:81.333333pt;}
.x6_c01038{left:105.066667pt;}
.x5_c01038{left:113.733333pt;}
.x1_c01038{left:116.933333pt;}
.x20_c01038{left:206.534871pt;}
.x13_c01038{left:249.333333pt;}
.x19_c01038{left:250.266667pt;}
.x1a_c01038{left:251.466667pt;}
.x1c_c01038{left:252.800000pt;}
.x1f_c01038{left:254.133333pt;}
.x16_c01038{left:261.866667pt;}
.x17_c01038{left:263.200000pt;}
.x14_c01038{left:264.666667pt;}
.x1b_c01038{left:266.666667pt;}
.x1d_c01038{left:267.866667pt;}
.x1e_c01038{left:268.800000pt;}
.x15_c01038{left:269.733333pt;}
.x18_c01038{left:296.800000pt;}
}





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

.ir_c01039:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01039{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01039;src:url('chunks/assets/font_ac026a84ae16be63bbfdc33f.woff2')format("woff");}.ff1_c01039{font-family:ff1_c01039;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01039;src:url('chunks/assets/font_15b017de23268b23eda7498d.woff2')format("woff");}.ff2_c01039{font-family:ff2_c01039;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01039;src:url('chunks/assets/font_f2cb4a2bd938d52947354813.woff2')format("woff");}.ff3_c01039{font-family:ff3_c01039;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01039;src:url('chunks/assets/font_c3ea1c61862d5c3df59038cf.woff2')format("woff");}.ff4_c01039{font-family:ff4_c01039;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01039;src:url('chunks/assets/font_0e8f29955c9fcabf0d16e6ea.woff2')format("woff");}.ff5_c01039{font-family:ff5_c01039;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01039;src:url('chunks/assets/font_83dc376944c37fe6395d6f0f.woff2')format("woff");}.ff6_c01039{font-family:ff6_c01039;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01039;src:url('chunks/assets/font_f3790c11fa1b72b5ebd5d0f3.woff2')format("woff");}.ff7_c01039{font-family:ff7_c01039;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c01039;src:url('chunks/assets/font_3325e2e6ff173a40a66557f0.woff2')format("woff");}.ff8_c01039{font-family:ff8_c01039;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c01039;src:url('chunks/assets/font_e1ea27e90b03a808cdbf4684.woff2')format("woff");}.ff9_c01039{font-family:ff9_c01039;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:ffa_c01039;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ffa_c01039{font-family:ffa_c01039;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01039{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c01039{vertical-align:-76.800000px;}
.v3_c01039{vertical-align:-72.600000px;}
.v2_c01039{vertical-align:-61.800000px;}
.v0_c01039{vertical-align:0.000000px;}
.ls9_c01039{letter-spacing:-6.000000px;}
.ls8_c01039{letter-spacing:0.000000px;}
.ls5_c01039{letter-spacing:1.200000px;}
.ls1_c01039{letter-spacing:3.000000px;}
.ls0_c01039{letter-spacing:6.000000px;}
.ls7_c01039{letter-spacing:9.000000px;}
.ls6_c01039{letter-spacing:10.005000px;}
.ls3_c01039{letter-spacing:13.800000px;}
.ls2_c01039{letter-spacing:14.100000px;}
.ls4_c01039{letter-spacing:87.624000px;}
.sc__c01039{text-shadow:none;}
.sc0_c01039{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01039{-webkit-text-stroke:0px transparent;}
.sc0_c01039{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c01039{word-spacing:-39.540000px;}
.ws7_c01039{word-spacing:-35.295000px;}
.ws6_c01039{word-spacing:-30.540000px;}
.ws8_c01039{word-spacing:-25.854000px;}
.ws2_c01039{word-spacing:-18.000000px;}
.ws0_c01039{word-spacing:-17.250000px;}
.ws4_c01039{word-spacing:-15.813000px;}
.ws9_c01039{word-spacing:-1.320000px;}
.ws5_c01039{word-spacing:0.000000px;}
.ws1_c01039{word-spacing:169.080000px;}
._25_c01039{margin-left:-41.712000px;}
._27_c01039{margin-left:-23.607000px;}
._22_c01039{margin-left:-20.520000px;}
._1f_c01039{margin-left:-19.467000px;}
._28_c01039{margin-left:-13.548000px;}
._1d_c01039{margin-left:-10.332000px;}
._23_c01039{margin-left:-9.309000px;}
._20_c01039{margin-left:-7.746000px;}
._1a_c01039{margin-left:-6.042000px;}
._16_c01039{margin-left:-4.362000px;}
._17_c01039{margin-left:-3.006000px;}
._18_c01039{margin-left:-1.314000px;}
._12_c01039{width:1.083000px;}
._15_c01039{width:2.856000px;}
._e_c01039{width:4.032000px;}
._b_c01039{width:5.460000px;}
._c_c01039{width:6.762000px;}
._0_c01039{width:8.715000px;}
._f_c01039{width:10.137000px;}
._10_c01039{width:11.574000px;}
._3_c01039{width:12.915000px;}
._1_c01039{width:14.805000px;}
._2_c01039{width:16.065000px;}
._11_c01039{width:18.216000px;}
._1e_c01039{width:19.593000px;}
._14_c01039{width:21.120000px;}
._6_c01039{width:22.260000px;}
._1c_c01039{width:23.817000px;}
._19_c01039{width:24.867000px;}
._d_c01039{width:27.252000px;}
._5_c01039{width:28.350000px;}
._9_c01039{width:29.535000px;}
._8_c01039{width:30.975000px;}
._1b_c01039{width:34.056000px;}
._21_c01039{width:37.626000px;}
._13_c01039{width:44.100000px;}
._26_c01039{width:55.824000px;}
._4_c01039{width:72.240000px;}
._7_c01039{width:92.505000px;}
._a_c01039{width:100.905000px;}
._24_c01039{width:235.602000px;}
._29_c01039{width:343.140000px;}
.fc2_c01039{color:transparent;}
.fc1_c01039{color:rgb(128,128,128);}
.fc0_c01039{color:rgb(0,0,0);}
.fs8_c01039{font-size:24.000000px;}
.fs7_c01039{font-size:45.000000px;}
.fsa_c01039{font-size:48.000000px;}
.fs5_c01039{font-size:54.000000px;}
.fs2_c01039{font-size:57.000000px;}
.fs3_c01039{font-size:60.000000px;}
.fs4_c01039{font-size:63.000000px;}
.fs6_c01039{font-size:69.000000px;}
.fs1_c01039{font-size:72.000000px;}
.fs9_c01039{font-size:93.000000px;}
.fs0_c01039{font-size:105.000000px;}
.y0_c01039{bottom:0.000000px;}
.y41_c01039{bottom:3.105000px;}
.y40_c01039{bottom:7.228371px;}
.y21_c01039{bottom:52.365000px;}
.y3f_c01039{bottom:54.315000px;}
.y3e_c01039{bottom:71.865000px;}
.y20_c01039{bottom:89.865000px;}
.y3d_c01039{bottom:90.165000px;}
.y1f_c01039{bottom:107.715000px;}
.y3c_c01039{bottom:109.065000px;}
.y1e_c01039{bottom:126.615000px;}
.y3b_c01039{bottom:127.665000px;}
.y1d_c01039{bottom:142.815000px;}
.y3a_c01039{bottom:144.765000px;}
.y1c_c01039{bottom:163.665000px;}
.y39_c01039{bottom:163.815000px;}
.y38_c01039{bottom:180.915000px;}
.y1b_c01039{bottom:181.365000px;}
.y1a_c01039{bottom:198.765000px;}
.y37_c01039{bottom:199.215000px;}
.y19_c01039{bottom:217.815000px;}
.y36_c01039{bottom:235.665000px;}
.y18_c01039{bottom:236.715000px;}
.y35_c01039{bottom:254.265000px;}
.y17_c01039{bottom:254.565000px;}
.y34_c01039{bottom:272.715000px;}
.y16_c01039{bottom:273.015000px;}
.y33_c01039{bottom:291.015000px;}
.y15_c01039{bottom:291.315000px;}
.y32_c01039{bottom:308.865000px;}
.y14_c01039{bottom:327.165000px;}
.y31_c01039{bottom:328.065000px;}
.y13_c01039{bottom:345.915000px;}
.y12_c01039{bottom:364.215000px;}
.y30_c01039{bottom:364.815000px;}
.y2f_c01039{bottom:382.365000px;}
.y11_c01039{bottom:400.365000px;}
.y2e_c01039{bottom:401.265000px;}
.y10_c01039{bottom:418.215000px;}
.y2d_c01039{bottom:419.265000px;}
.yf_c01039{bottom:435.765000px;}
.y2c_c01039{bottom:437.115000px;}
.y2b_c01039{bottom:454.665000px;}
.ye_c01039{bottom:470.115000px;}
.y2a_c01039{bottom:474.165000px;}
.yd_c01039{bottom:491.115000px;}
.yc_c01039{bottom:509.715000px;}
.y29_c01039{bottom:528.615000px;}
.y28_c01039{bottom:545.115000px;}
.yb_c01039{bottom:547.065000px;}
.y27_c01039{bottom:563.265000px;}
.ya_c01039{bottom:563.715000px;}
.y26_c01039{bottom:580.965000px;}
.y9_c01039{bottom:582.315000px;}
.y25_c01039{bottom:600.165000px;}
.y8_c01039{bottom:600.765000px;}
.y7_c01039{bottom:617.415000px;}
.y24_c01039{bottom:635.265000px;}
.y6_c01039{bottom:635.865000px;}
.y5_c01039{bottom:655.065000px;}
.y23_c01039{bottom:655.215000px;}
.y22_c01039{bottom:672.015000px;}
.y4_c01039{bottom:672.615000px;}
.y3_c01039{bottom:709.215000px;}
.y2_c01039{bottom:739.815000px;}
.y1_c01039{bottom:770.265000px;}
.ha_c01039{height:13.200074px;}
.hb_c01039{height:43.804688px;}
.h4_c01039{height:55.914551px;}
.h5_c01039{height:62.880000px;}
.h9_c01039{height:64.020000px;}
.h6_c01039{height:66.024000px;}
.h7_c01039{height:70.664062px;}
.h3_c01039{height:75.456000px;}
.h8_c01039{height:96.996094px;}
.h2_c01039{height:110.040000px;}
.h0_c01039{height:848.625000px;}
.h1_c01039{height:849.000000px;}
.w2_c01039{width:104.875500px;}
.w1_c01039{width:579.750000px;}
.w0_c01039{width:579.975000px;}
.x0_c01039{left:0.000000px;}
.xd_c01039{left:87.150000px;}
.xf_c01039{left:88.200000px;}
.xc_c01039{left:89.850000px;}
.x9_c01039{left:91.200000px;}
.xa_c01039{left:92.850000px;}
.x5_c01039{left:94.200000px;}
.x1_c01039{left:96.900000px;}
.x10_c01039{left:103.350000px;}
.x11_c01039{left:105.300000px;}
.xe_c01039{left:106.950000px;}
.x8_c01039{left:108.750000px;}
.xb_c01039{left:110.100000px;}
.x6_c01039{left:112.050000px;}
.x2_c01039{left:140.700000px;}
.x7_c01039{left:147.600000px;}
.x4_c01039{left:170.400000px;}
.x23_c01039{left:241.801758px;}
.x3_c01039{left:274.050000px;}
.x22_c01039{left:323.400000px;}
.x1e_c01039{left:325.050000px;}
.x14_c01039{left:328.350000px;}
.x17_c01039{left:329.700000px;}
.x12_c01039{left:331.350000px;}
.x1b_c01039{left:332.700000px;}
.x1d_c01039{left:342.450000px;}
.x16_c01039{left:345.150000px;}
.x13_c01039{left:346.950000px;}
.x1a_c01039{left:350.400000px;}
.x19_c01039{left:352.050000px;}
.x15_c01039{left:373.950000px;}
.x1f_c01039{left:399.000000px;}
.x18_c01039{left:401.850000px;}
.x20_c01039{left:405.000000px;}
.x21_c01039{left:407.700000px;}
.x1c_c01039{left:412.650000px;}
@media print{
.v1_c01039{vertical-align:-68.266667pt;}
.v3_c01039{vertical-align:-64.533333pt;}
.v2_c01039{vertical-align:-54.933333pt;}
.v0_c01039{vertical-align:0.000000pt;}
.ls9_c01039{letter-spacing:-5.333333pt;}
.ls8_c01039{letter-spacing:0.000000pt;}
.ls5_c01039{letter-spacing:1.066667pt;}
.ls1_c01039{letter-spacing:2.666667pt;}
.ls0_c01039{letter-spacing:5.333333pt;}
.ls7_c01039{letter-spacing:8.000000pt;}
.ls6_c01039{letter-spacing:8.893333pt;}
.ls3_c01039{letter-spacing:12.266667pt;}
.ls2_c01039{letter-spacing:12.533333pt;}
.ls4_c01039{letter-spacing:77.888000pt;}
.ws3_c01039{word-spacing:-35.146667pt;}
.ws7_c01039{word-spacing:-31.373333pt;}
.ws6_c01039{word-spacing:-27.146667pt;}
.ws8_c01039{word-spacing:-22.981333pt;}
.ws2_c01039{word-spacing:-16.000000pt;}
.ws0_c01039{word-spacing:-15.333333pt;}
.ws4_c01039{word-spacing:-14.056000pt;}
.ws9_c01039{word-spacing:-1.173333pt;}
.ws5_c01039{word-spacing:0.000000pt;}
.ws1_c01039{word-spacing:150.293333pt;}
._25_c01039{margin-left:-37.077333pt;}
._27_c01039{margin-left:-20.984000pt;}
._22_c01039{margin-left:-18.240000pt;}
._1f_c01039{margin-left:-17.304000pt;}
._28_c01039{margin-left:-12.042667pt;}
._1d_c01039{margin-left:-9.184000pt;}
._23_c01039{margin-left:-8.274667pt;}
._20_c01039{margin-left:-6.885333pt;}
._1a_c01039{margin-left:-5.370667pt;}
._16_c01039{margin-left:-3.877333pt;}
._17_c01039{margin-left:-2.672000pt;}
._18_c01039{margin-left:-1.168000pt;}
._12_c01039{width:0.962667pt;}
._15_c01039{width:2.538667pt;}
._e_c01039{width:3.584000pt;}
._b_c01039{width:4.853333pt;}
._c_c01039{width:6.010667pt;}
._0_c01039{width:7.746667pt;}
._f_c01039{width:9.010667pt;}
._10_c01039{width:10.288000pt;}
._3_c01039{width:11.480000pt;}
._1_c01039{width:13.160000pt;}
._2_c01039{width:14.280000pt;}
._11_c01039{width:16.192000pt;}
._1e_c01039{width:17.416000pt;}
._14_c01039{width:18.773333pt;}
._6_c01039{width:19.786667pt;}
._1c_c01039{width:21.170667pt;}
._19_c01039{width:22.104000pt;}
._d_c01039{width:24.224000pt;}
._5_c01039{width:25.200000pt;}
._9_c01039{width:26.253333pt;}
._8_c01039{width:27.533333pt;}
._1b_c01039{width:30.272000pt;}
._21_c01039{width:33.445333pt;}
._13_c01039{width:39.200000pt;}
._26_c01039{width:49.621333pt;}
._4_c01039{width:64.213333pt;}
._7_c01039{width:82.226667pt;}
._a_c01039{width:89.693333pt;}
._24_c01039{width:209.424000pt;}
._29_c01039{width:305.013333pt;}
.fs8_c01039{font-size:21.333333pt;}
.fs7_c01039{font-size:40.000000pt;}
.fsa_c01039{font-size:42.666667pt;}
.fs5_c01039{font-size:48.000000pt;}
.fs2_c01039{font-size:50.666667pt;}
.fs3_c01039{font-size:53.333333pt;}
.fs4_c01039{font-size:56.000000pt;}
.fs6_c01039{font-size:61.333333pt;}
.fs1_c01039{font-size:64.000000pt;}
.fs9_c01039{font-size:82.666667pt;}
.fs0_c01039{font-size:93.333333pt;}
.y0_c01039{bottom:0.000000pt;}
.y41_c01039{bottom:2.760000pt;}
.y40_c01039{bottom:6.425219pt;}
.y21_c01039{bottom:46.546667pt;}
.y3f_c01039{bottom:48.280000pt;}
.y3e_c01039{bottom:63.880000pt;}
.y20_c01039{bottom:79.880000pt;}
.y3d_c01039{bottom:80.146667pt;}
.y1f_c01039{bottom:95.746667pt;}
.y3c_c01039{bottom:96.946667pt;}
.y1e_c01039{bottom:112.546667pt;}
.y3b_c01039{bottom:113.480000pt;}
.y1d_c01039{bottom:126.946667pt;}
.y3a_c01039{bottom:128.680000pt;}
.y1c_c01039{bottom:145.480000pt;}
.y39_c01039{bottom:145.613333pt;}
.y38_c01039{bottom:160.813333pt;}
.y1b_c01039{bottom:161.213333pt;}
.y1a_c01039{bottom:176.680000pt;}
.y37_c01039{bottom:177.080000pt;}
.y19_c01039{bottom:193.613333pt;}
.y36_c01039{bottom:209.480000pt;}
.y18_c01039{bottom:210.413333pt;}
.y35_c01039{bottom:226.013333pt;}
.y17_c01039{bottom:226.280000pt;}
.y34_c01039{bottom:242.413333pt;}
.y16_c01039{bottom:242.680000pt;}
.y33_c01039{bottom:258.680000pt;}
.y15_c01039{bottom:258.946667pt;}
.y32_c01039{bottom:274.546667pt;}
.y14_c01039{bottom:290.813333pt;}
.y31_c01039{bottom:291.613333pt;}
.y13_c01039{bottom:307.480000pt;}
.y12_c01039{bottom:323.746667pt;}
.y30_c01039{bottom:324.280000pt;}
.y2f_c01039{bottom:339.880000pt;}
.y11_c01039{bottom:355.880000pt;}
.y2e_c01039{bottom:356.680000pt;}
.y10_c01039{bottom:371.746667pt;}
.y2d_c01039{bottom:372.680000pt;}
.yf_c01039{bottom:387.346667pt;}
.y2c_c01039{bottom:388.546667pt;}
.y2b_c01039{bottom:404.146667pt;}
.ye_c01039{bottom:417.880000pt;}
.y2a_c01039{bottom:421.480000pt;}
.yd_c01039{bottom:436.546667pt;}
.yc_c01039{bottom:453.080000pt;}
.y29_c01039{bottom:469.880000pt;}
.y28_c01039{bottom:484.546667pt;}
.yb_c01039{bottom:486.280000pt;}
.y27_c01039{bottom:500.680000pt;}
.ya_c01039{bottom:501.080000pt;}
.y26_c01039{bottom:516.413333pt;}
.y9_c01039{bottom:517.613333pt;}
.y25_c01039{bottom:533.480000pt;}
.y8_c01039{bottom:534.013333pt;}
.y7_c01039{bottom:548.813333pt;}
.y24_c01039{bottom:564.680000pt;}
.y6_c01039{bottom:565.213333pt;}
.y5_c01039{bottom:582.280000pt;}
.y23_c01039{bottom:582.413333pt;}
.y22_c01039{bottom:597.346667pt;}
.y4_c01039{bottom:597.880000pt;}
.y3_c01039{bottom:630.413333pt;}
.y2_c01039{bottom:657.613333pt;}
.y1_c01039{bottom:684.680000pt;}
.ha_c01039{height:11.733399pt;}
.hb_c01039{height:38.937500pt;}
.h4_c01039{height:49.701823pt;}
.h5_c01039{height:55.893333pt;}
.h9_c01039{height:56.906667pt;}
.h6_c01039{height:58.688000pt;}
.h7_c01039{height:62.812500pt;}
.h3_c01039{height:67.072000pt;}
.h8_c01039{height:86.218750pt;}
.h2_c01039{height:97.813333pt;}
.h0_c01039{height:754.333333pt;}
.h1_c01039{height:754.666667pt;}
.w2_c01039{width:93.222667pt;}
.w1_c01039{width:515.333333pt;}
.w0_c01039{width:515.533333pt;}
.x0_c01039{left:0.000000pt;}
.xd_c01039{left:77.466667pt;}
.xf_c01039{left:78.400000pt;}
.xc_c01039{left:79.866667pt;}
.x9_c01039{left:81.066667pt;}
.xa_c01039{left:82.533333pt;}
.x5_c01039{left:83.733333pt;}
.x1_c01039{left:86.133333pt;}
.x10_c01039{left:91.866667pt;}
.x11_c01039{left:93.600000pt;}
.xe_c01039{left:95.066667pt;}
.x8_c01039{left:96.666667pt;}
.xb_c01039{left:97.866667pt;}
.x6_c01039{left:99.600000pt;}
.x2_c01039{left:125.066667pt;}
.x7_c01039{left:131.200000pt;}
.x4_c01039{left:151.466667pt;}
.x23_c01039{left:214.934896pt;}
.x3_c01039{left:243.600000pt;}
.x22_c01039{left:287.466667pt;}
.x1e_c01039{left:288.933333pt;}
.x14_c01039{left:291.866667pt;}
.x17_c01039{left:293.066667pt;}
.x12_c01039{left:294.533333pt;}
.x1b_c01039{left:295.733333pt;}
.x1d_c01039{left:304.400000pt;}
.x16_c01039{left:306.800000pt;}
.x13_c01039{left:308.400000pt;}
.x1a_c01039{left:311.466667pt;}
.x19_c01039{left:312.933333pt;}
.x15_c01039{left:332.400000pt;}
.x1f_c01039{left:354.666667pt;}
.x18_c01039{left:357.200000pt;}
.x20_c01039{left:360.000000pt;}
.x21_c01039{left:362.400000pt;}
.x1c_c01039{left:366.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_c01040 {
    display:none;
  }
  .loading-indicator_c01040.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01040 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01040 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01040" -> "#page-container .classname_c01040")
 */
.pf_c01040 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01040 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01040.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01040 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01040 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01040 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01040 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01040 {overflow:visible;}
  }
}
.c_c01040 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01040 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01040:after { /* webkit #35443 */
  content: '';
}
.t_c01040:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01040 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01040 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01040 { /* info for Javascript */
  display:none;
}
.l_c01040 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01040 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01040 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01040:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01040{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01040;src:url('chunks/assets/font_127a6b22ad05553ec2997c21.woff2')format("woff");}.ff1_c01040{font-family:ff1_c01040;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01040;src:url('chunks/assets/font_b7934affc032b0e888139c4c.woff2')format("woff");}.ff2_c01040{font-family:ff2_c01040;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01040;src:url('chunks/assets/font_a3f24b531359968e967c7f11.woff2')format("woff");}.ff3_c01040{font-family:ff3_c01040;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01040;src:url('chunks/assets/font_3a1da1a4d47e62ee37e0b9a6.woff2')format("woff");}.ff4_c01040{font-family:ff4_c01040;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01040;src:url('chunks/assets/font_ccce27f920136aed010c32ed.woff2')format("woff");}.ff5_c01040{font-family:ff5_c01040;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01040;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff6_c01040{font-family:ff6_c01040;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01040;src:url('chunks/assets/font_95d44d816e274a1600e91c3a.woff2')format("woff");}.ff7_c01040{font-family:ff7_c01040;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c01040;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff8_c01040{font-family:ff8_c01040;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01040{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c01040{vertical-align:-66.000000px;}
.v0_c01040{vertical-align:0.000000px;}
.ls6_c01040{letter-spacing:0.000000px;}
.ls0_c01040{letter-spacing:0.048000px;}
.ls5_c01040{letter-spacing:3.000000px;}
.ls8_c01040{letter-spacing:6.000000px;}
.ls1_c01040{letter-spacing:7.800000px;}
.ls7_c01040{letter-spacing:9.000000px;}
.ls9_c01040{letter-spacing:12.000000px;}
.ls3_c01040{letter-spacing:17.400000px;}
.ls4_c01040{letter-spacing:20.163000px;}
.ls2_c01040{letter-spacing:26.220000px;}
.sc__c01040{text-shadow:none;}
.sc0_c01040{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01040{-webkit-text-stroke:0px transparent;}
.sc0_c01040{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c01040{word-spacing:-27.000000px;}
.ws2_c01040{word-spacing:-23.160000px;}
.ws5_c01040{word-spacing:-21.000000px;}
.ws8_c01040{word-spacing:-16.500000px;}
.ws0_c01040{word-spacing:-15.060000px;}
.ws1_c01040{word-spacing:-14.160000px;}
.ws3_c01040{word-spacing:-13.452000px;}
.ws4_c01040{word-spacing:-12.291000px;}
.ws9_c01040{word-spacing:0.000000px;}
.ws6_c01040{word-spacing:86.580000px;}
._14_c01040{margin-left:-16.260000px;}
._17_c01040{margin-left:-14.040000px;}
._12_c01040{margin-left:-10.500000px;}
._10_c01040{margin-left:-9.480000px;}
._19_c01040{margin-left:-7.800000px;}
._f_c01040{margin-left:-6.420000px;}
._6_c01040{margin-left:-5.040000px;}
._8_c01040{margin-left:-3.300000px;}
._5_c01040{margin-left:-1.860000px;}
._4_c01040{width:1.980000px;}
._3_c01040{width:3.000000px;}
._2_c01040{width:4.080000px;}
._1_c01040{width:5.880000px;}
._0_c01040{width:7.440000px;}
._7_c01040{width:9.060000px;}
._9_c01040{width:10.740000px;}
._a_c01040{width:12.420000px;}
._d_c01040{width:13.440000px;}
._11_c01040{width:16.140000px;}
._15_c01040{width:17.484000px;}
._b_c01040{width:18.840000px;}
._16_c01040{width:22.707000px;}
._e_c01040{width:24.240000px;}
._18_c01040{width:25.380000px;}
._c_c01040{width:29.580000px;}
._13_c01040{width:77.580000px;}
._1a_c01040{width:206.700000px;}
.fc2_c01040{color:transparent;}
.fc1_c01040{color:rgb(128,128,128);}
.fc0_c01040{color:rgb(0,0,0);}
.fs6_c01040{font-size:24.000000px;}
.fs1_c01040{font-size:48.000000px;}
.fs5_c01040{font-size:51.000000px;}
.fs4_c01040{font-size:54.000000px;}
.fs2_c01040{font-size:57.000000px;}
.fs0_c01040{font-size:60.000000px;}
.fs7_c01040{font-size:63.000000px;}
.fs3_c01040{font-size:156.000000px;}
.y0_c01040{bottom:0.000000px;}
.y4d_c01040{bottom:3.105000px;}
.y4c_c01040{bottom:7.228371px;}
.y4b_c01040{bottom:40.515000px;}
.y4a_c01040{bottom:57.765000px;}
.y3a_c01040{bottom:59.415000px;}
.y39_c01040{bottom:76.065000px;}
.y49_c01040{bottom:76.665000px;}
.y38_c01040{bottom:94.215000px;}
.y48_c01040{bottom:94.815000px;}
.y47_c01040{bottom:111.015000px;}
.y37_c01040{bottom:131.265000px;}
.y46_c01040{bottom:131.415000px;}
.y36_c01040{bottom:148.515000px;}
.y45_c01040{bottom:148.965000px;}
.y44_c01040{bottom:166.515000px;}
.y35_c01040{bottom:166.815000px;}
.y43_c01040{bottom:184.665000px;}
.y34_c01040{bottom:202.815000px;}
.y42_c01040{bottom:202.965000px;}
.y33_c01040{bottom:220.815000px;}
.y41_c01040{bottom:221.115000px;}
.y40_c01040{bottom:238.365000px;}
.y32_c01040{bottom:239.265000px;}
.y3f_c01040{bottom:256.815000px;}
.y31_c01040{bottom:257.865000px;}
.y30_c01040{bottom:274.365000px;}
.y3e_c01040{bottom:291.915000px;}
.y2f_c01040{bottom:293.265000px;}
.y2e_c01040{bottom:310.815000px;}
.y3d_c01040{bottom:311.265000px;}
.y2d_c01040{bottom:328.065000px;}
.y3c_c01040{bottom:329.115000px;}
.y3b_c01040{bottom:346.665000px;}
.y2c_c01040{bottom:346.965000px;}
.y2b_c01040{bottom:364.815000px;}
.y17_c01040{bottom:381.465000px;}
.y2a_c01040{bottom:382.815000px;}
.y29_c01040{bottom:398.265000px;}
.y16_c01040{bottom:400.365000px;}
.y15_c01040{bottom:418.815000px;}
.y28_c01040{bottom:436.515000px;}
.y14_c01040{bottom:436.815000px;}
.y13_c01040{bottom:454.665000px;}
.y27_c01040{bottom:455.715000px;}
.y12_c01040{bottom:472.215000px;}
.y11_c01040{bottom:490.515000px;}
.y26_c01040{bottom:507.915000px;}
.y10_c01040{bottom:508.065000px;}
.yf_c01040{bottom:525.615000px;}
.y25_c01040{bottom:526.515000px;}
.ye_c01040{bottom:543.015000px;}
.y24_c01040{bottom:544.515000px;}
.yd_c01040{bottom:560.565000px;}
.y23_c01040{bottom:562.365000px;}
.yc_c01040{bottom:578.865000px;}
.y22_c01040{bottom:581.565000px;}
.yb_c01040{bottom:597.015000px;}
.ya_c01040{bottom:615.015000px;}
.y21_c01040{bottom:615.615000px;}
.y9_c01040{bottom:632.865000px;}
.y20_c01040{bottom:634.215000px;}
.y8_c01040{bottom:651.465000px;}
.y1f_c01040{bottom:653.115000px;}
.y7_c01040{bottom:668.265000px;}
.y1e_c01040{bottom:669.615000px;}
.y6_c01040{bottom:687.615000px;}
.y1d_c01040{bottom:687.915000px;}
.y5_c01040{bottom:705.165000px;}
.y1c_c01040{bottom:706.815000px;}
.y4_c01040{bottom:723.015000px;}
.y1b_c01040{bottom:724.365000px;}
.y3_c01040{bottom:740.865000px;}
.y1a_c01040{bottom:742.215000px;}
.y2_c01040{bottom:759.465000px;}
.y19_c01040{bottom:759.765000px;}
.y1_c01040{bottom:778.065000px;}
.y18_c01040{bottom:779.265000px;}
.ha_c01040{height:13.200074px;}
.h7_c01040{height:28.089844px;}
.hb_c01040{height:43.804688px;}
.h9_c01040{height:52.971680px;}
.h4_c01040{height:59.736000px;}
.h2_c01040{height:62.880000px;}
.h3_c01040{height:64.020000px;}
.h6_c01040{height:64.571777px;}
.h8_c01040{height:66.024000px;}
.h5_c01040{height:166.452000px;}
.h0_c01040{height:833.775000px;}
.h1_c01040{height:834.000000px;}
.w2_c01040{width:104.875500px;}
.w0_c01040{width:571.875000px;}
.w1_c01040{width:572.250000px;}
.x0_c01040{left:0.000000px;}
.x1d_c01040{left:35.400000px;}
.x1b_c01040{left:37.200000px;}
.x7_c01040{left:38.250000px;}
.xa_c01040{left:39.450000px;}
.x4_c01040{left:40.500000px;}
.x2_c01040{left:41.550000px;}
.x1c_c01040{left:42.600000px;}
.x1a_c01040{left:49.350000px;}
.x9_c01040{left:52.050000px;}
.x1_c01040{left:54.300000px;}
.xc_c01040{left:55.650000px;}
.x3_c01040{left:56.700000px;}
.x5_c01040{left:58.050000px;}
.xb_c01040{left:59.400000px;}
.x19_c01040{left:107.700000px;}
.x8_c01040{left:112.350000px;}
.x6_c01040{left:126.300000px;}
.x25_c01040{left:237.751740px;}
.x20_c01040{left:271.350000px;}
.x1f_c01040{left:273.750000px;}
.x16_c01040{left:275.400000px;}
.xf_c01040{left:277.050000px;}
.x11_c01040{left:279.150000px;}
.x21_c01040{left:282.150000px;}
.x22_c01040{left:288.000000px;}
.x1e_c01040{left:289.200000px;}
.xe_c01040{left:290.700000px;}
.x18_c01040{left:292.050000px;}
.x10_c01040{left:293.700000px;}
.x15_c01040{left:336.150000px;}
.xd_c01040{left:349.050000px;}
.x12_c01040{left:351.300000px;}
.x14_c01040{left:352.800000px;}
.x17_c01040{left:357.450000px;}
.x23_c01040{left:358.500000px;}
.x13_c01040{left:375.600000px;}
.x24_c01040{left:391.800000px;}
@media print{
.v1_c01040{vertical-align:-58.666667pt;}
.v0_c01040{vertical-align:0.000000pt;}
.ls6_c01040{letter-spacing:0.000000pt;}
.ls0_c01040{letter-spacing:0.042667pt;}
.ls5_c01040{letter-spacing:2.666667pt;}
.ls8_c01040{letter-spacing:5.333333pt;}
.ls1_c01040{letter-spacing:6.933333pt;}
.ls7_c01040{letter-spacing:8.000000pt;}
.ls9_c01040{letter-spacing:10.666667pt;}
.ls3_c01040{letter-spacing:15.466667pt;}
.ls4_c01040{letter-spacing:17.922667pt;}
.ls2_c01040{letter-spacing:23.306667pt;}
.ws7_c01040{word-spacing:-24.000000pt;}
.ws2_c01040{word-spacing:-20.586667pt;}
.ws5_c01040{word-spacing:-18.666667pt;}
.ws8_c01040{word-spacing:-14.666667pt;}
.ws0_c01040{word-spacing:-13.386667pt;}
.ws1_c01040{word-spacing:-12.586667pt;}
.ws3_c01040{word-spacing:-11.957333pt;}
.ws4_c01040{word-spacing:-10.925333pt;}
.ws9_c01040{word-spacing:0.000000pt;}
.ws6_c01040{word-spacing:76.960000pt;}
._14_c01040{margin-left:-14.453333pt;}
._17_c01040{margin-left:-12.480000pt;}
._12_c01040{margin-left:-9.333333pt;}
._10_c01040{margin-left:-8.426667pt;}
._19_c01040{margin-left:-6.933333pt;}
._f_c01040{margin-left:-5.706667pt;}
._6_c01040{margin-left:-4.480000pt;}
._8_c01040{margin-left:-2.933333pt;}
._5_c01040{margin-left:-1.653333pt;}
._4_c01040{width:1.760000pt;}
._3_c01040{width:2.666667pt;}
._2_c01040{width:3.626667pt;}
._1_c01040{width:5.226667pt;}
._0_c01040{width:6.613333pt;}
._7_c01040{width:8.053333pt;}
._9_c01040{width:9.546667pt;}
._a_c01040{width:11.040000pt;}
._d_c01040{width:11.946667pt;}
._11_c01040{width:14.346667pt;}
._15_c01040{width:15.541333pt;}
._b_c01040{width:16.746667pt;}
._16_c01040{width:20.184000pt;}
._e_c01040{width:21.546667pt;}
._18_c01040{width:22.560000pt;}
._c_c01040{width:26.293333pt;}
._13_c01040{width:68.960000pt;}
._1a_c01040{width:183.733333pt;}
.fs6_c01040{font-size:21.333333pt;}
.fs1_c01040{font-size:42.666667pt;}
.fs5_c01040{font-size:45.333333pt;}
.fs4_c01040{font-size:48.000000pt;}
.fs2_c01040{font-size:50.666667pt;}
.fs0_c01040{font-size:53.333333pt;}
.fs7_c01040{font-size:56.000000pt;}
.fs3_c01040{font-size:138.666667pt;}
.y0_c01040{bottom:0.000000pt;}
.y4d_c01040{bottom:2.760000pt;}
.y4c_c01040{bottom:6.425219pt;}
.y4b_c01040{bottom:36.013333pt;}
.y4a_c01040{bottom:51.346667pt;}
.y3a_c01040{bottom:52.813333pt;}
.y39_c01040{bottom:67.613333pt;}
.y49_c01040{bottom:68.146667pt;}
.y38_c01040{bottom:83.746667pt;}
.y48_c01040{bottom:84.280000pt;}
.y47_c01040{bottom:98.680000pt;}
.y37_c01040{bottom:116.680000pt;}
.y46_c01040{bottom:116.813333pt;}
.y36_c01040{bottom:132.013333pt;}
.y45_c01040{bottom:132.413333pt;}
.y44_c01040{bottom:148.013333pt;}
.y35_c01040{bottom:148.280000pt;}
.y43_c01040{bottom:164.146667pt;}
.y34_c01040{bottom:180.280000pt;}
.y42_c01040{bottom:180.413333pt;}
.y33_c01040{bottom:196.280000pt;}
.y41_c01040{bottom:196.546667pt;}
.y40_c01040{bottom:211.880000pt;}
.y32_c01040{bottom:212.680000pt;}
.y3f_c01040{bottom:228.280000pt;}
.y31_c01040{bottom:229.213333pt;}
.y30_c01040{bottom:243.880000pt;}
.y3e_c01040{bottom:259.480000pt;}
.y2f_c01040{bottom:260.680000pt;}
.y2e_c01040{bottom:276.280000pt;}
.y3d_c01040{bottom:276.680000pt;}
.y2d_c01040{bottom:291.613333pt;}
.y3c_c01040{bottom:292.546667pt;}
.y3b_c01040{bottom:308.146667pt;}
.y2c_c01040{bottom:308.413333pt;}
.y2b_c01040{bottom:324.280000pt;}
.y17_c01040{bottom:339.080000pt;}
.y2a_c01040{bottom:340.280000pt;}
.y29_c01040{bottom:354.013333pt;}
.y16_c01040{bottom:355.880000pt;}
.y15_c01040{bottom:372.280000pt;}
.y28_c01040{bottom:388.013333pt;}
.y14_c01040{bottom:388.280000pt;}
.y13_c01040{bottom:404.146667pt;}
.y27_c01040{bottom:405.080000pt;}
.y12_c01040{bottom:419.746667pt;}
.y11_c01040{bottom:436.013333pt;}
.y26_c01040{bottom:451.480000pt;}
.y10_c01040{bottom:451.613333pt;}
.yf_c01040{bottom:467.213333pt;}
.y25_c01040{bottom:468.013333pt;}
.ye_c01040{bottom:482.680000pt;}
.y24_c01040{bottom:484.013333pt;}
.yd_c01040{bottom:498.280000pt;}
.y23_c01040{bottom:499.880000pt;}
.yc_c01040{bottom:514.546667pt;}
.y22_c01040{bottom:516.946667pt;}
.yb_c01040{bottom:530.680000pt;}
.ya_c01040{bottom:546.680000pt;}
.y21_c01040{bottom:547.213333pt;}
.y9_c01040{bottom:562.546667pt;}
.y20_c01040{bottom:563.746667pt;}
.y8_c01040{bottom:579.080000pt;}
.y1f_c01040{bottom:580.546667pt;}
.y7_c01040{bottom:594.013333pt;}
.y1e_c01040{bottom:595.213333pt;}
.y6_c01040{bottom:611.213333pt;}
.y1d_c01040{bottom:611.480000pt;}
.y5_c01040{bottom:626.813333pt;}
.y1c_c01040{bottom:628.280000pt;}
.y4_c01040{bottom:642.680000pt;}
.y1b_c01040{bottom:643.880000pt;}
.y3_c01040{bottom:658.546667pt;}
.y1a_c01040{bottom:659.746667pt;}
.y2_c01040{bottom:675.080000pt;}
.y19_c01040{bottom:675.346667pt;}
.y1_c01040{bottom:691.613333pt;}
.y18_c01040{bottom:692.680000pt;}
.ha_c01040{height:11.733399pt;}
.h7_c01040{height:24.968750pt;}
.hb_c01040{height:38.937500pt;}
.h9_c01040{height:47.085938pt;}
.h4_c01040{height:53.098667pt;}
.h2_c01040{height:55.893333pt;}
.h3_c01040{height:56.906667pt;}
.h6_c01040{height:57.397135pt;}
.h8_c01040{height:58.688000pt;}
.h5_c01040{height:147.957333pt;}
.h0_c01040{height:741.133333pt;}
.h1_c01040{height:741.333333pt;}
.w2_c01040{width:93.222667pt;}
.w0_c01040{width:508.333333pt;}
.w1_c01040{width:508.666667pt;}
.x0_c01040{left:0.000000pt;}
.x1d_c01040{left:31.466667pt;}
.x1b_c01040{left:33.066667pt;}
.x7_c01040{left:34.000000pt;}
.xa_c01040{left:35.066667pt;}
.x4_c01040{left:36.000000pt;}
.x2_c01040{left:36.933333pt;}
.x1c_c01040{left:37.866667pt;}
.x1a_c01040{left:43.866667pt;}
.x9_c01040{left:46.266667pt;}
.x1_c01040{left:48.266667pt;}
.xc_c01040{left:49.466667pt;}
.x3_c01040{left:50.400000pt;}
.x5_c01040{left:51.600000pt;}
.xb_c01040{left:52.800000pt;}
.x19_c01040{left:95.733333pt;}
.x8_c01040{left:99.866667pt;}
.x6_c01040{left:112.266667pt;}
.x25_c01040{left:211.334880pt;}
.x20_c01040{left:241.200000pt;}
.x1f_c01040{left:243.333333pt;}
.x16_c01040{left:244.800000pt;}
.xf_c01040{left:246.266667pt;}
.x11_c01040{left:248.133333pt;}
.x21_c01040{left:250.800000pt;}
.x22_c01040{left:256.000000pt;}
.x1e_c01040{left:257.066667pt;}
.xe_c01040{left:258.400000pt;}
.x18_c01040{left:259.600000pt;}
.x10_c01040{left:261.066667pt;}
.x15_c01040{left:298.800000pt;}
.xd_c01040{left:310.266667pt;}
.x12_c01040{left:312.266667pt;}
.x14_c01040{left:313.600000pt;}
.x17_c01040{left:317.733333pt;}
.x23_c01040{left:318.666667pt;}
.x13_c01040{left:333.866667pt;}
.x24_c01040{left:348.266667pt;}
}





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

.ir_c01041:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01041{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01041;src:url('chunks/assets/font_e2af54060d0f768677425d0a.woff2')format("woff");}.ff1_c01041{font-family:ff1_c01041;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01041;src:url('chunks/assets/font_888f2183c8f959d0d63c48ae.woff2')format("woff");}.ff2_c01041{font-family:ff2_c01041;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01041;src:url('chunks/assets/font_525dabded4ded869297d4bbc.woff2')format("woff");}.ff3_c01041{font-family:ff3_c01041;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01041;src:url('chunks/assets/font_9deda1438028c9074e86ff6a.woff2')format("woff");}.ff4_c01041{font-family:ff4_c01041;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01041;src:url('chunks/assets/font_8566e7ab43f2e8e85472e4b9.woff2')format("woff");}.ff5_c01041{font-family:ff5_c01041;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01041;src:url('chunks/assets/font_8f00797ece98f42156fc6df9.woff2')format("woff");}.ff6_c01041{font-family:ff6_c01041;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01041;src:url('chunks/assets/font_7e3db0b1b2c3710e7254a172.woff2')format("woff");}.ff7_c01041{font-family:ff7_c01041;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c01041;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff8_c01041{font-family:ff8_c01041;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01041{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c01041{vertical-align:-78.600000px;}
.v3_c01041{vertical-align:-73.200000px;}
.v2_c01041{vertical-align:-71.400000px;}
.v0_c01041{vertical-align:0.000000px;}
.lsa_c01041{letter-spacing:-6.000000px;}
.ls7_c01041{letter-spacing:0.000000px;}
.ls3_c01041{letter-spacing:1.140000px;}
.ls2_c01041{letter-spacing:2.400000px;}
.ls8_c01041{letter-spacing:3.000000px;}
.ls6_c01041{letter-spacing:4.800000px;}
.ls0_c01041{letter-spacing:5.376000px;}
.ls9_c01041{letter-spacing:6.000000px;}
.ls4_c01041{letter-spacing:9.000000px;}
.ls5_c01041{letter-spacing:12.522000px;}
.ls1_c01041{letter-spacing:13.200000px;}
.sc__c01041{text-shadow:none;}
.sc0_c01041{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01041{-webkit-text-stroke:0px transparent;}
.sc0_c01041{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c01041{word-spacing:-36.780000px;}
.ws2_c01041{word-spacing:-36.540000px;}
.ws0_c01041{word-spacing:-30.540000px;}
.ws7_c01041{word-spacing:-29.424000px;}
.ws5_c01041{word-spacing:-23.340000px;}
.ws9_c01041{word-spacing:-16.500000px;}
.ws1_c01041{word-spacing:-15.060000px;}
.ws4_c01041{word-spacing:-0.900000px;}
.wsa_c01041{word-spacing:0.000000px;}
.ws6_c01041{word-spacing:7.020000px;}
.ws8_c01041{word-spacing:181.800000px;}
._1b_c01041{margin-left:-19.920000px;}
._2a_c01041{margin-left:-15.750000px;}
._27_c01041{margin-left:-13.590000px;}
._28_c01041{margin-left:-11.880000px;}
._1e_c01041{margin-left:-10.785000px;}
._1d_c01041{margin-left:-9.600000px;}
._11_c01041{margin-left:-7.500000px;}
._c_c01041{margin-left:-5.880000px;}
._5_c01041{margin-left:-4.800000px;}
._6_c01041{margin-left:-3.600000px;}
._d_c01041{margin-left:-2.580000px;}
._4_c01041{margin-left:-1.260000px;}
._13_c01041{width:1.080000px;}
._7_c01041{width:2.100000px;}
._e_c01041{width:3.132000px;}
._b_c01041{width:4.725000px;}
._14_c01041{width:5.940000px;}
._a_c01041{width:6.954000px;}
._0_c01041{width:8.100000px;}
._f_c01041{width:9.171000px;}
._10_c01041{width:10.566000px;}
._3_c01041{width:12.000000px;}
._9_c01041{width:13.200000px;}
._19_c01041{width:16.137000px;}
._1_c01041{width:18.060000px;}
._12_c01041{width:19.083000px;}
._21_c01041{width:20.340000px;}
._1a_c01041{width:21.810000px;}
._17_c01041{width:23.388000px;}
._15_c01041{width:24.933000px;}
._24_c01041{width:26.640000px;}
._20_c01041{width:28.170000px;}
._2b_c01041{width:29.583000px;}
._2_c01041{width:32.580000px;}
._25_c01041{width:34.803000px;}
._16_c01041{width:37.800000px;}
._22_c01041{width:38.973000px;}
._1c_c01041{width:49.131000px;}
._18_c01041{width:51.489000px;}
._29_c01041{width:141.399000px;}
._8_c01041{width:165.600000px;}
._1f_c01041{width:256.980000px;}
._26_c01041{width:258.348000px;}
._23_c01041{width:352.668000px;}
.fc2_c01041{color:transparent;}
.fc1_c01041{color:rgb(128,128,128);}
.fc0_c01041{color:rgb(0,0,0);}
.fs2_c01041{font-size:48.000000px;}
.fs1_c01041{font-size:57.000000px;}
.fs0_c01041{font-size:60.000000px;}
.fs3_c01041{font-size:63.000000px;}
.fs4_c01041{font-size:66.000000px;}
.fs5_c01041{font-size:132.000000px;}
.y0_c01041{bottom:0.000000px;}
.y50_c01041{bottom:3.105000px;}
.y4f_c01041{bottom:7.228371px;}
.y4e_c01041{bottom:43.515000px;}
.y28_c01041{bottom:60.465000px;}
.y4d_c01041{bottom:78.015000px;}
.y27_c01041{bottom:78.615000px;}
.y4c_c01041{bottom:94.815000px;}
.y26_c01041{bottom:96.915000px;}
.y25_c01041{bottom:113.415000px;}
.y4b_c01041{bottom:115.065000px;}
.y24_c01041{bottom:132.315000px;}
.y4a_c01041{bottom:150.915000px;}
.y23_c01041{bottom:152.565000px;}
.y49_c01041{bottom:169.065000px;}
.y22_c01041{bottom:169.515000px;}
.y48_c01041{bottom:187.365000px;}
.y21_c01041{bottom:187.665000px;}
.y20_c01041{bottom:205.515000px;}
.y1f_c01041{bottom:224.115000px;}
.y47_c01041{bottom:225.465000px;}
.y1e_c01041{bottom:241.965000px;}
.y1d_c01041{bottom:260.265000px;}
.y46_c01041{bottom:278.115000px;}
.y1c_c01041{bottom:278.865000px;}
.y45_c01041{bottom:295.065000px;}
.y1b_c01041{bottom:297.015000px;}
.y44_c01041{bottom:313.215000px;}
.y1a_c01041{bottom:315.015000px;}
.y43_c01041{bottom:331.215000px;}
.y19_c01041{bottom:332.565000px;}
.y42_c01041{bottom:349.965000px;}
.y18_c01041{bottom:352.365000px;}
.y41_c01041{bottom:367.665000px;}
.y17_c01041{bottom:369.015000px;}
.y40_c01041{bottom:385.515000px;}
.y16_c01041{bottom:387.465000px;}
.y3f_c01041{bottom:404.415000px;}
.y15_c01041{bottom:405.465000px;}
.y3e_c01041{bottom:422.265000px;}
.y14_c01041{bottom:424.215000px;}
.y3d_c01041{bottom:441.165000px;}
.y13_c01041{bottom:441.915000px;}
.y3c_c01041{bottom:459.015000px;}
.y3b_c01041{bottom:477.015000px;}
.y12_c01041{bottom:477.315000px;}
.y3a_c01041{bottom:495.165000px;}
.y11_c01041{bottom:496.215000px;}
.y39_c01041{bottom:513.465000px;}
.y10_c01041{bottom:514.665000px;}
.y38_c01041{bottom:530.865000px;}
.y37_c01041{bottom:549.465000px;}
.yf_c01041{bottom:551.565000px;}
.y36_c01041{bottom:566.715000px;}
.ye_c01041{bottom:568.365000px;}
.y35_c01041{bottom:583.965000px;}
.yd_c01041{bottom:586.965000px;}
.y34_c01041{bottom:603.165000px;}
.yc_c01041{bottom:603.765000px;}
.y33_c01041{bottom:621.315000px;}
.yb_c01041{bottom:623.415000px;}
.y32_c01041{bottom:639.315000px;}
.ya_c01041{bottom:639.915000px;}
.y31_c01041{bottom:656.865000px;}
.y9_c01041{bottom:659.115000px;}
.y30_c01041{bottom:675.315000px;}
.y8_c01041{bottom:676.815000px;}
.y2f_c01041{bottom:693.315000px;}
.y7_c01041{bottom:694.215000px;}
.y2e_c01041{bottom:711.165000px;}
.y6_c01041{bottom:713.565000px;}
.y2d_c01041{bottom:729.465000px;}
.y5_c01041{bottom:731.115000px;}
.y2c_c01041{bottom:747.015000px;}
.y4_c01041{bottom:747.915000px;}
.y2b_c01041{bottom:765.765000px;}
.y3_c01041{bottom:767.565000px;}
.y2a_c01041{bottom:785.115000px;}
.y2_c01041{bottom:785.715000px;}
.y29_c01041{bottom:802.365000px;}
.y1_c01041{bottom:803.565000px;}
.h9_c01041{height:13.200074px;}
.ha_c01041{height:43.804688px;}
.h4_c01041{height:59.736000px;}
.h2_c01041{height:62.880000px;}
.h3_c01041{height:64.020000px;}
.h5_c01041{height:66.024000px;}
.h8_c01041{height:67.221000px;}
.h6_c01041{height:69.168000px;}
.h7_c01041{height:138.336000px;}
.h0_c01041{height:848.625000px;}
.h1_c01041{height:849.000000px;}
.w2_c01041{width:104.875500px;}
.w1_c01041{width:579.750000px;}
.w0_c01041{width:579.975000px;}
.x0_c01041{left:0.000000px;}
.xb_c01041{left:95.850000px;}
.x7_c01041{left:96.900000px;}
.xd_c01041{left:97.950000px;}
.x11_c01041{left:100.650000px;}
.x13_c01041{left:101.700000px;}
.xc_c01041{left:106.050000px;}
.x3_c01041{left:110.700000px;}
.x6_c01041{left:112.500000px;}
.x9_c01041{left:113.850000px;}
.x10_c01041{left:115.200000px;}
.xe_c01041{left:159.600000px;}
.xa_c01041{left:164.400000px;}
.x5_c01041{left:168.150000px;}
.x2_c01041{left:170.850000px;}
.x8_c01041{left:174.150000px;}
.xf_c01041{left:182.250000px;}
.x12_c01041{left:186.000000px;}
.x1_c01041{left:202.800000px;}
.x2a_c01041{left:241.801758px;}
.x4_c01041{left:307.350000px;}
.x14_c01041{left:324.450000px;}
.x20_c01041{left:333.150000px;}
.x1b_c01041{left:335.100000px;}
.x17_c01041{left:336.150000px;}
.x1c_c01041{left:337.200000px;}
.x21_c01041{left:338.850000px;}
.x22_c01041{left:339.900000px;}
.x15_c01041{left:342.000000px;}
.x25_c01041{left:343.350000px;}
.x19_c01041{left:345.600000px;}
.x1e_c01041{left:347.850000px;}
.x1a_c01041{left:352.350000px;}
.x1d_c01041{left:353.400000px;}
.x16_c01041{left:355.350000px;}
.x1f_c01041{left:356.850000px;}
.x26_c01041{left:358.050000px;}
.x28_c01041{left:359.700000px;}
.x24_c01041{left:418.950000px;}
.x27_c01041{left:423.600000px;}
.x18_c01041{left:425.850000px;}
.x23_c01041{left:434.400000px;}
.x29_c01041{left:534.150000px;}
@media print{
.v1_c01041{vertical-align:-69.866667pt;}
.v3_c01041{vertical-align:-65.066667pt;}
.v2_c01041{vertical-align:-63.466667pt;}
.v0_c01041{vertical-align:0.000000pt;}
.lsa_c01041{letter-spacing:-5.333333pt;}
.ls7_c01041{letter-spacing:0.000000pt;}
.ls3_c01041{letter-spacing:1.013333pt;}
.ls2_c01041{letter-spacing:2.133333pt;}
.ls8_c01041{letter-spacing:2.666667pt;}
.ls6_c01041{letter-spacing:4.266667pt;}
.ls0_c01041{letter-spacing:4.778667pt;}
.ls9_c01041{letter-spacing:5.333333pt;}
.ls4_c01041{letter-spacing:8.000000pt;}
.ls5_c01041{letter-spacing:11.130667pt;}
.ls1_c01041{letter-spacing:11.733333pt;}
.ws3_c01041{word-spacing:-32.693333pt;}
.ws2_c01041{word-spacing:-32.480000pt;}
.ws0_c01041{word-spacing:-27.146667pt;}
.ws7_c01041{word-spacing:-26.154667pt;}
.ws5_c01041{word-spacing:-20.746667pt;}
.ws9_c01041{word-spacing:-14.666667pt;}
.ws1_c01041{word-spacing:-13.386667pt;}
.ws4_c01041{word-spacing:-0.800000pt;}
.wsa_c01041{word-spacing:0.000000pt;}
.ws6_c01041{word-spacing:6.240000pt;}
.ws8_c01041{word-spacing:161.600000pt;}
._1b_c01041{margin-left:-17.706667pt;}
._2a_c01041{margin-left:-14.000000pt;}
._27_c01041{margin-left:-12.080000pt;}
._28_c01041{margin-left:-10.560000pt;}
._1e_c01041{margin-left:-9.586667pt;}
._1d_c01041{margin-left:-8.533333pt;}
._11_c01041{margin-left:-6.666667pt;}
._c_c01041{margin-left:-5.226667pt;}
._5_c01041{margin-left:-4.266667pt;}
._6_c01041{margin-left:-3.200000pt;}
._d_c01041{margin-left:-2.293333pt;}
._4_c01041{margin-left:-1.120000pt;}
._13_c01041{width:0.960000pt;}
._7_c01041{width:1.866667pt;}
._e_c01041{width:2.784000pt;}
._b_c01041{width:4.200000pt;}
._14_c01041{width:5.280000pt;}
._a_c01041{width:6.181333pt;}
._0_c01041{width:7.200000pt;}
._f_c01041{width:8.152000pt;}
._10_c01041{width:9.392000pt;}
._3_c01041{width:10.666667pt;}
._9_c01041{width:11.733333pt;}
._19_c01041{width:14.344000pt;}
._1_c01041{width:16.053333pt;}
._12_c01041{width:16.962667pt;}
._21_c01041{width:18.080000pt;}
._1a_c01041{width:19.386667pt;}
._17_c01041{width:20.789333pt;}
._15_c01041{width:22.162667pt;}
._24_c01041{width:23.680000pt;}
._20_c01041{width:25.040000pt;}
._2b_c01041{width:26.296000pt;}
._2_c01041{width:28.960000pt;}
._25_c01041{width:30.936000pt;}
._16_c01041{width:33.600000pt;}
._22_c01041{width:34.642667pt;}
._1c_c01041{width:43.672000pt;}
._18_c01041{width:45.768000pt;}
._29_c01041{width:125.688000pt;}
._8_c01041{width:147.200000pt;}
._1f_c01041{width:228.426667pt;}
._26_c01041{width:229.642667pt;}
._23_c01041{width:313.482667pt;}
.fs2_c01041{font-size:42.666667pt;}
.fs1_c01041{font-size:50.666667pt;}
.fs0_c01041{font-size:53.333333pt;}
.fs3_c01041{font-size:56.000000pt;}
.fs4_c01041{font-size:58.666667pt;}
.fs5_c01041{font-size:117.333333pt;}
.y0_c01041{bottom:0.000000pt;}
.y50_c01041{bottom:2.760000pt;}
.y4f_c01041{bottom:6.425219pt;}
.y4e_c01041{bottom:38.680000pt;}
.y28_c01041{bottom:53.746667pt;}
.y4d_c01041{bottom:69.346667pt;}
.y27_c01041{bottom:69.880000pt;}
.y4c_c01041{bottom:84.280000pt;}
.y26_c01041{bottom:86.146667pt;}
.y25_c01041{bottom:100.813333pt;}
.y4b_c01041{bottom:102.280000pt;}
.y24_c01041{bottom:117.613333pt;}
.y4a_c01041{bottom:134.146667pt;}
.y23_c01041{bottom:135.613333pt;}
.y49_c01041{bottom:150.280000pt;}
.y22_c01041{bottom:150.680000pt;}
.y48_c01041{bottom:166.546667pt;}
.y21_c01041{bottom:166.813333pt;}
.y20_c01041{bottom:182.680000pt;}
.y1f_c01041{bottom:199.213333pt;}
.y47_c01041{bottom:200.413333pt;}
.y1e_c01041{bottom:215.080000pt;}
.y1d_c01041{bottom:231.346667pt;}
.y46_c01041{bottom:247.213333pt;}
.y1c_c01041{bottom:247.880000pt;}
.y45_c01041{bottom:262.280000pt;}
.y1b_c01041{bottom:264.013333pt;}
.y44_c01041{bottom:278.413333pt;}
.y1a_c01041{bottom:280.013333pt;}
.y43_c01041{bottom:294.413333pt;}
.y19_c01041{bottom:295.613333pt;}
.y42_c01041{bottom:311.080000pt;}
.y18_c01041{bottom:313.213333pt;}
.y41_c01041{bottom:326.813333pt;}
.y17_c01041{bottom:328.013333pt;}
.y40_c01041{bottom:342.680000pt;}
.y16_c01041{bottom:344.413333pt;}
.y3f_c01041{bottom:359.480000pt;}
.y15_c01041{bottom:360.413333pt;}
.y3e_c01041{bottom:375.346667pt;}
.y14_c01041{bottom:377.080000pt;}
.y3d_c01041{bottom:392.146667pt;}
.y13_c01041{bottom:392.813333pt;}
.y3c_c01041{bottom:408.013333pt;}
.y3b_c01041{bottom:424.013333pt;}
.y12_c01041{bottom:424.280000pt;}
.y3a_c01041{bottom:440.146667pt;}
.y11_c01041{bottom:441.080000pt;}
.y39_c01041{bottom:456.413333pt;}
.y10_c01041{bottom:457.480000pt;}
.y38_c01041{bottom:471.880000pt;}
.y37_c01041{bottom:488.413333pt;}
.yf_c01041{bottom:490.280000pt;}
.y36_c01041{bottom:503.746667pt;}
.ye_c01041{bottom:505.213333pt;}
.y35_c01041{bottom:519.080000pt;}
.yd_c01041{bottom:521.746667pt;}
.y34_c01041{bottom:536.146667pt;}
.yc_c01041{bottom:536.680000pt;}
.y33_c01041{bottom:552.280000pt;}
.yb_c01041{bottom:554.146667pt;}
.y32_c01041{bottom:568.280000pt;}
.ya_c01041{bottom:568.813333pt;}
.y31_c01041{bottom:583.880000pt;}
.y9_c01041{bottom:585.880000pt;}
.y30_c01041{bottom:600.280000pt;}
.y8_c01041{bottom:601.613333pt;}
.y2f_c01041{bottom:616.280000pt;}
.y7_c01041{bottom:617.080000pt;}
.y2e_c01041{bottom:632.146667pt;}
.y6_c01041{bottom:634.280000pt;}
.y2d_c01041{bottom:648.413333pt;}
.y5_c01041{bottom:649.880000pt;}
.y2c_c01041{bottom:664.013333pt;}
.y4_c01041{bottom:664.813333pt;}
.y2b_c01041{bottom:680.680000pt;}
.y3_c01041{bottom:682.280000pt;}
.y2a_c01041{bottom:697.880000pt;}
.y2_c01041{bottom:698.413333pt;}
.y29_c01041{bottom:713.213333pt;}
.y1_c01041{bottom:714.280000pt;}
.h9_c01041{height:11.733399pt;}
.ha_c01041{height:38.937500pt;}
.h4_c01041{height:53.098667pt;}
.h2_c01041{height:55.893333pt;}
.h3_c01041{height:56.906667pt;}
.h5_c01041{height:58.688000pt;}
.h8_c01041{height:59.752000pt;}
.h6_c01041{height:61.482667pt;}
.h7_c01041{height:122.965333pt;}
.h0_c01041{height:754.333333pt;}
.h1_c01041{height:754.666667pt;}
.w2_c01041{width:93.222667pt;}
.w1_c01041{width:515.333333pt;}
.w0_c01041{width:515.533333pt;}
.x0_c01041{left:0.000000pt;}
.xb_c01041{left:85.200000pt;}
.x7_c01041{left:86.133333pt;}
.xd_c01041{left:87.066667pt;}
.x11_c01041{left:89.466667pt;}
.x13_c01041{left:90.400000pt;}
.xc_c01041{left:94.266667pt;}
.x3_c01041{left:98.400000pt;}
.x6_c01041{left:100.000000pt;}
.x9_c01041{left:101.200000pt;}
.x10_c01041{left:102.400000pt;}
.xe_c01041{left:141.866667pt;}
.xa_c01041{left:146.133333pt;}
.x5_c01041{left:149.466667pt;}
.x2_c01041{left:151.866667pt;}
.x8_c01041{left:154.800000pt;}
.xf_c01041{left:162.000000pt;}
.x12_c01041{left:165.333333pt;}
.x1_c01041{left:180.266667pt;}
.x2a_c01041{left:214.934896pt;}
.x4_c01041{left:273.200000pt;}
.x14_c01041{left:288.400000pt;}
.x20_c01041{left:296.133333pt;}
.x1b_c01041{left:297.866667pt;}
.x17_c01041{left:298.800000pt;}
.x1c_c01041{left:299.733333pt;}
.x21_c01041{left:301.200000pt;}
.x22_c01041{left:302.133333pt;}
.x15_c01041{left:304.000000pt;}
.x25_c01041{left:305.200000pt;}
.x19_c01041{left:307.200000pt;}
.x1e_c01041{left:309.200000pt;}
.x1a_c01041{left:313.200000pt;}
.x1d_c01041{left:314.133333pt;}
.x16_c01041{left:315.866667pt;}
.x1f_c01041{left:317.200000pt;}
.x26_c01041{left:318.266667pt;}
.x28_c01041{left:319.733333pt;}
.x24_c01041{left:372.400000pt;}
.x27_c01041{left:376.533333pt;}
.x18_c01041{left:378.533333pt;}
.x23_c01041{left:386.133333pt;}
.x29_c01041{left:474.800000pt;}
}





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

.ir_c01042:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01042{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01042;src:url('chunks/assets/font_b7ecf3702c8b8c6c42d23042.woff2')format("woff");}.ff1_c01042{font-family:ff1_c01042;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01042;src:url('chunks/assets/font_f74bf82cd8c2156bd2f0cca9.woff2')format("woff");}.ff2_c01042{font-family:ff2_c01042;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01042;src:url('chunks/assets/font_44f8f77b72b5e39a82ce6adb.woff2')format("woff");}.ff3_c01042{font-family:ff3_c01042;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01042;src:url('chunks/assets/font_c82bf5a98b5b2d735db5927a.woff2')format("woff");}.ff4_c01042{font-family:ff4_c01042;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01042;src:url('chunks/assets/font_a564a471bbdb0a3692f9c6cd.woff2')format("woff");}.ff5_c01042{font-family:ff5_c01042;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01042;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff6_c01042{font-family:ff6_c01042;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01042{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c01042{vertical-align:-73.800000px;}
.v0_c01042{vertical-align:0.000000px;}
.ls5_c01042{letter-spacing:0.000000px;}
.ls0_c01042{letter-spacing:1.080000px;}
.ls7_c01042{letter-spacing:6.000000px;}
.ls2_c01042{letter-spacing:7.800000px;}
.ls4_c01042{letter-spacing:9.300000px;}
.ls3_c01042{letter-spacing:9.900000px;}
.ls6_c01042{letter-spacing:12.000000px;}
.ls1_c01042{letter-spacing:13.800000px;}
.sc__c01042{text-shadow:none;}
.sc0_c01042{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01042{-webkit-text-stroke:0px transparent;}
.sc0_c01042{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c01042{word-spacing:-39.399000px;}
.ws5_c01042{word-spacing:-31.968000px;}
.ws1_c01042{word-spacing:-24.801000px;}
.ws8_c01042{word-spacing:-21.000000px;}
.ws7_c01042{word-spacing:-19.554000px;}
.ws4_c01042{word-spacing:-15.060000px;}
.ws3_c01042{word-spacing:-14.160000px;}
.ws0_c01042{word-spacing:-12.744000px;}
.ws2_c01042{word-spacing:-0.120000px;}
.ws9_c01042{word-spacing:0.000000px;}
._26_c01042{margin-left:-24.030000px;}
._1f_c01042{margin-left:-18.738000px;}
._1d_c01042{margin-left:-12.060000px;}
._11_c01042{margin-left:-9.999000px;}
._f_c01042{margin-left:-8.310000px;}
._2e_c01042{margin-left:-7.140000px;}
._10_c01042{margin-left:-6.120000px;}
._1b_c01042{margin-left:-4.950000px;}
._9_c01042{margin-left:-3.720000px;}
._e_c01042{margin-left:-2.580000px;}
._d_c01042{margin-left:-1.500000px;}
._a_c01042{width:1.860000px;}
._8_c01042{width:3.540000px;}
._c_c01042{width:4.620000px;}
._14_c01042{width:5.760000px;}
._b_c01042{width:6.840000px;}
._7_c01042{width:8.340000px;}
._13_c01042{width:9.420000px;}
._6_c01042{width:11.040000px;}
._4_c01042{width:12.480000px;}
._3_c01042{width:13.860000px;}
._2_c01042{width:17.220000px;}
._0_c01042{width:18.660000px;}
._1_c01042{width:20.160000px;}
._12_c01042{width:21.960000px;}
._23_c01042{width:23.700000px;}
._16_c01042{width:25.440000px;}
._24_c01042{width:27.000000px;}
._18_c01042{width:29.700000px;}
._27_c01042{width:34.440000px;}
._20_c01042{width:35.856000px;}
._2c_c01042{width:46.500000px;}
._5_c01042{width:48.840000px;}
._1a_c01042{width:51.240000px;}
._22_c01042{width:53.580000px;}
._17_c01042{width:67.680000px;}
._21_c01042{width:90.006000px;}
._1c_c01042{width:105.210000px;}
._2a_c01042{width:172.290000px;}
._28_c01042{width:173.490000px;}
._1e_c01042{width:174.846000px;}
._2f_c01042{width:206.760000px;}
._29_c01042{width:231.600000px;}
._2d_c01042{width:233.940000px;}
._15_c01042{width:365.100000px;}
._25_c01042{width:392.040000px;}
._19_c01042{width:509.220000px;}
._2b_c01042{width:535.920000px;}
.fc2_c01042{color:transparent;}
.fc1_c01042{color:rgb(128,128,128);}
.fc0_c01042{color:rgb(0,0,0);}
.fs5_c01042{font-size:48.000000px;}
.fs2_c01042{font-size:51.000000px;}
.fs1_c01042{font-size:54.000000px;}
.fs0_c01042{font-size:60.000000px;}
.fs4_c01042{font-size:69.000000px;}
.fs3_c01042{font-size:72.000000px;}
.y0_c01042{bottom:0.000000px;}
.y52_c01042{bottom:3.105000px;}
.y51_c01042{bottom:7.228371px;}
.y50_c01042{bottom:35.115000px;}
.y29_c01042{bottom:37.215000px;}
.y4f_c01042{bottom:49.065000px;}
.y28_c01042{bottom:51.765000px;}
.y4e_c01042{bottom:70.515000px;}
.y27_c01042{bottom:71.265000px;}
.y4d_c01042{bottom:88.215000px;}
.y26_c01042{bottom:89.565000px;}
.y4c_c01042{bottom:106.965000px;}
.y25_c01042{bottom:107.415000px;}
.y4b_c01042{bottom:125.265000px;}
.y24_c01042{bottom:126.015000px;}
.y4a_c01042{bottom:140.415000px;}
.y23_c01042{bottom:143.865000px;}
.y49_c01042{bottom:161.715000px;}
.y22_c01042{bottom:162.765000px;}
.y48_c01042{bottom:178.965000px;}
.y21_c01042{bottom:180.615000px;}
.y47_c01042{bottom:196.815000px;}
.y20_c01042{bottom:199.215000px;}
.y46_c01042{bottom:216.465000px;}
.y1f_c01042{bottom:216.765000px;}
.y45_c01042{bottom:232.515000px;}
.y1e_c01042{bottom:235.215000px;}
.y1d_c01042{bottom:248.415000px;}
.y44_c01042{bottom:252.165000px;}
.y1c_c01042{bottom:271.065000px;}
.y1b_c01042{bottom:288.915000px;}
.y43_c01042{bottom:289.215000px;}
.y42_c01042{bottom:306.765000px;}
.y41_c01042{bottom:324.465000px;}
.y1a_c01042{bottom:324.765000px;}
.y40_c01042{bottom:342.315000px;}
.y19_c01042{bottom:342.915000px;}
.y3f_c01042{bottom:360.465000px;}
.y18_c01042{bottom:360.915000px;}
.y17_c01042{bottom:378.465000px;}
.y3e_c01042{bottom:379.065000px;}
.y3d_c01042{bottom:397.215000px;}
.y16_c01042{bottom:397.665000px;}
.y15_c01042{bottom:414.915000px;}
.y3c_c01042{bottom:432.765000px;}
.y14_c01042{bottom:433.665000px;}
.y3b_c01042{bottom:450.015000px;}
.y13_c01042{bottom:450.615000px;}
.y12_c01042{bottom:469.815000px;}
.y11_c01042{bottom:487.365000px;}
.y3a_c01042{bottom:488.115000px;}
.y10_c01042{bottom:505.215000px;}
.y39_c01042{bottom:505.365000px;}
.yf_c01042{bottom:522.465000px;}
.y38_c01042{bottom:522.915000px;}
.ye_c01042{bottom:539.715000px;}
.y37_c01042{bottom:540.465000px;}
.yd_c01042{bottom:556.965000px;}
.y36_c01042{bottom:558.015000px;}
.yc_c01042{bottom:575.565000px;}
.y35_c01042{bottom:576.165000px;}
.yb_c01042{bottom:594.015000px;}
.y34_c01042{bottom:594.765000px;}
.ya_c01042{bottom:612.015000px;}
.y33_c01042{bottom:612.615000px;}
.y9_c01042{bottom:630.165000px;}
.y32_c01042{bottom:631.515000px;}
.y8_c01042{bottom:648.015000px;}
.y31_c01042{bottom:649.065000px;}
.y7_c01042{bottom:665.865000px;}
.y30_c01042{bottom:667.365000px;}
.y6_c01042{bottom:683.865000px;}
.y2f_c01042{bottom:685.815000px;}
.y5_c01042{bottom:701.415000px;}
.y4_c01042{bottom:720.015000px;}
.y2e_c01042{bottom:721.215000px;}
.y2d_c01042{bottom:740.115000px;}
.y3_c01042{bottom:756.315000px;}
.y2c_c01042{bottom:757.815000px;}
.y2_c01042{bottom:774.315000px;}
.y2b_c01042{bottom:775.665000px;}
.y1_c01042{bottom:793.215000px;}
.y2a_c01042{bottom:794.115000px;}
.h7_c01042{height:13.200074px;}
.h8_c01042{height:43.804688px;}
.h3_c01042{height:56.592000px;}
.h2_c01042{height:62.880000px;}
.h4_c01042{height:64.020000px;}
.h5_c01042{height:70.664062px;}
.h6_c01042{height:73.623000px;}
.h0_c01042{height:833.775000px;}
.h1_c01042{height:834.000000px;}
.w2_c01042{width:104.875500px;}
.w0_c01042{width:571.875000px;}
.w1_c01042{width:572.250000px;}
.x0_c01042{left:0.000000px;}
.x7_c01042{left:24.900000px;}
.x4_c01042{left:25.950000px;}
.x2_c01042{left:27.600000px;}
.xf_c01042{left:28.800000px;}
.xc_c01042{left:30.000000px;}
.xb_c01042{left:31.350000px;}
.x3_c01042{left:38.850000px;}
.x6_c01042{left:42.150000px;}
.x5_c01042{left:45.000000px;}
.xe_c01042{left:46.200000px;}
.x9_c01042{left:49.050000px;}
.xd_c01042{left:97.200000px;}
.xa_c01042{left:100.950000px;}
.x8_c01042{left:102.150000px;}
.x1_c01042{left:107.550000px;}
.x24_c01042{left:237.751740px;}
.x14_c01042{left:264.300000px;}
.x13_c01042{left:265.650000px;}
.x1a_c01042{left:267.900000px;}
.x10_c01042{left:271.800000px;}
.x1b_c01042{left:275.850000px;}
.x18_c01042{left:277.800000px;}
.x16_c01042{left:279.900000px;}
.x21_c01042{left:281.100000px;}
.x1f_c01042{left:282.150000px;}
.x17_c01042{left:283.500000px;}
.x1d_c01042{left:285.600000px;}
.x12_c01042{left:287.250000px;}
.x1e_c01042{left:293.850000px;}
.x20_c01042{left:303.000000px;}
.x19_c01042{left:339.150000px;}
.x11_c01042{left:340.500000px;}
.x22_c01042{left:344.850000px;}
.x15_c01042{left:346.050000px;}
.x1c_c01042{left:351.300000px;}
.x23_c01042{left:373.200000px;}
@media print{
.v1_c01042{vertical-align:-65.600000pt;}
.v0_c01042{vertical-align:0.000000pt;}
.ls5_c01042{letter-spacing:0.000000pt;}
.ls0_c01042{letter-spacing:0.960000pt;}
.ls7_c01042{letter-spacing:5.333333pt;}
.ls2_c01042{letter-spacing:6.933333pt;}
.ls4_c01042{letter-spacing:8.266667pt;}
.ls3_c01042{letter-spacing:8.800000pt;}
.ls6_c01042{letter-spacing:10.666667pt;}
.ls1_c01042{letter-spacing:12.266667pt;}
.ws6_c01042{word-spacing:-35.021333pt;}
.ws5_c01042{word-spacing:-28.416000pt;}
.ws1_c01042{word-spacing:-22.045333pt;}
.ws8_c01042{word-spacing:-18.666667pt;}
.ws7_c01042{word-spacing:-17.381333pt;}
.ws4_c01042{word-spacing:-13.386667pt;}
.ws3_c01042{word-spacing:-12.586667pt;}
.ws0_c01042{word-spacing:-11.328000pt;}
.ws2_c01042{word-spacing:-0.106667pt;}
.ws9_c01042{word-spacing:0.000000pt;}
._26_c01042{margin-left:-21.360000pt;}
._1f_c01042{margin-left:-16.656000pt;}
._1d_c01042{margin-left:-10.720000pt;}
._11_c01042{margin-left:-8.888000pt;}
._f_c01042{margin-left:-7.386667pt;}
._2e_c01042{margin-left:-6.346667pt;}
._10_c01042{margin-left:-5.440000pt;}
._1b_c01042{margin-left:-4.400000pt;}
._9_c01042{margin-left:-3.306667pt;}
._e_c01042{margin-left:-2.293333pt;}
._d_c01042{margin-left:-1.333333pt;}
._a_c01042{width:1.653333pt;}
._8_c01042{width:3.146667pt;}
._c_c01042{width:4.106667pt;}
._14_c01042{width:5.120000pt;}
._b_c01042{width:6.080000pt;}
._7_c01042{width:7.413333pt;}
._13_c01042{width:8.373333pt;}
._6_c01042{width:9.813333pt;}
._4_c01042{width:11.093333pt;}
._3_c01042{width:12.320000pt;}
._2_c01042{width:15.306667pt;}
._0_c01042{width:16.586667pt;}
._1_c01042{width:17.920000pt;}
._12_c01042{width:19.520000pt;}
._23_c01042{width:21.066667pt;}
._16_c01042{width:22.613333pt;}
._24_c01042{width:24.000000pt;}
._18_c01042{width:26.400000pt;}
._27_c01042{width:30.613333pt;}
._20_c01042{width:31.872000pt;}
._2c_c01042{width:41.333333pt;}
._5_c01042{width:43.413333pt;}
._1a_c01042{width:45.546667pt;}
._22_c01042{width:47.626667pt;}
._17_c01042{width:60.160000pt;}
._21_c01042{width:80.005333pt;}
._1c_c01042{width:93.520000pt;}
._2a_c01042{width:153.146667pt;}
._28_c01042{width:154.213333pt;}
._1e_c01042{width:155.418667pt;}
._2f_c01042{width:183.786667pt;}
._29_c01042{width:205.866667pt;}
._2d_c01042{width:207.946667pt;}
._15_c01042{width:324.533333pt;}
._25_c01042{width:348.480000pt;}
._19_c01042{width:452.640000pt;}
._2b_c01042{width:476.373333pt;}
.fs5_c01042{font-size:42.666667pt;}
.fs2_c01042{font-size:45.333333pt;}
.fs1_c01042{font-size:48.000000pt;}
.fs0_c01042{font-size:53.333333pt;}
.fs4_c01042{font-size:61.333333pt;}
.fs3_c01042{font-size:64.000000pt;}
.y0_c01042{bottom:0.000000pt;}
.y52_c01042{bottom:2.760000pt;}
.y51_c01042{bottom:6.425219pt;}
.y50_c01042{bottom:31.213333pt;}
.y29_c01042{bottom:33.080000pt;}
.y4f_c01042{bottom:43.613333pt;}
.y28_c01042{bottom:46.013333pt;}
.y4e_c01042{bottom:62.680000pt;}
.y27_c01042{bottom:63.346667pt;}
.y4d_c01042{bottom:78.413333pt;}
.y26_c01042{bottom:79.613333pt;}
.y4c_c01042{bottom:95.080000pt;}
.y25_c01042{bottom:95.480000pt;}
.y4b_c01042{bottom:111.346667pt;}
.y24_c01042{bottom:112.013333pt;}
.y4a_c01042{bottom:124.813333pt;}
.y23_c01042{bottom:127.880000pt;}
.y49_c01042{bottom:143.746667pt;}
.y22_c01042{bottom:144.680000pt;}
.y48_c01042{bottom:159.080000pt;}
.y21_c01042{bottom:160.546667pt;}
.y47_c01042{bottom:174.946667pt;}
.y20_c01042{bottom:177.080000pt;}
.y46_c01042{bottom:192.413333pt;}
.y1f_c01042{bottom:192.680000pt;}
.y45_c01042{bottom:206.680000pt;}
.y1e_c01042{bottom:209.080000pt;}
.y1d_c01042{bottom:220.813333pt;}
.y44_c01042{bottom:224.146667pt;}
.y1c_c01042{bottom:240.946667pt;}
.y1b_c01042{bottom:256.813333pt;}
.y43_c01042{bottom:257.080000pt;}
.y42_c01042{bottom:272.680000pt;}
.y41_c01042{bottom:288.413333pt;}
.y1a_c01042{bottom:288.680000pt;}
.y40_c01042{bottom:304.280000pt;}
.y19_c01042{bottom:304.813333pt;}
.y3f_c01042{bottom:320.413333pt;}
.y18_c01042{bottom:320.813333pt;}
.y17_c01042{bottom:336.413333pt;}
.y3e_c01042{bottom:336.946667pt;}
.y3d_c01042{bottom:353.080000pt;}
.y16_c01042{bottom:353.480000pt;}
.y15_c01042{bottom:368.813333pt;}
.y3c_c01042{bottom:384.680000pt;}
.y14_c01042{bottom:385.480000pt;}
.y3b_c01042{bottom:400.013333pt;}
.y13_c01042{bottom:400.546667pt;}
.y12_c01042{bottom:417.613333pt;}
.y11_c01042{bottom:433.213333pt;}
.y3a_c01042{bottom:433.880000pt;}
.y10_c01042{bottom:449.080000pt;}
.y39_c01042{bottom:449.213333pt;}
.yf_c01042{bottom:464.413333pt;}
.y38_c01042{bottom:464.813333pt;}
.ye_c01042{bottom:479.746667pt;}
.y37_c01042{bottom:480.413333pt;}
.yd_c01042{bottom:495.080000pt;}
.y36_c01042{bottom:496.013333pt;}
.yc_c01042{bottom:511.613333pt;}
.y35_c01042{bottom:512.146667pt;}
.yb_c01042{bottom:528.013333pt;}
.y34_c01042{bottom:528.680000pt;}
.ya_c01042{bottom:544.013333pt;}
.y33_c01042{bottom:544.546667pt;}
.y9_c01042{bottom:560.146667pt;}
.y32_c01042{bottom:561.346667pt;}
.y8_c01042{bottom:576.013333pt;}
.y31_c01042{bottom:576.946667pt;}
.y7_c01042{bottom:591.880000pt;}
.y30_c01042{bottom:593.213333pt;}
.y6_c01042{bottom:607.880000pt;}
.y2f_c01042{bottom:609.613333pt;}
.y5_c01042{bottom:623.480000pt;}
.y4_c01042{bottom:640.013333pt;}
.y2e_c01042{bottom:641.080000pt;}
.y2d_c01042{bottom:657.880000pt;}
.y3_c01042{bottom:672.280000pt;}
.y2c_c01042{bottom:673.613333pt;}
.y2_c01042{bottom:688.280000pt;}
.y2b_c01042{bottom:689.480000pt;}
.y1_c01042{bottom:705.080000pt;}
.y2a_c01042{bottom:705.880000pt;}
.h7_c01042{height:11.733399pt;}
.h8_c01042{height:38.937500pt;}
.h3_c01042{height:50.304000pt;}
.h2_c01042{height:55.893333pt;}
.h4_c01042{height:56.906667pt;}
.h5_c01042{height:62.812500pt;}
.h6_c01042{height:65.442667pt;}
.h0_c01042{height:741.133333pt;}
.h1_c01042{height:741.333333pt;}
.w2_c01042{width:93.222667pt;}
.w0_c01042{width:508.333333pt;}
.w1_c01042{width:508.666667pt;}
.x0_c01042{left:0.000000pt;}
.x7_c01042{left:22.133333pt;}
.x4_c01042{left:23.066667pt;}
.x2_c01042{left:24.533333pt;}
.xf_c01042{left:25.600000pt;}
.xc_c01042{left:26.666667pt;}
.xb_c01042{left:27.866667pt;}
.x3_c01042{left:34.533333pt;}
.x6_c01042{left:37.466667pt;}
.x5_c01042{left:40.000000pt;}
.xe_c01042{left:41.066667pt;}
.x9_c01042{left:43.600000pt;}
.xd_c01042{left:86.400000pt;}
.xa_c01042{left:89.733333pt;}
.x8_c01042{left:90.800000pt;}
.x1_c01042{left:95.600000pt;}
.x24_c01042{left:211.334880pt;}
.x14_c01042{left:234.933333pt;}
.x13_c01042{left:236.133333pt;}
.x1a_c01042{left:238.133333pt;}
.x10_c01042{left:241.600000pt;}
.x1b_c01042{left:245.200000pt;}
.x18_c01042{left:246.933333pt;}
.x16_c01042{left:248.800000pt;}
.x21_c01042{left:249.866667pt;}
.x1f_c01042{left:250.800000pt;}
.x17_c01042{left:252.000000pt;}
.x1d_c01042{left:253.866667pt;}
.x12_c01042{left:255.333333pt;}
.x1e_c01042{left:261.200000pt;}
.x20_c01042{left:269.333333pt;}
.x19_c01042{left:301.466667pt;}
.x11_c01042{left:302.666667pt;}
.x22_c01042{left:306.533333pt;}
.x15_c01042{left:307.600000pt;}
.x1c_c01042{left:312.266667pt;}
.x23_c01042{left:331.733333pt;}
}





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

.ir_c01043:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01043{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01043;src:url('chunks/assets/font_152186e0a47750509d878843.woff2')format("woff");}.ff1_c01043{font-family:ff1_c01043;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01043;src:url('chunks/assets/font_0efbb37e114bccb950b607b8.woff2')format("woff");}.ff2_c01043{font-family:ff2_c01043;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01043;src:url('chunks/assets/font_b4203264e12464c7a9afb6a1.woff2')format("woff");}.ff3_c01043{font-family:ff3_c01043;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01043;src:url('chunks/assets/font_0ab0f829243330c16b3ce85b.woff2')format("woff");}.ff4_c01043{font-family:ff4_c01043;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01043;src:url('chunks/assets/font_16e535b3d328d5c26f2ba0bb.woff2')format("woff");}.ff5_c01043{font-family:ff5_c01043;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01043;src:url('chunks/assets/font_83aa62a3a836c386eec45521.woff2')format("woff");}.ff6_c01043{font-family:ff6_c01043;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01043;src:url('chunks/assets/font_dfb63b004fd853e0de2a3ef7.woff2')format("woff");}.ff7_c01043{font-family:ff7_c01043;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c01043;src:url('chunks/assets/font_2c92aca6be38124a83d25a06.woff2')format("woff");}.ff8_c01043{font-family:ff8_c01043;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c01043;src:url('chunks/assets/font_61d3f23925c997fec94bd060.woff2')format("woff");}.ff9_c01043{font-family:ff9_c01043;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c01043;src:url('chunks/assets/font_7cf17742b89855d1f7f611e8.woff2')format("woff");}.ffa_c01043{font-family:ffa_c01043;line-height:1.012793;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c01043;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ffb_c01043{font-family:ffb_c01043;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01043{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01043{vertical-align:0.000000px;}
.ls7_c01043{letter-spacing:0.000000px;}
.ls2_c01043{letter-spacing:1.656000px;}
.ls6_c01043{letter-spacing:2.400000px;}
.ls3_c01043{letter-spacing:4.080000px;}
.ls9_c01043{letter-spacing:6.000000px;}
.ls5_c01043{letter-spacing:7.740000px;}
.lsa_c01043{letter-spacing:9.000000px;}
.ls1_c01043{letter-spacing:14.160000px;}
.ls4_c01043{letter-spacing:18.600000px;}
.ls0_c01043{letter-spacing:28.140000px;}
.ls8_c01043{letter-spacing:30.000000px;}
.sc__c01043{text-shadow:none;}
.sc0_c01043{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01043{-webkit-text-stroke:0px transparent;}
.sc0_c01043{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c01043{word-spacing:-45.060000px;}
.wsd_c01043{word-spacing:-41.565000px;}
.wsa_c01043{word-spacing:-39.540000px;}
.ws4_c01043{word-spacing:-30.540000px;}
.ws8_c01043{word-spacing:-29.013000px;}
.ws2_c01043{word-spacing:-28.860000px;}
.wsb_c01043{word-spacing:-27.486000px;}
.ws6_c01043{word-spacing:-23.340000px;}
.ws9_c01043{word-spacing:-15.498000px;}
.ws7_c01043{word-spacing:-15.060000px;}
.wsc_c01043{word-spacing:-1.440000px;}
.ws0_c01043{word-spacing:-1.392000px;}
.ws3_c01043{word-spacing:-0.060000px;}
.wse_c01043{word-spacing:0.000000px;}
.ws1_c01043{word-spacing:6.816000px;}
._17_c01043{margin-left:-19.020000px;}
._1c_c01043{margin-left:-18.000000px;}
._20_c01043{margin-left:-16.260000px;}
._24_c01043{margin-left:-14.940000px;}
._15_c01043{margin-left:-11.760000px;}
._16_c01043{margin-left:-10.080000px;}
._14_c01043{margin-left:-8.820000px;}
._e_c01043{margin-left:-6.480000px;}
._d_c01043{margin-left:-4.500000px;}
._c_c01043{margin-left:-3.480000px;}
._b_c01043{margin-left:-2.160000px;}
._13_c01043{margin-left:-1.080000px;}
._11_c01043{width:1.080000px;}
._7_c01043{width:2.100000px;}
._8_c01043{width:3.120000px;}
._6_c01043{width:4.680000px;}
._5_c01043{width:5.700000px;}
._9_c01043{width:6.720000px;}
._a_c01043{width:8.340000px;}
._4_c01043{width:9.540000px;}
._19_c01043{width:10.740000px;}
._f_c01043{width:12.060000px;}
._1d_c01043{width:13.680000px;}
._1b_c01043{width:16.980000px;}
._3_c01043{width:18.336000px;}
._2_c01043{width:20.640000px;}
._26_c01043{width:21.780000px;}
._1_c01043{width:23.376000px;}
._25_c01043{width:25.200000px;}
._1e_c01043{width:26.628000px;}
._0_c01043{width:28.272000px;}
._23_c01043{width:31.200000px;}
._1f_c01043{width:32.940000px;}
._22_c01043{width:35.280000px;}
._21_c01043{width:39.000000px;}
._18_c01043{width:44.340000px;}
._12_c01043{width:49.260000px;}
._10_c01043{width:52.800000px;}
._1a_c01043{width:63.060000px;}
.fc2_c01043{color:transparent;}
.fc1_c01043{color:rgb(128,128,128);}
.fc0_c01043{color:rgb(0,0,0);}
.fs0_c01043{font-size:48.000000px;}
.fs5_c01043{font-size:51.000000px;}
.fs4_c01043{font-size:54.000000px;}
.fs2_c01043{font-size:57.000000px;}
.fs1_c01043{font-size:60.000000px;}
.fs3_c01043{font-size:72.000000px;}
.y0_c01043{bottom:0.000000px;}
.y4e_c01043{bottom:3.105000px;}
.y4d_c01043{bottom:7.228371px;}
.y28_c01043{bottom:51.765000px;}
.y4b_c01043{bottom:52.965000px;}
.y27_c01043{bottom:70.665000px;}
.y4a_c01043{bottom:72.615000px;}
.y49_c01043{bottom:90.765000px;}
.y48_c01043{bottom:108.315000px;}
.y26_c01043{bottom:125.265000px;}
.y47_c01043{bottom:126.015000px;}
.y25_c01043{bottom:143.415000px;}
.y46_c01043{bottom:144.915000px;}
.y24_c01043{bottom:161.415000px;}
.y45_c01043{bottom:163.815000px;}
.y23_c01043{bottom:179.265000px;}
.y44_c01043{bottom:181.365000px;}
.y22_c01043{bottom:197.115000px;}
.y21_c01043{bottom:215.715000px;}
.y20_c01043{bottom:234.315000px;}
.y1f_c01043{bottom:252.465000px;}
.y43_c01043{bottom:254.115000px;}
.y1e_c01043{bottom:270.465000px;}
.y42_c01043{bottom:272.115000px;}
.y1d_c01043{bottom:288.015000px;}
.y41_c01043{bottom:289.215000px;}
.y1c_c01043{bottom:306.465000px;}
.y1b_c01043{bottom:324.765000px;}
.y40_c01043{bottom:325.665000px;}
.y1a_c01043{bottom:343.215000px;}
.y3f_c01043{bottom:344.265000px;}
.y19_c01043{bottom:361.815000px;}
.y18_c01043{bottom:378.315000px;}
.y3e_c01043{bottom:379.665000px;}
.y17_c01043{bottom:396.615000px;}
.y3d_c01043{bottom:397.665000px;}
.y16_c01043{bottom:414.915000px;}
.y3c_c01043{bottom:415.815000px;}
.y15_c01043{bottom:433.065000px;}
.y3b_c01043{bottom:434.415000px;}
.y14_c01043{bottom:450.915000px;}
.y3a_c01043{bottom:452.565000px;}
.y13_c01043{bottom:469.215000px;}
.y39_c01043{bottom:485.715000px;}
.y12_c01043{bottom:486.765000px;}
.y11_c01043{bottom:505.365000px;}
.y38_c01043{bottom:506.265000px;}
.y10_c01043{bottom:523.815000px;}
.y37_c01043{bottom:524.565000px;}
.yf_c01043{bottom:541.365000px;}
.y36_c01043{bottom:541.665000px;}
.ye_c01043{bottom:559.215000px;}
.y35_c01043{bottom:559.965000px;}
.y34_c01043{bottom:575.565000px;}
.yd_c01043{bottom:577.815000px;}
.y33_c01043{bottom:594.315000px;}
.yc_c01043{bottom:595.665000px;}
.y32_c01043{bottom:613.215000px;}
.yb_c01043{bottom:613.665000px;}
.ya_c01043{bottom:631.215000px;}
.y31_c01043{bottom:648.465000px;}
.y9_c01043{bottom:650.115000px;}
.y4c_c01043{bottom:654.765000px;}
.y30_c01043{bottom:667.365000px;}
.y8_c01043{bottom:667.965000px;}
.y2f_c01043{bottom:685.515000px;}
.y7_c01043{bottom:685.815000px;}
.y2e_c01043{bottom:703.365000px;}
.y6_c01043{bottom:704.715000px;}
.y2d_c01043{bottom:721.965000px;}
.y5_c01043{bottom:723.015000px;}
.y2c_c01043{bottom:739.815000px;}
.y4_c01043{bottom:741.615000px;}
.y2b_c01043{bottom:756.465000px;}
.y3_c01043{bottom:759.165000px;}
.y2a_c01043{bottom:775.365000px;}
.y2_c01043{bottom:778.065000px;}
.y29_c01043{bottom:794.865000px;}
.y1_c01043{bottom:796.215000px;}
.ha_c01043{height:13.200074px;}
.hb_c01043{height:43.804688px;}
.h9_c01043{height:46.516992px;}
.h7_c01043{height:56.592000px;}
.h8_c01043{height:59.690918px;}
.h5_c01043{height:59.736000px;}
.h2_c01043{height:62.880000px;}
.h4_c01043{height:64.020000px;}
.h3_c01043{height:65.040000px;}
.h6_c01043{height:70.664062px;}
.h0_c01043{height:848.625000px;}
.h1_c01043{height:849.000000px;}
.w2_c01043{width:104.875500px;}
.w1_c01043{width:579.750000px;}
.w0_c01043{width:579.975000px;}
.x0_c01043{left:0.000000px;}
.x3_c01043{left:94.200000px;}
.xd_c01043{left:98.550000px;}
.xa_c01043{left:99.900000px;}
.x6_c01043{left:101.250000px;}
.x7_c01043{left:103.200000px;}
.x14_c01043{left:104.250000px;}
.x15_c01043{left:105.750000px;}
.x16_c01043{left:109.050000px;}
.x2_c01043{left:111.000000px;}
.x11_c01043{left:114.450000px;}
.xf_c01043{left:116.100000px;}
.xc_c01043{left:117.450000px;}
.x5_c01043{left:119.400000px;}
.x9_c01043{left:122.850000px;}
.x17_c01043{left:124.650000px;}
.xb_c01043{left:174.600000px;}
.x4_c01043{left:177.150000px;}
.x10_c01043{left:178.500000px;}
.x12_c01043{left:180.300000px;}
.xe_c01043{left:183.150000px;}
.x8_c01043{left:188.100000px;}
.x13_c01043{left:190.050000px;}
.x1_c01043{left:212.400000px;}
.x2d_c01043{left:241.801758px;}
.x18_c01043{left:330.750000px;}
.x1c_c01043{left:335.100000px;}
.x19_c01043{left:336.450000px;}
.x25_c01043{left:339.150000px;}
.x27_c01043{left:340.650000px;}
.x2b_c01043{left:342.000000px;}
.x20_c01043{left:346.950000px;}
.x1f_c01043{left:348.300000px;}
.x22_c01043{left:350.700000px;}
.x26_c01043{left:352.350000px;}
.x1b_c01043{left:354.450000px;}
.x29_c01043{left:355.800000px;}
.x24_c01043{left:358.500000px;}
.x1a_c01043{left:410.400000px;}
.x1d_c01043{left:412.200000px;}
.x1e_c01043{left:414.150000px;}
.x21_c01043{left:415.500000px;}
.x23_c01043{left:416.850000px;}
.x2a_c01043{left:418.950000px;}
.x28_c01043{left:425.550000px;}
.x2c_c01043{left:555.600000px;}
@media print{
.v0_c01043{vertical-align:0.000000pt;}
.ls7_c01043{letter-spacing:0.000000pt;}
.ls2_c01043{letter-spacing:1.472000pt;}
.ls6_c01043{letter-spacing:2.133333pt;}
.ls3_c01043{letter-spacing:3.626667pt;}
.ls9_c01043{letter-spacing:5.333333pt;}
.ls5_c01043{letter-spacing:6.880000pt;}
.lsa_c01043{letter-spacing:8.000000pt;}
.ls1_c01043{letter-spacing:12.586667pt;}
.ls4_c01043{letter-spacing:16.533333pt;}
.ls0_c01043{letter-spacing:25.013333pt;}
.ls8_c01043{letter-spacing:26.666667pt;}
.ws5_c01043{word-spacing:-40.053333pt;}
.wsd_c01043{word-spacing:-36.946667pt;}
.wsa_c01043{word-spacing:-35.146667pt;}
.ws4_c01043{word-spacing:-27.146667pt;}
.ws8_c01043{word-spacing:-25.789333pt;}
.ws2_c01043{word-spacing:-25.653333pt;}
.wsb_c01043{word-spacing:-24.432000pt;}
.ws6_c01043{word-spacing:-20.746667pt;}
.ws9_c01043{word-spacing:-13.776000pt;}
.ws7_c01043{word-spacing:-13.386667pt;}
.wsc_c01043{word-spacing:-1.280000pt;}
.ws0_c01043{word-spacing:-1.237333pt;}
.ws3_c01043{word-spacing:-0.053333pt;}
.wse_c01043{word-spacing:0.000000pt;}
.ws1_c01043{word-spacing:6.058667pt;}
._17_c01043{margin-left:-16.906667pt;}
._1c_c01043{margin-left:-16.000000pt;}
._20_c01043{margin-left:-14.453333pt;}
._24_c01043{margin-left:-13.280000pt;}
._15_c01043{margin-left:-10.453333pt;}
._16_c01043{margin-left:-8.960000pt;}
._14_c01043{margin-left:-7.840000pt;}
._e_c01043{margin-left:-5.760000pt;}
._d_c01043{margin-left:-4.000000pt;}
._c_c01043{margin-left:-3.093333pt;}
._b_c01043{margin-left:-1.920000pt;}
._13_c01043{margin-left:-0.960000pt;}
._11_c01043{width:0.960000pt;}
._7_c01043{width:1.866667pt;}
._8_c01043{width:2.773333pt;}
._6_c01043{width:4.160000pt;}
._5_c01043{width:5.066667pt;}
._9_c01043{width:5.973333pt;}
._a_c01043{width:7.413333pt;}
._4_c01043{width:8.480000pt;}
._19_c01043{width:9.546667pt;}
._f_c01043{width:10.720000pt;}
._1d_c01043{width:12.160000pt;}
._1b_c01043{width:15.093333pt;}
._3_c01043{width:16.298667pt;}
._2_c01043{width:18.346667pt;}
._26_c01043{width:19.360000pt;}
._1_c01043{width:20.778667pt;}
._25_c01043{width:22.400000pt;}
._1e_c01043{width:23.669333pt;}
._0_c01043{width:25.130667pt;}
._23_c01043{width:27.733333pt;}
._1f_c01043{width:29.280000pt;}
._22_c01043{width:31.360000pt;}
._21_c01043{width:34.666667pt;}
._18_c01043{width:39.413333pt;}
._12_c01043{width:43.786667pt;}
._10_c01043{width:46.933333pt;}
._1a_c01043{width:56.053333pt;}
.fs0_c01043{font-size:42.666667pt;}
.fs5_c01043{font-size:45.333333pt;}
.fs4_c01043{font-size:48.000000pt;}
.fs2_c01043{font-size:50.666667pt;}
.fs1_c01043{font-size:53.333333pt;}
.fs3_c01043{font-size:64.000000pt;}
.y0_c01043{bottom:0.000000pt;}
.y4e_c01043{bottom:2.760000pt;}
.y4d_c01043{bottom:6.425219pt;}
.y28_c01043{bottom:46.013333pt;}
.y4b_c01043{bottom:47.080000pt;}
.y27_c01043{bottom:62.813333pt;}
.y4a_c01043{bottom:64.546667pt;}
.y49_c01043{bottom:80.680000pt;}
.y48_c01043{bottom:96.280000pt;}
.y26_c01043{bottom:111.346667pt;}
.y47_c01043{bottom:112.013333pt;}
.y25_c01043{bottom:127.480000pt;}
.y46_c01043{bottom:128.813333pt;}
.y24_c01043{bottom:143.480000pt;}
.y45_c01043{bottom:145.613333pt;}
.y23_c01043{bottom:159.346667pt;}
.y44_c01043{bottom:161.213333pt;}
.y22_c01043{bottom:175.213333pt;}
.y21_c01043{bottom:191.746667pt;}
.y20_c01043{bottom:208.280000pt;}
.y1f_c01043{bottom:224.413333pt;}
.y43_c01043{bottom:225.880000pt;}
.y1e_c01043{bottom:240.413333pt;}
.y42_c01043{bottom:241.880000pt;}
.y1d_c01043{bottom:256.013333pt;}
.y41_c01043{bottom:257.080000pt;}
.y1c_c01043{bottom:272.413333pt;}
.y1b_c01043{bottom:288.680000pt;}
.y40_c01043{bottom:289.480000pt;}
.y1a_c01043{bottom:305.080000pt;}
.y3f_c01043{bottom:306.013333pt;}
.y19_c01043{bottom:321.613333pt;}
.y18_c01043{bottom:336.280000pt;}
.y3e_c01043{bottom:337.480000pt;}
.y17_c01043{bottom:352.546667pt;}
.y3d_c01043{bottom:353.480000pt;}
.y16_c01043{bottom:368.813333pt;}
.y3c_c01043{bottom:369.613333pt;}
.y15_c01043{bottom:384.946667pt;}
.y3b_c01043{bottom:386.146667pt;}
.y14_c01043{bottom:400.813333pt;}
.y3a_c01043{bottom:402.280000pt;}
.y13_c01043{bottom:417.080000pt;}
.y39_c01043{bottom:431.746667pt;}
.y12_c01043{bottom:432.680000pt;}
.y11_c01043{bottom:449.213333pt;}
.y38_c01043{bottom:450.013333pt;}
.y10_c01043{bottom:465.613333pt;}
.y37_c01043{bottom:466.280000pt;}
.yf_c01043{bottom:481.213333pt;}
.y36_c01043{bottom:481.480000pt;}
.ye_c01043{bottom:497.080000pt;}
.y35_c01043{bottom:497.746667pt;}
.y34_c01043{bottom:511.613333pt;}
.yd_c01043{bottom:513.613333pt;}
.y33_c01043{bottom:528.280000pt;}
.yc_c01043{bottom:529.480000pt;}
.y32_c01043{bottom:545.080000pt;}
.yb_c01043{bottom:545.480000pt;}
.ya_c01043{bottom:561.080000pt;}
.y31_c01043{bottom:576.413333pt;}
.y9_c01043{bottom:577.880000pt;}
.y4c_c01043{bottom:582.013333pt;}
.y30_c01043{bottom:593.213333pt;}
.y8_c01043{bottom:593.746667pt;}
.y2f_c01043{bottom:609.346667pt;}
.y7_c01043{bottom:609.613333pt;}
.y2e_c01043{bottom:625.213333pt;}
.y6_c01043{bottom:626.413333pt;}
.y2d_c01043{bottom:641.746667pt;}
.y5_c01043{bottom:642.680000pt;}
.y2c_c01043{bottom:657.613333pt;}
.y4_c01043{bottom:659.213333pt;}
.y2b_c01043{bottom:672.413333pt;}
.y3_c01043{bottom:674.813333pt;}
.y2a_c01043{bottom:689.213333pt;}
.y2_c01043{bottom:691.613333pt;}
.y29_c01043{bottom:706.546667pt;}
.y1_c01043{bottom:707.746667pt;}
.ha_c01043{height:11.733399pt;}
.hb_c01043{height:38.937500pt;}
.h9_c01043{height:41.348437pt;}
.h7_c01043{height:50.304000pt;}
.h8_c01043{height:53.058594pt;}
.h5_c01043{height:53.098667pt;}
.h2_c01043{height:55.893333pt;}
.h4_c01043{height:56.906667pt;}
.h3_c01043{height:57.813333pt;}
.h6_c01043{height:62.812500pt;}
.h0_c01043{height:754.333333pt;}
.h1_c01043{height:754.666667pt;}
.w2_c01043{width:93.222667pt;}
.w1_c01043{width:515.333333pt;}
.w0_c01043{width:515.533333pt;}
.x0_c01043{left:0.000000pt;}
.x3_c01043{left:83.733333pt;}
.xd_c01043{left:87.600000pt;}
.xa_c01043{left:88.800000pt;}
.x6_c01043{left:90.000000pt;}
.x7_c01043{left:91.733333pt;}
.x14_c01043{left:92.666667pt;}
.x15_c01043{left:94.000000pt;}
.x16_c01043{left:96.933333pt;}
.x2_c01043{left:98.666667pt;}
.x11_c01043{left:101.733333pt;}
.xf_c01043{left:103.200000pt;}
.xc_c01043{left:104.400000pt;}
.x5_c01043{left:106.133333pt;}
.x9_c01043{left:109.200000pt;}
.x17_c01043{left:110.800000pt;}
.xb_c01043{left:155.200000pt;}
.x4_c01043{left:157.466667pt;}
.x10_c01043{left:158.666667pt;}
.x12_c01043{left:160.266667pt;}
.xe_c01043{left:162.800000pt;}
.x8_c01043{left:167.200000pt;}
.x13_c01043{left:168.933333pt;}
.x1_c01043{left:188.800000pt;}
.x2d_c01043{left:214.934896pt;}
.x18_c01043{left:294.000000pt;}
.x1c_c01043{left:297.866667pt;}
.x19_c01043{left:299.066667pt;}
.x25_c01043{left:301.466667pt;}
.x27_c01043{left:302.800000pt;}
.x2b_c01043{left:304.000000pt;}
.x20_c01043{left:308.400000pt;}
.x1f_c01043{left:309.600000pt;}
.x22_c01043{left:311.733333pt;}
.x26_c01043{left:313.200000pt;}
.x1b_c01043{left:315.066667pt;}
.x29_c01043{left:316.266667pt;}
.x24_c01043{left:318.666667pt;}
.x1a_c01043{left:364.800000pt;}
.x1d_c01043{left:366.400000pt;}
.x1e_c01043{left:368.133333pt;}
.x21_c01043{left:369.333333pt;}
.x23_c01043{left:370.533333pt;}
.x2a_c01043{left:372.400000pt;}
.x28_c01043{left:378.266667pt;}
.x2c_c01043{left:493.866667pt;}
}





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

.ir_c01044:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01044{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01044;src:url('chunks/assets/font_3ea278abeeb5ff8a53445c52.woff2')format("woff");}.ff1_c01044{font-family:ff1_c01044;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01044;src:url('chunks/assets/font_e162c33b216a3e34d3ad32bd.woff2')format("woff");}.ff2_c01044{font-family:ff2_c01044;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01044;src:url('chunks/assets/font_3c335337be72ccf7d3160783.woff2')format("woff");}.ff3_c01044{font-family:ff3_c01044;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01044;src:url('chunks/assets/font_1327bebcde28accb3b4f5137.woff2')format("woff");}.ff4_c01044{font-family:ff4_c01044;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01044;src:url('chunks/assets/font_69fbed44fe430d5877c9dd51.woff2')format("woff");}.ff5_c01044{font-family:ff5_c01044;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01044;src:url('chunks/assets/font_7164f7fc20c479aacf7b7c04.woff2')format("woff");}.ff6_c01044{font-family:ff6_c01044;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01044;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff7_c01044{font-family:ff7_c01044;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01044{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c01044{vertical-align:-83.400000px;}
.v0_c01044{vertical-align:0.000000px;}
.lsd_c01044{letter-spacing:-6.000000px;}
.lsa_c01044{letter-spacing:0.000000px;}
.ls7_c01044{letter-spacing:0.780000px;}
.ls1_c01044{letter-spacing:1.200000px;}
.ls2_c01044{letter-spacing:3.420000px;}
.lsb_c01044{letter-spacing:6.000000px;}
.ls4_c01044{letter-spacing:6.600000px;}
.ls6_c01044{letter-spacing:7.800000px;}
.lsc_c01044{letter-spacing:9.000000px;}
.ls5_c01044{letter-spacing:11.280000px;}
.ls3_c01044{letter-spacing:13.200000px;}
.ls0_c01044{letter-spacing:21.600000px;}
.ls8_c01044{letter-spacing:22.005000px;}
.ls9_c01044{letter-spacing:311.400000px;}
.sc__c01044{text-shadow:none;}
.sc0_c01044{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01044{-webkit-text-stroke:0px transparent;}
.sc0_c01044{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c01044{word-spacing:-39.399000px;}
.ws3_c01044{word-spacing:-23.340000px;}
.ws2_c01044{word-spacing:-15.060000px;}
.ws5_c01044{word-spacing:-14.340000px;}
.ws1_c01044{word-spacing:-14.160000px;}
.ws7_c01044{word-spacing:-13.452000px;}
.ws4_c01044{word-spacing:-1.620000px;}
.ws0_c01044{word-spacing:-1.200000px;}
.ws8_c01044{word-spacing:0.000000px;}
._1d_c01044{margin-left:-19.500000px;}
._c_c01044{margin-left:-17.160000px;}
._1e_c01044{margin-left:-13.920000px;}
._9_c01044{margin-left:-9.120000px;}
._18_c01044{margin-left:-7.980000px;}
._15_c01044{margin-left:-6.216000px;}
._1a_c01044{margin-left:-4.920000px;}
._7_c01044{margin-left:-3.420000px;}
._5_c01044{margin-left:-1.620000px;}
._b_c01044{width:1.140000px;}
._4_c01044{width:2.220000px;}
._6_c01044{width:3.240000px;}
._8_c01044{width:4.440000px;}
._a_c01044{width:6.420000px;}
._2_c01044{width:7.560000px;}
._11_c01044{width:9.120000px;}
._12_c01044{width:10.200000px;}
._3_c01044{width:11.220000px;}
._14_c01044{width:12.720000px;}
._10_c01044{width:13.812000px;}
._0_c01044{width:15.240000px;}
._1_c01044{width:16.860000px;}
._d_c01044{width:18.240000px;}
._1f_c01044{width:19.260000px;}
._e_c01044{width:20.340000px;}
._13_c01044{width:22.728000px;}
._1c_c01044{width:25.920000px;}
._16_c01044{width:26.940000px;}
._1b_c01044{width:32.940000px;}
._17_c01044{width:34.020000px;}
._20_c01044{width:35.100000px;}
._19_c01044{width:90.600000px;}
._f_c01044{width:198.780000px;}
.fc2_c01044{color:transparent;}
.fc1_c01044{color:rgb(128,128,128);}
.fc0_c01044{color:rgb(0,0,0);}
.fs7_c01044{font-size:45.000000px;}
.fs8_c01044{font-size:48.000000px;}
.fs1_c01044{font-size:51.000000px;}
.fs6_c01044{font-size:57.000000px;}
.fs0_c01044{font-size:60.000000px;}
.fs2_c01044{font-size:63.000000px;}
.fs5_c01044{font-size:69.000000px;}
.fs3_c01044{font-size:105.000000px;}
.fs4_c01044{font-size:132.000000px;}
.y0_c01044{bottom:0.000000px;}
.y46_c01044{bottom:3.105000px;}
.y45_c01044{bottom:7.228371px;}
.y36_c01044{bottom:55.815000px;}
.y44_c01044{bottom:57.765000px;}
.y35_c01044{bottom:76.065000px;}
.y43_c01044{bottom:77.715000px;}
.y34_c01044{bottom:94.965000px;}
.y42_c01044{bottom:95.865000px;}
.y33_c01044{bottom:112.515000px;}
.y41_c01044{bottom:113.865000px;}
.y32_c01044{bottom:131.265000px;}
.y31_c01044{bottom:149.265000px;}
.y40_c01044{bottom:149.565000px;}
.y3f_c01044{bottom:166.815000px;}
.y30_c01044{bottom:167.415000px;}
.y2f_c01044{bottom:184.965000px;}
.y3e_c01044{bottom:202.965000px;}
.y2e_c01044{bottom:203.565000px;}
.y2d_c01044{bottom:221.415000px;}
.y3d_c01044{bottom:221.865000px;}
.y3c_c01044{bottom:238.065000px;}
.y2c_c01044{bottom:240.015000px;}
.y3b_c01044{bottom:256.815000px;}
.y3a_c01044{bottom:275.115000px;}
.y2b_c01044{bottom:291.615000px;}
.y39_c01044{bottom:293.415000px;}
.y38_c01044{bottom:310.815000px;}
.y37_c01044{bottom:329.415000px;}
.y17_c01044{bottom:346.065000px;}
.y2a_c01044{bottom:364.965000px;}
.y16_c01044{bottom:365.265000px;}
.y15_c01044{bottom:383.415000px;}
.y14_c01044{bottom:400.065000px;}
.y13_c01044{bottom:419.265000px;}
.y29_c01044{bottom:435.765000px;}
.y12_c01044{bottom:437.865000px;}
.y28_c01044{bottom:454.065000px;}
.y11_c01044{bottom:454.665000px;}
.y27_c01044{bottom:471.615000px;}
.y10_c01044{bottom:490.365000px;}
.yf_c01044{bottom:508.065000px;}
.y26_c01044{bottom:508.365000px;}
.ye_c01044{bottom:524.265000px;}
.y25_c01044{bottom:524.565000px;}
.yd_c01044{bottom:542.415000px;}
.y24_c01044{bottom:543.015000px;}
.yc_c01044{bottom:559.365000px;}
.y23_c01044{bottom:561.615000px;}
.yb_c01044{bottom:578.265000px;}
.y22_c01044{bottom:597.015000px;}
.ya_c01044{bottom:612.915000px;}
.y21_c01044{bottom:615.915000px;}
.y9_c01044{bottom:632.115000px;}
.y20_c01044{bottom:633.915000px;}
.y8_c01044{bottom:650.415000px;}
.y1f_c01044{bottom:668.715000px;}
.y7_c01044{bottom:686.115000px;}
.y1e_c01044{bottom:687.165000px;}
.y6_c01044{bottom:704.115000px;}
.y1d_c01044{bottom:705.165000px;}
.y5_c01044{bottom:723.015000px;}
.y1c_c01044{bottom:723.315000px;}
.y4_c01044{bottom:740.265000px;}
.y1b_c01044{bottom:740.565000px;}
.y3_c01044{bottom:759.015000px;}
.y1a_c01044{bottom:759.165000px;}
.y2_c01044{bottom:775.665000px;}
.y19_c01044{bottom:777.915000px;}
.y1_c01044{bottom:794.265000px;}
.y18_c01044{bottom:795.165000px;}
.h9_c01044{height:13.200074px;}
.ha_c01044{height:43.804688px;}
.h8_c01044{height:59.736000px;}
.h2_c01044{height:62.880000px;}
.h4_c01044{height:64.020000px;}
.h3_c01044{height:66.024000px;}
.h7_c01044{height:73.623000px;}
.h5_c01044{height:110.040000px;}
.h6_c01044{height:138.336000px;}
.h0_c01044{height:833.775000px;}
.h1_c01044{height:834.000000px;}
.w2_c01044{width:104.875500px;}
.w0_c01044{width:579.450000px;}
.w1_c01044{width:579.750000px;}
.x0_c01044{left:0.000000px;}
.xe_c01044{left:33.750000px;}
.x7_c01044{left:34.800000px;}
.x1f_c01044{left:36.450000px;}
.x9_c01044{left:37.500000px;}
.x6_c01044{left:38.850000px;}
.x4_c01044{left:40.500000px;}
.xa_c01044{left:49.500000px;}
.x8_c01044{left:52.650000px;}
.x20_c01044{left:54.900000px;}
.x3_c01044{left:56.700000px;}
.xc_c01044{left:57.750000px;}
.x5_c01044{left:59.100000px;}
.xd_c01044{left:65.100000px;}
.xb_c01044{left:113.400000px;}
.x21_c01044{left:115.650000px;}
.x2_c01044{left:128.550000px;}
.x1_c01044{left:130.950000px;}
.x1e_c01044{left:134.250000px;}
.x2b_c01044{left:241.539230px;}
.xf_c01044{left:258.900000px;}
.x27_c01044{left:269.250000px;}
.x23_c01044{left:270.300000px;}
.x1c_c01044{left:272.400000px;}
.x2a_c01044{left:273.750000px;}
.x1a_c01044{left:275.400000px;}
.x17_c01044{left:276.750000px;}
.x13_c01044{left:278.400000px;}
.x16_c01044{left:280.500000px;}
.x14_c01044{left:282.900000px;}
.x11_c01044{left:284.550000px;}
.x26_c01044{left:286.500000px;}
.x29_c01044{left:288.450000px;}
.x24_c01044{left:291.600000px;}
.x1b_c01044{left:292.950000px;}
.x19_c01044{left:294.300000px;}
.x18_c01044{left:295.650000px;}
.x15_c01044{left:298.350000px;}
.x10_c01044{left:305.100000px;}
.x12_c01044{left:310.800000px;}
.x28_c01044{left:340.200000px;}
.x22_c01044{left:342.450000px;}
.x25_c01044{left:347.850000px;}
.x1d_c01044{left:368.550000px;}
@media print{
.v1_c01044{vertical-align:-74.133333pt;}
.v0_c01044{vertical-align:0.000000pt;}
.lsd_c01044{letter-spacing:-5.333333pt;}
.lsa_c01044{letter-spacing:0.000000pt;}
.ls7_c01044{letter-spacing:0.693333pt;}
.ls1_c01044{letter-spacing:1.066667pt;}
.ls2_c01044{letter-spacing:3.040000pt;}
.lsb_c01044{letter-spacing:5.333333pt;}
.ls4_c01044{letter-spacing:5.866667pt;}
.ls6_c01044{letter-spacing:6.933333pt;}
.lsc_c01044{letter-spacing:8.000000pt;}
.ls5_c01044{letter-spacing:10.026667pt;}
.ls3_c01044{letter-spacing:11.733333pt;}
.ls0_c01044{letter-spacing:19.200000pt;}
.ls8_c01044{letter-spacing:19.560000pt;}
.ls9_c01044{letter-spacing:276.800000pt;}
.ws6_c01044{word-spacing:-35.021333pt;}
.ws3_c01044{word-spacing:-20.746667pt;}
.ws2_c01044{word-spacing:-13.386667pt;}
.ws5_c01044{word-spacing:-12.746667pt;}
.ws1_c01044{word-spacing:-12.586667pt;}
.ws7_c01044{word-spacing:-11.957333pt;}
.ws4_c01044{word-spacing:-1.440000pt;}
.ws0_c01044{word-spacing:-1.066667pt;}
.ws8_c01044{word-spacing:0.000000pt;}
._1d_c01044{margin-left:-17.333333pt;}
._c_c01044{margin-left:-15.253333pt;}
._1e_c01044{margin-left:-12.373333pt;}
._9_c01044{margin-left:-8.106667pt;}
._18_c01044{margin-left:-7.093333pt;}
._15_c01044{margin-left:-5.525333pt;}
._1a_c01044{margin-left:-4.373333pt;}
._7_c01044{margin-left:-3.040000pt;}
._5_c01044{margin-left:-1.440000pt;}
._b_c01044{width:1.013333pt;}
._4_c01044{width:1.973333pt;}
._6_c01044{width:2.880000pt;}
._8_c01044{width:3.946667pt;}
._a_c01044{width:5.706667pt;}
._2_c01044{width:6.720000pt;}
._11_c01044{width:8.106667pt;}
._12_c01044{width:9.066667pt;}
._3_c01044{width:9.973333pt;}
._14_c01044{width:11.306667pt;}
._10_c01044{width:12.277333pt;}
._0_c01044{width:13.546667pt;}
._1_c01044{width:14.986667pt;}
._d_c01044{width:16.213333pt;}
._1f_c01044{width:17.120000pt;}
._e_c01044{width:18.080000pt;}
._13_c01044{width:20.202667pt;}
._1c_c01044{width:23.040000pt;}
._16_c01044{width:23.946667pt;}
._1b_c01044{width:29.280000pt;}
._17_c01044{width:30.240000pt;}
._20_c01044{width:31.200000pt;}
._19_c01044{width:80.533333pt;}
._f_c01044{width:176.693333pt;}
.fs7_c01044{font-size:40.000000pt;}
.fs8_c01044{font-size:42.666667pt;}
.fs1_c01044{font-size:45.333333pt;}
.fs6_c01044{font-size:50.666667pt;}
.fs0_c01044{font-size:53.333333pt;}
.fs2_c01044{font-size:56.000000pt;}
.fs5_c01044{font-size:61.333333pt;}
.fs3_c01044{font-size:93.333333pt;}
.fs4_c01044{font-size:117.333333pt;}
.y0_c01044{bottom:0.000000pt;}
.y46_c01044{bottom:2.760000pt;}
.y45_c01044{bottom:6.425219pt;}
.y36_c01044{bottom:49.613333pt;}
.y44_c01044{bottom:51.346667pt;}
.y35_c01044{bottom:67.613333pt;}
.y43_c01044{bottom:69.080000pt;}
.y34_c01044{bottom:84.413333pt;}
.y42_c01044{bottom:85.213333pt;}
.y33_c01044{bottom:100.013333pt;}
.y41_c01044{bottom:101.213333pt;}
.y32_c01044{bottom:116.680000pt;}
.y31_c01044{bottom:132.680000pt;}
.y40_c01044{bottom:132.946667pt;}
.y3f_c01044{bottom:148.280000pt;}
.y30_c01044{bottom:148.813333pt;}
.y2f_c01044{bottom:164.413333pt;}
.y3e_c01044{bottom:180.413333pt;}
.y2e_c01044{bottom:180.946667pt;}
.y2d_c01044{bottom:196.813333pt;}
.y3d_c01044{bottom:197.213333pt;}
.y3c_c01044{bottom:211.613333pt;}
.y2c_c01044{bottom:213.346667pt;}
.y3b_c01044{bottom:228.280000pt;}
.y3a_c01044{bottom:244.546667pt;}
.y2b_c01044{bottom:259.213333pt;}
.y39_c01044{bottom:260.813333pt;}
.y38_c01044{bottom:276.280000pt;}
.y37_c01044{bottom:292.813333pt;}
.y17_c01044{bottom:307.613333pt;}
.y2a_c01044{bottom:324.413333pt;}
.y16_c01044{bottom:324.680000pt;}
.y15_c01044{bottom:340.813333pt;}
.y14_c01044{bottom:355.613333pt;}
.y13_c01044{bottom:372.680000pt;}
.y29_c01044{bottom:387.346667pt;}
.y12_c01044{bottom:389.213333pt;}
.y28_c01044{bottom:403.613333pt;}
.y11_c01044{bottom:404.146667pt;}
.y27_c01044{bottom:419.213333pt;}
.y10_c01044{bottom:435.880000pt;}
.yf_c01044{bottom:451.613333pt;}
.y26_c01044{bottom:451.880000pt;}
.ye_c01044{bottom:466.013333pt;}
.y25_c01044{bottom:466.280000pt;}
.yd_c01044{bottom:482.146667pt;}
.y24_c01044{bottom:482.680000pt;}
.yc_c01044{bottom:497.213333pt;}
.y23_c01044{bottom:499.213333pt;}
.yb_c01044{bottom:514.013333pt;}
.y22_c01044{bottom:530.680000pt;}
.ya_c01044{bottom:544.813333pt;}
.y21_c01044{bottom:547.480000pt;}
.y9_c01044{bottom:561.880000pt;}
.y20_c01044{bottom:563.480000pt;}
.y8_c01044{bottom:578.146667pt;}
.y1f_c01044{bottom:594.413333pt;}
.y7_c01044{bottom:609.880000pt;}
.y1e_c01044{bottom:610.813333pt;}
.y6_c01044{bottom:625.880000pt;}
.y1d_c01044{bottom:626.813333pt;}
.y5_c01044{bottom:642.680000pt;}
.y1c_c01044{bottom:642.946667pt;}
.y4_c01044{bottom:658.013333pt;}
.y1b_c01044{bottom:658.280000pt;}
.y3_c01044{bottom:674.680000pt;}
.y1a_c01044{bottom:674.813333pt;}
.y2_c01044{bottom:689.480000pt;}
.y19_c01044{bottom:691.480000pt;}
.y1_c01044{bottom:706.013333pt;}
.y18_c01044{bottom:706.813333pt;}
.h9_c01044{height:11.733399pt;}
.ha_c01044{height:38.937500pt;}
.h8_c01044{height:53.098667pt;}
.h2_c01044{height:55.893333pt;}
.h4_c01044{height:56.906667pt;}
.h3_c01044{height:58.688000pt;}
.h7_c01044{height:65.442667pt;}
.h5_c01044{height:97.813333pt;}
.h6_c01044{height:122.965333pt;}
.h0_c01044{height:741.133333pt;}
.h1_c01044{height:741.333333pt;}
.w2_c01044{width:93.222667pt;}
.w0_c01044{width:515.066667pt;}
.w1_c01044{width:515.333333pt;}
.x0_c01044{left:0.000000pt;}
.xe_c01044{left:30.000000pt;}
.x7_c01044{left:30.933333pt;}
.x1f_c01044{left:32.400000pt;}
.x9_c01044{left:33.333333pt;}
.x6_c01044{left:34.533333pt;}
.x4_c01044{left:36.000000pt;}
.xa_c01044{left:44.000000pt;}
.x8_c01044{left:46.800000pt;}
.x20_c01044{left:48.800000pt;}
.x3_c01044{left:50.400000pt;}
.xc_c01044{left:51.333333pt;}
.x5_c01044{left:52.533333pt;}
.xd_c01044{left:57.866667pt;}
.xb_c01044{left:100.800000pt;}
.x21_c01044{left:102.800000pt;}
.x2_c01044{left:114.266667pt;}
.x1_c01044{left:116.400000pt;}
.x1e_c01044{left:119.333333pt;}
.x2b_c01044{left:214.701538pt;}
.xf_c01044{left:230.133333pt;}
.x27_c01044{left:239.333333pt;}
.x23_c01044{left:240.266667pt;}
.x1c_c01044{left:242.133333pt;}
.x2a_c01044{left:243.333333pt;}
.x1a_c01044{left:244.800000pt;}
.x17_c01044{left:246.000000pt;}
.x13_c01044{left:247.466667pt;}
.x16_c01044{left:249.333333pt;}
.x14_c01044{left:251.466667pt;}
.x11_c01044{left:252.933333pt;}
.x26_c01044{left:254.666667pt;}
.x29_c01044{left:256.400000pt;}
.x24_c01044{left:259.200000pt;}
.x1b_c01044{left:260.400000pt;}
.x19_c01044{left:261.600000pt;}
.x18_c01044{left:262.800000pt;}
.x15_c01044{left:265.200000pt;}
.x10_c01044{left:271.200000pt;}
.x12_c01044{left:276.266667pt;}
.x28_c01044{left:302.400000pt;}
.x22_c01044{left:304.400000pt;}
.x25_c01044{left:309.200000pt;}
.x1d_c01044{left:327.600000pt;}
}





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

.ir_c01045:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01045{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01045;src:url('chunks/assets/font_2388f01addcbc7bf243bf05d.woff2')format("woff");}.ff1_c01045{font-family:ff1_c01045;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01045;src:url('chunks/assets/font_58068f36058545b8d821bbb6.woff2')format("woff");}.ff2_c01045{font-family:ff2_c01045;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01045;src:url('chunks/assets/font_dd202a162840cc9b6a8931ae.woff2')format("woff");}.ff3_c01045{font-family:ff3_c01045;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01045;src:url('chunks/assets/font_acfbe6ca31cff699f526f1e7.woff2')format("woff");}.ff4_c01045{font-family:ff4_c01045;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:ff5_c01045;src:url('chunks/assets/font_f13fe86db24bfc89d283ecfd.woff2')format("woff");}.ff5_c01045{font-family:ff5_c01045;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01045;src:url('chunks/assets/font_6525c6a3f1af07ea224de5fa.woff2')format("woff");}.ff6_c01045{font-family:ff6_c01045;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01045;src:url('chunks/assets/font_519dfa7c0caf07bd73e26132.woff2')format("woff");}.ff7_c01045{font-family:ff7_c01045;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c01045;src:url('chunks/assets/font_7c7b114d6d8510036cb24ad0.woff2')format("woff");}.ff8_c01045{font-family:ff8_c01045;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c01045;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff9_c01045{font-family:ff9_c01045;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01045{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01045{transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);}
.v2_c01045{vertical-align:-75.600000px;}
.v1_c01045{vertical-align:-69.000000px;}
.v3_c01045{vertical-align:-64.800000px;}
.v0_c01045{vertical-align:0.000000px;}
.ls7_c01045{letter-spacing:-6.000000px;}
.ls5_c01045{letter-spacing:0.000000px;}
.ls3_c01045{letter-spacing:3.000000px;}
.ls2_c01045{letter-spacing:3.540000px;}
.ls6_c01045{letter-spacing:6.000000px;}
.ls0_c01045{letter-spacing:6.600000px;}
.ls8_c01045{letter-spacing:9.000000px;}
.ls4_c01045{letter-spacing:12.000000px;}
.ls1_c01045{letter-spacing:35.040000px;}
.sc__c01045{text-shadow:none;}
.sc0_c01045{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01045{-webkit-text-stroke:0px transparent;}
.sc0_c01045{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c01045{word-spacing:-48.684000px;}
.ws1_c01045{word-spacing:-23.340000px;}
.ws3_c01045{word-spacing:-15.060000px;}
.ws0_c01045{word-spacing:-14.868000px;}
.ws2_c01045{word-spacing:-14.160000px;}
.ws6_c01045{word-spacing:0.000000px;}
.ws4_c01045{word-spacing:6.240000px;}
._22_c01045{margin-left:-21.000000px;}
._23_c01045{margin-left:-17.424000px;}
._15_c01045{margin-left:-16.080000px;}
._17_c01045{margin-left:-13.743000px;}
._18_c01045{margin-left:-12.537000px;}
._d_c01045{margin-left:-10.020000px;}
._c_c01045{margin-left:-8.700000px;}
._5_c01045{margin-left:-6.840000px;}
._b_c01045{margin-left:-4.860000px;}
._12_c01045{margin-left:-3.780000px;}
._6_c01045{margin-left:-2.580000px;}
._3_c01045{margin-left:-1.200000px;}
._e_c01045{width:1.260000px;}
._2_c01045{width:2.340000px;}
._4_c01045{width:3.420000px;}
._1_c01045{width:4.500000px;}
._0_c01045{width:6.240000px;}
._13_c01045{width:7.320000px;}
._7_c01045{width:8.340000px;}
._f_c01045{width:9.840000px;}
._10_c01045{width:10.980000px;}
._a_c01045{width:12.600000px;}
._11_c01045{width:13.620000px;}
._1b_c01045{width:16.080000px;}
._9_c01045{width:17.340000px;}
._8_c01045{width:18.660000px;}
._1a_c01045{width:22.620000px;}
._19_c01045{width:25.440000px;}
._16_c01045{width:27.180000px;}
._14_c01045{width:29.583000px;}
._1f_c01045{width:30.840000px;}
._20_c01045{width:32.760000px;}
._1d_c01045{width:38.400000px;}
._21_c01045{width:49.920000px;}
._1c_c01045{width:116.157000px;}
._1e_c01045{width:214.788000px;}
.fc2_c01045{color:transparent;}
.fc1_c01045{color:rgb(128,128,128);}
.fc0_c01045{color:rgb(0,0,0);}
.fs5_c01045{font-size:30.000000px;}
.fs3_c01045{font-size:36.000000px;}
.fs1_c01045{font-size:48.000000px;}
.fs6_c01045{font-size:54.000000px;}
.fs0_c01045{font-size:60.000000px;}
.fs2_c01045{font-size:63.000000px;}
.fs7_c01045{font-size:66.000000px;}
.fs8_c01045{font-size:84.000000px;}
.fs4_c01045{font-size:132.000000px;}
.y0_c01045{bottom:0.000000px;}
.y45_c01045{bottom:3.105000px;}
.y44_c01045{bottom:7.228371px;}
.y24_c01045{bottom:62.565000px;}
.y23_c01045{bottom:80.415000px;}
.y43_c01045{bottom:81.015000px;}
.y22_c01045{bottom:99.015000px;}
.y42_c01045{bottom:99.315000px;}
.y41_c01045{bottom:117.465000px;}
.y40_c01045{bottom:135.465000px;}
.y21_c01045{bottom:136.815000px;}
.y3f_c01045{bottom:153.315000px;}
.y3e_c01045{bottom:170.865000px;}
.y20_c01045{bottom:189.315000px;}
.y1f_c01045{bottom:206.865000px;}
.y1e_c01045{bottom:225.165000px;}
.y3d_c01045{bottom:225.465000px;}
.y1d_c01045{bottom:243.015000px;}
.y3c_c01045{bottom:243.315000px;}
.y1c_c01045{bottom:261.015000px;}
.y1b_c01045{bottom:279.915000px;}
.y1a_c01045{bottom:296.715000px;}
.y19_c01045{bottom:314.565000px;}
.y18_c01045{bottom:332.865000px;}
.y3b_c01045{bottom:351.465000px;}
.y17_c01045{bottom:367.965000px;}
.y3a_c01045{bottom:368.865000px;}
.y16_c01045{bottom:386.415000px;}
.y15_c01045{bottom:403.965000px;}
.y39_c01045{bottom:423.015000px;}
.y14_c01045{bottom:423.315000px;}
.y13_c01045{bottom:440.115000px;}
.y38_c01045{bottom:441.465000px;}
.y12_c01045{bottom:458.115000px;}
.y37_c01045{bottom:459.015000px;}
.y11_c01045{bottom:476.865000px;}
.y36_c01045{bottom:477.615000px;}
.y10_c01045{bottom:494.865000px;}
.y35_c01045{bottom:495.465000px;}
.y34_c01045{bottom:513.465000px;}
.yf_c01045{bottom:513.765000px;}
.y33_c01045{bottom:530.565000px;}
.ye_c01045{bottom:532.665000px;}
.y32_c01045{bottom:549.465000px;}
.yd_c01045{bottom:550.515000px;}
.y31_c01045{bottom:567.765000px;}
.yc_c01045{bottom:568.065000px;}
.y30_c01045{bottom:584.865000px;}
.yb_c01045{bottom:587.715000px;}
.y2f_c01045{bottom:603.165000px;}
.ya_c01045{bottom:605.115000px;}
.y9_c01045{bottom:622.815000px;}
.y2e_c01045{bottom:640.215000px;}
.y8_c01045{bottom:642.015000px;}
.y2d_c01045{bottom:657.165000px;}
.y7_c01045{bottom:660.615000px;}
.y2c_c01045{bottom:675.015000px;}
.y6_c01045{bottom:678.765000px;}
.y2b_c01045{bottom:693.915000px;}
.y5_c01045{bottom:696.915000px;}
.y2a_c01045{bottom:711.465000px;}
.y4_c01045{bottom:715.815000px;}
.y29_c01045{bottom:729.015000px;}
.y3_c01045{bottom:734.115000px;}
.y28_c01045{bottom:747.015000px;}
.y2_c01045{bottom:751.965000px;}
.y27_c01045{bottom:765.165000px;}
.y1_c01045{bottom:770.265000px;}
.y26_c01045{bottom:783.315000px;}
.y25_c01045{bottom:801.915000px;}
.hb_c01045{height:13.200074px;}
.h6_c01045{height:31.440000px;}
.hc_c01045{height:43.804688px;}
.h8_c01045{height:51.216000px;}
.h7_c01045{height:56.320312px;}
.h2_c01045{height:62.880000px;}
.h4_c01045{height:64.020000px;}
.h3_c01045{height:66.024000px;}
.h9_c01045{height:69.168000px;}
.ha_c01045{height:91.056000px;}
.h5_c01045{height:138.336000px;}
.h0_c01045{height:848.625000px;}
.h1_c01045{height:849.000000px;}
.w2_c01045{width:104.875500px;}
.w1_c01045{width:579.750000px;}
.w0_c01045{width:579.975000px;}
.x0_c01045{left:0.000000px;}
.x9_c01045{left:88.800000px;}
.x7_c01045{left:90.750000px;}
.x5_c01045{left:92.100000px;}
.x2_c01045{left:93.900000px;}
.x3_c01045{left:96.600000px;}
.x6_c01045{left:107.700000px;}
.x4_c01045{left:111.000000px;}
.x1_c01045{left:112.950000px;}
.xa_c01045{left:159.900000px;}
.xc_c01045{left:161.700000px;}
.x8_c01045{left:169.650000px;}
.xb_c01045{left:190.950000px;}
.x1c_c01045{left:241.801758px;}
.xd_c01045{left:324.900000px;}
.x19_c01045{left:327.300000px;}
.x12_c01045{left:328.650000px;}
.x16_c01045{left:330.450000px;}
.x1b_c01045{left:335.850000px;}
.x18_c01045{left:340.500000px;}
.xf_c01045{left:343.200000px;}
.x15_c01045{left:344.850000px;}
.x11_c01045{left:349.650000px;}
.x17_c01045{left:351.900000px;}
.x13_c01045{left:358.050000px;}
.xe_c01045{left:391.200000px;}
.x1a_c01045{left:396.900000px;}
.x10_c01045{left:406.350000px;}
.x14_c01045{left:409.650000px;}
@media print{
.v2_c01045{vertical-align:-67.200000pt;}
.v1_c01045{vertical-align:-61.333333pt;}
.v3_c01045{vertical-align:-57.600000pt;}
.v0_c01045{vertical-align:0.000000pt;}
.ls7_c01045{letter-spacing:-5.333333pt;}
.ls5_c01045{letter-spacing:0.000000pt;}
.ls3_c01045{letter-spacing:2.666667pt;}
.ls2_c01045{letter-spacing:3.146667pt;}
.ls6_c01045{letter-spacing:5.333333pt;}
.ls0_c01045{letter-spacing:5.866667pt;}
.ls8_c01045{letter-spacing:8.000000pt;}
.ls4_c01045{letter-spacing:10.666667pt;}
.ls1_c01045{letter-spacing:31.146667pt;}
.ws5_c01045{word-spacing:-43.274667pt;}
.ws1_c01045{word-spacing:-20.746667pt;}
.ws3_c01045{word-spacing:-13.386667pt;}
.ws0_c01045{word-spacing:-13.216000pt;}
.ws2_c01045{word-spacing:-12.586667pt;}
.ws6_c01045{word-spacing:0.000000pt;}
.ws4_c01045{word-spacing:5.546667pt;}
._22_c01045{margin-left:-18.666667pt;}
._23_c01045{margin-left:-15.488000pt;}
._15_c01045{margin-left:-14.293333pt;}
._17_c01045{margin-left:-12.216000pt;}
._18_c01045{margin-left:-11.144000pt;}
._d_c01045{margin-left:-8.906667pt;}
._c_c01045{margin-left:-7.733333pt;}
._5_c01045{margin-left:-6.080000pt;}
._b_c01045{margin-left:-4.320000pt;}
._12_c01045{margin-left:-3.360000pt;}
._6_c01045{margin-left:-2.293333pt;}
._3_c01045{margin-left:-1.066667pt;}
._e_c01045{width:1.120000pt;}
._2_c01045{width:2.080000pt;}
._4_c01045{width:3.040000pt;}
._1_c01045{width:4.000000pt;}
._0_c01045{width:5.546667pt;}
._13_c01045{width:6.506667pt;}
._7_c01045{width:7.413333pt;}
._f_c01045{width:8.746667pt;}
._10_c01045{width:9.760000pt;}
._a_c01045{width:11.200000pt;}
._11_c01045{width:12.106667pt;}
._1b_c01045{width:14.293333pt;}
._9_c01045{width:15.413333pt;}
._8_c01045{width:16.586667pt;}
._1a_c01045{width:20.106667pt;}
._19_c01045{width:22.613333pt;}
._16_c01045{width:24.160000pt;}
._14_c01045{width:26.296000pt;}
._1f_c01045{width:27.413333pt;}
._20_c01045{width:29.120000pt;}
._1d_c01045{width:34.133333pt;}
._21_c01045{width:44.373333pt;}
._1c_c01045{width:103.250667pt;}
._1e_c01045{width:190.922667pt;}
.fs5_c01045{font-size:26.666667pt;}
.fs3_c01045{font-size:32.000000pt;}
.fs1_c01045{font-size:42.666667pt;}
.fs6_c01045{font-size:48.000000pt;}
.fs0_c01045{font-size:53.333333pt;}
.fs2_c01045{font-size:56.000000pt;}
.fs7_c01045{font-size:58.666667pt;}
.fs8_c01045{font-size:74.666667pt;}
.fs4_c01045{font-size:117.333333pt;}
.y0_c01045{bottom:0.000000pt;}
.y45_c01045{bottom:2.760000pt;}
.y44_c01045{bottom:6.425219pt;}
.y24_c01045{bottom:55.613333pt;}
.y23_c01045{bottom:71.480000pt;}
.y43_c01045{bottom:72.013333pt;}
.y22_c01045{bottom:88.013333pt;}
.y42_c01045{bottom:88.280000pt;}
.y41_c01045{bottom:104.413333pt;}
.y40_c01045{bottom:120.413333pt;}
.y21_c01045{bottom:121.613333pt;}
.y3f_c01045{bottom:136.280000pt;}
.y3e_c01045{bottom:151.880000pt;}
.y20_c01045{bottom:168.280000pt;}
.y1f_c01045{bottom:183.880000pt;}
.y1e_c01045{bottom:200.146667pt;}
.y3d_c01045{bottom:200.413333pt;}
.y1d_c01045{bottom:216.013333pt;}
.y3c_c01045{bottom:216.280000pt;}
.y1c_c01045{bottom:232.013333pt;}
.y1b_c01045{bottom:248.813333pt;}
.y1a_c01045{bottom:263.746667pt;}
.y19_c01045{bottom:279.613333pt;}
.y18_c01045{bottom:295.880000pt;}
.y3b_c01045{bottom:312.413333pt;}
.y17_c01045{bottom:327.080000pt;}
.y3a_c01045{bottom:327.880000pt;}
.y16_c01045{bottom:343.480000pt;}
.y15_c01045{bottom:359.080000pt;}
.y39_c01045{bottom:376.013333pt;}
.y14_c01045{bottom:376.280000pt;}
.y13_c01045{bottom:391.213333pt;}
.y38_c01045{bottom:392.413333pt;}
.y12_c01045{bottom:407.213333pt;}
.y37_c01045{bottom:408.013333pt;}
.y11_c01045{bottom:423.880000pt;}
.y36_c01045{bottom:424.546667pt;}
.y10_c01045{bottom:439.880000pt;}
.y35_c01045{bottom:440.413333pt;}
.y34_c01045{bottom:456.413333pt;}
.yf_c01045{bottom:456.680000pt;}
.y33_c01045{bottom:471.613333pt;}
.ye_c01045{bottom:473.480000pt;}
.y32_c01045{bottom:488.413333pt;}
.yd_c01045{bottom:489.346667pt;}
.y31_c01045{bottom:504.680000pt;}
.yc_c01045{bottom:504.946667pt;}
.y30_c01045{bottom:519.880000pt;}
.yb_c01045{bottom:522.413333pt;}
.y2f_c01045{bottom:536.146667pt;}
.ya_c01045{bottom:537.880000pt;}
.y9_c01045{bottom:553.613333pt;}
.y2e_c01045{bottom:569.080000pt;}
.y8_c01045{bottom:570.680000pt;}
.y2d_c01045{bottom:584.146667pt;}
.y7_c01045{bottom:587.213333pt;}
.y2c_c01045{bottom:600.013333pt;}
.y6_c01045{bottom:603.346667pt;}
.y2b_c01045{bottom:616.813333pt;}
.y5_c01045{bottom:619.480000pt;}
.y2a_c01045{bottom:632.413333pt;}
.y4_c01045{bottom:636.280000pt;}
.y29_c01045{bottom:648.013333pt;}
.y3_c01045{bottom:652.546667pt;}
.y28_c01045{bottom:664.013333pt;}
.y2_c01045{bottom:668.413333pt;}
.y27_c01045{bottom:680.146667pt;}
.y1_c01045{bottom:684.680000pt;}
.y26_c01045{bottom:696.280000pt;}
.y25_c01045{bottom:712.813333pt;}
.hb_c01045{height:11.733399pt;}
.h6_c01045{height:27.946667pt;}
.hc_c01045{height:38.937500pt;}
.h8_c01045{height:45.525333pt;}
.h7_c01045{height:50.062500pt;}
.h2_c01045{height:55.893333pt;}
.h4_c01045{height:56.906667pt;}
.h3_c01045{height:58.688000pt;}
.h9_c01045{height:61.482667pt;}
.ha_c01045{height:80.938667pt;}
.h5_c01045{height:122.965333pt;}
.h0_c01045{height:754.333333pt;}
.h1_c01045{height:754.666667pt;}
.w2_c01045{width:93.222667pt;}
.w1_c01045{width:515.333333pt;}
.w0_c01045{width:515.533333pt;}
.x0_c01045{left:0.000000pt;}
.x9_c01045{left:78.933333pt;}
.x7_c01045{left:80.666667pt;}
.x5_c01045{left:81.866667pt;}
.x2_c01045{left:83.466667pt;}
.x3_c01045{left:85.866667pt;}
.x6_c01045{left:95.733333pt;}
.x4_c01045{left:98.666667pt;}
.x1_c01045{left:100.400000pt;}
.xa_c01045{left:142.133333pt;}
.xc_c01045{left:143.733333pt;}
.x8_c01045{left:150.800000pt;}
.xb_c01045{left:169.733333pt;}
.x1c_c01045{left:214.934896pt;}
.xd_c01045{left:288.800000pt;}
.x19_c01045{left:290.933333pt;}
.x12_c01045{left:292.133333pt;}
.x16_c01045{left:293.733333pt;}
.x1b_c01045{left:298.533333pt;}
.x18_c01045{left:302.666667pt;}
.xf_c01045{left:305.066667pt;}
.x15_c01045{left:306.533333pt;}
.x11_c01045{left:310.800000pt;}
.x17_c01045{left:312.800000pt;}
.x13_c01045{left:318.266667pt;}
.xe_c01045{left:347.733333pt;}
.x1a_c01045{left:352.800000pt;}
.x10_c01045{left:361.200000pt;}
.x14_c01045{left:364.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_c01046 {
    display:none;
  }
  .loading-indicator_c01046.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01046 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01046 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01046" -> "#page-container .classname_c01046")
 */
.pf_c01046 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01046 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01046.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01046 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01046 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01046 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01046 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01046 {overflow:visible;}
  }
}
.c_c01046 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01046 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01046:after { /* webkit #35443 */
  content: '';
}
.t_c01046:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01046 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01046 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01046 { /* info for Javascript */
  display:none;
}
.l_c01046 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01046 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01046 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01046:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01046{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01046;src:url('chunks/assets/font_37ddf7fa20f3870f87112505.woff2')format("woff");}.ff1_c01046{font-family:ff1_c01046;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01046;src:url('chunks/assets/font_f1186a534d09e7474ffa81d1.woff2')format("woff");}.ff2_c01046{font-family:ff2_c01046;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01046;src:url('chunks/assets/font_83c766ecf6bdeb2a4dc581bc.woff2')format("woff");}.ff3_c01046{font-family:ff3_c01046;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01046;src:url('chunks/assets/font_69356685d9e8bd6daf3d2a60.woff2')format("woff");}.ff4_c01046{font-family:ff4_c01046;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01046;src:url('chunks/assets/font_80604a5998ce9214b3651627.woff2')format("woff");}.ff5_c01046{font-family:ff5_c01046;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01046;src:url('chunks/assets/font_31bb257007def57a068d3183.woff2')format("woff");}.ff6_c01046{font-family:ff6_c01046;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01046;src:url('chunks/assets/font_26dbc67dc638344b27328884.woff2')format("woff");}.ff7_c01046{font-family:ff7_c01046;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c01046;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff8_c01046{font-family:ff8_c01046;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01046{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c01046{vertical-align:-75.000000px;}
.v1_c01046{vertical-align:-70.800000px;}
.v0_c01046{vertical-align:0.000000px;}
.ls5_c01046{letter-spacing:0.000000px;}
.ls2_c01046{letter-spacing:3.000000px;}
.ls1_c01046{letter-spacing:4.200000px;}
.ls7_c01046{letter-spacing:9.000000px;}
.ls4_c01046{letter-spacing:9.300000px;}
.ls0_c01046{letter-spacing:13.200000px;}
.ls6_c01046{letter-spacing:18.000000px;}
.ls3_c01046{letter-spacing:199.200000px;}
.sc__c01046{text-shadow:none;}
.sc0_c01046{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01046{-webkit-text-stroke:0px transparent;}
.sc0_c01046{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c01046{word-spacing:-39.540000px;}
.ws0_c01046{word-spacing:-30.540000px;}
.ws5_c01046{word-spacing:-27.486000px;}
.ws3_c01046{word-spacing:-15.060000px;}
.ws1_c01046{word-spacing:-15.000000px;}
.ws6_c01046{word-spacing:0.000000px;}
.ws2_c01046{word-spacing:16.800000px;}
._18_c01046{margin-left:-75.900000px;}
._b_c01046{margin-left:-34.836000px;}
._1a_c01046{margin-left:-23.250000px;}
._c_c01046{margin-left:-18.408000px;}
._1c_c01046{margin-left:-15.720000px;}
._1e_c01046{margin-left:-13.860000px;}
._11_c01046{margin-left:-10.080000px;}
._1d_c01046{margin-left:-8.580000px;}
._5_c01046{margin-left:-6.960000px;}
._d_c01046{margin-left:-5.040000px;}
._12_c01046{margin-left:-3.780000px;}
._16_c01046{margin-left:-2.520000px;}
._4_c01046{margin-left:-1.020000px;}
._a_c01046{width:1.200000px;}
._8_c01046{width:2.820000px;}
._9_c01046{width:4.380000px;}
._e_c01046{width:5.460000px;}
._15_c01046{width:6.600000px;}
._7_c01046{width:7.620000px;}
._6_c01046{width:8.760000px;}
._13_c01046{width:10.620000px;}
._1_c01046{width:12.120000px;}
._2_c01046{width:13.440000px;}
._17_c01046{width:15.231000px;}
._22_c01046{width:16.440000px;}
._0_c01046{width:17.760000px;}
._23_c01046{width:18.900000px;}
._14_c01046{width:21.780000px;}
._29_c01046{width:23.040000px;}
._27_c01046{width:24.300000px;}
._26_c01046{width:28.200000px;}
._1f_c01046{width:29.820000px;}
._3_c01046{width:31.320000px;}
._21_c01046{width:34.440000px;}
._f_c01046{width:36.180000px;}
._10_c01046{width:37.200000px;}
._28_c01046{width:38.520000px;}
._2b_c01046{width:44.820000px;}
._2a_c01046{width:50.460000px;}
._1b_c01046{width:109.050000px;}
._19_c01046{width:120.150000px;}
._25_c01046{width:148.320000px;}
._20_c01046{width:205.740000px;}
._24_c01046{width:355.380000px;}
.fc2_c01046{color:transparent;}
.fc1_c01046{color:rgb(128,128,128);}
.fc0_c01046{color:rgb(0,0,0);}
.fs4_c01046{font-size:24.000000px;}
.fs6_c01046{font-size:48.000000px;}
.fs5_c01046{font-size:54.000000px;}
.fs0_c01046{font-size:60.000000px;}
.fs2_c01046{font-size:69.000000px;}
.fs1_c01046{font-size:102.000000px;}
.fs3_c01046{font-size:150.000000px;}
.y0_c01046{bottom:0.000000px;}
.y50_c01046{bottom:3.105000px;}
.y4f_c01046{bottom:7.228371px;}
.y4e_c01046{bottom:38.865000px;}
.y26_c01046{bottom:56.415000px;}
.y4d_c01046{bottom:57.465000px;}
.y25_c01046{bottom:75.315000px;}
.y4c_c01046{bottom:76.665000px;}
.y24_c01046{bottom:89.115000px;}
.y4b_c01046{bottom:94.815000px;}
.y23_c01046{bottom:111.015000px;}
.y4a_c01046{bottom:112.815000px;}
.y22_c01046{bottom:129.315000px;}
.y49_c01046{bottom:130.965000px;}
.y21_c01046{bottom:145.815000px;}
.y48_c01046{bottom:148.965000px;}
.y20_c01046{bottom:165.165000px;}
.y47_c01046{bottom:166.815000px;}
.y1f_c01046{bottom:182.715000px;}
.y46_c01046{bottom:184.965000px;}
.y1e_c01046{bottom:201.915000px;}
.y45_c01046{bottom:204.165000px;}
.y44_c01046{bottom:219.765000px;}
.y1d_c01046{bottom:237.015000px;}
.y43_c01046{bottom:237.915000px;}
.y42_c01046{bottom:274.365000px;}
.y1c_c01046{bottom:289.965000px;}
.y41_c01046{bottom:291.615000px;}
.y1b_c01046{bottom:308.265000px;}
.y40_c01046{bottom:309.615000px;}
.y1a_c01046{bottom:326.115000px;}
.y3f_c01046{bottom:327.015000px;}
.y19_c01046{bottom:344.265000px;}
.y3e_c01046{bottom:345.615000px;}
.y18_c01046{bottom:362.115000px;}
.y3d_c01046{bottom:363.165000px;}
.y17_c01046{bottom:379.815000px;}
.y3c_c01046{bottom:381.765000px;}
.y16_c01046{bottom:398.565000px;}
.y3b_c01046{bottom:399.015000px;}
.y15_c01046{bottom:416.565000px;}
.y3a_c01046{bottom:416.865000px;}
.y14_c01046{bottom:434.715000px;}
.y39_c01046{bottom:435.015000px;}
.y38_c01046{bottom:451.965000px;}
.y13_c01046{bottom:452.715000px;}
.y12_c01046{bottom:470.865000px;}
.y37_c01046{bottom:471.165000px;}
.y11_c01046{bottom:487.815000px;}
.y36_c01046{bottom:506.265000px;}
.y10_c01046{bottom:522.915000px;}
.y35_c01046{bottom:523.815000px;}
.yf_c01046{bottom:539.415000px;}
.y34_c01046{bottom:541.365000px;}
.ye_c01046{bottom:557.265000px;}
.y33_c01046{bottom:559.215000px;}
.yd_c01046{bottom:574.515000px;}
.y32_c01046{bottom:576.915000px;}
.yc_c01046{bottom:592.065000px;}
.y31_c01046{bottom:595.365000px;}
.yb_c01046{bottom:610.965000px;}
.y30_c01046{bottom:613.365000px;}
.ya_c01046{bottom:628.065000px;}
.y2f_c01046{bottom:630.165000px;}
.y9_c01046{bottom:646.665000px;}
.y2e_c01046{bottom:649.065000px;}
.y8_c01046{bottom:665.565000px;}
.y2d_c01046{bottom:667.215000px;}
.y7_c01046{bottom:683.115000px;}
.y2c_c01046{bottom:684.465000px;}
.y6_c01046{bottom:701.115000px;}
.y2b_c01046{bottom:701.715000px;}
.y5_c01046{bottom:719.265000px;}
.y2a_c01046{bottom:719.865000px;}
.y4_c01046{bottom:736.515000px;}
.y29_c01046{bottom:738.765000px;}
.y3_c01046{bottom:754.965000px;}
.y28_c01046{bottom:755.115000px;}
.y2_c01046{bottom:772.215000px;}
.y27_c01046{bottom:774.315000px;}
.y1_c01046{bottom:791.115000px;}
.h7_c01046{height:13.200074px;}
.h8_c01046{height:43.804688px;}
.h2_c01046{height:62.880000px;}
.h4_c01046{height:64.020000px;}
.h5_c01046{height:73.623000px;}
.h3_c01046{height:106.896000px;}
.h6_c01046{height:157.200000px;}
.h0_c01046{height:833.775000px;}
.h1_c01046{height:834.000000px;}
.w2_c01046{width:104.875500px;}
.w0_c01046{width:579.450000px;}
.w1_c01046{width:579.750000px;}
.x0_c01046{left:0.000000px;}
.x4_c01046{left:37.800000px;}
.x6_c01046{left:39.600000px;}
.xb_c01046{left:40.800000px;}
.x7_c01046{left:42.600000px;}
.x3_c01046{left:44.850000px;}
.xf_c01046{left:46.650000px;}
.xa_c01046{left:55.650000px;}
.x5_c01046{left:57.150000px;}
.xc_c01046{left:58.500000px;}
.x8_c01046{left:60.450000px;}
.xe_c01046{left:83.400000px;}
.xd_c01046{left:104.250000px;}
.x2_c01046{left:111.750000px;}
.x9_c01046{left:119.850000px;}
.x1_c01046{left:121.800000px;}
.x10_c01046{left:129.900000px;}
.x25_c01046{left:241.539230px;}
.x14_c01046{left:274.350000px;}
.x11_c01046{left:275.700000px;}
.x17_c01046{left:276.750000px;}
.x1c_c01046{left:278.550000px;}
.x16_c01046{left:279.900000px;}
.x22_c01046{left:281.850000px;}
.x21_c01046{left:282.900000px;}
.x13_c01046{left:291.000000px;}
.x12_c01046{left:293.400000px;}
.x1a_c01046{left:294.750000px;}
.x1b_c01046{left:296.100000px;}
.x1e_c01046{left:297.300000px;}
.x23_c01046{left:299.400000px;}
.x20_c01046{left:301.050000px;}
.x1d_c01046{left:342.900000px;}
.x18_c01046{left:347.250000px;}
.x15_c01046{left:349.350000px;}
.x1f_c01046{left:354.750000px;}
.x19_c01046{left:358.050000px;}
.x24_c01046{left:481.500000px;}
@media print{
.v2_c01046{vertical-align:-66.666667pt;}
.v1_c01046{vertical-align:-62.933333pt;}
.v0_c01046{vertical-align:0.000000pt;}
.ls5_c01046{letter-spacing:0.000000pt;}
.ls2_c01046{letter-spacing:2.666667pt;}
.ls1_c01046{letter-spacing:3.733333pt;}
.ls7_c01046{letter-spacing:8.000000pt;}
.ls4_c01046{letter-spacing:8.266667pt;}
.ls0_c01046{letter-spacing:11.733333pt;}
.ls6_c01046{letter-spacing:16.000000pt;}
.ls3_c01046{letter-spacing:177.066667pt;}
.ws4_c01046{word-spacing:-35.146667pt;}
.ws0_c01046{word-spacing:-27.146667pt;}
.ws5_c01046{word-spacing:-24.432000pt;}
.ws3_c01046{word-spacing:-13.386667pt;}
.ws1_c01046{word-spacing:-13.333333pt;}
.ws6_c01046{word-spacing:0.000000pt;}
.ws2_c01046{word-spacing:14.933333pt;}
._18_c01046{margin-left:-67.466667pt;}
._b_c01046{margin-left:-30.965333pt;}
._1a_c01046{margin-left:-20.666667pt;}
._c_c01046{margin-left:-16.362667pt;}
._1c_c01046{margin-left:-13.973333pt;}
._1e_c01046{margin-left:-12.320000pt;}
._11_c01046{margin-left:-8.960000pt;}
._1d_c01046{margin-left:-7.626667pt;}
._5_c01046{margin-left:-6.186667pt;}
._d_c01046{margin-left:-4.480000pt;}
._12_c01046{margin-left:-3.360000pt;}
._16_c01046{margin-left:-2.240000pt;}
._4_c01046{margin-left:-0.906667pt;}
._a_c01046{width:1.066667pt;}
._8_c01046{width:2.506667pt;}
._9_c01046{width:3.893333pt;}
._e_c01046{width:4.853333pt;}
._15_c01046{width:5.866667pt;}
._7_c01046{width:6.773333pt;}
._6_c01046{width:7.786667pt;}
._13_c01046{width:9.440000pt;}
._1_c01046{width:10.773333pt;}
._2_c01046{width:11.946667pt;}
._17_c01046{width:13.538667pt;}
._22_c01046{width:14.613333pt;}
._0_c01046{width:15.786667pt;}
._23_c01046{width:16.800000pt;}
._14_c01046{width:19.360000pt;}
._29_c01046{width:20.480000pt;}
._27_c01046{width:21.600000pt;}
._26_c01046{width:25.066667pt;}
._1f_c01046{width:26.506667pt;}
._3_c01046{width:27.840000pt;}
._21_c01046{width:30.613333pt;}
._f_c01046{width:32.160000pt;}
._10_c01046{width:33.066667pt;}
._28_c01046{width:34.240000pt;}
._2b_c01046{width:39.840000pt;}
._2a_c01046{width:44.853333pt;}
._1b_c01046{width:96.933333pt;}
._19_c01046{width:106.800000pt;}
._25_c01046{width:131.840000pt;}
._20_c01046{width:182.880000pt;}
._24_c01046{width:315.893333pt;}
.fs4_c01046{font-size:21.333333pt;}
.fs6_c01046{font-size:42.666667pt;}
.fs5_c01046{font-size:48.000000pt;}
.fs0_c01046{font-size:53.333333pt;}
.fs2_c01046{font-size:61.333333pt;}
.fs1_c01046{font-size:90.666667pt;}
.fs3_c01046{font-size:133.333333pt;}
.y0_c01046{bottom:0.000000pt;}
.y50_c01046{bottom:2.760000pt;}
.y4f_c01046{bottom:6.425219pt;}
.y4e_c01046{bottom:34.546667pt;}
.y26_c01046{bottom:50.146667pt;}
.y4d_c01046{bottom:51.080000pt;}
.y25_c01046{bottom:66.946667pt;}
.y4c_c01046{bottom:68.146667pt;}
.y24_c01046{bottom:79.213333pt;}
.y4b_c01046{bottom:84.280000pt;}
.y23_c01046{bottom:98.680000pt;}
.y4a_c01046{bottom:100.280000pt;}
.y22_c01046{bottom:114.946667pt;}
.y49_c01046{bottom:116.413333pt;}
.y21_c01046{bottom:129.613333pt;}
.y48_c01046{bottom:132.413333pt;}
.y20_c01046{bottom:146.813333pt;}
.y47_c01046{bottom:148.280000pt;}
.y1f_c01046{bottom:162.413333pt;}
.y46_c01046{bottom:164.413333pt;}
.y1e_c01046{bottom:179.480000pt;}
.y45_c01046{bottom:181.480000pt;}
.y44_c01046{bottom:195.346667pt;}
.y1d_c01046{bottom:210.680000pt;}
.y43_c01046{bottom:211.480000pt;}
.y42_c01046{bottom:243.880000pt;}
.y1c_c01046{bottom:257.746667pt;}
.y41_c01046{bottom:259.213333pt;}
.y1b_c01046{bottom:274.013333pt;}
.y40_c01046{bottom:275.213333pt;}
.y1a_c01046{bottom:289.880000pt;}
.y3f_c01046{bottom:290.680000pt;}
.y19_c01046{bottom:306.013333pt;}
.y3e_c01046{bottom:307.213333pt;}
.y18_c01046{bottom:321.880000pt;}
.y3d_c01046{bottom:322.813333pt;}
.y17_c01046{bottom:337.613333pt;}
.y3c_c01046{bottom:339.346667pt;}
.y16_c01046{bottom:354.280000pt;}
.y3b_c01046{bottom:354.680000pt;}
.y15_c01046{bottom:370.280000pt;}
.y3a_c01046{bottom:370.546667pt;}
.y14_c01046{bottom:386.413333pt;}
.y39_c01046{bottom:386.680000pt;}
.y38_c01046{bottom:401.746667pt;}
.y13_c01046{bottom:402.413333pt;}
.y12_c01046{bottom:418.546667pt;}
.y37_c01046{bottom:418.813333pt;}
.y11_c01046{bottom:433.613333pt;}
.y36_c01046{bottom:450.013333pt;}
.y10_c01046{bottom:464.813333pt;}
.y35_c01046{bottom:465.613333pt;}
.yf_c01046{bottom:479.480000pt;}
.y34_c01046{bottom:481.213333pt;}
.ye_c01046{bottom:495.346667pt;}
.y33_c01046{bottom:497.080000pt;}
.yd_c01046{bottom:510.680000pt;}
.y32_c01046{bottom:512.813333pt;}
.yc_c01046{bottom:526.280000pt;}
.y31_c01046{bottom:529.213333pt;}
.yb_c01046{bottom:543.080000pt;}
.y30_c01046{bottom:545.213333pt;}
.ya_c01046{bottom:558.280000pt;}
.y2f_c01046{bottom:560.146667pt;}
.y9_c01046{bottom:574.813333pt;}
.y2e_c01046{bottom:576.946667pt;}
.y8_c01046{bottom:591.613333pt;}
.y2d_c01046{bottom:593.080000pt;}
.y7_c01046{bottom:607.213333pt;}
.y2c_c01046{bottom:608.413333pt;}
.y6_c01046{bottom:623.213333pt;}
.y2b_c01046{bottom:623.746667pt;}
.y5_c01046{bottom:639.346667pt;}
.y2a_c01046{bottom:639.880000pt;}
.y4_c01046{bottom:654.680000pt;}
.y29_c01046{bottom:656.680000pt;}
.y3_c01046{bottom:671.080000pt;}
.y28_c01046{bottom:671.213333pt;}
.y2_c01046{bottom:686.413333pt;}
.y27_c01046{bottom:688.280000pt;}
.y1_c01046{bottom:703.213333pt;}
.h7_c01046{height:11.733399pt;}
.h8_c01046{height:38.937500pt;}
.h2_c01046{height:55.893333pt;}
.h4_c01046{height:56.906667pt;}
.h5_c01046{height:65.442667pt;}
.h3_c01046{height:95.018667pt;}
.h6_c01046{height:139.733333pt;}
.h0_c01046{height:741.133333pt;}
.h1_c01046{height:741.333333pt;}
.w2_c01046{width:93.222667pt;}
.w0_c01046{width:515.066667pt;}
.w1_c01046{width:515.333333pt;}
.x0_c01046{left:0.000000pt;}
.x4_c01046{left:33.600000pt;}
.x6_c01046{left:35.200000pt;}
.xb_c01046{left:36.266667pt;}
.x7_c01046{left:37.866667pt;}
.x3_c01046{left:39.866667pt;}
.xf_c01046{left:41.466667pt;}
.xa_c01046{left:49.466667pt;}
.x5_c01046{left:50.800000pt;}
.xc_c01046{left:52.000000pt;}
.x8_c01046{left:53.733333pt;}
.xe_c01046{left:74.133333pt;}
.xd_c01046{left:92.666667pt;}
.x2_c01046{left:99.333333pt;}
.x9_c01046{left:106.533333pt;}
.x1_c01046{left:108.266667pt;}
.x10_c01046{left:115.466667pt;}
.x25_c01046{left:214.701538pt;}
.x14_c01046{left:243.866667pt;}
.x11_c01046{left:245.066667pt;}
.x17_c01046{left:246.000000pt;}
.x1c_c01046{left:247.600000pt;}
.x16_c01046{left:248.800000pt;}
.x22_c01046{left:250.533333pt;}
.x21_c01046{left:251.466667pt;}
.x13_c01046{left:258.666667pt;}
.x12_c01046{left:260.800000pt;}
.x1a_c01046{left:262.000000pt;}
.x1b_c01046{left:263.200000pt;}
.x1e_c01046{left:264.266667pt;}
.x23_c01046{left:266.133333pt;}
.x20_c01046{left:267.600000pt;}
.x1d_c01046{left:304.800000pt;}
.x18_c01046{left:308.666667pt;}
.x15_c01046{left:310.533333pt;}
.x1f_c01046{left:315.333333pt;}
.x19_c01046{left:318.266667pt;}
.x24_c01046{left:428.000000pt;}
}





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

.ir_c01047:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01047{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01047;src:url('chunks/assets/font_484448e934a5e9f419873712.woff2')format("woff");}.ff1_c01047{font-family:ff1_c01047;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01047;src:url('chunks/assets/font_c887f43d15121c3fde3d5aa1.woff2')format("woff");}.ff2_c01047{font-family:ff2_c01047;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01047;src:url('chunks/assets/font_0269663ce8ff46681b47d113.woff2')format("woff");}.ff3_c01047{font-family:ff3_c01047;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01047;src:url('chunks/assets/font_36b43ee7ef1fc1b42e3e6337.woff2')format("woff");}.ff4_c01047{font-family:ff4_c01047;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01047;src:url('chunks/assets/font_5da83722282a53ed0b0758be.woff2')format("woff");}.ff5_c01047{font-family:ff5_c01047;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01047;src:url('chunks/assets/font_692afc66ade3f8dadf4a1127.woff2')format("woff");}.ff6_c01047{font-family:ff6_c01047;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01047;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff7_c01047{font-family:ff7_c01047;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01047{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c01047{vertical-align:-72.000000px;}
.v0_c01047{vertical-align:0.000000px;}
.ls9_c01047{letter-spacing:0.000000px;}
.lsa_c01047{letter-spacing:3.000000px;}
.ls8_c01047{letter-spacing:5.400000px;}
.lsb_c01047{letter-spacing:6.000000px;}
.ls5_c01047{letter-spacing:7.656000px;}
.ls6_c01047{letter-spacing:8.400000px;}
.ls7_c01047{letter-spacing:8.940000px;}
.ls4_c01047{letter-spacing:9.600000px;}
.ls2_c01047{letter-spacing:10.800000px;}
.ls1_c01047{letter-spacing:13.680000px;}
.ls0_c01047{letter-spacing:16.200000px;}
.ls3_c01047{letter-spacing:20.820000px;}
.sc__c01047{text-shadow:none;}
.sc0_c01047{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01047{-webkit-text-stroke:0px transparent;}
.sc0_c01047{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c01047{word-spacing:-36.780000px;}
.ws1_c01047{word-spacing:-30.540000px;}
.ws3_c01047{word-spacing:-29.424000px;}
.ws7_c01047{word-spacing:-23.340000px;}
.ws8_c01047{word-spacing:-21.606000px;}
.ws2_c01047{word-spacing:-18.000000px;}
.ws0_c01047{word-spacing:-15.060000px;}
.ws5_c01047{word-spacing:-14.250000px;}
.ws6_c01047{word-spacing:-12.750000px;}
.ws9_c01047{word-spacing:0.000000px;}
._18_c01047{margin-left:-11.943000px;}
._16_c01047{margin-left:-9.840000px;}
._1b_c01047{margin-left:-8.640000px;}
._10_c01047{margin-left:-7.020000px;}
._19_c01047{margin-left:-5.700000px;}
._9_c01047{margin-left:-4.620000px;}
._e_c01047{margin-left:-2.760000px;}
._a_c01047{margin-left:-1.020000px;}
._7_c01047{width:1.980000px;}
._5_c01047{width:3.420000px;}
._8_c01047{width:4.440000px;}
._b_c01047{width:6.360000px;}
._0_c01047{width:7.800000px;}
._6_c01047{width:9.060000px;}
._4_c01047{width:11.040000px;}
._2_c01047{width:12.900000px;}
._c_c01047{width:16.140000px;}
._1_c01047{width:17.160000px;}
._12_c01047{width:18.540000px;}
._f_c01047{width:19.800000px;}
._1c_c01047{width:21.060000px;}
._14_c01047{width:23.340000px;}
._15_c01047{width:25.440000px;}
._3_c01047{width:27.240000px;}
._13_c01047{width:28.740000px;}
._17_c01047{width:34.200000px;}
._1a_c01047{width:151.860000px;}
._11_c01047{width:248.220000px;}
._d_c01047{width:330.000000px;}
.fc2_c01047{color:transparent;}
.fc1_c01047{color:rgb(128,128,128);}
.fc0_c01047{color:rgb(0,0,0);}
.fs2_c01047{font-size:48.000000px;}
.fs4_c01047{font-size:51.000000px;}
.fs3_c01047{font-size:54.000000px;}
.fs5_c01047{font-size:57.000000px;}
.fs0_c01047{font-size:60.000000px;}
.fs6_c01047{font-size:66.000000px;}
.fs1_c01047{font-size:72.000000px;}
.y0_c01047{bottom:0.000000px;}
.y51_c01047{bottom:3.105000px;}
.y50_c01047{bottom:7.228371px;}
.y29_c01047{bottom:57.165000px;}
.y4f_c01047{bottom:59.865000px;}
.y4e_c01047{bottom:79.065000px;}
.y28_c01047{bottom:79.665000px;}
.y4d_c01047{bottom:95.565000px;}
.y27_c01047{bottom:98.565000px;}
.y4c_c01047{bottom:115.515000px;}
.y26_c01047{bottom:116.565000px;}
.y4b_c01047{bottom:133.665000px;}
.y25_c01047{bottom:134.415000px;}
.y4a_c01047{bottom:151.215000px;}
.y24_c01047{bottom:152.865000px;}
.y49_c01047{bottom:169.515000px;}
.y23_c01047{bottom:170.565000px;}
.y48_c01047{bottom:187.965000px;}
.y22_c01047{bottom:188.415000px;}
.y47_c01047{bottom:205.965000px;}
.y21_c01047{bottom:206.865000px;}
.y46_c01047{bottom:224.115000px;}
.y20_c01047{bottom:224.415000px;}
.y1f_c01047{bottom:242.715000px;}
.y45_c01047{bottom:259.965000px;}
.y1e_c01047{bottom:260.865000px;}
.y1d_c01047{bottom:278.415000px;}
.y44_c01047{bottom:278.565000px;}
.y1c_c01047{bottom:296.415000px;}
.y43_c01047{bottom:297.465000px;}
.y1b_c01047{bottom:313.965000px;}
.y42_c01047{bottom:330.765000px;}
.y1a_c01047{bottom:331.815000px;}
.y19_c01047{bottom:349.965000px;}
.y41_c01047{bottom:367.215000px;}
.y18_c01047{bottom:367.965000px;}
.y40_c01047{bottom:385.515000px;}
.y17_c01047{bottom:386.115000px;}
.y16_c01047{bottom:404.115000px;}
.y3f_c01047{bottom:404.415000px;}
.y3e_c01047{bottom:418.815000px;}
.y15_c01047{bottom:422.265000px;}
.y3d_c01047{bottom:439.515000px;}
.y14_c01047{bottom:439.815000px;}
.y13_c01047{bottom:455.415000px;}
.y3c_c01047{bottom:457.965000px;}
.y12_c01047{bottom:475.515000px;}
.y3b_c01047{bottom:475.665000px;}
.y3a_c01047{bottom:493.215000px;}
.y11_c01047{bottom:493.515000px;}
.y10_c01047{bottom:511.365000px;}
.y39_c01047{bottom:511.665000px;}
.yf_c01047{bottom:529.215000px;}
.y38_c01047{bottom:529.665000px;}
.y37_c01047{bottom:547.065000px;}
.y36_c01047{bottom:564.765000px;}
.ye_c01047{bottom:565.665000px;}
.yd_c01047{bottom:582.915000px;}
.y35_c01047{bottom:583.965000px;}
.yc_c01047{bottom:601.215000px;}
.y34_c01047{bottom:601.515000px;}
.y33_c01047{bottom:618.315000px;}
.yb_c01047{bottom:618.765000px;}
.y32_c01047{bottom:636.915000px;}
.ya_c01047{bottom:637.215000px;}
.y31_c01047{bottom:654.465000px;}
.y9_c01047{bottom:655.215000px;}
.y30_c01047{bottom:672.615000px;}
.y8_c01047{bottom:673.065000px;}
.y2f_c01047{bottom:689.265000px;}
.y7_c01047{bottom:691.215000px;}
.y2e_c01047{bottom:709.065000px;}
.y6_c01047{bottom:709.515000px;}
.y5_c01047{bottom:726.765000px;}
.y2d_c01047{bottom:744.165000px;}
.y4_c01047{bottom:745.215000px;}
.y2c_c01047{bottom:762.465000px;}
.y3_c01047{bottom:763.065000px;}
.y2b_c01047{bottom:780.765000px;}
.y2_c01047{bottom:781.965000px;}
.y2a_c01047{bottom:798.615000px;}
.y1_c01047{bottom:800.565000px;}
.h7_c01047{height:13.200074px;}
.h8_c01047{height:43.804688px;}
.h6_c01047{height:50.053711px;}
.h4_c01047{height:60.819000px;}
.h2_c01047{height:62.880000px;}
.h5_c01047{height:64.020000px;}
.h3_c01047{height:70.664062px;}
.h0_c01047{height:839.175000px;}
.h1_c01047{height:839.250000px;}
.w2_c01047{width:104.875500px;}
.w0_c01047{width:573.450000px;}
.w1_c01047{width:573.750000px;}
.x0_c01047{left:0.000000px;}
.x7_c01047{left:84.000000px;}
.x3_c01047{left:85.350000px;}
.x4_c01047{left:86.700000px;}
.x8_c01047{left:88.050000px;}
.x6_c01047{left:99.600000px;}
.x5_c01047{left:101.550000px;}
.x2_c01047{left:102.600000px;}
.xa_c01047{left:104.850000px;}
.x9_c01047{left:159.900000px;}
.xc_c01047{left:160.950000px;}
.xd_c01047{left:165.450000px;}
.xb_c01047{left:172.500000px;}
.x1_c01047{left:197.700000px;}
.x1a_c01047{left:238.539230px;}
.xe_c01047{left:314.250000px;}
.x16_c01047{left:322.650000px;}
.x11_c01047{left:324.000000px;}
.x17_c01047{left:325.650000px;}
.x18_c01047{left:334.050000px;}
.x15_c01047{left:338.100000px;}
.x10_c01047{left:339.300000px;}
.x13_c01047{left:341.250000px;}
.x19_c01047{left:342.600000px;}
.xf_c01047{left:381.000000px;}
.x12_c01047{left:387.450000px;}
.x14_c01047{left:401.250000px;}
@media print{
.v1_c01047{vertical-align:-64.000000pt;}
.v0_c01047{vertical-align:0.000000pt;}
.ls9_c01047{letter-spacing:0.000000pt;}
.lsa_c01047{letter-spacing:2.666667pt;}
.ls8_c01047{letter-spacing:4.800000pt;}
.lsb_c01047{letter-spacing:5.333333pt;}
.ls5_c01047{letter-spacing:6.805333pt;}
.ls6_c01047{letter-spacing:7.466667pt;}
.ls7_c01047{letter-spacing:7.946667pt;}
.ls4_c01047{letter-spacing:8.533333pt;}
.ls2_c01047{letter-spacing:9.600000pt;}
.ls1_c01047{letter-spacing:12.160000pt;}
.ls0_c01047{letter-spacing:14.400000pt;}
.ls3_c01047{letter-spacing:18.506667pt;}
.ws4_c01047{word-spacing:-32.693333pt;}
.ws1_c01047{word-spacing:-27.146667pt;}
.ws3_c01047{word-spacing:-26.154667pt;}
.ws7_c01047{word-spacing:-20.746667pt;}
.ws8_c01047{word-spacing:-19.205333pt;}
.ws2_c01047{word-spacing:-16.000000pt;}
.ws0_c01047{word-spacing:-13.386667pt;}
.ws5_c01047{word-spacing:-12.666667pt;}
.ws6_c01047{word-spacing:-11.333333pt;}
.ws9_c01047{word-spacing:0.000000pt;}
._18_c01047{margin-left:-10.616000pt;}
._16_c01047{margin-left:-8.746667pt;}
._1b_c01047{margin-left:-7.680000pt;}
._10_c01047{margin-left:-6.240000pt;}
._19_c01047{margin-left:-5.066667pt;}
._9_c01047{margin-left:-4.106667pt;}
._e_c01047{margin-left:-2.453333pt;}
._a_c01047{margin-left:-0.906667pt;}
._7_c01047{width:1.760000pt;}
._5_c01047{width:3.040000pt;}
._8_c01047{width:3.946667pt;}
._b_c01047{width:5.653333pt;}
._0_c01047{width:6.933333pt;}
._6_c01047{width:8.053333pt;}
._4_c01047{width:9.813333pt;}
._2_c01047{width:11.466667pt;}
._c_c01047{width:14.346667pt;}
._1_c01047{width:15.253333pt;}
._12_c01047{width:16.480000pt;}
._f_c01047{width:17.600000pt;}
._1c_c01047{width:18.720000pt;}
._14_c01047{width:20.746667pt;}
._15_c01047{width:22.613333pt;}
._3_c01047{width:24.213333pt;}
._13_c01047{width:25.546667pt;}
._17_c01047{width:30.400000pt;}
._1a_c01047{width:134.986667pt;}
._11_c01047{width:220.640000pt;}
._d_c01047{width:293.333333pt;}
.fs2_c01047{font-size:42.666667pt;}
.fs4_c01047{font-size:45.333333pt;}
.fs3_c01047{font-size:48.000000pt;}
.fs5_c01047{font-size:50.666667pt;}
.fs0_c01047{font-size:53.333333pt;}
.fs6_c01047{font-size:58.666667pt;}
.fs1_c01047{font-size:64.000000pt;}
.y0_c01047{bottom:0.000000pt;}
.y51_c01047{bottom:2.760000pt;}
.y50_c01047{bottom:6.425219pt;}
.y29_c01047{bottom:50.813333pt;}
.y4f_c01047{bottom:53.213333pt;}
.y4e_c01047{bottom:70.280000pt;}
.y28_c01047{bottom:70.813333pt;}
.y4d_c01047{bottom:84.946667pt;}
.y27_c01047{bottom:87.613333pt;}
.y4c_c01047{bottom:102.680000pt;}
.y26_c01047{bottom:103.613333pt;}
.y4b_c01047{bottom:118.813333pt;}
.y25_c01047{bottom:119.480000pt;}
.y4a_c01047{bottom:134.413333pt;}
.y24_c01047{bottom:135.880000pt;}
.y49_c01047{bottom:150.680000pt;}
.y23_c01047{bottom:151.613333pt;}
.y48_c01047{bottom:167.080000pt;}
.y22_c01047{bottom:167.480000pt;}
.y47_c01047{bottom:183.080000pt;}
.y21_c01047{bottom:183.880000pt;}
.y46_c01047{bottom:199.213333pt;}
.y20_c01047{bottom:199.480000pt;}
.y1f_c01047{bottom:215.746667pt;}
.y45_c01047{bottom:231.080000pt;}
.y1e_c01047{bottom:231.880000pt;}
.y1d_c01047{bottom:247.480000pt;}
.y44_c01047{bottom:247.613333pt;}
.y1c_c01047{bottom:263.480000pt;}
.y43_c01047{bottom:264.413333pt;}
.y1b_c01047{bottom:279.080000pt;}
.y42_c01047{bottom:294.013333pt;}
.y1a_c01047{bottom:294.946667pt;}
.y19_c01047{bottom:311.080000pt;}
.y41_c01047{bottom:326.413333pt;}
.y18_c01047{bottom:327.080000pt;}
.y40_c01047{bottom:342.680000pt;}
.y17_c01047{bottom:343.213333pt;}
.y16_c01047{bottom:359.213333pt;}
.y3f_c01047{bottom:359.480000pt;}
.y3e_c01047{bottom:372.280000pt;}
.y15_c01047{bottom:375.346667pt;}
.y3d_c01047{bottom:390.680000pt;}
.y14_c01047{bottom:390.946667pt;}
.y13_c01047{bottom:404.813333pt;}
.y3c_c01047{bottom:407.080000pt;}
.y12_c01047{bottom:422.680000pt;}
.y3b_c01047{bottom:422.813333pt;}
.y3a_c01047{bottom:438.413333pt;}
.y11_c01047{bottom:438.680000pt;}
.y10_c01047{bottom:454.546667pt;}
.y39_c01047{bottom:454.813333pt;}
.yf_c01047{bottom:470.413333pt;}
.y38_c01047{bottom:470.813333pt;}
.y37_c01047{bottom:486.280000pt;}
.y36_c01047{bottom:502.013333pt;}
.ye_c01047{bottom:502.813333pt;}
.yd_c01047{bottom:518.146667pt;}
.y35_c01047{bottom:519.080000pt;}
.yc_c01047{bottom:534.413333pt;}
.y34_c01047{bottom:534.680000pt;}
.y33_c01047{bottom:549.613333pt;}
.yb_c01047{bottom:550.013333pt;}
.y32_c01047{bottom:566.146667pt;}
.ya_c01047{bottom:566.413333pt;}
.y31_c01047{bottom:581.746667pt;}
.y9_c01047{bottom:582.413333pt;}
.y30_c01047{bottom:597.880000pt;}
.y8_c01047{bottom:598.280000pt;}
.y2f_c01047{bottom:612.680000pt;}
.y7_c01047{bottom:614.413333pt;}
.y2e_c01047{bottom:630.280000pt;}
.y6_c01047{bottom:630.680000pt;}
.y5_c01047{bottom:646.013333pt;}
.y2d_c01047{bottom:661.480000pt;}
.y4_c01047{bottom:662.413333pt;}
.y2c_c01047{bottom:677.746667pt;}
.y3_c01047{bottom:678.280000pt;}
.y2b_c01047{bottom:694.013333pt;}
.y2_c01047{bottom:695.080000pt;}
.y2a_c01047{bottom:709.880000pt;}
.y1_c01047{bottom:711.613333pt;}
.h7_c01047{height:11.733399pt;}
.h8_c01047{height:38.937500pt;}
.h6_c01047{height:44.492188pt;}
.h4_c01047{height:54.061333pt;}
.h2_c01047{height:55.893333pt;}
.h5_c01047{height:56.906667pt;}
.h3_c01047{height:62.812500pt;}
.h0_c01047{height:745.933333pt;}
.h1_c01047{height:746.000000pt;}
.w2_c01047{width:93.222667pt;}
.w0_c01047{width:509.733333pt;}
.w1_c01047{width:510.000000pt;}
.x0_c01047{left:0.000000pt;}
.x7_c01047{left:74.666667pt;}
.x3_c01047{left:75.866667pt;}
.x4_c01047{left:77.066667pt;}
.x8_c01047{left:78.266667pt;}
.x6_c01047{left:88.533333pt;}
.x5_c01047{left:90.266667pt;}
.x2_c01047{left:91.200000pt;}
.xa_c01047{left:93.200000pt;}
.x9_c01047{left:142.133333pt;}
.xc_c01047{left:143.066667pt;}
.xd_c01047{left:147.066667pt;}
.xb_c01047{left:153.333333pt;}
.x1_c01047{left:175.733333pt;}
.x1a_c01047{left:212.034871pt;}
.xe_c01047{left:279.333333pt;}
.x16_c01047{left:286.800000pt;}
.x11_c01047{left:288.000000pt;}
.x17_c01047{left:289.466667pt;}
.x18_c01047{left:296.933333pt;}
.x15_c01047{left:300.533333pt;}
.x10_c01047{left:301.600000pt;}
.x13_c01047{left:303.333333pt;}
.x19_c01047{left:304.533333pt;}
.xf_c01047{left:338.666667pt;}
.x12_c01047{left:344.400000pt;}
.x14_c01047{left:356.666667pt;}
}





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

.ir_c01048:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01048{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01048;src:url('chunks/assets/font_b3c06b13c9c82746f913f5bd.woff2')format("woff");}.ff1_c01048{font-family:ff1_c01048;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01048;src:url('chunks/assets/font_40bc6837214e8075f6b4e5cc.woff2')format("woff");}.ff2_c01048{font-family:ff2_c01048;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01048;src:url('chunks/assets/font_2b960e5c5d09dbbc96d072d0.woff2')format("woff");}.ff3_c01048{font-family:ff3_c01048;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01048;src:url('chunks/assets/font_b4dc0efe32bc71babdf62a08.woff2')format("woff");}.ff4_c01048{font-family:ff4_c01048;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01048;src:url('chunks/assets/font_5f7da16e97f746c13a658880.woff2')format("woff");}.ff5_c01048{font-family:ff5_c01048;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01048;src:url('chunks/assets/font_adb265bbd7650ba9f7f826de.woff2')format("woff");}.ff6_c01048{font-family:ff6_c01048;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01048;src:url('chunks/assets/font_f4522d4020cdb58102fbacf7.woff2')format("woff");}.ff7_c01048{font-family:ff7_c01048;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c01048;src:url('chunks/assets/font_6fd84f20ce288487520ea0c1.woff2')format("woff");}.ff8_c01048{font-family:ff8_c01048;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c01048;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff9_c01048{font-family:ff9_c01048;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01048{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c01048{vertical-align:-71.400000px;}
.v2_c01048{vertical-align:-66.600000px;}
.v3_c01048{vertical-align:-60.600000px;}
.v0_c01048{vertical-align:0.000000px;}
.lsa_c01048{letter-spacing:0.000000px;}
.ls5_c01048{letter-spacing:2.805000px;}
.ls4_c01048{letter-spacing:4.200000px;}
.ls8_c01048{letter-spacing:5.340000px;}
.lsc_c01048{letter-spacing:6.000000px;}
.lsb_c01048{letter-spacing:9.000000px;}
.ls6_c01048{letter-spacing:9.240000px;}
.ls0_c01048{letter-spacing:9.300000px;}
.ls1_c01048{letter-spacing:9.900000px;}
.ls9_c01048{letter-spacing:12.300000px;}
.ls2_c01048{letter-spacing:13.200000px;}
.ls3_c01048{letter-spacing:13.680000px;}
.ls7_c01048{letter-spacing:16.320000px;}
.sc__c01048{text-shadow:none;}
.sc0_c01048{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01048{-webkit-text-stroke:0px transparent;}
.sc0_c01048{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c01048{word-spacing:-50.565000px;}
.ws0_c01048{word-spacing:-41.565000px;}
.ws4_c01048{word-spacing:-29.070000px;}
.ws2_c01048{word-spacing:-27.240000px;}
.wsb_c01048{word-spacing:-23.340000px;}
.ws7_c01048{word-spacing:-15.834000px;}
.ws1_c01048{word-spacing:-15.060000px;}
.wsa_c01048{word-spacing:-15.000000px;}
.wsc_c01048{word-spacing:-14.160000px;}
.ws5_c01048{word-spacing:-2.040000px;}
.ws8_c01048{word-spacing:-1.560000px;}
.wsd_c01048{word-spacing:0.000000px;}
.ws9_c01048{word-spacing:26.280000px;}
.ws3_c01048{word-spacing:43.980000px;}
._16_c01048{margin-left:-15.102000px;}
._1a_c01048{margin-left:-13.560000px;}
._19_c01048{margin-left:-11.400000px;}
._f_c01048{margin-left:-9.780000px;}
._8_c01048{margin-left:-8.631000px;}
._11_c01048{margin-left:-6.588000px;}
._17_c01048{margin-left:-5.031000px;}
._d_c01048{margin-left:-3.882000px;}
._e_c01048{margin-left:-2.382000px;}
._15_c01048{margin-left:-1.353000px;}
._9_c01048{width:1.251000px;}
._7_c01048{width:3.111000px;}
._a_c01048{width:4.137000px;}
._6_c01048{width:5.202000px;}
._c_c01048{width:6.390000px;}
._b_c01048{width:7.611000px;}
._10_c01048{width:8.712000px;}
._4_c01048{width:9.828000px;}
._3_c01048{width:11.214000px;}
._1d_c01048{width:12.288000px;}
._1_c01048{width:13.293000px;}
._2_c01048{width:14.553000px;}
._0_c01048{width:17.451000px;}
._12_c01048{width:19.098000px;}
._1c_c01048{width:20.454000px;}
._13_c01048{width:22.365000px;}
._18_c01048{width:26.109000px;}
._14_c01048{width:28.257000px;}
._5_c01048{width:32.760000px;}
._1e_c01048{width:72.990000px;}
._1b_c01048{width:86.907000px;}
.fc2_c01048{color:transparent;}
.fc1_c01048{color:rgb(128,128,128);}
.fc0_c01048{color:rgb(0,0,0);}
.fs4_c01048{font-size:33.000000px;}
.fs5_c01048{font-size:39.000000px;}
.fs6_c01048{font-size:45.000000px;}
.fs8_c01048{font-size:48.000000px;}
.fs1_c01048{font-size:51.000000px;}
.fs3_c01048{font-size:60.000000px;}
.fs0_c01048{font-size:63.000000px;}
.fs7_c01048{font-size:69.000000px;}
.fs2_c01048{font-size:105.000000px;}
.y0_c01048{bottom:0.000000px;}
.y47_c01048{bottom:3.105000px;}
.y46_c01048{bottom:7.228371px;}
.y24_c01048{bottom:53.715000px;}
.y23_c01048{bottom:73.665000px;}
.y22_c01048{bottom:91.815000px;}
.y21_c01048{bottom:110.415000px;}
.y45_c01048{bottom:111.765000px;}
.y20_c01048{bottom:127.965000px;}
.y44_c01048{bottom:130.665000px;}
.y1f_c01048{bottom:146.865000px;}
.y43_c01048{bottom:148.515000px;}
.y1e_c01048{bottom:165.015000px;}
.y42_c01048{bottom:182.565000px;}
.y1d_c01048{bottom:183.315000px;}
.y1c_c01048{bottom:201.165000px;}
.y41_c01048{bottom:202.815000px;}
.y1b_c01048{bottom:219.165000px;}
.y40_c01048{bottom:220.815000px;}
.y1a_c01048{bottom:237.615000px;}
.y3f_c01048{bottom:238.365000px;}
.y19_c01048{bottom:255.915000px;}
.y3e_c01048{bottom:256.965000px;}
.y18_c01048{bottom:274.815000px;}
.y3d_c01048{bottom:292.965000px;}
.y3c_c01048{bottom:306.465000px;}
.y17_c01048{bottom:327.015000px;}
.y3b_c01048{bottom:328.515000px;}
.y16_c01048{bottom:344.715000px;}
.y3a_c01048{bottom:361.815000px;}
.y15_c01048{bottom:363.165000px;}
.y14_c01048{bottom:381.015000px;}
.y39_c01048{bottom:382.365000px;}
.y38_c01048{bottom:398.565000px;}
.y13_c01048{bottom:398.715000px;}
.y12_c01048{bottom:416.865000px;}
.y37_c01048{bottom:418.515000px;}
.y11_c01048{bottom:434.715000px;}
.y36_c01048{bottom:436.515000px;}
.y35_c01048{bottom:454.665000px;}
.y10_c01048{bottom:471.165000px;}
.y34_c01048{bottom:472.815000px;}
.yf_c01048{bottom:488.415000px;}
.y33_c01048{bottom:491.415000px;}
.ye_c01048{bottom:506.565000px;}
.y32_c01048{bottom:508.365000px;}
.yd_c01048{bottom:524.115000px;}
.y31_c01048{bottom:525.615000px;}
.yc_c01048{bottom:540.015000px;}
.y30_c01048{bottom:543.465000px;}
.yb_c01048{bottom:558.315000px;}
.y2f_c01048{bottom:562.365000px;}
.ya_c01048{bottom:574.515000px;}
.y2e_c01048{bottom:579.915000px;}
.y9_c01048{bottom:594.315000px;}
.y2d_c01048{bottom:598.065000px;}
.y8_c01048{bottom:612.915000px;}
.y2c_c01048{bottom:616.365000px;}
.y7_c01048{bottom:632.115000px;}
.y2b_c01048{bottom:634.215000px;}
.y6_c01048{bottom:649.365000px;}
.y2a_c01048{bottom:652.815000px;}
.y29_c01048{bottom:669.315000px;}
.y5_c01048{bottom:685.215000px;}
.y28_c01048{bottom:688.515000px;}
.y27_c01048{bottom:707.865000px;}
.y4_c01048{bottom:739.515000px;}
.y26_c01048{bottom:741.915000px;}
.y3_c01048{bottom:758.415000px;}
.y25_c01048{bottom:761.715000px;}
.y2_c01048{bottom:776.265000px;}
.y1_c01048{bottom:795.465000px;}
.h9_c01048{height:13.200074px;}
.h7_c01048{height:42.276000px;}
.ha_c01048{height:43.804688px;}
.h3_c01048{height:59.690918px;}
.h5_c01048{height:62.880000px;}
.h6_c01048{height:64.020000px;}
.h2_c01048{height:66.024000px;}
.h8_c01048{height:72.312000px;}
.h4_c01048{height:110.040000px;}
.h0_c01048{height:833.775000px;}
.h1_c01048{height:834.000000px;}
.w2_c01048{width:104.875500px;}
.w0_c01048{width:579.450000px;}
.w1_c01048{width:579.750000px;}
.x0_c01048{left:0.000000px;}
.x4_c01048{left:36.900000px;}
.xa_c01048{left:39.150000px;}
.x12_c01048{left:40.200000px;}
.x11_c01048{left:41.550000px;}
.x14_c01048{left:42.900000px;}
.x3_c01048{left:47.250000px;}
.x9_c01048{left:52.350000px;}
.xc_c01048{left:53.700000px;}
.x7_c01048{left:55.050000px;}
.xb_c01048{left:56.700000px;}
.x10_c01048{left:59.700000px;}
.x6_c01048{left:101.700000px;}
.xe_c01048{left:109.050000px;}
.xf_c01048{left:110.100000px;}
.x2_c01048{left:113.700000px;}
.x8_c01048{left:120.450000px;}
.xd_c01048{left:122.850000px;}
.x1_c01048{left:125.250000px;}
.x13_c01048{left:127.950000px;}
.x5_c01048{left:130.950000px;}
.x21_c01048{left:241.539230px;}
.x16_c01048{left:272.400000px;}
.x1b_c01048{left:274.050000px;}
.x1c_c01048{left:275.100000px;}
.x1e_c01048{left:276.450000px;}
.x17_c01048{left:285.300000px;}
.x19_c01048{left:287.250000px;}
.x15_c01048{left:288.300000px;}
.x1d_c01048{left:289.650000px;}
.x20_c01048{left:290.700000px;}
.x18_c01048{left:329.700000px;}
.x1a_c01048{left:352.350000px;}
.x1f_c01048{left:365.250000px;}
@media print{
.v1_c01048{vertical-align:-63.466667pt;}
.v2_c01048{vertical-align:-59.200000pt;}
.v3_c01048{vertical-align:-53.866667pt;}
.v0_c01048{vertical-align:0.000000pt;}
.lsa_c01048{letter-spacing:0.000000pt;}
.ls5_c01048{letter-spacing:2.493333pt;}
.ls4_c01048{letter-spacing:3.733333pt;}
.ls8_c01048{letter-spacing:4.746667pt;}
.lsc_c01048{letter-spacing:5.333333pt;}
.lsb_c01048{letter-spacing:8.000000pt;}
.ls6_c01048{letter-spacing:8.213333pt;}
.ls0_c01048{letter-spacing:8.266667pt;}
.ls1_c01048{letter-spacing:8.800000pt;}
.ls9_c01048{letter-spacing:10.933333pt;}
.ls2_c01048{letter-spacing:11.733333pt;}
.ls3_c01048{letter-spacing:12.160000pt;}
.ls7_c01048{letter-spacing:14.506667pt;}
.ws6_c01048{word-spacing:-44.946667pt;}
.ws0_c01048{word-spacing:-36.946667pt;}
.ws4_c01048{word-spacing:-25.840000pt;}
.ws2_c01048{word-spacing:-24.213333pt;}
.wsb_c01048{word-spacing:-20.746667pt;}
.ws7_c01048{word-spacing:-14.074667pt;}
.ws1_c01048{word-spacing:-13.386667pt;}
.wsa_c01048{word-spacing:-13.333333pt;}
.wsc_c01048{word-spacing:-12.586667pt;}
.ws5_c01048{word-spacing:-1.813333pt;}
.ws8_c01048{word-spacing:-1.386667pt;}
.wsd_c01048{word-spacing:0.000000pt;}
.ws9_c01048{word-spacing:23.360000pt;}
.ws3_c01048{word-spacing:39.093333pt;}
._16_c01048{margin-left:-13.424000pt;}
._1a_c01048{margin-left:-12.053333pt;}
._19_c01048{margin-left:-10.133333pt;}
._f_c01048{margin-left:-8.693333pt;}
._8_c01048{margin-left:-7.672000pt;}
._11_c01048{margin-left:-5.856000pt;}
._17_c01048{margin-left:-4.472000pt;}
._d_c01048{margin-left:-3.450667pt;}
._e_c01048{margin-left:-2.117333pt;}
._15_c01048{margin-left:-1.202667pt;}
._9_c01048{width:1.112000pt;}
._7_c01048{width:2.765333pt;}
._a_c01048{width:3.677333pt;}
._6_c01048{width:4.624000pt;}
._c_c01048{width:5.680000pt;}
._b_c01048{width:6.765333pt;}
._10_c01048{width:7.744000pt;}
._4_c01048{width:8.736000pt;}
._3_c01048{width:9.968000pt;}
._1d_c01048{width:10.922667pt;}
._1_c01048{width:11.816000pt;}
._2_c01048{width:12.936000pt;}
._0_c01048{width:15.512000pt;}
._12_c01048{width:16.976000pt;}
._1c_c01048{width:18.181333pt;}
._13_c01048{width:19.880000pt;}
._18_c01048{width:23.208000pt;}
._14_c01048{width:25.117333pt;}
._5_c01048{width:29.120000pt;}
._1e_c01048{width:64.880000pt;}
._1b_c01048{width:77.250667pt;}
.fs4_c01048{font-size:29.333333pt;}
.fs5_c01048{font-size:34.666667pt;}
.fs6_c01048{font-size:40.000000pt;}
.fs8_c01048{font-size:42.666667pt;}
.fs1_c01048{font-size:45.333333pt;}
.fs3_c01048{font-size:53.333333pt;}
.fs0_c01048{font-size:56.000000pt;}
.fs7_c01048{font-size:61.333333pt;}
.fs2_c01048{font-size:93.333333pt;}
.y0_c01048{bottom:0.000000pt;}
.y47_c01048{bottom:2.760000pt;}
.y46_c01048{bottom:6.425219pt;}
.y24_c01048{bottom:47.746667pt;}
.y23_c01048{bottom:65.480000pt;}
.y22_c01048{bottom:81.613333pt;}
.y21_c01048{bottom:98.146667pt;}
.y45_c01048{bottom:99.346667pt;}
.y20_c01048{bottom:113.746667pt;}
.y44_c01048{bottom:116.146667pt;}
.y1f_c01048{bottom:130.546667pt;}
.y43_c01048{bottom:132.013333pt;}
.y1e_c01048{bottom:146.680000pt;}
.y42_c01048{bottom:162.280000pt;}
.y1d_c01048{bottom:162.946667pt;}
.y1c_c01048{bottom:178.813333pt;}
.y41_c01048{bottom:180.280000pt;}
.y1b_c01048{bottom:194.813333pt;}
.y40_c01048{bottom:196.280000pt;}
.y1a_c01048{bottom:211.213333pt;}
.y3f_c01048{bottom:211.880000pt;}
.y19_c01048{bottom:227.480000pt;}
.y3e_c01048{bottom:228.413333pt;}
.y18_c01048{bottom:244.280000pt;}
.y3d_c01048{bottom:260.413333pt;}
.y3c_c01048{bottom:272.413333pt;}
.y17_c01048{bottom:290.680000pt;}
.y3b_c01048{bottom:292.013333pt;}
.y16_c01048{bottom:306.413333pt;}
.y3a_c01048{bottom:321.613333pt;}
.y15_c01048{bottom:322.813333pt;}
.y14_c01048{bottom:338.680000pt;}
.y39_c01048{bottom:339.880000pt;}
.y38_c01048{bottom:354.280000pt;}
.y13_c01048{bottom:354.413333pt;}
.y12_c01048{bottom:370.546667pt;}
.y37_c01048{bottom:372.013333pt;}
.y11_c01048{bottom:386.413333pt;}
.y36_c01048{bottom:388.013333pt;}
.y35_c01048{bottom:404.146667pt;}
.y10_c01048{bottom:418.813333pt;}
.y34_c01048{bottom:420.280000pt;}
.yf_c01048{bottom:434.146667pt;}
.y33_c01048{bottom:436.813333pt;}
.ye_c01048{bottom:450.280000pt;}
.y32_c01048{bottom:451.880000pt;}
.yd_c01048{bottom:465.880000pt;}
.y31_c01048{bottom:467.213333pt;}
.yc_c01048{bottom:480.013333pt;}
.y30_c01048{bottom:483.080000pt;}
.yb_c01048{bottom:496.280000pt;}
.y2f_c01048{bottom:499.880000pt;}
.ya_c01048{bottom:510.680000pt;}
.y2e_c01048{bottom:515.480000pt;}
.y9_c01048{bottom:528.280000pt;}
.y2d_c01048{bottom:531.613333pt;}
.y8_c01048{bottom:544.813333pt;}
.y2c_c01048{bottom:547.880000pt;}
.y7_c01048{bottom:561.880000pt;}
.y2b_c01048{bottom:563.746667pt;}
.y6_c01048{bottom:577.213333pt;}
.y2a_c01048{bottom:580.280000pt;}
.y29_c01048{bottom:594.946667pt;}
.y5_c01048{bottom:609.080000pt;}
.y28_c01048{bottom:612.013333pt;}
.y27_c01048{bottom:629.213333pt;}
.y4_c01048{bottom:657.346667pt;}
.y26_c01048{bottom:659.480000pt;}
.y3_c01048{bottom:674.146667pt;}
.y25_c01048{bottom:677.080000pt;}
.y2_c01048{bottom:690.013333pt;}
.y1_c01048{bottom:707.080000pt;}
.h9_c01048{height:11.733399pt;}
.h7_c01048{height:37.578667pt;}
.ha_c01048{height:38.937500pt;}
.h3_c01048{height:53.058594pt;}
.h5_c01048{height:55.893333pt;}
.h6_c01048{height:56.906667pt;}
.h2_c01048{height:58.688000pt;}
.h8_c01048{height:64.277333pt;}
.h4_c01048{height:97.813333pt;}
.h0_c01048{height:741.133333pt;}
.h1_c01048{height:741.333333pt;}
.w2_c01048{width:93.222667pt;}
.w0_c01048{width:515.066667pt;}
.w1_c01048{width:515.333333pt;}
.x0_c01048{left:0.000000pt;}
.x4_c01048{left:32.800000pt;}
.xa_c01048{left:34.800000pt;}
.x12_c01048{left:35.733333pt;}
.x11_c01048{left:36.933333pt;}
.x14_c01048{left:38.133333pt;}
.x3_c01048{left:42.000000pt;}
.x9_c01048{left:46.533333pt;}
.xc_c01048{left:47.733333pt;}
.x7_c01048{left:48.933333pt;}
.xb_c01048{left:50.400000pt;}
.x10_c01048{left:53.066667pt;}
.x6_c01048{left:90.400000pt;}
.xe_c01048{left:96.933333pt;}
.xf_c01048{left:97.866667pt;}
.x2_c01048{left:101.066667pt;}
.x8_c01048{left:107.066667pt;}
.xd_c01048{left:109.200000pt;}
.x1_c01048{left:111.333333pt;}
.x13_c01048{left:113.733333pt;}
.x5_c01048{left:116.400000pt;}
.x21_c01048{left:214.701538pt;}
.x16_c01048{left:242.133333pt;}
.x1b_c01048{left:243.600000pt;}
.x1c_c01048{left:244.533333pt;}
.x1e_c01048{left:245.733333pt;}
.x17_c01048{left:253.600000pt;}
.x19_c01048{left:255.333333pt;}
.x15_c01048{left:256.266667pt;}
.x1d_c01048{left:257.466667pt;}
.x20_c01048{left:258.400000pt;}
.x18_c01048{left:293.066667pt;}
.x1a_c01048{left:313.200000pt;}
.x1f_c01048{left:324.666667pt;}
}





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

.ir_c01049:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01049{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01049;src:url('chunks/assets/font_69a22ba976dc15b72a23b7f1.woff2')format("woff");}.ff1_c01049{font-family:ff1_c01049;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01049;src:url('chunks/assets/font_fbbc42b2a9b75a75ea92a2b7.woff2')format("woff");}.ff2_c01049{font-family:ff2_c01049;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01049;src:url('chunks/assets/font_869b2f0555a9a1e735538f52.woff2')format("woff");}.ff3_c01049{font-family:ff3_c01049;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01049;src:url('chunks/assets/font_8485dc9c89c6e461e81a2cd6.woff2')format("woff");}.ff4_c01049{font-family:ff4_c01049;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01049;src:url('chunks/assets/font_12e68eb5a2f16074bca14f41.woff2')format("woff");}.ff5_c01049{font-family:ff5_c01049;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01049;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff6_c01049{font-family:ff6_c01049;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01049{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v3_c01049{vertical-align:-72.600000px;}
.v1_c01049{vertical-align:-70.800000px;}
.v2_c01049{vertical-align:-60.600000px;}
.v4_c01049{vertical-align:-52.800000px;}
.v0_c01049{vertical-align:0.000000px;}
.ls8_c01049{letter-spacing:0.000000px;}
.ls1_c01049{letter-spacing:0.600000px;}
.ls9_c01049{letter-spacing:3.000000px;}
.ls6_c01049{letter-spacing:4.980000px;}
.ls2_c01049{letter-spacing:5.472000px;}
.lsa_c01049{letter-spacing:6.000000px;}
.ls5_c01049{letter-spacing:8.400000px;}
.ls4_c01049{letter-spacing:9.000000px;}
.ls7_c01049{letter-spacing:11.400000px;}
.ls0_c01049{letter-spacing:13.800000px;}
.ls3_c01049{letter-spacing:177.072000px;}
.sc__c01049{text-shadow:none;}
.sc0_c01049{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01049{-webkit-text-stroke:0px transparent;}
.sc0_c01049{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8_c01049{word-spacing:-23.340000px;}
.ws7_c01049{word-spacing:-20.160000px;}
.ws1_c01049{word-spacing:-18.642000px;}
.ws2_c01049{word-spacing:-15.060000px;}
.ws0_c01049{word-spacing:-14.160000px;}
.ws3_c01049{word-spacing:-13.452000px;}
.ws6_c01049{word-spacing:-12.744000px;}
.ws4_c01049{word-spacing:-4.479000px;}
.ws5_c01049{word-spacing:-2.694000px;}
.ws9_c01049{word-spacing:0.000000px;}
._14_c01049{margin-left:-11.760000px;}
._4_c01049{margin-left:-9.984000px;}
._1_c01049{margin-left:-8.502000px;}
._5_c01049{margin-left:-6.084000px;}
._3_c01049{margin-left:-4.758000px;}
._2_c01049{margin-left:-3.744000px;}
._6_c01049{margin-left:-2.346000px;}
._8_c01049{margin-left:-1.200000px;}
._d_c01049{width:1.080000px;}
._0_c01049{width:2.160000px;}
._9_c01049{width:4.020000px;}
._7_c01049{width:5.280000px;}
._b_c01049{width:7.260000px;}
._c_c01049{width:8.520000px;}
._a_c01049{width:10.020000px;}
._12_c01049{width:11.358000px;}
._f_c01049{width:13.332000px;}
._19_c01049{width:17.226000px;}
._11_c01049{width:18.684000px;}
._10_c01049{width:20.040000px;}
._18_c01049{width:21.516000px;}
._1b_c01049{width:24.306000px;}
._e_c01049{width:26.706000px;}
._1a_c01049{width:28.500000px;}
._15_c01049{width:32.340000px;}
._17_c01049{width:52.764000px;}
._13_c01049{width:150.879000px;}
._16_c01049{width:263.103000px;}
._1c_c01049{width:368.058000px;}
.fc2_c01049{color:transparent;}
.fc1_c01049{color:rgb(128,128,128);}
.fc0_c01049{color:rgb(0,0,0);}
.fs4_c01049{font-size:48.000000px;}
.fs3_c01049{font-size:51.000000px;}
.fs5_c01049{font-size:54.000000px;}
.fs2_c01049{font-size:57.000000px;}
.fs0_c01049{font-size:60.000000px;}
.fs1_c01049{font-size:78.000000px;}
.fs6_c01049{font-size:81.000000px;}
.y0_c01049{bottom:0.000000px;}
.y4a_c01049{bottom:3.105000px;}
.y49_c01049{bottom:7.228371px;}
.y48_c01049{bottom:66.165000px;}
.y21_c01049{bottom:86.715000px;}
.y47_c01049{bottom:87.165000px;}
.y20_c01049{bottom:104.415000px;}
.y46_c01049{bottom:106.365000px;}
.y45_c01049{bottom:122.565000px;}
.y1f_c01049{bottom:123.165000px;}
.y1e_c01049{bottom:141.765000px;}
.y1d_c01049{bottom:158.265000px;}
.y44_c01049{bottom:159.615000px;}
.y1c_c01049{bottom:176.265000px;}
.y43_c01049{bottom:178.215000px;}
.y1b_c01049{bottom:194.865000px;}
.y42_c01049{bottom:196.215000px;}
.y41_c01049{bottom:211.365000px;}
.y1a_c01049{bottom:230.865000px;}
.y40_c01049{bottom:232.515000px;}
.y19_c01049{bottom:248.865000px;}
.y3f_c01049{bottom:250.515000px;}
.y18_c01049{bottom:267.315000px;}
.y3e_c01049{bottom:268.665000px;}
.y17_c01049{bottom:284.865000px;}
.y3d_c01049{bottom:287.265000px;}
.y16_c01049{bottom:303.465000px;}
.y3c_c01049{bottom:304.065000px;}
.y15_c01049{bottom:320.715000px;}
.y3b_c01049{bottom:322.065000px;}
.y14_c01049{bottom:337.815000px;}
.y13_c01049{bottom:356.865000px;}
.y3a_c01049{bottom:358.515000px;}
.y12_c01049{bottom:375.015000px;}
.y39_c01049{bottom:376.365000px;}
.y38_c01049{bottom:394.665000px;}
.y11_c01049{bottom:408.015000px;}
.y37_c01049{bottom:412.815000px;}
.y10_c01049{bottom:428.265000px;}
.y36_c01049{bottom:430.665000px;}
.yf_c01049{bottom:446.865000px;}
.y35_c01049{bottom:448.515000px;}
.y34_c01049{bottom:467.115000px;}
.ye_c01049{bottom:482.415000px;}
.y33_c01049{bottom:484.965000px;}
.yd_c01049{bottom:500.565000px;}
.yc_c01049{bottom:519.165000px;}
.y32_c01049{bottom:520.215000px;}
.yb_c01049{bottom:537.015000px;}
.y31_c01049{bottom:537.765000px;}
.y30_c01049{bottom:554.265000px;}
.ya_c01049{bottom:555.165000px;}
.y9_c01049{bottom:572.115000px;}
.y2f_c01049{bottom:573.465000px;}
.y8_c01049{bottom:590.265000px;}
.y2e_c01049{bottom:591.615000px;}
.y7_c01049{bottom:608.865000px;}
.y2d_c01049{bottom:609.315000px;}
.y6_c01049{bottom:626.115000px;}
.y2c_c01049{bottom:626.715000px;}
.y5_c01049{bottom:643.965000px;}
.y2b_c01049{bottom:645.015000px;}
.y4_c01049{bottom:659.265000px;}
.y2a_c01049{bottom:663.315000px;}
.y3_c01049{bottom:680.115000px;}
.y29_c01049{bottom:682.065000px;}
.y2_c01049{bottom:698.415000px;}
.y28_c01049{bottom:699.765000px;}
.y1_c01049{bottom:716.865000px;}
.y27_c01049{bottom:717.315000px;}
.y26_c01049{bottom:735.465000px;}
.y25_c01049{bottom:753.315000px;}
.y24_c01049{bottom:770.265000px;}
.y23_c01049{bottom:789.765000px;}
.y22_c01049{bottom:807.315000px;}
.ha_c01049{height:13.200074px;}
.hb_c01049{height:43.804688px;}
.h7_c01049{height:52.032000px;}
.h6_c01049{height:53.448000px;}
.h8_c01049{height:56.592000px;}
.h5_c01049{height:59.736000px;}
.h2_c01049{height:62.880000px;}
.h4_c01049{height:64.020000px;}
.h3_c01049{height:81.744000px;}
.h9_c01049{height:84.888000px;}
.h0_c01049{height:848.625000px;}
.h1_c01049{height:849.000000px;}
.w2_c01049{width:104.875500px;}
.w1_c01049{width:579.750000px;}
.w0_c01049{width:579.975000px;}
.x0_c01049{left:0.000000px;}
.x4_c01049{left:90.900000px;}
.xa_c01049{left:93.150000px;}
.x3_c01049{left:94.200000px;}
.xc_c01049{left:95.250000px;}
.x5_c01049{left:106.650000px;}
.x2_c01049{left:107.700000px;}
.x8_c01049{left:109.050000px;}
.x7_c01049{left:110.100000px;}
.xd_c01049{left:111.750000px;}
.x1_c01049{left:162.900000px;}
.xb_c01049{left:164.700000px;}
.x6_c01049{left:170.550000px;}
.x9_c01049{left:172.500000px;}
.x1a_c01049{left:241.801758px;}
.xe_c01049{left:328.500000px;}
.x13_c01049{left:329.850000px;}
.x16_c01049{left:331.200000px;}
.x15_c01049{left:332.400000px;}
.x10_c01049{left:344.550000px;}
.x11_c01049{left:345.600000px;}
.x14_c01049{left:346.650000px;}
.x12_c01049{left:349.950000px;}
.x17_c01049{left:397.350000px;}
.x18_c01049{left:399.300000px;}
.x19_c01049{left:410.850000px;}
.xf_c01049{left:415.800000px;}
@media print{
.v3_c01049{vertical-align:-64.533333pt;}
.v1_c01049{vertical-align:-62.933333pt;}
.v2_c01049{vertical-align:-53.866667pt;}
.v4_c01049{vertical-align:-46.933333pt;}
.v0_c01049{vertical-align:0.000000pt;}
.ls8_c01049{letter-spacing:0.000000pt;}
.ls1_c01049{letter-spacing:0.533333pt;}
.ls9_c01049{letter-spacing:2.666667pt;}
.ls6_c01049{letter-spacing:4.426667pt;}
.ls2_c01049{letter-spacing:4.864000pt;}
.lsa_c01049{letter-spacing:5.333333pt;}
.ls5_c01049{letter-spacing:7.466667pt;}
.ls4_c01049{letter-spacing:8.000000pt;}
.ls7_c01049{letter-spacing:10.133333pt;}
.ls0_c01049{letter-spacing:12.266667pt;}
.ls3_c01049{letter-spacing:157.397333pt;}
.ws8_c01049{word-spacing:-20.746667pt;}
.ws7_c01049{word-spacing:-17.920000pt;}
.ws1_c01049{word-spacing:-16.570667pt;}
.ws2_c01049{word-spacing:-13.386667pt;}
.ws0_c01049{word-spacing:-12.586667pt;}
.ws3_c01049{word-spacing:-11.957333pt;}
.ws6_c01049{word-spacing:-11.328000pt;}
.ws4_c01049{word-spacing:-3.981333pt;}
.ws5_c01049{word-spacing:-2.394667pt;}
.ws9_c01049{word-spacing:0.000000pt;}
._14_c01049{margin-left:-10.453333pt;}
._4_c01049{margin-left:-8.874667pt;}
._1_c01049{margin-left:-7.557333pt;}
._5_c01049{margin-left:-5.408000pt;}
._3_c01049{margin-left:-4.229333pt;}
._2_c01049{margin-left:-3.328000pt;}
._6_c01049{margin-left:-2.085333pt;}
._8_c01049{margin-left:-1.066667pt;}
._d_c01049{width:0.960000pt;}
._0_c01049{width:1.920000pt;}
._9_c01049{width:3.573333pt;}
._7_c01049{width:4.693333pt;}
._b_c01049{width:6.453333pt;}
._c_c01049{width:7.573333pt;}
._a_c01049{width:8.906667pt;}
._12_c01049{width:10.096000pt;}
._f_c01049{width:11.850667pt;}
._19_c01049{width:15.312000pt;}
._11_c01049{width:16.608000pt;}
._10_c01049{width:17.813333pt;}
._18_c01049{width:19.125333pt;}
._1b_c01049{width:21.605333pt;}
._e_c01049{width:23.738667pt;}
._1a_c01049{width:25.333333pt;}
._15_c01049{width:28.746667pt;}
._17_c01049{width:46.901333pt;}
._13_c01049{width:134.114667pt;}
._16_c01049{width:233.869333pt;}
._1c_c01049{width:327.162667pt;}
.fs4_c01049{font-size:42.666667pt;}
.fs3_c01049{font-size:45.333333pt;}
.fs5_c01049{font-size:48.000000pt;}
.fs2_c01049{font-size:50.666667pt;}
.fs0_c01049{font-size:53.333333pt;}
.fs1_c01049{font-size:69.333333pt;}
.fs6_c01049{font-size:72.000000pt;}
.y0_c01049{bottom:0.000000pt;}
.y4a_c01049{bottom:2.760000pt;}
.y49_c01049{bottom:6.425219pt;}
.y48_c01049{bottom:58.813333pt;}
.y21_c01049{bottom:77.080000pt;}
.y47_c01049{bottom:77.480000pt;}
.y20_c01049{bottom:92.813333pt;}
.y46_c01049{bottom:94.546667pt;}
.y45_c01049{bottom:108.946667pt;}
.y1f_c01049{bottom:109.480000pt;}
.y1e_c01049{bottom:126.013333pt;}
.y1d_c01049{bottom:140.680000pt;}
.y44_c01049{bottom:141.880000pt;}
.y1c_c01049{bottom:156.680000pt;}
.y43_c01049{bottom:158.413333pt;}
.y1b_c01049{bottom:173.213333pt;}
.y42_c01049{bottom:174.413333pt;}
.y41_c01049{bottom:187.880000pt;}
.y1a_c01049{bottom:205.213333pt;}
.y40_c01049{bottom:206.680000pt;}
.y19_c01049{bottom:221.213333pt;}
.y3f_c01049{bottom:222.680000pt;}
.y18_c01049{bottom:237.613333pt;}
.y3e_c01049{bottom:238.813333pt;}
.y17_c01049{bottom:253.213333pt;}
.y3d_c01049{bottom:255.346667pt;}
.y16_c01049{bottom:269.746667pt;}
.y3c_c01049{bottom:270.280000pt;}
.y15_c01049{bottom:285.080000pt;}
.y3b_c01049{bottom:286.280000pt;}
.y14_c01049{bottom:300.280000pt;}
.y13_c01049{bottom:317.213333pt;}
.y3a_c01049{bottom:318.680000pt;}
.y12_c01049{bottom:333.346667pt;}
.y39_c01049{bottom:334.546667pt;}
.y38_c01049{bottom:350.813333pt;}
.y11_c01049{bottom:362.680000pt;}
.y37_c01049{bottom:366.946667pt;}
.y10_c01049{bottom:380.680000pt;}
.y36_c01049{bottom:382.813333pt;}
.yf_c01049{bottom:397.213333pt;}
.y35_c01049{bottom:398.680000pt;}
.y34_c01049{bottom:415.213333pt;}
.ye_c01049{bottom:428.813333pt;}
.y33_c01049{bottom:431.080000pt;}
.yd_c01049{bottom:444.946667pt;}
.yc_c01049{bottom:461.480000pt;}
.y32_c01049{bottom:462.413333pt;}
.yb_c01049{bottom:477.346667pt;}
.y31_c01049{bottom:478.013333pt;}
.y30_c01049{bottom:492.680000pt;}
.ya_c01049{bottom:493.480000pt;}
.y9_c01049{bottom:508.546667pt;}
.y2f_c01049{bottom:509.746667pt;}
.y8_c01049{bottom:524.680000pt;}
.y2e_c01049{bottom:525.880000pt;}
.y7_c01049{bottom:541.213333pt;}
.y2d_c01049{bottom:541.613333pt;}
.y6_c01049{bottom:556.546667pt;}
.y2c_c01049{bottom:557.080000pt;}
.y5_c01049{bottom:572.413333pt;}
.y2b_c01049{bottom:573.346667pt;}
.y4_c01049{bottom:586.013333pt;}
.y2a_c01049{bottom:589.613333pt;}
.y3_c01049{bottom:604.546667pt;}
.y29_c01049{bottom:606.280000pt;}
.y2_c01049{bottom:620.813333pt;}
.y28_c01049{bottom:622.013333pt;}
.y1_c01049{bottom:637.213333pt;}
.y27_c01049{bottom:637.613333pt;}
.y26_c01049{bottom:653.746667pt;}
.y25_c01049{bottom:669.613333pt;}
.y24_c01049{bottom:684.680000pt;}
.y23_c01049{bottom:702.013333pt;}
.y22_c01049{bottom:717.613333pt;}
.ha_c01049{height:11.733399pt;}
.hb_c01049{height:38.937500pt;}
.h7_c01049{height:46.250667pt;}
.h6_c01049{height:47.509333pt;}
.h8_c01049{height:50.304000pt;}
.h5_c01049{height:53.098667pt;}
.h2_c01049{height:55.893333pt;}
.h4_c01049{height:56.906667pt;}
.h3_c01049{height:72.661333pt;}
.h9_c01049{height:75.456000pt;}
.h0_c01049{height:754.333333pt;}
.h1_c01049{height:754.666667pt;}
.w2_c01049{width:93.222667pt;}
.w1_c01049{width:515.333333pt;}
.w0_c01049{width:515.533333pt;}
.x0_c01049{left:0.000000pt;}
.x4_c01049{left:80.800000pt;}
.xa_c01049{left:82.800000pt;}
.x3_c01049{left:83.733333pt;}
.xc_c01049{left:84.666667pt;}
.x5_c01049{left:94.800000pt;}
.x2_c01049{left:95.733333pt;}
.x8_c01049{left:96.933333pt;}
.x7_c01049{left:97.866667pt;}
.xd_c01049{left:99.333333pt;}
.x1_c01049{left:144.800000pt;}
.xb_c01049{left:146.400000pt;}
.x6_c01049{left:151.600000pt;}
.x9_c01049{left:153.333333pt;}
.x1a_c01049{left:214.934896pt;}
.xe_c01049{left:292.000000pt;}
.x13_c01049{left:293.200000pt;}
.x16_c01049{left:294.400000pt;}
.x15_c01049{left:295.466667pt;}
.x10_c01049{left:306.266667pt;}
.x11_c01049{left:307.200000pt;}
.x14_c01049{left:308.133333pt;}
.x12_c01049{left:311.066667pt;}
.x17_c01049{left:353.200000pt;}
.x18_c01049{left:354.933333pt;}
.x19_c01049{left:365.200000pt;}
.xf_c01049{left:369.600000pt;}
}





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

.ir_c01050:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01050{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01050;src:url('chunks/assets/font_3504a74b699e8d6e54ab65e0.woff2')format("woff");}.ff1_c01050{font-family:ff1_c01050;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01050;src:url('chunks/assets/font_502e00aa59a7bae23e3e6e2d.woff2')format("woff");}.ff2_c01050{font-family:ff2_c01050;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01050;src:url('chunks/assets/font_ecd5b2fe706a085ffb03ac70.woff2')format("woff");}.ff3_c01050{font-family:ff3_c01050;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01050;src:url('chunks/assets/font_a45931d0520d310968345184.woff2')format("woff");}.ff4_c01050{font-family:ff4_c01050;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01050;src:url('chunks/assets/font_5063a2f7f574e128f0e49424.woff2')format("woff");}.ff5_c01050{font-family:ff5_c01050;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01050;src:url('chunks/assets/font_ff5c65524ecda279e2cf26e7.woff2')format("woff");}.ff6_c01050{font-family:ff6_c01050;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01050;src:url('chunks/assets/font_5099efd4a476edf2954c1e31.woff2')format("woff");}.ff7_c01050{font-family:ff7_c01050;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c01050;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff8_c01050{font-family:ff8_c01050;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01050{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c01050{vertical-align:-74.400000px;}
.v5_c01050{vertical-align:-72.600000px;}
.v2_c01050{vertical-align:-69.000000px;}
.v4_c01050{vertical-align:-66.000000px;}
.v3_c01050{vertical-align:-60.000000px;}
.v0_c01050{vertical-align:0.000000px;}
.lsb_c01050{letter-spacing:-3.000000px;}
.lsa_c01050{letter-spacing:0.000000px;}
.ls8_c01050{letter-spacing:0.600000px;}
.ls2_c01050{letter-spacing:1.200000px;}
.ls3_c01050{letter-spacing:1.260000px;}
.lsc_c01050{letter-spacing:6.000000px;}
.ls7_c01050{letter-spacing:10.200000px;}
.ls5_c01050{letter-spacing:11.100000px;}
.ls4_c01050{letter-spacing:11.400000px;}
.ls0_c01050{letter-spacing:12.000000px;}
.ls6_c01050{letter-spacing:42.000000px;}
.ls9_c01050{letter-spacing:124.680000px;}
.ls1_c01050{letter-spacing:161.040000px;}
.sc__c01050{text-shadow:none;}
.sc0_c01050{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01050{-webkit-text-stroke:0px transparent;}
.sc0_c01050{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01050{word-spacing:-29.424000px;}
.ws8_c01050{word-spacing:-27.540000px;}
.ws3_c01050{word-spacing:-15.060000px;}
.ws1_c01050{word-spacing:-14.160000px;}
.ws5_c01050{word-spacing:-13.452000px;}
.ws6_c01050{word-spacing:-0.399000px;}
.ws9_c01050{word-spacing:0.000000px;}
.ws7_c01050{word-spacing:103.080000px;}
.ws4_c01050{word-spacing:147.780000px;}
.ws0_c01050{word-spacing:196.560000px;}
._24_c01050{margin-left:-25.320000px;}
._1a_c01050{margin-left:-21.720000px;}
._1b_c01050{margin-left:-19.665000px;}
._12_c01050{margin-left:-15.903000px;}
._20_c01050{margin-left:-14.820000px;}
._19_c01050{margin-left:-12.999000px;}
._1f_c01050{margin-left:-11.679000px;}
._21_c01050{margin-left:-10.188000px;}
._f_c01050{margin-left:-9.081000px;}
._10_c01050{margin-left:-7.251000px;}
._11_c01050{margin-left:-5.736000px;}
._17_c01050{margin-left:-4.038000px;}
._d_c01050{margin-left:-2.160000px;}
._e_c01050{margin-left:-1.080000px;}
._c_c01050{width:1.080000px;}
._b_c01050{width:2.460000px;}
._8_c01050{width:4.020000px;}
._7_c01050{width:5.520000px;}
._a_c01050{width:6.600000px;}
._9_c01050{width:7.860000px;}
._5_c01050{width:9.420000px;}
._16_c01050{width:10.500000px;}
._6_c01050{width:11.640000px;}
._3_c01050{width:13.260000px;}
._2_c01050{width:16.320000px;}
._1c_c01050{width:17.580000px;}
._0_c01050{width:18.660000px;}
._1_c01050{width:19.860000px;}
._25_c01050{width:20.940000px;}
._18_c01050{width:22.560000px;}
._22_c01050{width:23.940000px;}
._23_c01050{width:25.260000px;}
._15_c01050{width:26.640000px;}
._14_c01050{width:35.340000px;}
._13_c01050{width:38.640000px;}
._1d_c01050{width:43.620000px;}
._4_c01050{width:55.260000px;}
._1e_c01050{width:71.058000px;}
.fc2_c01050{color:transparent;}
.fc1_c01050{color:rgb(128,128,128);}
.fc0_c01050{color:rgb(0,0,0);}
.fs6_c01050{font-size:39.000000px;}
.fs4_c01050{font-size:48.000000px;}
.fs5_c01050{font-size:57.000000px;}
.fs0_c01050{font-size:60.000000px;}
.fs1_c01050{font-size:63.000000px;}
.fs2_c01050{font-size:66.000000px;}
.fs3_c01050{font-size:93.000000px;}
.y0_c01050{bottom:0.000000px;}
.y51_c01050{bottom:3.105000px;}
.y50_c01050{bottom:7.228363px;}
.y28_c01050{bottom:53.700000px;}
.y4f_c01050{bottom:55.050000px;}
.y27_c01050{bottom:72.150000px;}
.y4e_c01050{bottom:73.200000px;}
.y26_c01050{bottom:89.700000px;}
.y4d_c01050{bottom:90.900000px;}
.y25_c01050{bottom:108.300000px;}
.y4c_c01050{bottom:109.800000px;}
.y24_c01050{bottom:126.150000px;}
.y4b_c01050{bottom:127.650000px;}
.y23_c01050{bottom:144.750000px;}
.y4a_c01050{bottom:145.500000px;}
.y22_c01050{bottom:162.300000px;}
.y49_c01050{bottom:164.400000px;}
.y21_c01050{bottom:180.600000px;}
.y20_c01050{bottom:199.350000px;}
.y48_c01050{bottom:200.100000px;}
.y1f_c01050{bottom:216.300000px;}
.y47_c01050{bottom:218.100000px;}
.y1e_c01050{bottom:234.450000px;}
.y46_c01050{bottom:236.250000px;}
.y1d_c01050{bottom:252.750000px;}
.y45_c01050{bottom:254.250000px;}
.y1c_c01050{bottom:270.900000px;}
.y1b_c01050{bottom:287.550000px;}
.y44_c01050{bottom:288.300000px;}
.y1a_c01050{bottom:304.650000px;}
.y43_c01050{bottom:307.800000px;}
.y19_c01050{bottom:323.250000px;}
.y42_c01050{bottom:326.100000px;}
.y18_c01050{bottom:340.200000px;}
.y41_c01050{bottom:344.550000px;}
.y17_c01050{bottom:360.000000px;}
.y40_c01050{bottom:360.900000px;}
.y16_c01050{bottom:378.300000px;}
.y3f_c01050{bottom:379.800000px;}
.y15_c01050{bottom:394.800000px;}
.y3e_c01050{bottom:398.250000px;}
.y14_c01050{bottom:414.000000px;}
.y3d_c01050{bottom:415.500000px;}
.y13_c01050{bottom:432.000000px;}
.y3c_c01050{bottom:433.800000px;}
.y12_c01050{bottom:450.150000px;}
.y3b_c01050{bottom:451.950000px;}
.y11_c01050{bottom:467.100000px;}
.y3a_c01050{bottom:469.200000px;}
.y10_c01050{bottom:486.000000px;}
.y39_c01050{bottom:487.650000px;}
.yf_c01050{bottom:503.850000px;}
.y38_c01050{bottom:506.250000px;}
.ye_c01050{bottom:521.100000px;}
.y37_c01050{bottom:524.100000px;}
.yd_c01050{bottom:538.350000px;}
.y36_c01050{bottom:540.300000px;}
.yc_c01050{bottom:556.800000px;}
.y35_c01050{bottom:558.900000px;}
.y34_c01050{bottom:577.350000px;}
.yb_c01050{bottom:591.900000px;}
.y33_c01050{bottom:594.300000px;}
.ya_c01050{bottom:610.200000px;}
.y32_c01050{bottom:612.600000px;}
.y9_c01050{bottom:629.100000px;}
.y31_c01050{bottom:646.350000px;}
.y8_c01050{bottom:665.550000px;}
.y30_c01050{bottom:666.600000px;}
.y7_c01050{bottom:682.650000px;}
.y2f_c01050{bottom:685.050000px;}
.y6_c01050{bottom:701.550000px;}
.y2e_c01050{bottom:703.050000px;}
.y5_c01050{bottom:719.850000px;}
.y2d_c01050{bottom:720.600000px;}
.y4_c01050{bottom:738.150000px;}
.y2c_c01050{bottom:738.750000px;}
.y2b_c01050{bottom:757.050000px;}
.y3_c01050{bottom:757.350000px;}
.y2_c01050{bottom:774.900000px;}
.y2a_c01050{bottom:776.250000px;}
.y1_c01050{bottom:793.500000px;}
.y29_c01050{bottom:794.700000px;}
.h8_c01050{height:13.200074px;}
.h9_c01050{height:43.804688px;}
.h7_c01050{height:59.736000px;}
.h2_c01050{height:62.880000px;}
.h4_c01050{height:64.020000px;}
.h3_c01050{height:66.024000px;}
.h5_c01050{height:69.168000px;}
.h6_c01050{height:91.274414px;}
.h0_c01050{height:826.200000px;}
.h1_c01050{height:826.500000px;}
.w2_c01050{width:104.875500px;}
.w1_c01050{width:573.750000px;}
.w0_c01050{width:574.050000px;}
.x0_c01050{left:0.000000px;}
.x4_c01050{left:30.600000px;}
.x3_c01050{left:31.650000px;}
.x6_c01050{left:32.700000px;}
.xe_c01050{left:33.750000px;}
.xf_c01050{left:35.400000px;}
.xa_c01050{left:38.100000px;}
.xd_c01050{left:42.600000px;}
.x5_c01050{left:48.150000px;}
.x2_c01050{left:49.200000px;}
.xb_c01050{left:52.650000px;}
.x10_c01050{left:53.700000px;}
.x7_c01050{left:61.350000px;}
.xc_c01050{left:102.900000px;}
.x8_c01050{left:107.550000px;}
.x1_c01050{left:112.050000px;}
.x9_c01050{left:115.500000px;}
.x21_c01050{left:238.839249px;}
.x12_c01050{left:269.250000px;}
.x15_c01050{left:270.300000px;}
.x1c_c01050{left:271.350000px;}
.x1e_c01050{left:272.400000px;}
.x1d_c01050{left:273.750000px;}
.x11_c01050{left:276.300000px;}
.x16_c01050{left:284.100000px;}
.x14_c01050{left:287.250000px;}
.x1b_c01050{left:289.350000px;}
.x20_c01050{left:335.850000px;}
.x18_c01050{left:339.300000px;}
.x13_c01050{left:340.500000px;}
.x17_c01050{left:343.500000px;}
.x1a_c01050{left:346.050000px;}
.x19_c01050{left:347.400000px;}
.x1f_c01050{left:351.300000px;}
@media print{
.v1_c01050{vertical-align:-66.133333pt;}
.v5_c01050{vertical-align:-64.533333pt;}
.v2_c01050{vertical-align:-61.333333pt;}
.v4_c01050{vertical-align:-58.666667pt;}
.v3_c01050{vertical-align:-53.333333pt;}
.v0_c01050{vertical-align:0.000000pt;}
.lsb_c01050{letter-spacing:-2.666667pt;}
.lsa_c01050{letter-spacing:0.000000pt;}
.ls8_c01050{letter-spacing:0.533333pt;}
.ls2_c01050{letter-spacing:1.066667pt;}
.ls3_c01050{letter-spacing:1.120000pt;}
.lsc_c01050{letter-spacing:5.333333pt;}
.ls7_c01050{letter-spacing:9.066667pt;}
.ls5_c01050{letter-spacing:9.866667pt;}
.ls4_c01050{letter-spacing:10.133333pt;}
.ls0_c01050{letter-spacing:10.666667pt;}
.ls6_c01050{letter-spacing:37.333333pt;}
.ls9_c01050{letter-spacing:110.826667pt;}
.ls1_c01050{letter-spacing:143.146667pt;}
.ws2_c01050{word-spacing:-26.154667pt;}
.ws8_c01050{word-spacing:-24.480000pt;}
.ws3_c01050{word-spacing:-13.386667pt;}
.ws1_c01050{word-spacing:-12.586667pt;}
.ws5_c01050{word-spacing:-11.957333pt;}
.ws6_c01050{word-spacing:-0.354667pt;}
.ws9_c01050{word-spacing:0.000000pt;}
.ws7_c01050{word-spacing:91.626667pt;}
.ws4_c01050{word-spacing:131.360000pt;}
.ws0_c01050{word-spacing:174.720000pt;}
._24_c01050{margin-left:-22.506667pt;}
._1a_c01050{margin-left:-19.306667pt;}
._1b_c01050{margin-left:-17.480000pt;}
._12_c01050{margin-left:-14.136000pt;}
._20_c01050{margin-left:-13.173333pt;}
._19_c01050{margin-left:-11.554667pt;}
._1f_c01050{margin-left:-10.381333pt;}
._21_c01050{margin-left:-9.056000pt;}
._f_c01050{margin-left:-8.072000pt;}
._10_c01050{margin-left:-6.445333pt;}
._11_c01050{margin-left:-5.098667pt;}
._17_c01050{margin-left:-3.589333pt;}
._d_c01050{margin-left:-1.920000pt;}
._e_c01050{margin-left:-0.960000pt;}
._c_c01050{width:0.960000pt;}
._b_c01050{width:2.186667pt;}
._8_c01050{width:3.573333pt;}
._7_c01050{width:4.906667pt;}
._a_c01050{width:5.866667pt;}
._9_c01050{width:6.986667pt;}
._5_c01050{width:8.373333pt;}
._16_c01050{width:9.333333pt;}
._6_c01050{width:10.346667pt;}
._3_c01050{width:11.786667pt;}
._2_c01050{width:14.506667pt;}
._1c_c01050{width:15.626667pt;}
._0_c01050{width:16.586667pt;}
._1_c01050{width:17.653333pt;}
._25_c01050{width:18.613333pt;}
._18_c01050{width:20.053333pt;}
._22_c01050{width:21.280000pt;}
._23_c01050{width:22.453333pt;}
._15_c01050{width:23.680000pt;}
._14_c01050{width:31.413333pt;}
._13_c01050{width:34.346667pt;}
._1d_c01050{width:38.773333pt;}
._4_c01050{width:49.120000pt;}
._1e_c01050{width:63.162667pt;}
.fs6_c01050{font-size:34.666667pt;}
.fs4_c01050{font-size:42.666667pt;}
.fs5_c01050{font-size:50.666667pt;}
.fs0_c01050{font-size:53.333333pt;}
.fs1_c01050{font-size:56.000000pt;}
.fs2_c01050{font-size:58.666667pt;}
.fs3_c01050{font-size:82.666667pt;}
.y0_c01050{bottom:0.000000pt;}
.y51_c01050{bottom:2.760000pt;}
.y50_c01050{bottom:6.425212pt;}
.y28_c01050{bottom:47.733333pt;}
.y4f_c01050{bottom:48.933333pt;}
.y27_c01050{bottom:64.133333pt;}
.y4e_c01050{bottom:65.066667pt;}
.y26_c01050{bottom:79.733333pt;}
.y4d_c01050{bottom:80.800000pt;}
.y25_c01050{bottom:96.266667pt;}
.y4c_c01050{bottom:97.600000pt;}
.y24_c01050{bottom:112.133333pt;}
.y4b_c01050{bottom:113.466667pt;}
.y23_c01050{bottom:128.666667pt;}
.y4a_c01050{bottom:129.333333pt;}
.y22_c01050{bottom:144.266667pt;}
.y49_c01050{bottom:146.133333pt;}
.y21_c01050{bottom:160.533333pt;}
.y20_c01050{bottom:177.200000pt;}
.y48_c01050{bottom:177.866667pt;}
.y1f_c01050{bottom:192.266667pt;}
.y47_c01050{bottom:193.866667pt;}
.y1e_c01050{bottom:208.400000pt;}
.y46_c01050{bottom:210.000000pt;}
.y1d_c01050{bottom:224.666667pt;}
.y45_c01050{bottom:226.000000pt;}
.y1c_c01050{bottom:240.800000pt;}
.y1b_c01050{bottom:255.600000pt;}
.y44_c01050{bottom:256.266667pt;}
.y1a_c01050{bottom:270.800000pt;}
.y43_c01050{bottom:273.600000pt;}
.y19_c01050{bottom:287.333333pt;}
.y42_c01050{bottom:289.866667pt;}
.y18_c01050{bottom:302.400000pt;}
.y41_c01050{bottom:306.266667pt;}
.y17_c01050{bottom:320.000000pt;}
.y40_c01050{bottom:320.800000pt;}
.y16_c01050{bottom:336.266667pt;}
.y3f_c01050{bottom:337.600000pt;}
.y15_c01050{bottom:350.933333pt;}
.y3e_c01050{bottom:354.000000pt;}
.y14_c01050{bottom:368.000000pt;}
.y3d_c01050{bottom:369.333333pt;}
.y13_c01050{bottom:384.000000pt;}
.y3c_c01050{bottom:385.600000pt;}
.y12_c01050{bottom:400.133333pt;}
.y3b_c01050{bottom:401.733333pt;}
.y11_c01050{bottom:415.200000pt;}
.y3a_c01050{bottom:417.066667pt;}
.y10_c01050{bottom:432.000000pt;}
.y39_c01050{bottom:433.466667pt;}
.yf_c01050{bottom:447.866667pt;}
.y38_c01050{bottom:450.000000pt;}
.ye_c01050{bottom:463.200000pt;}
.y37_c01050{bottom:465.866667pt;}
.yd_c01050{bottom:478.533333pt;}
.y36_c01050{bottom:480.266667pt;}
.yc_c01050{bottom:494.933333pt;}
.y35_c01050{bottom:496.800000pt;}
.y34_c01050{bottom:513.200000pt;}
.yb_c01050{bottom:526.133333pt;}
.y33_c01050{bottom:528.266667pt;}
.ya_c01050{bottom:542.400000pt;}
.y32_c01050{bottom:544.533333pt;}
.y9_c01050{bottom:559.200000pt;}
.y31_c01050{bottom:574.533333pt;}
.y8_c01050{bottom:591.600000pt;}
.y30_c01050{bottom:592.533333pt;}
.y7_c01050{bottom:606.800000pt;}
.y2f_c01050{bottom:608.933333pt;}
.y6_c01050{bottom:623.600000pt;}
.y2e_c01050{bottom:624.933333pt;}
.y5_c01050{bottom:639.866667pt;}
.y2d_c01050{bottom:640.533333pt;}
.y4_c01050{bottom:656.133333pt;}
.y2c_c01050{bottom:656.666667pt;}
.y2b_c01050{bottom:672.933333pt;}
.y3_c01050{bottom:673.200000pt;}
.y2_c01050{bottom:688.800000pt;}
.y2a_c01050{bottom:690.000000pt;}
.y1_c01050{bottom:705.333333pt;}
.y29_c01050{bottom:706.400000pt;}
.h8_c01050{height:11.733399pt;}
.h9_c01050{height:38.937500pt;}
.h7_c01050{height:53.098667pt;}
.h2_c01050{height:55.893333pt;}
.h4_c01050{height:56.906667pt;}
.h3_c01050{height:58.688000pt;}
.h5_c01050{height:61.482667pt;}
.h6_c01050{height:81.132812pt;}
.h0_c01050{height:734.400000pt;}
.h1_c01050{height:734.666667pt;}
.w2_c01050{width:93.222667pt;}
.w1_c01050{width:510.000000pt;}
.w0_c01050{width:510.266667pt;}
.x0_c01050{left:0.000000pt;}
.x4_c01050{left:27.200000pt;}
.x3_c01050{left:28.133333pt;}
.x6_c01050{left:29.066667pt;}
.xe_c01050{left:30.000000pt;}
.xf_c01050{left:31.466667pt;}
.xa_c01050{left:33.866667pt;}
.xd_c01050{left:37.866667pt;}
.x5_c01050{left:42.800000pt;}
.x2_c01050{left:43.733333pt;}
.xb_c01050{left:46.800000pt;}
.x10_c01050{left:47.733333pt;}
.x7_c01050{left:54.533333pt;}
.xc_c01050{left:91.466667pt;}
.x8_c01050{left:95.600000pt;}
.x1_c01050{left:99.600000pt;}
.x9_c01050{left:102.666667pt;}
.x21_c01050{left:212.301554pt;}
.x12_c01050{left:239.333333pt;}
.x15_c01050{left:240.266667pt;}
.x1c_c01050{left:241.200000pt;}
.x1e_c01050{left:242.133333pt;}
.x1d_c01050{left:243.333333pt;}
.x11_c01050{left:245.600000pt;}
.x16_c01050{left:252.533333pt;}
.x14_c01050{left:255.333333pt;}
.x1b_c01050{left:257.200000pt;}
.x20_c01050{left:298.533333pt;}
.x18_c01050{left:301.600000pt;}
.x13_c01050{left:302.666667pt;}
.x17_c01050{left:305.333333pt;}
.x1a_c01050{left:307.600000pt;}
.x19_c01050{left:308.800000pt;}
.x1f_c01050{left:312.266667pt;}
}





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

.ir_c01051:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01051{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01051;src:url('chunks/assets/font_0e817f93c07599cd21df5572.woff2')format("woff");}.ff1_c01051{font-family:ff1_c01051;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01051;src:url('chunks/assets/font_daba40f2ef00518c97144850.woff2')format("woff");}.ff2_c01051{font-family:ff2_c01051;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01051;src:url('chunks/assets/font_b1cbbeb7af19e89a80f7f3b4.woff2')format("woff");}.ff3_c01051{font-family:ff3_c01051;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01051;src:url('chunks/assets/font_c50778907642c98689b4dc87.woff2')format("woff");}.ff4_c01051{font-family:ff4_c01051;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01051;src:url('chunks/assets/font_ecd58ce5b28fb526fc40ed7e.woff2')format("woff");}.ff5_c01051{font-family:ff5_c01051;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01051;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff6_c01051{font-family:ff6_c01051;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01051{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c01051{vertical-align:-66.000000px;}
.v0_c01051{vertical-align:0.000000px;}
.ls5_c01051{letter-spacing:0.000000px;}
.ls1_c01051{letter-spacing:1.140000px;}
.ls2_c01051{letter-spacing:3.600000px;}
.ls6_c01051{letter-spacing:6.000000px;}
.ls0_c01051{letter-spacing:7.800000px;}
.ls4_c01051{letter-spacing:8.580000px;}
.ls7_c01051{letter-spacing:9.000000px;}
.ls3_c01051{letter-spacing:19.200000px;}
.sc__c01051{text-shadow:none;}
.sc0_c01051{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01051{-webkit-text-stroke:0px transparent;}
.sc0_c01051{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01051{word-spacing:-41.565000px;}
.ws4_c01051{word-spacing:-30.540000px;}
.ws5_c01051{word-spacing:-27.486000px;}
.ws1_c01051{word-spacing:-25.140000px;}
.ws3_c01051{word-spacing:-23.340000px;}
.ws7_c01051{word-spacing:-15.813000px;}
.ws0_c01051{word-spacing:-15.060000px;}
.ws8_c01051{word-spacing:0.000000px;}
.ws6_c01051{word-spacing:166.680000px;}
._19_c01051{margin-left:-22.284000px;}
._18_c01051{margin-left:-13.143000px;}
._11_c01051{margin-left:-12.000000px;}
._16_c01051{margin-left:-9.843000px;}
._14_c01051{margin-left:-8.676000px;}
._10_c01051{margin-left:-7.200000px;}
._13_c01051{margin-left:-5.763000px;}
._c_c01051{margin-left:-4.473000px;}
._8_c01051{margin-left:-3.024000px;}
._d_c01051{margin-left:-1.953000px;}
._b_c01051{width:1.116000px;}
._6_c01051{width:2.394000px;}
._7_c01051{width:3.402000px;}
._a_c01051{width:4.815000px;}
._f_c01051{width:6.000000px;}
._9_c01051{width:7.056000px;}
._0_c01051{width:8.100000px;}
._e_c01051{width:9.813000px;}
._5_c01051{width:11.040000px;}
._12_c01051{width:12.411000px;}
._3_c01051{width:14.040000px;}
._2_c01051{width:16.320000px;}
._1_c01051{width:18.060000px;}
._4_c01051{width:19.440000px;}
._15_c01051{width:21.618000px;}
._1b_c01051{width:23.031000px;}
._17_c01051{width:25.248000px;}
._1f_c01051{width:30.804000px;}
._1a_c01051{width:33.453000px;}
._1c_c01051{width:99.942000px;}
._1e_c01051{width:115.980000px;}
._1d_c01051{width:189.504000px;}
.fc2_c01051{color:transparent;}
.fc1_c01051{color:rgb(128,128,128);}
.fc0_c01051{color:rgb(0,0,0);}
.fs6_c01051{font-size:48.000000px;}
.fs2_c01051{font-size:51.000000px;}
.fs4_c01051{font-size:54.000000px;}
.fs0_c01051{font-size:60.000000px;}
.fs1_c01051{font-size:63.000000px;}
.fs5_c01051{font-size:75.000000px;}
.fs3_c01051{font-size:105.000000px;}
.y0_c01051{bottom:0.000000px;}
.y52_c01051{bottom:3.105000px;}
.y51_c01051{bottom:7.228371px;}
.y50_c01051{bottom:54.315000px;}
.y26_c01051{bottom:69.165000px;}
.y4f_c01051{bottom:71.865000px;}
.y25_c01051{bottom:87.765000px;}
.y4e_c01051{bottom:89.565000px;}
.y4d_c01051{bottom:108.465000px;}
.y24_c01051{bottom:122.865000px;}
.y4c_c01051{bottom:125.565000px;}
.y23_c01051{bottom:142.215000px;}
.y4b_c01051{bottom:142.815000px;}
.y22_c01051{bottom:160.965000px;}
.y4a_c01051{bottom:162.015000px;}
.y21_c01051{bottom:178.665000px;}
.y49_c01051{bottom:180.615000px;}
.y20_c01051{bottom:196.215000px;}
.y48_c01051{bottom:198.165000px;}
.y1f_c01051{bottom:215.415000px;}
.y47_c01051{bottom:216.765000px;}
.y1e_c01051{bottom:232.665000px;}
.y46_c01051{bottom:234.315000px;}
.y1d_c01051{bottom:248.715000px;}
.y45_c01051{bottom:252.915000px;}
.y1c_c01051{bottom:267.765000px;}
.y44_c01051{bottom:271.065000px;}
.y1b_c01051{bottom:286.515000px;}
.y43_c01051{bottom:288.915000px;}
.y1a_c01051{bottom:304.815000px;}
.y42_c01051{bottom:306.165000px;}
.y19_c01051{bottom:322.365000px;}
.y41_c01051{bottom:337.215000px;}
.y18_c01051{bottom:340.215000px;}
.y17_c01051{bottom:358.815000px;}
.y40_c01051{bottom:359.865000px;}
.y3f_c01051{bottom:378.465000px;}
.y16_c01051{bottom:394.515000px;}
.y3e_c01051{bottom:396.315000px;}
.y3d_c01051{bottom:415.515000px;}
.y3c_c01051{bottom:432.765000px;}
.y15_c01051{bottom:447.315000px;}
.y3b_c01051{bottom:450.315000px;}
.y14_c01051{bottom:466.065000px;}
.y3a_c01051{bottom:468.765000px;}
.y13_c01051{bottom:483.615000px;}
.y39_c01051{bottom:486.765000px;}
.y12_c01051{bottom:502.215000px;}
.y38_c01051{bottom:504.315000px;}
.y11_c01051{bottom:520.215000px;}
.y37_c01051{bottom:522.165000px;}
.y10_c01051{bottom:538.665000px;}
.y36_c01051{bottom:540.315000px;}
.yf_c01051{bottom:555.615000px;}
.y35_c01051{bottom:558.615000px;}
.ye_c01051{bottom:573.765000px;}
.y34_c01051{bottom:575.865000px;}
.yd_c01051{bottom:591.315000px;}
.y33_c01051{bottom:594.315000px;}
.yc_c01051{bottom:609.315000px;}
.y32_c01051{bottom:612.315000px;}
.yb_c01051{bottom:627.465000px;}
.y31_c01051{bottom:628.815000px;}
.ya_c01051{bottom:645.315000px;}
.y30_c01051{bottom:648.315000px;}
.y9_c01051{bottom:663.615000px;}
.y2f_c01051{bottom:667.215000px;}
.y8_c01051{bottom:682.065000px;}
.y2e_c01051{bottom:684.465000px;}
.y7_c01051{bottom:700.065000px;}
.y2d_c01051{bottom:701.115000px;}
.y6_c01051{bottom:718.515000px;}
.y2c_c01051{bottom:721.665000px;}
.y5_c01051{bottom:736.215000px;}
.y2b_c01051{bottom:739.215000px;}
.y4_c01051{bottom:752.715000px;}
.y2a_c01051{bottom:756.465000px;}
.y3_c01051{bottom:772.665000px;}
.y29_c01051{bottom:775.215000px;}
.y2_c01051{bottom:790.815000px;}
.y28_c01051{bottom:792.915000px;}
.y1_c01051{bottom:808.665000px;}
.y27_c01051{bottom:810.465000px;}
.h9_c01051{height:13.200074px;}
.ha_c01051{height:43.804688px;}
.h7_c01051{height:56.592000px;}
.h5_c01051{height:59.690918px;}
.h2_c01051{height:62.880000px;}
.h4_c01051{height:64.020000px;}
.h3_c01051{height:66.024000px;}
.h8_c01051{height:78.600000px;}
.h6_c01051{height:110.040000px;}
.h0_c01051{height:848.625000px;}
.h1_c01051{height:849.000000px;}
.w2_c01051{width:104.875500px;}
.w1_c01051{width:579.750000px;}
.w0_c01051{width:579.975000px;}
.x0_c01051{left:0.000000px;}
.x9_c01051{left:85.800000px;}
.xf_c01051{left:86.850000px;}
.x8_c01051{left:88.050000px;}
.x2_c01051{left:89.550000px;}
.x3_c01051{left:90.750000px;}
.xd_c01051{left:101.550000px;}
.x7_c01051{left:105.000000px;}
.xa_c01051{left:107.100000px;}
.x5_c01051{left:108.300000px;}
.x10_c01051{left:113.850000px;}
.x6_c01051{left:156.000000px;}
.xe_c01051{left:168.150000px;}
.x4_c01051{left:171.900000px;}
.xc_c01051{left:174.600000px;}
.xb_c01051{left:181.650000px;}
.x1_c01051{left:205.200000px;}
.x23_c01051{left:241.801758px;}
.x11_c01051{left:323.400000px;}
.x1e_c01051{left:324.450000px;}
.x16_c01051{left:326.100000px;}
.x14_c01051{left:327.750000px;}
.x1b_c01051{left:329.400000px;}
.x1f_c01051{left:339.900000px;}
.x15_c01051{left:342.300000px;}
.x1d_c01051{left:343.350000px;}
.x13_c01051{left:344.550000px;}
.x18_c01051{left:345.900000px;}
.x19_c01051{left:384.750000px;}
.x1c_c01051{left:390.600000px;}
.x20_c01051{left:393.300000px;}
.x1a_c01051{left:396.300000px;}
.x17_c01051{left:397.650000px;}
.x21_c01051{left:403.650000px;}
.x12_c01051{left:406.650000px;}
.x22_c01051{left:497.250000px;}
@media print{
.v1_c01051{vertical-align:-58.666667pt;}
.v0_c01051{vertical-align:0.000000pt;}
.ls5_c01051{letter-spacing:0.000000pt;}
.ls1_c01051{letter-spacing:1.013333pt;}
.ls2_c01051{letter-spacing:3.200000pt;}
.ls6_c01051{letter-spacing:5.333333pt;}
.ls0_c01051{letter-spacing:6.933333pt;}
.ls4_c01051{letter-spacing:7.626667pt;}
.ls7_c01051{letter-spacing:8.000000pt;}
.ls3_c01051{letter-spacing:17.066667pt;}
.ws2_c01051{word-spacing:-36.946667pt;}
.ws4_c01051{word-spacing:-27.146667pt;}
.ws5_c01051{word-spacing:-24.432000pt;}
.ws1_c01051{word-spacing:-22.346667pt;}
.ws3_c01051{word-spacing:-20.746667pt;}
.ws7_c01051{word-spacing:-14.056000pt;}
.ws0_c01051{word-spacing:-13.386667pt;}
.ws8_c01051{word-spacing:0.000000pt;}
.ws6_c01051{word-spacing:148.160000pt;}
._19_c01051{margin-left:-19.808000pt;}
._18_c01051{margin-left:-11.682667pt;}
._11_c01051{margin-left:-10.666667pt;}
._16_c01051{margin-left:-8.749333pt;}
._14_c01051{margin-left:-7.712000pt;}
._10_c01051{margin-left:-6.400000pt;}
._13_c01051{margin-left:-5.122667pt;}
._c_c01051{margin-left:-3.976000pt;}
._8_c01051{margin-left:-2.688000pt;}
._d_c01051{margin-left:-1.736000pt;}
._b_c01051{width:0.992000pt;}
._6_c01051{width:2.128000pt;}
._7_c01051{width:3.024000pt;}
._a_c01051{width:4.280000pt;}
._f_c01051{width:5.333333pt;}
._9_c01051{width:6.272000pt;}
._0_c01051{width:7.200000pt;}
._e_c01051{width:8.722667pt;}
._5_c01051{width:9.813333pt;}
._12_c01051{width:11.032000pt;}
._3_c01051{width:12.480000pt;}
._2_c01051{width:14.506667pt;}
._1_c01051{width:16.053333pt;}
._4_c01051{width:17.280000pt;}
._15_c01051{width:19.216000pt;}
._1b_c01051{width:20.472000pt;}
._17_c01051{width:22.442667pt;}
._1f_c01051{width:27.381333pt;}
._1a_c01051{width:29.736000pt;}
._1c_c01051{width:88.837333pt;}
._1e_c01051{width:103.093333pt;}
._1d_c01051{width:168.448000pt;}
.fs6_c01051{font-size:42.666667pt;}
.fs2_c01051{font-size:45.333333pt;}
.fs4_c01051{font-size:48.000000pt;}
.fs0_c01051{font-size:53.333333pt;}
.fs1_c01051{font-size:56.000000pt;}
.fs5_c01051{font-size:66.666667pt;}
.fs3_c01051{font-size:93.333333pt;}
.y0_c01051{bottom:0.000000pt;}
.y52_c01051{bottom:2.760000pt;}
.y51_c01051{bottom:6.425219pt;}
.y50_c01051{bottom:48.280000pt;}
.y26_c01051{bottom:61.480000pt;}
.y4f_c01051{bottom:63.880000pt;}
.y25_c01051{bottom:78.013333pt;}
.y4e_c01051{bottom:79.613333pt;}
.y4d_c01051{bottom:96.413333pt;}
.y24_c01051{bottom:109.213333pt;}
.y4c_c01051{bottom:111.613333pt;}
.y23_c01051{bottom:126.413333pt;}
.y4b_c01051{bottom:126.946667pt;}
.y22_c01051{bottom:143.080000pt;}
.y4a_c01051{bottom:144.013333pt;}
.y21_c01051{bottom:158.813333pt;}
.y49_c01051{bottom:160.546667pt;}
.y20_c01051{bottom:174.413333pt;}
.y48_c01051{bottom:176.146667pt;}
.y1f_c01051{bottom:191.480000pt;}
.y47_c01051{bottom:192.680000pt;}
.y1e_c01051{bottom:206.813333pt;}
.y46_c01051{bottom:208.280000pt;}
.y1d_c01051{bottom:221.080000pt;}
.y45_c01051{bottom:224.813333pt;}
.y1c_c01051{bottom:238.013333pt;}
.y44_c01051{bottom:240.946667pt;}
.y1b_c01051{bottom:254.680000pt;}
.y43_c01051{bottom:256.813333pt;}
.y1a_c01051{bottom:270.946667pt;}
.y42_c01051{bottom:272.146667pt;}
.y19_c01051{bottom:286.546667pt;}
.y41_c01051{bottom:299.746667pt;}
.y18_c01051{bottom:302.413333pt;}
.y17_c01051{bottom:318.946667pt;}
.y40_c01051{bottom:319.880000pt;}
.y3f_c01051{bottom:336.413333pt;}
.y16_c01051{bottom:350.680000pt;}
.y3e_c01051{bottom:352.280000pt;}
.y3d_c01051{bottom:369.346667pt;}
.y3c_c01051{bottom:384.680000pt;}
.y15_c01051{bottom:397.613333pt;}
.y3b_c01051{bottom:400.280000pt;}
.y14_c01051{bottom:414.280000pt;}
.y3a_c01051{bottom:416.680000pt;}
.y13_c01051{bottom:429.880000pt;}
.y39_c01051{bottom:432.680000pt;}
.y12_c01051{bottom:446.413333pt;}
.y38_c01051{bottom:448.280000pt;}
.y11_c01051{bottom:462.413333pt;}
.y37_c01051{bottom:464.146667pt;}
.y10_c01051{bottom:478.813333pt;}
.y36_c01051{bottom:480.280000pt;}
.yf_c01051{bottom:493.880000pt;}
.y35_c01051{bottom:496.546667pt;}
.ye_c01051{bottom:510.013333pt;}
.y34_c01051{bottom:511.880000pt;}
.yd_c01051{bottom:525.613333pt;}
.y33_c01051{bottom:528.280000pt;}
.yc_c01051{bottom:541.613333pt;}
.y32_c01051{bottom:544.280000pt;}
.yb_c01051{bottom:557.746667pt;}
.y31_c01051{bottom:558.946667pt;}
.ya_c01051{bottom:573.613333pt;}
.y30_c01051{bottom:576.280000pt;}
.y9_c01051{bottom:589.880000pt;}
.y2f_c01051{bottom:593.080000pt;}
.y8_c01051{bottom:606.280000pt;}
.y2e_c01051{bottom:608.413333pt;}
.y7_c01051{bottom:622.280000pt;}
.y2d_c01051{bottom:623.213333pt;}
.y6_c01051{bottom:638.680000pt;}
.y2c_c01051{bottom:641.480000pt;}
.y5_c01051{bottom:654.413333pt;}
.y2b_c01051{bottom:657.080000pt;}
.y4_c01051{bottom:669.080000pt;}
.y2a_c01051{bottom:672.413333pt;}
.y3_c01051{bottom:686.813333pt;}
.y29_c01051{bottom:689.080000pt;}
.y2_c01051{bottom:702.946667pt;}
.y28_c01051{bottom:704.813333pt;}
.y1_c01051{bottom:718.813333pt;}
.y27_c01051{bottom:720.413333pt;}
.h9_c01051{height:11.733399pt;}
.ha_c01051{height:38.937500pt;}
.h7_c01051{height:50.304000pt;}
.h5_c01051{height:53.058594pt;}
.h2_c01051{height:55.893333pt;}
.h4_c01051{height:56.906667pt;}
.h3_c01051{height:58.688000pt;}
.h8_c01051{height:69.866667pt;}
.h6_c01051{height:97.813333pt;}
.h0_c01051{height:754.333333pt;}
.h1_c01051{height:754.666667pt;}
.w2_c01051{width:93.222667pt;}
.w1_c01051{width:515.333333pt;}
.w0_c01051{width:515.533333pt;}
.x0_c01051{left:0.000000pt;}
.x9_c01051{left:76.266667pt;}
.xf_c01051{left:77.200000pt;}
.x8_c01051{left:78.266667pt;}
.x2_c01051{left:79.600000pt;}
.x3_c01051{left:80.666667pt;}
.xd_c01051{left:90.266667pt;}
.x7_c01051{left:93.333333pt;}
.xa_c01051{left:95.200000pt;}
.x5_c01051{left:96.266667pt;}
.x10_c01051{left:101.200000pt;}
.x6_c01051{left:138.666667pt;}
.xe_c01051{left:149.466667pt;}
.x4_c01051{left:152.800000pt;}
.xc_c01051{left:155.200000pt;}
.xb_c01051{left:161.466667pt;}
.x1_c01051{left:182.400000pt;}
.x23_c01051{left:214.934896pt;}
.x11_c01051{left:287.466667pt;}
.x1e_c01051{left:288.400000pt;}
.x16_c01051{left:289.866667pt;}
.x14_c01051{left:291.333333pt;}
.x1b_c01051{left:292.800000pt;}
.x1f_c01051{left:302.133333pt;}
.x15_c01051{left:304.266667pt;}
.x1d_c01051{left:305.200000pt;}
.x13_c01051{left:306.266667pt;}
.x18_c01051{left:307.466667pt;}
.x19_c01051{left:342.000000pt;}
.x1c_c01051{left:347.200000pt;}
.x20_c01051{left:349.600000pt;}
.x1a_c01051{left:352.266667pt;}
.x17_c01051{left:353.466667pt;}
.x21_c01051{left:358.800000pt;}
.x12_c01051{left:361.466667pt;}
.x22_c01051{left:442.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_c01052 {
    display:none;
  }
  .loading-indicator_c01052.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01052 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01052 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01052" -> "#page-container .classname_c01052")
 */
.pf_c01052 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01052 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01052.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01052 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01052 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01052 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01052 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01052 {overflow:visible;}
  }
}
.c_c01052 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01052 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01052:after { /* webkit #35443 */
  content: '';
}
.t_c01052:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01052 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01052 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01052 { /* info for Javascript */
  display:none;
}
.l_c01052 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01052 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01052 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01052:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01052{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01052;src:url('chunks/assets/font_3b4f214ab701ab5a7be6d344.woff2')format("woff");}.ff1_c01052{font-family:ff1_c01052;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01052;src:url('chunks/assets/font_1deb813c3dd6b34222006cdf.woff2')format("woff");}.ff2_c01052{font-family:ff2_c01052;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01052;src:url('chunks/assets/font_269e46564e3a281ad1aa50e8.woff2')format("woff");}.ff3_c01052{font-family:ff3_c01052;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01052;src:url('chunks/assets/font_bbdf40059991f2f9e838efe3.woff2')format("woff");}.ff4_c01052{font-family:ff4_c01052;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01052;src:url('chunks/assets/font_d2d21de7e845c0882d8e9f6d.woff2')format("woff");}.ff5_c01052{font-family:ff5_c01052;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01052;src:url('chunks/assets/font_0e41976504857bb985600412.woff2')format("woff");}.ff6_c01052{font-family:ff6_c01052;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01052;src:url('chunks/assets/font_1bb8c59a5663eea83be6741a.woff2')format("woff");}.ff7_c01052{font-family:ff7_c01052;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c01052;src:url('chunks/assets/font_26dbc67dc638344b27328884.woff2')format("woff");}.ff8_c01052{font-family:ff8_c01052;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c01052;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff9_c01052{font-family:ff9_c01052;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01052{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c01052{vertical-align:-75.600000px;}
.v3_c01052{vertical-align:-74.400000px;}
.v2_c01052{vertical-align:-68.400000px;}
.v4_c01052{vertical-align:-67.200000px;}
.v0_c01052{vertical-align:0.000000px;}
.lsb_c01052{letter-spacing:0.000000px;}
.ls1_c01052{letter-spacing:0.450000px;}
.ls5_c01052{letter-spacing:0.660000px;}
.ls2_c01052{letter-spacing:1.200000px;}
.ls6_c01052{letter-spacing:1.860000px;}
.lsa_c01052{letter-spacing:3.000000px;}
.ls7_c01052{letter-spacing:4.800000px;}
.lsc_c01052{letter-spacing:6.000000px;}
.ls8_c01052{letter-spacing:7.200000px;}
.lsd_c01052{letter-spacing:9.000000px;}
.ls9_c01052{letter-spacing:21.060000px;}
.ls3_c01052{letter-spacing:24.000000px;}
.ls0_c01052{letter-spacing:42.987000px;}
.ls4_c01052{letter-spacing:148.680000px;}
.sc__c01052{text-shadow:none;}
.sc0_c01052{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01052{-webkit-text-stroke:0px transparent;}
.sc0_c01052{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c01052{word-spacing:-30.303000px;}
.ws9_c01052{word-spacing:-28.860000px;}
.ws7_c01052{word-spacing:-25.074000px;}
.ws3_c01052{word-spacing:-23.340000px;}
.ws2_c01052{word-spacing:-15.060000px;}
.ws6_c01052{word-spacing:-14.340000px;}
.ws4_c01052{word-spacing:-14.160000px;}
.ws8_c01052{word-spacing:-12.744000px;}
.wsa_c01052{word-spacing:-1.860000px;}
.wsb_c01052{word-spacing:-1.020000px;}
.wsc_c01052{word-spacing:0.000000px;}
.ws0_c01052{word-spacing:3.924000px;}
.ws1_c01052{word-spacing:4.384800px;}
._17_c01052{margin-left:-19.932000px;}
._23_c01052{margin-left:-16.260000px;}
._12_c01052{margin-left:-15.120000px;}
._10_c01052{margin-left:-12.840000px;}
._22_c01052{margin-left:-10.800000px;}
._24_c01052{margin-left:-9.720000px;}
._16_c01052{margin-left:-8.460000px;}
._f_c01052{margin-left:-6.600000px;}
._e_c01052{margin-left:-4.740000px;}
._7_c01052{margin-left:-3.540000px;}
._9_c01052{margin-left:-2.100000px;}
._14_c01052{margin-left:-1.020000px;}
._6_c01052{width:1.680000px;}
._5_c01052{width:2.700000px;}
._8_c01052{width:3.900000px;}
._a_c01052{width:5.760000px;}
._c_c01052{width:7.080000px;}
._13_c01052{width:9.060000px;}
._d_c01052{width:10.500000px;}
._15_c01052{width:12.420000px;}
._11_c01052{width:14.642400px;}
._b_c01052{width:16.440000px;}
._4_c01052{width:18.093600px;}
._2_c01052{width:20.109600px;}
._3_c01052{width:22.125600px;}
._1a_c01052{width:23.126400px;}
._0_c01052{width:24.645600px;}
._1_c01052{width:26.359200px;}
._1b_c01052{width:28.140000px;}
._18_c01052{width:29.700000px;}
._1c_c01052{width:35.160000px;}
._19_c01052{width:36.780000px;}
._1f_c01052{width:51.900000px;}
._25_c01052{width:55.260000px;}
._20_c01052{width:72.600000px;}
._1d_c01052{width:103.440000px;}
._21_c01052{width:145.740000px;}
._26_c01052{width:546.660000px;}
._1e_c01052{width:611.808000px;}
.fc2_c01052{color:transparent;}
.fc1_c01052{color:rgb(128,128,128);}
.fc0_c01052{color:rgb(0,0,0);}
.fs6_c01052{font-size:24.000000px;}
.fs7_c01052{font-size:48.000000px;}
.fs0_c01052{font-size:50.400000px;}
.fs4_c01052{font-size:54.000000px;}
.fs2_c01052{font-size:60.000000px;}
.fs1_c01052{font-size:63.000000px;}
.fs3_c01052{font-size:66.000000px;}
.fs5_c01052{font-size:72.000000px;}
.y0_c01052{bottom:0.000000px;}
.y4f_c01052{bottom:3.105000px;}
.y4e_c01052{bottom:7.228357px;}
.y25_c01052{bottom:45.630000px;}
.y4d_c01052{bottom:46.530000px;}
.y24_c01052{bottom:65.430000px;}
.y4c_c01052{bottom:65.580000px;}
.y23_c01052{bottom:82.980000px;}
.y4b_c01052{bottom:84.480000px;}
.y22_c01052{bottom:101.280000px;}
.y4a_c01052{bottom:102.030000px;}
.y21_c01052{bottom:119.880000px;}
.y49_c01052{bottom:120.780000px;}
.y20_c01052{bottom:138.030000px;}
.y48_c01052{bottom:139.380000px;}
.y1f_c01052{bottom:156.030000px;}
.y47_c01052{bottom:157.680000px;}
.y1e_c01052{bottom:174.780000px;}
.y46_c01052{bottom:175.530000px;}
.y1d_c01052{bottom:192.480000px;}
.y45_c01052{bottom:193.830000px;}
.y1c_c01052{bottom:210.630000px;}
.y44_c01052{bottom:212.730000px;}
.y1b_c01052{bottom:227.880000px;}
.y43_c01052{bottom:230.130000px;}
.y1a_c01052{bottom:246.030000px;}
.y42_c01052{bottom:247.830000px;}
.y19_c01052{bottom:264.930000px;}
.y41_c01052{bottom:266.280000px;}
.y18_c01052{bottom:282.180000px;}
.y40_c01052{bottom:284.280000px;}
.y17_c01052{bottom:299.130000px;}
.y3f_c01052{bottom:302.430000px;}
.y16_c01052{bottom:317.880000px;}
.y3e_c01052{bottom:320.580000px;}
.y15_c01052{bottom:337.530000px;}
.y3d_c01052{bottom:339.630000px;}
.y14_c01052{bottom:354.030000px;}
.y3c_c01052{bottom:357.180000px;}
.y13_c01052{bottom:372.330000px;}
.y3b_c01052{bottom:375.030000px;}
.y3a_c01052{bottom:392.880000px;}
.y12_c01052{bottom:409.380000px;}
.y39_c01052{bottom:410.730000px;}
.y11_c01052{bottom:426.330000px;}
.y38_c01052{bottom:428.280000px;}
.y10_c01052{bottom:445.830000px;}
.yf_c01052{bottom:462.780000px;}
.y37_c01052{bottom:464.730000px;}
.ye_c01052{bottom:480.330000px;}
.y36_c01052{bottom:482.580000px;}
.y35_c01052{bottom:500.580000px;}
.yd_c01052{bottom:516.030000px;}
.y34_c01052{bottom:518.430000px;}
.yc_c01052{bottom:533.580000px;}
.y33_c01052{bottom:535.380000px;}
.yb_c01052{bottom:551.880000px;}
.y32_c01052{bottom:553.830000px;}
.y31_c01052{bottom:589.230000px;}
.ya_c01052{bottom:589.680000px;}
.y9_c01052{bottom:606.180000px;}
.y30_c01052{bottom:607.830000px;}
.y8_c01052{bottom:624.330000px;}
.y2f_c01052{bottom:625.830000px;}
.y2e_c01052{bottom:644.580000px;}
.y2d_c01052{bottom:662.130000px;}
.y7_c01052{bottom:678.780000px;}
.y2c_c01052{bottom:680.430000px;}
.y6_c01052{bottom:697.680000px;}
.y2b_c01052{bottom:698.730000px;}
.y5_c01052{bottom:716.130000px;}
.y2a_c01052{bottom:717.180000px;}
.y4_c01052{bottom:732.480000px;}
.y29_c01052{bottom:736.530000px;}
.y3_c01052{bottom:752.730000px;}
.y28_c01052{bottom:755.280000px;}
.y2_c01052{bottom:770.880000px;}
.y27_c01052{bottom:771.930000px;}
.y1_c01052{bottom:789.780000px;}
.y26_c01052{bottom:791.430000px;}
.ha_c01052{height:13.200074px;}
.hb_c01052{height:43.804688px;}
.h8_c01052{height:56.592000px;}
.h3_c01052{height:62.880000px;}
.h4_c01052{height:64.020000px;}
.h2_c01052{height:66.024000px;}
.h5_c01052{height:67.221000px;}
.h6_c01052{height:69.168000px;}
.h7_c01052{height:70.422000px;}
.h9_c01052{height:70.664062px;}
.h0_c01052{height:822.450000px;}
.h1_c01052{height:822.750000px;}
.w2_c01052{width:104.875500px;}
.w0_c01052{width:571.350000px;}
.w1_c01052{width:571.500000px;}
.x0_c01052{left:0.000000px;}
.xa_c01052{left:34.800000px;}
.x6_c01052{left:37.800000px;}
.x2_c01052{left:39.900000px;}
.x8_c01052{left:46.350000px;}
.x9_c01052{left:55.050000px;}
.x3_c01052{left:57.150000px;}
.x5_c01052{left:58.500000px;}
.xc_c01052{left:67.950000px;}
.x7_c01052{left:110.100000px;}
.x4_c01052{left:111.750000px;}
.xb_c01052{left:116.550000px;}
.x1_c01052{left:123.150000px;}
.x1d_c01052{left:237.489258px;}
.xe_c01052{left:275.700000px;}
.x11_c01052{left:277.650000px;}
.xd_c01052{left:278.850000px;}
.x15_c01052{left:279.900000px;}
.x19_c01052{left:281.250000px;}
.x1a_c01052{left:282.450000px;}
.x1c_c01052{left:283.800000px;}
.x14_c01052{left:292.950000px;}
.x10_c01052{left:294.750000px;}
.x17_c01052{left:297.450000px;}
.x18_c01052{left:299.400000px;}
.x1b_c01052{left:301.500000px;}
.xf_c01052{left:349.950000px;}
.x16_c01052{left:354.150000px;}
.x13_c01052{left:355.500000px;}
.x12_c01052{left:360.900000px;}
@media print{
.v1_c01052{vertical-align:-67.200000pt;}
.v3_c01052{vertical-align:-66.133333pt;}
.v2_c01052{vertical-align:-60.800000pt;}
.v4_c01052{vertical-align:-59.733333pt;}
.v0_c01052{vertical-align:0.000000pt;}
.lsb_c01052{letter-spacing:0.000000pt;}
.ls1_c01052{letter-spacing:0.400000pt;}
.ls5_c01052{letter-spacing:0.586667pt;}
.ls2_c01052{letter-spacing:1.066667pt;}
.ls6_c01052{letter-spacing:1.653333pt;}
.lsa_c01052{letter-spacing:2.666667pt;}
.ls7_c01052{letter-spacing:4.266667pt;}
.lsc_c01052{letter-spacing:5.333333pt;}
.ls8_c01052{letter-spacing:6.400000pt;}
.lsd_c01052{letter-spacing:8.000000pt;}
.ls9_c01052{letter-spacing:18.720000pt;}
.ls3_c01052{letter-spacing:21.333333pt;}
.ls0_c01052{letter-spacing:38.210667pt;}
.ls4_c01052{letter-spacing:132.160000pt;}
.ws5_c01052{word-spacing:-26.936000pt;}
.ws9_c01052{word-spacing:-25.653333pt;}
.ws7_c01052{word-spacing:-22.288000pt;}
.ws3_c01052{word-spacing:-20.746667pt;}
.ws2_c01052{word-spacing:-13.386667pt;}
.ws6_c01052{word-spacing:-12.746667pt;}
.ws4_c01052{word-spacing:-12.586667pt;}
.ws8_c01052{word-spacing:-11.328000pt;}
.wsa_c01052{word-spacing:-1.653333pt;}
.wsb_c01052{word-spacing:-0.906667pt;}
.wsc_c01052{word-spacing:0.000000pt;}
.ws0_c01052{word-spacing:3.488000pt;}
.ws1_c01052{word-spacing:3.897600pt;}
._17_c01052{margin-left:-17.717333pt;}
._23_c01052{margin-left:-14.453333pt;}
._12_c01052{margin-left:-13.440000pt;}
._10_c01052{margin-left:-11.413333pt;}
._22_c01052{margin-left:-9.600000pt;}
._24_c01052{margin-left:-8.640000pt;}
._16_c01052{margin-left:-7.520000pt;}
._f_c01052{margin-left:-5.866667pt;}
._e_c01052{margin-left:-4.213333pt;}
._7_c01052{margin-left:-3.146667pt;}
._9_c01052{margin-left:-1.866667pt;}
._14_c01052{margin-left:-0.906667pt;}
._6_c01052{width:1.493333pt;}
._5_c01052{width:2.400000pt;}
._8_c01052{width:3.466667pt;}
._a_c01052{width:5.120000pt;}
._c_c01052{width:6.293333pt;}
._13_c01052{width:8.053333pt;}
._d_c01052{width:9.333333pt;}
._15_c01052{width:11.040000pt;}
._11_c01052{width:13.015467pt;}
._b_c01052{width:14.613333pt;}
._4_c01052{width:16.083200pt;}
._2_c01052{width:17.875200pt;}
._3_c01052{width:19.667200pt;}
._1a_c01052{width:20.556800pt;}
._0_c01052{width:21.907200pt;}
._1_c01052{width:23.430400pt;}
._1b_c01052{width:25.013333pt;}
._18_c01052{width:26.400000pt;}
._1c_c01052{width:31.253333pt;}
._19_c01052{width:32.693333pt;}
._1f_c01052{width:46.133333pt;}
._25_c01052{width:49.120000pt;}
._20_c01052{width:64.533333pt;}
._1d_c01052{width:91.946667pt;}
._21_c01052{width:129.546667pt;}
._26_c01052{width:485.920000pt;}
._1e_c01052{width:543.829333pt;}
.fs6_c01052{font-size:21.333333pt;}
.fs7_c01052{font-size:42.666667pt;}
.fs0_c01052{font-size:44.800000pt;}
.fs4_c01052{font-size:48.000000pt;}
.fs2_c01052{font-size:53.333333pt;}
.fs1_c01052{font-size:56.000000pt;}
.fs3_c01052{font-size:58.666667pt;}
.fs5_c01052{font-size:64.000000pt;}
.y0_c01052{bottom:0.000000pt;}
.y4f_c01052{bottom:2.760000pt;}
.y4e_c01052{bottom:6.425206pt;}
.y25_c01052{bottom:40.560000pt;}
.y4d_c01052{bottom:41.360000pt;}
.y24_c01052{bottom:58.160000pt;}
.y4c_c01052{bottom:58.293333pt;}
.y23_c01052{bottom:73.760000pt;}
.y4b_c01052{bottom:75.093333pt;}
.y22_c01052{bottom:90.026667pt;}
.y4a_c01052{bottom:90.693333pt;}
.y21_c01052{bottom:106.560000pt;}
.y49_c01052{bottom:107.360000pt;}
.y20_c01052{bottom:122.693333pt;}
.y48_c01052{bottom:123.893333pt;}
.y1f_c01052{bottom:138.693333pt;}
.y47_c01052{bottom:140.160000pt;}
.y1e_c01052{bottom:155.360000pt;}
.y46_c01052{bottom:156.026667pt;}
.y1d_c01052{bottom:171.093333pt;}
.y45_c01052{bottom:172.293333pt;}
.y1c_c01052{bottom:187.226667pt;}
.y44_c01052{bottom:189.093333pt;}
.y1b_c01052{bottom:202.560000pt;}
.y43_c01052{bottom:204.560000pt;}
.y1a_c01052{bottom:218.693333pt;}
.y42_c01052{bottom:220.293333pt;}
.y19_c01052{bottom:235.493333pt;}
.y41_c01052{bottom:236.693333pt;}
.y18_c01052{bottom:250.826667pt;}
.y40_c01052{bottom:252.693333pt;}
.y17_c01052{bottom:265.893333pt;}
.y3f_c01052{bottom:268.826667pt;}
.y16_c01052{bottom:282.560000pt;}
.y3e_c01052{bottom:284.960000pt;}
.y15_c01052{bottom:300.026667pt;}
.y3d_c01052{bottom:301.893333pt;}
.y14_c01052{bottom:314.693333pt;}
.y3c_c01052{bottom:317.493333pt;}
.y13_c01052{bottom:330.960000pt;}
.y3b_c01052{bottom:333.360000pt;}
.y3a_c01052{bottom:349.226667pt;}
.y12_c01052{bottom:363.893333pt;}
.y39_c01052{bottom:365.093333pt;}
.y11_c01052{bottom:378.960000pt;}
.y38_c01052{bottom:380.693333pt;}
.y10_c01052{bottom:396.293333pt;}
.yf_c01052{bottom:411.360000pt;}
.y37_c01052{bottom:413.093333pt;}
.ye_c01052{bottom:426.960000pt;}
.y36_c01052{bottom:428.960000pt;}
.y35_c01052{bottom:444.960000pt;}
.yd_c01052{bottom:458.693333pt;}
.y34_c01052{bottom:460.826667pt;}
.yc_c01052{bottom:474.293333pt;}
.y33_c01052{bottom:475.893333pt;}
.yb_c01052{bottom:490.560000pt;}
.y32_c01052{bottom:492.293333pt;}
.y31_c01052{bottom:523.760000pt;}
.ya_c01052{bottom:524.160000pt;}
.y9_c01052{bottom:538.826667pt;}
.y30_c01052{bottom:540.293333pt;}
.y8_c01052{bottom:554.960000pt;}
.y2f_c01052{bottom:556.293333pt;}
.y2e_c01052{bottom:572.960000pt;}
.y2d_c01052{bottom:588.560000pt;}
.y7_c01052{bottom:603.360000pt;}
.y2c_c01052{bottom:604.826667pt;}
.y6_c01052{bottom:620.160000pt;}
.y2b_c01052{bottom:621.093333pt;}
.y5_c01052{bottom:636.560000pt;}
.y2a_c01052{bottom:637.493333pt;}
.y4_c01052{bottom:651.093333pt;}
.y29_c01052{bottom:654.693333pt;}
.y3_c01052{bottom:669.093333pt;}
.y28_c01052{bottom:671.360000pt;}
.y2_c01052{bottom:685.226667pt;}
.y27_c01052{bottom:686.160000pt;}
.y1_c01052{bottom:702.026667pt;}
.y26_c01052{bottom:703.493333pt;}
.ha_c01052{height:11.733399pt;}
.hb_c01052{height:38.937500pt;}
.h8_c01052{height:50.304000pt;}
.h3_c01052{height:55.893333pt;}
.h4_c01052{height:56.906667pt;}
.h2_c01052{height:58.688000pt;}
.h5_c01052{height:59.752000pt;}
.h6_c01052{height:61.482667pt;}
.h7_c01052{height:62.597333pt;}
.h9_c01052{height:62.812500pt;}
.h0_c01052{height:731.066667pt;}
.h1_c01052{height:731.333333pt;}
.w2_c01052{width:93.222667pt;}
.w0_c01052{width:507.866667pt;}
.w1_c01052{width:508.000000pt;}
.x0_c01052{left:0.000000pt;}
.xa_c01052{left:30.933333pt;}
.x6_c01052{left:33.600000pt;}
.x2_c01052{left:35.466667pt;}
.x8_c01052{left:41.200000pt;}
.x9_c01052{left:48.933333pt;}
.x3_c01052{left:50.800000pt;}
.x5_c01052{left:52.000000pt;}
.xc_c01052{left:60.400000pt;}
.x7_c01052{left:97.866667pt;}
.x4_c01052{left:99.333333pt;}
.xb_c01052{left:103.600000pt;}
.x1_c01052{left:109.466667pt;}
.x1d_c01052{left:211.101563pt;}
.xe_c01052{left:245.066667pt;}
.x11_c01052{left:246.800000pt;}
.xd_c01052{left:247.866667pt;}
.x15_c01052{left:248.800000pt;}
.x19_c01052{left:250.000000pt;}
.x1a_c01052{left:251.066667pt;}
.x1c_c01052{left:252.266667pt;}
.x14_c01052{left:260.400000pt;}
.x10_c01052{left:262.000000pt;}
.x17_c01052{left:264.400000pt;}
.x18_c01052{left:266.133333pt;}
.x1b_c01052{left:268.000000pt;}
.xf_c01052{left:311.066667pt;}
.x16_c01052{left:314.800000pt;}
.x13_c01052{left:316.000000pt;}
.x12_c01052{left:320.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_c01053 {
    display:none;
  }
  .loading-indicator_c01053.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01053 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01053 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01053" -> "#page-container .classname_c01053")
 */
.pf_c01053 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01053 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01053.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01053 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01053 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01053 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01053 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01053 {overflow:visible;}
  }
}
.c_c01053 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01053 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01053:after { /* webkit #35443 */
  content: '';
}
.t_c01053:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01053 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01053 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01053 { /* info for Javascript */
  display:none;
}
.l_c01053 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01053 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01053 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01053:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01053{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01053;src:url('chunks/assets/font_c6c9616511a17dc2619e7ab1.woff2')format("woff");}.ff1_c01053{font-family:ff1_c01053;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01053;src:url('chunks/assets/font_91534931fb5b9ac47afe8e57.woff2')format("woff");}.ff2_c01053{font-family:ff2_c01053;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01053;src:url('chunks/assets/font_99c758a0afa10b86af2ad06d.woff2')format("woff");}.ff3_c01053{font-family:ff3_c01053;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01053;src:url('chunks/assets/font_b4092481579ba049ad7124fc.woff2')format("woff");}.ff4_c01053{font-family:ff4_c01053;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01053;src:url('chunks/assets/font_a763548f95c7e1577220bb58.woff2')format("woff");}.ff5_c01053{font-family:ff5_c01053;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01053;src:url('chunks/assets/font_7c9909060f116bfb106c0ab1.woff2')format("woff");}.ff6_c01053{font-family:ff6_c01053;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01053;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff7_c01053{font-family:ff7_c01053;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01053{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c01053{vertical-align:-67.200000px;}
.v0_c01053{vertical-align:0.000000px;}
.ls7_c01053{letter-spacing:0.000000px;}
.lsb_c01053{letter-spacing:3.000000px;}
.ls6_c01053{letter-spacing:4.800000px;}
.ls9_c01053{letter-spacing:6.000000px;}
.ls8_c01053{letter-spacing:9.000000px;}
.ls1_c01053{letter-spacing:9.300000px;}
.ls0_c01053{letter-spacing:10.680000px;}
.ls4_c01053{letter-spacing:11.400000px;}
.ls5_c01053{letter-spacing:15.300000px;}
.lsa_c01053{letter-spacing:18.000000px;}
.ls2_c01053{letter-spacing:19.020000px;}
.ls3_c01053{letter-spacing:22.800000px;}
.sc__c01053{text-shadow:none;}
.sc0_c01053{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01053{-webkit-text-stroke:0px transparent;}
.sc0_c01053{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01053{word-spacing:-24.060000px;}
.ws3_c01053{word-spacing:-21.000000px;}
.ws6_c01053{word-spacing:-18.642000px;}
.ws2_c01053{word-spacing:-15.060000px;}
.ws5_c01053{word-spacing:-14.160000px;}
.ws1_c01053{word-spacing:-13.452000px;}
.ws7_c01053{word-spacing:0.000000px;}
.ws4_c01053{word-spacing:33.240000px;}
._2a_c01053{margin-left:-19.944000px;}
._20_c01053{margin-left:-15.708000px;}
._18_c01053{margin-left:-13.392000px;}
._19_c01053{margin-left:-11.940000px;}
._33_c01053{margin-left:-10.830000px;}
._7_c01053{margin-left:-9.360000px;}
._1d_c01053{margin-left:-8.190000px;}
._8_c01053{margin-left:-7.098000px;}
._1e_c01053{margin-left:-5.700000px;}
._0_c01053{margin-left:-4.560000px;}
._17_c01053{margin-left:-2.988000px;}
._13_c01053{margin-left:-1.932000px;}
._e_c01053{width:1.740000px;}
._11_c01053{width:2.928000px;}
._a_c01053{width:4.176000px;}
._b_c01053{width:5.220000px;}
._6_c01053{width:6.864000px;}
._2_c01053{width:8.100000px;}
._f_c01053{width:9.660000px;}
._c_c01053{width:10.956000px;}
._12_c01053{width:11.976000px;}
._9_c01053{width:13.752000px;}
._5_c01053{width:16.740000px;}
._3_c01053{width:18.060000px;}
._10_c01053{width:19.776000px;}
._26_c01053{width:20.988000px;}
._d_c01053{width:22.212000px;}
._24_c01053{width:23.256000px;}
._2d_c01053{width:24.696000px;}
._16_c01053{width:26.328000px;}
._14_c01053{width:27.852000px;}
._1a_c01053{width:32.640000px;}
._27_c01053{width:34.914000px;}
._32_c01053{width:36.540000px;}
._1_c01053{width:38.940000px;}
._1c_c01053{width:40.560000px;}
._29_c01053{width:43.278000px;}
._4_c01053{width:44.580000px;}
._1f_c01053{width:48.540000px;}
._2c_c01053{width:57.900000px;}
._25_c01053{width:59.097000px;}
._15_c01053{width:73.212000px;}
._1b_c01053{width:90.492000px;}
._23_c01053{width:92.220000px;}
._21_c01053{width:94.668000px;}
._2f_c01053{width:98.124000px;}
._31_c01053{width:118.926000px;}
._22_c01053{width:158.988000px;}
._2e_c01053{width:171.576000px;}
._2b_c01053{width:280.740000px;}
._30_c01053{width:330.600000px;}
._28_c01053{width:337.620000px;}
.fc2_c01053{color:transparent;}
.fc1_c01053{color:rgb(128,128,128);}
.fc0_c01053{color:rgb(0,0,0);}
.fs7_c01053{font-size:39.000000px;}
.fs1_c01053{font-size:48.000000px;}
.fs3_c01053{font-size:57.000000px;}
.fs0_c01053{font-size:60.000000px;}
.fs5_c01053{font-size:63.000000px;}
.fs4_c01053{font-size:75.000000px;}
.fs2_c01053{font-size:78.000000px;}
.fs6_c01053{font-size:150.000000px;}
.y0_c01053{bottom:0.000000px;}
.y50_c01053{bottom:3.105000px;}
.y4f_c01053{bottom:7.228371px;}
.y4e_c01053{bottom:43.515000px;}
.y28_c01053{bottom:56.415000px;}
.y4d_c01053{bottom:59.715000px;}
.y27_c01053{bottom:74.565000px;}
.y4c_c01053{bottom:79.365000px;}
.y26_c01053{bottom:92.115000px;}
.y4b_c01053{bottom:96.315000px;}
.y25_c01053{bottom:111.465000px;}
.y4a_c01053{bottom:115.065000px;}
.y49_c01053{bottom:127.215000px;}
.y24_c01053{bottom:130.065000px;}
.y48_c01053{bottom:150.165000px;}
.y23_c01053{bottom:166.065000px;}
.y47_c01053{bottom:170.415000px;}
.y22_c01053{bottom:185.715000px;}
.y21_c01053{bottom:200.865000px;}
.y46_c01053{bottom:203.865000px;}
.y20_c01053{bottom:220.815000px;}
.y45_c01053{bottom:223.815000px;}
.y44_c01053{bottom:238.065000px;}
.y1f_c01053{bottom:239.265000px;}
.y43_c01053{bottom:259.965000px;}
.y1e_c01053{bottom:274.515000px;}
.y42_c01053{bottom:278.115000px;}
.y1d_c01053{bottom:292.665000px;}
.y41_c01053{bottom:295.965000px;}
.y1c_c01053{bottom:310.965000px;}
.y40_c01053{bottom:313.215000px;}
.y1b_c01053{bottom:329.115000px;}
.y3f_c01053{bottom:331.815000px;}
.y1a_c01053{bottom:346.815000px;}
.y3e_c01053{bottom:350.115000px;}
.y19_c01053{bottom:364.965000px;}
.y3d_c01053{bottom:368.115000px;}
.y18_c01053{bottom:383.115000px;}
.y3c_c01053{bottom:386.565000px;}
.y17_c01053{bottom:400.965000px;}
.y3b_c01053{bottom:405.015000px;}
.y16_c01053{bottom:419.265000px;}
.y15_c01053{bottom:436.365000px;}
.y3a_c01053{bottom:440.415000px;}
.y14_c01053{bottom:455.715000px;}
.y39_c01053{bottom:459.315000px;}
.y13_c01053{bottom:474.315000px;}
.y38_c01053{bottom:478.665000px;}
.y12_c01053{bottom:491.865000px;}
.y37_c01053{bottom:495.165000px;}
.y11_c01053{bottom:510.315000px;}
.y36_c01053{bottom:512.715000px;}
.y10_c01053{bottom:528.615000px;}
.y35_c01053{bottom:531.915000px;}
.yf_c01053{bottom:546.165000px;}
.y34_c01053{bottom:549.915000px;}
.ye_c01053{bottom:563.265000px;}
.y33_c01053{bottom:568.065000px;}
.yd_c01053{bottom:582.315000px;}
.y32_c01053{bottom:585.915000px;}
.yc_c01053{bottom:600.465000px;}
.y31_c01053{bottom:603.915000px;}
.yb_c01053{bottom:618.615000px;}
.y30_c01053{bottom:623.415000px;}
.ya_c01053{bottom:637.515000px;}
.y2f_c01053{bottom:640.215000px;}
.y9_c01053{bottom:655.065000px;}
.y2e_c01053{bottom:658.215000px;}
.y8_c01053{bottom:673.065000px;}
.y2d_c01053{bottom:676.815000px;}
.y7_c01053{bottom:691.665000px;}
.y2c_c01053{bottom:694.665000px;}
.y6_c01053{bottom:710.115000px;}
.y5_c01053{bottom:728.415000px;}
.y2b_c01053{bottom:730.665000px;}
.y4_c01053{bottom:746.565000px;}
.y3_c01053{bottom:764.115000px;}
.y2_c01053{bottom:783.015000px;}
.y2a_c01053{bottom:784.365000px;}
.y1_c01053{bottom:799.965000px;}
.y29_c01053{bottom:802.665000px;}
.h9_c01053{height:13.200074px;}
.ha_c01053{height:43.804688px;}
.h4_c01053{height:59.736000px;}
.h2_c01053{height:62.880000px;}
.h5_c01053{height:64.020000px;}
.h7_c01053{height:66.024000px;}
.h6_c01053{height:80.025000px;}
.h3_c01053{height:81.744000px;}
.h8_c01053{height:157.200000px;}
.h0_c01053{height:839.175000px;}
.h1_c01053{height:839.250000px;}
.w2_c01053{width:104.875500px;}
.w0_c01053{width:573.450000px;}
.w1_c01053{width:573.750000px;}
.x0_c01053{left:0.000000px;}
.xe_c01053{left:63.750000px;}
.xc_c01053{left:65.100000px;}
.xb_c01053{left:66.600000px;}
.x5_c01053{left:67.800000px;}
.xa_c01053{left:68.850000px;}
.x3_c01053{left:69.900000px;}
.x9_c01053{left:70.950000px;}
.x6_c01053{left:80.400000px;}
.x2_c01053{left:83.100000px;}
.x7_c01053{left:84.450000px;}
.x4_c01053{left:85.500000px;}
.xd_c01053{left:89.100000px;}
.x8_c01053{left:148.500000px;}
.x1_c01053{left:159.300000px;}
.x1f_c01053{left:238.539230px;}
.xf_c01053{left:303.750000px;}
.x13_c01053{left:305.100000px;}
.x14_c01053{left:306.750000px;}
.x1a_c01053{left:308.100000px;}
.x1c_c01053{left:309.750000px;}
.x15_c01053{left:319.950000px;}
.x12_c01053{left:321.600000px;}
.x17_c01053{left:323.550000px;}
.x19_c01053{left:325.350000px;}
.x1d_c01053{left:326.700000px;}
.x16_c01053{left:364.050000px;}
.x11_c01053{left:372.000000px;}
.x1b_c01053{left:385.350000px;}
.x18_c01053{left:387.450000px;}
.x10_c01053{left:393.900000px;}
.x1e_c01053{left:496.350000px;}
@media print{
.v1_c01053{vertical-align:-59.733333pt;}
.v0_c01053{vertical-align:0.000000pt;}
.ls7_c01053{letter-spacing:0.000000pt;}
.lsb_c01053{letter-spacing:2.666667pt;}
.ls6_c01053{letter-spacing:4.266667pt;}
.ls9_c01053{letter-spacing:5.333333pt;}
.ls8_c01053{letter-spacing:8.000000pt;}
.ls1_c01053{letter-spacing:8.266667pt;}
.ls0_c01053{letter-spacing:9.493333pt;}
.ls4_c01053{letter-spacing:10.133333pt;}
.ls5_c01053{letter-spacing:13.600000pt;}
.lsa_c01053{letter-spacing:16.000000pt;}
.ls2_c01053{letter-spacing:16.906667pt;}
.ls3_c01053{letter-spacing:20.266667pt;}
.ws0_c01053{word-spacing:-21.386667pt;}
.ws3_c01053{word-spacing:-18.666667pt;}
.ws6_c01053{word-spacing:-16.570667pt;}
.ws2_c01053{word-spacing:-13.386667pt;}
.ws5_c01053{word-spacing:-12.586667pt;}
.ws1_c01053{word-spacing:-11.957333pt;}
.ws7_c01053{word-spacing:0.000000pt;}
.ws4_c01053{word-spacing:29.546667pt;}
._2a_c01053{margin-left:-17.728000pt;}
._20_c01053{margin-left:-13.962667pt;}
._18_c01053{margin-left:-11.904000pt;}
._19_c01053{margin-left:-10.613333pt;}
._33_c01053{margin-left:-9.626667pt;}
._7_c01053{margin-left:-8.320000pt;}
._1d_c01053{margin-left:-7.280000pt;}
._8_c01053{margin-left:-6.309333pt;}
._1e_c01053{margin-left:-5.066667pt;}
._0_c01053{margin-left:-4.053333pt;}
._17_c01053{margin-left:-2.656000pt;}
._13_c01053{margin-left:-1.717333pt;}
._e_c01053{width:1.546667pt;}
._11_c01053{width:2.602667pt;}
._a_c01053{width:3.712000pt;}
._b_c01053{width:4.640000pt;}
._6_c01053{width:6.101333pt;}
._2_c01053{width:7.200000pt;}
._f_c01053{width:8.586667pt;}
._c_c01053{width:9.738667pt;}
._12_c01053{width:10.645333pt;}
._9_c01053{width:12.224000pt;}
._5_c01053{width:14.880000pt;}
._3_c01053{width:16.053333pt;}
._10_c01053{width:17.578667pt;}
._26_c01053{width:18.656000pt;}
._d_c01053{width:19.744000pt;}
._24_c01053{width:20.672000pt;}
._2d_c01053{width:21.952000pt;}
._16_c01053{width:23.402667pt;}
._14_c01053{width:24.757333pt;}
._1a_c01053{width:29.013333pt;}
._27_c01053{width:31.034667pt;}
._32_c01053{width:32.480000pt;}
._1_c01053{width:34.613333pt;}
._1c_c01053{width:36.053333pt;}
._29_c01053{width:38.469333pt;}
._4_c01053{width:39.626667pt;}
._1f_c01053{width:43.146667pt;}
._2c_c01053{width:51.466667pt;}
._25_c01053{width:52.530667pt;}
._15_c01053{width:65.077333pt;}
._1b_c01053{width:80.437333pt;}
._23_c01053{width:81.973333pt;}
._21_c01053{width:84.149333pt;}
._2f_c01053{width:87.221333pt;}
._31_c01053{width:105.712000pt;}
._22_c01053{width:141.322667pt;}
._2e_c01053{width:152.512000pt;}
._2b_c01053{width:249.546667pt;}
._30_c01053{width:293.866667pt;}
._28_c01053{width:300.106667pt;}
.fs7_c01053{font-size:34.666667pt;}
.fs1_c01053{font-size:42.666667pt;}
.fs3_c01053{font-size:50.666667pt;}
.fs0_c01053{font-size:53.333333pt;}
.fs5_c01053{font-size:56.000000pt;}
.fs4_c01053{font-size:66.666667pt;}
.fs2_c01053{font-size:69.333333pt;}
.fs6_c01053{font-size:133.333333pt;}
.y0_c01053{bottom:0.000000pt;}
.y50_c01053{bottom:2.760000pt;}
.y4f_c01053{bottom:6.425219pt;}
.y4e_c01053{bottom:38.680000pt;}
.y28_c01053{bottom:50.146667pt;}
.y4d_c01053{bottom:53.080000pt;}
.y27_c01053{bottom:66.280000pt;}
.y4c_c01053{bottom:70.546667pt;}
.y26_c01053{bottom:81.880000pt;}
.y4b_c01053{bottom:85.613333pt;}
.y25_c01053{bottom:99.080000pt;}
.y4a_c01053{bottom:102.280000pt;}
.y49_c01053{bottom:113.080000pt;}
.y24_c01053{bottom:115.613333pt;}
.y48_c01053{bottom:133.480000pt;}
.y23_c01053{bottom:147.613333pt;}
.y47_c01053{bottom:151.480000pt;}
.y22_c01053{bottom:165.080000pt;}
.y21_c01053{bottom:178.546667pt;}
.y46_c01053{bottom:181.213333pt;}
.y20_c01053{bottom:196.280000pt;}
.y45_c01053{bottom:198.946667pt;}
.y44_c01053{bottom:211.613333pt;}
.y1f_c01053{bottom:212.680000pt;}
.y43_c01053{bottom:231.080000pt;}
.y1e_c01053{bottom:244.013333pt;}
.y42_c01053{bottom:247.213333pt;}
.y1d_c01053{bottom:260.146667pt;}
.y41_c01053{bottom:263.080000pt;}
.y1c_c01053{bottom:276.413333pt;}
.y40_c01053{bottom:278.413333pt;}
.y1b_c01053{bottom:292.546667pt;}
.y3f_c01053{bottom:294.946667pt;}
.y1a_c01053{bottom:308.280000pt;}
.y3e_c01053{bottom:311.213333pt;}
.y19_c01053{bottom:324.413333pt;}
.y3d_c01053{bottom:327.213333pt;}
.y18_c01053{bottom:340.546667pt;}
.y3c_c01053{bottom:343.613333pt;}
.y17_c01053{bottom:356.413333pt;}
.y3b_c01053{bottom:360.013333pt;}
.y16_c01053{bottom:372.680000pt;}
.y15_c01053{bottom:387.880000pt;}
.y3a_c01053{bottom:391.480000pt;}
.y14_c01053{bottom:405.080000pt;}
.y39_c01053{bottom:408.280000pt;}
.y13_c01053{bottom:421.613333pt;}
.y38_c01053{bottom:425.480000pt;}
.y12_c01053{bottom:437.213333pt;}
.y37_c01053{bottom:440.146667pt;}
.y11_c01053{bottom:453.613333pt;}
.y36_c01053{bottom:455.746667pt;}
.y10_c01053{bottom:469.880000pt;}
.y35_c01053{bottom:472.813333pt;}
.yf_c01053{bottom:485.480000pt;}
.y34_c01053{bottom:488.813333pt;}
.ye_c01053{bottom:500.680000pt;}
.y33_c01053{bottom:504.946667pt;}
.yd_c01053{bottom:517.613333pt;}
.y32_c01053{bottom:520.813333pt;}
.yc_c01053{bottom:533.746667pt;}
.y31_c01053{bottom:536.813333pt;}
.yb_c01053{bottom:549.880000pt;}
.y30_c01053{bottom:554.146667pt;}
.ya_c01053{bottom:566.680000pt;}
.y2f_c01053{bottom:569.080000pt;}
.y9_c01053{bottom:582.280000pt;}
.y2e_c01053{bottom:585.080000pt;}
.y8_c01053{bottom:598.280000pt;}
.y2d_c01053{bottom:601.613333pt;}
.y7_c01053{bottom:614.813333pt;}
.y2c_c01053{bottom:617.480000pt;}
.y6_c01053{bottom:631.213333pt;}
.y5_c01053{bottom:647.480000pt;}
.y2b_c01053{bottom:649.480000pt;}
.y4_c01053{bottom:663.613333pt;}
.y3_c01053{bottom:679.213333pt;}
.y2_c01053{bottom:696.013333pt;}
.y2a_c01053{bottom:697.213333pt;}
.y1_c01053{bottom:711.080000pt;}
.y29_c01053{bottom:713.480000pt;}
.h9_c01053{height:11.733399pt;}
.ha_c01053{height:38.937500pt;}
.h4_c01053{height:53.098667pt;}
.h2_c01053{height:55.893333pt;}
.h5_c01053{height:56.906667pt;}
.h7_c01053{height:58.688000pt;}
.h6_c01053{height:71.133333pt;}
.h3_c01053{height:72.661333pt;}
.h8_c01053{height:139.733333pt;}
.h0_c01053{height:745.933333pt;}
.h1_c01053{height:746.000000pt;}
.w2_c01053{width:93.222667pt;}
.w0_c01053{width:509.733333pt;}
.w1_c01053{width:510.000000pt;}
.x0_c01053{left:0.000000pt;}
.xe_c01053{left:56.666667pt;}
.xc_c01053{left:57.866667pt;}
.xb_c01053{left:59.200000pt;}
.x5_c01053{left:60.266667pt;}
.xa_c01053{left:61.200000pt;}
.x3_c01053{left:62.133333pt;}
.x9_c01053{left:63.066667pt;}
.x6_c01053{left:71.466667pt;}
.x2_c01053{left:73.866667pt;}
.x7_c01053{left:75.066667pt;}
.x4_c01053{left:76.000000pt;}
.xd_c01053{left:79.200000pt;}
.x8_c01053{left:132.000000pt;}
.x1_c01053{left:141.600000pt;}
.x1f_c01053{left:212.034871pt;}
.xf_c01053{left:270.000000pt;}
.x13_c01053{left:271.200000pt;}
.x14_c01053{left:272.666667pt;}
.x1a_c01053{left:273.866667pt;}
.x1c_c01053{left:275.333333pt;}
.x15_c01053{left:284.400000pt;}
.x12_c01053{left:285.866667pt;}
.x17_c01053{left:287.600000pt;}
.x19_c01053{left:289.200000pt;}
.x1d_c01053{left:290.400000pt;}
.x16_c01053{left:323.600000pt;}
.x11_c01053{left:330.666667pt;}
.x1b_c01053{left:342.533333pt;}
.x18_c01053{left:344.400000pt;}
.x10_c01053{left:350.133333pt;}
.x1e_c01053{left:441.200000pt;}
}





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

.ir_c01054:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01054{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01054;src:url('chunks/assets/font_c5eb20fb9733b0bbb0a6af6e.woff2')format("woff");}.ff1_c01054{font-family:ff1_c01054;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01054;src:url('chunks/assets/font_d758be43cd8a5c0f735de084.woff2')format("woff");}.ff2_c01054{font-family:ff2_c01054;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01054;src:url('chunks/assets/font_1ca218eb432839b79d0450a6.woff2')format("woff");}.ff3_c01054{font-family:ff3_c01054;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01054;src:url('chunks/assets/font_0bace431532b9de482226907.woff2')format("woff");}.ff4_c01054{font-family:ff4_c01054;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01054;src:url('chunks/assets/font_f09fd039adf9c24a1d6e7682.woff2')format("woff");}.ff5_c01054{font-family:ff5_c01054;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01054;src:url('chunks/assets/font_d6ec8b83e9ee01bdc6e7bd95.woff2')format("woff");}.ff6_c01054{font-family:ff6_c01054;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01054;src:url('chunks/assets/font_865d42190f964d8e8694ef44.woff2')format("woff");}.ff7_c01054{font-family:ff7_c01054;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c01054;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff8_c01054{font-family:ff8_c01054;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01054{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c01054{vertical-align:-73.200000px;}
.v5_c01054{vertical-align:-72.000000px;}
.v4_c01054{vertical-align:-66.600000px;}
.v3_c01054{vertical-align:-65.400000px;}
.v2_c01054{vertical-align:-60.000000px;}
.v0_c01054{vertical-align:0.000000px;}
.ls4_c01054{letter-spacing:0.000000px;}
.ls2_c01054{letter-spacing:2.880000px;}
.ls6_c01054{letter-spacing:3.000000px;}
.ls7_c01054{letter-spacing:6.000000px;}
.ls0_c01054{letter-spacing:8.982000px;}
.ls1_c01054{letter-spacing:9.000000px;}
.ls3_c01054{letter-spacing:10.320000px;}
.ls5_c01054{letter-spacing:18.000000px;}
.sc__c01054{text-shadow:none;}
.sc0_c01054{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01054{-webkit-text-stroke:0px transparent;}
.sc0_c01054{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9_c01054{word-spacing:-41.565000px;}
.wsb_c01054{word-spacing:-24.660000px;}
.ws7_c01054{word-spacing:-24.060000px;}
.ws2_c01054{word-spacing:-21.384000px;}
.wsc_c01054{word-spacing:-15.060000px;}
.wse_c01054{word-spacing:-15.057000px;}
.ws1_c01054{word-spacing:-14.160000px;}
.ws4_c01054{word-spacing:-13.452000px;}
.wsa_c01054{word-spacing:-12.744000px;}
.ws0_c01054{word-spacing:-12.048000px;}
.wsf_c01054{word-spacing:0.000000px;}
.ws8_c01054{word-spacing:1.512000px;}
.ws3_c01054{word-spacing:33.180000px;}
.ws5_c01054{word-spacing:57.660000px;}
.ws6_c01054{word-spacing:156.780000px;}
.wsd_c01054{word-spacing:547.380000px;}
._29_c01054{margin-left:-54.000000px;}
._2a_c01054{margin-left:-36.300000px;}
._1b_c01054{margin-left:-21.420000px;}
._e_c01054{margin-left:-19.020000px;}
._b_c01054{margin-left:-16.800000px;}
._19_c01054{margin-left:-12.240000px;}
._1d_c01054{margin-left:-9.690000px;}
._10_c01054{margin-left:-8.520000px;}
._14_c01054{margin-left:-7.290000px;}
._15_c01054{margin-left:-5.220000px;}
._d_c01054{margin-left:-3.300000px;}
._c_c01054{margin-left:-1.920000px;}
._a_c01054{width:1.800000px;}
._f_c01054{width:2.820000px;}
._9_c01054{width:4.080000px;}
._7_c01054{width:5.520000px;}
._6_c01054{width:7.440000px;}
._8_c01054{width:8.640000px;}
._5_c01054{width:9.840000px;}
._13_c01054{width:10.860000px;}
._2_c01054{width:12.120000px;}
._3_c01054{width:13.440000px;}
._1a_c01054{width:15.666000px;}
._0_c01054{width:17.460000px;}
._1_c01054{width:18.960000px;}
._1f_c01054{width:20.880000px;}
._12_c01054{width:22.080000px;}
._1e_c01054{width:23.940000px;}
._26_c01054{width:25.440000px;}
._28_c01054{width:26.550000px;}
._20_c01054{width:28.020000px;}
._21_c01054{width:29.400000px;}
._25_c01054{width:31.380000px;}
._4_c01054{width:35.820000px;}
._24_c01054{width:37.728000px;}
._18_c01054{width:44.880000px;}
._1c_c01054{width:46.140000px;}
._17_c01054{width:48.900000px;}
._23_c01054{width:54.063000px;}
._22_c01054{width:58.017000px;}
._2b_c01054{width:107.730000px;}
._27_c01054{width:275.940000px;}
._11_c01054{width:295.620000px;}
._16_c01054{width:311.532000px;}
.fc2_c01054{color:transparent;}
.fc1_c01054{color:rgb(128,128,128);}
.fc0_c01054{color:rgb(0,0,0);}
.fs5_c01054{font-size:43.200000px;}
.fs1_c01054{font-size:48.000000px;}
.fs3_c01054{font-size:51.000000px;}
.fs4_c01054{font-size:54.000000px;}
.fs6_c01054{font-size:57.000000px;}
.fs0_c01054{font-size:60.000000px;}
.fs7_c01054{font-size:63.000000px;}
.fs2_c01054{font-size:150.000000px;}
.y0_c01054{bottom:0.000000px;}
.y49_c01054{bottom:3.105000px;}
.y48_c01054{bottom:7.228357px;}
.y47_c01054{bottom:46.680000px;}
.y24_c01054{bottom:47.280000px;}
.y46_c01054{bottom:64.830000px;}
.y23_c01054{bottom:66.180000px;}
.y45_c01054{bottom:83.430000px;}
.y22_c01054{bottom:84.480000px;}
.y44_c01054{bottom:101.880000px;}
.y21_c01054{bottom:119.580000px;}
.y20_c01054{bottom:137.730000px;}
.y43_c01054{bottom:138.030000px;}
.y1f_c01054{bottom:156.330000px;}
.y1e_c01054{bottom:173.880000px;}
.y42_c01054{bottom:174.480000px;}
.y1d_c01054{bottom:192.330000px;}
.y1c_c01054{bottom:210.930000px;}
.y1b_c01054{bottom:229.530000px;}
.y41_c01054{bottom:245.730000px;}
.y1a_c01054{bottom:247.080000px;}
.y40_c01054{bottom:263.880000px;}
.y19_c01054{bottom:266.580000px;}
.y3f_c01054{bottom:281.880000px;}
.y18_c01054{bottom:283.530000px;}
.y3e_c01054{bottom:297.780000px;}
.y17_c01054{bottom:301.380000px;}
.y3d_c01054{bottom:318.630000px;}
.y16_c01054{bottom:319.380000px;}
.y3c_c01054{bottom:335.880000px;}
.y15_c01054{bottom:353.130000px;}
.y3b_c01054{bottom:354.330000px;}
.y3a_c01054{bottom:372.330000px;}
.y14_c01054{bottom:372.930000px;}
.y39_c01054{bottom:390.780000px;}
.y38_c01054{bottom:408.030000px;}
.y13_c01054{bottom:410.130000px;}
.y37_c01054{bottom:426.330000px;}
.y12_c01054{bottom:427.980000px;}
.y11_c01054{bottom:446.280000px;}
.y36_c01054{bottom:461.430000px;}
.y10_c01054{bottom:462.030000px;}
.y35_c01054{bottom:480.330000px;}
.yf_c01054{bottom:482.580000px;}
.y34_c01054{bottom:498.930000px;}
.ye_c01054{bottom:500.280000px;}
.y33_c01054{bottom:516.030000px;}
.yd_c01054{bottom:517.830000px;}
.y32_c01054{bottom:533.280000px;}
.yc_c01054{bottom:534.630000px;}
.y31_c01054{bottom:551.580000px;}
.yb_c01054{bottom:552.480000px;}
.y30_c01054{bottom:569.430000px;}
.ya_c01054{bottom:570.780000px;}
.y2f_c01054{bottom:586.980000px;}
.y9_c01054{bottom:588.330000px;}
.y2e_c01054{bottom:605.580000px;}
.y8_c01054{bottom:607.230000px;}
.y7_c01054{bottom:624.330000px;}
.y2d_c01054{bottom:641.580000px;}
.y6_c01054{bottom:643.230000px;}
.y2c_c01054{bottom:660.480000px;}
.y5_c01054{bottom:661.530000px;}
.y2b_c01054{bottom:675.780000px;}
.y2a_c01054{bottom:695.580000px;}
.y4_c01054{bottom:697.680000px;}
.y29_c01054{bottom:715.530000px;}
.y28_c01054{bottom:733.380000px;}
.y27_c01054{bottom:751.380000px;}
.y3_c01054{bottom:751.980000px;}
.y26_c01054{bottom:769.830000px;}
.y2_c01054{bottom:770.280000px;}
.y25_c01054{bottom:788.730000px;}
.y1_c01054{bottom:789.030000px;}
.h7_c01054{height:13.200074px;}
.h8_c01054{height:43.804688px;}
.h4_c01054{height:56.592000px;}
.h6_c01054{height:59.690918px;}
.h2_c01054{height:62.880000px;}
.h5_c01054{height:67.221000px;}
.h3_c01054{height:157.200000px;}
.h0_c01054{height:822.450000px;}
.h1_c01054{height:822.750000px;}
.w2_c01054{width:104.875500px;}
.w0_c01054{width:571.350000px;}
.w1_c01054{width:571.500000px;}
.x0_c01054{left:0.000000px;}
.x2_c01054{left:31.650000px;}
.x3_c01054{left:33.300000px;}
.xc_c01054{left:34.350000px;}
.xb_c01054{left:36.000000px;}
.x11_c01054{left:37.050000px;}
.x12_c01054{left:38.100000px;}
.x6_c01054{left:39.150000px;}
.xd_c01054{left:43.800000px;}
.x8_c01054{left:48.150000px;}
.xf_c01054{left:49.200000px;}
.xa_c01054{left:50.250000px;}
.xe_c01054{left:52.650000px;}
.x10_c01054{left:53.700000px;}
.x5_c01054{left:106.200000px;}
.x7_c01054{left:115.350000px;}
.x1_c01054{left:116.400000px;}
.x9_c01054{left:122.100000px;}
.x4_c01054{left:126.600000px;}
.x24_c01054{left:237.489258px;}
.x1b_c01054{left:264.600000px;}
.x1a_c01054{left:266.400000px;}
.x14_c01054{left:268.950000px;}
.x15_c01054{left:270.000000px;}
.x17_c01054{left:271.050000px;}
.x13_c01054{left:272.700000px;}
.x23_c01054{left:273.750000px;}
.x20_c01054{left:274.800000px;}
.x16_c01054{left:283.800000px;}
.x1d_c01054{left:286.200000px;}
.x1f_c01054{left:287.250000px;}
.x18_c01054{left:288.450000px;}
.x19_c01054{left:289.800000px;}
.x22_c01054{left:301.350000px;}
.x1e_c01054{left:350.400000px;}
.x1c_c01054{left:356.700000px;}
.x21_c01054{left:363.900000px;}
@media print{
.v1_c01054{vertical-align:-65.066667pt;}
.v5_c01054{vertical-align:-64.000000pt;}
.v4_c01054{vertical-align:-59.200000pt;}
.v3_c01054{vertical-align:-58.133333pt;}
.v2_c01054{vertical-align:-53.333333pt;}
.v0_c01054{vertical-align:0.000000pt;}
.ls4_c01054{letter-spacing:0.000000pt;}
.ls2_c01054{letter-spacing:2.560000pt;}
.ls6_c01054{letter-spacing:2.666667pt;}
.ls7_c01054{letter-spacing:5.333333pt;}
.ls0_c01054{letter-spacing:7.984000pt;}
.ls1_c01054{letter-spacing:8.000000pt;}
.ls3_c01054{letter-spacing:9.173333pt;}
.ls5_c01054{letter-spacing:16.000000pt;}
.ws9_c01054{word-spacing:-36.946667pt;}
.wsb_c01054{word-spacing:-21.920000pt;}
.ws7_c01054{word-spacing:-21.386667pt;}
.ws2_c01054{word-spacing:-19.008000pt;}
.wsc_c01054{word-spacing:-13.386667pt;}
.wse_c01054{word-spacing:-13.384000pt;}
.ws1_c01054{word-spacing:-12.586667pt;}
.ws4_c01054{word-spacing:-11.957333pt;}
.wsa_c01054{word-spacing:-11.328000pt;}
.ws0_c01054{word-spacing:-10.709333pt;}
.wsf_c01054{word-spacing:0.000000pt;}
.ws8_c01054{word-spacing:1.344000pt;}
.ws3_c01054{word-spacing:29.493333pt;}
.ws5_c01054{word-spacing:51.253333pt;}
.ws6_c01054{word-spacing:139.360000pt;}
.wsd_c01054{word-spacing:486.560000pt;}
._29_c01054{margin-left:-48.000000pt;}
._2a_c01054{margin-left:-32.266667pt;}
._1b_c01054{margin-left:-19.040000pt;}
._e_c01054{margin-left:-16.906667pt;}
._b_c01054{margin-left:-14.933333pt;}
._19_c01054{margin-left:-10.880000pt;}
._1d_c01054{margin-left:-8.613333pt;}
._10_c01054{margin-left:-7.573333pt;}
._14_c01054{margin-left:-6.480000pt;}
._15_c01054{margin-left:-4.640000pt;}
._d_c01054{margin-left:-2.933333pt;}
._c_c01054{margin-left:-1.706667pt;}
._a_c01054{width:1.600000pt;}
._f_c01054{width:2.506667pt;}
._9_c01054{width:3.626667pt;}
._7_c01054{width:4.906667pt;}
._6_c01054{width:6.613333pt;}
._8_c01054{width:7.680000pt;}
._5_c01054{width:8.746667pt;}
._13_c01054{width:9.653333pt;}
._2_c01054{width:10.773333pt;}
._3_c01054{width:11.946667pt;}
._1a_c01054{width:13.925333pt;}
._0_c01054{width:15.520000pt;}
._1_c01054{width:16.853333pt;}
._1f_c01054{width:18.560000pt;}
._12_c01054{width:19.626667pt;}
._1e_c01054{width:21.280000pt;}
._26_c01054{width:22.613333pt;}
._28_c01054{width:23.600000pt;}
._20_c01054{width:24.906667pt;}
._21_c01054{width:26.133333pt;}
._25_c01054{width:27.893333pt;}
._4_c01054{width:31.840000pt;}
._24_c01054{width:33.536000pt;}
._18_c01054{width:39.893333pt;}
._1c_c01054{width:41.013333pt;}
._17_c01054{width:43.466667pt;}
._23_c01054{width:48.056000pt;}
._22_c01054{width:51.570667pt;}
._2b_c01054{width:95.760000pt;}
._27_c01054{width:245.280000pt;}
._11_c01054{width:262.773333pt;}
._16_c01054{width:276.917333pt;}
.fs5_c01054{font-size:38.400000pt;}
.fs1_c01054{font-size:42.666667pt;}
.fs3_c01054{font-size:45.333333pt;}
.fs4_c01054{font-size:48.000000pt;}
.fs6_c01054{font-size:50.666667pt;}
.fs0_c01054{font-size:53.333333pt;}
.fs7_c01054{font-size:56.000000pt;}
.fs2_c01054{font-size:133.333333pt;}
.y0_c01054{bottom:0.000000pt;}
.y49_c01054{bottom:2.760000pt;}
.y48_c01054{bottom:6.425206pt;}
.y47_c01054{bottom:41.493333pt;}
.y24_c01054{bottom:42.026667pt;}
.y46_c01054{bottom:57.626667pt;}
.y23_c01054{bottom:58.826667pt;}
.y45_c01054{bottom:74.160000pt;}
.y22_c01054{bottom:75.093333pt;}
.y44_c01054{bottom:90.560000pt;}
.y21_c01054{bottom:106.293333pt;}
.y20_c01054{bottom:122.426667pt;}
.y43_c01054{bottom:122.693333pt;}
.y1f_c01054{bottom:138.960000pt;}
.y1e_c01054{bottom:154.560000pt;}
.y42_c01054{bottom:155.093333pt;}
.y1d_c01054{bottom:170.960000pt;}
.y1c_c01054{bottom:187.493333pt;}
.y1b_c01054{bottom:204.026667pt;}
.y41_c01054{bottom:218.426667pt;}
.y1a_c01054{bottom:219.626667pt;}
.y40_c01054{bottom:234.560000pt;}
.y19_c01054{bottom:236.960000pt;}
.y3f_c01054{bottom:250.560000pt;}
.y18_c01054{bottom:252.026667pt;}
.y3e_c01054{bottom:264.693333pt;}
.y17_c01054{bottom:267.893333pt;}
.y3d_c01054{bottom:283.226667pt;}
.y16_c01054{bottom:283.893333pt;}
.y3c_c01054{bottom:298.560000pt;}
.y15_c01054{bottom:313.893333pt;}
.y3b_c01054{bottom:314.960000pt;}
.y3a_c01054{bottom:330.960000pt;}
.y14_c01054{bottom:331.493333pt;}
.y39_c01054{bottom:347.360000pt;}
.y38_c01054{bottom:362.693333pt;}
.y13_c01054{bottom:364.560000pt;}
.y37_c01054{bottom:378.960000pt;}
.y12_c01054{bottom:380.426667pt;}
.y11_c01054{bottom:396.693333pt;}
.y36_c01054{bottom:410.160000pt;}
.y10_c01054{bottom:410.693333pt;}
.y35_c01054{bottom:426.960000pt;}
.yf_c01054{bottom:428.960000pt;}
.y34_c01054{bottom:443.493333pt;}
.ye_c01054{bottom:444.693333pt;}
.y33_c01054{bottom:458.693333pt;}
.yd_c01054{bottom:460.293333pt;}
.y32_c01054{bottom:474.026667pt;}
.yc_c01054{bottom:475.226667pt;}
.y31_c01054{bottom:490.293333pt;}
.yb_c01054{bottom:491.093333pt;}
.y30_c01054{bottom:506.160000pt;}
.ya_c01054{bottom:507.360000pt;}
.y2f_c01054{bottom:521.760000pt;}
.y9_c01054{bottom:522.960000pt;}
.y2e_c01054{bottom:538.293333pt;}
.y8_c01054{bottom:539.760000pt;}
.y7_c01054{bottom:554.960000pt;}
.y2d_c01054{bottom:570.293333pt;}
.y6_c01054{bottom:571.760000pt;}
.y2c_c01054{bottom:587.093333pt;}
.y5_c01054{bottom:588.026667pt;}
.y2b_c01054{bottom:600.693333pt;}
.y2a_c01054{bottom:618.293333pt;}
.y4_c01054{bottom:620.160000pt;}
.y29_c01054{bottom:636.026667pt;}
.y28_c01054{bottom:651.893333pt;}
.y27_c01054{bottom:667.893333pt;}
.y3_c01054{bottom:668.426667pt;}
.y26_c01054{bottom:684.293333pt;}
.y2_c01054{bottom:684.693333pt;}
.y25_c01054{bottom:701.093333pt;}
.y1_c01054{bottom:701.360000pt;}
.h7_c01054{height:11.733399pt;}
.h8_c01054{height:38.937500pt;}
.h4_c01054{height:50.304000pt;}
.h6_c01054{height:53.058594pt;}
.h2_c01054{height:55.893333pt;}
.h5_c01054{height:59.752000pt;}
.h3_c01054{height:139.733333pt;}
.h0_c01054{height:731.066667pt;}
.h1_c01054{height:731.333333pt;}
.w2_c01054{width:93.222667pt;}
.w0_c01054{width:507.866667pt;}
.w1_c01054{width:508.000000pt;}
.x0_c01054{left:0.000000pt;}
.x2_c01054{left:28.133333pt;}
.x3_c01054{left:29.600000pt;}
.xc_c01054{left:30.533333pt;}
.xb_c01054{left:32.000000pt;}
.x11_c01054{left:32.933333pt;}
.x12_c01054{left:33.866667pt;}
.x6_c01054{left:34.800000pt;}
.xd_c01054{left:38.933333pt;}
.x8_c01054{left:42.800000pt;}
.xf_c01054{left:43.733333pt;}
.xa_c01054{left:44.666667pt;}
.xe_c01054{left:46.800000pt;}
.x10_c01054{left:47.733333pt;}
.x5_c01054{left:94.400000pt;}
.x7_c01054{left:102.533333pt;}
.x1_c01054{left:103.466667pt;}
.x9_c01054{left:108.533333pt;}
.x4_c01054{left:112.533333pt;}
.x24_c01054{left:211.101563pt;}
.x1b_c01054{left:235.200000pt;}
.x1a_c01054{left:236.800000pt;}
.x14_c01054{left:239.066667pt;}
.x15_c01054{left:240.000000pt;}
.x17_c01054{left:240.933333pt;}
.x13_c01054{left:242.400000pt;}
.x23_c01054{left:243.333333pt;}
.x20_c01054{left:244.266667pt;}
.x16_c01054{left:252.266667pt;}
.x1d_c01054{left:254.400000pt;}
.x1f_c01054{left:255.333333pt;}
.x18_c01054{left:256.400000pt;}
.x19_c01054{left:257.600000pt;}
.x22_c01054{left:267.866667pt;}
.x1e_c01054{left:311.466667pt;}
.x1c_c01054{left:317.066667pt;}
.x21_c01054{left:323.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_c01055 {
    display:none;
  }
  .loading-indicator_c01055.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01055 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01055 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01055" -> "#page-container .classname_c01055")
 */
.pf_c01055 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01055 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01055.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01055 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01055 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01055 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01055 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01055 {overflow:visible;}
  }
}
.c_c01055 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01055 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01055:after { /* webkit #35443 */
  content: '';
}
.t_c01055:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01055 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01055 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01055 { /* info for Javascript */
  display:none;
}
.l_c01055 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01055 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01055 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01055:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01055{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01055;src:url('chunks/assets/font_94d9ad9f59493a4c645e342d.woff2')format("woff");}.ff1_c01055{font-family:ff1_c01055;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01055;src:url('chunks/assets/font_aeb2d9970a944e0b44557bb2.woff2')format("woff");}.ff2_c01055{font-family:ff2_c01055;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01055;src:url('chunks/assets/font_adcfc3be12b44580152fece6.woff2')format("woff");}.ff3_c01055{font-family:ff3_c01055;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01055;src:url('chunks/assets/font_1a72e337facd9be4595ebb29.woff2')format("woff");}.ff4_c01055{font-family:ff4_c01055;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01055;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff5_c01055{font-family:ff5_c01055;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01055{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c01055{vertical-align:-73.800000px;}
.v0_c01055{vertical-align:0.000000px;}
.v2_c01055{vertical-align:9.000000px;}
.ls3_c01055{letter-spacing:-6.000000px;}
.ls2_c01055{letter-spacing:0.000000px;}
.ls0_c01055{letter-spacing:0.189000px;}
.ls1_c01055{letter-spacing:0.693000px;}
.ls4_c01055{letter-spacing:6.000000px;}
.sc__c01055{text-shadow:none;}
.sc0_c01055{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01055{-webkit-text-stroke:0px transparent;}
.sc0_c01055{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01055{word-spacing:-18.000000px;}
.ws1_c01055{word-spacing:-15.060000px;}
.ws3_c01055{word-spacing:0.000000px;}
.ws2_c01055{word-spacing:178.380000px;}
._16_c01055{margin-left:-16.344000px;}
._14_c01055{margin-left:-12.006000px;}
._10_c01055{margin-left:-7.845000px;}
._1d_c01055{margin-left:-6.792000px;}
._c_c01055{margin-left:-5.328000px;}
._a_c01055{margin-left:-3.447000px;}
._11_c01055{margin-left:-2.088000px;}
._b_c01055{margin-left:-1.080000px;}
._e_c01055{width:1.077000px;}
._f_c01055{width:2.448000px;}
._d_c01055{width:3.480000px;}
._9_c01055{width:5.463000px;}
._0_c01055{width:6.489000px;}
._1_c01055{width:7.560000px;}
._6_c01055{width:8.694000px;}
._5_c01055{width:11.214000px;}
._3_c01055{width:12.285000px;}
._2_c01055{width:13.860000px;}
._1b_c01055{width:18.348000px;}
._7_c01055{width:19.593000px;}
._4_c01055{width:23.184000px;}
._18_c01055{width:24.294000px;}
._8_c01055{width:33.075000px;}
._21_c01055{width:40.782000px;}
._1f_c01055{width:52.491000px;}
._15_c01055{width:57.321000px;}
._13_c01055{width:65.685000px;}
._20_c01055{width:88.020000px;}
._19_c01055{width:118.158000px;}
._12_c01055{width:119.421000px;}
._1a_c01055{width:139.572000px;}
._1c_c01055{width:166.056000px;}
._1e_c01055{width:532.038000px;}
._17_c01055{width:586.800000px;}
.fc2_c01055{color:transparent;}
.fc1_c01055{color:rgb(128,128,128);}
.fc0_c01055{color:rgb(0,0,0);}
.fs5_c01055{font-size:27.000000px;}
.fs6_c01055{font-size:45.000000px;}
.fs7_c01055{font-size:48.000000px;}
.fs3_c01055{font-size:57.000000px;}
.fs2_c01055{font-size:60.000000px;}
.fs0_c01055{font-size:63.000000px;}
.fs1_c01055{font-size:72.000000px;}
.fs4_c01055{font-size:132.000000px;}
.y0_c01055{bottom:0.000000px;}
.yc_c01055{bottom:3.105000px;}
.yb_c01055{bottom:7.228363px;}
.y9_c01055{bottom:55.650000px;}
.y8_c01055{bottom:90.750000px;}
.ya_c01055{bottom:92.850000px;}
.y7_c01055{bottom:564.600000px;}
.y6_c01055{bottom:705.600000px;}
.y5_c01055{bottom:724.500000px;}
.y4_c01055{bottom:742.500000px;}
.y3_c01055{bottom:761.400000px;}
.y2_c01055{bottom:779.250000px;}
.y1_c01055{bottom:798.150000px;}
.h6_c01055{height:13.200074px;}
.h7_c01055{height:43.804688px;}
.h5_c01055{height:52.668457px;}
.h3_c01055{height:62.880000px;}
.h1_c01055{height:66.024000px;}
.h2_c01055{height:70.664062px;}
.h4_c01055{height:138.336000px;}
.h0_c01055{height:837.000000px;}
.w2_c01055{width:104.875500px;}
.w0_c01055{width:571.875000px;}
.w1_c01055{width:572.250000px;}
.x0_c01055{left:0.000000px;}
.x3_c01055{left:74.550000px;}
.x2_c01055{left:89.850000px;}
.x4_c01055{left:91.050000px;}
.x1_c01055{left:188.550000px;}
.x5_c01055{left:219.750000px;}
.x8_c01055{left:237.751740px;}
.x6_c01055{left:283.050000px;}
.x7_c01055{left:389.100000px;}
@media print{
.v1_c01055{vertical-align:-65.600000pt;}
.v0_c01055{vertical-align:0.000000pt;}
.v2_c01055{vertical-align:8.000000pt;}
.ls3_c01055{letter-spacing:-5.333333pt;}
.ls2_c01055{letter-spacing:0.000000pt;}
.ls0_c01055{letter-spacing:0.168000pt;}
.ls1_c01055{letter-spacing:0.616000pt;}
.ls4_c01055{letter-spacing:5.333333pt;}
.ws0_c01055{word-spacing:-16.000000pt;}
.ws1_c01055{word-spacing:-13.386667pt;}
.ws3_c01055{word-spacing:0.000000pt;}
.ws2_c01055{word-spacing:158.560000pt;}
._16_c01055{margin-left:-14.528000pt;}
._14_c01055{margin-left:-10.672000pt;}
._10_c01055{margin-left:-6.973333pt;}
._1d_c01055{margin-left:-6.037333pt;}
._c_c01055{margin-left:-4.736000pt;}
._a_c01055{margin-left:-3.064000pt;}
._11_c01055{margin-left:-1.856000pt;}
._b_c01055{margin-left:-0.960000pt;}
._e_c01055{width:0.957333pt;}
._f_c01055{width:2.176000pt;}
._d_c01055{width:3.093333pt;}
._9_c01055{width:4.856000pt;}
._0_c01055{width:5.768000pt;}
._1_c01055{width:6.720000pt;}
._6_c01055{width:7.728000pt;}
._5_c01055{width:9.968000pt;}
._3_c01055{width:10.920000pt;}
._2_c01055{width:12.320000pt;}
._1b_c01055{width:16.309333pt;}
._7_c01055{width:17.416000pt;}
._4_c01055{width:20.608000pt;}
._18_c01055{width:21.594667pt;}
._8_c01055{width:29.400000pt;}
._21_c01055{width:36.250667pt;}
._1f_c01055{width:46.658667pt;}
._15_c01055{width:50.952000pt;}
._13_c01055{width:58.386667pt;}
._20_c01055{width:78.240000pt;}
._19_c01055{width:105.029333pt;}
._12_c01055{width:106.152000pt;}
._1a_c01055{width:124.064000pt;}
._1c_c01055{width:147.605333pt;}
._1e_c01055{width:472.922667pt;}
._17_c01055{width:521.600000pt;}
.fs5_c01055{font-size:24.000000pt;}
.fs6_c01055{font-size:40.000000pt;}
.fs7_c01055{font-size:42.666667pt;}
.fs3_c01055{font-size:50.666667pt;}
.fs2_c01055{font-size:53.333333pt;}
.fs0_c01055{font-size:56.000000pt;}
.fs1_c01055{font-size:64.000000pt;}
.fs4_c01055{font-size:117.333333pt;}
.y0_c01055{bottom:0.000000pt;}
.yc_c01055{bottom:2.760000pt;}
.yb_c01055{bottom:6.425212pt;}
.y9_c01055{bottom:49.466667pt;}
.y8_c01055{bottom:80.666667pt;}
.ya_c01055{bottom:82.533333pt;}
.y7_c01055{bottom:501.866667pt;}
.y6_c01055{bottom:627.200000pt;}
.y5_c01055{bottom:644.000000pt;}
.y4_c01055{bottom:660.000000pt;}
.y3_c01055{bottom:676.800000pt;}
.y2_c01055{bottom:692.666667pt;}
.y1_c01055{bottom:709.466667pt;}
.h6_c01055{height:11.733399pt;}
.h7_c01055{height:38.937500pt;}
.h5_c01055{height:46.816406pt;}
.h3_c01055{height:55.893333pt;}
.h1_c01055{height:58.688000pt;}
.h2_c01055{height:62.812500pt;}
.h4_c01055{height:122.965333pt;}
.h0_c01055{height:744.000000pt;}
.w2_c01055{width:93.222667pt;}
.w0_c01055{width:508.333333pt;}
.w1_c01055{width:508.666667pt;}
.x0_c01055{left:0.000000pt;}
.x3_c01055{left:66.266667pt;}
.x2_c01055{left:79.866667pt;}
.x4_c01055{left:80.933333pt;}
.x1_c01055{left:167.600000pt;}
.x5_c01055{left:195.333333pt;}
.x8_c01055{left:211.334880pt;}
.x6_c01055{left:251.600000pt;}
.x7_c01055{left:345.866667pt;}
}





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

.ir_c01056:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01056{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01056;src:url('chunks/assets/font_8b47fe1320cd516757a0cb42.woff2')format("woff");}.ff1_c01056{font-family:ff1_c01056;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01056;src:url('chunks/assets/font_9299e0a89e9c8f2c46005e90.woff2')format("woff");}.ff2_c01056{font-family:ff2_c01056;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01056;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff3_c01056{font-family:ff3_c01056;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01056{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01056{vertical-align:0.000000px;}
.ls1_c01056{letter-spacing:0.000000px;}
.ls0_c01056{letter-spacing:9.000000px;}
.sc__c01056{text-shadow:none;}
.sc0_c01056{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01056{-webkit-text-stroke:0px transparent;}
.sc0_c01056{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01056{word-spacing:-24.060000px;}
.ws1_c01056{word-spacing:0.000000px;}
._4_c01056{margin-left:-21.120000px;}
._5_c01056{margin-left:-17.280000px;}
._7_c01056{margin-left:-10.560000px;}
._f_c01056{width:1.260000px;}
._d_c01056{width:2.880000px;}
._1_c01056{width:4.320000px;}
._3_c01056{width:6.000000px;}
._0_c01056{width:7.740000px;}
._2_c01056{width:9.840000px;}
._b_c01056{width:26.940000px;}
._a_c01056{width:38.880000px;}
._8_c01056{width:60.240000px;}
._6_c01056{width:72.240000px;}
._c_c01056{width:85.380000px;}
._e_c01056{width:120.540000px;}
._9_c01056{width:130.200000px;}
.fc2_c01056{color:transparent;}
.fc1_c01056{color:rgb(128,128,128);}
.fc0_c01056{color:rgb(0,0,0);}
.fs1_c01056{font-size:48.000000px;}
.fs0_c01056{font-size:60.000000px;}
.y0_c01056{bottom:0.000000px;}
.y5_c01056{bottom:3.105000px;}
.y4_c01056{bottom:7.228371px;}
.y3_c01056{bottom:732.015000px;}
.y2_c01056{bottom:747.015000px;}
.y1_c01056{bottom:830.715000px;}
.h3_c01056{height:13.200074px;}
.h4_c01056{height:43.804688px;}
.h2_c01056{height:62.880000px;}
.h0_c01056{height:872.925000px;}
.h1_c01056{height:873.000000px;}
.w2_c01056{width:104.875500px;}
.w0_c01056{width:612.600000px;}
.w1_c01056{width:612.750000px;}
.x0_c01056{left:0.000000px;}
.x4_c01056{left:258.114258px;}
.x1_c01056{left:408.000000px;}
.x2_c01056{left:470.100000px;}
.x3_c01056{left:475.800000px;}
@media print{
.v0_c01056{vertical-align:0.000000pt;}
.ls1_c01056{letter-spacing:0.000000pt;}
.ls0_c01056{letter-spacing:8.000000pt;}
.ws0_c01056{word-spacing:-21.386667pt;}
.ws1_c01056{word-spacing:0.000000pt;}
._4_c01056{margin-left:-18.773333pt;}
._5_c01056{margin-left:-15.360000pt;}
._7_c01056{margin-left:-9.386667pt;}
._f_c01056{width:1.120000pt;}
._d_c01056{width:2.560000pt;}
._1_c01056{width:3.840000pt;}
._3_c01056{width:5.333333pt;}
._0_c01056{width:6.880000pt;}
._2_c01056{width:8.746667pt;}
._b_c01056{width:23.946667pt;}
._a_c01056{width:34.560000pt;}
._8_c01056{width:53.546667pt;}
._6_c01056{width:64.213333pt;}
._c_c01056{width:75.893333pt;}
._e_c01056{width:107.146667pt;}
._9_c01056{width:115.733333pt;}
.fs1_c01056{font-size:42.666667pt;}
.fs0_c01056{font-size:53.333333pt;}
.y0_c01056{bottom:0.000000pt;}
.y5_c01056{bottom:2.760000pt;}
.y4_c01056{bottom:6.425219pt;}
.y3_c01056{bottom:650.680000pt;}
.y2_c01056{bottom:664.013333pt;}
.y1_c01056{bottom:738.413333pt;}
.h3_c01056{height:11.733399pt;}
.h4_c01056{height:38.937500pt;}
.h2_c01056{height:55.893333pt;}
.h0_c01056{height:775.933333pt;}
.h1_c01056{height:776.000000pt;}
.w2_c01056{width:93.222667pt;}
.w0_c01056{width:544.533333pt;}
.w1_c01056{width:544.666667pt;}
.x0_c01056{left:0.000000pt;}
.x4_c01056{left:229.434896pt;}
.x1_c01056{left:362.666667pt;}
.x2_c01056{left:417.866667pt;}
.x3_c01056{left:422.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_c01057 {
    display:none;
  }
  .loading-indicator_c01057.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01057 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01057 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01057" -> "#page-container .classname_c01057")
 */
.pf_c01057 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01057 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01057.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01057 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01057 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01057 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01057 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01057 {overflow:visible;}
  }
}
.c_c01057 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01057 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01057:after { /* webkit #35443 */
  content: '';
}
.t_c01057:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01057 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01057 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01057 { /* info for Javascript */
  display:none;
}
.l_c01057 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01057 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01057 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01057:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01057{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01057;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff1_c01057{font-family:ff1_c01057;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01057{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01057{vertical-align:0.000000px;}
.ls0_c01057{letter-spacing:0.000000px;}
.sc__c01057{text-shadow:none;}
.sc0_c01057{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01057{-webkit-text-stroke:0px transparent;}
.sc0_c01057{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01057{word-spacing:0.000000px;}
.fc0_c01057{color:rgb(128,128,128);}
.fs0_c01057{font-size:48.000000px;}
.y0_c01057{bottom:0.000000px;}
.y2_c01057{bottom:3.105000px;}
.y1_c01057{bottom:7.228363px;}
.h2_c01057{height:13.200074px;}
.h3_c01057{height:43.804688px;}
.h0_c01057{height:878.850000px;}
.h1_c01057{height:879.000000px;}
.w2_c01057{width:104.875500px;}
.w1_c01057{width:649.500000px;}
.w0_c01057{width:649.650000px;}
.x0_c01057{left:0.000000px;}
.x1_c01057{left:276.639267px;}
@media print{
.v0_c01057{vertical-align:0.000000pt;}
.ls0_c01057{letter-spacing:0.000000pt;}
.ws0_c01057{word-spacing:0.000000pt;}
.fs0_c01057{font-size:42.666667pt;}
.y0_c01057{bottom:0.000000pt;}
.y2_c01057{bottom:2.760000pt;}
.y1_c01057{bottom:6.425212pt;}
.h2_c01057{height:11.733399pt;}
.h3_c01057{height:38.937500pt;}
.h0_c01057{height:781.200000pt;}
.h1_c01057{height:781.333333pt;}
.w2_c01057{width:93.222667pt;}
.w1_c01057{width:577.333333pt;}
.w0_c01057{width:577.466667pt;}
.x0_c01057{left:0.000000pt;}
.x1_c01057{left:245.901571pt;}
}





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

.ir_c01058:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01058{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01058;src:url('chunks/assets/font_0203cf5fdbb0baafd78a62c3.woff2')format("woff");}.ff1_c01058{font-family:ff1_c01058;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01058;src:url('chunks/assets/font_9d27ca8f8ddd9d721fda50ac.woff2')format("woff");}.ff2_c01058{font-family:ff2_c01058;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01058;src:url('chunks/assets/font_4ce2eae9408137ceab5d8a1c.woff2')format("woff");}.ff3_c01058{font-family:ff3_c01058;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01058{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01058{vertical-align:0.000000px;}
.ls2_c01058{letter-spacing:0.000000px;}
.ls0_c01058{letter-spacing:7.800000px;}
.ls1_c01058{letter-spacing:9.000000px;}
.sc__c01058{text-shadow:none;}
.sc0_c01058{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01058{-webkit-text-stroke:0px transparent;}
.sc0_c01058{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01058{word-spacing:-42.600000px;}
.ws1_c01058{word-spacing:0.000000px;}
._0_c01058{width:4.620000px;}
.fc2_c01058{color:transparent;}
.fc1_c01058{color:rgb(128,128,128);}
.fc0_c01058{color:rgb(0,0,0);}
.fs1_c01058{font-size:48.000000px;}
.fs0_c01058{font-size:60.000000px;}
.y0_c01058{bottom:0.000000px;}
.y3_c01058{bottom:3.105000px;}
.y2_c01058{bottom:7.228371px;}
.y1_c01058{bottom:191.415000px;}
.h3_c01058{height:13.200074px;}
.h4_c01058{height:43.804688px;}
.h2_c01058{height:64.020000px;}
.h0_c01058{height:929.625000px;}
.h1_c01058{height:930.000000px;}
.w2_c01058{width:104.875500px;}
.w1_c01058{width:175.500000px;}
.w0_c01058{width:175.800000px;}
.x0_c01058{left:0.000000px;}
.x2_c01058{left:39.714249px;}
.x1_c01058{left:102.600000px;}
@media print{
.v0_c01058{vertical-align:0.000000pt;}
.ls2_c01058{letter-spacing:0.000000pt;}
.ls0_c01058{letter-spacing:6.933333pt;}
.ls1_c01058{letter-spacing:8.000000pt;}
.ws0_c01058{word-spacing:-37.866667pt;}
.ws1_c01058{word-spacing:0.000000pt;}
._0_c01058{width:4.106667pt;}
.fs1_c01058{font-size:42.666667pt;}
.fs0_c01058{font-size:53.333333pt;}
.y0_c01058{bottom:0.000000pt;}
.y3_c01058{bottom:2.760000pt;}
.y2_c01058{bottom:6.425219pt;}
.y1_c01058{bottom:170.146667pt;}
.h3_c01058{height:11.733399pt;}
.h4_c01058{height:38.937500pt;}
.h2_c01058{height:56.906667pt;}
.h0_c01058{height:826.333333pt;}
.h1_c01058{height:826.666667pt;}
.w2_c01058{width:93.222667pt;}
.w1_c01058{width:156.000000pt;}
.w0_c01058{width:156.266667pt;}
.x0_c01058{left:0.000000pt;}
.x2_c01058{left:35.301554pt;}
.x1_c01058{left:91.200000pt;}
}




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